From a8633894e7f2efcc3a897584034b2534321429be Mon Sep 17 00:00:00 2001 From: BinLi-NOAA Date: Wed, 22 Feb 2023 16:14:04 -0500 Subject: [PATCH 01/30] Update CDEPS component; update documentation FAQ about setting resources and turning off output; update FAQ documentation (was 1608); update drag suite intent mods (was 1612) (#1597) * update cdeps * use fv3atm from PR 1612 * Changed UGWP diagnostic variable declaration intents from out to inout * Docs/faqupdate (#8) Co-authored-by: Denise Worthen Co-authored-by: jkbk2004 Co-authored-by: Brian Curtis --- CDEPS-interface/CDEPS | 2 +- CDEPS-interface/cdeps_files.cmake | 1 - FV3 | 2 +- doc/UsersGuide/source/FAQ.rst | 444 +- tests/RegressionTests_acorn.intel.log | 926 +-- tests/RegressionTests_cheyenne.gnu.log | 322 +- tests/RegressionTests_cheyenne.intel.log | 958 +-- tests/RegressionTests_gaea.intel.log | 954 +-- tests/RegressionTests_hera.gnu.log | 466 +- tests/RegressionTests_hera.intel.log | 6876 +++++++++++++--------- tests/RegressionTests_jet.intel.log | 886 +-- tests/RegressionTests_orion.intel.log | 978 +-- tests/RegressionTests_wcoss2.intel.log | 800 +-- 13 files changed, 7666 insertions(+), 5949 deletions(-) diff --git a/CDEPS-interface/CDEPS b/CDEPS-interface/CDEPS index 530c2624df1..94acf25b869 160000 --- a/CDEPS-interface/CDEPS +++ b/CDEPS-interface/CDEPS @@ -1 +1 @@ -Subproject commit 530c2624df18b2e2b05cf1c639b073479f68f269 +Subproject commit 94acf25b8692e38b3c8314125278cdc2700fb869 diff --git a/CDEPS-interface/cdeps_files.cmake b/CDEPS-interface/cdeps_files.cmake index 3990572168d..7a9379d210b 100644 --- a/CDEPS-interface/cdeps_files.cmake +++ b/CDEPS-interface/cdeps_files.cmake @@ -14,7 +14,6 @@ list(APPEND cdeps_share_files CDEPS/share/shr_const_mod.F90 CDEPS/share/shr_kind_mod.F90 CDEPS/share/shr_log_mod.F90 - CDEPS/share/shr_mpi_mod.F90 CDEPS/share/shr_orb_mod.F90 CDEPS/share/shr_precip_mod.F90 CDEPS/share/shr_strconvert_mod.F90 diff --git a/FV3 b/FV3 index 8b84603c592..d9e619ed4a5 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 8b84603c592150110da68fcdb598ddc1debee181 +Subproject commit d9e619ed4a5e685b3558e0b1bf6929880960864b diff --git a/doc/UsersGuide/source/FAQ.rst b/doc/UsersGuide/source/FAQ.rst index bc23d7e00f6..71ee5dc2341 100644 --- a/doc/UsersGuide/source/FAQ.rst +++ b/doc/UsersGuide/source/FAQ.rst @@ -15,7 +15,7 @@ and is described in the UFS WM GitHub `wiki `_. To +turn off point output, change the output frequency from 900 to 0 on +`line 296 +`_. To +turn off restart files, change the frequency from 3600 to 0 on `line +321 +`_. + + + ============================================================== How do I set the total number of tasks for my job? ============================================================== -The total number of MPI tasks used by the UFS Weather Model is a combination of compute and quilt tasks, and can be calculated using the following relationship: - * total tasks = ``compute tasks + quilt tasks`` - * compute tasks = ``x layout * y layout * number of tiles`` - * quilt tasks = ``write_groups * write_tasks_per_group`` if ``quilting==.true.`` +In the UFS WM, each component's MPI task information, including the +starting and ending tasks and the number of threads, are specified +using the component-specific ``petlist_bounds`` and +``omp_num_threads`` in ``nems.configure``. In general, the total +number of MPI tasks required is the sum of all the sub-component +tasks, as long as those components do not overlap (i.e., share the +same PETs). An example of a global 5 component coupled configuration +nems.configure at the end of this section. + +FV3atm +^^^^^^ + +The FV3atm component consists of one or more forecast grid components +and write grid components. + +The MPI tasks for the forecast grid components are specified in the +layout variable in one or more namelist files ``input*.nml`` +(e.g. input.nml and input_nest02.nml). The total number of mpi tasks +required is given by the product of the specified layout, summed over +all domains. For example, for a global domain with 6 tiles and +``layout = 6,8``, the total number required is ``6*6*8 = 288``. For +two regional domains using ``input.nml`` and ``input_nest02.nml``, +each with ``layout = 6,10``, the total required is the sum ``6*10 + +6*10 = 120``. + +For the global configuration, an additional requirement is that the +layout specified must be a multiple of the ``blocksize`` parameter in +``input.nml``. For example, using ``layout=8,8`` for C96 yields +subdomains of ``12 x 12``. The subdomain product is ``12*12 = 144``, +which is not divisible by a ``blocksize=32``. Therefore, the C96 does +not support an ``8,8`` layout for a blocksize of 32. If ``layout = +4,6``, the subdomain product is ``24*16 = 384``, which is divisible by +a ``blocksize=32``. A layout of ``4,6`` is supported for C96 with a +blocksize of 32. + +The FV3atm will utilize the write grid component if ``quilting`` is +set to .true. In this case, the required mpi tasks for the +write grid components is the product of the ``write_groups`` and the +``write_tasks_per_group`` in the ``model_configure`` file. + +:: + + quilting: .true. + write_groups: 1 + write_tasks_per_group: 60 + + +In the above case, the write grid component requires 60 tasks. + +The total number of MPI ranks for FV3atm is the sum of the forecast tasks and any +write grid component tasks. + +:: + + total_tasks_atm = forecast tasks + write grid component tasks + +If ESMF-managed threading is used, the total number of PETs for the +atmosphere component is given by the product of the number of threads +requested and the total number of MPI ranks (both forecast and write +grid component). If ``num_threads_atm`` is the number of threads +specified for the FV3atm component, in ``nems.configure`` the ATM PET +bounds are given by + +:: + + ATM_petlist_bounds 0 total_tasks_atm*num_threads_atm-1 + ATM_omp_num_threads num_threads_atm + +Note that in UWM, the ATM component is normally listed first in +``nems.configure`` so that the starting PET for the ATM is 0. + +GOCART +^^^^^^ + +GOCART shares the same grid and forecast tasks as FV3atm but it does +not have a separate write grid component in its NUOPC CAP. Also, while +GOCART does not have threading capability, it shares the same data +structure as FV3atm and so it has to use the same number of threads +used by FV3atm. Therefore, the total number of MPI ranks and threads +in GOCART is the same as the those for the FV3atm forecast component +(i.e., excluding any write grid component). Currently GOCART only runs +on the global forecast grid component, for which only one namelist is +needed. + +:: + + total_tasks_chm = FV3atm forecast tasks + + CHM_petlist_bounds: 0 total_tasks_chm*num_threads_atm-1 + CHM_omp_num_threads: num_threads_atm + +CMEPS +^^^^^ + +The mediator MPI tasks can overlap with other components and in UFS +the tasks are normally shared on the FV3atm forecast tasks. However, a +large number of tasks for the mediator is generally not recommended +since it may cause slow performance. This means that the number of +MPI tasks for CMEPS is given by + +:: + + total_tasks_med = smaller of (300, FV3atm forecast tasks) + +and in ``nems.configure`` + +:: + + MED_petlist_bounds: 0 total_tasks_med*num_threads_atm-1 + MED_omp_num_threads: num_threads_atm + +MOM6 +^^^^ + +For MOM6 the only restriction currently on the number of MPI ranks +used by MOM6 is that it is divisible by 2. The starting PET in +``nems.configure`` will be the last PET of the preceding component, +incremented by one. Threading in MOM6 is not recommended at this time. + +:: + + OCN_petlist_bounds: starting_OCN_PET total_tasks_ocn+starting_OCN_PET-1 + OCN_omp_num_threads: 1 + +CICE +^^^^ + +CICE requires setting the decomposition shape, the number of requested +processors and the calculated block sizes in the ``ice_in`` +namelist. In UFS, the decomposition shape is always ``SlenderX2``, +except for the 5 deg configuration, which is ``SlenderX1``. + +For ``SlenderX2`` decomposition, a given ``nprocs``, and global domain +``nx_global``, ``ny_global``, the block sizes are given by + +:: + + block_size_y = ny_global/2 + block_size_x = nx_global/(nprocs/2) + +Similarily, for ``SlenderX1`` + +:: + + block_size_y = ny_global + block_size_x = nx_global/nprocs + + +For the 1-deg CICE domain for example, ``ice_in`` would be + +:: + + nprocs = 10 + nx_global = 360 + ny_global = 320 + block_size_x = 72 + block_size_y = 160 + max_blocks = -1 + processor_shape = 'slenderX2' + + +In UFS, only a single thread is used for CICE so for ``nprocs`` set in +``ice_in``, the tasks in ``nems.configure`` are set as: + +:: + + ICE_petlist_bounds: starting_ICE_PET nprocs+starting_ICE_PET-1 + ICE_omp_num_threads: 1 + +The starting ICE PET in ``nems.configure`` will be the last PET of the +preceding component, incremented by one. + +WW3 +^^^ + +The WW3 component requires setting only the MPI ranks available +for WW3 and the number of threads to be used. + +:: + + WAV_petlist_bounds: starting_WAV_PET num_tasks_wav*num_threads_wav+starting_WAV_PET-1 + WAV_omp_num_threads: num_threads_wav + +The starting WAV PET in ``nems.configure`` will be the last PET of the +preceding component, incremented by one. + -The layout and tiles settings are in ``input.nml``, and the quilt task settings are in ``model_configure`` +Example: 5-component nems.configure +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +For the fully coupled S2SWA application, a sample ``nems.configure`` is shown below : + + +.. code-block:: console + + ############################################# + #### NEMS Run-Time Configuration File ##### + ############################################# + + # ESMF # + logKindFlag: ESMF_LOGKIND_MULTI + globalResourceControl: true + + # EARTH # + EARTH_component_list: MED ATM CHM OCN ICE WAV + EARTH_attributes:: + Verbosity = 0 + :: + + # MED # + MED_model: cmeps + MED_petlist_bounds: 0 767 + MED_omp_num_threads: 2 + :: + + + # ATM # + ATM_model: fv3 + ATM_petlist_bounds: 0 863 + ATM_omp_num_threads: 2 + ATM_attributes:: + Verbosity = 0 + DumpFields = false + ProfileMemory = false + OverwriteSlice = true + :: + + # CHM # + CHM_model: gocart + CHM_petlist_bounds: 0 767 + CHM_omp_num_threads: 2 + CHM_attributes:: + Verbosity = 0 + :: + + # OCN # + OCN_model: mom6 + OCN_petlist_bounds: 864 983 + OCN_omp_num_threads: 1 + OCN_attributes:: + Verbosity = 0 + DumpFields = false + ProfileMemory = false + OverwriteSlice = true + mesh_ocn = mesh.mx025.nc + :: + + # ICE # + ICE_model: cice6 + ICE_petlist_bounds: 984 1031 + ICE_omp_num_threads: 1 + ICE_attributes:: + Verbosity = 0 + DumpFields = false + ProfileMemory = false + OverwriteSlice = true + mesh_ice = mesh.mx025.nc + stop_n = 3 + stop_option = nhours + stop_ymd = -999 + :: + + # WAV # + WAV_model: ww3 + WAV_petlist_bounds: 1032 1191 + WAV_omp_num_threads: 2 + WAV_attributes:: + Verbosity = 0 + OverwriteSlice = false + diro = "." + logfile = wav.log + mesh_wav = mesh.gwes_30m.nc + multigrid = false + :: + + CMEPS warm run sequence + runSeq:: + @1800 + MED med_phases_prep_ocn_avg + MED -> OCN :remapMethod=redist + OCN + @300 + MED med_phases_prep_atm + MED med_phases_prep_ice + MED med_phases_prep_wav_accum + MED med_phases_prep_wav_avg + MED -> ATM :remapMethod=redist + MED -> ICE :remapMethod=redist + MED -> WAV :remapMethod=redist + ATM phase1 + ATM -> CHM + CHM + CHM -> ATM + ATM phase2 + ICE + WAV + ATM -> MED :remapMethod=redist + MED med_phases_post_atm + ICE -> MED :remapMethod=redist + MED med_phases_post_ice + WAV -> MED :remapMethod=redist + MED med_phases_post_wav + MED med_phases_prep_ocn_accum + @ + OCN -> MED :remapMethod=redist + MED med_phases_post_ocn + MED med_phases_restart_write + @ + :: + + # CMEPS variables + + DRIVER_attributes:: + :: + + MED_attributes:: + ATM_model = fv3 + ICE_model = cice6 + OCN_model = mom6 + WAV_model = ww3 + history_n = 1 + history_option = nhours + history_ymd = -999 + coupling_mode = nems_frac + history_tile_atm = 384 + :: + ALLCOMP_attributes:: + ScalarFieldCount = 2 + ScalarFieldIdxGridNX = 1 + ScalarFieldIdxGridNY = 2 + ScalarFieldName = cpl_scalars + start_type = startup + restart_dir = RESTART/ + case_name = ufs.cpld + restart_n = 3 + restart_option = nhours + restart_ymd = -999 + dbug_flag = 0 + use_coldstart = false + use_mommesh = true + eps_imesh = 1.0e-1 + stop_n = 6 + stop_option = nhours + stop_ymd = -999 + :: diff --git a/tests/RegressionTests_acorn.intel.log b/tests/RegressionTests_acorn.intel.log index caa3ab89e60..b1294aef152 100644 --- a/tests/RegressionTests_acorn.intel.log +++ b/tests/RegressionTests_acorn.intel.log @@ -1,35 +1,41 @@ -Fri Feb 17 15:48:41 UTC 2023 +Tue Feb 21 14:33:44 UTC 2023 Start Regression test -Compile 001 elapsed time 1031 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 553 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 995 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 481 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 005 elapsed time 481 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 1391 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 453 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 008 elapsed time 1134 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 638 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 198 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 011 elapsed time 481 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 012 elapsed time 475 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 520 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 332 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 333 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 509 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 017 elapsed time 172 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 698 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 019 elapsed time 612 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 020 elapsed time 406 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 021 elapsed time 81 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 022 elapsed time 1021 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 923 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 024 elapsed time 505 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 025 elapsed time 687 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 026 elapsed time 550 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Test 010 compile FAIL +Test 008 compile FAIL + + +Test 012 compile FAIL + +Compile 001 elapsed time 839 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 874 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 1745 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 1384 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 005 elapsed time 1588 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 1363 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 1620 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 1070 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 1861 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 1242 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 011 elapsed time 776 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 012 elapsed time 1235 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 786 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 1139 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 451 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 1496 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 017 elapsed time 384 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 823 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 019 elapsed time 1822 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 020 elapsed time 1427 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 021 elapsed time 1161 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 022 elapsed time 1054 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 902 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 024 elapsed time 1192 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 025 elapsed time 857 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 026 elapsed time 487 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8_mixedmode -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/cpld_control_p8_mixedmode +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -94,14 +100,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 331.251006 -The maximum resident set size (KB) = 2951896 +The total amount of wall time = 336.052077 +The maximum resident set size (KB) = 2953768 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_gfsv17 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/cpld_control_gfsv17 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -165,14 +171,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 256.955557 -The maximum resident set size (KB) = 1583272 +The total amount of wall time = 256.803321 +The maximum resident set size (KB) = 1578992 Test 002 cpld_control_gfsv17 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -237,14 +243,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 383.370908 -The maximum resident set size (KB) = 2981564 +The total amount of wall time = 387.344789 +The maximum resident set size (KB) = 2979224 Test 003 cpld_control_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/cpld_restart_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -297,14 +303,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 228.550481 -The maximum resident set size (KB) = 2865024 +The total amount of wall time = 228.400979 +The maximum resident set size (KB) = 2865512 Test 004 cpld_restart_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/cpld_2threads_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -357,14 +363,14 @@ Checking test 005 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 370.516821 -The maximum resident set size (KB) = 3279220 +The total amount of wall time = 371.615636 +The maximum resident set size (KB) = 3287772 Test 005 cpld_2threads_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/cpld_decomp_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/cpld_decomp_p8 Checking test 006 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -417,14 +423,14 @@ Checking test 006 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 378.454537 -The maximum resident set size (KB) = 2976572 +The total amount of wall time = 381.835733 +The maximum resident set size (KB) = 2975372 Test 006 cpld_decomp_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/cpld_mpi_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/cpld_mpi_p8 Checking test 007 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -477,14 +483,14 @@ Checking test 007 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 315.349368 -The maximum resident set size (KB) = 2907856 +The total amount of wall time = 315.756387 +The maximum resident set size (KB) = 2918920 Test 007 cpld_mpi_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_ciceC_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/cpld_control_ciceC_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/cpld_control_ciceC_p8 Checking test 008 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -549,14 +555,14 @@ Checking test 008 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 382.824224 -The maximum resident set size (KB) = 2980640 +The total amount of wall time = 388.534215 +The maximum resident set size (KB) = 2978548 Test 008 cpld_control_ciceC_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/cpld_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/cpld_control_noaero_p8 Checking test 009 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -620,14 +626,14 @@ Checking test 009 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 281.193966 -The maximum resident set size (KB) = 1573040 +The total amount of wall time = 281.082659 +The maximum resident set size (KB) = 1578876 Test 009 cpld_control_noaero_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/cpld_control_nowave_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/cpld_control_nowave_noaero_p8 Checking test 010 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -689,14 +695,14 @@ Checking test 010 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 297.381944 -The maximum resident set size (KB) = 1623884 +The total amount of wall time = 297.509250 +The maximum resident set size (KB) = 1623064 Test 010 cpld_control_nowave_noaero_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/cpld_control_noaero_p8_agrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/cpld_control_noaero_p8_agrid Checking test 011 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -758,14 +764,14 @@ Checking test 011 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 305.250868 -The maximum resident set size (KB) = 1623476 +The total amount of wall time = 305.944027 +The maximum resident set size (KB) = 1618412 Test 011 cpld_control_noaero_p8_agrid PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/cpld_control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/cpld_control_c48 Checking test 012 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -815,14 +821,14 @@ Checking test 012 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 436.247390 -The maximum resident set size (KB) = 2627928 +The total amount of wall time = 430.747470 +The maximum resident set size (KB) = 2626908 Test 012 cpld_control_c48 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/cpld_warmstart_c48 Checking test 013 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -872,14 +878,14 @@ Checking test 013 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 120.943700 -The maximum resident set size (KB) = 2652672 +The total amount of wall time = 120.431441 +The maximum resident set size (KB) = 2651828 Test 013 cpld_warmstart_c48 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/cpld_restart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/cpld_restart_c48 Checking test 014 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -929,14 +935,14 @@ Checking test 014 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 66.164130 -The maximum resident set size (KB) = 2061260 +The total amount of wall time = 67.247472 +The maximum resident set size (KB) = 2057752 Test 014 cpld_restart_c48 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_CubedSphereGrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/control_CubedSphereGrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/control_CubedSphereGrid Checking test 015 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -963,14 +969,14 @@ Checking test 015 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 126.965798 -The maximum resident set size (KB) = 516468 +The total amount of wall time = 127.010993 +The maximum resident set size (KB) = 515628 Test 015 control_CubedSphereGrid PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_latlon -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/control_latlon +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/control_latlon Checking test 016 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -981,14 +987,14 @@ Checking test 016 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 129.095947 -The maximum resident set size (KB) = 514372 +The total amount of wall time = 129.519286 +The maximum resident set size (KB) = 518324 Test 016 control_latlon PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/control_wrtGauss_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/control_wrtGauss_netcdf_parallel Checking test 017 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -999,14 +1005,14 @@ Checking test 017 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 131.201066 -The maximum resident set size (KB) = 514848 +The total amount of wall time = 131.526355 +The maximum resident set size (KB) = 517976 Test 017 control_wrtGauss_netcdf_parallel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/control_c48 Checking test 018 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1045,14 +1051,14 @@ Checking test 018 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 325.226298 -The maximum resident set size (KB) = 671636 +The total amount of wall time = 325.295852 +The maximum resident set size (KB) = 671088 Test 018 control_c48 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_c192 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/control_c192 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/control_c192 Checking test 019 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1063,14 +1069,14 @@ Checking test 019 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 527.142423 -The maximum resident set size (KB) = 617132 +The total amount of wall time = 526.200390 +The maximum resident set size (KB) = 615328 Test 019 control_c192 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_c384 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/control_c384 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/control_c384 Checking test 020 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1081,14 +1087,14 @@ Checking test 020 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 567.620514 -The maximum resident set size (KB) = 890160 +The total amount of wall time = 568.038812 +The maximum resident set size (KB) = 890220 Test 020 control_c384 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_c384gdas -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/control_c384gdas +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/control_c384gdas Checking test 021 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1131,14 +1137,14 @@ Checking test 021 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 493.924603 -The maximum resident set size (KB) = 1018252 +The total amount of wall time = 503.521996 +The maximum resident set size (KB) = 1016600 Test 021 control_c384gdas PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/control_stochy Checking test 022 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1149,28 +1155,28 @@ Checking test 022 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 88.210440 -The maximum resident set size (KB) = 521508 +The total amount of wall time = 89.265411 +The maximum resident set size (KB) = 521296 Test 022 control_stochy PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/control_stochy_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/control_stochy_restart Checking test 023 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 45.703885 -The maximum resident set size (KB) = 285952 +The total amount of wall time = 45.556570 +The maximum resident set size (KB) = 283412 Test 023 control_stochy_restart PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/control_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/control_lndp Checking test 024 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1181,14 +1187,14 @@ Checking test 024 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 79.528144 -The maximum resident set size (KB) = 518776 +The total amount of wall time = 80.166487 +The maximum resident set size (KB) = 518764 Test 024 control_lndp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_iovr4 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/control_iovr4 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/control_iovr4 Checking test 025 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1203,14 +1209,14 @@ Checking test 025 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 132.626674 -The maximum resident set size (KB) = 512904 +The total amount of wall time = 131.659494 +The maximum resident set size (KB) = 514632 -Test 025 control_iovr4 PASS +Test 025 control_iovr4 PASS Tries: 2 baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_iovr5 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/control_iovr5 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/control_iovr5 Checking test 026 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1225,14 +1231,14 @@ Checking test 026 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 132.813720 -The maximum resident set size (KB) = 512724 +The total amount of wall time = 132.267299 +The maximum resident set size (KB) = 518232 Test 026 control_iovr5 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/control_p8 Checking test 027 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1279,14 +1285,14 @@ Checking test 027 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 176.276044 -The maximum resident set size (KB) = 1486168 +The total amount of wall time = 176.545211 +The maximum resident set size (KB) = 1486332 Test 027 control_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/control_p8_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/control_p8_lndp Checking test 028 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1305,14 +1311,14 @@ Checking test 028 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 317.675431 -The maximum resident set size (KB) = 1490244 +The total amount of wall time = 318.206313 +The maximum resident set size (KB) = 1483800 Test 028 control_p8_lndp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/control_restart_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/control_restart_p8 Checking test 029 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1351,14 +1357,14 @@ Checking test 029 control_restart_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 97.500413 -The maximum resident set size (KB) = 648084 +The total amount of wall time = 97.090955 +The maximum resident set size (KB) = 651076 Test 029 control_restart_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/control_decomp_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/control_decomp_p8 Checking test 030 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1401,14 +1407,14 @@ Checking test 030 control_decomp_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 178.383690 -The maximum resident set size (KB) = 1474764 +The total amount of wall time = 176.717424 +The maximum resident set size (KB) = 1478080 Test 030 control_decomp_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/control_2threads_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/control_2threads_p8 Checking test 031 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1451,14 +1457,14 @@ Checking test 031 control_2threads_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 156.900741 -The maximum resident set size (KB) = 1564576 +The total amount of wall time = 158.485144 +The maximum resident set size (KB) = 1563160 Test 031 control_2threads_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8_rrtmgp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/control_p8_rrtmgp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/control_p8_rrtmgp Checking test 032 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1505,14 +1511,14 @@ Checking test 032 control_p8_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 231.307937 -The maximum resident set size (KB) = 1544904 +The total amount of wall time = 228.914690 +The maximum resident set size (KB) = 1541756 -Test 032 control_p8_rrtmgp PASS Tries: 2 +Test 032 control_p8_rrtmgp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/merra2_thompson -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/merra2_thompson +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/merra2_thompson Checking test 033 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1559,14 +1565,14 @@ Checking test 033 merra2_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 199.760260 -The maximum resident set size (KB) = 1488684 +The total amount of wall time = 201.875950 +The maximum resident set size (KB) = 1491548 Test 033 merra2_thompson PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/regional_control Checking test 034 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1577,28 +1583,28 @@ Checking test 034 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 285.389587 -The maximum resident set size (KB) = 651692 +The total amount of wall time = 283.381981 +The maximum resident set size (KB) = 652064 Test 034 regional_control PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/regional_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/regional_restart Checking test 035 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 152.084704 -The maximum resident set size (KB) = 646800 +The total amount of wall time = 150.037673 +The maximum resident set size (KB) = 647472 Test 035 regional_restart PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/regional_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/regional_decomp Checking test 036 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1609,14 +1615,14 @@ Checking test 036 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 302.123853 -The maximum resident set size (KB) = 646780 +The total amount of wall time = 298.691273 +The maximum resident set size (KB) = 652400 Test 036 regional_decomp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/regional_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/regional_2threads Checking test 037 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1627,14 +1633,14 @@ Checking test 037 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 175.426410 -The maximum resident set size (KB) = 689808 +The total amount of wall time = 173.330316 +The maximum resident set size (KB) = 690008 Test 037 regional_2threads PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_noquilt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/regional_noquilt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/regional_noquilt Checking test 038 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1642,14 +1648,14 @@ Checking test 038 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 311.197087 -The maximum resident set size (KB) = 641336 +The total amount of wall time = 308.593528 +The maximum resident set size (KB) = 640504 Test 038 regional_noquilt PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/regional_2dwrtdecomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/regional_2dwrtdecomp Checking test 039 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1660,14 +1666,14 @@ Checking test 039 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 283.469190 -The maximum resident set size (KB) = 651788 +The total amount of wall time = 281.605216 +The maximum resident set size (KB) = 652796 Test 039 regional_2dwrtdecomp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/fv3_regional_wofs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/regional_wofs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/regional_wofs Checking test 040 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1678,14 +1684,14 @@ Checking test 040 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 360.163264 -The maximum resident set size (KB) = 335880 +The total amount of wall time = 360.514136 +The maximum resident set size (KB) = 335616 Test 040 regional_wofs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/rap_control Checking test 041 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1732,14 +1738,14 @@ Checking test 041 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 416.063168 -The maximum resident set size (KB) = 893212 +The total amount of wall time = 418.174415 +The maximum resident set size (KB) = 889680 Test 041 rap_control PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/regional_spp_sppt_shum_skeb +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/regional_spp_sppt_shum_skeb Checking test 042 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -1750,14 +1756,14 @@ Checking test 042 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 282.803477 -The maximum resident set size (KB) = 984896 +The total amount of wall time = 282.560617 +The maximum resident set size (KB) = 991408 Test 042 regional_spp_sppt_shum_skeb PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/rap_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/rap_decomp Checking test 043 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1804,14 +1810,14 @@ Checking test 043 rap_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 431.303235 -The maximum resident set size (KB) = 890928 +The total amount of wall time = 429.750193 +The maximum resident set size (KB) = 893040 Test 043 rap_decomp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/rap_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/rap_2threads Checking test 044 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1858,14 +1864,14 @@ Checking test 044 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 389.439888 -The maximum resident set size (KB) = 964208 +The total amount of wall time = 389.674455 +The maximum resident set size (KB) = 965672 Test 044 rap_2threads PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/rap_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/rap_restart Checking test 045 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1904,14 +1910,14 @@ Checking test 045 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 211.472900 -The maximum resident set size (KB) = 638548 +The total amount of wall time = 209.736923 +The maximum resident set size (KB) = 645048 Test 045 rap_restart PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/rap_sfcdiff Checking test 046 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1958,14 +1964,14 @@ Checking test 046 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 417.288311 -The maximum resident set size (KB) = 894164 +The total amount of wall time = 414.167723 +The maximum resident set size (KB) = 890176 Test 046 rap_sfcdiff PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/rap_sfcdiff_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/rap_sfcdiff_decomp Checking test 047 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2012,14 +2018,14 @@ Checking test 047 rap_sfcdiff_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 435.376115 -The maximum resident set size (KB) = 889512 +The total amount of wall time = 431.079549 +The maximum resident set size (KB) = 892944 Test 047 rap_sfcdiff_decomp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/rap_sfcdiff_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/rap_sfcdiff_restart Checking test 048 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2058,14 +2064,14 @@ Checking test 048 rap_sfcdiff_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 307.665775 -The maximum resident set size (KB) = 637128 +The total amount of wall time = 308.024314 +The maximum resident set size (KB) = 637428 Test 048 rap_sfcdiff_restart PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/hrrr_control Checking test 049 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2112,14 +2118,14 @@ Checking test 049 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 399.649973 -The maximum resident set size (KB) = 893660 +The total amount of wall time = 400.027821 +The maximum resident set size (KB) = 892348 Test 049 hrrr_control PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/hrrr_control_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/hrrr_control_decomp Checking test 050 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2166,14 +2172,14 @@ Checking test 050 hrrr_control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 413.948619 -The maximum resident set size (KB) = 889228 +The total amount of wall time = 414.381970 +The maximum resident set size (KB) = 889120 Test 050 hrrr_control_decomp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/hrrr_control_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/hrrr_control_2threads Checking test 051 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2220,14 +2226,14 @@ Checking test 051 hrrr_control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 371.932315 -The maximum resident set size (KB) = 957536 +The total amount of wall time = 371.439518 +The maximum resident set size (KB) = 951016 Test 051 hrrr_control_2threads PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/hrrr_control_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/hrrr_control_restart Checking test 052 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2266,14 +2272,14 @@ Checking test 052 hrrr_control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 296.101634 -The maximum resident set size (KB) = 640212 +The total amount of wall time = 295.653602 +The maximum resident set size (KB) = 641936 Test 052 hrrr_control_restart PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_v1beta -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/rrfs_v1beta +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/rrfs_v1beta Checking test 053 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2320,14 +2326,14 @@ Checking test 053 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 411.497228 -The maximum resident set size (KB) = 883380 +The total amount of wall time = 409.041933 +The maximum resident set size (KB) = 887364 Test 053 rrfs_v1beta PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_v1nssl -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/rrfs_v1nssl +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/rrfs_v1nssl Checking test 054 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2342,14 +2348,14 @@ Checking test 054 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 475.272091 -The maximum resident set size (KB) = 573344 +The total amount of wall time = 471.777035 +The maximum resident set size (KB) = 575464 Test 054 rrfs_v1nssl PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/rrfs_v1nssl_nohailnoccn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/rrfs_v1nssl_nohailnoccn Checking test 055 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2364,14 +2370,14 @@ Checking test 055 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 463.067166 -The maximum resident set size (KB) = 564056 +The total amount of wall time = 462.988811 +The maximum resident set size (KB) = 564932 Test 055 rrfs_v1nssl_nohailnoccn PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/rrfs_conus13km_hrrr_warm Checking test 056 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2380,14 +2386,14 @@ Checking test 056 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 114.082593 -The maximum resident set size (KB) = 757716 +The total amount of wall time = 115.167950 +The maximum resident set size (KB) = 763992 Test 056 rrfs_conus13km_hrrr_warm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/rrfs_smoke_conus13km_hrrr_warm Checking test 057 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2396,14 +2402,14 @@ Checking test 057 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 127.581851 -The maximum resident set size (KB) = 778504 +The total amount of wall time = 126.390821 +The maximum resident set size (KB) = 774156 Test 057 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/rrfs_conus13km_radar_tten_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/rrfs_conus13km_radar_tten_warm Checking test 058 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2412,14 +2418,14 @@ Checking test 058 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 115.552413 -The maximum resident set size (KB) = 765500 +The total amount of wall time = 115.441074 +The maximum resident set size (KB) = 764936 Test 058 rrfs_conus13km_radar_tten_warm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/rrfs_conus13km_hrrr_warm_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/rrfs_conus13km_hrrr_warm_2threads Checking test 059 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2428,14 +2434,14 @@ Checking test 059 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 84.700018 -The maximum resident set size (KB) = 763924 +The total amount of wall time = 85.713747 +The maximum resident set size (KB) = 758912 Test 059 rrfs_conus13km_hrrr_warm_2threads PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/rrfs_conus13km_radar_tten_warm_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/rrfs_conus13km_radar_tten_warm_2threads Checking test 060 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2444,14 +2450,14 @@ Checking test 060 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 86.228946 -The maximum resident set size (KB) = 761256 +The total amount of wall time = 86.037378 +The maximum resident set size (KB) = 759924 Test 060 rrfs_conus13km_radar_tten_warm_2threads PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_csawmg -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/control_csawmg +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/control_csawmg Checking test 061 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2462,14 +2468,14 @@ Checking test 061 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 343.296644 -The maximum resident set size (KB) = 588360 +The total amount of wall time = 343.442204 +The maximum resident set size (KB) = 587652 Test 061 control_csawmg PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_csawmgt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/control_csawmgt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/control_csawmgt Checking test 062 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2480,14 +2486,14 @@ Checking test 062 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 342.355473 -The maximum resident set size (KB) = 585272 +The total amount of wall time = 340.673141 +The maximum resident set size (KB) = 584772 Test 062 control_csawmgt PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_ras -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/control_ras +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/control_ras Checking test 063 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2498,54 +2504,54 @@ Checking test 063 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 178.901217 -The maximum resident set size (KB) = 552360 +The total amount of wall time = 178.674586 +The maximum resident set size (KB) = 550604 Test 063 control_ras PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_wam -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/control_wam +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/control_wam Checking test 064 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 115.269715 -The maximum resident set size (KB) = 263956 +The total amount of wall time = 115.965585 +The maximum resident set size (KB) = 264184 Test 064 control_wam PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/rrfs_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/rrfs_conus13km_hrrr_warm_debug Checking test 065 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 769.659442 -The maximum resident set size (KB) = 779832 +The total amount of wall time = 769.617942 +The maximum resident set size (KB) = 787980 Test 065 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/rrfs_conus13km_radar_tten_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/rrfs_conus13km_radar_tten_warm_debug Checking test 066 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 770.256674 -The maximum resident set size (KB) = 789068 +The total amount of wall time = 770.542643 +The maximum resident set size (KB) = 793688 Test 066 rrfs_conus13km_radar_tten_warm_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_CubedSphereGrid_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/control_CubedSphereGrid_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/control_CubedSphereGrid_debug Checking test 067 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2572,334 +2578,334 @@ Checking test 067 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 165.262522 -The maximum resident set size (KB) = 673004 +The total amount of wall time = 163.436336 +The maximum resident set size (KB) = 675268 -Test 067 control_CubedSphereGrid_debug PASS +Test 067 control_CubedSphereGrid_debug PASS Tries: 2 baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/control_wrtGauss_netcdf_parallel_debug Checking test 068 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 157.550036 -The maximum resident set size (KB) = 678308 +The total amount of wall time = 155.956029 +The maximum resident set size (KB) = 679040 Test 068 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_stochy_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/control_stochy_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/control_stochy_debug Checking test 069 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 178.146492 -The maximum resident set size (KB) = 682748 +The total amount of wall time = 175.792305 +The maximum resident set size (KB) = 684504 Test 069 control_stochy_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/control_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/control_lndp_debug Checking test 070 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 159.735465 -The maximum resident set size (KB) = 682420 +The total amount of wall time = 158.353617 +The maximum resident set size (KB) = 679096 Test 070 control_lndp_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_csawmg_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/control_csawmg_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/control_csawmg_debug Checking test 071 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 253.054160 -The maximum resident set size (KB) = 715772 +The total amount of wall time = 252.538537 +The maximum resident set size (KB) = 716808 Test 071 control_csawmg_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_csawmgt_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/control_csawmgt_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/control_csawmgt_debug Checking test 072 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 246.231069 -The maximum resident set size (KB) = 719028 +The total amount of wall time = 247.933033 +The maximum resident set size (KB) = 717652 Test 072 control_csawmgt_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_ras_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/control_ras_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/control_ras_debug Checking test 073 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 160.666173 -The maximum resident set size (KB) = 689708 +The total amount of wall time = 159.395706 +The maximum resident set size (KB) = 690388 Test 073 control_ras_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/control_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/control_diag_debug Checking test 074 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 161.737859 -The maximum resident set size (KB) = 736132 +The total amount of wall time = 160.367766 +The maximum resident set size (KB) = 737832 Test 074 control_diag_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_debug_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/control_debug_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/control_debug_p8 Checking test 075 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 182.550360 -The maximum resident set size (KB) = 1495740 +The total amount of wall time = 183.538006 +The maximum resident set size (KB) = 1499172 Test 075 control_debug_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/regional_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/regional_debug Checking test 076 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1037.528585 -The maximum resident set size (KB) = 663312 +The total amount of wall time = 1033.357888 +The maximum resident set size (KB) = 668904 Test 076 regional_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/rap_control_debug Checking test 077 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 296.083746 -The maximum resident set size (KB) = 1051600 +The total amount of wall time = 293.998202 +The maximum resident set size (KB) = 1050456 Test 077 rap_control_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/hrrr_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/hrrr_control_debug Checking test 078 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 289.889261 -The maximum resident set size (KB) = 1048912 +The total amount of wall time = 288.614407 +The maximum resident set size (KB) = 1049120 Test 078 hrrr_control_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/rap_unified_drag_suite_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/rap_unified_drag_suite_debug Checking test 079 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 295.513904 -The maximum resident set size (KB) = 1050316 +The total amount of wall time = 295.773782 +The maximum resident set size (KB) = 1052936 -Test 079 rap_unified_drag_suite_debug PASS Tries: 2 +Test 079 rap_unified_drag_suite_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/rap_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/rap_diag_debug Checking test 080 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 306.633000 -The maximum resident set size (KB) = 1133856 +The total amount of wall time = 305.315683 +The maximum resident set size (KB) = 1135316 Test 080 rap_diag_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/rap_cires_ugwp_debug Checking test 081 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.420979 -The maximum resident set size (KB) = 1054292 +The total amount of wall time = 300.729584 +The maximum resident set size (KB) = 1049648 Test 081 rap_cires_ugwp_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/rap_unified_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/rap_unified_ugwp_debug Checking test 082 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 302.562412 -The maximum resident set size (KB) = 1055340 +The total amount of wall time = 301.090226 +The maximum resident set size (KB) = 1054668 Test 082 rap_unified_ugwp_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/rap_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/rap_lndp_debug Checking test 083 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.837407 -The maximum resident set size (KB) = 1050836 +The total amount of wall time = 295.788107 +The maximum resident set size (KB) = 1053920 Test 083 rap_lndp_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_flake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/rap_flake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/rap_flake_debug Checking test 084 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 294.866148 -The maximum resident set size (KB) = 1052368 +The total amount of wall time = 295.309639 +The maximum resident set size (KB) = 1051308 Test 084 rap_flake_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_progcld_thompson_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/rap_progcld_thompson_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/rap_progcld_thompson_debug Checking test 085 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 294.878341 -The maximum resident set size (KB) = 1052280 +The total amount of wall time = 294.071467 +The maximum resident set size (KB) = 1053596 Test 085 rap_progcld_thompson_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_noah_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/rap_noah_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/rap_noah_debug Checking test 086 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 288.033584 -The maximum resident set size (KB) = 1052096 +The total amount of wall time = 287.759695 +The maximum resident set size (KB) = 1050548 Test 086 rap_noah_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_sfcdiff_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/rap_sfcdiff_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/rap_sfcdiff_debug Checking test 087 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 295.713900 -The maximum resident set size (KB) = 1053696 +The total amount of wall time = 296.016392 +The maximum resident set size (KB) = 1055208 Test 087 rap_sfcdiff_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/rap_noah_sfcdiff_cires_ugwp_debug Checking test 088 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 484.108805 -The maximum resident set size (KB) = 1049080 +The total amount of wall time = 482.889693 +The maximum resident set size (KB) = 1049564 Test 088 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_v1beta_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/rrfs_v1beta_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/rrfs_v1beta_debug Checking test 089 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 289.253827 -The maximum resident set size (KB) = 1048600 +The total amount of wall time = 289.475202 +The maximum resident set size (KB) = 1049584 Test 089 rrfs_v1beta_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_wam_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/control_wam_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/control_wam_debug Checking test 090 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 294.729943 -The maximum resident set size (KB) = 296212 +The total amount of wall time = 293.916732 +The maximum resident set size (KB) = 296576 Test 090 control_wam_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 091 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2910,14 +2916,14 @@ Checking test 091 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 266.716152 -The maximum resident set size (KB) = 875832 +The total amount of wall time = 267.929792 +The maximum resident set size (KB) = 878092 Test 091 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/rap_control_dyn32_phy32 Checking test 092 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2964,14 +2970,14 @@ Checking test 092 rap_control_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 343.070570 -The maximum resident set size (KB) = 779040 +The total amount of wall time = 342.428695 +The maximum resident set size (KB) = 775300 Test 092 rap_control_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/hrrr_control_dyn32_phy32 Checking test 093 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3018,14 +3024,14 @@ Checking test 093 hrrr_control_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 179.835915 -The maximum resident set size (KB) = 775060 +The total amount of wall time = 180.607554 +The maximum resident set size (KB) = 775932 Test 093 hrrr_control_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/rap_2threads_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/rap_2threads_dyn32_phy32 Checking test 094 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3072,14 +3078,14 @@ Checking test 094 rap_2threads_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 320.014698 -The maximum resident set size (KB) = 828492 +The total amount of wall time = 319.928795 +The maximum resident set size (KB) = 831856 Test 094 rap_2threads_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/hrrr_control_2threads_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/hrrr_control_2threads_dyn32_phy32 Checking test 095 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3126,14 +3132,14 @@ Checking test 095 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 170.559269 -The maximum resident set size (KB) = 831144 +The total amount of wall time = 170.690656 +The maximum resident set size (KB) = 832096 Test 095 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/hrrr_control_decomp_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/hrrr_control_decomp_dyn32_phy32 Checking test 096 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3180,14 +3186,14 @@ Checking test 096 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 188.013227 -The maximum resident set size (KB) = 774916 +The total amount of wall time = 187.895397 +The maximum resident set size (KB) = 774784 Test 096 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/rap_restart_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/rap_restart_dyn32_phy32 Checking test 097 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3226,14 +3232,14 @@ Checking test 097 rap_restart_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 254.363035 -The maximum resident set size (KB) = 614220 +The total amount of wall time = 252.234766 +The maximum resident set size (KB) = 613148 Test 097 rap_restart_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/hrrr_control_restart_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/hrrr_control_restart_dyn32_phy32 Checking test 098 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3272,14 +3278,14 @@ Checking test 098 hrrr_control_restart_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 92.375813 -The maximum resident set size (KB) = 610336 +The total amount of wall time = 91.912149 +The maximum resident set size (KB) = 606340 Test 098 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/rap_control_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/rap_control_dyn64_phy32 Checking test 099 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3326,81 +3332,81 @@ Checking test 099 rap_control_dyn64_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 230.685252 -The maximum resident set size (KB) = 798848 +The total amount of wall time = 230.504166 +The maximum resident set size (KB) = 798712 Test 099 rap_control_dyn64_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/rap_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/rap_control_debug_dyn32_phy32 Checking test 100 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 286.305271 -The maximum resident set size (KB) = 936716 +The total amount of wall time = 286.891340 +The maximum resident set size (KB) = 938500 Test 100 rap_control_debug_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/hrrr_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/hrrr_control_debug_dyn32_phy32 Checking test 101 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 282.308751 -The maximum resident set size (KB) = 939884 +The total amount of wall time = 282.178230 +The maximum resident set size (KB) = 936048 Test 101 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/rap_control_dyn64_phy32_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/rap_control_dyn64_phy32_debug Checking test 102 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 293.888419 -The maximum resident set size (KB) = 955964 +The total amount of wall time = 293.895214 +The maximum resident set size (KB) = 955056 Test 102 rap_control_dyn64_phy32_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/hafs_regional_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/hafs_regional_atm Checking test 103 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 253.717436 -The maximum resident set size (KB) = 796064 +The total amount of wall time = 252.242601 +The maximum resident set size (KB) = 793504 Test 103 hafs_regional_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/hafs_regional_atm_thompson_gfdlsf Checking test 104 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 293.825470 -The maximum resident set size (KB) = 1160620 +The total amount of wall time = 296.923806 +The maximum resident set size (KB) = 1154780 Test 104 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/hafs_regional_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/hafs_regional_atm_ocn Checking test 105 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3409,14 +3415,14 @@ Checking test 105 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 375.072353 -The maximum resident set size (KB) = 831660 +The total amount of wall time = 375.729662 +The maximum resident set size (KB) = 832048 Test 105 hafs_regional_atm_ocn PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_atm_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/hafs_regional_atm_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/hafs_regional_atm_wav Checking test 106 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3425,14 +3431,14 @@ Checking test 106 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 698.439035 -The maximum resident set size (KB) = 865888 +The total amount of wall time = 692.796337 +The maximum resident set size (KB) = 869984 Test 106 hafs_regional_atm_wav PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/hafs_regional_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/hafs_regional_atm_ocn_wav Checking test 107 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3443,28 +3449,28 @@ Checking test 107 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 885.302086 -The maximum resident set size (KB) = 890968 +The total amount of wall time = 891.804172 +The maximum resident set size (KB) = 893924 Test 107 hafs_regional_atm_ocn_wav PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/hafs_regional_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/hafs_regional_1nest_atm Checking test 108 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 325.672343 -The maximum resident set size (KB) = 382912 +The total amount of wall time = 324.160912 +The maximum resident set size (KB) = 388396 Test 108 hafs_regional_1nest_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/hafs_regional_telescopic_2nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/hafs_regional_telescopic_2nests_atm Checking test 109 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3473,28 +3479,28 @@ Checking test 109 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 392.251220 -The maximum resident set size (KB) = 394832 +The total amount of wall time = 394.510526 +The maximum resident set size (KB) = 403492 Test 109 hafs_regional_telescopic_2nests_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_global_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/hafs_global_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/hafs_global_1nest_atm Checking test 110 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 164.389314 -The maximum resident set size (KB) = 269100 +The total amount of wall time = 163.200722 +The maximum resident set size (KB) = 261900 Test 110 hafs_global_1nest_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_global_multiple_4nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/hafs_global_multiple_4nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/hafs_global_multiple_4nests_atm Checking test 111 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3512,14 +3518,14 @@ Checking test 111 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -The total amount of wall time = 479.146223 -The maximum resident set size (KB) = 336552 +The total amount of wall time = 483.916970 +The maximum resident set size (KB) = 333000 -Test 111 hafs_global_multiple_4nests_atm PASS Tries: 2 +Test 111 hafs_global_multiple_4nests_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/hafs_regional_specified_moving_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/hafs_regional_specified_moving_1nest_atm Checking test 112 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3528,28 +3534,28 @@ Checking test 112 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 209.009712 -The maximum resident set size (KB) = 397700 +The total amount of wall time = 210.222260 +The maximum resident set size (KB) = 398776 Test 112 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/hafs_regional_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/hafs_regional_storm_following_1nest_atm Checking test 113 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 198.829169 -The maximum resident set size (KB) = 399560 +The total amount of wall time = 199.089920 +The maximum resident set size (KB) = 399776 Test 113 hafs_regional_storm_following_1nest_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/hafs_regional_storm_following_1nest_atm_ocn Checking test 114 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3558,42 +3564,42 @@ Checking test 114 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 237.464689 -The maximum resident set size (KB) = 449164 +The total amount of wall time = 236.374374 +The maximum resident set size (KB) = 449256 Test 114 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/hafs_global_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/hafs_global_storm_following_1nest_atm Checking test 115 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 78.440180 -The maximum resident set size (KB) = 281244 +The total amount of wall time = 78.393752 +The maximum resident set size (KB) = 280644 Test 115 hafs_global_storm_following_1nest_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 116 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 799.312342 -The maximum resident set size (KB) = 471776 +The total amount of wall time = 799.843645 +The maximum resident set size (KB) = 480076 Test 116 hafs_regional_storm_following_1nest_atm_ocn_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 117 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3604,14 +3610,14 @@ Checking test 117 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -The total amount of wall time = 513.675903 -The maximum resident set size (KB) = 513424 +The total amount of wall time = 513.491856 +The maximum resident set size (KB) = 515072 Test 117 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_docn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/hafs_regional_docn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/hafs_regional_docn Checking test 118 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3619,14 +3625,14 @@ Checking test 118 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 357.463930 -The maximum resident set size (KB) = 835784 +The total amount of wall time = 359.577740 +The maximum resident set size (KB) = 837708 Test 118 hafs_regional_docn PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_docn_oisst -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/hafs_regional_docn_oisst +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/hafs_regional_docn_oisst Checking test 119 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3634,131 +3640,131 @@ Checking test 119 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 359.521820 -The maximum resident set size (KB) = 820456 +The total amount of wall time = 360.255889 +The maximum resident set size (KB) = 824996 Test 119 hafs_regional_docn_oisst PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_datm_cdeps -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/hafs_regional_datm_cdeps +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/hafs_regional_datm_cdeps Checking test 120 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -The total amount of wall time = 945.919906 -The maximum resident set size (KB) = 835560 +The total amount of wall time = 941.144724 +The maximum resident set size (KB) = 867184 Test 120 hafs_regional_datm_cdeps PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/datm_cdeps_control_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/datm_cdeps_control_cfsr Checking test 121 datm_cdeps_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.485389 -The maximum resident set size (KB) = 732564 +The total amount of wall time = 140.676831 +The maximum resident set size (KB) = 732816 Test 121 datm_cdeps_control_cfsr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/datm_cdeps_restart_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/datm_cdeps_restart_cfsr Checking test 122 datm_cdeps_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 86.505795 -The maximum resident set size (KB) = 726948 +The total amount of wall time = 86.448956 +The maximum resident set size (KB) = 730944 Test 122 datm_cdeps_restart_cfsr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_control_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/datm_cdeps_control_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/datm_cdeps_control_gefs Checking test 123 datm_cdeps_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 134.509265 -The maximum resident set size (KB) = 615672 +The total amount of wall time = 134.160389 +The maximum resident set size (KB) = 618260 Test 123 datm_cdeps_control_gefs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_iau_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/datm_cdeps_iau_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/datm_cdeps_iau_gefs Checking test 124 datm_cdeps_iau_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 137.763853 -The maximum resident set size (KB) = 611764 +The total amount of wall time = 136.783464 +The maximum resident set size (KB) = 613796 Test 124 datm_cdeps_iau_gefs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_stochy_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/datm_cdeps_stochy_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/datm_cdeps_stochy_gefs Checking test 125 datm_cdeps_stochy_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 137.781107 -The maximum resident set size (KB) = 613512 +The total amount of wall time = 138.746788 +The maximum resident set size (KB) = 614400 Test 125 datm_cdeps_stochy_gefs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/datm_cdeps_ciceC_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/datm_cdeps_ciceC_cfsr Checking test 126 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 142.091296 -The maximum resident set size (KB) = 722620 +The total amount of wall time = 141.462730 +The maximum resident set size (KB) = 736644 Test 126 datm_cdeps_ciceC_cfsr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/datm_cdeps_bulk_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/datm_cdeps_bulk_cfsr Checking test 127 datm_cdeps_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 142.144348 -The maximum resident set size (KB) = 734128 +The total amount of wall time = 142.270541 +The maximum resident set size (KB) = 732172 Test 127 datm_cdeps_bulk_cfsr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/datm_cdeps_bulk_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/datm_cdeps_bulk_gefs Checking test 128 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 135.272893 -The maximum resident set size (KB) = 611552 +The total amount of wall time = 134.306534 +The maximum resident set size (KB) = 615156 Test 128 datm_cdeps_bulk_gefs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/datm_cdeps_mx025_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/datm_cdeps_mx025_cfsr Checking test 129 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -3767,14 +3773,14 @@ Checking test 129 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 430.282984 -The maximum resident set size (KB) = 570728 +The total amount of wall time = 430.655550 +The maximum resident set size (KB) = 569576 Test 129 datm_cdeps_mx025_cfsr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/datm_cdeps_mx025_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/datm_cdeps_mx025_gefs Checking test 130 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -3783,51 +3789,51 @@ Checking test 130 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 428.058553 -The maximum resident set size (KB) = 548260 +The total amount of wall time = 431.729307 +The maximum resident set size (KB) = 553540 Test 130 datm_cdeps_mx025_gefs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/datm_cdeps_multiple_files_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/datm_cdeps_multiple_files_cfsr Checking test 131 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.722003 -The maximum resident set size (KB) = 732832 +The total amount of wall time = 141.158249 +The maximum resident set size (KB) = 731836 Test 131 datm_cdeps_multiple_files_cfsr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/datm_cdeps_3072x1536_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/datm_cdeps_3072x1536_cfsr Checking test 132 datm_cdeps_3072x1536_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 256.210386 -The maximum resident set size (KB) = 1984552 +The total amount of wall time = 255.803613 +The maximum resident set size (KB) = 1982704 Test 132 datm_cdeps_3072x1536_cfsr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_gfs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/datm_cdeps_gfs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/datm_cdeps_gfs Checking test 133 datm_cdeps_gfs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 256.188944 -The maximum resident set size (KB) = 1981356 +The total amount of wall time = 257.456842 +The maximum resident set size (KB) = 1979176 Test 133 datm_cdeps_gfs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/datm_cdeps_lnd_gswp3 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/datm_cdeps_lnd_gswp3 Checking test 134 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -3836,14 +3842,14 @@ Checking test 134 datm_cdeps_lnd_gswp3 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 = 21.808263 -The maximum resident set size (KB) = 228860 +The total amount of wall time = 21.933123 +The maximum resident set size (KB) = 231712 Test 134 datm_cdeps_lnd_gswp3 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/datm_cdeps_lnd_gswp3_rst +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/datm_cdeps_lnd_gswp3_rst Checking test 135 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -3852,14 +3858,14 @@ Checking test 135 datm_cdeps_lnd_gswp3_rst 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.047822 -The maximum resident set size (KB) = 226188 +The total amount of wall time = 27.409731 +The maximum resident set size (KB) = 228044 Test 135 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8_atmlnd_sbs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/control_p8_atmlnd_sbs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/control_p8_atmlnd_sbs Checking test 136 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3944,14 +3950,14 @@ Checking test 136 control_p8_atmlnd_sbs 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 = 234.690568 -The maximum resident set size (KB) = 1535528 +The total amount of wall time = 233.039512 +The maximum resident set size (KB) = 1535364 Test 136 control_p8_atmlnd_sbs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_atmwav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/control_atmwav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/control_atmwav Checking test 137 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -3995,14 +4001,14 @@ Checking test 137 control_atmwav results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -The total amount of wall time = 88.139875 -The maximum resident set size (KB) = 541288 +The total amount of wall time = 87.232131 +The maximum resident set size (KB) = 539324 Test 137 control_atmwav PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/atmaero_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/atmaero_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/atmaero_control_p8 Checking test 138 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4046,14 +4052,14 @@ Checking test 138 atmaero_control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 240.767997 -The maximum resident set size (KB) = 2809428 +The total amount of wall time = 241.897865 +The maximum resident set size (KB) = 2812192 Test 138 atmaero_control_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/atmaero_control_p8_rad -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/atmaero_control_p8_rad +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/atmaero_control_p8_rad Checking test 139 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4097,14 +4103,14 @@ Checking test 139 atmaero_control_p8_rad results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 279.550084 -The maximum resident set size (KB) = 2875940 +The total amount of wall time = 278.515667 +The maximum resident set size (KB) = 2873620 Test 139 atmaero_control_p8_rad PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/atmaero_control_p8_rad_micro +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/atmaero_control_p8_rad_micro Checking test 140 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4148,14 +4154,14 @@ Checking test 140 atmaero_control_p8_rad_micro results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 286.173448 -The maximum resident set size (KB) = 2885916 +The total amount of wall time = 283.725866 +The maximum resident set size (KB) = 2885100 Test 140 atmaero_control_p8_rad_micro PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_atmaq -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/regional_atmaq +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/regional_atmaq Checking test 141 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4171,14 +4177,14 @@ Checking test 141 regional_atmaq results .... Comparing RESTART/phy_data.nc .........OK Comparing RESTART/sfc_data.nc .........OK -The total amount of wall time = 657.715517 -The maximum resident set size (KB) = 1380168 +The total amount of wall time = 656.505517 +The maximum resident set size (KB) = 1383916 Test 141 regional_atmaq PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_atmaq_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113474/regional_atmaq_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/regional_atmaq_debug Checking test 142 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4192,12 +4198,12 @@ Checking test 142 regional_atmaq_debug results .... Comparing RESTART/phy_data.nc .........OK Comparing RESTART/sfc_data.nc .........OK -The total amount of wall time = 1427.887584 -The maximum resident set size (KB) = 1418000 +The total amount of wall time = 1457.863154 +The maximum resident set size (KB) = 1417964 Test 142 regional_atmaq_debug PASS REGRESSION TEST WAS SUCCESSFUL -Fri Feb 17 17:41:14 UTC 2023 -Elapsed time: 01h:52m:34s. Have a nice day! +Tue Feb 21 16:31:09 UTC 2023 +Elapsed time: 01h:57m:26s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index 615ea582ca9..4ef5b77896e 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,21 +1,21 @@ -Thu Feb 16 16:09:56 MST 2023 +Mon Feb 20 17:08:27 MST 2023 Start Regression test -Compile 001 elapsed time 375 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 392 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 853 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 193 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 364 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 1061 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 847 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 851 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 655 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 571 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 354 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 012 elapsed time 299 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 001 elapsed time 371 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 395 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 849 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 189 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 367 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 1056 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 838 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 847 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 642 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 565 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 358 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 012 elapsed time 295 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/control_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_31381/control_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/control_c48 Checking test 001 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -54,14 +54,14 @@ Checking test 001 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 818.992847 -0:The maximum resident set size (KB) = 675756 +0:The total amount of wall time = 818.818677 +0:The maximum resident set size (KB) = 675744 Test 001 control_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_31381/control_stochy +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/control_stochy Checking test 002 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -72,14 +72,14 @@ Checking test 002 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 173.347049 -0:The maximum resident set size (KB) = 442788 +0:The total amount of wall time = 176.250677 +0:The maximum resident set size (KB) = 442736 Test 002 control_stochy PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/control_ras -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_31381/control_ras +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/control_ras Checking test 003 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -90,14 +90,14 @@ Checking test 003 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 287.311832 -0:The maximum resident set size (KB) = 461156 +0:The total amount of wall time = 294.078365 +0:The maximum resident set size (KB) = 461172 Test 003 control_ras PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_31381/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/control_p8 Checking test 004 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -144,14 +144,14 @@ Checking test 004 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 302.959432 -0:The maximum resident set size (KB) = 1235196 +0:The total amount of wall time = 309.238960 +0:The maximum resident set size (KB) = 1235172 Test 004 control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_31381/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/rap_control Checking test 005 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -198,14 +198,14 @@ Checking test 005 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 711.104730 -0:The maximum resident set size (KB) = 791688 +0:The total amount of wall time = 717.594273 +0:The maximum resident set size (KB) = 791748 Test 005 rap_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_31381/rap_decomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/rap_decomp Checking test 006 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -252,14 +252,14 @@ Checking test 006 rap_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 718.572931 -0:The maximum resident set size (KB) = 791752 +0:The total amount of wall time = 727.158898 +0:The maximum resident set size (KB) = 791732 Test 006 rap_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_31381/rap_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/rap_2threads Checking test 007 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -306,14 +306,14 @@ Checking test 007 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 662.183754 -0:The maximum resident set size (KB) = 863980 +0:The total amount of wall time = 662.187024 +0:The maximum resident set size (KB) = 863932 Test 007 rap_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_31381/rap_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/rap_restart Checking test 008 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -352,14 +352,14 @@ Checking test 008 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 354.470352 -0:The maximum resident set size (KB) = 540104 +0:The total amount of wall time = 356.320991 +0:The maximum resident set size (KB) = 540156 Test 008 rap_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_31381/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/rap_sfcdiff Checking test 009 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -406,14 +406,14 @@ Checking test 009 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 704.383650 -0:The maximum resident set size (KB) = 791620 +0:The total amount of wall time = 710.928589 +0:The maximum resident set size (KB) = 791700 Test 009 rap_sfcdiff PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_31381/rap_sfcdiff_decomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/rap_sfcdiff_decomp Checking test 010 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -460,14 +460,14 @@ Checking test 010 rap_sfcdiff_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 721.351550 -0:The maximum resident set size (KB) = 791236 +0:The total amount of wall time = 719.254929 +0:The maximum resident set size (KB) = 791164 Test 010 rap_sfcdiff_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_31381/rap_sfcdiff_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/rap_sfcdiff_restart Checking test 011 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -506,14 +506,14 @@ Checking test 011 rap_sfcdiff_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 525.564213 -0:The maximum resident set size (KB) = 538992 +0:The total amount of wall time = 530.489670 +0:The maximum resident set size (KB) = 539224 Test 011 rap_sfcdiff_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_31381/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/hrrr_control Checking test 012 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -560,14 +560,14 @@ Checking test 012 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 683.870795 -0:The maximum resident set size (KB) = 789256 +0:The total amount of wall time = 688.378125 +0:The maximum resident set size (KB) = 789140 Test 012 hrrr_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_31381/hrrr_control_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/hrrr_control_2threads Checking test 013 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -614,14 +614,14 @@ Checking test 013 hrrr_control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 618.772253 -0:The maximum resident set size (KB) = 859192 +0:The total amount of wall time = 622.869701 +0:The maximum resident set size (KB) = 858652 Test 013 hrrr_control_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_31381/hrrr_control_decomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/hrrr_control_decomp Checking test 014 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -668,14 +668,14 @@ Checking test 014 hrrr_control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 684.415883 -0:The maximum resident set size (KB) = 788820 +0:The total amount of wall time = 683.832970 +0:The maximum resident set size (KB) = 788868 Test 014 hrrr_control_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_31381/hrrr_control_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/hrrr_control_restart Checking test 015 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -714,14 +714,14 @@ Checking test 015 hrrr_control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 510.626304 -0:The maximum resident set size (KB) = 535540 +0:The total amount of wall time = 514.866714 +0:The maximum resident set size (KB) = 535116 Test 015 hrrr_control_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/rrfs_v1beta -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_31381/rrfs_v1beta +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/rrfs_v1beta Checking test 016 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -768,14 +768,14 @@ Checking test 016 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 694.869766 -0:The maximum resident set size (KB) = 788656 +0:The total amount of wall time = 699.885532 +0:The maximum resident set size (KB) = 788548 Test 016 rrfs_v1beta PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_31381/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/rrfs_conus13km_hrrr_warm Checking test 017 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -784,14 +784,14 @@ Checking test 017 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 201.658009 -0:The maximum resident set size (KB) = 606716 +0:The total amount of wall time = 203.835544 +0:The maximum resident set size (KB) = 606740 Test 017 rrfs_conus13km_hrrr_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_31381/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/rrfs_smoke_conus13km_hrrr_warm Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -800,14 +800,14 @@ Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 220.908544 -0:The maximum resident set size (KB) = 620764 +0:The total amount of wall time = 220.059800 +0:The maximum resident set size (KB) = 620792 Test 018 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_31381/rrfs_conus13km_radar_tten_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/rrfs_conus13km_radar_tten_warm Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -816,14 +816,14 @@ Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 205.350403 -0:The maximum resident set size (KB) = 609452 +0:The total amount of wall time = 202.999682 +0:The maximum resident set size (KB) = 609912 Test 019 rrfs_conus13km_radar_tten_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_31381/rrfs_conus13km_radar_tten_warm_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/rrfs_conus13km_radar_tten_warm_2threads Checking test 020 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -832,208 +832,208 @@ Checking test 020 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 130.888127 -0:The maximum resident set size (KB) = 627908 +0:The total amount of wall time = 131.605931 +0:The maximum resident set size (KB) = 629020 Test 020 rrfs_conus13km_radar_tten_warm_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/control_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_31381/control_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/control_diag_debug Checking test 021 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 87.577727 -0:The maximum resident set size (KB) = 497220 +0:The total amount of wall time = 87.223393 +0:The maximum resident set size (KB) = 497148 Test 021 control_diag_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/regional_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_31381/regional_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/regional_debug Checking test 022 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 477.198505 -0:The maximum resident set size (KB) = 565980 +0:The total amount of wall time = 475.866206 +0:The maximum resident set size (KB) = 569848 Test 022 regional_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_31381/rap_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/rap_control_debug Checking test 023 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 148.202324 -0:The maximum resident set size (KB) = 814104 +0:The total amount of wall time = 147.856351 +0:The maximum resident set size (KB) = 814404 Test 023 rap_control_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/hrrr_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_31381/hrrr_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/hrrr_control_debug Checking test 024 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 145.023158 -0:The maximum resident set size (KB) = 808912 +0:The total amount of wall time = 145.874476 +0:The maximum resident set size (KB) = 809240 Test 024 hrrr_control_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/rap_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_31381/rap_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/rap_diag_debug Checking test 025 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 157.360746 -0:The maximum resident set size (KB) = 897484 +0:The total amount of wall time = 160.087286 +0:The maximum resident set size (KB) = 896960 Test 025 rap_diag_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_31381/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/rap_noah_sfcdiff_cires_ugwp_debug Checking test 026 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 236.296841 -0:The maximum resident set size (KB) = 812376 +0:The total amount of wall time = 236.067753 +0:The maximum resident set size (KB) = 812372 Test 026 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/rap_progcld_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_31381/rap_progcld_thompson_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/rap_progcld_thompson_debug Checking test 027 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 149.050370 -0:The maximum resident set size (KB) = 814420 +0:The total amount of wall time = 149.616724 +0:The maximum resident set size (KB) = 814052 Test 027 rap_progcld_thompson_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/rrfs_v1beta_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_31381/rrfs_v1beta_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/rrfs_v1beta_debug Checking test 028 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 146.696969 -0:The maximum resident set size (KB) = 808564 +0:The total amount of wall time = 146.969427 +0:The maximum resident set size (KB) = 808480 Test 028 rrfs_v1beta_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/control_ras_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_31381/control_ras_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/control_ras_debug Checking test 029 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 83.641281 -0:The maximum resident set size (KB) = 449232 +0:The total amount of wall time = 84.071542 +0:The maximum resident set size (KB) = 449572 Test 029 control_ras_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/control_stochy_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_31381/control_stochy_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/control_stochy_debug Checking test 030 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 91.273865 -0:The maximum resident set size (KB) = 443888 +0:The total amount of wall time = 92.129487 +0:The maximum resident set size (KB) = 443964 Test 030 control_stochy_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/control_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_31381/control_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/control_debug_p8 Checking test 031 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 93.947234 -0:The maximum resident set size (KB) = 1226644 +0:The total amount of wall time = 94.219861 +0:The maximum resident set size (KB) = 1226620 Test 031 control_debug_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_31381/rrfs_conus13km_hrrr_warm_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/rrfs_conus13km_hrrr_warm_debug Checking test 032 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 382.095365 -0:The maximum resident set size (KB) = 614332 +0:The total amount of wall time = 381.736795 +0:The maximum resident set size (KB) = 613888 Test 032 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/rrfs_conus13km_radar_tten_warm_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_31381/rrfs_conus13km_radar_tten_warm_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/rrfs_conus13km_radar_tten_warm_debug Checking test 033 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 383.000280 -0:The maximum resident set size (KB) = 617252 +0:The total amount of wall time = 382.717598 +0:The maximum resident set size (KB) = 617212 Test 033 rrfs_conus13km_radar_tten_warm_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/control_wam_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_31381/control_wam_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/control_wam_debug Checking test 034 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 145.847471 -0:The maximum resident set size (KB) = 185860 +0:The total amount of wall time = 145.660280 +0:The maximum resident set size (KB) = 185792 Test 034 control_wam_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_31381/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/rap_control_dyn32_phy32 Checking test 035 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1080,14 +1080,14 @@ Checking test 035 rap_control_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 683.742673 -0:The maximum resident set size (KB) = 677280 +0:The total amount of wall time = 686.657543 +0:The maximum resident set size (KB) = 677340 Test 035 rap_control_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_31381/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/hrrr_control_dyn32_phy32 Checking test 036 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1134,14 +1134,14 @@ Checking test 036 hrrr_control_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 347.019489 -0:The maximum resident set size (KB) = 675812 +0:The total amount of wall time = 349.321527 +0:The maximum resident set size (KB) = 675752 Test 036 hrrr_control_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_31381/rap_2threads_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/rap_2threads_dyn32_phy32 Checking test 037 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1188,14 +1188,14 @@ Checking test 037 rap_2threads_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 623.027214 -0:The maximum resident set size (KB) = 722880 +0:The total amount of wall time = 624.876978 +0:The maximum resident set size (KB) = 723076 Test 037 rap_2threads_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_31381/hrrr_control_2threads_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/hrrr_control_2threads_dyn32_phy32 Checking test 038 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1242,14 +1242,14 @@ Checking test 038 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 318.706986 -0:The maximum resident set size (KB) = 715464 +0:The total amount of wall time = 320.289223 +0:The maximum resident set size (KB) = 715536 Test 038 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_31381/hrrr_control_decomp_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/hrrr_control_decomp_dyn32_phy32 Checking test 039 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1296,14 +1296,14 @@ Checking test 039 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 346.916300 +0:The total amount of wall time = 348.663211 0:The maximum resident set size (KB) = 674708 Test 039 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_31381/rap_restart_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/rap_restart_dyn32_phy32 Checking test 040 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1342,14 +1342,14 @@ Checking test 040 rap_restart_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 512.901912 -0:The maximum resident set size (KB) = 516824 +0:The total amount of wall time = 514.222733 +0:The maximum resident set size (KB) = 515444 Test 040 rap_restart_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_31381/hrrr_control_restart_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/hrrr_control_restart_dyn32_phy32 Checking test 041 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1388,14 +1388,14 @@ Checking test 041 hrrr_control_restart_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 175.859540 -0:The maximum resident set size (KB) = 513116 +0:The total amount of wall time = 177.219199 +0:The maximum resident set size (KB) = 513256 Test 041 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/rap_control_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_31381/rap_control_dyn64_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/rap_control_dyn64_phy32 Checking test 042 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1442,56 +1442,56 @@ Checking test 042 rap_control_dyn64_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 407.604033 -0:The maximum resident set size (KB) = 698204 +0:The total amount of wall time = 403.113199 +0:The maximum resident set size (KB) = 698244 Test 042 rap_control_dyn64_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_31381/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/rap_control_debug_dyn32_phy32 Checking test 043 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 147.750377 -0:The maximum resident set size (KB) = 695376 +0:The total amount of wall time = 147.415649 +0:The maximum resident set size (KB) = 695460 Test 043 rap_control_debug_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_31381/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/hrrr_control_debug_dyn32_phy32 Checking test 044 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 144.631919 -0:The maximum resident set size (KB) = 692076 +0:The total amount of wall time = 144.653150 +0:The maximum resident set size (KB) = 692260 Test 044 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_31381/rap_control_dyn64_phy32_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/rap_control_dyn64_phy32_debug Checking test 045 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 150.431159 -0:The maximum resident set size (KB) = 714624 +0:The total amount of wall time = 151.425576 +0:The maximum resident set size (KB) = 715056 Test 045 rap_control_dyn64_phy32_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_31381/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/cpld_control_p8 Checking test 046 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1556,14 +1556,14 @@ Checking test 046 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 500.888950 -0:The maximum resident set size (KB) = 3159528 +0:The total amount of wall time = 497.066283 +0:The maximum resident set size (KB) = 3163968 Test 046 cpld_control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_31381/cpld_control_nowave_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/cpld_control_nowave_noaero_p8 Checking test 047 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1625,14 +1625,14 @@ Checking test 047 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 250.777049 -0:The maximum resident set size (KB) = 1249852 +0:The total amount of wall time = 247.418144 +0:The maximum resident set size (KB) = 1251268 Test 047 cpld_control_nowave_noaero_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/cpld_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_31381/cpld_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/cpld_debug_p8 Checking test 048 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1685,25 +1685,25 @@ Checking test 048 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 271.105370 -0:The maximum resident set size (KB) = 3180592 +0:The total amount of wall time = 273.287748 +0:The maximum resident set size (KB) = 3180768 Test 048 cpld_debug_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_31381/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/datm_cdeps_control_cfsr Checking test 049 datm_cdeps_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 180.060652 -0:The maximum resident set size (KB) = 675560 +0:The total amount of wall time = 179.734640 +0:The maximum resident set size (KB) = 669508 Test 049 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Thu Feb 16 17:01:00 MST 2023 -Elapsed time: 00h:51m:05s. Have a nice day! +Mon Feb 20 17:40:20 MST 2023 +Elapsed time: 00h:31m:53s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 604b4400a1c..acb1e76f931 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,38 +1,38 @@ -Thu Feb 16 19:23:13 MST 2023 +Mon Feb 20 16:53:23 MST 2023 Start Regression test -Compile 001 elapsed time 1355 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 1390 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 1347 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 448 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 385 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 1065 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 1093 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 1036 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 985 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 922 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 810 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 396 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 013 elapsed time 264 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 825 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 015 elapsed time 826 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 262 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 017 elapsed time 269 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 1103 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 019 elapsed time 342 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 1690 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 1104 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 022 elapsed time 427 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 001 elapsed time 1513 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1462 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 1366 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 439 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 384 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 1072 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 1072 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 1035 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 981 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 929 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 798 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 399 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 266 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 014 elapsed time 821 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 815 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 267 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 017 elapsed time 271 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 1111 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 019 elapsed time 341 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 1688 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 1099 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 022 elapsed time 429 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON Compile 023 elapsed time 207 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 024 elapsed time 105 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 025 elapsed time 943 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 026 elapsed time 970 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 027 elapsed time 909 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 024 elapsed time 108 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 025 elapsed time 942 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 026 elapsed time 981 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 027 elapsed time 907 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile 028 elapsed time 874 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 292 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 029 elapsed time 301 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8_mixedmode -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/cpld_control_p8_mixedmode +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -97,14 +97,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 320.411278 -0:The maximum resident set size (KB) = 2698596 +0:The total amount of wall time = 319.024518 +0:The maximum resident set size (KB) = 2698368 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_gfsv17 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/cpld_control_gfsv17 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -168,14 +168,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 284.804149 -0:The maximum resident set size (KB) = 1437756 +0:The total amount of wall time = 284.271496 +0:The maximum resident set size (KB) = 1437972 Test 002 cpld_control_gfsv17 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -240,14 +240,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 323.508026 -0:The maximum resident set size (KB) = 2716376 +0:The total amount of wall time = 323.245196 +0:The maximum resident set size (KB) = 2716404 Test 003 cpld_control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/cpld_restart_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -300,14 +300,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 185.673974 -0:The maximum resident set size (KB) = 2577424 +0:The total amount of wall time = 184.994808 +0:The maximum resident set size (KB) = 2577780 Test 004 cpld_restart_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/cpld_2threads_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -360,14 +360,14 @@ Checking test 005 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 257.665130 -0:The maximum resident set size (KB) = 3176296 +0:The total amount of wall time = 256.172049 +0:The maximum resident set size (KB) = 3176112 Test 005 cpld_2threads_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/cpld_decomp_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/cpld_decomp_p8 Checking test 006 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -420,14 +420,14 @@ Checking test 006 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 320.198257 -0:The maximum resident set size (KB) = 2721048 +0:The total amount of wall time = 320.712955 +0:The maximum resident set size (KB) = 2723292 Test 006 cpld_decomp_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/cpld_mpi_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/cpld_mpi_p8 Checking test 007 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -480,14 +480,14 @@ Checking test 007 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 271.877384 -0:The maximum resident set size (KB) = 2682528 +0:The total amount of wall time = 272.503021 +0:The maximum resident set size (KB) = 2682564 Test 007 cpld_mpi_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_ciceC_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/cpld_control_ciceC_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/cpld_control_ciceC_p8 Checking test 008 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -552,14 +552,14 @@ Checking test 008 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 321.849013 -0:The maximum resident set size (KB) = 2716356 +0:The total amount of wall time = 321.338051 +0:The maximum resident set size (KB) = 2716552 Test 008 cpld_control_ciceC_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/cpld_control_c192_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/cpld_control_c192_p8 Checking test 009 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -612,14 +612,14 @@ Checking test 009 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -0:The total amount of wall time = 851.717516 -0:The maximum resident set size (KB) = 3348780 +0:The total amount of wall time = 639.628626 +0:The maximum resident set size (KB) = 3347788 Test 009 cpld_control_c192_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/cpld_restart_c192_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/cpld_restart_c192_p8 Checking test 010 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -672,14 +672,14 @@ Checking test 010 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -0:The total amount of wall time = 466.103115 -0:The maximum resident set size (KB) = 3275520 +0:The total amount of wall time = 456.853076 +0:The maximum resident set size (KB) = 3271772 Test 010 cpld_restart_c192_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/cpld_control_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/cpld_control_noaero_p8 Checking test 011 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -743,14 +743,14 @@ Checking test 011 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 297.075753 -0:The maximum resident set size (KB) = 1436204 +0:The total amount of wall time = 295.594486 +0:The maximum resident set size (KB) = 1436280 Test 011 cpld_control_noaero_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/cpld_control_nowave_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/cpld_control_nowave_noaero_p8 Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -812,14 +812,14 @@ Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 192.110695 -0:The maximum resident set size (KB) = 1452392 +0:The total amount of wall time = 193.913328 +0:The maximum resident set size (KB) = 1452396 Test 012 cpld_control_nowave_noaero_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/cpld_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/cpld_debug_p8 Checking test 013 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -872,14 +872,14 @@ Checking test 013 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 475.477405 -0:The maximum resident set size (KB) = 2788580 +0:The total amount of wall time = 472.683365 +0:The maximum resident set size (KB) = 2788452 Test 013 cpld_debug_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_debug_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/cpld_debug_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/cpld_debug_noaero_p8 Checking test 014 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -931,14 +931,14 @@ Checking test 014 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 347.812726 -0:The maximum resident set size (KB) = 1460584 +0:The total amount of wall time = 348.642830 +0:The maximum resident set size (KB) = 1460544 Test 014 cpld_debug_noaero_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_noaero_p8_agrid -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/cpld_control_noaero_p8_agrid +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/cpld_control_noaero_p8_agrid Checking test 015 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1000,14 +1000,14 @@ Checking test 015 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 271.440603 -0:The maximum resident set size (KB) = 1455864 +0:The total amount of wall time = 266.010787 +0:The maximum resident set size (KB) = 1455924 Test 015 cpld_control_noaero_p8_agrid PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/cpld_control_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/cpld_control_c48 Checking test 016 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1057,14 +1057,14 @@ Checking test 016 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 606.842444 -0:The maximum resident set size (KB) = 2580288 +0:The total amount of wall time = 606.069097 +0:The maximum resident set size (KB) = 2580244 Test 016 cpld_control_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/cpld_warmstart_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/cpld_warmstart_c48 Checking test 017 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1114,14 +1114,14 @@ Checking test 017 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -0:The total amount of wall time = 161.613968 -0:The maximum resident set size (KB) = 2598840 +0:The total amount of wall time = 161.892951 +0:The maximum resident set size (KB) = 2599104 Test 017 cpld_warmstart_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/cpld_restart_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/cpld_restart_c48 Checking test 018 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1171,14 +1171,14 @@ Checking test 018 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -0:The total amount of wall time = 84.075949 -0:The maximum resident set size (KB) = 2016008 +0:The total amount of wall time = 84.341229 +0:The maximum resident set size (KB) = 2015872 Test 018 cpld_restart_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/control_CubedSphereGrid -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/control_CubedSphereGrid +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/control_CubedSphereGrid Checking test 019 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1205,28 +1205,28 @@ Checking test 019 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -0:The total amount of wall time = 142.306768 -0:The maximum resident set size (KB) = 456816 +0:The total amount of wall time = 142.886977 +0:The maximum resident set size (KB) = 456800 Test 019 control_CubedSphereGrid PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/control_CubedSphereGrid_parallel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/control_CubedSphereGrid_parallel +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/control_CubedSphereGrid_parallel Checking test 020 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK -0:The total amount of wall time = 139.608526 -0:The maximum resident set size (KB) = 456740 +0:The total amount of wall time = 139.023253 +0:The maximum resident set size (KB) = 456752 Test 020 control_CubedSphereGrid_parallel PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/control_latlon -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/control_latlon +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/control_latlon Checking test 021 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1237,32 +1237,32 @@ Checking test 021 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 145.484650 -0:The maximum resident set size (KB) = 456844 +0:The total amount of wall time = 144.040130 +0:The maximum resident set size (KB) = 456828 Test 021 control_latlon PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/control_wrtGauss_netcdf_parallel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/control_wrtGauss_netcdf_parallel +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/control_wrtGauss_netcdf_parallel Checking test 022 control_wrtGauss_netcdf_parallel results .... - Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 147.987987 -0:The maximum resident set size (KB) = 456736 +0:The total amount of wall time = 147.936309 +0:The maximum resident set size (KB) = 456824 Test 022 control_wrtGauss_netcdf_parallel PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/control_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/control_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/control_c48 Checking test 023 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1301,14 +1301,14 @@ Checking test 023 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 445.209809 -0:The maximum resident set size (KB) = 628824 +0:The total amount of wall time = 443.929392 +0:The maximum resident set size (KB) = 628872 Test 023 control_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/control_c192 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/control_c192 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/control_c192 Checking test 024 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1319,14 +1319,14 @@ Checking test 024 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 592.528287 -0:The maximum resident set size (KB) = 556960 +0:The total amount of wall time = 593.605777 +0:The maximum resident set size (KB) = 557004 Test 024 control_c192 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/control_c384 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/control_c384 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/control_c384 Checking test 025 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1337,14 +1337,14 @@ Checking test 025 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 598.712471 -0:The maximum resident set size (KB) = 855360 +0:The total amount of wall time = 597.952401 +0:The maximum resident set size (KB) = 855384 Test 025 control_c384 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/control_c384gdas -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/control_c384gdas +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/control_c384gdas Checking test 026 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1387,14 +1387,14 @@ Checking test 026 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 523.322197 -0:The maximum resident set size (KB) = 989636 +0:The total amount of wall time = 522.297214 +0:The maximum resident set size (KB) = 989768 Test 026 control_c384gdas PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/control_stochy +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/control_stochy Checking test 027 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1405,28 +1405,28 @@ Checking test 027 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 97.124943 -0:The maximum resident set size (KB) = 454988 +0:The total amount of wall time = 96.340384 +0:The maximum resident set size (KB) = 454824 Test 027 control_stochy PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/control_stochy_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/control_stochy_restart Checking test 028 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 52.427975 -0:The maximum resident set size (KB) = 222800 +0:The total amount of wall time = 51.394873 +0:The maximum resident set size (KB) = 222852 Test 028 control_stochy_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/control_lndp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/control_lndp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/control_lndp Checking test 029 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1437,14 +1437,14 @@ Checking test 029 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 89.245820 -0:The maximum resident set size (KB) = 456528 +0:The total amount of wall time = 89.267887 +0:The maximum resident set size (KB) = 456592 Test 029 control_lndp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/control_iovr4 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/control_iovr4 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/control_iovr4 Checking test 030 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1459,14 +1459,14 @@ Checking test 030 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 148.241048 -0:The maximum resident set size (KB) = 456672 +0:The total amount of wall time = 147.145149 +0:The maximum resident set size (KB) = 456644 Test 030 control_iovr4 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/control_iovr5 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/control_iovr5 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/control_iovr5 Checking test 031 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1481,14 +1481,14 @@ Checking test 031 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 146.971283 -0:The maximum resident set size (KB) = 456836 +0:The total amount of wall time = 147.555135 +0:The maximum resident set size (KB) = 456628 Test 031 control_iovr5 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/control_p8 Checking test 032 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1535,14 +1535,14 @@ Checking test 032 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 181.274910 -0:The maximum resident set size (KB) = 1422824 +0:The total amount of wall time = 181.820755 +0:The maximum resident set size (KB) = 1422844 Test 032 control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8_lndp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/control_p8_lndp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/control_p8_lndp Checking test 033 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1561,14 +1561,14 @@ Checking test 033 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -0:The total amount of wall time = 334.572635 -0:The maximum resident set size (KB) = 1423148 +0:The total amount of wall time = 335.252604 +0:The maximum resident set size (KB) = 1423152 Test 033 control_p8_lndp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/control_restart_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/control_restart_p8 Checking test 034 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1607,14 +1607,14 @@ Checking test 034 control_restart_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 95.072664 -0:The maximum resident set size (KB) = 579860 +0:The total amount of wall time = 94.793275 +0:The maximum resident set size (KB) = 579900 Test 034 control_restart_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/control_decomp_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/control_decomp_p8 Checking test 035 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1657,14 +1657,14 @@ Checking test 035 control_decomp_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 189.899878 -0:The maximum resident set size (KB) = 1417012 +0:The total amount of wall time = 185.025693 +0:The maximum resident set size (KB) = 1416996 Test 035 control_decomp_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/control_2threads_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/control_2threads_p8 Checking test 036 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1707,14 +1707,14 @@ Checking test 036 control_2threads_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 176.270379 -0:The maximum resident set size (KB) = 1506256 +0:The total amount of wall time = 176.218556 +0:The maximum resident set size (KB) = 1506252 Test 036 control_2threads_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8_rrtmgp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/control_p8_rrtmgp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/control_p8_rrtmgp Checking test 037 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1761,14 +1761,14 @@ Checking test 037 control_p8_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 252.465299 -0:The maximum resident set size (KB) = 1480688 +0:The total amount of wall time = 252.390939 +0:The maximum resident set size (KB) = 1480704 Test 037 control_p8_rrtmgp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/merra2_thompson -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/merra2_thompson +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/merra2_thompson Checking test 038 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1815,14 +1815,14 @@ Checking test 038 merra2_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 207.078653 -0:The maximum resident set size (KB) = 1429728 +0:The total amount of wall time = 209.193976 +0:The maximum resident set size (KB) = 1429764 Test 038 merra2_thompson PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/regional_control Checking test 039 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1833,28 +1833,28 @@ Checking test 039 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 346.164879 -0:The maximum resident set size (KB) = 603124 +0:The total amount of wall time = 342.155869 +0:The maximum resident set size (KB) = 603104 Test 039 regional_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/regional_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/regional_restart Checking test 040 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 177.956722 -0:The maximum resident set size (KB) = 591136 +0:The total amount of wall time = 174.630240 +0:The maximum resident set size (KB) = 591120 Test 040 regional_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/regional_decomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/regional_decomp Checking test 041 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1865,14 +1865,14 @@ Checking test 041 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 358.931394 -0:The maximum resident set size (KB) = 594848 +0:The total amount of wall time = 358.316704 +0:The maximum resident set size (KB) = 594884 Test 041 regional_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/regional_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/regional_2threads Checking test 042 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1883,14 +1883,14 @@ Checking test 042 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 212.469877 -0:The maximum resident set size (KB) = 601900 +0:The total amount of wall time = 204.660030 +0:The maximum resident set size (KB) = 601776 Test 042 regional_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_noquilt -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/regional_noquilt +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/regional_noquilt Checking test 043 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1898,28 +1898,28 @@ Checking test 043 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -0:The total amount of wall time = 365.653198 -0:The maximum resident set size (KB) = 597572 +0:The total amount of wall time = 368.325407 +0:The maximum resident set size (KB) = 598128 Test 043 regional_noquilt PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_netcdf_parallel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/regional_netcdf_parallel +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/regional_netcdf_parallel Checking test 044 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK + Comparing dynf006.nc ............ALT CHECK......OK Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf006.nc .........OK -0:The total amount of wall time = 341.927024 -0:The maximum resident set size (KB) = 588480 +0:The total amount of wall time = 337.736047 +0:The maximum resident set size (KB) = 588428 Test 044 regional_netcdf_parallel PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/regional_2dwrtdecomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/regional_2dwrtdecomp Checking test 045 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1930,14 +1930,14 @@ Checking test 045 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 343.711048 -0:The maximum resident set size (KB) = 603096 +0:The total amount of wall time = 337.227808 +0:The maximum resident set size (KB) = 603120 Test 045 regional_2dwrtdecomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/fv3_regional_wofs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/regional_wofs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/regional_wofs Checking test 046 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1948,14 +1948,14 @@ Checking test 046 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 429.113565 -0:The maximum resident set size (KB) = 270464 +0:The total amount of wall time = 423.324600 +0:The maximum resident set size (KB) = 270476 Test 046 regional_wofs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/rap_control Checking test 047 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2002,14 +2002,14 @@ Checking test 047 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 480.916511 -0:The maximum resident set size (KB) = 826264 +0:The total amount of wall time = 480.937945 +0:The maximum resident set size (KB) = 826128 Test 047 rap_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_spp_sppt_shum_skeb -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/regional_spp_sppt_shum_skeb +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/regional_spp_sppt_shum_skeb Checking test 048 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2020,14 +2020,14 @@ Checking test 048 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 326.747018 -0:The maximum resident set size (KB) = 949280 +0:The total amount of wall time = 326.288937 +0:The maximum resident set size (KB) = 949092 Test 048 regional_spp_sppt_shum_skeb PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/rap_decomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/rap_decomp Checking test 049 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2074,14 +2074,14 @@ Checking test 049 rap_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 504.064656 -0:The maximum resident set size (KB) = 823376 +0:The total amount of wall time = 500.636489 +0:The maximum resident set size (KB) = 823392 Test 049 rap_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/rap_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/rap_2threads Checking test 050 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2128,14 +2128,14 @@ Checking test 050 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 462.939178 -0:The maximum resident set size (KB) = 892660 +0:The total amount of wall time = 464.752460 +0:The maximum resident set size (KB) = 892616 Test 050 rap_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/rap_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/rap_restart Checking test 051 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2174,14 +2174,14 @@ Checking test 051 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 241.342098 -0:The maximum resident set size (KB) = 572292 +0:The total amount of wall time = 242.565239 +0:The maximum resident set size (KB) = 572308 Test 051 rap_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/rap_sfcdiff Checking test 052 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2228,14 +2228,14 @@ Checking test 052 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 469.172019 -0:The maximum resident set size (KB) = 826468 +0:The total amount of wall time = 472.299817 +0:The maximum resident set size (KB) = 826348 Test 052 rap_sfcdiff PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/rap_sfcdiff_decomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/rap_sfcdiff_decomp Checking test 053 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2282,14 +2282,14 @@ Checking test 053 rap_sfcdiff_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 498.171217 -0:The maximum resident set size (KB) = 825244 +0:The total amount of wall time = 498.786263 +0:The maximum resident set size (KB) = 825252 Test 053 rap_sfcdiff_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/rap_sfcdiff_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/rap_sfcdiff_restart Checking test 054 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2328,14 +2328,14 @@ Checking test 054 rap_sfcdiff_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 357.783997 -0:The maximum resident set size (KB) = 569572 +0:The total amount of wall time = 350.372840 +0:The maximum resident set size (KB) = 569516 Test 054 rap_sfcdiff_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/hrrr_control Checking test 055 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2382,14 +2382,14 @@ Checking test 055 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 451.732435 -0:The maximum resident set size (KB) = 821184 +0:The total amount of wall time = 445.149733 +0:The maximum resident set size (KB) = 821144 Test 055 hrrr_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/hrrr_control_decomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/hrrr_control_decomp Checking test 056 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2436,14 +2436,14 @@ Checking test 056 hrrr_control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 472.007593 -0:The maximum resident set size (KB) = 820144 +0:The total amount of wall time = 474.522246 +0:The maximum resident set size (KB) = 820108 Test 056 hrrr_control_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/hrrr_control_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/hrrr_control_2threads Checking test 057 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2490,14 +2490,14 @@ Checking test 057 hrrr_control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 435.090038 -0:The maximum resident set size (KB) = 887860 +0:The total amount of wall time = 432.925702 +0:The maximum resident set size (KB) = 887800 Test 057 hrrr_control_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/hrrr_control_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/hrrr_control_restart Checking test 058 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2536,14 +2536,14 @@ Checking test 058 hrrr_control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 340.730957 -0:The maximum resident set size (KB) = 568380 +0:The total amount of wall time = 340.918761 +0:The maximum resident set size (KB) = 568200 Test 058 hrrr_control_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_v1beta -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/rrfs_v1beta +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/rrfs_v1beta Checking test 059 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2590,14 +2590,14 @@ Checking test 059 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 459.261330 -0:The maximum resident set size (KB) = 819964 +0:The total amount of wall time = 463.261572 +0:The maximum resident set size (KB) = 819892 Test 059 rrfs_v1beta PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_v1nssl -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/rrfs_v1nssl +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/rrfs_v1nssl Checking test 060 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2612,14 +2612,14 @@ Checking test 060 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 572.472574 -0:The maximum resident set size (KB) = 508112 +0:The total amount of wall time = 561.143246 +0:The maximum resident set size (KB) = 508080 Test 060 rrfs_v1nssl PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/rrfs_v1nssl_nohailnoccn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/rrfs_v1nssl_nohailnoccn Checking test 061 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2634,14 +2634,14 @@ Checking test 061 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 552.324929 -0:The maximum resident set size (KB) = 501144 +0:The total amount of wall time = 558.327836 +0:The maximum resident set size (KB) = 501292 Test 061 rrfs_v1nssl_nohailnoccn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/rrfs_conus13km_hrrr_warm Checking test 062 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2650,14 +2650,14 @@ Checking test 062 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 129.091395 -0:The maximum resident set size (KB) = 638968 +0:The total amount of wall time = 128.680788 +0:The maximum resident set size (KB) = 638964 Test 062 rrfs_conus13km_hrrr_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/rrfs_smoke_conus13km_hrrr_warm Checking test 063 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2666,14 +2666,14 @@ Checking test 063 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 145.050278 -0:The maximum resident set size (KB) = 652712 +0:The total amount of wall time = 145.548753 +0:The maximum resident set size (KB) = 652752 Test 063 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/rrfs_conus13km_radar_tten_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/rrfs_conus13km_radar_tten_warm Checking test 064 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2682,14 +2682,14 @@ Checking test 064 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 129.608038 -0:The maximum resident set size (KB) = 641140 +0:The total amount of wall time = 129.666348 +0:The maximum resident set size (KB) = 641016 Test 064 rrfs_conus13km_radar_tten_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/rrfs_conus13km_hrrr_warm_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/rrfs_conus13km_hrrr_warm_2threads Checking test 065 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2698,14 +2698,14 @@ Checking test 065 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 81.984702 -0:The maximum resident set size (KB) = 655432 +0:The total amount of wall time = 81.618566 +0:The maximum resident set size (KB) = 655452 Test 065 rrfs_conus13km_hrrr_warm_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/rrfs_conus13km_radar_tten_warm_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/rrfs_conus13km_radar_tten_warm_2threads Checking test 066 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2714,14 +2714,14 @@ Checking test 066 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 83.623350 -0:The maximum resident set size (KB) = 658232 +0:The total amount of wall time = 82.353866 +0:The maximum resident set size (KB) = 659312 Test 066 rrfs_conus13km_radar_tten_warm_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/control_csawmg -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/control_csawmg +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/control_csawmg Checking test 067 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2732,14 +2732,14 @@ Checking test 067 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 397.237503 -0:The maximum resident set size (KB) = 529120 +0:The total amount of wall time = 395.589086 +0:The maximum resident set size (KB) = 529080 Test 067 control_csawmg PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/control_csawmgt -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/control_csawmgt +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/control_csawmgt Checking test 068 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2750,14 +2750,14 @@ Checking test 068 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 392.956512 -0:The maximum resident set size (KB) = 529100 +0:The total amount of wall time = 391.663235 +0:The maximum resident set size (KB) = 529060 Test 068 control_csawmgt PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/control_ras -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/control_ras +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/control_ras Checking test 069 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2768,54 +2768,54 @@ Checking test 069 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 203.465798 -0:The maximum resident set size (KB) = 487912 +0:The total amount of wall time = 203.424258 +0:The maximum resident set size (KB) = 487916 Test 069 control_ras PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/control_wam -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/control_wam +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/control_wam Checking test 070 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -0:The total amount of wall time = 129.214919 -0:The maximum resident set size (KB) = 204488 +0:The total amount of wall time = 129.058647 +0:The maximum resident set size (KB) = 204684 Test 070 control_wam PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/rrfs_conus13km_hrrr_warm_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/rrfs_conus13km_hrrr_warm_debug Checking test 071 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 761.101527 +0:The total amount of wall time = 757.689522 0:The maximum resident set size (KB) = 668164 Test 071 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/rrfs_conus13km_radar_tten_warm_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/rrfs_conus13km_radar_tten_warm_debug Checking test 072 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 757.600686 -0:The maximum resident set size (KB) = 670656 +0:The total amount of wall time = 758.435285 +0:The maximum resident set size (KB) = 670660 Test 072 rrfs_conus13km_radar_tten_warm_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/control_CubedSphereGrid_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/control_CubedSphereGrid_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/control_CubedSphereGrid_debug Checking test 073 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2842,334 +2842,334 @@ Checking test 073 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -0:The total amount of wall time = 174.521965 -0:The maximum resident set size (KB) = 621752 +0:The total amount of wall time = 174.087103 +0:The maximum resident set size (KB) = 621500 Test 073 control_CubedSphereGrid_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/control_wrtGauss_netcdf_parallel_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/control_wrtGauss_netcdf_parallel_debug Checking test 074 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 163.423882 -0:The maximum resident set size (KB) = 621268 +0:The total amount of wall time = 162.562629 +0:The maximum resident set size (KB) = 621172 Test 074 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/control_stochy_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/control_stochy_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/control_stochy_debug Checking test 075 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 183.025968 -0:The maximum resident set size (KB) = 625156 +0:The total amount of wall time = 182.485329 +0:The maximum resident set size (KB) = 625092 Test 075 control_stochy_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/control_lndp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/control_lndp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/control_lndp_debug Checking test 076 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 164.381760 -0:The maximum resident set size (KB) = 627200 +0:The total amount of wall time = 164.712241 +0:The maximum resident set size (KB) = 627216 Test 076 control_lndp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/control_csawmg_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/control_csawmg_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/control_csawmg_debug Checking test 077 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 257.185201 -0:The maximum resident set size (KB) = 671360 +0:The total amount of wall time = 256.985205 +0:The maximum resident set size (KB) = 671280 Test 077 control_csawmg_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/control_csawmgt_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/control_csawmgt_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/control_csawmgt_debug Checking test 078 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 251.691781 -0:The maximum resident set size (KB) = 671116 +0:The total amount of wall time = 251.401960 +0:The maximum resident set size (KB) = 671060 Test 078 control_csawmgt_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/control_ras_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/control_ras_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/control_ras_debug Checking test 079 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 167.139162 -0:The maximum resident set size (KB) = 632436 +0:The total amount of wall time = 166.544400 +0:The maximum resident set size (KB) = 632588 Test 079 control_ras_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/control_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/control_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/control_diag_debug Checking test 080 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 169.211197 -0:The maximum resident set size (KB) = 677884 +0:The total amount of wall time = 169.010536 +0:The maximum resident set size (KB) = 677944 Test 080 control_diag_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/control_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/control_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/control_debug_p8 Checking test 081 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 184.336215 -0:The maximum resident set size (KB) = 1444224 +0:The total amount of wall time = 184.430742 +0:The maximum resident set size (KB) = 1444176 Test 081 control_debug_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/regional_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/regional_debug Checking test 082 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 1034.101461 -0:The maximum resident set size (KB) = 621072 +0:The total amount of wall time = 1036.510848 +0:The maximum resident set size (KB) = 621024 Test 082 regional_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/rap_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/rap_control_debug Checking test 083 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 294.894431 -0:The maximum resident set size (KB) = 990004 +0:The total amount of wall time = 294.512660 +0:The maximum resident set size (KB) = 989888 Test 083 rap_control_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/hrrr_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/hrrr_control_debug Checking test 084 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 290.586784 -0:The maximum resident set size (KB) = 988792 +0:The total amount of wall time = 289.470473 +0:The maximum resident set size (KB) = 988776 Test 084 hrrr_control_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/rap_unified_drag_suite_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/rap_unified_drag_suite_debug Checking test 085 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 294.045737 -0:The maximum resident set size (KB) = 989872 +0:The total amount of wall time = 294.251637 +0:The maximum resident set size (KB) = 989856 Test 085 rap_unified_drag_suite_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/rap_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/rap_diag_debug Checking test 086 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 308.077130 -0:The maximum resident set size (KB) = 1073996 +0:The total amount of wall time = 308.510164 +0:The maximum resident set size (KB) = 1074208 Test 086 rap_diag_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/rap_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/rap_cires_ugwp_debug Checking test 087 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 300.769917 -0:The maximum resident set size (KB) = 988676 +0:The total amount of wall time = 301.672701 +0:The maximum resident set size (KB) = 988568 Test 087 rap_cires_ugwp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/rap_unified_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/rap_unified_ugwp_debug Checking test 088 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 300.855420 -0:The maximum resident set size (KB) = 991964 +0:The total amount of wall time = 299.889783 +0:The maximum resident set size (KB) = 991976 Test 088 rap_unified_ugwp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_lndp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/rap_lndp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/rap_lndp_debug Checking test 089 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 297.356898 -0:The maximum resident set size (KB) = 990700 +0:The total amount of wall time = 297.607177 +0:The maximum resident set size (KB) = 990500 Test 089 rap_lndp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_flake_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/rap_flake_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/rap_flake_debug Checking test 090 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 294.213144 -0:The maximum resident set size (KB) = 989876 +0:The total amount of wall time = 294.041592 +0:The maximum resident set size (KB) = 989860 Test 090 rap_flake_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_progcld_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/rap_progcld_thompson_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/rap_progcld_thompson_debug Checking test 091 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 294.812293 -0:The maximum resident set size (KB) = 989904 +0:The total amount of wall time = 294.527313 +0:The maximum resident set size (KB) = 989708 Test 091 rap_progcld_thompson_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_noah_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/rap_noah_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/rap_noah_debug Checking test 092 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 289.405443 -0:The maximum resident set size (KB) = 988456 +0:The total amount of wall time = 288.397459 +0:The maximum resident set size (KB) = 988496 Test 092 rap_noah_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_sfcdiff_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/rap_sfcdiff_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/rap_sfcdiff_debug Checking test 093 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 294.829855 -0:The maximum resident set size (KB) = 991296 +0:The total amount of wall time = 294.320472 +0:The maximum resident set size (KB) = 991304 Test 093 rap_sfcdiff_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/rap_noah_sfcdiff_cires_ugwp_debug Checking test 094 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 479.802882 -0:The maximum resident set size (KB) = 989352 +0:The total amount of wall time = 478.804106 +0:The maximum resident set size (KB) = 989416 Test 094 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_v1beta_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/rrfs_v1beta_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/rrfs_v1beta_debug Checking test 095 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 290.897438 -0:The maximum resident set size (KB) = 986368 +0:The total amount of wall time = 289.846078 +0:The maximum resident set size (KB) = 986424 Test 095 rrfs_v1beta_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/control_wam_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/control_wam_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/control_wam_debug Checking test 096 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 296.291136 -0:The maximum resident set size (KB) = 238068 +0:The total amount of wall time = 296.827370 +0:The maximum resident set size (KB) = 237912 Test 096 control_wam_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 097 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3180,14 +3180,14 @@ Checking test 097 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 304.002629 -0:The maximum resident set size (KB) = 848324 +0:The total amount of wall time = 303.008494 +0:The maximum resident set size (KB) = 848192 Test 097 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/rap_control_dyn32_phy32 Checking test 098 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3234,14 +3234,14 @@ Checking test 098 rap_control_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 385.749884 -0:The maximum resident set size (KB) = 707240 +0:The total amount of wall time = 384.899463 +0:The maximum resident set size (KB) = 707052 Test 098 rap_control_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/hrrr_control_dyn32_phy32 Checking test 099 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3288,14 +3288,14 @@ Checking test 099 hrrr_control_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 205.087438 -0:The maximum resident set size (KB) = 705520 +0:The total amount of wall time = 203.852040 +0:The maximum resident set size (KB) = 705340 Test 099 hrrr_control_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/rap_2threads_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/rap_2threads_dyn32_phy32 Checking test 100 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3342,14 +3342,14 @@ Checking test 100 rap_2threads_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 374.565718 -0:The maximum resident set size (KB) = 757228 +0:The total amount of wall time = 377.781511 +0:The maximum resident set size (KB) = 757208 Test 100 rap_2threads_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/hrrr_control_2threads_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/hrrr_control_2threads_dyn32_phy32 Checking test 101 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3396,14 +3396,14 @@ Checking test 101 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 202.088224 -0:The maximum resident set size (KB) = 758220 +0:The total amount of wall time = 200.993990 +0:The maximum resident set size (KB) = 758280 Test 101 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/hrrr_control_decomp_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/hrrr_control_decomp_dyn32_phy32 Checking test 102 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3450,14 +3450,14 @@ Checking test 102 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 215.190602 -0:The maximum resident set size (KB) = 704048 +0:The total amount of wall time = 214.472894 +0:The maximum resident set size (KB) = 704132 Test 102 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/rap_restart_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/rap_restart_dyn32_phy32 Checking test 103 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3496,14 +3496,14 @@ Checking test 103 rap_restart_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 292.563764 -0:The maximum resident set size (KB) = 544844 +0:The total amount of wall time = 291.099520 +0:The maximum resident set size (KB) = 544760 Test 103 rap_restart_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/hrrr_control_restart_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/hrrr_control_restart_dyn32_phy32 Checking test 104 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3542,14 +3542,14 @@ Checking test 104 hrrr_control_restart_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 104.711277 -0:The maximum resident set size (KB) = 540648 +0:The total amount of wall time = 104.998155 +0:The maximum resident set size (KB) = 540620 Test 104 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/rap_control_dyn64_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/rap_control_dyn64_phy32 Checking test 105 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3596,81 +3596,81 @@ Checking test 105 rap_control_dyn64_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 267.548026 -0:The maximum resident set size (KB) = 726692 +0:The total amount of wall time = 268.393374 +0:The maximum resident set size (KB) = 726696 Test 105 rap_control_dyn64_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/rap_control_debug_dyn32_phy32 Checking test 106 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 288.900650 -0:The maximum resident set size (KB) = 875972 +0:The total amount of wall time = 288.600558 +0:The maximum resident set size (KB) = 876080 Test 106 rap_control_debug_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/hrrr_control_debug_dyn32_phy32 Checking test 107 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 285.916167 -0:The maximum resident set size (KB) = 874344 +0:The total amount of wall time = 284.489522 +0:The maximum resident set size (KB) = 874420 Test 107 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/rap_control_dyn64_phy32_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/rap_control_dyn64_phy32_debug Checking test 108 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 293.480761 -0:The maximum resident set size (KB) = 893556 +0:The total amount of wall time = 299.796691 +0:The maximum resident set size (KB) = 893564 Test 108 rap_control_dyn64_phy32_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/hafs_regional_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/hafs_regional_atm Checking test 109 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -0:The total amount of wall time = 255.518721 -0:The maximum resident set size (KB) = 719472 +0:The total amount of wall time = 253.393562 +0:The maximum resident set size (KB) = 715976 Test 109 hafs_regional_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/hafs_regional_atm_thompson_gfdlsf +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/hafs_regional_atm_thompson_gfdlsf Checking test 110 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -0:The total amount of wall time = 290.369068 -0:The maximum resident set size (KB) = 1069904 +0:The total amount of wall time = 278.898914 +0:The maximum resident set size (KB) = 1070876 -Test 110 hafs_regional_atm_thompson_gfdlsf PASS Tries: 2 +Test 110 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_atm_ocn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/hafs_regional_atm_ocn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/hafs_regional_atm_ocn Checking test 111 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3679,14 +3679,14 @@ Checking test 111 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 444.147748 -0:The maximum resident set size (KB) = 719144 +0:The total amount of wall time = 445.913673 +0:The maximum resident set size (KB) = 719200 Test 111 hafs_regional_atm_ocn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_atm_wav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/hafs_regional_atm_wav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/hafs_regional_atm_wav Checking test 112 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3695,14 +3695,14 @@ Checking test 112 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 1001.182787 -0:The maximum resident set size (KB) = 746768 +0:The total amount of wall time = 1019.677511 +0:The maximum resident set size (KB) = 747132 Test 112 hafs_regional_atm_wav PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_atm_ocn_wav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/hafs_regional_atm_ocn_wav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/hafs_regional_atm_ocn_wav Checking test 113 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3713,28 +3713,28 @@ Checking test 113 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 1148.269193 -0:The maximum resident set size (KB) = 768412 +0:The total amount of wall time = 1078.110582 +0:The maximum resident set size (KB) = 767632 Test 113 hafs_regional_atm_ocn_wav PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/hafs_regional_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/hafs_regional_1nest_atm Checking test 114 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 363.465840 -0:The maximum resident set size (KB) = 284348 +0:The total amount of wall time = 374.574489 +0:The maximum resident set size (KB) = 284240 Test 114 hafs_regional_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/hafs_regional_telescopic_2nests_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/hafs_regional_telescopic_2nests_atm Checking test 115 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3743,28 +3743,28 @@ Checking test 115 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -0:The total amount of wall time = 424.788914 -0:The maximum resident set size (KB) = 301412 +0:The total amount of wall time = 424.169026 +0:The maximum resident set size (KB) = 301384 Test 115 hafs_regional_telescopic_2nests_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_global_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/hafs_global_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/hafs_global_1nest_atm Checking test 116 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 169.392677 -0:The maximum resident set size (KB) = 202164 +0:The total amount of wall time = 169.505818 +0:The maximum resident set size (KB) = 202296 Test 116 hafs_global_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_global_multiple_4nests_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/hafs_global_multiple_4nests_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/hafs_global_multiple_4nests_atm Checking test 117 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3782,14 +3782,14 @@ Checking test 117 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -0:The total amount of wall time = 489.664507 -0:The maximum resident set size (KB) = 290216 +0:The total amount of wall time = 487.094232 +0:The maximum resident set size (KB) = 290016 Test 117 hafs_global_multiple_4nests_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/hafs_regional_specified_moving_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/hafs_regional_specified_moving_1nest_atm Checking test 118 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3798,28 +3798,28 @@ Checking test 118 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -0:The total amount of wall time = 238.021327 -0:The maximum resident set size (KB) = 303132 +0:The total amount of wall time = 238.858088 +0:The maximum resident set size (KB) = 303184 Test 118 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/hafs_regional_storm_following_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/hafs_regional_storm_following_1nest_atm Checking test 119 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 225.776700 -0:The maximum resident set size (KB) = 303304 +0:The total amount of wall time = 222.260939 +0:The maximum resident set size (KB) = 303008 Test 119 hafs_regional_storm_following_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/hafs_regional_storm_following_1nest_atm_ocn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/hafs_regional_storm_following_1nest_atm_ocn Checking test 120 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3828,42 +3828,42 @@ Checking test 120 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -0:The total amount of wall time = 277.487260 -0:The maximum resident set size (KB) = 347248 +0:The total amount of wall time = 276.953850 +0:The maximum resident set size (KB) = 347560 Test 120 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_global_storm_following_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/hafs_global_storm_following_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/hafs_global_storm_following_1nest_atm Checking test 121 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 66.203626 -0:The maximum resident set size (KB) = 217052 +0:The total amount of wall time = 65.765189 +0:The maximum resident set size (KB) = 217188 Test 121 hafs_global_storm_following_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 122 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 819.485809 -0:The maximum resident set size (KB) = 378560 +0:The total amount of wall time = 818.944206 +0:The maximum resident set size (KB) = 378600 Test 122 hafs_regional_storm_following_1nest_atm_ocn_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 123 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3874,14 +3874,14 @@ Checking test 123 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -0:The total amount of wall time = 806.307879 -0:The maximum resident set size (KB) = 412508 +0:The total amount of wall time = 840.088174 +0:The maximum resident set size (KB) = 412340 -Test 123 hafs_regional_storm_following_1nest_atm_ocn_wav PASS Tries: 2 +Test 123 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_docn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/hafs_regional_docn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/hafs_regional_docn Checking test 124 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3889,14 +3889,14 @@ Checking test 124 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 381.491249 -0:The maximum resident set size (KB) = 734980 +0:The total amount of wall time = 380.465327 +0:The maximum resident set size (KB) = 735052 Test 124 hafs_regional_docn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_docn_oisst -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/hafs_regional_docn_oisst +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/hafs_regional_docn_oisst Checking test 125 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3904,131 +3904,131 @@ Checking test 125 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 382.927988 -0:The maximum resident set size (KB) = 714328 +0:The total amount of wall time = 385.103470 +0:The maximum resident set size (KB) = 714780 Test 125 hafs_regional_docn_oisst PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_datm_cdeps -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/hafs_regional_datm_cdeps +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/hafs_regional_datm_cdeps Checking test 126 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -0:The total amount of wall time = 1276.435945 -0:The maximum resident set size (KB) = 887864 +0:The total amount of wall time = 1284.628916 +0:The maximum resident set size (KB) = 887844 Test 126 hafs_regional_datm_cdeps PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/datm_cdeps_control_cfsr Checking test 127 datm_cdeps_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 168.502468 -0:The maximum resident set size (KB) = 716672 +0:The total amount of wall time = 168.033888 +0:The maximum resident set size (KB) = 716704 Test 127 datm_cdeps_control_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/datm_cdeps_restart_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/datm_cdeps_restart_cfsr Checking test 128 datm_cdeps_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 100.973342 -0:The maximum resident set size (KB) = 715884 +0:The total amount of wall time = 100.719081 +0:The maximum resident set size (KB) = 704816 Test 128 datm_cdeps_restart_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_control_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/datm_cdeps_control_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/datm_cdeps_control_gefs Checking test 129 datm_cdeps_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 161.942989 -0:The maximum resident set size (KB) = 607456 +0:The total amount of wall time = 161.553976 +0:The maximum resident set size (KB) = 607440 Test 129 datm_cdeps_control_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_iau_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/datm_cdeps_iau_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/datm_cdeps_iau_gefs Checking test 130 datm_cdeps_iau_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 165.381148 -0:The maximum resident set size (KB) = 607420 +0:The total amount of wall time = 159.821540 +0:The maximum resident set size (KB) = 607472 Test 130 datm_cdeps_iau_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_stochy_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/datm_cdeps_stochy_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/datm_cdeps_stochy_gefs Checking test 131 datm_cdeps_stochy_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 164.734010 -0:The maximum resident set size (KB) = 607448 +0:The total amount of wall time = 164.141647 +0:The maximum resident set size (KB) = 607480 Test 131 datm_cdeps_stochy_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_ciceC_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/datm_cdeps_ciceC_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/datm_cdeps_ciceC_cfsr Checking test 132 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 169.202605 -0:The maximum resident set size (KB) = 716680 +0:The total amount of wall time = 168.157484 +0:The maximum resident set size (KB) = 727744 Test 132 datm_cdeps_ciceC_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_bulk_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/datm_cdeps_bulk_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/datm_cdeps_bulk_cfsr Checking test 133 datm_cdeps_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 168.305631 +0:The total amount of wall time = 168.545284 0:The maximum resident set size (KB) = 716656 Test 133 datm_cdeps_bulk_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_bulk_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/datm_cdeps_bulk_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/datm_cdeps_bulk_gefs Checking test 134 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 161.775970 -0:The maximum resident set size (KB) = 607452 +0:The total amount of wall time = 161.233376 +0:The maximum resident set size (KB) = 607432 Test 134 datm_cdeps_bulk_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_mx025_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/datm_cdeps_mx025_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/datm_cdeps_mx025_cfsr Checking test 135 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4037,14 +4037,14 @@ Checking test 135 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 659.589219 -0:The maximum resident set size (KB) = 514288 +0:The total amount of wall time = 762.382552 +0:The maximum resident set size (KB) = 514364 Test 135 datm_cdeps_mx025_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_mx025_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/datm_cdeps_mx025_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/datm_cdeps_mx025_gefs Checking test 136 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4053,64 +4053,64 @@ Checking test 136 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 415.885085 -0:The maximum resident set size (KB) = 494716 +0:The total amount of wall time = 817.098965 +0:The maximum resident set size (KB) = 494828 Test 136 datm_cdeps_mx025_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/datm_cdeps_multiple_files_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/datm_cdeps_multiple_files_cfsr Checking test 137 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 168.724593 -0:The maximum resident set size (KB) = 728172 +0:The total amount of wall time = 169.994779 +0:The maximum resident set size (KB) = 716716 Test 137 datm_cdeps_multiple_files_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/datm_cdeps_3072x1536_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/datm_cdeps_3072x1536_cfsr Checking test 138 datm_cdeps_3072x1536_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 257.093712 -0:The maximum resident set size (KB) = 1910060 +0:The total amount of wall time = 254.653321 +0:The maximum resident set size (KB) = 1910040 Test 138 datm_cdeps_3072x1536_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_gfs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/datm_cdeps_gfs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/datm_cdeps_gfs Checking test 139 datm_cdeps_gfs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 256.377645 -0:The maximum resident set size (KB) = 1909996 +0:The total amount of wall time = 254.548955 +0:The maximum resident set size (KB) = 1941096 Test 139 datm_cdeps_gfs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_debug_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/datm_cdeps_debug_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/datm_cdeps_debug_cfsr Checking test 140 datm_cdeps_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -0:The total amount of wall time = 460.030236 -0:The maximum resident set size (KB) = 706696 +0:The total amount of wall time = 458.441662 +0:The maximum resident set size (KB) = 717748 Test 140 datm_cdeps_debug_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/datm_cdeps_lnd_gswp3 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/datm_cdeps_lnd_gswp3 Checking test 141 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4119,14 +4119,14 @@ Checking test 141 datm_cdeps_lnd_gswp3 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 = 11.000285 -0:The maximum resident set size (KB) = 216340 +0:The total amount of wall time = 10.698724 +0:The maximum resident set size (KB) = 216388 Test 141 datm_cdeps_lnd_gswp3 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/datm_cdeps_lnd_gswp3_rst +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/datm_cdeps_lnd_gswp3_rst Checking test 142 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4135,14 +4135,14 @@ Checking test 142 datm_cdeps_lnd_gswp3_rst 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 = 15.650327 -0:The maximum resident set size (KB) = 208152 +0:The total amount of wall time = 17.017155 +0:The maximum resident set size (KB) = 210128 Test 142 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8_atmlnd_sbs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/control_p8_atmlnd_sbs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/control_p8_atmlnd_sbs Checking test 143 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4227,14 +4227,14 @@ Checking test 143 control_p8_atmlnd_sbs 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 = 235.295292 -0:The maximum resident set size (KB) = 1461988 +0:The total amount of wall time = 234.098927 +0:The maximum resident set size (KB) = 1461968 Test 143 control_p8_atmlnd_sbs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/control_atmwav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/control_atmwav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/control_atmwav Checking test 144 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4278,14 +4278,14 @@ Checking test 144 control_atmwav results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -0:The total amount of wall time = 98.968463 -0:The maximum resident set size (KB) = 474868 +0:The total amount of wall time = 98.836759 +0:The maximum resident set size (KB) = 474688 Test 144 control_atmwav PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/atmaero_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/atmaero_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/atmaero_control_p8 Checking test 145 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4329,14 +4329,14 @@ Checking test 145 atmaero_control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 249.648883 -0:The maximum resident set size (KB) = 2703392 +0:The total amount of wall time = 249.808375 +0:The maximum resident set size (KB) = 2703404 Test 145 atmaero_control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/atmaero_control_p8_rad -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/atmaero_control_p8_rad +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/atmaero_control_p8_rad Checking test 146 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4380,14 +4380,14 @@ Checking test 146 atmaero_control_p8_rad results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 303.073205 -0:The maximum resident set size (KB) = 2757484 +0:The total amount of wall time = 301.510094 +0:The maximum resident set size (KB) = 2757648 Test 146 atmaero_control_p8_rad PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/atmaero_control_p8_rad_micro -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/atmaero_control_p8_rad_micro +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/atmaero_control_p8_rad_micro Checking test 147 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4431,14 +4431,14 @@ Checking test 147 atmaero_control_p8_rad_micro results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 307.546237 -0:The maximum resident set size (KB) = 2763872 +0:The total amount of wall time = 305.755518 +0:The maximum resident set size (KB) = 2763864 Test 147 atmaero_control_p8_rad_micro PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_atmaq -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59920/regional_atmaq +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/regional_atmaq Checking test 148 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4454,12 +4454,12 @@ Checking test 148 regional_atmaq results .... Comparing RESTART/phy_data.nc .........OK Comparing RESTART/sfc_data.nc .........OK -0:The total amount of wall time = 1193.843338 -0:The maximum resident set size (KB) = 1139740 +0:The total amount of wall time = 987.251893 +0:The maximum resident set size (KB) = 1139888 Test 148 regional_atmaq PASS REGRESSION TEST WAS SUCCESSFUL -Thu Feb 16 21:00:20 MST 2023 -Elapsed time: 01h:37m:08s. Have a nice day! +Mon Feb 20 18:03:16 MST 2023 +Elapsed time: 01h:09m:54s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index 36bdcc454d6..01f1721e093 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,38 +1,38 @@ -Thu Feb 16 22:18:07 EST 2023 +Mon Feb 20 18:55:48 EST 2023 Start Regression test -Compile 001 elapsed time 852 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 856 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 779 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 277 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 254 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 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 007 elapsed time 735 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 683 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 693 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 662 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 619 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 013 elapsed time 191 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 652 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 015 elapsed time 647 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 202 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 017 elapsed time 188 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 702 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 019 elapsed time 227 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 856 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 691 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 022 elapsed time 254 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 023 elapsed time 155 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 024 elapsed time 89 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 025 elapsed time 670 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 026 elapsed time 668 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 027 elapsed time 642 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 630 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 203 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 001 elapsed time 913 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 863 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 816 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 271 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 263 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 771 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 775 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 762 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 690 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 665 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 694 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 278 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 584 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 014 elapsed time 777 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 888 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 322 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 017 elapsed time 330 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 831 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 019 elapsed time 435 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 1037 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 797 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 022 elapsed time 265 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 023 elapsed time 147 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 024 elapsed time 93 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 025 elapsed time 697 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 026 elapsed time 678 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 027 elapsed time 621 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 678 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 276 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8_mixedmode -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/cpld_control_p8_mixedmode +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -97,14 +97,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 320.929630 - 0: The maximum resident set size (KB) = 1552008 + 0: The total amount of wall time = 344.849432 + 0: The maximum resident set size (KB) = 1566920 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_gfsv17 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/cpld_control_gfsv17 +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -168,14 +168,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 235.934618 - 0: The maximum resident set size (KB) = 1470152 + 0: The total amount of wall time = 269.158737 + 0: The maximum resident set size (KB) = 1470576 Test 002 cpld_control_gfsv17 PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/cpld_control_p8 +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -240,14 +240,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 369.307049 - 0: The maximum resident set size (KB) = 1585640 + 0: The total amount of wall time = 421.535359 + 0: The maximum resident set size (KB) = 1567888 Test 003 cpld_control_p8 PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/cpld_restart_p8 +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -300,14 +300,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 209.229351 - 0: The maximum resident set size (KB) = 1022776 + 0: The total amount of wall time = 236.946379 + 0: The maximum resident set size (KB) = 1022388 Test 004 cpld_restart_p8 PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/cpld_2threads_p8 +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -360,14 +360,14 @@ Checking test 005 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 385.428921 - 0: The maximum resident set size (KB) = 1778108 + 0: The total amount of wall time = 429.723635 + 0: The maximum resident set size (KB) = 1779268 Test 005 cpld_2threads_p8 PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/cpld_decomp_p8 +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/cpld_decomp_p8 Checking test 006 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -420,14 +420,14 @@ Checking test 006 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 369.889315 - 0: The maximum resident set size (KB) = 1594528 + 0: The total amount of wall time = 422.976646 + 0: The maximum resident set size (KB) = 1576420 Test 006 cpld_decomp_p8 PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/cpld_mpi_p8 +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/cpld_mpi_p8 Checking test 007 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -480,14 +480,14 @@ Checking test 007 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 311.086745 - 0: The maximum resident set size (KB) = 1543116 + 0: The total amount of wall time = 344.735685 + 0: The maximum resident set size (KB) = 1541208 Test 007 cpld_mpi_p8 PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_ciceC_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/cpld_control_ciceC_p8 +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/cpld_control_ciceC_p8 Checking test 008 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -552,14 +552,14 @@ Checking test 008 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 370.454622 - 0: The maximum resident set size (KB) = 1586100 + 0: The total amount of wall time = 400.362484 + 0: The maximum resident set size (KB) = 1600744 Test 008 cpld_control_ciceC_p8 PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_c192_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/cpld_control_c192_p8 +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/cpld_control_c192_p8 Checking test 009 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -612,14 +612,14 @@ Checking test 009 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 741.954583 - 0: The maximum resident set size (KB) = 1778964 + 0: The total amount of wall time = 791.648109 + 0: The maximum resident set size (KB) = 1774836 Test 009 cpld_control_c192_p8 PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_c192_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/cpld_restart_c192_p8 +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/cpld_restart_c192_p8 Checking test 010 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -672,14 +672,14 @@ Checking test 010 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 477.124362 - 0: The maximum resident set size (KB) = 1921936 + 0: The total amount of wall time = 565.791454 + 0: The maximum resident set size (KB) = 1929100 Test 010 cpld_restart_c192_p8 PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_bmark_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/cpld_bmark_p8 +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/cpld_bmark_p8 Checking test 011 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -727,14 +727,14 @@ Checking test 011 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 736.350803 - 0: The maximum resident set size (KB) = 2538364 + 0: The total amount of wall time = 867.991826 + 0: The maximum resident set size (KB) = 2517596 Test 011 cpld_bmark_p8 PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_bmark_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/cpld_restart_bmark_p8 +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/cpld_restart_bmark_p8 Checking test 012 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -782,14 +782,14 @@ Checking test 012 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 536.805590 - 0: The maximum resident set size (KB) = 2337380 + 0: The total amount of wall time = 629.594121 + 0: The maximum resident set size (KB) = 2352160 Test 012 cpld_restart_bmark_p8 PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_noaero_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/cpld_control_noaero_p8 +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/cpld_control_noaero_p8 Checking test 013 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -853,14 +853,14 @@ Checking test 013 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 277.680990 - 0: The maximum resident set size (KB) = 1466764 + 0: The total amount of wall time = 304.655825 + 0: The maximum resident set size (KB) = 1467528 Test 013 cpld_control_noaero_p8 PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_c96_noaero_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/cpld_control_nowave_noaero_p8 +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/cpld_control_nowave_noaero_p8 Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -922,14 +922,14 @@ Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 283.574314 - 0: The maximum resident set size (KB) = 1485344 + 0: The total amount of wall time = 309.607379 + 0: The maximum resident set size (KB) = 1485208 Test 014 cpld_control_nowave_noaero_p8 PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_debug_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/cpld_debug_p8 +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/cpld_debug_p8 Checking test 015 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -982,14 +982,14 @@ Checking test 015 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 578.907559 - 0: The maximum resident set size (KB) = 1634932 + 0: The total amount of wall time = 598.768041 + 0: The maximum resident set size (KB) = 1635944 Test 015 cpld_debug_p8 PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_debug_noaero_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/cpld_debug_noaero_p8 +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/cpld_debug_noaero_p8 Checking test 016 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1041,14 +1041,14 @@ Checking test 016 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 394.859339 - 0: The maximum resident set size (KB) = 1461648 + 0: The total amount of wall time = 414.703404 + 0: The maximum resident set size (KB) = 1465116 Test 016 cpld_debug_noaero_p8 PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_noaero_p8_agrid -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/cpld_control_noaero_p8_agrid +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/cpld_control_noaero_p8_agrid Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1110,14 +1110,14 @@ Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 292.810944 - 0: The maximum resident set size (KB) = 1502864 + 0: The total amount of wall time = 321.418201 + 0: The maximum resident set size (KB) = 1489316 Test 017 cpld_control_noaero_p8_agrid PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_c48 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/cpld_control_c48 +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/cpld_control_c48 Checking test 018 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1167,14 +1167,14 @@ Checking test 018 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 597.835703 - 0: The maximum resident set size (KB) = 2556464 + 0: The total amount of wall time = 609.845917 + 0: The maximum resident set size (KB) = 2568760 Test 018 cpld_control_c48 PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_warmstart_c48 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/cpld_warmstart_c48 +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/cpld_warmstart_c48 Checking test 019 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1224,14 +1224,14 @@ Checking test 019 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 157.997586 - 0: The maximum resident set size (KB) = 2572224 + 0: The total amount of wall time = 159.345113 + 0: The maximum resident set size (KB) = 2575172 Test 019 cpld_warmstart_c48 PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_warmstart_c48 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/cpld_restart_c48 +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/cpld_restart_c48 Checking test 020 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1281,14 +1281,14 @@ Checking test 020 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 82.808455 - 0: The maximum resident set size (KB) = 1991204 + 0: The total amount of wall time = 95.759022 + 0: The maximum resident set size (KB) = 1991600 Test 020 cpld_restart_c48 PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_CubedSphereGrid -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/control_CubedSphereGrid +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/control_CubedSphereGrid Checking test 021 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1315,28 +1315,28 @@ Checking test 021 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 137.460725 - 0: The maximum resident set size (KB) = 437312 + 0: The total amount of wall time = 147.339697 + 0: The maximum resident set size (KB) = 437196 Test 021 control_CubedSphereGrid PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_CubedSphereGrid_parallel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/control_CubedSphereGrid_parallel +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/control_CubedSphereGrid_parallel Checking test 022 control_CubedSphereGrid_parallel 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 = 136.591414 - 0: The maximum resident set size (KB) = 437152 + 0: The total amount of wall time = 140.795263 + 0: The maximum resident set size (KB) = 437528 Test 022 control_CubedSphereGrid_parallel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_latlon -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/control_latlon +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/control_latlon Checking test 023 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1347,14 +1347,14 @@ Checking test 023 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 139.600501 - 0: The maximum resident set size (KB) = 437104 + 0: The total amount of wall time = 146.109683 + 0: The maximum resident set size (KB) = 437024 Test 023 control_latlon PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/control_wrtGauss_netcdf_parallel +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/control_wrtGauss_netcdf_parallel Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1365,14 +1365,14 @@ Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 167.228591 - 0: The maximum resident set size (KB) = 437040 + 0: The total amount of wall time = 155.636808 + 0: The maximum resident set size (KB) = 437120 Test 024 control_wrtGauss_netcdf_parallel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_c48 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/control_c48 +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/control_c48 Checking test 025 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1411,14 +1411,14 @@ Checking test 025 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0: The total amount of wall time = 420.241683 -0: The maximum resident set size (KB) = 631656 +0: The total amount of wall time = 419.337634 +0: The maximum resident set size (KB) = 630620 Test 025 control_c48 PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_c192 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/control_c192 +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/control_c192 Checking test 026 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1429,14 +1429,14 @@ Checking test 026 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 574.172466 - 0: The maximum resident set size (KB) = 540120 + 0: The total amount of wall time = 583.614197 + 0: The maximum resident set size (KB) = 540648 Test 026 control_c192 PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_c384 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/control_c384 +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/control_c384 Checking test 027 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1447,14 +1447,14 @@ Checking test 027 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1078.418217 - 0: The maximum resident set size (KB) = 804380 + 0: The total amount of wall time = 1096.602111 + 0: The maximum resident set size (KB) = 805024 Test 027 control_c384 PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_c384gdas -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/control_c384gdas +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/control_c384gdas Checking test 028 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1497,14 +1497,14 @@ Checking test 028 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 891.504595 - 0: The maximum resident set size (KB) = 923076 + 0: The total amount of wall time = 937.195748 + 0: The maximum resident set size (KB) = 923244 Test 028 control_c384gdas PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_stochy -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/control_stochy +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/control_stochy Checking test 029 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1515,28 +1515,28 @@ Checking test 029 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 92.728941 - 0: The maximum resident set size (KB) = 440444 + 0: The total amount of wall time = 96.727287 + 0: The maximum resident set size (KB) = 440296 Test 029 control_stochy PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_stochy -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/control_stochy_restart +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/control_stochy_restart Checking test 030 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 48.445542 + 0: The total amount of wall time = 64.132302 0: The maximum resident set size (KB) = 191684 Test 030 control_stochy_restart PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_lndp -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/control_lndp +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/control_lndp Checking test 031 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1547,14 +1547,14 @@ Checking test 031 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 85.435903 - 0: The maximum resident set size (KB) = 440200 + 0: The total amount of wall time = 95.435466 + 0: The maximum resident set size (KB) = 440360 Test 031 control_lndp PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_iovr4 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/control_iovr4 +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/control_iovr4 Checking test 032 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1569,14 +1569,14 @@ Checking test 032 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 142.830045 - 0: The maximum resident set size (KB) = 437080 + 0: The total amount of wall time = 156.050401 + 0: The maximum resident set size (KB) = 437096 Test 032 control_iovr4 PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_iovr5 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/control_iovr5 +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/control_iovr5 Checking test 033 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1591,14 +1591,14 @@ Checking test 033 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 142.943105 - 0: The maximum resident set size (KB) = 437172 + 0: The total amount of wall time = 145.771526 + 0: The maximum resident set size (KB) = 437216 Test 033 control_iovr5 PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/control_p8 +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/control_p8 Checking test 034 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1645,14 +1645,14 @@ Checking test 034 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 174.033715 - 0: The maximum resident set size (KB) = 1403492 + 0: The total amount of wall time = 195.430307 + 0: The maximum resident set size (KB) = 1379704 Test 034 control_p8 PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8_lndp -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/control_p8_lndp +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/control_p8_lndp Checking test 035 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1671,14 +1671,14 @@ Checking test 035 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 325.807827 - 0: The maximum resident set size (KB) = 1379860 + 0: The total amount of wall time = 348.939206 + 0: The maximum resident set size (KB) = 1403816 Test 035 control_p8_lndp PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/control_restart_p8 +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/control_restart_p8 Checking test 036 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1717,14 +1717,14 @@ Checking test 036 control_restart_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 90.277515 - 0: The maximum resident set size (KB) = 550020 + 0: The total amount of wall time = 109.924524 + 0: The maximum resident set size (KB) = 550184 Test 036 control_restart_p8 PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/control_decomp_p8 +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/control_decomp_p8 Checking test 037 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1767,14 +1767,14 @@ Checking test 037 control_decomp_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 181.615334 - 0: The maximum resident set size (KB) = 1374036 + 0: The total amount of wall time = 203.412442 + 0: The maximum resident set size (KB) = 1374080 Test 037 control_decomp_p8 PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/control_2threads_p8 +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/control_2threads_p8 Checking test 038 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1817,14 +1817,14 @@ Checking test 038 control_2threads_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 167.657230 - 0: The maximum resident set size (KB) = 1482716 + 0: The total amount of wall time = 188.506708 + 0: The maximum resident set size (KB) = 1458900 Test 038 control_2threads_p8 PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8_rrtmgp -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/control_p8_rrtmgp +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/control_p8_rrtmgp Checking test 039 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1871,14 +1871,14 @@ Checking test 039 control_p8_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 241.304738 - 0: The maximum resident set size (KB) = 1447344 + 0: The total amount of wall time = 260.933843 + 0: The maximum resident set size (KB) = 1461676 Test 039 control_p8_rrtmgp PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/merra2_thompson -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/merra2_thompson +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/merra2_thompson Checking test 040 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1925,14 +1925,14 @@ Checking test 040 merra2_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 200.598763 - 0: The maximum resident set size (KB) = 1407572 + 0: The total amount of wall time = 219.840360 + 0: The maximum resident set size (KB) = 1383728 Test 040 merra2_thompson PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/regional_control +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/regional_control Checking test 041 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1943,28 +1943,28 @@ Checking test 041 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 328.095916 - 0: The maximum resident set size (KB) = 575692 + 0: The total amount of wall time = 335.503830 + 0: The maximum resident set size (KB) = 575760 Test 041 regional_control PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/regional_restart +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/regional_restart Checking test 042 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 165.915453 - 0: The maximum resident set size (KB) = 575264 + 0: The total amount of wall time = 176.376333 + 0: The maximum resident set size (KB) = 575776 Test 042 regional_restart PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/regional_decomp +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/regional_decomp Checking test 043 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1975,14 +1975,14 @@ Checking test 043 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 343.366373 - 0: The maximum resident set size (KB) = 576132 + 0: The total amount of wall time = 350.647505 + 0: The maximum resident set size (KB) = 576212 Test 043 regional_decomp PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/regional_2threads +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/regional_2threads Checking test 044 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1993,14 +1993,14 @@ Checking test 044 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 198.541014 - 0: The maximum resident set size (KB) = 578260 + 0: The total amount of wall time = 202.919590 + 0: The maximum resident set size (KB) = 578336 Test 044 regional_2threads PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_noquilt -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/regional_noquilt +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/regional_noquilt Checking test 045 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2008,28 +2008,28 @@ Checking test 045 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 355.809912 - 0: The maximum resident set size (KB) = 581328 + 0: The total amount of wall time = 357.250343 + 0: The maximum resident set size (KB) = 581368 Test 045 regional_noquilt PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_netcdf_parallel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/regional_netcdf_parallel +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/regional_netcdf_parallel Checking test 046 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 333.952709 - 0: The maximum resident set size (KB) = 570332 + 0: The total amount of wall time = 334.835366 + 0: The maximum resident set size (KB) = 570280 Test 046 regional_netcdf_parallel PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/regional_2dwrtdecomp +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/regional_2dwrtdecomp Checking test 047 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2040,14 +2040,14 @@ Checking test 047 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 328.467403 - 0: The maximum resident set size (KB) = 575808 + 0: The total amount of wall time = 329.813166 + 0: The maximum resident set size (KB) = 574976 Test 047 regional_2dwrtdecomp PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/fv3_regional_wofs -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/regional_wofs +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/regional_wofs Checking test 048 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2058,14 +2058,14 @@ Checking test 048 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 414.837733 - 0: The maximum resident set size (KB) = 257556 + 0: The total amount of wall time = 416.394464 + 0: The maximum resident set size (KB) = 257480 Test 048 regional_wofs PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/rap_control +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/rap_control Checking test 049 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2112,14 +2112,14 @@ Checking test 049 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 470.472912 - 0: The maximum resident set size (KB) = 807700 + 0: The total amount of wall time = 490.003381 + 0: The maximum resident set size (KB) = 807608 Test 049 rap_control PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_spp_sppt_shum_skeb -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/regional_spp_sppt_shum_skeb +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/regional_spp_sppt_shum_skeb Checking test 050 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2130,14 +2130,14 @@ Checking test 050 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 317.506447 - 0: The maximum resident set size (KB) = 888280 + 0: The total amount of wall time = 327.901554 + 0: The maximum resident set size (KB) = 888132 Test 050 regional_spp_sppt_shum_skeb PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/rap_decomp +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/rap_decomp Checking test 051 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2184,14 +2184,14 @@ Checking test 051 rap_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 493.780713 - 0: The maximum resident set size (KB) = 807252 + 0: The total amount of wall time = 505.222239 + 0: The maximum resident set size (KB) = 807088 Test 051 rap_decomp PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/rap_2threads +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/rap_2threads Checking test 052 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2238,14 +2238,14 @@ Checking test 052 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 456.442134 - 0: The maximum resident set size (KB) = 877768 + 0: The total amount of wall time = 467.712590 + 0: The maximum resident set size (KB) = 879088 Test 052 rap_2threads PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/rap_restart +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/rap_restart Checking test 053 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2284,14 +2284,14 @@ Checking test 053 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 238.685115 - 0: The maximum resident set size (KB) = 553020 + 0: The total amount of wall time = 242.250477 + 0: The maximum resident set size (KB) = 553168 Test 053 rap_restart PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/rap_sfcdiff +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/rap_sfcdiff Checking test 054 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2338,14 +2338,14 @@ Checking test 054 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 463.133010 - 0: The maximum resident set size (KB) = 807664 + 0: The total amount of wall time = 485.789516 + 0: The maximum resident set size (KB) = 807560 Test 054 rap_sfcdiff PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/rap_sfcdiff_decomp +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/rap_sfcdiff_decomp Checking test 055 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2392,14 +2392,14 @@ Checking test 055 rap_sfcdiff_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 491.638331 - 0: The maximum resident set size (KB) = 806772 + 0: The total amount of wall time = 510.645129 + 0: The maximum resident set size (KB) = 806792 Test 055 rap_sfcdiff_decomp PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/rap_sfcdiff_restart +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/rap_sfcdiff_restart Checking test 056 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2438,14 +2438,14 @@ Checking test 056 rap_sfcdiff_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 350.835482 - 0: The maximum resident set size (KB) = 551208 + 0: The total amount of wall time = 352.457900 + 0: The maximum resident set size (KB) = 541624 Test 056 rap_sfcdiff_restart PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/hrrr_control +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/hrrr_control Checking test 057 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2492,14 +2492,14 @@ Checking test 057 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 446.589695 - 0: The maximum resident set size (KB) = 805012 + 0: The total amount of wall time = 465.257685 + 0: The maximum resident set size (KB) = 805104 Test 057 hrrr_control PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/hrrr_control_decomp +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/hrrr_control_decomp Checking test 058 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2546,14 +2546,14 @@ Checking test 058 hrrr_control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 468.204091 - 0: The maximum resident set size (KB) = 804644 + 0: The total amount of wall time = 488.111859 + 0: The maximum resident set size (KB) = 804568 Test 058 hrrr_control_decomp PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/hrrr_control_2threads +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/hrrr_control_2threads Checking test 059 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2600,14 +2600,14 @@ Checking test 059 hrrr_control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 425.391919 - 0: The maximum resident set size (KB) = 871404 + 0: The total amount of wall time = 451.129603 + 0: The maximum resident set size (KB) = 871312 Test 059 hrrr_control_2threads PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/hrrr_control_restart +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/hrrr_control_restart Checking test 060 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2646,14 +2646,14 @@ Checking test 060 hrrr_control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 337.174481 - 0: The maximum resident set size (KB) = 540604 + 0: The total amount of wall time = 341.369333 + 0: The maximum resident set size (KB) = 549892 Test 060 hrrr_control_restart PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_v1beta -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/rrfs_v1beta +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/rrfs_v1beta Checking test 061 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2700,14 +2700,14 @@ Checking test 061 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 460.816686 - 0: The maximum resident set size (KB) = 800832 + 0: The total amount of wall time = 509.253993 + 0: The maximum resident set size (KB) = 800884 Test 061 rrfs_v1beta PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_v1nssl -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/rrfs_v1nssl +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/rrfs_v1nssl Checking test 062 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2722,14 +2722,14 @@ Checking test 062 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 567.778734 - 0: The maximum resident set size (KB) = 491956 + 0: The total amount of wall time = 606.601540 + 0: The maximum resident set size (KB) = 491856 Test 062 rrfs_v1nssl PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/rrfs_v1nssl_nohailnoccn +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/rrfs_v1nssl_nohailnoccn Checking test 063 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2744,14 +2744,14 @@ Checking test 063 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 580.611461 - 0: The maximum resident set size (KB) = 485860 + 0: The total amount of wall time = 577.251809 + 0: The maximum resident set size (KB) = 485868 Test 063 rrfs_v1nssl_nohailnoccn PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/rrfs_conus13km_hrrr_warm +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/rrfs_conus13km_hrrr_warm Checking test 064 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2760,14 +2760,14 @@ Checking test 064 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 126.399486 - 0: The maximum resident set size (KB) = 617760 + 0: The total amount of wall time = 152.389296 + 0: The maximum resident set size (KB) = 617500 Test 064 rrfs_conus13km_hrrr_warm PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/rrfs_smoke_conus13km_hrrr_warm +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/rrfs_smoke_conus13km_hrrr_warm Checking test 065 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2776,14 +2776,14 @@ Checking test 065 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 142.674727 - 0: The maximum resident set size (KB) = 627592 + 0: The total amount of wall time = 158.851838 + 0: The maximum resident set size (KB) = 627684 Test 065 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/rrfs_conus13km_radar_tten_warm +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/rrfs_conus13km_radar_tten_warm Checking test 066 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2792,14 +2792,14 @@ Checking test 066 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 127.590636 - 0: The maximum resident set size (KB) = 620752 + 0: The total amount of wall time = 146.377589 + 0: The maximum resident set size (KB) = 620848 Test 066 rrfs_conus13km_radar_tten_warm PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/rrfs_conus13km_hrrr_warm_2threads +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/rrfs_conus13km_hrrr_warm_2threads Checking test 067 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2808,14 +2808,14 @@ Checking test 067 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 81.662771 - 0: The maximum resident set size (KB) = 630388 + 0: The total amount of wall time = 99.546660 + 0: The maximum resident set size (KB) = 629832 Test 067 rrfs_conus13km_hrrr_warm_2threads PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/rrfs_conus13km_radar_tten_warm_2threads +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/rrfs_conus13km_radar_tten_warm_2threads Checking test 068 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2824,14 +2824,14 @@ Checking test 068 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 84.003314 - 0: The maximum resident set size (KB) = 633508 + 0: The total amount of wall time = 102.141478 + 0: The maximum resident set size (KB) = 632288 Test 068 rrfs_conus13km_radar_tten_warm_2threads PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_csawmgt -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/control_csawmgt +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/control_csawmgt Checking test 069 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2842,14 +2842,14 @@ Checking test 069 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 373.208874 - 0: The maximum resident set size (KB) = 505656 + 0: The total amount of wall time = 395.066891 + 0: The maximum resident set size (KB) = 505660 Test 069 control_csawmgt PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_ras -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/control_ras +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/control_ras Checking test 070 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2860,54 +2860,54 @@ Checking test 070 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 195.561118 - 0: The maximum resident set size (KB) = 471000 + 0: The total amount of wall time = 197.396940 + 0: The maximum resident set size (KB) = 471064 Test 070 control_ras PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_wam -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/control_wam +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/control_wam Checking test 071 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 123.266679 - 0: The maximum resident set size (KB) = 186708 + 0: The total amount of wall time = 138.386732 + 0: The maximum resident set size (KB) = 186464 Test 071 control_wam PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/rrfs_conus13km_hrrr_warm_debug +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/rrfs_conus13km_hrrr_warm_debug Checking test 072 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 752.259226 - 0: The maximum resident set size (KB) = 644952 + 0: The total amount of wall time = 774.247329 + 0: The maximum resident set size (KB) = 645336 Test 072 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/rrfs_conus13km_radar_tten_warm_debug +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/rrfs_conus13km_radar_tten_warm_debug Checking test 073 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 752.749106 - 0: The maximum resident set size (KB) = 647784 + 0: The total amount of wall time = 769.899792 + 0: The maximum resident set size (KB) = 647732 Test 073 rrfs_conus13km_radar_tten_warm_debug PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_CubedSphereGrid_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/control_CubedSphereGrid_debug +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/control_CubedSphereGrid_debug Checking test 074 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2934,334 +2934,334 @@ Checking test 074 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 161.821973 - 0: The maximum resident set size (KB) = 602020 + 0: The total amount of wall time = 165.951193 + 0: The maximum resident set size (KB) = 601920 Test 074 control_CubedSphereGrid_debug PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/control_wrtGauss_netcdf_parallel_debug +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/control_wrtGauss_netcdf_parallel_debug Checking test 075 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 160.144642 - 0: The maximum resident set size (KB) = 601088 + 0: The total amount of wall time = 161.345672 + 0: The maximum resident set size (KB) = 601180 Test 075 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_stochy_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/control_stochy_debug +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/control_stochy_debug Checking test 076 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 173.003433 - 0: The maximum resident set size (KB) = 607904 + 0: The total amount of wall time = 178.149730 + 0: The maximum resident set size (KB) = 607888 Test 076 control_stochy_debug PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_lndp_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/control_lndp_debug +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/control_lndp_debug Checking test 077 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 156.138220 - 0: The maximum resident set size (KB) = 605984 + 0: The total amount of wall time = 166.485622 + 0: The maximum resident set size (KB) = 605972 Test 077 control_lndp_debug PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_csawmg_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/control_csawmg_debug +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/control_csawmg_debug Checking test 078 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 321.361795 - 0: The maximum resident set size (KB) = 642624 + 0: The total amount of wall time = 258.451193 + 0: The maximum resident set size (KB) = 642616 Test 078 control_csawmg_debug PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_csawmgt_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/control_csawmgt_debug +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/control_csawmgt_debug Checking test 079 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 240.924153 - 0: The maximum resident set size (KB) = 642692 + 0: The total amount of wall time = 252.364279 + 0: The maximum resident set size (KB) = 642708 Test 079 control_csawmgt_debug PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_ras_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/control_ras_debug +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/control_ras_debug Checking test 080 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 157.498807 - 0: The maximum resident set size (KB) = 613720 + 0: The total amount of wall time = 160.784904 + 0: The maximum resident set size (KB) = 613812 Test 080 control_ras_debug PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_diag_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/control_diag_debug +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/control_diag_debug Checking test 081 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 161.842876 - 0: The maximum resident set size (KB) = 660416 + 0: The total amount of wall time = 163.693031 + 0: The maximum resident set size (KB) = 660536 Test 081 control_diag_debug PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_debug_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/control_debug_p8 +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/control_debug_p8 Checking test 082 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 174.166857 - 0: The maximum resident set size (KB) = 1422868 + 0: The total amount of wall time = 196.264437 + 0: The maximum resident set size (KB) = 1380232 Test 082 control_debug_p8 PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/regional_debug +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/regional_debug Checking test 083 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1034.375129 - 0: The maximum resident set size (KB) = 600256 + 0: The total amount of wall time = 1053.713741 + 0: The maximum resident set size (KB) = 600112 Test 083 regional_debug PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/rap_control_debug +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/rap_control_debug Checking test 084 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 284.757683 + 0: The total amount of wall time = 297.859840 0: The maximum resident set size (KB) = 972064 Test 084 rap_control_debug PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/hrrr_control_debug +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/hrrr_control_debug Checking test 085 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.413407 - 0: The maximum resident set size (KB) = 967320 + 0: The total amount of wall time = 287.025498 + 0: The maximum resident set size (KB) = 967308 Test 085 hrrr_control_debug PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/rap_unified_drag_suite_debug +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/rap_unified_drag_suite_debug Checking test 086 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 284.065655 - 0: The maximum resident set size (KB) = 972116 + 0: The total amount of wall time = 289.103122 + 0: The maximum resident set size (KB) = 972284 Test 086 rap_unified_drag_suite_debug PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_diag_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/rap_diag_debug +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/rap_diag_debug Checking test 087 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 299.007937 - 0: The maximum resident set size (KB) = 1056324 + 0: The total amount of wall time = 306.978648 + 0: The maximum resident set size (KB) = 1056444 Test 087 rap_diag_debug PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_cires_ugwp_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/rap_cires_ugwp_debug +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/rap_cires_ugwp_debug Checking test 088 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 289.748539 - 0: The maximum resident set size (KB) = 971292 + 0: The total amount of wall time = 298.770785 + 0: The maximum resident set size (KB) = 971356 Test 088 rap_cires_ugwp_debug PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_cires_ugwp_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/rap_unified_ugwp_debug +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/rap_unified_ugwp_debug Checking test 089 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 290.048541 - 0: The maximum resident set size (KB) = 973456 + 0: The total amount of wall time = 321.530813 + 0: The maximum resident set size (KB) = 973624 Test 089 rap_unified_ugwp_debug PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_lndp_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/rap_lndp_debug +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/rap_lndp_debug Checking test 090 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 285.964603 - 0: The maximum resident set size (KB) = 972912 + 0: The total amount of wall time = 295.347390 + 0: The maximum resident set size (KB) = 972744 Test 090 rap_lndp_debug PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_flake_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/rap_flake_debug +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/rap_flake_debug Checking test 091 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 283.871345 - 0: The maximum resident set size (KB) = 972168 + 0: The total amount of wall time = 314.856534 + 0: The maximum resident set size (KB) = 972132 Test 091 rap_flake_debug PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_progcld_thompson_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/rap_progcld_thompson_debug +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/rap_progcld_thompson_debug Checking test 092 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 284.238259 - 0: The maximum resident set size (KB) = 972160 + 0: The total amount of wall time = 298.226616 + 0: The maximum resident set size (KB) = 972140 Test 092 rap_progcld_thompson_debug PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_noah_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/rap_noah_debug +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/rap_noah_debug Checking test 093 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 278.414075 - 0: The maximum resident set size (KB) = 970676 + 0: The total amount of wall time = 286.635352 + 0: The maximum resident set size (KB) = 970448 Test 093 rap_noah_debug PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_sfcdiff_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/rap_sfcdiff_debug +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/rap_sfcdiff_debug Checking test 094 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 283.802635 - 0: The maximum resident set size (KB) = 971988 + 0: The total amount of wall time = 292.856997 + 0: The maximum resident set size (KB) = 972056 Test 094 rap_sfcdiff_debug PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/rap_noah_sfcdiff_cires_ugwp_debug Checking test 095 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 470.488589 - 0: The maximum resident set size (KB) = 971352 + 0: The total amount of wall time = 484.938015 + 0: The maximum resident set size (KB) = 971340 Test 095 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_v1beta_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/rrfs_v1beta_debug +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/rrfs_v1beta_debug Checking test 096 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.675671 - 0: The maximum resident set size (KB) = 968012 + 0: The total amount of wall time = 287.230600 + 0: The maximum resident set size (KB) = 968100 Test 096 rrfs_v1beta_debug PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_wam_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/control_wam_debug +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/control_wam_debug Checking test 097 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 290.616480 - 0: The maximum resident set size (KB) = 217188 + 0: The total amount of wall time = 298.545382 + 0: The maximum resident set size (KB) = 217360 Test 097 control_wam_debug PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 098 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3272,14 +3272,14 @@ Checking test 098 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 295.323072 - 0: The maximum resident set size (KB) = 788676 + 0: The total amount of wall time = 316.457764 + 0: The maximum resident set size (KB) = 788520 Test 098 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_dyn32_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/rap_control_dyn32_phy32 +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/rap_control_dyn32_phy32 Checking test 099 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3326,14 +3326,14 @@ Checking test 099 rap_control_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 381.134462 - 0: The maximum resident set size (KB) = 690812 + 0: The total amount of wall time = 396.231097 + 0: The maximum resident set size (KB) = 690804 Test 099 rap_control_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/hrrr_control_dyn32_phy32 +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/hrrr_control_dyn32_phy32 Checking test 100 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3380,14 +3380,14 @@ Checking test 100 hrrr_control_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 200.075299 - 0: The maximum resident set size (KB) = 689028 + 0: The total amount of wall time = 211.267254 + 0: The maximum resident set size (KB) = 689388 Test 100 hrrr_control_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_dyn32_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/rap_2threads_dyn32_phy32 +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/rap_2threads_dyn32_phy32 Checking test 101 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3434,14 +3434,14 @@ Checking test 101 rap_2threads_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 368.292040 - 0: The maximum resident set size (KB) = 746556 + 0: The total amount of wall time = 383.079584 + 0: The maximum resident set size (KB) = 740240 Test 101 rap_2threads_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/hrrr_control_2threads_dyn32_phy32 +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/hrrr_control_2threads_dyn32_phy32 Checking test 102 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3488,14 +3488,14 @@ Checking test 102 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 195.985379 - 0: The maximum resident set size (KB) = 742844 + 0: The total amount of wall time = 203.080464 + 0: The maximum resident set size (KB) = 742652 Test 102 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/hrrr_control_decomp_dyn32_phy32 +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/hrrr_control_decomp_dyn32_phy32 Checking test 103 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3542,14 +3542,14 @@ Checking test 103 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 209.617864 - 0: The maximum resident set size (KB) = 688212 + 0: The total amount of wall time = 225.068783 + 0: The maximum resident set size (KB) = 688224 Test 103 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_dyn32_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/rap_restart_dyn32_phy32 +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/rap_restart_dyn32_phy32 Checking test 104 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3588,14 +3588,14 @@ Checking test 104 rap_restart_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 286.538442 - 0: The maximum resident set size (KB) = 524904 + 0: The total amount of wall time = 302.555200 + 0: The maximum resident set size (KB) = 524936 Test 104 rap_restart_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/hrrr_control_restart_dyn32_phy32 +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/hrrr_control_restart_dyn32_phy32 Checking test 105 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3634,14 +3634,14 @@ Checking test 105 hrrr_control_restart_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 103.759941 - 0: The maximum resident set size (KB) = 521460 + 0: The total amount of wall time = 108.181992 + 0: The maximum resident set size (KB) = 512020 Test 105 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_dyn64_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/rap_control_dyn64_phy32 +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/rap_control_dyn64_phy32 Checking test 106 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3688,81 +3688,81 @@ Checking test 106 rap_control_dyn64_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 257.812453 - 0: The maximum resident set size (KB) = 713776 + 0: The total amount of wall time = 266.793689 + 0: The maximum resident set size (KB) = 713780 Test 106 rap_control_dyn64_phy32 PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/rap_control_debug_dyn32_phy32 +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/rap_control_debug_dyn32_phy32 Checking test 107 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.383020 - 0: The maximum resident set size (KB) = 856768 + 0: The total amount of wall time = 290.516422 + 0: The maximum resident set size (KB) = 856920 Test 107 rap_control_debug_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/hrrr_control_debug_dyn32_phy32 +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/hrrr_control_debug_dyn32_phy32 Checking test 108 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.215687 - 0: The maximum resident set size (KB) = 855040 + 0: The total amount of wall time = 285.434961 + 0: The maximum resident set size (KB) = 855024 Test 108 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/rap_control_dyn64_phy32_debug +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/rap_control_dyn64_phy32_debug Checking test 109 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 285.225094 - 0: The maximum resident set size (KB) = 880280 + 0: The total amount of wall time = 292.170862 + 0: The maximum resident set size (KB) = 880236 Test 109 rap_control_dyn64_phy32_debug PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_atm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/hafs_regional_atm +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/hafs_regional_atm Checking test 110 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 248.704394 - 0: The maximum resident set size (KB) = 667088 + 0: The total amount of wall time = 262.362006 + 0: The maximum resident set size (KB) = 655548 Test 110 hafs_regional_atm PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/hafs_regional_atm_thompson_gfdlsf +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/hafs_regional_atm_thompson_gfdlsf Checking test 111 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 289.147681 - 0: The maximum resident set size (KB) = 1016032 + 0: The total amount of wall time = 303.888283 + 0: The maximum resident set size (KB) = 1020832 Test 111 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_atm_ocn -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/hafs_regional_atm_ocn +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/hafs_regional_atm_ocn Checking test 112 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3771,14 +3771,14 @@ Checking test 112 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 425.624529 - 0: The maximum resident set size (KB) = 693380 + 0: The total amount of wall time = 428.056699 + 0: The maximum resident set size (KB) = 693436 Test 112 hafs_regional_atm_ocn PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_atm_wav -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/hafs_regional_atm_wav +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/hafs_regional_atm_wav Checking test 113 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3787,14 +3787,14 @@ Checking test 113 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 910.536341 - 0: The maximum resident set size (KB) = 728932 + 0: The total amount of wall time = 919.861628 + 0: The maximum resident set size (KB) = 728648 Test 113 hafs_regional_atm_wav PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_atm_ocn_wav -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/hafs_regional_atm_ocn_wav +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/hafs_regional_atm_ocn_wav Checking test 114 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3805,28 +3805,28 @@ Checking test 114 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 1013.691121 - 0: The maximum resident set size (KB) = 740124 + 0: The total amount of wall time = 1028.307162 + 0: The maximum resident set size (KB) = 740988 Test 114 hafs_regional_atm_ocn_wav PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_1nest_atm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/hafs_regional_1nest_atm +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/hafs_regional_1nest_atm Checking test 115 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 372.217717 - 0: The maximum resident set size (KB) = 268184 + 0: The total amount of wall time = 386.059695 + 0: The maximum resident set size (KB) = 268892 Test 115 hafs_regional_1nest_atm PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/hafs_regional_telescopic_2nests_atm +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/hafs_regional_telescopic_2nests_atm Checking test 116 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3835,28 +3835,28 @@ Checking test 116 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 426.728245 - 0: The maximum resident set size (KB) = 279580 + 0: The total amount of wall time = 448.186394 + 0: The maximum resident set size (KB) = 275384 Test 116 hafs_regional_telescopic_2nests_atm PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_global_1nest_atm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/hafs_global_1nest_atm +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/hafs_global_1nest_atm Checking test 117 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 165.084636 - 0: The maximum resident set size (KB) = 173056 + 0: The total amount of wall time = 171.900075 + 0: The maximum resident set size (KB) = 173092 Test 117 hafs_global_1nest_atm PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_global_multiple_4nests_atm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/hafs_global_multiple_4nests_atm +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/hafs_global_multiple_4nests_atm Checking test 118 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3874,14 +3874,14 @@ Checking test 118 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 492.086796 - 0: The maximum resident set size (KB) = 226632 + 0: The total amount of wall time = 515.080533 + 0: The maximum resident set size (KB) = 226196 Test 118 hafs_global_multiple_4nests_atm PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/hafs_regional_specified_moving_1nest_atm +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/hafs_regional_specified_moving_1nest_atm Checking test 119 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3890,28 +3890,28 @@ Checking test 119 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 231.065083 - 0: The maximum resident set size (KB) = 284156 + 0: The total amount of wall time = 239.266092 + 0: The maximum resident set size (KB) = 283584 Test 119 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/hafs_regional_storm_following_1nest_atm +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/hafs_regional_storm_following_1nest_atm Checking test 120 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 220.245939 - 0: The maximum resident set size (KB) = 283632 + 0: The total amount of wall time = 236.794293 + 0: The maximum resident set size (KB) = 283200 Test 120 hafs_regional_storm_following_1nest_atm PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/hafs_regional_storm_following_1nest_atm_ocn Checking test 121 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3920,42 +3920,42 @@ Checking test 121 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 254.513276 - 0: The maximum resident set size (KB) = 319640 + 0: The total amount of wall time = 269.980158 + 0: The maximum resident set size (KB) = 320052 Test 121 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/hafs_global_storm_following_1nest_atm +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/hafs_global_storm_following_1nest_atm Checking test 122 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 64.834414 - 0: The maximum resident set size (KB) = 188248 + 0: The total amount of wall time = 70.560336 + 0: The maximum resident set size (KB) = 188184 Test 122 hafs_global_storm_following_1nest_atm PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 123 hafs_regional_storm_following_1nest_atm_ocn_debug results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 770.903119 - 0: The maximum resident set size (KB) = 344392 + 0: The total amount of wall time = 779.570018 + 0: The maximum resident set size (KB) = 344884 Test 123 hafs_regional_storm_following_1nest_atm_ocn_debug PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 124 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3966,14 +3966,14 @@ Checking test 124 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 733.322064 - 0: The maximum resident set size (KB) = 363628 + 0: The total amount of wall time = 742.582369 + 0: The maximum resident set size (KB) = 363136 Test 124 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_docn -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/hafs_regional_docn +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/hafs_regional_docn Checking test 125 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3981,14 +3981,14 @@ Checking test 125 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 364.951568 - 0: The maximum resident set size (KB) = 704700 + 0: The total amount of wall time = 388.142186 + 0: The maximum resident set size (KB) = 704704 Test 125 hafs_regional_docn PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_docn_oisst -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/hafs_regional_docn_oisst +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/hafs_regional_docn_oisst Checking test 126 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3996,131 +3996,131 @@ Checking test 126 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 374.550994 - 0: The maximum resident set size (KB) = 695248 + 0: The total amount of wall time = 392.518345 + 0: The maximum resident set size (KB) = 695420 Test 126 hafs_regional_docn_oisst PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_datm_cdeps -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/hafs_regional_datm_cdeps +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/hafs_regional_datm_cdeps Checking test 127 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 1167.972348 - 0: The maximum resident set size (KB) = 808996 + 0: The total amount of wall time = 1179.569942 + 0: The maximum resident set size (KB) = 808852 Test 127 hafs_regional_datm_cdeps PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/datm_cdeps_control_cfsr Checking test 128 datm_cdeps_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 167.638549 - 0: The maximum resident set size (KB) = 721184 + 0: The total amount of wall time = 169.312197 + 0: The maximum resident set size (KB) = 721132 Test 128 datm_cdeps_control_cfsr PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/datm_cdeps_restart_cfsr +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/datm_cdeps_restart_cfsr Checking test 129 datm_cdeps_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 95.841140 - 0: The maximum resident set size (KB) = 715928 + 0: The total amount of wall time = 113.035786 + 0: The maximum resident set size (KB) = 716020 Test 129 datm_cdeps_restart_cfsr PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_control_gefs -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/datm_cdeps_control_gefs +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/datm_cdeps_control_gefs Checking test 130 datm_cdeps_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 160.311795 - 0: The maximum resident set size (KB) = 603040 + 0: The total amount of wall time = 165.025894 + 0: The maximum resident set size (KB) = 602904 Test 130 datm_cdeps_control_gefs PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_iau_gefs -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/datm_cdeps_iau_gefs +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/datm_cdeps_iau_gefs Checking test 131 datm_cdeps_iau_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 163.046948 - 0: The maximum resident set size (KB) = 603028 + 0: The total amount of wall time = 165.064155 + 0: The maximum resident set size (KB) = 605052 Test 131 datm_cdeps_iau_gefs PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_stochy_gefs -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/datm_cdeps_stochy_gefs +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/datm_cdeps_stochy_gefs Checking test 132 datm_cdeps_stochy_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 161.827202 - 0: The maximum resident set size (KB) = 604860 + 0: The total amount of wall time = 168.669611 + 0: The maximum resident set size (KB) = 600944 Test 132 datm_cdeps_stochy_gefs PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/datm_cdeps_ciceC_cfsr +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/datm_cdeps_ciceC_cfsr Checking test 133 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 166.681727 - 0: The maximum resident set size (KB) = 721128 + 0: The total amount of wall time = 173.035209 + 0: The maximum resident set size (KB) = 709612 Test 133 datm_cdeps_ciceC_cfsr PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_bulk_cfsr -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/datm_cdeps_bulk_cfsr +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/datm_cdeps_bulk_cfsr Checking test 134 datm_cdeps_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 164.883038 - 0: The maximum resident set size (KB) = 721044 + 0: The total amount of wall time = 168.781924 + 0: The maximum resident set size (KB) = 721196 Test 134 datm_cdeps_bulk_cfsr PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_bulk_gefs -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/datm_cdeps_bulk_gefs +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/datm_cdeps_bulk_gefs Checking test 135 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 158.912759 - 0: The maximum resident set size (KB) = 603168 + 0: The total amount of wall time = 165.043604 + 0: The maximum resident set size (KB) = 605208 Test 135 datm_cdeps_bulk_gefs PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_mx025_cfsr -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/datm_cdeps_mx025_cfsr +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/datm_cdeps_mx025_cfsr Checking test 136 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4129,14 +4129,14 @@ Checking test 136 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 411.242126 - 0: The maximum resident set size (KB) = 494560 + 0: The total amount of wall time = 432.445661 + 0: The maximum resident set size (KB) = 496728 Test 136 datm_cdeps_mx025_cfsr PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_mx025_gefs -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/datm_cdeps_mx025_gefs +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/datm_cdeps_mx025_gefs Checking test 137 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4145,64 +4145,64 @@ Checking test 137 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 405.011509 - 0: The maximum resident set size (KB) = 476520 + 0: The total amount of wall time = 450.260802 + 0: The maximum resident set size (KB) = 476340 Test 137 datm_cdeps_mx025_gefs PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/datm_cdeps_multiple_files_cfsr +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/datm_cdeps_multiple_files_cfsr Checking test 138 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 165.541287 - 0: The maximum resident set size (KB) = 721036 + 0: The total amount of wall time = 186.610918 + 0: The maximum resident set size (KB) = 721116 Test 138 datm_cdeps_multiple_files_cfsr PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/datm_cdeps_3072x1536_cfsr +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/datm_cdeps_3072x1536_cfsr Checking test 139 datm_cdeps_3072x1536_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 252.894134 - 0: The maximum resident set size (KB) = 1948284 + 0: The total amount of wall time = 256.839950 + 0: The maximum resident set size (KB) = 1948260 Test 139 datm_cdeps_3072x1536_cfsr PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_gfs -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/datm_cdeps_gfs +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/datm_cdeps_gfs Checking test 140 datm_cdeps_gfs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 252.571094 - 0: The maximum resident set size (KB) = 1946648 + 0: The total amount of wall time = 250.952843 + 0: The maximum resident set size (KB) = 1963124 Test 140 datm_cdeps_gfs PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_debug_cfsr -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/datm_cdeps_debug_cfsr +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/datm_cdeps_debug_cfsr Checking test 141 datm_cdeps_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 372.985628 - 0: The maximum resident set size (KB) = 715000 + 0: The total amount of wall time = 376.959797 + 0: The maximum resident set size (KB) = 715036 Test 141 datm_cdeps_debug_cfsr PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/datm_cdeps_lnd_gswp3 +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/datm_cdeps_lnd_gswp3 Checking test 142 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4211,14 +4211,14 @@ Checking test 142 datm_cdeps_lnd_gswp3 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 = 10.048704 - 0: The maximum resident set size (KB) = 145788 + 0: The total amount of wall time = 12.256848 + 0: The maximum resident set size (KB) = 145796 Test 142 datm_cdeps_lnd_gswp3 PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/datm_cdeps_lnd_gswp3_rst +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/datm_cdeps_lnd_gswp3_rst Checking test 143 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4227,14 +4227,14 @@ Checking test 143 datm_cdeps_lnd_gswp3_rst 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.896115 - 0: The maximum resident set size (KB) = 154068 + 0: The total amount of wall time = 17.878736 + 0: The maximum resident set size (KB) = 154016 Test 143 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8_atmlnd_sbs -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/control_p8_atmlnd_sbs +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/control_p8_atmlnd_sbs Checking test 144 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4319,14 +4319,14 @@ Checking test 144 control_p8_atmlnd_sbs 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 = 223.689722 - 0: The maximum resident set size (KB) = 1425168 + 0: The total amount of wall time = 241.242129 + 0: The maximum resident set size (KB) = 1424348 Test 144 control_p8_atmlnd_sbs PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_atmwav -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/control_atmwav +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/control_atmwav Checking test 145 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4370,14 +4370,14 @@ Checking test 145 control_atmwav results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 92.151064 - 0: The maximum resident set size (KB) = 450700 + 0: The total amount of wall time = 103.907850 + 0: The maximum resident set size (KB) = 450744 Test 145 control_atmwav PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/atmaero_control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/atmaero_control_p8 +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/atmaero_control_p8 Checking test 146 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4421,14 +4421,14 @@ Checking test 146 atmaero_control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 240.027243 - 0: The maximum resident set size (KB) = 1461380 + 0: The total amount of wall time = 263.387763 + 0: The maximum resident set size (KB) = 1478928 Test 146 atmaero_control_p8 PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/atmaero_control_p8_rad -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/atmaero_control_p8_rad +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/atmaero_control_p8_rad Checking test 147 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4472,14 +4472,14 @@ Checking test 147 atmaero_control_p8_rad results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 297.285516 - 0: The maximum resident set size (KB) = 1482192 + 0: The total amount of wall time = 306.564535 + 0: The maximum resident set size (KB) = 1480900 Test 147 atmaero_control_p8_rad PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/atmaero_control_p8_rad_micro -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/atmaero_control_p8_rad_micro +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/atmaero_control_p8_rad_micro Checking test 148 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4523,14 +4523,14 @@ Checking test 148 atmaero_control_p8_rad_micro results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 298.570693 - 0: The maximum resident set size (KB) = 1504196 + 0: The total amount of wall time = 314.336156 + 0: The maximum resident set size (KB) = 1504160 Test 148 atmaero_control_p8_rad_micro PASS baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_atmaq -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_26352/regional_atmaq +working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/regional_atmaq Checking test 149 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4546,12 +4546,12 @@ Checking test 149 regional_atmaq results .... Comparing RESTART/phy_data.nc .........OK Comparing RESTART/sfc_data.nc .........OK - 0: The total amount of wall time = 639.363965 - 0: The maximum resident set size (KB) = 1083508 + 0: The total amount of wall time = 684.690265 + 0: The maximum resident set size (KB) = 1083580 Test 149 regional_atmaq PASS REGRESSION TEST WAS SUCCESSFUL -Thu Feb 16 23:44:55 EST 2023 -Elapsed time: 01h:26m:48s. Have a nice day! +Mon Feb 20 22:20:00 EST 2023 +Elapsed time: 03h:24m:13s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 0ac1399743f..3bd33b2a27a 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,21 +1,21 @@ -Wed Feb 15 21:04:48 UTC 2023 +Tue Feb 21 02:47:39 UTC 2023 Start Regression test -Compile 001 elapsed time 187 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 190 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 311 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 101 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 186 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 399 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 318 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 320 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 262 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 233 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 138 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 012 elapsed time 114 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 001 elapsed time 179 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 188 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 309 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 97 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 181 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 380 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 310 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 309 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 258 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 225 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 140 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 012 elapsed time 110 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1150/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/control_c48 Checking test 001 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -54,14 +54,14 @@ Checking test 001 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0: The total amount of wall time = 686.523395 -0: The maximum resident set size (KB) = 699636 +0: The total amount of wall time = 685.880685 +0: The maximum resident set size (KB) = 700792 Test 001 control_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1150/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/control_stochy Checking test 002 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -72,14 +72,14 @@ Checking test 002 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 645.494834 - 0: The maximum resident set size (KB) = 476976 + 0: The total amount of wall time = 644.033991 + 0: The maximum resident set size (KB) = 478424 Test 002 control_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1150/control_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/control_ras Checking test 003 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -90,14 +90,14 @@ Checking test 003 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 823.355123 - 0: The maximum resident set size (KB) = 486944 + 0: The total amount of wall time = 838.553107 + 0: The maximum resident set size (KB) = 486432 Test 003 control_ras PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1150/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/control_p8 Checking test 004 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -144,14 +144,14 @@ Checking test 004 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 894.435561 - 0: The maximum resident set size (KB) = 1234708 + 0: The total amount of wall time = 895.306899 + 0: The maximum resident set size (KB) = 1236136 Test 004 control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1150/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/rap_control Checking test 005 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -198,14 +198,14 @@ Checking test 005 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1441.057407 - 0: The maximum resident set size (KB) = 827416 + 0: The total amount of wall time = 1455.773630 + 0: The maximum resident set size (KB) = 831400 Test 005 rap_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1150/rap_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/rap_decomp Checking test 006 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -252,14 +252,14 @@ Checking test 006 rap_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1426.151701 - 0: The maximum resident set size (KB) = 827872 + 0: The total amount of wall time = 1434.262122 + 0: The maximum resident set size (KB) = 827680 Test 006 rap_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1150/rap_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/rap_2threads Checking test 007 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -306,14 +306,14 @@ Checking test 007 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1351.641740 - 0: The maximum resident set size (KB) = 898088 + 0: The total amount of wall time = 1361.242292 + 0: The maximum resident set size (KB) = 896084 Test 007 rap_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1150/rap_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/rap_restart Checking test 008 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -352,14 +352,14 @@ Checking test 008 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 729.518070 - 0: The maximum resident set size (KB) = 542672 + 0: The total amount of wall time = 719.268477 + 0: The maximum resident set size (KB) = 542632 Test 008 rap_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1150/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/rap_sfcdiff Checking test 009 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -406,14 +406,14 @@ Checking test 009 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1473.392024 - 0: The maximum resident set size (KB) = 832344 + 0: The total amount of wall time = 1482.588978 + 0: The maximum resident set size (KB) = 826724 Test 009 rap_sfcdiff PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1150/rap_sfcdiff_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/rap_sfcdiff_decomp Checking test 010 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -460,14 +460,14 @@ Checking test 010 rap_sfcdiff_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1431.402862 - 0: The maximum resident set size (KB) = 826832 + 0: The total amount of wall time = 1415.048960 + 0: The maximum resident set size (KB) = 830452 Test 010 rap_sfcdiff_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1150/rap_sfcdiff_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/rap_sfcdiff_restart Checking test 011 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -506,14 +506,14 @@ Checking test 011 rap_sfcdiff_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1085.250583 - 0: The maximum resident set size (KB) = 545084 + 0: The total amount of wall time = 1085.100565 + 0: The maximum resident set size (KB) = 542948 Test 011 rap_sfcdiff_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1150/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/hrrr_control Checking test 012 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -560,14 +560,14 @@ Checking test 012 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1433.018144 - 0: The maximum resident set size (KB) = 821324 + 0: The total amount of wall time = 1418.732691 + 0: The maximum resident set size (KB) = 825292 Test 012 hrrr_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1150/hrrr_control_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/hrrr_control_2threads Checking test 013 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -614,14 +614,14 @@ Checking test 013 hrrr_control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1273.972550 - 0: The maximum resident set size (KB) = 891228 + 0: The total amount of wall time = 1313.965820 + 0: The maximum resident set size (KB) = 891800 Test 013 hrrr_control_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1150/hrrr_control_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/hrrr_control_decomp Checking test 014 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -668,14 +668,14 @@ Checking test 014 hrrr_control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1385.241390 - 0: The maximum resident set size (KB) = 830036 + 0: The total amount of wall time = 1418.699946 + 0: The maximum resident set size (KB) = 827224 Test 014 hrrr_control_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1150/hrrr_control_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/hrrr_control_restart Checking test 015 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -714,14 +714,14 @@ Checking test 015 hrrr_control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1064.116576 - 0: The maximum resident set size (KB) = 541284 + 0: The total amount of wall time = 1058.306816 + 0: The maximum resident set size (KB) = 541000 Test 015 hrrr_control_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1150/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/rrfs_v1beta Checking test 016 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -768,14 +768,14 @@ Checking test 016 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1457.467041 - 0: The maximum resident set size (KB) = 821884 + 0: The total amount of wall time = 1468.547679 + 0: The maximum resident set size (KB) = 822368 Test 016 rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1150/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/rrfs_conus13km_hrrr_warm Checking test 017 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -784,14 +784,14 @@ Checking test 017 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 708.212597 - 0: The maximum resident set size (KB) = 635356 + 0: The total amount of wall time = 749.222086 + 0: The maximum resident set size (KB) = 633368 Test 017 rrfs_conus13km_hrrr_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1150/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/rrfs_smoke_conus13km_hrrr_warm Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -800,14 +800,14 @@ Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 788.555055 - 0: The maximum resident set size (KB) = 649884 + 0: The total amount of wall time = 778.968328 + 0: The maximum resident set size (KB) = 648260 Test 018 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1150/rrfs_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/rrfs_conus13km_radar_tten_warm Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -816,14 +816,14 @@ Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 752.007854 - 0: The maximum resident set size (KB) = 638724 + 0: The total amount of wall time = 744.136287 + 0: The maximum resident set size (KB) = 639120 Test 019 rrfs_conus13km_radar_tten_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1150/rrfs_conus13km_radar_tten_warm_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/rrfs_conus13km_radar_tten_warm_2threads Checking test 020 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -832,208 +832,208 @@ Checking test 020 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 849.069011 - 0: The maximum resident set size (KB) = 635268 + 0: The total amount of wall time = 893.876658 + 0: The maximum resident set size (KB) = 634292 Test 020 rrfs_conus13km_radar_tten_warm_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1150/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/control_diag_debug Checking test 021 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 126.443934 - 0: The maximum resident set size (KB) = 527772 + 0: The total amount of wall time = 126.866526 + 0: The maximum resident set size (KB) = 528472 Test 021 control_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1150/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/regional_debug Checking test 022 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 584.559172 - 0: The maximum resident set size (KB) = 587052 + 0: The total amount of wall time = 625.807104 + 0: The maximum resident set size (KB) = 591040 Test 022 regional_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1150/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/rap_control_debug Checking test 023 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 170.607137 - 0: The maximum resident set size (KB) = 848552 + 0: The total amount of wall time = 173.850474 + 0: The maximum resident set size (KB) = 849412 Test 023 rap_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1150/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/hrrr_control_debug Checking test 024 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 173.085570 - 0: The maximum resident set size (KB) = 840928 + 0: The total amount of wall time = 171.419265 + 0: The maximum resident set size (KB) = 850196 Test 024 hrrr_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1150/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/rap_diag_debug Checking test 025 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 214.386215 - 0: The maximum resident set size (KB) = 926896 + 0: The total amount of wall time = 218.203560 + 0: The maximum resident set size (KB) = 929528 Test 025 rap_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1150/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/rap_noah_sfcdiff_cires_ugwp_debug Checking test 026 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 272.292491 - 0: The maximum resident set size (KB) = 845888 + 0: The total amount of wall time = 273.392641 + 0: The maximum resident set size (KB) = 843024 Test 026 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1150/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/rap_progcld_thompson_debug Checking test 027 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 175.327583 - 0: The maximum resident set size (KB) = 840988 + 0: The total amount of wall time = 173.652687 + 0: The maximum resident set size (KB) = 846152 Test 027 rap_progcld_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1150/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/rrfs_v1beta_debug Checking test 028 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 173.337838 - 0: The maximum resident set size (KB) = 846848 + 0: The total amount of wall time = 172.444856 + 0: The maximum resident set size (KB) = 841368 Test 028 rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1150/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/control_ras_debug Checking test 029 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 104.887462 - 0: The maximum resident set size (KB) = 481444 + 0: The total amount of wall time = 103.050480 + 0: The maximum resident set size (KB) = 482996 Test 029 control_ras_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1150/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/control_stochy_debug Checking test 030 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 119.250652 - 0: The maximum resident set size (KB) = 471468 + 0: The total amount of wall time = 118.299602 + 0: The maximum resident set size (KB) = 477248 Test 030 control_stochy_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1150/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/control_debug_p8 Checking test 031 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 116.903723 - 0: The maximum resident set size (KB) = 1231964 + 0: The total amount of wall time = 116.503502 + 0: The maximum resident set size (KB) = 1231760 Test 031 control_debug_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1150/rrfs_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/rrfs_conus13km_hrrr_warm_debug Checking test 032 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 521.127035 - 0: The maximum resident set size (KB) = 644372 + 0: The total amount of wall time = 577.079646 + 0: The maximum resident set size (KB) = 647784 Test 032 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/rrfs_conus13km_radar_tten_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1150/rrfs_conus13km_radar_tten_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/rrfs_conus13km_radar_tten_warm_debug Checking test 033 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 563.873705 - 0: The maximum resident set size (KB) = 648216 + 0: The total amount of wall time = 562.098995 + 0: The maximum resident set size (KB) = 649316 Test 033 rrfs_conus13km_radar_tten_warm_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1150/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/control_wam_debug Checking test 034 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 185.409679 - 0: The maximum resident set size (KB) = 194768 + 0: The total amount of wall time = 184.599888 + 0: The maximum resident set size (KB) = 194472 Test 034 control_wam_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1150/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/rap_control_dyn32_phy32 Checking test 035 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1080,14 +1080,14 @@ Checking test 035 rap_control_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1452.509432 - 0: The maximum resident set size (KB) = 685264 + 0: The total amount of wall time = 1466.739805 + 0: The maximum resident set size (KB) = 682560 Test 035 rap_control_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1150/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/hrrr_control_dyn32_phy32 Checking test 036 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1134,14 +1134,14 @@ Checking test 036 hrrr_control_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 716.189520 - 0: The maximum resident set size (KB) = 688436 + 0: The total amount of wall time = 740.643872 + 0: The maximum resident set size (KB) = 688248 Test 036 hrrr_control_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1150/rap_2threads_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/rap_2threads_dyn32_phy32 Checking test 037 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1188,14 +1188,14 @@ Checking test 037 rap_2threads_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1338.377731 - 0: The maximum resident set size (KB) = 730112 + 0: The total amount of wall time = 1312.156012 + 0: The maximum resident set size (KB) = 731592 Test 037 rap_2threads_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1150/hrrr_control_2threads_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/hrrr_control_2threads_dyn32_phy32 Checking test 038 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1242,14 +1242,14 @@ Checking test 038 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 673.506544 - 0: The maximum resident set size (KB) = 727404 + 0: The total amount of wall time = 669.241900 + 0: The maximum resident set size (KB) = 726040 Test 038 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1150/hrrr_control_decomp_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/hrrr_control_decomp_dyn32_phy32 Checking test 039 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1296,14 +1296,14 @@ Checking test 039 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 728.701522 - 0: The maximum resident set size (KB) = 685936 + 0: The total amount of wall time = 719.788647 + 0: The maximum resident set size (KB) = 682772 Test 039 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1150/rap_restart_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/rap_restart_dyn32_phy32 Checking test 040 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1342,14 +1342,14 @@ Checking test 040 rap_restart_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1054.845088 - 0: The maximum resident set size (KB) = 509572 + 0: The total amount of wall time = 1084.446636 + 0: The maximum resident set size (KB) = 514144 Test 040 rap_restart_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1150/hrrr_control_restart_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/hrrr_control_restart_dyn32_phy32 Checking test 041 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1388,14 +1388,14 @@ Checking test 041 hrrr_control_restart_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 366.053761 - 0: The maximum resident set size (KB) = 513064 + 0: The total amount of wall time = 358.816763 + 0: The maximum resident set size (KB) = 507988 Test 041 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1150/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/rap_control_dyn64_phy32 Checking test 042 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1442,57 +1442,59 @@ Checking test 042 rap_control_dyn64_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1062.482190 - 0: The maximum resident set size (KB) = 716480 + 0: The total amount of wall time = 1069.186797 + 0: The maximum resident set size (KB) = 711700 Test 042 rap_control_dyn64_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1150/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/rap_control_debug_dyn32_phy32 Checking test 043 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 174.595260 - 0: The maximum resident set size (KB) = 705892 + 0: The total amount of wall time = 173.602971 + 0: The maximum resident set size (KB) = 702556 Test 043 rap_control_debug_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1150/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/hrrr_control_debug_dyn32_phy32 Checking test 044 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 169.901160 - 0: The maximum resident set size (KB) = 703964 + 0: The total amount of wall time = 170.333930 + 0: The maximum resident set size (KB) = 699172 Test 044 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1150/rap_control_dyn64_phy32_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/rap_control_dyn64_phy32_debug Checking test 045 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 200.083079 - 0: The maximum resident set size (KB) = 718280 + 0: The total amount of wall time = 205.344199 + 0: The maximum resident set size (KB) = 718364 Test 045 rap_control_dyn64_phy32_debug PASS +Test 046 cpld_control_p8 FAIL -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1150/cpld_control_p8 -Checking test 046 cpld_control_p8 results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/cpld_control_c96_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/cpld_control_nowave_noaero_p8 +Checking test 047 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1517,7 +1519,6 @@ Checking test 046 cpld_control_p8 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -1553,42 +1554,29 @@ Checking test 046 cpld_control_p8 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1772.266229 - 0: The maximum resident set size (KB) = 1429744 + 0: The total amount of wall time = 1229.937115 + 0: The maximum resident set size (KB) = 1332560 -Test 046 cpld_control_p8 PASS +Test 047 cpld_control_nowave_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1150/cpld_control_nowave_noaero_p8 -Checking test 047 cpld_control_nowave_noaero_p8 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 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/cpld_debug_p8 +Checking test 048 cpld_debug_p8 results .... + Comparing sfcf003.tile1.nc .........OK + Comparing sfcf003.tile2.nc .........OK + Comparing sfcf003.tile3.nc .........OK + Comparing sfcf003.tile4.nc .........OK + Comparing sfcf003.tile5.nc .........OK + Comparing sfcf003.tile6.nc .........OK + Comparing atmf003.tile1.nc .........OK + Comparing atmf003.tile2.nc .........OK + Comparing atmf003.tile3.nc .........OK + Comparing atmf003.tile4.nc .........OK + Comparing atmf003.tile5.nc .........OK + Comparing atmf003.tile6.nc .........OK + Comparing gocart.inst_aod.20210322_0900z.nc4 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -1622,31 +1610,68 @@ Checking test 047 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing RESTART/iced.2021-03-22-32400.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK + Comparing 20210322.090000.out_pnt.ww3 .........OK + Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1256.540521 - 0: The maximum resident set size (KB) = 1332832 + 0: The total amount of wall time = 913.112303 + 0: The maximum resident set size (KB) = 1445512 -Test 047 cpld_control_nowave_noaero_p8 PASS +Test 048 cpld_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1150/cpld_debug_p8 -Checking test 048 cpld_debug_p8 results .... - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing gocart.inst_aod.20210322_0900z.nc4 .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/datm_cdeps_control_cfsr +Checking test 049 datm_cdeps_control_cfsr results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK + + 0: The total amount of wall time = 172.349013 + 0: The maximum resident set size (KB) = 664804 + +Test 049 datm_cdeps_control_cfsr PASS + +FAILED TESTS: +Test cpld_control_p8 046 failed in run_test failed + +REGRESSION TEST FAILED +Tue Feb 21 04:41:23 UTC 2023 +Elapsed time: 01h:53m:45s. Have a nice day! +Tue Feb 21 13:12:42 UTC 2023 +Start Regression test + +Compile 001 elapsed time 262 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_22949/cpld_control_p8 +Checking test 001 cpld_control_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -1680,30 +1705,17 @@ Checking test 048 cpld_debug_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-32400.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK - Comparing 20210322.090000.out_pnt.ww3 .........OK - Comparing 20210322.090000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 903.567001 - 0: The maximum resident set size (KB) = 1445604 - -Test 048 cpld_debug_p8 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1150/datm_cdeps_control_cfsr -Checking test 049 datm_cdeps_control_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 175.026894 - 0: The maximum resident set size (KB) = 664480 + 0: The total amount of wall time = 1685.457976 + 0: The maximum resident set size (KB) = 1430320 -Test 049 datm_cdeps_control_cfsr PASS +Test 001 cpld_control_p8 PASS REGRESSION TEST WAS SUCCESSFUL -Thu Feb 16 00:15:30 UTC 2023 -Elapsed time: 03h:10m:42s. Have a nice day! +Tue Feb 21 13:51:04 UTC 2023 +Elapsed time: 00h:38m:22s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 8d68497e04f..22f56386818 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,3310 +1,4596 @@ -Thu Feb 16 18:32:15 UTC 2023 +Tue Feb 21 00:03:33 UTC 2023 Start Regression test -Compile 001 elapsed time 606 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 608 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 564 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 224 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 199 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 518 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 519 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 492 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 484 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 465 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 439 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 207 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 013 elapsed time 176 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 432 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 015 elapsed time 443 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 156 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 017 elapsed time 159 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 575 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 019 elapsed time 183 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 658 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 573 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 632 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 640 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 603 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 225 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 208 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 510 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 526 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 504 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 502 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 494 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 433 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 205 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 161 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 014 elapsed time 442 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 447 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 162 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 017 elapsed time 160 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 587 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 019 elapsed time 194 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 664 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 558 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 022 elapsed time 181 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 023 elapsed time 117 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 024 elapsed time 55 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 109 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 024 elapsed time 52 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile 025 elapsed time 480 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 026 elapsed time 528 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 026 elapsed time 532 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile 027 elapsed time 465 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 462 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 163 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 028 elapsed time 455 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 164 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8_mixedmode -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/cpld_control_p8_mixedmode +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... -Moving baseline 001 cpld_control_p8_mixedmode files .... - Moving sfcf021.tile1.nc .........OK - Moving sfcf021.tile2.nc .........OK - Moving sfcf021.tile3.nc .........OK - Moving sfcf021.tile4.nc .........OK - Moving sfcf021.tile5.nc .........OK - Moving sfcf021.tile6.nc .........OK - Moving atmf021.tile1.nc .........OK - Moving atmf021.tile2.nc .........OK - Moving atmf021.tile3.nc .........OK - Moving atmf021.tile4.nc .........OK - Moving atmf021.tile5.nc .........OK - Moving atmf021.tile6.nc .........OK - Moving sfcf024.tile1.nc .........OK - Moving sfcf024.tile2.nc .........OK - Moving sfcf024.tile3.nc .........OK - Moving sfcf024.tile4.nc .........OK - Moving sfcf024.tile5.nc .........OK - Moving sfcf024.tile6.nc .........OK - Moving atmf024.tile1.nc .........OK - Moving atmf024.tile2.nc .........OK - Moving atmf024.tile3.nc .........OK - Moving atmf024.tile4.nc .........OK - Moving atmf024.tile5.nc .........OK - Moving atmf024.tile6.nc .........OK - Moving gocart.inst_aod.20210323_0600z.nc4 .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - Moving RESTART/MOM.res.nc .........OK - Moving RESTART/iced.2021-03-23-21600.nc .........OK - Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Moving 20210323.060000.out_pnt.ww3 .........OK - Moving 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 306.159816 - 0: The maximum resident set size (KB) = 3143040 + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 304.432195 + 0: The maximum resident set size (KB) = 3148040 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_gfsv17 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/cpld_control_gfsv17 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... -Moving baseline 002 cpld_control_gfsv17 files .... - Moving sfcf021.tile1.nc .........OK - Moving sfcf021.tile2.nc .........OK - Moving sfcf021.tile3.nc .........OK - Moving sfcf021.tile4.nc .........OK - Moving sfcf021.tile5.nc .........OK - Moving sfcf021.tile6.nc .........OK - Moving atmf021.tile1.nc .........OK - Moving atmf021.tile2.nc .........OK - Moving atmf021.tile3.nc .........OK - Moving atmf021.tile4.nc .........OK - Moving atmf021.tile5.nc .........OK - Moving atmf021.tile6.nc .........OK - Moving sfcf024.tile1.nc .........OK - Moving sfcf024.tile2.nc .........OK - Moving sfcf024.tile3.nc .........OK - Moving sfcf024.tile4.nc .........OK - Moving sfcf024.tile5.nc .........OK - Moving sfcf024.tile6.nc .........OK - Moving atmf024.tile1.nc .........OK - Moving atmf024.tile2.nc .........OK - Moving atmf024.tile3.nc .........OK - Moving atmf024.tile4.nc .........OK - Moving atmf024.tile5.nc .........OK - Moving atmf024.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - Moving RESTART/MOM.res.nc .........OK - Moving RESTART/iced.2021-03-23-21600.nc .........OK - Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Moving 20210323.060000.out_pnt.ww3 .........OK - Moving 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 223.406097 - 0: The maximum resident set size (KB) = 1724264 + 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/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 220.828666 + 0: The maximum resident set size (KB) = 1729444 Test 002 cpld_control_gfsv17 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/cpld_control_p8 Checking test 003 cpld_control_p8 results .... -Moving baseline 003 cpld_control_p8 files .... - Moving sfcf021.tile1.nc .........OK - Moving sfcf021.tile2.nc .........OK - Moving sfcf021.tile3.nc .........OK - Moving sfcf021.tile4.nc .........OK - Moving sfcf021.tile5.nc .........OK - Moving sfcf021.tile6.nc .........OK - Moving atmf021.tile1.nc .........OK - Moving atmf021.tile2.nc .........OK - Moving atmf021.tile3.nc .........OK - Moving atmf021.tile4.nc .........OK - Moving atmf021.tile5.nc .........OK - Moving atmf021.tile6.nc .........OK - Moving sfcf024.tile1.nc .........OK - Moving sfcf024.tile2.nc .........OK - Moving sfcf024.tile3.nc .........OK - Moving sfcf024.tile4.nc .........OK - Moving sfcf024.tile5.nc .........OK - Moving sfcf024.tile6.nc .........OK - Moving atmf024.tile1.nc .........OK - Moving atmf024.tile2.nc .........OK - Moving atmf024.tile3.nc .........OK - Moving atmf024.tile4.nc .........OK - Moving atmf024.tile5.nc .........OK - Moving atmf024.tile6.nc .........OK - Moving gocart.inst_aod.20210323_0600z.nc4 .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - Moving RESTART/MOM.res.nc .........OK - Moving RESTART/iced.2021-03-23-21600.nc .........OK - Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Moving 20210323.060000.out_pnt.ww3 .........OK - Moving 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 336.002229 - 0: The maximum resident set size (KB) = 3179716 + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 332.666960 + 0: The maximum resident set size (KB) = 3178032 Test 003 cpld_control_p8 PASS +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/cpld_restart_p8 +Checking test 004 cpld_restart_p8 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 193.642384 + 0: The maximum resident set size (KB) = 3050356 + +Test 004 cpld_restart_p8 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/cpld_2threads_p8 +Checking test 005 cpld_2threads_p8 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 347.108616 + 0: The maximum resident set size (KB) = 3513496 + +Test 005 cpld_2threads_p8 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/cpld_decomp_p8 +Checking test 006 cpld_decomp_p8 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 334.210514 + 0: The maximum resident set size (KB) = 3175976 + +Test 006 cpld_decomp_p8 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/cpld_mpi_p8 +Checking test 007 cpld_mpi_p8 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 275.217273 + 0: The maximum resident set size (KB) = 3023784 + +Test 007 cpld_mpi_p8 PASS + + baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_ciceC_p8 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/cpld_control_ciceC_p8 -Checking test 004 cpld_control_ciceC_p8 results .... -Moving baseline 004 cpld_control_ciceC_p8 files .... - Moving sfcf021.tile1.nc .........OK - Moving sfcf021.tile2.nc .........OK - Moving sfcf021.tile3.nc .........OK - Moving sfcf021.tile4.nc .........OK - Moving sfcf021.tile5.nc .........OK - Moving sfcf021.tile6.nc .........OK - Moving atmf021.tile1.nc .........OK - Moving atmf021.tile2.nc .........OK - Moving atmf021.tile3.nc .........OK - Moving atmf021.tile4.nc .........OK - Moving atmf021.tile5.nc .........OK - Moving atmf021.tile6.nc .........OK - Moving sfcf024.tile1.nc .........OK - Moving sfcf024.tile2.nc .........OK - Moving sfcf024.tile3.nc .........OK - Moving sfcf024.tile4.nc .........OK - Moving sfcf024.tile5.nc .........OK - Moving sfcf024.tile6.nc .........OK - Moving atmf024.tile1.nc .........OK - Moving atmf024.tile2.nc .........OK - Moving atmf024.tile3.nc .........OK - Moving atmf024.tile4.nc .........OK - Moving atmf024.tile5.nc .........OK - Moving atmf024.tile6.nc .........OK - Moving gocart.inst_aod.20210323_0600z.nc4 .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - Moving RESTART/MOM.res.nc .........OK - Moving RESTART/iced.2021-03-23-21600.nc .........OK - Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Moving 20210323.060000.out_pnt.ww3 .........OK - Moving 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 335.321732 - 0: The maximum resident set size (KB) = 3174452 - -Test 004 cpld_control_ciceC_p8 PASS +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/cpld_control_ciceC_p8 +Checking test 008 cpld_control_ciceC_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 331.216880 + 0: The maximum resident set size (KB) = 3177344 + +Test 008 cpld_control_ciceC_p8 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/cpld_control_c192_p8 +Checking test 009 cpld_control_c192_p8 results .... + Comparing sfcf030.tile1.nc .........OK + Comparing sfcf030.tile2.nc .........OK + Comparing sfcf030.tile3.nc .........OK + Comparing sfcf030.tile4.nc .........OK + Comparing sfcf030.tile5.nc .........OK + Comparing sfcf030.tile6.nc .........OK + Comparing atmf030.tile1.nc .........OK + Comparing atmf030.tile2.nc .........OK + Comparing atmf030.tile3.nc .........OK + Comparing atmf030.tile4.nc .........OK + Comparing atmf030.tile5.nc .........OK + Comparing atmf030.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_1200z.nc4 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK + Comparing 20210323.120000.out_grd.ww3 .........OK + Comparing 20210323.120000.out_pnt.ww3 .........OK + + 0: The total amount of wall time = 573.005973 + 0: The maximum resident set size (KB) = 3258508 + +Test 009 cpld_control_c192_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/cpld_control_c192_p8 -Checking test 005 cpld_control_c192_p8 results .... -Moving baseline 005 cpld_control_c192_p8 files .... - Moving sfcf030.tile1.nc .........OK - Moving sfcf030.tile2.nc .........OK - Moving sfcf030.tile3.nc .........OK - Moving sfcf030.tile4.nc .........OK - Moving sfcf030.tile5.nc .........OK - Moving sfcf030.tile6.nc .........OK - Moving atmf030.tile1.nc .........OK - Moving atmf030.tile2.nc .........OK - Moving atmf030.tile3.nc .........OK - Moving atmf030.tile4.nc .........OK - Moving atmf030.tile5.nc .........OK - Moving atmf030.tile6.nc .........OK - Moving gocart.inst_aod.20210323_1200z.nc4 .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - Moving RESTART/MOM.res.nc .........OK - Moving RESTART/iced.2021-03-23-43200.nc .........OK - Moving RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - Moving 20210323.120000.out_grd.ww3 .........OK - Moving 20210323.120000.out_pnt.ww3 .........OK - - 0: The total amount of wall time = 579.830685 - 0: The maximum resident set size (KB) = 3255628 - -Test 005 cpld_control_c192_p8 PASS +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/cpld_restart_c192_p8 +Checking test 010 cpld_restart_c192_p8 results .... + Comparing sfcf030.tile1.nc .........OK + Comparing sfcf030.tile2.nc .........OK + Comparing sfcf030.tile3.nc .........OK + Comparing sfcf030.tile4.nc .........OK + Comparing sfcf030.tile5.nc .........OK + Comparing sfcf030.tile6.nc .........OK + Comparing atmf030.tile1.nc .........OK + Comparing atmf030.tile2.nc .........OK + Comparing atmf030.tile3.nc .........OK + Comparing atmf030.tile4.nc .........OK + Comparing atmf030.tile5.nc .........OK + Comparing atmf030.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_1200z.nc4 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK + Comparing 20210323.120000.out_grd.ww3 .........OK + Comparing 20210323.120000.out_pnt.ww3 .........OK + + 0: The total amount of wall time = 395.133582 + 0: The maximum resident set size (KB) = 3153624 + +Test 010 cpld_restart_c192_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/cpld_bmark_p8 -Checking test 006 cpld_bmark_p8 results .... -Moving baseline 006 cpld_bmark_p8 files .... - Moving sfcf006.nc .........OK - Moving atmf006.nc .........OK - Moving GFSFLX.GrbF06 .........OK - Moving GFSPRS.GrbF06 .........OK - Moving gocart.inst_aod.20130401_0600z.nc4 .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - Moving RESTART/MOM.res.nc .........OK - Moving RESTART/MOM.res_1.nc .........OK - Moving RESTART/MOM.res_2.nc .........OK - Moving RESTART/MOM.res_3.nc .........OK - Moving RESTART/iced.2013-04-01-21600.nc .........OK - Moving RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - Moving 20130401.060000.out_pnt.ww3 .........OK - Moving 20130401.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 690.289246 - 0: The maximum resident set size (KB) = 4034768 - -Test 006 cpld_bmark_p8 PASS +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/cpld_bmark_p8 +Checking test 011 cpld_bmark_p8 results .... + Comparing sfcf006.nc .........OK + Comparing atmf006.nc .........OK + Comparing GFSFLX.GrbF06 .........OK + Comparing GFSPRS.GrbF06 .........OK + Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-01-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK + Comparing 20130401.060000.out_pnt.ww3 .........OK + Comparing 20130401.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 694.529564 + 0: The maximum resident set size (KB) = 4030956 + +Test 011 cpld_bmark_p8 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/cpld_restart_bmark_p8 +Checking test 012 cpld_restart_bmark_p8 results .... + Comparing sfcf006.nc .........OK + Comparing atmf006.nc .........OK + Comparing GFSFLX.GrbF06 .........OK + Comparing GFSPRS.GrbF06 .........OK + Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-01-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK + Comparing 20130401.060000.out_pnt.ww3 .........OK + Comparing 20130401.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 423.005753 + 0: The maximum resident set size (KB) = 3966028 + +Test 012 cpld_restart_bmark_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/cpld_control_noaero_p8 -Checking test 007 cpld_control_noaero_p8 results .... -Moving baseline 007 cpld_control_noaero_p8 files .... - Moving sfcf021.tile1.nc .........OK - Moving sfcf021.tile2.nc .........OK - Moving sfcf021.tile3.nc .........OK - Moving sfcf021.tile4.nc .........OK - Moving sfcf021.tile5.nc .........OK - Moving sfcf021.tile6.nc .........OK - Moving atmf021.tile1.nc .........OK - Moving atmf021.tile2.nc .........OK - Moving atmf021.tile3.nc .........OK - Moving atmf021.tile4.nc .........OK - Moving atmf021.tile5.nc .........OK - Moving atmf021.tile6.nc .........OK - Moving sfcf024.tile1.nc .........OK - Moving sfcf024.tile2.nc .........OK - Moving sfcf024.tile3.nc .........OK - Moving sfcf024.tile4.nc .........OK - Moving sfcf024.tile5.nc .........OK - Moving sfcf024.tile6.nc .........OK - Moving atmf024.tile1.nc .........OK - Moving atmf024.tile2.nc .........OK - Moving atmf024.tile3.nc .........OK - Moving atmf024.tile4.nc .........OK - Moving atmf024.tile5.nc .........OK - Moving atmf024.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - Moving RESTART/MOM.res.nc .........OK - Moving RESTART/iced.2021-03-23-21600.nc .........OK - Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Moving 20210323.060000.out_pnt.ww3 .........OK - Moving 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 260.061414 - 0: The maximum resident set size (KB) = 1717416 - -Test 007 cpld_control_noaero_p8 PASS +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/cpld_control_noaero_p8 +Checking test 013 cpld_control_noaero_p8 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/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 258.356447 + 0: The maximum resident set size (KB) = 1726916 + +Test 013 cpld_control_noaero_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/cpld_control_nowave_noaero_p8 -Checking test 008 cpld_control_nowave_noaero_p8 results .... -Moving baseline 008 cpld_control_nowave_noaero_p8 files .... - Moving sfcf021.tile1.nc .........OK - Moving sfcf021.tile2.nc .........OK - Moving sfcf021.tile3.nc .........OK - Moving sfcf021.tile4.nc .........OK - Moving sfcf021.tile5.nc .........OK - Moving sfcf021.tile6.nc .........OK - Moving atmf021.tile1.nc .........OK - Moving atmf021.tile2.nc .........OK - Moving atmf021.tile3.nc .........OK - Moving atmf021.tile4.nc .........OK - Moving atmf021.tile5.nc .........OK - Moving atmf021.tile6.nc .........OK - Moving sfcf024.tile1.nc .........OK - Moving sfcf024.tile2.nc .........OK - Moving sfcf024.tile3.nc .........OK - Moving sfcf024.tile4.nc .........OK - Moving sfcf024.tile5.nc .........OK - Moving sfcf024.tile6.nc .........OK - Moving atmf024.tile1.nc .........OK - Moving atmf024.tile2.nc .........OK - Moving atmf024.tile3.nc .........OK - Moving atmf024.tile4.nc .........OK - Moving atmf024.tile5.nc .........OK - Moving atmf024.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - Moving RESTART/MOM.res.nc .........OK - Moving RESTART/iced.2021-03-23-21600.nc .........OK - Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - - 0: The total amount of wall time = 256.995788 - 0: The maximum resident set size (KB) = 1769756 - -Test 008 cpld_control_nowave_noaero_p8 PASS +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/cpld_control_nowave_noaero_p8 +Checking test 014 cpld_control_nowave_noaero_p8 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/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + + 0: The total amount of wall time = 256.243885 + 0: The maximum resident set size (KB) = 1758240 + +Test 014 cpld_control_nowave_noaero_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/cpld_debug_p8 -Checking test 009 cpld_debug_p8 results .... -Moving baseline 009 cpld_debug_p8 files .... - Moving sfcf003.tile1.nc .........OK - Moving sfcf003.tile2.nc .........OK - Moving sfcf003.tile3.nc .........OK - Moving sfcf003.tile4.nc .........OK - Moving sfcf003.tile5.nc .........OK - Moving sfcf003.tile6.nc .........OK - Moving atmf003.tile1.nc .........OK - Moving atmf003.tile2.nc .........OK - Moving atmf003.tile3.nc .........OK - Moving atmf003.tile4.nc .........OK - Moving atmf003.tile5.nc .........OK - Moving atmf003.tile6.nc .........OK - Moving gocart.inst_aod.20210322_0900z.nc4 .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - Moving RESTART/MOM.res.nc .........OK - Moving RESTART/iced.2021-03-22-32400.nc .........OK - Moving RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK - Moving 20210322.090000.out_pnt.ww3 .........OK - Moving 20210322.090000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 655.025627 - 0: The maximum resident set size (KB) = 3251720 - -Test 009 cpld_debug_p8 PASS +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/cpld_debug_p8 +Checking test 015 cpld_debug_p8 results .... + Comparing sfcf003.tile1.nc .........OK + Comparing sfcf003.tile2.nc .........OK + Comparing sfcf003.tile3.nc .........OK + Comparing sfcf003.tile4.nc .........OK + Comparing sfcf003.tile5.nc .........OK + Comparing sfcf003.tile6.nc .........OK + Comparing atmf003.tile1.nc .........OK + Comparing atmf003.tile2.nc .........OK + Comparing atmf003.tile3.nc .........OK + Comparing atmf003.tile4.nc .........OK + Comparing atmf003.tile5.nc .........OK + Comparing atmf003.tile6.nc .........OK + Comparing gocart.inst_aod.20210322_0900z.nc4 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-22-32400.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK + Comparing 20210322.090000.out_pnt.ww3 .........OK + Comparing 20210322.090000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 654.712028 + 0: The maximum resident set size (KB) = 3243048 + +Test 015 cpld_debug_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_debug_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/cpld_debug_noaero_p8 -Checking test 010 cpld_debug_noaero_p8 results .... -Moving baseline 010 cpld_debug_noaero_p8 files .... - Moving sfcf003.tile1.nc .........OK - Moving sfcf003.tile2.nc .........OK - Moving sfcf003.tile3.nc .........OK - Moving sfcf003.tile4.nc .........OK - Moving sfcf003.tile5.nc .........OK - Moving sfcf003.tile6.nc .........OK - Moving atmf003.tile1.nc .........OK - Moving atmf003.tile2.nc .........OK - Moving atmf003.tile3.nc .........OK - Moving atmf003.tile4.nc .........OK - Moving atmf003.tile5.nc .........OK - Moving atmf003.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - Moving RESTART/MOM.res.nc .........OK - Moving RESTART/iced.2021-03-22-32400.nc .........OK - Moving RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK - Moving 20210322.090000.out_pnt.ww3 .........OK - Moving 20210322.090000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 407.974926 - 0: The maximum resident set size (KB) = 1738876 - -Test 010 cpld_debug_noaero_p8 PASS +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/cpld_debug_noaero_p8 +Checking test 016 cpld_debug_noaero_p8 results .... + Comparing sfcf003.tile1.nc .........OK + Comparing sfcf003.tile2.nc .........OK + Comparing sfcf003.tile3.nc .........OK + Comparing sfcf003.tile4.nc .........OK + Comparing sfcf003.tile5.nc .........OK + Comparing sfcf003.tile6.nc .........OK + Comparing atmf003.tile1.nc .........OK + Comparing atmf003.tile2.nc .........OK + Comparing atmf003.tile3.nc .........OK + Comparing atmf003.tile4.nc .........OK + Comparing atmf003.tile5.nc .........OK + Comparing atmf003.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-22-32400.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK + Comparing 20210322.090000.out_pnt.ww3 .........OK + Comparing 20210322.090000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 406.286880 + 0: The maximum resident set size (KB) = 1732628 + +Test 016 cpld_debug_noaero_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_noaero_p8_agrid -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/cpld_control_noaero_p8_agrid -Checking test 011 cpld_control_noaero_p8_agrid results .... -Moving baseline 011 cpld_control_noaero_p8_agrid files .... - Moving sfcf021.tile1.nc .........OK - Moving sfcf021.tile2.nc .........OK - Moving sfcf021.tile3.nc .........OK - Moving sfcf021.tile4.nc .........OK - Moving sfcf021.tile5.nc .........OK - Moving sfcf021.tile6.nc .........OK - Moving atmf021.tile1.nc .........OK - Moving atmf021.tile2.nc .........OK - Moving atmf021.tile3.nc .........OK - Moving atmf021.tile4.nc .........OK - Moving atmf021.tile5.nc .........OK - Moving atmf021.tile6.nc .........OK - Moving sfcf024.tile1.nc .........OK - Moving sfcf024.tile2.nc .........OK - Moving sfcf024.tile3.nc .........OK - Moving sfcf024.tile4.nc .........OK - Moving sfcf024.tile5.nc .........OK - Moving sfcf024.tile6.nc .........OK - Moving atmf024.tile1.nc .........OK - Moving atmf024.tile2.nc .........OK - Moving atmf024.tile3.nc .........OK - Moving atmf024.tile4.nc .........OK - Moving atmf024.tile5.nc .........OK - Moving atmf024.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - Moving RESTART/MOM.res.nc .........OK - Moving RESTART/iced.2021-03-23-21600.nc .........OK - Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - - 0: The total amount of wall time = 264.931660 - 0: The maximum resident set size (KB) = 1761392 - -Test 011 cpld_control_noaero_p8_agrid PASS +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/cpld_control_noaero_p8_agrid +Checking test 017 cpld_control_noaero_p8_agrid 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/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + + 0: The total amount of wall time = 262.863355 + 0: The maximum resident set size (KB) = 1757808 + +Test 017 cpld_control_noaero_p8_agrid PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_c48 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/cpld_control_c48 -Checking test 012 cpld_control_c48 results .... -Moving baseline 012 cpld_control_c48 files .... - Moving sfcf024.tile1.nc .........OK - Moving sfcf024.tile2.nc .........OK - Moving sfcf024.tile3.nc .........OK - Moving sfcf024.tile4.nc .........OK - Moving sfcf024.tile5.nc .........OK - Moving sfcf024.tile6.nc .........OK - Moving atmf024.tile1.nc .........OK - Moving atmf024.tile2.nc .........OK - Moving atmf024.tile3.nc .........OK - Moving atmf024.tile4.nc .........OK - Moving atmf024.tile5.nc .........OK - Moving atmf024.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - Moving RESTART/MOM.res.nc .........OK - Moving RESTART/iced.2021-03-23-21600.nc .........OK - Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - - 0: The total amount of wall time = 580.993389 - 0: The maximum resident set size (KB) = 2792284 - -Test 012 cpld_control_c48 PASS +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/cpld_control_c48 +Checking test 018 cpld_control_c48 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + + 0: The total amount of wall time = 580.021481 + 0: The maximum resident set size (KB) = 2800332 + +Test 018 cpld_control_c48 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_warmstart_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/cpld_warmstart_c48 +Checking test 019 cpld_warmstart_c48 results .... + Comparing sfcf006.tile1.nc .........OK + Comparing sfcf006.tile2.nc .........OK + Comparing sfcf006.tile3.nc .........OK + Comparing sfcf006.tile4.nc .........OK + Comparing sfcf006.tile5.nc .........OK + Comparing sfcf006.tile6.nc .........OK + Comparing atmf006.tile1.nc .........OK + Comparing atmf006.tile2.nc .........OK + Comparing atmf006.tile3.nc .........OK + Comparing atmf006.tile4.nc .........OK + Comparing atmf006.tile5.nc .........OK + Comparing atmf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK + + 0: The total amount of wall time = 154.335643 + 0: The maximum resident set size (KB) = 2798080 + +Test 019 cpld_warmstart_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/cpld_warmstart_c48 -Checking test 013 cpld_warmstart_c48 results .... -Moving baseline 013 cpld_warmstart_c48 files .... - Moving sfcf006.tile1.nc .........OK - Moving sfcf006.tile2.nc .........OK - Moving sfcf006.tile3.nc .........OK - Moving sfcf006.tile4.nc .........OK - Moving sfcf006.tile5.nc .........OK - Moving sfcf006.tile6.nc .........OK - Moving atmf006.tile1.nc .........OK - Moving atmf006.tile2.nc .........OK - Moving atmf006.tile3.nc .........OK - Moving atmf006.tile4.nc .........OK - Moving atmf006.tile5.nc .........OK - Moving atmf006.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - Moving RESTART/MOM.res.nc .........OK - Moving RESTART/iced.2021-03-23-43200.nc .........OK - Moving RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - - 0: The total amount of wall time = 149.466237 - 0: The maximum resident set size (KB) = 2795932 - -Test 013 cpld_warmstart_c48 PASS +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/cpld_restart_c48 +Checking test 020 cpld_restart_c48 results .... + Comparing sfcf006.tile1.nc .........OK + Comparing sfcf006.tile2.nc .........OK + Comparing sfcf006.tile3.nc .........OK + Comparing sfcf006.tile4.nc .........OK + Comparing sfcf006.tile5.nc .........OK + Comparing sfcf006.tile6.nc .........OK + Comparing atmf006.tile1.nc .........OK + Comparing atmf006.tile2.nc .........OK + Comparing atmf006.tile3.nc .........OK + Comparing atmf006.tile4.nc .........OK + Comparing atmf006.tile5.nc .........OK + Comparing atmf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK + + 0: The total amount of wall time = 84.064352 + 0: The maximum resident set size (KB) = 2242232 + +Test 020 cpld_restart_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_CubedSphereGrid -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/control_CubedSphereGrid -Checking test 014 control_CubedSphereGrid results .... -Moving baseline 014 control_CubedSphereGrid files .... - Moving sfcf000.tile1.nc .........OK - Moving sfcf000.tile2.nc .........OK - Moving sfcf000.tile3.nc .........OK - Moving sfcf000.tile4.nc .........OK - Moving sfcf000.tile5.nc .........OK - Moving sfcf000.tile6.nc .........OK - Moving sfcf024.tile1.nc .........OK - Moving sfcf024.tile2.nc .........OK - Moving sfcf024.tile3.nc .........OK - Moving sfcf024.tile4.nc .........OK - Moving sfcf024.tile5.nc .........OK - Moving sfcf024.tile6.nc .........OK - Moving atmf000.tile1.nc .........OK - Moving atmf000.tile2.nc .........OK - Moving atmf000.tile3.nc .........OK - Moving atmf000.tile4.nc .........OK - Moving atmf000.tile5.nc .........OK - Moving atmf000.tile6.nc .........OK - Moving atmf024.tile1.nc .........OK - Moving atmf024.tile2.nc .........OK - Moving atmf024.tile3.nc .........OK - Moving atmf024.tile4.nc .........OK - Moving atmf024.tile5.nc .........OK - Moving atmf024.tile6.nc .........OK - - 0: The total amount of wall time = 128.085798 - 0: The maximum resident set size (KB) = 624764 - -Test 014 control_CubedSphereGrid PASS +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/control_CubedSphereGrid +Checking test 021 control_CubedSphereGrid results .... + Comparing sfcf000.tile1.nc .........OK + Comparing sfcf000.tile2.nc .........OK + Comparing sfcf000.tile3.nc .........OK + Comparing sfcf000.tile4.nc .........OK + Comparing sfcf000.tile5.nc .........OK + Comparing sfcf000.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf000.tile1.nc .........OK + Comparing atmf000.tile2.nc .........OK + Comparing atmf000.tile3.nc .........OK + Comparing atmf000.tile4.nc .........OK + Comparing atmf000.tile5.nc .........OK + Comparing atmf000.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + + 0: The total amount of wall time = 128.933979 + 0: The maximum resident set size (KB) = 626556 + +Test 021 control_CubedSphereGrid PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_CubedSphereGrid_parallel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/control_CubedSphereGrid_parallel -Checking test 015 control_CubedSphereGrid_parallel results .... -Moving baseline 015 control_CubedSphereGrid_parallel files .... - Moving sfcf000.nc .........OK - Moving sfcf024.nc .........OK - Moving atmf000.nc .........OK - Moving atmf024.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/control_CubedSphereGrid_parallel +Checking test 022 control_CubedSphereGrid_parallel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK - 0: The total amount of wall time = 125.671512 - 0: The maximum resident set size (KB) = 628668 + 0: The total amount of wall time = 126.170245 + 0: The maximum resident set size (KB) = 627664 -Test 015 control_CubedSphereGrid_parallel PASS +Test 022 control_CubedSphereGrid_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_latlon -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/control_latlon -Checking test 016 control_latlon results .... -Moving baseline 016 control_latlon files .... - Moving sfcf000.nc .........OK - Moving sfcf024.nc .........OK - Moving atmf000.nc .........OK - Moving atmf024.nc .........OK - Moving GFSFLX.GrbF00 .........OK - Moving GFSFLX.GrbF24 .........OK - Moving GFSPRS.GrbF00 .........OK - Moving GFSPRS.GrbF24 .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/control_latlon +Checking test 023 control_latlon results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 132.378014 - 0: The maximum resident set size (KB) = 630400 + 0: The total amount of wall time = 132.166093 + 0: The maximum resident set size (KB) = 627580 -Test 016 control_latlon PASS +Test 023 control_latlon PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_wrtGauss_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/control_wrtGauss_netcdf_parallel -Checking test 017 control_wrtGauss_netcdf_parallel results .... -Moving baseline 017 control_wrtGauss_netcdf_parallel files .... - Moving sfcf000.nc .........OK - Moving sfcf024.nc .........OK - Moving atmf000.nc .........OK - Moving atmf024.nc .........OK - Moving GFSFLX.GrbF00 .........OK - Moving GFSFLX.GrbF24 .........OK - Moving GFSPRS.GrbF00 .........OK - Moving GFSPRS.GrbF24 .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/control_wrtGauss_netcdf_parallel +Checking test 024 control_wrtGauss_netcdf_parallel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.719244 - 0: The maximum resident set size (KB) = 629164 + 0: The total amount of wall time = 134.359653 + 0: The maximum resident set size (KB) = 624096 -Test 017 control_wrtGauss_netcdf_parallel PASS +Test 024 control_wrtGauss_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/control_c48 -Checking test 018 control_c48 results .... -Moving baseline 018 control_c48 files .... - Moving sfcf000.nc .........OK - Moving sfcf024.nc .........OK - Moving atmf000.nc .........OK - Moving atmf024.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - -0: The total amount of wall time = 365.376776 -0: The maximum resident set size (KB) = 807392 - -Test 018 control_c48 PASS +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/control_c48 +Checking test 025 control_c48 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + +0: The total amount of wall time = 373.773178 +0: The maximum resident set size (KB) = 813840 + +Test 025 control_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_c192 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/control_c192 -Checking test 019 control_c192 results .... -Moving baseline 019 control_c192 files .... - Moving sfcf000.nc .........OK - Moving sfcf024.nc .........OK - Moving atmf000.nc .........OK - Moving atmf024.nc .........OK - Moving GFSFLX.GrbF00 .........OK - Moving GFSFLX.GrbF24 .........OK - Moving GFSPRS.GrbF00 .........OK - Moving GFSPRS.GrbF24 .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/control_c192 +Checking test 026 control_c192 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 524.539090 - 0: The maximum resident set size (KB) = 766056 + 0: The total amount of wall time = 524.645000 + 0: The maximum resident set size (KB) = 763148 -Test 019 control_c192 PASS +Test 026 control_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_c384 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/control_c384 -Checking test 020 control_c384 results .... -Moving baseline 020 control_c384 files .... - Moving sfcf000.nc .........OK - Moving sfcf012.nc .........OK - Moving atmf000.nc .........OK - Moving atmf012.nc .........OK - Moving GFSFLX.GrbF00 .........OK - Moving GFSFLX.GrbF12 .........OK - Moving GFSPRS.GrbF00 .........OK - Moving GFSPRS.GrbF12 .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/control_c384 +Checking test 027 control_c384 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 526.261338 - 0: The maximum resident set size (KB) = 1197620 + 0: The total amount of wall time = 529.009074 + 0: The maximum resident set size (KB) = 1203128 -Test 020 control_c384 PASS +Test 027 control_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_c384gdas -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/control_c384gdas -Checking test 021 control_c384gdas results .... -Moving baseline 021 control_c384gdas files .... - Moving sfcf000.nc .........OK - Moving sfcf006.nc .........OK - Moving atmf000.nc .........OK - Moving atmf006.nc .........OK - Moving GFSFLX.GrbF00 .........OK - Moving GFSFLX.GrbF06 .........OK - Moving GFSPRS.GrbF00 .........OK - Moving GFSPRS.GrbF06 .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 467.584984 - 0: The maximum resident set size (KB) = 1356548 - -Test 021 control_c384gdas PASS +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/control_c384gdas +Checking test 028 control_c384gdas results .... + Comparing sfcf000.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf006.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF06 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF06 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 459.473928 + 0: The maximum resident set size (KB) = 1339852 + +Test 028 control_c384gdas PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/control_stochy +Checking test 029 control_stochy results .... + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF12 .........OK + + 0: The total amount of wall time = 87.065139 + 0: The maximum resident set size (KB) = 626476 + +Test 029 control_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/control_stochy -Checking test 022 control_stochy results .... -Moving baseline 022 control_stochy files .... - Moving sfcf000.nc .........OK - Moving sfcf012.nc .........OK - Moving atmf000.nc .........OK - Moving atmf012.nc .........OK - Moving GFSFLX.GrbF00 .........OK - Moving GFSFLX.GrbF12 .........OK - Moving GFSPRS.GrbF00 .........OK - Moving GFSPRS.GrbF12 .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/control_stochy_restart +Checking test 030 control_stochy_restart results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 87.303601 - 0: The maximum resident set size (KB) = 629524 + 0: The total amount of wall time = 46.119853 + 0: The maximum resident set size (KB) = 480528 -Test 022 control_stochy PASS +Test 030 control_stochy_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_lndp -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/control_lndp -Checking test 023 control_lndp results .... -Moving baseline 023 control_lndp files .... - Moving sfcf000.nc .........OK - Moving sfcf012.nc .........OK - Moving atmf000.nc .........OK - Moving atmf012.nc .........OK - Moving GFSFLX.GrbF00 .........OK - Moving GFSFLX.GrbF12 .........OK - Moving GFSPRS.GrbF00 .........OK - Moving GFSPRS.GrbF12 .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/control_lndp +Checking test 031 control_lndp results .... + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 79.828310 - 0: The maximum resident set size (KB) = 625236 + 0: The total amount of wall time = 79.335329 + 0: The maximum resident set size (KB) = 628080 -Test 023 control_lndp PASS +Test 031 control_lndp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_iovr4 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/control_iovr4 -Checking test 024 control_iovr4 results .... -Moving baseline 024 control_iovr4 files .... - Moving sfcf000.nc .........OK - Moving sfcf021.nc .........OK - Moving sfcf024.nc .........OK - Moving atmf000.nc .........OK - Moving atmf021.nc .........OK - Moving atmf024.nc .........OK - Moving GFSFLX.GrbF00 .........OK - Moving GFSFLX.GrbF21 .........OK - Moving GFSFLX.GrbF24 .........OK - Moving GFSPRS.GrbF00 .........OK - Moving GFSPRS.GrbF21 .........OK - Moving GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 134.877862 - 0: The maximum resident set size (KB) = 627096 - -Test 024 control_iovr4 PASS +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/control_iovr4 +Checking test 032 control_iovr4 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + + 0: The total amount of wall time = 133.450049 + 0: The maximum resident set size (KB) = 626548 + +Test 032 control_iovr4 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_iovr5 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/control_iovr5 -Checking test 025 control_iovr5 results .... -Moving baseline 025 control_iovr5 files .... - Moving sfcf000.nc .........OK - Moving sfcf021.nc .........OK - Moving sfcf024.nc .........OK - Moving atmf000.nc .........OK - Moving atmf021.nc .........OK - Moving atmf024.nc .........OK - Moving GFSFLX.GrbF00 .........OK - Moving GFSFLX.GrbF21 .........OK - Moving GFSFLX.GrbF24 .........OK - Moving GFSPRS.GrbF00 .........OK - Moving GFSPRS.GrbF21 .........OK - Moving GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 134.929334 - 0: The maximum resident set size (KB) = 634512 - -Test 025 control_iovr5 PASS +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/control_iovr5 +Checking test 033 control_iovr5 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + + 0: The total amount of wall time = 132.992700 + 0: The maximum resident set size (KB) = 626092 + +Test 033 control_iovr5 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/control_p8 -Checking test 026 control_p8 results .... -Moving baseline 026 control_p8 files .... - Moving sfcf000.nc .........OK - Moving sfcf021.nc .........OK - Moving sfcf024.nc .........OK - Moving atmf000.nc .........OK - Moving atmf021.nc .........OK - Moving atmf024.nc .........OK - Moving GFSFLX.GrbF00 .........OK - Moving GFSFLX.GrbF21 .........OK - Moving GFSFLX.GrbF24 .........OK - Moving GFSPRS.GrbF00 .........OK - Moving GFSPRS.GrbF21 .........OK - Moving GFSPRS.GrbF24 .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 168.390790 - 0: The maximum resident set size (KB) = 1590664 - -Test 026 control_p8 PASS +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/control_p8 +Checking test 034 control_p8 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 167.167360 + 0: The maximum resident set size (KB) = 1597932 + +Test 034 control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8_lndp -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/control_p8_lndp -Checking test 027 control_p8_lndp results .... -Moving baseline 027 control_p8_lndp files .... - Moving sfcf000.nc .........OK - Moving sfcf021.nc .........OK - Moving sfcf024.nc .........OK - Moving sfcf048.nc .........OK - Moving atmf000.nc .........OK - Moving atmf021.nc .........OK - Moving atmf024.nc .........OK - Moving atmf048.nc .........OK - Moving GFSFLX.GrbF00 .........OK - Moving GFSFLX.GrbF21 .........OK - Moving GFSFLX.GrbF24 .........OK - Moving GFSFLX.GrbF48 .........OK - Moving GFSPRS.GrbF00 .........OK - Moving GFSPRS.GrbF21 .........OK - Moving GFSPRS.GrbF24 .........OK - Moving GFSPRS.GrbF48 .........OK - - 0: The total amount of wall time = 309.624764 - 0: The maximum resident set size (KB) = 1597488 - -Test 027 control_p8_lndp PASS +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/control_p8_lndp +Checking test 035 control_p8_lndp results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing sfcf048.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing atmf048.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSFLX.GrbF48 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing GFSPRS.GrbF48 .........OK + + 0: The total amount of wall time = 308.505093 + 0: The maximum resident set size (KB) = 1603580 + +Test 035 control_p8_lndp PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/control_restart_p8 +Checking test 036 control_restart_p8 results .... + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 87.075492 + 0: The maximum resident set size (KB) = 861096 + +Test 036 control_restart_p8 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/control_decomp_p8 +Checking test 037 control_decomp_p8 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 173.015182 + 0: The maximum resident set size (KB) = 1588480 + +Test 037 control_decomp_p8 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/control_2threads_p8 +Checking test 038 control_2threads_p8 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 163.630473 + 0: The maximum resident set size (KB) = 1689012 + +Test 038 control_2threads_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/control_p8_rrtmgp -Checking test 028 control_p8_rrtmgp results .... -Moving baseline 028 control_p8_rrtmgp files .... - Moving sfcf000.nc .........OK - Moving sfcf021.nc .........OK - Moving sfcf024.nc .........OK - Moving atmf000.nc .........OK - Moving atmf021.nc .........OK - Moving atmf024.nc .........OK - Moving GFSFLX.GrbF00 .........OK - Moving GFSFLX.GrbF21 .........OK - Moving GFSFLX.GrbF24 .........OK - Moving GFSPRS.GrbF00 .........OK - Moving GFSPRS.GrbF21 .........OK - Moving GFSPRS.GrbF24 .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 223.232030 - 0: The maximum resident set size (KB) = 1675192 - -Test 028 control_p8_rrtmgp PASS +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/control_p8_rrtmgp +Checking test 039 control_p8_rrtmgp results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 223.653462 + 0: The maximum resident set size (KB) = 1671964 + +Test 039 control_p8_rrtmgp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/merra2_thompson -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/merra2_thompson -Checking test 029 merra2_thompson results .... -Moving baseline 029 merra2_thompson files .... - Moving sfcf000.nc .........OK - Moving sfcf021.nc .........OK - Moving sfcf024.nc .........OK - Moving atmf000.nc .........OK - Moving atmf021.nc .........OK - Moving atmf024.nc .........OK - Moving GFSFLX.GrbF00 .........OK - Moving GFSFLX.GrbF21 .........OK - Moving GFSFLX.GrbF24 .........OK - Moving GFSPRS.GrbF00 .........OK - Moving GFSPRS.GrbF21 .........OK - Moving GFSPRS.GrbF24 .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 188.648400 - 0: The maximum resident set size (KB) = 1613540 - -Test 029 merra2_thompson PASS +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/merra2_thompson +Checking test 040 merra2_thompson results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 188.834021 + 0: The maximum resident set size (KB) = 1609660 + +Test 040 merra2_thompson PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/regional_control +Checking test 041 regional_control results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK + + 0: The total amount of wall time = 293.381963 + 0: The maximum resident set size (KB) = 863480 + +Test 041 regional_control PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/regional_restart +Checking test 042 regional_restart 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.020376 + 0: The maximum resident set size (KB) = 857880 + +Test 042 regional_restart PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/regional_decomp +Checking test 043 regional_decomp results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK + + 0: The total amount of wall time = 312.125824 + 0: The maximum resident set size (KB) = 853212 + +Test 043 regional_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/regional_control -Checking test 030 regional_control results .... -Moving baseline 030 regional_control files .... - Moving dynf000.nc .........OK - Moving dynf006.nc .........OK - Moving phyf000.nc .........OK - Moving phyf006.nc .........OK - Moving PRSLEV.GrbF00 .........OK - Moving PRSLEV.GrbF06 .........OK - Moving NATLEV.GrbF00 .........OK - Moving NATLEV.GrbF06 .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/regional_2threads +Checking test 044 regional_2threads results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 295.587594 - 0: The maximum resident set size (KB) = 862680 + 0: The total amount of wall time = 180.575704 + 0: The maximum resident set size (KB) = 839668 -Test 030 regional_control PASS +Test 044 regional_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_noquilt -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/regional_noquilt -Checking test 031 regional_noquilt results .... -Moving baseline 031 regional_noquilt files .... - Moving atmos_4xdaily.nc .........OK - Moving fv3_history2d.nc .........OK - Moving fv3_history.nc .........OK - Moving RESTART/fv_core.res.tile1_new.nc .........OK - Moving RESTART/fv_tracer.res.tile1_new.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/regional_noquilt +Checking test 045 regional_noquilt results .... + Comparing atmos_4xdaily.nc .........OK + Comparing fv3_history2d.nc .........OK + Comparing fv3_history.nc .........OK + Comparing RESTART/fv_core.res.tile1_new.nc .........OK + Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 323.155064 - 0: The maximum resident set size (KB) = 855816 + 0: The total amount of wall time = 322.510574 + 0: The maximum resident set size (KB) = 850432 -Test 031 regional_noquilt PASS +Test 045 regional_noquilt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/regional_netcdf_parallel -Checking test 032 regional_netcdf_parallel results .... -Moving baseline 032 regional_netcdf_parallel files .... - Moving dynf000.nc .........OK - Moving dynf006.nc .........OK - Moving phyf000.nc .........OK - Moving phyf006.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/regional_netcdf_parallel +Checking test 046 regional_netcdf_parallel results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK - 0: The total amount of wall time = 292.641874 - 0: The maximum resident set size (KB) = 853856 + 0: The total amount of wall time = 290.615941 + 0: The maximum resident set size (KB) = 855860 -Test 032 regional_netcdf_parallel PASS +Test 046 regional_netcdf_parallel PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/regional_2dwrtdecomp +Checking test 047 regional_2dwrtdecomp results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK + + 0: The total amount of wall time = 296.197909 + 0: The maximum resident set size (KB) = 868464 + +Test 047 regional_2dwrtdecomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/fv3_regional_wofs -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/regional_wofs -Checking test 033 regional_wofs results .... -Moving baseline 033 regional_wofs files .... - Moving dynf000.nc .........OK - Moving dynf006.nc .........OK - Moving phyf000.nc .........OK - Moving phyf006.nc .........OK - Moving PRSLEV.GrbF00 .........OK - Moving PRSLEV.GrbF06 .........OK - Moving NATLEV.GrbF00 .........OK - Moving NATLEV.GrbF06 .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/regional_wofs +Checking test 048 regional_wofs results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 373.990054 - 0: The maximum resident set size (KB) = 620732 + 0: The total amount of wall time = 374.185178 + 0: The maximum resident set size (KB) = 620468 -Test 033 regional_wofs PASS +Test 048 regional_wofs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/rap_control -Checking test 034 rap_control results .... -Moving baseline 034 rap_control files .... - Moving sfcf000.nc .........OK - Moving sfcf021.nc .........OK - Moving sfcf024.nc .........OK - Moving atmf000.nc .........OK - Moving atmf021.nc .........OK - Moving atmf024.nc .........OK - Moving GFSFLX.GrbF00 .........OK - Moving GFSFLX.GrbF21 .........OK - Moving GFSFLX.GrbF24 .........OK - Moving GFSPRS.GrbF00 .........OK - Moving GFSPRS.GrbF21 .........OK - Moving GFSPRS.GrbF24 .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 457.339667 - 0: The maximum resident set size (KB) = 1059144 - -Test 034 rap_control PASS +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/rap_control +Checking test 049 rap_control results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 456.852470 + 0: The maximum resident set size (KB) = 1053320 + +Test 049 rap_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_spp_sppt_shum_skeb -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/regional_spp_sppt_shum_skeb -Checking test 035 regional_spp_sppt_shum_skeb results .... -Moving baseline 035 regional_spp_sppt_shum_skeb files .... - Moving dynf000.nc .........OK - Moving dynf001.nc .........OK - Moving phyf000.nc .........OK - Moving phyf001.nc .........OK - Moving PRSLEV.GrbF00 .........OK - Moving PRSLEV.GrbF01 .........OK - Moving NATLEV.GrbF00 .........OK - Moving NATLEV.GrbF01 .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/regional_spp_sppt_shum_skeb +Checking test 050 regional_spp_sppt_shum_skeb results .... + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF01 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF01 .........OK + + 0: The total amount of wall time = 285.749508 + 0: The maximum resident set size (KB) = 1180304 + +Test 050 regional_spp_sppt_shum_skeb PASS + - 0: The total amount of wall time = 284.610477 - 0: The maximum resident set size (KB) = 1172216 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/rap_decomp +Checking test 051 rap_decomp results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 479.113100 + 0: The maximum resident set size (KB) = 1010808 + +Test 051 rap_decomp PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/rap_2threads +Checking test 052 rap_2threads results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 440.506845 + 0: The maximum resident set size (KB) = 1128844 + +Test 052 rap_2threads PASS -Test 035 regional_spp_sppt_shum_skeb PASS + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/rap_restart +Checking test 053 rap_restart results .... + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 231.443135 + 0: The maximum resident set size (KB) = 962148 + +Test 053 rap_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/rap_sfcdiff -Checking test 036 rap_sfcdiff results .... -Moving baseline 036 rap_sfcdiff files .... - Moving sfcf000.nc .........OK - Moving sfcf009.nc .........OK - Moving sfcf012.nc .........OK - Moving atmf000.nc .........OK - Moving atmf009.nc .........OK - Moving atmf012.nc .........OK - Moving GFSFLX.GrbF00 .........OK - Moving GFSFLX.GrbF09 .........OK - Moving GFSFLX.GrbF12 .........OK - Moving GFSPRS.GrbF00 .........OK - Moving GFSPRS.GrbF09 .........OK - Moving GFSPRS.GrbF12 .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 454.318971 - 0: The maximum resident set size (KB) = 1055556 - -Test 036 rap_sfcdiff PASS +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/rap_sfcdiff +Checking test 054 rap_sfcdiff 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/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 451.572192 + 0: The maximum resident set size (KB) = 1062008 + +Test 054 rap_sfcdiff PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/rap_sfcdiff_decomp +Checking test 055 rap_sfcdiff_decomp 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/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 477.366740 + 0: The maximum resident set size (KB) = 1006088 + +Test 055 rap_sfcdiff_decomp PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/rap_sfcdiff_restart +Checking test 056 rap_sfcdiff_restart results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 340.301725 + 0: The maximum resident set size (KB) = 981536 + +Test 056 rap_sfcdiff_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/hrrr_control -Checking test 037 hrrr_control results .... -Moving baseline 037 hrrr_control files .... - Moving sfcf000.nc .........OK - Moving sfcf009.nc .........OK - Moving sfcf012.nc .........OK - Moving atmf000.nc .........OK - Moving atmf009.nc .........OK - Moving atmf012.nc .........OK - Moving GFSFLX.GrbF00 .........OK - Moving GFSFLX.GrbF09 .........OK - Moving GFSFLX.GrbF12 .........OK - Moving GFSPRS.GrbF00 .........OK - Moving GFSPRS.GrbF09 .........OK - Moving GFSPRS.GrbF12 .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 436.787945 - 0: The maximum resident set size (KB) = 1054524 - -Test 037 hrrr_control PASS +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/hrrr_control +Checking test 057 hrrr_control 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/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 434.581253 + 0: The maximum resident set size (KB) = 1057520 + +Test 057 hrrr_control PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/hrrr_control_decomp +Checking test 058 hrrr_control_decomp 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/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 454.621079 + 0: The maximum resident set size (KB) = 1006756 + +Test 058 hrrr_control_decomp PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/hrrr_control_2threads +Checking test 059 hrrr_control_2threads 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/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 416.510133 + 0: The maximum resident set size (KB) = 1134092 + +Test 059 hrrr_control_2threads PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/hrrr_control_restart +Checking test 060 hrrr_control_restart results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 327.419022 + 0: The maximum resident set size (KB) = 980192 + +Test 060 hrrr_control_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/rrfs_v1beta -Checking test 038 rrfs_v1beta results .... -Moving baseline 038 rrfs_v1beta files .... - Moving sfcf000.nc .........OK - Moving sfcf009.nc .........OK - Moving sfcf012.nc .........OK - Moving atmf000.nc .........OK - Moving atmf009.nc .........OK - Moving atmf012.nc .........OK - Moving GFSFLX.GrbF00 .........OK - Moving GFSFLX.GrbF09 .........OK - Moving GFSFLX.GrbF12 .........OK - Moving GFSPRS.GrbF00 .........OK - Moving GFSPRS.GrbF09 .........OK - Moving GFSPRS.GrbF12 .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 447.688771 - 0: The maximum resident set size (KB) = 1053504 - -Test 038 rrfs_v1beta PASS +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/rrfs_v1beta +Checking test 061 rrfs_v1beta 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/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 445.671174 + 0: The maximum resident set size (KB) = 1057644 + +Test 061 rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_v1nssl -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/rrfs_v1nssl -Checking test 039 rrfs_v1nssl results .... -Moving baseline 039 rrfs_v1nssl files .... - Moving sfcf000.nc .........OK - Moving sfcf009.nc .........OK - Moving sfcf012.nc .........OK - Moving atmf000.nc .........OK - Moving atmf009.nc .........OK - Moving atmf012.nc .........OK - Moving GFSFLX.GrbF00 .........OK - Moving GFSFLX.GrbF09 .........OK - Moving GFSFLX.GrbF12 .........OK - Moving GFSPRS.GrbF00 .........OK - Moving GFSPRS.GrbF09 .........OK - Moving GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 525.421616 - 0: The maximum resident set size (KB) = 687376 - -Test 039 rrfs_v1nssl PASS +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/rrfs_v1nssl +Checking test 062 rrfs_v1nssl results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + + 0: The total amount of wall time = 526.000016 + 0: The maximum resident set size (KB) = 694712 + +Test 062 rrfs_v1nssl PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/rrfs_v1nssl_nohailnoccn -Checking test 040 rrfs_v1nssl_nohailnoccn results .... -Moving baseline 040 rrfs_v1nssl_nohailnoccn files .... - Moving sfcf000.nc .........OK - Moving sfcf009.nc .........OK - Moving sfcf012.nc .........OK - Moving atmf000.nc .........OK - Moving atmf009.nc .........OK - Moving atmf012.nc .........OK - Moving GFSFLX.GrbF00 .........OK - Moving GFSFLX.GrbF09 .........OK - Moving GFSFLX.GrbF12 .........OK - Moving GFSPRS.GrbF00 .........OK - Moving GFSPRS.GrbF09 .........OK - Moving GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 512.218186 - 0: The maximum resident set size (KB) = 760456 - -Test 040 rrfs_v1nssl_nohailnoccn PASS +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/rrfs_v1nssl_nohailnoccn +Checking test 063 rrfs_v1nssl_nohailnoccn results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + + 0: The total amount of wall time = 513.455743 + 0: The maximum resident set size (KB) = 753344 + +Test 063 rrfs_v1nssl_nohailnoccn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/rrfs_conus13km_hrrr_warm -Checking test 041 rrfs_conus13km_hrrr_warm results .... -Moving baseline 041 rrfs_conus13km_hrrr_warm files .... - Moving sfcf000.nc .........OK - Moving sfcf001.nc .........OK - Moving sfcf002.nc .........OK - Moving atmf000.nc .........OK - Moving atmf001.nc .........OK - Moving atmf002.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/rrfs_conus13km_hrrr_warm +Checking test 064 rrfs_conus13km_hrrr_warm 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 - 0: The total amount of wall time = 123.991220 - 0: The maximum resident set size (KB) = 934212 + 0: The total amount of wall time = 122.804989 + 0: The maximum resident set size (KB) = 934292 -Test 041 rrfs_conus13km_hrrr_warm PASS +Test 064 rrfs_conus13km_hrrr_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/rrfs_smoke_conus13km_hrrr_warm -Checking test 042 rrfs_smoke_conus13km_hrrr_warm results .... -Moving baseline 042 rrfs_smoke_conus13km_hrrr_warm files .... - Moving sfcf000.nc .........OK - Moving sfcf001.nc .........OK - Moving sfcf002.nc .........OK - Moving atmf000.nc .........OK - Moving atmf001.nc .........OK - Moving atmf002.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/rrfs_smoke_conus13km_hrrr_warm +Checking test 065 rrfs_smoke_conus13km_hrrr_warm 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 - 0: The total amount of wall time = 139.788220 - 0: The maximum resident set size (KB) = 954312 + 0: The total amount of wall time = 138.842300 + 0: The maximum resident set size (KB) = 956356 -Test 042 rrfs_smoke_conus13km_hrrr_warm PASS +Test 065 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/rrfs_conus13km_radar_tten_warm -Checking test 043 rrfs_conus13km_radar_tten_warm results .... -Moving baseline 043 rrfs_conus13km_radar_tten_warm files .... - Moving sfcf000.nc .........OK - Moving sfcf001.nc .........OK - Moving sfcf002.nc .........OK - Moving atmf000.nc .........OK - Moving atmf001.nc .........OK - Moving atmf002.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/rrfs_conus13km_radar_tten_warm +Checking test 066 rrfs_conus13km_radar_tten_warm 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 - 0: The total amount of wall time = 125.717354 - 0: The maximum resident set size (KB) = 935936 + 0: The total amount of wall time = 123.163804 + 0: The maximum resident set size (KB) = 936232 + +Test 066 rrfs_conus13km_radar_tten_warm PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/rrfs_conus13km_hrrr_warm_2threads +Checking test 067 rrfs_conus13km_hrrr_warm_2threads 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 -Test 043 rrfs_conus13km_radar_tten_warm PASS + 0: The total amount of wall time = 77.105538 + 0: The maximum resident set size (KB) = 879152 + +Test 067 rrfs_conus13km_hrrr_warm_2threads PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/rrfs_conus13km_radar_tten_warm_2threads +Checking test 068 rrfs_conus13km_radar_tten_warm_2threads 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 + + 0: The total amount of wall time = 77.975388 + 0: The maximum resident set size (KB) = 845988 + +Test 068 rrfs_conus13km_radar_tten_warm_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_csawmg -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/control_csawmg -Checking test 044 control_csawmg results .... -Moving baseline 044 control_csawmg files .... - Moving sfcf000.nc .........OK - Moving sfcf024.nc .........OK - Moving atmf000.nc .........OK - Moving atmf024.nc .........OK - Moving GFSFLX.GrbF00 .........OK - Moving GFSFLX.GrbF24 .........OK - Moving GFSPRS.GrbF00 .........OK - Moving GFSPRS.GrbF24 .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/control_csawmg +Checking test 069 control_csawmg results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 342.884097 - 0: The maximum resident set size (KB) = 728132 + 0: The total amount of wall time = 341.196117 + 0: The maximum resident set size (KB) = 719884 -Test 044 control_csawmg PASS +Test 069 control_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_csawmgt -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/control_csawmgt -Checking test 045 control_csawmgt results .... -Moving baseline 045 control_csawmgt files .... - Moving sfcf000.nc .........OK - Moving sfcf024.nc .........OK - Moving atmf000.nc .........OK - Moving atmf024.nc .........OK - Moving GFSFLX.GrbF00 .........OK - Moving GFSFLX.GrbF24 .........OK - Moving GFSPRS.GrbF00 .........OK - Moving GFSPRS.GrbF24 .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/control_csawmgt +Checking test 070 control_csawmgt results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 339.726192 - 0: The maximum resident set size (KB) = 717796 + 0: The total amount of wall time = 334.678611 + 0: The maximum resident set size (KB) = 723828 -Test 045 control_csawmgt PASS +Test 070 control_csawmgt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_ras -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/control_ras -Checking test 046 control_ras results .... -Moving baseline 046 control_ras files .... - Moving sfcf000.nc .........OK - Moving sfcf024.nc .........OK - Moving atmf000.nc .........OK - Moving atmf024.nc .........OK - Moving GFSFLX.GrbF00 .........OK - Moving GFSFLX.GrbF24 .........OK - Moving GFSPRS.GrbF00 .........OK - Moving GFSPRS.GrbF24 .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/control_ras +Checking test 071 control_ras results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 178.083609 - 0: The maximum resident set size (KB) = 716056 + 0: The total amount of wall time = 177.506851 + 0: The maximum resident set size (KB) = 714972 -Test 046 control_ras PASS +Test 071 control_ras PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_wam -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/control_wam -Checking test 047 control_wam results .... -Moving baseline 047 control_wam files .... - Moving sfcf024.nc .........OK - Moving atmf024.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/control_wam +Checking test 072 control_wam results .... + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK - 0: The total amount of wall time = 110.919564 - 0: The maximum resident set size (KB) = 637168 + 0: The total amount of wall time = 111.114418 + 0: The maximum resident set size (KB) = 637400 -Test 047 control_wam PASS +Test 072 control_wam PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/rrfs_conus13km_hrrr_warm_debug -Checking test 048 rrfs_conus13km_hrrr_warm_debug results .... -Moving baseline 048 rrfs_conus13km_hrrr_warm_debug files .... - Moving sfcf000.nc .........OK - Moving sfcf001.nc .........OK - Moving atmf000.nc .........OK - Moving atmf001.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/rrfs_conus13km_hrrr_warm_debug +Checking test 073 rrfs_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 730.165690 - 0: The maximum resident set size (KB) = 949636 + 0: The total amount of wall time = 728.693837 + 0: The maximum resident set size (KB) = 954504 -Test 048 rrfs_conus13km_hrrr_warm_debug PASS +Test 073 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/rrfs_conus13km_radar_tten_warm_debug -Checking test 049 rrfs_conus13km_radar_tten_warm_debug results .... -Moving baseline 049 rrfs_conus13km_radar_tten_warm_debug files .... - Moving sfcf000.nc .........OK - Moving sfcf001.nc .........OK - Moving atmf000.nc .........OK - Moving atmf001.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/rrfs_conus13km_radar_tten_warm_debug +Checking test 074 rrfs_conus13km_radar_tten_warm_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 746.110118 - 0: The maximum resident set size (KB) = 961140 + 0: The total amount of wall time = 726.739482 + 0: The maximum resident set size (KB) = 963276 -Test 049 rrfs_conus13km_radar_tten_warm_debug PASS +Test 074 rrfs_conus13km_radar_tten_warm_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_CubedSphereGrid_debug -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/control_CubedSphereGrid_debug -Checking test 050 control_CubedSphereGrid_debug results .... -Moving baseline 050 control_CubedSphereGrid_debug files .... - Moving sfcf000.tile1.nc .........OK - Moving sfcf000.tile2.nc .........OK - Moving sfcf000.tile3.nc .........OK - Moving sfcf000.tile4.nc .........OK - Moving sfcf000.tile5.nc .........OK - Moving sfcf000.tile6.nc .........OK - Moving sfcf001.tile1.nc .........OK - Moving sfcf001.tile2.nc .........OK - Moving sfcf001.tile3.nc .........OK - Moving sfcf001.tile4.nc .........OK - Moving sfcf001.tile5.nc .........OK - Moving sfcf001.tile6.nc .........OK - Moving atmf000.tile1.nc .........OK - Moving atmf000.tile2.nc .........OK - Moving atmf000.tile3.nc .........OK - Moving atmf000.tile4.nc .........OK - Moving atmf000.tile5.nc .........OK - Moving atmf000.tile6.nc .........OK - Moving atmf001.tile1.nc .........OK - Moving atmf001.tile2.nc .........OK - Moving atmf001.tile3.nc .........OK - Moving atmf001.tile4.nc .........OK - Moving atmf001.tile5.nc .........OK - Moving atmf001.tile6.nc .........OK - - 0: The total amount of wall time = 164.289713 - 0: The maximum resident set size (KB) = 800132 - -Test 050 control_CubedSphereGrid_debug PASS +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/control_CubedSphereGrid_debug +Checking test 075 control_CubedSphereGrid_debug results .... + Comparing sfcf000.tile1.nc .........OK + Comparing sfcf000.tile2.nc .........OK + Comparing sfcf000.tile3.nc .........OK + Comparing sfcf000.tile4.nc .........OK + Comparing sfcf000.tile5.nc .........OK + Comparing sfcf000.tile6.nc .........OK + Comparing sfcf001.tile1.nc .........OK + Comparing sfcf001.tile2.nc .........OK + Comparing sfcf001.tile3.nc .........OK + Comparing sfcf001.tile4.nc .........OK + Comparing sfcf001.tile5.nc .........OK + Comparing sfcf001.tile6.nc .........OK + Comparing atmf000.tile1.nc .........OK + Comparing atmf000.tile2.nc .........OK + Comparing atmf000.tile3.nc .........OK + Comparing atmf000.tile4.nc .........OK + Comparing atmf000.tile5.nc .........OK + Comparing atmf000.tile6.nc .........OK + Comparing atmf001.tile1.nc .........OK + Comparing atmf001.tile2.nc .........OK + Comparing atmf001.tile3.nc .........OK + Comparing atmf001.tile4.nc .........OK + Comparing atmf001.tile5.nc .........OK + Comparing atmf001.tile6.nc .........OK + + 0: The total amount of wall time = 157.517239 + 0: The maximum resident set size (KB) = 794548 + +Test 075 control_CubedSphereGrid_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/control_wrtGauss_netcdf_parallel_debug -Checking test 051 control_wrtGauss_netcdf_parallel_debug results .... -Moving baseline 051 control_wrtGauss_netcdf_parallel_debug files .... - Moving sfcf000.nc .........OK - Moving sfcf001.nc .........OK - Moving atmf000.nc .........OK - Moving atmf001.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/control_wrtGauss_netcdf_parallel_debug +Checking test 076 control_wrtGauss_netcdf_parallel_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 150.983440 - 0: The maximum resident set size (KB) = 791776 + 0: The total amount of wall time = 149.171765 + 0: The maximum resident set size (KB) = 793384 -Test 051 control_wrtGauss_netcdf_parallel_debug PASS +Test 076 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/control_stochy_debug -Checking test 052 control_stochy_debug results .... -Moving baseline 052 control_stochy_debug files .... - Moving sfcf000.nc .........OK - Moving sfcf001.nc .........OK - Moving atmf000.nc .........OK - Moving atmf001.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/control_stochy_debug +Checking test 077 control_stochy_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 174.920973 - 0: The maximum resident set size (KB) = 802492 + 0: The total amount of wall time = 172.584292 + 0: The maximum resident set size (KB) = 800128 -Test 052 control_stochy_debug PASS +Test 077 control_stochy_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/control_lndp_debug -Checking test 053 control_lndp_debug results .... -Moving baseline 053 control_lndp_debug files .... - Moving sfcf000.nc .........OK - Moving sfcf001.nc .........OK - Moving atmf000.nc .........OK - Moving atmf001.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/control_lndp_debug +Checking test 078 control_lndp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 151.123020 - 0: The maximum resident set size (KB) = 796636 + 0: The total amount of wall time = 153.074929 + 0: The maximum resident set size (KB) = 796056 -Test 053 control_lndp_debug PASS +Test 078 control_lndp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_csawmg_debug -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/control_csawmg_debug -Checking test 054 control_csawmg_debug results .... -Moving baseline 054 control_csawmg_debug files .... - Moving sfcf000.nc .........OK - Moving sfcf001.nc .........OK - Moving atmf000.nc .........OK - Moving atmf001.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/control_csawmg_debug +Checking test 079 control_csawmg_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 232.000483 - 0: The maximum resident set size (KB) = 837316 + 0: The total amount of wall time = 230.528887 + 0: The maximum resident set size (KB) = 839184 -Test 054 control_csawmg_debug PASS +Test 079 control_csawmg_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_csawmgt_debug -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/control_csawmgt_debug -Checking test 055 control_csawmgt_debug results .... -Moving baseline 055 control_csawmgt_debug files .... - Moving sfcf000.nc .........OK - Moving sfcf001.nc .........OK - Moving atmf000.nc .........OK - Moving atmf001.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/control_csawmgt_debug +Checking test 080 control_csawmgt_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 231.327942 - 0: The maximum resident set size (KB) = 843212 + 0: The total amount of wall time = 227.757192 + 0: The maximum resident set size (KB) = 844644 -Test 055 control_csawmgt_debug PASS +Test 080 control_csawmgt_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/control_ras_debug -Checking test 056 control_ras_debug results .... -Moving baseline 056 control_ras_debug files .... - Moving sfcf000.nc .........OK - Moving sfcf001.nc .........OK - Moving atmf000.nc .........OK - Moving atmf001.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/control_ras_debug +Checking test 081 control_ras_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 162.100040 - 0: The maximum resident set size (KB) = 803116 + 0: The total amount of wall time = 151.647990 + 0: The maximum resident set size (KB) = 804280 -Test 056 control_ras_debug PASS +Test 081 control_ras_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/control_diag_debug -Checking test 057 control_diag_debug results .... -Moving baseline 057 control_diag_debug files .... - Moving sfcf000.nc .........OK - Moving sfcf001.nc .........OK - Moving atmf000.nc .........OK - Moving atmf001.nc .........OK - - 0: The total amount of wall time = 161.556230 - 0: The maximum resident set size (KB) = 853212 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/control_diag_debug +Checking test 082 control_diag_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 157.947678 + 0: The maximum resident set size (KB) = 856284 -Test 057 control_diag_debug PASS +Test 082 control_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/control_debug_p8 -Checking test 058 control_debug_p8 results .... -Moving baseline 058 control_debug_p8 files .... - Moving sfcf000.nc .........OK - Moving sfcf001.nc .........OK - Moving atmf000.nc .........OK - Moving atmf001.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/control_debug_p8 +Checking test 083 control_debug_p8 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 182.770080 - 0: The maximum resident set size (KB) = 1629104 + 0: The total amount of wall time = 171.272595 + 0: The maximum resident set size (KB) = 1618268 -Test 058 control_debug_p8 PASS +Test 083 control_debug_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/regional_debug -Checking test 059 regional_debug results .... -Moving baseline 059 regional_debug files .... - Moving dynf000.nc .........OK - Moving dynf001.nc .........OK - Moving phyf000.nc .........OK - Moving phyf001.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/regional_debug +Checking test 084 regional_debug results .... + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK - 0: The total amount of wall time = 985.086450 - 0: The maximum resident set size (KB) = 877960 + 0: The total amount of wall time = 954.767744 + 0: The maximum resident set size (KB) = 883140 -Test 059 regional_debug PASS +Test 084 regional_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/rap_control_debug -Checking test 060 rap_control_debug results .... -Moving baseline 060 rap_control_debug files .... - Moving sfcf000.nc .........OK - Moving sfcf001.nc .........OK - Moving atmf000.nc .........OK - Moving atmf001.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/rap_control_debug +Checking test 085 rap_control_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.260875 - 0: The maximum resident set size (KB) = 1171628 + 0: The total amount of wall time = 274.001564 + 0: The maximum resident set size (KB) = 1179212 -Test 060 rap_control_debug PASS +Test 085 rap_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/hrrr_control_debug -Checking test 061 hrrr_control_debug results .... -Moving baseline 061 hrrr_control_debug files .... - Moving sfcf000.nc .........OK - Moving sfcf001.nc .........OK - Moving atmf000.nc .........OK - Moving atmf001.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/hrrr_control_debug +Checking test 086 hrrr_control_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 272.447129 - 0: The maximum resident set size (KB) = 1167088 + 0: The total amount of wall time = 266.756990 + 0: The maximum resident set size (KB) = 1171360 -Test 061 hrrr_control_debug PASS +Test 086 hrrr_control_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/rap_unified_drag_suite_debug +Checking test 087 rap_unified_drag_suite_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 274.822318 + 0: The maximum resident set size (KB) = 1178248 + +Test 087 rap_unified_drag_suite_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/rap_diag_debug -Checking test 062 rap_diag_debug results .... -Moving baseline 062 rap_diag_debug files .... - Moving sfcf000.nc .........OK - Moving sfcf001.nc .........OK - Moving atmf000.nc .........OK - Moving atmf001.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/rap_diag_debug +Checking test 088 rap_diag_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 291.648170 - 0: The maximum resident set size (KB) = 1257656 + 0: The total amount of wall time = 289.721049 + 0: The maximum resident set size (KB) = 1263148 -Test 062 rap_diag_debug PASS +Test 088 rap_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/rap_cires_ugwp_debug -Checking test 063 rap_cires_ugwp_debug results .... -Moving baseline 063 rap_cires_ugwp_debug files .... - Moving sfcf000.nc .........OK - Moving sfcf001.nc .........OK - Moving atmf000.nc .........OK - Moving atmf001.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/rap_cires_ugwp_debug +Checking test 089 rap_cires_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 284.410409 + 0: The maximum resident set size (KB) = 1169984 - 0: The total amount of wall time = 281.347095 - 0: The maximum resident set size (KB) = 1175180 +Test 089 rap_cires_ugwp_debug PASS -Test 063 rap_cires_ugwp_debug PASS + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/rap_unified_ugwp_debug +Checking test 090 rap_unified_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 271.782319 + 0: The maximum resident set size (KB) = 1176240 + +Test 090 rap_unified_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/rap_lndp_debug -Checking test 064 rap_lndp_debug results .... -Moving baseline 064 rap_lndp_debug files .... - Moving sfcf000.nc .........OK - Moving sfcf001.nc .........OK - Moving atmf000.nc .........OK - Moving atmf001.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/rap_lndp_debug +Checking test 091 rap_lndp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.780815 - 0: The maximum resident set size (KB) = 1174712 + 0: The total amount of wall time = 273.853341 + 0: The maximum resident set size (KB) = 1174868 -Test 064 rap_lndp_debug PASS +Test 091 rap_lndp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_flake_debug -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/rap_flake_debug -Checking test 065 rap_flake_debug results .... -Moving baseline 065 rap_flake_debug files .... - Moving sfcf000.nc .........OK - Moving sfcf001.nc .........OK - Moving atmf000.nc .........OK - Moving atmf001.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/rap_flake_debug +Checking test 092 rap_flake_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.390571 - 0: The maximum resident set size (KB) = 1174476 + 0: The total amount of wall time = 274.880372 + 0: The maximum resident set size (KB) = 1182740 -Test 065 rap_flake_debug PASS +Test 092 rap_flake_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/rap_progcld_thompson_debug -Checking test 066 rap_progcld_thompson_debug results .... -Moving baseline 066 rap_progcld_thompson_debug files .... - Moving sfcf000.nc .........OK - Moving sfcf001.nc .........OK - Moving atmf000.nc .........OK - Moving atmf001.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/rap_progcld_thompson_debug +Checking test 093 rap_progcld_thompson_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.542215 - 0: The maximum resident set size (KB) = 1170084 + 0: The total amount of wall time = 274.527317 + 0: The maximum resident set size (KB) = 1172396 -Test 066 rap_progcld_thompson_debug PASS +Test 093 rap_progcld_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_noah_debug -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/rap_noah_debug -Checking test 067 rap_noah_debug results .... -Moving baseline 067 rap_noah_debug files .... - Moving sfcf000.nc .........OK - Moving sfcf001.nc .........OK - Moving atmf000.nc .........OK - Moving atmf001.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/rap_noah_debug +Checking test 094 rap_noah_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 267.220408 - 0: The maximum resident set size (KB) = 1174420 + 0: The total amount of wall time = 273.156848 + 0: The maximum resident set size (KB) = 1177936 -Test 067 rap_noah_debug PASS +Test 094 rap_noah_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_sfcdiff_debug -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/rap_sfcdiff_debug -Checking test 068 rap_sfcdiff_debug results .... -Moving baseline 068 rap_sfcdiff_debug files .... - Moving sfcf000.nc .........OK - Moving sfcf001.nc .........OK - Moving atmf000.nc .........OK - Moving atmf001.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/rap_sfcdiff_debug +Checking test 095 rap_sfcdiff_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.426307 - 0: The maximum resident set size (KB) = 1172744 + 0: The total amount of wall time = 276.798703 + 0: The maximum resident set size (KB) = 1174656 -Test 068 rap_sfcdiff_debug PASS +Test 095 rap_sfcdiff_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 069 rap_noah_sfcdiff_cires_ugwp_debug results .... -Moving baseline 069 rap_noah_sfcdiff_cires_ugwp_debug files .... - Moving sfcf000.nc .........OK - Moving sfcf001.nc .........OK - Moving atmf000.nc .........OK - Moving atmf001.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 096 rap_noah_sfcdiff_cires_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 448.906802 - 0: The maximum resident set size (KB) = 1177132 + 0: The total amount of wall time = 450.546524 + 0: The maximum resident set size (KB) = 1176936 -Test 069 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 096 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/rrfs_v1beta_debug -Checking test 070 rrfs_v1beta_debug results .... -Moving baseline 070 rrfs_v1beta_debug files .... - Moving sfcf000.nc .........OK - Moving sfcf001.nc .........OK - Moving atmf000.nc .........OK - Moving atmf001.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/rrfs_v1beta_debug +Checking test 097 rrfs_v1beta_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.341803 - 0: The maximum resident set size (KB) = 1170944 + 0: The total amount of wall time = 266.781577 + 0: The maximum resident set size (KB) = 1173736 -Test 070 rrfs_v1beta_debug PASS +Test 097 rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/control_wam_debug -Checking test 071 control_wam_debug results .... -Moving baseline 071 control_wam_debug files .... - Moving sfcf019.nc .........OK - Moving atmf019.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/control_wam_debug +Checking test 098 control_wam_debug results .... + Comparing sfcf019.nc .........OK + Comparing atmf019.nc .........OK - 0: The total amount of wall time = 278.311161 - 0: The maximum resident set size (KB) = 511700 + 0: The total amount of wall time = 277.498446 + 0: The maximum resident set size (KB) = 510416 -Test 071 control_wam_debug PASS +Test 098 control_wam_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/regional_spp_sppt_shum_skeb_dyn32_phy32 -Checking test 072 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... -Moving baseline 072 regional_spp_sppt_shum_skeb_dyn32_phy32 files .... - Moving dynf000.nc .........OK - Moving dynf001.nc .........OK - Moving phyf000.nc .........OK - Moving phyf001.nc .........OK - Moving PRSLEV.GrbF00 .........OK - Moving PRSLEV.GrbF01 .........OK - Moving NATLEV.GrbF00 .........OK - Moving NATLEV.GrbF01 .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 099 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF01 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF01 .........OK + + 0: The total amount of wall time = 258.532897 + 0: The maximum resident set size (KB) = 1069832 + +Test 099 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/rap_control_dyn32_phy32 +Checking test 100 rap_control_dyn32_phy32 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/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 368.606220 + 0: The maximum resident set size (KB) = 1004108 + +Test 100 rap_control_dyn32_phy32 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/hrrr_control_dyn32_phy32 +Checking test 101 hrrr_control_dyn32_phy32 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/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 191.377374 + 0: The maximum resident set size (KB) = 961192 + +Test 101 hrrr_control_dyn32_phy32 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/rap_2threads_dyn32_phy32 +Checking test 102 rap_2threads_dyn32_phy32 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/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 358.012889 + 0: The maximum resident set size (KB) = 1020264 + +Test 102 rap_2threads_dyn32_phy32 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/hrrr_control_2threads_dyn32_phy32 +Checking test 103 hrrr_control_2threads_dyn32_phy32 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/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 187.889429 + 0: The maximum resident set size (KB) = 1006460 + +Test 103 hrrr_control_2threads_dyn32_phy32 PASS - 0: The total amount of wall time = 260.409213 - 0: The maximum resident set size (KB) = 1066256 -Test 072 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/hrrr_control_decomp_dyn32_phy32 +Checking test 104 hrrr_control_decomp_dyn32_phy32 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/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 202.341888 + 0: The maximum resident set size (KB) = 896660 + +Test 104 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/rap_control_dyn32_phy32 -Checking test 073 rap_control_dyn32_phy32 results .... -Moving baseline 073 rap_control_dyn32_phy32 files .... - Moving sfcf000.nc .........OK - Moving sfcf009.nc .........OK - Moving sfcf012.nc .........OK - Moving atmf000.nc .........OK - Moving atmf009.nc .........OK - Moving atmf012.nc .........OK - Moving GFSFLX.GrbF00 .........OK - Moving GFSFLX.GrbF09 .........OK - Moving GFSFLX.GrbF12 .........OK - Moving GFSPRS.GrbF00 .........OK - Moving GFSPRS.GrbF09 .........OK - Moving GFSPRS.GrbF12 .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 370.247303 - 0: The maximum resident set size (KB) = 998468 - -Test 073 rap_control_dyn32_phy32 PASS +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/rap_restart_dyn32_phy32 +Checking test 105 rap_restart_dyn32_phy32 results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 280.209083 + 0: The maximum resident set size (KB) = 944352 + +Test 105 rap_restart_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/hrrr_control_dyn32_phy32 -Checking test 074 hrrr_control_dyn32_phy32 results .... -Moving baseline 074 hrrr_control_dyn32_phy32 files .... - Moving sfcf000.nc .........OK - Moving sfcf009.nc .........OK - Moving sfcf012.nc .........OK - Moving atmf000.nc .........OK - Moving atmf009.nc .........OK - Moving atmf012.nc .........OK - Moving GFSFLX.GrbF00 .........OK - Moving GFSFLX.GrbF09 .........OK - Moving GFSFLX.GrbF12 .........OK - Moving GFSPRS.GrbF00 .........OK - Moving GFSPRS.GrbF09 .........OK - Moving GFSPRS.GrbF12 .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 192.179255 - 0: The maximum resident set size (KB) = 955668 - -Test 074 hrrr_control_dyn32_phy32 PASS +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/hrrr_control_restart_dyn32_phy32 +Checking test 106 hrrr_control_restart_dyn32_phy32 results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 99.833581 + 0: The maximum resident set size (KB) = 866948 + +Test 106 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/rap_control_dyn64_phy32 -Checking test 075 rap_control_dyn64_phy32 results .... -Moving baseline 075 rap_control_dyn64_phy32 files .... - Moving sfcf000.nc .........OK - Moving sfcf009.nc .........OK - Moving sfcf012.nc .........OK - Moving atmf000.nc .........OK - Moving atmf009.nc .........OK - Moving atmf012.nc .........OK - Moving GFSFLX.GrbF00 .........OK - Moving GFSFLX.GrbF09 .........OK - Moving GFSFLX.GrbF12 .........OK - Moving GFSPRS.GrbF00 .........OK - Moving GFSPRS.GrbF09 .........OK - Moving GFSPRS.GrbF12 .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 238.083402 - 0: The maximum resident set size (KB) = 961748 - -Test 075 rap_control_dyn64_phy32 PASS +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/rap_control_dyn64_phy32 +Checking test 107 rap_control_dyn64_phy32 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/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 239.541643 + 0: The maximum resident set size (KB) = 971272 + +Test 107 rap_control_dyn64_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/rap_control_debug_dyn32_phy32 -Checking test 076 rap_control_debug_dyn32_phy32 results .... -Moving baseline 076 rap_control_debug_dyn32_phy32 files .... - Moving sfcf000.nc .........OK - Moving sfcf001.nc .........OK - Moving atmf000.nc .........OK - Moving atmf001.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/rap_control_debug_dyn32_phy32 +Checking test 108 rap_control_debug_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.242767 - 0: The maximum resident set size (KB) = 1064092 + 0: The total amount of wall time = 268.243972 + 0: The maximum resident set size (KB) = 1065664 -Test 076 rap_control_debug_dyn32_phy32 PASS +Test 108 rap_control_debug_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/hrrr_control_debug_dyn32_phy32 -Checking test 077 hrrr_control_debug_dyn32_phy32 results .... -Moving baseline 077 hrrr_control_debug_dyn32_phy32 files .... - Moving sfcf000.nc .........OK - Moving sfcf001.nc .........OK - Moving atmf000.nc .........OK - Moving atmf001.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/hrrr_control_debug_dyn32_phy32 +Checking test 109 hrrr_control_debug_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 269.518275 - 0: The maximum resident set size (KB) = 1061364 + 0: The total amount of wall time = 262.783894 + 0: The maximum resident set size (KB) = 1058396 -Test 077 hrrr_control_debug_dyn32_phy32 PASS +Test 109 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/rap_control_dyn64_phy32_debug -Checking test 078 rap_control_dyn64_phy32_debug results .... -Moving baseline 078 rap_control_dyn64_phy32_debug files .... - Moving sfcf000.nc .........OK - Moving sfcf001.nc .........OK - Moving atmf000.nc .........OK - Moving atmf001.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/rap_control_dyn64_phy32_debug +Checking test 110 rap_control_dyn64_phy32_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.849599 - 0: The maximum resident set size (KB) = 1107900 + 0: The total amount of wall time = 277.763341 + 0: The maximum resident set size (KB) = 1104728 -Test 078 rap_control_dyn64_phy32_debug PASS +Test 110 rap_control_dyn64_phy32_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_atm -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/hafs_regional_atm -Checking test 079 hafs_regional_atm results .... -Moving baseline 079 hafs_regional_atm files .... - Moving atmf006.nc .........OK - Moving sfcf006.nc .........OK - Moving HURPRS.GrbF06 .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/hafs_regional_atm +Checking test 111 hafs_regional_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 222.154566 - 0: The maximum resident set size (KB) = 1024140 + 0: The total amount of wall time = 221.057698 + 0: The maximum resident set size (KB) = 1027360 -Test 079 hafs_regional_atm PASS +Test 111 hafs_regional_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/hafs_regional_atm_thompson_gfdlsf -Checking test 080 hafs_regional_atm_thompson_gfdlsf results .... -Moving baseline 080 hafs_regional_atm_thompson_gfdlsf files .... - Moving atmf006.nc .........OK - Moving sfcf006.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/hafs_regional_atm_thompson_gfdlsf +Checking test 112 hafs_regional_atm_thompson_gfdlsf results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 308.358372 - 0: The maximum resident set size (KB) = 1397460 + 0: The total amount of wall time = 307.643807 + 0: The maximum resident set size (KB) = 1403208 -Test 080 hafs_regional_atm_thompson_gfdlsf PASS +Test 112 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/hafs_regional_atm_ocn -Checking test 081 hafs_regional_atm_ocn results .... -Moving baseline 081 hafs_regional_atm_ocn files .... - Moving atmf006.nc .........OK - Moving sfcf006.nc .........OK - Moving archv.2019_241_06.a .........OK - Moving archs.2019_241_06.a .........OK - Moving ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK - Moving ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/hafs_regional_atm_ocn +Checking test 113 hafs_regional_atm_ocn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing archv.2019_241_06.a .........OK + Comparing archs.2019_241_06.a .........OK + Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 359.415894 - 0: The maximum resident set size (KB) = 1197772 + 0: The total amount of wall time = 364.499185 + 0: The maximum resident set size (KB) = 1203728 -Test 081 hafs_regional_atm_ocn PASS +Test 113 hafs_regional_atm_ocn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_atm_wav -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/hafs_regional_atm_wav -Checking test 082 hafs_regional_atm_wav results .... -Moving baseline 082 hafs_regional_atm_wav files .... - Moving atmf006.nc .........OK - Moving sfcf006.nc .........OK - Moving out_grd.ww3 .........OK - Moving out_pnt.ww3 .........OK - Moving 20190829.060000.restart.ww3 .........OK - Moving ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/hafs_regional_atm_wav +Checking test 114 hafs_regional_atm_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing out_grd.ww3 .........OK + Comparing out_pnt.ww3 .........OK + Comparing 20190829.060000.restart.ww3 .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 722.564568 - 0: The maximum resident set size (KB) = 1228876 + 0: The total amount of wall time = 724.066498 + 0: The maximum resident set size (KB) = 1222324 -Test 082 hafs_regional_atm_wav PASS +Test 114 hafs_regional_atm_wav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/hafs_regional_atm_ocn_wav -Checking test 083 hafs_regional_atm_ocn_wav results .... -Moving baseline 083 hafs_regional_atm_ocn_wav files .... - Moving atmf006.nc .........OK - Moving sfcf006.nc .........OK - Moving archv.2019_241_06.a .........OK - Moving archs.2019_241_06.a .........OK - Moving out_grd.ww3 .........OK - Moving out_pnt.ww3 .........OK - Moving 20190829.060000.restart.ww3 .........OK - Moving ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/hafs_regional_atm_ocn_wav +Checking test 115 hafs_regional_atm_ocn_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing archv.2019_241_06.a .........OK + Comparing archs.2019_241_06.a .........OK + Comparing out_grd.ww3 .........OK + Comparing out_pnt.ww3 .........OK + Comparing 20190829.060000.restart.ww3 .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 823.111939 - 0: The maximum resident set size (KB) = 1247400 + 0: The total amount of wall time = 816.287392 + 0: The maximum resident set size (KB) = 1245792 -Test 083 hafs_regional_atm_ocn_wav PASS +Test 115 hafs_regional_atm_ocn_wav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/hafs_regional_1nest_atm -Checking test 084 hafs_regional_1nest_atm results .... -Moving baseline 084 hafs_regional_1nest_atm files .... - Moving atmf006.nc .........OK - Moving sfcf006.nc .........OK - Moving atm.nest02.f006.nc .........OK - Moving sfc.nest02.f006.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/hafs_regional_1nest_atm +Checking test 116 hafs_regional_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 320.198757 - 0: The maximum resident set size (KB) = 497824 + 0: The total amount of wall time = 316.564632 + 0: The maximum resident set size (KB) = 501092 -Test 084 hafs_regional_1nest_atm PASS +Test 116 hafs_regional_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/hafs_regional_telescopic_2nests_atm -Checking test 085 hafs_regional_telescopic_2nests_atm results .... -Moving baseline 085 hafs_regional_telescopic_2nests_atm files .... - Moving atmf006.nc .........OK - Moving sfcf006.nc .........OK - Moving atm.nest02.f006.nc .........OK - Moving sfc.nest02.f006.nc .........OK - Moving atm.nest03.f006.nc .........OK - Moving sfc.nest03.f006.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/hafs_regional_telescopic_2nests_atm +Checking test 117 hafs_regional_telescopic_2nests_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing atm.nest03.f006.nc .........OK + Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 359.615703 - 0: The maximum resident set size (KB) = 510528 + 0: The total amount of wall time = 362.901402 + 0: The maximum resident set size (KB) = 509028 -Test 085 hafs_regional_telescopic_2nests_atm PASS +Test 117 hafs_regional_telescopic_2nests_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_global_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/hafs_global_1nest_atm -Checking test 086 hafs_global_1nest_atm results .... -Moving baseline 086 hafs_global_1nest_atm files .... - Moving atmf006.nc .........OK - Moving sfcf006.nc .........OK - Moving atm.nest02.f006.nc .........OK - Moving sfc.nest02.f006.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/hafs_global_1nest_atm +Checking test 118 hafs_global_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 146.630989 - 0: The maximum resident set size (KB) = 345864 + 0: The total amount of wall time = 145.092444 + 0: The maximum resident set size (KB) = 342888 -Test 086 hafs_global_1nest_atm PASS +Test 118 hafs_global_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_global_multiple_4nests_atm -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/hafs_global_multiple_4nests_atm -Checking test 087 hafs_global_multiple_4nests_atm results .... -Moving baseline 087 hafs_global_multiple_4nests_atm files .... - Moving atmf006.nc .........OK - Moving sfcf006.nc .........OK - Moving atm.nest02.f006.nc .........OK - Moving sfc.nest02.f006.nc .........OK - Moving atm.nest03.f006.nc .........OK - Moving sfc.nest03.f006.nc .........OK - Moving atm.nest04.f006.nc .........OK - Moving sfc.nest04.f006.nc .........OK - Moving atm.nest05.f006.nc .........OK - Moving sfc.nest05.f006.nc .........OK - Moving HURPRS.GrbF06 .........OK - Moving HURPRS.GrbF06.nest02 .........OK - Moving HURPRS.GrbF06.nest03 .........OK - Moving HURPRS.GrbF06.nest04 .........OK - Moving HURPRS.GrbF06.nest05 .........OK - - 0: The total amount of wall time = 414.807260 - 0: The maximum resident set size (KB) = 417464 - -Test 087 hafs_global_multiple_4nests_atm PASS +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/hafs_global_multiple_4nests_atm +Checking test 119 hafs_global_multiple_4nests_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing atm.nest03.f006.nc .........OK + Comparing sfc.nest03.f006.nc .........OK + Comparing atm.nest04.f006.nc .........OK + Comparing sfc.nest04.f006.nc .........OK + Comparing atm.nest05.f006.nc .........OK + Comparing sfc.nest05.f006.nc .........OK + Comparing HURPRS.GrbF06 .........OK + Comparing HURPRS.GrbF06.nest02 .........OK + Comparing HURPRS.GrbF06.nest03 .........OK + Comparing HURPRS.GrbF06.nest04 .........OK + Comparing HURPRS.GrbF06.nest05 .........OK + + 0: The total amount of wall time = 415.296253 + 0: The maximum resident set size (KB) = 418112 + +Test 119 hafs_global_multiple_4nests_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/hafs_regional_specified_moving_1nest_atm -Checking test 088 hafs_regional_specified_moving_1nest_atm results .... -Moving baseline 088 hafs_regional_specified_moving_1nest_atm files .... - Moving atmf006.nc .........OK - Moving sfcf006.nc .........OK - Moving atm.nest02.f006.nc .........OK - Moving sfc.nest02.f006.nc .........OK - Moving HURPRS.GrbF06 .........OK - Moving HURPRS.GrbF06.nest02 .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/hafs_regional_specified_moving_1nest_atm +Checking test 120 hafs_regional_specified_moving_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing HURPRS.GrbF06 .........OK + Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 200.892526 - 0: The maximum resident set size (KB) = 512380 + 0: The total amount of wall time = 198.410304 + 0: The maximum resident set size (KB) = 510604 -Test 088 hafs_regional_specified_moving_1nest_atm PASS +Test 120 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/hafs_regional_storm_following_1nest_atm -Checking test 089 hafs_regional_storm_following_1nest_atm results .... -Moving baseline 089 hafs_regional_storm_following_1nest_atm files .... - Moving atmf006.nc .........OK - Moving sfcf006.nc .........OK - Moving atm.nest02.f006.nc .........OK - Moving sfc.nest02.f006.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/hafs_regional_storm_following_1nest_atm +Checking test 121 hafs_regional_storm_following_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 190.336849 - 0: The maximum resident set size (KB) = 516512 + 0: The total amount of wall time = 190.897991 + 0: The maximum resident set size (KB) = 508604 -Test 089 hafs_regional_storm_following_1nest_atm PASS +Test 121 hafs_regional_storm_following_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/hafs_regional_storm_following_1nest_atm_ocn -Checking test 090 hafs_regional_storm_following_1nest_atm_ocn results .... -Moving baseline 090 hafs_regional_storm_following_1nest_atm_ocn files .... - Moving atmf006.nc .........OK - Moving sfcf006.nc .........OK - Moving atm.nest02.f006.nc .........OK - Moving sfc.nest02.f006.nc .........OK - Moving archv.2020_238_18.a .........OK - Moving archs.2020_238_18.a .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/hafs_regional_storm_following_1nest_atm_ocn +Checking test 122 hafs_regional_storm_following_1nest_atm_ocn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing archv.2020_238_18.a .........OK + Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 217.248798 - 0: The maximum resident set size (KB) = 544952 + 0: The total amount of wall time = 219.852348 + 0: The maximum resident set size (KB) = 550960 -Test 090 hafs_regional_storm_following_1nest_atm_ocn PASS +Test 122 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_global_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/hafs_global_storm_following_1nest_atm -Checking test 091 hafs_global_storm_following_1nest_atm results .... -Moving baseline 091 hafs_global_storm_following_1nest_atm files .... - Moving atmf006.nc .........OK - Moving sfcf006.nc .........OK - Moving atm.nest02.f006.nc .........OK - Moving sfc.nest02.f006.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/hafs_global_storm_following_1nest_atm +Checking test 123 hafs_global_storm_following_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 57.971820 - 0: The maximum resident set size (KB) = 359400 + 0: The total amount of wall time = 59.988415 + 0: The maximum resident set size (KB) = 362592 -Test 091 hafs_global_storm_following_1nest_atm PASS +Test 123 hafs_global_storm_following_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/hafs_regional_storm_following_1nest_atm_ocn_debug -Checking test 092 hafs_regional_storm_following_1nest_atm_ocn_debug results .... -Moving baseline 092 hafs_regional_storm_following_1nest_atm_ocn_debug files .... - Moving atmf001.nc .........OK - Moving sfcf001.nc .........OK - Moving atm.nest02.f001.nc .........OK - Moving sfc.nest02.f001.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/hafs_regional_storm_following_1nest_atm_ocn_debug +Checking test 124 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 753.259229 - 0: The maximum resident set size (KB) = 567328 + 0: The total amount of wall time = 767.093481 + 0: The maximum resident set size (KB) = 587028 -Test 092 hafs_regional_storm_following_1nest_atm_ocn_debug PASS +Test 124 hafs_regional_storm_following_1nest_atm_ocn_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/hafs_regional_storm_following_1nest_atm_ocn_wav -Checking test 093 hafs_regional_storm_following_1nest_atm_ocn_wav results .... -Moving baseline 093 hafs_regional_storm_following_1nest_atm_ocn_wav files .... - Moving atmf006.nc .........OK - Moving sfcf006.nc .........OK - Moving atm.nest02.f006.nc .........OK - Moving sfc.nest02.f006.nc .........OK - Moving archv.2020_238_18.a .........OK - Moving archs.2020_238_18.a .........OK - Moving out_grd.ww3 .........OK - Moving out_pnt.ww3 .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 125 hafs_regional_storm_following_1nest_atm_ocn_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing archv.2020_238_18.a .........OK + Comparing archs.2020_238_18.a .........OK + Comparing out_grd.ww3 .........OK + Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 510.543113 - 0: The maximum resident set size (KB) = 618132 + 0: The total amount of wall time = 510.353697 + 0: The maximum resident set size (KB) = 615456 -Test 093 hafs_regional_storm_following_1nest_atm_ocn_wav PASS +Test 125 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_docn -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/hafs_regional_docn -Checking test 094 hafs_regional_docn results .... -Moving baseline 094 hafs_regional_docn files .... - Moving atmf006.nc .........OK - Moving sfcf006.nc .........OK - Moving ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK - Moving ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - Moving ufs.hafs.docn.r.2019-08-29-21600.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/hafs_regional_docn +Checking test 126 hafs_regional_docn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 339.208767 - 0: The maximum resident set size (KB) = 1206556 + 0: The total amount of wall time = 336.646722 + 0: The maximum resident set size (KB) = 1210192 -Test 094 hafs_regional_docn PASS +Test 126 hafs_regional_docn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_docn_oisst -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/hafs_regional_docn_oisst -Checking test 095 hafs_regional_docn_oisst results .... -Moving baseline 095 hafs_regional_docn_oisst files .... - Moving atmf006.nc .........OK - Moving sfcf006.nc .........OK - Moving ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK - Moving ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - Moving ufs.hafs.docn.r.2019-08-29-21600.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/hafs_regional_docn_oisst +Checking test 127 hafs_regional_docn_oisst results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 338.969877 - 0: The maximum resident set size (KB) = 1194204 + 0: The total amount of wall time = 337.863173 + 0: The maximum resident set size (KB) = 1191620 -Test 095 hafs_regional_docn_oisst PASS +Test 127 hafs_regional_docn_oisst PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_datm_cdeps -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/hafs_regional_datm_cdeps -Checking test 096 hafs_regional_datm_cdeps results .... -Moving baseline 096 hafs_regional_datm_cdeps files .... - Moving ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK - Moving ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK - Moving ufs.hafs.datm.r.2019-08-30-00000.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/hafs_regional_datm_cdeps +Checking test 128 hafs_regional_datm_cdeps results .... + Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK + Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK + Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK + + 0: The total amount of wall time = 918.724090 + 0: The maximum resident set size (KB) = 1038892 + +Test 128 hafs_regional_datm_cdeps PASS + - 0: The total amount of wall time = 954.134519 - 0: The maximum resident set size (KB) = 1035548 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/datm_cdeps_control_cfsr +Checking test 129 datm_cdeps_control_cfsr results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK + + 0: The total amount of wall time = 159.335663 + 0: The maximum resident set size (KB) = 1081968 -Test 096 hafs_regional_datm_cdeps PASS +Test 129 datm_cdeps_control_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/datm_cdeps_control_cfsr -Checking test 097 datm_cdeps_control_cfsr results .... -Moving baseline 097 datm_cdeps_control_cfsr files .... - Moving RESTART/MOM.res.nc .........OK - Moving RESTART/iced.2011-10-02-00000.nc .........OK - Moving RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/datm_cdeps_restart_cfsr +Checking test 130 datm_cdeps_restart_cfsr results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 153.995609 - 0: The maximum resident set size (KB) = 1054900 + 0: The total amount of wall time = 94.702780 + 0: The maximum resident set size (KB) = 1011212 -Test 097 datm_cdeps_control_cfsr PASS +Test 130 datm_cdeps_restart_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/datm_cdeps_control_gefs -Checking test 098 datm_cdeps_control_gefs results .... -Moving baseline 098 datm_cdeps_control_gefs files .... - Moving RESTART/MOM.res.nc .........OK - Moving RESTART/iced.2011-10-02-00000.nc .........OK - Moving RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/datm_cdeps_control_gefs +Checking test 131 datm_cdeps_control_gefs results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 149.024625 - 0: The maximum resident set size (KB) = 972276 + 0: The total amount of wall time = 152.087014 + 0: The maximum resident set size (KB) = 955888 -Test 098 datm_cdeps_control_gefs PASS +Test 131 datm_cdeps_control_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_iau_gefs -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/datm_cdeps_iau_gefs -Checking test 099 datm_cdeps_iau_gefs results .... -Moving baseline 099 datm_cdeps_iau_gefs files .... - Moving RESTART/MOM.res.nc .........OK - Moving RESTART/iced.2011-10-02-00000.nc .........OK - Moving RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/datm_cdeps_iau_gefs +Checking test 132 datm_cdeps_iau_gefs results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 149.687298 - 0: The maximum resident set size (KB) = 965584 + 0: The total amount of wall time = 148.478802 + 0: The maximum resident set size (KB) = 968584 -Test 099 datm_cdeps_iau_gefs PASS +Test 132 datm_cdeps_iau_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_stochy_gefs -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/datm_cdeps_stochy_gefs -Checking test 100 datm_cdeps_stochy_gefs results .... -Moving baseline 100 datm_cdeps_stochy_gefs files .... - Moving RESTART/MOM.res.nc .........OK - Moving RESTART/iced.2011-10-02-00000.nc .........OK - Moving RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/datm_cdeps_stochy_gefs +Checking test 133 datm_cdeps_stochy_gefs results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.921698 - 0: The maximum resident set size (KB) = 956352 + 0: The total amount of wall time = 153.325382 + 0: The maximum resident set size (KB) = 961628 -Test 100 datm_cdeps_stochy_gefs PASS +Test 133 datm_cdeps_stochy_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_ciceC_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/datm_cdeps_ciceC_cfsr -Checking test 101 datm_cdeps_ciceC_cfsr results .... -Moving baseline 101 datm_cdeps_ciceC_cfsr files .... - Moving RESTART/MOM.res.nc .........OK - Moving RESTART/iced.2011-10-02-00000.nc .........OK - Moving RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/datm_cdeps_ciceC_cfsr +Checking test 134 datm_cdeps_ciceC_cfsr results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 152.263788 - 0: The maximum resident set size (KB) = 1075556 + 0: The total amount of wall time = 154.935752 + 0: The maximum resident set size (KB) = 1068040 -Test 101 datm_cdeps_ciceC_cfsr PASS +Test 134 datm_cdeps_ciceC_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/datm_cdeps_bulk_cfsr -Checking test 102 datm_cdeps_bulk_cfsr results .... -Moving baseline 102 datm_cdeps_bulk_cfsr files .... - Moving RESTART/MOM.res.nc .........OK - Moving RESTART/iced.2011-10-02-00000.nc .........OK - Moving RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/datm_cdeps_bulk_cfsr +Checking test 135 datm_cdeps_bulk_cfsr results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 154.225722 - 0: The maximum resident set size (KB) = 1056448 + 0: The total amount of wall time = 162.217091 + 0: The maximum resident set size (KB) = 1058644 -Test 102 datm_cdeps_bulk_cfsr PASS +Test 135 datm_cdeps_bulk_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/datm_cdeps_bulk_gefs -Checking test 103 datm_cdeps_bulk_gefs results .... -Moving baseline 103 datm_cdeps_bulk_gefs files .... - Moving RESTART/MOM.res.nc .........OK - Moving RESTART/iced.2011-10-02-00000.nc .........OK - Moving RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/datm_cdeps_bulk_gefs +Checking test 136 datm_cdeps_bulk_gefs results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 147.452062 - 0: The maximum resident set size (KB) = 962944 + 0: The total amount of wall time = 154.055998 + 0: The maximum resident set size (KB) = 966924 -Test 103 datm_cdeps_bulk_gefs PASS +Test 136 datm_cdeps_bulk_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/datm_cdeps_mx025_cfsr -Checking test 104 datm_cdeps_mx025_cfsr results .... -Moving baseline 104 datm_cdeps_mx025_cfsr files .... - Moving RESTART/MOM.res.nc .........OK - Moving RESTART/MOM.res_1.nc .........OK - Moving RESTART/MOM.res_2.nc .........OK - Moving RESTART/MOM.res_3.nc .........OK - Moving RESTART/iced.2011-10-01-43200.nc .........OK - Moving RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/datm_cdeps_mx025_cfsr +Checking test 137 datm_cdeps_mx025_cfsr results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.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 = 407.017844 - 0: The maximum resident set size (KB) = 884572 + 0: The total amount of wall time = 400.648520 + 0: The maximum resident set size (KB) = 875752 -Test 104 datm_cdeps_mx025_cfsr PASS +Test 137 datm_cdeps_mx025_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/datm_cdeps_mx025_gefs -Checking test 105 datm_cdeps_mx025_gefs results .... -Moving baseline 105 datm_cdeps_mx025_gefs files .... - Moving RESTART/MOM.res.nc .........OK - Moving RESTART/MOM.res_1.nc .........OK - Moving RESTART/MOM.res_2.nc .........OK - Moving RESTART/MOM.res_3.nc .........OK - Moving RESTART/iced.2011-10-01-43200.nc .........OK - Moving RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/datm_cdeps_mx025_gefs +Checking test 138 datm_cdeps_mx025_gefs results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.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 = 396.533654 + 0: The maximum resident set size (KB) = 926832 + +Test 138 datm_cdeps_mx025_gefs PASS - 0: The total amount of wall time = 398.869537 - 0: The maximum resident set size (KB) = 930440 -Test 105 datm_cdeps_mx025_gefs PASS +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/datm_cdeps_multiple_files_cfsr +Checking test 139 datm_cdeps_multiple_files_cfsr results .... + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK + + 0: The total amount of wall time = 155.794348 + 0: The maximum resident set size (KB) = 1046760 + +Test 139 datm_cdeps_multiple_files_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/datm_cdeps_3072x1536_cfsr -Checking test 106 datm_cdeps_3072x1536_cfsr results .... -Moving baseline 106 datm_cdeps_3072x1536_cfsr files .... - Moving RESTART/MOM.res.nc .........OK - Moving RESTART/iced.2011-10-02-00000.nc .........OK - Moving RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/datm_cdeps_3072x1536_cfsr +Checking test 140 datm_cdeps_3072x1536_cfsr results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 215.680776 - 0: The maximum resident set size (KB) = 2361444 + 0: The total amount of wall time = 217.906362 + 0: The maximum resident set size (KB) = 2367324 -Test 106 datm_cdeps_3072x1536_cfsr PASS +Test 140 datm_cdeps_3072x1536_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_gfs -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/datm_cdeps_gfs -Checking test 107 datm_cdeps_gfs results .... -Moving baseline 107 datm_cdeps_gfs files .... - Moving RESTART/MOM.res.nc .........OK - Moving RESTART/iced.2021-03-23-21600.nc .........OK - Moving RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/datm_cdeps_gfs +Checking test 141 datm_cdeps_gfs results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 219.431283 - 0: The maximum resident set size (KB) = 2362764 + 0: The total amount of wall time = 221.674418 + 0: The maximum resident set size (KB) = 2362336 -Test 107 datm_cdeps_gfs PASS +Test 141 datm_cdeps_gfs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/datm_cdeps_debug_cfsr -Checking test 108 datm_cdeps_debug_cfsr results .... -Moving baseline 108 datm_cdeps_debug_cfsr files .... - Moving RESTART/MOM.res.nc .........OK - Moving RESTART/iced.2011-10-01-21600.nc .........OK - Moving RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/datm_cdeps_debug_cfsr +Checking test 142 datm_cdeps_debug_cfsr results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-01-21600.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK + + 0: The total amount of wall time = 451.356641 + 0: The maximum resident set size (KB) = 986312 + +Test 142 datm_cdeps_debug_cfsr PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_lnd_gswp3 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/datm_cdeps_lnd_gswp3 +Checking test 143 datm_cdeps_lnd_gswp3 results .... + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 442.848085 - 0: The maximum resident set size (KB) = 1005784 + 0: The total amount of wall time = 7.013433 + 0: The maximum resident set size (KB) = 261060 -Test 108 datm_cdeps_debug_cfsr PASS +Test 143 datm_cdeps_lnd_gswp3 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/datm_cdeps_lnd_gswp3 -Checking test 109 datm_cdeps_lnd_gswp3 results .... -Moving baseline 109 datm_cdeps_lnd_gswp3 files .... - Moving ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK - Moving ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK - Moving ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK - Moving ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK - Moving ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK - Moving ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/datm_cdeps_lnd_gswp3_rst +Checking test 144 datm_cdeps_lnd_gswp3_rst results .... + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 6.721246 - 0: The maximum resident set size (KB) = 258252 + 0: The total amount of wall time = 12.284565 + 0: The maximum resident set size (KB) = 264652 -Test 109 datm_cdeps_lnd_gswp3 PASS +Test 144 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8_atmlnd_sbs -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/control_p8_atmlnd_sbs -Checking test 110 control_p8_atmlnd_sbs results .... -Moving baseline 110 control_p8_atmlnd_sbs files .... - Moving sfcf000.tile1.nc .........OK - Moving sfcf000.tile2.nc .........OK - Moving sfcf000.tile3.nc .........OK - Moving sfcf000.tile4.nc .........OK - Moving sfcf000.tile5.nc .........OK - Moving sfcf000.tile6.nc .........OK - Moving sfcf021.tile1.nc .........OK - Moving sfcf021.tile2.nc .........OK - Moving sfcf021.tile3.nc .........OK - Moving sfcf021.tile4.nc .........OK - Moving sfcf021.tile5.nc .........OK - Moving sfcf021.tile6.nc .........OK - Moving sfcf024.tile1.nc .........OK - Moving sfcf024.tile2.nc .........OK - Moving sfcf024.tile3.nc .........OK - Moving sfcf024.tile4.nc .........OK - Moving sfcf024.tile5.nc .........OK - Moving sfcf024.tile6.nc .........OK - Moving atmf000.tile1.nc .........OK - Moving atmf000.tile2.nc .........OK - Moving atmf000.tile3.nc .........OK - Moving atmf000.tile4.nc .........OK - Moving atmf000.tile5.nc .........OK - Moving atmf000.tile6.nc .........OK - Moving atmf021.tile1.nc .........OK - Moving atmf021.tile2.nc .........OK - Moving atmf021.tile3.nc .........OK - Moving atmf021.tile4.nc .........OK - Moving atmf021.tile5.nc .........OK - Moving atmf021.tile6.nc .........OK - Moving atmf024.tile1.nc .........OK - Moving atmf024.tile2.nc .........OK - Moving atmf024.tile3.nc .........OK - Moving atmf024.tile4.nc .........OK - Moving atmf024.tile5.nc .........OK - Moving atmf024.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - Moving ufs.cpld.cpl.hi.lnd.2021-03-22-43200.nc .........OK - Moving ufs.cpld.cpl.hi.lnd.2021-03-23-21600.nc .........OK - Moving ufs.cpld.lnd.out.2021-03-22-43200.tile1.nc .........OK - Moving ufs.cpld.lnd.out.2021-03-22-43200.tile2.nc .........OK - Moving ufs.cpld.lnd.out.2021-03-22-43200.tile3.nc .........OK - Moving ufs.cpld.lnd.out.2021-03-22-43200.tile4.nc .........OK - Moving ufs.cpld.lnd.out.2021-03-22-43200.tile5.nc .........OK - Moving ufs.cpld.lnd.out.2021-03-22-43200.tile6.nc .........OK - Moving ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK - Moving ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK - Moving ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK - Moving ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK - Moving ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK - Moving ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - - 0: The total amount of wall time = 201.079444 - 0: The maximum resident set size (KB) = 1610832 - -Test 110 control_p8_atmlnd_sbs PASS +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/control_p8_atmlnd_sbs +Checking test 145 control_p8_atmlnd_sbs results .... + Comparing sfcf000.tile1.nc .........OK + Comparing sfcf000.tile2.nc .........OK + Comparing sfcf000.tile3.nc .........OK + Comparing sfcf000.tile4.nc .........OK + Comparing sfcf000.tile5.nc .........OK + Comparing sfcf000.tile6.nc .........OK + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf000.tile1.nc .........OK + Comparing atmf000.tile2.nc .........OK + Comparing atmf000.tile3.nc .........OK + Comparing atmf000.tile4.nc .........OK + Comparing atmf000.tile5.nc .........OK + Comparing atmf000.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing ufs.cpld.cpl.hi.lnd.2021-03-22-43200.nc .........OK + Comparing ufs.cpld.cpl.hi.lnd.2021-03-23-21600.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile6.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK + + 0: The total amount of wall time = 200.875947 + 0: The maximum resident set size (KB) = 1613752 + +Test 145 control_p8_atmlnd_sbs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_atmwav -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/control_atmwav -Checking test 111 control_atmwav results .... -Moving baseline 111 control_atmwav files .... - Moving sfcf000.nc .........OK - Moving sfcf012.nc .........OK - Moving atmf000.nc .........OK - Moving atmf012.nc .........OK - Moving GFSFLX.GrbF00 .........OK - Moving GFSFLX.GrbF12 .........OK - Moving GFSPRS.GrbF00 .........OK - Moving GFSPRS.GrbF12 .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - Moving 20210322.180000.restart.glo_1deg .........OK - - 0: The total amount of wall time = 85.164876 - 0: The maximum resident set size (KB) = 654120 - -Test 111 control_atmwav PASS +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/control_atmwav +Checking test 146 control_atmwav results .... + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing 20210322.180000.restart.glo_1deg .........OK + + 0: The total amount of wall time = 86.651845 + 0: The maximum resident set size (KB) = 660088 + +Test 146 control_atmwav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/atmaero_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/atmaero_control_p8 -Checking test 112 atmaero_control_p8 results .... -Moving baseline 112 atmaero_control_p8 files .... - Moving sfcf000.nc .........OK - Moving sfcf024.nc .........OK - Moving atmf000.nc .........OK - Moving atmf024.nc .........OK - Moving GFSFLX.GrbF00 .........OK - Moving GFSFLX.GrbF24 .........OK - Moving GFSPRS.GrbF00 .........OK - Moving GFSPRS.GrbF24 .........OK - Moving gocart.inst_aod.20210323_0600z.nc4 .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 226.288556 - 0: The maximum resident set size (KB) = 2974172 - -Test 112 atmaero_control_p8 PASS +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/atmaero_control_p8 +Checking test 147 atmaero_control_p8 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/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 225.770317 + 0: The maximum resident set size (KB) = 2977984 + +Test 147 atmaero_control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/atmaero_control_p8_rad -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/atmaero_control_p8_rad -Checking test 113 atmaero_control_p8_rad results .... -Moving baseline 113 atmaero_control_p8_rad files .... - Moving sfcf000.nc .........OK - Moving sfcf024.nc .........OK - Moving atmf000.nc .........OK - Moving atmf024.nc .........OK - Moving GFSFLX.GrbF00 .........OK - Moving GFSFLX.GrbF24 .........OK - Moving GFSPRS.GrbF00 .........OK - Moving GFSPRS.GrbF24 .........OK - Moving gocart.inst_aod.20210323_0600z.nc4 .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 279.621459 - 0: The maximum resident set size (KB) = 3045396 - -Test 113 atmaero_control_p8_rad PASS +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/atmaero_control_p8_rad +Checking test 148 atmaero_control_p8_rad 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/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 275.337530 + 0: The maximum resident set size (KB) = 3044412 + +Test 148 atmaero_control_p8_rad PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/atmaero_control_p8_rad_micro -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/atmaero_control_p8_rad_micro -Checking test 114 atmaero_control_p8_rad_micro results .... -Moving baseline 114 atmaero_control_p8_rad_micro files .... - Moving sfcf000.nc .........OK - Moving sfcf024.nc .........OK - Moving atmf000.nc .........OK - Moving atmf024.nc .........OK - Moving GFSFLX.GrbF00 .........OK - Moving GFSFLX.GrbF24 .........OK - Moving GFSPRS.GrbF00 .........OK - Moving GFSPRS.GrbF24 .........OK - Moving gocart.inst_aod.20210323_0600z.nc4 .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 282.549897 - 0: The maximum resident set size (KB) = 3053380 - -Test 114 atmaero_control_p8_rad_micro PASS +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/atmaero_control_p8_rad_micro +Checking test 149 atmaero_control_p8_rad_micro 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/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 280.284888 + 0: The maximum resident set size (KB) = 3059436 + +Test 149 atmaero_control_p8_rad_micro PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_atmaq -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/regional_atmaq -Checking test 115 regional_atmaq results .... -Moving baseline 115 regional_atmaq files .... - Moving sfcf000.nc .........OK - Moving sfcf003.nc .........OK - Moving sfcf006.nc .........OK - Moving atmf000.nc .........OK - Moving atmf003.nc .........OK - Moving atmf006.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/phy_data.nc .........OK - Moving RESTART/sfc_data.nc .........OK - - 0: The total amount of wall time = 601.126300 - 0: The maximum resident set size (KB) = 1556992 - -Test 115 regional_atmaq PASS +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/regional_atmaq +Checking test 150 regional_atmaq results .... + Comparing sfcf000.nc .........OK + Comparing sfcf003.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf003.nc .........OK + Comparing atmf006.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/phy_data.nc .........OK + Comparing RESTART/sfc_data.nc .........OK + + 0: The total amount of wall time = 599.066379 + 0: The maximum resident set size (KB) = 1564216 + +Test 150 regional_atmaq PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_atmaq_debug -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_222565/regional_atmaq_debug -Checking test 116 regional_atmaq_debug results .... -Moving baseline 116 regional_atmaq_debug files .... - Moving sfcf000.nc .........OK - Moving sfcf001.nc .........OK - Moving atmf000.nc .........OK - Moving atmf001.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/phy_data.nc .........OK - Moving RESTART/sfc_data.nc .........OK - - 0: The total amount of wall time = 1313.183842 - 0: The maximum resident set size (KB) = 1493464 - -Test 116 regional_atmaq_debug PASS +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/regional_atmaq_debug +Checking test 151 regional_atmaq_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/phy_data.nc .........OK + Comparing RESTART/sfc_data.nc .........OK + + 0: The total amount of wall time = 1312.511081 + 0: The maximum resident set size (KB) = 1511092 + +Test 151 regional_atmaq_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Feb 16 20:17:17 UTC 2023 -Elapsed time: 01h:45m:03s. Have a nice day! +Tue Feb 21 01:17:12 UTC 2023 +Elapsed time: 01h:13m:39s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index 0bdd98e3ce3..439764bc8ae 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,38 +1,38 @@ -Fri Feb 17 01:30:53 GMT 2023 +Mon Feb 20 23:54:01 GMT 2023 Start Regression test -Compile 001 elapsed time 1831 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 002 elapsed time 1831 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 003 elapsed time 1698 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 004 elapsed time 301 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 265 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 1492 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 007 elapsed time 1491 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 008 elapsed time 1573 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 009 elapsed time 1536 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 010 elapsed time 1494 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 011 elapsed time 1351 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 012 elapsed time 287 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 013 elapsed time 213 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 1381 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 015 elapsed time 1391 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 016 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 017 elapsed time 217 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 1635 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 019 elapsed time 266 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 2140 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 021 elapsed time 1612 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 022 elapsed time 283 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 023 elapsed time 160 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 024 elapsed time 106 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 025 elapsed time 1467 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 001 elapsed time 1960 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 002 elapsed time 1806 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 003 elapsed time 1689 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 004 elapsed time 298 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 269 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 1496 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 007 elapsed time 1496 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 008 elapsed time 1566 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 009 elapsed time 1571 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 010 elapsed time 1490 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 011 elapsed time 1381 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 012 elapsed time 302 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 199 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 014 elapsed time 1418 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 015 elapsed time 1408 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 016 elapsed time 218 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 017 elapsed time 234 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 1594 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 019 elapsed time 252 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 2155 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 021 elapsed time 1652 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 022 elapsed time 268 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 023 elapsed time 158 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 024 elapsed time 82 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 025 elapsed time 1459 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON Compile 026 elapsed time 1595 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 027 elapsed time 1428 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 028 elapsed time 1454 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 029 elapsed time 240 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 027 elapsed time 1425 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 028 elapsed time 1446 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 029 elapsed time 236 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8_mixedmode -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/cpld_control_p8_mixedmode +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -97,14 +97,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 404.777137 - 0: The maximum resident set size (KB) = 1721680 + 0: The total amount of wall time = 401.604855 + 0: The maximum resident set size (KB) = 1727372 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_gfsv17 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/cpld_control_gfsv17 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -168,14 +168,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 297.351100 - 0: The maximum resident set size (KB) = 1625456 + 0: The total amount of wall time = 303.625645 + 0: The maximum resident set size (KB) = 1638372 Test 002 cpld_control_gfsv17 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/cpld_control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -240,14 +240,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 452.467187 - 0: The maximum resident set size (KB) = 1770872 + 0: The total amount of wall time = 457.109571 + 0: The maximum resident set size (KB) = 1767532 Test 003 cpld_control_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/cpld_restart_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -300,14 +300,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 260.371422 - 0: The maximum resident set size (KB) = 1488084 + 0: The total amount of wall time = 258.758463 + 0: The maximum resident set size (KB) = 1488932 Test 004 cpld_restart_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/cpld_2threads_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -360,14 +360,14 @@ Checking test 005 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 484.412621 - 0: The maximum resident set size (KB) = 1967788 + 0: The total amount of wall time = 489.506448 + 0: The maximum resident set size (KB) = 1977848 Test 005 cpld_2threads_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/cpld_decomp_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/cpld_decomp_p8 Checking test 006 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -420,14 +420,14 @@ Checking test 006 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 455.387757 - 0: The maximum resident set size (KB) = 1770232 + 0: The total amount of wall time = 464.975170 + 0: The maximum resident set size (KB) = 1767316 Test 006 cpld_decomp_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/cpld_mpi_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/cpld_mpi_p8 Checking test 007 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -480,14 +480,14 @@ Checking test 007 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 381.563355 - 0: The maximum resident set size (KB) = 1721940 + 0: The total amount of wall time = 384.962317 + 0: The maximum resident set size (KB) = 1721232 Test 007 cpld_mpi_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_ciceC_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/cpld_control_ciceC_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/cpld_control_ciceC_p8 Checking test 008 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -552,14 +552,14 @@ Checking test 008 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 452.813728 - 0: The maximum resident set size (KB) = 1772728 + 0: The total amount of wall time = 457.858670 + 0: The maximum resident set size (KB) = 1769040 Test 008 cpld_control_ciceC_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_noaero_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/cpld_control_noaero_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/cpld_control_noaero_p8 Checking test 009 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -623,14 +623,14 @@ Checking test 009 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 341.861537 - 0: The maximum resident set size (KB) = 1616872 + 0: The total amount of wall time = 350.434781 + 0: The maximum resident set size (KB) = 1618468 Test 009 cpld_control_noaero_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/cpld_control_nowave_noaero_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/cpld_control_nowave_noaero_p8 Checking test 010 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -692,14 +692,14 @@ Checking test 010 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 344.595484 - 0: The maximum resident set size (KB) = 1665092 + 0: The total amount of wall time = 347.707250 + 0: The maximum resident set size (KB) = 1670152 Test 010 cpld_control_nowave_noaero_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_debug_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/cpld_debug_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/cpld_debug_p8 Checking test 011 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -752,14 +752,14 @@ Checking test 011 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 852.068337 - 0: The maximum resident set size (KB) = 1822376 + 0: The total amount of wall time = 855.591561 + 0: The maximum resident set size (KB) = 1823452 Test 011 cpld_debug_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_debug_noaero_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/cpld_debug_noaero_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/cpld_debug_noaero_p8 Checking test 012 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -811,14 +811,14 @@ Checking test 012 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 528.110892 - 0: The maximum resident set size (KB) = 1645360 + 0: The total amount of wall time = 530.440783 + 0: The maximum resident set size (KB) = 1637172 Test 012 cpld_debug_noaero_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/cpld_control_noaero_p8_agrid +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/cpld_control_noaero_p8_agrid Checking test 013 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -880,14 +880,14 @@ Checking test 013 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 362.384476 - 0: The maximum resident set size (KB) = 1676156 + 0: The total amount of wall time = 367.421229 + 0: The maximum resident set size (KB) = 1669808 Test 013 cpld_control_noaero_p8_agrid PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_c48 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/cpld_control_c48 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/cpld_control_c48 Checking test 014 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -937,14 +937,14 @@ Checking test 014 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 800.479686 - 0: The maximum resident set size (KB) = 2767764 + 0: The total amount of wall time = 806.690845 + 0: The maximum resident set size (KB) = 2767252 Test 014 cpld_control_c48 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_warmstart_c48 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/cpld_warmstart_c48 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/cpld_warmstart_c48 Checking test 015 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -994,14 +994,14 @@ Checking test 015 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 213.399305 - 0: The maximum resident set size (KB) = 2767624 + 0: The total amount of wall time = 217.406747 + 0: The maximum resident set size (KB) = 2757128 Test 015 cpld_warmstart_c48 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_warmstart_c48 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/cpld_restart_c48 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/cpld_restart_c48 Checking test 016 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1051,14 +1051,14 @@ Checking test 016 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 111.220247 - 0: The maximum resident set size (KB) = 2204888 + 0: The total amount of wall time = 114.643092 + 0: The maximum resident set size (KB) = 2199628 Test 016 cpld_restart_c48 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_CubedSphereGrid -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/control_CubedSphereGrid +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/control_CubedSphereGrid Checking test 017 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1085,28 +1085,28 @@ Checking test 017 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 174.795874 - 0: The maximum resident set size (KB) = 572392 + 0: The total amount of wall time = 181.482252 + 0: The maximum resident set size (KB) = 573804 Test 017 control_CubedSphereGrid PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_CubedSphereGrid_parallel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/control_CubedSphereGrid_parallel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/control_CubedSphereGrid_parallel Checking test 018 control_CubedSphereGrid_parallel results .... - Comparing sfcf000.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK + Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 175.323173 - 0: The maximum resident set size (KB) = 571616 + 0: The total amount of wall time = 178.685739 + 0: The maximum resident set size (KB) = 567296 Test 018 control_CubedSphereGrid_parallel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_latlon -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/control_latlon +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/control_latlon Checking test 019 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1117,14 +1117,14 @@ Checking test 019 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 178.460453 - 0: The maximum resident set size (KB) = 572468 + 0: The total amount of wall time = 183.298688 + 0: The maximum resident set size (KB) = 574520 Test 019 control_latlon PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/control_wrtGauss_netcdf_parallel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/control_wrtGauss_netcdf_parallel Checking test 020 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1135,14 +1135,14 @@ Checking test 020 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 183.924968 - 0: The maximum resident set size (KB) = 572776 + 0: The total amount of wall time = 194.513511 + 0: The maximum resident set size (KB) = 576116 Test 020 control_wrtGauss_netcdf_parallel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_c48 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/control_c48 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/control_c48 Checking test 021 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1181,14 +1181,14 @@ Checking test 021 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0: The total amount of wall time = 602.235621 -0: The maximum resident set size (KB) = 789576 +0: The total amount of wall time = 605.440148 +0: The maximum resident set size (KB) = 792352 Test 021 control_c48 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_c192 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/control_c192 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/control_c192 Checking test 022 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1199,14 +1199,14 @@ Checking test 022 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 732.746248 - 0: The maximum resident set size (KB) = 682140 + 0: The total amount of wall time = 731.192925 + 0: The maximum resident set size (KB) = 692976 Test 022 control_c192 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_c384 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/control_c384 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/control_c384 Checking test 023 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1217,14 +1217,14 @@ Checking test 023 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 921.262440 - 0: The maximum resident set size (KB) = 1014828 + 0: The total amount of wall time = 929.175406 + 0: The maximum resident set size (KB) = 1018304 Test 023 control_c384 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_c384gdas -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/control_c384gdas +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/control_c384gdas Checking test 024 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1267,14 +1267,14 @@ Checking test 024 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 804.978713 - 0: The maximum resident set size (KB) = 1165260 + 0: The total amount of wall time = 802.492147 + 0: The maximum resident set size (KB) = 1158784 -Test 024 control_c384gdas PASS +Test 024 control_c384gdas PASS Tries: 2 baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_stochy -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/control_stochy +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/control_stochy Checking test 025 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1285,28 +1285,28 @@ Checking test 025 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 120.103501 - 0: The maximum resident set size (KB) = 575996 + 0: The total amount of wall time = 123.596086 + 0: The maximum resident set size (KB) = 578712 Test 025 control_stochy PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_stochy -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/control_stochy_restart +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/control_stochy_restart Checking test 026 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 62.553802 - 0: The maximum resident set size (KB) = 393584 + 0: The total amount of wall time = 65.230816 + 0: The maximum resident set size (KB) = 397176 Test 026 control_stochy_restart PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_lndp -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/control_lndp +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/control_lndp Checking test 027 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1317,14 +1317,14 @@ Checking test 027 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 107.564103 - 0: The maximum resident set size (KB) = 576672 + 0: The total amount of wall time = 111.079741 + 0: The maximum resident set size (KB) = 576296 Test 027 control_lndp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_iovr4 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/control_iovr4 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/control_iovr4 Checking test 028 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1339,14 +1339,14 @@ Checking test 028 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 185.647516 - 0: The maximum resident set size (KB) = 571468 + 0: The total amount of wall time = 191.349257 + 0: The maximum resident set size (KB) = 572304 Test 028 control_iovr4 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_iovr5 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/control_iovr5 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/control_iovr5 Checking test 029 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1361,14 +1361,14 @@ Checking test 029 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 188.780000 - 0: The maximum resident set size (KB) = 576432 + 0: The total amount of wall time = 195.422667 + 0: The maximum resident set size (KB) = 571760 Test 029 control_iovr5 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/control_p8 Checking test 030 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1415,14 +1415,14 @@ Checking test 030 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 225.644747 - 0: The maximum resident set size (KB) = 1532792 + 0: The total amount of wall time = 226.720598 + 0: The maximum resident set size (KB) = 1533740 Test 030 control_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8_lndp -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/control_p8_lndp +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/control_p8_lndp Checking test 031 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1441,14 +1441,14 @@ Checking test 031 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 422.354822 - 0: The maximum resident set size (KB) = 1534452 + 0: The total amount of wall time = 425.453357 + 0: The maximum resident set size (KB) = 1534000 Test 031 control_p8_lndp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/control_restart_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/control_restart_p8 Checking test 032 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1487,14 +1487,14 @@ Checking test 032 control_restart_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 118.931398 - 0: The maximum resident set size (KB) = 767380 + 0: The total amount of wall time = 117.477816 + 0: The maximum resident set size (KB) = 767180 Test 032 control_restart_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/control_decomp_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/control_decomp_p8 Checking test 033 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1537,14 +1537,14 @@ Checking test 033 control_decomp_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 234.331801 - 0: The maximum resident set size (KB) = 1522272 + 0: The total amount of wall time = 235.242994 + 0: The maximum resident set size (KB) = 1522156 Test 033 control_decomp_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/control_2threads_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/control_2threads_p8 Checking test 034 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1587,14 +1587,14 @@ Checking test 034 control_2threads_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 217.465737 - 0: The maximum resident set size (KB) = 1613728 + 0: The total amount of wall time = 219.285410 + 0: The maximum resident set size (KB) = 1615040 Test 034 control_2threads_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8_rrtmgp -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/control_p8_rrtmgp +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/control_p8_rrtmgp Checking test 035 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1641,14 +1641,14 @@ Checking test 035 control_p8_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 307.845140 - 0: The maximum resident set size (KB) = 1602572 + 0: The total amount of wall time = 307.274322 + 0: The maximum resident set size (KB) = 1601128 Test 035 control_p8_rrtmgp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/merra2_thompson -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/merra2_thompson +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/merra2_thompson Checking test 036 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1695,14 +1695,14 @@ Checking test 036 merra2_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 255.288588 - 0: The maximum resident set size (KB) = 1543648 + 0: The total amount of wall time = 259.118347 + 0: The maximum resident set size (KB) = 1541016 Test 036 merra2_thompson PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/regional_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/regional_control Checking test 037 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1713,28 +1713,28 @@ Checking test 037 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 401.762627 - 0: The maximum resident set size (KB) = 782168 + 0: The total amount of wall time = 399.214391 + 0: The maximum resident set size (KB) = 782496 Test 037 regional_control PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/regional_restart +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/regional_restart Checking test 038 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 200.011703 - 0: The maximum resident set size (KB) = 777212 + 0: The total amount of wall time = 200.292101 + 0: The maximum resident set size (KB) = 773720 Test 038 regional_restart PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/regional_decomp +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/regional_decomp Checking test 039 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1745,14 +1745,14 @@ Checking test 039 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 418.420153 - 0: The maximum resident set size (KB) = 774004 + 0: The total amount of wall time = 415.214756 + 0: The maximum resident set size (KB) = 773340 Test 039 regional_decomp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/regional_2threads +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/regional_2threads Checking test 040 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1763,14 +1763,14 @@ Checking test 040 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 243.105465 - 0: The maximum resident set size (KB) = 761828 + 0: The total amount of wall time = 244.680841 + 0: The maximum resident set size (KB) = 765260 Test 040 regional_2threads PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_noquilt -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/regional_noquilt +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/regional_noquilt Checking test 041 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1778,28 +1778,28 @@ Checking test 041 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 441.926343 - 0: The maximum resident set size (KB) = 766784 + 0: The total amount of wall time = 432.150540 + 0: The maximum resident set size (KB) = 770204 Test 041 regional_noquilt PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/regional_netcdf_parallel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/regional_netcdf_parallel Checking test 042 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 394.008319 - 0: The maximum resident set size (KB) = 774860 + 0: The total amount of wall time = 392.051158 + 0: The maximum resident set size (KB) = 777180 Test 042 regional_netcdf_parallel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/regional_2dwrtdecomp +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/regional_2dwrtdecomp Checking test 043 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1810,14 +1810,14 @@ Checking test 043 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 401.392600 - 0: The maximum resident set size (KB) = 787728 + 0: The total amount of wall time = 398.674200 + 0: The maximum resident set size (KB) = 788968 Test 043 regional_2dwrtdecomp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/fv3_regional_wofs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/regional_wofs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/regional_wofs Checking test 044 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1828,14 +1828,14 @@ Checking test 044 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 518.196957 - 0: The maximum resident set size (KB) = 511188 + 0: The total amount of wall time = 514.260952 + 0: The maximum resident set size (KB) = 509936 Test 044 regional_wofs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/rap_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/rap_control Checking test 045 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1882,14 +1882,14 @@ Checking test 045 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 604.999295 - 0: The maximum resident set size (KB) = 945132 + 0: The total amount of wall time = 600.955046 + 0: The maximum resident set size (KB) = 951356 Test 045 rap_control PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/regional_spp_sppt_shum_skeb +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/regional_spp_sppt_shum_skeb Checking test 046 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -1900,14 +1900,14 @@ Checking test 046 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 402.384174 - 0: The maximum resident set size (KB) = 1082924 + 0: The total amount of wall time = 408.270851 + 0: The maximum resident set size (KB) = 1082312 Test 046 regional_spp_sppt_shum_skeb PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/rap_decomp +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/rap_decomp Checking test 047 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1954,14 +1954,14 @@ Checking test 047 rap_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 644.394977 - 0: The maximum resident set size (KB) = 936752 + 0: The total amount of wall time = 633.931069 + 0: The maximum resident set size (KB) = 936228 Test 047 rap_decomp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/rap_2threads +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/rap_2threads Checking test 048 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2008,14 +2008,14 @@ Checking test 048 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 589.162062 - 0: The maximum resident set size (KB) = 1019028 + 0: The total amount of wall time = 586.486199 + 0: The maximum resident set size (KB) = 1023712 Test 048 rap_2threads PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/rap_restart +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/rap_restart Checking test 049 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2054,14 +2054,14 @@ Checking test 049 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 304.153087 - 0: The maximum resident set size (KB) = 825688 + 0: The total amount of wall time = 308.171602 + 0: The maximum resident set size (KB) = 830384 Test 049 rap_restart PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/rap_sfcdiff +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/rap_sfcdiff Checking test 050 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2108,14 +2108,14 @@ Checking test 050 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 599.070397 - 0: The maximum resident set size (KB) = 943184 + 0: The total amount of wall time = 603.590042 + 0: The maximum resident set size (KB) = 946076 Test 050 rap_sfcdiff PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/rap_sfcdiff_decomp +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/rap_sfcdiff_decomp Checking test 051 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2162,14 +2162,14 @@ Checking test 051 rap_sfcdiff_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 641.911496 - 0: The maximum resident set size (KB) = 935840 + 0: The total amount of wall time = 655.848184 + 0: The maximum resident set size (KB) = 938620 Test 051 rap_sfcdiff_decomp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/rap_sfcdiff_restart +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/rap_sfcdiff_restart Checking test 052 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2208,14 +2208,14 @@ Checking test 052 rap_sfcdiff_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 443.820915 - 0: The maximum resident set size (KB) = 827440 + 0: The total amount of wall time = 444.387935 + 0: The maximum resident set size (KB) = 830228 Test 052 rap_sfcdiff_restart PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/hrrr_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/hrrr_control Checking test 053 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2262,14 +2262,14 @@ Checking test 053 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 583.766161 - 0: The maximum resident set size (KB) = 946016 + 0: The total amount of wall time = 590.140423 + 0: The maximum resident set size (KB) = 955188 Test 053 hrrr_control PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/hrrr_control_decomp +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/hrrr_control_decomp Checking test 054 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2316,14 +2316,14 @@ Checking test 054 hrrr_control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 610.793599 - 0: The maximum resident set size (KB) = 936148 + 0: The total amount of wall time = 611.967408 + 0: The maximum resident set size (KB) = 943008 Test 054 hrrr_control_decomp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/hrrr_control_2threads +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/hrrr_control_2threads Checking test 055 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2370,14 +2370,14 @@ Checking test 055 hrrr_control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 556.544631 - 0: The maximum resident set size (KB) = 1012260 + 0: The total amount of wall time = 562.971896 + 0: The maximum resident set size (KB) = 1014400 Test 055 hrrr_control_2threads PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/hrrr_control_restart +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/hrrr_control_restart Checking test 056 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2416,14 +2416,14 @@ Checking test 056 hrrr_control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 419.294588 - 0: The maximum resident set size (KB) = 840312 + 0: The total amount of wall time = 431.760392 + 0: The maximum resident set size (KB) = 835632 Test 056 hrrr_control_restart PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_v1beta -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/rrfs_v1beta +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/rrfs_v1beta Checking test 057 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2470,14 +2470,14 @@ Checking test 057 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 596.964570 - 0: The maximum resident set size (KB) = 939140 + 0: The total amount of wall time = 605.664472 + 0: The maximum resident set size (KB) = 942828 Test 057 rrfs_v1beta PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_v1nssl -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/rrfs_v1nssl +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/rrfs_v1nssl Checking test 058 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2492,14 +2492,14 @@ Checking test 058 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 709.257650 - 0: The maximum resident set size (KB) = 633380 + 0: The total amount of wall time = 719.524083 + 0: The maximum resident set size (KB) = 631424 Test 058 rrfs_v1nssl PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/rrfs_v1nssl_nohailnoccn +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/rrfs_v1nssl_nohailnoccn Checking test 059 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2514,14 +2514,14 @@ Checking test 059 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 709.906009 - 0: The maximum resident set size (KB) = 629344 + 0: The total amount of wall time = 712.675128 + 0: The maximum resident set size (KB) = 626176 Test 059 rrfs_v1nssl_nohailnoccn PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/rrfs_conus13km_hrrr_warm +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/rrfs_conus13km_hrrr_warm Checking test 060 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2530,14 +2530,14 @@ Checking test 060 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 170.366967 - 0: The maximum resident set size (KB) = 843204 + 0: The total amount of wall time = 168.731879 + 0: The maximum resident set size (KB) = 844932 Test 060 rrfs_conus13km_hrrr_warm PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/rrfs_smoke_conus13km_hrrr_warm Checking test 061 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2546,14 +2546,14 @@ Checking test 061 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 188.166055 - 0: The maximum resident set size (KB) = 871812 + 0: The total amount of wall time = 193.035111 + 0: The maximum resident set size (KB) = 873556 Test 061 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/rrfs_conus13km_radar_tten_warm +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/rrfs_conus13km_radar_tten_warm Checking test 062 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2562,14 +2562,14 @@ Checking test 062 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 171.459819 - 0: The maximum resident set size (KB) = 850972 + 0: The total amount of wall time = 170.928071 + 0: The maximum resident set size (KB) = 857376 Test 062 rrfs_conus13km_radar_tten_warm PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/rrfs_conus13km_hrrr_warm_2threads +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/rrfs_conus13km_hrrr_warm_2threads Checking test 063 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2578,14 +2578,14 @@ Checking test 063 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 112.008288 - 0: The maximum resident set size (KB) = 822524 + 0: The total amount of wall time = 111.807392 + 0: The maximum resident set size (KB) = 826788 Test 063 rrfs_conus13km_hrrr_warm_2threads PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/rrfs_conus13km_radar_tten_warm_2threads +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/rrfs_conus13km_radar_tten_warm_2threads Checking test 064 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2594,14 +2594,14 @@ Checking test 064 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 114.984109 - 0: The maximum resident set size (KB) = 830372 + 0: The total amount of wall time = 114.488723 + 0: The maximum resident set size (KB) = 833744 Test 064 rrfs_conus13km_radar_tten_warm_2threads PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_csawmg -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/control_csawmg +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/control_csawmg Checking test 065 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2612,14 +2612,14 @@ Checking test 065 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 462.670697 - 0: The maximum resident set size (KB) = 669060 + 0: The total amount of wall time = 459.169071 + 0: The maximum resident set size (KB) = 671124 Test 065 control_csawmg PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_csawmgt -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/control_csawmgt +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/control_csawmgt Checking test 066 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2630,14 +2630,14 @@ Checking test 066 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 455.516579 - 0: The maximum resident set size (KB) = 669100 + 0: The total amount of wall time = 452.873274 + 0: The maximum resident set size (KB) = 673228 Test 066 control_csawmgt PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_ras -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/control_ras +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/control_ras Checking test 067 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2648,54 +2648,54 @@ Checking test 067 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 248.633453 - 0: The maximum resident set size (KB) = 630360 + 0: The total amount of wall time = 243.517401 + 0: The maximum resident set size (KB) = 633892 Test 067 control_ras PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_wam -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/control_wam +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/control_wam Checking test 068 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 148.840869 - 0: The maximum resident set size (KB) = 481036 + 0: The total amount of wall time = 149.934338 + 0: The maximum resident set size (KB) = 481316 Test 068 control_wam PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/rrfs_conus13km_hrrr_warm_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/rrfs_conus13km_hrrr_warm_debug Checking test 069 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 944.553631 - 0: The maximum resident set size (KB) = 872616 + 0: The total amount of wall time = 942.894940 + 0: The maximum resident set size (KB) = 870480 Test 069 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/rrfs_conus13km_radar_tten_warm_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/rrfs_conus13km_radar_tten_warm_debug Checking test 070 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 948.848664 - 0: The maximum resident set size (KB) = 874060 + 0: The total amount of wall time = 948.895784 + 0: The maximum resident set size (KB) = 872052 Test 070 rrfs_conus13km_radar_tten_warm_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_CubedSphereGrid_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/control_CubedSphereGrid_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/control_CubedSphereGrid_debug Checking test 071 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2722,334 +2722,334 @@ Checking test 071 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 209.957486 - 0: The maximum resident set size (KB) = 731204 + 0: The total amount of wall time = 214.399842 + 0: The maximum resident set size (KB) = 730576 Test 071 control_CubedSphereGrid_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/control_wrtGauss_netcdf_parallel_debug Checking test 072 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 195.207151 - 0: The maximum resident set size (KB) = 734872 + 0: The total amount of wall time = 197.563240 + 0: The maximum resident set size (KB) = 730184 Test 072 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_stochy_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/control_stochy_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/control_stochy_debug Checking test 073 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 222.065087 - 0: The maximum resident set size (KB) = 740580 + 0: The total amount of wall time = 221.150149 + 0: The maximum resident set size (KB) = 738632 Test 073 control_stochy_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_lndp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/control_lndp_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/control_lndp_debug Checking test 074 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 197.090807 - 0: The maximum resident set size (KB) = 742192 + 0: The total amount of wall time = 199.257186 + 0: The maximum resident set size (KB) = 742048 Test 074 control_lndp_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_csawmg_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/control_csawmg_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/control_csawmg_debug Checking test 075 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 305.747669 - 0: The maximum resident set size (KB) = 786360 + 0: The total amount of wall time = 309.192388 + 0: The maximum resident set size (KB) = 777560 Test 075 control_csawmg_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_csawmgt_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/control_csawmgt_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/control_csawmgt_debug Checking test 076 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 301.190386 - 0: The maximum resident set size (KB) = 782500 + 0: The total amount of wall time = 307.000254 + 0: The maximum resident set size (KB) = 781636 Test 076 control_csawmgt_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_ras_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/control_ras_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/control_ras_debug Checking test 077 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 198.187297 - 0: The maximum resident set size (KB) = 748456 + 0: The total amount of wall time = 202.689525 + 0: The maximum resident set size (KB) = 745896 Test 077 control_ras_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_diag_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/control_diag_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/control_diag_debug Checking test 078 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 207.231452 - 0: The maximum resident set size (KB) = 790836 + 0: The total amount of wall time = 210.095049 + 0: The maximum resident set size (KB) = 789152 Test 078 control_diag_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_debug_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/control_debug_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/control_debug_p8 Checking test 079 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 226.226515 - 0: The maximum resident set size (KB) = 1552612 + 0: The total amount of wall time = 226.257184 + 0: The maximum resident set size (KB) = 1551660 Test 079 control_debug_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/regional_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/regional_debug Checking test 080 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1279.267082 - 0: The maximum resident set size (KB) = 800060 + 0: The total amount of wall time = 1286.171497 + 0: The maximum resident set size (KB) = 791164 Test 080 regional_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/rap_control_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/rap_control_debug Checking test 081 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 357.560764 - 0: The maximum resident set size (KB) = 1111776 + 0: The total amount of wall time = 362.650096 + 0: The maximum resident set size (KB) = 1108292 Test 081 rap_control_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/hrrr_control_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/hrrr_control_debug Checking test 082 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 352.847633 - 0: The maximum resident set size (KB) = 1106508 + 0: The total amount of wall time = 350.663045 + 0: The maximum resident set size (KB) = 1114544 Test 082 hrrr_control_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/rap_unified_drag_suite_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/rap_unified_drag_suite_debug Checking test 083 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 359.689517 - 0: The maximum resident set size (KB) = 1110132 + 0: The total amount of wall time = 360.775424 + 0: The maximum resident set size (KB) = 1105564 Test 083 rap_unified_drag_suite_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_diag_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/rap_diag_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/rap_diag_debug Checking test 084 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 382.528607 - 0: The maximum resident set size (KB) = 1192808 + 0: The total amount of wall time = 382.531650 + 0: The maximum resident set size (KB) = 1191032 Test 084 rap_diag_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/rap_cires_ugwp_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/rap_cires_ugwp_debug Checking test 085 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 364.593133 - 0: The maximum resident set size (KB) = 1109588 + 0: The total amount of wall time = 366.401510 + 0: The maximum resident set size (KB) = 1107336 Test 085 rap_cires_ugwp_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/rap_unified_ugwp_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/rap_unified_ugwp_debug Checking test 086 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 367.110341 - 0: The maximum resident set size (KB) = 1110116 + 0: The total amount of wall time = 364.603604 + 0: The maximum resident set size (KB) = 1119564 Test 086 rap_unified_ugwp_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_lndp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/rap_lndp_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/rap_lndp_debug Checking test 087 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 361.513169 - 0: The maximum resident set size (KB) = 1113092 + 0: The total amount of wall time = 366.385459 + 0: The maximum resident set size (KB) = 1108932 Test 087 rap_lndp_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_flake_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/rap_flake_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/rap_flake_debug Checking test 088 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 358.712882 - 0: The maximum resident set size (KB) = 1113128 + 0: The total amount of wall time = 359.563398 + 0: The maximum resident set size (KB) = 1114788 Test 088 rap_flake_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_progcld_thompson_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/rap_progcld_thompson_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/rap_progcld_thompson_debug Checking test 089 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 361.225189 - 0: The maximum resident set size (KB) = 1108560 + 0: The total amount of wall time = 362.887934 + 0: The maximum resident set size (KB) = 1104708 Test 089 rap_progcld_thompson_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_noah_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/rap_noah_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/rap_noah_debug Checking test 090 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 351.576877 - 0: The maximum resident set size (KB) = 1112900 + 0: The total amount of wall time = 357.523412 + 0: The maximum resident set size (KB) = 1104476 Test 090 rap_noah_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_sfcdiff_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/rap_sfcdiff_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/rap_sfcdiff_debug Checking test 091 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 363.337816 - 0: The maximum resident set size (KB) = 1106620 + 0: The total amount of wall time = 358.332393 + 0: The maximum resident set size (KB) = 1107784 Test 091 rap_sfcdiff_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/rap_noah_sfcdiff_cires_ugwp_debug Checking test 092 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 594.497689 - 0: The maximum resident set size (KB) = 1107072 + 0: The total amount of wall time = 590.935581 + 0: The maximum resident set size (KB) = 1108468 Test 092 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_v1beta_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/rrfs_v1beta_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/rrfs_v1beta_debug Checking test 093 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 355.299765 - 0: The maximum resident set size (KB) = 1105520 + 0: The total amount of wall time = 355.085759 + 0: The maximum resident set size (KB) = 1104520 Test 093 rrfs_v1beta_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_wam_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/control_wam_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/control_wam_debug Checking test 094 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 363.689080 - 0: The maximum resident set size (KB) = 430448 + 0: The total amount of wall time = 368.024083 + 0: The maximum resident set size (KB) = 430564 Test 094 control_wam_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 095 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3060,14 +3060,14 @@ Checking test 095 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 372.201981 - 0: The maximum resident set size (KB) = 975996 + 0: The total amount of wall time = 374.001054 + 0: The maximum resident set size (KB) = 980548 Test 095 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/rap_control_dyn32_phy32 Checking test 096 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3114,14 +3114,14 @@ Checking test 096 rap_control_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 486.892122 - 0: The maximum resident set size (KB) = 840452 + 0: The total amount of wall time = 497.857396 + 0: The maximum resident set size (KB) = 841140 Test 096 rap_control_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/hrrr_control_dyn32_phy32 Checking test 097 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3168,14 +3168,14 @@ Checking test 097 hrrr_control_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 253.304385 - 0: The maximum resident set size (KB) = 827444 + 0: The total amount of wall time = 264.061407 + 0: The maximum resident set size (KB) = 834008 Test 097 hrrr_control_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/rap_2threads_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/rap_2threads_dyn32_phy32 Checking test 098 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3222,14 +3222,14 @@ Checking test 098 rap_2threads_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 475.944255 - 0: The maximum resident set size (KB) = 892280 + 0: The total amount of wall time = 482.747393 + 0: The maximum resident set size (KB) = 879468 Test 098 rap_2threads_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/hrrr_control_2threads_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/hrrr_control_2threads_dyn32_phy32 Checking test 099 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3276,14 +3276,14 @@ Checking test 099 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 252.001076 - 0: The maximum resident set size (KB) = 889632 + 0: The total amount of wall time = 257.031107 + 0: The maximum resident set size (KB) = 884044 Test 099 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/hrrr_control_decomp_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/hrrr_control_decomp_dyn32_phy32 Checking test 100 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3330,14 +3330,14 @@ Checking test 100 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 270.395610 - 0: The maximum resident set size (KB) = 819436 + 0: The total amount of wall time = 273.239988 + 0: The maximum resident set size (KB) = 830684 Test 100 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/rap_restart_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/rap_restart_dyn32_phy32 Checking test 101 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3376,14 +3376,14 @@ Checking test 101 rap_restart_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 392.064616 - 0: The maximum resident set size (KB) = 804236 + 0: The total amount of wall time = 360.244242 + 0: The maximum resident set size (KB) = 802900 Test 101 rap_restart_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/hrrr_control_restart_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/hrrr_control_restart_dyn32_phy32 Checking test 102 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3422,14 +3422,14 @@ Checking test 102 hrrr_control_restart_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 128.256037 - 0: The maximum resident set size (KB) = 767056 + 0: The total amount of wall time = 132.794743 + 0: The maximum resident set size (KB) = 760256 Test 102 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_dyn64_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/rap_control_dyn64_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/rap_control_dyn64_phy32 Checking test 103 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3476,81 +3476,81 @@ Checking test 103 rap_control_dyn64_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 313.795479 - 0: The maximum resident set size (KB) = 864552 + 0: The total amount of wall time = 312.536213 + 0: The maximum resident set size (KB) = 863076 Test 103 rap_control_dyn64_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/rap_control_debug_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/rap_control_debug_dyn32_phy32 Checking test 104 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 360.447257 - 0: The maximum resident set size (KB) = 991704 + 0: The total amount of wall time = 352.774668 + 0: The maximum resident set size (KB) = 995796 Test 104 rap_control_debug_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/hrrr_control_debug_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/hrrr_control_debug_dyn32_phy32 Checking test 105 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 350.321797 - 0: The maximum resident set size (KB) = 998916 + 0: The total amount of wall time = 349.390439 + 0: The maximum resident set size (KB) = 995680 Test 105 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/rap_control_dyn64_phy32_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/rap_control_dyn64_phy32_debug Checking test 106 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 362.288950 - 0: The maximum resident set size (KB) = 1033764 + 0: The total amount of wall time = 367.819707 + 0: The maximum resident set size (KB) = 1041052 Test 106 rap_control_dyn64_phy32_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_atm -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/hafs_regional_atm +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/hafs_regional_atm Checking test 107 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 353.359842 - 0: The maximum resident set size (KB) = 1193504 + 0: The total amount of wall time = 316.661730 + 0: The maximum resident set size (KB) = 1198252 Test 107 hafs_regional_atm PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/hafs_regional_atm_thompson_gfdlsf Checking test 108 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 430.888309 - 0: The maximum resident set size (KB) = 1560060 + 0: The total amount of wall time = 379.040470 + 0: The maximum resident set size (KB) = 1520036 Test 108 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_atm_ocn -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/hafs_regional_atm_ocn +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/hafs_regional_atm_ocn Checking test 109 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3559,14 +3559,14 @@ Checking test 109 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 529.191507 - 0: The maximum resident set size (KB) = 1268784 + 0: The total amount of wall time = 487.519180 + 0: The maximum resident set size (KB) = 1266824 Test 109 hafs_regional_atm_ocn PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_atm_wav -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/hafs_regional_atm_wav +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/hafs_regional_atm_wav Checking test 110 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3575,14 +3575,14 @@ Checking test 110 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 894.995557 - 0: The maximum resident set size (KB) = 1265176 + 0: The total amount of wall time = 901.897122 + 0: The maximum resident set size (KB) = 1296904 Test 110 hafs_regional_atm_wav PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/hafs_regional_atm_ocn_wav +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/hafs_regional_atm_ocn_wav Checking test 111 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3593,14 +3593,14 @@ Checking test 111 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 1010.750953 - 0: The maximum resident set size (KB) = 1312540 + 0: The total amount of wall time = 1016.847032 + 0: The maximum resident set size (KB) = 1312256 Test 111 hafs_regional_atm_ocn_wav PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_docn -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/hafs_regional_docn +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/hafs_regional_docn Checking test 112 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3608,14 +3608,14 @@ Checking test 112 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 469.967656 - 0: The maximum resident set size (KB) = 1290072 + 0: The total amount of wall time = 464.383329 + 0: The maximum resident set size (KB) = 1287908 Test 112 hafs_regional_docn PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_docn_oisst -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/hafs_regional_docn_oisst +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/hafs_regional_docn_oisst Checking test 113 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3623,131 +3623,131 @@ Checking test 113 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 457.194239 - 0: The maximum resident set size (KB) = 1273896 + 0: The total amount of wall time = 464.672244 + 0: The maximum resident set size (KB) = 1184316 Test 113 hafs_regional_docn_oisst PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_datm_cdeps -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/hafs_regional_datm_cdeps +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/hafs_regional_datm_cdeps Checking test 114 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 1264.367225 - 0: The maximum resident set size (KB) = 980436 + 0: The total amount of wall time = 1260.753467 + 0: The maximum resident set size (KB) = 977220 Test 114 hafs_regional_datm_cdeps PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/datm_cdeps_control_cfsr Checking test 115 datm_cdeps_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 213.547588 - 0: The maximum resident set size (KB) = 970396 + 0: The total amount of wall time = 217.179548 + 0: The maximum resident set size (KB) = 964808 Test 115 datm_cdeps_control_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/datm_cdeps_restart_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/datm_cdeps_restart_cfsr Checking test 116 datm_cdeps_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 125.375422 - 0: The maximum resident set size (KB) = 934764 + 0: The total amount of wall time = 127.766321 + 0: The maximum resident set size (KB) = 930388 Test 116 datm_cdeps_restart_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_control_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/datm_cdeps_control_gefs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/datm_cdeps_control_gefs Checking test 117 datm_cdeps_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 218.768622 - 0: The maximum resident set size (KB) = 857140 + 0: The total amount of wall time = 213.593554 + 0: The maximum resident set size (KB) = 868528 Test 117 datm_cdeps_control_gefs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_iau_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/datm_cdeps_iau_gefs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/datm_cdeps_iau_gefs Checking test 118 datm_cdeps_iau_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 220.829356 - 0: The maximum resident set size (KB) = 855012 + 0: The total amount of wall time = 223.829976 + 0: The maximum resident set size (KB) = 859892 Test 118 datm_cdeps_iau_gefs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_stochy_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/datm_cdeps_stochy_gefs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/datm_cdeps_stochy_gefs Checking test 119 datm_cdeps_stochy_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 209.450729 - 0: The maximum resident set size (KB) = 850604 + 0: The total amount of wall time = 213.283083 + 0: The maximum resident set size (KB) = 858148 Test 119 datm_cdeps_stochy_gefs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/datm_cdeps_ciceC_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/datm_cdeps_ciceC_cfsr Checking test 120 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 211.985521 - 0: The maximum resident set size (KB) = 971808 + 0: The total amount of wall time = 216.377624 + 0: The maximum resident set size (KB) = 964064 Test 120 datm_cdeps_ciceC_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/datm_cdeps_bulk_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/datm_cdeps_bulk_cfsr Checking test 121 datm_cdeps_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 213.149488 - 0: The maximum resident set size (KB) = 971464 + 0: The total amount of wall time = 216.102491 + 0: The maximum resident set size (KB) = 964632 Test 121 datm_cdeps_bulk_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/datm_cdeps_bulk_gefs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/datm_cdeps_bulk_gefs Checking test 122 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 209.126505 - 0: The maximum resident set size (KB) = 853020 + 0: The total amount of wall time = 210.616558 + 0: The maximum resident set size (KB) = 862940 Test 122 datm_cdeps_bulk_gefs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/datm_cdeps_mx025_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/datm_cdeps_mx025_cfsr Checking test 123 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -3756,14 +3756,14 @@ Checking test 123 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 609.787203 - 0: The maximum resident set size (KB) = 762984 + 0: The total amount of wall time = 580.264207 + 0: The maximum resident set size (KB) = 766844 Test 123 datm_cdeps_mx025_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/datm_cdeps_mx025_gefs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/datm_cdeps_mx025_gefs Checking test 124 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -3772,64 +3772,64 @@ Checking test 124 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 600.111385 - 0: The maximum resident set size (KB) = 739248 + 0: The total amount of wall time = 577.328724 + 0: The maximum resident set size (KB) = 739696 Test 124 datm_cdeps_mx025_gefs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/datm_cdeps_multiple_files_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/datm_cdeps_multiple_files_cfsr Checking test 125 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 212.306868 - 0: The maximum resident set size (KB) = 961980 + 0: The total amount of wall time = 208.413033 + 0: The maximum resident set size (KB) = 969512 Test 125 datm_cdeps_multiple_files_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/datm_cdeps_3072x1536_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/datm_cdeps_3072x1536_cfsr Checking test 126 datm_cdeps_3072x1536_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 329.908804 - 0: The maximum resident set size (KB) = 2252236 + 0: The total amount of wall time = 296.266195 + 0: The maximum resident set size (KB) = 2252816 Test 126 datm_cdeps_3072x1536_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_gfs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/datm_cdeps_gfs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/datm_cdeps_gfs Checking test 127 datm_cdeps_gfs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 327.480141 - 0: The maximum resident set size (KB) = 2196296 + 0: The total amount of wall time = 328.223646 + 0: The maximum resident set size (KB) = 2252120 Test 127 datm_cdeps_gfs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_debug_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/datm_cdeps_debug_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/datm_cdeps_debug_cfsr Checking test 128 datm_cdeps_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 582.039572 - 0: The maximum resident set size (KB) = 918056 + 0: The total amount of wall time = 519.844499 + 0: The maximum resident set size (KB) = 915124 Test 128 datm_cdeps_debug_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/datm_cdeps_lnd_gswp3 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/datm_cdeps_lnd_gswp3 Checking test 129 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -3838,14 +3838,14 @@ Checking test 129 datm_cdeps_lnd_gswp3 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 = 10.473031 - 0: The maximum resident set size (KB) = 254724 + 0: The total amount of wall time = 10.599923 + 0: The maximum resident set size (KB) = 252948 Test 129 datm_cdeps_lnd_gswp3 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/datm_cdeps_lnd_gswp3_rst +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/datm_cdeps_lnd_gswp3_rst Checking test 130 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -3854,14 +3854,14 @@ Checking test 130 datm_cdeps_lnd_gswp3_rst 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 = 19.396066 - 0: The maximum resident set size (KB) = 253336 + 0: The total amount of wall time = 18.805163 + 0: The maximum resident set size (KB) = 254404 Test 130 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8_atmlnd_sbs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/control_p8_atmlnd_sbs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/control_p8_atmlnd_sbs Checking test 131 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3946,14 +3946,14 @@ Checking test 131 control_p8_atmlnd_sbs 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 = 279.884706 - 0: The maximum resident set size (KB) = 1586144 + 0: The total amount of wall time = 282.455504 + 0: The maximum resident set size (KB) = 1584912 Test 131 control_p8_atmlnd_sbs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_atmwav -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/control_atmwav +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/control_atmwav Checking test 132 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -3997,14 +3997,14 @@ Checking test 132 control_atmwav results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 115.638385 - 0: The maximum resident set size (KB) = 597416 + 0: The total amount of wall time = 115.694580 + 0: The maximum resident set size (KB) = 597876 Test 132 control_atmwav PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/atmaero_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/atmaero_control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/atmaero_control_p8 Checking test 133 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4048,14 +4048,14 @@ Checking test 133 atmaero_control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 301.303697 - 0: The maximum resident set size (KB) = 1636808 + 0: The total amount of wall time = 306.067762 + 0: The maximum resident set size (KB) = 1630284 Test 133 atmaero_control_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/atmaero_control_p8_rad -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/atmaero_control_p8_rad +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/atmaero_control_p8_rad Checking test 134 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4099,14 +4099,14 @@ Checking test 134 atmaero_control_p8_rad results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 373.112547 - 0: The maximum resident set size (KB) = 1663460 + 0: The total amount of wall time = 374.137340 + 0: The maximum resident set size (KB) = 1661760 Test 134 atmaero_control_p8_rad PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/atmaero_control_p8_rad_micro +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/atmaero_control_p8_rad_micro Checking test 135 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4150,14 +4150,14 @@ Checking test 135 atmaero_control_p8_rad_micro results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 378.630764 - 0: The maximum resident set size (KB) = 1662100 + 0: The total amount of wall time = 381.124866 + 0: The maximum resident set size (KB) = 1668904 Test 135 atmaero_control_p8_rad_micro PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_atmaq -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_81298/regional_atmaq +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/regional_atmaq Checking test 136 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4173,12 +4173,12 @@ Checking test 136 regional_atmaq results .... Comparing RESTART/phy_data.nc .........OK Comparing RESTART/sfc_data.nc .........OK - 0: The total amount of wall time = 888.406259 - 0: The maximum resident set size (KB) = 1410220 + 0: The total amount of wall time = 899.183120 + 0: The maximum resident set size (KB) = 1323172 Test 136 regional_atmaq PASS REGRESSION TEST WAS SUCCESSFUL -Fri Feb 17 03:54:59 GMT 2023 -Elapsed time: 02h:24m:07s. Have a nice day! +Tue Feb 21 02:17:08 GMT 2023 +Elapsed time: 02h:23m:08s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index 00fc5ef9e0d..16b7a37685c 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,38 +1,38 @@ -Fri Feb 17 01:53:16 CST 2023 +Mon Feb 20 18:01:53 CST 2023 Start Regression test -Compile 001 elapsed time 714 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 850 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 650 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 266 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 239 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 597 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 595 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 596 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 572 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 583 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 472 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 212 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 013 elapsed time 165 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 502 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 015 elapsed time 595 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 158 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 017 elapsed time 178 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 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 019 elapsed time 268 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 759 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 682 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 022 elapsed time 197 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 023 elapsed time 142 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 024 elapsed time 96 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 025 elapsed time 583 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 026 elapsed time 572 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 027 elapsed time 553 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 614 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 259 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 001 elapsed time 709 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 739 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 691 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 287 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 243 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 596 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 622 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 575 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 586 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 568 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 560 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 247 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 164 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 014 elapsed time 517 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 471 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 157 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 017 elapsed time 211 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 605 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 019 elapsed time 242 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 772 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 651 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 022 elapsed time 200 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 023 elapsed time 145 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 024 elapsed time 55 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 025 elapsed time 563 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 026 elapsed time 747 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 027 elapsed time 547 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 492 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 211 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8_mixedmode -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/cpld_control_p8_mixedmode +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -97,14 +97,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 307.084089 - 0: The maximum resident set size (KB) = 3138804 + 0: The total amount of wall time = 306.166611 + 0: The maximum resident set size (KB) = 3140256 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_gfsv17 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/cpld_control_gfsv17 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -168,14 +168,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 224.546310 - 0: The maximum resident set size (KB) = 1727816 + 0: The total amount of wall time = 235.348317 + 0: The maximum resident set size (KB) = 1685488 Test 002 cpld_control_gfsv17 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/cpld_control_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -240,14 +240,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 346.516025 - 0: The maximum resident set size (KB) = 3114148 + 0: The total amount of wall time = 345.238676 + 0: The maximum resident set size (KB) = 3129680 Test 003 cpld_control_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/cpld_restart_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -300,14 +300,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 202.070562 - 0: The maximum resident set size (KB) = 3052444 + 0: The total amount of wall time = 198.371026 + 0: The maximum resident set size (KB) = 3047284 Test 004 cpld_restart_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/cpld_2threads_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -360,14 +360,14 @@ Checking test 005 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 411.355262 - 0: The maximum resident set size (KB) = 3513536 + 0: The total amount of wall time = 402.689331 + 0: The maximum resident set size (KB) = 3512476 Test 005 cpld_2threads_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/cpld_decomp_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/cpld_decomp_p8 Checking test 006 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -420,14 +420,14 @@ Checking test 006 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 342.467262 - 0: The maximum resident set size (KB) = 3089540 + 0: The total amount of wall time = 338.738665 + 0: The maximum resident set size (KB) = 3171616 Test 006 cpld_decomp_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/cpld_mpi_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/cpld_mpi_p8 Checking test 007 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -480,14 +480,14 @@ Checking test 007 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 285.610803 - 0: The maximum resident set size (KB) = 3029080 + 0: The total amount of wall time = 278.532286 + 0: The maximum resident set size (KB) = 3032732 Test 007 cpld_mpi_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_ciceC_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/cpld_control_ciceC_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/cpld_control_ciceC_p8 Checking test 008 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -552,14 +552,14 @@ Checking test 008 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 342.579937 - 0: The maximum resident set size (KB) = 3181460 + 0: The total amount of wall time = 340.336819 + 0: The maximum resident set size (KB) = 3184280 Test 008 cpld_control_ciceC_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/cpld_control_c192_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/cpld_control_c192_p8 Checking test 009 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -612,14 +612,14 @@ Checking test 009 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 635.197263 - 0: The maximum resident set size (KB) = 3256760 + 0: The total amount of wall time = 639.285743 + 0: The maximum resident set size (KB) = 3260860 Test 009 cpld_control_c192_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/cpld_restart_c192_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/cpld_restart_c192_p8 Checking test 010 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -672,14 +672,14 @@ Checking test 010 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 454.235476 - 0: The maximum resident set size (KB) = 3142112 + 0: The total amount of wall time = 448.326608 + 0: The maximum resident set size (KB) = 3159240 Test 010 cpld_restart_c192_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_bmark_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/cpld_bmark_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/cpld_bmark_p8 Checking test 011 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -727,14 +727,14 @@ Checking test 011 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 862.761515 - 0: The maximum resident set size (KB) = 4021028 + 0: The total amount of wall time = 876.058235 + 0: The maximum resident set size (KB) = 4020708 Test 011 cpld_bmark_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_bmark_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/cpld_restart_bmark_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/cpld_restart_bmark_p8 Checking test 012 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -782,14 +782,14 @@ Checking test 012 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 521.637650 - 0: The maximum resident set size (KB) = 3966312 + 0: The total amount of wall time = 520.894829 + 0: The maximum resident set size (KB) = 3973584 Test 012 cpld_restart_bmark_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_noaero_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/cpld_control_noaero_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/cpld_control_noaero_p8 Checking test 013 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -853,14 +853,14 @@ Checking test 013 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 255.389998 - 0: The maximum resident set size (KB) = 1722408 + 0: The total amount of wall time = 253.184076 + 0: The maximum resident set size (KB) = 1709020 Test 013 cpld_control_noaero_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_c96_noaero_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/cpld_control_nowave_noaero_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/cpld_control_nowave_noaero_p8 Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -922,14 +922,14 @@ Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 255.567971 - 0: The maximum resident set size (KB) = 1759372 + 0: The total amount of wall time = 258.352494 + 0: The maximum resident set size (KB) = 1765560 Test 014 cpld_control_nowave_noaero_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_debug_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/cpld_debug_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/cpld_debug_p8 Checking test 015 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -982,14 +982,14 @@ Checking test 015 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 671.305149 - 0: The maximum resident set size (KB) = 3243468 + 0: The total amount of wall time = 676.066618 + 0: The maximum resident set size (KB) = 3249892 Test 015 cpld_debug_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_debug_noaero_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/cpld_debug_noaero_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/cpld_debug_noaero_p8 Checking test 016 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1041,14 +1041,14 @@ Checking test 016 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 419.662036 - 0: The maximum resident set size (KB) = 1745504 + 0: The total amount of wall time = 420.561150 + 0: The maximum resident set size (KB) = 1706584 Test 016 cpld_debug_noaero_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_noaero_p8_agrid -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/cpld_control_noaero_p8_agrid +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/cpld_control_noaero_p8_agrid Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1110,14 +1110,14 @@ Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 268.533044 - 0: The maximum resident set size (KB) = 1774784 + 0: The total amount of wall time = 265.467882 + 0: The maximum resident set size (KB) = 1758024 Test 017 cpld_control_noaero_p8_agrid PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_c48 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/cpld_control_c48 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/cpld_control_c48 Checking test 018 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1167,14 +1167,14 @@ Checking test 018 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 498.211203 - 0: The maximum resident set size (KB) = 2802704 + 0: The total amount of wall time = 499.695976 + 0: The maximum resident set size (KB) = 2768164 Test 018 cpld_control_c48 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_warmstart_c48 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/cpld_warmstart_c48 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/cpld_warmstart_c48 Checking test 019 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1224,14 +1224,14 @@ Checking test 019 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 141.343917 - 0: The maximum resident set size (KB) = 2805156 + 0: The total amount of wall time = 138.001310 + 0: The maximum resident set size (KB) = 2802352 Test 019 cpld_warmstart_c48 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_warmstart_c48 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/cpld_restart_c48 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/cpld_restart_c48 Checking test 020 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1281,14 +1281,14 @@ Checking test 020 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 78.251826 - 0: The maximum resident set size (KB) = 2240948 + 0: The total amount of wall time = 75.000743 + 0: The maximum resident set size (KB) = 2244208 Test 020 cpld_restart_c48 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_CubedSphereGrid -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/control_CubedSphereGrid +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/control_CubedSphereGrid Checking test 021 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1315,28 +1315,28 @@ Checking test 021 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 129.654722 - 0: The maximum resident set size (KB) = 627308 + 0: The total amount of wall time = 130.466392 + 0: The maximum resident set size (KB) = 630040 Test 021 control_CubedSphereGrid PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_CubedSphereGrid_parallel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/control_CubedSphereGrid_parallel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/control_CubedSphereGrid_parallel Checking test 022 control_CubedSphereGrid_parallel results .... 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 = 127.504811 - 0: The maximum resident set size (KB) = 630676 + 0: The total amount of wall time = 127.499667 + 0: The maximum resident set size (KB) = 629828 Test 022 control_CubedSphereGrid_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_latlon -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/control_latlon +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/control_latlon Checking test 023 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1347,32 +1347,32 @@ Checking test 023 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 132.602887 - 0: The maximum resident set size (KB) = 627660 + 0: The total amount of wall time = 133.124426 + 0: The maximum resident set size (KB) = 626528 Test 023 control_latlon PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_wrtGauss_netcdf_parallel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/control_wrtGauss_netcdf_parallel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/control_wrtGauss_netcdf_parallel Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc .........OK - Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.410046 - 0: The maximum resident set size (KB) = 630768 + 0: The total amount of wall time = 135.126889 + 0: The maximum resident set size (KB) = 632008 Test 024 control_wrtGauss_netcdf_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_c48 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/control_c48 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/control_c48 Checking test 025 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1411,14 +1411,14 @@ Checking test 025 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0: The total amount of wall time = 347.171553 -0: The maximum resident set size (KB) = 805480 +0: The total amount of wall time = 346.817203 +0: The maximum resident set size (KB) = 816712 Test 025 control_c48 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_c192 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/control_c192 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/control_c192 Checking test 026 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1429,14 +1429,14 @@ Checking test 026 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 537.802541 - 0: The maximum resident set size (KB) = 758484 + 0: The total amount of wall time = 526.631818 + 0: The maximum resident set size (KB) = 765280 Test 026 control_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_c384 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/control_c384 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/control_c384 Checking test 027 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1447,14 +1447,14 @@ Checking test 027 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 621.781260 - 0: The maximum resident set size (KB) = 1164404 + 0: The total amount of wall time = 589.794373 + 0: The maximum resident set size (KB) = 1158848 Test 027 control_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_c384gdas -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/control_c384gdas +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/control_c384gdas Checking test 028 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1497,14 +1497,14 @@ Checking test 028 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 515.755725 - 0: The maximum resident set size (KB) = 1309764 + 0: The total amount of wall time = 514.027537 + 0: The maximum resident set size (KB) = 1308912 Test 028 control_c384gdas PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_stochy -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/control_stochy +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/control_stochy Checking test 029 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1515,28 +1515,28 @@ Checking test 029 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 86.966011 - 0: The maximum resident set size (KB) = 633504 + 0: The total amount of wall time = 86.649565 + 0: The maximum resident set size (KB) = 634944 Test 029 control_stochy PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_stochy -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/control_stochy_restart +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/control_stochy_restart Checking test 030 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 46.975965 - 0: The maximum resident set size (KB) = 479932 + 0: The total amount of wall time = 47.380261 + 0: The maximum resident set size (KB) = 477416 Test 030 control_stochy_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_lndp -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/control_lndp +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/control_lndp Checking test 031 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1547,14 +1547,14 @@ Checking test 031 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 80.688614 - 0: The maximum resident set size (KB) = 631372 + 0: The total amount of wall time = 79.695437 + 0: The maximum resident set size (KB) = 632352 Test 031 control_lndp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_iovr4 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/control_iovr4 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/control_iovr4 Checking test 032 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1569,14 +1569,14 @@ Checking test 032 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 133.855324 - 0: The maximum resident set size (KB) = 628048 + 0: The total amount of wall time = 134.815170 + 0: The maximum resident set size (KB) = 633692 Test 032 control_iovr4 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_iovr5 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/control_iovr5 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/control_iovr5 Checking test 033 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1591,14 +1591,14 @@ Checking test 033 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 133.573189 - 0: The maximum resident set size (KB) = 628380 + 0: The total amount of wall time = 132.939088 + 0: The maximum resident set size (KB) = 629156 Test 033 control_iovr5 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/control_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/control_p8 Checking test 034 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1645,14 +1645,14 @@ Checking test 034 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 174.029232 - 0: The maximum resident set size (KB) = 1613584 + 0: The total amount of wall time = 165.722758 + 0: The maximum resident set size (KB) = 1613548 Test 034 control_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8_lndp -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/control_p8_lndp +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/control_p8_lndp Checking test 035 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1671,14 +1671,14 @@ Checking test 035 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 320.595038 - 0: The maximum resident set size (KB) = 1607308 + 0: The total amount of wall time = 314.899298 + 0: The maximum resident set size (KB) = 1599932 Test 035 control_p8_lndp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/control_restart_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/control_restart_p8 Checking test 036 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1717,14 +1717,14 @@ Checking test 036 control_restart_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 86.895085 - 0: The maximum resident set size (KB) = 863136 + 0: The total amount of wall time = 86.866559 + 0: The maximum resident set size (KB) = 871244 Test 036 control_restart_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/control_decomp_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/control_decomp_p8 Checking test 037 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1767,14 +1767,14 @@ Checking test 037 control_decomp_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 176.710854 - 0: The maximum resident set size (KB) = 1589804 + 0: The total amount of wall time = 172.567168 + 0: The maximum resident set size (KB) = 1587764 Test 037 control_decomp_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/control_2threads_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/control_2threads_p8 Checking test 038 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1817,14 +1817,14 @@ Checking test 038 control_2threads_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 182.318260 - 0: The maximum resident set size (KB) = 1685208 + 0: The total amount of wall time = 180.455501 + 0: The maximum resident set size (KB) = 1691320 Test 038 control_2threads_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8_rrtmgp -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/control_p8_rrtmgp +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/control_p8_rrtmgp Checking test 039 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1871,14 +1871,14 @@ Checking test 039 control_p8_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 229.430832 - 0: The maximum resident set size (KB) = 1676152 + 0: The total amount of wall time = 228.679360 + 0: The maximum resident set size (KB) = 1677100 Test 039 control_p8_rrtmgp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/merra2_thompson -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/merra2_thompson +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/merra2_thompson Checking test 040 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1925,14 +1925,14 @@ Checking test 040 merra2_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 190.108550 - 0: The maximum resident set size (KB) = 1612864 + 0: The total amount of wall time = 192.728866 + 0: The maximum resident set size (KB) = 1583100 Test 040 merra2_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/regional_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/regional_control Checking test 041 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1943,28 +1943,28 @@ Checking test 041 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 307.165014 - 0: The maximum resident set size (KB) = 868244 + 0: The total amount of wall time = 295.258528 + 0: The maximum resident set size (KB) = 871820 Test 041 regional_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/regional_restart +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/regional_restart Checking test 042 regional_restart 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.065927 - 0: The maximum resident set size (KB) = 857984 + 0: The total amount of wall time = 148.148614 + 0: The maximum resident set size (KB) = 857332 Test 042 regional_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/regional_decomp +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/regional_decomp Checking test 043 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1975,14 +1975,14 @@ Checking test 043 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 325.291112 - 0: The maximum resident set size (KB) = 853168 + 0: The total amount of wall time = 313.026980 + 0: The maximum resident set size (KB) = 856984 Test 043 regional_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/regional_2threads +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/regional_2threads Checking test 044 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1993,14 +1993,14 @@ Checking test 044 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 211.218655 - 0: The maximum resident set size (KB) = 836532 + 0: The total amount of wall time = 208.470763 + 0: The maximum resident set size (KB) = 842036 Test 044 regional_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_noquilt -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/regional_noquilt +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/regional_noquilt Checking test 045 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2008,28 +2008,28 @@ Checking test 045 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 335.172298 - 0: The maximum resident set size (KB) = 856380 + 0: The total amount of wall time = 319.287085 + 0: The maximum resident set size (KB) = 861876 Test 045 regional_noquilt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_netcdf_parallel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/regional_netcdf_parallel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/regional_netcdf_parallel Checking test 046 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 308.531842 - 0: The maximum resident set size (KB) = 860768 + 0: The total amount of wall time = 292.496163 + 0: The maximum resident set size (KB) = 863856 Test 046 regional_netcdf_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/regional_2dwrtdecomp +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/regional_2dwrtdecomp Checking test 047 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2040,14 +2040,14 @@ Checking test 047 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 305.856135 - 0: The maximum resident set size (KB) = 861616 + 0: The total amount of wall time = 296.782850 + 0: The maximum resident set size (KB) = 866188 Test 047 regional_2dwrtdecomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/fv3_regional_wofs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/regional_wofs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/regional_wofs Checking test 048 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2058,14 +2058,14 @@ Checking test 048 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 385.290265 - 0: The maximum resident set size (KB) = 618484 + 0: The total amount of wall time = 374.602759 + 0: The maximum resident set size (KB) = 618860 Test 048 regional_wofs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/rap_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/rap_control Checking test 049 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2112,14 +2112,14 @@ Checking test 049 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 470.006735 - 0: The maximum resident set size (KB) = 1063124 + 0: The total amount of wall time = 455.701745 + 0: The maximum resident set size (KB) = 1065012 Test 049 rap_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_spp_sppt_shum_skeb -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/regional_spp_sppt_shum_skeb +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/regional_spp_sppt_shum_skeb Checking test 050 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2130,14 +2130,14 @@ Checking test 050 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 325.551620 - 0: The maximum resident set size (KB) = 1186252 + 0: The total amount of wall time = 327.852743 + 0: The maximum resident set size (KB) = 1186352 Test 050 regional_spp_sppt_shum_skeb PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/rap_decomp +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/rap_decomp Checking test 051 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2184,14 +2184,14 @@ Checking test 051 rap_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 479.844712 - 0: The maximum resident set size (KB) = 1011364 + 0: The total amount of wall time = 483.833359 + 0: The maximum resident set size (KB) = 1006620 Test 051 rap_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/rap_2threads +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/rap_2threads Checking test 052 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2238,14 +2238,14 @@ Checking test 052 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 476.494265 - 0: The maximum resident set size (KB) = 1134968 + 0: The total amount of wall time = 476.932618 + 0: The maximum resident set size (KB) = 1139948 Test 052 rap_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/rap_restart +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/rap_restart Checking test 053 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2284,14 +2284,14 @@ Checking test 053 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 231.328638 - 0: The maximum resident set size (KB) = 968304 + 0: The total amount of wall time = 230.832822 + 0: The maximum resident set size (KB) = 965916 Test 053 rap_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_sfcdiff -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/rap_sfcdiff +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/rap_sfcdiff Checking test 054 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2338,14 +2338,14 @@ Checking test 054 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 449.724132 - 0: The maximum resident set size (KB) = 1063232 + 0: The total amount of wall time = 488.117513 + 0: The maximum resident set size (KB) = 1067872 Test 054 rap_sfcdiff PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_sfcdiff -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/rap_sfcdiff_decomp +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/rap_sfcdiff_decomp Checking test 055 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2392,14 +2392,14 @@ Checking test 055 rap_sfcdiff_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 479.440655 - 0: The maximum resident set size (KB) = 986404 + 0: The total amount of wall time = 478.199694 + 0: The maximum resident set size (KB) = 1008976 Test 055 rap_sfcdiff_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_sfcdiff -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/rap_sfcdiff_restart +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/rap_sfcdiff_restart Checking test 056 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2438,14 +2438,14 @@ Checking test 056 rap_sfcdiff_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 341.171710 - 0: The maximum resident set size (KB) = 979760 + 0: The total amount of wall time = 342.007540 + 0: The maximum resident set size (KB) = 982780 Test 056 rap_sfcdiff_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/hrrr_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/hrrr_control Checking test 057 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2492,14 +2492,14 @@ Checking test 057 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 437.313498 - 0: The maximum resident set size (KB) = 1062392 + 0: The total amount of wall time = 437.261707 + 0: The maximum resident set size (KB) = 1061004 Test 057 hrrr_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/hrrr_control_decomp +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/hrrr_control_decomp Checking test 058 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2546,14 +2546,14 @@ Checking test 058 hrrr_control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 455.560960 - 0: The maximum resident set size (KB) = 1008680 + 0: The total amount of wall time = 455.380519 + 0: The maximum resident set size (KB) = 1004940 Test 058 hrrr_control_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/hrrr_control_2threads +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/hrrr_control_2threads Checking test 059 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2600,14 +2600,14 @@ Checking test 059 hrrr_control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 450.939901 - 0: The maximum resident set size (KB) = 1139968 + 0: The total amount of wall time = 450.141447 + 0: The maximum resident set size (KB) = 1133920 Test 059 hrrr_control_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/hrrr_control_restart +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/hrrr_control_restart Checking test 060 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2646,14 +2646,14 @@ Checking test 060 hrrr_control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 329.395811 - 0: The maximum resident set size (KB) = 987108 + 0: The total amount of wall time = 329.359664 + 0: The maximum resident set size (KB) = 987268 Test 060 hrrr_control_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_v1beta -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/rrfs_v1beta +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/rrfs_v1beta Checking test 061 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2700,14 +2700,14 @@ Checking test 061 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 446.250859 - 0: The maximum resident set size (KB) = 1057668 + 0: The total amount of wall time = 446.034525 + 0: The maximum resident set size (KB) = 1058796 Test 061 rrfs_v1beta PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_v1nssl -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/rrfs_v1nssl +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/rrfs_v1nssl Checking test 062 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2722,14 +2722,14 @@ Checking test 062 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 526.958698 - 0: The maximum resident set size (KB) = 700064 + 0: The total amount of wall time = 527.534063 + 0: The maximum resident set size (KB) = 704052 Test 062 rrfs_v1nssl PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/rrfs_v1nssl_nohailnoccn +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/rrfs_v1nssl_nohailnoccn Checking test 063 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2744,14 +2744,14 @@ Checking test 063 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 515.181762 - 0: The maximum resident set size (KB) = 763644 + 0: The total amount of wall time = 515.270579 + 0: The maximum resident set size (KB) = 755188 Test 063 rrfs_v1nssl_nohailnoccn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_hrrr_warm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/rrfs_conus13km_hrrr_warm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/rrfs_conus13km_hrrr_warm Checking test 064 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2760,14 +2760,14 @@ Checking test 064 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 123.308962 - 0: The maximum resident set size (KB) = 930356 + 0: The total amount of wall time = 122.543891 + 0: The maximum resident set size (KB) = 894052 Test 064 rrfs_conus13km_hrrr_warm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/rrfs_smoke_conus13km_hrrr_warm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/rrfs_smoke_conus13km_hrrr_warm Checking test 065 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2776,14 +2776,14 @@ Checking test 065 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 138.037692 - 0: The maximum resident set size (KB) = 959572 + 0: The total amount of wall time = 138.416823 + 0: The maximum resident set size (KB) = 962716 Test 065 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/rrfs_conus13km_radar_tten_warm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/rrfs_conus13km_radar_tten_warm Checking test 066 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2792,14 +2792,14 @@ Checking test 066 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 125.151550 - 0: The maximum resident set size (KB) = 893380 + 0: The total amount of wall time = 123.044349 + 0: The maximum resident set size (KB) = 933988 Test 066 rrfs_conus13km_radar_tten_warm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_hrrr_warm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/rrfs_conus13km_hrrr_warm_2threads +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/rrfs_conus13km_hrrr_warm_2threads Checking test 067 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2808,14 +2808,14 @@ Checking test 067 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 83.820883 - 0: The maximum resident set size (KB) = 884924 + 0: The total amount of wall time = 82.874744 + 0: The maximum resident set size (KB) = 888176 Test 067 rrfs_conus13km_hrrr_warm_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/rrfs_conus13km_radar_tten_warm_2threads +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/rrfs_conus13km_radar_tten_warm_2threads Checking test 068 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2824,14 +2824,14 @@ Checking test 068 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 84.383666 - 0: The maximum resident set size (KB) = 884932 + 0: The total amount of wall time = 83.831004 + 0: The maximum resident set size (KB) = 895424 Test 068 rrfs_conus13km_radar_tten_warm_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_csawmg -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/control_csawmg +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/control_csawmg Checking test 069 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2842,14 +2842,14 @@ Checking test 069 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 342.191109 - 0: The maximum resident set size (KB) = 721808 + 0: The total amount of wall time = 343.730068 + 0: The maximum resident set size (KB) = 693032 Test 069 control_csawmg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_csawmgt -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/control_csawmgt +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/control_csawmgt Checking test 070 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2860,14 +2860,14 @@ Checking test 070 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 336.491135 - 0: The maximum resident set size (KB) = 731776 + 0: The total amount of wall time = 337.007592 + 0: The maximum resident set size (KB) = 728932 Test 070 control_csawmgt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_ras -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/control_ras +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/control_ras Checking test 071 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2878,54 +2878,54 @@ Checking test 071 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 182.011890 - 0: The maximum resident set size (KB) = 708988 + 0: The total amount of wall time = 181.134958 + 0: The maximum resident set size (KB) = 695536 Test 071 control_ras PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_wam -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/control_wam +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/control_wam Checking test 072 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 111.242883 - 0: The maximum resident set size (KB) = 639604 + 0: The total amount of wall time = 113.624897 + 0: The maximum resident set size (KB) = 642432 Test 072 control_wam PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/rrfs_conus13km_hrrr_warm_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/rrfs_conus13km_hrrr_warm_debug Checking test 073 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 738.685075 - 0: The maximum resident set size (KB) = 956664 + 0: The total amount of wall time = 705.955586 + 0: The maximum resident set size (KB) = 954972 Test 073 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/rrfs_conus13km_radar_tten_warm_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/rrfs_conus13km_radar_tten_warm_debug Checking test 074 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 739.631256 - 0: The maximum resident set size (KB) = 921128 + 0: The total amount of wall time = 727.628669 + 0: The maximum resident set size (KB) = 957564 Test 074 rrfs_conus13km_radar_tten_warm_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_CubedSphereGrid_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/control_CubedSphereGrid_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/control_CubedSphereGrid_debug Checking test 075 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2952,334 +2952,334 @@ Checking test 075 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 169.145116 - 0: The maximum resident set size (KB) = 794300 + 0: The total amount of wall time = 171.799661 + 0: The maximum resident set size (KB) = 796160 Test 075 control_CubedSphereGrid_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/control_wrtGauss_netcdf_parallel_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/control_wrtGauss_netcdf_parallel_debug Checking test 076 control_wrtGauss_netcdf_parallel_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 154.411665 - 0: The maximum resident set size (KB) = 795772 + 0: The total amount of wall time = 158.707090 + 0: The maximum resident set size (KB) = 793356 Test 076 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_stochy_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/control_stochy_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/control_stochy_debug Checking test 077 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 177.933680 - 0: The maximum resident set size (KB) = 800084 + 0: The total amount of wall time = 174.770911 + 0: The maximum resident set size (KB) = 795484 Test 077 control_stochy_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_lndp_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/control_lndp_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/control_lndp_debug Checking test 078 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 160.612258 - 0: The maximum resident set size (KB) = 798284 + 0: The total amount of wall time = 158.271845 + 0: The maximum resident set size (KB) = 799584 Test 078 control_lndp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_csawmg_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/control_csawmg_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/control_csawmg_debug Checking test 079 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 240.618355 - 0: The maximum resident set size (KB) = 845452 + 0: The total amount of wall time = 237.797110 + 0: The maximum resident set size (KB) = 847764 Test 079 control_csawmg_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_csawmgt_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/control_csawmgt_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/control_csawmgt_debug Checking test 080 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 241.038969 - 0: The maximum resident set size (KB) = 841756 + 0: The total amount of wall time = 232.705243 + 0: The maximum resident set size (KB) = 849464 Test 080 control_csawmgt_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_ras_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/control_ras_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/control_ras_debug Checking test 081 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 161.330233 - 0: The maximum resident set size (KB) = 812244 + 0: The total amount of wall time = 163.308561 + 0: The maximum resident set size (KB) = 808400 Test 081 control_ras_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_diag_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/control_diag_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/control_diag_debug Checking test 082 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 163.304271 - 0: The maximum resident set size (KB) = 850332 + 0: The total amount of wall time = 164.825735 + 0: The maximum resident set size (KB) = 848228 Test 082 control_diag_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_debug_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/control_debug_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/control_debug_p8 Checking test 083 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 179.228768 - 0: The maximum resident set size (KB) = 1618184 + 0: The total amount of wall time = 180.787678 + 0: The maximum resident set size (KB) = 1631056 Test 083 control_debug_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/regional_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/regional_debug Checking test 084 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1006.940045 - 0: The maximum resident set size (KB) = 871760 + 0: The total amount of wall time = 975.635718 + 0: The maximum resident set size (KB) = 877424 Test 084 regional_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/rap_control_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/rap_control_debug Checking test 085 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.400406 - 0: The maximum resident set size (KB) = 1179936 + 0: The total amount of wall time = 286.546009 + 0: The maximum resident set size (KB) = 1178540 Test 085 rap_control_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/hrrr_control_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/hrrr_control_debug Checking test 086 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.759065 - 0: The maximum resident set size (KB) = 1166508 + 0: The total amount of wall time = 277.788702 + 0: The maximum resident set size (KB) = 1168224 Test 086 hrrr_control_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/rap_unified_drag_suite_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/rap_unified_drag_suite_debug Checking test 087 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 283.087696 - 0: The maximum resident set size (KB) = 1176288 + 0: The total amount of wall time = 289.165553 + 0: The maximum resident set size (KB) = 1145768 Test 087 rap_unified_drag_suite_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_diag_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/rap_diag_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/rap_diag_debug Checking test 088 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 295.295831 - 0: The maximum resident set size (KB) = 1260580 + 0: The total amount of wall time = 299.737904 + 0: The maximum resident set size (KB) = 1253704 Test 088 rap_diag_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/rap_cires_ugwp_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/rap_cires_ugwp_debug Checking test 089 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 287.620413 - 0: The maximum resident set size (KB) = 1179656 + 0: The total amount of wall time = 312.201426 + 0: The maximum resident set size (KB) = 1177284 Test 089 rap_cires_ugwp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/rap_unified_ugwp_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/rap_unified_ugwp_debug Checking test 090 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 290.957226 - 0: The maximum resident set size (KB) = 1169440 + 0: The total amount of wall time = 285.204376 + 0: The maximum resident set size (KB) = 1176236 Test 090 rap_unified_ugwp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_lndp_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/rap_lndp_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/rap_lndp_debug Checking test 091 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 286.766487 - 0: The maximum resident set size (KB) = 1173860 + 0: The total amount of wall time = 291.461704 + 0: The maximum resident set size (KB) = 1140172 Test 091 rap_lndp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_flake_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/rap_flake_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/rap_flake_debug Checking test 092 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 285.324251 - 0: The maximum resident set size (KB) = 1179884 + 0: The total amount of wall time = 281.365627 + 0: The maximum resident set size (KB) = 1173948 Test 092 rap_flake_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_progcld_thompson_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/rap_progcld_thompson_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/rap_progcld_thompson_debug Checking test 093 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 285.223229 - 0: The maximum resident set size (KB) = 1173900 + 0: The total amount of wall time = 280.968825 + 0: The maximum resident set size (KB) = 1176052 Test 093 rap_progcld_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_noah_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/rap_noah_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/rap_noah_debug Checking test 094 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.384016 - 0: The maximum resident set size (KB) = 1171928 + 0: The total amount of wall time = 275.312873 + 0: The maximum resident set size (KB) = 1173684 Test 094 rap_noah_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_sfcdiff_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/rap_sfcdiff_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/rap_sfcdiff_debug Checking test 095 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 287.311172 - 0: The maximum resident set size (KB) = 1174656 + 0: The total amount of wall time = 281.455643 + 0: The maximum resident set size (KB) = 1173216 Test 095 rap_sfcdiff_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/rap_noah_sfcdiff_cires_ugwp_debug Checking test 096 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 469.958150 - 0: The maximum resident set size (KB) = 1173580 + 0: The total amount of wall time = 471.633804 + 0: The maximum resident set size (KB) = 1172944 Test 096 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_v1beta_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/rrfs_v1beta_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/rrfs_v1beta_debug Checking test 097 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.051417 - 0: The maximum resident set size (KB) = 1166436 + 0: The total amount of wall time = 284.273984 + 0: The maximum resident set size (KB) = 1143352 Test 097 rrfs_v1beta_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_wam_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/control_wam_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/control_wam_debug Checking test 098 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 291.513346 - 0: The maximum resident set size (KB) = 528336 + 0: The total amount of wall time = 289.649834 + 0: The maximum resident set size (KB) = 523152 Test 098 control_wam_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 099 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3290,14 +3290,14 @@ Checking test 099 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 301.820534 - 0: The maximum resident set size (KB) = 1074828 + 0: The total amount of wall time = 301.310465 + 0: The maximum resident set size (KB) = 1069324 Test 099 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/rap_control_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/rap_control_dyn32_phy32 Checking test 100 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3344,14 +3344,14 @@ Checking test 100 rap_control_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 370.170451 - 0: The maximum resident set size (KB) = 1008784 + 0: The total amount of wall time = 368.959958 + 0: The maximum resident set size (KB) = 1010940 Test 100 rap_control_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/hrrr_control_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/hrrr_control_dyn32_phy32 Checking test 101 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3398,14 +3398,14 @@ Checking test 101 hrrr_control_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 193.055348 - 0: The maximum resident set size (KB) = 956508 + 0: The total amount of wall time = 192.594749 + 0: The maximum resident set size (KB) = 951596 Test 101 hrrr_control_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/rap_2threads_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/rap_2threads_dyn32_phy32 Checking test 102 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3452,14 +3452,14 @@ Checking test 102 rap_2threads_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 391.552047 - 0: The maximum resident set size (KB) = 1024064 + 0: The total amount of wall time = 389.487877 + 0: The maximum resident set size (KB) = 1021892 Test 102 rap_2threads_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/hrrr_control_2threads_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/hrrr_control_2threads_dyn32_phy32 Checking test 103 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3506,14 +3506,14 @@ Checking test 103 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 207.870280 - 0: The maximum resident set size (KB) = 1015860 + 0: The total amount of wall time = 208.095408 + 0: The maximum resident set size (KB) = 1007612 Test 103 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/hrrr_control_decomp_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/hrrr_control_decomp_dyn32_phy32 Checking test 104 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3560,14 +3560,14 @@ Checking test 104 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 204.286911 - 0: The maximum resident set size (KB) = 891900 + 0: The total amount of wall time = 204.322636 + 0: The maximum resident set size (KB) = 890380 Test 104 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/rap_restart_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/rap_restart_dyn32_phy32 Checking test 105 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3606,14 +3606,14 @@ Checking test 105 rap_restart_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 279.219505 - 0: The maximum resident set size (KB) = 940748 + 0: The total amount of wall time = 298.751362 + 0: The maximum resident set size (KB) = 951784 Test 105 rap_restart_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/hrrr_control_restart_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/hrrr_control_restart_dyn32_phy32 Checking test 106 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3652,14 +3652,14 @@ Checking test 106 hrrr_control_restart_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 99.128588 - 0: The maximum resident set size (KB) = 854680 + 0: The total amount of wall time = 99.289282 + 0: The maximum resident set size (KB) = 821444 Test 106 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_dyn64_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/rap_control_dyn64_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/rap_control_dyn64_phy32 Checking test 107 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3706,81 +3706,81 @@ Checking test 107 rap_control_dyn64_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 238.224368 - 0: The maximum resident set size (KB) = 957228 + 0: The total amount of wall time = 237.430960 + 0: The maximum resident set size (KB) = 964964 Test 107 rap_control_dyn64_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_debug_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/rap_control_debug_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/rap_control_debug_dyn32_phy32 Checking test 108 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 284.414481 - 0: The maximum resident set size (KB) = 1062692 + 0: The total amount of wall time = 286.329180 + 0: The maximum resident set size (KB) = 1032008 Test 108 rap_control_debug_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/hrrr_control_debug_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/hrrr_control_debug_dyn32_phy32 Checking test 109 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 283.448279 - 0: The maximum resident set size (KB) = 1052356 + 0: The total amount of wall time = 293.856772 + 0: The maximum resident set size (KB) = 1059268 Test 109 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_debug_dyn64_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/rap_control_dyn64_phy32_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/rap_control_dyn64_phy32_debug Checking test 110 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 282.930436 - 0: The maximum resident set size (KB) = 1112248 + 0: The total amount of wall time = 282.959249 + 0: The maximum resident set size (KB) = 1112808 Test 110 rap_control_dyn64_phy32_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/hafs_regional_atm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/hafs_regional_atm Checking test 111 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 251.515918 - 0: The maximum resident set size (KB) = 1032724 + 0: The total amount of wall time = 253.305299 + 0: The maximum resident set size (KB) = 1027872 Test 111 hafs_regional_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/hafs_regional_atm_thompson_gfdlsf +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/hafs_regional_atm_thompson_gfdlsf Checking test 112 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 408.314318 - 0: The maximum resident set size (KB) = 1396764 + 0: The total amount of wall time = 409.651855 + 0: The maximum resident set size (KB) = 1401876 Test 112 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_atm_ocn -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/hafs_regional_atm_ocn +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/hafs_regional_atm_ocn Checking test 113 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3789,14 +3789,14 @@ Checking test 113 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 359.424719 - 0: The maximum resident set size (KB) = 1210412 + 0: The total amount of wall time = 364.836168 + 0: The maximum resident set size (KB) = 1215680 Test 113 hafs_regional_atm_ocn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_atm_wav -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/hafs_regional_atm_wav +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/hafs_regional_atm_wav Checking test 114 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3805,14 +3805,14 @@ Checking test 114 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 716.419169 - 0: The maximum resident set size (KB) = 1245504 + 0: The total amount of wall time = 716.873719 + 0: The maximum resident set size (KB) = 1236752 Test 114 hafs_regional_atm_wav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_atm_ocn_wav -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/hafs_regional_atm_ocn_wav +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/hafs_regional_atm_ocn_wav Checking test 115 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3823,28 +3823,28 @@ Checking test 115 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 817.188520 - 0: The maximum resident set size (KB) = 1250608 + 0: The total amount of wall time = 830.060886 + 0: The maximum resident set size (KB) = 1257352 Test 115 hafs_regional_atm_ocn_wav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_1nest_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/hafs_regional_1nest_atm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/hafs_regional_1nest_atm Checking test 116 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 358.525407 - 0: The maximum resident set size (KB) = 499312 + 0: The total amount of wall time = 404.183022 + 0: The maximum resident set size (KB) = 506404 Test 116 hafs_regional_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/hafs_regional_telescopic_2nests_atm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/hafs_regional_telescopic_2nests_atm Checking test 117 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3853,28 +3853,28 @@ Checking test 117 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 414.835030 - 0: The maximum resident set size (KB) = 513816 + 0: The total amount of wall time = 410.250389 + 0: The maximum resident set size (KB) = 517512 Test 117 hafs_regional_telescopic_2nests_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_global_1nest_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/hafs_global_1nest_atm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/hafs_global_1nest_atm Checking test 118 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 171.917637 - 0: The maximum resident set size (KB) = 351396 + 0: The total amount of wall time = 171.449528 + 0: The maximum resident set size (KB) = 345540 Test 118 hafs_global_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_global_multiple_4nests_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/hafs_global_multiple_4nests_atm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/hafs_global_multiple_4nests_atm Checking test 119 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3892,14 +3892,14 @@ Checking test 119 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 466.833907 - 0: The maximum resident set size (KB) = 425484 + 0: The total amount of wall time = 467.473556 + 0: The maximum resident set size (KB) = 426360 Test 119 hafs_global_multiple_4nests_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/hafs_regional_specified_moving_1nest_atm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/hafs_regional_specified_moving_1nest_atm Checking test 120 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3908,28 +3908,28 @@ Checking test 120 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 225.416914 - 0: The maximum resident set size (KB) = 513788 + 0: The total amount of wall time = 224.804406 + 0: The maximum resident set size (KB) = 514944 Test 120 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/hafs_regional_storm_following_1nest_atm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/hafs_regional_storm_following_1nest_atm Checking test 121 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 214.013618 - 0: The maximum resident set size (KB) = 517524 + 0: The total amount of wall time = 214.979733 + 0: The maximum resident set size (KB) = 514192 Test 121 hafs_regional_storm_following_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/hafs_regional_storm_following_1nest_atm_ocn +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/hafs_regional_storm_following_1nest_atm_ocn Checking test 122 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3938,42 +3938,42 @@ Checking test 122 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 281.807191 - 0: The maximum resident set size (KB) = 555080 + 0: The total amount of wall time = 287.454672 + 0: The maximum resident set size (KB) = 552000 Test 122 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_global_storm_following_1nest_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/hafs_global_storm_following_1nest_atm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/hafs_global_storm_following_1nest_atm Checking test 123 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 69.317087 - 0: The maximum resident set size (KB) = 366224 + 0: The total amount of wall time = 67.577165 + 0: The maximum resident set size (KB) = 367772 Test 123 hafs_global_storm_following_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 124 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 802.550765 - 0: The maximum resident set size (KB) = 578556 + 0: The total amount of wall time = 791.905147 + 0: The maximum resident set size (KB) = 585276 Test 124 hafs_regional_storm_following_1nest_atm_ocn_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 125 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3984,14 +3984,14 @@ Checking test 125 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 575.396390 - 0: The maximum resident set size (KB) = 612512 + 0: The total amount of wall time = 575.126058 + 0: The maximum resident set size (KB) = 632696 Test 125 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_docn -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/hafs_regional_docn +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/hafs_regional_docn Checking test 126 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3999,14 +3999,14 @@ Checking test 126 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 345.259168 - 0: The maximum resident set size (KB) = 1218640 + 0: The total amount of wall time = 341.968252 + 0: The maximum resident set size (KB) = 1217228 Test 126 hafs_regional_docn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_docn_oisst -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/hafs_regional_docn_oisst +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/hafs_regional_docn_oisst Checking test 127 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4014,131 +4014,131 @@ Checking test 127 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 353.169097 - 0: The maximum resident set size (KB) = 1204680 + 0: The total amount of wall time = 342.809793 + 0: The maximum resident set size (KB) = 1201764 Test 127 hafs_regional_docn_oisst PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_datm_cdeps -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/hafs_regional_datm_cdeps +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/hafs_regional_datm_cdeps Checking test 128 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 932.304018 - 0: The maximum resident set size (KB) = 1012848 + 0: The total amount of wall time = 937.467564 + 0: The maximum resident set size (KB) = 1041368 Test 128 hafs_regional_datm_cdeps PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/datm_cdeps_control_cfsr +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/datm_cdeps_control_cfsr Checking test 129 datm_cdeps_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 149.166983 - 0: The maximum resident set size (KB) = 1062748 + 0: The total amount of wall time = 147.623312 + 0: The maximum resident set size (KB) = 1054268 Test 129 datm_cdeps_control_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/datm_cdeps_restart_cfsr +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/datm_cdeps_restart_cfsr Checking test 130 datm_cdeps_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 92.534727 - 0: The maximum resident set size (KB) = 1009056 + 0: The total amount of wall time = 92.227863 + 0: The maximum resident set size (KB) = 988820 Test 130 datm_cdeps_restart_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_control_gefs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/datm_cdeps_control_gefs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/datm_cdeps_control_gefs Checking test 131 datm_cdeps_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 142.486254 - 0: The maximum resident set size (KB) = 969200 + 0: The total amount of wall time = 143.431946 + 0: The maximum resident set size (KB) = 965576 Test 131 datm_cdeps_control_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_iau_gefs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/datm_cdeps_iau_gefs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/datm_cdeps_iau_gefs Checking test 132 datm_cdeps_iau_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 142.123287 - 0: The maximum resident set size (KB) = 968880 + 0: The total amount of wall time = 147.077453 + 0: The maximum resident set size (KB) = 961484 Test 132 datm_cdeps_iau_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_stochy_gefs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/datm_cdeps_stochy_gefs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/datm_cdeps_stochy_gefs Checking test 133 datm_cdeps_stochy_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 149.891185 - 0: The maximum resident set size (KB) = 960932 + 0: The total amount of wall time = 146.306037 + 0: The maximum resident set size (KB) = 965552 Test 133 datm_cdeps_stochy_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_ciceC_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/datm_cdeps_ciceC_cfsr +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/datm_cdeps_ciceC_cfsr Checking test 134 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 149.986746 - 0: The maximum resident set size (KB) = 1061460 + 0: The total amount of wall time = 147.638979 + 0: The maximum resident set size (KB) = 1068704 Test 134 datm_cdeps_ciceC_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_bulk_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/datm_cdeps_bulk_cfsr +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/datm_cdeps_bulk_cfsr Checking test 135 datm_cdeps_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.100654 - 0: The maximum resident set size (KB) = 1067416 + 0: The total amount of wall time = 148.578776 + 0: The maximum resident set size (KB) = 1065588 Test 135 datm_cdeps_bulk_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_bulk_gefs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/datm_cdeps_bulk_gefs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/datm_cdeps_bulk_gefs Checking test 136 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 144.125163 - 0: The maximum resident set size (KB) = 971584 + 0: The total amount of wall time = 144.171353 + 0: The maximum resident set size (KB) = 935492 Test 136 datm_cdeps_bulk_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_mx025_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/datm_cdeps_mx025_cfsr +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/datm_cdeps_mx025_cfsr Checking test 137 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4147,14 +4147,14 @@ Checking test 137 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 453.988864 - 0: The maximum resident set size (KB) = 855060 + 0: The total amount of wall time = 435.794543 + 0: The maximum resident set size (KB) = 881308 Test 137 datm_cdeps_mx025_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_mx025_gefs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/datm_cdeps_mx025_gefs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/datm_cdeps_mx025_gefs Checking test 138 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -4163,64 +4163,64 @@ Checking test 138 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 442.983549 - 0: The maximum resident set size (KB) = 928216 + 0: The total amount of wall time = 435.962314 + 0: The maximum resident set size (KB) = 928392 Test 138 datm_cdeps_mx025_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/datm_cdeps_multiple_files_cfsr +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/datm_cdeps_multiple_files_cfsr Checking test 139 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 149.234486 - 0: The maximum resident set size (KB) = 1075148 + 0: The total amount of wall time = 153.227510 + 0: The maximum resident set size (KB) = 1069332 Test 139 datm_cdeps_multiple_files_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/datm_cdeps_3072x1536_cfsr +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/datm_cdeps_3072x1536_cfsr Checking test 140 datm_cdeps_3072x1536_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 200.829956 - 0: The maximum resident set size (KB) = 2372700 + 0: The total amount of wall time = 201.635123 + 0: The maximum resident set size (KB) = 2288588 Test 140 datm_cdeps_3072x1536_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_gfs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/datm_cdeps_gfs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/datm_cdeps_gfs Checking test 141 datm_cdeps_gfs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 198.887165 - 0: The maximum resident set size (KB) = 2361248 + 0: The total amount of wall time = 201.311013 + 0: The maximum resident set size (KB) = 2309632 Test 141 datm_cdeps_gfs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_debug_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/datm_cdeps_debug_cfsr +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/datm_cdeps_debug_cfsr Checking test 142 datm_cdeps_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 446.696684 - 0: The maximum resident set size (KB) = 1003216 + 0: The total amount of wall time = 459.042073 + 0: The maximum resident set size (KB) = 996748 Test 142 datm_cdeps_debug_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_lnd_gswp3 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/datm_cdeps_lnd_gswp3 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/datm_cdeps_lnd_gswp3 Checking test 143 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4229,14 +4229,14 @@ Checking test 143 datm_cdeps_lnd_gswp3 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.301820 - 0: The maximum resident set size (KB) = 257540 + 0: The total amount of wall time = 7.198613 + 0: The maximum resident set size (KB) = 260648 Test 143 datm_cdeps_lnd_gswp3 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_lnd_gswp3 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/datm_cdeps_lnd_gswp3_rst +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/datm_cdeps_lnd_gswp3_rst Checking test 144 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4245,14 +4245,14 @@ Checking test 144 datm_cdeps_lnd_gswp3_rst 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.841672 - 0: The maximum resident set size (KB) = 262932 + 0: The total amount of wall time = 12.219536 + 0: The maximum resident set size (KB) = 255024 Test 144 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8_atmlnd_sbs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/control_p8_atmlnd_sbs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/control_p8_atmlnd_sbs Checking test 145 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4337,14 +4337,14 @@ Checking test 145 control_p8_atmlnd_sbs 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.694340 - 0: The maximum resident set size (KB) = 1622844 + 0: The total amount of wall time = 202.051679 + 0: The maximum resident set size (KB) = 1621520 Test 145 control_p8_atmlnd_sbs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_atmwav -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/control_atmwav +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/control_atmwav Checking test 146 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4388,14 +4388,14 @@ Checking test 146 control_atmwav results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 87.589632 - 0: The maximum resident set size (KB) = 660844 + 0: The total amount of wall time = 85.906079 + 0: The maximum resident set size (KB) = 660500 Test 146 control_atmwav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/atmaero_control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/atmaero_control_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/atmaero_control_p8 Checking test 147 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4439,14 +4439,14 @@ Checking test 147 atmaero_control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 225.654858 - 0: The maximum resident set size (KB) = 2976544 + 0: The total amount of wall time = 228.362055 + 0: The maximum resident set size (KB) = 2915800 Test 147 atmaero_control_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/atmaero_control_p8_rad -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/atmaero_control_p8_rad +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/atmaero_control_p8_rad Checking test 148 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4490,14 +4490,14 @@ Checking test 148 atmaero_control_p8_rad results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 278.321421 - 0: The maximum resident set size (KB) = 3048100 + 0: The total amount of wall time = 282.448906 + 0: The maximum resident set size (KB) = 2989628 Test 148 atmaero_control_p8_rad PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/atmaero_control_p8_rad_micro -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/atmaero_control_p8_rad_micro +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/atmaero_control_p8_rad_micro Checking test 149 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4541,14 +4541,14 @@ Checking test 149 atmaero_control_p8_rad_micro results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 278.927652 - 0: The maximum resident set size (KB) = 3054860 + 0: The total amount of wall time = 280.531839 + 0: The maximum resident set size (KB) = 3059440 Test 149 atmaero_control_p8_rad_micro PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_atmaq -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/regional_atmaq +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/regional_atmaq Checking test 150 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4564,14 +4564,14 @@ Checking test 150 regional_atmaq results .... Comparing RESTART/phy_data.nc .........OK Comparing RESTART/sfc_data.nc .........OK - 0: The total amount of wall time = 584.046549 - 0: The maximum resident set size (KB) = 1555124 + 0: The total amount of wall time = 588.780541 + 0: The maximum resident set size (KB) = 1562432 Test 150 regional_atmaq PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_atmaq_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_357053/regional_atmaq_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/regional_atmaq_debug Checking test 151 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4585,12 +4585,12 @@ Checking test 151 regional_atmaq_debug results .... Comparing RESTART/phy_data.nc .........OK Comparing RESTART/sfc_data.nc .........OK - 0: The total amount of wall time = 1287.722366 - 0: The maximum resident set size (KB) = 1505348 + 0: The total amount of wall time = 1328.777308 + 0: The maximum resident set size (KB) = 1510572 Test 151 regional_atmaq_debug PASS REGRESSION TEST WAS SUCCESSFUL -Fri Feb 17 03:33:06 CST 2023 -Elapsed time: 01h:39m:51s. Have a nice day! +Mon Feb 20 19:12:44 CST 2023 +Elapsed time: 01h:10m:52s. Have a nice day! diff --git a/tests/RegressionTests_wcoss2.intel.log b/tests/RegressionTests_wcoss2.intel.log index 937d8388e2a..62800ca20c3 100644 --- a/tests/RegressionTests_wcoss2.intel.log +++ b/tests/RegressionTests_wcoss2.intel.log @@ -1,31 +1,31 @@ -Fri Feb 17 16:41:51 UTC 2023 +Tue Feb 21 17:16:07 UTC 2023 Start Regression test -Compile 001 elapsed time 585 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 588 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 999 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 1097 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 005 elapsed time 622 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 720 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 836 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 008 elapsed time 849 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 808 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 926 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 011 elapsed time 156 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 012 elapsed time 438 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 446 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 226 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 149 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 525 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 185 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 792 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 019 elapsed time 481 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 020 elapsed time 481 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 576 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 022 elapsed time 310 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 001 elapsed time 592 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 689 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 1032 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 545 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 005 elapsed time 1120 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 487 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 479 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 501 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 460 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 565 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 011 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 012 elapsed time 479 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 676 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 275 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 168 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 827 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 017 elapsed time 328 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 766 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 019 elapsed time 469 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 020 elapsed time 654 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 569 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 022 elapsed time 172 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8_mixedmode -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/cpld_control_p8_mixedmode +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -90,14 +90,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 352.179537 -The maximum resident set size (KB) = 2953736 +The total amount of wall time = 344.192018 +The maximum resident set size (KB) = 2953660 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/cpld_control_p8 Checking test 002 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -162,14 +162,14 @@ Checking test 002 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 396.020238 -The maximum resident set size (KB) = 2981952 +The total amount of wall time = 394.425149 +The maximum resident set size (KB) = 2983812 Test 002 cpld_control_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/cpld_restart_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/cpld_restart_p8 Checking test 003 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -222,14 +222,14 @@ Checking test 003 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 258.355702 -The maximum resident set size (KB) = 2867080 +The total amount of wall time = 238.679876 +The maximum resident set size (KB) = 2869716 Test 003 cpld_restart_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/cpld_2threads_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/cpld_2threads_p8 Checking test 004 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -282,14 +282,14 @@ Checking test 004 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 381.916437 -The maximum resident set size (KB) = 3283912 +The total amount of wall time = 375.291002 +The maximum resident set size (KB) = 3288660 Test 004 cpld_2threads_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/cpld_decomp_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/cpld_decomp_p8 Checking test 005 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -342,14 +342,14 @@ Checking test 005 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 397.967305 -The maximum resident set size (KB) = 2978432 +The total amount of wall time = 393.804255 +The maximum resident set size (KB) = 2978484 Test 005 cpld_decomp_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/cpld_mpi_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/cpld_mpi_p8 Checking test 006 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -402,14 +402,14 @@ Checking test 006 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 333.621975 -The maximum resident set size (KB) = 2911684 +The total amount of wall time = 326.943350 +The maximum resident set size (KB) = 2916352 Test 006 cpld_mpi_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_ciceC_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/cpld_control_ciceC_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/cpld_control_ciceC_p8 Checking test 007 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -474,14 +474,14 @@ Checking test 007 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 393.993278 -The maximum resident set size (KB) = 2984820 +The total amount of wall time = 394.826444 +The maximum resident set size (KB) = 2987248 Test 007 cpld_control_ciceC_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_bmark_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/cpld_bmark_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/cpld_bmark_p8 Checking test 008 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -529,14 +529,14 @@ Checking test 008 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 1069.419888 -The maximum resident set size (KB) = 3917496 +The total amount of wall time = 927.334311 +The maximum resident set size (KB) = 3915996 Test 008 cpld_bmark_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_bmark_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/cpld_restart_bmark_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/cpld_restart_bmark_p8 Checking test 009 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -584,14 +584,14 @@ Checking test 009 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 702.017307 -The maximum resident set size (KB) = 3883108 +The total amount of wall time = 725.415497 +The maximum resident set size (KB) = 3883852 Test 009 cpld_restart_bmark_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/cpld_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/cpld_control_noaero_p8 Checking test 010 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -655,14 +655,14 @@ Checking test 010 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 501.031157 -The maximum resident set size (KB) = 1579760 +The total amount of wall time = 289.497411 +The maximum resident set size (KB) = 1577320 Test 010 cpld_control_noaero_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/cpld_control_nowave_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/cpld_control_nowave_noaero_p8 Checking test 011 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -724,14 +724,14 @@ Checking test 011 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 480.426314 -The maximum resident set size (KB) = 1623096 +The total amount of wall time = 304.296686 +The maximum resident set size (KB) = 1626724 Test 011 cpld_control_nowave_noaero_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/cpld_control_noaero_p8_agrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/cpld_control_noaero_p8_agrid Checking test 012 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -793,14 +793,14 @@ Checking test 012 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 511.671791 -The maximum resident set size (KB) = 1621048 +The total amount of wall time = 315.552704 +The maximum resident set size (KB) = 1620760 Test 012 cpld_control_noaero_p8_agrid PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/cpld_control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/cpld_control_c48 Checking test 013 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -850,14 +850,14 @@ Checking test 013 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 446.597117 -The maximum resident set size (KB) = 2631580 +The total amount of wall time = 440.828358 +The maximum resident set size (KB) = 2630836 Test 013 cpld_control_c48 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/cpld_warmstart_c48 Checking test 014 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -907,14 +907,14 @@ Checking test 014 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 128.336460 -The maximum resident set size (KB) = 2644572 +The total amount of wall time = 127.346687 +The maximum resident set size (KB) = 2648336 Test 014 cpld_warmstart_c48 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/cpld_restart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/cpld_restart_c48 Checking test 015 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -964,14 +964,14 @@ Checking test 015 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 87.519128 -The maximum resident set size (KB) = 2058660 +The total amount of wall time = 72.898869 +The maximum resident set size (KB) = 2061608 Test 015 cpld_restart_c48 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_CubedSphereGrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/control_CubedSphereGrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/control_CubedSphereGrid Checking test 016 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -998,14 +998,14 @@ Checking test 016 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 128.898276 -The maximum resident set size (KB) = 520748 +The total amount of wall time = 128.253829 +The maximum resident set size (KB) = 518332 Test 016 control_CubedSphereGrid PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_latlon -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/control_latlon +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/control_latlon Checking test 017 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1016,14 +1016,14 @@ Checking test 017 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 131.266234 -The maximum resident set size (KB) = 519072 +The total amount of wall time = 130.363467 +The maximum resident set size (KB) = 521352 Test 017 control_latlon PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/control_wrtGauss_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/control_wrtGauss_netcdf_parallel Checking test 018 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1034,14 +1034,14 @@ Checking test 018 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 137.800108 -The maximum resident set size (KB) = 520556 +The total amount of wall time = 133.032563 +The maximum resident set size (KB) = 519632 Test 018 control_wrtGauss_netcdf_parallel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/control_c48 Checking test 019 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1080,14 +1080,14 @@ Checking test 019 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 327.795034 -The maximum resident set size (KB) = 672788 +The total amount of wall time = 326.100480 +The maximum resident set size (KB) = 672068 Test 019 control_c48 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_c192 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/control_c192 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/control_c192 Checking test 020 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1098,14 +1098,14 @@ Checking test 020 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 539.225787 -The maximum resident set size (KB) = 617732 +The total amount of wall time = 535.896446 +The maximum resident set size (KB) = 616600 Test 020 control_c192 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_c384 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/control_c384 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/control_c384 Checking test 021 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1116,14 +1116,14 @@ Checking test 021 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 577.024992 -The maximum resident set size (KB) = 891428 +The total amount of wall time = 574.576150 +The maximum resident set size (KB) = 889664 Test 021 control_c384 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_c384gdas -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/control_c384gdas +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/control_c384gdas Checking test 022 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1166,14 +1166,14 @@ Checking test 022 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 502.090451 -The maximum resident set size (KB) = 1021040 +The total amount of wall time = 502.808547 +The maximum resident set size (KB) = 1018852 Test 022 control_c384gdas PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/control_stochy Checking test 023 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1184,28 +1184,28 @@ Checking test 023 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 93.551246 -The maximum resident set size (KB) = 519664 +The total amount of wall time = 93.090478 +The maximum resident set size (KB) = 520904 Test 023 control_stochy PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/control_stochy_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/control_stochy_restart Checking test 024 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 46.782073 -The maximum resident set size (KB) = 293448 +The total amount of wall time = 47.752783 +The maximum resident set size (KB) = 291500 Test 024 control_stochy_restart PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/control_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/control_lndp Checking test 025 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1216,14 +1216,14 @@ Checking test 025 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 85.953911 -The maximum resident set size (KB) = 523208 +The total amount of wall time = 81.571634 +The maximum resident set size (KB) = 520068 Test 025 control_lndp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_iovr4 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/control_iovr4 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/control_iovr4 Checking test 026 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1238,14 +1238,14 @@ Checking test 026 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 137.215556 -The maximum resident set size (KB) = 522944 +The total amount of wall time = 133.323145 +The maximum resident set size (KB) = 519732 Test 026 control_iovr4 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_iovr5 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/control_iovr5 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/control_iovr5 Checking test 027 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1260,14 +1260,14 @@ Checking test 027 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 134.773658 -The maximum resident set size (KB) = 515876 +The total amount of wall time = 134.694274 +The maximum resident set size (KB) = 522732 Test 027 control_iovr5 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/control_p8 Checking test 028 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1314,14 +1314,14 @@ Checking test 028 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 182.701315 -The maximum resident set size (KB) = 1489344 +The total amount of wall time = 184.978841 +The maximum resident set size (KB) = 1488360 Test 028 control_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/control_p8_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/control_p8_lndp Checking test 029 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1340,14 +1340,14 @@ Checking test 029 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 324.124095 -The maximum resident set size (KB) = 1483204 +The total amount of wall time = 327.909835 +The maximum resident set size (KB) = 1487004 Test 029 control_p8_lndp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/control_restart_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/control_restart_p8 Checking test 030 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1386,14 +1386,14 @@ Checking test 030 control_restart_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 105.536999 -The maximum resident set size (KB) = 655836 +The total amount of wall time = 103.242602 +The maximum resident set size (KB) = 655684 Test 030 control_restart_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/control_decomp_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/control_decomp_p8 Checking test 031 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1436,14 +1436,14 @@ Checking test 031 control_decomp_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 187.286358 -The maximum resident set size (KB) = 1480920 +The total amount of wall time = 188.354868 +The maximum resident set size (KB) = 1483364 Test 031 control_decomp_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/control_2threads_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/control_2threads_p8 Checking test 032 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1486,14 +1486,14 @@ Checking test 032 control_2threads_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 162.567983 -The maximum resident set size (KB) = 1567072 +The total amount of wall time = 166.400458 +The maximum resident set size (KB) = 1575864 Test 032 control_2threads_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8_rrtmgp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/control_p8_rrtmgp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/control_p8_rrtmgp Checking test 033 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1540,14 +1540,14 @@ Checking test 033 control_p8_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 236.780746 -The maximum resident set size (KB) = 1558960 +The total amount of wall time = 239.071287 +The maximum resident set size (KB) = 1547540 Test 033 control_p8_rrtmgp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/merra2_thompson -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/merra2_thompson +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/merra2_thompson Checking test 034 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1594,14 +1594,14 @@ Checking test 034 merra2_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 206.300015 -The maximum resident set size (KB) = 1491040 +The total amount of wall time = 208.079566 +The maximum resident set size (KB) = 1492932 Test 034 merra2_thompson PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/regional_control Checking test 035 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1612,28 +1612,28 @@ Checking test 035 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 293.440285 -The maximum resident set size (KB) = 654164 +The total amount of wall time = 294.043078 +The maximum resident set size (KB) = 653900 Test 035 regional_control PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/regional_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/regional_restart Checking test 036 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 168.823475 -The maximum resident set size (KB) = 650228 +The total amount of wall time = 169.884491 +The maximum resident set size (KB) = 650240 Test 036 regional_restart PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/regional_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/regional_decomp Checking test 037 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1644,14 +1644,14 @@ Checking test 037 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 309.772964 -The maximum resident set size (KB) = 651672 +The total amount of wall time = 309.782341 +The maximum resident set size (KB) = 651896 Test 037 regional_decomp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/regional_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/regional_2threads Checking test 038 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1662,14 +1662,14 @@ Checking test 038 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 179.810181 -The maximum resident set size (KB) = 690700 +The total amount of wall time = 186.077941 +The maximum resident set size (KB) = 692192 Test 038 regional_2threads PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_noquilt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/regional_noquilt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/regional_noquilt Checking test 039 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1677,28 +1677,28 @@ Checking test 039 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 323.664632 -The maximum resident set size (KB) = 647256 +The total amount of wall time = 319.783734 +The maximum resident set size (KB) = 643092 Test 039 regional_noquilt PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/regional_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/regional_netcdf_parallel Checking test 040 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK -The total amount of wall time = 453.715804 -The maximum resident set size (KB) = 646208 +The total amount of wall time = 289.342034 +The maximum resident set size (KB) = 640120 Test 040 regional_netcdf_parallel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/regional_2dwrtdecomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/regional_2dwrtdecomp Checking test 041 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1709,14 +1709,14 @@ Checking test 041 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 449.662463 -The maximum resident set size (KB) = 653860 +The total amount of wall time = 294.829539 +The maximum resident set size (KB) = 654308 Test 041 regional_2dwrtdecomp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/fv3_regional_wofs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/regional_wofs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/regional_wofs Checking test 042 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1727,14 +1727,14 @@ Checking test 042 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 523.808844 -The maximum resident set size (KB) = 336120 +The total amount of wall time = 358.587259 +The maximum resident set size (KB) = 337740 Test 042 regional_wofs PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/rap_control Checking test 043 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1781,14 +1781,14 @@ Checking test 043 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 608.188942 -The maximum resident set size (KB) = 893640 +The total amount of wall time = 416.926478 +The maximum resident set size (KB) = 895404 Test 043 rap_control PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/regional_spp_sppt_shum_skeb +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/regional_spp_sppt_shum_skeb Checking test 044 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -1799,14 +1799,14 @@ Checking test 044 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 449.211346 -The maximum resident set size (KB) = 983356 +The total amount of wall time = 290.409577 +The maximum resident set size (KB) = 985724 Test 044 regional_spp_sppt_shum_skeb PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/rap_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/rap_decomp Checking test 045 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1853,14 +1853,14 @@ Checking test 045 rap_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 595.623218 -The maximum resident set size (KB) = 893496 +The total amount of wall time = 434.621290 +The maximum resident set size (KB) = 894280 Test 045 rap_decomp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/rap_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/rap_2threads Checking test 046 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1907,14 +1907,14 @@ Checking test 046 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 551.284409 -The maximum resident set size (KB) = 965896 +The total amount of wall time = 393.273897 +The maximum resident set size (KB) = 965684 Test 046 rap_2threads PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/rap_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/rap_restart Checking test 047 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1953,14 +1953,14 @@ Checking test 047 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 213.818207 -The maximum resident set size (KB) = 644084 +The total amount of wall time = 212.459663 +The maximum resident set size (KB) = 642848 Test 047 rap_restart PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/rap_sfcdiff Checking test 048 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2007,14 +2007,14 @@ Checking test 048 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 577.780233 -The maximum resident set size (KB) = 895848 +The total amount of wall time = 419.323065 +The maximum resident set size (KB) = 894808 Test 048 rap_sfcdiff PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/rap_sfcdiff_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/rap_sfcdiff_decomp Checking test 049 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2061,14 +2061,14 @@ Checking test 049 rap_sfcdiff_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 588.241122 -The maximum resident set size (KB) = 894068 +The total amount of wall time = 433.675397 +The maximum resident set size (KB) = 893552 Test 049 rap_sfcdiff_decomp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/rap_sfcdiff_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/rap_sfcdiff_restart Checking test 050 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2107,14 +2107,14 @@ Checking test 050 rap_sfcdiff_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 312.137299 -The maximum resident set size (KB) = 637100 +The total amount of wall time = 310.251008 +The maximum resident set size (KB) = 639712 Test 050 rap_sfcdiff_restart PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/hrrr_control Checking test 051 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2161,14 +2161,14 @@ Checking test 051 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 574.700767 -The maximum resident set size (KB) = 892836 +The total amount of wall time = 402.097073 +The maximum resident set size (KB) = 892496 Test 051 hrrr_control PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/hrrr_control_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/hrrr_control_decomp Checking test 052 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2215,14 +2215,14 @@ Checking test 052 hrrr_control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 432.903864 -The maximum resident set size (KB) = 886968 +The total amount of wall time = 415.887977 +The maximum resident set size (KB) = 890176 Test 052 hrrr_control_decomp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/hrrr_control_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/hrrr_control_2threads Checking test 053 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2269,14 +2269,14 @@ Checking test 053 hrrr_control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 393.868257 -The maximum resident set size (KB) = 961308 +The total amount of wall time = 374.026135 +The maximum resident set size (KB) = 953596 Test 053 hrrr_control_2threads PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/hrrr_control_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/hrrr_control_restart Checking test 054 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2315,14 +2315,14 @@ Checking test 054 hrrr_control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 298.666252 -The maximum resident set size (KB) = 639936 +The total amount of wall time = 298.232551 +The maximum resident set size (KB) = 638136 Test 054 hrrr_control_restart PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_v1beta -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/rrfs_v1beta +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/rrfs_v1beta Checking test 055 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2369,14 +2369,14 @@ Checking test 055 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 432.576766 -The maximum resident set size (KB) = 890260 +The total amount of wall time = 412.577693 +The maximum resident set size (KB) = 885216 Test 055 rrfs_v1beta PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_v1nssl -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/rrfs_v1nssl +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/rrfs_v1nssl Checking test 056 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2391,14 +2391,14 @@ Checking test 056 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 494.456648 -The maximum resident set size (KB) = 576324 +The total amount of wall time = 477.036212 +The maximum resident set size (KB) = 574656 Test 056 rrfs_v1nssl PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/rrfs_v1nssl_nohailnoccn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/rrfs_v1nssl_nohailnoccn Checking test 057 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2413,14 +2413,14 @@ Checking test 057 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 478.454432 -The maximum resident set size (KB) = 568848 +The total amount of wall time = 462.915055 +The maximum resident set size (KB) = 568692 Test 057 rrfs_v1nssl_nohailnoccn PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/rrfs_conus13km_hrrr_warm Checking test 058 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2429,14 +2429,14 @@ Checking test 058 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 131.458982 -The maximum resident set size (KB) = 759916 +The total amount of wall time = 123.663432 +The maximum resident set size (KB) = 767928 Test 058 rrfs_conus13km_hrrr_warm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/rrfs_smoke_conus13km_hrrr_warm Checking test 059 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2445,14 +2445,14 @@ Checking test 059 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 144.326924 -The maximum resident set size (KB) = 776916 +The total amount of wall time = 135.935967 +The maximum resident set size (KB) = 774584 Test 059 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/rrfs_conus13km_radar_tten_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/rrfs_conus13km_radar_tten_warm Checking test 060 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2461,14 +2461,14 @@ Checking test 060 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 123.969178 -The maximum resident set size (KB) = 769392 +The total amount of wall time = 124.045803 +The maximum resident set size (KB) = 762076 Test 060 rrfs_conus13km_radar_tten_warm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/rrfs_conus13km_hrrr_warm_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/rrfs_conus13km_hrrr_warm_2threads Checking test 061 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2477,14 +2477,14 @@ Checking test 061 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 92.300122 -The maximum resident set size (KB) = 762720 +The total amount of wall time = 90.192565 +The maximum resident set size (KB) = 767316 Test 061 rrfs_conus13km_hrrr_warm_2threads PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/rrfs_conus13km_radar_tten_warm_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/rrfs_conus13km_radar_tten_warm_2threads Checking test 062 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2493,14 +2493,14 @@ Checking test 062 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 93.808213 -The maximum resident set size (KB) = 768528 +The total amount of wall time = 89.549925 +The maximum resident set size (KB) = 770304 Test 062 rrfs_conus13km_radar_tten_warm_2threads PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_csawmg -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/control_csawmg +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/control_csawmg Checking test 063 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2511,14 +2511,14 @@ Checking test 063 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 374.703394 -The maximum resident set size (KB) = 589832 +The total amount of wall time = 348.168334 +The maximum resident set size (KB) = 589172 Test 063 control_csawmg PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_csawmgt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/control_csawmgt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/control_csawmgt Checking test 064 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2529,14 +2529,14 @@ Checking test 064 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 353.933020 -The maximum resident set size (KB) = 586116 +The total amount of wall time = 347.494979 +The maximum resident set size (KB) = 586988 Test 064 control_csawmgt PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_ras -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/control_ras +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/control_ras Checking test 065 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2547,54 +2547,54 @@ Checking test 065 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 182.889865 -The maximum resident set size (KB) = 548912 +The total amount of wall time = 179.510340 +The maximum resident set size (KB) = 551204 Test 065 control_ras PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_wam -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/control_wam +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/control_wam Checking test 066 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 117.914655 -The maximum resident set size (KB) = 264076 +The total amount of wall time = 117.525417 +The maximum resident set size (KB) = 264940 Test 066 control_wam PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/rrfs_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/rrfs_conus13km_hrrr_warm_debug Checking test 067 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 782.841631 -The maximum resident set size (KB) = 797596 +The total amount of wall time = 777.172650 +The maximum resident set size (KB) = 795664 Test 067 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/rrfs_conus13km_radar_tten_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/rrfs_conus13km_radar_tten_warm_debug Checking test 068 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 784.806224 -The maximum resident set size (KB) = 796916 +The total amount of wall time = 780.906247 +The maximum resident set size (KB) = 796360 Test 068 rrfs_conus13km_radar_tten_warm_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_CubedSphereGrid_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/control_CubedSphereGrid_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/control_CubedSphereGrid_debug Checking test 069 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2621,334 +2621,334 @@ Checking test 069 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 168.661239 -The maximum resident set size (KB) = 680036 +The total amount of wall time = 169.565262 +The maximum resident set size (KB) = 679256 Test 069 control_CubedSphereGrid_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/control_wrtGauss_netcdf_parallel_debug Checking test 070 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 159.127581 -The maximum resident set size (KB) = 679592 +The total amount of wall time = 159.033504 +The maximum resident set size (KB) = 681140 Test 070 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_stochy_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/control_stochy_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/control_stochy_debug Checking test 071 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 180.844426 -The maximum resident set size (KB) = 683644 +The total amount of wall time = 178.682745 +The maximum resident set size (KB) = 687280 Test 071 control_stochy_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/control_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/control_lndp_debug Checking test 072 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 160.924006 -The maximum resident set size (KB) = 686308 +The total amount of wall time = 161.469362 +The maximum resident set size (KB) = 686592 Test 072 control_lndp_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_csawmg_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/control_csawmg_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/control_csawmg_debug Checking test 073 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 261.136645 -The maximum resident set size (KB) = 722976 +The total amount of wall time = 259.144734 +The maximum resident set size (KB) = 721712 Test 073 control_csawmg_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_csawmgt_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/control_csawmgt_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/control_csawmgt_debug Checking test 074 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 257.613958 -The maximum resident set size (KB) = 722544 +The total amount of wall time = 252.918945 +The maximum resident set size (KB) = 723520 Test 074 control_csawmgt_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_ras_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/control_ras_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/control_ras_debug Checking test 075 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 167.154528 -The maximum resident set size (KB) = 696716 +The total amount of wall time = 162.710417 +The maximum resident set size (KB) = 692300 Test 075 control_ras_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/control_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/control_diag_debug Checking test 076 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 167.239327 -The maximum resident set size (KB) = 739780 +The total amount of wall time = 165.257067 +The maximum resident set size (KB) = 740140 Test 076 control_diag_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_debug_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/control_debug_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/control_debug_p8 Checking test 077 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 194.888239 -The maximum resident set size (KB) = 1502632 +The total amount of wall time = 192.745851 +The maximum resident set size (KB) = 1505132 Test 077 control_debug_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/regional_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/regional_debug Checking test 078 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1047.183579 -The maximum resident set size (KB) = 675736 +The total amount of wall time = 1049.183146 +The maximum resident set size (KB) = 669496 Test 078 regional_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/rap_control_debug Checking test 079 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.076768 -The maximum resident set size (KB) = 1057636 +The total amount of wall time = 297.982885 +The maximum resident set size (KB) = 1059820 Test 079 rap_control_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/hrrr_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/hrrr_control_debug Checking test 080 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 293.556936 -The maximum resident set size (KB) = 1052172 +The total amount of wall time = 293.054967 +The maximum resident set size (KB) = 1059288 Test 080 hrrr_control_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/rap_unified_drag_suite_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/rap_unified_drag_suite_debug Checking test 081 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 299.944747 -The maximum resident set size (KB) = 1055084 +The total amount of wall time = 298.704547 +The maximum resident set size (KB) = 1056740 Test 081 rap_unified_drag_suite_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/rap_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/rap_diag_debug Checking test 082 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 312.563068 -The maximum resident set size (KB) = 1142644 +The total amount of wall time = 311.310782 +The maximum resident set size (KB) = 1141044 Test 082 rap_diag_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/rap_cires_ugwp_debug Checking test 083 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 305.360055 -The maximum resident set size (KB) = 1055896 +The total amount of wall time = 307.378995 +The maximum resident set size (KB) = 1058148 Test 083 rap_cires_ugwp_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/rap_unified_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/rap_unified_ugwp_debug Checking test 084 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 306.996450 -The maximum resident set size (KB) = 1059284 +The total amount of wall time = 306.461351 +The maximum resident set size (KB) = 1060540 Test 084 rap_unified_ugwp_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/rap_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/rap_lndp_debug Checking test 085 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 305.833961 -The maximum resident set size (KB) = 1056400 +The total amount of wall time = 301.207374 +The maximum resident set size (KB) = 1061956 Test 085 rap_lndp_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_flake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/rap_flake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/rap_flake_debug Checking test 086 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 299.113865 -The maximum resident set size (KB) = 1056524 +The total amount of wall time = 299.995163 +The maximum resident set size (KB) = 1060484 Test 086 rap_flake_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_progcld_thompson_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/rap_progcld_thompson_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/rap_progcld_thompson_debug Checking test 087 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.625151 -The maximum resident set size (KB) = 1057532 +The total amount of wall time = 303.382475 +The maximum resident set size (KB) = 1055040 Test 087 rap_progcld_thompson_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_noah_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/rap_noah_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/rap_noah_debug Checking test 088 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 296.509579 -The maximum resident set size (KB) = 1052296 +The total amount of wall time = 296.527887 +The maximum resident set size (KB) = 1055864 Test 088 rap_noah_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_sfcdiff_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/rap_sfcdiff_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/rap_sfcdiff_debug Checking test 089 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.922284 -The maximum resident set size (KB) = 1055968 +The total amount of wall time = 299.851773 +The maximum resident set size (KB) = 1059940 Test 089 rap_sfcdiff_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/rap_noah_sfcdiff_cires_ugwp_debug Checking test 090 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 489.062535 -The maximum resident set size (KB) = 1055876 +The total amount of wall time = 491.717104 +The maximum resident set size (KB) = 1054436 Test 090 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_v1beta_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/rrfs_v1beta_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/rrfs_v1beta_debug Checking test 091 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 296.704252 -The maximum resident set size (KB) = 1053848 +The total amount of wall time = 294.343621 +The maximum resident set size (KB) = 1053888 Test 091 rrfs_v1beta_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_wam_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/control_wam_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/control_wam_debug Checking test 092 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 299.187622 -The maximum resident set size (KB) = 302408 +The total amount of wall time = 296.325113 +The maximum resident set size (KB) = 296604 Test 092 control_wam_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 093 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2959,14 +2959,14 @@ Checking test 093 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 276.868235 -The maximum resident set size (KB) = 882504 +The total amount of wall time = 276.717204 +The maximum resident set size (KB) = 871716 Test 093 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/rap_control_dyn32_phy32 Checking test 094 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3013,14 +3013,14 @@ Checking test 094 rap_control_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 345.531169 -The maximum resident set size (KB) = 774892 +The total amount of wall time = 346.236199 +The maximum resident set size (KB) = 772136 Test 094 rap_control_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/hrrr_control_dyn32_phy32 Checking test 095 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3067,14 +3067,14 @@ Checking test 095 hrrr_control_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 181.642702 -The maximum resident set size (KB) = 774656 +The total amount of wall time = 184.175263 +The maximum resident set size (KB) = 776320 Test 095 hrrr_control_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/rap_2threads_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/rap_2threads_dyn32_phy32 Checking test 096 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3121,14 +3121,14 @@ Checking test 096 rap_2threads_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 325.588918 -The maximum resident set size (KB) = 825020 +The total amount of wall time = 323.881604 +The maximum resident set size (KB) = 825164 Test 096 rap_2threads_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/hrrr_control_2threads_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/hrrr_control_2threads_dyn32_phy32 Checking test 097 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3175,14 +3175,14 @@ Checking test 097 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 174.644087 -The maximum resident set size (KB) = 833200 +The total amount of wall time = 172.918979 +The maximum resident set size (KB) = 831992 Test 097 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/hrrr_control_decomp_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/hrrr_control_decomp_dyn32_phy32 Checking test 098 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3229,14 +3229,14 @@ Checking test 098 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 192.388324 -The maximum resident set size (KB) = 775620 +The total amount of wall time = 190.163776 +The maximum resident set size (KB) = 773668 Test 098 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/rap_restart_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/rap_restart_dyn32_phy32 Checking test 099 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3275,14 +3275,14 @@ Checking test 099 rap_restart_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 255.506471 -The maximum resident set size (KB) = 609920 +The total amount of wall time = 258.674730 +The maximum resident set size (KB) = 613752 Test 099 rap_restart_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/hrrr_control_restart_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/hrrr_control_restart_dyn32_phy32 Checking test 100 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3321,14 +3321,14 @@ Checking test 100 hrrr_control_restart_dyn32_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 94.371319 -The maximum resident set size (KB) = 604524 +The total amount of wall time = 93.521497 +The maximum resident set size (KB) = 606884 Test 100 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/rap_control_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/rap_control_dyn64_phy32 Checking test 101 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3375,81 +3375,81 @@ Checking test 101 rap_control_dyn64_phy32 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 233.943118 -The maximum resident set size (KB) = 794648 +The total amount of wall time = 235.859769 +The maximum resident set size (KB) = 797144 Test 101 rap_control_dyn64_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/rap_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/rap_control_debug_dyn32_phy32 Checking test 102 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 295.164114 -The maximum resident set size (KB) = 942464 +The total amount of wall time = 295.889846 +The maximum resident set size (KB) = 945560 Test 102 rap_control_debug_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/hrrr_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/hrrr_control_debug_dyn32_phy32 Checking test 103 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 287.301989 -The maximum resident set size (KB) = 941052 +The total amount of wall time = 292.119515 +The maximum resident set size (KB) = 943496 Test 103 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/rap_control_dyn64_phy32_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/rap_control_dyn64_phy32_debug Checking test 104 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 294.566225 -The maximum resident set size (KB) = 958116 +The total amount of wall time = 298.401531 +The maximum resident set size (KB) = 961152 Test 104 rap_control_dyn64_phy32_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/hafs_regional_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/hafs_regional_atm Checking test 105 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 259.866044 -The maximum resident set size (KB) = 798244 +The total amount of wall time = 266.837800 +The maximum resident set size (KB) = 797768 Test 105 hafs_regional_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/hafs_regional_atm_thompson_gfdlsf Checking test 106 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 338.640576 -The maximum resident set size (KB) = 1164952 +The total amount of wall time = 375.777451 +The maximum resident set size (KB) = 1163368 Test 106 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/hafs_regional_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/hafs_regional_atm_ocn Checking test 107 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3458,14 +3458,14 @@ Checking test 107 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 387.927786 -The maximum resident set size (KB) = 834164 +The total amount of wall time = 406.939872 +The maximum resident set size (KB) = 835028 Test 107 hafs_regional_atm_ocn PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_atm_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/hafs_regional_atm_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/hafs_regional_atm_wav Checking test 108 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3474,14 +3474,14 @@ Checking test 108 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 702.148433 -The maximum resident set size (KB) = 870236 +The total amount of wall time = 703.763721 +The maximum resident set size (KB) = 870712 Test 108 hafs_regional_atm_wav PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/hafs_regional_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/hafs_regional_atm_ocn_wav Checking test 109 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3492,28 +3492,28 @@ Checking test 109 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 895.082280 -The maximum resident set size (KB) = 892864 +The total amount of wall time = 903.162391 +The maximum resident set size (KB) = 892388 Test 109 hafs_regional_atm_ocn_wav PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/hafs_regional_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/hafs_regional_1nest_atm Checking test 110 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 328.565461 -The maximum resident set size (KB) = 388612 +The total amount of wall time = 347.981427 +The maximum resident set size (KB) = 382912 Test 110 hafs_regional_1nest_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/hafs_regional_telescopic_2nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/hafs_regional_telescopic_2nests_atm Checking test 111 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3522,28 +3522,28 @@ Checking test 111 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 398.976229 -The maximum resident set size (KB) = 406008 +The total amount of wall time = 418.317280 +The maximum resident set size (KB) = 405592 Test 111 hafs_regional_telescopic_2nests_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_global_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/hafs_global_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/hafs_global_1nest_atm Checking test 112 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 165.860163 -The maximum resident set size (KB) = 264152 +The total amount of wall time = 203.976282 +The maximum resident set size (KB) = 267336 Test 112 hafs_global_1nest_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_global_multiple_4nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/hafs_global_multiple_4nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/hafs_global_multiple_4nests_atm Checking test 113 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3561,14 +3561,14 @@ Checking test 113 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -The total amount of wall time = 495.834565 -The maximum resident set size (KB) = 410952 +The total amount of wall time = 511.022524 +The maximum resident set size (KB) = 337504 Test 113 hafs_global_multiple_4nests_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/hafs_regional_specified_moving_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/hafs_regional_specified_moving_1nest_atm Checking test 114 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3577,28 +3577,28 @@ Checking test 114 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 216.012767 -The maximum resident set size (KB) = 400020 +The total amount of wall time = 233.592389 +The maximum resident set size (KB) = 401456 Test 114 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/hafs_regional_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/hafs_regional_storm_following_1nest_atm Checking test 115 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 205.446826 -The maximum resident set size (KB) = 403608 +The total amount of wall time = 212.971884 +The maximum resident set size (KB) = 406428 Test 115 hafs_regional_storm_following_1nest_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/hafs_regional_storm_following_1nest_atm_ocn Checking test 116 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3607,42 +3607,42 @@ Checking test 116 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 250.666535 -The maximum resident set size (KB) = 448556 +The total amount of wall time = 280.822777 +The maximum resident set size (KB) = 446160 Test 116 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/hafs_global_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/hafs_global_storm_following_1nest_atm Checking test 117 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 80.123571 -The maximum resident set size (KB) = 338008 +The total amount of wall time = 110.355288 +The maximum resident set size (KB) = 286716 Test 117 hafs_global_storm_following_1nest_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 118 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 812.826300 -The maximum resident set size (KB) = 475120 +The total amount of wall time = 805.216188 +The maximum resident set size (KB) = 480772 Test 118 hafs_regional_storm_following_1nest_atm_ocn_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 119 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3653,14 +3653,14 @@ Checking test 119 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -The total amount of wall time = 524.818111 -The maximum resident set size (KB) = 518308 +The total amount of wall time = 543.512812 +The maximum resident set size (KB) = 520172 Test 119 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8_atmlnd_sbs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/control_p8_atmlnd_sbs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/control_p8_atmlnd_sbs Checking test 120 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3745,14 +3745,14 @@ Checking test 120 control_p8_atmlnd_sbs 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 = 241.750073 -The maximum resident set size (KB) = 1541328 +The total amount of wall time = 248.703818 +The maximum resident set size (KB) = 1543608 Test 120 control_p8_atmlnd_sbs PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/atmaero_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/atmaero_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/atmaero_control_p8 Checking test 121 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3796,14 +3796,14 @@ Checking test 121 atmaero_control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 248.253122 -The maximum resident set size (KB) = 2818776 +The total amount of wall time = 254.405048 +The maximum resident set size (KB) = 2818744 Test 121 atmaero_control_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/atmaero_control_p8_rad -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/atmaero_control_p8_rad +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/atmaero_control_p8_rad Checking test 122 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3847,14 +3847,14 @@ Checking test 122 atmaero_control_p8_rad results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 283.093400 -The maximum resident set size (KB) = 2881572 +The total amount of wall time = 283.669853 +The maximum resident set size (KB) = 2880404 Test 122 atmaero_control_p8_rad PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/atmaero_control_p8_rad_micro +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/atmaero_control_p8_rad_micro Checking test 123 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3898,14 +3898,14 @@ Checking test 123 atmaero_control_p8_rad_micro results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 290.587112 -The maximum resident set size (KB) = 2892196 +The total amount of wall time = 293.995496 +The maximum resident set size (KB) = 2889664 Test 123 atmaero_control_p8_rad_micro PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_atmaq -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/regional_atmaq +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/regional_atmaq Checking test 124 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -3921,14 +3921,14 @@ Checking test 124 regional_atmaq results .... Comparing RESTART/phy_data.nc .........OK Comparing RESTART/sfc_data.nc .........OK -The total amount of wall time = 691.135975 -The maximum resident set size (KB) = 1390984 +The total amount of wall time = 722.022374 +The maximum resident set size (KB) = 1385936 Test 124 regional_atmaq PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_atmaq_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_173743/regional_atmaq_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/regional_atmaq_debug Checking test 125 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3942,12 +3942,12 @@ Checking test 125 regional_atmaq_debug results .... Comparing RESTART/phy_data.nc .........OK Comparing RESTART/sfc_data.nc .........OK -The total amount of wall time = 1436.993769 -The maximum resident set size (KB) = 1423384 +The total amount of wall time = 1455.291399 +The maximum resident set size (KB) = 1415952 Test 125 regional_atmaq_debug PASS REGRESSION TEST WAS SUCCESSFUL -Fri Feb 17 18:19:16 UTC 2023 -Elapsed time: 01h:37m:25s. Have a nice day! +Tue Feb 21 18:28:28 UTC 2023 +Elapsed time: 01h:12m:22s. Have a nice day! From 23a4116802374387437a49de785ad50038112f85 Mon Sep 17 00:00:00 2001 From: Denise Worthen Date: Mon, 27 Feb 2023 12:26:45 -0500 Subject: [PATCH 02/30] Change MOM6 and FV3atm restart filename format (#1599) * MOM6 writes restarts in YYYYMMDD.HHMMSS.MOM*nc format * the final restart is timestamped * make changes in scripts to remove 'suffix-hours' strings * remove STORE_CORIOLIS from MOM_input templates * add timestamp in the end forecast restart filenames for GFS * FV3atm restart filename format --- FV3 | 2 +- MOM6-interface/MOM6 | 2 +- tests/RegressionTests_cheyenne.gnu.log | 2076 +++---- tests/RegressionTests_cheyenne.intel.log | 4676 ++++++++-------- tests/RegressionTests_gaea.intel.log | 4818 ++++++++-------- tests/RegressionTests_hera.gnu.log | 2152 ++++---- tests/RegressionTests_hera.intel.log | 4842 ++++++++-------- tests/RegressionTests_jet.intel.log | 4454 +++++++-------- tests/RegressionTests_orion.intel.log | 4848 ++++++++--------- tests/RegressionTests_wcoss2.intel.log | 4190 +++++++------- tests/default_vars.sh | 1 - tests/fv3_conf/cpld_control_run.IN | 10 +- tests/fv3_conf/cpld_datm_cdeps.IN | 2 +- tests/opnReqTests/dbg.sh | 1 + tests/opnReqTests/rst.sh | 2 - tests/parm/MOM_input_template_025 | 9 +- tests/parm/MOM_input_template_050 | 9 +- tests/parm/MOM_input_template_100 | 3 +- tests/parm/MOM_input_template_500 | 1 - tests/rt.sh | 4 +- tests/tests/atmaero_control_p8 | 64 +- tests/tests/atmaero_control_p8_rad | 64 +- tests/tests/atmaero_control_p8_rad_micro | 64 +- tests/tests/control_2threads_p8 | 64 +- tests/tests/control_atmwav | 64 +- tests/tests/control_c384gdas | 66 +- tests/tests/control_c384gdas_debug | 64 +- tests/tests/control_c384gdas_wav | 64 +- tests/tests/control_c48 | 64 +- tests/tests/control_decomp_p8 | 64 +- tests/tests/control_p8 | 64 +- tests/tests/control_p8_atmlnd_sbs | 64 +- tests/tests/control_p8_rrtmgp | 64 +- tests/tests/control_restart_p8 | 64 +- tests/tests/cpld_2threads_p8 | 66 +- tests/tests/cpld_bmark_p8 | 72 +- tests/tests/cpld_control_c192_p8 | 66 +- tests/tests/cpld_control_c48 | 66 +- tests/tests/cpld_control_ciceC_p8 | 66 +- tests/tests/cpld_control_gfsv17 | 66 +- tests/tests/cpld_control_noaero_p8 | 66 +- tests/tests/cpld_control_noaero_p8_agrid | 66 +- tests/tests/cpld_control_nowave_noaero_p8 | 66 +- tests/tests/cpld_control_p8 | 66 +- tests/tests/cpld_control_p8_mixedmode | 66 +- tests/tests/cpld_debug_noaero_p8 | 66 +- tests/tests/cpld_debug_p8 | 66 +- tests/tests/cpld_decomp_p8 | 66 +- tests/tests/cpld_mpi_p8 | 66 +- tests/tests/cpld_multigrid_p8 | 66 +- tests/tests/cpld_restart_bmark_p8 | 73 +- tests/tests/cpld_restart_c192_p8 | 67 +- tests/tests/cpld_restart_c48 | 67 +- tests/tests/cpld_restart_p8 | 67 +- tests/tests/cpld_warmstart_c48 | 66 +- tests/tests/datm_cdeps_3072x1536_cfsr | 2 +- tests/tests/datm_cdeps_bulk_cfsr | 2 +- tests/tests/datm_cdeps_bulk_gefs | 2 +- tests/tests/datm_cdeps_ciceC_cfsr | 2 +- tests/tests/datm_cdeps_control_cfsr | 2 +- tests/tests/datm_cdeps_control_gefs | 2 +- tests/tests/datm_cdeps_debug_cfsr | 2 +- tests/tests/datm_cdeps_gfs | 2 +- tests/tests/datm_cdeps_iau_gefs | 2 +- tests/tests/datm_cdeps_mx025_cfsr | 8 +- tests/tests/datm_cdeps_mx025_gefs | 8 +- tests/tests/datm_cdeps_restart_cfsr | 2 +- tests/tests/datm_cdeps_stochy_gefs | 2 +- tests/tests/hrrr_control | 64 +- tests/tests/hrrr_control_2threads | 64 +- tests/tests/hrrr_control_2threads_dyn32_phy32 | 64 +- tests/tests/hrrr_control_decomp | 64 +- tests/tests/hrrr_control_decomp_dyn32_phy32 | 64 +- tests/tests/hrrr_control_dyn32_phy32 | 64 +- tests/tests/hrrr_control_restart | 64 +- tests/tests/hrrr_control_restart_dyn32_phy32 | 64 +- tests/tests/merra2_thompson | 64 +- tests/tests/rap_2threads | 64 +- tests/tests/rap_2threads_dyn32_phy32 | 64 +- tests/tests/rap_control | 64 +- tests/tests/rap_control_dyn32_phy32 | 64 +- tests/tests/rap_control_dyn64_phy32 | 64 +- tests/tests/rap_decomp | 64 +- tests/tests/rap_restart | 64 +- tests/tests/rap_restart_dyn32_phy32 | 64 +- tests/tests/rap_sfcdiff | 64 +- tests/tests/rap_sfcdiff_decomp | 64 +- tests/tests/rap_sfcdiff_restart | 64 +- tests/tests/regional_atmaq | 14 +- tests/tests/regional_atmaq_debug | 14 +- tests/tests/rrfs_v1beta | 64 +- 91 files changed, 17895 insertions(+), 17917 deletions(-) diff --git a/FV3 b/FV3 index d9e619ed4a5..78bfe9e7db7 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit d9e619ed4a5e685b3558e0b1bf6929880960864b +Subproject commit 78bfe9e7db7d9727961d76108cf52c89e67aba3c diff --git a/MOM6-interface/MOM6 b/MOM6-interface/MOM6 index d0c4550af8c..520a4d1b09b 160000 --- a/MOM6-interface/MOM6 +++ b/MOM6-interface/MOM6 @@ -1 +1 @@ -Subproject commit d0c4550af8cb4dbdcebed376223a6f829a07595f +Subproject commit 520a4d1b09b944b2e77eea9d13433cd488edbd16 diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index 4ef5b77896e..cd2dc44935f 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,67 +1,67 @@ -Mon Feb 20 17:08:27 MST 2023 +Fri Feb 24 07:06:45 MST 2023 Start Regression test -Compile 001 elapsed time 371 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 395 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 849 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 189 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 367 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 1056 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 838 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 847 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 642 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 565 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 358 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 012 elapsed time 295 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/control_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/control_c48 +Compile 001 elapsed time 374 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 389 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 858 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 190 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 360 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 1062 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 850 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 860 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 615 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 561 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 348 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 012 elapsed time 298 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/control_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/control_c48 Checking test 001 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 818.818677 -0:The maximum resident set size (KB) = 675744 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 819.202590 +0:The maximum resident set size (KB) = 675656 Test 001 control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/control_stochy +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/control_stochy +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/control_stochy Checking test 002 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -72,14 +72,14 @@ Checking test 002 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 176.250677 -0:The maximum resident set size (KB) = 442736 +0:The total amount of wall time = 179.553657 +0:The maximum resident set size (KB) = 442756 Test 002 control_stochy PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/control_ras -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/control_ras +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/control_ras +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/control_ras Checking test 003 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -90,14 +90,14 @@ Checking test 003 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 294.078365 -0:The maximum resident set size (KB) = 461172 +0:The total amount of wall time = 294.903249 +0:The maximum resident set size (KB) = 451944 Test 003 control_ras PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/control_p8 Checking test 004 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -111,47 +111,47 @@ Checking test 004 control_p8 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 309.238960 -0:The maximum resident set size (KB) = 1235172 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 311.790789 +0:The maximum resident set size (KB) = 1226108 Test 004 control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/rap_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/rap_control Checking test 005 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -165,47 +165,47 @@ Checking test 005 rap_control results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 717.594273 -0:The maximum resident set size (KB) = 791748 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 725.510814 +0:The maximum resident set size (KB) = 791640 Test 005 rap_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/rap_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/rap_decomp Checking test 006 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -219,47 +219,47 @@ Checking test 006 rap_decomp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 727.158898 -0:The maximum resident set size (KB) = 791732 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 728.898851 +0:The maximum resident set size (KB) = 790976 Test 006 rap_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/rap_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/rap_2threads Checking test 007 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -273,93 +273,93 @@ Checking test 007 rap_2threads results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 662.187024 -0:The maximum resident set size (KB) = 863932 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 665.825368 +0:The maximum resident set size (KB) = 863912 Test 007 rap_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/rap_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/rap_restart Checking test 008 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 356.320991 -0:The maximum resident set size (KB) = 540156 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 358.255922 +0:The maximum resident set size (KB) = 538560 Test 008 rap_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/rap_sfcdiff +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/rap_sfcdiff Checking test 009 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -373,47 +373,47 @@ Checking test 009 rap_sfcdiff results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 710.928589 -0:The maximum resident set size (KB) = 791700 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 711.703853 +0:The maximum resident set size (KB) = 791544 Test 009 rap_sfcdiff PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/rap_sfcdiff_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/rap_sfcdiff_decomp Checking test 010 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -427,93 +427,93 @@ Checking test 010 rap_sfcdiff_decomp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 719.254929 -0:The maximum resident set size (KB) = 791164 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 721.799195 +0:The maximum resident set size (KB) = 790536 Test 010 rap_sfcdiff_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/rap_sfcdiff_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/rap_sfcdiff_restart Checking test 011 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 530.489670 -0:The maximum resident set size (KB) = 539224 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 531.142087 +0:The maximum resident set size (KB) = 543680 Test 011 rap_sfcdiff_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/hrrr_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/hrrr_control Checking test 012 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -527,47 +527,47 @@ Checking test 012 hrrr_control results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 688.378125 -0:The maximum resident set size (KB) = 789140 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 688.980532 +0:The maximum resident set size (KB) = 789124 Test 012 hrrr_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/hrrr_control_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/hrrr_control_2threads Checking test 013 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -581,47 +581,47 @@ Checking test 013 hrrr_control_2threads results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 622.869701 -0:The maximum resident set size (KB) = 858652 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 625.049898 +0:The maximum resident set size (KB) = 858776 Test 013 hrrr_control_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/hrrr_control_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/hrrr_control_decomp Checking test 014 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -635,93 +635,93 @@ Checking test 014 hrrr_control_decomp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 683.832970 -0:The maximum resident set size (KB) = 788868 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 686.733989 +0:The maximum resident set size (KB) = 788140 Test 014 hrrr_control_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/hrrr_control_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/hrrr_control_restart Checking test 015 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 514.866714 -0:The maximum resident set size (KB) = 535116 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 514.419125 +0:The maximum resident set size (KB) = 539324 Test 015 hrrr_control_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/rrfs_v1beta -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/rrfs_v1beta +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rrfs_v1beta +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/rrfs_v1beta Checking test 016 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -735,47 +735,47 @@ Checking test 016 rrfs_v1beta results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 699.885532 -0:The maximum resident set size (KB) = 788548 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 700.184079 +0:The maximum resident set size (KB) = 788432 Test 016 rrfs_v1beta PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/rrfs_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/rrfs_conus13km_hrrr_warm Checking test 017 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -784,14 +784,14 @@ Checking test 017 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 203.835544 -0:The maximum resident set size (KB) = 606740 +0:The total amount of wall time = 205.248348 +0:The maximum resident set size (KB) = 606776 Test 017 rrfs_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/rrfs_smoke_conus13km_hrrr_warm Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -800,14 +800,14 @@ Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 220.059800 -0:The maximum resident set size (KB) = 620792 +0:The total amount of wall time = 224.467128 +0:The maximum resident set size (KB) = 620808 Test 018 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/rrfs_conus13km_radar_tten_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rrfs_conus13km_radar_tten_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/rrfs_conus13km_radar_tten_warm Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -816,14 +816,14 @@ Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 202.999682 -0:The maximum resident set size (KB) = 609912 +0:The total amount of wall time = 204.952219 +0:The maximum resident set size (KB) = 609528 Test 019 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/rrfs_conus13km_radar_tten_warm_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rrfs_conus13km_radar_tten_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/rrfs_conus13km_radar_tten_warm_2threads Checking test 020 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -832,208 +832,208 @@ Checking test 020 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 131.605931 -0:The maximum resident set size (KB) = 629020 +0:The total amount of wall time = 131.442560 +0:The maximum resident set size (KB) = 628096 Test 020 rrfs_conus13km_radar_tten_warm_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/control_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/control_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/control_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/control_diag_debug Checking test 021 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 87.223393 -0:The maximum resident set size (KB) = 497148 +0:The total amount of wall time = 87.985167 +0:The maximum resident set size (KB) = 494844 Test 021 control_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/regional_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/regional_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/regional_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/regional_debug Checking test 022 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 475.866206 -0:The maximum resident set size (KB) = 569848 +0:The total amount of wall time = 478.217381 +0:The maximum resident set size (KB) = 569244 Test 022 regional_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/rap_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rap_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/rap_control_debug Checking test 023 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 147.856351 -0:The maximum resident set size (KB) = 814404 +0:The total amount of wall time = 152.318107 +0:The maximum resident set size (KB) = 808792 Test 023 rap_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/hrrr_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/hrrr_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/hrrr_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/hrrr_control_debug Checking test 024 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 145.874476 -0:The maximum resident set size (KB) = 809240 +0:The total amount of wall time = 151.119486 +0:The maximum resident set size (KB) = 804216 Test 024 hrrr_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/rap_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/rap_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rap_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/rap_diag_debug Checking test 025 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 160.087286 -0:The maximum resident set size (KB) = 896960 +0:The total amount of wall time = 161.942622 +0:The maximum resident set size (KB) = 891856 Test 025 rap_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/rap_noah_sfcdiff_cires_ugwp_debug Checking test 026 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 236.067753 -0:The maximum resident set size (KB) = 812372 +0:The total amount of wall time = 242.342389 +0:The maximum resident set size (KB) = 806624 Test 026 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/rap_progcld_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/rap_progcld_thompson_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rap_progcld_thompson_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/rap_progcld_thompson_debug Checking test 027 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 149.616724 -0:The maximum resident set size (KB) = 814052 +0:The total amount of wall time = 151.769849 +0:The maximum resident set size (KB) = 808820 Test 027 rap_progcld_thompson_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/rrfs_v1beta_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/rrfs_v1beta_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rrfs_v1beta_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/rrfs_v1beta_debug Checking test 028 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 146.969427 -0:The maximum resident set size (KB) = 808480 +0:The total amount of wall time = 149.598576 +0:The maximum resident set size (KB) = 804032 Test 028 rrfs_v1beta_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/control_ras_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/control_ras_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/control_ras_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/control_ras_debug Checking test 029 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 84.071542 -0:The maximum resident set size (KB) = 449572 +0:The total amount of wall time = 85.988672 +0:The maximum resident set size (KB) = 449060 Test 029 control_ras_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/control_stochy_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/control_stochy_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/control_stochy_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/control_stochy_debug Checking test 030 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 92.129487 -0:The maximum resident set size (KB) = 443964 +0:The total amount of wall time = 93.090830 +0:The maximum resident set size (KB) = 441488 Test 030 control_stochy_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/control_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/control_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/control_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/control_debug_p8 Checking test 031 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 94.219861 -0:The maximum resident set size (KB) = 1226620 +0:The total amount of wall time = 96.600948 +0:The maximum resident set size (KB) = 1224764 Test 031 control_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/rrfs_conus13km_hrrr_warm_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rrfs_conus13km_hrrr_warm_debugs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/rrfs_conus13km_hrrr_warm_debug Checking test 032 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 381.736795 -0:The maximum resident set size (KB) = 613888 +0:The total amount of wall time = 390.129051 +0:The maximum resident set size (KB) = 614276 Test 032 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/rrfs_conus13km_radar_tten_warm_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/rrfs_conus13km_radar_tten_warm_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rrfs_conus13km_radar_tten_warm_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/rrfs_conus13km_radar_tten_warm_debug Checking test 033 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 382.717598 -0:The maximum resident set size (KB) = 617212 +0:The total amount of wall time = 393.545593 +0:The maximum resident set size (KB) = 617124 Test 033 rrfs_conus13km_radar_tten_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/control_wam_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/control_wam_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/control_wam_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/control_wam_debug Checking test 034 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 145.660280 -0:The maximum resident set size (KB) = 185792 +0:The total amount of wall time = 145.306626 +0:The maximum resident set size (KB) = 184724 Test 034 control_wam_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/rap_control_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/rap_control_dyn32_phy32 Checking test 035 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1047,47 +1047,47 @@ Checking test 035 rap_control_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 686.657543 -0:The maximum resident set size (KB) = 677340 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 688.967785 +0:The maximum resident set size (KB) = 672616 Test 035 rap_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/hrrr_control_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/hrrr_control_dyn32_phy32 Checking test 036 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1101,47 +1101,47 @@ Checking test 036 hrrr_control_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 349.321527 -0:The maximum resident set size (KB) = 675752 + 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 = 351.987919 +0:The maximum resident set size (KB) = 671040 Test 036 hrrr_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/rap_2threads_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/rap_2threads_dyn32_phy32 Checking test 037 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1155,47 +1155,47 @@ Checking test 037 rap_2threads_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 624.876978 -0:The maximum resident set size (KB) = 723076 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 627.815927 +0:The maximum resident set size (KB) = 718296 Test 037 rap_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/hrrr_control_2threads_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/hrrr_control_2threads_dyn32_phy32 Checking test 038 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1209,47 +1209,47 @@ Checking test 038 hrrr_control_2threads_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 320.289223 -0:The maximum resident set size (KB) = 715536 + 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 = 326.559530 +0:The maximum resident set size (KB) = 715452 Test 038 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/hrrr_control_decomp_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/hrrr_control_decomp_dyn32_phy32 Checking test 039 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1263,139 +1263,139 @@ Checking test 039 hrrr_control_decomp_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 348.663211 -0:The maximum resident set size (KB) = 674708 + 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 = 351.755478 +0:The maximum resident set size (KB) = 670020 Test 039 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/rap_restart_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/rap_restart_dyn32_phy32 Checking test 040 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 514.222733 -0:The maximum resident set size (KB) = 515444 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 515.889251 +0:The maximum resident set size (KB) = 510868 Test 040 rap_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/hrrr_control_restart_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/hrrr_control_restart_dyn32_phy32 Checking test 041 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 177.219199 -0:The maximum resident set size (KB) = 513256 + 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 = 177.701708 +0:The maximum resident set size (KB) = 506684 Test 041 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/rap_control_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/rap_control_dyn64_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rap_control_dyn64_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/rap_control_dyn64_phy32 Checking test 042 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1409,89 +1409,89 @@ Checking test 042 rap_control_dyn64_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 403.113199 -0:The maximum resident set size (KB) = 698244 + 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 = 411.025614 +0:The maximum resident set size (KB) = 693504 Test 042 rap_control_dyn64_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/rap_control_debug_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/rap_control_debug_dyn32_phy32 Checking test 043 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 147.415649 -0:The maximum resident set size (KB) = 695460 +0:The total amount of wall time = 148.307517 +0:The maximum resident set size (KB) = 690900 Test 043 rap_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/hrrr_control_debug_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/hrrr_control_debug_dyn32_phy32 Checking test 044 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 144.653150 -0:The maximum resident set size (KB) = 692260 +0:The total amount of wall time = 145.791911 +0:The maximum resident set size (KB) = 687888 Test 044 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/rap_control_dyn64_phy32_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rap_control_debug_dyn64_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/rap_control_dyn64_phy32_debug Checking test 045 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 151.425576 -0:The maximum resident set size (KB) = 715056 +0:The total amount of wall time = 154.068002 +0:The maximum resident set size (KB) = 709716 Test 045 rap_control_dyn64_phy32_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/cpld_control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/cpld_control_p8 Checking test 046 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1518,52 +1518,52 @@ Checking test 046 cpld_control_p8 results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 497.066283 -0:The maximum resident set size (KB) = 3163968 +0:The total amount of wall time = 491.418684 +0:The maximum resident set size (KB) = 3159312 Test 046 cpld_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/cpld_control_nowave_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/cpld_control_c96_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/cpld_control_nowave_noaero_p8 Checking test 047 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1589,50 +1589,50 @@ Checking test 047 cpld_control_nowave_noaero_p8 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 247.418144 -0:The maximum resident set size (KB) = 1251268 +0:The total amount of wall time = 251.831112 +0:The maximum resident set size (KB) = 1240092 Test 047 cpld_control_nowave_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/cpld_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/cpld_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/cpld_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/cpld_debug_p8 Checking test 048 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1647,63 +1647,63 @@ Checking test 048 cpld_debug_p8 results .... Comparing atmf003.tile5.nc .........OK Comparing atmf003.tile6.nc .........OK Comparing gocart.inst_aod.20210322_0900z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210322.090000.coupler.res .........OK + Comparing RESTART/20210322.090000.fv_core.res.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-22-32400.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 273.287748 -0:The maximum resident set size (KB) = 3180768 +0:The total amount of wall time = 276.673792 +0:The maximum resident set size (KB) = 3179788 Test 048 cpld_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/GNU/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66384/datm_cdeps_control_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/datm_cdeps_control_cfsr Checking test 049 datm_cdeps_control_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20111002.000000.MOM.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 = 179.734640 -0:The maximum resident set size (KB) = 669508 +0:The total amount of wall time = 180.035468 +0:The maximum resident set size (KB) = 678064 Test 049 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Mon Feb 20 17:40:20 MST 2023 -Elapsed time: 00h:31m:53s. Have a nice day! +Fri Feb 24 07:37:28 MST 2023 +Elapsed time: 00h:30m:43s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index acb1e76f931..3d5784b7637 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,38 +1,38 @@ -Mon Feb 20 16:53:23 MST 2023 +Mon Feb 27 07:23:34 MST 2023 Start Regression test -Compile 001 elapsed time 1513 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 1462 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 1366 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 439 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 384 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 1072 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 1072 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 1035 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 981 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 929 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 798 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 399 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 013 elapsed time 266 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 821 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 015 elapsed time 815 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 267 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 017 elapsed time 271 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 1111 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 019 elapsed time 341 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 1688 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 1099 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 022 elapsed time 429 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 023 elapsed time 207 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 024 elapsed time 108 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 025 elapsed time 942 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 026 elapsed time 981 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 027 elapsed time 907 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 874 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 301 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8_mixedmode -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/cpld_control_p8_mixedmode +Compile 001 elapsed time 1496 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1503 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 1370 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 456 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 381 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 1066 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 1066 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 1016 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 979 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 900 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 807 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 396 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 259 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 014 elapsed time 829 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 827 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 266 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 017 elapsed time 264 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 1098 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 019 elapsed time 332 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 1689 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 1087 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 022 elapsed time 431 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 023 elapsed time 202 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 024 elapsed time 102 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 025 elapsed time 932 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 026 elapsed time 979 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 027 elapsed time 887 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 883 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 295 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8_mixedmode +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -59,52 +59,52 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 319.024518 -0:The maximum resident set size (KB) = 2698368 +0:The total amount of wall time = 319.548123 +0:The maximum resident set size (KB) = 2698432 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_gfsv17 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/cpld_control_gfsv17 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_gfsv17 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -130,52 +130,52 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 284.271496 -0:The maximum resident set size (KB) = 1437972 +0:The total amount of wall time = 282.000267 +0:The maximum resident set size (KB) = 1437860 Test 002 cpld_control_gfsv17 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/cpld_control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -202,52 +202,52 @@ Checking test 003 cpld_control_p8 results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 323.245196 -0:The maximum resident set size (KB) = 2716404 +0:The total amount of wall time = 320.743300 +0:The maximum resident set size (KB) = 2716304 Test 003 cpld_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/cpld_restart_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -262,52 +262,52 @@ Checking test 004 cpld_restart_p8 results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 184.994808 -0:The maximum resident set size (KB) = 2577780 +0:The total amount of wall time = 184.072025 +0:The maximum resident set size (KB) = 2577404 Test 004 cpld_restart_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/cpld_2threads_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -322,52 +322,52 @@ Checking test 005 cpld_2threads_p8 results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 256.172049 -0:The maximum resident set size (KB) = 3176112 +0:The total amount of wall time = 260.075532 +0:The maximum resident set size (KB) = 3176084 Test 005 cpld_2threads_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/cpld_decomp_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/cpld_decomp_p8 Checking test 006 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -382,52 +382,52 @@ Checking test 006 cpld_decomp_p8 results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 320.712955 -0:The maximum resident set size (KB) = 2723292 +0:The total amount of wall time = 321.759495 +0:The maximum resident set size (KB) = 2721140 Test 006 cpld_decomp_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/cpld_mpi_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/cpld_mpi_p8 Checking test 007 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -442,52 +442,52 @@ Checking test 007 cpld_mpi_p8 results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 272.503021 -0:The maximum resident set size (KB) = 2682564 +0:The total amount of wall time = 276.149744 +0:The maximum resident set size (KB) = 2682540 Test 007 cpld_mpi_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_ciceC_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/cpld_control_ciceC_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_ciceC_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/cpld_control_ciceC_p8 Checking test 008 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -514,52 +514,52 @@ Checking test 008 cpld_control_ciceC_p8 results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 321.338051 -0:The maximum resident set size (KB) = 2716552 +0:The total amount of wall time = 321.258432 +0:The maximum resident set size (KB) = 2716656 Test 008 cpld_control_ciceC_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/cpld_control_c192_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_c192_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/cpld_control_c192_p8 Checking test 009 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -574,52 +574,52 @@ Checking test 009 cpld_control_c192_p8 results .... Comparing atmf030.tile5.nc .........OK Comparing atmf030.tile6.nc .........OK Comparing gocart.inst_aod.20210323_1200z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.120000.coupler.res .........OK + Comparing RESTART/20210323.120000.fv_core.res.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -0:The total amount of wall time = 639.628626 -0:The maximum resident set size (KB) = 3347788 +0:The total amount of wall time = 743.179837 +0:The maximum resident set size (KB) = 3348252 Test 009 cpld_control_c192_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/cpld_restart_c192_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_c192_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/cpld_restart_c192_p8 Checking test 010 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -634,52 +634,52 @@ Checking test 010 cpld_restart_c192_p8 results .... Comparing atmf030.tile5.nc .........OK Comparing atmf030.tile6.nc .........OK Comparing gocart.inst_aod.20210323_1200z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.120000.coupler.res .........OK + Comparing RESTART/20210323.120000.fv_core.res.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -0:The total amount of wall time = 456.853076 -0:The maximum resident set size (KB) = 3271772 +0:The total amount of wall time = 412.255138 +0:The maximum resident set size (KB) = 3271760 Test 010 cpld_restart_c192_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/cpld_control_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/cpld_control_noaero_p8 Checking test 011 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -705,52 +705,52 @@ Checking test 011 cpld_control_noaero_p8 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 295.594486 -0:The maximum resident set size (KB) = 1436280 +0:The total amount of wall time = 294.199409 +0:The maximum resident set size (KB) = 1436380 Test 011 cpld_control_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/cpld_control_nowave_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_c96_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/cpld_control_nowave_noaero_p8 Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -776,50 +776,50 @@ Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.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 = 193.913328 -0:The maximum resident set size (KB) = 1452396 +0:The total amount of wall time = 196.558420 +0:The maximum resident set size (KB) = 1452352 Test 012 cpld_control_nowave_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/cpld_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/cpld_debug_p8 Checking test 013 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -834,52 +834,52 @@ Checking test 013 cpld_debug_p8 results .... Comparing atmf003.tile5.nc .........OK Comparing atmf003.tile6.nc .........OK Comparing gocart.inst_aod.20210322_0900z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210322.090000.coupler.res .........OK + Comparing RESTART/20210322.090000.fv_core.res.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-22-32400.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 472.683365 -0:The maximum resident set size (KB) = 2788452 +0:The total amount of wall time = 472.775623 +0:The maximum resident set size (KB) = 2788128 Test 013 cpld_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_debug_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/cpld_debug_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_debug_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/cpld_debug_noaero_p8 Checking test 014 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -893,52 +893,52 @@ Checking test 014 cpld_debug_noaero_p8 results .... Comparing atmf003.tile4.nc .........OK Comparing atmf003.tile5.nc .........OK Comparing atmf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210322.090000.coupler.res .........OK + Comparing RESTART/20210322.090000.fv_core.res.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-22-32400.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 348.642830 -0:The maximum resident set size (KB) = 1460544 +0:The total amount of wall time = 349.004602 +0:The maximum resident set size (KB) = 1460796 Test 014 cpld_debug_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_noaero_p8_agrid -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/cpld_control_noaero_p8_agrid +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_noaero_p8_agrid +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/cpld_control_noaero_p8_agrid Checking test 015 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -964,50 +964,50 @@ Checking test 015 cpld_control_noaero_p8_agrid results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.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 = 266.010787 -0:The maximum resident set size (KB) = 1455924 +0:The total amount of wall time = 262.706676 +0:The maximum resident set size (KB) = 1455844 Test 015 cpld_control_noaero_p8_agrid PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/cpld_control_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/cpld_control_c48 Checking test 016 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1021,50 +1021,50 @@ Checking test 016 cpld_control_c48 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.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 = 606.069097 -0:The maximum resident set size (KB) = 2580244 +0:The total amount of wall time = 605.043224 +0:The maximum resident set size (KB) = 2580236 Test 016 cpld_control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/cpld_warmstart_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_warmstart_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/cpld_warmstart_c48 Checking test 017 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1078,50 +1078,50 @@ Checking test 017 cpld_warmstart_c48 results .... Comparing atmf006.tile4.nc .........OK Comparing atmf006.tile5.nc .........OK Comparing atmf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.120000.coupler.res .........OK + Comparing RESTART/20210323.120000.fv_core.res.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -0:The total amount of wall time = 161.892951 -0:The maximum resident set size (KB) = 2599104 +0:The total amount of wall time = 161.194290 +0:The maximum resident set size (KB) = 2599156 Test 017 cpld_warmstart_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/cpld_restart_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_warmstart_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/cpld_restart_c48 Checking test 018 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1135,50 +1135,50 @@ Checking test 018 cpld_restart_c48 results .... Comparing atmf006.tile4.nc .........OK Comparing atmf006.tile5.nc .........OK Comparing atmf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.120000.coupler.res .........OK + Comparing RESTART/20210323.120000.fv_core.res.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -0:The total amount of wall time = 84.341229 -0:The maximum resident set size (KB) = 2015872 +0:The total amount of wall time = 84.752924 +0:The maximum resident set size (KB) = 2015888 Test 018 cpld_restart_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/control_CubedSphereGrid -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/control_CubedSphereGrid +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_CubedSphereGrid +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/control_CubedSphereGrid Checking test 019 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1205,28 +1205,28 @@ Checking test 019 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -0:The total amount of wall time = 142.886977 -0:The maximum resident set size (KB) = 456800 +0:The total amount of wall time = 144.062872 +0:The maximum resident set size (KB) = 456784 Test 019 control_CubedSphereGrid PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/control_CubedSphereGrid_parallel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/control_CubedSphereGrid_parallel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_CubedSphereGrid_parallel +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/control_CubedSphereGrid_parallel Checking test 020 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK -0:The total amount of wall time = 139.023253 -0:The maximum resident set size (KB) = 456752 +0:The total amount of wall time = 139.777200 +0:The maximum resident set size (KB) = 456688 Test 020 control_CubedSphereGrid_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/control_latlon -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/control_latlon +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_latlon +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/control_latlon Checking test 021 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1237,78 +1237,78 @@ Checking test 021 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 144.040130 -0:The maximum resident set size (KB) = 456828 +0:The total amount of wall time = 144.941521 +0:The maximum resident set size (KB) = 456816 Test 021 control_latlon PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/control_wrtGauss_netcdf_parallel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/control_wrtGauss_netcdf_parallel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_wrtGauss_netcdf_parallel +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/control_wrtGauss_netcdf_parallel Checking test 022 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 147.936309 -0:The maximum resident set size (KB) = 456824 +0:The total amount of wall time = 150.085680 +0:The maximum resident set size (KB) = 456696 Test 022 control_wrtGauss_netcdf_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/control_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/control_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/control_c48 Checking test 023 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 443.929392 -0:The maximum resident set size (KB) = 628872 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 444.512825 +0:The maximum resident set size (KB) = 628844 Test 023 control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/control_c192 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/control_c192 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_c192 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/control_c192 Checking test 024 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1319,14 +1319,14 @@ Checking test 024 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 593.605777 -0:The maximum resident set size (KB) = 557004 +0:The total amount of wall time = 592.015198 +0:The maximum resident set size (KB) = 556960 Test 024 control_c192 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/control_c384 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/control_c384 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_c384 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/control_c384 Checking test 025 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1337,14 +1337,14 @@ Checking test 025 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 597.952401 -0:The maximum resident set size (KB) = 855384 +0:The total amount of wall time = 600.178890 +0:The maximum resident set size (KB) = 889216 Test 025 control_c384 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/control_c384gdas -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/control_c384gdas +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_c384gdas +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/control_c384gdas Checking test 026 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1354,47 +1354,47 @@ Checking test 026 control_c384gdas results .... Comparing GFSFLX.GrbF06 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF06 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 522.297214 -0:The maximum resident set size (KB) = 989768 + Comparing RESTART/20210322.060000.coupler.res .........OK + Comparing RESTART/20210322.060000.fv_core.res.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 531.819827 +0:The maximum resident set size (KB) = 1014916 Test 026 control_c384gdas PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/control_stochy +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_stochy +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/control_stochy Checking test 027 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1405,28 +1405,28 @@ Checking test 027 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 96.340384 -0:The maximum resident set size (KB) = 454824 +0:The total amount of wall time = 95.577961 +0:The maximum resident set size (KB) = 454960 Test 027 control_stochy PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/control_stochy_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_stochy +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/control_stochy_restart Checking test 028 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 51.394873 -0:The maximum resident set size (KB) = 222852 +0:The total amount of wall time = 51.998569 +0:The maximum resident set size (KB) = 225984 Test 028 control_stochy_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/control_lndp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/control_lndp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_lndp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/control_lndp Checking test 029 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1437,14 +1437,14 @@ Checking test 029 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 89.267887 -0:The maximum resident set size (KB) = 456592 +0:The total amount of wall time = 89.760740 +0:The maximum resident set size (KB) = 456568 Test 029 control_lndp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/control_iovr4 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/control_iovr4 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_iovr4 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/control_iovr4 Checking test 030 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1459,14 +1459,14 @@ Checking test 030 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 147.145149 -0:The maximum resident set size (KB) = 456644 +0:The total amount of wall time = 143.637672 +0:The maximum resident set size (KB) = 456588 Test 030 control_iovr4 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/control_iovr5 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/control_iovr5 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_iovr5 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/control_iovr5 Checking test 031 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1481,14 +1481,14 @@ Checking test 031 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 147.555135 -0:The maximum resident set size (KB) = 456628 +0:The total amount of wall time = 146.845150 +0:The maximum resident set size (KB) = 456636 Test 031 control_iovr5 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/control_p8 Checking test 032 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1502,47 +1502,47 @@ Checking test 032 control_p8 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 181.820755 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 181.350206 0:The maximum resident set size (KB) = 1422844 Test 032 control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8_lndp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/control_p8_lndp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8_lndp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/control_p8_lndp Checking test 033 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1561,60 +1561,60 @@ Checking test 033 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -0:The total amount of wall time = 335.252604 -0:The maximum resident set size (KB) = 1423152 +0:The total amount of wall time = 334.735832 +0:The maximum resident set size (KB) = 1423100 Test 033 control_p8_lndp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/control_restart_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/control_restart_p8 Checking test 034 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 94.793275 -0:The maximum resident set size (KB) = 579900 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 94.728668 +0:The maximum resident set size (KB) = 582368 Test 034 control_restart_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/control_decomp_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/control_decomp_p8 Checking test 035 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1624,47 +1624,47 @@ Checking test 035 control_decomp_p8 results .... Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 185.025693 -0:The maximum resident set size (KB) = 1416996 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 187.064813 +0:The maximum resident set size (KB) = 1417024 Test 035 control_decomp_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/control_2threads_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/control_2threads_p8 Checking test 036 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1674,47 +1674,47 @@ Checking test 036 control_2threads_p8 results .... Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 176.218556 -0:The maximum resident set size (KB) = 1506252 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 177.589392 +0:The maximum resident set size (KB) = 1504948 Test 036 control_2threads_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8_rrtmgp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/control_p8_rrtmgp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8_rrtmgp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/control_p8_rrtmgp Checking test 037 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1728,47 +1728,47 @@ Checking test 037 control_p8_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 252.390939 -0:The maximum resident set size (KB) = 1480704 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 253.376190 +0:The maximum resident set size (KB) = 1480712 Test 037 control_p8_rrtmgp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/merra2_thompson -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/merra2_thompson +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/merra2_thompson +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/merra2_thompson Checking test 038 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1782,47 +1782,47 @@ Checking test 038 merra2_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 209.193976 -0:The maximum resident set size (KB) = 1429764 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 208.767487 +0:The maximum resident set size (KB) = 1429696 Test 038 merra2_thompson PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/regional_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/regional_control Checking test 039 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1833,28 +1833,28 @@ Checking test 039 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 342.155869 -0:The maximum resident set size (KB) = 603104 +0:The total amount of wall time = 342.057615 +0:The maximum resident set size (KB) = 603040 Test 039 regional_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/regional_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/regional_restart Checking test 040 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 174.630240 -0:The maximum resident set size (KB) = 591120 +0:The total amount of wall time = 175.553644 +0:The maximum resident set size (KB) = 593456 Test 040 regional_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/regional_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/regional_decomp Checking test 041 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1865,14 +1865,14 @@ Checking test 041 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 358.316704 -0:The maximum resident set size (KB) = 594884 +0:The total amount of wall time = 359.137892 +0:The maximum resident set size (KB) = 597192 Test 041 regional_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/regional_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/regional_2threads Checking test 042 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1883,14 +1883,14 @@ Checking test 042 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 204.660030 -0:The maximum resident set size (KB) = 601776 +0:The total amount of wall time = 210.787888 +0:The maximum resident set size (KB) = 609968 Test 042 regional_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_noquilt -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/regional_noquilt +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_noquilt +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/regional_noquilt Checking test 043 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1898,28 +1898,28 @@ Checking test 043 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -0:The total amount of wall time = 368.325407 -0:The maximum resident set size (KB) = 598128 +0:The total amount of wall time = 364.574730 +0:The maximum resident set size (KB) = 597576 Test 043 regional_noquilt PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_netcdf_parallel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/regional_netcdf_parallel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_netcdf_parallel +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/regional_netcdf_parallel Checking test 044 regional_netcdf_parallel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc ............ALT CHECK......OK + Comparing dynf000.nc ............ALT CHECK......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 = 337.736047 -0:The maximum resident set size (KB) = 588428 +0:The total amount of wall time = 337.534066 +0:The maximum resident set size (KB) = 595012 Test 044 regional_netcdf_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/regional_2dwrtdecomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/regional_2dwrtdecomp Checking test 045 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1930,14 +1930,14 @@ Checking test 045 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 337.227808 -0:The maximum resident set size (KB) = 603120 +0:The total amount of wall time = 339.848219 +0:The maximum resident set size (KB) = 603100 Test 045 regional_2dwrtdecomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/fv3_regional_wofs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/regional_wofs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/fv3_regional_wofs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/regional_wofs Checking test 046 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1948,14 +1948,14 @@ Checking test 046 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 423.324600 -0:The maximum resident set size (KB) = 270476 +0:The total amount of wall time = 412.954426 +0:The maximum resident set size (KB) = 274624 Test 046 regional_wofs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/rap_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/rap_control Checking test 047 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1969,47 +1969,47 @@ Checking test 047 rap_control results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 480.937945 -0:The maximum resident set size (KB) = 826128 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 478.823402 +0:The maximum resident set size (KB) = 826120 Test 047 rap_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_spp_sppt_shum_skeb -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/regional_spp_sppt_shum_skeb +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_spp_sppt_shum_skeb +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/regional_spp_sppt_shum_skeb Checking test 048 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2020,14 +2020,14 @@ Checking test 048 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 326.288937 -0:The maximum resident set size (KB) = 949092 +0:The total amount of wall time = 316.590850 +0:The maximum resident set size (KB) = 949260 Test 048 regional_spp_sppt_shum_skeb PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/rap_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/rap_decomp Checking test 049 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2041,47 +2041,47 @@ Checking test 049 rap_decomp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 500.636489 -0:The maximum resident set size (KB) = 823392 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 500.626560 +0:The maximum resident set size (KB) = 823572 Test 049 rap_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/rap_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/rap_2threads Checking test 050 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2095,93 +2095,93 @@ Checking test 050 rap_2threads results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 464.752460 -0:The maximum resident set size (KB) = 892616 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 458.208725 +0:The maximum resident set size (KB) = 892564 Test 050 rap_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/rap_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/rap_restart Checking test 051 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 242.565239 -0:The maximum resident set size (KB) = 572308 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 241.928999 +0:The maximum resident set size (KB) = 572548 Test 051 rap_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/rap_sfcdiff +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/rap_sfcdiff Checking test 052 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2195,47 +2195,47 @@ Checking test 052 rap_sfcdiff results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 472.299817 -0:The maximum resident set size (KB) = 826348 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 470.435952 +0:The maximum resident set size (KB) = 826440 Test 052 rap_sfcdiff PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/rap_sfcdiff_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/rap_sfcdiff_decomp Checking test 053 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2249,93 +2249,93 @@ Checking test 053 rap_sfcdiff_decomp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 498.786263 -0:The maximum resident set size (KB) = 825252 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 495.889101 +0:The maximum resident set size (KB) = 825364 Test 053 rap_sfcdiff_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/rap_sfcdiff_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/rap_sfcdiff_restart Checking test 054 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 350.372840 -0:The maximum resident set size (KB) = 569516 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 353.847946 +0:The maximum resident set size (KB) = 569860 Test 054 rap_sfcdiff_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/hrrr_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/hrrr_control Checking test 055 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2349,47 +2349,47 @@ Checking test 055 hrrr_control results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 445.149733 -0:The maximum resident set size (KB) = 821144 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 454.923273 +0:The maximum resident set size (KB) = 821200 Test 055 hrrr_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/hrrr_control_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/hrrr_control_decomp Checking test 056 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2403,47 +2403,47 @@ Checking test 056 hrrr_control_decomp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 474.522246 -0:The maximum resident set size (KB) = 820108 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 473.467325 +0:The maximum resident set size (KB) = 820168 Test 056 hrrr_control_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/hrrr_control_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/hrrr_control_2threads Checking test 057 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2457,93 +2457,93 @@ Checking test 057 hrrr_control_2threads results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 432.925702 -0:The maximum resident set size (KB) = 887800 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 432.169622 +0:The maximum resident set size (KB) = 887804 Test 057 hrrr_control_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/hrrr_control_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/hrrr_control_restart Checking test 058 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 340.918761 -0:The maximum resident set size (KB) = 568200 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 343.022760 +0:The maximum resident set size (KB) = 568828 Test 058 hrrr_control_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_v1beta -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/rrfs_v1beta +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_v1beta +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/rrfs_v1beta Checking test 059 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2557,47 +2557,47 @@ Checking test 059 rrfs_v1beta results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 463.261572 -0:The maximum resident set size (KB) = 819892 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 463.416844 +0:The maximum resident set size (KB) = 819928 Test 059 rrfs_v1beta PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_v1nssl -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/rrfs_v1nssl +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_v1nssl +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/rrfs_v1nssl Checking test 060 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2612,14 +2612,14 @@ Checking test 060 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 561.143246 -0:The maximum resident set size (KB) = 508080 +0:The total amount of wall time = 571.621027 +0:The maximum resident set size (KB) = 508144 Test 060 rrfs_v1nssl PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/rrfs_v1nssl_nohailnoccn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/rrfs_v1nssl_nohailnoccn Checking test 061 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2634,14 +2634,14 @@ Checking test 061 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 558.327836 -0:The maximum resident set size (KB) = 501292 +0:The total amount of wall time = 553.055334 +0:The maximum resident set size (KB) = 501260 Test 061 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/rrfs_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/rrfs_conus13km_hrrr_warm Checking test 062 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2650,14 +2650,14 @@ Checking test 062 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 128.680788 -0:The maximum resident set size (KB) = 638964 +0:The total amount of wall time = 125.669635 +0:The maximum resident set size (KB) = 638904 Test 062 rrfs_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/rrfs_smoke_conus13km_hrrr_warm Checking test 063 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2666,14 +2666,14 @@ Checking test 063 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 145.548753 -0:The maximum resident set size (KB) = 652752 +0:The total amount of wall time = 143.430628 +0:The maximum resident set size (KB) = 652760 Test 063 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/rrfs_conus13km_radar_tten_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/rrfs_conus13km_radar_tten_warm Checking test 064 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2682,14 +2682,14 @@ Checking test 064 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 129.666348 -0:The maximum resident set size (KB) = 641016 +0:The total amount of wall time = 127.641971 +0:The maximum resident set size (KB) = 641048 Test 064 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/rrfs_conus13km_hrrr_warm_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/rrfs_conus13km_hrrr_warm_2threads Checking test 065 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2698,14 +2698,14 @@ Checking test 065 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 81.618566 -0:The maximum resident set size (KB) = 655452 +0:The total amount of wall time = 81.066602 +0:The maximum resident set size (KB) = 655512 Test 065 rrfs_conus13km_hrrr_warm_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/rrfs_conus13km_radar_tten_warm_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/rrfs_conus13km_radar_tten_warm_2threads Checking test 066 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2714,14 +2714,14 @@ Checking test 066 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 82.353866 -0:The maximum resident set size (KB) = 659312 +0:The total amount of wall time = 80.420374 +0:The maximum resident set size (KB) = 659160 Test 066 rrfs_conus13km_radar_tten_warm_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/control_csawmg -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/control_csawmg +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_csawmg +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/control_csawmg Checking test 067 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2732,14 +2732,14 @@ Checking test 067 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 395.589086 -0:The maximum resident set size (KB) = 529080 +0:The total amount of wall time = 398.481374 +0:The maximum resident set size (KB) = 529036 Test 067 control_csawmg PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/control_csawmgt -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/control_csawmgt +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_csawmgt +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/control_csawmgt Checking test 068 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2750,14 +2750,14 @@ Checking test 068 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 391.663235 -0:The maximum resident set size (KB) = 529060 +0:The total amount of wall time = 394.417558 +0:The maximum resident set size (KB) = 528996 Test 068 control_csawmgt PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/control_ras -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/control_ras +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_ras +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/control_ras Checking test 069 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2768,54 +2768,54 @@ Checking test 069 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 203.424258 -0:The maximum resident set size (KB) = 487916 +0:The total amount of wall time = 204.169544 +0:The maximum resident set size (KB) = 487720 Test 069 control_ras PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/control_wam -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/control_wam +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_wam +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/control_wam Checking test 070 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -0:The total amount of wall time = 129.058647 -0:The maximum resident set size (KB) = 204684 +0:The total amount of wall time = 128.665833 +0:The maximum resident set size (KB) = 205684 Test 070 control_wam PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/rrfs_conus13km_hrrr_warm_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/rrfs_conus13km_hrrr_warm_debug Checking test 071 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 757.689522 -0:The maximum resident set size (KB) = 668164 +0:The total amount of wall time = 766.040916 +0:The maximum resident set size (KB) = 672072 Test 071 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/rrfs_conus13km_radar_tten_warm_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_radar_tten_warm_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/rrfs_conus13km_radar_tten_warm_debug Checking test 072 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 758.435285 -0:The maximum resident set size (KB) = 670660 +0:The total amount of wall time = 764.955270 +0:The maximum resident set size (KB) = 673904 Test 072 rrfs_conus13km_radar_tten_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/control_CubedSphereGrid_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/control_CubedSphereGrid_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_CubedSphereGrid_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/control_CubedSphereGrid_debug Checking test 073 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2842,334 +2842,334 @@ Checking test 073 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -0:The total amount of wall time = 174.087103 -0:The maximum resident set size (KB) = 621500 +0:The total amount of wall time = 174.862061 +0:The maximum resident set size (KB) = 621504 Test 073 control_CubedSphereGrid_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/control_wrtGauss_netcdf_parallel_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/control_wrtGauss_netcdf_parallel_debug Checking test 074 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK - Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 162.562629 -0:The maximum resident set size (KB) = 621172 +0:The total amount of wall time = 162.966799 +0:The maximum resident set size (KB) = 621296 Test 074 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/control_stochy_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/control_stochy_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_stochy_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/control_stochy_debug Checking test 075 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 182.485329 -0:The maximum resident set size (KB) = 625092 +0:The total amount of wall time = 182.762113 +0:The maximum resident set size (KB) = 625112 Test 075 control_stochy_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/control_lndp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/control_lndp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_lndp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/control_lndp_debug Checking test 076 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 164.712241 -0:The maximum resident set size (KB) = 627216 +0:The total amount of wall time = 165.069392 +0:The maximum resident set size (KB) = 626972 Test 076 control_lndp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/control_csawmg_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/control_csawmg_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_csawmg_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/control_csawmg_debug Checking test 077 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 256.985205 -0:The maximum resident set size (KB) = 671280 +0:The total amount of wall time = 256.563445 +0:The maximum resident set size (KB) = 671296 Test 077 control_csawmg_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/control_csawmgt_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/control_csawmgt_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_csawmgt_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/control_csawmgt_debug Checking test 078 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 251.401960 -0:The maximum resident set size (KB) = 671060 +0:The total amount of wall time = 252.055758 +0:The maximum resident set size (KB) = 671048 Test 078 control_csawmgt_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/control_ras_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/control_ras_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_ras_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/control_ras_debug Checking test 079 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 166.544400 -0:The maximum resident set size (KB) = 632588 +0:The total amount of wall time = 167.199456 +0:The maximum resident set size (KB) = 632592 Test 079 control_ras_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/control_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/control_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/control_diag_debug Checking test 080 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 169.010536 -0:The maximum resident set size (KB) = 677944 +0:The total amount of wall time = 168.867436 +0:The maximum resident set size (KB) = 677848 Test 080 control_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/control_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/control_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/control_debug_p8 Checking test 081 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 184.430742 -0:The maximum resident set size (KB) = 1444176 +0:The total amount of wall time = 183.850970 +0:The maximum resident set size (KB) = 1444180 Test 081 control_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/regional_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/regional_debug Checking test 082 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 1036.510848 -0:The maximum resident set size (KB) = 621024 +0:The total amount of wall time = 1038.466721 +0:The maximum resident set size (KB) = 628936 Test 082 regional_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/rap_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/rap_control_debug Checking test 083 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 294.512660 -0:The maximum resident set size (KB) = 989888 +0:The total amount of wall time = 295.210094 +0:The maximum resident set size (KB) = 989876 Test 083 rap_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/hrrr_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/hrrr_control_debug Checking test 084 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 289.470473 -0:The maximum resident set size (KB) = 988776 +0:The total amount of wall time = 290.584601 +0:The maximum resident set size (KB) = 988808 Test 084 hrrr_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/rap_unified_drag_suite_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/rap_unified_drag_suite_debug Checking test 085 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 294.251637 -0:The maximum resident set size (KB) = 989856 +0:The total amount of wall time = 295.215797 +0:The maximum resident set size (KB) = 989808 Test 085 rap_unified_drag_suite_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/rap_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/rap_diag_debug Checking test 086 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 308.510164 -0:The maximum resident set size (KB) = 1074208 +0:The total amount of wall time = 308.542472 +0:The maximum resident set size (KB) = 1074052 Test 086 rap_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/rap_cires_ugwp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/rap_cires_ugwp_debug Checking test 087 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 301.672701 -0:The maximum resident set size (KB) = 988568 +0:The total amount of wall time = 301.327687 +0:The maximum resident set size (KB) = 988512 Test 087 rap_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/rap_unified_ugwp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/rap_unified_ugwp_debug Checking test 088 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 299.889783 -0:The maximum resident set size (KB) = 991976 +0:The total amount of wall time = 300.181226 +0:The maximum resident set size (KB) = 991912 Test 088 rap_unified_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_lndp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/rap_lndp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_lndp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/rap_lndp_debug Checking test 089 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 297.607177 -0:The maximum resident set size (KB) = 990500 +0:The total amount of wall time = 297.145209 +0:The maximum resident set size (KB) = 990644 Test 089 rap_lndp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_flake_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/rap_flake_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_flake_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/rap_flake_debug Checking test 090 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 294.041592 -0:The maximum resident set size (KB) = 989860 +0:The total amount of wall time = 294.503972 +0:The maximum resident set size (KB) = 989956 Test 090 rap_flake_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_progcld_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/rap_progcld_thompson_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_progcld_thompson_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/rap_progcld_thompson_debug Checking test 091 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 294.527313 -0:The maximum resident set size (KB) = 989708 +0:The total amount of wall time = 295.385443 +0:The maximum resident set size (KB) = 989804 Test 091 rap_progcld_thompson_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_noah_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/rap_noah_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_noah_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/rap_noah_debug Checking test 092 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 288.397459 -0:The maximum resident set size (KB) = 988496 +0:The total amount of wall time = 288.517244 +0:The maximum resident set size (KB) = 988424 Test 092 rap_noah_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_sfcdiff_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/rap_sfcdiff_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_sfcdiff_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/rap_sfcdiff_debug Checking test 093 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 294.320472 -0:The maximum resident set size (KB) = 991304 +0:The total amount of wall time = 295.349728 +0:The maximum resident set size (KB) = 991208 Test 093 rap_sfcdiff_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/rap_noah_sfcdiff_cires_ugwp_debug Checking test 094 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 478.804106 +0:The total amount of wall time = 479.107545 0:The maximum resident set size (KB) = 989416 Test 094 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_v1beta_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/rrfs_v1beta_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_v1beta_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/rrfs_v1beta_debug Checking test 095 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 289.846078 -0:The maximum resident set size (KB) = 986424 +0:The total amount of wall time = 290.119167 +0:The maximum resident set size (KB) = 986412 Test 095 rrfs_v1beta_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/control_wam_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/control_wam_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_wam_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/control_wam_debug Checking test 096 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 296.827370 -0:The maximum resident set size (KB) = 237912 +0:The total amount of wall time = 297.031065 +0:The maximum resident set size (KB) = 238980 Test 096 control_wam_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 097 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3180,14 +3180,14 @@ Checking test 097 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 303.008494 -0:The maximum resident set size (KB) = 848192 +0:The total amount of wall time = 301.318150 +0:The maximum resident set size (KB) = 848340 Test 097 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/rap_control_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/rap_control_dyn32_phy32 Checking test 098 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3201,47 +3201,47 @@ Checking test 098 rap_control_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 384.899463 -0:The maximum resident set size (KB) = 707052 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 379.937202 +0:The maximum resident set size (KB) = 707148 Test 098 rap_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/hrrr_control_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/hrrr_control_dyn32_phy32 Checking test 099 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3255,47 +3255,47 @@ Checking test 099 hrrr_control_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 203.852040 -0:The maximum resident set size (KB) = 705340 + 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 = 203.964322 +0:The maximum resident set size (KB) = 705320 Test 099 hrrr_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/rap_2threads_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/rap_2threads_dyn32_phy32 Checking test 100 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3309,47 +3309,47 @@ Checking test 100 rap_2threads_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 377.781511 -0:The maximum resident set size (KB) = 757208 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 373.750157 +0:The maximum resident set size (KB) = 757132 Test 100 rap_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/hrrr_control_2threads_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/hrrr_control_2threads_dyn32_phy32 Checking test 101 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3363,47 +3363,47 @@ Checking test 101 hrrr_control_2threads_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 200.993990 -0:The maximum resident set size (KB) = 758280 + 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 = 200.764594 +0:The maximum resident set size (KB) = 758452 Test 101 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/hrrr_control_decomp_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/hrrr_control_decomp_dyn32_phy32 Checking test 102 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3417,139 +3417,139 @@ Checking test 102 hrrr_control_decomp_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 214.472894 -0:The maximum resident set size (KB) = 704132 + 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 = 211.887098 +0:The maximum resident set size (KB) = 704004 Test 102 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/rap_restart_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/rap_restart_dyn32_phy32 Checking test 103 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 291.099520 -0:The maximum resident set size (KB) = 544760 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 290.919334 +0:The maximum resident set size (KB) = 544428 Test 103 rap_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/hrrr_control_restart_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/hrrr_control_restart_dyn32_phy32 Checking test 104 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 104.998155 -0:The maximum resident set size (KB) = 540620 + 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 = 103.907700 +0:The maximum resident set size (KB) = 536768 Test 104 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/rap_control_dyn64_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_dyn64_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/rap_control_dyn64_phy32 Checking test 105 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3563,114 +3563,114 @@ Checking test 105 rap_control_dyn64_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 268.393374 -0:The maximum resident set size (KB) = 726696 + 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 = 267.406128 +0:The maximum resident set size (KB) = 726960 Test 105 rap_control_dyn64_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/rap_control_debug_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/rap_control_debug_dyn32_phy32 Checking test 106 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 288.600558 -0:The maximum resident set size (KB) = 876080 +0:The total amount of wall time = 290.094388 +0:The maximum resident set size (KB) = 876116 Test 106 rap_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/hrrr_control_debug_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/hrrr_control_debug_dyn32_phy32 Checking test 107 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 284.489522 -0:The maximum resident set size (KB) = 874420 +0:The total amount of wall time = 285.608471 +0:The maximum resident set size (KB) = 874460 Test 107 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/rap_control_dyn64_phy32_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_debug_dyn64_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/rap_control_dyn64_phy32_debug Checking test 108 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 299.796691 -0:The maximum resident set size (KB) = 893564 +0:The total amount of wall time = 294.541118 +0:The maximum resident set size (KB) = 893308 Test 108 rap_control_dyn64_phy32_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/hafs_regional_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/hafs_regional_atm Checking test 109 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -0:The total amount of wall time = 253.393562 -0:The maximum resident set size (KB) = 715976 +0:The total amount of wall time = 264.390348 +0:The maximum resident set size (KB) = 739084 Test 109 hafs_regional_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/hafs_regional_atm_thompson_gfdlsf +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/hafs_regional_atm_thompson_gfdlsf Checking test 110 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -0:The total amount of wall time = 278.898914 -0:The maximum resident set size (KB) = 1070876 +0:The total amount of wall time = 293.434322 +0:The maximum resident set size (KB) = 1091364 Test 110 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_atm_ocn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/hafs_regional_atm_ocn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_atm_ocn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/hafs_regional_atm_ocn Checking test 111 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3679,14 +3679,14 @@ Checking test 111 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 445.913673 -0:The maximum resident set size (KB) = 719200 +0:The total amount of wall time = 455.198233 +0:The maximum resident set size (KB) = 738488 Test 111 hafs_regional_atm_ocn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_atm_wav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/hafs_regional_atm_wav +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_atm_wav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/hafs_regional_atm_wav Checking test 112 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3695,14 +3695,14 @@ Checking test 112 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 1019.677511 -0:The maximum resident set size (KB) = 747132 +0:The total amount of wall time = 1054.775985 +0:The maximum resident set size (KB) = 765896 Test 112 hafs_regional_atm_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_atm_ocn_wav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/hafs_regional_atm_ocn_wav +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_atm_ocn_wav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/hafs_regional_atm_ocn_wav Checking test 113 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3713,28 +3713,28 @@ Checking test 113 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 1078.110582 -0:The maximum resident set size (KB) = 767632 +0:The total amount of wall time = 1150.907575 +0:The maximum resident set size (KB) = 790088 Test 113 hafs_regional_atm_ocn_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/hafs_regional_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/hafs_regional_1nest_atm Checking test 114 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 374.574489 -0:The maximum resident set size (KB) = 284240 +0:The total amount of wall time = 375.496887 +0:The maximum resident set size (KB) = 293340 Test 114 hafs_regional_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/hafs_regional_telescopic_2nests_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/hafs_regional_telescopic_2nests_atm Checking test 115 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3743,28 +3743,28 @@ Checking test 115 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -0:The total amount of wall time = 424.169026 -0:The maximum resident set size (KB) = 301384 +0:The total amount of wall time = 429.160376 +0:The maximum resident set size (KB) = 309032 Test 115 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_global_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/hafs_global_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_global_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/hafs_global_1nest_atm Checking test 116 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 169.505818 -0:The maximum resident set size (KB) = 202296 +0:The total amount of wall time = 170.832890 +0:The maximum resident set size (KB) = 206288 Test 116 hafs_global_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_global_multiple_4nests_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/hafs_global_multiple_4nests_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_global_multiple_4nests_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/hafs_global_multiple_4nests_atm Checking test 117 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3782,14 +3782,14 @@ Checking test 117 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -0:The total amount of wall time = 487.094232 -0:The maximum resident set size (KB) = 290016 +0:The total amount of wall time = 489.543694 +0:The maximum resident set size (KB) = 292248 Test 117 hafs_global_multiple_4nests_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/hafs_regional_specified_moving_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/hafs_regional_specified_moving_1nest_atm Checking test 118 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3798,28 +3798,28 @@ Checking test 118 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -0:The total amount of wall time = 238.858088 -0:The maximum resident set size (KB) = 303184 +0:The total amount of wall time = 241.060605 +0:The maximum resident set size (KB) = 306724 Test 118 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/hafs_regional_storm_following_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/hafs_regional_storm_following_1nest_atm Checking test 119 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 222.260939 -0:The maximum resident set size (KB) = 303008 +0:The total amount of wall time = 228.756990 +0:The maximum resident set size (KB) = 306472 Test 119 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/hafs_regional_storm_following_1nest_atm_ocn Checking test 120 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3828,42 +3828,42 @@ Checking test 120 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -0:The total amount of wall time = 276.953850 -0:The maximum resident set size (KB) = 347560 +0:The total amount of wall time = 279.057042 +0:The maximum resident set size (KB) = 353456 Test 120 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_global_storm_following_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/hafs_global_storm_following_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_global_storm_following_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/hafs_global_storm_following_1nest_atm Checking test 121 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 65.765189 -0:The maximum resident set size (KB) = 217188 +0:The total amount of wall time = 66.222660 +0:The maximum resident set size (KB) = 221852 Test 121 hafs_global_storm_following_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 122 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 818.944206 -0:The maximum resident set size (KB) = 378600 +0:The total amount of wall time = 821.608798 +0:The maximum resident set size (KB) = 386996 Test 122 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 123 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3874,14 +3874,14 @@ Checking test 123 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -0:The total amount of wall time = 840.088174 -0:The maximum resident set size (KB) = 412340 +0:The total amount of wall time = 750.676110 +0:The maximum resident set size (KB) = 417772 Test 123 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_docn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/hafs_regional_docn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_docn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/hafs_regional_docn Checking test 124 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3889,14 +3889,14 @@ Checking test 124 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 380.465327 -0:The maximum resident set size (KB) = 735052 +0:The total amount of wall time = 391.014201 +0:The maximum resident set size (KB) = 754192 Test 124 hafs_regional_docn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_docn_oisst -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/hafs_regional_docn_oisst +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_docn_oisst +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/hafs_regional_docn_oisst Checking test 125 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3904,213 +3904,213 @@ Checking test 125 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 385.103470 -0:The maximum resident set size (KB) = 714780 +0:The total amount of wall time = 389.975646 +0:The maximum resident set size (KB) = 733376 Test 125 hafs_regional_docn_oisst PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_datm_cdeps -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/hafs_regional_datm_cdeps +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_datm_cdeps +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/hafs_regional_datm_cdeps Checking test 126 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -0:The total amount of wall time = 1284.628916 -0:The maximum resident set size (KB) = 887844 +0:The total amount of wall time = 1274.321380 +0:The maximum resident set size (KB) = 887832 Test 126 hafs_regional_datm_cdeps PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/datm_cdeps_control_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/datm_cdeps_control_cfsr Checking test 127 datm_cdeps_control_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20111002.000000.MOM.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 = 168.033888 -0:The maximum resident set size (KB) = 716704 +0:The total amount of wall time = 162.852364 +0:The maximum resident set size (KB) = 727756 Test 127 datm_cdeps_control_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/datm_cdeps_restart_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/datm_cdeps_restart_cfsr Checking test 128 datm_cdeps_restart_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 100.719081 -0:The maximum resident set size (KB) = 704816 +0:The total amount of wall time = 100.949104 +0:The maximum resident set size (KB) = 704848 Test 128 datm_cdeps_restart_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_control_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/datm_cdeps_control_gefs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_control_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/datm_cdeps_control_gefs Checking test 129 datm_cdeps_control_gefs results .... - Comparing RESTART/MOM.res.nc .........OK + 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 = 161.553976 -0:The maximum resident set size (KB) = 607440 +0:The total amount of wall time = 161.453750 +0:The maximum resident set size (KB) = 607500 Test 129 datm_cdeps_control_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_iau_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/datm_cdeps_iau_gefs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_iau_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/datm_cdeps_iau_gefs Checking test 130 datm_cdeps_iau_gefs results .... - Comparing RESTART/MOM.res.nc .........OK + 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 = 159.821540 -0:The maximum resident set size (KB) = 607472 +0:The total amount of wall time = 165.072799 +0:The maximum resident set size (KB) = 607460 Test 130 datm_cdeps_iau_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_stochy_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/datm_cdeps_stochy_gefs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_stochy_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/datm_cdeps_stochy_gefs Checking test 131 datm_cdeps_stochy_gefs results .... - Comparing RESTART/MOM.res.nc .........OK + 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 = 164.141647 -0:The maximum resident set size (KB) = 607480 +0:The total amount of wall time = 164.197217 +0:The maximum resident set size (KB) = 607444 Test 131 datm_cdeps_stochy_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_ciceC_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/datm_cdeps_ciceC_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_ciceC_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/datm_cdeps_ciceC_cfsr Checking test 132 datm_cdeps_ciceC_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20111002.000000.MOM.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 = 168.157484 -0:The maximum resident set size (KB) = 727744 +0:The total amount of wall time = 169.812450 +0:The maximum resident set size (KB) = 727772 Test 132 datm_cdeps_ciceC_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_bulk_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/datm_cdeps_bulk_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_bulk_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/datm_cdeps_bulk_cfsr Checking test 133 datm_cdeps_bulk_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20111002.000000.MOM.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 = 168.545284 -0:The maximum resident set size (KB) = 716656 +0:The total amount of wall time = 168.094000 +0:The maximum resident set size (KB) = 716680 Test 133 datm_cdeps_bulk_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_bulk_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/datm_cdeps_bulk_gefs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_bulk_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/datm_cdeps_bulk_gefs Checking test 134 datm_cdeps_bulk_gefs results .... - Comparing RESTART/MOM.res.nc .........OK + 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 = 161.233376 -0:The maximum resident set size (KB) = 607432 +0:The total amount of wall time = 157.073913 +0:The maximum resident set size (KB) = 607468 Test 134 datm_cdeps_bulk_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_mx025_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/datm_cdeps_mx025_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_mx025_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/datm_cdeps_mx025_cfsr Checking test 135 datm_cdeps_mx025_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/20111001.120000.MOM.res.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 762.382552 -0:The maximum resident set size (KB) = 514364 +0:The total amount of wall time = 676.578153 +0:The maximum resident set size (KB) = 514192 Test 135 datm_cdeps_mx025_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_mx025_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/datm_cdeps_mx025_gefs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_mx025_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/datm_cdeps_mx025_gefs Checking test 136 datm_cdeps_mx025_gefs results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/20111001.120000.MOM.res.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 817.098965 -0:The maximum resident set size (KB) = 494828 +0:The total amount of wall time = 685.086891 +0:The maximum resident set size (KB) = 494748 Test 136 datm_cdeps_mx025_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/datm_cdeps_multiple_files_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/datm_cdeps_multiple_files_cfsr Checking test 137 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 169.994779 -0:The maximum resident set size (KB) = 716716 +0:The total amount of wall time = 168.963747 +0:The maximum resident set size (KB) = 716724 Test 137 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/datm_cdeps_3072x1536_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/datm_cdeps_3072x1536_cfsr Checking test 138 datm_cdeps_3072x1536_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK + 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 = 254.653321 -0:The maximum resident set size (KB) = 1910040 +0:The total amount of wall time = 255.367381 +0:The maximum resident set size (KB) = 1941532 Test 138 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_gfs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/datm_cdeps_gfs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_gfs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/datm_cdeps_gfs Checking test 139 datm_cdeps_gfs results .... - Comparing RESTART/MOM.res.nc .........OK + 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 = 254.548955 -0:The maximum resident set size (KB) = 1941096 +0:The total amount of wall time = 268.289326 +0:The maximum resident set size (KB) = 1941156 Test 139 datm_cdeps_gfs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_debug_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/datm_cdeps_debug_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_debug_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/datm_cdeps_debug_cfsr Checking test 140 datm_cdeps_debug_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK + 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 = 458.441662 -0:The maximum resident set size (KB) = 717748 +0:The total amount of wall time = 458.828024 +0:The maximum resident set size (KB) = 706696 Test 140 datm_cdeps_debug_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/datm_cdeps_lnd_gswp3 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_lnd_gswp3 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/datm_cdeps_lnd_gswp3 Checking test 141 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4119,14 +4119,14 @@ Checking test 141 datm_cdeps_lnd_gswp3 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 = 10.698724 -0:The maximum resident set size (KB) = 216388 +0:The total amount of wall time = 10.044716 +0:The maximum resident set size (KB) = 216432 Test 141 datm_cdeps_lnd_gswp3 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/datm_cdeps_lnd_gswp3_rst +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_lnd_gswp3 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/datm_cdeps_lnd_gswp3_rst Checking test 142 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4135,14 +4135,14 @@ Checking test 142 datm_cdeps_lnd_gswp3_rst 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 = 17.017155 -0:The maximum resident set size (KB) = 210128 +0:The total amount of wall time = 15.642216 +0:The maximum resident set size (KB) = 208228 Test 142 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8_atmlnd_sbs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/control_p8_atmlnd_sbs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8_atmlnd_sbs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/control_p8_atmlnd_sbs Checking test 143 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4180,38 +4180,38 @@ Checking test 143 control_p8_atmlnd_sbs results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK Comparing ufs.cpld.cpl.hi.lnd.2021-03-22-43200.nc .........OK Comparing ufs.cpld.cpl.hi.lnd.2021-03-23-21600.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile1.nc .........OK @@ -4227,14 +4227,14 @@ Checking test 143 control_p8_atmlnd_sbs 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 = 234.098927 -0:The maximum resident set size (KB) = 1461968 +0:The total amount of wall time = 234.359635 +0:The maximum resident set size (KB) = 1462092 Test 143 control_p8_atmlnd_sbs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/control_atmwav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/control_atmwav +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_atmwav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/control_atmwav Checking test 144 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4244,48 +4244,48 @@ Checking test 144 control_atmwav results .... Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -0:The total amount of wall time = 98.836759 -0:The maximum resident set size (KB) = 474688 +0:The total amount of wall time = 99.307568 +0:The maximum resident set size (KB) = 474860 Test 144 control_atmwav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/atmaero_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/atmaero_control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/atmaero_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/atmaero_control_p8 Checking test 145 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4296,47 +4296,47 @@ Checking test 145 atmaero_control_p8 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 249.808375 -0:The maximum resident set size (KB) = 2703404 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 241.253651 +0:The maximum resident set size (KB) = 2703324 Test 145 atmaero_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/atmaero_control_p8_rad -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/atmaero_control_p8_rad +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/atmaero_control_p8_rad +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/atmaero_control_p8_rad Checking test 146 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4347,47 +4347,47 @@ Checking test 146 atmaero_control_p8_rad results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 301.510094 -0:The maximum resident set size (KB) = 2757648 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 302.701334 +0:The maximum resident set size (KB) = 2757640 Test 146 atmaero_control_p8_rad PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/atmaero_control_p8_rad_micro -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/atmaero_control_p8_rad_micro +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/atmaero_control_p8_rad_micro +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/atmaero_control_p8_rad_micro Checking test 147 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4398,47 +4398,47 @@ Checking test 147 atmaero_control_p8_rad_micro results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 305.755518 -0:The maximum resident set size (KB) = 2763864 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 309.447384 +0:The maximum resident set size (KB) = 2763872 Test 147 atmaero_control_p8_rad_micro PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_atmaq -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_67898/regional_atmaq +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_atmaq +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/regional_atmaq Checking test 148 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4446,20 +4446,20 @@ Checking test 148 regional_atmaq results .... Comparing atmf000.nc .........OK Comparing atmf003.nc .........OK Comparing atmf006.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/phy_data.nc .........OK - Comparing RESTART/sfc_data.nc .........OK + Comparing RESTART/20190801.180000.coupler.res .........OK + Comparing RESTART/20190801.180000.fv_core.res.nc .........OK + Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.phy_data.nc .........OK + Comparing RESTART/20190801.180000.sfc_data.nc .........OK -0:The total amount of wall time = 987.251893 -0:The maximum resident set size (KB) = 1139888 +0:The total amount of wall time = 1071.535475 +0:The maximum resident set size (KB) = 1146092 Test 148 regional_atmaq PASS REGRESSION TEST WAS SUCCESSFUL -Mon Feb 20 18:03:16 MST 2023 -Elapsed time: 01h:09m:54s. Have a nice day! +Mon Feb 27 08:29:48 MST 2023 +Elapsed time: 01h:06m:14s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index 01f1721e093..d3cf70f08f0 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,38 +1,38 @@ -Mon Feb 20 18:55:48 EST 2023 +Fri Feb 24 17:05:12 EST 2023 Start Regression test -Compile 001 elapsed time 913 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 863 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 816 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 271 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 263 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 771 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 775 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 762 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 690 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 665 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 694 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 278 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 013 elapsed time 584 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 777 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 015 elapsed time 888 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 322 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 017 elapsed time 330 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 831 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 019 elapsed time 435 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 1037 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 797 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 022 elapsed time 265 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 023 elapsed time 147 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 024 elapsed time 93 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 025 elapsed time 697 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 026 elapsed time 678 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 027 elapsed time 621 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 678 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 276 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8_mixedmode -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/cpld_control_p8_mixedmode +Compile 001 elapsed time 970 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1017 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 933 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 458 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 404 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 877 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 932 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 851 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 828 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 788 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 688 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 329 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 261 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 014 elapsed time 733 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 781 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 274 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 017 elapsed time 269 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 754 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 019 elapsed time 319 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 1047 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 793 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 022 elapsed time 333 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 023 elapsed time 258 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 024 elapsed time 170 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 025 elapsed time 733 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 026 elapsed time 733 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 027 elapsed time 719 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 751 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 210 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug + +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8_mixedmode +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -59,52 +59,52 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 344.849432 - 0: The maximum resident set size (KB) = 1566920 + 0: The total amount of wall time = 326.637123 + 0: The maximum resident set size (KB) = 1567964 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_gfsv17 -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/cpld_control_gfsv17 +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_gfsv17 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -130,52 +130,52 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 269.158737 - 0: The maximum resident set size (KB) = 1470576 + 0: The total amount of wall time = 240.886412 + 0: The maximum resident set size (KB) = 1470640 Test 002 cpld_control_gfsv17 PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/cpld_control_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -202,52 +202,52 @@ Checking test 003 cpld_control_p8 results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 421.535359 - 0: The maximum resident set size (KB) = 1567888 + 0: The total amount of wall time = 375.737458 + 0: The maximum resident set size (KB) = 1586224 Test 003 cpld_control_p8 PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/cpld_restart_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -262,52 +262,52 @@ Checking test 004 cpld_restart_p8 results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 236.946379 - 0: The maximum resident set size (KB) = 1022388 + 0: The total amount of wall time = 221.737308 + 0: The maximum resident set size (KB) = 1023276 Test 004 cpld_restart_p8 PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/cpld_2threads_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -322,52 +322,52 @@ Checking test 005 cpld_2threads_p8 results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 429.723635 - 0: The maximum resident set size (KB) = 1779268 + 0: The total amount of wall time = 422.316722 + 0: The maximum resident set size (KB) = 1792700 Test 005 cpld_2threads_p8 PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/cpld_decomp_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/cpld_decomp_p8 Checking test 006 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -382,52 +382,52 @@ Checking test 006 cpld_decomp_p8 results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 422.976646 - 0: The maximum resident set size (KB) = 1576420 + 0: The total amount of wall time = 410.142061 + 0: The maximum resident set size (KB) = 1588992 Test 006 cpld_decomp_p8 PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/cpld_mpi_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/cpld_mpi_p8 Checking test 007 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -442,52 +442,52 @@ Checking test 007 cpld_mpi_p8 results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 344.735685 - 0: The maximum resident set size (KB) = 1541208 + 0: The total amount of wall time = 357.259039 + 0: The maximum resident set size (KB) = 1543440 Test 007 cpld_mpi_p8 PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_ciceC_p8 -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/cpld_control_ciceC_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_ciceC_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/cpld_control_ciceC_p8 Checking test 008 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -514,52 +514,52 @@ Checking test 008 cpld_control_ciceC_p8 results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 400.362484 - 0: The maximum resident set size (KB) = 1600744 + 0: The total amount of wall time = 402.717977 + 0: The maximum resident set size (KB) = 1594188 Test 008 cpld_control_ciceC_p8 PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_c192_p8 -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/cpld_control_c192_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_c192_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/cpld_control_c192_p8 Checking test 009 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -574,52 +574,52 @@ Checking test 009 cpld_control_c192_p8 results .... Comparing atmf030.tile5.nc .........OK Comparing atmf030.tile6.nc .........OK Comparing gocart.inst_aod.20210323_1200z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.120000.coupler.res .........OK + Comparing RESTART/20210323.120000.fv_core.res.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 791.648109 - 0: The maximum resident set size (KB) = 1774836 + 0: The total amount of wall time = 769.877931 + 0: The maximum resident set size (KB) = 1776236 Test 009 cpld_control_c192_p8 PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_c192_p8 -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/cpld_restart_c192_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_c192_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/cpld_restart_c192_p8 Checking test 010 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -634,162 +634,162 @@ Checking test 010 cpld_restart_c192_p8 results .... Comparing atmf030.tile5.nc .........OK Comparing atmf030.tile6.nc .........OK Comparing gocart.inst_aod.20210323_1200z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.120000.coupler.res .........OK + Comparing RESTART/20210323.120000.fv_core.res.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 565.791454 - 0: The maximum resident set size (KB) = 1929100 + 0: The total amount of wall time = 478.217695 + 0: The maximum resident set size (KB) = 1929908 Test 010 cpld_restart_c192_p8 PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_bmark_p8 -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/cpld_bmark_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_bmark_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/cpld_bmark_p8 Checking test 011 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK Comparing GFSFLX.GrbF06 .........OK Comparing GFSPRS.GrbF06 .........OK Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/20130401.060000.coupler.res .........OK + Comparing RESTART/20130401.060000.fv_core.res.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20130401.060000.MOM.res.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_1.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_2.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 867.991826 - 0: The maximum resident set size (KB) = 2517596 + 0: The total amount of wall time = 814.047403 + 0: The maximum resident set size (KB) = 2537500 -Test 011 cpld_bmark_p8 PASS +Test 011 cpld_bmark_p8 PASS Tries: 2 -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_bmark_p8 -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/cpld_restart_bmark_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_bmark_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/cpld_restart_bmark_p8 Checking test 012 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK Comparing GFSFLX.GrbF06 .........OK Comparing GFSPRS.GrbF06 .........OK Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/20130401.060000.coupler.res .........OK + Comparing RESTART/20130401.060000.fv_core.res.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20130401.060000.MOM.res.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_1.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_2.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 629.594121 - 0: The maximum resident set size (KB) = 2352160 + 0: The total amount of wall time = 576.993867 + 0: The maximum resident set size (KB) = 2332468 Test 012 cpld_restart_bmark_p8 PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_noaero_p8 -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/cpld_control_noaero_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_noaero_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/cpld_control_noaero_p8 Checking test 013 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -815,52 +815,52 @@ Checking test 013 cpld_control_noaero_p8 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 304.655825 - 0: The maximum resident set size (KB) = 1467528 + 0: The total amount of wall time = 309.736471 + 0: The maximum resident set size (KB) = 1467284 Test 013 cpld_control_noaero_p8 PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_c96_noaero_p8 -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/cpld_control_nowave_noaero_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_c96_noaero_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/cpld_control_nowave_noaero_p8 Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -886,50 +886,50 @@ Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.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 = 309.607379 - 0: The maximum resident set size (KB) = 1485208 + 0: The total amount of wall time = 340.773715 + 0: The maximum resident set size (KB) = 1499636 Test 014 cpld_control_nowave_noaero_p8 PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_debug_p8 -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/cpld_debug_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_debug_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/cpld_debug_p8 Checking test 015 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -944,52 +944,52 @@ Checking test 015 cpld_debug_p8 results .... Comparing atmf003.tile5.nc .........OK Comparing atmf003.tile6.nc .........OK Comparing gocart.inst_aod.20210322_0900z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210322.090000.coupler.res .........OK + Comparing RESTART/20210322.090000.fv_core.res.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-22-32400.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 598.768041 - 0: The maximum resident set size (KB) = 1635944 + 0: The total amount of wall time = 582.204877 + 0: The maximum resident set size (KB) = 1650492 Test 015 cpld_debug_p8 PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_debug_noaero_p8 -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/cpld_debug_noaero_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_debug_noaero_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/cpld_debug_noaero_p8 Checking test 016 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1003,52 +1003,52 @@ Checking test 016 cpld_debug_noaero_p8 results .... Comparing atmf003.tile4.nc .........OK Comparing atmf003.tile5.nc .........OK Comparing atmf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210322.090000.coupler.res .........OK + Comparing RESTART/20210322.090000.fv_core.res.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-22-32400.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 414.703404 - 0: The maximum resident set size (KB) = 1465116 + 0: The total amount of wall time = 402.734524 + 0: The maximum resident set size (KB) = 1461192 Test 016 cpld_debug_noaero_p8 PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_noaero_p8_agrid -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/cpld_control_noaero_p8_agrid +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_noaero_p8_agrid +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/cpld_control_noaero_p8_agrid Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1074,50 +1074,50 @@ Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.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 = 321.418201 - 0: The maximum resident set size (KB) = 1489316 + 0: The total amount of wall time = 297.486032 + 0: The maximum resident set size (KB) = 1489052 Test 017 cpld_control_noaero_p8_agrid PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_c48 -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/cpld_control_c48 +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_c48 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/cpld_control_c48 Checking test 018 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1131,50 +1131,50 @@ Checking test 018 cpld_control_c48 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.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 = 609.845917 - 0: The maximum resident set size (KB) = 2568760 + 0: The total amount of wall time = 601.542304 + 0: The maximum resident set size (KB) = 2556728 Test 018 cpld_control_c48 PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_warmstart_c48 -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/cpld_warmstart_c48 +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_warmstart_c48 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/cpld_warmstart_c48 Checking test 019 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1188,50 +1188,50 @@ Checking test 019 cpld_warmstart_c48 results .... Comparing atmf006.tile4.nc .........OK Comparing atmf006.tile5.nc .........OK Comparing atmf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.120000.coupler.res .........OK + Comparing RESTART/20210323.120000.fv_core.res.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 159.345113 - 0: The maximum resident set size (KB) = 2575172 + 0: The total amount of wall time = 159.388092 + 0: The maximum resident set size (KB) = 2578560 Test 019 cpld_warmstart_c48 PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_warmstart_c48 -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/cpld_restart_c48 +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_warmstart_c48 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/cpld_restart_c48 Checking test 020 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1245,50 +1245,50 @@ Checking test 020 cpld_restart_c48 results .... Comparing atmf006.tile4.nc .........OK Comparing atmf006.tile5.nc .........OK Comparing atmf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.120000.coupler.res .........OK + Comparing RESTART/20210323.120000.fv_core.res.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 95.759022 - 0: The maximum resident set size (KB) = 1991600 + 0: The total amount of wall time = 86.246284 + 0: The maximum resident set size (KB) = 1995864 Test 020 cpld_restart_c48 PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_CubedSphereGrid -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/control_CubedSphereGrid +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_CubedSphereGrid +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/control_CubedSphereGrid Checking test 021 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1315,28 +1315,28 @@ Checking test 021 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 147.339697 - 0: The maximum resident set size (KB) = 437196 + 0: The total amount of wall time = 140.509949 + 0: The maximum resident set size (KB) = 437296 Test 021 control_CubedSphereGrid PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_CubedSphereGrid_parallel -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/control_CubedSphereGrid_parallel +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_CubedSphereGrid_parallel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/control_CubedSphereGrid_parallel Checking test 022 control_CubedSphereGrid_parallel 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 = 140.795263 - 0: The maximum resident set size (KB) = 437528 + 0: The total amount of wall time = 188.808190 + 0: The maximum resident set size (KB) = 437172 Test 022 control_CubedSphereGrid_parallel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_latlon -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/control_latlon +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_latlon +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/control_latlon Checking test 023 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1347,14 +1347,14 @@ Checking test 023 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 146.109683 - 0: The maximum resident set size (KB) = 437024 + 0: The total amount of wall time = 141.155734 + 0: The maximum resident set size (KB) = 437088 Test 023 control_latlon PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/control_wrtGauss_netcdf_parallel +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/control_wrtGauss_netcdf_parallel Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1365,60 +1365,60 @@ Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 155.636808 - 0: The maximum resident set size (KB) = 437120 + 0: The total amount of wall time = 194.448613 + 0: The maximum resident set size (KB) = 437008 Test 024 control_wrtGauss_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_c48 -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/control_c48 +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_c48 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/control_c48 Checking test 025 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0: The total amount of wall time = 419.337634 -0: The maximum resident set size (KB) = 630620 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 419.319491 +0: The maximum resident set size (KB) = 631664 Test 025 control_c48 PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_c192 -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/control_c192 +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_c192 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/control_c192 Checking test 026 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1429,14 +1429,14 @@ Checking test 026 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 583.614197 - 0: The maximum resident set size (KB) = 540648 + 0: The total amount of wall time = 576.460557 + 0: The maximum resident set size (KB) = 539980 Test 026 control_c192 PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_c384 -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/control_c384 +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_c384 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/control_c384 Checking test 027 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1447,14 +1447,14 @@ Checking test 027 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1096.602111 - 0: The maximum resident set size (KB) = 805024 + 0: The total amount of wall time = 1112.543116 + 0: The maximum resident set size (KB) = 818300 Test 027 control_c384 PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_c384gdas -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/control_c384gdas +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_c384gdas +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/control_c384gdas Checking test 028 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1464,47 +1464,47 @@ Checking test 028 control_c384gdas results .... Comparing GFSFLX.GrbF06 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF06 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 937.195748 - 0: The maximum resident set size (KB) = 923244 + Comparing RESTART/20210322.060000.coupler.res .........OK + Comparing RESTART/20210322.060000.fv_core.res.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 932.326685 + 0: The maximum resident set size (KB) = 947912 Test 028 control_c384gdas PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_stochy -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/control_stochy +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_stochy +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/control_stochy Checking test 029 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1515,28 +1515,28 @@ Checking test 029 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 96.727287 - 0: The maximum resident set size (KB) = 440296 + 0: The total amount of wall time = 105.177600 + 0: The maximum resident set size (KB) = 440300 Test 029 control_stochy PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_stochy -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/control_stochy_restart +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_stochy +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/control_stochy_restart Checking test 030 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 64.132302 - 0: The maximum resident set size (KB) = 191684 + 0: The total amount of wall time = 56.450093 + 0: The maximum resident set size (KB) = 194676 Test 030 control_stochy_restart PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_lndp -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/control_lndp +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_lndp +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/control_lndp Checking test 031 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1547,14 +1547,14 @@ Checking test 031 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 95.435466 - 0: The maximum resident set size (KB) = 440360 + 0: The total amount of wall time = 93.079769 + 0: The maximum resident set size (KB) = 440200 Test 031 control_lndp PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_iovr4 -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/control_iovr4 +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_iovr4 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/control_iovr4 Checking test 032 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1569,14 +1569,14 @@ Checking test 032 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 156.050401 - 0: The maximum resident set size (KB) = 437096 + 0: The total amount of wall time = 162.713396 + 0: The maximum resident set size (KB) = 437124 Test 032 control_iovr4 PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_iovr5 -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/control_iovr5 +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_iovr5 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/control_iovr5 Checking test 033 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1591,14 +1591,14 @@ Checking test 033 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 145.771526 - 0: The maximum resident set size (KB) = 437216 + 0: The total amount of wall time = 162.158363 + 0: The maximum resident set size (KB) = 437044 Test 033 control_iovr5 PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8 -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/control_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/control_p8 Checking test 034 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1612,47 +1612,47 @@ Checking test 034 control_p8 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 195.430307 - 0: The maximum resident set size (KB) = 1379704 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 181.920269 + 0: The maximum resident set size (KB) = 1403484 Test 034 control_p8 PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8_lndp -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/control_p8_lndp +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8_lndp +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/control_p8_lndp Checking test 035 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1671,60 +1671,60 @@ Checking test 035 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 348.939206 - 0: The maximum resident set size (KB) = 1403816 + 0: The total amount of wall time = 333.653251 + 0: The maximum resident set size (KB) = 1403700 Test 035 control_p8_lndp PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8 -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/control_restart_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/control_restart_p8 Checking test 036 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 109.924524 - 0: The maximum resident set size (KB) = 550184 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 93.397078 + 0: The maximum resident set size (KB) = 564556 Test 036 control_restart_p8 PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8 -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/control_decomp_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/control_decomp_p8 Checking test 037 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1734,47 +1734,47 @@ Checking test 037 control_decomp_p8 results .... Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 203.412442 - 0: The maximum resident set size (KB) = 1374080 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 191.427781 + 0: The maximum resident set size (KB) = 1397760 Test 037 control_decomp_p8 PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8 -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/control_2threads_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/control_2threads_p8 Checking test 038 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1784,47 +1784,47 @@ Checking test 038 control_2threads_p8 results .... Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 188.506708 - 0: The maximum resident set size (KB) = 1458900 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 176.515624 + 0: The maximum resident set size (KB) = 1461896 Test 038 control_2threads_p8 PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8_rrtmgp -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/control_p8_rrtmgp +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8_rrtmgp +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/control_p8_rrtmgp Checking test 039 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1838,47 +1838,47 @@ Checking test 039 control_p8_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 260.933843 - 0: The maximum resident set size (KB) = 1461676 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 251.145689 + 0: The maximum resident set size (KB) = 1461464 Test 039 control_p8_rrtmgp PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/merra2_thompson -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/merra2_thompson +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/merra2_thompson +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/merra2_thompson Checking test 040 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1892,47 +1892,47 @@ Checking test 040 merra2_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 219.840360 - 0: The maximum resident set size (KB) = 1383728 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 210.291568 + 0: The maximum resident set size (KB) = 1407500 Test 040 merra2_thompson PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_control -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/regional_control +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/regional_control Checking test 041 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1943,28 +1943,28 @@ Checking test 041 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 335.503830 - 0: The maximum resident set size (KB) = 575760 + 0: The total amount of wall time = 340.898289 + 0: The maximum resident set size (KB) = 577688 Test 041 regional_control PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_control -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/regional_restart +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/regional_restart Checking test 042 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 176.376333 - 0: The maximum resident set size (KB) = 575776 + 0: The total amount of wall time = 183.338516 + 0: The maximum resident set size (KB) = 577280 Test 042 regional_restart PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_control -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/regional_decomp +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/regional_decomp Checking test 043 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1975,14 +1975,14 @@ Checking test 043 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 350.647505 - 0: The maximum resident set size (KB) = 576212 + 0: The total amount of wall time = 351.215938 + 0: The maximum resident set size (KB) = 579232 Test 043 regional_decomp PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_control -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/regional_2threads +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/regional_2threads Checking test 044 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1993,14 +1993,14 @@ Checking test 044 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 202.919590 - 0: The maximum resident set size (KB) = 578336 + 0: The total amount of wall time = 201.697807 + 0: The maximum resident set size (KB) = 585312 Test 044 regional_2threads PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_noquilt -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/regional_noquilt +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_noquilt +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/regional_noquilt Checking test 045 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2008,28 +2008,28 @@ Checking test 045 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 357.250343 - 0: The maximum resident set size (KB) = 581368 + 0: The total amount of wall time = 363.493416 + 0: The maximum resident set size (KB) = 572808 Test 045 regional_noquilt PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_netcdf_parallel -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/regional_netcdf_parallel +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_netcdf_parallel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/regional_netcdf_parallel Checking test 046 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 334.835366 - 0: The maximum resident set size (KB) = 570280 + 0: The total amount of wall time = 528.469605 + 0: The maximum resident set size (KB) = 576800 Test 046 regional_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_control -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/regional_2dwrtdecomp +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/regional_2dwrtdecomp Checking test 047 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2040,14 +2040,14 @@ Checking test 047 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 329.813166 - 0: The maximum resident set size (KB) = 574976 + 0: The total amount of wall time = 350.805494 + 0: The maximum resident set size (KB) = 577716 Test 047 regional_2dwrtdecomp PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/fv3_regional_wofs -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/regional_wofs +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/fv3_regional_wofs +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/regional_wofs Checking test 048 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2058,14 +2058,14 @@ Checking test 048 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 416.394464 - 0: The maximum resident set size (KB) = 257480 + 0: The total amount of wall time = 419.947093 + 0: The maximum resident set size (KB) = 263236 Test 048 regional_wofs PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/rap_control +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/rap_control Checking test 049 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2079,47 +2079,47 @@ Checking test 049 rap_control results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 490.003381 - 0: The maximum resident set size (KB) = 807608 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 472.793610 + 0: The maximum resident set size (KB) = 807600 Test 049 rap_control PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_spp_sppt_shum_skeb -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/regional_spp_sppt_shum_skeb +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_spp_sppt_shum_skeb +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/regional_spp_sppt_shum_skeb Checking test 050 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2130,14 +2130,14 @@ Checking test 050 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 327.901554 - 0: The maximum resident set size (KB) = 888132 + 0: The total amount of wall time = 323.710205 + 0: The maximum resident set size (KB) = 888224 Test 050 regional_spp_sppt_shum_skeb PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/rap_decomp +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/rap_decomp Checking test 051 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2151,47 +2151,47 @@ Checking test 051 rap_decomp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 505.222239 - 0: The maximum resident set size (KB) = 807088 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 499.077599 + 0: The maximum resident set size (KB) = 807296 Test 051 rap_decomp PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/rap_2threads +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/rap_2threads Checking test 052 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2205,93 +2205,93 @@ Checking test 052 rap_2threads results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 467.712590 - 0: The maximum resident set size (KB) = 879088 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 459.465607 + 0: The maximum resident set size (KB) = 879156 Test 052 rap_2threads PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/rap_restart +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/rap_restart Checking test 053 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 242.250477 - 0: The maximum resident set size (KB) = 553168 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 247.683784 + 0: The maximum resident set size (KB) = 538684 Test 053 rap_restart PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/rap_sfcdiff +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_sfcdiff +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/rap_sfcdiff Checking test 054 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2305,47 +2305,47 @@ Checking test 054 rap_sfcdiff results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 485.789516 - 0: The maximum resident set size (KB) = 807560 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 466.866832 + 0: The maximum resident set size (KB) = 807608 Test 054 rap_sfcdiff PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/rap_sfcdiff_decomp +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_sfcdiff +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/rap_sfcdiff_decomp Checking test 055 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2359,93 +2359,93 @@ Checking test 055 rap_sfcdiff_decomp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 510.645129 - 0: The maximum resident set size (KB) = 806792 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 495.100381 + 0: The maximum resident set size (KB) = 806724 Test 055 rap_sfcdiff_decomp PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/rap_sfcdiff_restart +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_sfcdiff +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/rap_sfcdiff_restart Checking test 056 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 352.457900 - 0: The maximum resident set size (KB) = 541624 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 352.518493 + 0: The maximum resident set size (KB) = 550888 Test 056 rap_sfcdiff_restart PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/hrrr_control +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/hrrr_control Checking test 057 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2459,47 +2459,47 @@ Checking test 057 hrrr_control results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 465.257685 - 0: The maximum resident set size (KB) = 805104 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 453.978329 + 0: The maximum resident set size (KB) = 804928 Test 057 hrrr_control PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/hrrr_control_decomp +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/hrrr_control_decomp Checking test 058 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2513,47 +2513,47 @@ Checking test 058 hrrr_control_decomp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 488.111859 - 0: The maximum resident set size (KB) = 804568 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 475.446899 + 0: The maximum resident set size (KB) = 804680 Test 058 hrrr_control_decomp PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/hrrr_control_2threads +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/hrrr_control_2threads Checking test 059 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2567,93 +2567,93 @@ Checking test 059 hrrr_control_2threads results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 451.129603 - 0: The maximum resident set size (KB) = 871312 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 429.709852 + 0: The maximum resident set size (KB) = 871076 Test 059 hrrr_control_2threads PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/hrrr_control_restart +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/hrrr_control_restart Checking test 060 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 341.369333 - 0: The maximum resident set size (KB) = 549892 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 342.701219 + 0: The maximum resident set size (KB) = 540556 Test 060 hrrr_control_restart PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_v1beta -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/rrfs_v1beta +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_v1beta +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/rrfs_v1beta Checking test 061 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2667,47 +2667,47 @@ Checking test 061 rrfs_v1beta results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 509.253993 - 0: The maximum resident set size (KB) = 800884 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 465.544494 + 0: The maximum resident set size (KB) = 800856 Test 061 rrfs_v1beta PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_v1nssl -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/rrfs_v1nssl +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_v1nssl +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/rrfs_v1nssl Checking test 062 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2722,14 +2722,14 @@ Checking test 062 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 606.601540 - 0: The maximum resident set size (KB) = 491856 + 0: The total amount of wall time = 576.723373 + 0: The maximum resident set size (KB) = 491884 Test 062 rrfs_v1nssl PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/rrfs_v1nssl_nohailnoccn +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/rrfs_v1nssl_nohailnoccn Checking test 063 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2744,14 +2744,14 @@ Checking test 063 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 577.251809 - 0: The maximum resident set size (KB) = 485868 + 0: The total amount of wall time = 553.213085 + 0: The maximum resident set size (KB) = 485812 Test 063 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/rrfs_conus13km_hrrr_warm +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/rrfs_conus13km_hrrr_warm Checking test 064 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2760,14 +2760,14 @@ Checking test 064 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 152.389296 - 0: The maximum resident set size (KB) = 617500 + 0: The total amount of wall time = 126.575731 + 0: The maximum resident set size (KB) = 617624 Test 064 rrfs_conus13km_hrrr_warm PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/rrfs_smoke_conus13km_hrrr_warm Checking test 065 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2776,14 +2776,14 @@ Checking test 065 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 158.851838 - 0: The maximum resident set size (KB) = 627684 + 0: The total amount of wall time = 142.549048 + 0: The maximum resident set size (KB) = 627948 Test 065 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/rrfs_conus13km_radar_tten_warm +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/rrfs_conus13km_radar_tten_warm Checking test 066 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2792,14 +2792,14 @@ Checking test 066 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 146.377589 - 0: The maximum resident set size (KB) = 620848 + 0: The total amount of wall time = 127.085310 + 0: The maximum resident set size (KB) = 620616 Test 066 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/rrfs_conus13km_hrrr_warm_2threads +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/rrfs_conus13km_hrrr_warm_2threads Checking test 067 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2808,14 +2808,14 @@ Checking test 067 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 99.546660 - 0: The maximum resident set size (KB) = 629832 + 0: The total amount of wall time = 87.797075 + 0: The maximum resident set size (KB) = 630560 Test 067 rrfs_conus13km_hrrr_warm_2threads PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/rrfs_conus13km_radar_tten_warm_2threads +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/rrfs_conus13km_radar_tten_warm_2threads Checking test 068 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2824,14 +2824,14 @@ Checking test 068 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 102.141478 - 0: The maximum resident set size (KB) = 632288 + 0: The total amount of wall time = 83.539324 + 0: The maximum resident set size (KB) = 632336 Test 068 rrfs_conus13km_radar_tten_warm_2threads PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_csawmgt -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/control_csawmgt +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_csawmgt +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/control_csawmgt Checking test 069 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2842,14 +2842,14 @@ Checking test 069 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 395.066891 - 0: The maximum resident set size (KB) = 505660 + 0: The total amount of wall time = 375.354023 + 0: The maximum resident set size (KB) = 505644 Test 069 control_csawmgt PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_ras -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/control_ras +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_ras +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/control_ras Checking test 070 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2860,54 +2860,54 @@ Checking test 070 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 197.396940 - 0: The maximum resident set size (KB) = 471064 + 0: The total amount of wall time = 195.117303 + 0: The maximum resident set size (KB) = 470848 Test 070 control_ras PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_wam -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/control_wam +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_wam +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/control_wam Checking test 071 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 138.386732 - 0: The maximum resident set size (KB) = 186464 + 0: The total amount of wall time = 125.238025 + 0: The maximum resident set size (KB) = 188056 Test 071 control_wam PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/rrfs_conus13km_hrrr_warm_debug +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/rrfs_conus13km_hrrr_warm_debug Checking test 072 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 774.247329 - 0: The maximum resident set size (KB) = 645336 + 0: The total amount of wall time = 755.091816 + 0: The maximum resident set size (KB) = 649528 Test 072 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/rrfs_conus13km_radar_tten_warm_debug +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_radar_tten_warm_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/rrfs_conus13km_radar_tten_warm_debug Checking test 073 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 769.899792 - 0: The maximum resident set size (KB) = 647732 + 0: The total amount of wall time = 755.607275 + 0: The maximum resident set size (KB) = 652204 Test 073 rrfs_conus13km_radar_tten_warm_debug PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_CubedSphereGrid_debug -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/control_CubedSphereGrid_debug +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_CubedSphereGrid_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/control_CubedSphereGrid_debug Checking test 074 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2934,334 +2934,334 @@ Checking test 074 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 165.951193 - 0: The maximum resident set size (KB) = 601920 + 0: The total amount of wall time = 163.175529 + 0: The maximum resident set size (KB) = 601884 Test 074 control_CubedSphereGrid_debug PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/control_wrtGauss_netcdf_parallel_debug +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/control_wrtGauss_netcdf_parallel_debug Checking test 075 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 161.345672 - 0: The maximum resident set size (KB) = 601180 + 0: The total amount of wall time = 157.433593 + 0: The maximum resident set size (KB) = 601092 Test 075 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_stochy_debug -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/control_stochy_debug +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_stochy_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/control_stochy_debug Checking test 076 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 178.149730 - 0: The maximum resident set size (KB) = 607888 + 0: The total amount of wall time = 174.197087 + 0: The maximum resident set size (KB) = 607984 Test 076 control_stochy_debug PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_lndp_debug -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/control_lndp_debug +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_lndp_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/control_lndp_debug Checking test 077 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 166.485622 - 0: The maximum resident set size (KB) = 605972 + 0: The total amount of wall time = 157.620648 + 0: The maximum resident set size (KB) = 606116 Test 077 control_lndp_debug PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_csawmg_debug -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/control_csawmg_debug +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_csawmg_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/control_csawmg_debug Checking test 078 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 258.451193 - 0: The maximum resident set size (KB) = 642616 + 0: The total amount of wall time = 248.181835 + 0: The maximum resident set size (KB) = 642608 Test 078 control_csawmg_debug PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_csawmgt_debug -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/control_csawmgt_debug +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_csawmgt_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/control_csawmgt_debug Checking test 079 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 252.364279 - 0: The maximum resident set size (KB) = 642708 + 0: The total amount of wall time = 250.732492 + 0: The maximum resident set size (KB) = 642700 Test 079 control_csawmgt_debug PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_ras_debug -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/control_ras_debug +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_ras_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/control_ras_debug Checking test 080 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 160.784904 - 0: The maximum resident set size (KB) = 613812 + 0: The total amount of wall time = 160.030468 + 0: The maximum resident set size (KB) = 613700 Test 080 control_ras_debug PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_diag_debug -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/control_diag_debug +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_diag_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/control_diag_debug Checking test 081 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 163.693031 - 0: The maximum resident set size (KB) = 660536 + 0: The total amount of wall time = 162.500705 + 0: The maximum resident set size (KB) = 660420 Test 081 control_diag_debug PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_debug_p8 -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/control_debug_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_debug_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/control_debug_p8 Checking test 082 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 196.264437 - 0: The maximum resident set size (KB) = 1380232 + 0: The total amount of wall time = 176.678162 + 0: The maximum resident set size (KB) = 1380068 Test 082 control_debug_p8 PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_debug -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/regional_debug +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/regional_debug Checking test 083 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1053.713741 - 0: The maximum resident set size (KB) = 600112 + 0: The total amount of wall time = 1040.202430 + 0: The maximum resident set size (KB) = 606796 Test 083 regional_debug PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_debug -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/rap_control_debug +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/rap_control_debug Checking test 084 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 297.859840 - 0: The maximum resident set size (KB) = 972064 + 0: The total amount of wall time = 287.309240 + 0: The maximum resident set size (KB) = 972044 Test 084 rap_control_debug PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_debug -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/hrrr_control_debug +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/hrrr_control_debug Checking test 085 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 287.025498 - 0: The maximum resident set size (KB) = 967308 + 0: The total amount of wall time = 282.878876 + 0: The maximum resident set size (KB) = 967264 Test 085 hrrr_control_debug PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_debug -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/rap_unified_drag_suite_debug +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/rap_unified_drag_suite_debug Checking test 086 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 289.103122 - 0: The maximum resident set size (KB) = 972284 + 0: The total amount of wall time = 285.922935 + 0: The maximum resident set size (KB) = 972000 Test 086 rap_unified_drag_suite_debug PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_diag_debug -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/rap_diag_debug +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_diag_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/rap_diag_debug Checking test 087 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 306.978648 - 0: The maximum resident set size (KB) = 1056444 + 0: The total amount of wall time = 306.720972 + 0: The maximum resident set size (KB) = 1056472 Test 087 rap_diag_debug PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_cires_ugwp_debug -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/rap_cires_ugwp_debug +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_cires_ugwp_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/rap_cires_ugwp_debug Checking test 088 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 298.770785 - 0: The maximum resident set size (KB) = 971356 + 0: The total amount of wall time = 292.335435 + 0: The maximum resident set size (KB) = 971340 Test 088 rap_cires_ugwp_debug PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_cires_ugwp_debug -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/rap_unified_ugwp_debug +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_cires_ugwp_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/rap_unified_ugwp_debug Checking test 089 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 321.530813 - 0: The maximum resident set size (KB) = 973624 + 0: The total amount of wall time = 292.045697 + 0: The maximum resident set size (KB) = 973572 Test 089 rap_unified_ugwp_debug PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_lndp_debug -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/rap_lndp_debug +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_lndp_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/rap_lndp_debug Checking test 090 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 295.347390 - 0: The maximum resident set size (KB) = 972744 + 0: The total amount of wall time = 289.124800 + 0: The maximum resident set size (KB) = 972920 Test 090 rap_lndp_debug PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_flake_debug -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/rap_flake_debug +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_flake_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/rap_flake_debug Checking test 091 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 314.856534 - 0: The maximum resident set size (KB) = 972132 + 0: The total amount of wall time = 285.860454 + 0: The maximum resident set size (KB) = 972152 Test 091 rap_flake_debug PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_progcld_thompson_debug -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/rap_progcld_thompson_debug +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_progcld_thompson_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/rap_progcld_thompson_debug Checking test 092 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 298.226616 - 0: The maximum resident set size (KB) = 972140 + 0: The total amount of wall time = 287.155692 + 0: The maximum resident set size (KB) = 972052 Test 092 rap_progcld_thompson_debug PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_noah_debug -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/rap_noah_debug +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_noah_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/rap_noah_debug Checking test 093 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 286.635352 - 0: The maximum resident set size (KB) = 970448 + 0: The total amount of wall time = 282.000772 + 0: The maximum resident set size (KB) = 970724 Test 093 rap_noah_debug PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_sfcdiff_debug -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/rap_sfcdiff_debug +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_sfcdiff_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/rap_sfcdiff_debug Checking test 094 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 292.856997 - 0: The maximum resident set size (KB) = 972056 + 0: The total amount of wall time = 286.193292 + 0: The maximum resident set size (KB) = 971940 Test 094 rap_sfcdiff_debug PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/rap_noah_sfcdiff_cires_ugwp_debug Checking test 095 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 484.938015 - 0: The maximum resident set size (KB) = 971340 + 0: The total amount of wall time = 471.864325 + 0: The maximum resident set size (KB) = 971280 Test 095 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_v1beta_debug -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/rrfs_v1beta_debug +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_v1beta_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/rrfs_v1beta_debug Checking test 096 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 287.230600 - 0: The maximum resident set size (KB) = 968100 + 0: The total amount of wall time = 280.904897 + 0: The maximum resident set size (KB) = 968060 Test 096 rrfs_v1beta_debug PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_wam_debug -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/control_wam_debug +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_wam_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/control_wam_debug Checking test 097 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 298.545382 - 0: The maximum resident set size (KB) = 217360 + 0: The total amount of wall time = 295.888083 + 0: The maximum resident set size (KB) = 219164 Test 097 control_wam_debug PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 098 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3272,14 +3272,14 @@ Checking test 098 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 316.457764 - 0: The maximum resident set size (KB) = 788520 + 0: The total amount of wall time = 296.122974 + 0: The maximum resident set size (KB) = 788612 Test 098 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_dyn32_phy32 -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/rap_control_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/rap_control_dyn32_phy32 Checking test 099 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3293,47 +3293,47 @@ Checking test 099 rap_control_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 396.231097 - 0: The maximum resident set size (KB) = 690804 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 389.300669 + 0: The maximum resident set size (KB) = 690952 Test 099 rap_control_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/hrrr_control_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/hrrr_control_dyn32_phy32 Checking test 100 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3347,47 +3347,47 @@ Checking test 100 hrrr_control_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 211.267254 - 0: The maximum resident set size (KB) = 689388 + 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 = 203.340155 + 0: The maximum resident set size (KB) = 689124 Test 100 hrrr_control_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_dyn32_phy32 -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/rap_2threads_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/rap_2threads_dyn32_phy32 Checking test 101 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3401,47 +3401,47 @@ Checking test 101 rap_2threads_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 383.079584 - 0: The maximum resident set size (KB) = 740240 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 376.175896 + 0: The maximum resident set size (KB) = 740172 Test 101 rap_2threads_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/hrrr_control_2threads_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/hrrr_control_2threads_dyn32_phy32 Checking test 102 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3455,47 +3455,47 @@ Checking test 102 hrrr_control_2threads_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 203.080464 - 0: The maximum resident set size (KB) = 742652 + 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 = 206.105937 + 0: The maximum resident set size (KB) = 742700 Test 102 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/hrrr_control_decomp_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/hrrr_control_decomp_dyn32_phy32 Checking test 103 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3509,139 +3509,139 @@ Checking test 103 hrrr_control_decomp_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 225.068783 - 0: The maximum resident set size (KB) = 688224 + 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 = 212.083881 + 0: The maximum resident set size (KB) = 688132 Test 103 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_dyn32_phy32 -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/rap_restart_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/rap_restart_dyn32_phy32 Checking test 104 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 302.555200 - 0: The maximum resident set size (KB) = 524936 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 294.609386 + 0: The maximum resident set size (KB) = 515296 Test 104 rap_restart_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/hrrr_control_restart_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/hrrr_control_restart_dyn32_phy32 Checking test 105 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 108.181992 - 0: The maximum resident set size (KB) = 512020 + 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 = 105.718353 + 0: The maximum resident set size (KB) = 516532 Test 105 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_dyn64_phy32 -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/rap_control_dyn64_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_dyn64_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/rap_control_dyn64_phy32 Checking test 106 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3655,114 +3655,114 @@ Checking test 106 rap_control_dyn64_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 266.793689 - 0: The maximum resident set size (KB) = 713780 + 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 = 266.299644 + 0: The maximum resident set size (KB) = 713608 Test 106 rap_control_dyn64_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/rap_control_debug_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/rap_control_debug_dyn32_phy32 Checking test 107 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 290.516422 - 0: The maximum resident set size (KB) = 856920 + 0: The total amount of wall time = 282.398855 + 0: The maximum resident set size (KB) = 856828 Test 107 rap_control_debug_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/hrrr_control_debug_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/hrrr_control_debug_dyn32_phy32 Checking test 108 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 285.434961 - 0: The maximum resident set size (KB) = 855024 + 0: The total amount of wall time = 278.147422 + 0: The maximum resident set size (KB) = 855136 Test 108 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/rap_control_dyn64_phy32_debug +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/rap_control_dyn64_phy32_debug Checking test 109 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 292.170862 - 0: The maximum resident set size (KB) = 880236 + 0: The total amount of wall time = 288.364421 + 0: The maximum resident set size (KB) = 880304 Test 109 rap_control_dyn64_phy32_debug PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_atm -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/hafs_regional_atm +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_atm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/hafs_regional_atm Checking test 110 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 262.362006 - 0: The maximum resident set size (KB) = 655548 + 0: The total amount of wall time = 266.984602 + 0: The maximum resident set size (KB) = 681940 Test 110 hafs_regional_atm PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/hafs_regional_atm_thompson_gfdlsf +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/hafs_regional_atm_thompson_gfdlsf Checking test 111 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 303.888283 - 0: The maximum resident set size (KB) = 1020832 + 0: The total amount of wall time = 300.481659 + 0: The maximum resident set size (KB) = 1036168 Test 111 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_atm_ocn -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/hafs_regional_atm_ocn +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_atm_ocn +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/hafs_regional_atm_ocn Checking test 112 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3771,14 +3771,14 @@ Checking test 112 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 428.056699 - 0: The maximum resident set size (KB) = 693436 + 0: The total amount of wall time = 437.030079 + 0: The maximum resident set size (KB) = 712588 Test 112 hafs_regional_atm_ocn PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_atm_wav -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/hafs_regional_atm_wav +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_atm_wav +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/hafs_regional_atm_wav Checking test 113 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3787,14 +3787,14 @@ Checking test 113 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 919.861628 - 0: The maximum resident set size (KB) = 728648 + 0: The total amount of wall time = 928.537568 + 0: The maximum resident set size (KB) = 747600 Test 113 hafs_regional_atm_wav PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_atm_ocn_wav -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/hafs_regional_atm_ocn_wav +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_atm_ocn_wav +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/hafs_regional_atm_ocn_wav Checking test 114 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3805,28 +3805,28 @@ Checking test 114 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 1028.307162 - 0: The maximum resident set size (KB) = 740988 + 0: The total amount of wall time = 1041.855635 + 0: The maximum resident set size (KB) = 764524 Test 114 hafs_regional_atm_ocn_wav PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_1nest_atm -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/hafs_regional_1nest_atm +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_1nest_atm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/hafs_regional_1nest_atm Checking test 115 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 386.059695 - 0: The maximum resident set size (KB) = 268892 + 0: The total amount of wall time = 379.004439 + 0: The maximum resident set size (KB) = 275672 Test 115 hafs_regional_1nest_atm PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/hafs_regional_telescopic_2nests_atm +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/hafs_regional_telescopic_2nests_atm Checking test 116 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3835,28 +3835,28 @@ Checking test 116 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 448.186394 - 0: The maximum resident set size (KB) = 275384 + 0: The total amount of wall time = 436.126834 + 0: The maximum resident set size (KB) = 282468 Test 116 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_global_1nest_atm -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/hafs_global_1nest_atm +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_global_1nest_atm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/hafs_global_1nest_atm Checking test 117 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 171.900075 - 0: The maximum resident set size (KB) = 173092 + 0: The total amount of wall time = 171.144779 + 0: The maximum resident set size (KB) = 177796 Test 117 hafs_global_1nest_atm PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_global_multiple_4nests_atm -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/hafs_global_multiple_4nests_atm +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_global_multiple_4nests_atm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/hafs_global_multiple_4nests_atm Checking test 118 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3874,14 +3874,14 @@ Checking test 118 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 515.080533 - 0: The maximum resident set size (KB) = 226196 + 0: The total amount of wall time = 504.165890 + 0: The maximum resident set size (KB) = 208996 Test 118 hafs_global_multiple_4nests_atm PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/hafs_regional_specified_moving_1nest_atm +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/hafs_regional_specified_moving_1nest_atm Checking test 119 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3890,28 +3890,28 @@ Checking test 119 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 239.266092 - 0: The maximum resident set size (KB) = 283584 + 0: The total amount of wall time = 240.717221 + 0: The maximum resident set size (KB) = 288460 Test 119 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/hafs_regional_storm_following_1nest_atm +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/hafs_regional_storm_following_1nest_atm Checking test 120 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 236.794293 - 0: The maximum resident set size (KB) = 283200 + 0: The total amount of wall time = 231.290246 + 0: The maximum resident set size (KB) = 287152 Test 120 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/hafs_regional_storm_following_1nest_atm_ocn Checking test 121 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3920,42 +3920,42 @@ Checking test 121 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 269.980158 - 0: The maximum resident set size (KB) = 320052 + 0: The total amount of wall time = 267.066329 + 0: The maximum resident set size (KB) = 324688 Test 121 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/hafs_global_storm_following_1nest_atm +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_global_storm_following_1nest_atm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/hafs_global_storm_following_1nest_atm Checking test 122 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 70.560336 - 0: The maximum resident set size (KB) = 188184 + 0: The total amount of wall time = 73.361481 + 0: The maximum resident set size (KB) = 193080 Test 122 hafs_global_storm_following_1nest_atm PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 123 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 779.570018 - 0: The maximum resident set size (KB) = 344884 + 0: The total amount of wall time = 782.486560 + 0: The maximum resident set size (KB) = 353400 Test 123 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 124 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3966,14 +3966,14 @@ Checking test 124 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 742.582369 - 0: The maximum resident set size (KB) = 363136 + 0: The total amount of wall time = 745.872032 + 0: The maximum resident set size (KB) = 366612 Test 124 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_docn -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/hafs_regional_docn +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_docn +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/hafs_regional_docn Checking test 125 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3981,14 +3981,14 @@ Checking test 125 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 388.142186 - 0: The maximum resident set size (KB) = 704704 + 0: The total amount of wall time = 395.637537 + 0: The maximum resident set size (KB) = 723196 Test 125 hafs_regional_docn PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_docn_oisst -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/hafs_regional_docn_oisst +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_docn_oisst +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/hafs_regional_docn_oisst Checking test 126 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3996,213 +3996,213 @@ Checking test 126 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 392.518345 - 0: The maximum resident set size (KB) = 695420 + 0: The total amount of wall time = 394.494582 + 0: The maximum resident set size (KB) = 709924 Test 126 hafs_regional_docn_oisst PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_datm_cdeps -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/hafs_regional_datm_cdeps +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_datm_cdeps +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/hafs_regional_datm_cdeps Checking test 127 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 1179.569942 - 0: The maximum resident set size (KB) = 808852 + 0: The total amount of wall time = 1160.107523 + 0: The maximum resident set size (KB) = 808940 Test 127 hafs_regional_datm_cdeps PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/datm_cdeps_control_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/datm_cdeps_control_cfsr Checking test 128 datm_cdeps_control_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 169.312197 - 0: The maximum resident set size (KB) = 721132 + 0: The total amount of wall time = 166.215970 + 0: The maximum resident set size (KB) = 721152 Test 128 datm_cdeps_control_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/datm_cdeps_restart_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/datm_cdeps_restart_cfsr Checking test 129 datm_cdeps_restart_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20111002.000000.MOM.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 = 113.035786 - 0: The maximum resident set size (KB) = 716020 + 0: The total amount of wall time = 100.242676 + 0: The maximum resident set size (KB) = 716044 Test 129 datm_cdeps_restart_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_control_gefs -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/datm_cdeps_control_gefs +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_control_gefs +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/datm_cdeps_control_gefs Checking test 130 datm_cdeps_control_gefs results .... - Comparing RESTART/MOM.res.nc .........OK + 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 = 165.025894 - 0: The maximum resident set size (KB) = 602904 + 0: The total amount of wall time = 160.893973 + 0: The maximum resident set size (KB) = 600888 Test 130 datm_cdeps_control_gefs PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_iau_gefs -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/datm_cdeps_iau_gefs +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_iau_gefs +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/datm_cdeps_iau_gefs Checking test 131 datm_cdeps_iau_gefs results .... - Comparing RESTART/MOM.res.nc .........OK + 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 = 165.064155 - 0: The maximum resident set size (KB) = 605052 + 0: The total amount of wall time = 162.820037 + 0: The maximum resident set size (KB) = 601180 Test 131 datm_cdeps_iau_gefs PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_stochy_gefs -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/datm_cdeps_stochy_gefs +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_stochy_gefs +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/datm_cdeps_stochy_gefs Checking test 132 datm_cdeps_stochy_gefs results .... - Comparing RESTART/MOM.res.nc .........OK + 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 = 168.669611 - 0: The maximum resident set size (KB) = 600944 + 0: The total amount of wall time = 161.064884 + 0: The maximum resident set size (KB) = 601104 Test 132 datm_cdeps_stochy_gefs PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/datm_cdeps_ciceC_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_ciceC_cfsr +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/datm_cdeps_ciceC_cfsr Checking test 133 datm_cdeps_ciceC_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 173.035209 - 0: The maximum resident set size (KB) = 709612 + 0: The total amount of wall time = 171.251258 + 0: The maximum resident set size (KB) = 721132 Test 133 datm_cdeps_ciceC_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_bulk_cfsr -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/datm_cdeps_bulk_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_bulk_cfsr +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/datm_cdeps_bulk_cfsr Checking test 134 datm_cdeps_bulk_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20111002.000000.MOM.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 = 168.781924 - 0: The maximum resident set size (KB) = 721196 + 0: The total amount of wall time = 167.800514 + 0: The maximum resident set size (KB) = 721116 Test 134 datm_cdeps_bulk_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_bulk_gefs -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/datm_cdeps_bulk_gefs +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_bulk_gefs +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/datm_cdeps_bulk_gefs Checking test 135 datm_cdeps_bulk_gefs results .... - Comparing RESTART/MOM.res.nc .........OK + 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 = 165.043604 - 0: The maximum resident set size (KB) = 605208 + 0: The total amount of wall time = 162.448857 + 0: The maximum resident set size (KB) = 600912 Test 135 datm_cdeps_bulk_gefs PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_mx025_cfsr -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/datm_cdeps_mx025_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_mx025_cfsr +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/datm_cdeps_mx025_cfsr Checking test 136 datm_cdeps_mx025_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/20111001.120000.MOM.res.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 432.445661 - 0: The maximum resident set size (KB) = 496728 + 0: The total amount of wall time = 434.351330 + 0: The maximum resident set size (KB) = 496784 Test 136 datm_cdeps_mx025_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_mx025_gefs -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/datm_cdeps_mx025_gefs +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_mx025_gefs +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/datm_cdeps_mx025_gefs Checking test 137 datm_cdeps_mx025_gefs results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/20111001.120000.MOM.res.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 450.260802 - 0: The maximum resident set size (KB) = 476340 + 0: The total amount of wall time = 443.686553 + 0: The maximum resident set size (KB) = 476008 Test 137 datm_cdeps_mx025_gefs PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/datm_cdeps_multiple_files_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/datm_cdeps_multiple_files_cfsr Checking test 138 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 186.610918 - 0: The maximum resident set size (KB) = 721116 + 0: The total amount of wall time = 168.161253 + 0: The maximum resident set size (KB) = 721148 Test 138 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/datm_cdeps_3072x1536_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/datm_cdeps_3072x1536_cfsr Checking test 139 datm_cdeps_3072x1536_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK + 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 = 256.839950 - 0: The maximum resident set size (KB) = 1948260 + 0: The total amount of wall time = 251.716089 + 0: The maximum resident set size (KB) = 1947792 Test 139 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_gfs -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/datm_cdeps_gfs +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_gfs +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/datm_cdeps_gfs Checking test 140 datm_cdeps_gfs results .... - Comparing RESTART/MOM.res.nc .........OK + 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 = 250.952843 - 0: The maximum resident set size (KB) = 1963124 + 0: The total amount of wall time = 257.189975 + 0: The maximum resident set size (KB) = 1948424 Test 140 datm_cdeps_gfs PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_debug_cfsr -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/datm_cdeps_debug_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_debug_cfsr +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/datm_cdeps_debug_cfsr Checking test 141 datm_cdeps_debug_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK + 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 = 376.959797 - 0: The maximum resident set size (KB) = 715036 + 0: The total amount of wall time = 375.359638 + 0: The maximum resident set size (KB) = 714836 Test 141 datm_cdeps_debug_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/datm_cdeps_lnd_gswp3 +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/datm_cdeps_lnd_gswp3 Checking test 142 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4211,14 +4211,14 @@ Checking test 142 datm_cdeps_lnd_gswp3 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.256848 - 0: The maximum resident set size (KB) = 145796 + 0: The total amount of wall time = 11.809697 + 0: The maximum resident set size (KB) = 153872 Test 142 datm_cdeps_lnd_gswp3 PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/datm_cdeps_lnd_gswp3_rst +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/datm_cdeps_lnd_gswp3_rst Checking test 143 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4227,14 +4227,14 @@ Checking test 143 datm_cdeps_lnd_gswp3_rst 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 = 17.878736 - 0: The maximum resident set size (KB) = 154016 + 0: The total amount of wall time = 17.176370 + 0: The maximum resident set size (KB) = 145764 Test 143 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8_atmlnd_sbs -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/control_p8_atmlnd_sbs +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8_atmlnd_sbs +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/control_p8_atmlnd_sbs Checking test 144 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4272,38 +4272,38 @@ Checking test 144 control_p8_atmlnd_sbs results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK Comparing ufs.cpld.cpl.hi.lnd.2021-03-22-43200.nc .........OK Comparing ufs.cpld.cpl.hi.lnd.2021-03-23-21600.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile1.nc .........OK @@ -4319,14 +4319,14 @@ Checking test 144 control_p8_atmlnd_sbs results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 241.242129 - 0: The maximum resident set size (KB) = 1424348 + 0: The total amount of wall time = 254.001290 + 0: The maximum resident set size (KB) = 1438164 Test 144 control_p8_atmlnd_sbs PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_atmwav -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/control_atmwav +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_atmwav +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/control_atmwav Checking test 145 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4336,48 +4336,48 @@ Checking test 145 control_atmwav results .... Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 103.907850 - 0: The maximum resident set size (KB) = 450744 + 0: The total amount of wall time = 98.549780 + 0: The maximum resident set size (KB) = 450740 Test 145 control_atmwav PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/atmaero_control_p8 -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/atmaero_control_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/atmaero_control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/atmaero_control_p8 Checking test 146 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4388,47 +4388,47 @@ Checking test 146 atmaero_control_p8 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 263.387763 - 0: The maximum resident set size (KB) = 1478928 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 266.167310 + 0: The maximum resident set size (KB) = 1478880 Test 146 atmaero_control_p8 PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/atmaero_control_p8_rad -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/atmaero_control_p8_rad +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/atmaero_control_p8_rad +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/atmaero_control_p8_rad Checking test 147 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4439,47 +4439,47 @@ Checking test 147 atmaero_control_p8_rad results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 306.564535 - 0: The maximum resident set size (KB) = 1480900 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 302.555222 + 0: The maximum resident set size (KB) = 1481612 Test 147 atmaero_control_p8_rad PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/atmaero_control_p8_rad_micro -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/atmaero_control_p8_rad_micro +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/atmaero_control_p8_rad_micro +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/atmaero_control_p8_rad_micro Checking test 148 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4490,47 +4490,47 @@ Checking test 148 atmaero_control_p8_rad_micro results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 314.336156 - 0: The maximum resident set size (KB) = 1504160 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 312.559136 + 0: The maximum resident set size (KB) = 1485780 Test 148 atmaero_control_p8_rad_micro PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_atmaq -working dir = /lustre/f2/scratch/role.epic/FV3_RT/rt_36708/regional_atmaq +baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_atmaq +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/regional_atmaq Checking test 149 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4538,20 +4538,20 @@ Checking test 149 regional_atmaq results .... Comparing atmf000.nc .........OK Comparing atmf003.nc .........OK Comparing atmf006.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/phy_data.nc .........OK - Comparing RESTART/sfc_data.nc .........OK + Comparing RESTART/20190801.180000.coupler.res .........OK + Comparing RESTART/20190801.180000.fv_core.res.nc .........OK + Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.phy_data.nc .........OK + Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 684.690265 - 0: The maximum resident set size (KB) = 1083580 + 0: The total amount of wall time = 644.196657 + 0: The maximum resident set size (KB) = 1083048 Test 149 regional_atmaq PASS REGRESSION TEST WAS SUCCESSFUL -Mon Feb 20 22:20:00 EST 2023 -Elapsed time: 03h:24m:13s. Have a nice day! +Fri Feb 24 19:17:41 EST 2023 +Elapsed time: 02h:12m:30s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 3bd33b2a27a..e3e76cdc7e5 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,67 +1,67 @@ -Tue Feb 21 02:47:39 UTC 2023 +Fri Feb 24 19:17:45 UTC 2023 Start Regression test -Compile 001 elapsed time 179 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 183 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile 002 elapsed time 188 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 309 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 003 elapsed time 312 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug Compile 004 elapsed time 97 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 181 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 380 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 310 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 309 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 258 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 225 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 140 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 012 elapsed time 110 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/control_c48 +Compile 005 elapsed time 183 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 391 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 315 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 313 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 261 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 227 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 139 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 012 elapsed time 111 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/control_c48 Checking test 001 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0: The total amount of wall time = 685.880685 -0: The maximum resident set size (KB) = 700792 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 682.809532 +0: The maximum resident set size (KB) = 705152 Test 001 control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/control_stochy +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/control_stochy Checking test 002 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -72,14 +72,14 @@ Checking test 002 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 644.033991 - 0: The maximum resident set size (KB) = 478424 + 0: The total amount of wall time = 659.861593 + 0: The maximum resident set size (KB) = 476728 Test 002 control_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/control_ras +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/control_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/control_ras Checking test 003 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -90,14 +90,14 @@ Checking test 003 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 838.553107 - 0: The maximum resident set size (KB) = 486432 + 0: The total amount of wall time = 823.187113 + 0: The maximum resident set size (KB) = 489112 Test 003 control_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/control_p8 Checking test 004 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -111,47 +111,47 @@ Checking test 004 control_p8 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 895.306899 - 0: The maximum resident set size (KB) = 1236136 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 893.530325 + 0: The maximum resident set size (KB) = 1234804 Test 004 control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/rap_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/rap_control Checking test 005 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -165,47 +165,47 @@ Checking test 005 rap_control results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 1455.773630 - 0: The maximum resident set size (KB) = 831400 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 1476.546402 + 0: The maximum resident set size (KB) = 825136 Test 005 rap_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/rap_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/rap_decomp Checking test 006 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -219,47 +219,47 @@ Checking test 006 rap_decomp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 1434.262122 - 0: The maximum resident set size (KB) = 827680 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 1410.151808 + 0: The maximum resident set size (KB) = 829904 Test 006 rap_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/rap_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/rap_2threads Checking test 007 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -273,93 +273,93 @@ Checking test 007 rap_2threads results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 1361.242292 - 0: The maximum resident set size (KB) = 896084 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 1381.085033 + 0: The maximum resident set size (KB) = 895140 Test 007 rap_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/rap_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/rap_restart Checking test 008 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 719.268477 - 0: The maximum resident set size (KB) = 542632 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 730.562248 + 0: The maximum resident set size (KB) = 544164 Test 008 rap_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/rap_sfcdiff +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/rap_sfcdiff Checking test 009 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -373,47 +373,47 @@ Checking test 009 rap_sfcdiff results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 1482.588978 - 0: The maximum resident set size (KB) = 826724 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 1457.348535 + 0: The maximum resident set size (KB) = 831816 Test 009 rap_sfcdiff PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/rap_sfcdiff_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/rap_sfcdiff_decomp Checking test 010 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -427,93 +427,93 @@ Checking test 010 rap_sfcdiff_decomp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 1415.048960 - 0: The maximum resident set size (KB) = 830452 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 1467.158694 + 0: The maximum resident set size (KB) = 830480 Test 010 rap_sfcdiff_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/rap_sfcdiff_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/rap_sfcdiff_restart Checking test 011 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 1085.100565 - 0: The maximum resident set size (KB) = 542948 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 1063.366522 + 0: The maximum resident set size (KB) = 550264 Test 011 rap_sfcdiff_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/hrrr_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/hrrr_control Checking test 012 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -527,47 +527,47 @@ Checking test 012 hrrr_control results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 1418.732691 - 0: The maximum resident set size (KB) = 825292 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 1465.765900 + 0: The maximum resident set size (KB) = 820952 Test 012 hrrr_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/hrrr_control_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/hrrr_control_2threads Checking test 013 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -581,47 +581,47 @@ Checking test 013 hrrr_control_2threads results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 1313.965820 - 0: The maximum resident set size (KB) = 891800 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 1352.200386 + 0: The maximum resident set size (KB) = 888756 Test 013 hrrr_control_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/hrrr_control_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/hrrr_control_decomp Checking test 014 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -635,93 +635,93 @@ Checking test 014 hrrr_control_decomp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 1418.699946 - 0: The maximum resident set size (KB) = 827224 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 1405.479115 + 0: The maximum resident set size (KB) = 827404 Test 014 hrrr_control_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/hrrr_control_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/hrrr_control_restart Checking test 015 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 1058.306816 - 0: The maximum resident set size (KB) = 541000 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 1033.191862 + 0: The maximum resident set size (KB) = 546868 Test 015 hrrr_control_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/rrfs_v1beta +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/rrfs_v1beta Checking test 016 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -735,47 +735,47 @@ Checking test 016 rrfs_v1beta results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 1468.547679 - 0: The maximum resident set size (KB) = 822368 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 1461.941031 + 0: The maximum resident set size (KB) = 822048 Test 016 rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/rrfs_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/rrfs_conus13km_hrrr_warm Checking test 017 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -784,14 +784,14 @@ Checking test 017 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 749.222086 - 0: The maximum resident set size (KB) = 633368 + 0: The total amount of wall time = 767.642233 + 0: The maximum resident set size (KB) = 633252 Test 017 rrfs_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/rrfs_smoke_conus13km_hrrr_warm Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -800,14 +800,14 @@ Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 778.968328 - 0: The maximum resident set size (KB) = 648260 + 0: The total amount of wall time = 833.231562 + 0: The maximum resident set size (KB) = 647308 Test 018 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/rrfs_conus13km_radar_tten_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/rrfs_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/rrfs_conus13km_radar_tten_warm Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -816,14 +816,14 @@ Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 744.136287 - 0: The maximum resident set size (KB) = 639120 + 0: The total amount of wall time = 770.992510 + 0: The maximum resident set size (KB) = 637080 Test 019 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/rrfs_conus13km_radar_tten_warm_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/rrfs_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/rrfs_conus13km_radar_tten_warm_2threads Checking test 020 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -832,208 +832,208 @@ Checking test 020 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 893.876658 - 0: The maximum resident set size (KB) = 634292 + 0: The total amount of wall time = 987.328122 + 0: The maximum resident set size (KB) = 633840 Test 020 rrfs_conus13km_radar_tten_warm_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/control_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/control_diag_debug Checking test 021 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 126.866526 - 0: The maximum resident set size (KB) = 528472 + 0: The total amount of wall time = 128.431282 + 0: The maximum resident set size (KB) = 527140 Test 021 control_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/regional_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/regional_debug Checking test 022 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 625.807104 - 0: The maximum resident set size (KB) = 591040 + 0: The total amount of wall time = 741.064088 + 0: The maximum resident set size (KB) = 595968 Test 022 regional_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/rap_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/rap_control_debug Checking test 023 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 173.850474 - 0: The maximum resident set size (KB) = 849412 + 0: The total amount of wall time = 177.327883 + 0: The maximum resident set size (KB) = 844600 Test 023 rap_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/hrrr_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/hrrr_control_debug Checking test 024 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 171.419265 - 0: The maximum resident set size (KB) = 850196 + 0: The total amount of wall time = 176.514335 + 0: The maximum resident set size (KB) = 847748 Test 024 hrrr_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/rap_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/rap_diag_debug Checking test 025 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 218.203560 - 0: The maximum resident set size (KB) = 929528 + 0: The total amount of wall time = 219.220778 + 0: The maximum resident set size (KB) = 933044 Test 025 rap_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/rap_noah_sfcdiff_cires_ugwp_debug Checking test 026 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.392641 - 0: The maximum resident set size (KB) = 843024 + 0: The total amount of wall time = 279.541808 + 0: The maximum resident set size (KB) = 843764 Test 026 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/rap_progcld_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/rap_progcld_thompson_debug Checking test 027 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 173.652687 - 0: The maximum resident set size (KB) = 846152 + 0: The total amount of wall time = 174.841030 + 0: The maximum resident set size (KB) = 847120 Test 027 rap_progcld_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/rrfs_v1beta_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/rrfs_v1beta_debug Checking test 028 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 172.444856 - 0: The maximum resident set size (KB) = 841368 + 0: The total amount of wall time = 171.952380 + 0: The maximum resident set size (KB) = 846512 Test 028 rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/control_ras_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/control_ras_debug Checking test 029 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 103.050480 - 0: The maximum resident set size (KB) = 482996 + 0: The total amount of wall time = 105.116581 + 0: The maximum resident set size (KB) = 482780 Test 029 control_ras_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/control_stochy_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/control_stochy_debug Checking test 030 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 118.299602 - 0: The maximum resident set size (KB) = 477248 + 0: The total amount of wall time = 119.512963 + 0: The maximum resident set size (KB) = 476156 Test 030 control_stochy_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/control_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/control_debug_p8 Checking test 031 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 116.503502 - 0: The maximum resident set size (KB) = 1231760 + 0: The total amount of wall time = 117.918215 + 0: The maximum resident set size (KB) = 1236368 Test 031 control_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/rrfs_conus13km_hrrr_warm_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/rrfs_conus13km_hrrr_warm_debugs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/rrfs_conus13km_hrrr_warm_debug Checking test 032 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 577.079646 - 0: The maximum resident set size (KB) = 647784 + 0: The total amount of wall time = 581.978980 + 0: The maximum resident set size (KB) = 654332 Test 032 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/rrfs_conus13km_radar_tten_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/rrfs_conus13km_radar_tten_warm_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/rrfs_conus13km_radar_tten_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/rrfs_conus13km_radar_tten_warm_debug Checking test 033 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 562.098995 - 0: The maximum resident set size (KB) = 649316 + 0: The total amount of wall time = 538.492380 + 0: The maximum resident set size (KB) = 657788 Test 033 rrfs_conus13km_radar_tten_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/control_wam_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/control_wam_debug Checking test 034 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 184.599888 - 0: The maximum resident set size (KB) = 194472 + 0: The total amount of wall time = 185.906836 + 0: The maximum resident set size (KB) = 194352 Test 034 control_wam_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/rap_control_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/rap_control_dyn32_phy32 Checking test 035 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1047,47 +1047,47 @@ Checking test 035 rap_control_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 1466.739805 - 0: The maximum resident set size (KB) = 682560 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 1442.302238 + 0: The maximum resident set size (KB) = 689560 Test 035 rap_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/hrrr_control_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/hrrr_control_dyn32_phy32 Checking test 036 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1101,47 +1101,47 @@ Checking test 036 hrrr_control_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 740.643872 - 0: The maximum resident set size (KB) = 688248 + 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 = 709.409468 + 0: The maximum resident set size (KB) = 682576 Test 036 hrrr_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/rap_2threads_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/rap_2threads_dyn32_phy32 Checking test 037 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1155,47 +1155,47 @@ Checking test 037 rap_2threads_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 1312.156012 - 0: The maximum resident set size (KB) = 731592 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 1325.888736 + 0: The maximum resident set size (KB) = 728728 Test 037 rap_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/hrrr_control_2threads_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/hrrr_control_2threads_dyn32_phy32 Checking test 038 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1209,47 +1209,47 @@ Checking test 038 hrrr_control_2threads_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 669.241900 - 0: The maximum resident set size (KB) = 726040 + 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 = 667.276353 + 0: The maximum resident set size (KB) = 725544 Test 038 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/hrrr_control_decomp_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/hrrr_control_decomp_dyn32_phy32 Checking test 039 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1263,139 +1263,139 @@ Checking test 039 hrrr_control_decomp_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 719.788647 - 0: The maximum resident set size (KB) = 682772 + 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 = 716.182131 + 0: The maximum resident set size (KB) = 689292 Test 039 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/rap_restart_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/rap_restart_dyn32_phy32 Checking test 040 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 1084.446636 - 0: The maximum resident set size (KB) = 514144 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 1067.680494 + 0: The maximum resident set size (KB) = 511364 Test 040 rap_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/hrrr_control_restart_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/hrrr_control_restart_dyn32_phy32 Checking test 041 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 358.816763 - 0: The maximum resident set size (KB) = 507988 + 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 = 366.359498 + 0: The maximum resident set size (KB) = 509424 Test 041 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/rap_control_dyn64_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/rap_control_dyn64_phy32 Checking test 042 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1409,91 +1409,161 @@ Checking test 042 rap_control_dyn64_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 1069.186797 - 0: The maximum resident set size (KB) = 711700 + 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 = 1056.280456 + 0: The maximum resident set size (KB) = 711784 Test 042 rap_control_dyn64_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/rap_control_debug_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/rap_control_debug_dyn32_phy32 Checking test 043 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 173.602971 - 0: The maximum resident set size (KB) = 702556 + 0: The total amount of wall time = 170.850903 + 0: The maximum resident set size (KB) = 699924 Test 043 rap_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/hrrr_control_debug_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/hrrr_control_debug_dyn32_phy32 Checking test 044 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 170.333930 - 0: The maximum resident set size (KB) = 699172 + 0: The total amount of wall time = 173.422291 + 0: The maximum resident set size (KB) = 696916 Test 044 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/rap_control_dyn64_phy32_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/rap_control_debug_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/rap_control_dyn64_phy32_debug Checking test 045 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 205.344199 - 0: The maximum resident set size (KB) = 718364 + 0: The total amount of wall time = 208.808031 + 0: The maximum resident set size (KB) = 718992 Test 045 rap_control_dyn64_phy32_debug PASS -Test 046 cpld_control_p8 FAIL +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/cpld_control_p8 +Checking test 046 cpld_control_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 1679.050060 + 0: The maximum resident set size (KB) = 1431368 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/cpld_control_nowave_noaero_p8 +Test 046 cpld_control_p8 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/cpld_control_c96_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/cpld_control_nowave_noaero_p8 Checking test 047 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1519,50 +1589,50 @@ Checking test 047 cpld_control_nowave_noaero_p8 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 1229.937115 - 0: The maximum resident set size (KB) = 1332560 + 0: The total amount of wall time = 1209.813334 + 0: The maximum resident set size (KB) = 1332668 Test 047 cpld_control_nowave_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/cpld_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/cpld_debug_p8 Checking test 048 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1577,145 +1647,63 @@ Checking test 048 cpld_debug_p8 results .... Comparing atmf003.tile5.nc .........OK Comparing atmf003.tile6.nc .........OK Comparing gocart.inst_aod.20210322_0900z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210322.090000.coupler.res .........OK + Comparing RESTART/20210322.090000.fv_core.res.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-22-32400.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 913.112303 - 0: The maximum resident set size (KB) = 1445512 + 0: The total amount of wall time = 868.466605 + 0: The maximum resident set size (KB) = 1445272 Test 048 cpld_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_19104/datm_cdeps_control_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/datm_cdeps_control_cfsr Checking test 049 datm_cdeps_control_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20111002.000000.MOM.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 = 172.349013 - 0: The maximum resident set size (KB) = 664804 + 0: The total amount of wall time = 180.582808 + 0: The maximum resident set size (KB) = 664248 Test 049 datm_cdeps_control_cfsr PASS -FAILED TESTS: -Test cpld_control_p8 046 failed in run_test failed - -REGRESSION TEST FAILED -Tue Feb 21 04:41:23 UTC 2023 -Elapsed time: 01h:53m:45s. Have a nice day! -Tue Feb 21 13:12:42 UTC 2023 -Start Regression test - -Compile 001 elapsed time 262 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/GNU/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_22949/cpld_control_p8 -Checking test 001 cpld_control_p8 results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 1685.457976 - 0: The maximum resident set size (KB) = 1430320 - -Test 001 cpld_control_p8 PASS - REGRESSION TEST WAS SUCCESSFUL -Tue Feb 21 13:51:04 UTC 2023 -Elapsed time: 00h:38m:22s. Have a nice day! +Fri Feb 24 20:25:40 UTC 2023 +Elapsed time: 01h:07m:55s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 22f56386818..c99ed02ef78 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,38 +1,38 @@ -Tue Feb 21 00:03:33 UTC 2023 +Fri Feb 24 15:09:14 UTC 2023 Start Regression test -Compile 001 elapsed time 632 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 640 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 603 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 225 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 208 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 510 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 526 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 504 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 502 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 494 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 433 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 611 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 611 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 563 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 226 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 200 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 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 007 elapsed time 504 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 483 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 479 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 464 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 428 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile 012 elapsed time 205 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 013 elapsed time 161 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 442 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 159 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 014 elapsed time 437 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile 015 elapsed time 447 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 162 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 017 elapsed time 160 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 587 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 019 elapsed time 194 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 664 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 558 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 016 elapsed time 159 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 017 elapsed time 158 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 559 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 019 elapsed time 187 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 668 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 564 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile 022 elapsed time 181 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 023 elapsed time 109 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 024 elapsed time 52 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 025 elapsed time 480 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 026 elapsed time 532 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 027 elapsed time 465 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 455 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 164 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8_mixedmode -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/cpld_control_p8_mixedmode +Compile 023 elapsed time 107 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 024 elapsed time 51 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 025 elapsed time 475 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 026 elapsed time 586 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 027 elapsed time 464 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 453 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 190 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8_mixedmode +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -59,52 +59,52 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 304.432195 - 0: The maximum resident set size (KB) = 3148040 + 0: The total amount of wall time = 304.979389 + 0: The maximum resident set size (KB) = 3139860 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_gfsv17 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/cpld_control_gfsv17 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_gfsv17 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -130,52 +130,52 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 220.828666 - 0: The maximum resident set size (KB) = 1729444 + 0: The total amount of wall time = 222.130724 + 0: The maximum resident set size (KB) = 1723768 Test 002 cpld_control_gfsv17 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/cpld_control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -202,52 +202,52 @@ Checking test 003 cpld_control_p8 results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 332.666960 - 0: The maximum resident set size (KB) = 3178032 + 0: The total amount of wall time = 336.428480 + 0: The maximum resident set size (KB) = 3176744 Test 003 cpld_control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/cpld_restart_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -262,52 +262,52 @@ Checking test 004 cpld_restart_p8 results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 193.642384 - 0: The maximum resident set size (KB) = 3050356 + 0: The total amount of wall time = 191.274846 + 0: The maximum resident set size (KB) = 3050576 Test 004 cpld_restart_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/cpld_2threads_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -322,52 +322,52 @@ Checking test 005 cpld_2threads_p8 results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 347.108616 - 0: The maximum resident set size (KB) = 3513496 + 0: The total amount of wall time = 354.182786 + 0: The maximum resident set size (KB) = 3508512 Test 005 cpld_2threads_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/cpld_decomp_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/cpld_decomp_p8 Checking test 006 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -382,52 +382,52 @@ Checking test 006 cpld_decomp_p8 results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 334.210514 - 0: The maximum resident set size (KB) = 3175976 + 0: The total amount of wall time = 335.210823 + 0: The maximum resident set size (KB) = 3167036 Test 006 cpld_decomp_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/cpld_mpi_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/cpld_mpi_p8 Checking test 007 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -442,52 +442,52 @@ Checking test 007 cpld_mpi_p8 results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 275.217273 - 0: The maximum resident set size (KB) = 3023784 + 0: The total amount of wall time = 278.176902 + 0: The maximum resident set size (KB) = 3019960 Test 007 cpld_mpi_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_ciceC_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/cpld_control_ciceC_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_ciceC_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/cpld_control_ciceC_p8 Checking test 008 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -514,52 +514,52 @@ Checking test 008 cpld_control_ciceC_p8 results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 331.216880 - 0: The maximum resident set size (KB) = 3177344 + 0: The total amount of wall time = 338.015888 + 0: The maximum resident set size (KB) = 3180988 Test 008 cpld_control_ciceC_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/cpld_control_c192_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/cpld_control_c192_p8 Checking test 009 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -574,52 +574,52 @@ Checking test 009 cpld_control_c192_p8 results .... Comparing atmf030.tile5.nc .........OK Comparing atmf030.tile6.nc .........OK Comparing gocart.inst_aod.20210323_1200z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.120000.coupler.res .........OK + Comparing RESTART/20210323.120000.fv_core.res.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 573.005973 - 0: The maximum resident set size (KB) = 3258508 + 0: The total amount of wall time = 579.104628 + 0: The maximum resident set size (KB) = 3252708 Test 009 cpld_control_c192_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/cpld_restart_c192_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/cpld_restart_c192_p8 Checking test 010 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -634,162 +634,162 @@ Checking test 010 cpld_restart_c192_p8 results .... Comparing atmf030.tile5.nc .........OK Comparing atmf030.tile6.nc .........OK Comparing gocart.inst_aod.20210323_1200z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.120000.coupler.res .........OK + Comparing RESTART/20210323.120000.fv_core.res.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 395.133582 - 0: The maximum resident set size (KB) = 3153624 + 0: The total amount of wall time = 404.968295 + 0: The maximum resident set size (KB) = 3152732 Test 010 cpld_restart_c192_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/cpld_bmark_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/cpld_bmark_p8 Checking test 011 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK Comparing GFSFLX.GrbF06 .........OK Comparing GFSPRS.GrbF06 .........OK Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/20130401.060000.coupler.res .........OK + Comparing RESTART/20130401.060000.fv_core.res.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20130401.060000.MOM.res.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_1.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_2.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 694.529564 - 0: The maximum resident set size (KB) = 4030956 + 0: The total amount of wall time = 701.010036 + 0: The maximum resident set size (KB) = 4032068 Test 011 cpld_bmark_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/cpld_restart_bmark_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/cpld_restart_bmark_p8 Checking test 012 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK Comparing GFSFLX.GrbF06 .........OK Comparing GFSPRS.GrbF06 .........OK Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/20130401.060000.coupler.res .........OK + Comparing RESTART/20130401.060000.fv_core.res.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20130401.060000.MOM.res.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_1.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_2.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 423.005753 - 0: The maximum resident set size (KB) = 3966028 + 0: The total amount of wall time = 438.101944 + 0: The maximum resident set size (KB) = 3968332 Test 012 cpld_restart_bmark_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/cpld_control_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/cpld_control_noaero_p8 Checking test 013 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -815,52 +815,52 @@ Checking test 013 cpld_control_noaero_p8 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 258.356447 - 0: The maximum resident set size (KB) = 1726916 + 0: The total amount of wall time = 261.031121 + 0: The maximum resident set size (KB) = 1715432 Test 013 cpld_control_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/cpld_control_nowave_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_c96_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/cpld_control_nowave_noaero_p8 Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -886,50 +886,50 @@ Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.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 = 256.243885 - 0: The maximum resident set size (KB) = 1758240 + 0: The total amount of wall time = 256.811111 + 0: The maximum resident set size (KB) = 1765960 Test 014 cpld_control_nowave_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/cpld_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/cpld_debug_p8 Checking test 015 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -944,52 +944,52 @@ Checking test 015 cpld_debug_p8 results .... Comparing atmf003.tile5.nc .........OK Comparing atmf003.tile6.nc .........OK Comparing gocart.inst_aod.20210322_0900z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210322.090000.coupler.res .........OK + Comparing RESTART/20210322.090000.fv_core.res.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-22-32400.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 654.712028 - 0: The maximum resident set size (KB) = 3243048 + 0: The total amount of wall time = 661.090097 + 0: The maximum resident set size (KB) = 3245788 Test 015 cpld_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_debug_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/cpld_debug_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_debug_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/cpld_debug_noaero_p8 Checking test 016 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1003,52 +1003,52 @@ Checking test 016 cpld_debug_noaero_p8 results .... Comparing atmf003.tile4.nc .........OK Comparing atmf003.tile5.nc .........OK Comparing atmf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210322.090000.coupler.res .........OK + Comparing RESTART/20210322.090000.fv_core.res.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-22-32400.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 406.286880 - 0: The maximum resident set size (KB) = 1732628 + 0: The total amount of wall time = 410.017714 + 0: The maximum resident set size (KB) = 1739388 Test 016 cpld_debug_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_noaero_p8_agrid -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/cpld_control_noaero_p8_agrid +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_noaero_p8_agrid +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/cpld_control_noaero_p8_agrid Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1074,50 +1074,50 @@ Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 262.863355 - 0: The maximum resident set size (KB) = 1757808 + 0: The total amount of wall time = 264.334714 + 0: The maximum resident set size (KB) = 1761948 Test 017 cpld_control_noaero_p8_agrid PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/cpld_control_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/cpld_control_c48 Checking test 018 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1131,50 +1131,50 @@ Checking test 018 cpld_control_c48 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.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 = 580.021481 - 0: The maximum resident set size (KB) = 2800332 + 0: The total amount of wall time = 585.524267 + 0: The maximum resident set size (KB) = 2796576 Test 018 cpld_control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/cpld_warmstart_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_warmstart_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/cpld_warmstart_c48 Checking test 019 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1188,50 +1188,50 @@ Checking test 019 cpld_warmstart_c48 results .... Comparing atmf006.tile4.nc .........OK Comparing atmf006.tile5.nc .........OK Comparing atmf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.120000.coupler.res .........OK + Comparing RESTART/20210323.120000.fv_core.res.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 154.335643 - 0: The maximum resident set size (KB) = 2798080 + 0: The total amount of wall time = 158.603706 + 0: The maximum resident set size (KB) = 2801772 Test 019 cpld_warmstart_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/cpld_restart_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_warmstart_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/cpld_restart_c48 Checking test 020 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1245,50 +1245,50 @@ Checking test 020 cpld_restart_c48 results .... Comparing atmf006.tile4.nc .........OK Comparing atmf006.tile5.nc .........OK Comparing atmf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.120000.coupler.res .........OK + Comparing RESTART/20210323.120000.fv_core.res.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 84.064352 - 0: The maximum resident set size (KB) = 2242232 + 0: The total amount of wall time = 83.128372 + 0: The maximum resident set size (KB) = 2247172 Test 020 cpld_restart_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_CubedSphereGrid -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/control_CubedSphereGrid +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_CubedSphereGrid +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/control_CubedSphereGrid Checking test 021 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1315,28 +1315,28 @@ Checking test 021 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 128.933979 - 0: The maximum resident set size (KB) = 626556 + 0: The total amount of wall time = 129.093711 + 0: The maximum resident set size (KB) = 625796 Test 021 control_CubedSphereGrid PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_CubedSphereGrid_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/control_CubedSphereGrid_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_CubedSphereGrid_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/control_CubedSphereGrid_parallel Checking test 022 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 126.170245 - 0: The maximum resident set size (KB) = 627664 + 0: The total amount of wall time = 127.085696 + 0: The maximum resident set size (KB) = 627320 Test 022 control_CubedSphereGrid_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_latlon -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/control_latlon +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_latlon +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/control_latlon Checking test 023 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1347,14 +1347,14 @@ Checking test 023 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 132.166093 - 0: The maximum resident set size (KB) = 627580 + 0: The total amount of wall time = 131.927417 + 0: The maximum resident set size (KB) = 628444 Test 023 control_latlon PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_wrtGauss_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/control_wrtGauss_netcdf_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_wrtGauss_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/control_wrtGauss_netcdf_parallel Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1365,60 +1365,60 @@ Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.359653 - 0: The maximum resident set size (KB) = 624096 + 0: The total amount of wall time = 135.065912 + 0: The maximum resident set size (KB) = 634196 Test 024 control_wrtGauss_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/control_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/control_c48 Checking test 025 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0: The total amount of wall time = 373.773178 -0: The maximum resident set size (KB) = 813840 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0: The total amount of wall time = 368.670167 +0: The maximum resident set size (KB) = 819492 Test 025 control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/control_c192 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/control_c192 Checking test 026 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1429,14 +1429,14 @@ Checking test 026 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 524.645000 - 0: The maximum resident set size (KB) = 763148 + 0: The total amount of wall time = 524.106430 + 0: The maximum resident set size (KB) = 763584 Test 026 control_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/control_c384 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_c384 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/control_c384 Checking test 027 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1447,14 +1447,14 @@ Checking test 027 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 529.009074 - 0: The maximum resident set size (KB) = 1203128 + 0: The total amount of wall time = 527.807337 + 0: The maximum resident set size (KB) = 1265248 Test 027 control_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_c384gdas -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/control_c384gdas +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_c384gdas +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/control_c384gdas Checking test 028 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1464,47 +1464,47 @@ Checking test 028 control_c384gdas results .... Comparing GFSFLX.GrbF06 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF06 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 459.473928 - 0: The maximum resident set size (KB) = 1339852 + Comparing RESTART/20210322.060000.coupler.res .........OK + Comparing RESTART/20210322.060000.fv_core.res.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 464.821270 + 0: The maximum resident set size (KB) = 1363808 Test 028 control_c384gdas PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/control_stochy +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/control_stochy Checking test 029 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1515,28 +1515,28 @@ Checking test 029 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 87.065139 - 0: The maximum resident set size (KB) = 626476 + 0: The total amount of wall time = 87.223138 + 0: The maximum resident set size (KB) = 632920 Test 029 control_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/control_stochy_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/control_stochy_restart Checking test 030 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 46.119853 - 0: The maximum resident set size (KB) = 480528 + 0: The total amount of wall time = 46.709195 + 0: The maximum resident set size (KB) = 485380 Test 030 control_stochy_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/control_lndp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_lndp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/control_lndp Checking test 031 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1547,14 +1547,14 @@ Checking test 031 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 79.335329 - 0: The maximum resident set size (KB) = 628080 + 0: The total amount of wall time = 80.403670 + 0: The maximum resident set size (KB) = 626888 Test 031 control_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_iovr4 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/control_iovr4 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_iovr4 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/control_iovr4 Checking test 032 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1569,14 +1569,14 @@ Checking test 032 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 133.450049 - 0: The maximum resident set size (KB) = 626548 + 0: The total amount of wall time = 134.483452 + 0: The maximum resident set size (KB) = 622144 Test 032 control_iovr4 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_iovr5 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/control_iovr5 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_iovr5 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/control_iovr5 Checking test 033 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1591,14 +1591,14 @@ Checking test 033 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 132.992700 - 0: The maximum resident set size (KB) = 626092 + 0: The total amount of wall time = 133.832917 + 0: The maximum resident set size (KB) = 623744 Test 033 control_iovr5 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/control_p8 Checking test 034 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1612,47 +1612,47 @@ Checking test 034 control_p8 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 167.167360 - 0: The maximum resident set size (KB) = 1597932 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 165.087801 + 0: The maximum resident set size (KB) = 1602576 Test 034 control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/control_p8_lndp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8_lndp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/control_p8_lndp Checking test 035 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1671,60 +1671,60 @@ Checking test 035 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 308.505093 - 0: The maximum resident set size (KB) = 1603580 + 0: The total amount of wall time = 308.714409 + 0: The maximum resident set size (KB) = 1604176 Test 035 control_p8_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/control_restart_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/control_restart_p8 Checking test 036 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 87.075492 - 0: The maximum resident set size (KB) = 861096 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 86.904206 + 0: The maximum resident set size (KB) = 874104 Test 036 control_restart_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/control_decomp_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/control_decomp_p8 Checking test 037 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1734,47 +1734,47 @@ Checking test 037 control_decomp_p8 results .... Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 173.015182 - 0: The maximum resident set size (KB) = 1588480 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 170.576624 + 0: The maximum resident set size (KB) = 1580748 Test 037 control_decomp_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/control_2threads_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/control_2threads_p8 Checking test 038 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1784,47 +1784,47 @@ Checking test 038 control_2threads_p8 results .... Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 163.630473 - 0: The maximum resident set size (KB) = 1689012 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 161.370574 + 0: The maximum resident set size (KB) = 1674168 Test 038 control_2threads_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/control_p8_rrtmgp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/control_p8_rrtmgp Checking test 039 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1838,47 +1838,47 @@ Checking test 039 control_p8_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 223.653462 - 0: The maximum resident set size (KB) = 1671964 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 222.494647 + 0: The maximum resident set size (KB) = 1665044 Test 039 control_p8_rrtmgp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/merra2_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/merra2_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/merra2_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/merra2_thompson Checking test 040 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1892,47 +1892,47 @@ Checking test 040 merra2_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 188.834021 - 0: The maximum resident set size (KB) = 1609660 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 189.508721 + 0: The maximum resident set size (KB) = 1615528 Test 040 merra2_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/regional_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/regional_control Checking test 041 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1943,28 +1943,28 @@ Checking test 041 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 293.381963 - 0: The maximum resident set size (KB) = 863480 + 0: The total amount of wall time = 293.877162 + 0: The maximum resident set size (KB) = 867400 Test 041 regional_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/regional_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/regional_restart Checking test 042 regional_restart 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.020376 - 0: The maximum resident set size (KB) = 857880 + 0: The total amount of wall time = 152.298302 + 0: The maximum resident set size (KB) = 860392 Test 042 regional_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/regional_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/regional_decomp Checking test 043 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1975,14 +1975,14 @@ Checking test 043 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 312.125824 - 0: The maximum resident set size (KB) = 853212 + 0: The total amount of wall time = 315.140196 + 0: The maximum resident set size (KB) = 859540 Test 043 regional_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/regional_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/regional_2threads Checking test 044 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1993,14 +1993,14 @@ Checking test 044 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 180.575704 - 0: The maximum resident set size (KB) = 839668 + 0: The total amount of wall time = 182.292461 + 0: The maximum resident set size (KB) = 843272 Test 044 regional_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_noquilt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/regional_noquilt +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_noquilt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/regional_noquilt Checking test 045 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2008,28 +2008,28 @@ Checking test 045 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 322.510574 - 0: The maximum resident set size (KB) = 850432 + 0: The total amount of wall time = 319.533160 + 0: The maximum resident set size (KB) = 854428 Test 045 regional_noquilt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/regional_netcdf_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/regional_netcdf_parallel Checking test 046 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 290.615941 - 0: The maximum resident set size (KB) = 855860 + 0: The total amount of wall time = 293.965296 + 0: The maximum resident set size (KB) = 861516 Test 046 regional_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/regional_2dwrtdecomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/regional_2dwrtdecomp Checking test 047 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2040,14 +2040,14 @@ Checking test 047 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 296.197909 - 0: The maximum resident set size (KB) = 868464 + 0: The total amount of wall time = 299.978772 + 0: The maximum resident set size (KB) = 869552 Test 047 regional_2dwrtdecomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/fv3_regional_wofs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/regional_wofs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/fv3_regional_wofs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/regional_wofs Checking test 048 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2058,14 +2058,14 @@ Checking test 048 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 374.185178 - 0: The maximum resident set size (KB) = 620468 + 0: The total amount of wall time = 376.048859 + 0: The maximum resident set size (KB) = 625592 Test 048 regional_wofs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/rap_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/rap_control Checking test 049 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2079,47 +2079,47 @@ Checking test 049 rap_control results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 456.852470 - 0: The maximum resident set size (KB) = 1053320 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 459.048198 + 0: The maximum resident set size (KB) = 1059488 Test 049 rap_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_spp_sppt_shum_skeb -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/regional_spp_sppt_shum_skeb +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_spp_sppt_shum_skeb +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/regional_spp_sppt_shum_skeb Checking test 050 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2130,14 +2130,14 @@ Checking test 050 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 285.749508 - 0: The maximum resident set size (KB) = 1180304 + 0: The total amount of wall time = 280.329552 + 0: The maximum resident set size (KB) = 1178120 Test 050 regional_spp_sppt_shum_skeb PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/rap_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/rap_decomp Checking test 051 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2151,47 +2151,47 @@ Checking test 051 rap_decomp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 479.113100 - 0: The maximum resident set size (KB) = 1010808 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 481.328788 + 0: The maximum resident set size (KB) = 1010236 Test 051 rap_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/rap_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/rap_2threads Checking test 052 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2205,93 +2205,93 @@ Checking test 052 rap_2threads results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 440.506845 - 0: The maximum resident set size (KB) = 1128844 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 439.678449 + 0: The maximum resident set size (KB) = 1138252 Test 052 rap_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/rap_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/rap_restart Checking test 053 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 231.443135 - 0: The maximum resident set size (KB) = 962148 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 231.558285 + 0: The maximum resident set size (KB) = 969172 Test 053 rap_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/rap_sfcdiff +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/rap_sfcdiff Checking test 054 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2305,47 +2305,47 @@ Checking test 054 rap_sfcdiff results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 451.572192 - 0: The maximum resident set size (KB) = 1062008 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 449.988443 + 0: The maximum resident set size (KB) = 1063544 Test 054 rap_sfcdiff PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/rap_sfcdiff_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/rap_sfcdiff_decomp Checking test 055 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2359,93 +2359,93 @@ Checking test 055 rap_sfcdiff_decomp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 477.366740 - 0: The maximum resident set size (KB) = 1006088 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 475.859421 + 0: The maximum resident set size (KB) = 1000700 Test 055 rap_sfcdiff_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/rap_sfcdiff_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/rap_sfcdiff_restart Checking test 056 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 340.301725 - 0: The maximum resident set size (KB) = 981536 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 339.802980 + 0: The maximum resident set size (KB) = 988728 Test 056 rap_sfcdiff_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/hrrr_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/hrrr_control Checking test 057 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2459,47 +2459,47 @@ Checking test 057 hrrr_control results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 434.581253 - 0: The maximum resident set size (KB) = 1057520 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 437.199368 + 0: The maximum resident set size (KB) = 1059108 Test 057 hrrr_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/hrrr_control_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/hrrr_control_decomp Checking test 058 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2513,47 +2513,47 @@ Checking test 058 hrrr_control_decomp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 454.621079 - 0: The maximum resident set size (KB) = 1006756 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 456.733912 + 0: The maximum resident set size (KB) = 1001000 Test 058 hrrr_control_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/hrrr_control_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/hrrr_control_2threads Checking test 059 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2567,93 +2567,93 @@ Checking test 059 hrrr_control_2threads results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 416.510133 - 0: The maximum resident set size (KB) = 1134092 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 413.445825 + 0: The maximum resident set size (KB) = 1133656 Test 059 hrrr_control_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/hrrr_control_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/hrrr_control_restart Checking test 060 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 327.419022 - 0: The maximum resident set size (KB) = 980192 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 328.275989 + 0: The maximum resident set size (KB) = 980840 Test 060 hrrr_control_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/rrfs_v1beta +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/rrfs_v1beta Checking test 061 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2667,47 +2667,47 @@ Checking test 061 rrfs_v1beta results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 445.671174 - 0: The maximum resident set size (KB) = 1057644 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 444.580439 + 0: The maximum resident set size (KB) = 1062996 Test 061 rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_v1nssl -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/rrfs_v1nssl +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_v1nssl +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/rrfs_v1nssl Checking test 062 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2722,14 +2722,14 @@ Checking test 062 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 526.000016 - 0: The maximum resident set size (KB) = 694712 + 0: The total amount of wall time = 522.707431 + 0: The maximum resident set size (KB) = 689184 Test 062 rrfs_v1nssl PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/rrfs_v1nssl_nohailnoccn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/rrfs_v1nssl_nohailnoccn Checking test 063 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2744,14 +2744,14 @@ Checking test 063 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 513.455743 - 0: The maximum resident set size (KB) = 753344 + 0: The total amount of wall time = 513.933414 + 0: The maximum resident set size (KB) = 759528 Test 063 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/rrfs_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/rrfs_conus13km_hrrr_warm Checking test 064 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2760,14 +2760,14 @@ Checking test 064 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 122.804989 - 0: The maximum resident set size (KB) = 934292 + 0: The total amount of wall time = 123.511057 + 0: The maximum resident set size (KB) = 937260 Test 064 rrfs_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/rrfs_smoke_conus13km_hrrr_warm Checking test 065 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2776,14 +2776,14 @@ Checking test 065 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 138.842300 - 0: The maximum resident set size (KB) = 956356 + 0: The total amount of wall time = 138.634448 + 0: The maximum resident set size (KB) = 961556 Test 065 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/rrfs_conus13km_radar_tten_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/rrfs_conus13km_radar_tten_warm Checking test 066 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2792,14 +2792,14 @@ Checking test 066 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 123.163804 - 0: The maximum resident set size (KB) = 936232 + 0: The total amount of wall time = 123.447029 + 0: The maximum resident set size (KB) = 946032 Test 066 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/rrfs_conus13km_hrrr_warm_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/rrfs_conus13km_hrrr_warm_2threads Checking test 067 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2808,14 +2808,14 @@ Checking test 067 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 77.105538 - 0: The maximum resident set size (KB) = 879152 + 0: The total amount of wall time = 77.656152 + 0: The maximum resident set size (KB) = 835216 Test 067 rrfs_conus13km_hrrr_warm_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/rrfs_conus13km_radar_tten_warm_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/rrfs_conus13km_radar_tten_warm_2threads Checking test 068 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2824,14 +2824,14 @@ Checking test 068 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 77.975388 - 0: The maximum resident set size (KB) = 845988 + 0: The total amount of wall time = 77.995965 + 0: The maximum resident set size (KB) = 882328 Test 068 rrfs_conus13km_radar_tten_warm_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_csawmg -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/control_csawmg +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_csawmg +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/control_csawmg Checking test 069 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2842,14 +2842,14 @@ Checking test 069 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 341.196117 - 0: The maximum resident set size (KB) = 719884 + 0: The total amount of wall time = 340.867685 + 0: The maximum resident set size (KB) = 721184 Test 069 control_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_csawmgt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/control_csawmgt +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_csawmgt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/control_csawmgt Checking test 070 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2860,14 +2860,14 @@ Checking test 070 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 334.678611 - 0: The maximum resident set size (KB) = 723828 + 0: The total amount of wall time = 337.053196 + 0: The maximum resident set size (KB) = 727084 Test 070 control_csawmgt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/control_ras +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/control_ras Checking test 071 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2878,54 +2878,54 @@ Checking test 071 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 177.506851 - 0: The maximum resident set size (KB) = 714972 + 0: The total amount of wall time = 181.138166 + 0: The maximum resident set size (KB) = 722500 Test 071 control_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_wam -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/control_wam +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_wam +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/control_wam Checking test 072 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 111.114418 - 0: The maximum resident set size (KB) = 637400 + 0: The total amount of wall time = 110.990353 + 0: The maximum resident set size (KB) = 639380 Test 072 control_wam PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/rrfs_conus13km_hrrr_warm_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/rrfs_conus13km_hrrr_warm_debug Checking test 073 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 728.693837 - 0: The maximum resident set size (KB) = 954504 + 0: The total amount of wall time = 723.611025 + 0: The maximum resident set size (KB) = 956196 Test 073 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/rrfs_conus13km_radar_tten_warm_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_radar_tten_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/rrfs_conus13km_radar_tten_warm_debug Checking test 074 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 726.739482 - 0: The maximum resident set size (KB) = 963276 + 0: The total amount of wall time = 721.916475 + 0: The maximum resident set size (KB) = 971020 Test 074 rrfs_conus13km_radar_tten_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_CubedSphereGrid_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/control_CubedSphereGrid_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_CubedSphereGrid_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/control_CubedSphereGrid_debug Checking test 075 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2952,334 +2952,334 @@ Checking test 075 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 157.517239 - 0: The maximum resident set size (KB) = 794548 + 0: The total amount of wall time = 161.477559 + 0: The maximum resident set size (KB) = 796420 Test 075 control_CubedSphereGrid_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/control_wrtGauss_netcdf_parallel_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/control_wrtGauss_netcdf_parallel_debug Checking test 076 control_wrtGauss_netcdf_parallel_debug 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 = 149.171765 - 0: The maximum resident set size (KB) = 793384 + 0: The total amount of wall time = 152.206140 + 0: The maximum resident set size (KB) = 794936 Test 076 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/control_stochy_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/control_stochy_debug Checking test 077 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 172.584292 - 0: The maximum resident set size (KB) = 800128 + 0: The total amount of wall time = 168.263998 + 0: The maximum resident set size (KB) = 799164 Test 077 control_stochy_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/control_lndp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/control_lndp_debug Checking test 078 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 153.074929 - 0: The maximum resident set size (KB) = 796056 + 0: The total amount of wall time = 151.233997 + 0: The maximum resident set size (KB) = 802012 Test 078 control_lndp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_csawmg_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/control_csawmg_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_csawmg_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/control_csawmg_debug Checking test 079 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 230.528887 - 0: The maximum resident set size (KB) = 839184 + 0: The total amount of wall time = 229.830408 + 0: The maximum resident set size (KB) = 840956 Test 079 control_csawmg_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_csawmgt_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/control_csawmgt_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_csawmgt_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/control_csawmgt_debug Checking test 080 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 227.757192 - 0: The maximum resident set size (KB) = 844644 + 0: The total amount of wall time = 230.909860 + 0: The maximum resident set size (KB) = 843276 Test 080 control_csawmgt_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/control_ras_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/control_ras_debug Checking test 081 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 151.647990 - 0: The maximum resident set size (KB) = 804280 + 0: The total amount of wall time = 157.879368 + 0: The maximum resident set size (KB) = 807948 Test 081 control_ras_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/control_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/control_diag_debug Checking test 082 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 157.947678 - 0: The maximum resident set size (KB) = 856284 + 0: The total amount of wall time = 161.649762 + 0: The maximum resident set size (KB) = 855628 Test 082 control_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/control_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/control_debug_p8 Checking test 083 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 171.272595 - 0: The maximum resident set size (KB) = 1618268 + 0: The total amount of wall time = 169.332206 + 0: The maximum resident set size (KB) = 1631828 Test 083 control_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/regional_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/regional_debug Checking test 084 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 954.767744 - 0: The maximum resident set size (KB) = 883140 + 0: The total amount of wall time = 985.235997 + 0: The maximum resident set size (KB) = 886644 Test 084 regional_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/rap_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/rap_control_debug Checking test 085 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.001564 - 0: The maximum resident set size (KB) = 1179212 + 0: The total amount of wall time = 279.178890 + 0: The maximum resident set size (KB) = 1184084 Test 085 rap_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/hrrr_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/hrrr_control_debug Checking test 086 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 266.756990 - 0: The maximum resident set size (KB) = 1171360 + 0: The total amount of wall time = 271.834005 + 0: The maximum resident set size (KB) = 1175348 Test 086 hrrr_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/rap_unified_drag_suite_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/rap_unified_drag_suite_debug Checking test 087 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.822318 - 0: The maximum resident set size (KB) = 1178248 + 0: The total amount of wall time = 272.655248 + 0: The maximum resident set size (KB) = 1171848 Test 087 rap_unified_drag_suite_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/rap_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/rap_diag_debug Checking test 088 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 289.721049 - 0: The maximum resident set size (KB) = 1263148 + 0: The total amount of wall time = 298.115813 + 0: The maximum resident set size (KB) = 1261888 Test 088 rap_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/rap_cires_ugwp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/rap_cires_ugwp_debug Checking test 089 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 284.410409 - 0: The maximum resident set size (KB) = 1169984 + 0: The total amount of wall time = 288.417850 + 0: The maximum resident set size (KB) = 1171960 Test 089 rap_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/rap_unified_ugwp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/rap_unified_ugwp_debug Checking test 090 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.782319 - 0: The maximum resident set size (KB) = 1176240 + 0: The total amount of wall time = 279.180258 + 0: The maximum resident set size (KB) = 1177540 Test 090 rap_unified_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/rap_lndp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/rap_lndp_debug Checking test 091 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.853341 - 0: The maximum resident set size (KB) = 1174868 + 0: The total amount of wall time = 275.839035 + 0: The maximum resident set size (KB) = 1179220 Test 091 rap_lndp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_flake_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/rap_flake_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_flake_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/rap_flake_debug Checking test 092 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.880372 - 0: The maximum resident set size (KB) = 1182740 + 0: The total amount of wall time = 276.894595 + 0: The maximum resident set size (KB) = 1172108 Test 092 rap_flake_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/rap_progcld_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/rap_progcld_thompson_debug Checking test 093 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.527317 - 0: The maximum resident set size (KB) = 1172396 + 0: The total amount of wall time = 277.867848 + 0: The maximum resident set size (KB) = 1175144 Test 093 rap_progcld_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_noah_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/rap_noah_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_noah_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/rap_noah_debug Checking test 094 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.156848 - 0: The maximum resident set size (KB) = 1177936 + 0: The total amount of wall time = 271.452111 + 0: The maximum resident set size (KB) = 1172096 Test 094 rap_noah_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_sfcdiff_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/rap_sfcdiff_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_sfcdiff_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/rap_sfcdiff_debug Checking test 095 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.798703 - 0: The maximum resident set size (KB) = 1174656 + 0: The total amount of wall time = 275.227511 + 0: The maximum resident set size (KB) = 1180956 Test 095 rap_sfcdiff_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/rap_noah_sfcdiff_cires_ugwp_debug Checking test 096 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 450.546524 - 0: The maximum resident set size (KB) = 1176936 + 0: The total amount of wall time = 448.295106 + 0: The maximum resident set size (KB) = 1172912 Test 096 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/rrfs_v1beta_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/rrfs_v1beta_debug Checking test 097 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 266.781577 - 0: The maximum resident set size (KB) = 1173736 + 0: The total amount of wall time = 271.354245 + 0: The maximum resident set size (KB) = 1168872 Test 097 rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/control_wam_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/control_wam_debug Checking test 098 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 277.498446 - 0: The maximum resident set size (KB) = 510416 + 0: The total amount of wall time = 280.321830 + 0: The maximum resident set size (KB) = 531816 Test 098 control_wam_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 099 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3290,14 +3290,14 @@ Checking test 099 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 258.532897 - 0: The maximum resident set size (KB) = 1069832 + 0: The total amount of wall time = 258.496305 + 0: The maximum resident set size (KB) = 1070144 Test 099 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/rap_control_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/rap_control_dyn32_phy32 Checking test 100 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3311,47 +3311,47 @@ Checking test 100 rap_control_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 368.606220 - 0: The maximum resident set size (KB) = 1004108 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 368.965792 + 0: The maximum resident set size (KB) = 1012520 Test 100 rap_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/hrrr_control_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/hrrr_control_dyn32_phy32 Checking test 101 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3365,47 +3365,47 @@ Checking test 101 hrrr_control_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 191.377374 - 0: The maximum resident set size (KB) = 961192 + 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 = 193.924495 + 0: The maximum resident set size (KB) = 952616 Test 101 hrrr_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/rap_2threads_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/rap_2threads_dyn32_phy32 Checking test 102 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3419,47 +3419,47 @@ Checking test 102 rap_2threads_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 358.012889 - 0: The maximum resident set size (KB) = 1020264 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 357.350514 + 0: The maximum resident set size (KB) = 1021996 Test 102 rap_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/hrrr_control_2threads_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/hrrr_control_2threads_dyn32_phy32 Checking test 103 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3473,47 +3473,47 @@ Checking test 103 hrrr_control_2threads_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 187.889429 - 0: The maximum resident set size (KB) = 1006460 + 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 = 190.480222 + 0: The maximum resident set size (KB) = 1009464 Test 103 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/hrrr_control_decomp_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/hrrr_control_decomp_dyn32_phy32 Checking test 104 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3527,139 +3527,139 @@ Checking test 104 hrrr_control_decomp_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 202.341888 - 0: The maximum resident set size (KB) = 896660 + 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 = 205.862648 + 0: The maximum resident set size (KB) = 894756 Test 104 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/rap_restart_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/rap_restart_dyn32_phy32 Checking test 105 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 280.209083 - 0: The maximum resident set size (KB) = 944352 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 279.357696 + 0: The maximum resident set size (KB) = 954956 Test 105 rap_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/hrrr_control_restart_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/hrrr_control_restart_dyn32_phy32 Checking test 106 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 99.833581 - 0: The maximum resident set size (KB) = 866948 + 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 = 101.038648 + 0: The maximum resident set size (KB) = 864028 Test 106 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/rap_control_dyn64_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/rap_control_dyn64_phy32 Checking test 107 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3673,114 +3673,114 @@ Checking test 107 rap_control_dyn64_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 239.541643 - 0: The maximum resident set size (KB) = 971272 + 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 = 239.238619 + 0: The maximum resident set size (KB) = 970468 Test 107 rap_control_dyn64_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/rap_control_debug_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/rap_control_debug_dyn32_phy32 Checking test 108 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 268.243972 - 0: The maximum resident set size (KB) = 1065664 + 0: The total amount of wall time = 276.789476 + 0: The maximum resident set size (KB) = 1060016 Test 108 rap_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/hrrr_control_debug_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/hrrr_control_debug_dyn32_phy32 Checking test 109 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 262.783894 - 0: The maximum resident set size (KB) = 1058396 + 0: The total amount of wall time = 270.613713 + 0: The maximum resident set size (KB) = 1059160 Test 109 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/rap_control_dyn64_phy32_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_debug_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/rap_control_dyn64_phy32_debug Checking test 110 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.763341 - 0: The maximum resident set size (KB) = 1104728 + 0: The total amount of wall time = 277.281675 + 0: The maximum resident set size (KB) = 1106060 Test 110 rap_control_dyn64_phy32_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/hafs_regional_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/hafs_regional_atm Checking test 111 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 221.057698 - 0: The maximum resident set size (KB) = 1027360 + 0: The total amount of wall time = 235.209184 + 0: The maximum resident set size (KB) = 1046356 Test 111 hafs_regional_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/hafs_regional_atm_thompson_gfdlsf +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/hafs_regional_atm_thompson_gfdlsf Checking test 112 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 307.643807 - 0: The maximum resident set size (KB) = 1403208 + 0: The total amount of wall time = 311.138612 + 0: The maximum resident set size (KB) = 1413256 Test 112 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/hafs_regional_atm_ocn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/hafs_regional_atm_ocn Checking test 113 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3789,14 +3789,14 @@ Checking test 113 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 364.499185 - 0: The maximum resident set size (KB) = 1203728 + 0: The total amount of wall time = 378.792281 + 0: The maximum resident set size (KB) = 1218548 Test 113 hafs_regional_atm_ocn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_atm_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/hafs_regional_atm_wav +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_atm_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/hafs_regional_atm_wav Checking test 114 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3805,14 +3805,14 @@ Checking test 114 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 724.066498 - 0: The maximum resident set size (KB) = 1222324 + 0: The total amount of wall time = 740.931013 + 0: The maximum resident set size (KB) = 1247980 Test 114 hafs_regional_atm_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/hafs_regional_atm_ocn_wav +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/hafs_regional_atm_ocn_wav Checking test 115 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3823,28 +3823,28 @@ Checking test 115 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 816.287392 - 0: The maximum resident set size (KB) = 1245792 + 0: The total amount of wall time = 838.577249 + 0: The maximum resident set size (KB) = 1262172 Test 115 hafs_regional_atm_ocn_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/hafs_regional_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/hafs_regional_1nest_atm Checking test 116 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 316.564632 - 0: The maximum resident set size (KB) = 501092 + 0: The total amount of wall time = 322.609654 + 0: The maximum resident set size (KB) = 503124 Test 116 hafs_regional_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/hafs_regional_telescopic_2nests_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/hafs_regional_telescopic_2nests_atm Checking test 117 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3853,28 +3853,28 @@ Checking test 117 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 362.901402 - 0: The maximum resident set size (KB) = 509028 + 0: The total amount of wall time = 368.119800 + 0: The maximum resident set size (KB) = 511080 Test 117 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_global_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/hafs_global_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_global_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/hafs_global_1nest_atm Checking test 118 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 145.092444 - 0: The maximum resident set size (KB) = 342888 + 0: The total amount of wall time = 147.942273 + 0: The maximum resident set size (KB) = 347860 Test 118 hafs_global_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_global_multiple_4nests_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/hafs_global_multiple_4nests_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_global_multiple_4nests_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/hafs_global_multiple_4nests_atm Checking test 119 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3892,14 +3892,14 @@ Checking test 119 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 415.296253 - 0: The maximum resident set size (KB) = 418112 + 0: The total amount of wall time = 423.318683 + 0: The maximum resident set size (KB) = 422800 Test 119 hafs_global_multiple_4nests_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/hafs_regional_specified_moving_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/hafs_regional_specified_moving_1nest_atm Checking test 120 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3908,28 +3908,28 @@ Checking test 120 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 198.410304 - 0: The maximum resident set size (KB) = 510604 + 0: The total amount of wall time = 202.381098 + 0: The maximum resident set size (KB) = 517380 Test 120 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/hafs_regional_storm_following_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/hafs_regional_storm_following_1nest_atm Checking test 121 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 190.897991 - 0: The maximum resident set size (KB) = 508604 + 0: The total amount of wall time = 192.714762 + 0: The maximum resident set size (KB) = 517132 Test 121 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/hafs_regional_storm_following_1nest_atm_ocn Checking test 122 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3938,42 +3938,42 @@ Checking test 122 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 219.852348 - 0: The maximum resident set size (KB) = 550960 + 0: The total amount of wall time = 221.618083 + 0: The maximum resident set size (KB) = 557504 Test 122 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_global_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/hafs_global_storm_following_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_global_storm_following_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/hafs_global_storm_following_1nest_atm Checking test 123 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 59.988415 - 0: The maximum resident set size (KB) = 362592 + 0: The total amount of wall time = 58.365305 + 0: The maximum resident set size (KB) = 360740 Test 123 hafs_global_storm_following_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 124 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 767.093481 - 0: The maximum resident set size (KB) = 587028 + 0: The total amount of wall time = 768.726063 + 0: The maximum resident set size (KB) = 578236 Test 124 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 125 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3984,14 +3984,14 @@ Checking test 125 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 510.353697 - 0: The maximum resident set size (KB) = 615456 + 0: The total amount of wall time = 510.728666 + 0: The maximum resident set size (KB) = 610572 Test 125 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_docn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/hafs_regional_docn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_docn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/hafs_regional_docn Checking test 126 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3999,14 +3999,14 @@ Checking test 126 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 336.646722 - 0: The maximum resident set size (KB) = 1210192 + 0: The total amount of wall time = 353.869766 + 0: The maximum resident set size (KB) = 1230000 Test 126 hafs_regional_docn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_docn_oisst -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/hafs_regional_docn_oisst +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_docn_oisst +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/hafs_regional_docn_oisst Checking test 127 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4014,213 +4014,213 @@ Checking test 127 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 337.863173 - 0: The maximum resident set size (KB) = 1191620 + 0: The total amount of wall time = 355.817907 + 0: The maximum resident set size (KB) = 1213240 Test 127 hafs_regional_docn_oisst PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_datm_cdeps -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/hafs_regional_datm_cdeps +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_datm_cdeps +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/hafs_regional_datm_cdeps Checking test 128 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 918.724090 - 0: The maximum resident set size (KB) = 1038892 + 0: The total amount of wall time = 951.814979 + 0: The maximum resident set size (KB) = 1038928 Test 128 hafs_regional_datm_cdeps PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/datm_cdeps_control_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/datm_cdeps_control_cfsr Checking test 129 datm_cdeps_control_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20111002.000000.MOM.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.335663 - 0: The maximum resident set size (KB) = 1081968 + 0: The total amount of wall time = 157.563675 + 0: The maximum resident set size (KB) = 1059520 Test 129 datm_cdeps_control_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/datm_cdeps_restart_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/datm_cdeps_restart_cfsr Checking test 130 datm_cdeps_restart_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 94.702780 - 0: The maximum resident set size (KB) = 1011212 + 0: The total amount of wall time = 88.919916 + 0: The maximum resident set size (KB) = 1027076 Test 130 datm_cdeps_restart_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/datm_cdeps_control_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/datm_cdeps_control_gefs Checking test 131 datm_cdeps_control_gefs results .... - Comparing RESTART/MOM.res.nc .........OK + 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 = 152.087014 - 0: The maximum resident set size (KB) = 955888 + 0: The total amount of wall time = 149.011407 + 0: The maximum resident set size (KB) = 969612 Test 131 datm_cdeps_control_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_iau_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/datm_cdeps_iau_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_iau_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/datm_cdeps_iau_gefs Checking test 132 datm_cdeps_iau_gefs results .... - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.478802 - 0: The maximum resident set size (KB) = 968584 + 0: The total amount of wall time = 151.255031 + 0: The maximum resident set size (KB) = 966048 Test 132 datm_cdeps_iau_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_stochy_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/datm_cdeps_stochy_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_stochy_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/datm_cdeps_stochy_gefs Checking test 133 datm_cdeps_stochy_gefs results .... - Comparing RESTART/MOM.res.nc .........OK + 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.325382 - 0: The maximum resident set size (KB) = 961628 + 0: The total amount of wall time = 151.492529 + 0: The maximum resident set size (KB) = 964796 Test 133 datm_cdeps_stochy_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_ciceC_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/datm_cdeps_ciceC_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_ciceC_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/datm_cdeps_ciceC_cfsr Checking test 134 datm_cdeps_ciceC_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 154.935752 - 0: The maximum resident set size (KB) = 1068040 + 0: The total amount of wall time = 152.789879 + 0: The maximum resident set size (KB) = 1058424 Test 134 datm_cdeps_ciceC_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/datm_cdeps_bulk_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/datm_cdeps_bulk_cfsr Checking test 135 datm_cdeps_bulk_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20111002.000000.MOM.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.217091 - 0: The maximum resident set size (KB) = 1058644 + 0: The total amount of wall time = 156.430473 + 0: The maximum resident set size (KB) = 1064436 Test 135 datm_cdeps_bulk_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/datm_cdeps_bulk_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/datm_cdeps_bulk_gefs Checking test 136 datm_cdeps_bulk_gefs results .... - Comparing RESTART/MOM.res.nc .........OK + 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 = 154.055998 - 0: The maximum resident set size (KB) = 966924 + 0: The total amount of wall time = 144.096655 + 0: The maximum resident set size (KB) = 956328 Test 136 datm_cdeps_bulk_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/datm_cdeps_mx025_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/datm_cdeps_mx025_cfsr Checking test 137 datm_cdeps_mx025_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/20111001.120000.MOM.res.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 400.648520 - 0: The maximum resident set size (KB) = 875752 + 0: The total amount of wall time = 394.979314 + 0: The maximum resident set size (KB) = 875900 Test 137 datm_cdeps_mx025_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/datm_cdeps_mx025_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/datm_cdeps_mx025_gefs Checking test 138 datm_cdeps_mx025_gefs results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/20111001.120000.MOM.res.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 396.533654 - 0: The maximum resident set size (KB) = 926832 + 0: The total amount of wall time = 391.583951 + 0: The maximum resident set size (KB) = 929228 Test 138 datm_cdeps_mx025_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/datm_cdeps_multiple_files_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/datm_cdeps_multiple_files_cfsr Checking test 139 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 155.794348 - 0: The maximum resident set size (KB) = 1046760 + 0: The total amount of wall time = 155.029197 + 0: The maximum resident set size (KB) = 1059544 Test 139 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/datm_cdeps_3072x1536_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/datm_cdeps_3072x1536_cfsr Checking test 140 datm_cdeps_3072x1536_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 217.906362 - 0: The maximum resident set size (KB) = 2367324 + 0: The total amount of wall time = 213.536168 + 0: The maximum resident set size (KB) = 2368308 Test 140 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_gfs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/datm_cdeps_gfs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_gfs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/datm_cdeps_gfs Checking test 141 datm_cdeps_gfs results .... - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 221.674418 - 0: The maximum resident set size (KB) = 2362336 + 0: The total amount of wall time = 216.327909 + 0: The maximum resident set size (KB) = 2366124 Test 141 datm_cdeps_gfs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/datm_cdeps_debug_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/datm_cdeps_debug_cfsr Checking test 142 datm_cdeps_debug_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK + 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 = 451.356641 - 0: The maximum resident set size (KB) = 986312 + 0: The total amount of wall time = 442.659851 + 0: The maximum resident set size (KB) = 984252 Test 142 datm_cdeps_debug_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/datm_cdeps_lnd_gswp3 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_lnd_gswp3 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/datm_cdeps_lnd_gswp3 Checking test 143 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4229,14 +4229,14 @@ Checking test 143 datm_cdeps_lnd_gswp3 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.013433 - 0: The maximum resident set size (KB) = 261060 + 0: The total amount of wall time = 6.375112 + 0: The maximum resident set size (KB) = 263380 Test 143 datm_cdeps_lnd_gswp3 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/datm_cdeps_lnd_gswp3_rst +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_lnd_gswp3 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/datm_cdeps_lnd_gswp3_rst Checking test 144 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4245,14 +4245,14 @@ Checking test 144 datm_cdeps_lnd_gswp3_rst 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.284565 - 0: The maximum resident set size (KB) = 264652 + 0: The total amount of wall time = 12.183170 + 0: The maximum resident set size (KB) = 266916 Test 144 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8_atmlnd_sbs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/control_p8_atmlnd_sbs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8_atmlnd_sbs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/control_p8_atmlnd_sbs Checking test 145 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4290,38 +4290,38 @@ Checking test 145 control_p8_atmlnd_sbs results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK Comparing ufs.cpld.cpl.hi.lnd.2021-03-22-43200.nc .........OK Comparing ufs.cpld.cpl.hi.lnd.2021-03-23-21600.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile1.nc .........OK @@ -4337,14 +4337,14 @@ Checking test 145 control_p8_atmlnd_sbs 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 = 200.875947 - 0: The maximum resident set size (KB) = 1613752 + 0: The total amount of wall time = 203.514844 + 0: The maximum resident set size (KB) = 1608388 Test 145 control_p8_atmlnd_sbs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_atmwav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/control_atmwav +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_atmwav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/control_atmwav Checking test 146 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4354,48 +4354,48 @@ Checking test 146 control_atmwav results .... Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 86.651845 - 0: The maximum resident set size (KB) = 660088 + 0: The total amount of wall time = 86.281521 + 0: The maximum resident set size (KB) = 655412 Test 146 control_atmwav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/atmaero_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/atmaero_control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/atmaero_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/atmaero_control_p8 Checking test 147 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4406,47 +4406,47 @@ Checking test 147 atmaero_control_p8 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 225.770317 - 0: The maximum resident set size (KB) = 2977984 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 226.525579 + 0: The maximum resident set size (KB) = 2974632 Test 147 atmaero_control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/atmaero_control_p8_rad -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/atmaero_control_p8_rad +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/atmaero_control_p8_rad +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/atmaero_control_p8_rad Checking test 148 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4457,47 +4457,47 @@ Checking test 148 atmaero_control_p8_rad results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 275.337530 - 0: The maximum resident set size (KB) = 3044412 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 276.959048 + 0: The maximum resident set size (KB) = 3046720 Test 148 atmaero_control_p8_rad PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/atmaero_control_p8_rad_micro -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/atmaero_control_p8_rad_micro +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/atmaero_control_p8_rad_micro +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/atmaero_control_p8_rad_micro Checking test 149 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4508,47 +4508,47 @@ Checking test 149 atmaero_control_p8_rad_micro results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 280.284888 - 0: The maximum resident set size (KB) = 3059436 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 280.929927 + 0: The maximum resident set size (KB) = 3054404 Test 149 atmaero_control_p8_rad_micro PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_atmaq -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/regional_atmaq +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_atmaq +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/regional_atmaq Checking test 150 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4556,41 +4556,41 @@ Checking test 150 regional_atmaq results .... Comparing atmf000.nc .........OK Comparing atmf003.nc .........OK Comparing atmf006.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/phy_data.nc .........OK - Comparing RESTART/sfc_data.nc .........OK + Comparing RESTART/20190801.180000.coupler.res .........OK + Comparing RESTART/20190801.180000.fv_core.res.nc .........OK + Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.phy_data.nc .........OK + Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 599.066379 - 0: The maximum resident set size (KB) = 1564216 + 0: The total amount of wall time = 599.182022 + 0: The maximum resident set size (KB) = 1556416 Test 150 regional_atmaq PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_atmaq_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13053/regional_atmaq_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_atmaq_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/regional_atmaq_debug Checking test 151 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/phy_data.nc .........OK - Comparing RESTART/sfc_data.nc .........OK + Comparing RESTART/20190801.130000.coupler.res .........OK + Comparing RESTART/20190801.130000.fv_core.res.nc .........OK + Comparing RESTART/20190801.130000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20190801.130000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20190801.130000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20190801.130000.phy_data.nc .........OK + Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1312.511081 - 0: The maximum resident set size (KB) = 1511092 + 0: The total amount of wall time = 1315.407893 + 0: The maximum resident set size (KB) = 1513352 Test 151 regional_atmaq_debug PASS REGRESSION TEST WAS SUCCESSFUL -Tue Feb 21 01:17:12 UTC 2023 -Elapsed time: 01h:13m:39s. Have a nice day! +Fri Feb 24 16:21:55 UTC 2023 +Elapsed time: 01h:12m:41s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index 439764bc8ae..af137f795d7 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,38 +1,38 @@ -Mon Feb 20 23:54:01 GMT 2023 +Fri Feb 24 16:56:27 UTC 2023 Start Regression test -Compile 001 elapsed time 1960 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 002 elapsed time 1806 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 003 elapsed time 1689 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 004 elapsed time 298 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 269 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 1496 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 007 elapsed time 1496 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 008 elapsed time 1566 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 009 elapsed time 1571 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 010 elapsed time 1490 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 011 elapsed time 1381 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 012 elapsed time 302 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 013 elapsed time 199 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 1418 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 015 elapsed time 1408 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 016 elapsed time 218 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 017 elapsed time 234 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 1594 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 019 elapsed time 252 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 2155 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 021 elapsed time 1652 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 022 elapsed time 268 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 023 elapsed time 158 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 024 elapsed time 82 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 025 elapsed time 1459 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 026 elapsed time 1595 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 027 elapsed time 1425 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 028 elapsed time 1446 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 029 elapsed time 236 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8_mixedmode -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/cpld_control_p8_mixedmode +Compile 001 elapsed time 2949 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 002 elapsed time 1870 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 003 elapsed time 1683 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 004 elapsed time 309 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 278 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 1484 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 007 elapsed time 1517 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 008 elapsed time 1599 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 009 elapsed time 1548 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 010 elapsed time 1521 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 011 elapsed time 1398 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 012 elapsed time 306 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 205 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 014 elapsed time 1424 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 015 elapsed time 1417 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 016 elapsed time 249 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 017 elapsed time 248 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 1658 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 019 elapsed time 276 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 2151 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 021 elapsed time 1601 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 022 elapsed time 293 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 023 elapsed time 168 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 024 elapsed time 107 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 025 elapsed time 1494 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 026 elapsed time 1594 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 027 elapsed time 1404 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 028 elapsed time 1468 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 029 elapsed time 283 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8_mixedmode +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -59,52 +59,52 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 401.604855 - 0: The maximum resident set size (KB) = 1727372 + 0: The total amount of wall time = 436.332165 + 0: The maximum resident set size (KB) = 1746884 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_gfsv17 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/cpld_control_gfsv17 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_gfsv17 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -130,52 +130,52 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 303.625645 - 0: The maximum resident set size (KB) = 1638372 + 0: The total amount of wall time = 342.290204 + 0: The maximum resident set size (KB) = 1637100 Test 002 cpld_control_gfsv17 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/cpld_control_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -202,52 +202,52 @@ Checking test 003 cpld_control_p8 results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 457.109571 - 0: The maximum resident set size (KB) = 1767532 + 0: The total amount of wall time = 497.963090 + 0: The maximum resident set size (KB) = 1780760 Test 003 cpld_control_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/cpld_restart_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -262,52 +262,52 @@ Checking test 004 cpld_restart_p8 results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 258.758463 - 0: The maximum resident set size (KB) = 1488932 + 0: The total amount of wall time = 280.132596 + 0: The maximum resident set size (KB) = 1501128 Test 004 cpld_restart_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/cpld_2threads_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -322,52 +322,52 @@ Checking test 005 cpld_2threads_p8 results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 489.506448 - 0: The maximum resident set size (KB) = 1977848 + 0: The total amount of wall time = 523.448061 + 0: The maximum resident set size (KB) = 1984236 Test 005 cpld_2threads_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/cpld_decomp_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/cpld_decomp_p8 Checking test 006 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -382,52 +382,52 @@ Checking test 006 cpld_decomp_p8 results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 464.975170 - 0: The maximum resident set size (KB) = 1767316 + 0: The total amount of wall time = 503.258534 + 0: The maximum resident set size (KB) = 1758220 Test 006 cpld_decomp_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/cpld_mpi_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/cpld_mpi_p8 Checking test 007 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -442,52 +442,52 @@ Checking test 007 cpld_mpi_p8 results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 384.962317 - 0: The maximum resident set size (KB) = 1721232 + 0: The total amount of wall time = 420.061596 + 0: The maximum resident set size (KB) = 1727216 Test 007 cpld_mpi_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_ciceC_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/cpld_control_ciceC_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_ciceC_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/cpld_control_ciceC_p8 Checking test 008 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -514,52 +514,52 @@ Checking test 008 cpld_control_ciceC_p8 results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 457.858670 - 0: The maximum resident set size (KB) = 1769040 + 0: The total amount of wall time = 501.045833 + 0: The maximum resident set size (KB) = 1791368 Test 008 cpld_control_ciceC_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_noaero_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/cpld_control_noaero_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_noaero_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/cpld_control_noaero_p8 Checking test 009 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -585,52 +585,52 @@ Checking test 009 cpld_control_noaero_p8 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 350.434781 - 0: The maximum resident set size (KB) = 1618468 + 0: The total amount of wall time = 358.312265 + 0: The maximum resident set size (KB) = 1646884 Test 009 cpld_control_noaero_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/cpld_control_nowave_noaero_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_c96_noaero_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/cpld_control_nowave_noaero_p8 Checking test 010 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -656,50 +656,50 @@ Checking test 010 cpld_control_nowave_noaero_p8 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.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 = 347.707250 - 0: The maximum resident set size (KB) = 1670152 + 0: The total amount of wall time = 370.002884 + 0: The maximum resident set size (KB) = 1666052 Test 010 cpld_control_nowave_noaero_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_debug_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/cpld_debug_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_debug_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/cpld_debug_p8 Checking test 011 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -714,52 +714,52 @@ Checking test 011 cpld_debug_p8 results .... Comparing atmf003.tile5.nc .........OK Comparing atmf003.tile6.nc .........OK Comparing gocart.inst_aod.20210322_0900z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210322.090000.coupler.res .........OK + Comparing RESTART/20210322.090000.fv_core.res.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-22-32400.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 855.591561 - 0: The maximum resident set size (KB) = 1823452 + 0: The total amount of wall time = 881.021895 + 0: The maximum resident set size (KB) = 1838304 Test 011 cpld_debug_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_debug_noaero_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/cpld_debug_noaero_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_debug_noaero_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/cpld_debug_noaero_p8 Checking test 012 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -773,52 +773,52 @@ Checking test 012 cpld_debug_noaero_p8 results .... Comparing atmf003.tile4.nc .........OK Comparing atmf003.tile5.nc .........OK Comparing atmf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210322.090000.coupler.res .........OK + Comparing RESTART/20210322.090000.fv_core.res.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-22-32400.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 530.440783 - 0: The maximum resident set size (KB) = 1637172 + 0: The total amount of wall time = 549.432015 + 0: The maximum resident set size (KB) = 1638444 Test 012 cpld_debug_noaero_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/cpld_control_noaero_p8_agrid +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_noaero_p8_agrid +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/cpld_control_noaero_p8_agrid Checking test 013 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -844,50 +844,50 @@ Checking test 013 cpld_control_noaero_p8_agrid results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 367.421229 - 0: The maximum resident set size (KB) = 1669808 + 0: The total amount of wall time = 384.241923 + 0: The maximum resident set size (KB) = 1691496 Test 013 cpld_control_noaero_p8_agrid PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_c48 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/cpld_control_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_c48 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/cpld_control_c48 Checking test 014 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -901,50 +901,50 @@ Checking test 014 cpld_control_c48 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.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 = 806.690845 - 0: The maximum resident set size (KB) = 2767252 + 0: The total amount of wall time = 804.129388 + 0: The maximum resident set size (KB) = 2762440 Test 014 cpld_control_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_warmstart_c48 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/cpld_warmstart_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_warmstart_c48 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/cpld_warmstart_c48 Checking test 015 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -958,50 +958,50 @@ Checking test 015 cpld_warmstart_c48 results .... Comparing atmf006.tile4.nc .........OK Comparing atmf006.tile5.nc .........OK Comparing atmf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.120000.coupler.res .........OK + Comparing RESTART/20210323.120000.fv_core.res.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 217.406747 - 0: The maximum resident set size (KB) = 2757128 + 0: The total amount of wall time = 225.526045 + 0: The maximum resident set size (KB) = 2777756 Test 015 cpld_warmstart_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_warmstart_c48 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/cpld_restart_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_warmstart_c48 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/cpld_restart_c48 Checking test 016 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1015,50 +1015,50 @@ Checking test 016 cpld_restart_c48 results .... Comparing atmf006.tile4.nc .........OK Comparing atmf006.tile5.nc .........OK Comparing atmf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.120000.coupler.res .........OK + Comparing RESTART/20210323.120000.fv_core.res.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 114.643092 - 0: The maximum resident set size (KB) = 2199628 + 0: The total amount of wall time = 124.017366 + 0: The maximum resident set size (KB) = 2211900 Test 016 cpld_restart_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_CubedSphereGrid -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/control_CubedSphereGrid +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_CubedSphereGrid +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/control_CubedSphereGrid Checking test 017 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1085,28 +1085,28 @@ Checking test 017 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 181.482252 - 0: The maximum resident set size (KB) = 573804 + 0: The total amount of wall time = 186.928935 + 0: The maximum resident set size (KB) = 576336 Test 017 control_CubedSphereGrid PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_CubedSphereGrid_parallel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/control_CubedSphereGrid_parallel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_CubedSphereGrid_parallel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/control_CubedSphereGrid_parallel Checking test 018 control_CubedSphereGrid_parallel results .... - Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 178.685739 - 0: The maximum resident set size (KB) = 567296 + 0: The total amount of wall time = 184.744460 + 0: The maximum resident set size (KB) = 576804 Test 018 control_CubedSphereGrid_parallel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_latlon -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/control_latlon +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_latlon +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/control_latlon Checking test 019 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1117,78 +1117,78 @@ Checking test 019 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 183.298688 - 0: The maximum resident set size (KB) = 574520 + 0: The total amount of wall time = 186.441718 + 0: The maximum resident set size (KB) = 573376 Test 019 control_latlon PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/control_wrtGauss_netcdf_parallel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/control_wrtGauss_netcdf_parallel Checking test 020 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK + Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 194.513511 - 0: The maximum resident set size (KB) = 576116 + 0: The total amount of wall time = 195.163770 + 0: The maximum resident set size (KB) = 571824 Test 020 control_wrtGauss_netcdf_parallel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_c48 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/control_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_c48 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/control_c48 Checking test 021 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0: The total amount of wall time = 605.440148 -0: The maximum resident set size (KB) = 792352 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 595.641167 +0: The maximum resident set size (KB) = 784896 Test 021 control_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_c192 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/control_c192 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_c192 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/control_c192 Checking test 022 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1199,14 +1199,14 @@ Checking test 022 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 731.192925 - 0: The maximum resident set size (KB) = 692976 + 0: The total amount of wall time = 737.551522 + 0: The maximum resident set size (KB) = 692032 Test 022 control_c192 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_c384 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/control_c384 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_c384 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/control_c384 Checking test 023 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1217,14 +1217,14 @@ Checking test 023 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 929.175406 - 0: The maximum resident set size (KB) = 1018304 + 0: The total amount of wall time = 946.397897 + 0: The maximum resident set size (KB) = 1058716 Test 023 control_c384 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_c384gdas -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/control_c384gdas +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_c384gdas +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/control_c384gdas Checking test 024 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1234,47 +1234,47 @@ Checking test 024 control_c384gdas results .... Comparing GFSFLX.GrbF06 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF06 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 802.492147 - 0: The maximum resident set size (KB) = 1158784 - -Test 024 control_c384gdas PASS Tries: 2 - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_stochy -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/control_stochy + Comparing RESTART/20210322.060000.coupler.res .........OK + Comparing RESTART/20210322.060000.fv_core.res.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 853.774423 + 0: The maximum resident set size (KB) = 1194756 + +Test 024 control_c384gdas PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_stochy +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/control_stochy Checking test 025 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1285,28 +1285,28 @@ Checking test 025 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 123.596086 - 0: The maximum resident set size (KB) = 578712 + 0: The total amount of wall time = 123.336767 + 0: The maximum resident set size (KB) = 571700 Test 025 control_stochy PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_stochy -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/control_stochy_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_stochy +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/control_stochy_restart Checking test 026 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 65.230816 - 0: The maximum resident set size (KB) = 397176 + 0: The total amount of wall time = 71.157096 + 0: The maximum resident set size (KB) = 395780 Test 026 control_stochy_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_lndp -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/control_lndp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_lndp +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/control_lndp Checking test 027 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1317,14 +1317,14 @@ Checking test 027 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 111.079741 - 0: The maximum resident set size (KB) = 576296 + 0: The total amount of wall time = 115.231388 + 0: The maximum resident set size (KB) = 573388 Test 027 control_lndp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_iovr4 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/control_iovr4 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_iovr4 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/control_iovr4 Checking test 028 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1339,14 +1339,14 @@ Checking test 028 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 191.349257 - 0: The maximum resident set size (KB) = 572304 + 0: The total amount of wall time = 194.106409 + 0: The maximum resident set size (KB) = 575276 Test 028 control_iovr4 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_iovr5 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/control_iovr5 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_iovr5 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/control_iovr5 Checking test 029 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1361,14 +1361,14 @@ Checking test 029 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 195.422667 - 0: The maximum resident set size (KB) = 571760 + 0: The total amount of wall time = 192.709219 + 0: The maximum resident set size (KB) = 574060 Test 029 control_iovr5 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/control_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/control_p8 Checking test 030 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1382,47 +1382,47 @@ Checking test 030 control_p8 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 226.720598 - 0: The maximum resident set size (KB) = 1533740 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 233.469657 + 0: The maximum resident set size (KB) = 1533400 Test 030 control_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8_lndp -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/control_p8_lndp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8_lndp +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/control_p8_lndp Checking test 031 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1441,60 +1441,60 @@ Checking test 031 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 425.453357 - 0: The maximum resident set size (KB) = 1534000 + 0: The total amount of wall time = 441.101951 + 0: The maximum resident set size (KB) = 1546516 Test 031 control_p8_lndp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/control_restart_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/control_restart_p8 Checking test 032 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 117.477816 - 0: The maximum resident set size (KB) = 767180 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 122.000218 + 0: The maximum resident set size (KB) = 780096 Test 032 control_restart_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/control_decomp_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/control_decomp_p8 Checking test 033 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1504,47 +1504,47 @@ Checking test 033 control_decomp_p8 results .... Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 235.242994 - 0: The maximum resident set size (KB) = 1522156 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 237.617037 + 0: The maximum resident set size (KB) = 1531860 Test 033 control_decomp_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/control_2threads_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/control_2threads_p8 Checking test 034 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1554,47 +1554,47 @@ Checking test 034 control_2threads_p8 results .... Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 219.285410 - 0: The maximum resident set size (KB) = 1615040 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 222.637170 + 0: The maximum resident set size (KB) = 1626120 Test 034 control_2threads_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8_rrtmgp -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/control_p8_rrtmgp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8_rrtmgp +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/control_p8_rrtmgp Checking test 035 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1608,47 +1608,47 @@ Checking test 035 control_p8_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 307.274322 - 0: The maximum resident set size (KB) = 1601128 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 319.054747 + 0: The maximum resident set size (KB) = 1600972 Test 035 control_p8_rrtmgp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/merra2_thompson -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/merra2_thompson +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/merra2_thompson +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/merra2_thompson Checking test 036 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1662,47 +1662,47 @@ Checking test 036 merra2_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 259.118347 - 0: The maximum resident set size (KB) = 1541016 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 262.897201 + 0: The maximum resident set size (KB) = 1556660 Test 036 merra2_thompson PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/regional_control +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/regional_control Checking test 037 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1713,28 +1713,28 @@ Checking test 037 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 399.214391 - 0: The maximum resident set size (KB) = 782496 + 0: The total amount of wall time = 420.821252 + 0: The maximum resident set size (KB) = 791036 Test 037 regional_control PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/regional_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/regional_restart Checking test 038 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 200.292101 - 0: The maximum resident set size (KB) = 773720 + 0: The total amount of wall time = 212.841688 + 0: The maximum resident set size (KB) = 782256 Test 038 regional_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/regional_decomp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/regional_decomp Checking test 039 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1745,14 +1745,14 @@ Checking test 039 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 415.214756 - 0: The maximum resident set size (KB) = 773340 + 0: The total amount of wall time = 442.309086 + 0: The maximum resident set size (KB) = 782348 Test 039 regional_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/regional_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/regional_2threads Checking test 040 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1763,14 +1763,14 @@ Checking test 040 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 244.680841 - 0: The maximum resident set size (KB) = 765260 + 0: The total amount of wall time = 271.112314 + 0: The maximum resident set size (KB) = 768352 Test 040 regional_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_noquilt -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/regional_noquilt +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_noquilt +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/regional_noquilt Checking test 041 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1778,28 +1778,28 @@ Checking test 041 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 432.150540 - 0: The maximum resident set size (KB) = 770204 + 0: The total amount of wall time = 450.029205 + 0: The maximum resident set size (KB) = 771020 Test 041 regional_noquilt PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_netcdf_parallel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/regional_netcdf_parallel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_netcdf_parallel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/regional_netcdf_parallel Checking test 042 regional_netcdf_parallel 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 = 392.051158 - 0: The maximum resident set size (KB) = 777180 + 0: The total amount of wall time = 417.275539 + 0: The maximum resident set size (KB) = 783868 Test 042 regional_netcdf_parallel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/regional_2dwrtdecomp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/regional_2dwrtdecomp Checking test 043 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1810,14 +1810,14 @@ Checking test 043 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 398.674200 - 0: The maximum resident set size (KB) = 788968 + 0: The total amount of wall time = 422.060248 + 0: The maximum resident set size (KB) = 787364 Test 043 regional_2dwrtdecomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/fv3_regional_wofs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/regional_wofs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/fv3_regional_wofs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/regional_wofs Checking test 044 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1828,14 +1828,14 @@ Checking test 044 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 514.260952 - 0: The maximum resident set size (KB) = 509936 + 0: The total amount of wall time = 529.949116 + 0: The maximum resident set size (KB) = 520564 Test 044 regional_wofs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/rap_control +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/rap_control Checking test 045 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1849,47 +1849,47 @@ Checking test 045 rap_control results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 600.955046 - 0: The maximum resident set size (KB) = 951356 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 615.523874 + 0: The maximum resident set size (KB) = 960460 Test 045 rap_control PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/regional_spp_sppt_shum_skeb +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_spp_sppt_shum_skeb +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/regional_spp_sppt_shum_skeb Checking test 046 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -1900,14 +1900,14 @@ Checking test 046 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 408.270851 - 0: The maximum resident set size (KB) = 1082312 + 0: The total amount of wall time = 423.420668 + 0: The maximum resident set size (KB) = 1085364 Test 046 regional_spp_sppt_shum_skeb PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/rap_decomp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/rap_decomp Checking test 047 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1921,47 +1921,47 @@ Checking test 047 rap_decomp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 633.931069 - 0: The maximum resident set size (KB) = 936228 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 649.297367 + 0: The maximum resident set size (KB) = 955328 Test 047 rap_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/rap_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/rap_2threads Checking test 048 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1975,93 +1975,93 @@ Checking test 048 rap_2threads results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 586.486199 - 0: The maximum resident set size (KB) = 1023712 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 605.401335 + 0: The maximum resident set size (KB) = 1028820 Test 048 rap_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/rap_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/rap_restart Checking test 049 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 308.171602 - 0: The maximum resident set size (KB) = 830384 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 311.827791 + 0: The maximum resident set size (KB) = 838988 Test 049 rap_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/rap_sfcdiff +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/rap_sfcdiff Checking test 050 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2075,47 +2075,47 @@ Checking test 050 rap_sfcdiff results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 603.590042 - 0: The maximum resident set size (KB) = 946076 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 618.480493 + 0: The maximum resident set size (KB) = 957788 Test 050 rap_sfcdiff PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/rap_sfcdiff_decomp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/rap_sfcdiff_decomp Checking test 051 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2129,93 +2129,93 @@ Checking test 051 rap_sfcdiff_decomp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 655.848184 - 0: The maximum resident set size (KB) = 938620 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 656.832978 + 0: The maximum resident set size (KB) = 956976 Test 051 rap_sfcdiff_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/rap_sfcdiff_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/rap_sfcdiff_restart Checking test 052 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 444.387935 - 0: The maximum resident set size (KB) = 830228 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 461.539635 + 0: The maximum resident set size (KB) = 835988 Test 052 rap_sfcdiff_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/hrrr_control +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/hrrr_control Checking test 053 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2229,47 +2229,47 @@ Checking test 053 hrrr_control results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 590.140423 - 0: The maximum resident set size (KB) = 955188 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 593.819730 + 0: The maximum resident set size (KB) = 952892 Test 053 hrrr_control PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/hrrr_control_decomp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/hrrr_control_decomp Checking test 054 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2283,47 +2283,47 @@ Checking test 054 hrrr_control_decomp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 611.967408 - 0: The maximum resident set size (KB) = 943008 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 614.228452 + 0: The maximum resident set size (KB) = 949548 Test 054 hrrr_control_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/hrrr_control_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/hrrr_control_2threads Checking test 055 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2337,93 +2337,93 @@ Checking test 055 hrrr_control_2threads results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 562.971896 - 0: The maximum resident set size (KB) = 1014400 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 575.873749 + 0: The maximum resident set size (KB) = 1022064 Test 055 hrrr_control_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/hrrr_control_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/hrrr_control_restart Checking test 056 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 431.760392 - 0: The maximum resident set size (KB) = 835632 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 443.258261 + 0: The maximum resident set size (KB) = 848088 Test 056 hrrr_control_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_v1beta -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/rrfs_v1beta +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_v1beta +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/rrfs_v1beta Checking test 057 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2437,47 +2437,47 @@ Checking test 057 rrfs_v1beta results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 605.664472 - 0: The maximum resident set size (KB) = 942828 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 605.524588 + 0: The maximum resident set size (KB) = 942240 Test 057 rrfs_v1beta PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_v1nssl -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/rrfs_v1nssl +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_v1nssl +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/rrfs_v1nssl Checking test 058 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2492,14 +2492,14 @@ Checking test 058 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 719.524083 - 0: The maximum resident set size (KB) = 631424 + 0: The total amount of wall time = 720.718989 + 0: The maximum resident set size (KB) = 638096 Test 058 rrfs_v1nssl PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/rrfs_v1nssl_nohailnoccn +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/rrfs_v1nssl_nohailnoccn Checking test 059 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2514,14 +2514,14 @@ Checking test 059 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 712.675128 - 0: The maximum resident set size (KB) = 626176 + 0: The total amount of wall time = 707.629162 + 0: The maximum resident set size (KB) = 637676 Test 059 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/rrfs_conus13km_hrrr_warm +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/rrfs_conus13km_hrrr_warm Checking test 060 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2530,14 +2530,14 @@ Checking test 060 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 168.731879 - 0: The maximum resident set size (KB) = 844932 + 0: The total amount of wall time = 168.350233 + 0: The maximum resident set size (KB) = 852616 Test 060 rrfs_conus13km_hrrr_warm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/rrfs_smoke_conus13km_hrrr_warm Checking test 061 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2546,14 +2546,14 @@ Checking test 061 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 193.035111 - 0: The maximum resident set size (KB) = 873556 + 0: The total amount of wall time = 196.669219 + 0: The maximum resident set size (KB) = 881440 Test 061 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/rrfs_conus13km_radar_tten_warm +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/rrfs_conus13km_radar_tten_warm Checking test 062 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2562,14 +2562,14 @@ Checking test 062 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 170.928071 - 0: The maximum resident set size (KB) = 857376 + 0: The total amount of wall time = 172.362458 + 0: The maximum resident set size (KB) = 855252 Test 062 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/rrfs_conus13km_hrrr_warm_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/rrfs_conus13km_hrrr_warm_2threads Checking test 063 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2578,14 +2578,14 @@ Checking test 063 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 111.807392 - 0: The maximum resident set size (KB) = 826788 + 0: The total amount of wall time = 114.173669 + 0: The maximum resident set size (KB) = 826016 Test 063 rrfs_conus13km_hrrr_warm_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/rrfs_conus13km_radar_tten_warm_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/rrfs_conus13km_radar_tten_warm_2threads Checking test 064 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2594,14 +2594,14 @@ Checking test 064 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 114.488723 - 0: The maximum resident set size (KB) = 833744 + 0: The total amount of wall time = 120.614984 + 0: The maximum resident set size (KB) = 834068 Test 064 rrfs_conus13km_radar_tten_warm_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_csawmg -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/control_csawmg +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_csawmg +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/control_csawmg Checking test 065 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2612,14 +2612,14 @@ Checking test 065 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 459.169071 - 0: The maximum resident set size (KB) = 671124 + 0: The total amount of wall time = 470.839386 + 0: The maximum resident set size (KB) = 667708 Test 065 control_csawmg PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_csawmgt -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/control_csawmgt +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_csawmgt +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/control_csawmgt Checking test 066 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2630,14 +2630,14 @@ Checking test 066 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 452.873274 - 0: The maximum resident set size (KB) = 673228 + 0: The total amount of wall time = 465.910957 + 0: The maximum resident set size (KB) = 667416 Test 066 control_csawmgt PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_ras -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/control_ras +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_ras +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/control_ras Checking test 067 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2648,54 +2648,54 @@ Checking test 067 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 243.517401 - 0: The maximum resident set size (KB) = 633892 + 0: The total amount of wall time = 253.048038 + 0: The maximum resident set size (KB) = 636204 Test 067 control_ras PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_wam -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/control_wam +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_wam +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/control_wam Checking test 068 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 149.934338 - 0: The maximum resident set size (KB) = 481316 + 0: The total amount of wall time = 154.931369 + 0: The maximum resident set size (KB) = 489976 Test 068 control_wam PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/rrfs_conus13km_hrrr_warm_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/rrfs_conus13km_hrrr_warm_debug Checking test 069 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 942.894940 - 0: The maximum resident set size (KB) = 870480 + 0: The total amount of wall time = 962.455641 + 0: The maximum resident set size (KB) = 880604 Test 069 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/rrfs_conus13km_radar_tten_warm_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_radar_tten_warm_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/rrfs_conus13km_radar_tten_warm_debug Checking test 070 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 948.895784 - 0: The maximum resident set size (KB) = 872052 + 0: The total amount of wall time = 962.773882 + 0: The maximum resident set size (KB) = 885692 Test 070 rrfs_conus13km_radar_tten_warm_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_CubedSphereGrid_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/control_CubedSphereGrid_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_CubedSphereGrid_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/control_CubedSphereGrid_debug Checking test 071 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2722,334 +2722,334 @@ Checking test 071 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 214.399842 - 0: The maximum resident set size (KB) = 730576 + 0: The total amount of wall time = 223.765027 + 0: The maximum resident set size (KB) = 734820 Test 071 control_CubedSphereGrid_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/control_wrtGauss_netcdf_parallel_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/control_wrtGauss_netcdf_parallel_debug Checking test 072 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.nc ............ALT CHECK......OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 197.563240 - 0: The maximum resident set size (KB) = 730184 + 0: The total amount of wall time = 203.130708 + 0: The maximum resident set size (KB) = 732936 Test 072 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_stochy_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/control_stochy_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_stochy_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/control_stochy_debug Checking test 073 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 221.150149 - 0: The maximum resident set size (KB) = 738632 + 0: The total amount of wall time = 229.314071 + 0: The maximum resident set size (KB) = 743012 Test 073 control_stochy_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_lndp_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/control_lndp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_lndp_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/control_lndp_debug Checking test 074 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 199.257186 - 0: The maximum resident set size (KB) = 742048 + 0: The total amount of wall time = 206.228845 + 0: The maximum resident set size (KB) = 736088 Test 074 control_lndp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_csawmg_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/control_csawmg_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_csawmg_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/control_csawmg_debug Checking test 075 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 309.192388 - 0: The maximum resident set size (KB) = 777560 + 0: The total amount of wall time = 321.899163 + 0: The maximum resident set size (KB) = 783344 Test 075 control_csawmg_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_csawmgt_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/control_csawmgt_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_csawmgt_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/control_csawmgt_debug Checking test 076 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 307.000254 - 0: The maximum resident set size (KB) = 781636 + 0: The total amount of wall time = 313.166548 + 0: The maximum resident set size (KB) = 786332 Test 076 control_csawmgt_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_ras_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/control_ras_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_ras_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/control_ras_debug Checking test 077 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 202.689525 - 0: The maximum resident set size (KB) = 745896 + 0: The total amount of wall time = 207.926798 + 0: The maximum resident set size (KB) = 743208 Test 077 control_ras_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_diag_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/control_diag_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_diag_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/control_diag_debug Checking test 078 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 210.095049 - 0: The maximum resident set size (KB) = 789152 + 0: The total amount of wall time = 215.860069 + 0: The maximum resident set size (KB) = 797732 Test 078 control_diag_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_debug_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/control_debug_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_debug_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/control_debug_p8 Checking test 079 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 226.257184 - 0: The maximum resident set size (KB) = 1551660 + 0: The total amount of wall time = 228.683111 + 0: The maximum resident set size (KB) = 1551016 Test 079 control_debug_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/regional_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/regional_debug Checking test 080 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1286.171497 - 0: The maximum resident set size (KB) = 791164 + 0: The total amount of wall time = 1293.542081 + 0: The maximum resident set size (KB) = 800308 Test 080 regional_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/rap_control_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/rap_control_debug Checking test 081 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 362.650096 - 0: The maximum resident set size (KB) = 1108292 + 0: The total amount of wall time = 364.767431 + 0: The maximum resident set size (KB) = 1107148 Test 081 rap_control_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/hrrr_control_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/hrrr_control_debug Checking test 082 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 350.663045 - 0: The maximum resident set size (KB) = 1114544 + 0: The total amount of wall time = 356.297983 + 0: The maximum resident set size (KB) = 1103284 Test 082 hrrr_control_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/rap_unified_drag_suite_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/rap_unified_drag_suite_debug Checking test 083 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 360.775424 - 0: The maximum resident set size (KB) = 1105564 + 0: The total amount of wall time = 366.614664 + 0: The maximum resident set size (KB) = 1112508 Test 083 rap_unified_drag_suite_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_diag_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/rap_diag_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_diag_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/rap_diag_debug Checking test 084 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 382.531650 - 0: The maximum resident set size (KB) = 1191032 + 0: The total amount of wall time = 387.842552 + 0: The maximum resident set size (KB) = 1196168 Test 084 rap_diag_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/rap_cires_ugwp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_cires_ugwp_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/rap_cires_ugwp_debug Checking test 085 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 366.401510 - 0: The maximum resident set size (KB) = 1107336 + 0: The total amount of wall time = 383.406545 + 0: The maximum resident set size (KB) = 1107264 Test 085 rap_cires_ugwp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/rap_unified_ugwp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_cires_ugwp_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/rap_unified_ugwp_debug Checking test 086 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 364.603604 - 0: The maximum resident set size (KB) = 1119564 + 0: The total amount of wall time = 376.501999 + 0: The maximum resident set size (KB) = 1120576 Test 086 rap_unified_ugwp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_lndp_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/rap_lndp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_lndp_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/rap_lndp_debug Checking test 087 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 366.385459 - 0: The maximum resident set size (KB) = 1108932 + 0: The total amount of wall time = 369.451820 + 0: The maximum resident set size (KB) = 1117852 Test 087 rap_lndp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_flake_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/rap_flake_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_flake_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/rap_flake_debug Checking test 088 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 359.563398 - 0: The maximum resident set size (KB) = 1114788 + 0: The total amount of wall time = 369.569484 + 0: The maximum resident set size (KB) = 1106824 Test 088 rap_flake_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_progcld_thompson_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/rap_progcld_thompson_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_progcld_thompson_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/rap_progcld_thompson_debug Checking test 089 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 362.887934 - 0: The maximum resident set size (KB) = 1104708 + 0: The total amount of wall time = 371.706381 + 0: The maximum resident set size (KB) = 1111732 Test 089 rap_progcld_thompson_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_noah_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/rap_noah_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_noah_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/rap_noah_debug Checking test 090 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 357.523412 - 0: The maximum resident set size (KB) = 1104476 + 0: The total amount of wall time = 358.046120 + 0: The maximum resident set size (KB) = 1108932 Test 090 rap_noah_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_sfcdiff_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/rap_sfcdiff_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_sfcdiff_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/rap_sfcdiff_debug Checking test 091 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 358.332393 - 0: The maximum resident set size (KB) = 1107784 + 0: The total amount of wall time = 367.349619 + 0: The maximum resident set size (KB) = 1112944 Test 091 rap_sfcdiff_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/rap_noah_sfcdiff_cires_ugwp_debug Checking test 092 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 590.935581 - 0: The maximum resident set size (KB) = 1108468 + 0: The total amount of wall time = 595.503282 + 0: The maximum resident set size (KB) = 1109880 Test 092 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_v1beta_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/rrfs_v1beta_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_v1beta_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/rrfs_v1beta_debug Checking test 093 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 355.085759 - 0: The maximum resident set size (KB) = 1104520 + 0: The total amount of wall time = 364.221800 + 0: The maximum resident set size (KB) = 1105464 Test 093 rrfs_v1beta_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_wam_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/control_wam_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_wam_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/control_wam_debug Checking test 094 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 368.024083 - 0: The maximum resident set size (KB) = 430564 + 0: The total amount of wall time = 372.693869 + 0: The maximum resident set size (KB) = 436528 Test 094 control_wam_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 095 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3060,14 +3060,14 @@ Checking test 095 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 374.001054 - 0: The maximum resident set size (KB) = 980548 + 0: The total amount of wall time = 390.470664 + 0: The maximum resident set size (KB) = 979728 Test 095 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/rap_control_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/rap_control_dyn32_phy32 Checking test 096 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3081,47 +3081,47 @@ Checking test 096 rap_control_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 497.857396 - 0: The maximum resident set size (KB) = 841140 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 506.183360 + 0: The maximum resident set size (KB) = 871344 Test 096 rap_control_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/hrrr_control_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/hrrr_control_dyn32_phy32 Checking test 097 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3135,47 +3135,47 @@ Checking test 097 hrrr_control_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 264.061407 - 0: The maximum resident set size (KB) = 834008 + 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 = 264.148920 + 0: The maximum resident set size (KB) = 823516 Test 097 hrrr_control_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/rap_2threads_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/rap_2threads_dyn32_phy32 Checking test 098 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3189,47 +3189,47 @@ Checking test 098 rap_2threads_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 482.747393 - 0: The maximum resident set size (KB) = 879468 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 491.939688 + 0: The maximum resident set size (KB) = 894528 Test 098 rap_2threads_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/hrrr_control_2threads_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/hrrr_control_2threads_dyn32_phy32 Checking test 099 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3243,47 +3243,47 @@ Checking test 099 hrrr_control_2threads_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 257.031107 - 0: The maximum resident set size (KB) = 884044 + 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 = 262.333784 + 0: The maximum resident set size (KB) = 889404 Test 099 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/hrrr_control_decomp_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/hrrr_control_decomp_dyn32_phy32 Checking test 100 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3297,139 +3297,139 @@ Checking test 100 hrrr_control_decomp_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 273.239988 - 0: The maximum resident set size (KB) = 830684 + 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 = 280.960180 + 0: The maximum resident set size (KB) = 823640 Test 100 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/rap_restart_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/rap_restart_dyn32_phy32 Checking test 101 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 360.244242 - 0: The maximum resident set size (KB) = 802900 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 390.249610 + 0: The maximum resident set size (KB) = 811188 Test 101 rap_restart_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/hrrr_control_restart_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/hrrr_control_restart_dyn32_phy32 Checking test 102 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 132.794743 - 0: The maximum resident set size (KB) = 760256 + 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 = 137.053434 + 0: The maximum resident set size (KB) = 764404 Test 102 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_dyn64_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/rap_control_dyn64_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_dyn64_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/rap_control_dyn64_phy32 Checking test 103 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3443,114 +3443,114 @@ Checking test 103 rap_control_dyn64_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 312.536213 - 0: The maximum resident set size (KB) = 863076 + 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 = 335.844278 + 0: The maximum resident set size (KB) = 874444 Test 103 rap_control_dyn64_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/rap_control_debug_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/rap_control_debug_dyn32_phy32 Checking test 104 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 352.774668 - 0: The maximum resident set size (KB) = 995796 + 0: The total amount of wall time = 361.825461 + 0: The maximum resident set size (KB) = 998124 Test 104 rap_control_debug_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/hrrr_control_debug_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/hrrr_control_debug_dyn32_phy32 Checking test 105 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 349.390439 - 0: The maximum resident set size (KB) = 995680 + 0: The total amount of wall time = 359.964348 + 0: The maximum resident set size (KB) = 1002852 Test 105 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/rap_control_dyn64_phy32_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/rap_control_dyn64_phy32_debug Checking test 106 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 367.819707 - 0: The maximum resident set size (KB) = 1041052 + 0: The total amount of wall time = 364.769841 + 0: The maximum resident set size (KB) = 1043476 Test 106 rap_control_dyn64_phy32_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_atm -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/hafs_regional_atm +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_atm +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/hafs_regional_atm Checking test 107 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 316.661730 - 0: The maximum resident set size (KB) = 1198252 + 0: The total amount of wall time = 374.221308 + 0: The maximum resident set size (KB) = 1220304 Test 107 hafs_regional_atm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/hafs_regional_atm_thompson_gfdlsf +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/hafs_regional_atm_thompson_gfdlsf Checking test 108 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 379.040470 - 0: The maximum resident set size (KB) = 1520036 + 0: The total amount of wall time = 472.982496 + 0: The maximum resident set size (KB) = 1571008 Test 108 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_atm_ocn -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/hafs_regional_atm_ocn +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_atm_ocn +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/hafs_regional_atm_ocn Checking test 109 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3559,14 +3559,14 @@ Checking test 109 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 487.519180 - 0: The maximum resident set size (KB) = 1266824 + 0: The total amount of wall time = 571.606244 + 0: The maximum resident set size (KB) = 1296588 Test 109 hafs_regional_atm_ocn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_atm_wav -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/hafs_regional_atm_wav +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_atm_wav +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/hafs_regional_atm_wav Checking test 110 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3575,14 +3575,14 @@ Checking test 110 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 901.897122 - 0: The maximum resident set size (KB) = 1296904 + 0: The total amount of wall time = 961.190213 + 0: The maximum resident set size (KB) = 1322496 Test 110 hafs_regional_atm_wav PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/hafs_regional_atm_ocn_wav +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_atm_ocn_wav +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/hafs_regional_atm_ocn_wav Checking test 111 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3593,14 +3593,14 @@ Checking test 111 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 1016.847032 - 0: The maximum resident set size (KB) = 1312256 + 0: The total amount of wall time = 1052.532782 + 0: The maximum resident set size (KB) = 1335276 Test 111 hafs_regional_atm_ocn_wav PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_docn -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/hafs_regional_docn +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_docn +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/hafs_regional_docn Checking test 112 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3608,14 +3608,14 @@ Checking test 112 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 464.383329 - 0: The maximum resident set size (KB) = 1287908 + 0: The total amount of wall time = 528.367770 + 0: The maximum resident set size (KB) = 1307000 -Test 112 hafs_regional_docn PASS +Test 112 hafs_regional_docn PASS Tries: 2 -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_docn_oisst -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/hafs_regional_docn_oisst +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_docn_oisst +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/hafs_regional_docn_oisst Checking test 113 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3623,213 +3623,213 @@ Checking test 113 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 464.672244 - 0: The maximum resident set size (KB) = 1184316 + 0: The total amount of wall time = 533.809622 + 0: The maximum resident set size (KB) = 1299220 Test 113 hafs_regional_docn_oisst PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_datm_cdeps -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/hafs_regional_datm_cdeps +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_datm_cdeps +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/hafs_regional_datm_cdeps Checking test 114 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 1260.753467 - 0: The maximum resident set size (KB) = 977220 + 0: The total amount of wall time = 1297.791402 + 0: The maximum resident set size (KB) = 974704 Test 114 hafs_regional_datm_cdeps PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/datm_cdeps_control_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/datm_cdeps_control_cfsr Checking test 115 datm_cdeps_control_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20111002.000000.MOM.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 = 217.179548 - 0: The maximum resident set size (KB) = 964808 + 0: The total amount of wall time = 215.185455 + 0: The maximum resident set size (KB) = 970956 Test 115 datm_cdeps_control_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/datm_cdeps_restart_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/datm_cdeps_restart_cfsr Checking test 116 datm_cdeps_restart_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20111002.000000.MOM.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 = 127.766321 - 0: The maximum resident set size (KB) = 930388 + 0: The total amount of wall time = 139.345226 + 0: The maximum resident set size (KB) = 923296 Test 116 datm_cdeps_restart_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_control_gefs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/datm_cdeps_control_gefs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_control_gefs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/datm_cdeps_control_gefs Checking test 117 datm_cdeps_control_gefs results .... - Comparing RESTART/MOM.res.nc .........OK + 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 = 213.593554 - 0: The maximum resident set size (KB) = 868528 + 0: The total amount of wall time = 219.157690 + 0: The maximum resident set size (KB) = 864288 Test 117 datm_cdeps_control_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_iau_gefs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/datm_cdeps_iau_gefs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_iau_gefs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/datm_cdeps_iau_gefs Checking test 118 datm_cdeps_iau_gefs results .... - Comparing RESTART/MOM.res.nc .........OK + 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 = 223.829976 - 0: The maximum resident set size (KB) = 859892 + 0: The total amount of wall time = 226.560062 + 0: The maximum resident set size (KB) = 866084 Test 118 datm_cdeps_iau_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_stochy_gefs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/datm_cdeps_stochy_gefs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_stochy_gefs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/datm_cdeps_stochy_gefs Checking test 119 datm_cdeps_stochy_gefs results .... - Comparing RESTART/MOM.res.nc .........OK + 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 = 213.283083 - 0: The maximum resident set size (KB) = 858148 + 0: The total amount of wall time = 251.059161 + 0: The maximum resident set size (KB) = 846540 Test 119 datm_cdeps_stochy_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/datm_cdeps_ciceC_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_ciceC_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/datm_cdeps_ciceC_cfsr Checking test 120 datm_cdeps_ciceC_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20111002.000000.MOM.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 = 216.377624 - 0: The maximum resident set size (KB) = 964064 + 0: The total amount of wall time = 221.414493 + 0: The maximum resident set size (KB) = 972872 Test 120 datm_cdeps_ciceC_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/datm_cdeps_bulk_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_bulk_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/datm_cdeps_bulk_cfsr Checking test 121 datm_cdeps_bulk_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20111002.000000.MOM.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 = 216.102491 - 0: The maximum resident set size (KB) = 964632 + 0: The total amount of wall time = 234.677097 + 0: The maximum resident set size (KB) = 969168 Test 121 datm_cdeps_bulk_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/datm_cdeps_bulk_gefs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_bulk_gefs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/datm_cdeps_bulk_gefs Checking test 122 datm_cdeps_bulk_gefs results .... - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 210.616558 - 0: The maximum resident set size (KB) = 862940 + 0: The total amount of wall time = 219.777011 + 0: The maximum resident set size (KB) = 860980 Test 122 datm_cdeps_bulk_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/datm_cdeps_mx025_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_mx025_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/datm_cdeps_mx025_cfsr Checking test 123 datm_cdeps_mx025_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/20111001.120000.MOM.res.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 580.264207 - 0: The maximum resident set size (KB) = 766844 + 0: The total amount of wall time = 582.176306 + 0: The maximum resident set size (KB) = 760720 Test 123 datm_cdeps_mx025_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/datm_cdeps_mx025_gefs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_mx025_gefs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/datm_cdeps_mx025_gefs Checking test 124 datm_cdeps_mx025_gefs results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/20111001.120000.MOM.res.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 577.328724 - 0: The maximum resident set size (KB) = 739696 + 0: The total amount of wall time = 590.685440 + 0: The maximum resident set size (KB) = 729276 Test 124 datm_cdeps_mx025_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/datm_cdeps_multiple_files_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/datm_cdeps_multiple_files_cfsr Checking test 125 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 208.413033 - 0: The maximum resident set size (KB) = 969512 + 0: The total amount of wall time = 220.434766 + 0: The maximum resident set size (KB) = 964084 Test 125 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/datm_cdeps_3072x1536_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/datm_cdeps_3072x1536_cfsr Checking test 126 datm_cdeps_3072x1536_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK + 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 = 296.266195 - 0: The maximum resident set size (KB) = 2252816 + 0: The total amount of wall time = 343.090620 + 0: The maximum resident set size (KB) = 2258324 Test 126 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_gfs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/datm_cdeps_gfs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_gfs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/datm_cdeps_gfs Checking test 127 datm_cdeps_gfs results .... - Comparing RESTART/MOM.res.nc .........OK + 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 = 328.223646 - 0: The maximum resident set size (KB) = 2252120 + 0: The total amount of wall time = 322.828053 + 0: The maximum resident set size (KB) = 2260972 Test 127 datm_cdeps_gfs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_debug_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/datm_cdeps_debug_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_debug_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/datm_cdeps_debug_cfsr Checking test 128 datm_cdeps_debug_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK + 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 = 519.844499 - 0: The maximum resident set size (KB) = 915124 + 0: The total amount of wall time = 584.516247 + 0: The maximum resident set size (KB) = 922832 Test 128 datm_cdeps_debug_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/datm_cdeps_lnd_gswp3 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/datm_cdeps_lnd_gswp3 Checking test 129 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -3838,14 +3838,14 @@ Checking test 129 datm_cdeps_lnd_gswp3 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 = 10.599923 - 0: The maximum resident set size (KB) = 252948 + 0: The total amount of wall time = 25.381151 + 0: The maximum resident set size (KB) = 248312 Test 129 datm_cdeps_lnd_gswp3 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/datm_cdeps_lnd_gswp3_rst +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/datm_cdeps_lnd_gswp3_rst Checking test 130 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -3854,14 +3854,14 @@ Checking test 130 datm_cdeps_lnd_gswp3_rst 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.805163 - 0: The maximum resident set size (KB) = 254404 + 0: The total amount of wall time = 25.474348 + 0: The maximum resident set size (KB) = 256172 Test 130 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8_atmlnd_sbs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/control_p8_atmlnd_sbs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8_atmlnd_sbs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/control_p8_atmlnd_sbs Checking test 131 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3899,38 +3899,38 @@ Checking test 131 control_p8_atmlnd_sbs results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK Comparing ufs.cpld.cpl.hi.lnd.2021-03-22-43200.nc .........OK Comparing ufs.cpld.cpl.hi.lnd.2021-03-23-21600.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile1.nc .........OK @@ -3946,14 +3946,14 @@ Checking test 131 control_p8_atmlnd_sbs 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 = 282.455504 - 0: The maximum resident set size (KB) = 1584912 + 0: The total amount of wall time = 304.528738 + 0: The maximum resident set size (KB) = 1600400 Test 131 control_p8_atmlnd_sbs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/control_atmwav -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/control_atmwav +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_atmwav +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/control_atmwav Checking test 132 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -3963,48 +3963,48 @@ Checking test 132 control_atmwav results .... Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 115.694580 - 0: The maximum resident set size (KB) = 597876 + 0: The total amount of wall time = 126.755406 + 0: The maximum resident set size (KB) = 597612 Test 132 control_atmwav PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/atmaero_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/atmaero_control_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/atmaero_control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/atmaero_control_p8 Checking test 133 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4015,47 +4015,47 @@ Checking test 133 atmaero_control_p8 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 306.067762 - 0: The maximum resident set size (KB) = 1630284 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 316.895371 + 0: The maximum resident set size (KB) = 1648008 Test 133 atmaero_control_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/atmaero_control_p8_rad -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/atmaero_control_p8_rad +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/atmaero_control_p8_rad +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/atmaero_control_p8_rad Checking test 134 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4066,47 +4066,47 @@ Checking test 134 atmaero_control_p8_rad results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 374.137340 - 0: The maximum resident set size (KB) = 1661760 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 389.303458 + 0: The maximum resident set size (KB) = 1663104 Test 134 atmaero_control_p8_rad PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/atmaero_control_p8_rad_micro +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/atmaero_control_p8_rad_micro +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/atmaero_control_p8_rad_micro Checking test 135 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4117,47 +4117,47 @@ Checking test 135 atmaero_control_p8_rad_micro results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 381.124866 - 0: The maximum resident set size (KB) = 1668904 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 392.988582 + 0: The maximum resident set size (KB) = 1688552 Test 135 atmaero_control_p8_rad_micro PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_atmaq -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_138071/regional_atmaq +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_atmaq +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/regional_atmaq Checking test 136 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4165,20 +4165,20 @@ Checking test 136 regional_atmaq results .... Comparing atmf000.nc .........OK Comparing atmf003.nc .........OK Comparing atmf006.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/phy_data.nc .........OK - Comparing RESTART/sfc_data.nc .........OK + Comparing RESTART/20190801.180000.coupler.res .........OK + Comparing RESTART/20190801.180000.fv_core.res.nc .........OK + Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.phy_data.nc .........OK + Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 899.183120 - 0: The maximum resident set size (KB) = 1323172 + 0: The total amount of wall time = 962.008158 + 0: The maximum resident set size (KB) = 1326988 Test 136 regional_atmaq PASS REGRESSION TEST WAS SUCCESSFUL -Tue Feb 21 02:17:08 GMT 2023 -Elapsed time: 02h:23m:08s. Have a nice day! +Fri Feb 24 19:26:14 UTC 2023 +Elapsed time: 02h:29m:48s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index 16b7a37685c..1537706e8dd 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,38 +1,38 @@ -Mon Feb 20 18:01:53 CST 2023 +Fri Feb 24 09:37:50 CST 2023 Start Regression test -Compile 001 elapsed time 709 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 739 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 691 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 287 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 243 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 596 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 622 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 575 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 586 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 568 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 560 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 247 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 013 elapsed time 164 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 517 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 015 elapsed time 471 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 157 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 017 elapsed time 211 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 605 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 019 elapsed time 242 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 772 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 651 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 022 elapsed time 200 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 023 elapsed time 145 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 001 elapsed time 664 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 708 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 647 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 244 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 229 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 597 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 646 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 581 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 590 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 590 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 475 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 212 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 194 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 014 elapsed time 512 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 510 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 152 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 017 elapsed time 191 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 614 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 019 elapsed time 279 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 758 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 653 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 022 elapsed time 210 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 023 elapsed time 124 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON Compile 024 elapsed time 55 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 025 elapsed time 563 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 026 elapsed time 747 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 027 elapsed time 547 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 492 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 211 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8_mixedmode -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/cpld_control_p8_mixedmode +Compile 025 elapsed time 582 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 026 elapsed time 590 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 027 elapsed time 520 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 600 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 237 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8_mixedmode +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -59,52 +59,52 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 306.166611 - 0: The maximum resident set size (KB) = 3140256 + 0: The total amount of wall time = 308.958904 + 0: The maximum resident set size (KB) = 3137976 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_gfsv17 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/cpld_control_gfsv17 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_gfsv17 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -130,52 +130,52 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 235.348317 - 0: The maximum resident set size (KB) = 1685488 + 0: The total amount of wall time = 230.064557 + 0: The maximum resident set size (KB) = 1731068 Test 002 cpld_control_gfsv17 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/cpld_control_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -202,52 +202,52 @@ Checking test 003 cpld_control_p8 results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 345.238676 - 0: The maximum resident set size (KB) = 3129680 + 0: The total amount of wall time = 350.129159 + 0: The maximum resident set size (KB) = 3179596 Test 003 cpld_control_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/cpld_restart_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -262,52 +262,52 @@ Checking test 004 cpld_restart_p8 results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 198.371026 - 0: The maximum resident set size (KB) = 3047284 + 0: The total amount of wall time = 203.502974 + 0: The maximum resident set size (KB) = 3049088 Test 004 cpld_restart_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/cpld_2threads_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -322,52 +322,52 @@ Checking test 005 cpld_2threads_p8 results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 402.689331 - 0: The maximum resident set size (KB) = 3512476 + 0: The total amount of wall time = 420.129655 + 0: The maximum resident set size (KB) = 3518632 Test 005 cpld_2threads_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/cpld_decomp_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/cpld_decomp_p8 Checking test 006 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -382,52 +382,52 @@ Checking test 006 cpld_decomp_p8 results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 338.738665 - 0: The maximum resident set size (KB) = 3171616 + 0: The total amount of wall time = 347.378073 + 0: The maximum resident set size (KB) = 3171036 Test 006 cpld_decomp_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/cpld_mpi_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/cpld_mpi_p8 Checking test 007 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -442,52 +442,52 @@ Checking test 007 cpld_mpi_p8 results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 278.532286 - 0: The maximum resident set size (KB) = 3032732 + 0: The total amount of wall time = 304.986982 + 0: The maximum resident set size (KB) = 3028400 Test 007 cpld_mpi_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_ciceC_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/cpld_control_ciceC_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_ciceC_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/cpld_control_ciceC_p8 Checking test 008 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -514,52 +514,52 @@ Checking test 008 cpld_control_ciceC_p8 results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 340.336819 - 0: The maximum resident set size (KB) = 3184280 + 0: The total amount of wall time = 361.199562 + 0: The maximum resident set size (KB) = 3177072 Test 008 cpld_control_ciceC_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/cpld_control_c192_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_c192_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/cpld_control_c192_p8 Checking test 009 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -574,52 +574,52 @@ Checking test 009 cpld_control_c192_p8 results .... Comparing atmf030.tile5.nc .........OK Comparing atmf030.tile6.nc .........OK Comparing gocart.inst_aod.20210323_1200z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.120000.coupler.res .........OK + Comparing RESTART/20210323.120000.fv_core.res.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 639.285743 - 0: The maximum resident set size (KB) = 3260860 + 0: The total amount of wall time = 644.610190 + 0: The maximum resident set size (KB) = 3262744 Test 009 cpld_control_c192_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/cpld_restart_c192_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_c192_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/cpld_restart_c192_p8 Checking test 010 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -634,162 +634,162 @@ Checking test 010 cpld_restart_c192_p8 results .... Comparing atmf030.tile5.nc .........OK Comparing atmf030.tile6.nc .........OK Comparing gocart.inst_aod.20210323_1200z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.120000.coupler.res .........OK + Comparing RESTART/20210323.120000.fv_core.res.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 448.326608 - 0: The maximum resident set size (KB) = 3159240 + 0: The total amount of wall time = 481.281027 + 0: The maximum resident set size (KB) = 3159428 Test 010 cpld_restart_c192_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_bmark_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/cpld_bmark_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_bmark_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/cpld_bmark_p8 Checking test 011 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK Comparing GFSFLX.GrbF06 .........OK Comparing GFSPRS.GrbF06 .........OK Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/20130401.060000.coupler.res .........OK + Comparing RESTART/20130401.060000.fv_core.res.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20130401.060000.MOM.res.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_1.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_2.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 876.058235 - 0: The maximum resident set size (KB) = 4020708 + 0: The total amount of wall time = 872.129690 + 0: The maximum resident set size (KB) = 4041460 Test 011 cpld_bmark_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_bmark_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/cpld_restart_bmark_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_bmark_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/cpld_restart_bmark_p8 Checking test 012 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK Comparing GFSFLX.GrbF06 .........OK Comparing GFSPRS.GrbF06 .........OK Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/20130401.060000.coupler.res .........OK + Comparing RESTART/20130401.060000.fv_core.res.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20130401.060000.MOM.res.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_1.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_2.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 520.894829 - 0: The maximum resident set size (KB) = 3973584 + 0: The total amount of wall time = 536.210058 + 0: The maximum resident set size (KB) = 3970220 Test 012 cpld_restart_bmark_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_noaero_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/cpld_control_noaero_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_noaero_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/cpld_control_noaero_p8 Checking test 013 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -815,52 +815,52 @@ Checking test 013 cpld_control_noaero_p8 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 253.184076 - 0: The maximum resident set size (KB) = 1709020 + 0: The total amount of wall time = 254.812409 + 0: The maximum resident set size (KB) = 1724168 Test 013 cpld_control_noaero_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_c96_noaero_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/cpld_control_nowave_noaero_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_c96_noaero_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/cpld_control_nowave_noaero_p8 Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -886,50 +886,50 @@ Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.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 = 258.352494 - 0: The maximum resident set size (KB) = 1765560 + 0: The total amount of wall time = 261.877887 + 0: The maximum resident set size (KB) = 1761320 Test 014 cpld_control_nowave_noaero_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_debug_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/cpld_debug_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_debug_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/cpld_debug_p8 Checking test 015 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -944,52 +944,52 @@ Checking test 015 cpld_debug_p8 results .... Comparing atmf003.tile5.nc .........OK Comparing atmf003.tile6.nc .........OK Comparing gocart.inst_aod.20210322_0900z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210322.090000.coupler.res .........OK + Comparing RESTART/20210322.090000.fv_core.res.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-22-32400.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 676.066618 - 0: The maximum resident set size (KB) = 3249892 + 0: The total amount of wall time = 697.360360 + 0: The maximum resident set size (KB) = 3246716 Test 015 cpld_debug_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_debug_noaero_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/cpld_debug_noaero_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_debug_noaero_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/cpld_debug_noaero_p8 Checking test 016 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1003,52 +1003,52 @@ Checking test 016 cpld_debug_noaero_p8 results .... Comparing atmf003.tile4.nc .........OK Comparing atmf003.tile5.nc .........OK Comparing atmf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210322.090000.coupler.res .........OK + Comparing RESTART/20210322.090000.fv_core.res.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-22-32400.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 420.561150 - 0: The maximum resident set size (KB) = 1706584 + 0: The total amount of wall time = 421.086436 + 0: The maximum resident set size (KB) = 1737348 Test 016 cpld_debug_noaero_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_noaero_p8_agrid -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/cpld_control_noaero_p8_agrid +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_noaero_p8_agrid +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/cpld_control_noaero_p8_agrid Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1074,50 +1074,50 @@ Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.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 = 265.467882 - 0: The maximum resident set size (KB) = 1758024 + 0: The total amount of wall time = 268.725791 + 0: The maximum resident set size (KB) = 1770660 Test 017 cpld_control_noaero_p8_agrid PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_c48 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/cpld_control_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_c48 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/cpld_control_c48 Checking test 018 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1131,50 +1131,50 @@ Checking test 018 cpld_control_c48 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.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 = 499.695976 - 0: The maximum resident set size (KB) = 2768164 + 0: The total amount of wall time = 495.870075 + 0: The maximum resident set size (KB) = 2801708 Test 018 cpld_control_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_warmstart_c48 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/cpld_warmstart_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_warmstart_c48 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/cpld_warmstart_c48 Checking test 019 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1188,50 +1188,50 @@ Checking test 019 cpld_warmstart_c48 results .... Comparing atmf006.tile4.nc .........OK Comparing atmf006.tile5.nc .........OK Comparing atmf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.120000.coupler.res .........OK + Comparing RESTART/20210323.120000.fv_core.res.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 138.001310 - 0: The maximum resident set size (KB) = 2802352 + 0: The total amount of wall time = 138.372228 + 0: The maximum resident set size (KB) = 2795104 Test 019 cpld_warmstart_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_warmstart_c48 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/cpld_restart_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_warmstart_c48 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/cpld_restart_c48 Checking test 020 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1245,50 +1245,50 @@ Checking test 020 cpld_restart_c48 results .... Comparing atmf006.tile4.nc .........OK Comparing atmf006.tile5.nc .........OK Comparing atmf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.120000.coupler.res .........OK + Comparing RESTART/20210323.120000.fv_core.res.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 75.000743 - 0: The maximum resident set size (KB) = 2244208 + 0: The total amount of wall time = 71.528781 + 0: The maximum resident set size (KB) = 2244052 Test 020 cpld_restart_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_CubedSphereGrid -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/control_CubedSphereGrid +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_CubedSphereGrid +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/control_CubedSphereGrid Checking test 021 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1315,28 +1315,28 @@ Checking test 021 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 130.466392 - 0: The maximum resident set size (KB) = 630040 + 0: The total amount of wall time = 130.100001 + 0: The maximum resident set size (KB) = 625112 Test 021 control_CubedSphereGrid PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_CubedSphereGrid_parallel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/control_CubedSphereGrid_parallel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_CubedSphereGrid_parallel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/control_CubedSphereGrid_parallel Checking test 022 control_CubedSphereGrid_parallel results .... 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 = 127.499667 - 0: The maximum resident set size (KB) = 629828 + 0: The total amount of wall time = 127.240218 + 0: The maximum resident set size (KB) = 628280 Test 022 control_CubedSphereGrid_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_latlon -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/control_latlon +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_latlon +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/control_latlon Checking test 023 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1347,16 +1347,16 @@ Checking test 023 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 133.124426 - 0: The maximum resident set size (KB) = 626528 + 0: The total amount of wall time = 134.098644 + 0: The maximum resident set size (KB) = 631664 Test 023 control_latlon PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_wrtGauss_netcdf_parallel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/control_wrtGauss_netcdf_parallel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_wrtGauss_netcdf_parallel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/control_wrtGauss_netcdf_parallel Checking test 024 control_wrtGauss_netcdf_parallel results .... - Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK @@ -1365,60 +1365,60 @@ Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.126889 - 0: The maximum resident set size (KB) = 632008 + 0: The total amount of wall time = 136.105634 + 0: The maximum resident set size (KB) = 630076 Test 024 control_wrtGauss_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_c48 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/control_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_c48 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/control_c48 Checking test 025 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0: The total amount of wall time = 346.817203 -0: The maximum resident set size (KB) = 816712 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 347.126957 +0: The maximum resident set size (KB) = 821480 Test 025 control_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_c192 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/control_c192 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_c192 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/control_c192 Checking test 026 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1429,14 +1429,14 @@ Checking test 026 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 526.631818 - 0: The maximum resident set size (KB) = 765280 + 0: The total amount of wall time = 526.302921 + 0: The maximum resident set size (KB) = 764944 Test 026 control_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_c384 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/control_c384 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_c384 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/control_c384 Checking test 027 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1447,14 +1447,14 @@ Checking test 027 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 589.794373 - 0: The maximum resident set size (KB) = 1158848 + 0: The total amount of wall time = 596.255603 + 0: The maximum resident set size (KB) = 1227916 Test 027 control_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_c384gdas -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/control_c384gdas +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_c384gdas +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/control_c384gdas Checking test 028 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1464,47 +1464,47 @@ Checking test 028 control_c384gdas results .... Comparing GFSFLX.GrbF06 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF06 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 514.027537 - 0: The maximum resident set size (KB) = 1308912 + Comparing RESTART/20210322.060000.coupler.res .........OK + Comparing RESTART/20210322.060000.fv_core.res.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 523.429261 + 0: The maximum resident set size (KB) = 1331156 Test 028 control_c384gdas PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_stochy -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/control_stochy +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_stochy +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/control_stochy Checking test 029 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1515,28 +1515,28 @@ Checking test 029 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 86.649565 - 0: The maximum resident set size (KB) = 634944 + 0: The total amount of wall time = 87.512193 + 0: The maximum resident set size (KB) = 633596 Test 029 control_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_stochy -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/control_stochy_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_stochy +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/control_stochy_restart Checking test 030 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 47.380261 - 0: The maximum resident set size (KB) = 477416 + 0: The total amount of wall time = 47.042506 + 0: The maximum resident set size (KB) = 480912 Test 030 control_stochy_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_lndp -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/control_lndp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_lndp +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/control_lndp Checking test 031 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1547,14 +1547,14 @@ Checking test 031 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 79.695437 - 0: The maximum resident set size (KB) = 632352 + 0: The total amount of wall time = 81.919803 + 0: The maximum resident set size (KB) = 636332 Test 031 control_lndp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_iovr4 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/control_iovr4 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_iovr4 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/control_iovr4 Checking test 032 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1569,14 +1569,14 @@ Checking test 032 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.815170 - 0: The maximum resident set size (KB) = 633692 + 0: The total amount of wall time = 134.515945 + 0: The maximum resident set size (KB) = 627436 Test 032 control_iovr4 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_iovr5 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/control_iovr5 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_iovr5 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/control_iovr5 Checking test 033 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1591,14 +1591,14 @@ Checking test 033 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 132.939088 - 0: The maximum resident set size (KB) = 629156 + 0: The total amount of wall time = 134.386130 + 0: The maximum resident set size (KB) = 627352 Test 033 control_iovr5 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/control_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/control_p8 Checking test 034 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1612,47 +1612,47 @@ Checking test 034 control_p8 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 165.722758 - 0: The maximum resident set size (KB) = 1613548 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 166.664935 + 0: The maximum resident set size (KB) = 1598444 Test 034 control_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8_lndp -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/control_p8_lndp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8_lndp +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/control_p8_lndp Checking test 035 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1671,60 +1671,60 @@ Checking test 035 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 314.899298 - 0: The maximum resident set size (KB) = 1599932 + 0: The total amount of wall time = 312.058329 + 0: The maximum resident set size (KB) = 1598472 Test 035 control_p8_lndp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/control_restart_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/control_restart_p8 Checking test 036 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 86.866559 - 0: The maximum resident set size (KB) = 871244 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 87.428003 + 0: The maximum resident set size (KB) = 870672 Test 036 control_restart_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/control_decomp_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/control_decomp_p8 Checking test 037 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1734,47 +1734,47 @@ Checking test 037 control_decomp_p8 results .... Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 172.567168 - 0: The maximum resident set size (KB) = 1587764 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 175.052516 + 0: The maximum resident set size (KB) = 1590644 Test 037 control_decomp_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/control_2threads_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/control_2threads_p8 Checking test 038 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1784,47 +1784,47 @@ Checking test 038 control_2threads_p8 results .... Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 180.455501 - 0: The maximum resident set size (KB) = 1691320 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 182.857788 + 0: The maximum resident set size (KB) = 1689084 Test 038 control_2threads_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8_rrtmgp -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/control_p8_rrtmgp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8_rrtmgp +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/control_p8_rrtmgp Checking test 039 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1838,47 +1838,47 @@ Checking test 039 control_p8_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 228.679360 - 0: The maximum resident set size (KB) = 1677100 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 226.726934 + 0: The maximum resident set size (KB) = 1668316 Test 039 control_p8_rrtmgp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/merra2_thompson -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/merra2_thompson +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/merra2_thompson +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/merra2_thompson Checking test 040 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1892,47 +1892,47 @@ Checking test 040 merra2_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 192.728866 - 0: The maximum resident set size (KB) = 1583100 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 191.056784 + 0: The maximum resident set size (KB) = 1609448 Test 040 merra2_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/regional_control +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/regional_control Checking test 041 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1943,28 +1943,28 @@ Checking test 041 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 295.258528 - 0: The maximum resident set size (KB) = 871820 + 0: The total amount of wall time = 295.732367 + 0: The maximum resident set size (KB) = 865632 Test 041 regional_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/regional_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/regional_restart Checking test 042 regional_restart 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.148614 - 0: The maximum resident set size (KB) = 857332 + 0: The total amount of wall time = 151.222913 + 0: The maximum resident set size (KB) = 869716 Test 042 regional_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/regional_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/regional_decomp Checking test 043 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1975,14 +1975,14 @@ Checking test 043 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 313.026980 - 0: The maximum resident set size (KB) = 856984 + 0: The total amount of wall time = 314.932141 + 0: The maximum resident set size (KB) = 858716 Test 043 regional_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/regional_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/regional_2threads Checking test 044 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1993,14 +1993,14 @@ Checking test 044 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 208.470763 - 0: The maximum resident set size (KB) = 842036 + 0: The total amount of wall time = 209.325732 + 0: The maximum resident set size (KB) = 842544 Test 044 regional_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_noquilt -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/regional_noquilt +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_noquilt +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/regional_noquilt Checking test 045 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2008,28 +2008,28 @@ Checking test 045 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 319.287085 - 0: The maximum resident set size (KB) = 861876 + 0: The total amount of wall time = 316.887505 + 0: The maximum resident set size (KB) = 858800 Test 045 regional_noquilt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_netcdf_parallel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/regional_netcdf_parallel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_netcdf_parallel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/regional_netcdf_parallel Checking test 046 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 292.496163 - 0: The maximum resident set size (KB) = 863856 + 0: The total amount of wall time = 292.702601 + 0: The maximum resident set size (KB) = 866992 Test 046 regional_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/regional_2dwrtdecomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/regional_2dwrtdecomp Checking test 047 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2040,14 +2040,14 @@ Checking test 047 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 296.782850 - 0: The maximum resident set size (KB) = 866188 + 0: The total amount of wall time = 296.965735 + 0: The maximum resident set size (KB) = 869916 Test 047 regional_2dwrtdecomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/fv3_regional_wofs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/regional_wofs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/fv3_regional_wofs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/regional_wofs Checking test 048 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2058,14 +2058,14 @@ Checking test 048 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 374.602759 - 0: The maximum resident set size (KB) = 618860 + 0: The total amount of wall time = 374.948772 + 0: The maximum resident set size (KB) = 627612 Test 048 regional_wofs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/rap_control +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/rap_control Checking test 049 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2079,47 +2079,47 @@ Checking test 049 rap_control results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 455.701745 - 0: The maximum resident set size (KB) = 1065012 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 458.767412 + 0: The maximum resident set size (KB) = 1067260 Test 049 rap_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_spp_sppt_shum_skeb -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/regional_spp_sppt_shum_skeb +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_spp_sppt_shum_skeb +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/regional_spp_sppt_shum_skeb Checking test 050 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2130,14 +2130,14 @@ Checking test 050 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 327.852743 - 0: The maximum resident set size (KB) = 1186352 + 0: The total amount of wall time = 325.324230 + 0: The maximum resident set size (KB) = 1187048 Test 050 regional_spp_sppt_shum_skeb PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/rap_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/rap_decomp Checking test 051 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2151,47 +2151,47 @@ Checking test 051 rap_decomp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 483.833359 - 0: The maximum resident set size (KB) = 1006620 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 480.990768 + 0: The maximum resident set size (KB) = 1011980 Test 051 rap_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/rap_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/rap_2threads Checking test 052 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2205,93 +2205,93 @@ Checking test 052 rap_2threads results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 476.932618 - 0: The maximum resident set size (KB) = 1139948 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 477.462181 + 0: The maximum resident set size (KB) = 1137800 Test 052 rap_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/rap_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/rap_restart Checking test 053 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 230.832822 - 0: The maximum resident set size (KB) = 965916 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 257.808709 + 0: The maximum resident set size (KB) = 970284 Test 053 rap_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_sfcdiff -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/rap_sfcdiff +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_sfcdiff +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/rap_sfcdiff Checking test 054 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2305,47 +2305,47 @@ Checking test 054 rap_sfcdiff results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 488.117513 - 0: The maximum resident set size (KB) = 1067872 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 451.997453 + 0: The maximum resident set size (KB) = 1059516 Test 054 rap_sfcdiff PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_sfcdiff -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/rap_sfcdiff_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_sfcdiff +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/rap_sfcdiff_decomp Checking test 055 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2359,93 +2359,93 @@ Checking test 055 rap_sfcdiff_decomp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 478.199694 - 0: The maximum resident set size (KB) = 1008976 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 476.519229 + 0: The maximum resident set size (KB) = 1005484 Test 055 rap_sfcdiff_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_sfcdiff -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/rap_sfcdiff_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_sfcdiff +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/rap_sfcdiff_restart Checking test 056 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 342.007540 - 0: The maximum resident set size (KB) = 982780 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 383.192680 + 0: The maximum resident set size (KB) = 987024 Test 056 rap_sfcdiff_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/hrrr_control +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/hrrr_control Checking test 057 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2459,47 +2459,47 @@ Checking test 057 hrrr_control results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 437.261707 - 0: The maximum resident set size (KB) = 1061004 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 435.978591 + 0: The maximum resident set size (KB) = 1049304 Test 057 hrrr_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/hrrr_control_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/hrrr_control_decomp Checking test 058 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2513,47 +2513,47 @@ Checking test 058 hrrr_control_decomp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 455.380519 - 0: The maximum resident set size (KB) = 1004940 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 456.333616 + 0: The maximum resident set size (KB) = 1004332 Test 058 hrrr_control_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/hrrr_control_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/hrrr_control_2threads Checking test 059 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2567,93 +2567,93 @@ Checking test 059 hrrr_control_2threads results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 450.141447 - 0: The maximum resident set size (KB) = 1133920 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 450.193714 + 0: The maximum resident set size (KB) = 1137672 Test 059 hrrr_control_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/hrrr_control_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/hrrr_control_restart Checking test 060 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 329.359664 - 0: The maximum resident set size (KB) = 987268 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 329.385711 + 0: The maximum resident set size (KB) = 991836 Test 060 hrrr_control_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_v1beta -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/rrfs_v1beta +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_v1beta +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/rrfs_v1beta Checking test 061 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2667,47 +2667,47 @@ Checking test 061 rrfs_v1beta results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 446.034525 - 0: The maximum resident set size (KB) = 1058796 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 444.778376 + 0: The maximum resident set size (KB) = 1056152 Test 061 rrfs_v1beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_v1nssl -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/rrfs_v1nssl +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_v1nssl +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/rrfs_v1nssl Checking test 062 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2722,14 +2722,14 @@ Checking test 062 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 527.534063 - 0: The maximum resident set size (KB) = 704052 + 0: The total amount of wall time = 562.048719 + 0: The maximum resident set size (KB) = 703784 Test 062 rrfs_v1nssl PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/rrfs_v1nssl_nohailnoccn +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/rrfs_v1nssl_nohailnoccn Checking test 063 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2744,14 +2744,14 @@ Checking test 063 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 515.270579 - 0: The maximum resident set size (KB) = 755188 + 0: The total amount of wall time = 547.364762 + 0: The maximum resident set size (KB) = 765152 Test 063 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_hrrr_warm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/rrfs_conus13km_hrrr_warm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_hrrr_warm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/rrfs_conus13km_hrrr_warm Checking test 064 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2760,14 +2760,14 @@ Checking test 064 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 122.543891 - 0: The maximum resident set size (KB) = 894052 + 0: The total amount of wall time = 122.520769 + 0: The maximum resident set size (KB) = 932192 Test 064 rrfs_conus13km_hrrr_warm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/rrfs_smoke_conus13km_hrrr_warm Checking test 065 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2776,14 +2776,14 @@ Checking test 065 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 138.416823 - 0: The maximum resident set size (KB) = 962716 + 0: The total amount of wall time = 138.210754 + 0: The maximum resident set size (KB) = 961388 Test 065 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/rrfs_conus13km_radar_tten_warm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/rrfs_conus13km_radar_tten_warm Checking test 066 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2792,14 +2792,14 @@ Checking test 066 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 123.044349 - 0: The maximum resident set size (KB) = 933988 + 0: The total amount of wall time = 122.523043 + 0: The maximum resident set size (KB) = 937176 Test 066 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_hrrr_warm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/rrfs_conus13km_hrrr_warm_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_hrrr_warm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/rrfs_conus13km_hrrr_warm_2threads Checking test 067 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2808,14 +2808,14 @@ Checking test 067 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 82.874744 - 0: The maximum resident set size (KB) = 888176 + 0: The total amount of wall time = 82.743270 + 0: The maximum resident set size (KB) = 888924 Test 067 rrfs_conus13km_hrrr_warm_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/rrfs_conus13km_radar_tten_warm_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/rrfs_conus13km_radar_tten_warm_2threads Checking test 068 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2824,14 +2824,14 @@ Checking test 068 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 83.831004 - 0: The maximum resident set size (KB) = 895424 + 0: The total amount of wall time = 83.157941 + 0: The maximum resident set size (KB) = 890200 Test 068 rrfs_conus13km_radar_tten_warm_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_csawmg -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/control_csawmg +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_csawmg +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/control_csawmg Checking test 069 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2842,14 +2842,14 @@ Checking test 069 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 343.730068 - 0: The maximum resident set size (KB) = 693032 + 0: The total amount of wall time = 364.809439 + 0: The maximum resident set size (KB) = 721660 Test 069 control_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_csawmgt -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/control_csawmgt +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_csawmgt +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/control_csawmgt Checking test 070 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2860,14 +2860,14 @@ Checking test 070 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 337.007592 - 0: The maximum resident set size (KB) = 728932 + 0: The total amount of wall time = 370.796601 + 0: The maximum resident set size (KB) = 727200 Test 070 control_csawmgt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_ras -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/control_ras +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_ras +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/control_ras Checking test 071 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2878,54 +2878,54 @@ Checking test 071 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 181.134958 - 0: The maximum resident set size (KB) = 695536 + 0: The total amount of wall time = 180.670747 + 0: The maximum resident set size (KB) = 722752 Test 071 control_ras PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_wam -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/control_wam +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_wam +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/control_wam Checking test 072 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 113.624897 - 0: The maximum resident set size (KB) = 642432 + 0: The total amount of wall time = 112.248017 + 0: The maximum resident set size (KB) = 649416 Test 072 control_wam PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/rrfs_conus13km_hrrr_warm_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/rrfs_conus13km_hrrr_warm_debug Checking test 073 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 705.955586 - 0: The maximum resident set size (KB) = 954972 + 0: The total amount of wall time = 759.105742 + 0: The maximum resident set size (KB) = 956296 Test 073 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/rrfs_conus13km_radar_tten_warm_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_radar_tten_warm_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/rrfs_conus13km_radar_tten_warm_debug Checking test 074 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 727.628669 - 0: The maximum resident set size (KB) = 957564 + 0: The total amount of wall time = 749.005538 + 0: The maximum resident set size (KB) = 967884 Test 074 rrfs_conus13km_radar_tten_warm_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_CubedSphereGrid_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/control_CubedSphereGrid_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_CubedSphereGrid_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/control_CubedSphereGrid_debug Checking test 075 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2952,334 +2952,334 @@ Checking test 075 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 171.799661 - 0: The maximum resident set size (KB) = 796160 + 0: The total amount of wall time = 171.318986 + 0: The maximum resident set size (KB) = 792176 Test 075 control_CubedSphereGrid_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/control_wrtGauss_netcdf_parallel_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/control_wrtGauss_netcdf_parallel_debug Checking test 076 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK + Comparing sfcf001.nc .........OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 158.707090 - 0: The maximum resident set size (KB) = 793356 + 0: The total amount of wall time = 157.692498 + 0: The maximum resident set size (KB) = 795520 Test 076 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_stochy_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/control_stochy_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_stochy_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/control_stochy_debug Checking test 077 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 174.770911 - 0: The maximum resident set size (KB) = 795484 + 0: The total amount of wall time = 181.850752 + 0: The maximum resident set size (KB) = 796708 Test 077 control_stochy_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_lndp_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/control_lndp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_lndp_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/control_lndp_debug Checking test 078 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 158.271845 - 0: The maximum resident set size (KB) = 799584 + 0: The total amount of wall time = 161.724596 + 0: The maximum resident set size (KB) = 799248 Test 078 control_lndp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_csawmg_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/control_csawmg_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_csawmg_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/control_csawmg_debug Checking test 079 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 237.797110 - 0: The maximum resident set size (KB) = 847764 + 0: The total amount of wall time = 243.406465 + 0: The maximum resident set size (KB) = 843012 Test 079 control_csawmg_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_csawmgt_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/control_csawmgt_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_csawmgt_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/control_csawmgt_debug Checking test 080 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 232.705243 - 0: The maximum resident set size (KB) = 849464 + 0: The total amount of wall time = 234.732090 + 0: The maximum resident set size (KB) = 840348 Test 080 control_csawmgt_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_ras_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/control_ras_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_ras_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/control_ras_debug Checking test 081 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 163.308561 - 0: The maximum resident set size (KB) = 808400 + 0: The total amount of wall time = 160.112720 + 0: The maximum resident set size (KB) = 803792 Test 081 control_ras_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_diag_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/control_diag_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_diag_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/control_diag_debug Checking test 082 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 164.825735 - 0: The maximum resident set size (KB) = 848228 + 0: The total amount of wall time = 171.505597 + 0: The maximum resident set size (KB) = 856628 Test 082 control_diag_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_debug_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/control_debug_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_debug_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/control_debug_p8 Checking test 083 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 180.787678 - 0: The maximum resident set size (KB) = 1631056 + 0: The total amount of wall time = 180.671225 + 0: The maximum resident set size (KB) = 1623468 Test 083 control_debug_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/regional_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/regional_debug Checking test 084 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 975.635718 - 0: The maximum resident set size (KB) = 877424 + 0: The total amount of wall time = 1000.671460 + 0: The maximum resident set size (KB) = 888460 Test 084 regional_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/rap_control_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/rap_control_debug Checking test 085 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 286.546009 - 0: The maximum resident set size (KB) = 1178540 + 0: The total amount of wall time = 281.876960 + 0: The maximum resident set size (KB) = 1175520 Test 085 rap_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/hrrr_control_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/hrrr_control_debug Checking test 086 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.788702 - 0: The maximum resident set size (KB) = 1168224 + 0: The total amount of wall time = 278.573411 + 0: The maximum resident set size (KB) = 1169624 Test 086 hrrr_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/rap_unified_drag_suite_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/rap_unified_drag_suite_debug Checking test 087 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 289.165553 - 0: The maximum resident set size (KB) = 1145768 + 0: The total amount of wall time = 282.447027 + 0: The maximum resident set size (KB) = 1175836 Test 087 rap_unified_drag_suite_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_diag_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/rap_diag_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_diag_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/rap_diag_debug Checking test 088 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 299.737904 - 0: The maximum resident set size (KB) = 1253704 + 0: The total amount of wall time = 305.959879 + 0: The maximum resident set size (KB) = 1256164 Test 088 rap_diag_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/rap_cires_ugwp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_cires_ugwp_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/rap_cires_ugwp_debug Checking test 089 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 312.201426 - 0: The maximum resident set size (KB) = 1177284 + 0: The total amount of wall time = 292.119550 + 0: The maximum resident set size (KB) = 1175880 Test 089 rap_cires_ugwp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/rap_unified_ugwp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_cires_ugwp_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/rap_unified_ugwp_debug Checking test 090 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 285.204376 - 0: The maximum resident set size (KB) = 1176236 + 0: The total amount of wall time = 295.312360 + 0: The maximum resident set size (KB) = 1178944 Test 090 rap_unified_ugwp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_lndp_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/rap_lndp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_lndp_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/rap_lndp_debug Checking test 091 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 291.461704 - 0: The maximum resident set size (KB) = 1140172 + 0: The total amount of wall time = 291.153683 + 0: The maximum resident set size (KB) = 1181132 Test 091 rap_lndp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_flake_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/rap_flake_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_flake_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/rap_flake_debug Checking test 092 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.365627 - 0: The maximum resident set size (KB) = 1173948 + 0: The total amount of wall time = 287.138486 + 0: The maximum resident set size (KB) = 1175992 Test 092 rap_flake_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_progcld_thompson_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/rap_progcld_thompson_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_progcld_thompson_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/rap_progcld_thompson_debug Checking test 093 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.968825 - 0: The maximum resident set size (KB) = 1176052 + 0: The total amount of wall time = 284.367147 + 0: The maximum resident set size (KB) = 1182152 Test 093 rap_progcld_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_noah_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/rap_noah_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_noah_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/rap_noah_debug Checking test 094 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.312873 - 0: The maximum resident set size (KB) = 1173684 + 0: The total amount of wall time = 285.716559 + 0: The maximum resident set size (KB) = 1173128 Test 094 rap_noah_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_sfcdiff_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/rap_sfcdiff_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_sfcdiff_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/rap_sfcdiff_debug Checking test 095 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.455643 - 0: The maximum resident set size (KB) = 1173216 + 0: The total amount of wall time = 291.942980 + 0: The maximum resident set size (KB) = 1172432 Test 095 rap_sfcdiff_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/rap_noah_sfcdiff_cires_ugwp_debug Checking test 096 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 471.633804 - 0: The maximum resident set size (KB) = 1172944 + 0: The total amount of wall time = 453.265170 + 0: The maximum resident set size (KB) = 1174180 Test 096 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_v1beta_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/rrfs_v1beta_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_v1beta_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/rrfs_v1beta_debug Checking test 097 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 284.273984 - 0: The maximum resident set size (KB) = 1143352 + 0: The total amount of wall time = 285.462290 + 0: The maximum resident set size (KB) = 1172956 Test 097 rrfs_v1beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_wam_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/control_wam_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_wam_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/control_wam_debug Checking test 098 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 289.649834 - 0: The maximum resident set size (KB) = 523152 + 0: The total amount of wall time = 317.574676 + 0: The maximum resident set size (KB) = 531712 Test 098 control_wam_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 099 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3290,14 +3290,14 @@ Checking test 099 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 301.310465 - 0: The maximum resident set size (KB) = 1069324 + 0: The total amount of wall time = 302.738715 + 0: The maximum resident set size (KB) = 1084104 Test 099 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/rap_control_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/rap_control_dyn32_phy32 Checking test 100 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3311,47 +3311,47 @@ Checking test 100 rap_control_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 368.959958 - 0: The maximum resident set size (KB) = 1010940 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 395.870285 + 0: The maximum resident set size (KB) = 999220 Test 100 rap_control_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/hrrr_control_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/hrrr_control_dyn32_phy32 Checking test 101 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3365,47 +3365,47 @@ Checking test 101 hrrr_control_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 192.594749 - 0: The maximum resident set size (KB) = 951596 + 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 = 193.264951 + 0: The maximum resident set size (KB) = 951784 Test 101 hrrr_control_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/rap_2threads_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/rap_2threads_dyn32_phy32 Checking test 102 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3419,47 +3419,47 @@ Checking test 102 rap_2threads_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 389.487877 - 0: The maximum resident set size (KB) = 1021892 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 428.663600 + 0: The maximum resident set size (KB) = 1022400 Test 102 rap_2threads_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/hrrr_control_2threads_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/hrrr_control_2threads_dyn32_phy32 Checking test 103 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3473,47 +3473,47 @@ Checking test 103 hrrr_control_2threads_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 208.095408 - 0: The maximum resident set size (KB) = 1007612 + 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 = 248.057984 + 0: The maximum resident set size (KB) = 1006936 Test 103 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/hrrr_control_decomp_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/hrrr_control_decomp_dyn32_phy32 Checking test 104 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3527,139 +3527,139 @@ Checking test 104 hrrr_control_decomp_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 204.322636 - 0: The maximum resident set size (KB) = 890380 + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 254.862931 + 0: The maximum resident set size (KB) = 896968 Test 104 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/rap_restart_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/rap_restart_dyn32_phy32 Checking test 105 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 298.751362 - 0: The maximum resident set size (KB) = 951784 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 280.849119 + 0: The maximum resident set size (KB) = 956104 Test 105 rap_restart_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/hrrr_control_restart_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/hrrr_control_restart_dyn32_phy32 Checking test 106 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 99.289282 - 0: The maximum resident set size (KB) = 821444 + 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 = 100.424893 + 0: The maximum resident set size (KB) = 864544 Test 106 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_dyn64_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/rap_control_dyn64_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_dyn64_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/rap_control_dyn64_phy32 Checking test 107 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3673,114 +3673,114 @@ Checking test 107 rap_control_dyn64_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 237.430960 - 0: The maximum resident set size (KB) = 964964 + 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 = 273.973239 + 0: The maximum resident set size (KB) = 965288 Test 107 rap_control_dyn64_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_debug_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/rap_control_debug_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_debug_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/rap_control_debug_dyn32_phy32 Checking test 108 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 286.329180 - 0: The maximum resident set size (KB) = 1032008 + 0: The total amount of wall time = 284.009407 + 0: The maximum resident set size (KB) = 1063316 Test 108 rap_control_debug_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/hrrr_control_debug_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/hrrr_control_debug_dyn32_phy32 Checking test 109 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 293.856772 - 0: The maximum resident set size (KB) = 1059268 + 0: The total amount of wall time = 274.787772 + 0: The maximum resident set size (KB) = 1060332 Test 109 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_debug_dyn64_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/rap_control_dyn64_phy32_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_debug_dyn64_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/rap_control_dyn64_phy32_debug Checking test 110 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 282.959249 - 0: The maximum resident set size (KB) = 1112808 + 0: The total amount of wall time = 296.135212 + 0: The maximum resident set size (KB) = 1115392 Test 110 rap_control_dyn64_phy32_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/hafs_regional_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_atm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/hafs_regional_atm Checking test 111 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 253.305299 - 0: The maximum resident set size (KB) = 1027872 + 0: The total amount of wall time = 320.424951 + 0: The maximum resident set size (KB) = 1056976 Test 111 hafs_regional_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/hafs_regional_atm_thompson_gfdlsf +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/hafs_regional_atm_thompson_gfdlsf Checking test 112 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 409.651855 - 0: The maximum resident set size (KB) = 1401876 + 0: The total amount of wall time = 471.569473 + 0: The maximum resident set size (KB) = 1426272 Test 112 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_atm_ocn -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/hafs_regional_atm_ocn +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_atm_ocn +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/hafs_regional_atm_ocn Checking test 113 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3789,14 +3789,14 @@ Checking test 113 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 364.836168 - 0: The maximum resident set size (KB) = 1215680 + 0: The total amount of wall time = 415.379945 + 0: The maximum resident set size (KB) = 1228324 Test 113 hafs_regional_atm_ocn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_atm_wav -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/hafs_regional_atm_wav +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_atm_wav +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/hafs_regional_atm_wav Checking test 114 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3805,14 +3805,14 @@ Checking test 114 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 716.873719 - 0: The maximum resident set size (KB) = 1236752 + 0: The total amount of wall time = 798.286623 + 0: The maximum resident set size (KB) = 1251572 Test 114 hafs_regional_atm_wav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_atm_ocn_wav -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/hafs_regional_atm_ocn_wav +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_atm_ocn_wav +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/hafs_regional_atm_ocn_wav Checking test 115 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3823,28 +3823,28 @@ Checking test 115 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 830.060886 - 0: The maximum resident set size (KB) = 1257352 + 0: The total amount of wall time = 834.537363 + 0: The maximum resident set size (KB) = 1279976 Test 115 hafs_regional_atm_ocn_wav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_1nest_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/hafs_regional_1nest_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_1nest_atm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/hafs_regional_1nest_atm Checking test 116 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 404.183022 - 0: The maximum resident set size (KB) = 506404 + 0: The total amount of wall time = 364.013698 + 0: The maximum resident set size (KB) = 513392 Test 116 hafs_regional_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/hafs_regional_telescopic_2nests_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/hafs_regional_telescopic_2nests_atm Checking test 117 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3853,28 +3853,28 @@ Checking test 117 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 410.250389 - 0: The maximum resident set size (KB) = 517512 + 0: The total amount of wall time = 417.058198 + 0: The maximum resident set size (KB) = 519704 Test 117 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_global_1nest_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/hafs_global_1nest_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_global_1nest_atm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/hafs_global_1nest_atm Checking test 118 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 171.449528 - 0: The maximum resident set size (KB) = 345540 + 0: The total amount of wall time = 174.827488 + 0: The maximum resident set size (KB) = 353576 Test 118 hafs_global_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_global_multiple_4nests_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/hafs_global_multiple_4nests_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_global_multiple_4nests_atm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/hafs_global_multiple_4nests_atm Checking test 119 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3892,14 +3892,14 @@ Checking test 119 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 467.473556 - 0: The maximum resident set size (KB) = 426360 + 0: The total amount of wall time = 471.300323 + 0: The maximum resident set size (KB) = 427388 Test 119 hafs_global_multiple_4nests_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/hafs_regional_specified_moving_1nest_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/hafs_regional_specified_moving_1nest_atm Checking test 120 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3908,28 +3908,28 @@ Checking test 120 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 224.804406 - 0: The maximum resident set size (KB) = 514944 + 0: The total amount of wall time = 228.107659 + 0: The maximum resident set size (KB) = 518256 Test 120 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/hafs_regional_storm_following_1nest_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/hafs_regional_storm_following_1nest_atm Checking test 121 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 214.979733 - 0: The maximum resident set size (KB) = 514192 + 0: The total amount of wall time = 218.045294 + 0: The maximum resident set size (KB) = 520556 Test 121 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/hafs_regional_storm_following_1nest_atm_ocn Checking test 122 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3938,42 +3938,42 @@ Checking test 122 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 287.454672 - 0: The maximum resident set size (KB) = 552000 + 0: The total amount of wall time = 288.507202 + 0: The maximum resident set size (KB) = 557932 Test 122 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_global_storm_following_1nest_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/hafs_global_storm_following_1nest_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_global_storm_following_1nest_atm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/hafs_global_storm_following_1nest_atm Checking test 123 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 67.577165 - 0: The maximum resident set size (KB) = 367772 + 0: The total amount of wall time = 68.200601 + 0: The maximum resident set size (KB) = 369140 Test 123 hafs_global_storm_following_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 124 hafs_regional_storm_following_1nest_atm_ocn_debug results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 791.905147 - 0: The maximum resident set size (KB) = 585276 + 0: The total amount of wall time = 809.099504 + 0: The maximum resident set size (KB) = 585080 Test 124 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 125 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3984,14 +3984,14 @@ Checking test 125 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 575.126058 - 0: The maximum resident set size (KB) = 632696 + 0: The total amount of wall time = 585.110881 + 0: The maximum resident set size (KB) = 622152 Test 125 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_docn -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/hafs_regional_docn +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_docn +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/hafs_regional_docn Checking test 126 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3999,14 +3999,14 @@ Checking test 126 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 341.968252 - 0: The maximum resident set size (KB) = 1217228 + 0: The total amount of wall time = 355.926569 + 0: The maximum resident set size (KB) = 1234208 Test 126 hafs_regional_docn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_docn_oisst -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/hafs_regional_docn_oisst +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_docn_oisst +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/hafs_regional_docn_oisst Checking test 127 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4014,213 +4014,213 @@ Checking test 127 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 342.809793 - 0: The maximum resident set size (KB) = 1201764 + 0: The total amount of wall time = 359.420464 + 0: The maximum resident set size (KB) = 1216200 Test 127 hafs_regional_docn_oisst PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_datm_cdeps -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/hafs_regional_datm_cdeps +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_datm_cdeps +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/hafs_regional_datm_cdeps Checking test 128 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 937.467564 - 0: The maximum resident set size (KB) = 1041368 + 0: The total amount of wall time = 928.055717 + 0: The maximum resident set size (KB) = 1041416 Test 128 hafs_regional_datm_cdeps PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/datm_cdeps_control_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/datm_cdeps_control_cfsr Checking test 129 datm_cdeps_control_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20111002.000000.MOM.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.623312 - 0: The maximum resident set size (KB) = 1054268 + 0: The total amount of wall time = 147.866562 + 0: The maximum resident set size (KB) = 1065616 Test 129 datm_cdeps_control_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/datm_cdeps_restart_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/datm_cdeps_restart_cfsr Checking test 130 datm_cdeps_restart_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 92.227863 - 0: The maximum resident set size (KB) = 988820 + 0: The total amount of wall time = 91.069810 + 0: The maximum resident set size (KB) = 1018024 Test 130 datm_cdeps_restart_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_control_gefs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/datm_cdeps_control_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_control_gefs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/datm_cdeps_control_gefs Checking test 131 datm_cdeps_control_gefs results .... - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 143.431946 - 0: The maximum resident set size (KB) = 965576 + 0: The total amount of wall time = 145.818491 + 0: The maximum resident set size (KB) = 964760 Test 131 datm_cdeps_control_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_iau_gefs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/datm_cdeps_iau_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_iau_gefs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/datm_cdeps_iau_gefs Checking test 132 datm_cdeps_iau_gefs results .... - Comparing RESTART/MOM.res.nc .........OK + 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.077453 - 0: The maximum resident set size (KB) = 961484 + 0: The total amount of wall time = 146.492095 + 0: The maximum resident set size (KB) = 963700 Test 132 datm_cdeps_iau_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_stochy_gefs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/datm_cdeps_stochy_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_stochy_gefs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/datm_cdeps_stochy_gefs Checking test 133 datm_cdeps_stochy_gefs results .... - Comparing RESTART/MOM.res.nc .........OK + 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.306037 - 0: The maximum resident set size (KB) = 965552 + 0: The total amount of wall time = 145.699227 + 0: The maximum resident set size (KB) = 965536 Test 133 datm_cdeps_stochy_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_ciceC_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/datm_cdeps_ciceC_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_ciceC_cfsr +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/datm_cdeps_ciceC_cfsr Checking test 134 datm_cdeps_ciceC_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20111002.000000.MOM.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.638979 - 0: The maximum resident set size (KB) = 1068704 + 0: The total amount of wall time = 149.600540 + 0: The maximum resident set size (KB) = 1058432 Test 134 datm_cdeps_ciceC_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_bulk_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/datm_cdeps_bulk_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_bulk_cfsr +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/datm_cdeps_bulk_cfsr Checking test 135 datm_cdeps_bulk_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20111002.000000.MOM.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.578776 - 0: The maximum resident set size (KB) = 1065588 + 0: The total amount of wall time = 148.466187 + 0: The maximum resident set size (KB) = 1077288 Test 135 datm_cdeps_bulk_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_bulk_gefs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/datm_cdeps_bulk_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_bulk_gefs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/datm_cdeps_bulk_gefs Checking test 136 datm_cdeps_bulk_gefs results .... - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 144.171353 - 0: The maximum resident set size (KB) = 935492 + 0: The total amount of wall time = 141.823262 + 0: The maximum resident set size (KB) = 958160 Test 136 datm_cdeps_bulk_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_mx025_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/datm_cdeps_mx025_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_mx025_cfsr +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/datm_cdeps_mx025_cfsr Checking test 137 datm_cdeps_mx025_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/20111001.120000.MOM.res.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 435.794543 - 0: The maximum resident set size (KB) = 881308 + 0: The total amount of wall time = 431.462199 + 0: The maximum resident set size (KB) = 876340 Test 137 datm_cdeps_mx025_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_mx025_gefs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/datm_cdeps_mx025_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_mx025_gefs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/datm_cdeps_mx025_gefs Checking test 138 datm_cdeps_mx025_gefs results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/20111001.120000.MOM.res.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 435.962314 - 0: The maximum resident set size (KB) = 928392 + 0: The total amount of wall time = 428.357286 + 0: The maximum resident set size (KB) = 928436 Test 138 datm_cdeps_mx025_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/datm_cdeps_multiple_files_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/datm_cdeps_multiple_files_cfsr Checking test 139 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 153.227510 - 0: The maximum resident set size (KB) = 1069332 + 0: The total amount of wall time = 147.643404 + 0: The maximum resident set size (KB) = 1067128 Test 139 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/datm_cdeps_3072x1536_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/datm_cdeps_3072x1536_cfsr Checking test 140 datm_cdeps_3072x1536_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 201.635123 - 0: The maximum resident set size (KB) = 2288588 + 0: The total amount of wall time = 194.147060 + 0: The maximum resident set size (KB) = 2364508 Test 140 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_gfs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/datm_cdeps_gfs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_gfs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/datm_cdeps_gfs Checking test 141 datm_cdeps_gfs results .... - Comparing RESTART/MOM.res.nc .........OK + 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 = 201.311013 - 0: The maximum resident set size (KB) = 2309632 + 0: The total amount of wall time = 202.541321 + 0: The maximum resident set size (KB) = 2302688 Test 141 datm_cdeps_gfs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_debug_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/datm_cdeps_debug_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_debug_cfsr +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/datm_cdeps_debug_cfsr Checking test 142 datm_cdeps_debug_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 459.042073 - 0: The maximum resident set size (KB) = 996748 + 0: The total amount of wall time = 440.760255 + 0: The maximum resident set size (KB) = 992868 Test 142 datm_cdeps_debug_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_lnd_gswp3 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/datm_cdeps_lnd_gswp3 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_lnd_gswp3 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/datm_cdeps_lnd_gswp3 Checking test 143 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4229,14 +4229,14 @@ Checking test 143 datm_cdeps_lnd_gswp3 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.198613 - 0: The maximum resident set size (KB) = 260648 + 0: The total amount of wall time = 6.580570 + 0: The maximum resident set size (KB) = 281624 Test 143 datm_cdeps_lnd_gswp3 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_lnd_gswp3 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/datm_cdeps_lnd_gswp3_rst +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_lnd_gswp3 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/datm_cdeps_lnd_gswp3_rst Checking test 144 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4245,14 +4245,14 @@ Checking test 144 datm_cdeps_lnd_gswp3_rst 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.219536 - 0: The maximum resident set size (KB) = 255024 + 0: The total amount of wall time = 12.154590 + 0: The maximum resident set size (KB) = 259004 Test 144 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8_atmlnd_sbs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/control_p8_atmlnd_sbs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8_atmlnd_sbs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/control_p8_atmlnd_sbs Checking test 145 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4290,38 +4290,38 @@ Checking test 145 control_p8_atmlnd_sbs results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK Comparing ufs.cpld.cpl.hi.lnd.2021-03-22-43200.nc .........OK Comparing ufs.cpld.cpl.hi.lnd.2021-03-23-21600.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile1.nc .........OK @@ -4337,14 +4337,14 @@ Checking test 145 control_p8_atmlnd_sbs 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 = 202.051679 - 0: The maximum resident set size (KB) = 1621520 + 0: The total amount of wall time = 203.463820 + 0: The maximum resident set size (KB) = 1621020 Test 145 control_p8_atmlnd_sbs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/control_atmwav -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/control_atmwav +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_atmwav +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/control_atmwav Checking test 146 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4354,48 +4354,48 @@ Checking test 146 control_atmwav results .... Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 85.906079 - 0: The maximum resident set size (KB) = 660500 + 0: The total amount of wall time = 86.930856 + 0: The maximum resident set size (KB) = 664616 Test 146 control_atmwav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/atmaero_control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/atmaero_control_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/atmaero_control_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/atmaero_control_p8 Checking test 147 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4406,47 +4406,47 @@ Checking test 147 atmaero_control_p8 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 228.362055 - 0: The maximum resident set size (KB) = 2915800 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 226.392845 + 0: The maximum resident set size (KB) = 2974692 Test 147 atmaero_control_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/atmaero_control_p8_rad -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/atmaero_control_p8_rad +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/atmaero_control_p8_rad +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/atmaero_control_p8_rad Checking test 148 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4457,47 +4457,47 @@ Checking test 148 atmaero_control_p8_rad results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 282.448906 - 0: The maximum resident set size (KB) = 2989628 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 280.782346 + 0: The maximum resident set size (KB) = 3039456 Test 148 atmaero_control_p8_rad PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/atmaero_control_p8_rad_micro -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/atmaero_control_p8_rad_micro +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/atmaero_control_p8_rad_micro +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/atmaero_control_p8_rad_micro Checking test 149 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4508,47 +4508,47 @@ Checking test 149 atmaero_control_p8_rad_micro results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 280.531839 - 0: The maximum resident set size (KB) = 3059440 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 283.485882 + 0: The maximum resident set size (KB) = 3057632 Test 149 atmaero_control_p8_rad_micro PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_atmaq -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/regional_atmaq +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_atmaq +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/regional_atmaq Checking test 150 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4556,41 +4556,41 @@ Checking test 150 regional_atmaq results .... Comparing atmf000.nc .........OK Comparing atmf003.nc .........OK Comparing atmf006.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/phy_data.nc .........OK - Comparing RESTART/sfc_data.nc .........OK + Comparing RESTART/20190801.180000.coupler.res .........OK + Comparing RESTART/20190801.180000.fv_core.res.nc .........OK + Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.phy_data.nc .........OK + Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 588.780541 - 0: The maximum resident set size (KB) = 1562432 + 0: The total amount of wall time = 572.069318 + 0: The maximum resident set size (KB) = 1575904 Test 150 regional_atmaq PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_atmaq_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_180100/regional_atmaq_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_atmaq_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/regional_atmaq_debug Checking test 151 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/phy_data.nc .........OK - Comparing RESTART/sfc_data.nc .........OK + Comparing RESTART/20190801.130000.coupler.res .........OK + Comparing RESTART/20190801.130000.fv_core.res.nc .........OK + Comparing RESTART/20190801.130000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20190801.130000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20190801.130000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20190801.130000.phy_data.nc .........OK + Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1328.777308 - 0: The maximum resident set size (KB) = 1510572 + 0: The total amount of wall time = 1297.990353 + 0: The maximum resident set size (KB) = 1523648 Test 151 regional_atmaq_debug PASS REGRESSION TEST WAS SUCCESSFUL -Mon Feb 20 19:12:44 CST 2023 -Elapsed time: 01h:10m:52s. Have a nice day! +Fri Feb 24 10:50:28 CST 2023 +Elapsed time: 01h:12m:38s. Have a nice day! diff --git a/tests/RegressionTests_wcoss2.intel.log b/tests/RegressionTests_wcoss2.intel.log index 62800ca20c3..bec6a768f3b 100644 --- a/tests/RegressionTests_wcoss2.intel.log +++ b/tests/RegressionTests_wcoss2.intel.log @@ -1,31 +1,31 @@ -Tue Feb 21 17:16:07 UTC 2023 +Fri Feb 24 14:53:45 UTC 2023 Start Regression test -Compile 001 elapsed time 592 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 689 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 1032 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 545 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 005 elapsed time 1120 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 001 elapsed time 574 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1136 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 533 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 537 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 005 elapsed time 491 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON Compile 006 elapsed time 487 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 479 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 008 elapsed time 501 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 460 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 565 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 011 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 012 elapsed time 479 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 676 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 275 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 168 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 827 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 017 elapsed time 328 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 766 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 019 elapsed time 469 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 020 elapsed time 654 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 569 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 022 elapsed time 172 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8_mixedmode -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/cpld_control_p8_mixedmode +Compile 007 elapsed time 1077 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 999 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 966 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 717 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 011 elapsed time 152 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 012 elapsed time 499 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 630 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 395 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 253 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 676 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 017 elapsed time 216 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 638 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 019 elapsed time 530 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 020 elapsed time 599 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 565 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 022 elapsed time 428 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8_mixedmode +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -52,52 +52,52 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 344.192018 -The maximum resident set size (KB) = 2953660 +The total amount of wall time = 348.506363 +The maximum resident set size (KB) = 2954236 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/cpld_control_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/cpld_control_p8 Checking test 002 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -124,52 +124,52 @@ Checking test 002 cpld_control_p8 results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 394.425149 -The maximum resident set size (KB) = 2983812 +The total amount of wall time = 392.872121 +The maximum resident set size (KB) = 2981468 Test 002 cpld_control_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/cpld_restart_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/cpld_restart_p8 Checking test 003 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -184,52 +184,52 @@ Checking test 003 cpld_restart_p8 results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 238.679876 -The maximum resident set size (KB) = 2869716 +The total amount of wall time = 235.432198 +The maximum resident set size (KB) = 2869940 Test 003 cpld_restart_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/cpld_2threads_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/cpld_2threads_p8 Checking test 004 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -244,52 +244,52 @@ Checking test 004 cpld_2threads_p8 results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 375.291002 -The maximum resident set size (KB) = 3288660 +The total amount of wall time = 379.461646 +The maximum resident set size (KB) = 3284888 Test 004 cpld_2threads_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/cpld_decomp_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/cpld_decomp_p8 Checking test 005 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -304,52 +304,52 @@ Checking test 005 cpld_decomp_p8 results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 393.804255 -The maximum resident set size (KB) = 2978484 +The total amount of wall time = 387.510023 +The maximum resident set size (KB) = 2980316 Test 005 cpld_decomp_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/cpld_mpi_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/cpld_mpi_p8 Checking test 006 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -364,52 +364,52 @@ Checking test 006 cpld_mpi_p8 results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 326.943350 -The maximum resident set size (KB) = 2916352 +The total amount of wall time = 324.784566 +The maximum resident set size (KB) = 2911532 Test 006 cpld_mpi_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_ciceC_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/cpld_control_ciceC_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_ciceC_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/cpld_control_ciceC_p8 Checking test 007 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -436,162 +436,162 @@ Checking test 007 cpld_control_ciceC_p8 results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 394.826444 -The maximum resident set size (KB) = 2987248 +The total amount of wall time = 391.874639 +The maximum resident set size (KB) = 2984608 Test 007 cpld_control_ciceC_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_bmark_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/cpld_bmark_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_bmark_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/cpld_bmark_p8 Checking test 008 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK Comparing GFSFLX.GrbF06 .........OK Comparing GFSPRS.GrbF06 .........OK Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/20130401.060000.coupler.res .........OK + Comparing RESTART/20130401.060000.fv_core.res.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20130401.060000.MOM.res.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_1.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_2.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 927.334311 -The maximum resident set size (KB) = 3915996 +The total amount of wall time = 943.164109 +The maximum resident set size (KB) = 3919324 Test 008 cpld_bmark_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_bmark_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/cpld_restart_bmark_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_bmark_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/cpld_restart_bmark_p8 Checking test 009 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK Comparing GFSFLX.GrbF06 .........OK Comparing GFSPRS.GrbF06 .........OK Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/20130401.060000.coupler.res .........OK + Comparing RESTART/20130401.060000.fv_core.res.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20130401.060000.MOM.res.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_1.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_2.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 725.415497 -The maximum resident set size (KB) = 3883852 +The total amount of wall time = 703.379559 +The maximum resident set size (KB) = 3885800 Test 009 cpld_restart_bmark_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/cpld_control_noaero_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/cpld_control_noaero_p8 Checking test 010 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -617,52 +617,52 @@ Checking test 010 cpld_control_noaero_p8 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 289.497411 -The maximum resident set size (KB) = 1577320 +The total amount of wall time = 297.898075 +The maximum resident set size (KB) = 1583048 Test 010 cpld_control_noaero_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/cpld_control_nowave_noaero_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_c96_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/cpld_control_nowave_noaero_p8 Checking test 011 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -688,50 +688,50 @@ Checking test 011 cpld_control_nowave_noaero_p8 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 304.296686 -The maximum resident set size (KB) = 1626724 +The total amount of wall time = 309.473146 +The maximum resident set size (KB) = 1620988 Test 011 cpld_control_nowave_noaero_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/cpld_control_noaero_p8_agrid +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_noaero_p8_agrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/cpld_control_noaero_p8_agrid Checking test 012 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -757,50 +757,50 @@ Checking test 012 cpld_control_noaero_p8_agrid results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 315.552704 -The maximum resident set size (KB) = 1620760 +The total amount of wall time = 320.712967 +The maximum resident set size (KB) = 1622088 Test 012 cpld_control_noaero_p8_agrid PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/cpld_control_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/cpld_control_c48 Checking test 013 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -814,50 +814,50 @@ Checking test 013 cpld_control_c48 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 440.828358 -The maximum resident set size (KB) = 2630836 +The total amount of wall time = 436.185515 +The maximum resident set size (KB) = 2632260 Test 013 cpld_control_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/cpld_warmstart_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/cpld_warmstart_c48 Checking test 014 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -871,50 +871,50 @@ Checking test 014 cpld_warmstart_c48 results .... Comparing atmf006.tile4.nc .........OK Comparing atmf006.tile5.nc .........OK Comparing atmf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.120000.coupler.res .........OK + Comparing RESTART/20210323.120000.fv_core.res.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 127.346687 -The maximum resident set size (KB) = 2648336 +The total amount of wall time = 126.589749 +The maximum resident set size (KB) = 2649544 Test 014 cpld_warmstart_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/cpld_restart_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/cpld_restart_c48 Checking test 015 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -928,50 +928,50 @@ Checking test 015 cpld_restart_c48 results .... Comparing atmf006.tile4.nc .........OK Comparing atmf006.tile5.nc .........OK Comparing atmf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.120000.coupler.res .........OK + Comparing RESTART/20210323.120000.fv_core.res.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 72.898869 -The maximum resident set size (KB) = 2061608 +The total amount of wall time = 78.212273 +The maximum resident set size (KB) = 2067924 Test 015 cpld_restart_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_CubedSphereGrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/control_CubedSphereGrid +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_CubedSphereGrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_CubedSphereGrid Checking test 016 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -998,14 +998,14 @@ Checking test 016 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 128.253829 -The maximum resident set size (KB) = 518332 +The total amount of wall time = 130.529446 +The maximum resident set size (KB) = 512936 Test 016 control_CubedSphereGrid PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_latlon -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/control_latlon +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_latlon +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_latlon Checking test 017 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1016,14 +1016,14 @@ Checking test 017 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 130.363467 -The maximum resident set size (KB) = 521352 +The total amount of wall time = 134.230496 +The maximum resident set size (KB) = 516132 Test 017 control_latlon PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/control_wrtGauss_netcdf_parallel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_wrtGauss_netcdf_parallel Checking test 018 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1034,60 +1034,60 @@ Checking test 018 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 133.032563 -The maximum resident set size (KB) = 519632 +The total amount of wall time = 137.025969 +The maximum resident set size (KB) = 519260 Test 018 control_wrtGauss_netcdf_parallel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/control_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_c48 Checking test 019 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 326.100480 -The maximum resident set size (KB) = 672068 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 326.990542 +The maximum resident set size (KB) = 677220 Test 019 control_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_c192 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/control_c192 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_c192 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_c192 Checking test 020 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1098,14 +1098,14 @@ Checking test 020 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 535.896446 -The maximum resident set size (KB) = 616600 +The total amount of wall time = 532.978219 +The maximum resident set size (KB) = 615940 Test 020 control_c192 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_c384 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/control_c384 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_c384 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_c384 Checking test 021 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1116,14 +1116,14 @@ Checking test 021 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 574.576150 -The maximum resident set size (KB) = 889664 +The total amount of wall time = 580.567241 +The maximum resident set size (KB) = 909716 Test 021 control_c384 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_c384gdas -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/control_c384gdas +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_c384gdas +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_c384gdas Checking test 022 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1133,47 +1133,47 @@ Checking test 022 control_c384gdas results .... Comparing GFSFLX.GrbF06 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF06 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 502.808547 -The maximum resident set size (KB) = 1018852 + Comparing RESTART/20210322.060000.coupler.res .........OK + Comparing RESTART/20210322.060000.fv_core.res.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 513.394311 +The maximum resident set size (KB) = 1042680 Test 022 control_c384gdas PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/control_stochy +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_stochy Checking test 023 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1184,28 +1184,28 @@ Checking test 023 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 93.090478 -The maximum resident set size (KB) = 520904 +The total amount of wall time = 90.938998 +The maximum resident set size (KB) = 520788 Test 023 control_stochy PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/control_stochy_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_stochy_restart Checking test 024 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 47.752783 -The maximum resident set size (KB) = 291500 +The total amount of wall time = 48.848325 +The maximum resident set size (KB) = 291324 Test 024 control_stochy_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/control_lndp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_lndp Checking test 025 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1216,14 +1216,14 @@ Checking test 025 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 81.571634 -The maximum resident set size (KB) = 520068 +The total amount of wall time = 84.908402 +The maximum resident set size (KB) = 519324 Test 025 control_lndp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_iovr4 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/control_iovr4 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_iovr4 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_iovr4 Checking test 026 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1238,14 +1238,14 @@ Checking test 026 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 133.323145 -The maximum resident set size (KB) = 519732 +The total amount of wall time = 138.075287 +The maximum resident set size (KB) = 514440 Test 026 control_iovr4 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_iovr5 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/control_iovr5 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_iovr5 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_iovr5 Checking test 027 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1260,14 +1260,14 @@ Checking test 027 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 134.694274 -The maximum resident set size (KB) = 522732 +The total amount of wall time = 136.297314 +The maximum resident set size (KB) = 520644 Test 027 control_iovr5 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/control_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_p8 Checking test 028 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1281,47 +1281,47 @@ Checking test 028 control_p8 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 184.978841 -The maximum resident set size (KB) = 1488360 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 188.423322 +The maximum resident set size (KB) = 1486656 Test 028 control_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/control_p8_lndp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_p8_lndp Checking test 029 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1340,60 +1340,60 @@ Checking test 029 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 327.909835 -The maximum resident set size (KB) = 1487004 +The total amount of wall time = 331.484570 +The maximum resident set size (KB) = 1484272 Test 029 control_p8_lndp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/control_restart_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_restart_p8 Checking test 030 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 103.242602 -The maximum resident set size (KB) = 655684 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 101.385604 +The maximum resident set size (KB) = 657240 Test 030 control_restart_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/control_decomp_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_decomp_p8 Checking test 031 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1403,47 +1403,47 @@ Checking test 031 control_decomp_p8 results .... Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 188.354868 -The maximum resident set size (KB) = 1483364 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 189.461883 +The maximum resident set size (KB) = 1481952 Test 031 control_decomp_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/control_2threads_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_2threads_p8 Checking test 032 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1453,47 +1453,47 @@ Checking test 032 control_2threads_p8 results .... Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 166.400458 -The maximum resident set size (KB) = 1575864 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 166.692938 +The maximum resident set size (KB) = 1568508 Test 032 control_2threads_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8_rrtmgp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/control_p8_rrtmgp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8_rrtmgp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_p8_rrtmgp Checking test 033 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1507,47 +1507,47 @@ Checking test 033 control_p8_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 239.071287 -The maximum resident set size (KB) = 1547540 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 239.195356 +The maximum resident set size (KB) = 1548980 Test 033 control_p8_rrtmgp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/merra2_thompson -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/merra2_thompson +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/merra2_thompson +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/merra2_thompson Checking test 034 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1561,47 +1561,47 @@ Checking test 034 merra2_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 208.079566 -The maximum resident set size (KB) = 1492932 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 213.468377 +The maximum resident set size (KB) = 1496516 Test 034 merra2_thompson PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/regional_control +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/regional_control Checking test 035 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1612,28 +1612,28 @@ Checking test 035 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 294.043078 -The maximum resident set size (KB) = 653900 +The total amount of wall time = 292.994955 +The maximum resident set size (KB) = 655688 Test 035 regional_control PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/regional_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/regional_restart Checking test 036 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 169.884491 -The maximum resident set size (KB) = 650240 +The total amount of wall time = 159.675499 +The maximum resident set size (KB) = 652420 Test 036 regional_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/regional_decomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/regional_decomp Checking test 037 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1644,14 +1644,14 @@ Checking test 037 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 309.782341 -The maximum resident set size (KB) = 651896 +The total amount of wall time = 309.419803 +The maximum resident set size (KB) = 654992 Test 037 regional_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/regional_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/regional_2threads Checking test 038 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1662,14 +1662,14 @@ Checking test 038 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 186.077941 -The maximum resident set size (KB) = 692192 +The total amount of wall time = 187.153408 +The maximum resident set size (KB) = 699912 Test 038 regional_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_noquilt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/regional_noquilt +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_noquilt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/regional_noquilt Checking test 039 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1677,28 +1677,28 @@ Checking test 039 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 319.783734 -The maximum resident set size (KB) = 643092 +The total amount of wall time = 318.328456 +The maximum resident set size (KB) = 644840 Test 039 regional_noquilt PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/regional_netcdf_parallel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/regional_netcdf_parallel Checking test 040 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK -The total amount of wall time = 289.342034 -The maximum resident set size (KB) = 640120 +The total amount of wall time = 289.296839 +The maximum resident set size (KB) = 651988 Test 040 regional_netcdf_parallel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/regional_2dwrtdecomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/regional_2dwrtdecomp Checking test 041 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1709,14 +1709,14 @@ Checking test 041 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 294.829539 -The maximum resident set size (KB) = 654308 +The total amount of wall time = 294.026329 +The maximum resident set size (KB) = 656212 Test 041 regional_2dwrtdecomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/fv3_regional_wofs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/regional_wofs +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/fv3_regional_wofs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/regional_wofs Checking test 042 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1727,14 +1727,14 @@ Checking test 042 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 358.587259 -The maximum resident set size (KB) = 337740 +The total amount of wall time = 365.235760 +The maximum resident set size (KB) = 342208 Test 042 regional_wofs PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/rap_control +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rap_control Checking test 043 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1748,47 +1748,47 @@ Checking test 043 rap_control results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 416.926478 -The maximum resident set size (KB) = 895404 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 420.484575 +The maximum resident set size (KB) = 896368 Test 043 rap_control PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/regional_spp_sppt_shum_skeb +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_spp_sppt_shum_skeb +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/regional_spp_sppt_shum_skeb Checking test 044 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -1799,14 +1799,14 @@ Checking test 044 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 290.409577 -The maximum resident set size (KB) = 985724 +The total amount of wall time = 288.959342 +The maximum resident set size (KB) = 986960 Test 044 regional_spp_sppt_shum_skeb PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/rap_decomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rap_decomp Checking test 045 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1820,47 +1820,47 @@ Checking test 045 rap_decomp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 434.621290 -The maximum resident set size (KB) = 894280 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 435.383610 +The maximum resident set size (KB) = 892212 Test 045 rap_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/rap_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rap_2threads Checking test 046 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1874,93 +1874,93 @@ Checking test 046 rap_2threads results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 393.273897 -The maximum resident set size (KB) = 965684 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 395.051439 +The maximum resident set size (KB) = 965452 Test 046 rap_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/rap_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rap_restart Checking test 047 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 212.459663 -The maximum resident set size (KB) = 642848 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 214.437983 +The maximum resident set size (KB) = 645516 Test 047 rap_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/rap_sfcdiff +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rap_sfcdiff Checking test 048 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1974,47 +1974,47 @@ Checking test 048 rap_sfcdiff results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 419.323065 -The maximum resident set size (KB) = 894808 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 419.217717 +The maximum resident set size (KB) = 892588 Test 048 rap_sfcdiff PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/rap_sfcdiff_decomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rap_sfcdiff_decomp Checking test 049 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2028,93 +2028,93 @@ Checking test 049 rap_sfcdiff_decomp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 433.675397 -The maximum resident set size (KB) = 893552 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 435.007269 +The maximum resident set size (KB) = 892908 Test 049 rap_sfcdiff_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/rap_sfcdiff_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rap_sfcdiff_restart Checking test 050 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 310.251008 -The maximum resident set size (KB) = 639712 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 311.096038 +The maximum resident set size (KB) = 642616 Test 050 rap_sfcdiff_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/hrrr_control +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/hrrr_control Checking test 051 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2128,47 +2128,47 @@ Checking test 051 hrrr_control results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 402.097073 -The maximum resident set size (KB) = 892496 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 404.180407 +The maximum resident set size (KB) = 893420 Test 051 hrrr_control PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/hrrr_control_decomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/hrrr_control_decomp Checking test 052 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2182,47 +2182,47 @@ Checking test 052 hrrr_control_decomp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 415.887977 -The maximum resident set size (KB) = 890176 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 418.260633 +The maximum resident set size (KB) = 887852 Test 052 hrrr_control_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/hrrr_control_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/hrrr_control_2threads Checking test 053 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2236,93 +2236,93 @@ Checking test 053 hrrr_control_2threads results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 374.026135 -The maximum resident set size (KB) = 953596 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 372.350461 +The maximum resident set size (KB) = 959248 Test 053 hrrr_control_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/hrrr_control_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/hrrr_control_restart Checking test 054 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 298.232551 -The maximum resident set size (KB) = 638136 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 299.641003 +The maximum resident set size (KB) = 642844 Test 054 hrrr_control_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_v1beta -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/rrfs_v1beta +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_v1beta +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rrfs_v1beta Checking test 055 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2336,47 +2336,47 @@ Checking test 055 rrfs_v1beta results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 412.577693 -The maximum resident set size (KB) = 885216 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 411.737464 +The maximum resident set size (KB) = 890292 Test 055 rrfs_v1beta PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_v1nssl -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/rrfs_v1nssl +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_v1nssl +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rrfs_v1nssl Checking test 056 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2391,14 +2391,14 @@ Checking test 056 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 477.036212 -The maximum resident set size (KB) = 574656 +The total amount of wall time = 475.758958 +The maximum resident set size (KB) = 576576 Test 056 rrfs_v1nssl PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/rrfs_v1nssl_nohailnoccn +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rrfs_v1nssl_nohailnoccn Checking test 057 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2413,14 +2413,14 @@ Checking test 057 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 462.915055 -The maximum resident set size (KB) = 568692 +The total amount of wall time = 464.796584 +The maximum resident set size (KB) = 567084 Test 057 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/rrfs_conus13km_hrrr_warm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rrfs_conus13km_hrrr_warm Checking test 058 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2429,14 +2429,14 @@ Checking test 058 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 123.663432 -The maximum resident set size (KB) = 767928 +The total amount of wall time = 117.457498 +The maximum resident set size (KB) = 759316 Test 058 rrfs_conus13km_hrrr_warm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rrfs_smoke_conus13km_hrrr_warm Checking test 059 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2445,14 +2445,14 @@ Checking test 059 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 135.935967 -The maximum resident set size (KB) = 774584 +The total amount of wall time = 129.403030 +The maximum resident set size (KB) = 777960 Test 059 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/rrfs_conus13km_radar_tten_warm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rrfs_conus13km_radar_tten_warm Checking test 060 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2461,14 +2461,14 @@ Checking test 060 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 124.045803 -The maximum resident set size (KB) = 762076 +The total amount of wall time = 116.553249 +The maximum resident set size (KB) = 767732 Test 060 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/rrfs_conus13km_hrrr_warm_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rrfs_conus13km_hrrr_warm_2threads Checking test 061 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2477,14 +2477,14 @@ Checking test 061 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 90.192565 -The maximum resident set size (KB) = 767316 +The total amount of wall time = 85.876096 +The maximum resident set size (KB) = 766924 Test 061 rrfs_conus13km_hrrr_warm_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/rrfs_conus13km_radar_tten_warm_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rrfs_conus13km_radar_tten_warm_2threads Checking test 062 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2493,14 +2493,14 @@ Checking test 062 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 89.549925 -The maximum resident set size (KB) = 770304 +The total amount of wall time = 87.324215 +The maximum resident set size (KB) = 762824 Test 062 rrfs_conus13km_radar_tten_warm_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_csawmg -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/control_csawmg +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_csawmg +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_csawmg Checking test 063 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2511,14 +2511,14 @@ Checking test 063 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 348.168334 -The maximum resident set size (KB) = 589172 +The total amount of wall time = 350.054557 +The maximum resident set size (KB) = 587480 Test 063 control_csawmg PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_csawmgt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/control_csawmgt +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_csawmgt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_csawmgt Checking test 064 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2529,14 +2529,14 @@ Checking test 064 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 347.494979 -The maximum resident set size (KB) = 586988 +The total amount of wall time = 349.327890 +The maximum resident set size (KB) = 586884 Test 064 control_csawmgt PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_ras -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/control_ras +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_ras +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_ras Checking test 065 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2547,54 +2547,54 @@ Checking test 065 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 179.510340 -The maximum resident set size (KB) = 551204 +The total amount of wall time = 181.673363 +The maximum resident set size (KB) = 551104 Test 065 control_ras PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_wam -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/control_wam +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_wam +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_wam Checking test 066 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 117.525417 -The maximum resident set size (KB) = 264940 +The total amount of wall time = 117.958047 +The maximum resident set size (KB) = 273516 Test 066 control_wam PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/rrfs_conus13km_hrrr_warm_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rrfs_conus13km_hrrr_warm_debug Checking test 067 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 777.172650 -The maximum resident set size (KB) = 795664 +The total amount of wall time = 784.787489 +The maximum resident set size (KB) = 796852 Test 067 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/rrfs_conus13km_radar_tten_warm_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_radar_tten_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rrfs_conus13km_radar_tten_warm_debug Checking test 068 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 780.906247 -The maximum resident set size (KB) = 796360 +The total amount of wall time = 783.028696 +The maximum resident set size (KB) = 798032 Test 068 rrfs_conus13km_radar_tten_warm_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_CubedSphereGrid_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/control_CubedSphereGrid_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_CubedSphereGrid_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_CubedSphereGrid_debug Checking test 069 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2621,334 +2621,334 @@ Checking test 069 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 169.565262 -The maximum resident set size (KB) = 679256 +The total amount of wall time = 170.970093 +The maximum resident set size (KB) = 680644 Test 069 control_CubedSphereGrid_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/control_wrtGauss_netcdf_parallel_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_wrtGauss_netcdf_parallel_debug Checking test 070 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 159.033504 -The maximum resident set size (KB) = 681140 +The total amount of wall time = 161.375564 +The maximum resident set size (KB) = 679464 Test 070 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_stochy_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/control_stochy_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_stochy_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_stochy_debug Checking test 071 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 178.682745 -The maximum resident set size (KB) = 687280 +The total amount of wall time = 182.391657 +The maximum resident set size (KB) = 686120 Test 071 control_stochy_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/control_lndp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_lndp_debug Checking test 072 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 161.469362 -The maximum resident set size (KB) = 686592 +The total amount of wall time = 164.373352 +The maximum resident set size (KB) = 684384 Test 072 control_lndp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_csawmg_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/control_csawmg_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_csawmg_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_csawmg_debug Checking test 073 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 259.144734 -The maximum resident set size (KB) = 721712 +The total amount of wall time = 262.027226 +The maximum resident set size (KB) = 724676 Test 073 control_csawmg_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_csawmgt_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/control_csawmgt_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_csawmgt_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_csawmgt_debug Checking test 074 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 252.918945 -The maximum resident set size (KB) = 723520 +The total amount of wall time = 255.726316 +The maximum resident set size (KB) = 723156 Test 074 control_csawmgt_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_ras_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/control_ras_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_ras_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_ras_debug Checking test 075 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 162.710417 -The maximum resident set size (KB) = 692300 +The total amount of wall time = 167.090916 +The maximum resident set size (KB) = 690700 Test 075 control_ras_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/control_diag_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_diag_debug Checking test 076 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 165.257067 -The maximum resident set size (KB) = 740140 +The total amount of wall time = 169.774202 +The maximum resident set size (KB) = 739948 Test 076 control_diag_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_debug_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/control_debug_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_debug_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_debug_p8 Checking test 077 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 192.745851 -The maximum resident set size (KB) = 1505132 +The total amount of wall time = 191.206275 +The maximum resident set size (KB) = 1510292 Test 077 control_debug_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/regional_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/regional_debug Checking test 078 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1049.183146 -The maximum resident set size (KB) = 669496 +The total amount of wall time = 1053.375686 +The maximum resident set size (KB) = 678144 Test 078 regional_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/rap_control_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rap_control_debug Checking test 079 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.982885 -The maximum resident set size (KB) = 1059820 +The total amount of wall time = 302.571799 +The maximum resident set size (KB) = 1057536 Test 079 rap_control_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/hrrr_control_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/hrrr_control_debug Checking test 080 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 293.054967 -The maximum resident set size (KB) = 1059288 +The total amount of wall time = 294.921620 +The maximum resident set size (KB) = 1051880 Test 080 hrrr_control_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/rap_unified_drag_suite_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rap_unified_drag_suite_debug Checking test 081 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.704547 -The maximum resident set size (KB) = 1056740 +The total amount of wall time = 301.486376 +The maximum resident set size (KB) = 1056444 Test 081 rap_unified_drag_suite_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/rap_diag_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rap_diag_debug Checking test 082 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 311.310782 -The maximum resident set size (KB) = 1141044 +The total amount of wall time = 314.629848 +The maximum resident set size (KB) = 1141376 Test 082 rap_diag_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/rap_cires_ugwp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rap_cires_ugwp_debug Checking test 083 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 307.378995 -The maximum resident set size (KB) = 1058148 +The total amount of wall time = 309.613853 +The maximum resident set size (KB) = 1055852 Test 083 rap_cires_ugwp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/rap_unified_ugwp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rap_unified_ugwp_debug Checking test 084 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 306.461351 -The maximum resident set size (KB) = 1060540 +The total amount of wall time = 308.185712 +The maximum resident set size (KB) = 1060732 Test 084 rap_unified_ugwp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/rap_lndp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rap_lndp_debug Checking test 085 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 301.207374 -The maximum resident set size (KB) = 1061956 +The total amount of wall time = 304.715454 +The maximum resident set size (KB) = 1057248 Test 085 rap_lndp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_flake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/rap_flake_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_flake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rap_flake_debug Checking test 086 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 299.995163 -The maximum resident set size (KB) = 1060484 +The total amount of wall time = 303.008234 +The maximum resident set size (KB) = 1057344 Test 086 rap_flake_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_progcld_thompson_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/rap_progcld_thompson_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_progcld_thompson_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rap_progcld_thompson_debug Checking test 087 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 303.382475 -The maximum resident set size (KB) = 1055040 +The total amount of wall time = 303.368129 +The maximum resident set size (KB) = 1056288 Test 087 rap_progcld_thompson_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_noah_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/rap_noah_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_noah_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rap_noah_debug Checking test 088 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 296.527887 -The maximum resident set size (KB) = 1055864 +The total amount of wall time = 297.087220 +The maximum resident set size (KB) = 1056292 Test 088 rap_noah_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_sfcdiff_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/rap_sfcdiff_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_sfcdiff_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rap_sfcdiff_debug Checking test 089 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 299.851773 -The maximum resident set size (KB) = 1059940 +The total amount of wall time = 301.636650 +The maximum resident set size (KB) = 1059312 Test 089 rap_sfcdiff_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rap_noah_sfcdiff_cires_ugwp_debug Checking test 090 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 491.717104 -The maximum resident set size (KB) = 1054436 +The total amount of wall time = 494.269892 +The maximum resident set size (KB) = 1054496 Test 090 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_v1beta_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/rrfs_v1beta_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_v1beta_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rrfs_v1beta_debug Checking test 091 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 294.343621 -The maximum resident set size (KB) = 1053888 +The total amount of wall time = 298.933987 +The maximum resident set size (KB) = 1055020 Test 091 rrfs_v1beta_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_wam_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/control_wam_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_wam_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_wam_debug Checking test 092 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 296.325113 -The maximum resident set size (KB) = 296604 +The total amount of wall time = 296.890737 +The maximum resident set size (KB) = 305324 Test 092 control_wam_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 093 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2959,14 +2959,14 @@ Checking test 093 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 276.717204 -The maximum resident set size (KB) = 871716 +The total amount of wall time = 269.696854 +The maximum resident set size (KB) = 879024 Test 093 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/rap_control_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rap_control_dyn32_phy32 Checking test 094 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2980,47 +2980,47 @@ Checking test 094 rap_control_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 346.236199 -The maximum resident set size (KB) = 772136 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 344.474135 +The maximum resident set size (KB) = 778208 Test 094 rap_control_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/hrrr_control_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/hrrr_control_dyn32_phy32 Checking test 095 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3034,47 +3034,47 @@ Checking test 095 hrrr_control_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 184.175263 -The maximum resident set size (KB) = 776320 + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 184.630580 +The maximum resident set size (KB) = 773920 Test 095 hrrr_control_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/rap_2threads_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rap_2threads_dyn32_phy32 Checking test 096 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3088,47 +3088,47 @@ Checking test 096 rap_2threads_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 323.881604 -The maximum resident set size (KB) = 825164 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 325.616808 +The maximum resident set size (KB) = 830220 Test 096 rap_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/hrrr_control_2threads_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/hrrr_control_2threads_dyn32_phy32 Checking test 097 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3142,47 +3142,47 @@ Checking test 097 hrrr_control_2threads_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 172.918979 -The maximum resident set size (KB) = 831992 + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 175.138740 +The maximum resident set size (KB) = 831380 Test 097 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/hrrr_control_decomp_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/hrrr_control_decomp_dyn32_phy32 Checking test 098 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3196,139 +3196,139 @@ Checking test 098 hrrr_control_decomp_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 190.163776 -The maximum resident set size (KB) = 773668 + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 191.429567 +The maximum resident set size (KB) = 771384 Test 098 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/rap_restart_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rap_restart_dyn32_phy32 Checking test 099 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 258.674730 -The maximum resident set size (KB) = 613752 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 258.024909 +The maximum resident set size (KB) = 612140 Test 099 rap_restart_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/hrrr_control_restart_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/hrrr_control_restart_dyn32_phy32 Checking test 100 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 93.521497 -The maximum resident set size (KB) = 606884 + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 98.404595 +The maximum resident set size (KB) = 608280 Test 100 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/rap_control_dyn64_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rap_control_dyn64_phy32 Checking test 101 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3342,114 +3342,114 @@ Checking test 101 rap_control_dyn64_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 235.859769 -The maximum resident set size (KB) = 797144 + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 233.106715 +The maximum resident set size (KB) = 798256 Test 101 rap_control_dyn64_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/rap_control_debug_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rap_control_debug_dyn32_phy32 Checking test 102 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 295.889846 -The maximum resident set size (KB) = 945560 +The total amount of wall time = 295.229051 +The maximum resident set size (KB) = 941620 Test 102 rap_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/hrrr_control_debug_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/hrrr_control_debug_dyn32_phy32 Checking test 103 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 292.119515 -The maximum resident set size (KB) = 943496 +The total amount of wall time = 291.748935 +The maximum resident set size (KB) = 940536 Test 103 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/rap_control_dyn64_phy32_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rap_control_dyn64_phy32_debug Checking test 104 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.401531 -The maximum resident set size (KB) = 961152 +The total amount of wall time = 299.912682 +The maximum resident set size (KB) = 961236 Test 104 rap_control_dyn64_phy32_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/hafs_regional_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/hafs_regional_atm Checking test 105 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 266.837800 -The maximum resident set size (KB) = 797768 +The total amount of wall time = 268.830181 +The maximum resident set size (KB) = 824360 Test 105 hafs_regional_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/hafs_regional_atm_thompson_gfdlsf +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/hafs_regional_atm_thompson_gfdlsf Checking test 106 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 375.777451 -The maximum resident set size (KB) = 1163368 +The total amount of wall time = 356.697929 +The maximum resident set size (KB) = 1181624 Test 106 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/hafs_regional_atm_ocn +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/hafs_regional_atm_ocn Checking test 107 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3458,14 +3458,14 @@ Checking test 107 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 406.939872 -The maximum resident set size (KB) = 835028 +The total amount of wall time = 402.005182 +The maximum resident set size (KB) = 853572 Test 107 hafs_regional_atm_ocn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_atm_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/hafs_regional_atm_wav +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_atm_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/hafs_regional_atm_wav Checking test 108 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3474,14 +3474,14 @@ Checking test 108 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 703.763721 -The maximum resident set size (KB) = 870712 +The total amount of wall time = 721.826160 +The maximum resident set size (KB) = 884744 Test 108 hafs_regional_atm_wav PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/hafs_regional_atm_ocn_wav +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/hafs_regional_atm_ocn_wav Checking test 109 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3492,28 +3492,28 @@ Checking test 109 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 903.162391 -The maximum resident set size (KB) = 892388 +The total amount of wall time = 902.791038 +The maximum resident set size (KB) = 910456 Test 109 hafs_regional_atm_ocn_wav PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/hafs_regional_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/hafs_regional_1nest_atm Checking test 110 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 347.981427 -The maximum resident set size (KB) = 382912 +The total amount of wall time = 337.094844 +The maximum resident set size (KB) = 392152 Test 110 hafs_regional_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/hafs_regional_telescopic_2nests_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/hafs_regional_telescopic_2nests_atm Checking test 111 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3522,28 +3522,28 @@ Checking test 111 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 418.317280 -The maximum resident set size (KB) = 405592 +The total amount of wall time = 410.146103 +The maximum resident set size (KB) = 414052 Test 111 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_global_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/hafs_global_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_global_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/hafs_global_1nest_atm Checking test 112 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 203.976282 -The maximum resident set size (KB) = 267336 +The total amount of wall time = 169.356285 +The maximum resident set size (KB) = 267572 Test 112 hafs_global_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_global_multiple_4nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/hafs_global_multiple_4nests_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_global_multiple_4nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/hafs_global_multiple_4nests_atm Checking test 113 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3561,14 +3561,14 @@ Checking test 113 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -The total amount of wall time = 511.022524 -The maximum resident set size (KB) = 337504 +The total amount of wall time = 497.540022 +The maximum resident set size (KB) = 340628 Test 113 hafs_global_multiple_4nests_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/hafs_regional_specified_moving_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/hafs_regional_specified_moving_1nest_atm Checking test 114 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3577,28 +3577,28 @@ Checking test 114 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 233.592389 -The maximum resident set size (KB) = 401456 +The total amount of wall time = 222.842399 +The maximum resident set size (KB) = 486720 Test 114 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/hafs_regional_storm_following_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/hafs_regional_storm_following_1nest_atm Checking test 115 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 212.971884 -The maximum resident set size (KB) = 406428 +The total amount of wall time = 203.401433 +The maximum resident set size (KB) = 402684 Test 115 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/hafs_regional_storm_following_1nest_atm_ocn Checking test 116 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3607,42 +3607,42 @@ Checking test 116 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 280.822777 -The maximum resident set size (KB) = 446160 +The total amount of wall time = 257.616822 +The maximum resident set size (KB) = 451860 Test 116 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/hafs_global_storm_following_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_global_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/hafs_global_storm_following_1nest_atm Checking test 117 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 110.355288 -The maximum resident set size (KB) = 286716 +The total amount of wall time = 81.650776 +The maximum resident set size (KB) = 404536 Test 117 hafs_global_storm_following_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 118 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 805.216188 -The maximum resident set size (KB) = 480772 +The total amount of wall time = 813.011787 +The maximum resident set size (KB) = 485600 Test 118 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 119 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3653,14 +3653,14 @@ Checking test 119 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -The total amount of wall time = 543.512812 -The maximum resident set size (KB) = 520172 +The total amount of wall time = 543.125107 +The maximum resident set size (KB) = 525876 Test 119 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8_atmlnd_sbs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/control_p8_atmlnd_sbs +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8_atmlnd_sbs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_p8_atmlnd_sbs Checking test 120 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3698,38 +3698,38 @@ Checking test 120 control_p8_atmlnd_sbs results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK Comparing ufs.cpld.cpl.hi.lnd.2021-03-22-43200.nc .........OK Comparing ufs.cpld.cpl.hi.lnd.2021-03-23-21600.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile1.nc .........OK @@ -3745,14 +3745,14 @@ Checking test 120 control_p8_atmlnd_sbs 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 = 248.703818 -The maximum resident set size (KB) = 1543608 +The total amount of wall time = 239.702662 +The maximum resident set size (KB) = 1541948 Test 120 control_p8_atmlnd_sbs PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/atmaero_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/atmaero_control_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/atmaero_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/atmaero_control_p8 Checking test 121 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3763,47 +3763,47 @@ Checking test 121 atmaero_control_p8 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 254.405048 -The maximum resident set size (KB) = 2818744 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 251.223645 +The maximum resident set size (KB) = 2824076 Test 121 atmaero_control_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/atmaero_control_p8_rad -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/atmaero_control_p8_rad +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/atmaero_control_p8_rad +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/atmaero_control_p8_rad Checking test 122 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3814,47 +3814,47 @@ Checking test 122 atmaero_control_p8_rad results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 283.669853 -The maximum resident set size (KB) = 2880404 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 284.422462 +The maximum resident set size (KB) = 2879940 Test 122 atmaero_control_p8_rad PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/atmaero_control_p8_rad_micro +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/atmaero_control_p8_rad_micro +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/atmaero_control_p8_rad_micro Checking test 123 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3865,47 +3865,47 @@ Checking test 123 atmaero_control_p8_rad_micro results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 293.995496 -The maximum resident set size (KB) = 2889664 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 289.534213 +The maximum resident set size (KB) = 2892624 Test 123 atmaero_control_p8_rad_micro PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_atmaq -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/regional_atmaq +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_atmaq +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/regional_atmaq Checking test 124 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -3913,41 +3913,41 @@ Checking test 124 regional_atmaq results .... Comparing atmf000.nc .........OK Comparing atmf003.nc .........OK Comparing atmf006.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/phy_data.nc .........OK - Comparing RESTART/sfc_data.nc .........OK + Comparing RESTART/20190801.180000.coupler.res .........OK + Comparing RESTART/20190801.180000.fv_core.res.nc .........OK + Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.phy_data.nc .........OK + Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 722.022374 -The maximum resident set size (KB) = 1385936 +The total amount of wall time = 678.502724 +The maximum resident set size (KB) = 1409248 Test 124 regional_atmaq PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_atmaq_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_97050/regional_atmaq_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_atmaq_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/regional_atmaq_debug Checking test 125 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/phy_data.nc .........OK - Comparing RESTART/sfc_data.nc .........OK + Comparing RESTART/20190801.130000.coupler.res .........OK + Comparing RESTART/20190801.130000.fv_core.res.nc .........OK + Comparing RESTART/20190801.130000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20190801.130000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20190801.130000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20190801.130000.phy_data.nc .........OK + Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1455.291399 -The maximum resident set size (KB) = 1415952 +The total amount of wall time = 1435.810235 +The maximum resident set size (KB) = 1439296 Test 125 regional_atmaq_debug PASS REGRESSION TEST WAS SUCCESSFUL -Tue Feb 21 18:28:28 UTC 2023 -Elapsed time: 01h:12m:22s. Have a nice day! +Fri Feb 24 16:14:54 UTC 2023 +Elapsed time: 01h:21m:11s. Have a nice day! diff --git a/tests/default_vars.sh b/tests/default_vars.sh index 34394ec246f..29a3023bd9b 100755 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -854,7 +854,6 @@ export AOD_FRQ=060000 # checkpoint restarts export RESTART_FILE_PREFIX='' -export RESTART_FILE_SUFFIX_HRS='' export RESTART_FILE_SUFFIX_SECS='' export RT35D='' } diff --git a/tests/fv3_conf/cpld_control_run.IN b/tests/fv3_conf/cpld_control_run.IN index c0f3d930081..422b3e12953 100644 --- a/tests/fv3_conf/cpld_control_run.IN +++ b/tests/fv3_conf/cpld_control_run.IN @@ -104,12 +104,12 @@ else #if not mx025, then mom6 restart is a single file if [[ $OCNRES == 025 ]]; then - cp ../${DEP_RUN}${SUFFIX}/RESTART/MOM.res.${RESTART_FILE_SUFFIX_HRS}-00-00.nc ./INPUT/MOM.res.nc - cp ../${DEP_RUN}${SUFFIX}/RESTART/MOM.res.${RESTART_FILE_SUFFIX_HRS}-00-00_1.nc ./INPUT/MOM.res_1.nc - cp ../${DEP_RUN}${SUFFIX}/RESTART/MOM.res.${RESTART_FILE_SUFFIX_HRS}-00-00_2.nc ./INPUT/MOM.res_2.nc - cp ../${DEP_RUN}${SUFFIX}/RESTART/MOM.res.${RESTART_FILE_SUFFIX_HRS}-00-00_3.nc ./INPUT/MOM.res_3.nc + cp ../${DEP_RUN}${SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.MOM.res.nc ./INPUT/MOM.res.nc + cp ../${DEP_RUN}${SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.MOM.res_1.nc ./INPUT/MOM.res_1.nc + cp ../${DEP_RUN}${SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.MOM.res_2.nc ./INPUT/MOM.res_2.nc + cp ../${DEP_RUN}${SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.MOM.res_3.nc ./INPUT/MOM.res_3.nc else - cp ../${DEP_RUN}${SUFFIX}/RESTART/MOM.res.${RESTART_FILE_SUFFIX_HRS}-00-00.nc ./INPUT/MOM.res.nc + cp ../${DEP_RUN}${SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.MOM.res.nc ./INPUT/MOM.res.nc fi # CMEPS restart and pointer files diff --git a/tests/fv3_conf/cpld_datm_cdeps.IN b/tests/fv3_conf/cpld_datm_cdeps.IN index 027cb02034c..0027c40ffa6 100644 --- a/tests/fv3_conf/cpld_datm_cdeps.IN +++ b/tests/fv3_conf/cpld_datm_cdeps.IN @@ -28,7 +28,7 @@ if [ $WARM_START = .false. ]; then fi else # warm start - cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/MOM.res.2011-10-01-12*.nc ./INPUT/MOM.res.nc + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/20111001.120000.MOM.res.nc ./INPUT/MOM.res.nc # CMEPS restart and pointer files RFILE="DATM_${DATM_SRC}.cpl.r.2011-10-01-43200.nc" diff --git a/tests/opnReqTests/dbg.sh b/tests/opnReqTests/dbg.sh index f4ab6f5859c..f270d8961eb 100644 --- a/tests/opnReqTests/dbg.sh +++ b/tests/opnReqTests/dbg.sh @@ -29,6 +29,7 @@ elif [[ $application == 'cpld' ]]; then LIST_FILES=$(echo -n $LIST_FILES | sed -E "s/sfcf024/sfcf003/g" \ | sed -E "s/atmf024/atmf003/g" \ | sed -E "s/2021-03-23-21600/2021-03-22-32400/g" \ + | sed -E "s/20210323\.060000/20210322\.090000/g" \ | sed -E "s/sfcf021\.tile[1-6]\.nc ?//g" \ | sed -E "s/atmf021\.tile[1-6]\.nc ?//g" \ | sed -E "s/(gocart\.inst_aod\.202103)23_0600z\.nc4/\122_0900z\.nc4/g" \ diff --git a/tests/opnReqTests/rst.sh b/tests/opnReqTests/rst.sh index 14a0c1746ff..e01a15aac73 100644 --- a/tests/opnReqTests/rst.sh +++ b/tests/opnReqTests/rst.sh @@ -31,7 +31,6 @@ elif [[ $application == 'cpld' ]]; then MOM6_RESTART_SETTING="r" RESTART_N=$(( FHMAX - FHROT )) RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( SHOUR + FHROT )))0000" - RESTART_FILE_SUFFIX_HRS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%02d" $(( SHOUR + FHROT )))" RESTART_FILE_SUFFIX_SECS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%05d" $(( (SHOUR + FHROT)* 3600 )))" RUN_BEG="${SYEAR}${SMONTH}${SDAY} $(printf "%02d" $(( ${FHROT}+${SHOUR} )))0000" fi @@ -67,7 +66,6 @@ export RUNTYPE=${RUNTYPE:-} export USE_RESTART_TIME=${USE_RESTART_TIME:-} export MOM6_RESTART_SETTING=${MOM6_RESTART_SETTING:-} export RESTART_N=${RESTART_N:-} -export RESTART_FILE_SUFFIX_HRS=${RESTART_FILE_SUFFIX_HRS:-} export RESTART_FILE_SUFFIX_SECS=${RESTART_FILE_SUFFIX_SECS:-} export RUN_BEG="${RUN_BEG:-}" export OUT_BEG="${RUN_BEG:-}" diff --git a/tests/parm/MOM_input_template_025 b/tests/parm/MOM_input_template_025 index b88c181456b..7057ce2f58c 100644 --- a/tests/parm/MOM_input_template_025 +++ b/tests/parm/MOM_input_template_025 @@ -201,7 +201,6 @@ DTFREEZE_DP = -7.75E-08 ! [deg C Pa-1] default = 0.0 PARALLEL_RESTARTFILES = True ! [Boolean] default = False ! If true, each processor writes its own restart file, otherwise a single ! restart file is generated -STORE_CORIOLIS_ACCEL = False ! === module MOM_tracer_flow_control === USE_IDEAL_AGE_TRACER = False ! [Boolean] default = False @@ -406,7 +405,7 @@ GILL_EQUATORIAL_LD = True ! [Boolean] default = False ! radius, otherwise, if false, use Pedlosky's definition. These definitions ! differ by a factor of 2 in front of the beta term in the denominator. Gill's ! is the more appropriate definition. -INTERNAL_WAVE_SPEED_BETTER_EST = False ! [Boolean] default = True +INTERNAL_WAVE_SPEED_BETTER_EST = False ! [Boolean] default = True ! If true, use a more robust estimate of the first mode wave speed as the ! starting point for iterations. @@ -734,7 +733,7 @@ NSTAR = 0.06 ! [nondim] default = 0.2 ! The portion of the buoyant potential energy imparted by surface fluxes that is ! available to drive entrainment at the base of mixed layer when that energy is ! positive. -EPBL_MLD_BISECTION = True ! [Boolean] default = False +EPBL_MLD_BISECTION = True ! [Boolean] default = False ! If true, use bisection with the iterative determination of the self-consistent ! mixed layer depth. Otherwise use the false position after a maximum and ! minimum bound have been evaluated and the returned value or bisection before @@ -871,8 +870,8 @@ LIQUID_RUNOFF_FROM_DATA = @[MOM6_RIVER_RUNOFF] ! [Boolean] default = False ! the data_table using the component name 'OCN'. ! === module ocean_stochastics === DO_SPPT = @[DO_OCN_SPPT] ! [Boolean] default = False - ! If true perturb the diabatic tendencies in MOM_diabadic_driver -PERT_EPBL = @[PERT_EPBL] ! [Boolean] default = False + ! If true perturb the diabatic tendencies in MOM_diabadic_driver +PERT_EPBL = @[PERT_EPBL] ! [Boolean] default = False ! If true perturb the KE dissipation and destruction in MOM_energetic_PBL ! === module MOM_restart === RESTART_CHECKSUMS_REQUIRED = False diff --git a/tests/parm/MOM_input_template_050 b/tests/parm/MOM_input_template_050 index 5a2d1459adf..2853c1de894 100644 --- a/tests/parm/MOM_input_template_050 +++ b/tests/parm/MOM_input_template_050 @@ -199,7 +199,6 @@ DTFREEZE_DP = -7.75E-08 ! [deg C Pa-1] default = 0.0 PARALLEL_RESTARTFILES = True ! [Boolean] default = False ! If true, each processor writes its own restart file, otherwise a single ! restart file is generated -STORE_CORIOLIS_ACCEL = False ! === module MOM_tracer_flow_control === USE_IDEAL_AGE_TRACER = False ! [Boolean] default = False @@ -419,7 +418,7 @@ GILL_EQUATORIAL_LD = True ! [Boolean] default = False ! radius, otherwise, if false, use Pedlosky's definition. These definitions ! differ by a factor of 2 in front of the beta term in the denominator. Gill's ! is the more appropriate definition. -INTERNAL_WAVE_SPEED_BETTER_EST = False ! [Boolean] default = True +INTERNAL_WAVE_SPEED_BETTER_EST = False ! [Boolean] default = True ! If true, use a more robust estimate of the first mode wave speed as the ! starting point for iterations. @@ -760,7 +759,7 @@ MSTAR2_COEF1 = 0.29 ! [nondim] default = 0.3 MSTAR2_COEF2 = 0.152 ! [nondim] default = 0.085 ! Coefficient in computing mstar when only rotation limits the total mixing ! (used if EPBL_MSTAR_SCHEME = OM4) -EPBL_MLD_BISECTION = True ! [Boolean] default = False +EPBL_MLD_BISECTION = True ! [Boolean] default = False ! If true, use bisection with the iterative determination of the self-consistent ! mixed layer depth. Otherwise use the false position after a maximum and ! minimum bound have been evaluated and the returned value or bisection before @@ -916,8 +915,8 @@ LIQUID_RUNOFF_FROM_DATA = @[MOM6_RIVER_RUNOFF] ! [Boolean] default = False ! the data_table using the component name 'OCN'. ! === module ocean_stochastics === DO_SPPT = @[DO_OCN_SPPT] ! [Boolean] default = False - ! If true perturb the diabatic tendencies in MOM_diabadic_driver -PERT_EPBL = @[PERT_EPBL] ! [Boolean] default = False + ! If true perturb the diabatic tendencies in MOM_diabadic_driver +PERT_EPBL = @[PERT_EPBL] ! [Boolean] default = False ! If true perturb the KE dissipation and destruction in MOM_energetic_PBL ! === module MOM_restart === diff --git a/tests/parm/MOM_input_template_100 b/tests/parm/MOM_input_template_100 index d3733dcde40..4da3e10fa2f 100644 --- a/tests/parm/MOM_input_template_100 +++ b/tests/parm/MOM_input_template_100 @@ -210,7 +210,6 @@ TFREEZE_FORM = "MILLERO_78" ! default = "LINEAR" PARALLEL_RESTARTFILES = True ! [Boolean] default = False ! If true, each processor writes its own restart file, otherwise a single ! restart file is generated -STORE_CORIOLIS_ACCEL = False ! === module MOM_tracer_flow_control === USE_IDEAL_AGE_TRACER = False ! [Boolean] default = False @@ -430,7 +429,7 @@ VISC_RES_FN_POWER = 2 ! [nondim] default = 100 ! used, although even integers are more efficient to calculate. Setting this ! greater than 100 results in a step-function being used. This function affects ! lateral viscosity, Kh, and not KhTh. -INTERNAL_WAVE_SPEED_BETTER_EST = False ! [Boolean] default = True +INTERNAL_WAVE_SPEED_BETTER_EST = False ! [Boolean] default = True ! If true, use a more robust estimate of the first mode wave speed as the ! starting point for iterations. diff --git a/tests/parm/MOM_input_template_500 b/tests/parm/MOM_input_template_500 index 5302c44f2d1..2a5dde838ba 100644 --- a/tests/parm/MOM_input_template_500 +++ b/tests/parm/MOM_input_template_500 @@ -132,7 +132,6 @@ TFREEZE_FORM = "MILLERO_78" ! default = "LINEAR" ! === module MOM_restart === RESTART_CHECKSUMS_REQUIRED = False -STORE_CORIOLIS_ACCEL = False ! === module MOM_tracer_flow_control === ! === module MOM_coord_initialization === diff --git a/tests/rt.sh b/tests/rt.sh index 88ade1493d0..f62fcef7f67 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -190,7 +190,7 @@ elif [[ $MACHINE_ID = gaea.* ]]; then ECFLOW_START=/lustre/f2/pdata/esrl/gsd/contrib/miniconda3/4.8.3/envs/ufs-weather-model/bin/ecflow_start.sh ECF_PORT=$(( $(id -u) + 1500 )) - DISKNM=/lustre/f2/pdata/ncep/role.epic/RT + DISKNM=/lustre/f2/pdata/ncep_shared/role.epic/RT QUEUE=normal COMPILE_QUEUE=normal # ACCNR="${ACCNR:-cmp}" @@ -446,7 +446,7 @@ if [[ $TESTS_FILE =~ '35d' ]] || [[ $TESTS_FILE =~ 'weekly' ]]; then fi -BL_DATE=20230215 +BL_DATE=20230222 RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-${BL_DATE}/${RT_COMPILER^^}} diff --git a/tests/tests/atmaero_control_p8 b/tests/tests/atmaero_control_p8 index d7d649191bb..7aeadd3a805 100644 --- a/tests/tests/atmaero_control_p8 +++ b/tests/tests/atmaero_control_p8 @@ -17,38 +17,38 @@ export LIST_FILES="sfcf000.nc \ GFSPRS.GrbF00 \ GFSPRS.GrbF24 \ gocart.inst_aod.20210323_0600z.nc4 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc" export_fv3 export NPZ=127 diff --git a/tests/tests/atmaero_control_p8_rad b/tests/tests/atmaero_control_p8_rad index 47764a05593..25dbab9d51b 100644 --- a/tests/tests/atmaero_control_p8_rad +++ b/tests/tests/atmaero_control_p8_rad @@ -17,38 +17,38 @@ export LIST_FILES="sfcf000.nc \ GFSPRS.GrbF00 \ GFSPRS.GrbF24 \ gocart.inst_aod.20210323_0600z.nc4 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc" export_fv3 export NPZ=127 diff --git a/tests/tests/atmaero_control_p8_rad_micro b/tests/tests/atmaero_control_p8_rad_micro index 7b0bd044f75..62456f46b06 100644 --- a/tests/tests/atmaero_control_p8_rad_micro +++ b/tests/tests/atmaero_control_p8_rad_micro @@ -17,38 +17,38 @@ export LIST_FILES="sfcf000.nc \ GFSPRS.GrbF00 \ GFSPRS.GrbF24 \ gocart.inst_aod.20210323_0600z.nc4 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc" export_fv3 export NPZ=127 diff --git a/tests/tests/control_2threads_p8 b/tests/tests/control_2threads_p8 index 84fb481979d..a58604d78d2 100644 --- a/tests/tests/control_2threads_p8 +++ b/tests/tests/control_2threads_p8 @@ -16,38 +16,38 @@ export LIST_FILES="sfcf000.nc \ GFSFLX.GrbF24 \ GFSPRS.GrbF00 \ GFSPRS.GrbF24 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc" export_fv3 export NPZ=127 diff --git a/tests/tests/control_atmwav b/tests/tests/control_atmwav index 46239320f7d..252402b040b 100644 --- a/tests/tests/control_atmwav +++ b/tests/tests/control_atmwav @@ -16,38 +16,38 @@ export LIST_FILES="sfcf000.nc \ GFSFLX.GrbF12 \ GFSPRS.GrbF00 \ GFSPRS.GrbF12 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ + RESTART/20210322.180000.coupler.res \ + RESTART/20210322.180000.fv_core.res.nc \ + RESTART/20210322.180000.fv_core.res.tile1.nc \ + RESTART/20210322.180000.fv_core.res.tile2.nc \ + RESTART/20210322.180000.fv_core.res.tile3.nc \ + RESTART/20210322.180000.fv_core.res.tile4.nc \ + RESTART/20210322.180000.fv_core.res.tile5.nc \ + RESTART/20210322.180000.fv_core.res.tile6.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210322.180000.fv_tracer.res.tile1.nc \ + RESTART/20210322.180000.fv_tracer.res.tile2.nc \ + RESTART/20210322.180000.fv_tracer.res.tile3.nc \ + RESTART/20210322.180000.fv_tracer.res.tile4.nc \ + RESTART/20210322.180000.fv_tracer.res.tile5.nc \ + RESTART/20210322.180000.fv_tracer.res.tile6.nc \ + RESTART/20210322.180000.phy_data.tile1.nc \ + RESTART/20210322.180000.phy_data.tile2.nc \ + RESTART/20210322.180000.phy_data.tile3.nc \ + RESTART/20210322.180000.phy_data.tile4.nc \ + RESTART/20210322.180000.phy_data.tile5.nc \ + RESTART/20210322.180000.phy_data.tile6.nc \ + RESTART/20210322.180000.sfc_data.tile1.nc \ + RESTART/20210322.180000.sfc_data.tile2.nc \ + RESTART/20210322.180000.sfc_data.tile3.nc \ + RESTART/20210322.180000.sfc_data.tile4.nc \ + RESTART/20210322.180000.sfc_data.tile5.nc \ + RESTART/20210322.180000.sfc_data.tile6.nc \ 20210322.180000.restart.glo_1deg" export_fv3 diff --git a/tests/tests/control_c384gdas b/tests/tests/control_c384gdas index 69271526ad7..4730dfb24e2 100644 --- a/tests/tests/control_c384gdas +++ b/tests/tests/control_c384gdas @@ -16,38 +16,38 @@ export LIST_FILES="sfcf000.nc \ GFSFLX.GrbF06 \ GFSPRS.GrbF00 \ GFSPRS.GrbF06 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" + RESTART/20210322.060000.coupler.res \ + RESTART/20210322.060000.fv_core.res.nc \ + RESTART/20210322.060000.fv_core.res.tile1.nc \ + RESTART/20210322.060000.fv_core.res.tile2.nc \ + RESTART/20210322.060000.fv_core.res.tile3.nc \ + RESTART/20210322.060000.fv_core.res.tile4.nc \ + RESTART/20210322.060000.fv_core.res.tile5.nc \ + RESTART/20210322.060000.fv_core.res.tile6.nc \ + RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210322.060000.fv_tracer.res.tile1.nc \ + RESTART/20210322.060000.fv_tracer.res.tile2.nc \ + RESTART/20210322.060000.fv_tracer.res.tile3.nc \ + RESTART/20210322.060000.fv_tracer.res.tile4.nc \ + RESTART/20210322.060000.fv_tracer.res.tile5.nc \ + RESTART/20210322.060000.fv_tracer.res.tile6.nc \ + RESTART/20210322.060000.phy_data.tile1.nc \ + RESTART/20210322.060000.phy_data.tile2.nc \ + RESTART/20210322.060000.phy_data.tile3.nc \ + RESTART/20210322.060000.phy_data.tile4.nc \ + RESTART/20210322.060000.phy_data.tile5.nc \ + RESTART/20210322.060000.phy_data.tile6.nc \ + RESTART/20210322.060000.sfc_data.tile1.nc \ + RESTART/20210322.060000.sfc_data.tile2.nc \ + RESTART/20210322.060000.sfc_data.tile3.nc \ + RESTART/20210322.060000.sfc_data.tile4.nc \ + RESTART/20210322.060000.sfc_data.tile5.nc \ + RESTART/20210322.060000.sfc_data.tile6.nc" export_fv3 export atm_omp_num_threads=${THRD_c384} @@ -97,4 +97,4 @@ export INPUT_NML=control_gdas.nml.IN if [[ $MACHINE_ID = gaea.* || $MACHINE_ID = cheyenne.* ]]; then TPN=18 -fi \ No newline at end of file +fi diff --git a/tests/tests/control_c384gdas_debug b/tests/tests/control_c384gdas_debug index c460b6ff844..06aae996e40 100644 --- a/tests/tests/control_c384gdas_debug +++ b/tests/tests/control_c384gdas_debug @@ -12,38 +12,38 @@ export LIST_FILES="sfcf000.nc \ sfcf001.nc \ atmf000.nc \ atmf001.nc \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" + RESTART/20210322.010000.coupler.res \ + RESTART/20210322.010000.fv_core.res.nc \ + RESTART/20210322.010000.fv_core.res.tile1.nc \ + RESTART/20210322.010000.fv_core.res.tile2.nc \ + RESTART/20210322.010000.fv_core.res.tile3.nc \ + RESTART/20210322.010000.fv_core.res.tile4.nc \ + RESTART/20210322.010000.fv_core.res.tile5.nc \ + RESTART/20210322.010000.fv_core.res.tile6.nc \ + RESTART/20210322.010000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210322.010000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210322.010000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210322.010000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210322.010000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210322.010000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210322.010000.fv_tracer.res.tile1.nc \ + RESTART/20210322.010000.fv_tracer.res.tile2.nc \ + RESTART/20210322.010000.fv_tracer.res.tile3.nc \ + RESTART/20210322.010000.fv_tracer.res.tile4.nc \ + RESTART/20210322.010000.fv_tracer.res.tile5.nc \ + RESTART/20210322.010000.fv_tracer.res.tile6.nc \ + RESTART/20210322.010000.phy_data.tile1.nc \ + RESTART/20210322.010000.phy_data.tile2.nc \ + RESTART/20210322.010000.phy_data.tile3.nc \ + RESTART/20210322.010000.phy_data.tile4.nc \ + RESTART/20210322.010000.phy_data.tile5.nc \ + RESTART/20210322.010000.phy_data.tile6.nc \ + RESTART/20210322.010000.sfc_data.tile1.nc \ + RESTART/20210322.010000.sfc_data.tile2.nc \ + RESTART/20210322.010000.sfc_data.tile3.nc \ + RESTART/20210322.010000.sfc_data.tile4.nc \ + RESTART/20210322.010000.sfc_data.tile5.nc \ + RESTART/20210322.010000.sfc_data.tile6.nc" export_fv3 diff --git a/tests/tests/control_c384gdas_wav b/tests/tests/control_c384gdas_wav index 1ad9d140476..08b3165bfdf 100644 --- a/tests/tests/control_c384gdas_wav +++ b/tests/tests/control_c384gdas_wav @@ -16,38 +16,38 @@ export LIST_FILES="sfcf000.nc \ GFSFLX.GrbF03 \ GFSPRS.GrbF00 \ GFSPRS.GrbF03 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ + RESTART/20210322.030000.coupler.res \ + RESTART/20210322.030000.fv_core.res.nc \ + RESTART/20210322.030000.fv_core.res.tile1.nc \ + RESTART/20210322.030000.fv_core.res.tile2.nc \ + RESTART/20210322.030000.fv_core.res.tile3.nc \ + RESTART/20210322.030000.fv_core.res.tile4.nc \ + RESTART/20210322.030000.fv_core.res.tile5.nc \ + RESTART/20210322.030000.fv_core.res.tile6.nc \ + RESTART/20210322.030000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210322.030000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210322.030000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210322.030000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210322.030000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210322.030000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210322.030000.fv_tracer.res.tile1.nc \ + RESTART/20210322.030000.fv_tracer.res.tile2.nc \ + RESTART/20210322.030000.fv_tracer.res.tile3.nc \ + RESTART/20210322.030000.fv_tracer.res.tile4.nc \ + RESTART/20210322.030000.fv_tracer.res.tile5.nc \ + RESTART/20210322.030000.fv_tracer.res.tile6.nc \ + RESTART/20210322.030000.phy_data.tile1.nc \ + RESTART/20210322.030000.phy_data.tile2.nc \ + RESTART/20210322.030000.phy_data.tile3.nc \ + RESTART/20210322.030000.phy_data.tile4.nc \ + RESTART/20210322.030000.phy_data.tile5.nc \ + RESTART/20210322.030000.phy_data.tile6.nc \ + RESTART/20210322.030000.sfc_data.tile1.nc \ + RESTART/20210322.030000.sfc_data.tile2.nc \ + RESTART/20210322.030000.sfc_data.tile3.nc \ + RESTART/20210322.030000.sfc_data.tile4.nc \ + RESTART/20210322.030000.sfc_data.tile5.nc \ + RESTART/20210322.030000.sfc_data.tile6.nc \ 20210322.030000.restart.aoc_9km \ 20210322.030000.restart.gnh_10m \ 20210322.030000.restart.gsh_15m" diff --git a/tests/tests/control_c48 b/tests/tests/control_c48 index 62e27129d77..ab76dd503b1 100644 --- a/tests/tests/control_c48 +++ b/tests/tests/control_c48 @@ -12,38 +12,38 @@ export LIST_FILES="sfcf000.nc \ sfcf024.nc \ atmf000.nc \ atmf024.nc \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc" export_fv3 diff --git a/tests/tests/control_decomp_p8 b/tests/tests/control_decomp_p8 index f8b16baa101..0abd2799a4c 100644 --- a/tests/tests/control_decomp_p8 +++ b/tests/tests/control_decomp_p8 @@ -16,38 +16,38 @@ export LIST_FILES="sfcf000.nc \ GFSFLX.GrbF24 \ GFSPRS.GrbF00 \ GFSPRS.GrbF24 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc" export_fv3 export NPZ=127 diff --git a/tests/tests/control_p8 b/tests/tests/control_p8 index df405aad2b2..25770313eb5 100644 --- a/tests/tests/control_p8 +++ b/tests/tests/control_p8 @@ -20,38 +20,38 @@ export LIST_FILES="sfcf000.nc \ GFSPRS.GrbF00 \ GFSPRS.GrbF21 \ GFSPRS.GrbF24 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc" export_fv3 export NPZ=127 diff --git a/tests/tests/control_p8_atmlnd_sbs b/tests/tests/control_p8_atmlnd_sbs index 32021050353..aec8541a8c7 100644 --- a/tests/tests/control_p8_atmlnd_sbs +++ b/tests/tests/control_p8_atmlnd_sbs @@ -44,38 +44,38 @@ export LIST_FILES="sfcf000.tile1.nc \ atmf024.tile4.nc \ atmf024.tile5.nc \ atmf024.tile6.nc \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc \ ufs.cpld.cpl.hi.lnd.2021-03-22-43200.nc \ ufs.cpld.cpl.hi.lnd.2021-03-23-21600.nc \ ufs.cpld.lnd.out.2021-03-22-43200.tile1.nc \ diff --git a/tests/tests/control_p8_rrtmgp b/tests/tests/control_p8_rrtmgp index ae0add5062f..a5212713692 100644 --- a/tests/tests/control_p8_rrtmgp +++ b/tests/tests/control_p8_rrtmgp @@ -20,38 +20,38 @@ export LIST_FILES="sfcf000.nc \ GFSPRS.GrbF00 \ GFSPRS.GrbF21 \ GFSPRS.GrbF24 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc" export_fv3 export NPZ=127 diff --git a/tests/tests/control_restart_p8 b/tests/tests/control_restart_p8 index 3a21b8e59d7..4175ff0bf72 100644 --- a/tests/tests/control_restart_p8 +++ b/tests/tests/control_restart_p8 @@ -12,38 +12,38 @@ export LIST_FILES="sfcf024.nc \ atmf024.nc \ GFSFLX.GrbF24 \ GFSPRS.GrbF24 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc" export_fv3 export NPZ=127 diff --git a/tests/tests/cpld_2threads_p8 b/tests/tests/cpld_2threads_p8 index d0d9f2206fd..15cdb6a34a6 100644 --- a/tests/tests/cpld_2threads_p8 +++ b/tests/tests/cpld_2threads_p8 @@ -19,39 +19,39 @@ export LIST_FILES="sfcf024.tile1.nc \ atmf024.tile5.nc \ atmf024.tile6.nc \ gocart.inst_aod.20210323_0600z.nc4 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/MOM.res.nc \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc \ + RESTART/20210323.060000.MOM.res.nc \ RESTART/iced.2021-03-23-21600.nc \ RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc \ 20210323.060000.out_pnt.ww3 \ diff --git a/tests/tests/cpld_bmark_p8 b/tests/tests/cpld_bmark_p8 index 992a53d3e90..b20f1648199 100644 --- a/tests/tests/cpld_bmark_p8 +++ b/tests/tests/cpld_bmark_p8 @@ -10,42 +10,42 @@ export LIST_FILES="sfcf006.nc \ GFSFLX.GrbF06 \ GFSPRS.GrbF06 \ gocart.inst_aod.20130401_0600z.nc4 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/MOM.res.nc \ - RESTART/MOM.res_1.nc \ - RESTART/MOM.res_2.nc \ - RESTART/MOM.res_3.nc \ + RESTART/20130401.060000.coupler.res \ + RESTART/20130401.060000.fv_core.res.nc \ + RESTART/20130401.060000.fv_core.res.tile1.nc \ + RESTART/20130401.060000.fv_core.res.tile2.nc \ + RESTART/20130401.060000.fv_core.res.tile3.nc \ + RESTART/20130401.060000.fv_core.res.tile4.nc \ + RESTART/20130401.060000.fv_core.res.tile5.nc \ + RESTART/20130401.060000.fv_core.res.tile6.nc \ + RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20130401.060000.fv_tracer.res.tile1.nc \ + RESTART/20130401.060000.fv_tracer.res.tile2.nc \ + RESTART/20130401.060000.fv_tracer.res.tile3.nc \ + RESTART/20130401.060000.fv_tracer.res.tile4.nc \ + RESTART/20130401.060000.fv_tracer.res.tile5.nc \ + RESTART/20130401.060000.fv_tracer.res.tile6.nc \ + RESTART/20130401.060000.phy_data.tile1.nc \ + RESTART/20130401.060000.phy_data.tile2.nc \ + RESTART/20130401.060000.phy_data.tile3.nc \ + RESTART/20130401.060000.phy_data.tile4.nc \ + RESTART/20130401.060000.phy_data.tile5.nc \ + RESTART/20130401.060000.phy_data.tile6.nc \ + RESTART/20130401.060000.sfc_data.tile1.nc \ + RESTART/20130401.060000.sfc_data.tile2.nc \ + RESTART/20130401.060000.sfc_data.tile3.nc \ + RESTART/20130401.060000.sfc_data.tile4.nc \ + RESTART/20130401.060000.sfc_data.tile5.nc \ + RESTART/20130401.060000.sfc_data.tile6.nc \ + RESTART/20130401.060000.MOM.res.nc \ + RESTART/20130401.060000.MOM.res_1.nc \ + RESTART/20130401.060000.MOM.res_2.nc \ + RESTART/20130401.060000.MOM.res_3.nc \ RESTART/iced.2013-04-01-21600.nc \ RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc \ 20130401.060000.out_pnt.ww3 \ diff --git a/tests/tests/cpld_control_c192_p8 b/tests/tests/cpld_control_c192_p8 index b0548dc229d..065d5fa288b 100644 --- a/tests/tests/cpld_control_c192_p8 +++ b/tests/tests/cpld_control_c192_p8 @@ -18,39 +18,39 @@ export LIST_FILES="sfcf030.tile1.nc \ atmf030.tile5.nc \ atmf030.tile6.nc \ gocart.inst_aod.20210323_1200z.nc4 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/MOM.res.nc \ + RESTART/20210323.120000.coupler.res \ + RESTART/20210323.120000.fv_core.res.nc \ + RESTART/20210323.120000.fv_core.res.tile1.nc \ + RESTART/20210323.120000.fv_core.res.tile2.nc \ + RESTART/20210323.120000.fv_core.res.tile3.nc \ + RESTART/20210323.120000.fv_core.res.tile4.nc \ + RESTART/20210323.120000.fv_core.res.tile5.nc \ + RESTART/20210323.120000.fv_core.res.tile6.nc \ + RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.120000.fv_tracer.res.tile1.nc \ + RESTART/20210323.120000.fv_tracer.res.tile2.nc \ + RESTART/20210323.120000.fv_tracer.res.tile3.nc \ + RESTART/20210323.120000.fv_tracer.res.tile4.nc \ + RESTART/20210323.120000.fv_tracer.res.tile5.nc \ + RESTART/20210323.120000.fv_tracer.res.tile6.nc \ + RESTART/20210323.120000.phy_data.tile1.nc \ + RESTART/20210323.120000.phy_data.tile2.nc \ + RESTART/20210323.120000.phy_data.tile3.nc \ + RESTART/20210323.120000.phy_data.tile4.nc \ + RESTART/20210323.120000.phy_data.tile5.nc \ + RESTART/20210323.120000.phy_data.tile6.nc \ + RESTART/20210323.120000.sfc_data.tile1.nc \ + RESTART/20210323.120000.sfc_data.tile2.nc \ + RESTART/20210323.120000.sfc_data.tile3.nc \ + RESTART/20210323.120000.sfc_data.tile4.nc \ + RESTART/20210323.120000.sfc_data.tile5.nc \ + RESTART/20210323.120000.sfc_data.tile6.nc \ + RESTART/20210323.120000.MOM.res.nc \ RESTART/iced.2021-03-23-43200.nc \ RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc \ 20210323.120000.out_grd.ww3 \ diff --git a/tests/tests/cpld_control_c48 b/tests/tests/cpld_control_c48 index 024c7be134b..fac8b929dae 100644 --- a/tests/tests/cpld_control_c48 +++ b/tests/tests/cpld_control_c48 @@ -17,39 +17,39 @@ export LIST_FILES="sfcf024.tile1.nc \ atmf024.tile4.nc \ atmf024.tile5.nc \ atmf024.tile6.nc \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/MOM.res.nc \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc \ + RESTART/20210323.060000.MOM.res.nc \ RESTART/iced.2021-03-23-21600.nc \ RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc" diff --git a/tests/tests/cpld_control_ciceC_p8 b/tests/tests/cpld_control_ciceC_p8 index 25aa0681851..4a0f3cf8199 100644 --- a/tests/tests/cpld_control_ciceC_p8 +++ b/tests/tests/cpld_control_ciceC_p8 @@ -31,39 +31,39 @@ export LIST_FILES="sfcf021.tile1.nc \ atmf024.tile5.nc \ atmf024.tile6.nc \ gocart.inst_aod.20210323_0600z.nc4 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/MOM.res.nc \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc \ + RESTART/20210323.060000.MOM.res.nc \ RESTART/iced.2021-03-23-21600.nc \ RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc \ 20210323.060000.out_pnt.ww3 \ diff --git a/tests/tests/cpld_control_gfsv17 b/tests/tests/cpld_control_gfsv17 index d325344a362..3093581692d 100644 --- a/tests/tests/cpld_control_gfsv17 +++ b/tests/tests/cpld_control_gfsv17 @@ -30,39 +30,39 @@ export LIST_FILES="sfcf021.tile1.nc \ atmf024.tile4.nc \ atmf024.tile5.nc \ atmf024.tile6.nc \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/MOM.res.nc \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc \ + RESTART/20210323.060000.MOM.res.nc \ RESTART/iced.2021-03-23-21600.nc \ RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc \ 20210323.060000.out_pnt.ww3 \ diff --git a/tests/tests/cpld_control_noaero_p8 b/tests/tests/cpld_control_noaero_p8 index bd96dc81807..cc18d3c6819 100644 --- a/tests/tests/cpld_control_noaero_p8 +++ b/tests/tests/cpld_control_noaero_p8 @@ -30,39 +30,39 @@ export LIST_FILES="sfcf021.tile1.nc \ atmf024.tile4.nc \ atmf024.tile5.nc \ atmf024.tile6.nc \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/MOM.res.nc \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc \ + RESTART/20210323.060000.MOM.res.nc \ RESTART/iced.2021-03-23-21600.nc \ RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc \ 20210323.060000.out_pnt.ww3 \ diff --git a/tests/tests/cpld_control_noaero_p8_agrid b/tests/tests/cpld_control_noaero_p8_agrid index 17a1b616ce8..823103643c2 100644 --- a/tests/tests/cpld_control_noaero_p8_agrid +++ b/tests/tests/cpld_control_noaero_p8_agrid @@ -30,39 +30,39 @@ export LIST_FILES="sfcf021.tile1.nc \ atmf024.tile4.nc \ atmf024.tile5.nc \ atmf024.tile6.nc \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/MOM.res.nc \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc \ + RESTART/20210323.060000.MOM.res.nc \ RESTART/iced.2021-03-23-21600.nc \ RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc" diff --git a/tests/tests/cpld_control_nowave_noaero_p8 b/tests/tests/cpld_control_nowave_noaero_p8 index ff1724088a4..1cd2ed8f7ad 100644 --- a/tests/tests/cpld_control_nowave_noaero_p8 +++ b/tests/tests/cpld_control_nowave_noaero_p8 @@ -30,39 +30,39 @@ export LIST_FILES="sfcf021.tile1.nc \ atmf024.tile4.nc \ atmf024.tile5.nc \ atmf024.tile6.nc \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/MOM.res.nc \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc \ + RESTART/20210323.060000.MOM.res.nc \ RESTART/iced.2021-03-23-21600.nc \ RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc" diff --git a/tests/tests/cpld_control_p8 b/tests/tests/cpld_control_p8 index 4ad14d179d0..484d056bc9f 100644 --- a/tests/tests/cpld_control_p8 +++ b/tests/tests/cpld_control_p8 @@ -31,39 +31,39 @@ export LIST_FILES="sfcf021.tile1.nc \ atmf024.tile5.nc \ atmf024.tile6.nc \ gocart.inst_aod.20210323_0600z.nc4 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/MOM.res.nc \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc \ + RESTART/20210323.060000.MOM.res.nc \ RESTART/iced.2021-03-23-21600.nc \ RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc \ 20210323.060000.out_pnt.ww3 \ diff --git a/tests/tests/cpld_control_p8_mixedmode b/tests/tests/cpld_control_p8_mixedmode index d702de74fda..aca8831ed95 100644 --- a/tests/tests/cpld_control_p8_mixedmode +++ b/tests/tests/cpld_control_p8_mixedmode @@ -31,39 +31,39 @@ export LIST_FILES="sfcf021.tile1.nc \ atmf024.tile5.nc \ atmf024.tile6.nc \ gocart.inst_aod.20210323_0600z.nc4 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/MOM.res.nc \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc \ + RESTART/20210323.060000.MOM.res.nc \ RESTART/iced.2021-03-23-21600.nc \ RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc \ 20210323.060000.out_pnt.ww3 \ diff --git a/tests/tests/cpld_debug_noaero_p8 b/tests/tests/cpld_debug_noaero_p8 index 4cf3cf3ab94..9b338450721 100644 --- a/tests/tests/cpld_debug_noaero_p8 +++ b/tests/tests/cpld_debug_noaero_p8 @@ -18,39 +18,39 @@ export LIST_FILES="sfcf003.tile1.nc \ atmf003.tile4.nc \ atmf003.tile5.nc \ atmf003.tile6.nc \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/MOM.res.nc \ + RESTART/20210322.090000.coupler.res \ + RESTART/20210322.090000.fv_core.res.nc \ + RESTART/20210322.090000.fv_core.res.tile1.nc \ + RESTART/20210322.090000.fv_core.res.tile2.nc \ + RESTART/20210322.090000.fv_core.res.tile3.nc \ + RESTART/20210322.090000.fv_core.res.tile4.nc \ + RESTART/20210322.090000.fv_core.res.tile5.nc \ + RESTART/20210322.090000.fv_core.res.tile6.nc \ + RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210322.090000.fv_tracer.res.tile1.nc \ + RESTART/20210322.090000.fv_tracer.res.tile2.nc \ + RESTART/20210322.090000.fv_tracer.res.tile3.nc \ + RESTART/20210322.090000.fv_tracer.res.tile4.nc \ + RESTART/20210322.090000.fv_tracer.res.tile5.nc \ + RESTART/20210322.090000.fv_tracer.res.tile6.nc \ + RESTART/20210322.090000.phy_data.tile1.nc \ + RESTART/20210322.090000.phy_data.tile2.nc \ + RESTART/20210322.090000.phy_data.tile3.nc \ + RESTART/20210322.090000.phy_data.tile4.nc \ + RESTART/20210322.090000.phy_data.tile5.nc \ + RESTART/20210322.090000.phy_data.tile6.nc \ + RESTART/20210322.090000.sfc_data.tile1.nc \ + RESTART/20210322.090000.sfc_data.tile2.nc \ + RESTART/20210322.090000.sfc_data.tile3.nc \ + RESTART/20210322.090000.sfc_data.tile4.nc \ + RESTART/20210322.090000.sfc_data.tile5.nc \ + RESTART/20210322.090000.sfc_data.tile6.nc \ + RESTART/20210322.090000.MOM.res.nc \ RESTART/iced.2021-03-22-32400.nc \ RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc \ 20210322.090000.out_pnt.ww3 \ diff --git a/tests/tests/cpld_debug_p8 b/tests/tests/cpld_debug_p8 index 68056f441f2..868ac92e2d1 100644 --- a/tests/tests/cpld_debug_p8 +++ b/tests/tests/cpld_debug_p8 @@ -19,39 +19,39 @@ export LIST_FILES="sfcf003.tile1.nc \ atmf003.tile5.nc \ atmf003.tile6.nc \ gocart.inst_aod.20210322_0900z.nc4 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/MOM.res.nc \ + RESTART/20210322.090000.coupler.res \ + RESTART/20210322.090000.fv_core.res.nc \ + RESTART/20210322.090000.fv_core.res.tile1.nc \ + RESTART/20210322.090000.fv_core.res.tile2.nc \ + RESTART/20210322.090000.fv_core.res.tile3.nc \ + RESTART/20210322.090000.fv_core.res.tile4.nc \ + RESTART/20210322.090000.fv_core.res.tile5.nc \ + RESTART/20210322.090000.fv_core.res.tile6.nc \ + RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210322.090000.fv_tracer.res.tile1.nc \ + RESTART/20210322.090000.fv_tracer.res.tile2.nc \ + RESTART/20210322.090000.fv_tracer.res.tile3.nc \ + RESTART/20210322.090000.fv_tracer.res.tile4.nc \ + RESTART/20210322.090000.fv_tracer.res.tile5.nc \ + RESTART/20210322.090000.fv_tracer.res.tile6.nc \ + RESTART/20210322.090000.phy_data.tile1.nc \ + RESTART/20210322.090000.phy_data.tile2.nc \ + RESTART/20210322.090000.phy_data.tile3.nc \ + RESTART/20210322.090000.phy_data.tile4.nc \ + RESTART/20210322.090000.phy_data.tile5.nc \ + RESTART/20210322.090000.phy_data.tile6.nc \ + RESTART/20210322.090000.sfc_data.tile1.nc \ + RESTART/20210322.090000.sfc_data.tile2.nc \ + RESTART/20210322.090000.sfc_data.tile3.nc \ + RESTART/20210322.090000.sfc_data.tile4.nc \ + RESTART/20210322.090000.sfc_data.tile5.nc \ + RESTART/20210322.090000.sfc_data.tile6.nc \ + RESTART/20210322.090000.MOM.res.nc \ RESTART/iced.2021-03-22-32400.nc \ RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc \ 20210322.090000.out_pnt.ww3 \ diff --git a/tests/tests/cpld_decomp_p8 b/tests/tests/cpld_decomp_p8 index 1c8f3c77fb5..a77c9e87ffa 100644 --- a/tests/tests/cpld_decomp_p8 +++ b/tests/tests/cpld_decomp_p8 @@ -19,39 +19,39 @@ export LIST_FILES="sfcf024.tile1.nc \ atmf024.tile5.nc \ atmf024.tile6.nc \ gocart.inst_aod.20210323_0600z.nc4 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/MOM.res.nc \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc \ + RESTART/20210323.060000.MOM.res.nc \ RESTART/iced.2021-03-23-21600.nc \ RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc \ 20210323.060000.out_pnt.ww3 \ diff --git a/tests/tests/cpld_mpi_p8 b/tests/tests/cpld_mpi_p8 index e062bc81042..f224dcd54fc 100644 --- a/tests/tests/cpld_mpi_p8 +++ b/tests/tests/cpld_mpi_p8 @@ -19,39 +19,39 @@ export LIST_FILES="sfcf024.tile1.nc \ atmf024.tile5.nc \ atmf024.tile6.nc \ gocart.inst_aod.20210323_0600z.nc4 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/MOM.res.nc \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc \ + RESTART/20210323.060000.MOM.res.nc \ RESTART/iced.2021-03-23-21600.nc \ RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc \ 20210323.060000.out_pnt.ww3 \ diff --git a/tests/tests/cpld_multigrid_p8 b/tests/tests/cpld_multigrid_p8 index 869ec7bff43..1c79c8522ad 100644 --- a/tests/tests/cpld_multigrid_p8 +++ b/tests/tests/cpld_multigrid_p8 @@ -19,39 +19,39 @@ export LIST_FILES="sfcf024.tile1.nc \ atmf024.tile5.nc \ atmf024.tile6.nc \ gocart.inst_aod.20210323_0600z.nc4 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/MOM.res.nc \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc \ + RESTART/20210323.060000.MOM.res.nc \ RESTART/iced.2021-03-23-21600.nc \ RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc \ 20210323.060000.out_grd.ww3 " diff --git a/tests/tests/cpld_restart_bmark_p8 b/tests/tests/cpld_restart_bmark_p8 index f5f4315d3ea..1d0e522b2b1 100644 --- a/tests/tests/cpld_restart_bmark_p8 +++ b/tests/tests/cpld_restart_bmark_p8 @@ -10,42 +10,42 @@ export LIST_FILES="sfcf006.nc \ GFSFLX.GrbF06 \ GFSPRS.GrbF06 \ gocart.inst_aod.20130401_0600z.nc4 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/MOM.res.nc \ - RESTART/MOM.res_1.nc \ - RESTART/MOM.res_2.nc \ - RESTART/MOM.res_3.nc \ + RESTART/20130401.060000.coupler.res \ + RESTART/20130401.060000.fv_core.res.nc \ + RESTART/20130401.060000.fv_core.res.tile1.nc \ + RESTART/20130401.060000.fv_core.res.tile2.nc \ + RESTART/20130401.060000.fv_core.res.tile3.nc \ + RESTART/20130401.060000.fv_core.res.tile4.nc \ + RESTART/20130401.060000.fv_core.res.tile5.nc \ + RESTART/20130401.060000.fv_core.res.tile6.nc \ + RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20130401.060000.fv_tracer.res.tile1.nc \ + RESTART/20130401.060000.fv_tracer.res.tile2.nc \ + RESTART/20130401.060000.fv_tracer.res.tile3.nc \ + RESTART/20130401.060000.fv_tracer.res.tile4.nc \ + RESTART/20130401.060000.fv_tracer.res.tile5.nc \ + RESTART/20130401.060000.fv_tracer.res.tile6.nc \ + RESTART/20130401.060000.phy_data.tile1.nc \ + RESTART/20130401.060000.phy_data.tile2.nc \ + RESTART/20130401.060000.phy_data.tile3.nc \ + RESTART/20130401.060000.phy_data.tile4.nc \ + RESTART/20130401.060000.phy_data.tile5.nc \ + RESTART/20130401.060000.phy_data.tile6.nc \ + RESTART/20130401.060000.sfc_data.tile1.nc \ + RESTART/20130401.060000.sfc_data.tile2.nc \ + RESTART/20130401.060000.sfc_data.tile3.nc \ + RESTART/20130401.060000.sfc_data.tile4.nc \ + RESTART/20130401.060000.sfc_data.tile5.nc \ + RESTART/20130401.060000.sfc_data.tile6.nc \ + RESTART/20130401.060000.MOM.res.nc \ + RESTART/20130401.060000.MOM.res_1.nc \ + RESTART/20130401.060000.MOM.res_2.nc \ + RESTART/20130401.060000.MOM.res_3.nc \ RESTART/iced.2013-04-01-21600.nc \ RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc \ 20130401.060000.out_pnt.ww3 \ @@ -73,7 +73,6 @@ export FHZERO=3 export DOMAINS_STACK_SIZE=16000000 export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${FHROT} + ${SHOUR} )))0000" -export RESTART_FILE_SUFFIX_HRS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%02d" $(( ${FHROT} + ${SHOUR})))" export RESTART_FILE_SUFFIX_SECS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%05d" $(( (${FHROT}+ ${SHOUR})*3600 )))" export RUN_BEG="${SYEAR}${SMONTH}${SDAY} $(printf "%02d" $(( ${FHROT}+${SHOUR} )))0000" diff --git a/tests/tests/cpld_restart_c192_p8 b/tests/tests/cpld_restart_c192_p8 index ff5a4556550..addb41fa76d 100644 --- a/tests/tests/cpld_restart_c192_p8 +++ b/tests/tests/cpld_restart_c192_p8 @@ -18,39 +18,39 @@ export LIST_FILES="sfcf030.tile1.nc \ atmf030.tile5.nc \ atmf030.tile6.nc \ gocart.inst_aod.20210323_1200z.nc4 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/MOM.res.nc \ + RESTART/20210323.120000.coupler.res \ + RESTART/20210323.120000.fv_core.res.nc \ + RESTART/20210323.120000.fv_core.res.tile1.nc \ + RESTART/20210323.120000.fv_core.res.tile2.nc \ + RESTART/20210323.120000.fv_core.res.tile3.nc \ + RESTART/20210323.120000.fv_core.res.tile4.nc \ + RESTART/20210323.120000.fv_core.res.tile5.nc \ + RESTART/20210323.120000.fv_core.res.tile6.nc \ + RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.120000.fv_tracer.res.tile1.nc \ + RESTART/20210323.120000.fv_tracer.res.tile2.nc \ + RESTART/20210323.120000.fv_tracer.res.tile3.nc \ + RESTART/20210323.120000.fv_tracer.res.tile4.nc \ + RESTART/20210323.120000.fv_tracer.res.tile5.nc \ + RESTART/20210323.120000.fv_tracer.res.tile6.nc \ + RESTART/20210323.120000.phy_data.tile1.nc \ + RESTART/20210323.120000.phy_data.tile2.nc \ + RESTART/20210323.120000.phy_data.tile3.nc \ + RESTART/20210323.120000.phy_data.tile4.nc \ + RESTART/20210323.120000.phy_data.tile5.nc \ + RESTART/20210323.120000.phy_data.tile6.nc \ + RESTART/20210323.120000.sfc_data.tile1.nc \ + RESTART/20210323.120000.sfc_data.tile2.nc \ + RESTART/20210323.120000.sfc_data.tile3.nc \ + RESTART/20210323.120000.sfc_data.tile4.nc \ + RESTART/20210323.120000.sfc_data.tile5.nc \ + RESTART/20210323.120000.sfc_data.tile6.nc \ + RESTART/20210323.120000.MOM.res.nc \ RESTART/iced.2021-03-23-43200.nc \ RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc \ 20210323.120000.out_grd.ww3 \ @@ -67,7 +67,6 @@ export OUTPUT_FH="15 30" export FHZERO=3 export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${FHROT} + ${SHOUR} )))0000" -export RESTART_FILE_SUFFIX_HRS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%02d" $(( ${FHROT} + ${SHOUR})))" export RESTART_FILE_SUFFIX_SECS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%05d" $(( (${FHROT}+ ${SHOUR})*3600 )))" export RUN_BEG="${SYEAR}${SMONTH}${SDAY} $(printf "%02d" $(( ${FHROT}+${SHOUR} )))0000" diff --git a/tests/tests/cpld_restart_c48 b/tests/tests/cpld_restart_c48 index 59d8379994e..afeb07dadf5 100644 --- a/tests/tests/cpld_restart_c48 +++ b/tests/tests/cpld_restart_c48 @@ -17,39 +17,39 @@ export LIST_FILES="sfcf006.tile1.nc \ atmf006.tile4.nc \ atmf006.tile5.nc \ atmf006.tile6.nc \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/MOM.res.nc \ + RESTART/20210323.120000.coupler.res \ + RESTART/20210323.120000.fv_core.res.nc \ + RESTART/20210323.120000.fv_core.res.tile1.nc \ + RESTART/20210323.120000.fv_core.res.tile2.nc \ + RESTART/20210323.120000.fv_core.res.tile3.nc \ + RESTART/20210323.120000.fv_core.res.tile4.nc \ + RESTART/20210323.120000.fv_core.res.tile5.nc \ + RESTART/20210323.120000.fv_core.res.tile6.nc \ + RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.120000.fv_tracer.res.tile1.nc \ + RESTART/20210323.120000.fv_tracer.res.tile2.nc \ + RESTART/20210323.120000.fv_tracer.res.tile3.nc \ + RESTART/20210323.120000.fv_tracer.res.tile4.nc \ + RESTART/20210323.120000.fv_tracer.res.tile5.nc \ + RESTART/20210323.120000.fv_tracer.res.tile6.nc \ + RESTART/20210323.120000.phy_data.tile1.nc \ + RESTART/20210323.120000.phy_data.tile2.nc \ + RESTART/20210323.120000.phy_data.tile3.nc \ + RESTART/20210323.120000.phy_data.tile4.nc \ + RESTART/20210323.120000.phy_data.tile5.nc \ + RESTART/20210323.120000.phy_data.tile6.nc \ + RESTART/20210323.120000.sfc_data.tile1.nc \ + RESTART/20210323.120000.sfc_data.tile2.nc \ + RESTART/20210323.120000.sfc_data.tile3.nc \ + RESTART/20210323.120000.sfc_data.tile4.nc \ + RESTART/20210323.120000.sfc_data.tile5.nc \ + RESTART/20210323.120000.sfc_data.tile6.nc \ + RESTART/20210323.120000.MOM.res.nc \ RESTART/iced.2021-03-23-43200.nc \ RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc" @@ -72,7 +72,6 @@ export OUTPUT_FH="3 -1" export FHZERO=3 export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${FHROT} + ${SHOUR} )))0000" -export RESTART_FILE_SUFFIX_HRS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%02d" $(( ${FHROT} + ${SHOUR})))" export RESTART_FILE_SUFFIX_SECS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%05d" $(( (${FHROT}+ ${SHOUR})*3600 )))" export INPES=$INPES_cpl_c48 diff --git a/tests/tests/cpld_restart_p8 b/tests/tests/cpld_restart_p8 index 4f3714f6ede..744d2fbd980 100644 --- a/tests/tests/cpld_restart_p8 +++ b/tests/tests/cpld_restart_p8 @@ -19,39 +19,39 @@ export LIST_FILES="sfcf024.tile1.nc \ atmf024.tile5.nc \ atmf024.tile6.nc \ gocart.inst_aod.20210323_0600z.nc4 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/MOM.res.nc \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc \ + RESTART/20210323.060000.MOM.res.nc \ RESTART/iced.2021-03-23-21600.nc \ RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc \ 20210323.060000.out_pnt.ww3 \ @@ -64,7 +64,6 @@ export FHROT=12 export RESTART_N=$((FHMAX-$FHROT)) export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${FHROT} + ${SHOUR} )))0000" -export RESTART_FILE_SUFFIX_HRS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%02d" $(( ${FHROT} + ${SHOUR})))" export RESTART_FILE_SUFFIX_SECS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%05d" $(( (${FHROT}+ ${SHOUR})*3600 )))" export RUN_BEG="${SYEAR}${SMONTH}${SDAY} $(printf "%02d" $(( ${FHROT}+${SHOUR} )))0000" diff --git a/tests/tests/cpld_warmstart_c48 b/tests/tests/cpld_warmstart_c48 index 4d9348000e0..f2db0d69cbe 100644 --- a/tests/tests/cpld_warmstart_c48 +++ b/tests/tests/cpld_warmstart_c48 @@ -17,39 +17,39 @@ export LIST_FILES="sfcf006.tile1.nc \ atmf006.tile4.nc \ atmf006.tile5.nc \ atmf006.tile6.nc \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/MOM.res.nc \ + RESTART/20210323.120000.coupler.res \ + RESTART/20210323.120000.fv_core.res.nc \ + RESTART/20210323.120000.fv_core.res.tile1.nc \ + RESTART/20210323.120000.fv_core.res.tile2.nc \ + RESTART/20210323.120000.fv_core.res.tile3.nc \ + RESTART/20210323.120000.fv_core.res.tile4.nc \ + RESTART/20210323.120000.fv_core.res.tile5.nc \ + RESTART/20210323.120000.fv_core.res.tile6.nc \ + RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.120000.fv_tracer.res.tile1.nc \ + RESTART/20210323.120000.fv_tracer.res.tile2.nc \ + RESTART/20210323.120000.fv_tracer.res.tile3.nc \ + RESTART/20210323.120000.fv_tracer.res.tile4.nc \ + RESTART/20210323.120000.fv_tracer.res.tile5.nc \ + RESTART/20210323.120000.fv_tracer.res.tile6.nc \ + RESTART/20210323.120000.phy_data.tile1.nc \ + RESTART/20210323.120000.phy_data.tile2.nc \ + RESTART/20210323.120000.phy_data.tile3.nc \ + RESTART/20210323.120000.phy_data.tile4.nc \ + RESTART/20210323.120000.phy_data.tile5.nc \ + RESTART/20210323.120000.phy_data.tile6.nc \ + RESTART/20210323.120000.sfc_data.tile1.nc \ + RESTART/20210323.120000.sfc_data.tile2.nc \ + RESTART/20210323.120000.sfc_data.tile3.nc \ + RESTART/20210323.120000.sfc_data.tile4.nc \ + RESTART/20210323.120000.sfc_data.tile5.nc \ + RESTART/20210323.120000.sfc_data.tile6.nc \ + RESTART/20210323.120000.MOM.res.nc \ RESTART/iced.2021-03-23-43200.nc \ RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc" diff --git a/tests/tests/datm_cdeps_3072x1536_cfsr b/tests/tests/datm_cdeps_3072x1536_cfsr index c287298ec8a..4c8a6667fef 100644 --- a/tests/tests/datm_cdeps_3072x1536_cfsr +++ b/tests/tests/datm_cdeps_3072x1536_cfsr @@ -6,7 +6,7 @@ export TEST_DESCR="DATM_CDEPS-MOM6-CICE-CMEPS_CFSR_3072x1536 - control " export CNTL_DIR="datm_cdeps_3072x1536_cfsr" -export LIST_FILES="RESTART/MOM.res.nc \ +export LIST_FILES="RESTART/20111002.000000.MOM.res.nc \ RESTART/iced.2011-10-02-00000.nc \ RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc" diff --git a/tests/tests/datm_cdeps_bulk_cfsr b/tests/tests/datm_cdeps_bulk_cfsr index f398b2f47bf..efb77849788 100644 --- a/tests/tests/datm_cdeps_bulk_cfsr +++ b/tests/tests/datm_cdeps_bulk_cfsr @@ -6,7 +6,7 @@ export TEST_DESCR="DATM_CDEPS-MOM6-CICE-CMEPS_CFSR - bulk flux test" export CNTL_DIR="datm_cdeps_bulk_cfsr" -export LIST_FILES="RESTART/MOM.res.nc \ +export LIST_FILES="RESTART/20111002.000000.MOM.res.nc \ RESTART/iced.2011-10-02-00000.nc \ RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc" diff --git a/tests/tests/datm_cdeps_bulk_gefs b/tests/tests/datm_cdeps_bulk_gefs index 191e566e302..c662a4569db 100644 --- a/tests/tests/datm_cdeps_bulk_gefs +++ b/tests/tests/datm_cdeps_bulk_gefs @@ -6,7 +6,7 @@ export TEST_DESCR="DATM_CDEPS-MOM6-CICE-CMEPS_GEFS - bulk flux test" export CNTL_DIR="datm_cdeps_bulk_gefs" -export LIST_FILES="RESTART/MOM.res.nc \ +export LIST_FILES="RESTART/20111002.000000.MOM.res.nc\ RESTART/iced.2011-10-02-00000.nc \ RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc" diff --git a/tests/tests/datm_cdeps_ciceC_cfsr b/tests/tests/datm_cdeps_ciceC_cfsr index 85bfcbc8ade..43f76ef2ed4 100644 --- a/tests/tests/datm_cdeps_ciceC_cfsr +++ b/tests/tests/datm_cdeps_ciceC_cfsr @@ -6,7 +6,7 @@ export TEST_DESCR="DATM_CDEPS-MOM6-CICE-CMEPS_CFSR - CICE-C-grid" export CNTL_DIR="datm_cdeps_ciceC_cfsr" -export LIST_FILES="RESTART/MOM.res.nc \ +export LIST_FILES="RESTART/20111002.000000.MOM.res.nc \ RESTART/iced.2011-10-02-00000.nc \ RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc" diff --git a/tests/tests/datm_cdeps_control_cfsr b/tests/tests/datm_cdeps_control_cfsr index 11835d5555c..b326a959c00 100644 --- a/tests/tests/datm_cdeps_control_cfsr +++ b/tests/tests/datm_cdeps_control_cfsr @@ -6,7 +6,7 @@ export TEST_DESCR="DATM_CDEPS-MOM6-CICE-CMEPS_CFSR - control " export CNTL_DIR="datm_cdeps_control_cfsr" -export LIST_FILES="RESTART/MOM.res.nc \ +export LIST_FILES="RESTART/20111002.000000.MOM.res.nc \ RESTART/iced.2011-10-02-00000.nc \ RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc" diff --git a/tests/tests/datm_cdeps_control_gefs b/tests/tests/datm_cdeps_control_gefs index 97408889090..7ea140ecbfd 100644 --- a/tests/tests/datm_cdeps_control_gefs +++ b/tests/tests/datm_cdeps_control_gefs @@ -6,7 +6,7 @@ export TEST_DESCR="DATM_CDEPS-MOM6-CICE-CMEPS_GEFS - control" export CNTL_DIR="datm_cdeps_control_gefs" -export LIST_FILES="RESTART/MOM.res.nc \ +export LIST_FILES="RESTART/20111002.000000.MOM.res.nc \ RESTART/iced.2011-10-02-00000.nc \ RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc" diff --git a/tests/tests/datm_cdeps_debug_cfsr b/tests/tests/datm_cdeps_debug_cfsr index 62868e2e4a5..fb8b01a13ea 100644 --- a/tests/tests/datm_cdeps_debug_cfsr +++ b/tests/tests/datm_cdeps_debug_cfsr @@ -6,7 +6,7 @@ export TEST_DESCR="DATM_CDEPS-MOM6-CICE-CMEPS_CFSR - debug test" export CNTL_DIR="datm_cdeps_debug_cfsr" -export LIST_FILES="RESTART/MOM.res.nc \ +export LIST_FILES="RESTART/20111001.060000.MOM.res.nc \ RESTART/iced.2011-10-01-21600.nc \ RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc" diff --git a/tests/tests/datm_cdeps_gfs b/tests/tests/datm_cdeps_gfs index f2dfaa0a1c3..6014d994723 100644 --- a/tests/tests/datm_cdeps_gfs +++ b/tests/tests/datm_cdeps_gfs @@ -6,7 +6,7 @@ export TEST_DESCR="DATM_CDEPS-MOM6-CICE-CMEPS_GFS - control " export CNTL_DIR="datm_cdeps_gfs" -export LIST_FILES="RESTART/MOM.res.nc \ +export LIST_FILES="RESTART/20210323.060000.MOM.res.nc \ RESTART/iced.2021-03-23-21600.nc \ RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc" diff --git a/tests/tests/datm_cdeps_iau_gefs b/tests/tests/datm_cdeps_iau_gefs index 4bc671dbf8f..5fa500e6be9 100644 --- a/tests/tests/datm_cdeps_iau_gefs +++ b/tests/tests/datm_cdeps_iau_gefs @@ -6,7 +6,7 @@ export TEST_DESCR="DATM_CDEPS-MOM6-CICE-CMEPS_GEFS - iau" export CNTL_DIR="datm_cdeps_iau_gefs" -export LIST_FILES="RESTART/MOM.res.nc \ +export LIST_FILES="RESTART/20111002.000000.MOM.res.nc \ RESTART/iced.2011-10-02-00000.nc \ RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc" diff --git a/tests/tests/datm_cdeps_mx025_cfsr b/tests/tests/datm_cdeps_mx025_cfsr index e7f620a2a10..92418696096 100644 --- a/tests/tests/datm_cdeps_mx025_cfsr +++ b/tests/tests/datm_cdeps_mx025_cfsr @@ -6,10 +6,10 @@ export TEST_DESCR="DATM_CDEPS-MOM6-CICE-CMEPS_CFSR - 1/4deg ocean+ice" export CNTL_DIR="datm_cdeps_mx025_cfsr" -export LIST_FILES="RESTART/MOM.res.nc \ - RESTART/MOM.res_1.nc \ - RESTART/MOM.res_2.nc \ - RESTART/MOM.res_3.nc \ +export LIST_FILES="RESTART/20111001.120000.MOM.res.nc \ + RESTART/20111001.120000.MOM.res_1.nc \ + RESTART/20111001.120000.MOM.res_2.nc \ + RESTART/20111001.120000.MOM.res_3.nc \ RESTART/iced.2011-10-01-43200.nc \ RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc" diff --git a/tests/tests/datm_cdeps_mx025_gefs b/tests/tests/datm_cdeps_mx025_gefs index ca67a9ecf3f..c61b2d93755 100644 --- a/tests/tests/datm_cdeps_mx025_gefs +++ b/tests/tests/datm_cdeps_mx025_gefs @@ -6,10 +6,10 @@ export TEST_DESCR="DATM_CDEPS-MOM6-CICE-CMEPS_GEFS - 1/4deg ocean+ice" export CNTL_DIR="datm_cdeps_mx025_gefs" -export LIST_FILES="RESTART/MOM.res.nc \ - RESTART/MOM.res_1.nc \ - RESTART/MOM.res_2.nc \ - RESTART/MOM.res_3.nc \ +export LIST_FILES="RESTART/20111001.120000.MOM.res.nc \ + RESTART/20111001.120000.MOM.res_1.nc \ + RESTART/20111001.120000.MOM.res_2.nc \ + RESTART/20111001.120000.MOM.res_3.nc \ RESTART/iced.2011-10-01-43200.nc \ RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc" diff --git a/tests/tests/datm_cdeps_restart_cfsr b/tests/tests/datm_cdeps_restart_cfsr index 1dd0c53c427..7b7b4da0f91 100644 --- a/tests/tests/datm_cdeps_restart_cfsr +++ b/tests/tests/datm_cdeps_restart_cfsr @@ -6,7 +6,7 @@ export TEST_DESCR="DATM_CDEPS-MOM6-CICE-CMEPS_CFSR - restart test " export CNTL_DIR="datm_cdeps_control_cfsr" -export LIST_FILES="RESTART/MOM.res.nc \ +export LIST_FILES="RESTART/20111002.000000.MOM.res.nc \ RESTART/iced.2011-10-02-00000.nc \ RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc" diff --git a/tests/tests/datm_cdeps_stochy_gefs b/tests/tests/datm_cdeps_stochy_gefs index af424405d07..f93fca91fe3 100644 --- a/tests/tests/datm_cdeps_stochy_gefs +++ b/tests/tests/datm_cdeps_stochy_gefs @@ -6,7 +6,7 @@ export TEST_DESCR="DATM_CDEPS-MOM6-CICE-CMEPS_GEFS - stochastic" export CNTL_DIR="datm_cdeps_stochy_gefs" -export LIST_FILES="RESTART/MOM.res.nc \ +export LIST_FILES="RESTART/20111002.000000.MOM.res.nc \ RESTART/iced.2011-10-02-00000.nc \ RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc" diff --git a/tests/tests/hrrr_control b/tests/tests/hrrr_control index 46c0b4da308..1e47a413f24 100644 --- a/tests/tests/hrrr_control +++ b/tests/tests/hrrr_control @@ -20,38 +20,38 @@ export LIST_FILES="sfcf000.nc \ GFSPRS.GrbF00 \ GFSPRS.GrbF09 \ GFSPRS.GrbF12 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc" export_fv3 export NPZ=127 diff --git a/tests/tests/hrrr_control_2threads b/tests/tests/hrrr_control_2threads index c72f83b6244..be17532b243 100644 --- a/tests/tests/hrrr_control_2threads +++ b/tests/tests/hrrr_control_2threads @@ -20,38 +20,38 @@ export LIST_FILES="sfcf000.nc \ GFSPRS.GrbF00 \ GFSPRS.GrbF09 \ GFSPRS.GrbF12 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc" export_fv3 export NPZ=127 diff --git a/tests/tests/hrrr_control_2threads_dyn32_phy32 b/tests/tests/hrrr_control_2threads_dyn32_phy32 index bb84ddc1285..cfecbb0a2ca 100644 --- a/tests/tests/hrrr_control_2threads_dyn32_phy32 +++ b/tests/tests/hrrr_control_2threads_dyn32_phy32 @@ -20,38 +20,38 @@ export LIST_FILES="sfcf000.nc \ GFSPRS.GrbF00 \ GFSPRS.GrbF09 \ GFSPRS.GrbF12 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" + RESTART/20210322.180000.coupler.res \ + RESTART/20210322.180000.fv_core.res.nc \ + RESTART/20210322.180000.fv_core.res.tile1.nc \ + RESTART/20210322.180000.fv_core.res.tile2.nc \ + RESTART/20210322.180000.fv_core.res.tile3.nc \ + RESTART/20210322.180000.fv_core.res.tile4.nc \ + RESTART/20210322.180000.fv_core.res.tile5.nc \ + RESTART/20210322.180000.fv_core.res.tile6.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210322.180000.fv_tracer.res.tile1.nc \ + RESTART/20210322.180000.fv_tracer.res.tile2.nc \ + RESTART/20210322.180000.fv_tracer.res.tile3.nc \ + RESTART/20210322.180000.fv_tracer.res.tile4.nc \ + RESTART/20210322.180000.fv_tracer.res.tile5.nc \ + RESTART/20210322.180000.fv_tracer.res.tile6.nc \ + RESTART/20210322.180000.phy_data.tile1.nc \ + RESTART/20210322.180000.phy_data.tile2.nc \ + RESTART/20210322.180000.phy_data.tile3.nc \ + RESTART/20210322.180000.phy_data.tile4.nc \ + RESTART/20210322.180000.phy_data.tile5.nc \ + RESTART/20210322.180000.phy_data.tile6.nc \ + RESTART/20210322.180000.sfc_data.tile1.nc \ + RESTART/20210322.180000.sfc_data.tile2.nc \ + RESTART/20210322.180000.sfc_data.tile3.nc \ + RESTART/20210322.180000.sfc_data.tile4.nc \ + RESTART/20210322.180000.sfc_data.tile5.nc \ + RESTART/20210322.180000.sfc_data.tile6.nc" export_fv3 export NPZ=127 diff --git a/tests/tests/hrrr_control_decomp b/tests/tests/hrrr_control_decomp index 41e04cbef1e..77b89a34758 100644 --- a/tests/tests/hrrr_control_decomp +++ b/tests/tests/hrrr_control_decomp @@ -20,38 +20,38 @@ export LIST_FILES="sfcf000.nc \ GFSPRS.GrbF00 \ GFSPRS.GrbF09 \ GFSPRS.GrbF12 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc" export_fv3 export NPZ=127 diff --git a/tests/tests/hrrr_control_decomp_dyn32_phy32 b/tests/tests/hrrr_control_decomp_dyn32_phy32 index 52a4636baf0..f7837892e45 100644 --- a/tests/tests/hrrr_control_decomp_dyn32_phy32 +++ b/tests/tests/hrrr_control_decomp_dyn32_phy32 @@ -20,38 +20,38 @@ export LIST_FILES="sfcf000.nc \ GFSPRS.GrbF00 \ GFSPRS.GrbF09 \ GFSPRS.GrbF12 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" + RESTART/20210322.180000.coupler.res \ + RESTART/20210322.180000.fv_core.res.nc \ + RESTART/20210322.180000.fv_core.res.tile1.nc \ + RESTART/20210322.180000.fv_core.res.tile2.nc \ + RESTART/20210322.180000.fv_core.res.tile3.nc \ + RESTART/20210322.180000.fv_core.res.tile4.nc \ + RESTART/20210322.180000.fv_core.res.tile5.nc \ + RESTART/20210322.180000.fv_core.res.tile6.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210322.180000.fv_tracer.res.tile1.nc \ + RESTART/20210322.180000.fv_tracer.res.tile2.nc \ + RESTART/20210322.180000.fv_tracer.res.tile3.nc \ + RESTART/20210322.180000.fv_tracer.res.tile4.nc \ + RESTART/20210322.180000.fv_tracer.res.tile5.nc \ + RESTART/20210322.180000.fv_tracer.res.tile6.nc \ + RESTART/20210322.180000.phy_data.tile1.nc \ + RESTART/20210322.180000.phy_data.tile2.nc \ + RESTART/20210322.180000.phy_data.tile3.nc \ + RESTART/20210322.180000.phy_data.tile4.nc \ + RESTART/20210322.180000.phy_data.tile5.nc \ + RESTART/20210322.180000.phy_data.tile6.nc \ + RESTART/20210322.180000.sfc_data.tile1.nc \ + RESTART/20210322.180000.sfc_data.tile2.nc \ + RESTART/20210322.180000.sfc_data.tile3.nc \ + RESTART/20210322.180000.sfc_data.tile4.nc \ + RESTART/20210322.180000.sfc_data.tile5.nc \ + RESTART/20210322.180000.sfc_data.tile6.nc" export_fv3 export NPZ=127 diff --git a/tests/tests/hrrr_control_dyn32_phy32 b/tests/tests/hrrr_control_dyn32_phy32 index 84367fbdcd4..aee729a1311 100644 --- a/tests/tests/hrrr_control_dyn32_phy32 +++ b/tests/tests/hrrr_control_dyn32_phy32 @@ -20,38 +20,38 @@ export LIST_FILES="sfcf000.nc \ GFSPRS.GrbF00 \ GFSPRS.GrbF09 \ GFSPRS.GrbF12 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" + RESTART/20210322.180000.coupler.res \ + RESTART/20210322.180000.fv_core.res.nc \ + RESTART/20210322.180000.fv_core.res.tile1.nc \ + RESTART/20210322.180000.fv_core.res.tile2.nc \ + RESTART/20210322.180000.fv_core.res.tile3.nc \ + RESTART/20210322.180000.fv_core.res.tile4.nc \ + RESTART/20210322.180000.fv_core.res.tile5.nc \ + RESTART/20210322.180000.fv_core.res.tile6.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210322.180000.fv_tracer.res.tile1.nc \ + RESTART/20210322.180000.fv_tracer.res.tile2.nc \ + RESTART/20210322.180000.fv_tracer.res.tile3.nc \ + RESTART/20210322.180000.fv_tracer.res.tile4.nc \ + RESTART/20210322.180000.fv_tracer.res.tile5.nc \ + RESTART/20210322.180000.fv_tracer.res.tile6.nc \ + RESTART/20210322.180000.phy_data.tile1.nc \ + RESTART/20210322.180000.phy_data.tile2.nc \ + RESTART/20210322.180000.phy_data.tile3.nc \ + RESTART/20210322.180000.phy_data.tile4.nc \ + RESTART/20210322.180000.phy_data.tile5.nc \ + RESTART/20210322.180000.phy_data.tile6.nc \ + RESTART/20210322.180000.sfc_data.tile1.nc \ + RESTART/20210322.180000.sfc_data.tile2.nc \ + RESTART/20210322.180000.sfc_data.tile3.nc \ + RESTART/20210322.180000.sfc_data.tile4.nc \ + RESTART/20210322.180000.sfc_data.tile5.nc \ + RESTART/20210322.180000.sfc_data.tile6.nc" export_fv3 export NPZ=127 diff --git a/tests/tests/hrrr_control_restart b/tests/tests/hrrr_control_restart index 65bddba1cb6..9292f6e8fad 100644 --- a/tests/tests/hrrr_control_restart +++ b/tests/tests/hrrr_control_restart @@ -12,38 +12,38 @@ export LIST_FILES="sfcf012.nc \ atmf012.nc \ GFSFLX.GrbF12 \ GFSPRS.GrbF12 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc" export_fv3 export NPZ=127 diff --git a/tests/tests/hrrr_control_restart_dyn32_phy32 b/tests/tests/hrrr_control_restart_dyn32_phy32 index 70f474dc539..a10379c0883 100644 --- a/tests/tests/hrrr_control_restart_dyn32_phy32 +++ b/tests/tests/hrrr_control_restart_dyn32_phy32 @@ -12,38 +12,38 @@ export LIST_FILES="sfcf012.nc \ atmf012.nc \ GFSFLX.GrbF12 \ GFSPRS.GrbF12 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" + RESTART/20210322.180000.coupler.res \ + RESTART/20210322.180000.fv_core.res.nc \ + RESTART/20210322.180000.fv_core.res.tile1.nc \ + RESTART/20210322.180000.fv_core.res.tile2.nc \ + RESTART/20210322.180000.fv_core.res.tile3.nc \ + RESTART/20210322.180000.fv_core.res.tile4.nc \ + RESTART/20210322.180000.fv_core.res.tile5.nc \ + RESTART/20210322.180000.fv_core.res.tile6.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210322.180000.fv_tracer.res.tile1.nc \ + RESTART/20210322.180000.fv_tracer.res.tile2.nc \ + RESTART/20210322.180000.fv_tracer.res.tile3.nc \ + RESTART/20210322.180000.fv_tracer.res.tile4.nc \ + RESTART/20210322.180000.fv_tracer.res.tile5.nc \ + RESTART/20210322.180000.fv_tracer.res.tile6.nc \ + RESTART/20210322.180000.phy_data.tile1.nc \ + RESTART/20210322.180000.phy_data.tile2.nc \ + RESTART/20210322.180000.phy_data.tile3.nc \ + RESTART/20210322.180000.phy_data.tile4.nc \ + RESTART/20210322.180000.phy_data.tile5.nc \ + RESTART/20210322.180000.phy_data.tile6.nc \ + RESTART/20210322.180000.sfc_data.tile1.nc \ + RESTART/20210322.180000.sfc_data.tile2.nc \ + RESTART/20210322.180000.sfc_data.tile3.nc \ + RESTART/20210322.180000.sfc_data.tile4.nc \ + RESTART/20210322.180000.sfc_data.tile5.nc \ + RESTART/20210322.180000.sfc_data.tile6.nc" export_fv3 export NPZ=127 diff --git a/tests/tests/merra2_thompson b/tests/tests/merra2_thompson index 3364400fb67..c401e83d2f4 100644 --- a/tests/tests/merra2_thompson +++ b/tests/tests/merra2_thompson @@ -20,38 +20,38 @@ export LIST_FILES="sfcf000.nc \ GFSPRS.GrbF00 \ GFSPRS.GrbF21 \ GFSPRS.GrbF24 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc" export_fv3 export NPZ=127 diff --git a/tests/tests/rap_2threads b/tests/tests/rap_2threads index b486475785b..4b63c36c2c3 100644 --- a/tests/tests/rap_2threads +++ b/tests/tests/rap_2threads @@ -20,38 +20,38 @@ export LIST_FILES="sfcf000.nc \ GFSPRS.GrbF00 \ GFSPRS.GrbF21 \ GFSPRS.GrbF24 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc" export_fv3 export NPZ=127 diff --git a/tests/tests/rap_2threads_dyn32_phy32 b/tests/tests/rap_2threads_dyn32_phy32 index e9e6bfde266..ffbc7318cfa 100644 --- a/tests/tests/rap_2threads_dyn32_phy32 +++ b/tests/tests/rap_2threads_dyn32_phy32 @@ -20,38 +20,38 @@ export LIST_FILES="sfcf000.nc \ GFSPRS.GrbF00 \ GFSPRS.GrbF09 \ GFSPRS.GrbF12 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc" export_fv3 export NPZ=127 diff --git a/tests/tests/rap_control b/tests/tests/rap_control index 47c8731406c..6d62bec12c4 100644 --- a/tests/tests/rap_control +++ b/tests/tests/rap_control @@ -20,38 +20,38 @@ export LIST_FILES="sfcf000.nc \ GFSPRS.GrbF00 \ GFSPRS.GrbF21 \ GFSPRS.GrbF24 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc" export_fv3 export NPZ=127 diff --git a/tests/tests/rap_control_dyn32_phy32 b/tests/tests/rap_control_dyn32_phy32 index 2210faa02e7..7f115435cc0 100644 --- a/tests/tests/rap_control_dyn32_phy32 +++ b/tests/tests/rap_control_dyn32_phy32 @@ -20,38 +20,38 @@ export LIST_FILES="sfcf000.nc \ GFSPRS.GrbF00 \ GFSPRS.GrbF09 \ GFSPRS.GrbF12 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc" export_fv3 export NPZ=127 diff --git a/tests/tests/rap_control_dyn64_phy32 b/tests/tests/rap_control_dyn64_phy32 index 83017191737..3b979124de7 100644 --- a/tests/tests/rap_control_dyn64_phy32 +++ b/tests/tests/rap_control_dyn64_phy32 @@ -20,38 +20,38 @@ export LIST_FILES="sfcf000.nc \ GFSPRS.GrbF00 \ GFSPRS.GrbF09 \ GFSPRS.GrbF12 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" + RESTART/20210322.180000.coupler.res \ + RESTART/20210322.180000.fv_core.res.nc \ + RESTART/20210322.180000.fv_core.res.tile1.nc \ + RESTART/20210322.180000.fv_core.res.tile2.nc \ + RESTART/20210322.180000.fv_core.res.tile3.nc \ + RESTART/20210322.180000.fv_core.res.tile4.nc \ + RESTART/20210322.180000.fv_core.res.tile5.nc \ + RESTART/20210322.180000.fv_core.res.tile6.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210322.180000.fv_tracer.res.tile1.nc \ + RESTART/20210322.180000.fv_tracer.res.tile2.nc \ + RESTART/20210322.180000.fv_tracer.res.tile3.nc \ + RESTART/20210322.180000.fv_tracer.res.tile4.nc \ + RESTART/20210322.180000.fv_tracer.res.tile5.nc \ + RESTART/20210322.180000.fv_tracer.res.tile6.nc \ + RESTART/20210322.180000.phy_data.tile1.nc \ + RESTART/20210322.180000.phy_data.tile2.nc \ + RESTART/20210322.180000.phy_data.tile3.nc \ + RESTART/20210322.180000.phy_data.tile4.nc \ + RESTART/20210322.180000.phy_data.tile5.nc \ + RESTART/20210322.180000.phy_data.tile6.nc \ + RESTART/20210322.180000.sfc_data.tile1.nc \ + RESTART/20210322.180000.sfc_data.tile2.nc \ + RESTART/20210322.180000.sfc_data.tile3.nc \ + RESTART/20210322.180000.sfc_data.tile4.nc \ + RESTART/20210322.180000.sfc_data.tile5.nc \ + RESTART/20210322.180000.sfc_data.tile6.nc" export_fv3 export NPZ=127 diff --git a/tests/tests/rap_decomp b/tests/tests/rap_decomp index a5dc2867f28..a70eafea0e8 100644 --- a/tests/tests/rap_decomp +++ b/tests/tests/rap_decomp @@ -20,38 +20,38 @@ export LIST_FILES="sfcf000.nc \ GFSPRS.GrbF00 \ GFSPRS.GrbF21 \ GFSPRS.GrbF24 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc" export_fv3 export NPZ=127 diff --git a/tests/tests/rap_restart b/tests/tests/rap_restart index b9784f3d39a..bd1fd04961d 100644 --- a/tests/tests/rap_restart +++ b/tests/tests/rap_restart @@ -12,38 +12,38 @@ export LIST_FILES="sfcf024.nc \ atmf024.nc \ GFSFLX.GrbF24 \ GFSPRS.GrbF24 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc" export_fv3 export NPZ=127 diff --git a/tests/tests/rap_restart_dyn32_phy32 b/tests/tests/rap_restart_dyn32_phy32 index 047d4b32ddc..1c18453c5d9 100644 --- a/tests/tests/rap_restart_dyn32_phy32 +++ b/tests/tests/rap_restart_dyn32_phy32 @@ -12,38 +12,38 @@ export LIST_FILES="sfcf012.nc \ atmf012.nc \ GFSFLX.GrbF12 \ GFSPRS.GrbF12 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc" export_fv3 export NPZ=127 diff --git a/tests/tests/rap_sfcdiff b/tests/tests/rap_sfcdiff index 9a3538edb9f..3d05397b7b6 100644 --- a/tests/tests/rap_sfcdiff +++ b/tests/tests/rap_sfcdiff @@ -20,38 +20,38 @@ export LIST_FILES="sfcf000.nc \ GFSPRS.GrbF00 \ GFSPRS.GrbF09 \ GFSPRS.GrbF12 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc" export_fv3 export NPZ=127 diff --git a/tests/tests/rap_sfcdiff_decomp b/tests/tests/rap_sfcdiff_decomp index 2a15534b734..e06f4ab50bd 100644 --- a/tests/tests/rap_sfcdiff_decomp +++ b/tests/tests/rap_sfcdiff_decomp @@ -20,38 +20,38 @@ export LIST_FILES="sfcf000.nc \ GFSPRS.GrbF00 \ GFSPRS.GrbF09 \ GFSPRS.GrbF12 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc" export_fv3 export NPZ=127 diff --git a/tests/tests/rap_sfcdiff_restart b/tests/tests/rap_sfcdiff_restart index 4a3b35fb7d5..f73064e6f51 100644 --- a/tests/tests/rap_sfcdiff_restart +++ b/tests/tests/rap_sfcdiff_restart @@ -12,38 +12,38 @@ export LIST_FILES="sfcf012.nc \ atmf012.nc \ GFSFLX.GrbF12 \ GFSPRS.GrbF12 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc" export_fv3 export NPZ=127 diff --git a/tests/tests/regional_atmaq b/tests/tests/regional_atmaq index 497025ec28d..862a6b81b46 100644 --- a/tests/tests/regional_atmaq +++ b/tests/tests/regional_atmaq @@ -14,13 +14,13 @@ export LIST_FILES="sfcf000.nc \ atmf000.nc \ atmf003.nc \ atmf006.nc \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/phy_data.nc \ - RESTART/sfc_data.nc" + RESTART/20190801.180000.coupler.res \ + RESTART/20190801.180000.fv_core.res.nc \ + RESTART/20190801.180000.fv_core.res.tile1.nc \ + RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc \ + RESTART/20190801.180000.fv_tracer.res.tile1.nc \ + RESTART/20190801.180000.phy_data.nc \ + RESTART/20190801.180000.sfc_data.nc" export_fv3 diff --git a/tests/tests/regional_atmaq_debug b/tests/tests/regional_atmaq_debug index 1577e51d7f0..f1579015082 100644 --- a/tests/tests/regional_atmaq_debug +++ b/tests/tests/regional_atmaq_debug @@ -12,13 +12,13 @@ export LIST_FILES="sfcf000.nc \ sfcf001.nc \ atmf000.nc \ atmf001.nc \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/phy_data.nc \ - RESTART/sfc_data.nc" + RESTART/20190801.130000.coupler.res \ + RESTART/20190801.130000.fv_core.res.nc \ + RESTART/20190801.130000.fv_core.res.tile1.nc \ + RESTART/20190801.130000.fv_srf_wnd.res.tile1.nc \ + RESTART/20190801.130000.fv_tracer.res.tile1.nc \ + RESTART/20190801.130000.phy_data.nc \ + RESTART/20190801.130000.sfc_data.nc" export_fv3 diff --git a/tests/tests/rrfs_v1beta b/tests/tests/rrfs_v1beta index 69c88565afc..514d9b0435f 100644 --- a/tests/tests/rrfs_v1beta +++ b/tests/tests/rrfs_v1beta @@ -20,38 +20,38 @@ export LIST_FILES="sfcf000.nc \ GFSPRS.GrbF00 \ GFSPRS.GrbF09 \ GFSPRS.GrbF12 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc" export_fv3 export NPZ=127 From 94cc62ac76ac259fce6cd1041dc280f603e29723 Mon Sep 17 00:00:00 2001 From: dustinswales Date: Thu, 2 Mar 2023 17:08:18 -0700 Subject: [PATCH 03/30] NCAR-main PR#956 (#1604) * Update FV3 * Merge pull request #67 from dustinswales/accumulated_cleanup * Updated physics * Reverting DISKNM/gaea to original * add new BL_DATE --- FV3 | 2 +- tests/RegressionTests_acorn.intel.log | 4368 +++++++++++----------- tests/RegressionTests_cheyenne.gnu.log | 324 +- tests/RegressionTests_cheyenne.intel.log | 1101 +++--- tests/RegressionTests_gaea.intel.log | 1418 +++---- tests/RegressionTests_hera.gnu.log | 420 +-- tests/RegressionTests_hera.intel.log | 1274 +++---- tests/RegressionTests_jet.intel.log | 1162 +++--- tests/RegressionTests_orion.intel.log | 1280 +++---- tests/rt.sh | 4 +- 10 files changed, 5714 insertions(+), 5639 deletions(-) diff --git a/FV3 b/FV3 index 78bfe9e7db7..c932926825c 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 78bfe9e7db7d9727961d76108cf52c89e67aba3c +Subproject commit c932926825c1729fa41d127f8e8115007047722d diff --git a/tests/RegressionTests_acorn.intel.log b/tests/RegressionTests_acorn.intel.log index b1294aef152..07ba40a52d2 100644 --- a/tests/RegressionTests_acorn.intel.log +++ b/tests/RegressionTests_acorn.intel.log @@ -1,41 +1,35 @@ -Tue Feb 21 14:33:44 UTC 2023 +Thu Mar 2 15:21:43 UTC 2023 Start Regression test -Test 010 compile FAIL -Test 008 compile FAIL - - -Test 012 compile FAIL - -Compile 001 elapsed time 839 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 874 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 1745 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 1384 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 005 elapsed time 1588 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 1363 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 1620 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 008 elapsed time 1070 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 1861 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 1242 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 011 elapsed time 776 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 012 elapsed time 1235 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 786 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 1139 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 451 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 1496 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 017 elapsed time 384 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 823 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 019 elapsed time 1822 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 020 elapsed time 1427 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 021 elapsed time 1161 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 022 elapsed time 1054 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 902 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 024 elapsed time 1192 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 025 elapsed time 857 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 026 elapsed time 487 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8_mixedmode -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/cpld_control_p8_mixedmode +Compile 001 elapsed time 1290 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 991 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 745 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 476 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 005 elapsed time 474 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 705 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 453 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 652 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 1109 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 199 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 011 elapsed time 367 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 012 elapsed time 454 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 601 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 151 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 177 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 472 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 017 elapsed time 284 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 574 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 019 elapsed time 630 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 020 elapsed time 169 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 021 elapsed time 84 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 022 elapsed time 544 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 482 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 024 elapsed time 443 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 025 elapsed time 739 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 026 elapsed time 365 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8_mixedmode +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -62,52 +56,52 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 336.052077 -The maximum resident set size (KB) = 2953768 +The total amount of wall time = 334.481076 +The maximum resident set size (KB) = 2952152 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_gfsv17 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/cpld_control_gfsv17 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_gfsv17 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -133,52 +127,52 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 256.803321 -The maximum resident set size (KB) = 1578992 +The total amount of wall time = 257.957004 +The maximum resident set size (KB) = 1584784 Test 002 cpld_control_gfsv17 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/cpld_control_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -205,52 +199,52 @@ Checking test 003 cpld_control_p8 results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 387.344789 -The maximum resident set size (KB) = 2979224 +The total amount of wall time = 384.476552 +The maximum resident set size (KB) = 2978768 Test 003 cpld_control_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/cpld_restart_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -265,52 +259,52 @@ Checking test 004 cpld_restart_p8 results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 228.400979 -The maximum resident set size (KB) = 2865512 +The total amount of wall time = 231.229181 +The maximum resident set size (KB) = 2863192 Test 004 cpld_restart_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/cpld_2threads_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -325,52 +319,52 @@ Checking test 005 cpld_2threads_p8 results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 371.615636 -The maximum resident set size (KB) = 3287772 +The total amount of wall time = 373.040622 +The maximum resident set size (KB) = 3279224 Test 005 cpld_2threads_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/cpld_decomp_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/cpld_decomp_p8 Checking test 006 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -385,52 +379,52 @@ Checking test 006 cpld_decomp_p8 results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 381.835733 -The maximum resident set size (KB) = 2975372 +The total amount of wall time = 378.100860 +The maximum resident set size (KB) = 2976796 Test 006 cpld_decomp_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/cpld_mpi_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/cpld_mpi_p8 Checking test 007 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -445,52 +439,52 @@ Checking test 007 cpld_mpi_p8 results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 315.756387 -The maximum resident set size (KB) = 2918920 +The total amount of wall time = 316.076532 +The maximum resident set size (KB) = 2905832 Test 007 cpld_mpi_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_ciceC_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/cpld_control_ciceC_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_ciceC_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/cpld_control_ciceC_p8 Checking test 008 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -517,52 +511,52 @@ Checking test 008 cpld_control_ciceC_p8 results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 388.534215 -The maximum resident set size (KB) = 2978548 +The total amount of wall time = 383.555890 +The maximum resident set size (KB) = 2979144 Test 008 cpld_control_ciceC_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/cpld_control_noaero_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/cpld_control_noaero_p8 Checking test 009 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -588,52 +582,52 @@ Checking test 009 cpld_control_noaero_p8 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 281.082659 -The maximum resident set size (KB) = 1578876 +The total amount of wall time = 281.463877 +The maximum resident set size (KB) = 1568704 Test 009 cpld_control_noaero_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/cpld_control_nowave_noaero_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c96_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/cpld_control_nowave_noaero_p8 Checking test 010 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -659,50 +653,50 @@ Checking test 010 cpld_control_nowave_noaero_p8 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 297.509250 -The maximum resident set size (KB) = 1623064 +The total amount of wall time = 297.275233 +The maximum resident set size (KB) = 1630984 Test 010 cpld_control_nowave_noaero_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/cpld_control_noaero_p8_agrid +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_noaero_p8_agrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/cpld_control_noaero_p8_agrid Checking test 011 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -728,50 +722,50 @@ Checking test 011 cpld_control_noaero_p8_agrid results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 305.944027 -The maximum resident set size (KB) = 1618412 +The total amount of wall time = 305.075184 +The maximum resident set size (KB) = 1621088 Test 011 cpld_control_noaero_p8_agrid PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/cpld_control_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/cpld_control_c48 Checking test 012 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -785,50 +779,50 @@ Checking test 012 cpld_control_c48 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 430.747470 -The maximum resident set size (KB) = 2626908 +The total amount of wall time = 432.771289 +The maximum resident set size (KB) = 2627756 Test 012 cpld_control_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/cpld_warmstart_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/cpld_warmstart_c48 Checking test 013 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -842,50 +836,50 @@ Checking test 013 cpld_warmstart_c48 results .... Comparing atmf006.tile4.nc .........OK Comparing atmf006.tile5.nc .........OK Comparing atmf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.120000.coupler.res .........OK + Comparing RESTART/20210323.120000.fv_core.res.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 120.431441 -The maximum resident set size (KB) = 2651828 +The total amount of wall time = 119.298226 +The maximum resident set size (KB) = 2647060 Test 013 cpld_warmstart_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/cpld_restart_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/cpld_restart_c48 Checking test 014 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -899,50 +893,50 @@ Checking test 014 cpld_restart_c48 results .... Comparing atmf006.tile4.nc .........OK Comparing atmf006.tile5.nc .........OK Comparing atmf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.120000.coupler.res .........OK + Comparing RESTART/20210323.120000.fv_core.res.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 67.247472 -The maximum resident set size (KB) = 2057752 +The total amount of wall time = 65.665141 +The maximum resident set size (KB) = 2066656 Test 014 cpld_restart_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_CubedSphereGrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/control_CubedSphereGrid +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_CubedSphereGrid Checking test 015 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -969,14 +963,14 @@ Checking test 015 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 127.010993 -The maximum resident set size (KB) = 515628 +The total amount of wall time = 129.158615 +The maximum resident set size (KB) = 516980 Test 015 control_CubedSphereGrid PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_latlon -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/control_latlon +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_latlon +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_latlon Checking test 016 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -987,14 +981,14 @@ Checking test 016 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 129.519286 -The maximum resident set size (KB) = 518324 +The total amount of wall time = 131.358279 +The maximum resident set size (KB) = 516492 Test 016 control_latlon PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/control_wrtGauss_netcdf_parallel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_wrtGauss_netcdf_parallel Checking test 017 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1005,60 +999,60 @@ Checking test 017 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 131.526355 -The maximum resident set size (KB) = 517976 +The total amount of wall time = 133.437593 +The maximum resident set size (KB) = 518624 Test 017 control_wrtGauss_netcdf_parallel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/control_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_c48 Checking test 018 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 325.295852 -The maximum resident set size (KB) = 671088 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 326.010012 +The maximum resident set size (KB) = 672008 Test 018 control_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_c192 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/control_c192 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c192 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_c192 Checking test 019 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1069,14 +1063,14 @@ Checking test 019 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 526.200390 -The maximum resident set size (KB) = 615328 +The total amount of wall time = 528.183770 +The maximum resident set size (KB) = 612132 Test 019 control_c192 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_c384 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/control_c384 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c384 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_c384 Checking test 020 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1087,14 +1081,14 @@ Checking test 020 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 568.038812 -The maximum resident set size (KB) = 890220 +The total amount of wall time = 570.427390 +The maximum resident set size (KB) = 910064 Test 020 control_c384 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_c384gdas -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/control_c384gdas +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c384gdas +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_c384gdas Checking test 021 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1104,47 +1098,47 @@ Checking test 021 control_c384gdas results .... Comparing GFSFLX.GrbF06 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF06 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 503.521996 -The maximum resident set size (KB) = 1016600 + Comparing RESTART/20210322.060000.coupler.res .........OK + Comparing RESTART/20210322.060000.fv_core.res.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 499.590885 +The maximum resident set size (KB) = 1041152 Test 021 control_c384gdas PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/control_stochy +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_stochy Checking test 022 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1155,28 +1149,28 @@ Checking test 022 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 89.265411 -The maximum resident set size (KB) = 521296 +The total amount of wall time = 89.085162 +The maximum resident set size (KB) = 518488 Test 022 control_stochy PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/control_stochy_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_stochy_restart Checking test 023 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 45.556570 -The maximum resident set size (KB) = 283412 +The total amount of wall time = 48.216003 +The maximum resident set size (KB) = 291772 Test 023 control_stochy_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/control_lndp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_lndp Checking test 024 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1187,14 +1181,14 @@ Checking test 024 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 80.166487 -The maximum resident set size (KB) = 518764 +The total amount of wall time = 82.509418 +The maximum resident set size (KB) = 520600 Test 024 control_lndp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_iovr4 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/control_iovr4 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_iovr4 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_iovr4 Checking test 025 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1209,14 +1203,14 @@ Checking test 025 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 131.659494 -The maximum resident set size (KB) = 514632 +The total amount of wall time = 135.098192 +The maximum resident set size (KB) = 519660 -Test 025 control_iovr4 PASS Tries: 2 +Test 025 control_iovr4 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_iovr5 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/control_iovr5 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_iovr5 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_iovr5 Checking test 026 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1231,14 +1225,14 @@ Checking test 026 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 132.267299 -The maximum resident set size (KB) = 518232 +The total amount of wall time = 135.275418 +The maximum resident set size (KB) = 514692 Test 026 control_iovr5 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/control_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_p8 Checking test 027 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1252,47 +1246,47 @@ Checking test 027 control_p8 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 176.545211 -The maximum resident set size (KB) = 1486332 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 179.329315 +The maximum resident set size (KB) = 1480712 Test 027 control_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/control_p8_lndp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_p8_lndp Checking test 028 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1311,60 +1305,60 @@ Checking test 028 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 318.206313 -The maximum resident set size (KB) = 1483800 +The total amount of wall time = 319.242320 +The maximum resident set size (KB) = 1479676 Test 028 control_p8_lndp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/control_restart_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_restart_p8 Checking test 029 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 97.090955 -The maximum resident set size (KB) = 651076 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 97.924220 +The maximum resident set size (KB) = 654744 Test 029 control_restart_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/control_decomp_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_decomp_p8 Checking test 030 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1374,47 +1368,47 @@ Checking test 030 control_decomp_p8 results .... Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 176.717424 -The maximum resident set size (KB) = 1478080 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 180.385708 +The maximum resident set size (KB) = 1478480 Test 030 control_decomp_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/control_2threads_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_2threads_p8 Checking test 031 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1424,47 +1418,47 @@ Checking test 031 control_2threads_p8 results .... Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 158.485144 -The maximum resident set size (KB) = 1563160 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 159.425838 +The maximum resident set size (KB) = 1565628 Test 031 control_2threads_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8_rrtmgp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/control_p8_rrtmgp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_rrtmgp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_p8_rrtmgp Checking test 032 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1478,47 +1472,47 @@ Checking test 032 control_p8_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 228.914690 -The maximum resident set size (KB) = 1541756 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 233.111321 +The maximum resident set size (KB) = 1541564 Test 032 control_p8_rrtmgp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/merra2_thompson -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/merra2_thompson +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/merra2_thompson +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/merra2_thompson Checking test 033 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1532,47 +1526,47 @@ Checking test 033 merra2_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 201.875950 -The maximum resident set size (KB) = 1491548 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 202.611338 +The maximum resident set size (KB) = 1496256 Test 033 merra2_thompson PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/regional_control +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/regional_control Checking test 034 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1583,28 +1577,28 @@ Checking test 034 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 283.381981 -The maximum resident set size (KB) = 652064 +The total amount of wall time = 287.231767 +The maximum resident set size (KB) = 653852 Test 034 regional_control PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/regional_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/regional_restart Checking test 035 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 150.037673 -The maximum resident set size (KB) = 647472 +The total amount of wall time = 153.632906 +The maximum resident set size (KB) = 650324 Test 035 regional_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/regional_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/regional_decomp Checking test 036 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1615,14 +1609,14 @@ Checking test 036 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 298.691273 -The maximum resident set size (KB) = 652400 +The total amount of wall time = 303.668238 +The maximum resident set size (KB) = 655244 Test 036 regional_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/regional_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/regional_2threads Checking test 037 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1633,14 +1627,14 @@ Checking test 037 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 173.330316 -The maximum resident set size (KB) = 690008 +The total amount of wall time = 179.474370 +The maximum resident set size (KB) = 696628 Test 037 regional_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_noquilt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/regional_noquilt +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_noquilt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/regional_noquilt Checking test 038 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1648,14 +1642,14 @@ Checking test 038 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 308.593528 -The maximum resident set size (KB) = 640504 +The total amount of wall time = 311.172013 +The maximum resident set size (KB) = 645260 Test 038 regional_noquilt PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/regional_2dwrtdecomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/regional_2dwrtdecomp Checking test 039 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1666,14 +1660,14 @@ Checking test 039 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 281.605216 -The maximum resident set size (KB) = 652796 +The total amount of wall time = 286.956231 +The maximum resident set size (KB) = 650296 Test 039 regional_2dwrtdecomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/fv3_regional_wofs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/regional_wofs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/fv3_regional_wofs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/regional_wofs Checking test 040 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1684,14 +1678,14 @@ Checking test 040 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 360.514136 -The maximum resident set size (KB) = 335616 +The total amount of wall time = 361.629575 +The maximum resident set size (KB) = 340444 Test 040 regional_wofs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/rap_control +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rap_control Checking test 041 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1705,47 +1699,47 @@ Checking test 041 rap_control results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 418.174415 -The maximum resident set size (KB) = 889680 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 420.070839 +The maximum resident set size (KB) = 894496 Test 041 rap_control PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/regional_spp_sppt_shum_skeb +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_spp_sppt_shum_skeb +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/regional_spp_sppt_shum_skeb Checking test 042 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -1756,14 +1750,14 @@ Checking test 042 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 282.560617 -The maximum resident set size (KB) = 991408 +The total amount of wall time = 284.555017 +The maximum resident set size (KB) = 982396 Test 042 regional_spp_sppt_shum_skeb PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/rap_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rap_decomp Checking test 043 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1777,47 +1771,47 @@ Checking test 043 rap_decomp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 429.750193 -The maximum resident set size (KB) = 893040 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 432.746571 +The maximum resident set size (KB) = 890064 Test 043 rap_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/rap_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rap_2threads Checking test 044 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1831,93 +1825,93 @@ Checking test 044 rap_2threads results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 389.674455 -The maximum resident set size (KB) = 965672 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 391.758371 +The maximum resident set size (KB) = 963104 Test 044 rap_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/rap_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rap_restart Checking test 045 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 209.736923 -The maximum resident set size (KB) = 645048 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 212.763103 +The maximum resident set size (KB) = 644212 Test 045 rap_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/rap_sfcdiff +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rap_sfcdiff Checking test 046 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1931,47 +1925,47 @@ Checking test 046 rap_sfcdiff results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 414.167723 -The maximum resident set size (KB) = 890176 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 415.671199 +The maximum resident set size (KB) = 894088 Test 046 rap_sfcdiff PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/rap_sfcdiff_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rap_sfcdiff_decomp Checking test 047 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1985,93 +1979,93 @@ Checking test 047 rap_sfcdiff_decomp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 431.079549 -The maximum resident set size (KB) = 892944 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 432.058084 +The maximum resident set size (KB) = 891032 Test 047 rap_sfcdiff_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/rap_sfcdiff_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rap_sfcdiff_restart Checking test 048 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 308.024314 -The maximum resident set size (KB) = 637428 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 309.645106 +The maximum resident set size (KB) = 641552 Test 048 rap_sfcdiff_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/hrrr_control +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hrrr_control Checking test 049 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2085,47 +2079,47 @@ Checking test 049 hrrr_control results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 400.027821 -The maximum resident set size (KB) = 892348 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 400.572383 +The maximum resident set size (KB) = 893116 Test 049 hrrr_control PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/hrrr_control_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hrrr_control_decomp Checking test 050 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2139,47 +2133,47 @@ Checking test 050 hrrr_control_decomp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 414.381970 -The maximum resident set size (KB) = 889120 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 413.368700 +The maximum resident set size (KB) = 888484 Test 050 hrrr_control_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/hrrr_control_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hrrr_control_2threads Checking test 051 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2193,93 +2187,93 @@ Checking test 051 hrrr_control_2threads results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 371.439518 -The maximum resident set size (KB) = 951016 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 370.466919 +The maximum resident set size (KB) = 961068 Test 051 hrrr_control_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/hrrr_control_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hrrr_control_restart Checking test 052 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 295.653602 -The maximum resident set size (KB) = 641936 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 298.050564 +The maximum resident set size (KB) = 638872 Test 052 hrrr_control_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_v1beta -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/rrfs_v1beta +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1beta +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rrfs_v1beta Checking test 053 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2293,47 +2287,47 @@ Checking test 053 rrfs_v1beta results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 409.041933 -The maximum resident set size (KB) = 887364 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 409.729662 +The maximum resident set size (KB) = 890724 Test 053 rrfs_v1beta PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_v1nssl -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/rrfs_v1nssl +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1nssl +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rrfs_v1nssl Checking test 054 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2348,14 +2342,14 @@ Checking test 054 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 471.777035 -The maximum resident set size (KB) = 575464 +The total amount of wall time = 473.105497 +The maximum resident set size (KB) = 574808 Test 054 rrfs_v1nssl PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/rrfs_v1nssl_nohailnoccn +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rrfs_v1nssl_nohailnoccn Checking test 055 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2370,14 +2364,14 @@ Checking test 055 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 462.988811 -The maximum resident set size (KB) = 564932 +The total amount of wall time = 464.073847 +The maximum resident set size (KB) = 566904 Test 055 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/rrfs_conus13km_hrrr_warm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rrfs_conus13km_hrrr_warm Checking test 056 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2386,14 +2380,14 @@ Checking test 056 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 115.167950 -The maximum resident set size (KB) = 763992 +The total amount of wall time = 114.055415 +The maximum resident set size (KB) = 763364 Test 056 rrfs_conus13km_hrrr_warm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rrfs_smoke_conus13km_hrrr_warm Checking test 057 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2402,14 +2396,14 @@ Checking test 057 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 126.390821 -The maximum resident set size (KB) = 774156 +The total amount of wall time = 125.886151 +The maximum resident set size (KB) = 774232 Test 057 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/rrfs_conus13km_radar_tten_warm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rrfs_conus13km_radar_tten_warm Checking test 058 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2418,14 +2412,14 @@ Checking test 058 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 115.441074 -The maximum resident set size (KB) = 764936 +The total amount of wall time = 113.981904 +The maximum resident set size (KB) = 762344 Test 058 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/rrfs_conus13km_hrrr_warm_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rrfs_conus13km_hrrr_warm_2threads Checking test 059 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2434,14 +2428,14 @@ Checking test 059 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 85.713747 -The maximum resident set size (KB) = 758912 +The total amount of wall time = 83.199050 +The maximum resident set size (KB) = 761068 Test 059 rrfs_conus13km_hrrr_warm_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/rrfs_conus13km_radar_tten_warm_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rrfs_conus13km_radar_tten_warm_2threads Checking test 060 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2450,14 +2444,14 @@ Checking test 060 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 86.037378 -The maximum resident set size (KB) = 759924 +The total amount of wall time = 84.091555 +The maximum resident set size (KB) = 761980 Test 060 rrfs_conus13km_radar_tten_warm_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_csawmg -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/control_csawmg +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmg +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_csawmg Checking test 061 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2468,14 +2462,14 @@ Checking test 061 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 343.442204 -The maximum resident set size (KB) = 587652 +The total amount of wall time = 347.199857 +The maximum resident set size (KB) = 587476 Test 061 control_csawmg PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_csawmgt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/control_csawmgt +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmgt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_csawmgt Checking test 062 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2486,14 +2480,14 @@ Checking test 062 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 340.673141 -The maximum resident set size (KB) = 584772 +The total amount of wall time = 342.273681 +The maximum resident set size (KB) = 584264 Test 062 control_csawmgt PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_ras -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/control_ras +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_ras +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_ras Checking test 063 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2504,54 +2498,54 @@ Checking test 063 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 178.674586 -The maximum resident set size (KB) = 550604 +The total amount of wall time = 180.943794 +The maximum resident set size (KB) = 551480 Test 063 control_ras PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_wam -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/control_wam +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wam +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_wam Checking test 064 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 115.965585 -The maximum resident set size (KB) = 264184 +The total amount of wall time = 117.214769 +The maximum resident set size (KB) = 270648 Test 064 control_wam PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/rrfs_conus13km_hrrr_warm_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rrfs_conus13km_hrrr_warm_debug Checking test 065 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 769.617942 -The maximum resident set size (KB) = 787980 +The total amount of wall time = 781.535028 +The maximum resident set size (KB) = 790528 Test 065 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/rrfs_conus13km_radar_tten_warm_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rrfs_conus13km_radar_tten_warm_debug Checking test 066 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 770.542643 -The maximum resident set size (KB) = 793688 +The total amount of wall time = 782.697806 +The maximum resident set size (KB) = 790052 Test 066 rrfs_conus13km_radar_tten_warm_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_CubedSphereGrid_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/control_CubedSphereGrid_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_CubedSphereGrid_debug Checking test 067 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2578,334 +2572,334 @@ Checking test 067 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 163.436336 -The maximum resident set size (KB) = 675268 +The total amount of wall time = 166.713904 +The maximum resident set size (KB) = 676512 -Test 067 control_CubedSphereGrid_debug PASS Tries: 2 +Test 067 control_CubedSphereGrid_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/control_wrtGauss_netcdf_parallel_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_wrtGauss_netcdf_parallel_debug Checking test 068 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 155.956029 -The maximum resident set size (KB) = 679040 +The total amount of wall time = 159.881383 +The maximum resident set size (KB) = 673872 Test 068 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_stochy_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/control_stochy_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_stochy_debug Checking test 069 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 175.792305 -The maximum resident set size (KB) = 684504 +The total amount of wall time = 180.405845 +The maximum resident set size (KB) = 681888 Test 069 control_stochy_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/control_lndp_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_lndp_debug Checking test 070 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 158.353617 -The maximum resident set size (KB) = 679096 +The total amount of wall time = 161.769097 +The maximum resident set size (KB) = 679956 Test 070 control_lndp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_csawmg_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/control_csawmg_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmg_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_csawmg_debug Checking test 071 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 252.538537 -The maximum resident set size (KB) = 716808 +The total amount of wall time = 256.711065 +The maximum resident set size (KB) = 715940 Test 071 control_csawmg_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_csawmgt_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/control_csawmgt_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmgt_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_csawmgt_debug Checking test 072 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 247.933033 -The maximum resident set size (KB) = 717652 +The total amount of wall time = 252.279167 +The maximum resident set size (KB) = 717584 Test 072 control_csawmgt_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_ras_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/control_ras_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_ras_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_ras_debug Checking test 073 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 159.395706 -The maximum resident set size (KB) = 690388 +The total amount of wall time = 163.026489 +The maximum resident set size (KB) = 685668 Test 073 control_ras_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/control_diag_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_diag_debug Checking test 074 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 160.367766 -The maximum resident set size (KB) = 737832 +The total amount of wall time = 164.885135 +The maximum resident set size (KB) = 735780 Test 074 control_diag_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_debug_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/control_debug_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_debug_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_debug_p8 Checking test 075 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 183.538006 -The maximum resident set size (KB) = 1499172 +The total amount of wall time = 185.377153 +The maximum resident set size (KB) = 1495768 Test 075 control_debug_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/regional_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/regional_debug Checking test 076 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1033.357888 -The maximum resident set size (KB) = 668904 +The total amount of wall time = 1040.923624 +The maximum resident set size (KB) = 675436 Test 076 regional_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/rap_control_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rap_control_debug Checking test 077 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 293.998202 -The maximum resident set size (KB) = 1050456 +The total amount of wall time = 298.407909 +The maximum resident set size (KB) = 1053816 Test 077 rap_control_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/hrrr_control_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hrrr_control_debug Checking test 078 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 288.614407 -The maximum resident set size (KB) = 1049120 +The total amount of wall time = 291.892020 +The maximum resident set size (KB) = 1050012 Test 078 hrrr_control_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/rap_unified_drag_suite_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rap_unified_drag_suite_debug Checking test 079 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 295.773782 -The maximum resident set size (KB) = 1052936 +The total amount of wall time = 296.711943 +The maximum resident set size (KB) = 1053164 Test 079 rap_unified_drag_suite_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/rap_diag_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rap_diag_debug Checking test 080 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 305.315683 -The maximum resident set size (KB) = 1135316 +The total amount of wall time = 309.738316 +The maximum resident set size (KB) = 1137036 Test 080 rap_diag_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/rap_cires_ugwp_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rap_cires_ugwp_debug Checking test 081 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.729584 -The maximum resident set size (KB) = 1049648 +The total amount of wall time = 306.876266 +The maximum resident set size (KB) = 1050148 Test 081 rap_cires_ugwp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/rap_unified_ugwp_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rap_unified_ugwp_debug Checking test 082 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 301.090226 -The maximum resident set size (KB) = 1054668 +The total amount of wall time = 304.754285 +The maximum resident set size (KB) = 1051244 Test 082 rap_unified_ugwp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/rap_lndp_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rap_lndp_debug Checking test 083 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 295.788107 -The maximum resident set size (KB) = 1053920 +The total amount of wall time = 301.109413 +The maximum resident set size (KB) = 1053308 Test 083 rap_lndp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_flake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/rap_flake_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_flake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rap_flake_debug Checking test 084 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 295.309639 -The maximum resident set size (KB) = 1051308 +The total amount of wall time = 297.582210 +The maximum resident set size (KB) = 1049912 Test 084 rap_flake_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_progcld_thompson_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/rap_progcld_thompson_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_progcld_thompson_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rap_progcld_thompson_debug Checking test 085 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 294.071467 -The maximum resident set size (KB) = 1053596 +The total amount of wall time = 298.504472 +The maximum resident set size (KB) = 1051704 Test 085 rap_progcld_thompson_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_noah_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/rap_noah_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_noah_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rap_noah_debug Checking test 086 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 287.759695 -The maximum resident set size (KB) = 1050548 +The total amount of wall time = 291.644683 +The maximum resident set size (KB) = 1047532 Test 086 rap_noah_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_sfcdiff_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/rap_sfcdiff_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rap_sfcdiff_debug Checking test 087 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 296.016392 -The maximum resident set size (KB) = 1055208 +The total amount of wall time = 297.172985 +The maximum resident set size (KB) = 1051596 Test 087 rap_sfcdiff_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rap_noah_sfcdiff_cires_ugwp_debug Checking test 088 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 482.889693 -The maximum resident set size (KB) = 1049564 +The total amount of wall time = 487.865717 +The maximum resident set size (KB) = 1048928 Test 088 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rrfs_v1beta_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/rrfs_v1beta_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1beta_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rrfs_v1beta_debug Checking test 089 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 289.475202 -The maximum resident set size (KB) = 1049584 +The total amount of wall time = 291.855801 +The maximum resident set size (KB) = 1048412 Test 089 rrfs_v1beta_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_wam_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/control_wam_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wam_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_wam_debug Checking test 090 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 293.916732 -The maximum resident set size (KB) = 296576 +The total amount of wall time = 300.016643 +The maximum resident set size (KB) = 302804 Test 090 control_wam_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 091 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2916,14 +2910,14 @@ Checking test 091 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 267.929792 -The maximum resident set size (KB) = 878092 +The total amount of wall time = 269.007024 +The maximum resident set size (KB) = 882996 Test 091 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/rap_control_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rap_control_dyn32_phy32 Checking test 092 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2937,47 +2931,47 @@ Checking test 092 rap_control_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 342.428695 -The maximum resident set size (KB) = 775300 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 341.349279 +The maximum resident set size (KB) = 777900 Test 092 rap_control_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/hrrr_control_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hrrr_control_dyn32_phy32 Checking test 093 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2991,47 +2985,47 @@ Checking test 093 hrrr_control_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 180.607554 -The maximum resident set size (KB) = 775932 + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 183.251391 +The maximum resident set size (KB) = 773240 Test 093 hrrr_control_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/rap_2threads_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rap_2threads_dyn32_phy32 Checking test 094 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3045,47 +3039,47 @@ Checking test 094 rap_2threads_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 319.928795 -The maximum resident set size (KB) = 831856 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 319.640708 +The maximum resident set size (KB) = 830044 Test 094 rap_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/hrrr_control_2threads_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hrrr_control_2threads_dyn32_phy32 Checking test 095 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3099,47 +3093,47 @@ Checking test 095 hrrr_control_2threads_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 170.690656 -The maximum resident set size (KB) = 832096 + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 173.488743 +The maximum resident set size (KB) = 829668 Test 095 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/hrrr_control_decomp_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hrrr_control_decomp_dyn32_phy32 Checking test 096 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3153,139 +3147,139 @@ Checking test 096 hrrr_control_decomp_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 187.895397 -The maximum resident set size (KB) = 774784 + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 190.663696 +The maximum resident set size (KB) = 773348 Test 096 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/rap_restart_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rap_restart_dyn32_phy32 Checking test 097 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 252.234766 -The maximum resident set size (KB) = 613148 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 256.107888 +The maximum resident set size (KB) = 613992 Test 097 rap_restart_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/hrrr_control_restart_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hrrr_control_restart_dyn32_phy32 Checking test 098 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 91.912149 -The maximum resident set size (KB) = 606340 + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 94.909814 +The maximum resident set size (KB) = 608028 Test 098 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/rap_control_dyn64_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rap_control_dyn64_phy32 Checking test 099 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3299,114 +3293,114 @@ Checking test 099 rap_control_dyn64_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 230.504166 -The maximum resident set size (KB) = 798712 + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 232.052345 +The maximum resident set size (KB) = 799368 Test 099 rap_control_dyn64_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/rap_control_debug_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rap_control_debug_dyn32_phy32 Checking test 100 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 286.891340 -The maximum resident set size (KB) = 938500 +The total amount of wall time = 289.908722 +The maximum resident set size (KB) = 937040 Test 100 rap_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/hrrr_control_debug_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hrrr_control_debug_dyn32_phy32 Checking test 101 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 282.178230 -The maximum resident set size (KB) = 936048 +The total amount of wall time = 285.267615 +The maximum resident set size (KB) = 936956 Test 101 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/rap_control_dyn64_phy32_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rap_control_dyn64_phy32_debug Checking test 102 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 293.895214 -The maximum resident set size (KB) = 955056 +The total amount of wall time = 292.911015 +The maximum resident set size (KB) = 955148 Test 102 rap_control_dyn64_phy32_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/hafs_regional_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hafs_regional_atm Checking test 103 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 252.242601 -The maximum resident set size (KB) = 793504 +The total amount of wall time = 265.064159 +The maximum resident set size (KB) = 822880 Test 103 hafs_regional_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/hafs_regional_atm_thompson_gfdlsf +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hafs_regional_atm_thompson_gfdlsf Checking test 104 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 296.923806 -The maximum resident set size (KB) = 1154780 +The total amount of wall time = 303.250403 +The maximum resident set size (KB) = 1180404 Test 104 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/hafs_regional_atm_ocn +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hafs_regional_atm_ocn Checking test 105 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3415,14 +3409,14 @@ Checking test 105 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 375.729662 -The maximum resident set size (KB) = 832048 +The total amount of wall time = 385.547911 +The maximum resident set size (KB) = 852396 Test 105 hafs_regional_atm_ocn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_atm_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/hafs_regional_atm_wav +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hafs_regional_atm_wav Checking test 106 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3431,14 +3425,14 @@ Checking test 106 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 692.796337 -The maximum resident set size (KB) = 869984 +The total amount of wall time = 705.788910 +The maximum resident set size (KB) = 883720 Test 106 hafs_regional_atm_wav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/hafs_regional_atm_ocn_wav +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hafs_regional_atm_ocn_wav Checking test 107 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3449,28 +3443,28 @@ Checking test 107 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 891.804172 -The maximum resident set size (KB) = 893924 +The total amount of wall time = 900.309232 +The maximum resident set size (KB) = 908680 Test 107 hafs_regional_atm_ocn_wav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/hafs_regional_1nest_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hafs_regional_1nest_atm Checking test 108 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 324.160912 -The maximum resident set size (KB) = 388396 +The total amount of wall time = 327.253644 +The maximum resident set size (KB) = 388876 Test 108 hafs_regional_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/hafs_regional_telescopic_2nests_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hafs_regional_telescopic_2nests_atm Checking test 109 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3479,28 +3473,28 @@ Checking test 109 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 394.510526 -The maximum resident set size (KB) = 403492 +The total amount of wall time = 396.765267 +The maximum resident set size (KB) = 413440 Test 109 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_global_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/hafs_global_1nest_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hafs_global_1nest_atm Checking test 110 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 163.200722 -The maximum resident set size (KB) = 261900 +The total amount of wall time = 165.112841 +The maximum resident set size (KB) = 267420 Test 110 hafs_global_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_global_multiple_4nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/hafs_global_multiple_4nests_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_multiple_4nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hafs_global_multiple_4nests_atm Checking test 111 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3518,14 +3512,14 @@ Checking test 111 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -The total amount of wall time = 483.916970 -The maximum resident set size (KB) = 333000 +The total amount of wall time = 485.555925 +The maximum resident set size (KB) = 336932 Test 111 hafs_global_multiple_4nests_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/hafs_regional_specified_moving_1nest_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hafs_regional_specified_moving_1nest_atm Checking test 112 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3534,28 +3528,28 @@ Checking test 112 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 210.222260 -The maximum resident set size (KB) = 398776 +The total amount of wall time = 212.305679 +The maximum resident set size (KB) = 400212 Test 112 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/hafs_regional_storm_following_1nest_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hafs_regional_storm_following_1nest_atm Checking test 113 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 199.089920 -The maximum resident set size (KB) = 399776 +The total amount of wall time = 200.800962 +The maximum resident set size (KB) = 399032 Test 113 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hafs_regional_storm_following_1nest_atm_ocn Checking test 114 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3564,42 +3558,42 @@ Checking test 114 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 236.374374 -The maximum resident set size (KB) = 449256 +The total amount of wall time = 238.407121 +The maximum resident set size (KB) = 451652 Test 114 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/hafs_global_storm_following_1nest_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hafs_global_storm_following_1nest_atm Checking test 115 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 78.393752 -The maximum resident set size (KB) = 280644 +The total amount of wall time = 78.744061 +The maximum resident set size (KB) = 277000 Test 115 hafs_global_storm_following_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 116 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 799.843645 -The maximum resident set size (KB) = 480076 +The total amount of wall time = 797.170440 +The maximum resident set size (KB) = 477196 Test 116 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 117 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3610,14 +3604,14 @@ Checking test 117 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -The total amount of wall time = 513.491856 -The maximum resident set size (KB) = 515072 +The total amount of wall time = 522.100472 +The maximum resident set size (KB) = 525720 Test 117 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_docn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/hafs_regional_docn +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_docn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hafs_regional_docn Checking test 118 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3625,14 +3619,14 @@ Checking test 118 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 359.577740 -The maximum resident set size (KB) = 837708 +The total amount of wall time = 368.849374 +The maximum resident set size (KB) = 855520 Test 118 hafs_regional_docn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_docn_oisst -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/hafs_regional_docn_oisst +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_docn_oisst +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hafs_regional_docn_oisst Checking test 119 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3640,200 +3634,200 @@ Checking test 119 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 360.255889 -The maximum resident set size (KB) = 824996 +The total amount of wall time = 369.771626 +The maximum resident set size (KB) = 841704 Test 119 hafs_regional_docn_oisst PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/hafs_regional_datm_cdeps -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/hafs_regional_datm_cdeps +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_datm_cdeps +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hafs_regional_datm_cdeps Checking test 120 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -The total amount of wall time = 941.144724 -The maximum resident set size (KB) = 867184 +The total amount of wall time = 945.048965 +The maximum resident set size (KB) = 839616 Test 120 hafs_regional_datm_cdeps PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/datm_cdeps_control_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/datm_cdeps_control_cfsr Checking test 121 datm_cdeps_control_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 140.676831 -The maximum resident set size (KB) = 732816 +The total amount of wall time = 140.684245 +The maximum resident set size (KB) = 731780 Test 121 datm_cdeps_control_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/datm_cdeps_restart_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/datm_cdeps_restart_cfsr Checking test 122 datm_cdeps_restart_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 86.448956 -The maximum resident set size (KB) = 730944 +The total amount of wall time = 85.711932 +The maximum resident set size (KB) = 727096 Test 122 datm_cdeps_restart_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_control_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/datm_cdeps_control_gefs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/datm_cdeps_control_gefs Checking test 123 datm_cdeps_control_gefs results .... - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 134.160389 -The maximum resident set size (KB) = 618260 +The total amount of wall time = 133.426149 +The maximum resident set size (KB) = 621628 Test 123 datm_cdeps_control_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_iau_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/datm_cdeps_iau_gefs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_iau_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/datm_cdeps_iau_gefs Checking test 124 datm_cdeps_iau_gefs results .... - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 136.783464 -The maximum resident set size (KB) = 613796 +The total amount of wall time = 136.157042 +The maximum resident set size (KB) = 615736 Test 124 datm_cdeps_iau_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_stochy_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/datm_cdeps_stochy_gefs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_stochy_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/datm_cdeps_stochy_gefs Checking test 125 datm_cdeps_stochy_gefs results .... - Comparing RESTART/MOM.res.nc .........OK + 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.746788 -The maximum resident set size (KB) = 614400 +The total amount of wall time = 138.117223 +The maximum resident set size (KB) = 611940 Test 125 datm_cdeps_stochy_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/datm_cdeps_ciceC_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_ciceC_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/datm_cdeps_ciceC_cfsr Checking test 126 datm_cdeps_ciceC_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.462730 -The maximum resident set size (KB) = 736644 +The total amount of wall time = 140.297758 +The maximum resident set size (KB) = 732944 Test 126 datm_cdeps_ciceC_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/datm_cdeps_bulk_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_bulk_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/datm_cdeps_bulk_cfsr Checking test 127 datm_cdeps_bulk_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 142.270541 -The maximum resident set size (KB) = 732172 +The total amount of wall time = 141.305456 +The maximum resident set size (KB) = 731540 Test 127 datm_cdeps_bulk_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/datm_cdeps_bulk_gefs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_bulk_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/datm_cdeps_bulk_gefs Checking test 128 datm_cdeps_bulk_gefs results .... - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 134.306534 -The maximum resident set size (KB) = 615156 +The total amount of wall time = 133.878019 +The maximum resident set size (KB) = 614104 Test 128 datm_cdeps_bulk_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/datm_cdeps_mx025_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_mx025_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/datm_cdeps_mx025_cfsr Checking test 129 datm_cdeps_mx025_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/20111001.120000.MOM.res.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 430.655550 -The maximum resident set size (KB) = 569576 +The total amount of wall time = 426.907088 +The maximum resident set size (KB) = 573748 Test 129 datm_cdeps_mx025_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/datm_cdeps_mx025_gefs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_mx025_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/datm_cdeps_mx025_gefs Checking test 130 datm_cdeps_mx025_gefs results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/20111001.120000.MOM.res.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 431.729307 -The maximum resident set size (KB) = 553540 +The total amount of wall time = 425.803372 +The maximum resident set size (KB) = 547372 Test 130 datm_cdeps_mx025_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/datm_cdeps_multiple_files_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/datm_cdeps_multiple_files_cfsr Checking test 131 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.158249 -The maximum resident set size (KB) = 731836 +The total amount of wall time = 141.580909 +The maximum resident set size (KB) = 719648 Test 131 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/datm_cdeps_3072x1536_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/datm_cdeps_3072x1536_cfsr Checking test 132 datm_cdeps_3072x1536_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK + 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 = 255.803613 -The maximum resident set size (KB) = 1982704 +The total amount of wall time = 257.309683 +The maximum resident set size (KB) = 1978688 Test 132 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_gfs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/datm_cdeps_gfs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_gfs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/datm_cdeps_gfs Checking test 133 datm_cdeps_gfs results .... - Comparing RESTART/MOM.res.nc .........OK + 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 = 257.456842 -The maximum resident set size (KB) = 1979176 +The total amount of wall time = 255.740749 +The maximum resident set size (KB) = 1977876 Test 133 datm_cdeps_gfs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/datm_cdeps_lnd_gswp3 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/datm_cdeps_lnd_gswp3 Checking test 134 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -3842,14 +3836,14 @@ Checking test 134 datm_cdeps_lnd_gswp3 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 = 21.933123 -The maximum resident set size (KB) = 231712 +The total amount of wall time = 22.257961 +The maximum resident set size (KB) = 227448 Test 134 datm_cdeps_lnd_gswp3 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/datm_cdeps_lnd_gswp3_rst +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/datm_cdeps_lnd_gswp3_rst Checking test 135 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -3858,14 +3852,14 @@ Checking test 135 datm_cdeps_lnd_gswp3_rst 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.409731 -The maximum resident set size (KB) = 228044 +The total amount of wall time = 27.177102 +The maximum resident set size (KB) = 232008 Test 135 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_p8_atmlnd_sbs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/control_p8_atmlnd_sbs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_atmlnd_sbs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_p8_atmlnd_sbs Checking test 136 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3903,38 +3897,38 @@ Checking test 136 control_p8_atmlnd_sbs results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK Comparing ufs.cpld.cpl.hi.lnd.2021-03-22-43200.nc .........OK Comparing ufs.cpld.cpl.hi.lnd.2021-03-23-21600.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile1.nc .........OK @@ -3950,14 +3944,14 @@ Checking test 136 control_p8_atmlnd_sbs results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 233.039512 -The maximum resident set size (KB) = 1535364 +The total amount of wall time = 235.586268 +The maximum resident set size (KB) = 1539088 Test 136 control_p8_atmlnd_sbs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/control_atmwav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/control_atmwav +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_atmwav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_atmwav Checking test 137 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -3967,48 +3961,48 @@ Checking test 137 control_atmwav results .... Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -The total amount of wall time = 87.232131 -The maximum resident set size (KB) = 539324 +The total amount of wall time = 90.130847 +The maximum resident set size (KB) = 545436 Test 137 control_atmwav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/atmaero_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/atmaero_control_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/atmaero_control_p8 Checking test 138 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4019,47 +4013,47 @@ Checking test 138 atmaero_control_p8 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 241.897865 -The maximum resident set size (KB) = 2812192 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 244.112610 +The maximum resident set size (KB) = 2811392 Test 138 atmaero_control_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/atmaero_control_p8_rad -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/atmaero_control_p8_rad +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8_rad +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/atmaero_control_p8_rad Checking test 139 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4070,47 +4064,47 @@ Checking test 139 atmaero_control_p8_rad results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 278.515667 -The maximum resident set size (KB) = 2873620 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 283.820829 +The maximum resident set size (KB) = 2876924 Test 139 atmaero_control_p8_rad PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/atmaero_control_p8_rad_micro +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8_rad_micro +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/atmaero_control_p8_rad_micro Checking test 140 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4121,47 +4115,47 @@ Checking test 140 atmaero_control_p8_rad_micro results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 283.725866 -The maximum resident set size (KB) = 2885100 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 287.329958 +The maximum resident set size (KB) = 2884692 Test 140 atmaero_control_p8_rad_micro PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_atmaq -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/regional_atmaq +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_atmaq +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/regional_atmaq Checking test 141 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4169,41 +4163,41 @@ Checking test 141 regional_atmaq results .... Comparing atmf000.nc .........OK Comparing atmf003.nc .........OK Comparing atmf006.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/phy_data.nc .........OK - Comparing RESTART/sfc_data.nc .........OK + Comparing RESTART/20190801.180000.coupler.res .........OK + Comparing RESTART/20190801.180000.fv_core.res.nc .........OK + Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.phy_data.nc .........OK + Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 656.505517 -The maximum resident set size (KB) = 1383916 +The total amount of wall time = 658.516541 +The maximum resident set size (KB) = 1408148 Test 141 regional_atmaq PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230215/INTEL/regional_atmaq_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_242567/regional_atmaq_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_atmaq_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/regional_atmaq_debug Checking test 142 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/phy_data.nc .........OK - Comparing RESTART/sfc_data.nc .........OK + Comparing RESTART/20190801.130000.coupler.res .........OK + Comparing RESTART/20190801.130000.fv_core.res.nc .........OK + Comparing RESTART/20190801.130000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20190801.130000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20190801.130000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20190801.130000.phy_data.nc .........OK + Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1457.863154 -The maximum resident set size (KB) = 1417964 +The total amount of wall time = 1433.239613 +The maximum resident set size (KB) = 1440536 Test 142 regional_atmaq_debug PASS REGRESSION TEST WAS SUCCESSFUL -Tue Feb 21 16:31:09 UTC 2023 -Elapsed time: 01h:57m:26s. Have a nice day! +Thu Mar 2 16:47:14 UTC 2023 +Elapsed time: 01h:25m:32s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index cd2dc44935f..e8c89bbaccf 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,21 +1,21 @@ -Fri Feb 24 07:06:45 MST 2023 +Mon Feb 27 16:57:57 MST 2023 Start Regression test -Compile 001 elapsed time 374 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 389 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 858 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 190 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 360 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 1062 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 850 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 860 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 615 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 561 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 348 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 012 elapsed time 298 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 001 elapsed time 375 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 408 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 882 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 200 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 370 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 1082 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 876 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 894 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 635 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 569 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 384 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 012 elapsed time 320 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/control_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/control_c48 +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/control_c48 Checking test 001 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -54,14 +54,14 @@ Checking test 001 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 819.202590 -0:The maximum resident set size (KB) = 675656 +0:The total amount of wall time = 823.262510 +0:The maximum resident set size (KB) = 681132 Test 001 control_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/control_stochy +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/control_stochy Checking test 002 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -72,14 +72,14 @@ Checking test 002 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 179.553657 -0:The maximum resident set size (KB) = 442756 +0:The total amount of wall time = 180.983796 +0:The maximum resident set size (KB) = 442676 Test 002 control_stochy PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/control_ras -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/control_ras +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/control_ras Checking test 003 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -90,14 +90,14 @@ Checking test 003 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 294.903249 -0:The maximum resident set size (KB) = 451944 +0:The total amount of wall time = 297.583148 +0:The maximum resident set size (KB) = 452324 Test 003 control_ras PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/control_p8 +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/control_p8 Checking test 004 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -144,14 +144,14 @@ Checking test 004 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 311.790789 -0:The maximum resident set size (KB) = 1226108 +0:The total amount of wall time = 318.732670 +0:The maximum resident set size (KB) = 1225600 Test 004 control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/rap_control +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/rap_control Checking test 005 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -198,14 +198,14 @@ Checking test 005 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 725.510814 -0:The maximum resident set size (KB) = 791640 +0:The total amount of wall time = 725.292458 +0:The maximum resident set size (KB) = 791720 Test 005 rap_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/rap_decomp +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/rap_decomp Checking test 006 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -252,14 +252,14 @@ Checking test 006 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 728.898851 -0:The maximum resident set size (KB) = 790976 +0:The total amount of wall time = 722.774430 +0:The maximum resident set size (KB) = 791180 Test 006 rap_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/rap_2threads +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/rap_2threads Checking test 007 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -306,14 +306,14 @@ Checking test 007 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 665.825368 -0:The maximum resident set size (KB) = 863912 +0:The total amount of wall time = 669.436970 +0:The maximum resident set size (KB) = 864044 Test 007 rap_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/rap_restart +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/rap_restart Checking test 008 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -352,14 +352,14 @@ Checking test 008 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 358.255922 -0:The maximum resident set size (KB) = 538560 +0:The total amount of wall time = 361.861476 +0:The maximum resident set size (KB) = 538644 Test 008 rap_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/rap_sfcdiff Checking test 009 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -406,14 +406,14 @@ Checking test 009 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 711.703853 -0:The maximum resident set size (KB) = 791544 +0:The total amount of wall time = 716.711690 +0:The maximum resident set size (KB) = 791560 Test 009 rap_sfcdiff PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/rap_sfcdiff_decomp +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/rap_sfcdiff_decomp Checking test 010 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -460,14 +460,14 @@ Checking test 010 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 721.799195 -0:The maximum resident set size (KB) = 790536 +0:The total amount of wall time = 728.363535 +0:The maximum resident set size (KB) = 790764 Test 010 rap_sfcdiff_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/rap_sfcdiff_restart +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/rap_sfcdiff_restart Checking test 011 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -506,14 +506,14 @@ Checking test 011 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 531.142087 -0:The maximum resident set size (KB) = 543680 +0:The total amount of wall time = 535.420171 +0:The maximum resident set size (KB) = 543756 Test 011 rap_sfcdiff_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/hrrr_control +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/hrrr_control Checking test 012 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -560,14 +560,14 @@ Checking test 012 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 688.980532 -0:The maximum resident set size (KB) = 789124 +0:The total amount of wall time = 694.510998 +0:The maximum resident set size (KB) = 789116 Test 012 hrrr_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/hrrr_control_2threads +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/hrrr_control_2threads Checking test 013 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -614,14 +614,14 @@ Checking test 013 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 625.049898 -0:The maximum resident set size (KB) = 858776 +0:The total amount of wall time = 630.234630 +0:The maximum resident set size (KB) = 858728 Test 013 hrrr_control_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/hrrr_control_decomp +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/hrrr_control_decomp Checking test 014 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -668,14 +668,14 @@ Checking test 014 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 686.733989 -0:The maximum resident set size (KB) = 788140 +0:The total amount of wall time = 693.216124 +0:The maximum resident set size (KB) = 788588 Test 014 hrrr_control_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/hrrr_control_restart +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/hrrr_control_restart Checking test 015 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -714,14 +714,14 @@ Checking test 015 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 514.419125 -0:The maximum resident set size (KB) = 539324 +0:The total amount of wall time = 516.609234 +0:The maximum resident set size (KB) = 540060 Test 015 hrrr_control_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rrfs_v1beta -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/rrfs_v1beta +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/rrfs_v1beta Checking test 016 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -768,14 +768,14 @@ Checking test 016 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 700.184079 -0:The maximum resident set size (KB) = 788432 +0:The total amount of wall time = 706.938909 +0:The maximum resident set size (KB) = 788420 Test 016 rrfs_v1beta PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/rrfs_conus13km_hrrr_warm Checking test 017 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -784,14 +784,14 @@ Checking test 017 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 205.248348 -0:The maximum resident set size (KB) = 606776 +0:The total amount of wall time = 208.471993 +0:The maximum resident set size (KB) = 606668 Test 017 rrfs_conus13km_hrrr_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/rrfs_smoke_conus13km_hrrr_warm Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -800,14 +800,14 @@ Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 224.467128 -0:The maximum resident set size (KB) = 620808 +0:The total amount of wall time = 230.540906 +0:The maximum resident set size (KB) = 620780 Test 018 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/rrfs_conus13km_radar_tten_warm +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/rrfs_conus13km_radar_tten_warm Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -816,14 +816,14 @@ Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 204.952219 -0:The maximum resident set size (KB) = 609528 +0:The total amount of wall time = 211.958193 +0:The maximum resident set size (KB) = 609624 Test 019 rrfs_conus13km_radar_tten_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/rrfs_conus13km_radar_tten_warm_2threads +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/rrfs_conus13km_radar_tten_warm_2threads Checking test 020 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -832,208 +832,208 @@ Checking test 020 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 131.442560 -0:The maximum resident set size (KB) = 628096 +0:The total amount of wall time = 140.603435 +0:The maximum resident set size (KB) = 628868 Test 020 rrfs_conus13km_radar_tten_warm_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/control_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/control_diag_debug +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/control_diag_debug Checking test 021 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 87.985167 -0:The maximum resident set size (KB) = 494844 +0:The total amount of wall time = 94.145720 +0:The maximum resident set size (KB) = 494892 Test 021 control_diag_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/regional_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/regional_debug +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/regional_debug Checking test 022 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 478.217381 -0:The maximum resident set size (KB) = 569244 +0:The total amount of wall time = 488.927770 +0:The maximum resident set size (KB) = 569176 Test 022 regional_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/rap_control_debug +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/rap_control_debug Checking test 023 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 152.318107 -0:The maximum resident set size (KB) = 808792 +0:The total amount of wall time = 159.273127 +0:The maximum resident set size (KB) = 808548 Test 023 rap_control_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/hrrr_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/hrrr_control_debug +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/hrrr_control_debug Checking test 024 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 151.119486 -0:The maximum resident set size (KB) = 804216 +0:The total amount of wall time = 156.283240 +0:The maximum resident set size (KB) = 804228 Test 024 hrrr_control_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rap_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/rap_diag_debug +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/rap_diag_debug Checking test 025 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 161.942622 -0:The maximum resident set size (KB) = 891856 +0:The total amount of wall time = 166.790856 +0:The maximum resident set size (KB) = 891700 Test 025 rap_diag_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/rap_noah_sfcdiff_cires_ugwp_debug Checking test 026 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 242.342389 -0:The maximum resident set size (KB) = 806624 +0:The total amount of wall time = 244.893080 +0:The maximum resident set size (KB) = 806924 Test 026 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rap_progcld_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/rap_progcld_thompson_debug +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/rap_progcld_thompson_debug Checking test 027 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 151.769849 -0:The maximum resident set size (KB) = 808820 +0:The total amount of wall time = 157.998629 +0:The maximum resident set size (KB) = 808668 Test 027 rap_progcld_thompson_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rrfs_v1beta_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/rrfs_v1beta_debug +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/rrfs_v1beta_debug Checking test 028 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 149.598576 -0:The maximum resident set size (KB) = 804032 +0:The total amount of wall time = 156.017946 +0:The maximum resident set size (KB) = 803832 Test 028 rrfs_v1beta_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/control_ras_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/control_ras_debug +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/control_ras_debug Checking test 029 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 85.988672 -0:The maximum resident set size (KB) = 449060 +0:The total amount of wall time = 92.541617 +0:The maximum resident set size (KB) = 449624 Test 029 control_ras_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/control_stochy_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/control_stochy_debug +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/control_stochy_debug Checking test 030 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 93.090830 -0:The maximum resident set size (KB) = 441488 +0:The total amount of wall time = 98.702633 +0:The maximum resident set size (KB) = 441736 Test 030 control_stochy_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/control_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/control_debug_p8 +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/control_debug_p8 Checking test 031 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 96.600948 -0:The maximum resident set size (KB) = 1224764 +0:The total amount of wall time = 105.785680 +0:The maximum resident set size (KB) = 1224332 Test 031 control_debug_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/rrfs_conus13km_hrrr_warm_debug +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/rrfs_conus13km_hrrr_warm_debug Checking test 032 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 390.129051 -0:The maximum resident set size (KB) = 614276 +0:The total amount of wall time = 392.917788 +0:The maximum resident set size (KB) = 613860 Test 032 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rrfs_conus13km_radar_tten_warm_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/rrfs_conus13km_radar_tten_warm_debug +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/rrfs_conus13km_radar_tten_warm_debug Checking test 033 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 393.545593 -0:The maximum resident set size (KB) = 617124 +0:The total amount of wall time = 391.942575 +0:The maximum resident set size (KB) = 616408 Test 033 rrfs_conus13km_radar_tten_warm_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/control_wam_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/control_wam_debug +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/control_wam_debug Checking test 034 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 145.306626 -0:The maximum resident set size (KB) = 184724 +0:The total amount of wall time = 148.628806 +0:The maximum resident set size (KB) = 184480 Test 034 control_wam_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/rap_control_dyn32_phy32 Checking test 035 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1080,14 +1080,14 @@ Checking test 035 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 688.967785 -0:The maximum resident set size (KB) = 672616 +0:The total amount of wall time = 692.578557 +0:The maximum resident set size (KB) = 673032 Test 035 rap_control_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/hrrr_control_dyn32_phy32 Checking test 036 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1134,14 +1134,14 @@ Checking test 036 hrrr_control_dyn32_phy32 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 = 351.987919 -0:The maximum resident set size (KB) = 671040 +0:The total amount of wall time = 354.112274 +0:The maximum resident set size (KB) = 671532 Test 036 hrrr_control_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/rap_2threads_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/rap_2threads_dyn32_phy32 Checking test 037 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1188,14 +1188,14 @@ Checking test 037 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 627.815927 -0:The maximum resident set size (KB) = 718296 +0:The total amount of wall time = 628.977110 +0:The maximum resident set size (KB) = 718240 Test 037 rap_2threads_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/hrrr_control_2threads_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/hrrr_control_2threads_dyn32_phy32 Checking test 038 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1242,14 +1242,14 @@ Checking test 038 hrrr_control_2threads_dyn32_phy32 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 = 326.559530 -0:The maximum resident set size (KB) = 715452 +0:The total amount of wall time = 325.043418 +0:The maximum resident set size (KB) = 715540 Test 038 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/hrrr_control_decomp_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/hrrr_control_decomp_dyn32_phy32 Checking test 039 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1296,14 +1296,14 @@ Checking test 039 hrrr_control_decomp_dyn32_phy32 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 = 351.755478 -0:The maximum resident set size (KB) = 670020 +0:The total amount of wall time = 354.535034 +0:The maximum resident set size (KB) = 670372 Test 039 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/rap_restart_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/rap_restart_dyn32_phy32 Checking test 040 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1342,14 +1342,14 @@ Checking test 040 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 515.889251 -0:The maximum resident set size (KB) = 510868 +0:The total amount of wall time = 520.858780 +0:The maximum resident set size (KB) = 510936 Test 040 rap_restart_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/hrrr_control_restart_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/hrrr_control_restart_dyn32_phy32 Checking test 041 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1388,14 +1388,14 @@ Checking test 041 hrrr_control_restart_dyn32_phy32 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 = 177.701708 -0:The maximum resident set size (KB) = 506684 +0:The total amount of wall time = 182.622704 +0:The maximum resident set size (KB) = 507036 Test 041 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rap_control_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/rap_control_dyn64_phy32 +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/rap_control_dyn64_phy32 Checking test 042 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1442,56 +1442,56 @@ Checking test 042 rap_control_dyn64_phy32 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 = 411.025614 -0:The maximum resident set size (KB) = 693504 +0:The total amount of wall time = 413.723932 +0:The maximum resident set size (KB) = 693824 Test 042 rap_control_dyn64_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/rap_control_debug_dyn32_phy32 Checking test 043 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 148.307517 -0:The maximum resident set size (KB) = 690900 +0:The total amount of wall time = 157.248564 +0:The maximum resident set size (KB) = 690664 Test 043 rap_control_debug_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/hrrr_control_debug_dyn32_phy32 Checking test 044 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 145.791911 -0:The maximum resident set size (KB) = 687888 +0:The total amount of wall time = 155.066421 +0:The maximum resident set size (KB) = 687732 Test 044 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/rap_control_dyn64_phy32_debug +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/rap_control_dyn64_phy32_debug Checking test 045 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 154.068002 -0:The maximum resident set size (KB) = 709716 +0:The total amount of wall time = 164.161444 +0:The maximum resident set size (KB) = 710116 Test 045 rap_control_dyn64_phy32_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/cpld_control_p8 Checking test 046 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1556,14 +1556,14 @@ Checking test 046 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 491.418684 -0:The maximum resident set size (KB) = 3159312 +0:The total amount of wall time = 513.901268 +0:The maximum resident set size (KB) = 3159288 Test 046 cpld_control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/cpld_control_nowave_noaero_p8 +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/cpld_control_nowave_noaero_p8 Checking test 047 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1625,14 +1625,14 @@ Checking test 047 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 251.831112 -0:The maximum resident set size (KB) = 1240092 +0:The total amount of wall time = 272.764558 +0:The maximum resident set size (KB) = 1239716 Test 047 cpld_control_nowave_noaero_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/cpld_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/cpld_debug_p8 +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/cpld_debug_p8 Checking test 048 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1685,25 +1685,25 @@ Checking test 048 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 276.673792 -0:The maximum resident set size (KB) = 3179788 +0:The total amount of wall time = 294.947421 +0:The maximum resident set size (KB) = 3179572 Test 048 cpld_debug_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62368/datm_cdeps_control_cfsr +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/datm_cdeps_control_cfsr Checking test 049 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 180.035468 -0:The maximum resident set size (KB) = 678064 +0:The total amount of wall time = 183.953214 +0:The maximum resident set size (KB) = 675568 Test 049 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Fri Feb 24 07:37:28 MST 2023 -Elapsed time: 00h:30m:43s. Have a nice day! +Mon Feb 27 17:32:34 MST 2023 +Elapsed time: 00h:34m:37s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 3d5784b7637..fcffacb4dd7 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,38 +1,38 @@ -Mon Feb 27 07:23:34 MST 2023 +Mon Feb 27 16:57:46 MST 2023 Start Regression test -Compile 001 elapsed time 1496 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 1503 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 1370 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 456 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 381 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 1066 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 1066 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 1016 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 979 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 900 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 807 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 396 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 013 elapsed time 259 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 829 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 015 elapsed time 827 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 266 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 017 elapsed time 264 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 1098 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 019 elapsed time 332 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 1689 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 1087 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 022 elapsed time 431 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 023 elapsed time 202 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 024 elapsed time 102 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 025 elapsed time 932 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 026 elapsed time 979 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 027 elapsed time 887 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 883 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 295 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 001 elapsed time 1553 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1434 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 1382 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 462 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 405 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 1134 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 1087 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 1034 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 1018 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 937 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 824 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 434 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 308 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 014 elapsed time 877 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 854 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 305 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 017 elapsed time 286 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 1142 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 019 elapsed time 386 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 1585 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 1119 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 022 elapsed time 455 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 023 elapsed time 232 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 024 elapsed time 125 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 025 elapsed time 963 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 026 elapsed time 999 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 027 elapsed time 908 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 891 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 314 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8_mixedmode -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/cpld_control_p8_mixedmode +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -97,14 +97,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 319.548123 -0:The maximum resident set size (KB) = 2698432 +0:The total amount of wall time = 339.515744 +0:The maximum resident set size (KB) = 2698536 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_gfsv17 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/cpld_control_gfsv17 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -168,14 +168,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 282.000267 -0:The maximum resident set size (KB) = 1437860 +0:The total amount of wall time = 307.578692 +0:The maximum resident set size (KB) = 1437496 Test 002 cpld_control_gfsv17 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -240,14 +240,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 320.743300 -0:The maximum resident set size (KB) = 2716304 +0:The total amount of wall time = 342.287778 +0:The maximum resident set size (KB) = 2716492 Test 003 cpld_control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/cpld_restart_p8 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -300,14 +300,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 184.072025 -0:The maximum resident set size (KB) = 2577404 +0:The total amount of wall time = 195.069692 +0:The maximum resident set size (KB) = 2577740 Test 004 cpld_restart_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/cpld_2threads_p8 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -360,14 +360,14 @@ Checking test 005 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 260.075532 -0:The maximum resident set size (KB) = 3176084 +0:The total amount of wall time = 297.042978 +0:The maximum resident set size (KB) = 3175516 Test 005 cpld_2threads_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/cpld_decomp_p8 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/cpld_decomp_p8 Checking test 006 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -420,14 +420,14 @@ Checking test 006 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 321.759495 -0:The maximum resident set size (KB) = 2721140 +0:The total amount of wall time = 348.018494 +0:The maximum resident set size (KB) = 2723200 Test 006 cpld_decomp_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/cpld_mpi_p8 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/cpld_mpi_p8 Checking test 007 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -480,14 +480,14 @@ Checking test 007 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 276.149744 -0:The maximum resident set size (KB) = 2682540 +0:The total amount of wall time = 310.762946 +0:The maximum resident set size (KB) = 2682616 Test 007 cpld_mpi_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_ciceC_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/cpld_control_ciceC_p8 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/cpld_control_ciceC_p8 Checking test 008 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -552,14 +552,14 @@ Checking test 008 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 321.258432 -0:The maximum resident set size (KB) = 2716656 +0:The total amount of wall time = 335.356220 +0:The maximum resident set size (KB) = 2716264 Test 008 cpld_control_ciceC_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/cpld_control_c192_p8 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/cpld_control_c192_p8 Checking test 009 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -612,14 +612,14 @@ Checking test 009 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -0:The total amount of wall time = 743.179837 -0:The maximum resident set size (KB) = 3348252 +0:The total amount of wall time = 702.222894 +0:The maximum resident set size (KB) = 3347776 Test 009 cpld_control_c192_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/cpld_restart_c192_p8 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/cpld_restart_c192_p8 Checking test 010 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -672,14 +672,14 @@ Checking test 010 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -0:The total amount of wall time = 412.255138 -0:The maximum resident set size (KB) = 3271760 +0:The total amount of wall time = 475.278690 +0:The maximum resident set size (KB) = 3272052 Test 010 cpld_restart_c192_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/cpld_control_noaero_p8 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/cpld_control_noaero_p8 Checking test 011 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -743,14 +743,14 @@ Checking test 011 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 294.199409 -0:The maximum resident set size (KB) = 1436380 +0:The total amount of wall time = 308.760229 +0:The maximum resident set size (KB) = 1436544 Test 011 cpld_control_noaero_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/cpld_control_nowave_noaero_p8 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/cpld_control_nowave_noaero_p8 Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -812,14 +812,14 @@ Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 196.558420 -0:The maximum resident set size (KB) = 1452352 +0:The total amount of wall time = 215.488438 +0:The maximum resident set size (KB) = 1452424 Test 012 cpld_control_nowave_noaero_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/cpld_debug_p8 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/cpld_debug_p8 Checking test 013 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -872,14 +872,14 @@ Checking test 013 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 472.775623 -0:The maximum resident set size (KB) = 2788128 +0:The total amount of wall time = 503.283573 +0:The maximum resident set size (KB) = 2788208 Test 013 cpld_debug_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_debug_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/cpld_debug_noaero_p8 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/cpld_debug_noaero_p8 Checking test 014 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -931,14 +931,14 @@ Checking test 014 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 349.004602 -0:The maximum resident set size (KB) = 1460796 +0:The total amount of wall time = 368.732751 +0:The maximum resident set size (KB) = 1460532 Test 014 cpld_debug_noaero_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_noaero_p8_agrid -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/cpld_control_noaero_p8_agrid +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/cpld_control_noaero_p8_agrid Checking test 015 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1000,14 +1000,14 @@ Checking test 015 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 262.706676 -0:The maximum resident set size (KB) = 1455844 +0:The total amount of wall time = 279.507322 +0:The maximum resident set size (KB) = 1455812 Test 015 cpld_control_noaero_p8_agrid PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/cpld_control_c48 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/cpld_control_c48 Checking test 016 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1057,14 +1057,14 @@ Checking test 016 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 605.043224 -0:The maximum resident set size (KB) = 2580236 +0:The total amount of wall time = 614.976733 +0:The maximum resident set size (KB) = 2580812 Test 016 cpld_control_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/cpld_warmstart_c48 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/cpld_warmstart_c48 Checking test 017 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1114,14 +1114,14 @@ Checking test 017 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -0:The total amount of wall time = 161.194290 -0:The maximum resident set size (KB) = 2599156 +0:The total amount of wall time = 175.516102 +0:The maximum resident set size (KB) = 2598904 Test 017 cpld_warmstart_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/cpld_restart_c48 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/cpld_restart_c48 Checking test 018 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1171,14 +1171,14 @@ Checking test 018 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -0:The total amount of wall time = 84.752924 -0:The maximum resident set size (KB) = 2015888 +0:The total amount of wall time = 92.518169 +0:The maximum resident set size (KB) = 2015684 Test 018 cpld_restart_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_CubedSphereGrid -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/control_CubedSphereGrid +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_CubedSphereGrid Checking test 019 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1205,28 +1205,28 @@ Checking test 019 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -0:The total amount of wall time = 144.062872 -0:The maximum resident set size (KB) = 456784 +0:The total amount of wall time = 145.817948 +0:The maximum resident set size (KB) = 456744 Test 019 control_CubedSphereGrid PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_CubedSphereGrid_parallel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/control_CubedSphereGrid_parallel +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_CubedSphereGrid_parallel Checking test 020 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK -0:The total amount of wall time = 139.777200 -0:The maximum resident set size (KB) = 456688 +0:The total amount of wall time = 148.045173 +0:The maximum resident set size (KB) = 456804 Test 020 control_CubedSphereGrid_parallel PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_latlon -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/control_latlon +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_latlon Checking test 021 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1237,32 +1237,32 @@ Checking test 021 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 144.941521 -0:The maximum resident set size (KB) = 456816 +0:The total amount of wall time = 150.462219 +0:The maximum resident set size (KB) = 456804 Test 021 control_latlon PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_wrtGauss_netcdf_parallel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/control_wrtGauss_netcdf_parallel +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_wrtGauss_netcdf_parallel Checking test 022 control_wrtGauss_netcdf_parallel results .... - Comparing sfcf000.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 150.085680 -0:The maximum resident set size (KB) = 456696 +0:The total amount of wall time = 152.650119 +0:The maximum resident set size (KB) = 456808 Test 022 control_wrtGauss_netcdf_parallel PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/control_c48 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_c48 Checking test 023 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1301,14 +1301,14 @@ Checking test 023 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 444.512825 -0:The maximum resident set size (KB) = 628844 +0:The total amount of wall time = 445.944768 +0:The maximum resident set size (KB) = 628920 Test 023 control_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_c192 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/control_c192 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_c192 Checking test 024 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1319,14 +1319,14 @@ Checking test 024 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 592.015198 -0:The maximum resident set size (KB) = 556960 +0:The total amount of wall time = 602.461352 +0:The maximum resident set size (KB) = 557080 Test 024 control_c192 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_c384 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/control_c384 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_c384 Checking test 025 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1337,14 +1337,14 @@ Checking test 025 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 600.178890 -0:The maximum resident set size (KB) = 889216 +0:The total amount of wall time = 618.884949 +0:The maximum resident set size (KB) = 887288 Test 025 control_c384 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_c384gdas -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/control_c384gdas +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_c384gdas Checking test 026 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1387,14 +1387,14 @@ Checking test 026 control_c384gdas 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 = 531.819827 -0:The maximum resident set size (KB) = 1014916 +0:The total amount of wall time = 585.985312 +0:The maximum resident set size (KB) = 1016076 Test 026 control_c384gdas PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/control_stochy +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_stochy Checking test 027 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1405,28 +1405,28 @@ Checking test 027 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 95.577961 -0:The maximum resident set size (KB) = 454960 +0:The total amount of wall time = 102.341109 +0:The maximum resident set size (KB) = 454888 Test 027 control_stochy PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/control_stochy_restart +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_stochy_restart Checking test 028 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 51.998569 -0:The maximum resident set size (KB) = 225984 +0:The total amount of wall time = 55.952077 +0:The maximum resident set size (KB) = 225880 Test 028 control_stochy_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_lndp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/control_lndp +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_lndp Checking test 029 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1437,14 +1437,14 @@ Checking test 029 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 89.760740 -0:The maximum resident set size (KB) = 456568 +0:The total amount of wall time = 94.826367 +0:The maximum resident set size (KB) = 456480 Test 029 control_lndp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_iovr4 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/control_iovr4 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_iovr4 Checking test 030 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1459,14 +1459,14 @@ Checking test 030 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 143.637672 -0:The maximum resident set size (KB) = 456588 +0:The total amount of wall time = 152.875915 +0:The maximum resident set size (KB) = 456636 Test 030 control_iovr4 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_iovr5 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/control_iovr5 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_iovr5 Checking test 031 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1481,14 +1481,14 @@ Checking test 031 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 146.845150 -0:The maximum resident set size (KB) = 456636 +0:The total amount of wall time = 157.065643 +0:The maximum resident set size (KB) = 456704 Test 031 control_iovr5 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/control_p8 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_p8 Checking test 032 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1535,14 +1535,14 @@ Checking test 032 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 181.350206 -0:The maximum resident set size (KB) = 1422844 +0:The total amount of wall time = 191.152624 +0:The maximum resident set size (KB) = 1422896 Test 032 control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8_lndp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/control_p8_lndp +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_p8_lndp Checking test 033 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1561,14 +1561,14 @@ Checking test 033 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -0:The total amount of wall time = 334.735832 -0:The maximum resident set size (KB) = 1423100 +0:The total amount of wall time = 341.201529 +0:The maximum resident set size (KB) = 1423156 Test 033 control_p8_lndp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/control_restart_p8 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_restart_p8 Checking test 034 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1607,14 +1607,14 @@ Checking test 034 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 94.728668 -0:The maximum resident set size (KB) = 582368 +0:The total amount of wall time = 104.842361 +0:The maximum resident set size (KB) = 582308 Test 034 control_restart_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/control_decomp_p8 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_decomp_p8 Checking test 035 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1657,14 +1657,14 @@ Checking test 035 control_decomp_p8 results .... Comparing 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.064813 -0:The maximum resident set size (KB) = 1417024 +0:The total amount of wall time = 199.567829 +0:The maximum resident set size (KB) = 1417116 Test 035 control_decomp_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/control_2threads_p8 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_2threads_p8 Checking test 036 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1707,68 +1707,68 @@ Checking test 036 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 177.589392 -0:The maximum resident set size (KB) = 1504948 +0:The total amount of wall time = 195.845945 +0:The maximum resident set size (KB) = 1508096 Test 036 control_2threads_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8_rrtmgp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/control_p8_rrtmgp +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_p8_rrtmgp Checking test 037 control_p8_rrtmgp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK + Comparing sfcf000.nc ............ALT CHECK......NOT OK + Comparing sfcf021.nc ............ALT CHECK......NOT OK + Comparing sfcf024.nc ............ALT CHECK......NOT OK + Comparing atmf000.nc ............ALT CHECK......NOT OK + Comparing atmf021.nc ............ALT CHECK......NOT OK + Comparing atmf024.nc ............ALT CHECK......NOT OK + Comparing GFSFLX.GrbF00 .........NOT OK + Comparing GFSFLX.GrbF21 .........NOT OK + Comparing GFSFLX.GrbF24 .........NOT OK + Comparing GFSPRS.GrbF00 .........NOT OK + Comparing GFSPRS.GrbF21 .........NOT OK + Comparing GFSPRS.GrbF24 .........NOT OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.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 = 253.376190 + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......NOT OK + +0:The total amount of wall time = 271.728403 0:The maximum resident set size (KB) = 1480712 -Test 037 control_p8_rrtmgp PASS +Test 037 control_p8_rrtmgp FAIL Tries: 2 baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/merra2_thompson -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/merra2_thompson +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/merra2_thompson Checking test 038 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1815,14 +1815,14 @@ Checking test 038 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 208.767487 -0:The maximum resident set size (KB) = 1429696 +0:The total amount of wall time = 225.185056 +0:The maximum resident set size (KB) = 1429756 Test 038 merra2_thompson PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/regional_control +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/regional_control Checking test 039 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1833,28 +1833,28 @@ Checking test 039 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 342.057615 -0:The maximum resident set size (KB) = 603040 +0:The total amount of wall time = 366.624847 +0:The maximum resident set size (KB) = 603152 Test 039 regional_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/regional_restart +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/regional_restart Checking test 040 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 175.553644 -0:The maximum resident set size (KB) = 593456 +0:The total amount of wall time = 197.430357 +0:The maximum resident set size (KB) = 593476 Test 040 regional_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/regional_decomp +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/regional_decomp Checking test 041 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1865,14 +1865,14 @@ Checking test 041 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 359.137892 -0:The maximum resident set size (KB) = 597192 +0:The total amount of wall time = 378.548556 +0:The maximum resident set size (KB) = 597228 Test 041 regional_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/regional_2threads +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/regional_2threads Checking test 042 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1883,14 +1883,14 @@ Checking test 042 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 210.787888 -0:The maximum resident set size (KB) = 609968 +0:The total amount of wall time = 240.093846 +0:The maximum resident set size (KB) = 609752 Test 042 regional_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_noquilt -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/regional_noquilt +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/regional_noquilt Checking test 043 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1898,28 +1898,28 @@ Checking test 043 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -0:The total amount of wall time = 364.574730 -0:The maximum resident set size (KB) = 597576 +0:The total amount of wall time = 387.625095 +0:The maximum resident set size (KB) = 597604 Test 043 regional_noquilt PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_netcdf_parallel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/regional_netcdf_parallel +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/regional_netcdf_parallel Checking test 044 regional_netcdf_parallel results .... Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc .........OK + Comparing dynf006.nc ............ALT CHECK......OK Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf006.nc ............ALT CHECK......OK -0:The total amount of wall time = 337.534066 -0:The maximum resident set size (KB) = 595012 +0:The total amount of wall time = 348.182389 +0:The maximum resident set size (KB) = 595076 Test 044 regional_netcdf_parallel PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/regional_2dwrtdecomp +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/regional_2dwrtdecomp Checking test 045 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1930,14 +1930,14 @@ Checking test 045 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 339.848219 -0:The maximum resident set size (KB) = 603100 +0:The total amount of wall time = 367.152742 +0:The maximum resident set size (KB) = 603184 Test 045 regional_2dwrtdecomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/fv3_regional_wofs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/regional_wofs +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/regional_wofs Checking test 046 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1948,14 +1948,14 @@ Checking test 046 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 412.954426 -0:The maximum resident set size (KB) = 274624 +0:The total amount of wall time = 430.042216 +0:The maximum resident set size (KB) = 274616 Test 046 regional_wofs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/rap_control +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rap_control Checking test 047 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2002,14 +2002,14 @@ Checking test 047 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 478.823402 -0:The maximum resident set size (KB) = 826120 +0:The total amount of wall time = 486.623250 +0:The maximum resident set size (KB) = 826352 Test 047 rap_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_spp_sppt_shum_skeb -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/regional_spp_sppt_shum_skeb +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/regional_spp_sppt_shum_skeb Checking test 048 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2020,14 +2020,14 @@ Checking test 048 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 316.590850 -0:The maximum resident set size (KB) = 949260 +0:The total amount of wall time = 345.343547 +0:The maximum resident set size (KB) = 949276 Test 048 regional_spp_sppt_shum_skeb PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/rap_decomp +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rap_decomp Checking test 049 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2074,14 +2074,14 @@ Checking test 049 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 500.626560 -0:The maximum resident set size (KB) = 823572 +0:The total amount of wall time = 512.114858 +0:The maximum resident set size (KB) = 823560 Test 049 rap_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/rap_2threads +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rap_2threads Checking test 050 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2128,14 +2128,14 @@ Checking test 050 rap_2threads results .... Comparing 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.208725 -0:The maximum resident set size (KB) = 892564 +0:The total amount of wall time = 471.651173 +0:The maximum resident set size (KB) = 894532 Test 050 rap_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/rap_restart +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rap_restart Checking test 051 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2174,14 +2174,14 @@ Checking test 051 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 241.928999 -0:The maximum resident set size (KB) = 572548 +0:The total amount of wall time = 246.188191 +0:The maximum resident set size (KB) = 572872 Test 051 rap_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rap_sfcdiff Checking test 052 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2228,14 +2228,14 @@ Checking test 052 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 470.435952 -0:The maximum resident set size (KB) = 826440 +0:The total amount of wall time = 478.093529 +0:The maximum resident set size (KB) = 826532 Test 052 rap_sfcdiff PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/rap_sfcdiff_decomp +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rap_sfcdiff_decomp Checking test 053 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2282,14 +2282,14 @@ Checking test 053 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 495.889101 -0:The maximum resident set size (KB) = 825364 +0:The total amount of wall time = 507.490185 +0:The maximum resident set size (KB) = 825488 Test 053 rap_sfcdiff_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/rap_sfcdiff_restart +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rap_sfcdiff_restart Checking test 054 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2328,14 +2328,14 @@ Checking test 054 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 353.847946 -0:The maximum resident set size (KB) = 569860 +0:The total amount of wall time = 357.199484 +0:The maximum resident set size (KB) = 570236 Test 054 rap_sfcdiff_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/hrrr_control +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hrrr_control Checking test 055 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2382,14 +2382,14 @@ Checking test 055 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 454.923273 -0:The maximum resident set size (KB) = 821200 +0:The total amount of wall time = 459.186112 +0:The maximum resident set size (KB) = 821280 Test 055 hrrr_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/hrrr_control_decomp +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hrrr_control_decomp Checking test 056 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2436,14 +2436,14 @@ Checking test 056 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 473.467325 -0:The maximum resident set size (KB) = 820168 +0:The total amount of wall time = 481.449172 +0:The maximum resident set size (KB) = 820304 Test 056 hrrr_control_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/hrrr_control_2threads +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hrrr_control_2threads Checking test 057 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2490,14 +2490,14 @@ Checking test 057 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 432.169622 -0:The maximum resident set size (KB) = 887804 +0:The total amount of wall time = 438.933029 +0:The maximum resident set size (KB) = 887888 Test 057 hrrr_control_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/hrrr_control_restart +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hrrr_control_restart Checking test 058 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2536,14 +2536,14 @@ Checking test 058 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 343.022760 -0:The maximum resident set size (KB) = 568828 +0:The total amount of wall time = 340.208400 +0:The maximum resident set size (KB) = 568716 Test 058 hrrr_control_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_v1beta -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/rrfs_v1beta +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rrfs_v1beta Checking test 059 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2590,14 +2590,14 @@ Checking test 059 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 463.416844 +0:The total amount of wall time = 466.158066 0:The maximum resident set size (KB) = 819928 Test 059 rrfs_v1beta PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_v1nssl -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/rrfs_v1nssl +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rrfs_v1nssl Checking test 060 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2612,14 +2612,14 @@ Checking test 060 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 571.621027 -0:The maximum resident set size (KB) = 508144 +0:The total amount of wall time = 573.759807 +0:The maximum resident set size (KB) = 508256 Test 060 rrfs_v1nssl PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/rrfs_v1nssl_nohailnoccn +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rrfs_v1nssl_nohailnoccn Checking test 061 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2634,14 +2634,14 @@ Checking test 061 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 553.055334 -0:The maximum resident set size (KB) = 501260 +0:The total amount of wall time = 557.121924 +0:The maximum resident set size (KB) = 501320 Test 061 rrfs_v1nssl_nohailnoccn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rrfs_conus13km_hrrr_warm Checking test 062 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2650,14 +2650,14 @@ Checking test 062 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 125.669635 -0:The maximum resident set size (KB) = 638904 +0:The total amount of wall time = 139.519677 +0:The maximum resident set size (KB) = 639004 Test 062 rrfs_conus13km_hrrr_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rrfs_smoke_conus13km_hrrr_warm Checking test 063 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2666,14 +2666,14 @@ Checking test 063 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 143.430628 -0:The maximum resident set size (KB) = 652760 +0:The total amount of wall time = 150.406111 +0:The maximum resident set size (KB) = 653076 Test 063 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/rrfs_conus13km_radar_tten_warm +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rrfs_conus13km_radar_tten_warm Checking test 064 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2682,14 +2682,14 @@ Checking test 064 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 127.641971 -0:The maximum resident set size (KB) = 641048 +0:The total amount of wall time = 136.777228 +0:The maximum resident set size (KB) = 641256 Test 064 rrfs_conus13km_radar_tten_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/rrfs_conus13km_hrrr_warm_2threads +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rrfs_conus13km_hrrr_warm_2threads Checking test 065 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2698,14 +2698,14 @@ Checking test 065 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 81.066602 -0:The maximum resident set size (KB) = 655512 +0:The total amount of wall time = 89.138083 +0:The maximum resident set size (KB) = 655520 Test 065 rrfs_conus13km_hrrr_warm_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/rrfs_conus13km_radar_tten_warm_2threads +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rrfs_conus13km_radar_tten_warm_2threads Checking test 066 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2714,14 +2714,14 @@ Checking test 066 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 80.420374 -0:The maximum resident set size (KB) = 659160 +0:The total amount of wall time = 91.156316 +0:The maximum resident set size (KB) = 658456 Test 066 rrfs_conus13km_radar_tten_warm_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_csawmg -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/control_csawmg +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_csawmg Checking test 067 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2732,14 +2732,14 @@ Checking test 067 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 398.481374 -0:The maximum resident set size (KB) = 529036 +0:The total amount of wall time = 409.938168 +0:The maximum resident set size (KB) = 529008 Test 067 control_csawmg PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_csawmgt -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/control_csawmgt +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_csawmgt Checking test 068 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2750,14 +2750,14 @@ Checking test 068 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 394.417558 +0:The total amount of wall time = 405.133119 0:The maximum resident set size (KB) = 528996 Test 068 control_csawmgt PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_ras -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/control_ras +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_ras Checking test 069 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2768,54 +2768,54 @@ Checking test 069 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 204.169544 -0:The maximum resident set size (KB) = 487720 +0:The total amount of wall time = 209.406271 +0:The maximum resident set size (KB) = 487800 Test 069 control_ras PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_wam -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/control_wam +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_wam Checking test 070 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -0:The total amount of wall time = 128.665833 -0:The maximum resident set size (KB) = 205684 +0:The total amount of wall time = 135.274320 +0:The maximum resident set size (KB) = 205672 Test 070 control_wam PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/rrfs_conus13km_hrrr_warm_debug +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rrfs_conus13km_hrrr_warm_debug Checking test 071 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 766.040916 -0:The maximum resident set size (KB) = 672072 +0:The total amount of wall time = 778.955751 +0:The maximum resident set size (KB) = 672244 Test 071 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/rrfs_conus13km_radar_tten_warm_debug +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rrfs_conus13km_radar_tten_warm_debug Checking test 072 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 764.955270 -0:The maximum resident set size (KB) = 673904 +0:The total amount of wall time = 779.455808 +0:The maximum resident set size (KB) = 673744 Test 072 rrfs_conus13km_radar_tten_warm_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_CubedSphereGrid_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/control_CubedSphereGrid_debug +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_CubedSphereGrid_debug Checking test 073 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2842,334 +2842,334 @@ Checking test 073 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -0:The total amount of wall time = 174.862061 -0:The maximum resident set size (KB) = 621504 +0:The total amount of wall time = 181.185422 +0:The maximum resident set size (KB) = 621536 Test 073 control_CubedSphereGrid_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/control_wrtGauss_netcdf_parallel_debug +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_wrtGauss_netcdf_parallel_debug Checking test 074 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 162.966799 -0:The maximum resident set size (KB) = 621296 +0:The total amount of wall time = 172.260001 +0:The maximum resident set size (KB) = 621312 Test 074 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_stochy_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/control_stochy_debug +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_stochy_debug Checking test 075 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 182.762113 -0:The maximum resident set size (KB) = 625112 +0:The total amount of wall time = 192.263202 +0:The maximum resident set size (KB) = 624980 Test 075 control_stochy_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_lndp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/control_lndp_debug +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_lndp_debug Checking test 076 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 165.069392 -0:The maximum resident set size (KB) = 626972 +0:The total amount of wall time = 175.337303 +0:The maximum resident set size (KB) = 627180 Test 076 control_lndp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_csawmg_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/control_csawmg_debug +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_csawmg_debug Checking test 077 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 256.563445 -0:The maximum resident set size (KB) = 671296 +0:The total amount of wall time = 267.033844 +0:The maximum resident set size (KB) = 671376 Test 077 control_csawmg_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_csawmgt_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/control_csawmgt_debug +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_csawmgt_debug Checking test 078 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 252.055758 -0:The maximum resident set size (KB) = 671048 +0:The total amount of wall time = 260.397392 +0:The maximum resident set size (KB) = 671132 Test 078 control_csawmgt_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_ras_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/control_ras_debug +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_ras_debug Checking test 079 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 167.199456 -0:The maximum resident set size (KB) = 632592 +0:The total amount of wall time = 176.863358 +0:The maximum resident set size (KB) = 632616 Test 079 control_ras_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/control_diag_debug +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_diag_debug Checking test 080 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 168.867436 -0:The maximum resident set size (KB) = 677848 +0:The total amount of wall time = 177.397186 +0:The maximum resident set size (KB) = 677812 Test 080 control_diag_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/control_debug_p8 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_debug_p8 Checking test 081 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 183.850970 -0:The maximum resident set size (KB) = 1444180 +0:The total amount of wall time = 194.280206 +0:The maximum resident set size (KB) = 1444192 Test 081 control_debug_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/regional_debug +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/regional_debug Checking test 082 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 1038.466721 -0:The maximum resident set size (KB) = 628936 +0:The total amount of wall time = 1054.249286 +0:The maximum resident set size (KB) = 628944 Test 082 regional_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/rap_control_debug +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rap_control_debug Checking test 083 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 295.210094 -0:The maximum resident set size (KB) = 989876 +0:The total amount of wall time = 301.366019 +0:The maximum resident set size (KB) = 990100 Test 083 rap_control_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/hrrr_control_debug +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hrrr_control_debug Checking test 084 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 290.584601 -0:The maximum resident set size (KB) = 988808 +0:The total amount of wall time = 299.649563 +0:The maximum resident set size (KB) = 988936 Test 084 hrrr_control_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/rap_unified_drag_suite_debug +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rap_unified_drag_suite_debug Checking test 085 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 295.215797 -0:The maximum resident set size (KB) = 989808 +0:The total amount of wall time = 303.203349 +0:The maximum resident set size (KB) = 989908 Test 085 rap_unified_drag_suite_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/rap_diag_debug +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rap_diag_debug Checking test 086 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 308.542472 -0:The maximum resident set size (KB) = 1074052 +0:The total amount of wall time = 316.875091 +0:The maximum resident set size (KB) = 1074264 Test 086 rap_diag_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/rap_cires_ugwp_debug +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rap_cires_ugwp_debug Checking test 087 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 301.327687 -0:The maximum resident set size (KB) = 988512 +0:The total amount of wall time = 311.912972 +0:The maximum resident set size (KB) = 988608 Test 087 rap_cires_ugwp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/rap_unified_ugwp_debug +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rap_unified_ugwp_debug Checking test 088 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 300.181226 -0:The maximum resident set size (KB) = 991912 +0:The total amount of wall time = 307.876625 +0:The maximum resident set size (KB) = 991952 Test 088 rap_unified_ugwp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_lndp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/rap_lndp_debug +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rap_lndp_debug Checking test 089 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 297.145209 -0:The maximum resident set size (KB) = 990644 +0:The total amount of wall time = 308.394891 +0:The maximum resident set size (KB) = 990576 Test 089 rap_lndp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_flake_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/rap_flake_debug +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rap_flake_debug Checking test 090 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 294.503972 -0:The maximum resident set size (KB) = 989956 +0:The total amount of wall time = 305.642947 +0:The maximum resident set size (KB) = 990040 Test 090 rap_flake_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_progcld_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/rap_progcld_thompson_debug +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rap_progcld_thompson_debug Checking test 091 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 295.385443 -0:The maximum resident set size (KB) = 989804 +0:The total amount of wall time = 305.401718 +0:The maximum resident set size (KB) = 989872 Test 091 rap_progcld_thompson_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_noah_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/rap_noah_debug +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rap_noah_debug Checking test 092 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 288.517244 -0:The maximum resident set size (KB) = 988424 +0:The total amount of wall time = 303.087811 +0:The maximum resident set size (KB) = 988452 Test 092 rap_noah_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_sfcdiff_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/rap_sfcdiff_debug +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rap_sfcdiff_debug Checking test 093 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 295.349728 +0:The total amount of wall time = 304.635932 0:The maximum resident set size (KB) = 991208 Test 093 rap_sfcdiff_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rap_noah_sfcdiff_cires_ugwp_debug Checking test 094 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 479.107545 -0:The maximum resident set size (KB) = 989416 +0:The total amount of wall time = 492.924225 +0:The maximum resident set size (KB) = 989428 Test 094 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_v1beta_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/rrfs_v1beta_debug +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rrfs_v1beta_debug Checking test 095 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 290.119167 -0:The maximum resident set size (KB) = 986412 +0:The total amount of wall time = 302.236983 +0:The maximum resident set size (KB) = 986376 Test 095 rrfs_v1beta_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_wam_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/control_wam_debug +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_wam_debug Checking test 096 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 297.031065 -0:The maximum resident set size (KB) = 238980 +0:The total amount of wall time = 304.906315 +0:The maximum resident set size (KB) = 238912 Test 096 control_wam_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 097 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3180,14 +3180,14 @@ Checking test 097 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 301.318150 -0:The maximum resident set size (KB) = 848340 +0:The total amount of wall time = 314.243173 +0:The maximum resident set size (KB) = 848436 Test 097 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rap_control_dyn32_phy32 Checking test 098 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3234,14 +3234,14 @@ Checking test 098 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 379.937202 -0:The maximum resident set size (KB) = 707148 +0:The total amount of wall time = 391.855765 +0:The maximum resident set size (KB) = 707128 Test 098 rap_control_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hrrr_control_dyn32_phy32 Checking test 099 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3288,14 +3288,14 @@ Checking test 099 hrrr_control_dyn32_phy32 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 = 203.964322 -0:The maximum resident set size (KB) = 705320 +0:The total amount of wall time = 211.383526 +0:The maximum resident set size (KB) = 705520 Test 099 hrrr_control_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/rap_2threads_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rap_2threads_dyn32_phy32 Checking test 100 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3342,14 +3342,14 @@ Checking test 100 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 373.750157 -0:The maximum resident set size (KB) = 757132 +0:The total amount of wall time = 382.149948 +0:The maximum resident set size (KB) = 761720 Test 100 rap_2threads_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/hrrr_control_2threads_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hrrr_control_2threads_dyn32_phy32 Checking test 101 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3396,14 +3396,14 @@ Checking test 101 hrrr_control_2threads_dyn32_phy32 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 = 200.764594 -0:The maximum resident set size (KB) = 758452 +0:The total amount of wall time = 208.188858 +0:The maximum resident set size (KB) = 758412 Test 101 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/hrrr_control_decomp_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hrrr_control_decomp_dyn32_phy32 Checking test 102 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3450,14 +3450,14 @@ Checking test 102 hrrr_control_decomp_dyn32_phy32 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 = 211.887098 -0:The maximum resident set size (KB) = 704004 +0:The total amount of wall time = 221.829004 +0:The maximum resident set size (KB) = 704028 Test 102 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/rap_restart_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rap_restart_dyn32_phy32 Checking test 103 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3496,14 +3496,14 @@ Checking test 103 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 290.919334 -0:The maximum resident set size (KB) = 544428 +0:The total amount of wall time = 296.145710 +0:The maximum resident set size (KB) = 544620 Test 103 rap_restart_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/hrrr_control_restart_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hrrr_control_restart_dyn32_phy32 Checking test 104 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3542,14 +3542,14 @@ Checking test 104 hrrr_control_restart_dyn32_phy32 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 = 103.907700 -0:The maximum resident set size (KB) = 536768 +0:The total amount of wall time = 108.391744 +0:The maximum resident set size (KB) = 536944 Test 104 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/rap_control_dyn64_phy32 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rap_control_dyn64_phy32 Checking test 105 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3596,81 +3596,81 @@ Checking test 105 rap_control_dyn64_phy32 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 = 267.406128 -0:The maximum resident set size (KB) = 726960 +0:The total amount of wall time = 272.572900 +0:The maximum resident set size (KB) = 726848 Test 105 rap_control_dyn64_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rap_control_debug_dyn32_phy32 Checking test 106 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 290.094388 -0:The maximum resident set size (KB) = 876116 +0:The total amount of wall time = 298.143614 +0:The maximum resident set size (KB) = 876120 Test 106 rap_control_debug_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hrrr_control_debug_dyn32_phy32 Checking test 107 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 285.608471 -0:The maximum resident set size (KB) = 874460 +0:The total amount of wall time = 293.423231 +0:The maximum resident set size (KB) = 874272 Test 107 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/rap_control_dyn64_phy32_debug +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rap_control_dyn64_phy32_debug Checking test 108 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 294.541118 -0:The maximum resident set size (KB) = 893308 +0:The total amount of wall time = 302.454339 +0:The maximum resident set size (KB) = 893512 Test 108 rap_control_dyn64_phy32_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/hafs_regional_atm +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hafs_regional_atm Checking test 109 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -0:The total amount of wall time = 264.390348 -0:The maximum resident set size (KB) = 739084 +0:The total amount of wall time = 272.658879 +0:The maximum resident set size (KB) = 739888 Test 109 hafs_regional_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/hafs_regional_atm_thompson_gfdlsf +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hafs_regional_atm_thompson_gfdlsf Checking test 110 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -0:The total amount of wall time = 293.434322 -0:The maximum resident set size (KB) = 1091364 +0:The total amount of wall time = 312.815826 +0:The maximum resident set size (KB) = 1091528 Test 110 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_atm_ocn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/hafs_regional_atm_ocn +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hafs_regional_atm_ocn Checking test 111 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3679,14 +3679,14 @@ Checking test 111 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 455.198233 -0:The maximum resident set size (KB) = 738488 +0:The total amount of wall time = 483.082674 +0:The maximum resident set size (KB) = 738468 Test 111 hafs_regional_atm_ocn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_atm_wav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/hafs_regional_atm_wav +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hafs_regional_atm_wav Checking test 112 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3695,14 +3695,14 @@ Checking test 112 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 1054.775985 -0:The maximum resident set size (KB) = 765896 +0:The total amount of wall time = 1086.474166 +0:The maximum resident set size (KB) = 767040 Test 112 hafs_regional_atm_wav PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_atm_ocn_wav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/hafs_regional_atm_ocn_wav +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hafs_regional_atm_ocn_wav Checking test 113 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3713,28 +3713,28 @@ Checking test 113 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 1150.907575 -0:The maximum resident set size (KB) = 790088 +0:The total amount of wall time = 1137.979045 +0:The maximum resident set size (KB) = 790172 Test 113 hafs_regional_atm_ocn_wav PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/hafs_regional_1nest_atm +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hafs_regional_1nest_atm Checking test 114 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 375.496887 -0:The maximum resident set size (KB) = 293340 +0:The total amount of wall time = 381.325358 +0:The maximum resident set size (KB) = 293444 Test 114 hafs_regional_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/hafs_regional_telescopic_2nests_atm +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hafs_regional_telescopic_2nests_atm Checking test 115 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3743,28 +3743,28 @@ Checking test 115 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -0:The total amount of wall time = 429.160376 -0:The maximum resident set size (KB) = 309032 +0:The total amount of wall time = 431.130242 +0:The maximum resident set size (KB) = 308096 Test 115 hafs_regional_telescopic_2nests_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_global_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/hafs_global_1nest_atm +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hafs_global_1nest_atm Checking test 116 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 170.832890 -0:The maximum resident set size (KB) = 206288 +0:The total amount of wall time = 170.044068 +0:The maximum resident set size (KB) = 206108 Test 116 hafs_global_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_global_multiple_4nests_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/hafs_global_multiple_4nests_atm +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hafs_global_multiple_4nests_atm Checking test 117 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3782,14 +3782,14 @@ Checking test 117 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -0:The total amount of wall time = 489.543694 -0:The maximum resident set size (KB) = 292248 +0:The total amount of wall time = 495.214303 +0:The maximum resident set size (KB) = 292528 Test 117 hafs_global_multiple_4nests_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/hafs_regional_specified_moving_1nest_atm +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hafs_regional_specified_moving_1nest_atm Checking test 118 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3798,28 +3798,28 @@ Checking test 118 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -0:The total amount of wall time = 241.060605 -0:The maximum resident set size (KB) = 306724 +0:The total amount of wall time = 248.009649 +0:The maximum resident set size (KB) = 306588 Test 118 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/hafs_regional_storm_following_1nest_atm +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hafs_regional_storm_following_1nest_atm Checking test 119 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 228.756990 -0:The maximum resident set size (KB) = 306472 +0:The total amount of wall time = 231.149717 +0:The maximum resident set size (KB) = 306404 Test 119 hafs_regional_storm_following_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/hafs_regional_storm_following_1nest_atm_ocn +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hafs_regional_storm_following_1nest_atm_ocn Checking test 120 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3828,42 +3828,42 @@ Checking test 120 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -0:The total amount of wall time = 279.057042 -0:The maximum resident set size (KB) = 353456 +0:The total amount of wall time = 284.316249 +0:The maximum resident set size (KB) = 353640 Test 120 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_global_storm_following_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/hafs_global_storm_following_1nest_atm +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hafs_global_storm_following_1nest_atm Checking test 121 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 66.222660 -0:The maximum resident set size (KB) = 221852 +0:The total amount of wall time = 68.142070 +0:The maximum resident set size (KB) = 222124 Test 121 hafs_global_storm_following_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 122 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 821.608798 -0:The maximum resident set size (KB) = 386996 +0:The total amount of wall time = 831.080753 +0:The maximum resident set size (KB) = 386948 Test 122 hafs_regional_storm_following_1nest_atm_ocn_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 123 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3874,14 +3874,14 @@ Checking test 123 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -0:The total amount of wall time = 750.676110 -0:The maximum resident set size (KB) = 417772 +0:The total amount of wall time = 767.632658 +0:The maximum resident set size (KB) = 416112 Test 123 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_docn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/hafs_regional_docn +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hafs_regional_docn Checking test 124 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3889,14 +3889,14 @@ Checking test 124 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 391.014201 -0:The maximum resident set size (KB) = 754192 +0:The total amount of wall time = 407.414611 +0:The maximum resident set size (KB) = 754428 Test 124 hafs_regional_docn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_docn_oisst -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/hafs_regional_docn_oisst +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hafs_regional_docn_oisst Checking test 125 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3904,131 +3904,131 @@ Checking test 125 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 389.975646 -0:The maximum resident set size (KB) = 733376 +0:The total amount of wall time = 405.101050 +0:The maximum resident set size (KB) = 733816 Test 125 hafs_regional_docn_oisst PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_datm_cdeps -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/hafs_regional_datm_cdeps +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hafs_regional_datm_cdeps Checking test 126 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -0:The total amount of wall time = 1274.321380 -0:The maximum resident set size (KB) = 887832 +0:The total amount of wall time = 1164.884201 +0:The maximum resident set size (KB) = 888168 Test 126 hafs_regional_datm_cdeps PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/datm_cdeps_control_cfsr +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/datm_cdeps_control_cfsr Checking test 127 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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.852364 -0:The maximum resident set size (KB) = 727756 +0:The total amount of wall time = 165.603420 +0:The maximum resident set size (KB) = 716716 Test 127 datm_cdeps_control_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/datm_cdeps_restart_cfsr +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/datm_cdeps_restart_cfsr Checking test 128 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 100.949104 -0:The maximum resident set size (KB) = 704848 +0:The total amount of wall time = 101.349015 +0:The maximum resident set size (KB) = 716288 Test 128 datm_cdeps_restart_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_control_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/datm_cdeps_control_gefs +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/datm_cdeps_control_gefs Checking test 129 datm_cdeps_control_gefs 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 = 161.453750 -0:The maximum resident set size (KB) = 607500 +0:The total amount of wall time = 164.977500 +0:The maximum resident set size (KB) = 607492 Test 129 datm_cdeps_control_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_iau_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/datm_cdeps_iau_gefs +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/datm_cdeps_iau_gefs Checking test 130 datm_cdeps_iau_gefs 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 = 165.072799 -0:The maximum resident set size (KB) = 607460 +0:The total amount of wall time = 164.205007 +0:The maximum resident set size (KB) = 607472 Test 130 datm_cdeps_iau_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_stochy_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/datm_cdeps_stochy_gefs +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/datm_cdeps_stochy_gefs Checking test 131 datm_cdeps_stochy_gefs 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 = 164.197217 -0:The maximum resident set size (KB) = 607444 +0:The total amount of wall time = 166.737989 +0:The maximum resident set size (KB) = 607456 Test 131 datm_cdeps_stochy_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_ciceC_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/datm_cdeps_ciceC_cfsr +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/datm_cdeps_ciceC_cfsr Checking test 132 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 169.812450 +0:The total amount of wall time = 172.977018 0:The maximum resident set size (KB) = 727772 Test 132 datm_cdeps_ciceC_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_bulk_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/datm_cdeps_bulk_cfsr +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/datm_cdeps_bulk_cfsr Checking test 133 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 168.094000 -0:The maximum resident set size (KB) = 716680 +0:The total amount of wall time = 167.546006 +0:The maximum resident set size (KB) = 716700 Test 133 datm_cdeps_bulk_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_bulk_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/datm_cdeps_bulk_gefs +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/datm_cdeps_bulk_gefs Checking test 134 datm_cdeps_bulk_gefs 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 = 157.073913 -0:The maximum resident set size (KB) = 607468 +0:The total amount of wall time = 160.232284 +0:The maximum resident set size (KB) = 607444 Test 134 datm_cdeps_bulk_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_mx025_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/datm_cdeps_mx025_cfsr +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/datm_cdeps_mx025_cfsr Checking test 135 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4037,14 +4037,14 @@ Checking test 135 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 676.578153 -0:The maximum resident set size (KB) = 514192 +0:The total amount of wall time = 864.068864 +0:The maximum resident set size (KB) = 514396 Test 135 datm_cdeps_mx025_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_mx025_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/datm_cdeps_mx025_gefs +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/datm_cdeps_mx025_gefs Checking test 136 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4053,64 +4053,64 @@ Checking test 136 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 685.086891 -0:The maximum resident set size (KB) = 494748 +0:The total amount of wall time = 908.030744 +0:The maximum resident set size (KB) = 494796 Test 136 datm_cdeps_mx025_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/datm_cdeps_multiple_files_cfsr +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/datm_cdeps_multiple_files_cfsr Checking test 137 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 168.963747 -0:The maximum resident set size (KB) = 716724 +0:The total amount of wall time = 170.708338 +0:The maximum resident set size (KB) = 727824 Test 137 datm_cdeps_multiple_files_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/datm_cdeps_3072x1536_cfsr +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/datm_cdeps_3072x1536_cfsr Checking test 138 datm_cdeps_3072x1536_cfsr 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 = 255.367381 -0:The maximum resident set size (KB) = 1941532 +0:The total amount of wall time = 274.897388 +0:The maximum resident set size (KB) = 1942008 Test 138 datm_cdeps_3072x1536_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_gfs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/datm_cdeps_gfs +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/datm_cdeps_gfs Checking test 139 datm_cdeps_gfs 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 = 268.289326 -0:The maximum resident set size (KB) = 1941156 +0:The total amount of wall time = 275.043220 +0:The maximum resident set size (KB) = 1942052 Test 139 datm_cdeps_gfs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_debug_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/datm_cdeps_debug_cfsr +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/datm_cdeps_debug_cfsr Checking test 140 datm_cdeps_debug_cfsr 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 = 458.828024 -0:The maximum resident set size (KB) = 706696 +0:The total amount of wall time = 461.874728 +0:The maximum resident set size (KB) = 717724 Test 140 datm_cdeps_debug_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/datm_cdeps_lnd_gswp3 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/datm_cdeps_lnd_gswp3 Checking test 141 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4119,14 +4119,14 @@ Checking test 141 datm_cdeps_lnd_gswp3 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 = 10.044716 -0:The maximum resident set size (KB) = 216432 +0:The total amount of wall time = 11.445167 +0:The maximum resident set size (KB) = 208244 Test 141 datm_cdeps_lnd_gswp3 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/datm_cdeps_lnd_gswp3_rst +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/datm_cdeps_lnd_gswp3_rst Checking test 142 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4135,14 +4135,14 @@ Checking test 142 datm_cdeps_lnd_gswp3_rst 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 = 15.642216 -0:The maximum resident set size (KB) = 208228 +0:The total amount of wall time = 17.048179 +0:The maximum resident set size (KB) = 208244 Test 142 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8_atmlnd_sbs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/control_p8_atmlnd_sbs +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_p8_atmlnd_sbs Checking test 143 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4227,14 +4227,14 @@ Checking test 143 control_p8_atmlnd_sbs 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 = 234.359635 -0:The maximum resident set size (KB) = 1462092 +0:The total amount of wall time = 240.021752 +0:The maximum resident set size (KB) = 1461972 Test 143 control_p8_atmlnd_sbs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_atmwav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/control_atmwav +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_atmwav Checking test 144 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4278,14 +4278,14 @@ Checking test 144 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -0:The total amount of wall time = 99.307568 -0:The maximum resident set size (KB) = 474860 +0:The total amount of wall time = 102.398710 +0:The maximum resident set size (KB) = 474892 Test 144 control_atmwav PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/atmaero_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/atmaero_control_p8 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/atmaero_control_p8 Checking test 145 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4329,14 +4329,14 @@ Checking test 145 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 241.253651 -0:The maximum resident set size (KB) = 2703324 +0:The total amount of wall time = 256.005184 +0:The maximum resident set size (KB) = 2703356 Test 145 atmaero_control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/atmaero_control_p8_rad -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/atmaero_control_p8_rad +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/atmaero_control_p8_rad Checking test 146 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4380,14 +4380,14 @@ Checking test 146 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 302.701334 -0:The maximum resident set size (KB) = 2757640 +0:The total amount of wall time = 308.277530 +0:The maximum resident set size (KB) = 2757596 Test 146 atmaero_control_p8_rad PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/atmaero_control_p8_rad_micro -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/atmaero_control_p8_rad_micro +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/atmaero_control_p8_rad_micro Checking test 147 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4431,14 +4431,14 @@ Checking test 147 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 309.447384 -0:The maximum resident set size (KB) = 2763872 +0:The total amount of wall time = 313.291868 +0:The maximum resident set size (KB) = 2763944 Test 147 atmaero_control_p8_rad_micro PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_atmaq -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_25660/regional_atmaq +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/regional_atmaq Checking test 148 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4454,12 +4454,77 @@ Checking test 148 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -0:The total amount of wall time = 1071.535475 -0:The maximum resident set size (KB) = 1146092 +0:The total amount of wall time = 1307.034576 +0:The maximum resident set size (KB) = 1146040 Test 148 regional_atmaq PASS +FAILED TESTS: +Test control_p8_rrtmgp 037 failed in check_result failed +Test control_p8_rrtmgp 037 failed in run_test failed + +REGRESSION TEST FAILED +Mon Feb 27 18:11:50 MST 2023 +Elapsed time: 01h:14m:05s. Have a nice day! +Tue Feb 28 05:45:30 MST 2023 +Start Regression test + +Compile 001 elapsed time 1033 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_rrtmgp +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_54317/control_p8_rrtmgp +Checking test 001 control_p8_rrtmgp results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 252.444370 +0:The maximum resident set size (KB) = 1480736 + +Test 001 control_p8_rrtmgp PASS + REGRESSION TEST WAS SUCCESSFUL -Mon Feb 27 08:29:48 MST 2023 -Elapsed time: 01h:06m:14s. Have a nice day! +Tue Feb 28 06:10:29 MST 2023 +Elapsed time: 00h:24m:59s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index d3cf70f08f0..384129559e7 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,38 +1,38 @@ -Fri Feb 24 17:05:12 EST 2023 +Tue Feb 28 12:34:00 EST 2023 Start Regression test -Compile 001 elapsed time 970 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 1017 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 933 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 458 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 404 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 877 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 932 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 851 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 828 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 788 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 688 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 329 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 013 elapsed time 261 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 733 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 015 elapsed time 781 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 274 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 017 elapsed time 269 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 754 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 019 elapsed time 319 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 1047 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 793 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 022 elapsed time 333 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 023 elapsed time 258 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 024 elapsed time 170 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 025 elapsed time 733 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 026 elapsed time 733 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 027 elapsed time 719 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 751 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 210 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug - -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8_mixedmode -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/cpld_control_p8_mixedmode +Compile 001 elapsed time 923 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 942 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 896 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 353 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 325 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 857 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 762 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 780 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 711 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 782 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 684 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 309 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 239 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 014 elapsed time 676 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 706 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 223 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 017 elapsed time 254 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 782 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 019 elapsed time 246 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 940 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 738 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 022 elapsed time 258 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 023 elapsed time 169 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 024 elapsed time 149 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 025 elapsed time 753 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 026 elapsed time 697 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 027 elapsed time 651 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 746 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 217 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8_mixedmode +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -97,14 +97,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 326.637123 - 0: The maximum resident set size (KB) = 1567964 + 0: The total amount of wall time = 357.057034 + 0: The maximum resident set size (KB) = 1551992 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_gfsv17 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/cpld_control_gfsv17 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_gfsv17 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -168,14 +168,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 240.886412 - 0: The maximum resident set size (KB) = 1470640 + 0: The total amount of wall time = 278.730106 + 0: The maximum resident set size (KB) = 1455612 Test 002 cpld_control_gfsv17 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/cpld_control_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -240,14 +240,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 375.737458 - 0: The maximum resident set size (KB) = 1586224 + 0: The total amount of wall time = 420.375157 + 0: The maximum resident set size (KB) = 1565212 Test 003 cpld_control_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/cpld_restart_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -300,14 +300,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 221.737308 - 0: The maximum resident set size (KB) = 1023276 + 0: The total amount of wall time = 242.170803 + 0: The maximum resident set size (KB) = 1022304 Test 004 cpld_restart_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/cpld_2threads_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -360,14 +360,14 @@ Checking test 005 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 422.316722 - 0: The maximum resident set size (KB) = 1792700 + 0: The total amount of wall time = 424.513720 + 0: The maximum resident set size (KB) = 1777592 Test 005 cpld_2threads_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/cpld_decomp_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/cpld_decomp_p8 Checking test 006 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -420,14 +420,14 @@ Checking test 006 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 410.142061 - 0: The maximum resident set size (KB) = 1588992 + 0: The total amount of wall time = 402.436366 + 0: The maximum resident set size (KB) = 1575056 -Test 006 cpld_decomp_p8 PASS +Test 006 cpld_decomp_p8 PASS Tries: 2 -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/cpld_mpi_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/cpld_mpi_p8 Checking test 007 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -480,14 +480,14 @@ Checking test 007 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 357.259039 - 0: The maximum resident set size (KB) = 1543440 + 0: The total amount of wall time = 349.631553 + 0: The maximum resident set size (KB) = 1523868 Test 007 cpld_mpi_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_ciceC_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/cpld_control_ciceC_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_ciceC_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/cpld_control_ciceC_p8 Checking test 008 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -552,14 +552,14 @@ Checking test 008 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 402.717977 - 0: The maximum resident set size (KB) = 1594188 + 0: The total amount of wall time = 408.052578 + 0: The maximum resident set size (KB) = 1596308 Test 008 cpld_control_ciceC_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_c192_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/cpld_control_c192_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c192_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/cpld_control_c192_p8 Checking test 009 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -612,14 +612,14 @@ Checking test 009 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 769.877931 - 0: The maximum resident set size (KB) = 1776236 + 0: The total amount of wall time = 791.026512 + 0: The maximum resident set size (KB) = 1775188 Test 009 cpld_control_c192_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_c192_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/cpld_restart_c192_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c192_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/cpld_restart_c192_p8 Checking test 010 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -672,14 +672,14 @@ Checking test 010 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 478.217695 - 0: The maximum resident set size (KB) = 1929908 + 0: The total amount of wall time = 473.016534 + 0: The maximum resident set size (KB) = 1930564 Test 010 cpld_restart_c192_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_bmark_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/cpld_bmark_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_bmark_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/cpld_bmark_p8 Checking test 011 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -727,14 +727,14 @@ Checking test 011 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 814.047403 - 0: The maximum resident set size (KB) = 2537500 + 0: The total amount of wall time = 890.406018 + 0: The maximum resident set size (KB) = 2518080 -Test 011 cpld_bmark_p8 PASS Tries: 2 +Test 011 cpld_bmark_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_bmark_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/cpld_restart_bmark_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_bmark_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/cpld_restart_bmark_p8 Checking test 012 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -782,14 +782,14 @@ Checking test 012 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 576.993867 - 0: The maximum resident set size (KB) = 2332468 + 0: The total amount of wall time = 555.058185 + 0: The maximum resident set size (KB) = 2334860 Test 012 cpld_restart_bmark_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_noaero_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/cpld_control_noaero_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_noaero_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/cpld_control_noaero_p8 Checking test 013 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -853,14 +853,14 @@ Checking test 013 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 309.736471 - 0: The maximum resident set size (KB) = 1467284 + 0: The total amount of wall time = 305.512744 + 0: The maximum resident set size (KB) = 1441136 Test 013 cpld_control_noaero_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_c96_noaero_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/cpld_control_nowave_noaero_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c96_noaero_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/cpld_control_nowave_noaero_p8 Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -922,74 +922,16 @@ Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 340.773715 - 0: The maximum resident set size (KB) = 1499636 + 0: The total amount of wall time = 327.827643 + 0: The maximum resident set size (KB) = 1473640 Test 014 cpld_control_nowave_noaero_p8 PASS +Test 015 cpld_debug_p8 FAIL -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_debug_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/cpld_debug_p8 -Checking test 015 cpld_debug_p8 results .... - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing gocart.inst_aod.20210322_0900z.nc4 .........OK - Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-32400.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK - Comparing 20210322.090000.out_pnt.ww3 .........OK - Comparing 20210322.090000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 582.204877 - 0: The maximum resident set size (KB) = 1650492 - -Test 015 cpld_debug_p8 PASS - -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_debug_noaero_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/cpld_debug_noaero_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_debug_noaero_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/cpld_debug_noaero_p8 Checking test 016 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1041,14 +983,14 @@ Checking test 016 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 402.734524 - 0: The maximum resident set size (KB) = 1461192 + 0: The total amount of wall time = 404.743366 + 0: The maximum resident set size (KB) = 1461040 Test 016 cpld_debug_noaero_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_noaero_p8_agrid -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/cpld_control_noaero_p8_agrid +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_noaero_p8_agrid +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/cpld_control_noaero_p8_agrid Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1110,14 +1052,14 @@ Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 297.486032 - 0: The maximum resident set size (KB) = 1489052 + 0: The total amount of wall time = 324.634145 + 0: The maximum resident set size (KB) = 1489000 Test 017 cpld_control_noaero_p8_agrid PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_c48 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/cpld_control_c48 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c48 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/cpld_control_c48 Checking test 018 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1167,14 +1109,14 @@ Checking test 018 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 601.542304 - 0: The maximum resident set size (KB) = 2556728 + 0: The total amount of wall time = 601.559358 + 0: The maximum resident set size (KB) = 2569068 Test 018 cpld_control_c48 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_warmstart_c48 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/cpld_warmstart_c48 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_warmstart_c48 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/cpld_warmstart_c48 Checking test 019 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1224,14 +1166,14 @@ Checking test 019 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 159.388092 - 0: The maximum resident set size (KB) = 2578560 + 0: The total amount of wall time = 159.518553 + 0: The maximum resident set size (KB) = 2572544 Test 019 cpld_warmstart_c48 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_warmstart_c48 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/cpld_restart_c48 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_warmstart_c48 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/cpld_restart_c48 Checking test 020 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1281,14 +1223,14 @@ Checking test 020 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 86.246284 - 0: The maximum resident set size (KB) = 1995864 + 0: The total amount of wall time = 101.728183 + 0: The maximum resident set size (KB) = 1996112 Test 020 cpld_restart_c48 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_CubedSphereGrid -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/control_CubedSphereGrid +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_CubedSphereGrid Checking test 021 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1315,28 +1257,28 @@ Checking test 021 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 140.509949 - 0: The maximum resident set size (KB) = 437296 + 0: The total amount of wall time = 142.693090 + 0: The maximum resident set size (KB) = 437232 Test 021 control_CubedSphereGrid PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_CubedSphereGrid_parallel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/control_CubedSphereGrid_parallel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid_parallel +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_CubedSphereGrid_parallel Checking test 022 control_CubedSphereGrid_parallel 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 = 188.808190 - 0: The maximum resident set size (KB) = 437172 + 0: The total amount of wall time = 145.692583 + 0: The maximum resident set size (KB) = 437064 Test 022 control_CubedSphereGrid_parallel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_latlon -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/control_latlon +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_latlon +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_latlon Checking test 023 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1347,14 +1289,14 @@ Checking test 023 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 141.155734 + 0: The total amount of wall time = 145.707710 0: The maximum resident set size (KB) = 437088 Test 023 control_latlon PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/control_wrtGauss_netcdf_parallel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_wrtGauss_netcdf_parallel Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1365,14 +1307,14 @@ Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 194.448613 - 0: The maximum resident set size (KB) = 437008 + 0: The total amount of wall time = 160.290892 + 0: The maximum resident set size (KB) = 437044 Test 024 control_wrtGauss_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_c48 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/control_c48 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c48 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_c48 Checking test 025 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1411,14 +1353,14 @@ Checking test 025 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 419.319491 -0: The maximum resident set size (KB) = 631664 +0: The total amount of wall time = 423.903257 +0: The maximum resident set size (KB) = 631104 Test 025 control_c48 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_c192 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/control_c192 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c192 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_c192 Checking test 026 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1429,14 +1371,14 @@ Checking test 026 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 576.460557 - 0: The maximum resident set size (KB) = 539980 + 0: The total amount of wall time = 585.349965 + 0: The maximum resident set size (KB) = 539968 Test 026 control_c192 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_c384 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/control_c384 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c384 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_c384 Checking test 027 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1447,14 +1389,14 @@ Checking test 027 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1112.543116 - 0: The maximum resident set size (KB) = 818300 + 0: The total amount of wall time = 1127.187683 + 0: The maximum resident set size (KB) = 818340 Test 027 control_c384 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_c384gdas -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/control_c384gdas +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c384gdas +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_c384gdas Checking test 028 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1497,14 +1439,14 @@ Checking test 028 control_c384gdas 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 = 932.326685 - 0: The maximum resident set size (KB) = 947912 + 0: The total amount of wall time = 946.910598 + 0: The maximum resident set size (KB) = 948148 Test 028 control_c384gdas PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_stochy -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/control_stochy +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_stochy Checking test 029 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1515,28 +1457,28 @@ Checking test 029 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 105.177600 - 0: The maximum resident set size (KB) = 440300 + 0: The total amount of wall time = 98.600710 + 0: The maximum resident set size (KB) = 440092 Test 029 control_stochy PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_stochy -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/control_stochy_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_stochy_restart Checking test 030 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 56.450093 - 0: The maximum resident set size (KB) = 194676 + 0: The total amount of wall time = 51.676639 + 0: The maximum resident set size (KB) = 194760 Test 030 control_stochy_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_lndp -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/control_lndp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_lndp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_lndp Checking test 031 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1547,14 +1489,14 @@ Checking test 031 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 93.079769 - 0: The maximum resident set size (KB) = 440200 + 0: The total amount of wall time = 90.191850 + 0: The maximum resident set size (KB) = 440044 Test 031 control_lndp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_iovr4 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/control_iovr4 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_iovr4 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_iovr4 Checking test 032 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1569,14 +1511,14 @@ Checking test 032 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 162.713396 - 0: The maximum resident set size (KB) = 437124 + 0: The total amount of wall time = 152.104050 + 0: The maximum resident set size (KB) = 437020 Test 032 control_iovr4 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_iovr5 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/control_iovr5 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_iovr5 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_iovr5 Checking test 033 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1591,14 +1533,14 @@ Checking test 033 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 162.158363 - 0: The maximum resident set size (KB) = 437044 + 0: The total amount of wall time = 149.327633 + 0: The maximum resident set size (KB) = 436936 Test 033 control_iovr5 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/control_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_p8 Checking test 034 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1645,14 +1587,14 @@ Checking test 034 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 181.920269 - 0: The maximum resident set size (KB) = 1403484 + 0: The total amount of wall time = 197.208832 + 0: The maximum resident set size (KB) = 1379624 Test 034 control_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8_lndp -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/control_p8_lndp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_lndp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_p8_lndp Checking test 035 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1671,14 +1613,14 @@ Checking test 035 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 333.653251 - 0: The maximum resident set size (KB) = 1403700 + 0: The total amount of wall time = 355.675742 + 0: The maximum resident set size (KB) = 1389300 Test 035 control_p8_lndp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/control_restart_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_restart_p8 Checking test 036 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1717,14 +1659,14 @@ Checking test 036 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 93.397078 - 0: The maximum resident set size (KB) = 564556 + 0: The total amount of wall time = 107.804813 + 0: The maximum resident set size (KB) = 551652 Test 036 control_restart_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/control_decomp_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_decomp_p8 Checking test 037 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1767,14 +1709,14 @@ Checking test 037 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 191.427781 - 0: The maximum resident set size (KB) = 1397760 + 0: The total amount of wall time = 200.823680 + 0: The maximum resident set size (KB) = 1397684 Test 037 control_decomp_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/control_2threads_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_2threads_p8 Checking test 038 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1817,14 +1759,14 @@ Checking test 038 control_2threads_p8 results .... Comparing 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.515624 - 0: The maximum resident set size (KB) = 1461896 + 0: The total amount of wall time = 198.613032 + 0: The maximum resident set size (KB) = 1458808 Test 038 control_2threads_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8_rrtmgp -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/control_p8_rrtmgp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_rrtmgp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_p8_rrtmgp Checking test 039 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1871,14 +1813,14 @@ Checking test 039 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 251.145689 - 0: The maximum resident set size (KB) = 1461464 + 0: The total amount of wall time = 263.946143 + 0: The maximum resident set size (KB) = 1461512 Test 039 control_p8_rrtmgp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/merra2_thompson -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/merra2_thompson +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/merra2_thompson +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/merra2_thompson Checking test 040 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1925,14 +1867,14 @@ Checking test 040 merra2_thompson results .... Comparing 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.291568 - 0: The maximum resident set size (KB) = 1407500 + 0: The total amount of wall time = 221.754803 + 0: The maximum resident set size (KB) = 1407520 Test 040 merra2_thompson PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/regional_control +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/regional_control Checking test 041 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1943,28 +1885,28 @@ Checking test 041 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 340.898289 - 0: The maximum resident set size (KB) = 577688 + 0: The total amount of wall time = 352.411563 + 0: The maximum resident set size (KB) = 577696 Test 041 regional_control PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/regional_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/regional_restart Checking test 042 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 183.338516 - 0: The maximum resident set size (KB) = 577280 + 0: The total amount of wall time = 172.728688 + 0: The maximum resident set size (KB) = 577396 Test 042 regional_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/regional_decomp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/regional_decomp Checking test 043 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1975,14 +1917,14 @@ Checking test 043 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 351.215938 - 0: The maximum resident set size (KB) = 579232 + 0: The total amount of wall time = 358.774286 + 0: The maximum resident set size (KB) = 579184 Test 043 regional_decomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/regional_2threads +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/regional_2threads Checking test 044 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1993,14 +1935,14 @@ Checking test 044 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 201.697807 - 0: The maximum resident set size (KB) = 585312 + 0: The total amount of wall time = 210.514990 + 0: The maximum resident set size (KB) = 585328 Test 044 regional_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_noquilt -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/regional_noquilt +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_noquilt +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/regional_noquilt Checking test 045 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2008,28 +1950,28 @@ Checking test 045 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 363.493416 - 0: The maximum resident set size (KB) = 572808 + 0: The total amount of wall time = 370.301657 + 0: The maximum resident set size (KB) = 573008 Test 045 regional_noquilt PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_netcdf_parallel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/regional_netcdf_parallel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_netcdf_parallel +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/regional_netcdf_parallel Checking test 046 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 528.469605 - 0: The maximum resident set size (KB) = 576800 + 0: The total amount of wall time = 348.356086 + 0: The maximum resident set size (KB) = 576816 Test 046 regional_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/regional_2dwrtdecomp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/regional_2dwrtdecomp Checking test 047 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2040,14 +1982,14 @@ Checking test 047 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 350.805494 - 0: The maximum resident set size (KB) = 577716 + 0: The total amount of wall time = 356.395806 + 0: The maximum resident set size (KB) = 574788 Test 047 regional_2dwrtdecomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/fv3_regional_wofs -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/regional_wofs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/fv3_regional_wofs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/regional_wofs Checking test 048 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2058,14 +2000,14 @@ Checking test 048 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 419.947093 - 0: The maximum resident set size (KB) = 263236 + 0: The total amount of wall time = 424.177864 + 0: The maximum resident set size (KB) = 263200 Test 048 regional_wofs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/rap_control +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rap_control Checking test 049 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2112,14 +2054,14 @@ Checking test 049 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 472.793610 - 0: The maximum resident set size (KB) = 807600 + 0: The total amount of wall time = 487.231431 + 0: The maximum resident set size (KB) = 807648 Test 049 rap_control PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_spp_sppt_shum_skeb -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/regional_spp_sppt_shum_skeb +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_spp_sppt_shum_skeb +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/regional_spp_sppt_shum_skeb Checking test 050 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2130,14 +2072,14 @@ Checking test 050 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 323.710205 - 0: The maximum resident set size (KB) = 888224 + 0: The total amount of wall time = 350.176687 + 0: The maximum resident set size (KB) = 888148 Test 050 regional_spp_sppt_shum_skeb PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/rap_decomp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rap_decomp Checking test 051 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2184,14 +2126,14 @@ Checking test 051 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 499.077599 - 0: The maximum resident set size (KB) = 807296 + 0: The total amount of wall time = 510.855674 + 0: The maximum resident set size (KB) = 807144 Test 051 rap_decomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/rap_2threads +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rap_2threads Checking test 052 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2238,14 +2180,14 @@ Checking test 052 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 459.465607 - 0: The maximum resident set size (KB) = 879156 + 0: The total amount of wall time = 474.056468 + 0: The maximum resident set size (KB) = 877760 Test 052 rap_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/rap_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rap_restart Checking test 053 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2284,14 +2226,14 @@ Checking test 053 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 247.683784 - 0: The maximum resident set size (KB) = 538684 + 0: The total amount of wall time = 252.231660 + 0: The maximum resident set size (KB) = 553252 Test 053 rap_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/rap_sfcdiff +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rap_sfcdiff Checking test 054 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2338,14 +2280,14 @@ Checking test 054 rap_sfcdiff results .... Comparing 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.866832 - 0: The maximum resident set size (KB) = 807608 + 0: The total amount of wall time = 482.738459 + 0: The maximum resident set size (KB) = 807456 Test 054 rap_sfcdiff PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/rap_sfcdiff_decomp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rap_sfcdiff_decomp Checking test 055 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2392,14 +2334,14 @@ Checking test 055 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 495.100381 - 0: The maximum resident set size (KB) = 806724 + 0: The total amount of wall time = 501.665369 + 0: The maximum resident set size (KB) = 806696 Test 055 rap_sfcdiff_decomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/rap_sfcdiff_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rap_sfcdiff_restart Checking test 056 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2438,14 +2380,14 @@ Checking test 056 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 352.518493 - 0: The maximum resident set size (KB) = 550888 + 0: The total amount of wall time = 362.526357 + 0: The maximum resident set size (KB) = 541380 Test 056 rap_sfcdiff_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/hrrr_control +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hrrr_control Checking test 057 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2492,14 +2434,14 @@ Checking test 057 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 453.978329 - 0: The maximum resident set size (KB) = 804928 + 0: The total amount of wall time = 468.150928 + 0: The maximum resident set size (KB) = 804948 Test 057 hrrr_control PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/hrrr_control_decomp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hrrr_control_decomp Checking test 058 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2546,14 +2488,14 @@ Checking test 058 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 475.446899 - 0: The maximum resident set size (KB) = 804680 + 0: The total amount of wall time = 486.045760 + 0: The maximum resident set size (KB) = 804500 Test 058 hrrr_control_decomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/hrrr_control_2threads +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hrrr_control_2threads Checking test 059 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2600,14 +2542,14 @@ Checking test 059 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 429.709852 - 0: The maximum resident set size (KB) = 871076 + 0: The total amount of wall time = 438.433729 + 0: The maximum resident set size (KB) = 871300 Test 059 hrrr_control_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/hrrr_control_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hrrr_control_restart Checking test 060 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2646,14 +2588,14 @@ Checking test 060 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 342.701219 - 0: The maximum resident set size (KB) = 540556 + 0: The total amount of wall time = 352.149335 + 0: The maximum resident set size (KB) = 540568 Test 060 hrrr_control_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_v1beta -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/rrfs_v1beta +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1beta +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rrfs_v1beta Checking test 061 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2700,14 +2642,14 @@ Checking test 061 rrfs_v1beta results .... Comparing 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.544494 - 0: The maximum resident set size (KB) = 800856 + 0: The total amount of wall time = 472.079004 + 0: The maximum resident set size (KB) = 800796 Test 061 rrfs_v1beta PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_v1nssl -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/rrfs_v1nssl +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1nssl +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rrfs_v1nssl Checking test 062 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2722,14 +2664,14 @@ Checking test 062 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 576.723373 - 0: The maximum resident set size (KB) = 491884 + 0: The total amount of wall time = 573.772403 + 0: The maximum resident set size (KB) = 491416 Test 062 rrfs_v1nssl PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/rrfs_v1nssl_nohailnoccn +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rrfs_v1nssl_nohailnoccn Checking test 063 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2744,14 +2686,14 @@ Checking test 063 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 553.213085 - 0: The maximum resident set size (KB) = 485812 + 0: The total amount of wall time = 555.028993 + 0: The maximum resident set size (KB) = 485848 Test 063 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/rrfs_conus13km_hrrr_warm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rrfs_conus13km_hrrr_warm Checking test 064 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2760,14 +2702,14 @@ Checking test 064 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 126.575731 - 0: The maximum resident set size (KB) = 617624 + 0: The total amount of wall time = 147.482352 + 0: The maximum resident set size (KB) = 617552 Test 064 rrfs_conus13km_hrrr_warm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rrfs_smoke_conus13km_hrrr_warm Checking test 065 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2776,14 +2718,14 @@ Checking test 065 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 142.549048 - 0: The maximum resident set size (KB) = 627948 + 0: The total amount of wall time = 163.067505 + 0: The maximum resident set size (KB) = 627640 Test 065 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/rrfs_conus13km_radar_tten_warm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rrfs_conus13km_radar_tten_warm Checking test 066 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2792,14 +2734,14 @@ Checking test 066 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 127.085310 - 0: The maximum resident set size (KB) = 620616 + 0: The total amount of wall time = 151.675511 + 0: The maximum resident set size (KB) = 620864 Test 066 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/rrfs_conus13km_hrrr_warm_2threads +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rrfs_conus13km_hrrr_warm_2threads Checking test 067 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2808,14 +2750,14 @@ Checking test 067 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 87.797075 - 0: The maximum resident set size (KB) = 630560 + 0: The total amount of wall time = 105.238398 + 0: The maximum resident set size (KB) = 629956 Test 067 rrfs_conus13km_hrrr_warm_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/rrfs_conus13km_radar_tten_warm_2threads +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rrfs_conus13km_radar_tten_warm_2threads Checking test 068 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2824,14 +2766,14 @@ Checking test 068 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 83.539324 - 0: The maximum resident set size (KB) = 632336 + 0: The total amount of wall time = 108.424739 + 0: The maximum resident set size (KB) = 632604 Test 068 rrfs_conus13km_radar_tten_warm_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_csawmgt -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/control_csawmgt +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmgt +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_csawmgt Checking test 069 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2842,14 +2784,14 @@ Checking test 069 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 375.354023 - 0: The maximum resident set size (KB) = 505644 + 0: The total amount of wall time = 393.044749 + 0: The maximum resident set size (KB) = 505692 Test 069 control_csawmgt PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_ras -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/control_ras +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_ras +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_ras Checking test 070 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2860,54 +2802,54 @@ Checking test 070 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 195.117303 + 0: The total amount of wall time = 197.662813 0: The maximum resident set size (KB) = 470848 -Test 070 control_ras PASS +Test 070 control_ras PASS Tries: 2 -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_wam -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/control_wam +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wam +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_wam Checking test 071 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 125.238025 - 0: The maximum resident set size (KB) = 188056 + 0: The total amount of wall time = 128.057192 + 0: The maximum resident set size (KB) = 187928 Test 071 control_wam PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/rrfs_conus13km_hrrr_warm_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rrfs_conus13km_hrrr_warm_debug Checking test 072 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 755.091816 - 0: The maximum resident set size (KB) = 649528 + 0: The total amount of wall time = 754.741209 + 0: The maximum resident set size (KB) = 649708 -Test 072 rrfs_conus13km_hrrr_warm_debug PASS +Test 072 rrfs_conus13km_hrrr_warm_debug PASS Tries: 2 -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/rrfs_conus13km_radar_tten_warm_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rrfs_conus13km_radar_tten_warm_debug Checking test 073 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 755.607275 - 0: The maximum resident set size (KB) = 652204 + 0: The total amount of wall time = 777.773338 + 0: The maximum resident set size (KB) = 652268 Test 073 rrfs_conus13km_radar_tten_warm_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_CubedSphereGrid_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/control_CubedSphereGrid_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_CubedSphereGrid_debug Checking test 074 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2934,334 +2876,322 @@ Checking test 074 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 163.175529 - 0: The maximum resident set size (KB) = 601884 + 0: The total amount of wall time = 172.123969 + 0: The maximum resident set size (KB) = 601912 Test 074 control_CubedSphereGrid_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/control_wrtGauss_netcdf_parallel_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_wrtGauss_netcdf_parallel_debug Checking test 075 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 157.433593 - 0: The maximum resident set size (KB) = 601092 + 0: The total amount of wall time = 193.363432 + 0: The maximum resident set size (KB) = 601152 Test 075 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_stochy_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/control_stochy_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_stochy_debug Checking test 076 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 174.197087 - 0: The maximum resident set size (KB) = 607984 + 0: The total amount of wall time = 181.919608 + 0: The maximum resident set size (KB) = 607996 Test 076 control_stochy_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_lndp_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/control_lndp_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_lndp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_lndp_debug Checking test 077 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 157.620648 - 0: The maximum resident set size (KB) = 606116 + 0: The total amount of wall time = 161.882592 + 0: The maximum resident set size (KB) = 606232 -Test 077 control_lndp_debug PASS +Test 077 control_lndp_debug PASS Tries: 2 -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_csawmg_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/control_csawmg_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmg_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_csawmg_debug Checking test 078 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 248.181835 - 0: The maximum resident set size (KB) = 642608 + 0: The total amount of wall time = 262.193109 + 0: The maximum resident set size (KB) = 642496 Test 078 control_csawmg_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_csawmgt_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/control_csawmgt_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmgt_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_csawmgt_debug Checking test 079 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 250.732492 - 0: The maximum resident set size (KB) = 642700 + 0: The total amount of wall time = 249.989341 + 0: The maximum resident set size (KB) = 642760 Test 079 control_csawmgt_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_ras_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/control_ras_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_ras_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_ras_debug Checking test 080 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 160.030468 - 0: The maximum resident set size (KB) = 613700 + 0: The total amount of wall time = 163.897659 + 0: The maximum resident set size (KB) = 613796 Test 080 control_ras_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_diag_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/control_diag_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_diag_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_diag_debug Checking test 081 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 162.500705 - 0: The maximum resident set size (KB) = 660420 + 0: The total amount of wall time = 165.627882 + 0: The maximum resident set size (KB) = 660540 Test 081 control_diag_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_debug_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/control_debug_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_debug_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_debug_p8 Checking test 082 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 176.678162 - 0: The maximum resident set size (KB) = 1380068 + 0: The total amount of wall time = 202.236683 + 0: The maximum resident set size (KB) = 1422832 Test 082 control_debug_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/regional_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/regional_debug Checking test 083 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1040.202430 - 0: The maximum resident set size (KB) = 606796 + 0: The total amount of wall time = 1038.343765 + 0: The maximum resident set size (KB) = 606740 Test 083 regional_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/rap_control_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rap_control_debug Checking test 084 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 287.309240 - 0: The maximum resident set size (KB) = 972044 + 0: The total amount of wall time = 290.569527 + 0: The maximum resident set size (KB) = 972272 Test 084 rap_control_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/hrrr_control_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hrrr_control_debug Checking test 085 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 282.878876 - 0: The maximum resident set size (KB) = 967264 + 0: The total amount of wall time = 287.186846 + 0: The maximum resident set size (KB) = 967056 Test 085 hrrr_control_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/rap_unified_drag_suite_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rap_unified_drag_suite_debug Checking test 086 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 285.922935 - 0: The maximum resident set size (KB) = 972000 + 0: The total amount of wall time = 288.535682 + 0: The maximum resident set size (KB) = 972008 Test 086 rap_unified_drag_suite_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_diag_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/rap_diag_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_diag_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rap_diag_debug Checking test 087 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 306.720972 - 0: The maximum resident set size (KB) = 1056472 + 0: The total amount of wall time = 305.730512 + 0: The maximum resident set size (KB) = 1056360 Test 087 rap_diag_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_cires_ugwp_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/rap_cires_ugwp_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_cires_ugwp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rap_cires_ugwp_debug Checking test 088 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 292.335435 - 0: The maximum resident set size (KB) = 971340 + 0: The total amount of wall time = 296.693583 + 0: The maximum resident set size (KB) = 971364 Test 088 rap_cires_ugwp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_cires_ugwp_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/rap_unified_ugwp_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_cires_ugwp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rap_unified_ugwp_debug Checking test 089 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 292.045697 - 0: The maximum resident set size (KB) = 973572 + 0: The total amount of wall time = 294.336374 + 0: The maximum resident set size (KB) = 973596 -Test 089 rap_unified_ugwp_debug PASS +Test 089 rap_unified_ugwp_debug PASS Tries: 2 -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_lndp_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/rap_lndp_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_lndp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rap_lndp_debug Checking test 090 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 289.124800 - 0: The maximum resident set size (KB) = 972920 + 0: The total amount of wall time = 292.105830 + 0: The maximum resident set size (KB) = 972944 Test 090 rap_lndp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_flake_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/rap_flake_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_flake_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rap_flake_debug Checking test 091 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 285.860454 - 0: The maximum resident set size (KB) = 972152 - -Test 091 rap_flake_debug PASS + 0: The total amount of wall time = 286.113166 + 0: The maximum resident set size (KB) = 972096 +Test 091 rap_flake_debug PASS Tries: 2 -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_progcld_thompson_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/rap_progcld_thompson_debug -Checking test 092 rap_progcld_thompson_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +Test 092 rap_progcld_thompson_debug FAIL - 0: The total amount of wall time = 287.155692 - 0: The maximum resident set size (KB) = 972052 -Test 092 rap_progcld_thompson_debug PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_noah_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/rap_noah_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_noah_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rap_noah_debug Checking test 093 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 282.000772 - 0: The maximum resident set size (KB) = 970724 + 0: The total amount of wall time = 281.365816 + 0: The maximum resident set size (KB) = 970708 Test 093 rap_noah_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_sfcdiff_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/rap_sfcdiff_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rap_sfcdiff_debug Checking test 094 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 286.193292 - 0: The maximum resident set size (KB) = 971940 + 0: The total amount of wall time = 287.234416 + 0: The maximum resident set size (KB) = 971972 -Test 094 rap_sfcdiff_debug PASS +Test 094 rap_sfcdiff_debug PASS Tries: 2 -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rap_noah_sfcdiff_cires_ugwp_debug Checking test 095 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 471.864325 - 0: The maximum resident set size (KB) = 971280 + 0: The total amount of wall time = 470.193936 + 0: The maximum resident set size (KB) = 971348 Test 095 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_v1beta_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/rrfs_v1beta_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1beta_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rrfs_v1beta_debug Checking test 096 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.904897 - 0: The maximum resident set size (KB) = 968060 + 0: The total amount of wall time = 282.435834 + 0: The maximum resident set size (KB) = 968076 Test 096 rrfs_v1beta_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_wam_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/control_wam_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wam_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_wam_debug Checking test 097 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 295.888083 - 0: The maximum resident set size (KB) = 219164 + 0: The total amount of wall time = 296.087957 + 0: The maximum resident set size (KB) = 219180 Test 097 control_wam_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 098 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3272,14 +3202,14 @@ Checking test 098 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 296.122974 - 0: The maximum resident set size (KB) = 788612 + 0: The total amount of wall time = 307.619068 + 0: The maximum resident set size (KB) = 788452 Test 098 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_dyn32_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/rap_control_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rap_control_dyn32_phy32 Checking test 099 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3326,14 +3256,14 @@ Checking test 099 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 389.300669 - 0: The maximum resident set size (KB) = 690952 + 0: The total amount of wall time = 383.169168 + 0: The maximum resident set size (KB) = 690732 Test 099 rap_control_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/hrrr_control_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hrrr_control_dyn32_phy32 Checking test 100 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3380,14 +3310,14 @@ Checking test 100 hrrr_control_dyn32_phy32 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 = 203.340155 - 0: The maximum resident set size (KB) = 689124 + 0: The total amount of wall time = 208.912954 + 0: The maximum resident set size (KB) = 689180 Test 100 hrrr_control_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_dyn32_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/rap_2threads_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rap_2threads_dyn32_phy32 Checking test 101 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3434,14 +3364,14 @@ Checking test 101 rap_2threads_dyn32_phy32 results .... Comparing 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.175896 - 0: The maximum resident set size (KB) = 740172 + 0: The total amount of wall time = 374.409374 + 0: The maximum resident set size (KB) = 740340 Test 101 rap_2threads_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/hrrr_control_2threads_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hrrr_control_2threads_dyn32_phy32 Checking test 102 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3488,14 +3418,14 @@ Checking test 102 hrrr_control_2threads_dyn32_phy32 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 = 206.105937 - 0: The maximum resident set size (KB) = 742700 + 0: The total amount of wall time = 197.561012 + 0: The maximum resident set size (KB) = 742844 Test 102 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/hrrr_control_decomp_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hrrr_control_decomp_dyn32_phy32 Checking test 103 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3542,14 +3472,14 @@ Checking test 103 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 212.083881 - 0: The maximum resident set size (KB) = 688132 + 0: The total amount of wall time = 217.728540 + 0: The maximum resident set size (KB) = 688072 Test 103 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_dyn32_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/rap_restart_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rap_restart_dyn32_phy32 Checking test 104 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3588,14 +3518,14 @@ Checking test 104 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 294.609386 - 0: The maximum resident set size (KB) = 515296 + 0: The total amount of wall time = 295.086784 + 0: The maximum resident set size (KB) = 524968 Test 104 rap_restart_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/hrrr_control_restart_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hrrr_control_restart_dyn32_phy32 Checking test 105 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3634,14 +3564,14 @@ Checking test 105 hrrr_control_restart_dyn32_phy32 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 = 105.718353 - 0: The maximum resident set size (KB) = 516532 + 0: The total amount of wall time = 105.960686 + 0: The maximum resident set size (KB) = 516484 Test 105 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_dyn64_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/rap_control_dyn64_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn64_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rap_control_dyn64_phy32 Checking test 106 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3688,81 +3618,81 @@ Checking test 106 rap_control_dyn64_phy32 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 = 266.299644 - 0: The maximum resident set size (KB) = 713608 + 0: The total amount of wall time = 268.302443 + 0: The maximum resident set size (KB) = 713784 -Test 106 rap_control_dyn64_phy32 PASS +Test 106 rap_control_dyn64_phy32 PASS Tries: 2 -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/rap_control_debug_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rap_control_debug_dyn32_phy32 Checking test 107 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 282.398855 - 0: The maximum resident set size (KB) = 856828 + 0: The total amount of wall time = 284.668619 + 0: The maximum resident set size (KB) = 856896 Test 107 rap_control_debug_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/hrrr_control_debug_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hrrr_control_debug_dyn32_phy32 Checking test 108 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 278.147422 - 0: The maximum resident set size (KB) = 855136 + 0: The total amount of wall time = 280.625994 + 0: The maximum resident set size (KB) = 855072 Test 108 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/rap_control_dyn64_phy32_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rap_control_dyn64_phy32_debug Checking test 109 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 288.364421 - 0: The maximum resident set size (KB) = 880304 + 0: The total amount of wall time = 293.359177 + 0: The maximum resident set size (KB) = 880408 -Test 109 rap_control_dyn64_phy32_debug PASS +Test 109 rap_control_dyn64_phy32_debug PASS Tries: 2 -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_atm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/hafs_regional_atm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hafs_regional_atm Checking test 110 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 266.984602 - 0: The maximum resident set size (KB) = 681940 + 0: The total amount of wall time = 272.827406 + 0: The maximum resident set size (KB) = 682612 Test 110 hafs_regional_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/hafs_regional_atm_thompson_gfdlsf +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hafs_regional_atm_thompson_gfdlsf Checking test 111 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 300.481659 - 0: The maximum resident set size (KB) = 1036168 + 0: The total amount of wall time = 299.087577 + 0: The maximum resident set size (KB) = 1036596 Test 111 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_atm_ocn -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/hafs_regional_atm_ocn +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_ocn +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hafs_regional_atm_ocn Checking test 112 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3771,14 +3701,14 @@ Checking test 112 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 437.030079 - 0: The maximum resident set size (KB) = 712588 + 0: The total amount of wall time = 438.740053 + 0: The maximum resident set size (KB) = 712128 Test 112 hafs_regional_atm_ocn PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_atm_wav -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/hafs_regional_atm_wav +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_wav +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hafs_regional_atm_wav Checking test 113 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3787,14 +3717,14 @@ Checking test 113 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 928.537568 - 0: The maximum resident set size (KB) = 747600 + 0: The total amount of wall time = 932.136626 + 0: The maximum resident set size (KB) = 747372 Test 113 hafs_regional_atm_wav PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_atm_ocn_wav -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/hafs_regional_atm_ocn_wav +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_ocn_wav +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hafs_regional_atm_ocn_wav Checking test 114 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3805,28 +3735,28 @@ Checking test 114 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 1041.855635 - 0: The maximum resident set size (KB) = 764524 + 0: The total amount of wall time = 1033.833288 + 0: The maximum resident set size (KB) = 764012 Test 114 hafs_regional_atm_ocn_wav PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_1nest_atm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/hafs_regional_1nest_atm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_1nest_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hafs_regional_1nest_atm Checking test 115 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 379.004439 - 0: The maximum resident set size (KB) = 275672 + 0: The total amount of wall time = 384.165369 + 0: The maximum resident set size (KB) = 275916 Test 115 hafs_regional_1nest_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/hafs_regional_telescopic_2nests_atm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hafs_regional_telescopic_2nests_atm Checking test 116 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3835,28 +3765,28 @@ Checking test 116 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 436.126834 - 0: The maximum resident set size (KB) = 282468 + 0: The total amount of wall time = 435.760968 + 0: The maximum resident set size (KB) = 282336 Test 116 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_global_1nest_atm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/hafs_global_1nest_atm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_1nest_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hafs_global_1nest_atm Checking test 117 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 171.144779 - 0: The maximum resident set size (KB) = 177796 + 0: The total amount of wall time = 173.580236 + 0: The maximum resident set size (KB) = 177824 Test 117 hafs_global_1nest_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_global_multiple_4nests_atm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/hafs_global_multiple_4nests_atm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_multiple_4nests_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hafs_global_multiple_4nests_atm Checking test 118 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3874,14 +3804,14 @@ Checking test 118 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 504.165890 - 0: The maximum resident set size (KB) = 208996 + 0: The total amount of wall time = 505.880499 + 0: The maximum resident set size (KB) = 209868 Test 118 hafs_global_multiple_4nests_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/hafs_regional_specified_moving_1nest_atm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hafs_regional_specified_moving_1nest_atm Checking test 119 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3890,28 +3820,28 @@ Checking test 119 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 240.717221 - 0: The maximum resident set size (KB) = 288460 + 0: The total amount of wall time = 237.305121 + 0: The maximum resident set size (KB) = 288444 Test 119 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/hafs_regional_storm_following_1nest_atm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hafs_regional_storm_following_1nest_atm Checking test 120 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 231.290246 - 0: The maximum resident set size (KB) = 287152 + 0: The total amount of wall time = 226.177511 + 0: The maximum resident set size (KB) = 287124 Test 120 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hafs_regional_storm_following_1nest_atm_ocn Checking test 121 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3920,42 +3850,42 @@ Checking test 121 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 267.066329 - 0: The maximum resident set size (KB) = 324688 + 0: The total amount of wall time = 261.955513 + 0: The maximum resident set size (KB) = 325092 Test 121 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/hafs_global_storm_following_1nest_atm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_storm_following_1nest_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hafs_global_storm_following_1nest_atm Checking test 122 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 73.361481 - 0: The maximum resident set size (KB) = 193080 + 0: The total amount of wall time = 71.743742 + 0: The maximum resident set size (KB) = 192844 Test 122 hafs_global_storm_following_1nest_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 123 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 782.486560 - 0: The maximum resident set size (KB) = 353400 + 0: The total amount of wall time = 775.234228 + 0: The maximum resident set size (KB) = 353732 Test 123 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 124 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3966,14 +3896,14 @@ Checking test 124 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 745.872032 - 0: The maximum resident set size (KB) = 366612 + 0: The total amount of wall time = 744.257165 + 0: The maximum resident set size (KB) = 368372 Test 124 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_docn -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/hafs_regional_docn +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_docn +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hafs_regional_docn Checking test 125 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3981,14 +3911,14 @@ Checking test 125 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 395.637537 - 0: The maximum resident set size (KB) = 723196 + 0: The total amount of wall time = 386.974894 + 0: The maximum resident set size (KB) = 723968 Test 125 hafs_regional_docn PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_docn_oisst -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/hafs_regional_docn_oisst +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_docn_oisst +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hafs_regional_docn_oisst Checking test 126 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3996,131 +3926,131 @@ Checking test 126 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 394.494582 - 0: The maximum resident set size (KB) = 709924 + 0: The total amount of wall time = 391.347095 + 0: The maximum resident set size (KB) = 710268 Test 126 hafs_regional_docn_oisst PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_datm_cdeps -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/hafs_regional_datm_cdeps +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_datm_cdeps +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hafs_regional_datm_cdeps Checking test 127 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 1160.107523 - 0: The maximum resident set size (KB) = 808940 + 0: The total amount of wall time = 1169.053987 + 0: The maximum resident set size (KB) = 808968 Test 127 hafs_regional_datm_cdeps PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/datm_cdeps_control_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/datm_cdeps_control_cfsr Checking test 128 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 166.215970 - 0: The maximum resident set size (KB) = 721152 + 0: The total amount of wall time = 166.453730 + 0: The maximum resident set size (KB) = 721072 Test 128 datm_cdeps_control_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/datm_cdeps_restart_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/datm_cdeps_restart_cfsr Checking test 129 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 100.242676 - 0: The maximum resident set size (KB) = 716044 + 0: The total amount of wall time = 95.947139 + 0: The maximum resident set size (KB) = 716032 Test 129 datm_cdeps_restart_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_control_gefs -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/datm_cdeps_control_gefs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/datm_cdeps_control_gefs Checking test 130 datm_cdeps_control_gefs 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 = 160.893973 - 0: The maximum resident set size (KB) = 600888 + 0: The total amount of wall time = 159.743803 + 0: The maximum resident set size (KB) = 601048 Test 130 datm_cdeps_control_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_iau_gefs -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/datm_cdeps_iau_gefs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_iau_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/datm_cdeps_iau_gefs Checking test 131 datm_cdeps_iau_gefs 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 = 162.820037 - 0: The maximum resident set size (KB) = 601180 + 0: The total amount of wall time = 163.238110 + 0: The maximum resident set size (KB) = 601004 Test 131 datm_cdeps_iau_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_stochy_gefs -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/datm_cdeps_stochy_gefs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_stochy_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/datm_cdeps_stochy_gefs Checking test 132 datm_cdeps_stochy_gefs 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 = 161.064884 - 0: The maximum resident set size (KB) = 601104 + 0: The total amount of wall time = 161.774148 + 0: The maximum resident set size (KB) = 601048 Test 132 datm_cdeps_stochy_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/datm_cdeps_ciceC_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_ciceC_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/datm_cdeps_ciceC_cfsr Checking test 133 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.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.251258 - 0: The maximum resident set size (KB) = 721132 + 0: The total amount of wall time = 167.037541 + 0: The maximum resident set size (KB) = 721140 Test 133 datm_cdeps_ciceC_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_bulk_cfsr -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/datm_cdeps_bulk_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_bulk_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/datm_cdeps_bulk_cfsr Checking test 134 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 167.800514 - 0: The maximum resident set size (KB) = 721116 + 0: The total amount of wall time = 165.115945 + 0: The maximum resident set size (KB) = 721164 Test 134 datm_cdeps_bulk_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_bulk_gefs -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/datm_cdeps_bulk_gefs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_bulk_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/datm_cdeps_bulk_gefs Checking test 135 datm_cdeps_bulk_gefs 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 = 162.448857 - 0: The maximum resident set size (KB) = 600912 + 0: The total amount of wall time = 158.222040 + 0: The maximum resident set size (KB) = 601952 Test 135 datm_cdeps_bulk_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_mx025_cfsr -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/datm_cdeps_mx025_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_mx025_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/datm_cdeps_mx025_cfsr Checking test 136 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4129,14 +4059,14 @@ Checking test 136 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 434.351330 - 0: The maximum resident set size (KB) = 496784 + 0: The total amount of wall time = 431.632027 + 0: The maximum resident set size (KB) = 497260 Test 136 datm_cdeps_mx025_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_mx025_gefs -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/datm_cdeps_mx025_gefs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_mx025_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/datm_cdeps_mx025_gefs Checking test 137 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4145,64 +4075,64 @@ Checking test 137 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 443.686553 - 0: The maximum resident set size (KB) = 476008 + 0: The total amount of wall time = 408.466324 + 0: The maximum resident set size (KB) = 476772 Test 137 datm_cdeps_mx025_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/datm_cdeps_multiple_files_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/datm_cdeps_multiple_files_cfsr Checking test 138 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 168.161253 - 0: The maximum resident set size (KB) = 721148 + 0: The total amount of wall time = 165.902689 + 0: The maximum resident set size (KB) = 720996 Test 138 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/datm_cdeps_3072x1536_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/datm_cdeps_3072x1536_cfsr Checking test 139 datm_cdeps_3072x1536_cfsr 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 = 251.716089 - 0: The maximum resident set size (KB) = 1947792 + 0: The total amount of wall time = 255.082484 + 0: The maximum resident set size (KB) = 1948360 Test 139 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_gfs -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/datm_cdeps_gfs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_gfs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/datm_cdeps_gfs Checking test 140 datm_cdeps_gfs 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 = 257.189975 - 0: The maximum resident set size (KB) = 1948424 + 0: The total amount of wall time = 254.068460 + 0: The maximum resident set size (KB) = 1948276 Test 140 datm_cdeps_gfs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_debug_cfsr -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/datm_cdeps_debug_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_debug_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/datm_cdeps_debug_cfsr Checking test 141 datm_cdeps_debug_cfsr 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 = 375.359638 - 0: The maximum resident set size (KB) = 714836 + 0: The total amount of wall time = 374.584871 + 0: The maximum resident set size (KB) = 714832 Test 141 datm_cdeps_debug_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/datm_cdeps_lnd_gswp3 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/datm_cdeps_lnd_gswp3 Checking test 142 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4211,14 +4141,14 @@ Checking test 142 datm_cdeps_lnd_gswp3 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 = 11.809697 - 0: The maximum resident set size (KB) = 153872 + 0: The total amount of wall time = 14.116383 + 0: The maximum resident set size (KB) = 145876 Test 142 datm_cdeps_lnd_gswp3 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/datm_cdeps_lnd_gswp3_rst +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/datm_cdeps_lnd_gswp3_rst Checking test 143 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4227,14 +4157,14 @@ Checking test 143 datm_cdeps_lnd_gswp3_rst 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 = 17.176370 - 0: The maximum resident set size (KB) = 145764 + 0: The total amount of wall time = 22.627641 + 0: The maximum resident set size (KB) = 153908 Test 143 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8_atmlnd_sbs -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/control_p8_atmlnd_sbs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_atmlnd_sbs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_p8_atmlnd_sbs Checking test 144 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4319,14 +4249,14 @@ Checking test 144 control_p8_atmlnd_sbs 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 = 254.001290 - 0: The maximum resident set size (KB) = 1438164 + 0: The total amount of wall time = 233.321711 + 0: The maximum resident set size (KB) = 1425160 Test 144 control_p8_atmlnd_sbs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_atmwav -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/control_atmwav +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_atmwav +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_atmwav Checking test 145 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4370,14 +4300,14 @@ Checking test 145 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 98.549780 - 0: The maximum resident set size (KB) = 450740 + 0: The total amount of wall time = 94.726500 + 0: The maximum resident set size (KB) = 450724 Test 145 control_atmwav PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/atmaero_control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/atmaero_control_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/atmaero_control_p8 Checking test 146 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4421,14 +4351,14 @@ Checking test 146 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 266.167310 - 0: The maximum resident set size (KB) = 1478880 + 0: The total amount of wall time = 244.531048 + 0: The maximum resident set size (KB) = 1461416 Test 146 atmaero_control_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/atmaero_control_p8_rad -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/atmaero_control_p8_rad +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8_rad +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/atmaero_control_p8_rad Checking test 147 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4472,14 +4402,14 @@ Checking test 147 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 302.555222 - 0: The maximum resident set size (KB) = 1481612 + 0: The total amount of wall time = 299.230987 + 0: The maximum resident set size (KB) = 1481800 Test 147 atmaero_control_p8_rad PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/atmaero_control_p8_rad_micro -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/atmaero_control_p8_rad_micro +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8_rad_micro +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/atmaero_control_p8_rad_micro Checking test 148 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4523,14 +4453,14 @@ Checking test 148 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 312.559136 - 0: The maximum resident set size (KB) = 1485780 + 0: The total amount of wall time = 307.054533 + 0: The maximum resident set size (KB) = 1503892 Test 148 atmaero_control_p8_rad_micro PASS -baseline dir = /lustre/f2/pdata/ncep_shared/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_atmaq -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_20704/regional_atmaq +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_atmaq +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/regional_atmaq Checking test 149 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4546,12 +4476,98 @@ Checking test 149 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 644.196657 - 0: The maximum resident set size (KB) = 1083048 + 0: The total amount of wall time = 636.231552 + 0: The maximum resident set size (KB) = 1087232 Test 149 regional_atmaq PASS +FAILED TESTS: +Test cpld_debug_p8 015 failed in run_test failed +Test rap_progcld_thompson_debug 092 failed in run_test failed + +REGRESSION TEST FAILED +Tue Feb 28 18:43:02 EST 2023 +Elapsed time: 06h:09m:03s. Have a nice day! +Tue Feb 28 19:56:54 EST 2023 +Start Regression test + +Compile 001 elapsed time 716 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 002 elapsed time 608 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_debug_p8 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_14293/cpld_debug_p8 +Checking test 001 cpld_debug_p8 results .... + Comparing sfcf003.tile1.nc .........OK + Comparing sfcf003.tile2.nc .........OK + Comparing sfcf003.tile3.nc .........OK + Comparing sfcf003.tile4.nc .........OK + Comparing sfcf003.tile5.nc .........OK + Comparing sfcf003.tile6.nc .........OK + Comparing atmf003.tile1.nc .........OK + Comparing atmf003.tile2.nc .........OK + Comparing atmf003.tile3.nc .........OK + Comparing atmf003.tile4.nc .........OK + Comparing atmf003.tile5.nc .........OK + Comparing atmf003.tile6.nc .........OK + Comparing gocart.inst_aod.20210322_0900z.nc4 .........OK + Comparing RESTART/20210322.090000.coupler.res .........OK + Comparing RESTART/20210322.090000.fv_core.res.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-22-32400.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK + Comparing 20210322.090000.out_pnt.ww3 .........OK + Comparing 20210322.090000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 583.282275 + 0: The maximum resident set size (KB) = 1625816 + +Test 001 cpld_debug_p8 PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_progcld_thompson_debug +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_14293/rap_progcld_thompson_debug +Checking test 002 rap_progcld_thompson_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 285.729743 + 0: The maximum resident set size (KB) = 972060 + +Test 002 rap_progcld_thompson_debug PASS + REGRESSION TEST WAS SUCCESSFUL -Fri Feb 24 19:17:41 EST 2023 -Elapsed time: 02h:12m:30s. Have a nice day! +Tue Feb 28 20:24:42 EST 2023 +Elapsed time: 00h:27m:49s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index e3e76cdc7e5..e96473c051d 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,21 +1,21 @@ -Fri Feb 24 19:17:45 UTC 2023 +Tue Feb 28 17:18:21 UTC 2023 Start Regression test -Compile 001 elapsed time 183 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 188 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 312 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 97 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 183 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 391 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 315 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 313 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 261 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 227 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 139 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 001 elapsed time 180 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 182 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 310 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 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 005 elapsed time 179 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 386 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 310 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 311 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 256 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 222 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 141 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON Compile 012 elapsed time 111 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/control_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/control_c48 Checking test 001 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -54,14 +54,14 @@ Checking test 001 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 682.809532 -0: The maximum resident set size (KB) = 705152 +0: The total amount of wall time = 681.995352 +0: The maximum resident set size (KB) = 703460 Test 001 control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/control_stochy +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/control_stochy Checking test 002 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -72,14 +72,14 @@ Checking test 002 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 659.861593 - 0: The maximum resident set size (KB) = 476728 + 0: The total amount of wall time = 650.806372 + 0: The maximum resident set size (KB) = 477796 Test 002 control_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/control_ras +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/control_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/control_ras Checking test 003 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -90,14 +90,14 @@ Checking test 003 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 823.187113 - 0: The maximum resident set size (KB) = 489112 + 0: The total amount of wall time = 823.581703 + 0: The maximum resident set size (KB) = 487412 Test 003 control_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/control_p8 Checking test 004 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -144,14 +144,14 @@ Checking test 004 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 893.530325 - 0: The maximum resident set size (KB) = 1234804 + 0: The total amount of wall time = 883.743504 + 0: The maximum resident set size (KB) = 1236324 Test 004 control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/rap_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/rap_control Checking test 005 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -198,14 +198,14 @@ Checking test 005 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1476.546402 - 0: The maximum resident set size (KB) = 825136 + 0: The total amount of wall time = 1505.343195 + 0: The maximum resident set size (KB) = 827564 Test 005 rap_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/rap_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/rap_decomp Checking test 006 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -252,14 +252,14 @@ Checking test 006 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1410.151808 - 0: The maximum resident set size (KB) = 829904 + 0: The total amount of wall time = 1497.239260 + 0: The maximum resident set size (KB) = 826780 Test 006 rap_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/rap_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/rap_2threads Checking test 007 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -306,14 +306,14 @@ Checking test 007 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1381.085033 - 0: The maximum resident set size (KB) = 895140 + 0: The total amount of wall time = 1395.296250 + 0: The maximum resident set size (KB) = 899828 Test 007 rap_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/rap_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/rap_restart Checking test 008 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -352,14 +352,14 @@ Checking test 008 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 730.562248 - 0: The maximum resident set size (KB) = 544164 + 0: The total amount of wall time = 723.548459 + 0: The maximum resident set size (KB) = 545176 Test 008 rap_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/rap_sfcdiff +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/rap_sfcdiff Checking test 009 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -406,14 +406,14 @@ Checking test 009 rap_sfcdiff results .... Comparing 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.348535 - 0: The maximum resident set size (KB) = 831816 + 0: The total amount of wall time = 1468.993275 + 0: The maximum resident set size (KB) = 825568 Test 009 rap_sfcdiff PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/rap_sfcdiff_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/rap_sfcdiff_decomp Checking test 010 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -460,14 +460,14 @@ Checking test 010 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1467.158694 - 0: The maximum resident set size (KB) = 830480 + 0: The total amount of wall time = 1418.171232 + 0: The maximum resident set size (KB) = 825952 Test 010 rap_sfcdiff_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/rap_sfcdiff_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/rap_sfcdiff_restart Checking test 011 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -506,14 +506,14 @@ Checking test 011 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1063.366522 - 0: The maximum resident set size (KB) = 550264 + 0: The total amount of wall time = 1073.372238 + 0: The maximum resident set size (KB) = 554372 Test 011 rap_sfcdiff_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/hrrr_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/hrrr_control Checking test 012 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -560,14 +560,14 @@ Checking test 012 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1465.765900 - 0: The maximum resident set size (KB) = 820952 + 0: The total amount of wall time = 1453.890472 + 0: The maximum resident set size (KB) = 831164 Test 012 hrrr_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/hrrr_control_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/hrrr_control_2threads Checking test 013 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -614,14 +614,14 @@ Checking test 013 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1352.200386 - 0: The maximum resident set size (KB) = 888756 + 0: The total amount of wall time = 1362.051701 + 0: The maximum resident set size (KB) = 893208 Test 013 hrrr_control_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/hrrr_control_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/hrrr_control_decomp Checking test 014 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -668,14 +668,14 @@ Checking test 014 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1405.479115 - 0: The maximum resident set size (KB) = 827404 + 0: The total amount of wall time = 1419.127555 + 0: The maximum resident set size (KB) = 828608 Test 014 hrrr_control_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/hrrr_control_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/hrrr_control_restart Checking test 015 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -714,14 +714,14 @@ Checking test 015 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1033.191862 - 0: The maximum resident set size (KB) = 546868 + 0: The total amount of wall time = 1061.841752 + 0: The maximum resident set size (KB) = 548908 Test 015 hrrr_control_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/rrfs_v1beta +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/rrfs_v1beta Checking test 016 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -768,14 +768,14 @@ Checking test 016 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1461.941031 - 0: The maximum resident set size (KB) = 822048 + 0: The total amount of wall time = 1448.064702 + 0: The maximum resident set size (KB) = 825300 Test 016 rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/rrfs_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/rrfs_conus13km_hrrr_warm Checking test 017 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -784,14 +784,14 @@ Checking test 017 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 767.642233 - 0: The maximum resident set size (KB) = 633252 + 0: The total amount of wall time = 769.900404 + 0: The maximum resident set size (KB) = 636516 Test 017 rrfs_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/rrfs_smoke_conus13km_hrrr_warm Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -800,14 +800,14 @@ Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 833.231562 - 0: The maximum resident set size (KB) = 647308 + 0: The total amount of wall time = 789.567918 + 0: The maximum resident set size (KB) = 651592 Test 018 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/rrfs_conus13km_radar_tten_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rrfs_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/rrfs_conus13km_radar_tten_warm Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -816,14 +816,14 @@ Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 770.992510 - 0: The maximum resident set size (KB) = 637080 + 0: The total amount of wall time = 755.956341 + 0: The maximum resident set size (KB) = 638848 Test 019 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/rrfs_conus13km_radar_tten_warm_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rrfs_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/rrfs_conus13km_radar_tten_warm_2threads Checking test 020 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -832,208 +832,208 @@ Checking test 020 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 987.328122 - 0: The maximum resident set size (KB) = 633840 + 0: The total amount of wall time = 885.814415 + 0: The maximum resident set size (KB) = 637104 Test 020 rrfs_conus13km_radar_tten_warm_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/control_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/control_diag_debug Checking test 021 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 128.431282 - 0: The maximum resident set size (KB) = 527140 + 0: The total amount of wall time = 128.243754 + 0: The maximum resident set size (KB) = 534476 Test 021 control_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/regional_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/regional_debug Checking test 022 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 741.064088 - 0: The maximum resident set size (KB) = 595968 + 0: The total amount of wall time = 700.252699 + 0: The maximum resident set size (KB) = 594120 Test 022 regional_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/rap_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/rap_control_debug Checking test 023 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 177.327883 - 0: The maximum resident set size (KB) = 844600 + 0: The total amount of wall time = 172.706799 + 0: The maximum resident set size (KB) = 844760 Test 023 rap_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/hrrr_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/hrrr_control_debug Checking test 024 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 176.514335 - 0: The maximum resident set size (KB) = 847748 + 0: The total amount of wall time = 170.575272 + 0: The maximum resident set size (KB) = 840912 Test 024 hrrr_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/rap_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/rap_diag_debug Checking test 025 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 219.220778 - 0: The maximum resident set size (KB) = 933044 + 0: The total amount of wall time = 215.055794 + 0: The maximum resident set size (KB) = 926236 Test 025 rap_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/rap_noah_sfcdiff_cires_ugwp_debug Checking test 026 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.541808 - 0: The maximum resident set size (KB) = 843764 + 0: The total amount of wall time = 270.294493 + 0: The maximum resident set size (KB) = 847904 Test 026 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/rap_progcld_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/rap_progcld_thompson_debug Checking test 027 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 174.841030 - 0: The maximum resident set size (KB) = 847120 + 0: The total amount of wall time = 178.101190 + 0: The maximum resident set size (KB) = 845300 Test 027 rap_progcld_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/rrfs_v1beta_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/rrfs_v1beta_debug Checking test 028 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 171.952380 - 0: The maximum resident set size (KB) = 846512 + 0: The total amount of wall time = 177.743407 + 0: The maximum resident set size (KB) = 842864 Test 028 rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/control_ras_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/control_ras_debug Checking test 029 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 105.116581 - 0: The maximum resident set size (KB) = 482780 + 0: The total amount of wall time = 103.041127 + 0: The maximum resident set size (KB) = 484492 Test 029 control_ras_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/control_stochy_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/control_stochy_debug Checking test 030 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 119.512963 - 0: The maximum resident set size (KB) = 476156 + 0: The total amount of wall time = 117.235254 + 0: The maximum resident set size (KB) = 480624 Test 030 control_stochy_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/control_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/control_debug_p8 Checking test 031 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 117.918215 - 0: The maximum resident set size (KB) = 1236368 + 0: The total amount of wall time = 118.628295 + 0: The maximum resident set size (KB) = 1236320 Test 031 control_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/rrfs_conus13km_hrrr_warm_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rrfs_conus13km_hrrr_warm_debugs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/rrfs_conus13km_hrrr_warm_debug Checking test 032 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 581.978980 - 0: The maximum resident set size (KB) = 654332 + 0: The total amount of wall time = 575.808646 + 0: The maximum resident set size (KB) = 653820 Test 032 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/rrfs_conus13km_radar_tten_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/rrfs_conus13km_radar_tten_warm_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rrfs_conus13km_radar_tten_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/rrfs_conus13km_radar_tten_warm_debug Checking test 033 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 538.492380 - 0: The maximum resident set size (KB) = 657788 + 0: The total amount of wall time = 551.560096 + 0: The maximum resident set size (KB) = 655992 Test 033 rrfs_conus13km_radar_tten_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/control_wam_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/control_wam_debug Checking test 034 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 185.906836 - 0: The maximum resident set size (KB) = 194352 + 0: The total amount of wall time = 184.147770 + 0: The maximum resident set size (KB) = 193420 Test 034 control_wam_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/rap_control_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/rap_control_dyn32_phy32 Checking test 035 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1080,14 +1080,14 @@ Checking test 035 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1442.302238 - 0: The maximum resident set size (KB) = 689560 + 0: The total amount of wall time = 1419.930772 + 0: The maximum resident set size (KB) = 685984 Test 035 rap_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/hrrr_control_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/hrrr_control_dyn32_phy32 Checking test 036 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1134,14 +1134,14 @@ Checking test 036 hrrr_control_dyn32_phy32 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 = 709.409468 - 0: The maximum resident set size (KB) = 682576 + 0: The total amount of wall time = 731.249018 + 0: The maximum resident set size (KB) = 688044 Test 036 hrrr_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/rap_2threads_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/rap_2threads_dyn32_phy32 Checking test 037 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1188,14 +1188,14 @@ Checking test 037 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1325.888736 - 0: The maximum resident set size (KB) = 728728 + 0: The total amount of wall time = 1319.444562 + 0: The maximum resident set size (KB) = 730604 Test 037 rap_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/hrrr_control_2threads_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/hrrr_control_2threads_dyn32_phy32 Checking test 038 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1242,14 +1242,14 @@ Checking test 038 hrrr_control_2threads_dyn32_phy32 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 = 667.276353 - 0: The maximum resident set size (KB) = 725544 + 0: The total amount of wall time = 668.123702 + 0: The maximum resident set size (KB) = 728524 Test 038 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/hrrr_control_decomp_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/hrrr_control_decomp_dyn32_phy32 Checking test 039 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1296,14 +1296,14 @@ Checking test 039 hrrr_control_decomp_dyn32_phy32 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 = 716.182131 - 0: The maximum resident set size (KB) = 689292 + 0: The total amount of wall time = 721.478766 + 0: The maximum resident set size (KB) = 682736 Test 039 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/rap_restart_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/rap_restart_dyn32_phy32 Checking test 040 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1342,14 +1342,14 @@ Checking test 040 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1067.680494 - 0: The maximum resident set size (KB) = 511364 + 0: The total amount of wall time = 1065.043011 + 0: The maximum resident set size (KB) = 512088 Test 040 rap_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/hrrr_control_restart_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/hrrr_control_restart_dyn32_phy32 Checking test 041 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1388,14 +1388,14 @@ Checking test 041 hrrr_control_restart_dyn32_phy32 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 = 366.359498 - 0: The maximum resident set size (KB) = 509424 + 0: The total amount of wall time = 364.269706 + 0: The maximum resident set size (KB) = 512352 Test 041 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/rap_control_dyn64_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/rap_control_dyn64_phy32 Checking test 042 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1442,56 +1442,56 @@ Checking test 042 rap_control_dyn64_phy32 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 = 1056.280456 - 0: The maximum resident set size (KB) = 711784 + 0: The total amount of wall time = 1071.739973 + 0: The maximum resident set size (KB) = 709080 Test 042 rap_control_dyn64_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/rap_control_debug_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/rap_control_debug_dyn32_phy32 Checking test 043 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 170.850903 - 0: The maximum resident set size (KB) = 699924 + 0: The total amount of wall time = 174.725396 + 0: The maximum resident set size (KB) = 709280 Test 043 rap_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/hrrr_control_debug_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/hrrr_control_debug_dyn32_phy32 Checking test 044 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 173.422291 - 0: The maximum resident set size (KB) = 696916 + 0: The total amount of wall time = 170.059599 + 0: The maximum resident set size (KB) = 708380 Test 044 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/rap_control_dyn64_phy32_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control_debug_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/rap_control_dyn64_phy32_debug Checking test 045 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 208.808031 - 0: The maximum resident set size (KB) = 718992 + 0: The total amount of wall time = 204.468927 + 0: The maximum resident set size (KB) = 725104 Test 045 rap_control_dyn64_phy32_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/cpld_control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/cpld_control_p8 Checking test 046 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1556,14 +1556,14 @@ Checking test 046 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1679.050060 - 0: The maximum resident set size (KB) = 1431368 + 0: The total amount of wall time = 1754.270977 + 0: The maximum resident set size (KB) = 1430092 Test 046 cpld_control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/cpld_control_nowave_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/cpld_control_c96_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/cpld_control_nowave_noaero_p8 Checking test 047 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1625,14 +1625,14 @@ Checking test 047 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 1209.813334 - 0: The maximum resident set size (KB) = 1332668 + 0: The total amount of wall time = 1207.285492 + 0: The maximum resident set size (KB) = 1334824 Test 047 cpld_control_nowave_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/cpld_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/cpld_debug_p8 Checking test 048 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1685,25 +1685,25 @@ Checking test 048 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 868.466605 - 0: The maximum resident set size (KB) = 1445272 + 0: The total amount of wall time = 889.194595 + 0: The maximum resident set size (KB) = 1446572 Test 048 cpld_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/GNU/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24236/datm_cdeps_control_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/datm_cdeps_control_cfsr Checking test 049 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 180.582808 - 0: The maximum resident set size (KB) = 664248 + 0: The total amount of wall time = 175.226684 + 0: The maximum resident set size (KB) = 663140 Test 049 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Fri Feb 24 20:25:40 UTC 2023 -Elapsed time: 01h:07m:55s. Have a nice day! +Tue Feb 28 20:16:54 UTC 2023 +Elapsed time: 02h:58m:36s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index c99ed02ef78..9690785037c 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,38 +1,38 @@ -Fri Feb 24 15:09:14 UTC 2023 +Tue Feb 28 17:02:57 UTC 2023 Start Regression test -Compile 001 elapsed time 611 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 611 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 563 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 226 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 200 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 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 007 elapsed time 504 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 483 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 479 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 464 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 428 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 205 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 013 elapsed time 159 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 437 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 015 elapsed time 447 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 159 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 017 elapsed time 158 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 559 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 019 elapsed time 187 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 668 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 564 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 022 elapsed time 181 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 023 elapsed time 107 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 024 elapsed time 51 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 025 elapsed time 475 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 026 elapsed time 586 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 027 elapsed time 464 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 453 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 190 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8_mixedmode -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/cpld_control_p8_mixedmode +Compile 001 elapsed time 613 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 596 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 558 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 215 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 209 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 498 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 489 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 474 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 476 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 450 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 432 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 203 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 174 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 014 elapsed time 435 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 442 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 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 017 elapsed time 175 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 557 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 019 elapsed time 183 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 622 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 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 022 elapsed time 184 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 023 elapsed time 105 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 024 elapsed time 52 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 025 elapsed time 471 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 026 elapsed time 523 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 027 elapsed time 458 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 454 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 169 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8_mixedmode +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -97,14 +97,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 304.979389 - 0: The maximum resident set size (KB) = 3139860 + 0: The total amount of wall time = 303.532610 + 0: The maximum resident set size (KB) = 3146468 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_gfsv17 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/cpld_control_gfsv17 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_gfsv17 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -168,14 +168,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 222.130724 - 0: The maximum resident set size (KB) = 1723768 + 0: The total amount of wall time = 223.457946 + 0: The maximum resident set size (KB) = 1730508 Test 002 cpld_control_gfsv17 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/cpld_control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -240,14 +240,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 336.428480 - 0: The maximum resident set size (KB) = 3176744 + 0: The total amount of wall time = 335.680410 + 0: The maximum resident set size (KB) = 3176712 Test 003 cpld_control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/cpld_restart_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -300,14 +300,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 191.274846 - 0: The maximum resident set size (KB) = 3050576 + 0: The total amount of wall time = 192.921637 + 0: The maximum resident set size (KB) = 3049552 Test 004 cpld_restart_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/cpld_2threads_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -360,14 +360,14 @@ Checking test 005 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 354.182786 - 0: The maximum resident set size (KB) = 3508512 + 0: The total amount of wall time = 353.531541 + 0: The maximum resident set size (KB) = 3504052 Test 005 cpld_2threads_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/cpld_decomp_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/cpld_decomp_p8 Checking test 006 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -420,14 +420,14 @@ Checking test 006 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 335.210823 - 0: The maximum resident set size (KB) = 3167036 + 0: The total amount of wall time = 337.312641 + 0: The maximum resident set size (KB) = 3163776 Test 006 cpld_decomp_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/cpld_mpi_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/cpld_mpi_p8 Checking test 007 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -480,14 +480,14 @@ Checking test 007 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 278.176902 - 0: The maximum resident set size (KB) = 3019960 + 0: The total amount of wall time = 279.787983 + 0: The maximum resident set size (KB) = 3020704 Test 007 cpld_mpi_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_ciceC_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/cpld_control_ciceC_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_ciceC_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/cpld_control_ciceC_p8 Checking test 008 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -552,14 +552,14 @@ Checking test 008 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 338.015888 - 0: The maximum resident set size (KB) = 3180988 + 0: The total amount of wall time = 335.774463 + 0: The maximum resident set size (KB) = 3177544 Test 008 cpld_control_ciceC_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/cpld_control_c192_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/cpld_control_c192_p8 Checking test 009 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -612,14 +612,14 @@ Checking test 009 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 579.104628 - 0: The maximum resident set size (KB) = 3252708 + 0: The total amount of wall time = 578.791677 + 0: The maximum resident set size (KB) = 3252664 Test 009 cpld_control_c192_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/cpld_restart_c192_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/cpld_restart_c192_p8 Checking test 010 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -672,14 +672,14 @@ Checking test 010 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 404.968295 - 0: The maximum resident set size (KB) = 3152732 + 0: The total amount of wall time = 400.279222 + 0: The maximum resident set size (KB) = 3151064 Test 010 cpld_restart_c192_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/cpld_bmark_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/cpld_bmark_p8 Checking test 011 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -727,14 +727,14 @@ Checking test 011 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 701.010036 - 0: The maximum resident set size (KB) = 4032068 + 0: The total amount of wall time = 694.111111 + 0: The maximum resident set size (KB) = 4041660 Test 011 cpld_bmark_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/cpld_restart_bmark_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/cpld_restart_bmark_p8 Checking test 012 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -782,14 +782,14 @@ Checking test 012 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 438.101944 - 0: The maximum resident set size (KB) = 3968332 + 0: The total amount of wall time = 431.622391 + 0: The maximum resident set size (KB) = 3968248 Test 012 cpld_restart_bmark_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/cpld_control_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/cpld_control_noaero_p8 Checking test 013 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -853,14 +853,14 @@ Checking test 013 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 261.031121 - 0: The maximum resident set size (KB) = 1715432 + 0: The total amount of wall time = 259.351943 + 0: The maximum resident set size (KB) = 1718876 Test 013 cpld_control_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/cpld_control_nowave_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c96_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/cpld_control_nowave_noaero_p8 Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -922,14 +922,14 @@ Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 256.811111 - 0: The maximum resident set size (KB) = 1765960 + 0: The total amount of wall time = 255.805177 + 0: The maximum resident set size (KB) = 1766636 Test 014 cpld_control_nowave_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/cpld_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/cpld_debug_p8 Checking test 015 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -982,14 +982,14 @@ Checking test 015 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 661.090097 - 0: The maximum resident set size (KB) = 3245788 + 0: The total amount of wall time = 658.148590 + 0: The maximum resident set size (KB) = 3243720 Test 015 cpld_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_debug_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/cpld_debug_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_debug_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/cpld_debug_noaero_p8 Checking test 016 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1041,14 +1041,14 @@ Checking test 016 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 410.017714 - 0: The maximum resident set size (KB) = 1739388 + 0: The total amount of wall time = 402.269255 + 0: The maximum resident set size (KB) = 1741528 Test 016 cpld_debug_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_noaero_p8_agrid -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/cpld_control_noaero_p8_agrid +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_noaero_p8_agrid +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/cpld_control_noaero_p8_agrid Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1110,14 +1110,14 @@ Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 264.334714 - 0: The maximum resident set size (KB) = 1761948 + 0: The total amount of wall time = 266.006258 + 0: The maximum resident set size (KB) = 1760240 Test 017 cpld_control_noaero_p8_agrid PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/cpld_control_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/cpld_control_c48 Checking test 018 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1167,14 +1167,14 @@ Checking test 018 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 585.524267 - 0: The maximum resident set size (KB) = 2796576 + 0: The total amount of wall time = 583.314755 + 0: The maximum resident set size (KB) = 2806780 Test 018 cpld_control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/cpld_warmstart_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_warmstart_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/cpld_warmstart_c48 Checking test 019 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1224,14 +1224,14 @@ Checking test 019 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 158.603706 - 0: The maximum resident set size (KB) = 2801772 + 0: The total amount of wall time = 155.823186 + 0: The maximum resident set size (KB) = 2796916 Test 019 cpld_warmstart_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/cpld_restart_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_warmstart_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/cpld_restart_c48 Checking test 020 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1281,14 +1281,14 @@ Checking test 020 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 83.128372 - 0: The maximum resident set size (KB) = 2247172 + 0: The total amount of wall time = 81.003502 + 0: The maximum resident set size (KB) = 2248572 Test 020 cpld_restart_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_CubedSphereGrid -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/control_CubedSphereGrid +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_CubedSphereGrid Checking test 021 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1315,28 +1315,28 @@ Checking test 021 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 129.093711 - 0: The maximum resident set size (KB) = 625796 + 0: The total amount of wall time = 128.517604 + 0: The maximum resident set size (KB) = 624612 Test 021 control_CubedSphereGrid PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_CubedSphereGrid_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/control_CubedSphereGrid_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_CubedSphereGrid_parallel Checking test 022 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 127.085696 - 0: The maximum resident set size (KB) = 627320 + 0: The total amount of wall time = 128.805804 + 0: The maximum resident set size (KB) = 629692 Test 022 control_CubedSphereGrid_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_latlon -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/control_latlon +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_latlon +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_latlon Checking test 023 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1347,14 +1347,14 @@ Checking test 023 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 131.927417 - 0: The maximum resident set size (KB) = 628444 + 0: The total amount of wall time = 132.544540 + 0: The maximum resident set size (KB) = 627356 Test 023 control_latlon PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_wrtGauss_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/control_wrtGauss_netcdf_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wrtGauss_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_wrtGauss_netcdf_parallel Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1365,14 +1365,14 @@ Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.065912 - 0: The maximum resident set size (KB) = 634196 + 0: The total amount of wall time = 135.205680 + 0: The maximum resident set size (KB) = 628992 Test 024 control_wrtGauss_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/control_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_c48 Checking test 025 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1411,14 +1411,14 @@ Checking test 025 control_c48 results .... Comparing 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.670167 -0: The maximum resident set size (KB) = 819492 +0: The total amount of wall time = 368.759295 +0: The maximum resident set size (KB) = 803952 Test 025 control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/control_c192 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_c192 Checking test 026 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1429,14 +1429,14 @@ Checking test 026 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 524.106430 - 0: The maximum resident set size (KB) = 763584 + 0: The total amount of wall time = 524.527985 + 0: The maximum resident set size (KB) = 759524 Test 026 control_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/control_c384 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c384 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_c384 Checking test 027 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1447,14 +1447,14 @@ Checking test 027 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 527.807337 - 0: The maximum resident set size (KB) = 1265248 + 0: The total amount of wall time = 539.089063 + 0: The maximum resident set size (KB) = 1254748 Test 027 control_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_c384gdas -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/control_c384gdas +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c384gdas +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_c384gdas Checking test 028 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1497,14 +1497,14 @@ Checking test 028 control_c384gdas 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 = 464.821270 - 0: The maximum resident set size (KB) = 1363808 + 0: The total amount of wall time = 467.793097 + 0: The maximum resident set size (KB) = 1368604 Test 028 control_c384gdas PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/control_stochy +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_stochy Checking test 029 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1515,28 +1515,28 @@ Checking test 029 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 87.223138 - 0: The maximum resident set size (KB) = 632920 + 0: The total amount of wall time = 86.129680 + 0: The maximum resident set size (KB) = 629680 Test 029 control_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/control_stochy_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_stochy_restart Checking test 030 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 46.709195 - 0: The maximum resident set size (KB) = 485380 + 0: The total amount of wall time = 47.192091 + 0: The maximum resident set size (KB) = 482984 Test 030 control_stochy_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/control_lndp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_lndp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_lndp Checking test 031 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1547,14 +1547,14 @@ Checking test 031 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 80.403670 - 0: The maximum resident set size (KB) = 626888 + 0: The total amount of wall time = 80.431965 + 0: The maximum resident set size (KB) = 630616 Test 031 control_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_iovr4 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/control_iovr4 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_iovr4 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_iovr4 Checking test 032 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1569,14 +1569,14 @@ Checking test 032 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.483452 - 0: The maximum resident set size (KB) = 622144 + 0: The total amount of wall time = 133.889333 + 0: The maximum resident set size (KB) = 627540 Test 032 control_iovr4 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_iovr5 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/control_iovr5 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_iovr5 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_iovr5 Checking test 033 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1591,14 +1591,14 @@ Checking test 033 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 133.832917 - 0: The maximum resident set size (KB) = 623744 + 0: The total amount of wall time = 133.523047 + 0: The maximum resident set size (KB) = 625384 Test 033 control_iovr5 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_p8 Checking test 034 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1645,14 +1645,14 @@ Checking test 034 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 165.087801 - 0: The maximum resident set size (KB) = 1602576 + 0: The total amount of wall time = 166.701506 + 0: The maximum resident set size (KB) = 1605472 Test 034 control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/control_p8_lndp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_lndp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_p8_lndp Checking test 035 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1671,14 +1671,14 @@ Checking test 035 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 308.714409 - 0: The maximum resident set size (KB) = 1604176 + 0: The total amount of wall time = 310.023083 + 0: The maximum resident set size (KB) = 1601464 Test 035 control_p8_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/control_restart_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_restart_p8 Checking test 036 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1717,14 +1717,14 @@ Checking test 036 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 86.904206 - 0: The maximum resident set size (KB) = 874104 + 0: The total amount of wall time = 87.477865 + 0: The maximum resident set size (KB) = 876128 Test 036 control_restart_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/control_decomp_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_decomp_p8 Checking test 037 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1767,14 +1767,14 @@ Checking test 037 control_decomp_p8 results .... Comparing 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.576624 - 0: The maximum resident set size (KB) = 1580748 + 0: The total amount of wall time = 171.411649 + 0: The maximum resident set size (KB) = 1589096 Test 037 control_decomp_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/control_2threads_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_2threads_p8 Checking test 038 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1817,14 +1817,14 @@ Checking test 038 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 161.370574 - 0: The maximum resident set size (KB) = 1674168 + 0: The total amount of wall time = 161.928273 + 0: The maximum resident set size (KB) = 1683492 Test 038 control_2threads_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/control_p8_rrtmgp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_p8_rrtmgp Checking test 039 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1871,14 +1871,14 @@ Checking test 039 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 222.494647 - 0: The maximum resident set size (KB) = 1665044 + 0: The total amount of wall time = 223.900188 + 0: The maximum resident set size (KB) = 1673148 Test 039 control_p8_rrtmgp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/merra2_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/merra2_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/merra2_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/merra2_thompson Checking test 040 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1925,14 +1925,14 @@ Checking test 040 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 189.508721 - 0: The maximum resident set size (KB) = 1615528 + 0: The total amount of wall time = 189.371784 + 0: The maximum resident set size (KB) = 1610608 Test 040 merra2_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/regional_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/regional_control Checking test 041 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1943,28 +1943,28 @@ Checking test 041 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 293.877162 - 0: The maximum resident set size (KB) = 867400 + 0: The total amount of wall time = 297.028026 + 0: The maximum resident set size (KB) = 866480 Test 041 regional_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/regional_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/regional_restart Checking test 042 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 152.298302 - 0: The maximum resident set size (KB) = 860392 + 0: The total amount of wall time = 150.810841 + 0: The maximum resident set size (KB) = 862644 Test 042 regional_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/regional_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/regional_decomp Checking test 043 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1975,14 +1975,14 @@ Checking test 043 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 315.140196 - 0: The maximum resident set size (KB) = 859540 + 0: The total amount of wall time = 313.217090 + 0: The maximum resident set size (KB) = 865532 Test 043 regional_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/regional_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/regional_2threads Checking test 044 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1993,14 +1993,14 @@ Checking test 044 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 182.292461 - 0: The maximum resident set size (KB) = 843272 + 0: The total amount of wall time = 181.549186 + 0: The maximum resident set size (KB) = 841956 Test 044 regional_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_noquilt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/regional_noquilt +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_noquilt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/regional_noquilt Checking test 045 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2008,28 +2008,28 @@ Checking test 045 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 319.533160 - 0: The maximum resident set size (KB) = 854428 + 0: The total amount of wall time = 318.045214 + 0: The maximum resident set size (KB) = 855320 Test 045 regional_noquilt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/regional_netcdf_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/regional_netcdf_parallel Checking test 046 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 293.965296 - 0: The maximum resident set size (KB) = 861516 + 0: The total amount of wall time = 291.965836 + 0: The maximum resident set size (KB) = 858420 Test 046 regional_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/regional_2dwrtdecomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/regional_2dwrtdecomp Checking test 047 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2040,14 +2040,14 @@ Checking test 047 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 299.978772 - 0: The maximum resident set size (KB) = 869552 + 0: The total amount of wall time = 296.428766 + 0: The maximum resident set size (KB) = 869008 Test 047 regional_2dwrtdecomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/fv3_regional_wofs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/regional_wofs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/fv3_regional_wofs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/regional_wofs Checking test 048 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2058,14 +2058,14 @@ Checking test 048 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 376.048859 - 0: The maximum resident set size (KB) = 625592 + 0: The total amount of wall time = 376.187980 + 0: The maximum resident set size (KB) = 628372 Test 048 regional_wofs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/rap_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rap_control Checking test 049 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2112,14 +2112,14 @@ Checking test 049 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 459.048198 - 0: The maximum resident set size (KB) = 1059488 + 0: The total amount of wall time = 458.680010 + 0: The maximum resident set size (KB) = 1056996 Test 049 rap_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_spp_sppt_shum_skeb -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/regional_spp_sppt_shum_skeb +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_spp_sppt_shum_skeb +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/regional_spp_sppt_shum_skeb Checking test 050 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2130,14 +2130,14 @@ Checking test 050 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 280.329552 - 0: The maximum resident set size (KB) = 1178120 + 0: The total amount of wall time = 279.940854 + 0: The maximum resident set size (KB) = 1178228 Test 050 regional_spp_sppt_shum_skeb PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/rap_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rap_decomp Checking test 051 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2184,14 +2184,14 @@ Checking test 051 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 481.328788 - 0: The maximum resident set size (KB) = 1010236 + 0: The total amount of wall time = 478.742838 + 0: The maximum resident set size (KB) = 1007332 Test 051 rap_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/rap_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rap_2threads Checking test 052 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2238,14 +2238,14 @@ Checking test 052 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 439.678449 - 0: The maximum resident set size (KB) = 1138252 + 0: The total amount of wall time = 443.971590 + 0: The maximum resident set size (KB) = 1134416 Test 052 rap_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/rap_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rap_restart Checking test 053 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2284,14 +2284,14 @@ Checking test 053 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 231.558285 - 0: The maximum resident set size (KB) = 969172 + 0: The total amount of wall time = 233.228514 + 0: The maximum resident set size (KB) = 966608 Test 053 rap_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/rap_sfcdiff +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rap_sfcdiff Checking test 054 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2338,14 +2338,14 @@ Checking test 054 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 449.988443 - 0: The maximum resident set size (KB) = 1063544 + 0: The total amount of wall time = 452.850412 + 0: The maximum resident set size (KB) = 1062268 Test 054 rap_sfcdiff PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/rap_sfcdiff_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rap_sfcdiff_decomp Checking test 055 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2392,14 +2392,14 @@ Checking test 055 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 475.859421 - 0: The maximum resident set size (KB) = 1000700 + 0: The total amount of wall time = 476.642848 + 0: The maximum resident set size (KB) = 1003632 Test 055 rap_sfcdiff_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/rap_sfcdiff_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rap_sfcdiff_restart Checking test 056 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2438,14 +2438,14 @@ Checking test 056 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 339.802980 - 0: The maximum resident set size (KB) = 988728 + 0: The total amount of wall time = 341.477942 + 0: The maximum resident set size (KB) = 992952 Test 056 rap_sfcdiff_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/hrrr_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hrrr_control Checking test 057 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2492,14 +2492,14 @@ Checking test 057 hrrr_control results .... Comparing 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.199368 - 0: The maximum resident set size (KB) = 1059108 + 0: The total amount of wall time = 435.484871 + 0: The maximum resident set size (KB) = 1059276 Test 057 hrrr_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/hrrr_control_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hrrr_control_decomp Checking test 058 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2546,14 +2546,14 @@ Checking test 058 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 456.733912 - 0: The maximum resident set size (KB) = 1001000 + 0: The total amount of wall time = 454.204363 + 0: The maximum resident set size (KB) = 1004020 Test 058 hrrr_control_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/hrrr_control_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hrrr_control_2threads Checking test 059 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2600,14 +2600,14 @@ Checking test 059 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 413.445825 - 0: The maximum resident set size (KB) = 1133656 + 0: The total amount of wall time = 416.065655 + 0: The maximum resident set size (KB) = 1137532 Test 059 hrrr_control_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/hrrr_control_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hrrr_control_restart Checking test 060 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2646,14 +2646,14 @@ Checking test 060 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 328.275989 - 0: The maximum resident set size (KB) = 980840 + 0: The total amount of wall time = 329.340291 + 0: The maximum resident set size (KB) = 987348 Test 060 hrrr_control_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/rrfs_v1beta +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rrfs_v1beta Checking test 061 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2700,14 +2700,14 @@ Checking test 061 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 444.580439 - 0: The maximum resident set size (KB) = 1062996 + 0: The total amount of wall time = 447.941615 + 0: The maximum resident set size (KB) = 1054504 Test 061 rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_v1nssl -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/rrfs_v1nssl +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1nssl +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rrfs_v1nssl Checking test 062 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2722,14 +2722,14 @@ Checking test 062 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 522.707431 - 0: The maximum resident set size (KB) = 689184 + 0: The total amount of wall time = 525.429126 + 0: The maximum resident set size (KB) = 694884 Test 062 rrfs_v1nssl PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/rrfs_v1nssl_nohailnoccn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rrfs_v1nssl_nohailnoccn Checking test 063 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2744,14 +2744,14 @@ Checking test 063 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 513.933414 - 0: The maximum resident set size (KB) = 759528 + 0: The total amount of wall time = 510.339246 + 0: The maximum resident set size (KB) = 755824 Test 063 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/rrfs_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rrfs_conus13km_hrrr_warm Checking test 064 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2760,14 +2760,14 @@ Checking test 064 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 123.511057 - 0: The maximum resident set size (KB) = 937260 + 0: The total amount of wall time = 121.972982 + 0: The maximum resident set size (KB) = 931444 Test 064 rrfs_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rrfs_smoke_conus13km_hrrr_warm Checking test 065 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2776,14 +2776,14 @@ Checking test 065 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 138.634448 - 0: The maximum resident set size (KB) = 961556 + 0: The total amount of wall time = 137.903093 + 0: The maximum resident set size (KB) = 960956 Test 065 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/rrfs_conus13km_radar_tten_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rrfs_conus13km_radar_tten_warm Checking test 066 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2792,14 +2792,14 @@ Checking test 066 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 123.447029 - 0: The maximum resident set size (KB) = 946032 + 0: The total amount of wall time = 123.755983 + 0: The maximum resident set size (KB) = 937324 Test 066 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/rrfs_conus13km_hrrr_warm_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rrfs_conus13km_hrrr_warm_2threads Checking test 067 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2808,14 +2808,14 @@ Checking test 067 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 77.656152 - 0: The maximum resident set size (KB) = 835216 + 0: The total amount of wall time = 76.751193 + 0: The maximum resident set size (KB) = 844052 Test 067 rrfs_conus13km_hrrr_warm_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/rrfs_conus13km_radar_tten_warm_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rrfs_conus13km_radar_tten_warm_2threads Checking test 068 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2824,14 +2824,14 @@ Checking test 068 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 77.995965 - 0: The maximum resident set size (KB) = 882328 + 0: The total amount of wall time = 77.644382 + 0: The maximum resident set size (KB) = 881516 Test 068 rrfs_conus13km_radar_tten_warm_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_csawmg -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/control_csawmg +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmg +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_csawmg Checking test 069 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2842,14 +2842,14 @@ Checking test 069 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 340.867685 - 0: The maximum resident set size (KB) = 721184 + 0: The total amount of wall time = 342.230164 + 0: The maximum resident set size (KB) = 726060 Test 069 control_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_csawmgt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/control_csawmgt +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmgt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_csawmgt Checking test 070 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2860,14 +2860,14 @@ Checking test 070 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 337.053196 - 0: The maximum resident set size (KB) = 727084 + 0: The total amount of wall time = 336.602875 + 0: The maximum resident set size (KB) = 725840 Test 070 control_csawmgt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/control_ras +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_ras Checking test 071 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2878,54 +2878,54 @@ Checking test 071 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 181.138166 - 0: The maximum resident set size (KB) = 722500 + 0: The total amount of wall time = 179.094952 + 0: The maximum resident set size (KB) = 719896 Test 071 control_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_wam -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/control_wam +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wam +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_wam Checking test 072 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 110.990353 - 0: The maximum resident set size (KB) = 639380 + 0: The total amount of wall time = 111.305442 + 0: The maximum resident set size (KB) = 641296 Test 072 control_wam PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/rrfs_conus13km_hrrr_warm_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rrfs_conus13km_hrrr_warm_debug Checking test 073 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 723.611025 - 0: The maximum resident set size (KB) = 956196 + 0: The total amount of wall time = 727.417687 + 0: The maximum resident set size (KB) = 963564 Test 073 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/rrfs_conus13km_radar_tten_warm_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rrfs_conus13km_radar_tten_warm_debug Checking test 074 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 721.916475 - 0: The maximum resident set size (KB) = 971020 + 0: The total amount of wall time = 736.921042 + 0: The maximum resident set size (KB) = 969652 Test 074 rrfs_conus13km_radar_tten_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_CubedSphereGrid_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/control_CubedSphereGrid_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_CubedSphereGrid_debug Checking test 075 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2952,334 +2952,334 @@ Checking test 075 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 161.477559 - 0: The maximum resident set size (KB) = 796420 + 0: The total amount of wall time = 160.941303 + 0: The maximum resident set size (KB) = 800328 Test 075 control_CubedSphereGrid_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/control_wrtGauss_netcdf_parallel_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_wrtGauss_netcdf_parallel_debug Checking test 076 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 152.206140 - 0: The maximum resident set size (KB) = 794936 + 0: The total amount of wall time = 149.474400 + 0: The maximum resident set size (KB) = 795408 Test 076 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/control_stochy_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_stochy_debug Checking test 077 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 168.263998 - 0: The maximum resident set size (KB) = 799164 + 0: The total amount of wall time = 171.343334 + 0: The maximum resident set size (KB) = 799240 Test 077 control_stochy_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/control_lndp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_lndp_debug Checking test 078 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 151.233997 - 0: The maximum resident set size (KB) = 802012 + 0: The total amount of wall time = 153.416677 + 0: The maximum resident set size (KB) = 803484 Test 078 control_lndp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_csawmg_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/control_csawmg_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmg_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_csawmg_debug Checking test 079 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 229.830408 - 0: The maximum resident set size (KB) = 840956 + 0: The total amount of wall time = 233.226177 + 0: The maximum resident set size (KB) = 845876 Test 079 control_csawmg_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_csawmgt_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/control_csawmgt_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmgt_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_csawmgt_debug Checking test 080 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 230.909860 - 0: The maximum resident set size (KB) = 843276 + 0: The total amount of wall time = 226.489479 + 0: The maximum resident set size (KB) = 846696 Test 080 control_csawmgt_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/control_ras_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_ras_debug Checking test 081 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 157.879368 - 0: The maximum resident set size (KB) = 807948 + 0: The total amount of wall time = 152.751459 + 0: The maximum resident set size (KB) = 804440 Test 081 control_ras_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/control_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_diag_debug Checking test 082 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 161.649762 - 0: The maximum resident set size (KB) = 855628 + 0: The total amount of wall time = 158.758391 + 0: The maximum resident set size (KB) = 850860 Test 082 control_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/control_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_debug_p8 Checking test 083 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 169.332206 - 0: The maximum resident set size (KB) = 1631828 + 0: The total amount of wall time = 170.439452 + 0: The maximum resident set size (KB) = 1620428 Test 083 control_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/regional_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/regional_debug Checking test 084 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 985.235997 - 0: The maximum resident set size (KB) = 886644 + 0: The total amount of wall time = 963.965165 + 0: The maximum resident set size (KB) = 889908 Test 084 regional_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/rap_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rap_control_debug Checking test 085 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.178890 - 0: The maximum resident set size (KB) = 1184084 + 0: The total amount of wall time = 272.059222 + 0: The maximum resident set size (KB) = 1175528 Test 085 rap_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/hrrr_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hrrr_control_debug Checking test 086 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.834005 - 0: The maximum resident set size (KB) = 1175348 + 0: The total amount of wall time = 263.957280 + 0: The maximum resident set size (KB) = 1170748 Test 086 hrrr_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/rap_unified_drag_suite_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rap_unified_drag_suite_debug Checking test 087 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 272.655248 - 0: The maximum resident set size (KB) = 1171848 + 0: The total amount of wall time = 275.552055 + 0: The maximum resident set size (KB) = 1179344 Test 087 rap_unified_drag_suite_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/rap_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rap_diag_debug Checking test 088 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 298.115813 - 0: The maximum resident set size (KB) = 1261888 + 0: The total amount of wall time = 290.170591 + 0: The maximum resident set size (KB) = 1260900 Test 088 rap_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/rap_cires_ugwp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rap_cires_ugwp_debug Checking test 089 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 288.417850 - 0: The maximum resident set size (KB) = 1171960 + 0: The total amount of wall time = 277.711636 + 0: The maximum resident set size (KB) = 1172120 Test 089 rap_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/rap_unified_ugwp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rap_unified_ugwp_debug Checking test 090 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.180258 - 0: The maximum resident set size (KB) = 1177540 + 0: The total amount of wall time = 279.430808 + 0: The maximum resident set size (KB) = 1178612 Test 090 rap_unified_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/rap_lndp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rap_lndp_debug Checking test 091 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.839035 - 0: The maximum resident set size (KB) = 1179220 + 0: The total amount of wall time = 275.513816 + 0: The maximum resident set size (KB) = 1173160 Test 091 rap_lndp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_flake_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/rap_flake_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_flake_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rap_flake_debug Checking test 092 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.894595 - 0: The maximum resident set size (KB) = 1172108 + 0: The total amount of wall time = 270.099881 + 0: The maximum resident set size (KB) = 1176812 Test 092 rap_flake_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/rap_progcld_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rap_progcld_thompson_debug Checking test 093 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.867848 - 0: The maximum resident set size (KB) = 1175144 + 0: The total amount of wall time = 274.125742 + 0: The maximum resident set size (KB) = 1176272 Test 093 rap_progcld_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_noah_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/rap_noah_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_noah_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rap_noah_debug Checking test 094 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.452111 - 0: The maximum resident set size (KB) = 1172096 + 0: The total amount of wall time = 264.875707 + 0: The maximum resident set size (KB) = 1171972 Test 094 rap_noah_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_sfcdiff_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/rap_sfcdiff_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rap_sfcdiff_debug Checking test 095 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.227511 - 0: The maximum resident set size (KB) = 1180956 + 0: The total amount of wall time = 271.463868 + 0: The maximum resident set size (KB) = 1180260 Test 095 rap_sfcdiff_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rap_noah_sfcdiff_cires_ugwp_debug Checking test 096 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 448.295106 - 0: The maximum resident set size (KB) = 1172912 + 0: The total amount of wall time = 442.692483 + 0: The maximum resident set size (KB) = 1175832 Test 096 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/rrfs_v1beta_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rrfs_v1beta_debug Checking test 097 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.354245 - 0: The maximum resident set size (KB) = 1168872 + 0: The total amount of wall time = 268.094781 + 0: The maximum resident set size (KB) = 1171192 Test 097 rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/control_wam_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_wam_debug Checking test 098 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 280.321830 - 0: The maximum resident set size (KB) = 531816 + 0: The total amount of wall time = 279.561730 + 0: The maximum resident set size (KB) = 525680 Test 098 control_wam_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 099 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3290,14 +3290,14 @@ Checking test 099 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 258.496305 - 0: The maximum resident set size (KB) = 1070144 + 0: The total amount of wall time = 261.199387 + 0: The maximum resident set size (KB) = 1072608 Test 099 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/rap_control_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rap_control_dyn32_phy32 Checking test 100 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3344,14 +3344,14 @@ Checking test 100 rap_control_dyn32_phy32 results .... Comparing 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.965792 - 0: The maximum resident set size (KB) = 1012520 + 0: The total amount of wall time = 370.374055 + 0: The maximum resident set size (KB) = 1003476 Test 100 rap_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/hrrr_control_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hrrr_control_dyn32_phy32 Checking test 101 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3398,14 +3398,14 @@ Checking test 101 hrrr_control_dyn32_phy32 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 = 193.924495 - 0: The maximum resident set size (KB) = 952616 + 0: The total amount of wall time = 193.586504 + 0: The maximum resident set size (KB) = 960436 Test 101 hrrr_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/rap_2threads_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rap_2threads_dyn32_phy32 Checking test 102 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3452,14 +3452,14 @@ Checking test 102 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 357.350514 - 0: The maximum resident set size (KB) = 1021996 + 0: The total amount of wall time = 356.480606 + 0: The maximum resident set size (KB) = 1021688 Test 102 rap_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/hrrr_control_2threads_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hrrr_control_2threads_dyn32_phy32 Checking test 103 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3506,14 +3506,14 @@ Checking test 103 hrrr_control_2threads_dyn32_phy32 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 = 190.480222 - 0: The maximum resident set size (KB) = 1009464 + 0: The total amount of wall time = 190.814922 + 0: The maximum resident set size (KB) = 1006908 Test 103 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/hrrr_control_decomp_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hrrr_control_decomp_dyn32_phy32 Checking test 104 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3560,14 +3560,14 @@ Checking test 104 hrrr_control_decomp_dyn32_phy32 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 = 205.862648 - 0: The maximum resident set size (KB) = 894756 + 0: The total amount of wall time = 205.019588 + 0: The maximum resident set size (KB) = 897968 Test 104 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/rap_restart_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rap_restart_dyn32_phy32 Checking test 105 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3606,14 +3606,14 @@ Checking test 105 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 279.357696 - 0: The maximum resident set size (KB) = 954956 + 0: The total amount of wall time = 278.705853 + 0: The maximum resident set size (KB) = 952632 Test 105 rap_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/hrrr_control_restart_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hrrr_control_restart_dyn32_phy32 Checking test 106 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3652,14 +3652,14 @@ Checking test 106 hrrr_control_restart_dyn32_phy32 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 = 101.038648 - 0: The maximum resident set size (KB) = 864028 + 0: The total amount of wall time = 101.810706 + 0: The maximum resident set size (KB) = 863852 Test 106 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/rap_control_dyn64_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rap_control_dyn64_phy32 Checking test 107 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3706,81 +3706,81 @@ Checking test 107 rap_control_dyn64_phy32 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.238619 - 0: The maximum resident set size (KB) = 970468 + 0: The total amount of wall time = 241.067980 + 0: The maximum resident set size (KB) = 964288 Test 107 rap_control_dyn64_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/rap_control_debug_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rap_control_debug_dyn32_phy32 Checking test 108 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.789476 - 0: The maximum resident set size (KB) = 1060016 + 0: The total amount of wall time = 268.016967 + 0: The maximum resident set size (KB) = 1060984 Test 108 rap_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/hrrr_control_debug_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hrrr_control_debug_dyn32_phy32 Checking test 109 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 270.613713 - 0: The maximum resident set size (KB) = 1059160 + 0: The total amount of wall time = 265.961954 + 0: The maximum resident set size (KB) = 1054376 Test 109 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/rap_control_dyn64_phy32_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rap_control_dyn64_phy32_debug Checking test 110 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.281675 - 0: The maximum resident set size (KB) = 1106060 + 0: The total amount of wall time = 276.704372 + 0: The maximum resident set size (KB) = 1095088 Test 110 rap_control_dyn64_phy32_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/hafs_regional_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hafs_regional_atm Checking test 111 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 235.209184 - 0: The maximum resident set size (KB) = 1046356 + 0: The total amount of wall time = 239.190384 + 0: The maximum resident set size (KB) = 1051376 Test 111 hafs_regional_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/hafs_regional_atm_thompson_gfdlsf +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hafs_regional_atm_thompson_gfdlsf Checking test 112 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 311.138612 - 0: The maximum resident set size (KB) = 1413256 + 0: The total amount of wall time = 315.063461 + 0: The maximum resident set size (KB) = 1419488 Test 112 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/hafs_regional_atm_ocn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hafs_regional_atm_ocn Checking test 113 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3789,14 +3789,14 @@ Checking test 113 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 378.792281 - 0: The maximum resident set size (KB) = 1218548 + 0: The total amount of wall time = 372.015072 + 0: The maximum resident set size (KB) = 1216240 Test 113 hafs_regional_atm_ocn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_atm_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/hafs_regional_atm_wav +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hafs_regional_atm_wav Checking test 114 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3805,14 +3805,14 @@ Checking test 114 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 740.931013 - 0: The maximum resident set size (KB) = 1247980 + 0: The total amount of wall time = 739.168637 + 0: The maximum resident set size (KB) = 1245864 Test 114 hafs_regional_atm_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/hafs_regional_atm_ocn_wav +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hafs_regional_atm_ocn_wav Checking test 115 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3823,28 +3823,28 @@ Checking test 115 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 838.577249 - 0: The maximum resident set size (KB) = 1262172 + 0: The total amount of wall time = 843.181916 + 0: The maximum resident set size (KB) = 1269780 Test 115 hafs_regional_atm_ocn_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/hafs_regional_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hafs_regional_1nest_atm Checking test 116 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 322.609654 - 0: The maximum resident set size (KB) = 503124 + 0: The total amount of wall time = 322.061205 + 0: The maximum resident set size (KB) = 511644 Test 116 hafs_regional_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/hafs_regional_telescopic_2nests_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hafs_regional_telescopic_2nests_atm Checking test 117 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3853,28 +3853,28 @@ Checking test 117 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 368.119800 - 0: The maximum resident set size (KB) = 511080 + 0: The total amount of wall time = 364.016520 + 0: The maximum resident set size (KB) = 513984 Test 117 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_global_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/hafs_global_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hafs_global_1nest_atm Checking test 118 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 147.942273 - 0: The maximum resident set size (KB) = 347860 + 0: The total amount of wall time = 147.002701 + 0: The maximum resident set size (KB) = 351468 Test 118 hafs_global_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_global_multiple_4nests_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/hafs_global_multiple_4nests_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_multiple_4nests_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hafs_global_multiple_4nests_atm Checking test 119 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3892,14 +3892,14 @@ Checking test 119 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 423.318683 - 0: The maximum resident set size (KB) = 422800 + 0: The total amount of wall time = 417.880903 + 0: The maximum resident set size (KB) = 423792 Test 119 hafs_global_multiple_4nests_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/hafs_regional_specified_moving_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hafs_regional_specified_moving_1nest_atm Checking test 120 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3908,28 +3908,28 @@ Checking test 120 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 202.381098 - 0: The maximum resident set size (KB) = 517380 + 0: The total amount of wall time = 201.398210 + 0: The maximum resident set size (KB) = 514844 Test 120 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/hafs_regional_storm_following_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hafs_regional_storm_following_1nest_atm Checking test 121 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 192.714762 - 0: The maximum resident set size (KB) = 517132 + 0: The total amount of wall time = 190.949707 + 0: The maximum resident set size (KB) = 512836 Test 121 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hafs_regional_storm_following_1nest_atm_ocn Checking test 122 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3938,42 +3938,42 @@ Checking test 122 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 221.618083 - 0: The maximum resident set size (KB) = 557504 + 0: The total amount of wall time = 222.907201 + 0: The maximum resident set size (KB) = 558600 Test 122 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_global_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/hafs_global_storm_following_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_storm_following_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hafs_global_storm_following_1nest_atm Checking test 123 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 58.365305 - 0: The maximum resident set size (KB) = 360740 + 0: The total amount of wall time = 58.504047 + 0: The maximum resident set size (KB) = 363388 Test 123 hafs_global_storm_following_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 124 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 768.726063 - 0: The maximum resident set size (KB) = 578236 + 0: The total amount of wall time = 756.361156 + 0: The maximum resident set size (KB) = 579140 Test 124 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 125 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3984,14 +3984,14 @@ Checking test 125 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 510.728666 - 0: The maximum resident set size (KB) = 610572 + 0: The total amount of wall time = 512.576004 + 0: The maximum resident set size (KB) = 608200 Test 125 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_docn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/hafs_regional_docn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_docn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hafs_regional_docn Checking test 126 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3999,14 +3999,14 @@ Checking test 126 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 353.869766 - 0: The maximum resident set size (KB) = 1230000 + 0: The total amount of wall time = 356.795848 + 0: The maximum resident set size (KB) = 1230456 Test 126 hafs_regional_docn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_docn_oisst -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/hafs_regional_docn_oisst +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_docn_oisst +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hafs_regional_docn_oisst Checking test 127 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4014,131 +4014,131 @@ Checking test 127 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 355.817907 - 0: The maximum resident set size (KB) = 1213240 + 0: The total amount of wall time = 357.676320 + 0: The maximum resident set size (KB) = 1216224 Test 127 hafs_regional_docn_oisst PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_datm_cdeps -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/hafs_regional_datm_cdeps +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_datm_cdeps +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hafs_regional_datm_cdeps Checking test 128 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 951.814979 - 0: The maximum resident set size (KB) = 1038928 + 0: The total amount of wall time = 934.084581 + 0: The maximum resident set size (KB) = 1037720 Test 128 hafs_regional_datm_cdeps PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/datm_cdeps_control_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/datm_cdeps_control_cfsr Checking test 129 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 157.563675 - 0: The maximum resident set size (KB) = 1059520 + 0: The total amount of wall time = 155.534501 + 0: The maximum resident set size (KB) = 1059016 Test 129 datm_cdeps_control_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/datm_cdeps_restart_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/datm_cdeps_restart_cfsr Checking test 130 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 88.919916 - 0: The maximum resident set size (KB) = 1027076 + 0: The total amount of wall time = 92.160678 + 0: The maximum resident set size (KB) = 1012356 Test 130 datm_cdeps_restart_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/datm_cdeps_control_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/datm_cdeps_control_gefs Checking test 131 datm_cdeps_control_gefs 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.011407 - 0: The maximum resident set size (KB) = 969612 + 0: The total amount of wall time = 149.200787 + 0: The maximum resident set size (KB) = 959532 Test 131 datm_cdeps_control_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_iau_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/datm_cdeps_iau_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_iau_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/datm_cdeps_iau_gefs Checking test 132 datm_cdeps_iau_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 151.255031 - 0: The maximum resident set size (KB) = 966048 + 0: The total amount of wall time = 150.172667 + 0: The maximum resident set size (KB) = 961272 Test 132 datm_cdeps_iau_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_stochy_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/datm_cdeps_stochy_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_stochy_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/datm_cdeps_stochy_gefs Checking test 133 datm_cdeps_stochy_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 151.492529 - 0: The maximum resident set size (KB) = 964796 + 0: The total amount of wall time = 151.067317 + 0: The maximum resident set size (KB) = 966008 Test 133 datm_cdeps_stochy_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_ciceC_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/datm_cdeps_ciceC_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_ciceC_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/datm_cdeps_ciceC_cfsr Checking test 134 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 152.789879 - 0: The maximum resident set size (KB) = 1058424 + 0: The total amount of wall time = 154.297641 + 0: The maximum resident set size (KB) = 1057136 Test 134 datm_cdeps_ciceC_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/datm_cdeps_bulk_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/datm_cdeps_bulk_cfsr Checking test 135 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 156.430473 - 0: The maximum resident set size (KB) = 1064436 + 0: The total amount of wall time = 154.210284 + 0: The maximum resident set size (KB) = 1063588 Test 135 datm_cdeps_bulk_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/datm_cdeps_bulk_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/datm_cdeps_bulk_gefs Checking test 136 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 144.096655 - 0: The maximum resident set size (KB) = 956328 + 0: The total amount of wall time = 147.553282 + 0: The maximum resident set size (KB) = 972344 Test 136 datm_cdeps_bulk_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/datm_cdeps_mx025_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/datm_cdeps_mx025_cfsr Checking test 137 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4147,14 +4147,14 @@ Checking test 137 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 394.979314 - 0: The maximum resident set size (KB) = 875900 + 0: The total amount of wall time = 393.271699 + 0: The maximum resident set size (KB) = 875740 Test 137 datm_cdeps_mx025_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/datm_cdeps_mx025_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/datm_cdeps_mx025_gefs Checking test 138 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4163,64 +4163,64 @@ Checking test 138 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 391.583951 - 0: The maximum resident set size (KB) = 929228 + 0: The total amount of wall time = 386.415003 + 0: The maximum resident set size (KB) = 930992 Test 138 datm_cdeps_mx025_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/datm_cdeps_multiple_files_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/datm_cdeps_multiple_files_cfsr Checking test 139 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 155.029197 - 0: The maximum resident set size (KB) = 1059544 + 0: The total amount of wall time = 155.224696 + 0: The maximum resident set size (KB) = 1073400 Test 139 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/datm_cdeps_3072x1536_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/datm_cdeps_3072x1536_cfsr Checking test 140 datm_cdeps_3072x1536_cfsr 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 = 213.536168 - 0: The maximum resident set size (KB) = 2368308 + 0: The total amount of wall time = 214.641850 + 0: The maximum resident set size (KB) = 2360004 Test 140 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_gfs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/datm_cdeps_gfs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_gfs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/datm_cdeps_gfs Checking test 141 datm_cdeps_gfs 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 = 216.327909 - 0: The maximum resident set size (KB) = 2366124 + 0: The total amount of wall time = 214.094151 + 0: The maximum resident set size (KB) = 2359220 Test 141 datm_cdeps_gfs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/datm_cdeps_debug_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/datm_cdeps_debug_cfsr Checking test 142 datm_cdeps_debug_cfsr 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 = 442.659851 - 0: The maximum resident set size (KB) = 984252 + 0: The total amount of wall time = 446.529468 + 0: The maximum resident set size (KB) = 985972 Test 142 datm_cdeps_debug_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/datm_cdeps_lnd_gswp3 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_lnd_gswp3 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/datm_cdeps_lnd_gswp3 Checking test 143 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4229,14 +4229,14 @@ Checking test 143 datm_cdeps_lnd_gswp3 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 = 6.375112 - 0: The maximum resident set size (KB) = 263380 + 0: The total amount of wall time = 6.615823 + 0: The maximum resident set size (KB) = 261404 Test 143 datm_cdeps_lnd_gswp3 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/datm_cdeps_lnd_gswp3_rst +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_lnd_gswp3 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/datm_cdeps_lnd_gswp3_rst Checking test 144 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4245,14 +4245,14 @@ Checking test 144 datm_cdeps_lnd_gswp3_rst 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.183170 - 0: The maximum resident set size (KB) = 266916 + 0: The total amount of wall time = 11.820213 + 0: The maximum resident set size (KB) = 261552 Test 144 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8_atmlnd_sbs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/control_p8_atmlnd_sbs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_atmlnd_sbs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_p8_atmlnd_sbs Checking test 145 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4337,14 +4337,14 @@ Checking test 145 control_p8_atmlnd_sbs 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.514844 - 0: The maximum resident set size (KB) = 1608388 + 0: The total amount of wall time = 202.084218 + 0: The maximum resident set size (KB) = 1610364 Test 145 control_p8_atmlnd_sbs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_atmwav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/control_atmwav +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_atmwav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_atmwav Checking test 146 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4388,14 +4388,14 @@ Checking test 146 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 86.281521 - 0: The maximum resident set size (KB) = 655412 + 0: The total amount of wall time = 86.746107 + 0: The maximum resident set size (KB) = 655732 Test 146 control_atmwav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/atmaero_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/atmaero_control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/atmaero_control_p8 Checking test 147 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4439,14 +4439,14 @@ Checking test 147 atmaero_control_p8 results .... Comparing 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.525579 - 0: The maximum resident set size (KB) = 2974632 + 0: The total amount of wall time = 223.180121 + 0: The maximum resident set size (KB) = 2976228 Test 147 atmaero_control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/atmaero_control_p8_rad -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/atmaero_control_p8_rad +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8_rad +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/atmaero_control_p8_rad Checking test 148 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4490,14 +4490,14 @@ Checking test 148 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 276.959048 - 0: The maximum resident set size (KB) = 3046720 + 0: The total amount of wall time = 277.653717 + 0: The maximum resident set size (KB) = 3047784 Test 148 atmaero_control_p8_rad PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/atmaero_control_p8_rad_micro -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/atmaero_control_p8_rad_micro +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8_rad_micro +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/atmaero_control_p8_rad_micro Checking test 149 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4541,14 +4541,14 @@ Checking test 149 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 280.929927 - 0: The maximum resident set size (KB) = 3054404 + 0: The total amount of wall time = 283.070166 + 0: The maximum resident set size (KB) = 3053260 Test 149 atmaero_control_p8_rad_micro PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_atmaq -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/regional_atmaq +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_atmaq +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/regional_atmaq Checking test 150 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4564,14 +4564,14 @@ Checking test 150 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 599.182022 - 0: The maximum resident set size (KB) = 1556416 + 0: The total amount of wall time = 612.555099 + 0: The maximum resident set size (KB) = 1569120 Test 150 regional_atmaq PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_atmaq_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20161/regional_atmaq_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_atmaq_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/regional_atmaq_debug Checking test 151 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4585,12 +4585,12 @@ Checking test 151 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1315.407893 - 0: The maximum resident set size (KB) = 1513352 + 0: The total amount of wall time = 1297.142707 + 0: The maximum resident set size (KB) = 1511320 Test 151 regional_atmaq_debug PASS REGRESSION TEST WAS SUCCESSFUL -Fri Feb 24 16:21:55 UTC 2023 -Elapsed time: 01h:12m:41s. Have a nice day! +Tue Feb 28 20:34:36 UTC 2023 +Elapsed time: 03h:31m:41s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index af137f795d7..86342b184cd 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,38 +1,38 @@ -Fri Feb 24 16:56:27 UTC 2023 +Tue Feb 28 17:38:59 UTC 2023 Start Regression test -Compile 001 elapsed time 2949 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 002 elapsed time 1870 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 003 elapsed time 1683 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 004 elapsed time 309 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 278 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 1484 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 007 elapsed time 1517 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 008 elapsed time 1599 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 009 elapsed time 1548 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 010 elapsed time 1521 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 011 elapsed time 1398 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 012 elapsed time 306 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 013 elapsed time 205 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 1424 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 015 elapsed time 1417 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 016 elapsed time 249 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 017 elapsed time 248 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 1658 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 019 elapsed time 276 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 2151 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 021 elapsed time 1601 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 022 elapsed time 293 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 023 elapsed time 168 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 024 elapsed time 107 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 025 elapsed time 1494 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 026 elapsed time 1594 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 027 elapsed time 1404 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 028 elapsed time 1468 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 029 elapsed time 283 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8_mixedmode -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/cpld_control_p8_mixedmode +Compile 001 elapsed time 1965 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 002 elapsed time 2078 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 003 elapsed time 1696 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 004 elapsed time 323 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 487 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 1351 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 007 elapsed time 1545 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 008 elapsed time 1602 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 009 elapsed time 1588 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 010 elapsed time 1520 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 011 elapsed time 1412 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 012 elapsed time 321 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 277 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 014 elapsed time 1422 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 015 elapsed time 1445 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 016 elapsed time 376 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 017 elapsed time 391 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 1711 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 019 elapsed time 463 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 2172 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 021 elapsed time 1750 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 022 elapsed time 342 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 023 elapsed time 265 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 024 elapsed time 134 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 025 elapsed time 1544 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 026 elapsed time 1678 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 027 elapsed time 1513 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 028 elapsed time 1432 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 029 elapsed time 264 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8_mixedmode +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -97,14 +97,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 436.332165 - 0: The maximum resident set size (KB) = 1746884 + 0: The total amount of wall time = 431.774795 + 0: The maximum resident set size (KB) = 1743032 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_gfsv17 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/cpld_control_gfsv17 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_gfsv17 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -168,14 +168,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 342.290204 - 0: The maximum resident set size (KB) = 1637100 + 0: The total amount of wall time = 318.037536 + 0: The maximum resident set size (KB) = 1636620 Test 002 cpld_control_gfsv17 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/cpld_control_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -240,14 +240,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 497.963090 - 0: The maximum resident set size (KB) = 1780760 + 0: The total amount of wall time = 504.053213 + 0: The maximum resident set size (KB) = 1782872 Test 003 cpld_control_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/cpld_restart_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -300,14 +300,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 280.132596 - 0: The maximum resident set size (KB) = 1501128 + 0: The total amount of wall time = 335.938256 + 0: The maximum resident set size (KB) = 1491620 Test 004 cpld_restart_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/cpld_2threads_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -360,14 +360,14 @@ Checking test 005 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 523.448061 - 0: The maximum resident set size (KB) = 1984236 + 0: The total amount of wall time = 535.746888 + 0: The maximum resident set size (KB) = 1984516 Test 005 cpld_2threads_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/cpld_decomp_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/cpld_decomp_p8 Checking test 006 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -420,14 +420,14 @@ Checking test 006 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 503.258534 - 0: The maximum resident set size (KB) = 1758220 + 0: The total amount of wall time = 500.866634 + 0: The maximum resident set size (KB) = 1763992 Test 006 cpld_decomp_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/cpld_mpi_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/cpld_mpi_p8 Checking test 007 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -480,14 +480,14 @@ Checking test 007 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 420.061596 - 0: The maximum resident set size (KB) = 1727216 + 0: The total amount of wall time = 423.557383 + 0: The maximum resident set size (KB) = 1742156 Test 007 cpld_mpi_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_ciceC_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/cpld_control_ciceC_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_ciceC_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/cpld_control_ciceC_p8 Checking test 008 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -552,14 +552,14 @@ Checking test 008 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 501.045833 - 0: The maximum resident set size (KB) = 1791368 + 0: The total amount of wall time = 501.779270 + 0: The maximum resident set size (KB) = 1793476 Test 008 cpld_control_ciceC_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_noaero_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/cpld_control_noaero_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_noaero_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/cpld_control_noaero_p8 Checking test 009 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -623,14 +623,14 @@ Checking test 009 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 358.312265 - 0: The maximum resident set size (KB) = 1646884 + 0: The total amount of wall time = 359.155086 + 0: The maximum resident set size (KB) = 1618956 Test 009 cpld_control_noaero_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/cpld_control_nowave_noaero_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c96_noaero_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/cpld_control_nowave_noaero_p8 Checking test 010 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -692,14 +692,14 @@ Checking test 010 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 370.002884 - 0: The maximum resident set size (KB) = 1666052 + 0: The total amount of wall time = 364.893880 + 0: The maximum resident set size (KB) = 1671780 Test 010 cpld_control_nowave_noaero_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_debug_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/cpld_debug_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_debug_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/cpld_debug_p8 Checking test 011 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -752,14 +752,14 @@ Checking test 011 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 881.021895 - 0: The maximum resident set size (KB) = 1838304 + 0: The total amount of wall time = 874.680895 + 0: The maximum resident set size (KB) = 1825448 Test 011 cpld_debug_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_debug_noaero_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/cpld_debug_noaero_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_debug_noaero_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/cpld_debug_noaero_p8 Checking test 012 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -811,14 +811,14 @@ Checking test 012 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 549.432015 - 0: The maximum resident set size (KB) = 1638444 + 0: The total amount of wall time = 545.969188 + 0: The maximum resident set size (KB) = 1624392 Test 012 cpld_debug_noaero_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/cpld_control_noaero_p8_agrid +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_noaero_p8_agrid +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/cpld_control_noaero_p8_agrid Checking test 013 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -880,14 +880,14 @@ Checking test 013 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 384.241923 - 0: The maximum resident set size (KB) = 1691496 + 0: The total amount of wall time = 397.193562 + 0: The maximum resident set size (KB) = 1690224 Test 013 cpld_control_noaero_p8_agrid PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_c48 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/cpld_control_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c48 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/cpld_control_c48 Checking test 014 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -937,14 +937,14 @@ Checking test 014 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 804.129388 - 0: The maximum resident set size (KB) = 2762440 + 0: The total amount of wall time = 803.460077 + 0: The maximum resident set size (KB) = 2766724 Test 014 cpld_control_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_warmstart_c48 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/cpld_warmstart_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_warmstart_c48 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/cpld_warmstart_c48 Checking test 015 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -994,14 +994,14 @@ Checking test 015 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 225.526045 - 0: The maximum resident set size (KB) = 2777756 + 0: The total amount of wall time = 220.844544 + 0: The maximum resident set size (KB) = 2770616 Test 015 cpld_warmstart_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_warmstart_c48 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/cpld_restart_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_warmstart_c48 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/cpld_restart_c48 Checking test 016 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1051,14 +1051,14 @@ Checking test 016 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 124.017366 - 0: The maximum resident set size (KB) = 2211900 + 0: The total amount of wall time = 122.964854 + 0: The maximum resident set size (KB) = 2217076 Test 016 cpld_restart_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_CubedSphereGrid -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/control_CubedSphereGrid +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_CubedSphereGrid Checking test 017 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1085,28 +1085,28 @@ Checking test 017 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 186.928935 - 0: The maximum resident set size (KB) = 576336 + 0: The total amount of wall time = 189.503147 + 0: The maximum resident set size (KB) = 573588 Test 017 control_CubedSphereGrid PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_CubedSphereGrid_parallel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/control_CubedSphereGrid_parallel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid_parallel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_CubedSphereGrid_parallel Checking test 018 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK - Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 184.744460 - 0: The maximum resident set size (KB) = 576804 + 0: The total amount of wall time = 216.685967 + 0: The maximum resident set size (KB) = 575604 Test 018 control_CubedSphereGrid_parallel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_latlon -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/control_latlon +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_latlon +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_latlon Checking test 019 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1117,14 +1117,14 @@ Checking test 019 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 186.441718 - 0: The maximum resident set size (KB) = 573376 + 0: The total amount of wall time = 213.024166 + 0: The maximum resident set size (KB) = 570840 Test 019 control_latlon PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/control_wrtGauss_netcdf_parallel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_wrtGauss_netcdf_parallel Checking test 020 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1135,14 +1135,14 @@ Checking test 020 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 195.163770 - 0: The maximum resident set size (KB) = 571824 + 0: The total amount of wall time = 216.364850 + 0: The maximum resident set size (KB) = 576224 Test 020 control_wrtGauss_netcdf_parallel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_c48 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/control_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c48 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_c48 Checking test 021 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1181,14 +1181,14 @@ Checking test 021 control_c48 results .... Comparing 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.641167 -0: The maximum resident set size (KB) = 784896 +0: The total amount of wall time = 599.177870 +0: The maximum resident set size (KB) = 789236 Test 021 control_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_c192 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/control_c192 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c192 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_c192 Checking test 022 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1199,14 +1199,14 @@ Checking test 022 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 737.551522 - 0: The maximum resident set size (KB) = 692032 + 0: The total amount of wall time = 756.445161 + 0: The maximum resident set size (KB) = 682428 Test 022 control_c192 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_c384 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/control_c384 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c384 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_c384 Checking test 023 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1217,14 +1217,14 @@ Checking test 023 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 946.397897 - 0: The maximum resident set size (KB) = 1058716 + 0: The total amount of wall time = 998.686842 + 0: The maximum resident set size (KB) = 1054588 Test 023 control_c384 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_c384gdas -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/control_c384gdas +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c384gdas +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_c384gdas Checking test 024 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1267,14 +1267,14 @@ Checking test 024 control_c384gdas 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 = 853.774423 - 0: The maximum resident set size (KB) = 1194756 + 0: The total amount of wall time = 903.463839 + 0: The maximum resident set size (KB) = 1193508 Test 024 control_c384gdas PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_stochy -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/control_stochy +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_stochy Checking test 025 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1285,28 +1285,28 @@ Checking test 025 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 123.336767 - 0: The maximum resident set size (KB) = 571700 + 0: The total amount of wall time = 137.717364 + 0: The maximum resident set size (KB) = 584396 Test 025 control_stochy PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_stochy -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/control_stochy_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_stochy_restart Checking test 026 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 71.157096 - 0: The maximum resident set size (KB) = 395780 + 0: The total amount of wall time = 84.096101 + 0: The maximum resident set size (KB) = 394996 Test 026 control_stochy_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_lndp -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/control_lndp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_lndp +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_lndp Checking test 027 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1317,14 +1317,14 @@ Checking test 027 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 115.231388 - 0: The maximum resident set size (KB) = 573388 + 0: The total amount of wall time = 160.298421 + 0: The maximum resident set size (KB) = 579584 Test 027 control_lndp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_iovr4 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/control_iovr4 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_iovr4 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_iovr4 Checking test 028 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1339,14 +1339,14 @@ Checking test 028 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 194.106409 - 0: The maximum resident set size (KB) = 575276 + 0: The total amount of wall time = 251.862662 + 0: The maximum resident set size (KB) = 572692 Test 028 control_iovr4 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_iovr5 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/control_iovr5 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_iovr5 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_iovr5 Checking test 029 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1361,14 +1361,14 @@ Checking test 029 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 192.709219 - 0: The maximum resident set size (KB) = 574060 + 0: The total amount of wall time = 228.105799 + 0: The maximum resident set size (KB) = 574976 Test 029 control_iovr5 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/control_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_p8 Checking test 030 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1415,14 +1415,14 @@ Checking test 030 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 233.469657 - 0: The maximum resident set size (KB) = 1533400 + 0: The total amount of wall time = 256.510338 + 0: The maximum resident set size (KB) = 1540904 Test 030 control_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8_lndp -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/control_p8_lndp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_lndp +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_p8_lndp Checking test 031 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1441,14 +1441,14 @@ Checking test 031 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 441.101951 - 0: The maximum resident set size (KB) = 1546516 + 0: The total amount of wall time = 489.170252 + 0: The maximum resident set size (KB) = 1539368 Test 031 control_p8_lndp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/control_restart_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_restart_p8 Checking test 032 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1487,14 +1487,14 @@ Checking test 032 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 122.000218 - 0: The maximum resident set size (KB) = 780096 + 0: The total amount of wall time = 145.773027 + 0: The maximum resident set size (KB) = 780924 Test 032 control_restart_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/control_decomp_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_decomp_p8 Checking test 033 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1537,14 +1537,14 @@ Checking test 033 control_decomp_p8 results .... Comparing 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.617037 - 0: The maximum resident set size (KB) = 1531860 + 0: The total amount of wall time = 282.931002 + 0: The maximum resident set size (KB) = 1525280 Test 033 control_decomp_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/control_2threads_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_2threads_p8 Checking test 034 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1587,14 +1587,14 @@ Checking test 034 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 222.637170 - 0: The maximum resident set size (KB) = 1626120 + 0: The total amount of wall time = 278.175836 + 0: The maximum resident set size (KB) = 1622652 Test 034 control_2threads_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8_rrtmgp -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/control_p8_rrtmgp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_rrtmgp +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_p8_rrtmgp Checking test 035 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1641,14 +1641,14 @@ Checking test 035 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 319.054747 - 0: The maximum resident set size (KB) = 1600972 + 0: The total amount of wall time = 362.885808 + 0: The maximum resident set size (KB) = 1604688 Test 035 control_p8_rrtmgp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/merra2_thompson -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/merra2_thompson +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/merra2_thompson +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/merra2_thompson Checking test 036 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1695,14 +1695,14 @@ Checking test 036 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 262.897201 - 0: The maximum resident set size (KB) = 1556660 + 0: The total amount of wall time = 328.087671 + 0: The maximum resident set size (KB) = 1551316 Test 036 merra2_thompson PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/regional_control +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/regional_control Checking test 037 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1713,28 +1713,28 @@ Checking test 037 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 420.821252 - 0: The maximum resident set size (KB) = 791036 + 0: The total amount of wall time = 466.144387 + 0: The maximum resident set size (KB) = 787524 Test 037 regional_control PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/regional_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/regional_restart Checking test 038 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 212.841688 - 0: The maximum resident set size (KB) = 782256 + 0: The total amount of wall time = 231.398565 + 0: The maximum resident set size (KB) = 779232 Test 038 regional_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/regional_decomp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/regional_decomp Checking test 039 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1745,14 +1745,14 @@ Checking test 039 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 442.309086 - 0: The maximum resident set size (KB) = 782348 + 0: The total amount of wall time = 476.258109 + 0: The maximum resident set size (KB) = 782592 Test 039 regional_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/regional_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/regional_2threads Checking test 040 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1763,14 +1763,14 @@ Checking test 040 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 271.112314 - 0: The maximum resident set size (KB) = 768352 + 0: The total amount of wall time = 332.754174 + 0: The maximum resident set size (KB) = 770880 Test 040 regional_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_noquilt -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/regional_noquilt +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_noquilt +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/regional_noquilt Checking test 041 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1778,28 +1778,28 @@ Checking test 041 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 450.029205 - 0: The maximum resident set size (KB) = 771020 + 0: The total amount of wall time = 484.774013 + 0: The maximum resident set size (KB) = 778800 Test 041 regional_noquilt PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_netcdf_parallel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/regional_netcdf_parallel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_netcdf_parallel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/regional_netcdf_parallel Checking test 042 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK - 0: The total amount of wall time = 417.275539 - 0: The maximum resident set size (KB) = 783868 + 0: The total amount of wall time = 454.923486 + 0: The maximum resident set size (KB) = 782600 Test 042 regional_netcdf_parallel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/regional_2dwrtdecomp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/regional_2dwrtdecomp Checking test 043 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1810,14 +1810,14 @@ Checking test 043 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 422.060248 - 0: The maximum resident set size (KB) = 787364 + 0: The total amount of wall time = 461.721440 + 0: The maximum resident set size (KB) = 788212 Test 043 regional_2dwrtdecomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/fv3_regional_wofs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/regional_wofs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/fv3_regional_wofs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/regional_wofs Checking test 044 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1828,14 +1828,14 @@ Checking test 044 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 529.949116 - 0: The maximum resident set size (KB) = 520564 + 0: The total amount of wall time = 560.823434 + 0: The maximum resident set size (KB) = 522168 Test 044 regional_wofs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/rap_control +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rap_control Checking test 045 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1882,14 +1882,14 @@ Checking test 045 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 615.523874 - 0: The maximum resident set size (KB) = 960460 + 0: The total amount of wall time = 668.325817 + 0: The maximum resident set size (KB) = 953932 Test 045 rap_control PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/regional_spp_sppt_shum_skeb +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_spp_sppt_shum_skeb +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/regional_spp_sppt_shum_skeb Checking test 046 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -1900,14 +1900,14 @@ Checking test 046 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 423.420668 - 0: The maximum resident set size (KB) = 1085364 + 0: The total amount of wall time = 485.401405 + 0: The maximum resident set size (KB) = 1086088 Test 046 regional_spp_sppt_shum_skeb PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/rap_decomp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rap_decomp Checking test 047 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1954,14 +1954,14 @@ Checking test 047 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 649.297367 - 0: The maximum resident set size (KB) = 955328 + 0: The total amount of wall time = 682.570016 + 0: The maximum resident set size (KB) = 953912 Test 047 rap_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/rap_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rap_2threads Checking test 048 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2008,14 +2008,14 @@ Checking test 048 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 605.401335 - 0: The maximum resident set size (KB) = 1028820 + 0: The total amount of wall time = 659.998948 + 0: The maximum resident set size (KB) = 1018912 Test 048 rap_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/rap_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rap_restart Checking test 049 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2054,14 +2054,14 @@ Checking test 049 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 311.827791 - 0: The maximum resident set size (KB) = 838988 + 0: The total amount of wall time = 352.231710 + 0: The maximum resident set size (KB) = 831036 Test 049 rap_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/rap_sfcdiff +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rap_sfcdiff Checking test 050 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2108,14 +2108,14 @@ Checking test 050 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 618.480493 - 0: The maximum resident set size (KB) = 957788 + 0: The total amount of wall time = 668.941325 + 0: The maximum resident set size (KB) = 961568 Test 050 rap_sfcdiff PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/rap_sfcdiff_decomp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rap_sfcdiff_decomp Checking test 051 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2162,14 +2162,14 @@ Checking test 051 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 656.832978 - 0: The maximum resident set size (KB) = 956976 + 0: The total amount of wall time = 734.152615 + 0: The maximum resident set size (KB) = 936820 Test 051 rap_sfcdiff_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/rap_sfcdiff_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rap_sfcdiff_restart Checking test 052 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2208,14 +2208,14 @@ Checking test 052 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 461.539635 - 0: The maximum resident set size (KB) = 835988 + 0: The total amount of wall time = 477.751498 + 0: The maximum resident set size (KB) = 831884 Test 052 rap_sfcdiff_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/hrrr_control +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/hrrr_control Checking test 053 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2262,14 +2262,14 @@ Checking test 053 hrrr_control results .... Comparing 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.819730 - 0: The maximum resident set size (KB) = 952892 + 0: The total amount of wall time = 636.852208 + 0: The maximum resident set size (KB) = 947472 Test 053 hrrr_control PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/hrrr_control_decomp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/hrrr_control_decomp Checking test 054 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2316,14 +2316,14 @@ Checking test 054 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 614.228452 - 0: The maximum resident set size (KB) = 949548 + 0: The total amount of wall time = 723.257586 + 0: The maximum resident set size (KB) = 936432 Test 054 hrrr_control_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/hrrr_control_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/hrrr_control_2threads Checking test 055 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2370,14 +2370,14 @@ Checking test 055 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 575.873749 - 0: The maximum resident set size (KB) = 1022064 + 0: The total amount of wall time = 594.052394 + 0: The maximum resident set size (KB) = 1028720 Test 055 hrrr_control_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/hrrr_control_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/hrrr_control_restart Checking test 056 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2416,14 +2416,14 @@ Checking test 056 hrrr_control_restart results .... Comparing 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.258261 - 0: The maximum resident set size (KB) = 848088 + 0: The total amount of wall time = 471.446331 + 0: The maximum resident set size (KB) = 833580 Test 056 hrrr_control_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_v1beta -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/rrfs_v1beta +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1beta +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rrfs_v1beta Checking test 057 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2470,14 +2470,14 @@ Checking test 057 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 605.524588 - 0: The maximum resident set size (KB) = 942240 + 0: The total amount of wall time = 663.019627 + 0: The maximum resident set size (KB) = 955452 Test 057 rrfs_v1beta PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_v1nssl -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/rrfs_v1nssl +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1nssl +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rrfs_v1nssl Checking test 058 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2492,14 +2492,14 @@ Checking test 058 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 720.718989 - 0: The maximum resident set size (KB) = 638096 + 0: The total amount of wall time = 789.081199 + 0: The maximum resident set size (KB) = 636396 Test 058 rrfs_v1nssl PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/rrfs_v1nssl_nohailnoccn +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rrfs_v1nssl_nohailnoccn Checking test 059 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2514,14 +2514,14 @@ Checking test 059 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 707.629162 - 0: The maximum resident set size (KB) = 637676 + 0: The total amount of wall time = 801.464009 + 0: The maximum resident set size (KB) = 634248 Test 059 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/rrfs_conus13km_hrrr_warm +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rrfs_conus13km_hrrr_warm Checking test 060 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2530,14 +2530,14 @@ Checking test 060 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 168.350233 - 0: The maximum resident set size (KB) = 852616 + 0: The total amount of wall time = 180.907639 + 0: The maximum resident set size (KB) = 854224 Test 060 rrfs_conus13km_hrrr_warm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rrfs_smoke_conus13km_hrrr_warm Checking test 061 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2546,14 +2546,14 @@ Checking test 061 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 196.669219 - 0: The maximum resident set size (KB) = 881440 + 0: The total amount of wall time = 233.698292 + 0: The maximum resident set size (KB) = 888220 Test 061 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/rrfs_conus13km_radar_tten_warm +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rrfs_conus13km_radar_tten_warm Checking test 062 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2562,14 +2562,14 @@ Checking test 062 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 172.362458 - 0: The maximum resident set size (KB) = 855252 + 0: The total amount of wall time = 202.659616 + 0: The maximum resident set size (KB) = 854120 Test 062 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/rrfs_conus13km_hrrr_warm_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rrfs_conus13km_hrrr_warm_2threads Checking test 063 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2578,14 +2578,14 @@ Checking test 063 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 114.173669 - 0: The maximum resident set size (KB) = 826016 + 0: The total amount of wall time = 167.972680 + 0: The maximum resident set size (KB) = 824668 Test 063 rrfs_conus13km_hrrr_warm_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/rrfs_conus13km_radar_tten_warm_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rrfs_conus13km_radar_tten_warm_2threads Checking test 064 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2594,14 +2594,14 @@ Checking test 064 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 120.614984 - 0: The maximum resident set size (KB) = 834068 + 0: The total amount of wall time = 146.921844 + 0: The maximum resident set size (KB) = 832004 Test 064 rrfs_conus13km_radar_tten_warm_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_csawmg -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/control_csawmg +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmg +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_csawmg Checking test 065 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2612,14 +2612,14 @@ Checking test 065 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 470.839386 - 0: The maximum resident set size (KB) = 667708 + 0: The total amount of wall time = 553.728292 + 0: The maximum resident set size (KB) = 665268 Test 065 control_csawmg PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_csawmgt -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/control_csawmgt +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmgt +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_csawmgt Checking test 066 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2630,14 +2630,14 @@ Checking test 066 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 465.910957 - 0: The maximum resident set size (KB) = 667416 + 0: The total amount of wall time = 529.706853 + 0: The maximum resident set size (KB) = 668652 Test 066 control_csawmgt PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_ras -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/control_ras +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_ras +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_ras Checking test 067 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2648,54 +2648,54 @@ Checking test 067 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 253.048038 - 0: The maximum resident set size (KB) = 636204 + 0: The total amount of wall time = 286.300878 + 0: The maximum resident set size (KB) = 632896 Test 067 control_ras PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_wam -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/control_wam +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wam +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_wam Checking test 068 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 154.931369 - 0: The maximum resident set size (KB) = 489976 + 0: The total amount of wall time = 168.671571 + 0: The maximum resident set size (KB) = 477952 Test 068 control_wam PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/rrfs_conus13km_hrrr_warm_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rrfs_conus13km_hrrr_warm_debug Checking test 069 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 962.455641 - 0: The maximum resident set size (KB) = 880604 + 0: The total amount of wall time = 959.854558 + 0: The maximum resident set size (KB) = 882064 Test 069 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/rrfs_conus13km_radar_tten_warm_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rrfs_conus13km_radar_tten_warm_debug Checking test 070 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 962.773882 - 0: The maximum resident set size (KB) = 885692 + 0: The total amount of wall time = 976.967147 + 0: The maximum resident set size (KB) = 881628 Test 070 rrfs_conus13km_radar_tten_warm_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_CubedSphereGrid_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/control_CubedSphereGrid_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_CubedSphereGrid_debug Checking test 071 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2722,334 +2722,334 @@ Checking test 071 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 223.765027 - 0: The maximum resident set size (KB) = 734820 + 0: The total amount of wall time = 228.629305 + 0: The maximum resident set size (KB) = 731840 Test 071 control_CubedSphereGrid_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/control_wrtGauss_netcdf_parallel_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_wrtGauss_netcdf_parallel_debug Checking test 072 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 203.130708 - 0: The maximum resident set size (KB) = 732936 + 0: The total amount of wall time = 217.581469 + 0: The maximum resident set size (KB) = 729844 Test 072 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_stochy_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/control_stochy_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_stochy_debug Checking test 073 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 229.314071 - 0: The maximum resident set size (KB) = 743012 + 0: The total amount of wall time = 241.633699 + 0: The maximum resident set size (KB) = 741464 Test 073 control_stochy_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_lndp_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/control_lndp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_lndp_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_lndp_debug Checking test 074 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 206.228845 - 0: The maximum resident set size (KB) = 736088 + 0: The total amount of wall time = 210.963739 + 0: The maximum resident set size (KB) = 739960 Test 074 control_lndp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_csawmg_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/control_csawmg_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmg_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_csawmg_debug Checking test 075 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 321.899163 - 0: The maximum resident set size (KB) = 783344 + 0: The total amount of wall time = 316.098123 + 0: The maximum resident set size (KB) = 782192 Test 075 control_csawmg_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_csawmgt_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/control_csawmgt_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmgt_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_csawmgt_debug Checking test 076 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 313.166548 - 0: The maximum resident set size (KB) = 786332 + 0: The total amount of wall time = 312.253733 + 0: The maximum resident set size (KB) = 784228 Test 076 control_csawmgt_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_ras_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/control_ras_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_ras_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_ras_debug Checking test 077 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 207.926798 - 0: The maximum resident set size (KB) = 743208 + 0: The total amount of wall time = 220.924339 + 0: The maximum resident set size (KB) = 747764 Test 077 control_ras_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_diag_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/control_diag_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_diag_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_diag_debug Checking test 078 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 215.860069 - 0: The maximum resident set size (KB) = 797732 + 0: The total amount of wall time = 224.934121 + 0: The maximum resident set size (KB) = 793688 Test 078 control_diag_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_debug_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/control_debug_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_debug_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_debug_p8 Checking test 079 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 228.683111 - 0: The maximum resident set size (KB) = 1551016 + 0: The total amount of wall time = 227.570929 + 0: The maximum resident set size (KB) = 1558376 Test 079 control_debug_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/regional_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/regional_debug Checking test 080 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1293.542081 - 0: The maximum resident set size (KB) = 800308 + 0: The total amount of wall time = 1304.037599 + 0: The maximum resident set size (KB) = 801568 Test 080 regional_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/rap_control_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rap_control_debug Checking test 081 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 364.767431 - 0: The maximum resident set size (KB) = 1107148 + 0: The total amount of wall time = 366.319261 + 0: The maximum resident set size (KB) = 1118216 Test 081 rap_control_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/hrrr_control_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/hrrr_control_debug Checking test 082 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 356.297983 - 0: The maximum resident set size (KB) = 1103284 + 0: The total amount of wall time = 358.143672 + 0: The maximum resident set size (KB) = 1112364 Test 082 hrrr_control_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/rap_unified_drag_suite_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rap_unified_drag_suite_debug Checking test 083 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 366.614664 - 0: The maximum resident set size (KB) = 1112508 + 0: The total amount of wall time = 365.343307 + 0: The maximum resident set size (KB) = 1115880 Test 083 rap_unified_drag_suite_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_diag_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/rap_diag_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_diag_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rap_diag_debug Checking test 084 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 387.842552 - 0: The maximum resident set size (KB) = 1196168 + 0: The total amount of wall time = 394.686603 + 0: The maximum resident set size (KB) = 1196540 Test 084 rap_diag_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/rap_cires_ugwp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_cires_ugwp_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rap_cires_ugwp_debug Checking test 085 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 383.406545 - 0: The maximum resident set size (KB) = 1107264 + 0: The total amount of wall time = 373.159692 + 0: The maximum resident set size (KB) = 1118012 Test 085 rap_cires_ugwp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/rap_unified_ugwp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_cires_ugwp_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rap_unified_ugwp_debug Checking test 086 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 376.501999 - 0: The maximum resident set size (KB) = 1120576 + 0: The total amount of wall time = 374.843648 + 0: The maximum resident set size (KB) = 1117316 Test 086 rap_unified_ugwp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_lndp_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/rap_lndp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_lndp_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rap_lndp_debug Checking test 087 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 369.451820 - 0: The maximum resident set size (KB) = 1117852 + 0: The total amount of wall time = 370.304469 + 0: The maximum resident set size (KB) = 1112576 Test 087 rap_lndp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_flake_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/rap_flake_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_flake_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rap_flake_debug Checking test 088 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 369.569484 - 0: The maximum resident set size (KB) = 1106824 + 0: The total amount of wall time = 364.179938 + 0: The maximum resident set size (KB) = 1114232 Test 088 rap_flake_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_progcld_thompson_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/rap_progcld_thompson_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_progcld_thompson_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rap_progcld_thompson_debug Checking test 089 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 371.706381 - 0: The maximum resident set size (KB) = 1111732 + 0: The total amount of wall time = 369.326338 + 0: The maximum resident set size (KB) = 1116136 Test 089 rap_progcld_thompson_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_noah_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/rap_noah_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_noah_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rap_noah_debug Checking test 090 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 358.046120 - 0: The maximum resident set size (KB) = 1108932 + 0: The total amount of wall time = 367.157022 + 0: The maximum resident set size (KB) = 1116916 Test 090 rap_noah_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_sfcdiff_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/rap_sfcdiff_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rap_sfcdiff_debug Checking test 091 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 367.349619 - 0: The maximum resident set size (KB) = 1112944 + 0: The total amount of wall time = 368.639076 + 0: The maximum resident set size (KB) = 1113224 Test 091 rap_sfcdiff_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rap_noah_sfcdiff_cires_ugwp_debug Checking test 092 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 595.503282 - 0: The maximum resident set size (KB) = 1109880 + 0: The total amount of wall time = 600.182782 + 0: The maximum resident set size (KB) = 1108736 Test 092 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_v1beta_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/rrfs_v1beta_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1beta_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rrfs_v1beta_debug Checking test 093 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 364.221800 - 0: The maximum resident set size (KB) = 1105464 + 0: The total amount of wall time = 368.616592 + 0: The maximum resident set size (KB) = 1108840 Test 093 rrfs_v1beta_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_wam_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/control_wam_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wam_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_wam_debug Checking test 094 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 372.693869 - 0: The maximum resident set size (KB) = 436528 + 0: The total amount of wall time = 446.651218 + 0: The maximum resident set size (KB) = 440396 Test 094 control_wam_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 095 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3060,14 +3060,14 @@ Checking test 095 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 390.470664 - 0: The maximum resident set size (KB) = 979728 + 0: The total amount of wall time = 436.047842 + 0: The maximum resident set size (KB) = 986160 Test 095 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/rap_control_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rap_control_dyn32_phy32 Checking test 096 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3114,14 +3114,14 @@ Checking test 096 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 506.183360 - 0: The maximum resident set size (KB) = 871344 + 0: The total amount of wall time = 588.632120 + 0: The maximum resident set size (KB) = 851900 Test 096 rap_control_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/hrrr_control_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/hrrr_control_dyn32_phy32 Checking test 097 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3168,14 +3168,14 @@ Checking test 097 hrrr_control_dyn32_phy32 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 = 264.148920 - 0: The maximum resident set size (KB) = 823516 + 0: The total amount of wall time = 315.639099 + 0: The maximum resident set size (KB) = 826936 Test 097 hrrr_control_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/rap_2threads_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rap_2threads_dyn32_phy32 Checking test 098 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3222,14 +3222,14 @@ Checking test 098 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 491.939688 - 0: The maximum resident set size (KB) = 894528 + 0: The total amount of wall time = 560.852380 + 0: The maximum resident set size (KB) = 890812 Test 098 rap_2threads_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/hrrr_control_2threads_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/hrrr_control_2threads_dyn32_phy32 Checking test 099 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3276,14 +3276,14 @@ Checking test 099 hrrr_control_2threads_dyn32_phy32 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 = 262.333784 - 0: The maximum resident set size (KB) = 889404 + 0: The total amount of wall time = 321.712936 + 0: The maximum resident set size (KB) = 888392 Test 099 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/hrrr_control_decomp_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/hrrr_control_decomp_dyn32_phy32 Checking test 100 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3330,14 +3330,14 @@ Checking test 100 hrrr_control_decomp_dyn32_phy32 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 = 280.960180 - 0: The maximum resident set size (KB) = 823640 + 0: The total amount of wall time = 341.067872 + 0: The maximum resident set size (KB) = 820756 Test 100 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/rap_restart_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rap_restart_dyn32_phy32 Checking test 101 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3376,14 +3376,14 @@ Checking test 101 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 390.249610 - 0: The maximum resident set size (KB) = 811188 + 0: The total amount of wall time = 394.776986 + 0: The maximum resident set size (KB) = 805632 Test 101 rap_restart_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/hrrr_control_restart_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/hrrr_control_restart_dyn32_phy32 Checking test 102 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3422,14 +3422,14 @@ Checking test 102 hrrr_control_restart_dyn32_phy32 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 = 137.053434 - 0: The maximum resident set size (KB) = 764404 + 0: The total amount of wall time = 164.594750 + 0: The maximum resident set size (KB) = 762352 Test 102 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_dyn64_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/rap_control_dyn64_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn64_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rap_control_dyn64_phy32 Checking test 103 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3476,81 +3476,81 @@ Checking test 103 rap_control_dyn64_phy32 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 = 335.844278 - 0: The maximum resident set size (KB) = 874444 + 0: The total amount of wall time = 374.260906 + 0: The maximum resident set size (KB) = 861852 Test 103 rap_control_dyn64_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/rap_control_debug_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rap_control_debug_dyn32_phy32 Checking test 104 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 361.825461 - 0: The maximum resident set size (KB) = 998124 + 0: The total amount of wall time = 380.879030 + 0: The maximum resident set size (KB) = 997680 Test 104 rap_control_debug_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/hrrr_control_debug_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/hrrr_control_debug_dyn32_phy32 Checking test 105 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 359.964348 - 0: The maximum resident set size (KB) = 1002852 + 0: The total amount of wall time = 417.729497 + 0: The maximum resident set size (KB) = 1003588 Test 105 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/rap_control_dyn64_phy32_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rap_control_dyn64_phy32_debug Checking test 106 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 364.769841 - 0: The maximum resident set size (KB) = 1043476 + 0: The total amount of wall time = 485.385520 + 0: The maximum resident set size (KB) = 1039668 Test 106 rap_control_dyn64_phy32_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_atm -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/hafs_regional_atm +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/hafs_regional_atm Checking test 107 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 374.221308 - 0: The maximum resident set size (KB) = 1220304 + 0: The total amount of wall time = 451.263492 + 0: The maximum resident set size (KB) = 1219868 Test 107 hafs_regional_atm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/hafs_regional_atm_thompson_gfdlsf +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/hafs_regional_atm_thompson_gfdlsf Checking test 108 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 472.982496 - 0: The maximum resident set size (KB) = 1571008 + 0: The total amount of wall time = 612.850875 + 0: The maximum resident set size (KB) = 1542836 Test 108 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_atm_ocn -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/hafs_regional_atm_ocn +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_ocn +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/hafs_regional_atm_ocn Checking test 109 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3559,14 +3559,14 @@ Checking test 109 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 571.606244 - 0: The maximum resident set size (KB) = 1296588 + 0: The total amount of wall time = 554.786065 + 0: The maximum resident set size (KB) = 1288280 Test 109 hafs_regional_atm_ocn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_atm_wav -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/hafs_regional_atm_wav +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_wav +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/hafs_regional_atm_wav Checking test 110 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3575,14 +3575,14 @@ Checking test 110 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 961.190213 - 0: The maximum resident set size (KB) = 1322496 + 0: The total amount of wall time = 956.275061 + 0: The maximum resident set size (KB) = 1319664 Test 110 hafs_regional_atm_wav PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/hafs_regional_atm_ocn_wav +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_ocn_wav +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/hafs_regional_atm_ocn_wav Checking test 111 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3593,14 +3593,14 @@ Checking test 111 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 1052.532782 - 0: The maximum resident set size (KB) = 1335276 + 0: The total amount of wall time = 1063.752364 + 0: The maximum resident set size (KB) = 1336856 Test 111 hafs_regional_atm_ocn_wav PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_docn -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/hafs_regional_docn +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_docn +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/hafs_regional_docn Checking test 112 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3608,14 +3608,14 @@ Checking test 112 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 528.367770 - 0: The maximum resident set size (KB) = 1307000 + 0: The total amount of wall time = 533.064773 + 0: The maximum resident set size (KB) = 1310420 -Test 112 hafs_regional_docn PASS Tries: 2 +Test 112 hafs_regional_docn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_docn_oisst -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/hafs_regional_docn_oisst +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_docn_oisst +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/hafs_regional_docn_oisst Checking test 113 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3623,131 +3623,131 @@ Checking test 113 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 533.809622 - 0: The maximum resident set size (KB) = 1299220 + 0: The total amount of wall time = 531.570938 + 0: The maximum resident set size (KB) = 1288724 Test 113 hafs_regional_docn_oisst PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_datm_cdeps -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/hafs_regional_datm_cdeps +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_datm_cdeps +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/hafs_regional_datm_cdeps Checking test 114 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 1297.791402 - 0: The maximum resident set size (KB) = 974704 + 0: The total amount of wall time = 1306.922889 + 0: The maximum resident set size (KB) = 980988 Test 114 hafs_regional_datm_cdeps PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/datm_cdeps_control_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/datm_cdeps_control_cfsr Checking test 115 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 215.185455 - 0: The maximum resident set size (KB) = 970956 + 0: The total amount of wall time = 257.725741 + 0: The maximum resident set size (KB) = 966628 Test 115 datm_cdeps_control_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/datm_cdeps_restart_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/datm_cdeps_restart_cfsr Checking test 116 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 139.345226 - 0: The maximum resident set size (KB) = 923296 + 0: The total amount of wall time = 163.348982 + 0: The maximum resident set size (KB) = 939580 Test 116 datm_cdeps_restart_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_control_gefs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/datm_cdeps_control_gefs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_gefs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/datm_cdeps_control_gefs Checking test 117 datm_cdeps_control_gefs 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 = 219.157690 - 0: The maximum resident set size (KB) = 864288 + 0: The total amount of wall time = 242.164381 + 0: The maximum resident set size (KB) = 867452 Test 117 datm_cdeps_control_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_iau_gefs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/datm_cdeps_iau_gefs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_iau_gefs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/datm_cdeps_iau_gefs Checking test 118 datm_cdeps_iau_gefs 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 = 226.560062 - 0: The maximum resident set size (KB) = 866084 + 0: The total amount of wall time = 254.681078 + 0: The maximum resident set size (KB) = 855248 Test 118 datm_cdeps_iau_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_stochy_gefs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/datm_cdeps_stochy_gefs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_stochy_gefs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/datm_cdeps_stochy_gefs Checking test 119 datm_cdeps_stochy_gefs 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 = 251.059161 - 0: The maximum resident set size (KB) = 846540 + 0: The total amount of wall time = 249.545982 + 0: The maximum resident set size (KB) = 859828 Test 119 datm_cdeps_stochy_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/datm_cdeps_ciceC_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_ciceC_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/datm_cdeps_ciceC_cfsr Checking test 120 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 221.414493 - 0: The maximum resident set size (KB) = 972872 + 0: The total amount of wall time = 251.351074 + 0: The maximum resident set size (KB) = 968280 Test 120 datm_cdeps_ciceC_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/datm_cdeps_bulk_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_bulk_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/datm_cdeps_bulk_cfsr Checking test 121 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 234.677097 - 0: The maximum resident set size (KB) = 969168 + 0: The total amount of wall time = 250.921747 + 0: The maximum resident set size (KB) = 956220 Test 121 datm_cdeps_bulk_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/datm_cdeps_bulk_gefs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_bulk_gefs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/datm_cdeps_bulk_gefs Checking test 122 datm_cdeps_bulk_gefs 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 = 219.777011 - 0: The maximum resident set size (KB) = 860980 + 0: The total amount of wall time = 227.499567 + 0: The maximum resident set size (KB) = 865316 Test 122 datm_cdeps_bulk_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/datm_cdeps_mx025_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_mx025_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/datm_cdeps_mx025_cfsr Checking test 123 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -3756,14 +3756,14 @@ Checking test 123 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 582.176306 - 0: The maximum resident set size (KB) = 760720 + 0: The total amount of wall time = 695.240123 + 0: The maximum resident set size (KB) = 765612 Test 123 datm_cdeps_mx025_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/datm_cdeps_mx025_gefs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_mx025_gefs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/datm_cdeps_mx025_gefs Checking test 124 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -3772,64 +3772,64 @@ Checking test 124 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 590.685440 - 0: The maximum resident set size (KB) = 729276 + 0: The total amount of wall time = 748.115276 + 0: The maximum resident set size (KB) = 741048 Test 124 datm_cdeps_mx025_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/datm_cdeps_multiple_files_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/datm_cdeps_multiple_files_cfsr Checking test 125 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 220.434766 - 0: The maximum resident set size (KB) = 964084 + 0: The total amount of wall time = 255.325649 + 0: The maximum resident set size (KB) = 965844 Test 125 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/datm_cdeps_3072x1536_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/datm_cdeps_3072x1536_cfsr Checking test 126 datm_cdeps_3072x1536_cfsr 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 = 343.090620 - 0: The maximum resident set size (KB) = 2258324 + 0: The total amount of wall time = 361.487880 + 0: The maximum resident set size (KB) = 2251696 Test 126 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_gfs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/datm_cdeps_gfs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_gfs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/datm_cdeps_gfs Checking test 127 datm_cdeps_gfs 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 = 322.828053 - 0: The maximum resident set size (KB) = 2260972 + 0: The total amount of wall time = 415.113978 + 0: The maximum resident set size (KB) = 2253716 Test 127 datm_cdeps_gfs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_debug_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/datm_cdeps_debug_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_debug_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/datm_cdeps_debug_cfsr Checking test 128 datm_cdeps_debug_cfsr 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 = 584.516247 - 0: The maximum resident set size (KB) = 922832 + 0: The total amount of wall time = 619.456631 + 0: The maximum resident set size (KB) = 940160 Test 128 datm_cdeps_debug_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/datm_cdeps_lnd_gswp3 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/datm_cdeps_lnd_gswp3 Checking test 129 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -3838,14 +3838,14 @@ Checking test 129 datm_cdeps_lnd_gswp3 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 = 25.381151 - 0: The maximum resident set size (KB) = 248312 + 0: The total amount of wall time = 41.897433 + 0: The maximum resident set size (KB) = 242984 Test 129 datm_cdeps_lnd_gswp3 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/datm_cdeps_lnd_gswp3_rst +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/datm_cdeps_lnd_gswp3_rst Checking test 130 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -3854,14 +3854,14 @@ Checking test 130 datm_cdeps_lnd_gswp3_rst 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 = 25.474348 - 0: The maximum resident set size (KB) = 256172 + 0: The total amount of wall time = 45.364609 + 0: The maximum resident set size (KB) = 256364 Test 130 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8_atmlnd_sbs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/control_p8_atmlnd_sbs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_atmlnd_sbs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_p8_atmlnd_sbs Checking test 131 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3946,14 +3946,14 @@ Checking test 131 control_p8_atmlnd_sbs 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 = 304.528738 - 0: The maximum resident set size (KB) = 1600400 + 0: The total amount of wall time = 310.326644 + 0: The maximum resident set size (KB) = 1587588 Test 131 control_p8_atmlnd_sbs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/control_atmwav -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/control_atmwav +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_atmwav +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_atmwav Checking test 132 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -3997,14 +3997,14 @@ Checking test 132 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 126.755406 - 0: The maximum resident set size (KB) = 597612 + 0: The total amount of wall time = 128.402573 + 0: The maximum resident set size (KB) = 597424 Test 132 control_atmwav PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/atmaero_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/atmaero_control_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/atmaero_control_p8 Checking test 133 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4048,14 +4048,14 @@ Checking test 133 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 316.895371 - 0: The maximum resident set size (KB) = 1648008 + 0: The total amount of wall time = 323.006092 + 0: The maximum resident set size (KB) = 1635068 Test 133 atmaero_control_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/atmaero_control_p8_rad -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/atmaero_control_p8_rad +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8_rad +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/atmaero_control_p8_rad Checking test 134 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4099,14 +4099,14 @@ Checking test 134 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 389.303458 - 0: The maximum resident set size (KB) = 1663104 + 0: The total amount of wall time = 387.012991 + 0: The maximum resident set size (KB) = 1668800 Test 134 atmaero_control_p8_rad PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/atmaero_control_p8_rad_micro +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8_rad_micro +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/atmaero_control_p8_rad_micro Checking test 135 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4150,14 +4150,14 @@ Checking test 135 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 392.988582 - 0: The maximum resident set size (KB) = 1688552 + 0: The total amount of wall time = 388.319959 + 0: The maximum resident set size (KB) = 1689836 Test 135 atmaero_control_p8_rad_micro PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_atmaq -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_279473/regional_atmaq +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_atmaq +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/regional_atmaq Checking test 136 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4173,12 +4173,12 @@ Checking test 136 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 962.008158 - 0: The maximum resident set size (KB) = 1326988 + 0: The total amount of wall time = 941.390764 + 0: The maximum resident set size (KB) = 1427088 Test 136 regional_atmaq PASS REGRESSION TEST WAS SUCCESSFUL -Fri Feb 24 19:26:14 UTC 2023 -Elapsed time: 02h:29m:48s. Have a nice day! +Tue Feb 28 20:34:11 UTC 2023 +Elapsed time: 02h:55m:13s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index 1537706e8dd..a4ab06d6c97 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,38 +1,38 @@ -Fri Feb 24 09:37:50 CST 2023 +Tue Feb 28 19:41:25 CST 2023 Start Regression test -Compile 001 elapsed time 664 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 708 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 647 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 244 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 229 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 597 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 646 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 581 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 590 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 590 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 475 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 212 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 013 elapsed time 194 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 512 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 015 elapsed time 510 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 152 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 017 elapsed time 191 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 614 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 019 elapsed time 279 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 758 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 653 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 022 elapsed time 210 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 023 elapsed time 124 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 024 elapsed time 55 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 025 elapsed time 582 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 026 elapsed time 590 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 027 elapsed time 520 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 600 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 237 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8_mixedmode -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/cpld_control_p8_mixedmode +Compile 001 elapsed time 790 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 789 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 700 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 266 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 249 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 677 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 629 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 620 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 625 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 602 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 492 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 222 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 222 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 014 elapsed time 590 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 609 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 240 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 017 elapsed time 231 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 698 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 019 elapsed time 476 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 818 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 757 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 022 elapsed time 253 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 023 elapsed time 220 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 024 elapsed time 190 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 025 elapsed time 597 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 026 elapsed time 617 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 027 elapsed time 548 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 503 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 210 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8_mixedmode +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -97,14 +97,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 308.958904 - 0: The maximum resident set size (KB) = 3137976 + 0: The total amount of wall time = 311.799948 + 0: The maximum resident set size (KB) = 3146248 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_gfsv17 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/cpld_control_gfsv17 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_gfsv17 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -168,14 +168,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 230.064557 - 0: The maximum resident set size (KB) = 1731068 + 0: The total amount of wall time = 237.690299 + 0: The maximum resident set size (KB) = 1731136 Test 002 cpld_control_gfsv17 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/cpld_control_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -240,14 +240,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 350.129159 - 0: The maximum resident set size (KB) = 3179596 + 0: The total amount of wall time = 352.971491 + 0: The maximum resident set size (KB) = 3180744 Test 003 cpld_control_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/cpld_restart_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -300,14 +300,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 203.502974 - 0: The maximum resident set size (KB) = 3049088 + 0: The total amount of wall time = 204.396024 + 0: The maximum resident set size (KB) = 3047856 Test 004 cpld_restart_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/cpld_2threads_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -360,14 +360,14 @@ Checking test 005 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 420.129655 - 0: The maximum resident set size (KB) = 3518632 + 0: The total amount of wall time = 411.404099 + 0: The maximum resident set size (KB) = 3512908 Test 005 cpld_2threads_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/cpld_decomp_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/cpld_decomp_p8 Checking test 006 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -420,14 +420,14 @@ Checking test 006 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 347.378073 - 0: The maximum resident set size (KB) = 3171036 + 0: The total amount of wall time = 345.691980 + 0: The maximum resident set size (KB) = 3168076 Test 006 cpld_decomp_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/cpld_mpi_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/cpld_mpi_p8 Checking test 007 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -480,14 +480,14 @@ Checking test 007 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 304.986982 - 0: The maximum resident set size (KB) = 3028400 + 0: The total amount of wall time = 287.673042 + 0: The maximum resident set size (KB) = 3028952 Test 007 cpld_mpi_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_ciceC_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/cpld_control_ciceC_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_ciceC_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/cpld_control_ciceC_p8 Checking test 008 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -552,14 +552,14 @@ Checking test 008 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 361.199562 - 0: The maximum resident set size (KB) = 3177072 + 0: The total amount of wall time = 353.392292 + 0: The maximum resident set size (KB) = 3175116 Test 008 cpld_control_ciceC_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/cpld_control_c192_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c192_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/cpld_control_c192_p8 Checking test 009 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -612,14 +612,14 @@ Checking test 009 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 644.610190 - 0: The maximum resident set size (KB) = 3262744 + 0: The total amount of wall time = 659.734343 + 0: The maximum resident set size (KB) = 3247956 Test 009 cpld_control_c192_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/cpld_restart_c192_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c192_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/cpld_restart_c192_p8 Checking test 010 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -672,14 +672,14 @@ Checking test 010 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 481.281027 - 0: The maximum resident set size (KB) = 3159428 + 0: The total amount of wall time = 459.673238 + 0: The maximum resident set size (KB) = 3146672 Test 010 cpld_restart_c192_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_bmark_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/cpld_bmark_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_bmark_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/cpld_bmark_p8 Checking test 011 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -727,14 +727,14 @@ Checking test 011 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 872.129690 - 0: The maximum resident set size (KB) = 4041460 + 0: The total amount of wall time = 876.457276 + 0: The maximum resident set size (KB) = 4040260 Test 011 cpld_bmark_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_bmark_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/cpld_restart_bmark_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_bmark_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/cpld_restart_bmark_p8 Checking test 012 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -782,14 +782,14 @@ Checking test 012 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 536.210058 - 0: The maximum resident set size (KB) = 3970220 + 0: The total amount of wall time = 543.608448 + 0: The maximum resident set size (KB) = 3959036 Test 012 cpld_restart_bmark_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_noaero_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/cpld_control_noaero_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_noaero_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/cpld_control_noaero_p8 Checking test 013 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -853,14 +853,14 @@ Checking test 013 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 254.812409 - 0: The maximum resident set size (KB) = 1724168 + 0: The total amount of wall time = 261.273395 + 0: The maximum resident set size (KB) = 1720856 Test 013 cpld_control_noaero_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_c96_noaero_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/cpld_control_nowave_noaero_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c96_noaero_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/cpld_control_nowave_noaero_p8 Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -922,14 +922,14 @@ Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 261.877887 - 0: The maximum resident set size (KB) = 1761320 + 0: The total amount of wall time = 263.239836 + 0: The maximum resident set size (KB) = 1762528 Test 014 cpld_control_nowave_noaero_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_debug_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/cpld_debug_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_debug_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/cpld_debug_p8 Checking test 015 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -982,14 +982,14 @@ Checking test 015 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 697.360360 - 0: The maximum resident set size (KB) = 3246716 + 0: The total amount of wall time = 692.027600 + 0: The maximum resident set size (KB) = 3243104 Test 015 cpld_debug_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_debug_noaero_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/cpld_debug_noaero_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_debug_noaero_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/cpld_debug_noaero_p8 Checking test 016 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1041,14 +1041,14 @@ Checking test 016 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 421.086436 - 0: The maximum resident set size (KB) = 1737348 + 0: The total amount of wall time = 434.819697 + 0: The maximum resident set size (KB) = 1752392 Test 016 cpld_debug_noaero_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_noaero_p8_agrid -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/cpld_control_noaero_p8_agrid +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_noaero_p8_agrid +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/cpld_control_noaero_p8_agrid Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1110,14 +1110,14 @@ Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 268.725791 - 0: The maximum resident set size (KB) = 1770660 + 0: The total amount of wall time = 271.557475 + 0: The maximum resident set size (KB) = 1762212 Test 017 cpld_control_noaero_p8_agrid PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_c48 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/cpld_control_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/cpld_control_c48 Checking test 018 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1167,14 +1167,14 @@ Checking test 018 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 495.870075 - 0: The maximum resident set size (KB) = 2801708 + 0: The total amount of wall time = 497.901712 + 0: The maximum resident set size (KB) = 2796524 Test 018 cpld_control_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_warmstart_c48 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/cpld_warmstart_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_warmstart_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/cpld_warmstart_c48 Checking test 019 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1224,14 +1224,14 @@ Checking test 019 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 138.372228 - 0: The maximum resident set size (KB) = 2795104 + 0: The total amount of wall time = 140.023396 + 0: The maximum resident set size (KB) = 2803408 Test 019 cpld_warmstart_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_warmstart_c48 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/cpld_restart_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_warmstart_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/cpld_restart_c48 Checking test 020 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1281,14 +1281,14 @@ Checking test 020 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 71.528781 - 0: The maximum resident set size (KB) = 2244052 + 0: The total amount of wall time = 72.254655 + 0: The maximum resident set size (KB) = 2250832 Test 020 cpld_restart_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_CubedSphereGrid -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/control_CubedSphereGrid +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_CubedSphereGrid Checking test 021 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1315,28 +1315,28 @@ Checking test 021 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 130.100001 - 0: The maximum resident set size (KB) = 625112 + 0: The total amount of wall time = 131.736134 + 0: The maximum resident set size (KB) = 628156 Test 021 control_CubedSphereGrid PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_CubedSphereGrid_parallel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/control_CubedSphereGrid_parallel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid_parallel +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_CubedSphereGrid_parallel Checking test 022 control_CubedSphereGrid_parallel results .... 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 = 127.240218 - 0: The maximum resident set size (KB) = 628280 + 0: The total amount of wall time = 128.373172 + 0: The maximum resident set size (KB) = 629824 Test 022 control_CubedSphereGrid_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_latlon -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/control_latlon +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_latlon +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_latlon Checking test 023 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1347,32 +1347,32 @@ Checking test 023 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.098644 - 0: The maximum resident set size (KB) = 631664 + 0: The total amount of wall time = 134.024717 + 0: The maximum resident set size (KB) = 632768 Test 023 control_latlon PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_wrtGauss_netcdf_parallel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/control_wrtGauss_netcdf_parallel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wrtGauss_netcdf_parallel +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_wrtGauss_netcdf_parallel Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK + Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.105634 - 0: The maximum resident set size (KB) = 630076 + 0: The total amount of wall time = 135.778505 + 0: The maximum resident set size (KB) = 627596 Test 024 control_wrtGauss_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_c48 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/control_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_c48 Checking test 025 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1411,14 +1411,14 @@ Checking test 025 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 347.126957 -0: The maximum resident set size (KB) = 821480 +0: The total amount of wall time = 347.756121 +0: The maximum resident set size (KB) = 815552 Test 025 control_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_c192 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/control_c192 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c192 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_c192 Checking test 026 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1429,14 +1429,14 @@ Checking test 026 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 526.302921 - 0: The maximum resident set size (KB) = 764944 + 0: The total amount of wall time = 525.405908 + 0: The maximum resident set size (KB) = 758376 Test 026 control_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_c384 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/control_c384 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c384 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_c384 Checking test 027 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1447,14 +1447,14 @@ Checking test 027 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 596.255603 - 0: The maximum resident set size (KB) = 1227916 + 0: The total amount of wall time = 614.442326 + 0: The maximum resident set size (KB) = 1233084 Test 027 control_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_c384gdas -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/control_c384gdas +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c384gdas +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_c384gdas Checking test 028 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1497,14 +1497,14 @@ Checking test 028 control_c384gdas results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 523.429261 - 0: The maximum resident set size (KB) = 1331156 + 0: The total amount of wall time = 521.905020 + 0: The maximum resident set size (KB) = 1331700 Test 028 control_c384gdas PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_stochy -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/control_stochy +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_stochy Checking test 029 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1515,28 +1515,28 @@ Checking test 029 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 87.512193 - 0: The maximum resident set size (KB) = 633596 + 0: The total amount of wall time = 87.090957 + 0: The maximum resident set size (KB) = 629520 Test 029 control_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_stochy -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/control_stochy_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_stochy_restart Checking test 030 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 47.042506 - 0: The maximum resident set size (KB) = 480912 + 0: The total amount of wall time = 47.430441 + 0: The maximum resident set size (KB) = 490644 Test 030 control_stochy_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_lndp -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/control_lndp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_lndp +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_lndp Checking test 031 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1547,14 +1547,14 @@ Checking test 031 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 81.919803 - 0: The maximum resident set size (KB) = 636332 + 0: The total amount of wall time = 81.418162 + 0: The maximum resident set size (KB) = 629604 Test 031 control_lndp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_iovr4 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/control_iovr4 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_iovr4 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_iovr4 Checking test 032 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1569,14 +1569,14 @@ Checking test 032 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.515945 - 0: The maximum resident set size (KB) = 627436 + 0: The total amount of wall time = 133.958593 + 0: The maximum resident set size (KB) = 633376 Test 032 control_iovr4 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_iovr5 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/control_iovr5 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_iovr5 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_iovr5 Checking test 033 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1591,14 +1591,14 @@ Checking test 033 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.386130 - 0: The maximum resident set size (KB) = 627352 + 0: The total amount of wall time = 134.109636 + 0: The maximum resident set size (KB) = 627804 Test 033 control_iovr5 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/control_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_p8 Checking test 034 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1645,14 +1645,14 @@ Checking test 034 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 166.664935 - 0: The maximum resident set size (KB) = 1598444 + 0: The total amount of wall time = 167.346608 + 0: The maximum resident set size (KB) = 1600764 Test 034 control_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8_lndp -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/control_p8_lndp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_lndp +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_p8_lndp Checking test 035 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1671,14 +1671,14 @@ Checking test 035 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 312.058329 - 0: The maximum resident set size (KB) = 1598472 + 0: The total amount of wall time = 311.283791 + 0: The maximum resident set size (KB) = 1604088 Test 035 control_p8_lndp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/control_restart_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_restart_p8 Checking test 036 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1717,14 +1717,14 @@ Checking test 036 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 87.428003 - 0: The maximum resident set size (KB) = 870672 + 0: The total amount of wall time = 87.443489 + 0: The maximum resident set size (KB) = 876800 Test 036 control_restart_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/control_decomp_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_decomp_p8 Checking test 037 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1767,14 +1767,14 @@ Checking test 037 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 175.052516 - 0: The maximum resident set size (KB) = 1590644 + 0: The total amount of wall time = 174.108635 + 0: The maximum resident set size (KB) = 1587508 Test 037 control_decomp_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/control_2threads_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_2threads_p8 Checking test 038 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1817,14 +1817,14 @@ Checking test 038 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 182.857788 - 0: The maximum resident set size (KB) = 1689084 + 0: The total amount of wall time = 181.707282 + 0: The maximum resident set size (KB) = 1682704 Test 038 control_2threads_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8_rrtmgp -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/control_p8_rrtmgp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_rrtmgp +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_p8_rrtmgp Checking test 039 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1871,14 +1871,14 @@ Checking test 039 control_p8_rrtmgp results .... Comparing 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.726934 - 0: The maximum resident set size (KB) = 1668316 + 0: The total amount of wall time = 226.600765 + 0: The maximum resident set size (KB) = 1666672 Test 039 control_p8_rrtmgp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/merra2_thompson -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/merra2_thompson +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/merra2_thompson +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/merra2_thompson Checking test 040 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1925,14 +1925,14 @@ Checking test 040 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 191.056784 - 0: The maximum resident set size (KB) = 1609448 + 0: The total amount of wall time = 189.443605 + 0: The maximum resident set size (KB) = 1616516 Test 040 merra2_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/regional_control +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/regional_control Checking test 041 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1943,28 +1943,28 @@ Checking test 041 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 295.732367 - 0: The maximum resident set size (KB) = 865632 + 0: The total amount of wall time = 294.911836 + 0: The maximum resident set size (KB) = 865704 Test 041 regional_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/regional_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/regional_restart Checking test 042 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 151.222913 - 0: The maximum resident set size (KB) = 869716 + 0: The total amount of wall time = 150.206270 + 0: The maximum resident set size (KB) = 863860 Test 042 regional_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/regional_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/regional_decomp Checking test 043 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1975,14 +1975,14 @@ Checking test 043 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 314.932141 - 0: The maximum resident set size (KB) = 858716 + 0: The total amount of wall time = 315.220382 + 0: The maximum resident set size (KB) = 859520 Test 043 regional_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/regional_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/regional_2threads Checking test 044 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1993,14 +1993,14 @@ Checking test 044 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 209.325732 - 0: The maximum resident set size (KB) = 842544 + 0: The total amount of wall time = 208.690364 + 0: The maximum resident set size (KB) = 842940 Test 044 regional_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_noquilt -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/regional_noquilt +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_noquilt +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/regional_noquilt Checking test 045 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2008,28 +2008,28 @@ Checking test 045 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 316.887505 - 0: The maximum resident set size (KB) = 858800 + 0: The total amount of wall time = 314.583965 + 0: The maximum resident set size (KB) = 858520 Test 045 regional_noquilt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_netcdf_parallel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/regional_netcdf_parallel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_netcdf_parallel +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/regional_netcdf_parallel Checking test 046 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 292.702601 - 0: The maximum resident set size (KB) = 866992 + 0: The total amount of wall time = 291.890797 + 0: The maximum resident set size (KB) = 867864 Test 046 regional_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/regional_2dwrtdecomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/regional_2dwrtdecomp Checking test 047 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2040,14 +2040,14 @@ Checking test 047 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 296.965735 - 0: The maximum resident set size (KB) = 869916 + 0: The total amount of wall time = 298.437297 + 0: The maximum resident set size (KB) = 864892 Test 047 regional_2dwrtdecomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/fv3_regional_wofs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/regional_wofs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/fv3_regional_wofs +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/regional_wofs Checking test 048 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2058,14 +2058,14 @@ Checking test 048 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 374.948772 - 0: The maximum resident set size (KB) = 627612 + 0: The total amount of wall time = 375.102845 + 0: The maximum resident set size (KB) = 623524 Test 048 regional_wofs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/rap_control +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rap_control Checking test 049 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2112,14 +2112,14 @@ Checking test 049 rap_control results .... Comparing 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.767412 - 0: The maximum resident set size (KB) = 1067260 + 0: The total amount of wall time = 461.350630 + 0: The maximum resident set size (KB) = 1065984 Test 049 rap_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_spp_sppt_shum_skeb -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/regional_spp_sppt_shum_skeb +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_spp_sppt_shum_skeb +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/regional_spp_sppt_shum_skeb Checking test 050 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2130,14 +2130,14 @@ Checking test 050 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 325.324230 - 0: The maximum resident set size (KB) = 1187048 + 0: The total amount of wall time = 330.591694 + 0: The maximum resident set size (KB) = 1147316 Test 050 regional_spp_sppt_shum_skeb PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/rap_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rap_decomp Checking test 051 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2184,14 +2184,14 @@ Checking test 051 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 480.990768 - 0: The maximum resident set size (KB) = 1011980 + 0: The total amount of wall time = 479.976241 + 0: The maximum resident set size (KB) = 1012244 Test 051 rap_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/rap_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rap_2threads Checking test 052 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2238,14 +2238,14 @@ Checking test 052 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 477.462181 - 0: The maximum resident set size (KB) = 1137800 + 0: The total amount of wall time = 480.376134 + 0: The maximum resident set size (KB) = 1138640 Test 052 rap_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/rap_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rap_restart Checking test 053 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2284,14 +2284,14 @@ Checking test 053 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 257.808709 - 0: The maximum resident set size (KB) = 970284 + 0: The total amount of wall time = 232.729693 + 0: The maximum resident set size (KB) = 974976 Test 053 rap_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_sfcdiff -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/rap_sfcdiff +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rap_sfcdiff Checking test 054 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2338,14 +2338,14 @@ Checking test 054 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 451.997453 - 0: The maximum resident set size (KB) = 1059516 + 0: The total amount of wall time = 454.833072 + 0: The maximum resident set size (KB) = 1062976 Test 054 rap_sfcdiff PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_sfcdiff -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/rap_sfcdiff_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rap_sfcdiff_decomp Checking test 055 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2392,14 +2392,14 @@ Checking test 055 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 476.519229 - 0: The maximum resident set size (KB) = 1005484 + 0: The total amount of wall time = 478.292525 + 0: The maximum resident set size (KB) = 1007520 Test 055 rap_sfcdiff_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_sfcdiff -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/rap_sfcdiff_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rap_sfcdiff_restart Checking test 056 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2438,14 +2438,14 @@ Checking test 056 rap_sfcdiff_restart results .... Comparing 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.192680 - 0: The maximum resident set size (KB) = 987024 + 0: The total amount of wall time = 351.127888 + 0: The maximum resident set size (KB) = 997120 Test 056 rap_sfcdiff_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/hrrr_control +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hrrr_control Checking test 057 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2492,14 +2492,14 @@ Checking test 057 hrrr_control results .... Comparing 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.978591 - 0: The maximum resident set size (KB) = 1049304 + 0: The total amount of wall time = 434.886174 + 0: The maximum resident set size (KB) = 1057188 Test 057 hrrr_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/hrrr_control_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hrrr_control_decomp Checking test 058 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2546,14 +2546,14 @@ Checking test 058 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 456.333616 - 0: The maximum resident set size (KB) = 1004332 + 0: The total amount of wall time = 458.211877 + 0: The maximum resident set size (KB) = 1006844 Test 058 hrrr_control_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/hrrr_control_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hrrr_control_2threads Checking test 059 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2600,14 +2600,14 @@ Checking test 059 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 450.193714 - 0: The maximum resident set size (KB) = 1137672 + 0: The total amount of wall time = 449.301408 + 0: The maximum resident set size (KB) = 1134040 Test 059 hrrr_control_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/hrrr_control_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hrrr_control_restart Checking test 060 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2646,14 +2646,14 @@ Checking test 060 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 329.385711 - 0: The maximum resident set size (KB) = 991836 + 0: The total amount of wall time = 333.865491 + 0: The maximum resident set size (KB) = 988204 Test 060 hrrr_control_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_v1beta -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/rrfs_v1beta +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1beta +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rrfs_v1beta Checking test 061 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2700,14 +2700,14 @@ Checking test 061 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 444.778376 - 0: The maximum resident set size (KB) = 1056152 + 0: The total amount of wall time = 443.891960 + 0: The maximum resident set size (KB) = 1074776 Test 061 rrfs_v1beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_v1nssl -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/rrfs_v1nssl +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1nssl +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rrfs_v1nssl Checking test 062 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2722,14 +2722,14 @@ Checking test 062 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 562.048719 - 0: The maximum resident set size (KB) = 703784 + 0: The total amount of wall time = 532.022044 + 0: The maximum resident set size (KB) = 705316 Test 062 rrfs_v1nssl PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/rrfs_v1nssl_nohailnoccn +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rrfs_v1nssl_nohailnoccn Checking test 063 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2744,14 +2744,14 @@ Checking test 063 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 547.364762 - 0: The maximum resident set size (KB) = 765152 + 0: The total amount of wall time = 516.126819 + 0: The maximum resident set size (KB) = 762416 Test 063 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_hrrr_warm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/rrfs_conus13km_hrrr_warm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rrfs_conus13km_hrrr_warm Checking test 064 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2760,14 +2760,14 @@ Checking test 064 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 122.520769 - 0: The maximum resident set size (KB) = 932192 + 0: The total amount of wall time = 122.895246 + 0: The maximum resident set size (KB) = 892252 Test 064 rrfs_conus13km_hrrr_warm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rrfs_smoke_conus13km_hrrr_warm Checking test 065 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2776,14 +2776,14 @@ Checking test 065 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 138.210754 - 0: The maximum resident set size (KB) = 961388 + 0: The total amount of wall time = 138.035420 + 0: The maximum resident set size (KB) = 958620 Test 065 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/rrfs_conus13km_radar_tten_warm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rrfs_conus13km_radar_tten_warm Checking test 066 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2792,14 +2792,14 @@ Checking test 066 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 122.523043 - 0: The maximum resident set size (KB) = 937176 + 0: The total amount of wall time = 123.548228 + 0: The maximum resident set size (KB) = 933580 Test 066 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_hrrr_warm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/rrfs_conus13km_hrrr_warm_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rrfs_conus13km_hrrr_warm_2threads Checking test 067 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2808,14 +2808,14 @@ Checking test 067 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 82.743270 - 0: The maximum resident set size (KB) = 888924 + 0: The total amount of wall time = 82.872214 + 0: The maximum resident set size (KB) = 842580 Test 067 rrfs_conus13km_hrrr_warm_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/rrfs_conus13km_radar_tten_warm_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rrfs_conus13km_radar_tten_warm_2threads Checking test 068 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2824,14 +2824,14 @@ Checking test 068 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 83.157941 - 0: The maximum resident set size (KB) = 890200 + 0: The total amount of wall time = 83.331542 + 0: The maximum resident set size (KB) = 892488 Test 068 rrfs_conus13km_radar_tten_warm_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_csawmg -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/control_csawmg +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmg +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_csawmg Checking test 069 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2842,14 +2842,14 @@ Checking test 069 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 364.809439 - 0: The maximum resident set size (KB) = 721660 + 0: The total amount of wall time = 348.219443 + 0: The maximum resident set size (KB) = 722580 Test 069 control_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_csawmgt -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/control_csawmgt +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmgt +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_csawmgt Checking test 070 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2860,14 +2860,14 @@ Checking test 070 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 370.796601 - 0: The maximum resident set size (KB) = 727200 + 0: The total amount of wall time = 340.750793 + 0: The maximum resident set size (KB) = 730696 Test 070 control_csawmgt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_ras -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/control_ras +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_ras +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_ras Checking test 071 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2878,54 +2878,54 @@ Checking test 071 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 180.670747 - 0: The maximum resident set size (KB) = 722752 + 0: The total amount of wall time = 182.813207 + 0: The maximum resident set size (KB) = 724364 Test 071 control_ras PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_wam -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/control_wam +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wam +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_wam Checking test 072 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 112.248017 - 0: The maximum resident set size (KB) = 649416 + 0: The total amount of wall time = 112.141139 + 0: The maximum resident set size (KB) = 610812 Test 072 control_wam PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/rrfs_conus13km_hrrr_warm_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rrfs_conus13km_hrrr_warm_debug Checking test 073 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 759.105742 - 0: The maximum resident set size (KB) = 956296 + 0: The total amount of wall time = 734.214634 + 0: The maximum resident set size (KB) = 955624 Test 073 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/rrfs_conus13km_radar_tten_warm_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rrfs_conus13km_radar_tten_warm_debug Checking test 074 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 749.005538 - 0: The maximum resident set size (KB) = 967884 + 0: The total amount of wall time = 740.791537 + 0: The maximum resident set size (KB) = 966444 Test 074 rrfs_conus13km_radar_tten_warm_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_CubedSphereGrid_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/control_CubedSphereGrid_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_CubedSphereGrid_debug Checking test 075 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2952,334 +2952,334 @@ Checking test 075 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 171.318986 - 0: The maximum resident set size (KB) = 792176 + 0: The total amount of wall time = 170.381994 + 0: The maximum resident set size (KB) = 793284 Test 075 control_CubedSphereGrid_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/control_wrtGauss_netcdf_parallel_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_wrtGauss_netcdf_parallel_debug Checking test 076 control_wrtGauss_netcdf_parallel_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK - Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 157.692498 - 0: The maximum resident set size (KB) = 795520 + 0: The total amount of wall time = 162.741623 + 0: The maximum resident set size (KB) = 789428 Test 076 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_stochy_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/control_stochy_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_stochy_debug Checking test 077 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 181.850752 - 0: The maximum resident set size (KB) = 796708 + 0: The total amount of wall time = 177.662069 + 0: The maximum resident set size (KB) = 800788 Test 077 control_stochy_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_lndp_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/control_lndp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_lndp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_lndp_debug Checking test 078 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 161.724596 - 0: The maximum resident set size (KB) = 799248 + 0: The total amount of wall time = 159.161256 + 0: The maximum resident set size (KB) = 793616 Test 078 control_lndp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_csawmg_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/control_csawmg_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmg_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_csawmg_debug Checking test 079 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 243.406465 - 0: The maximum resident set size (KB) = 843012 + 0: The total amount of wall time = 239.534510 + 0: The maximum resident set size (KB) = 844288 Test 079 control_csawmg_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_csawmgt_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/control_csawmgt_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmgt_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_csawmgt_debug Checking test 080 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 234.732090 - 0: The maximum resident set size (KB) = 840348 + 0: The total amount of wall time = 244.647474 + 0: The maximum resident set size (KB) = 847188 Test 080 control_csawmgt_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_ras_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/control_ras_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_ras_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_ras_debug Checking test 081 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 160.112720 - 0: The maximum resident set size (KB) = 803792 + 0: The total amount of wall time = 163.824988 + 0: The maximum resident set size (KB) = 809656 Test 081 control_ras_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_diag_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/control_diag_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_diag_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_diag_debug Checking test 082 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 171.505597 - 0: The maximum resident set size (KB) = 856628 + 0: The total amount of wall time = 168.925352 + 0: The maximum resident set size (KB) = 844680 Test 082 control_diag_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_debug_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/control_debug_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_debug_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_debug_p8 Checking test 083 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 180.671225 - 0: The maximum resident set size (KB) = 1623468 + 0: The total amount of wall time = 180.130234 + 0: The maximum resident set size (KB) = 1634288 Test 083 control_debug_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/regional_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/regional_debug Checking test 084 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1000.671460 - 0: The maximum resident set size (KB) = 888460 + 0: The total amount of wall time = 996.885006 + 0: The maximum resident set size (KB) = 881720 Test 084 regional_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/rap_control_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rap_control_debug Checking test 085 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.876960 - 0: The maximum resident set size (KB) = 1175520 + 0: The total amount of wall time = 287.911265 + 0: The maximum resident set size (KB) = 1171604 Test 085 rap_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/hrrr_control_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hrrr_control_debug Checking test 086 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 278.573411 - 0: The maximum resident set size (KB) = 1169624 + 0: The total amount of wall time = 276.813431 + 0: The maximum resident set size (KB) = 1165388 Test 086 hrrr_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/rap_unified_drag_suite_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rap_unified_drag_suite_debug Checking test 087 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 282.447027 - 0: The maximum resident set size (KB) = 1175836 + 0: The total amount of wall time = 288.786967 + 0: The maximum resident set size (KB) = 1174996 Test 087 rap_unified_drag_suite_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_diag_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/rap_diag_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_diag_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rap_diag_debug Checking test 088 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 305.959879 - 0: The maximum resident set size (KB) = 1256164 + 0: The total amount of wall time = 302.361374 + 0: The maximum resident set size (KB) = 1258760 Test 088 rap_diag_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/rap_cires_ugwp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_cires_ugwp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rap_cires_ugwp_debug Checking test 089 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 292.119550 - 0: The maximum resident set size (KB) = 1175880 + 0: The total amount of wall time = 299.890657 + 0: The maximum resident set size (KB) = 1172404 Test 089 rap_cires_ugwp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/rap_unified_ugwp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_cires_ugwp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rap_unified_ugwp_debug Checking test 090 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 295.312360 - 0: The maximum resident set size (KB) = 1178944 + 0: The total amount of wall time = 289.409472 + 0: The maximum resident set size (KB) = 1169484 Test 090 rap_unified_ugwp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_lndp_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/rap_lndp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_lndp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rap_lndp_debug Checking test 091 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 291.153683 - 0: The maximum resident set size (KB) = 1181132 + 0: The total amount of wall time = 290.016584 + 0: The maximum resident set size (KB) = 1176608 Test 091 rap_lndp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_flake_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/rap_flake_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_flake_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rap_flake_debug Checking test 092 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 287.138486 - 0: The maximum resident set size (KB) = 1175992 + 0: The total amount of wall time = 292.593182 + 0: The maximum resident set size (KB) = 1180920 Test 092 rap_flake_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_progcld_thompson_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/rap_progcld_thompson_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_progcld_thompson_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rap_progcld_thompson_debug Checking test 093 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 284.367147 - 0: The maximum resident set size (KB) = 1182152 + 0: The total amount of wall time = 285.535823 + 0: The maximum resident set size (KB) = 1174096 Test 093 rap_progcld_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_noah_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/rap_noah_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_noah_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rap_noah_debug Checking test 094 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 285.716559 - 0: The maximum resident set size (KB) = 1173128 + 0: The total amount of wall time = 281.731054 + 0: The maximum resident set size (KB) = 1169464 Test 094 rap_noah_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_sfcdiff_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/rap_sfcdiff_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rap_sfcdiff_debug Checking test 095 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 291.942980 - 0: The maximum resident set size (KB) = 1172432 + 0: The total amount of wall time = 287.927311 + 0: The maximum resident set size (KB) = 1173392 Test 095 rap_sfcdiff_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rap_noah_sfcdiff_cires_ugwp_debug Checking test 096 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 453.265170 - 0: The maximum resident set size (KB) = 1174180 + 0: The total amount of wall time = 475.170517 + 0: The maximum resident set size (KB) = 1170788 Test 096 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_v1beta_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/rrfs_v1beta_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1beta_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rrfs_v1beta_debug Checking test 097 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 285.462290 - 0: The maximum resident set size (KB) = 1172956 + 0: The total amount of wall time = 286.883822 + 0: The maximum resident set size (KB) = 1166664 Test 097 rrfs_v1beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_wam_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/control_wam_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wam_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_wam_debug Checking test 098 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 317.574676 - 0: The maximum resident set size (KB) = 531712 + 0: The total amount of wall time = 293.200872 + 0: The maximum resident set size (KB) = 530120 Test 098 control_wam_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 099 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3290,14 +3290,14 @@ Checking test 099 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 302.738715 - 0: The maximum resident set size (KB) = 1084104 + 0: The total amount of wall time = 301.825671 + 0: The maximum resident set size (KB) = 1082332 Test 099 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/rap_control_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rap_control_dyn32_phy32 Checking test 100 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3344,14 +3344,14 @@ Checking test 100 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 395.870285 - 0: The maximum resident set size (KB) = 999220 + 0: The total amount of wall time = 370.940849 + 0: The maximum resident set size (KB) = 1004908 Test 100 rap_control_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/hrrr_control_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hrrr_control_dyn32_phy32 Checking test 101 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3398,14 +3398,14 @@ Checking test 101 hrrr_control_dyn32_phy32 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 = 193.264951 - 0: The maximum resident set size (KB) = 951784 + 0: The total amount of wall time = 194.265667 + 0: The maximum resident set size (KB) = 948828 Test 101 hrrr_control_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/rap_2threads_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rap_2threads_dyn32_phy32 Checking test 102 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3452,14 +3452,14 @@ Checking test 102 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 428.663600 - 0: The maximum resident set size (KB) = 1022400 + 0: The total amount of wall time = 387.870305 + 0: The maximum resident set size (KB) = 1024204 Test 102 rap_2threads_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/hrrr_control_2threads_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hrrr_control_2threads_dyn32_phy32 Checking test 103 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3506,14 +3506,14 @@ Checking test 103 hrrr_control_2threads_dyn32_phy32 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.057984 - 0: The maximum resident set size (KB) = 1006936 + 0: The total amount of wall time = 208.276342 + 0: The maximum resident set size (KB) = 1011440 Test 103 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/hrrr_control_decomp_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hrrr_control_decomp_dyn32_phy32 Checking test 104 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3560,14 +3560,14 @@ Checking test 104 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 254.862931 - 0: The maximum resident set size (KB) = 896968 + 0: The total amount of wall time = 207.352139 + 0: The maximum resident set size (KB) = 898512 Test 104 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/rap_restart_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rap_restart_dyn32_phy32 Checking test 105 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3606,14 +3606,14 @@ Checking test 105 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 280.849119 - 0: The maximum resident set size (KB) = 956104 + 0: The total amount of wall time = 281.040969 + 0: The maximum resident set size (KB) = 949456 Test 105 rap_restart_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/hrrr_control_restart_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hrrr_control_restart_dyn32_phy32 Checking test 106 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3652,14 +3652,14 @@ Checking test 106 hrrr_control_restart_dyn32_phy32 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 = 100.424893 - 0: The maximum resident set size (KB) = 864544 + 0: The total amount of wall time = 101.024038 + 0: The maximum resident set size (KB) = 855712 Test 106 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_dyn64_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/rap_control_dyn64_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn64_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rap_control_dyn64_phy32 Checking test 107 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3706,81 +3706,81 @@ Checking test 107 rap_control_dyn64_phy32 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 = 273.973239 - 0: The maximum resident set size (KB) = 965288 + 0: The total amount of wall time = 240.739026 + 0: The maximum resident set size (KB) = 911436 Test 107 rap_control_dyn64_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_debug_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/rap_control_debug_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rap_control_debug_dyn32_phy32 Checking test 108 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 284.009407 - 0: The maximum resident set size (KB) = 1063316 + 0: The total amount of wall time = 305.463079 + 0: The maximum resident set size (KB) = 1065128 Test 108 rap_control_debug_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/hrrr_control_debug_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hrrr_control_debug_dyn32_phy32 Checking test 109 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.787772 - 0: The maximum resident set size (KB) = 1060332 + 0: The total amount of wall time = 287.761948 + 0: The maximum resident set size (KB) = 1003880 Test 109 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_debug_dyn64_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/rap_control_dyn64_phy32_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug_dyn64_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rap_control_dyn64_phy32_debug Checking test 110 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 296.135212 - 0: The maximum resident set size (KB) = 1115392 + 0: The total amount of wall time = 286.065390 + 0: The maximum resident set size (KB) = 1095664 Test 110 rap_control_dyn64_phy32_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/hafs_regional_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hafs_regional_atm Checking test 111 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 320.424951 - 0: The maximum resident set size (KB) = 1056976 + 0: The total amount of wall time = 267.427668 + 0: The maximum resident set size (KB) = 1054928 Test 111 hafs_regional_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/hafs_regional_atm_thompson_gfdlsf +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hafs_regional_atm_thompson_gfdlsf Checking test 112 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 471.569473 - 0: The maximum resident set size (KB) = 1426272 + 0: The total amount of wall time = 419.069403 + 0: The maximum resident set size (KB) = 1421804 Test 112 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_atm_ocn -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/hafs_regional_atm_ocn +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_ocn +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hafs_regional_atm_ocn Checking test 113 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3789,14 +3789,14 @@ Checking test 113 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 415.379945 - 0: The maximum resident set size (KB) = 1228324 + 0: The total amount of wall time = 380.972164 + 0: The maximum resident set size (KB) = 1226196 Test 113 hafs_regional_atm_ocn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_atm_wav -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/hafs_regional_atm_wav +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_wav +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hafs_regional_atm_wav Checking test 114 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3805,14 +3805,14 @@ Checking test 114 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 798.286623 - 0: The maximum resident set size (KB) = 1251572 + 0: The total amount of wall time = 730.299560 + 0: The maximum resident set size (KB) = 1255464 Test 114 hafs_regional_atm_wav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_atm_ocn_wav -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/hafs_regional_atm_ocn_wav +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_ocn_wav +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hafs_regional_atm_ocn_wav Checking test 115 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3823,28 +3823,28 @@ Checking test 115 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 834.537363 - 0: The maximum resident set size (KB) = 1279976 + 0: The total amount of wall time = 828.112615 + 0: The maximum resident set size (KB) = 1282036 Test 115 hafs_regional_atm_ocn_wav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_1nest_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/hafs_regional_1nest_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hafs_regional_1nest_atm Checking test 116 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 364.013698 - 0: The maximum resident set size (KB) = 513392 + 0: The total amount of wall time = 369.729119 + 0: The maximum resident set size (KB) = 509880 Test 116 hafs_regional_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/hafs_regional_telescopic_2nests_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hafs_regional_telescopic_2nests_atm Checking test 117 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3853,28 +3853,28 @@ Checking test 117 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 417.058198 - 0: The maximum resident set size (KB) = 519704 + 0: The total amount of wall time = 419.436938 + 0: The maximum resident set size (KB) = 518384 Test 117 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_global_1nest_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/hafs_global_1nest_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hafs_global_1nest_atm Checking test 118 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 174.827488 - 0: The maximum resident set size (KB) = 353576 + 0: The total amount of wall time = 182.626152 + 0: The maximum resident set size (KB) = 352748 Test 118 hafs_global_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_global_multiple_4nests_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/hafs_global_multiple_4nests_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_multiple_4nests_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hafs_global_multiple_4nests_atm Checking test 119 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3892,14 +3892,14 @@ Checking test 119 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 471.300323 - 0: The maximum resident set size (KB) = 427388 + 0: The total amount of wall time = 482.400096 + 0: The maximum resident set size (KB) = 373972 Test 119 hafs_global_multiple_4nests_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/hafs_regional_specified_moving_1nest_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hafs_regional_specified_moving_1nest_atm Checking test 120 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3908,28 +3908,28 @@ Checking test 120 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 228.107659 - 0: The maximum resident set size (KB) = 518256 + 0: The total amount of wall time = 233.215130 + 0: The maximum resident set size (KB) = 523400 Test 120 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/hafs_regional_storm_following_1nest_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hafs_regional_storm_following_1nest_atm Checking test 121 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 218.045294 - 0: The maximum resident set size (KB) = 520556 + 0: The total amount of wall time = 226.062982 + 0: The maximum resident set size (KB) = 523452 Test 121 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hafs_regional_storm_following_1nest_atm_ocn Checking test 122 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3938,42 +3938,42 @@ Checking test 122 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 288.507202 - 0: The maximum resident set size (KB) = 557932 + 0: The total amount of wall time = 292.757540 + 0: The maximum resident set size (KB) = 559692 Test 122 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_global_storm_following_1nest_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/hafs_global_storm_following_1nest_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_storm_following_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hafs_global_storm_following_1nest_atm Checking test 123 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 68.200601 - 0: The maximum resident set size (KB) = 369140 + 0: The total amount of wall time = 78.174596 + 0: The maximum resident set size (KB) = 364316 Test 123 hafs_global_storm_following_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 124 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 809.099504 - 0: The maximum resident set size (KB) = 585080 + 0: The total amount of wall time = 807.242894 + 0: The maximum resident set size (KB) = 576172 Test 124 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 125 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3984,14 +3984,14 @@ Checking test 125 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 585.110881 - 0: The maximum resident set size (KB) = 622152 + 0: The total amount of wall time = 583.825906 + 0: The maximum resident set size (KB) = 616388 Test 125 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_docn -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/hafs_regional_docn +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_docn +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hafs_regional_docn Checking test 126 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3999,14 +3999,14 @@ Checking test 126 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 355.926569 - 0: The maximum resident set size (KB) = 1234208 + 0: The total amount of wall time = 359.776531 + 0: The maximum resident set size (KB) = 1236356 Test 126 hafs_regional_docn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_docn_oisst -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/hafs_regional_docn_oisst +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_docn_oisst +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hafs_regional_docn_oisst Checking test 127 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4014,131 +4014,131 @@ Checking test 127 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 359.420464 - 0: The maximum resident set size (KB) = 1216200 + 0: The total amount of wall time = 361.097194 + 0: The maximum resident set size (KB) = 1216612 Test 127 hafs_regional_docn_oisst PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_datm_cdeps -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/hafs_regional_datm_cdeps +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_datm_cdeps +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hafs_regional_datm_cdeps Checking test 128 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 928.055717 - 0: The maximum resident set size (KB) = 1041416 + 0: The total amount of wall time = 918.514684 + 0: The maximum resident set size (KB) = 1037496 Test 128 hafs_regional_datm_cdeps PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/datm_cdeps_control_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/datm_cdeps_control_cfsr Checking test 129 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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.866562 - 0: The maximum resident set size (KB) = 1065616 + 0: The total amount of wall time = 146.370355 + 0: The maximum resident set size (KB) = 1080772 Test 129 datm_cdeps_control_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/datm_cdeps_restart_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/datm_cdeps_restart_cfsr Checking test 130 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 91.069810 - 0: The maximum resident set size (KB) = 1018024 + 0: The total amount of wall time = 90.018507 + 0: The maximum resident set size (KB) = 1013860 Test 130 datm_cdeps_restart_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_control_gefs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/datm_cdeps_control_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/datm_cdeps_control_gefs Checking test 131 datm_cdeps_control_gefs 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.818491 - 0: The maximum resident set size (KB) = 964760 + 0: The total amount of wall time = 143.784196 + 0: The maximum resident set size (KB) = 970248 Test 131 datm_cdeps_control_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_iau_gefs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/datm_cdeps_iau_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_iau_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/datm_cdeps_iau_gefs Checking test 132 datm_cdeps_iau_gefs 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.492095 - 0: The maximum resident set size (KB) = 963700 + 0: The total amount of wall time = 145.349590 + 0: The maximum resident set size (KB) = 968972 Test 132 datm_cdeps_iau_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_stochy_gefs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/datm_cdeps_stochy_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_stochy_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/datm_cdeps_stochy_gefs Checking test 133 datm_cdeps_stochy_gefs 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.699227 - 0: The maximum resident set size (KB) = 965536 + 0: The total amount of wall time = 144.797839 + 0: The maximum resident set size (KB) = 963624 Test 133 datm_cdeps_stochy_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_ciceC_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/datm_cdeps_ciceC_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_ciceC_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/datm_cdeps_ciceC_cfsr Checking test 134 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.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.600540 - 0: The maximum resident set size (KB) = 1058432 + 0: The total amount of wall time = 149.575380 + 0: The maximum resident set size (KB) = 1075632 Test 134 datm_cdeps_ciceC_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_bulk_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/datm_cdeps_bulk_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_bulk_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/datm_cdeps_bulk_cfsr Checking test 135 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.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.466187 - 0: The maximum resident set size (KB) = 1077288 + 0: The total amount of wall time = 149.726303 + 0: The maximum resident set size (KB) = 1061508 Test 135 datm_cdeps_bulk_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_bulk_gefs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/datm_cdeps_bulk_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_bulk_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/datm_cdeps_bulk_gefs Checking test 136 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 141.823262 - 0: The maximum resident set size (KB) = 958160 + 0: The total amount of wall time = 142.550023 + 0: The maximum resident set size (KB) = 948104 Test 136 datm_cdeps_bulk_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_mx025_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/datm_cdeps_mx025_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_mx025_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/datm_cdeps_mx025_cfsr Checking test 137 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4147,14 +4147,14 @@ Checking test 137 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 431.462199 - 0: The maximum resident set size (KB) = 876340 + 0: The total amount of wall time = 444.375994 + 0: The maximum resident set size (KB) = 878808 Test 137 datm_cdeps_mx025_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_mx025_gefs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/datm_cdeps_mx025_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_mx025_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/datm_cdeps_mx025_gefs Checking test 138 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4163,64 +4163,64 @@ Checking test 138 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 428.357286 - 0: The maximum resident set size (KB) = 928436 + 0: The total amount of wall time = 430.448361 + 0: The maximum resident set size (KB) = 929704 Test 138 datm_cdeps_mx025_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/datm_cdeps_multiple_files_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/datm_cdeps_multiple_files_cfsr Checking test 139 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 147.643404 - 0: The maximum resident set size (KB) = 1067128 + 0: The total amount of wall time = 146.329466 + 0: The maximum resident set size (KB) = 1060592 Test 139 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/datm_cdeps_3072x1536_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/datm_cdeps_3072x1536_cfsr Checking test 140 datm_cdeps_3072x1536_cfsr 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 = 194.147060 - 0: The maximum resident set size (KB) = 2364508 + 0: The total amount of wall time = 198.126337 + 0: The maximum resident set size (KB) = 2373544 Test 140 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_gfs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/datm_cdeps_gfs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_gfs +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/datm_cdeps_gfs Checking test 141 datm_cdeps_gfs 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 = 202.541321 - 0: The maximum resident set size (KB) = 2302688 + 0: The total amount of wall time = 200.017285 + 0: The maximum resident set size (KB) = 2358032 Test 141 datm_cdeps_gfs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_debug_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/datm_cdeps_debug_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_debug_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/datm_cdeps_debug_cfsr Checking test 142 datm_cdeps_debug_cfsr 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 = 440.760255 - 0: The maximum resident set size (KB) = 992868 + 0: The total amount of wall time = 444.604368 + 0: The maximum resident set size (KB) = 1002616 Test 142 datm_cdeps_debug_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_lnd_gswp3 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/datm_cdeps_lnd_gswp3 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_lnd_gswp3 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/datm_cdeps_lnd_gswp3 Checking test 143 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4229,14 +4229,14 @@ Checking test 143 datm_cdeps_lnd_gswp3 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 = 6.580570 - 0: The maximum resident set size (KB) = 281624 + 0: The total amount of wall time = 6.969370 + 0: The maximum resident set size (KB) = 264024 Test 143 datm_cdeps_lnd_gswp3 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_lnd_gswp3 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/datm_cdeps_lnd_gswp3_rst +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_lnd_gswp3 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/datm_cdeps_lnd_gswp3_rst Checking test 144 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4245,14 +4245,14 @@ Checking test 144 datm_cdeps_lnd_gswp3_rst 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.154590 - 0: The maximum resident set size (KB) = 259004 + 0: The total amount of wall time = 12.896981 + 0: The maximum resident set size (KB) = 252352 Test 144 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8_atmlnd_sbs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/control_p8_atmlnd_sbs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_atmlnd_sbs +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_p8_atmlnd_sbs Checking test 145 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4337,14 +4337,14 @@ Checking test 145 control_p8_atmlnd_sbs 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.463820 - 0: The maximum resident set size (KB) = 1621020 + 0: The total amount of wall time = 202.821515 + 0: The maximum resident set size (KB) = 1626008 Test 145 control_p8_atmlnd_sbs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/control_atmwav -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/control_atmwav +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_atmwav +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_atmwav Checking test 146 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4388,14 +4388,14 @@ Checking test 146 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 86.930856 - 0: The maximum resident set size (KB) = 664616 + 0: The total amount of wall time = 86.450844 + 0: The maximum resident set size (KB) = 659896 Test 146 control_atmwav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/atmaero_control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/atmaero_control_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/atmaero_control_p8 Checking test 147 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4439,14 +4439,14 @@ Checking test 147 atmaero_control_p8 results .... Comparing 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.392845 - 0: The maximum resident set size (KB) = 2974692 + 0: The total amount of wall time = 225.312887 + 0: The maximum resident set size (KB) = 2972256 Test 147 atmaero_control_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/atmaero_control_p8_rad -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/atmaero_control_p8_rad +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8_rad +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/atmaero_control_p8_rad Checking test 148 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4490,14 +4490,14 @@ Checking test 148 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 280.782346 - 0: The maximum resident set size (KB) = 3039456 + 0: The total amount of wall time = 280.343169 + 0: The maximum resident set size (KB) = 2972032 Test 148 atmaero_control_p8_rad PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/atmaero_control_p8_rad_micro -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/atmaero_control_p8_rad_micro +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8_rad_micro +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/atmaero_control_p8_rad_micro Checking test 149 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4541,14 +4541,14 @@ Checking test 149 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 283.485882 - 0: The maximum resident set size (KB) = 3057632 + 0: The total amount of wall time = 283.966022 + 0: The maximum resident set size (KB) = 3056532 Test 149 atmaero_control_p8_rad_micro PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_atmaq -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/regional_atmaq +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_atmaq +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/regional_atmaq Checking test 150 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4564,14 +4564,14 @@ Checking test 150 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 572.069318 - 0: The maximum resident set size (KB) = 1575904 + 0: The total amount of wall time = 583.717317 + 0: The maximum resident set size (KB) = 1571008 Test 150 regional_atmaq PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_atmaq_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_96778/regional_atmaq_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_atmaq_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/regional_atmaq_debug Checking test 151 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4585,12 +4585,12 @@ Checking test 151 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1297.990353 - 0: The maximum resident set size (KB) = 1523648 + 0: The total amount of wall time = 1305.757210 + 0: The maximum resident set size (KB) = 1521408 Test 151 regional_atmaq_debug PASS REGRESSION TEST WAS SUCCESSFUL -Fri Feb 24 10:50:28 CST 2023 -Elapsed time: 01h:12m:38s. Have a nice day! +Tue Feb 28 21:05:40 CST 2023 +Elapsed time: 01h:24m:16s. Have a nice day! diff --git a/tests/rt.sh b/tests/rt.sh index f62fcef7f67..aa9b00df493 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -190,7 +190,7 @@ elif [[ $MACHINE_ID = gaea.* ]]; then ECFLOW_START=/lustre/f2/pdata/esrl/gsd/contrib/miniconda3/4.8.3/envs/ufs-weather-model/bin/ecflow_start.sh ECF_PORT=$(( $(id -u) + 1500 )) - DISKNM=/lustre/f2/pdata/ncep_shared/role.epic/RT + DISKNM=/lustre/f2/pdata/ncep_shared/emc.nemspara/RT QUEUE=normal COMPILE_QUEUE=normal # ACCNR="${ACCNR:-cmp}" @@ -446,7 +446,7 @@ if [[ $TESTS_FILE =~ '35d' ]] || [[ $TESTS_FILE =~ 'weekly' ]]; then fi -BL_DATE=20230222 +BL_DATE=20230227 RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-${BL_DATE}/${RT_COMPILER^^}} From b388eb9c02be594ea4779b296f7ce6afe323bfe7 Mon Sep 17 00:00:00 2001 From: Sadegh Sadeghi Tabas <31417680+SadeghTabas-NOAA@users.noreply.github.com> Date: Tue, 7 Mar 2023 15:30:08 -0500 Subject: [PATCH 04/30] Faster compile and HAFS app to be compiled with 64bit (#1578) * Faster Compile option turned on for a compile and test per project * added sample tests from each project to be tested with faster compile * HAFS app to be compiled with 64bit --- FV3 | 2 +- tests/RegressionTests_acorn.intel.log | 1606 ++++++++------- tests/RegressionTests_cheyenne.gnu.log | 426 ++-- tests/RegressionTests_cheyenne.intel.log | 2153 +++++++++++--------- tests/RegressionTests_gaea.intel.log | 1865 +++++++++-------- tests/RegressionTests_hera.gnu.log | 324 +-- tests/RegressionTests_hera.intel.log | 1680 ++++++++------- tests/RegressionTests_jet.intel.log | 1548 +++++++------- tests/RegressionTests_orion.intel.log | 1686 ++++++++------- tests/RegressionTests_wcoss2.intel.log | 1660 ++++++++------- tests/rt.conf | 13 + tests/tests/control_p8_faster | 173 ++ tests/tests/cpld_control_p8_faster | 87 + tests/tests/datm_cdeps_control_cfsr_faster | 23 + tests/tests/regional_atmaq_faster | 99 + tests/tests/regional_control_faster | 45 + 16 files changed, 7562 insertions(+), 5828 deletions(-) create mode 100644 tests/tests/control_p8_faster create mode 100644 tests/tests/cpld_control_p8_faster create mode 100644 tests/tests/datm_cdeps_control_cfsr_faster create mode 100644 tests/tests/regional_atmaq_faster create mode 100644 tests/tests/regional_control_faster diff --git a/FV3 b/FV3 index c932926825c..84184284633 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit c932926825c1729fa41d127f8e8115007047722d +Subproject commit 841842846333801890cd3166c36581a6e9c2267b diff --git a/tests/RegressionTests_acorn.intel.log b/tests/RegressionTests_acorn.intel.log index 07ba40a52d2..c5ed13ca111 100644 --- a/tests/RegressionTests_acorn.intel.log +++ b/tests/RegressionTests_acorn.intel.log @@ -1,35 +1,39 @@ -Thu Mar 2 15:21:43 UTC 2023 +Tue Mar 7 15:26:51 UTC 2023 Start Regression test -Compile 001 elapsed time 1290 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 991 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 745 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 476 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 005 elapsed time 474 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 705 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 453 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 008 elapsed time 652 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 1109 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 199 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 011 elapsed time 367 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 012 elapsed time 454 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 601 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 151 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 177 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 472 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 017 elapsed time 284 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 574 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 019 elapsed time 630 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 020 elapsed time 169 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 021 elapsed time 84 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 022 elapsed time 544 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 482 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 024 elapsed time 443 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 025 elapsed time 739 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 026 elapsed time 365 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 001 elapsed time 656 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 539 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 1108 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 1586 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 005 elapsed time 622 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 624 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 731 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 1109 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 1377 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 424 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 639 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 555 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 1010 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 014 elapsed time 938 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 1327 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 570 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 017 elapsed time 480 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 770 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 019 elapsed time 360 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 1028 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 1413 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 022 elapsed time 316 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 023 elapsed time 892 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 024 elapsed time 384 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 025 elapsed time 690 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 026 elapsed time 716 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 027 elapsed time 714 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 744 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 367 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 030 elapsed time 578 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8_mixedmode -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/cpld_control_p8_mixedmode +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -94,14 +98,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 334.481076 -The maximum resident set size (KB) = 2952152 +The total amount of wall time = 335.601509 +The maximum resident set size (KB) = 2950460 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_gfsv17 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/cpld_control_gfsv17 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -165,14 +169,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 257.957004 -The maximum resident set size (KB) = 1584784 +The total amount of wall time = 260.082897 +The maximum resident set size (KB) = 1586476 Test 002 cpld_control_gfsv17 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -237,14 +241,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 384.476552 -The maximum resident set size (KB) = 2978768 +The total amount of wall time = 387.585824 +The maximum resident set size (KB) = 2979368 Test 003 cpld_control_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/cpld_restart_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -297,14 +301,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 231.229181 -The maximum resident set size (KB) = 2863192 +The total amount of wall time = 229.754193 +The maximum resident set size (KB) = 2867364 Test 004 cpld_restart_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/cpld_2threads_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -357,14 +361,14 @@ Checking test 005 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 373.040622 -The maximum resident set size (KB) = 3279224 +The total amount of wall time = 374.823584 +The maximum resident set size (KB) = 3283144 Test 005 cpld_2threads_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/cpld_decomp_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/cpld_decomp_p8 Checking test 006 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -417,14 +421,14 @@ Checking test 006 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 378.100860 -The maximum resident set size (KB) = 2976796 +The total amount of wall time = 383.346894 +The maximum resident set size (KB) = 2977072 Test 006 cpld_decomp_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/cpld_mpi_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/cpld_mpi_p8 Checking test 007 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -477,14 +481,14 @@ Checking test 007 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 316.076532 -The maximum resident set size (KB) = 2905832 +The total amount of wall time = 316.838622 +The maximum resident set size (KB) = 2906136 Test 007 cpld_mpi_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_ciceC_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/cpld_control_ciceC_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/cpld_control_ciceC_p8 Checking test 008 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -549,14 +553,14 @@ Checking test 008 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 383.555890 -The maximum resident set size (KB) = 2979144 +The total amount of wall time = 391.323575 +The maximum resident set size (KB) = 2979264 Test 008 cpld_control_ciceC_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/cpld_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/cpld_control_noaero_p8 Checking test 009 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -620,14 +624,14 @@ Checking test 009 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 281.463877 -The maximum resident set size (KB) = 1568704 +The total amount of wall time = 282.583985 +The maximum resident set size (KB) = 1569904 Test 009 cpld_control_noaero_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/cpld_control_nowave_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/cpld_control_nowave_noaero_p8 Checking test 010 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -689,14 +693,14 @@ Checking test 010 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 297.275233 -The maximum resident set size (KB) = 1630984 +The total amount of wall time = 300.323733 +The maximum resident set size (KB) = 1631236 Test 010 cpld_control_nowave_noaero_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/cpld_control_noaero_p8_agrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/cpld_control_noaero_p8_agrid Checking test 011 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -758,14 +762,14 @@ Checking test 011 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 305.075184 -The maximum resident set size (KB) = 1621088 +The total amount of wall time = 304.743637 +The maximum resident set size (KB) = 1620836 Test 011 cpld_control_noaero_p8_agrid PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/cpld_control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/cpld_control_c48 Checking test 012 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -815,14 +819,14 @@ Checking test 012 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 432.771289 -The maximum resident set size (KB) = 2627756 +The total amount of wall time = 434.050787 +The maximum resident set size (KB) = 2631728 Test 012 cpld_control_c48 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/cpld_warmstart_c48 Checking test 013 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -872,14 +876,14 @@ Checking test 013 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 119.298226 -The maximum resident set size (KB) = 2647060 +The total amount of wall time = 120.074589 +The maximum resident set size (KB) = 2649140 Test 013 cpld_warmstart_c48 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/cpld_restart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/cpld_restart_c48 Checking test 014 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -929,15 +933,87 @@ Checking test 014 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 65.665141 -The maximum resident set size (KB) = 2066656 +The total amount of wall time = 65.435689 +The maximum resident set size (KB) = 2062512 Test 014 cpld_restart_c48 PASS +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/cpld_control_p8_faster +Checking test 015 cpld_control_p8_faster results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + +The total amount of wall time = 380.458861 +The maximum resident set size (KB) = 2977160 + +Test 015 cpld_control_p8_faster PASS + + baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_CubedSphereGrid -Checking test 015 control_CubedSphereGrid results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_CubedSphereGrid +Checking test 016 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -963,15 +1039,15 @@ Checking test 015 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 129.158615 -The maximum resident set size (KB) = 516980 +The total amount of wall time = 128.900762 +The maximum resident set size (KB) = 514500 -Test 015 control_CubedSphereGrid PASS +Test 016 control_CubedSphereGrid PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_latlon -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_latlon -Checking test 016 control_latlon results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_latlon +Checking test 017 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -981,15 +1057,15 @@ Checking test 016 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 131.358279 -The maximum resident set size (KB) = 516492 +The total amount of wall time = 131.687977 +The maximum resident set size (KB) = 517804 -Test 016 control_latlon PASS +Test 017 control_latlon PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_wrtGauss_netcdf_parallel -Checking test 017 control_wrtGauss_netcdf_parallel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_wrtGauss_netcdf_parallel +Checking test 018 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -999,15 +1075,15 @@ Checking test 017 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 133.437593 -The maximum resident set size (KB) = 518624 +The total amount of wall time = 134.125615 +The maximum resident set size (KB) = 518908 -Test 017 control_wrtGauss_netcdf_parallel PASS +Test 018 control_wrtGauss_netcdf_parallel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_c48 -Checking test 018 control_c48 results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_c48 +Checking test 019 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1045,15 +1121,15 @@ Checking test 018 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 326.010012 -The maximum resident set size (KB) = 672008 +The total amount of wall time = 328.614850 +The maximum resident set size (KB) = 674736 -Test 018 control_c48 PASS +Test 019 control_c48 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c192 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_c192 -Checking test 019 control_c192 results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_c192 +Checking test 020 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1063,15 +1139,15 @@ Checking test 019 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 528.183770 -The maximum resident set size (KB) = 612132 +The total amount of wall time = 527.774136 +The maximum resident set size (KB) = 615916 -Test 019 control_c192 PASS +Test 020 control_c192 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c384 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_c384 -Checking test 020 control_c384 results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_c384 +Checking test 021 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1081,15 +1157,15 @@ Checking test 020 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 570.427390 -The maximum resident set size (KB) = 910064 +The total amount of wall time = 574.827781 +The maximum resident set size (KB) = 910956 -Test 020 control_c384 PASS +Test 021 control_c384 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c384gdas -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_c384gdas -Checking test 021 control_c384gdas results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_c384gdas +Checking test 022 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -1131,15 +1207,15 @@ Checking test 021 control_c384gdas 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 = 499.590885 -The maximum resident set size (KB) = 1041152 +The total amount of wall time = 510.419813 +The maximum resident set size (KB) = 1042108 -Test 021 control_c384gdas PASS +Test 022 control_c384gdas PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_stochy -Checking test 022 control_stochy results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_stochy +Checking test 023 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1149,29 +1225,29 @@ Checking test 022 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 89.085162 -The maximum resident set size (KB) = 518488 +The total amount of wall time = 88.436103 +The maximum resident set size (KB) = 520844 -Test 022 control_stochy PASS +Test 023 control_stochy PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_stochy_restart -Checking test 023 control_stochy_restart results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_stochy_restart +Checking test 024 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 48.216003 -The maximum resident set size (KB) = 291772 +The total amount of wall time = 48.556625 +The maximum resident set size (KB) = 292108 -Test 023 control_stochy_restart PASS +Test 024 control_stochy_restart PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_lndp -Checking test 024 control_lndp results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_lndp +Checking test 025 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1181,15 +1257,15 @@ Checking test 024 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 82.509418 -The maximum resident set size (KB) = 520600 +The total amount of wall time = 82.902953 +The maximum resident set size (KB) = 518456 -Test 024 control_lndp PASS +Test 025 control_lndp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_iovr4 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_iovr4 -Checking test 025 control_iovr4 results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_iovr4 +Checking test 026 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1203,15 +1279,15 @@ Checking test 025 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.098192 -The maximum resident set size (KB) = 519660 +The total amount of wall time = 134.565619 +The maximum resident set size (KB) = 518860 -Test 025 control_iovr4 PASS +Test 026 control_iovr4 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_iovr5 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_iovr5 -Checking test 026 control_iovr5 results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_iovr5 +Checking test 027 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1225,15 +1301,15 @@ Checking test 026 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.275418 -The maximum resident set size (KB) = 514692 +The total amount of wall time = 134.959919 +The maximum resident set size (KB) = 514128 -Test 026 control_iovr5 PASS +Test 027 control_iovr5 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_p8 -Checking test 027 control_p8 results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_p8 +Checking test 028 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1279,15 +1355,15 @@ Checking test 027 control_p8 results .... 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.329315 -The maximum resident set size (KB) = 1480712 +The total amount of wall time = 178.368608 +The maximum resident set size (KB) = 1487548 -Test 027 control_p8 PASS +Test 028 control_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_p8_lndp -Checking test 028 control_p8_lndp results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_p8_lndp +Checking test 029 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1305,15 +1381,15 @@ Checking test 028 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 319.242320 -The maximum resident set size (KB) = 1479676 +The total amount of wall time = 319.899884 +The maximum resident set size (KB) = 1484016 -Test 028 control_p8_lndp PASS +Test 029 control_p8_lndp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_restart_p8 -Checking test 029 control_restart_p8 results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_restart_p8 +Checking test 030 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1351,15 +1427,15 @@ Checking test 029 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 97.924220 -The maximum resident set size (KB) = 654744 +The total amount of wall time = 99.085548 +The maximum resident set size (KB) = 651040 -Test 029 control_restart_p8 PASS +Test 030 control_restart_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_decomp_p8 -Checking test 030 control_decomp_p8 results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_decomp_p8 +Checking test 031 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1401,15 +1477,15 @@ Checking test 030 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 180.385708 -The maximum resident set size (KB) = 1478480 +The total amount of wall time = 181.641091 +The maximum resident set size (KB) = 1478776 -Test 030 control_decomp_p8 PASS +Test 031 control_decomp_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_2threads_p8 -Checking test 031 control_2threads_p8 results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_2threads_p8 +Checking test 032 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1451,15 +1527,15 @@ Checking test 031 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 159.425838 -The maximum resident set size (KB) = 1565628 +The total amount of wall time = 159.639036 +The maximum resident set size (KB) = 1569104 -Test 031 control_2threads_p8 PASS +Test 032 control_2threads_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_rrtmgp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_p8_rrtmgp -Checking test 032 control_p8_rrtmgp results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_p8_rrtmgp +Checking test 033 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1505,15 +1581,15 @@ Checking test 032 control_p8_rrtmgp results .... 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.111321 -The maximum resident set size (KB) = 1541564 +The total amount of wall time = 232.298551 +The maximum resident set size (KB) = 1544116 -Test 032 control_p8_rrtmgp PASS +Test 033 control_p8_rrtmgp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/merra2_thompson -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/merra2_thompson -Checking test 033 merra2_thompson results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/merra2_thompson +Checking test 034 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1559,15 +1635,15 @@ Checking test 033 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 202.611338 -The maximum resident set size (KB) = 1496256 +The total amount of wall time = 202.424831 +The maximum resident set size (KB) = 1494124 -Test 033 merra2_thompson PASS +Test 034 merra2_thompson PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/regional_control -Checking test 034 regional_control results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/regional_control +Checking test 035 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1577,29 +1653,29 @@ Checking test 034 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 287.231767 -The maximum resident set size (KB) = 653852 +The total amount of wall time = 288.125278 +The maximum resident set size (KB) = 653984 -Test 034 regional_control PASS +Test 035 regional_control PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/regional_restart -Checking test 035 regional_restart results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/regional_restart +Checking test 036 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 153.632906 -The maximum resident set size (KB) = 650324 +The total amount of wall time = 153.253665 +The maximum resident set size (KB) = 650168 -Test 035 regional_restart PASS +Test 036 regional_restart PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/regional_decomp -Checking test 036 regional_decomp results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/regional_decomp +Checking test 037 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1609,15 +1685,15 @@ Checking test 036 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 303.668238 -The maximum resident set size (KB) = 655244 +The total amount of wall time = 303.514811 +The maximum resident set size (KB) = 652088 -Test 036 regional_decomp PASS +Test 037 regional_decomp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/regional_2threads -Checking test 037 regional_2threads results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/regional_2threads +Checking test 038 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1627,30 +1703,30 @@ Checking test 037 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 179.474370 -The maximum resident set size (KB) = 696628 +The total amount of wall time = 177.255860 +The maximum resident set size (KB) = 702436 -Test 037 regional_2threads PASS +Test 038 regional_2threads PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_noquilt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/regional_noquilt -Checking test 038 regional_noquilt results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/regional_noquilt +Checking test 039 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 311.172013 -The maximum resident set size (KB) = 645260 +The total amount of wall time = 310.915520 +The maximum resident set size (KB) = 642536 -Test 038 regional_noquilt PASS +Test 039 regional_noquilt PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/regional_2dwrtdecomp -Checking test 039 regional_2dwrtdecomp results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/regional_2dwrtdecomp +Checking test 040 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1660,15 +1736,15 @@ Checking test 039 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 286.956231 -The maximum resident set size (KB) = 650296 +The total amount of wall time = 285.700092 +The maximum resident set size (KB) = 653876 -Test 039 regional_2dwrtdecomp PASS +Test 040 regional_2dwrtdecomp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/fv3_regional_wofs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/regional_wofs -Checking test 040 regional_wofs results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/regional_wofs +Checking test 041 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1678,15 +1754,15 @@ Checking test 040 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 361.629575 -The maximum resident set size (KB) = 340444 +The total amount of wall time = 365.866245 +The maximum resident set size (KB) = 339972 -Test 040 regional_wofs PASS +Test 041 regional_wofs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rap_control -Checking test 041 rap_control results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rap_control +Checking test 042 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1732,15 +1808,15 @@ Checking test 041 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 420.070839 -The maximum resident set size (KB) = 894496 +The total amount of wall time = 417.118770 +The maximum resident set size (KB) = 895784 -Test 041 rap_control PASS +Test 042 rap_control PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/regional_spp_sppt_shum_skeb -Checking test 042 regional_spp_sppt_shum_skeb results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/regional_spp_sppt_shum_skeb +Checking test 043 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -1750,15 +1826,15 @@ Checking test 042 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 284.555017 -The maximum resident set size (KB) = 982396 +The total amount of wall time = 285.241437 +The maximum resident set size (KB) = 983620 -Test 042 regional_spp_sppt_shum_skeb PASS +Test 043 regional_spp_sppt_shum_skeb PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rap_decomp -Checking test 043 rap_decomp results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rap_decomp +Checking test 044 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1804,15 +1880,15 @@ Checking test 043 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 432.746571 -The maximum resident set size (KB) = 890064 +The total amount of wall time = 432.319931 +The maximum resident set size (KB) = 892296 -Test 043 rap_decomp PASS +Test 044 rap_decomp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rap_2threads -Checking test 044 rap_2threads results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rap_2threads +Checking test 045 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1858,15 +1934,15 @@ Checking test 044 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 391.758371 -The maximum resident set size (KB) = 963104 +The total amount of wall time = 391.082693 +The maximum resident set size (KB) = 964188 -Test 044 rap_2threads PASS +Test 045 rap_2threads PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rap_restart -Checking test 045 rap_restart results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rap_restart +Checking test 046 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1904,15 +1980,15 @@ Checking test 045 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 212.763103 -The maximum resident set size (KB) = 644212 +The total amount of wall time = 211.910152 +The maximum resident set size (KB) = 645184 -Test 045 rap_restart PASS +Test 046 rap_restart PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rap_sfcdiff -Checking test 046 rap_sfcdiff results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rap_sfcdiff +Checking test 047 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -1958,15 +2034,15 @@ Checking test 046 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 415.671199 -The maximum resident set size (KB) = 894088 +The total amount of wall time = 415.547789 +The maximum resident set size (KB) = 889368 -Test 046 rap_sfcdiff PASS +Test 047 rap_sfcdiff PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rap_sfcdiff_decomp -Checking test 047 rap_sfcdiff_decomp results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rap_sfcdiff_decomp +Checking test 048 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2012,15 +2088,15 @@ Checking test 047 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 432.058084 -The maximum resident set size (KB) = 891032 +The total amount of wall time = 432.541695 +The maximum resident set size (KB) = 890352 -Test 047 rap_sfcdiff_decomp PASS +Test 048 rap_sfcdiff_decomp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rap_sfcdiff_restart -Checking test 048 rap_sfcdiff_restart results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rap_sfcdiff_restart +Checking test 049 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2058,15 +2134,15 @@ Checking test 048 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 309.645106 -The maximum resident set size (KB) = 641552 +The total amount of wall time = 310.039179 +The maximum resident set size (KB) = 639076 -Test 048 rap_sfcdiff_restart PASS +Test 049 rap_sfcdiff_restart PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hrrr_control -Checking test 049 hrrr_control results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hrrr_control +Checking test 050 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2112,15 +2188,15 @@ Checking test 049 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 400.572383 -The maximum resident set size (KB) = 893116 +The total amount of wall time = 398.630783 +The maximum resident set size (KB) = 889828 -Test 049 hrrr_control PASS +Test 050 hrrr_control PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hrrr_control_decomp -Checking test 050 hrrr_control_decomp results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hrrr_control_decomp +Checking test 051 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2166,15 +2242,15 @@ Checking test 050 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 413.368700 -The maximum resident set size (KB) = 888484 +The total amount of wall time = 413.151330 +The maximum resident set size (KB) = 889108 -Test 050 hrrr_control_decomp PASS +Test 051 hrrr_control_decomp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hrrr_control_2threads -Checking test 051 hrrr_control_2threads results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hrrr_control_2threads +Checking test 052 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2220,15 +2296,15 @@ Checking test 051 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 370.466919 -The maximum resident set size (KB) = 961068 +The total amount of wall time = 369.847431 +The maximum resident set size (KB) = 963080 -Test 051 hrrr_control_2threads PASS +Test 052 hrrr_control_2threads PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hrrr_control_restart -Checking test 052 hrrr_control_restart results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hrrr_control_restart +Checking test 053 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2266,15 +2342,15 @@ Checking test 052 hrrr_control_restart results .... 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.050564 -The maximum resident set size (KB) = 638872 +The total amount of wall time = 297.716021 +The maximum resident set size (KB) = 639604 -Test 052 hrrr_control_restart PASS +Test 053 hrrr_control_restart PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1beta -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rrfs_v1beta -Checking test 053 rrfs_v1beta results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rrfs_v1beta +Checking test 054 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2320,15 +2396,15 @@ Checking test 053 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 409.729662 -The maximum resident set size (KB) = 890724 +The total amount of wall time = 409.127931 +The maximum resident set size (KB) = 887800 -Test 053 rrfs_v1beta PASS +Test 054 rrfs_v1beta PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1nssl -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rrfs_v1nssl -Checking test 054 rrfs_v1nssl results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rrfs_v1nssl +Checking test 055 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2342,15 +2418,15 @@ Checking test 054 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 473.105497 -The maximum resident set size (KB) = 574808 +The total amount of wall time = 472.430999 +The maximum resident set size (KB) = 577440 -Test 054 rrfs_v1nssl PASS +Test 055 rrfs_v1nssl PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rrfs_v1nssl_nohailnoccn -Checking test 055 rrfs_v1nssl_nohailnoccn results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rrfs_v1nssl_nohailnoccn +Checking test 056 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2364,15 +2440,15 @@ Checking test 055 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 464.073847 -The maximum resident set size (KB) = 566904 +The total amount of wall time = 462.149122 +The maximum resident set size (KB) = 567024 -Test 055 rrfs_v1nssl_nohailnoccn PASS +Test 056 rrfs_v1nssl_nohailnoccn PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rrfs_conus13km_hrrr_warm -Checking test 056 rrfs_conus13km_hrrr_warm results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rrfs_conus13km_hrrr_warm +Checking test 057 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2380,15 +2456,15 @@ Checking test 056 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 114.055415 -The maximum resident set size (KB) = 763364 +The total amount of wall time = 114.064102 +The maximum resident set size (KB) = 761380 -Test 056 rrfs_conus13km_hrrr_warm PASS +Test 057 rrfs_conus13km_hrrr_warm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rrfs_smoke_conus13km_hrrr_warm -Checking test 057 rrfs_smoke_conus13km_hrrr_warm results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rrfs_smoke_conus13km_hrrr_warm +Checking test 058 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2396,15 +2472,15 @@ Checking test 057 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 125.886151 -The maximum resident set size (KB) = 774232 +The total amount of wall time = 126.308852 +The maximum resident set size (KB) = 772024 -Test 057 rrfs_smoke_conus13km_hrrr_warm PASS +Test 058 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rrfs_conus13km_radar_tten_warm -Checking test 058 rrfs_conus13km_radar_tten_warm results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rrfs_conus13km_radar_tten_warm +Checking test 059 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2412,15 +2488,15 @@ Checking test 058 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 113.981904 -The maximum resident set size (KB) = 762344 +The total amount of wall time = 115.900611 +The maximum resident set size (KB) = 767520 -Test 058 rrfs_conus13km_radar_tten_warm PASS +Test 059 rrfs_conus13km_radar_tten_warm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rrfs_conus13km_hrrr_warm_2threads -Checking test 059 rrfs_conus13km_hrrr_warm_2threads results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rrfs_conus13km_hrrr_warm_2threads +Checking test 060 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2428,15 +2504,15 @@ Checking test 059 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 83.199050 -The maximum resident set size (KB) = 761068 +The total amount of wall time = 83.308932 +The maximum resident set size (KB) = 758820 -Test 059 rrfs_conus13km_hrrr_warm_2threads PASS +Test 060 rrfs_conus13km_hrrr_warm_2threads PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rrfs_conus13km_radar_tten_warm_2threads -Checking test 060 rrfs_conus13km_radar_tten_warm_2threads results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rrfs_conus13km_radar_tten_warm_2threads +Checking test 061 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2444,15 +2520,15 @@ Checking test 060 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 84.091555 -The maximum resident set size (KB) = 761980 +The total amount of wall time = 85.021027 +The maximum resident set size (KB) = 758120 -Test 060 rrfs_conus13km_radar_tten_warm_2threads PASS +Test 061 rrfs_conus13km_radar_tten_warm_2threads PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmg -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_csawmg -Checking test 061 control_csawmg results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_csawmg +Checking test 062 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2462,15 +2538,15 @@ Checking test 061 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 347.199857 -The maximum resident set size (KB) = 587476 +The total amount of wall time = 344.488005 +The maximum resident set size (KB) = 582424 -Test 061 control_csawmg PASS +Test 062 control_csawmg PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmgt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_csawmgt -Checking test 062 control_csawmgt results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_csawmgt +Checking test 063 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2480,15 +2556,15 @@ Checking test 062 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 342.273681 -The maximum resident set size (KB) = 584264 +The total amount of wall time = 341.191672 +The maximum resident set size (KB) = 581628 -Test 062 control_csawmgt PASS +Test 063 control_csawmgt PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_ras -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_ras -Checking test 063 control_ras results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_ras +Checking test 064 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2498,55 +2574,127 @@ Checking test 063 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 180.943794 -The maximum resident set size (KB) = 551480 +The total amount of wall time = 179.964305 +The maximum resident set size (KB) = 550916 -Test 063 control_ras PASS +Test 064 control_ras PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wam -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_wam -Checking test 064 control_wam results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_wam +Checking test 065 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 117.214769 -The maximum resident set size (KB) = 270648 +The total amount of wall time = 117.127488 +The maximum resident set size (KB) = 271928 + +Test 065 control_wam PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_p8_faster +Checking test 066 control_p8_faster results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 176.190574 +The maximum resident set size (KB) = 1484164 + +Test 066 control_p8_faster PASS -Test 064 control_wam PASS + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/regional_control_faster +Checking test 067 regional_control_faster results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK + +The total amount of wall time = 282.201319 +The maximum resident set size (KB) = 648660 + +Test 067 regional_control_faster PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rrfs_conus13km_hrrr_warm_debug -Checking test 065 rrfs_conus13km_hrrr_warm_debug results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rrfs_conus13km_hrrr_warm_debug +Checking test 068 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 781.535028 -The maximum resident set size (KB) = 790528 +The total amount of wall time = 780.378906 +The maximum resident set size (KB) = 787856 -Test 065 rrfs_conus13km_hrrr_warm_debug PASS +Test 068 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rrfs_conus13km_radar_tten_warm_debug -Checking test 066 rrfs_conus13km_radar_tten_warm_debug results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rrfs_conus13km_radar_tten_warm_debug +Checking test 069 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 782.697806 -The maximum resident set size (KB) = 790052 +The total amount of wall time = 784.152742 +The maximum resident set size (KB) = 794320 -Test 066 rrfs_conus13km_radar_tten_warm_debug PASS +Test 069 rrfs_conus13km_radar_tten_warm_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_CubedSphereGrid_debug -Checking test 067 control_CubedSphereGrid_debug results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_CubedSphereGrid_debug +Checking test 070 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -2572,335 +2720,335 @@ Checking test 067 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 166.713904 -The maximum resident set size (KB) = 676512 +The total amount of wall time = 167.218557 +The maximum resident set size (KB) = 672188 -Test 067 control_CubedSphereGrid_debug PASS +Test 070 control_CubedSphereGrid_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_wrtGauss_netcdf_parallel_debug -Checking test 068 control_wrtGauss_netcdf_parallel_debug results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_wrtGauss_netcdf_parallel_debug +Checking test 071 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 159.881383 -The maximum resident set size (KB) = 673872 +The total amount of wall time = 158.492580 +The maximum resident set size (KB) = 675140 -Test 068 control_wrtGauss_netcdf_parallel_debug PASS +Test 071 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_stochy_debug -Checking test 069 control_stochy_debug results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_stochy_debug +Checking test 072 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 180.405845 -The maximum resident set size (KB) = 681888 +The total amount of wall time = 179.124537 +The maximum resident set size (KB) = 678236 -Test 069 control_stochy_debug PASS +Test 072 control_stochy_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_lndp_debug -Checking test 070 control_lndp_debug results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_lndp_debug +Checking test 073 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 161.769097 -The maximum resident set size (KB) = 679956 +The total amount of wall time = 160.465033 +The maximum resident set size (KB) = 679848 -Test 070 control_lndp_debug PASS +Test 073 control_lndp_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmg_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_csawmg_debug -Checking test 071 control_csawmg_debug results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_csawmg_debug +Checking test 074 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 256.711065 -The maximum resident set size (KB) = 715940 +The total amount of wall time = 255.419795 +The maximum resident set size (KB) = 716048 -Test 071 control_csawmg_debug PASS +Test 074 control_csawmg_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmgt_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_csawmgt_debug -Checking test 072 control_csawmgt_debug results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_csawmgt_debug +Checking test 075 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 252.279167 -The maximum resident set size (KB) = 717584 +The total amount of wall time = 252.431686 +The maximum resident set size (KB) = 715360 -Test 072 control_csawmgt_debug PASS +Test 075 control_csawmgt_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_ras_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_ras_debug -Checking test 073 control_ras_debug results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_ras_debug +Checking test 076 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 163.026489 -The maximum resident set size (KB) = 685668 +The total amount of wall time = 162.012284 +The maximum resident set size (KB) = 687440 -Test 073 control_ras_debug PASS +Test 076 control_ras_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_diag_debug -Checking test 074 control_diag_debug results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_diag_debug +Checking test 077 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 164.885135 -The maximum resident set size (KB) = 735780 +The total amount of wall time = 164.409186 +The maximum resident set size (KB) = 734728 -Test 074 control_diag_debug PASS +Test 077 control_diag_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_debug_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_debug_p8 -Checking test 075 control_debug_p8 results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_debug_p8 +Checking test 078 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 185.377153 -The maximum resident set size (KB) = 1495768 +The total amount of wall time = 184.929010 +The maximum resident set size (KB) = 1504888 -Test 075 control_debug_p8 PASS +Test 078 control_debug_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/regional_debug -Checking test 076 regional_debug results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/regional_debug +Checking test 079 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1040.923624 -The maximum resident set size (KB) = 675436 +The total amount of wall time = 1042.342296 +The maximum resident set size (KB) = 672444 -Test 076 regional_debug PASS +Test 079 regional_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rap_control_debug -Checking test 077 rap_control_debug results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rap_control_debug +Checking test 080 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.407909 -The maximum resident set size (KB) = 1053816 +The total amount of wall time = 297.186878 +The maximum resident set size (KB) = 1052432 -Test 077 rap_control_debug PASS +Test 080 rap_control_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hrrr_control_debug -Checking test 078 hrrr_control_debug results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hrrr_control_debug +Checking test 081 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 291.892020 -The maximum resident set size (KB) = 1050012 +The total amount of wall time = 293.975676 +The maximum resident set size (KB) = 1047200 -Test 078 hrrr_control_debug PASS +Test 081 hrrr_control_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rap_unified_drag_suite_debug -Checking test 079 rap_unified_drag_suite_debug results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rap_unified_drag_suite_debug +Checking test 082 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 296.711943 -The maximum resident set size (KB) = 1053164 +The total amount of wall time = 297.936866 +The maximum resident set size (KB) = 1052100 -Test 079 rap_unified_drag_suite_debug PASS +Test 082 rap_unified_drag_suite_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rap_diag_debug -Checking test 080 rap_diag_debug results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rap_diag_debug +Checking test 083 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 309.738316 -The maximum resident set size (KB) = 1137036 +The total amount of wall time = 308.443576 +The maximum resident set size (KB) = 1133208 -Test 080 rap_diag_debug PASS +Test 083 rap_diag_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rap_cires_ugwp_debug -Checking test 081 rap_cires_ugwp_debug results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rap_cires_ugwp_debug +Checking test 084 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 306.876266 -The maximum resident set size (KB) = 1050148 +The total amount of wall time = 303.744645 +The maximum resident set size (KB) = 1047180 -Test 081 rap_cires_ugwp_debug PASS +Test 084 rap_cires_ugwp_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rap_unified_ugwp_debug -Checking test 082 rap_unified_ugwp_debug results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rap_unified_ugwp_debug +Checking test 085 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 304.754285 -The maximum resident set size (KB) = 1051244 +The total amount of wall time = 304.397564 +The maximum resident set size (KB) = 1050416 -Test 082 rap_unified_ugwp_debug PASS +Test 085 rap_unified_ugwp_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rap_lndp_debug -Checking test 083 rap_lndp_debug results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rap_lndp_debug +Checking test 086 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 301.109413 -The maximum resident set size (KB) = 1053308 +The total amount of wall time = 300.153601 +The maximum resident set size (KB) = 1052356 -Test 083 rap_lndp_debug PASS +Test 086 rap_lndp_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_flake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rap_flake_debug -Checking test 084 rap_flake_debug results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rap_flake_debug +Checking test 087 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.582210 -The maximum resident set size (KB) = 1049912 +The total amount of wall time = 297.373115 +The maximum resident set size (KB) = 1050940 -Test 084 rap_flake_debug PASS +Test 087 rap_flake_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_progcld_thompson_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rap_progcld_thompson_debug -Checking test 085 rap_progcld_thompson_debug results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rap_progcld_thompson_debug +Checking test 088 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.504472 -The maximum resident set size (KB) = 1051704 +The total amount of wall time = 298.323095 +The maximum resident set size (KB) = 1053096 -Test 085 rap_progcld_thompson_debug PASS +Test 088 rap_progcld_thompson_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_noah_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rap_noah_debug -Checking test 086 rap_noah_debug results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rap_noah_debug +Checking test 089 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 291.644683 -The maximum resident set size (KB) = 1047532 +The total amount of wall time = 291.335713 +The maximum resident set size (KB) = 1052004 -Test 086 rap_noah_debug PASS +Test 089 rap_noah_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rap_sfcdiff_debug -Checking test 087 rap_sfcdiff_debug results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rap_sfcdiff_debug +Checking test 090 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.172985 -The maximum resident set size (KB) = 1051596 +The total amount of wall time = 296.519278 +The maximum resident set size (KB) = 1048368 -Test 087 rap_sfcdiff_debug PASS +Test 090 rap_sfcdiff_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 088 rap_noah_sfcdiff_cires_ugwp_debug results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 091 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 487.865717 -The maximum resident set size (KB) = 1048928 +The total amount of wall time = 485.740781 +The maximum resident set size (KB) = 1049400 -Test 088 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 091 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1beta_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rrfs_v1beta_debug -Checking test 089 rrfs_v1beta_debug results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rrfs_v1beta_debug +Checking test 092 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 291.855801 -The maximum resident set size (KB) = 1048412 +The total amount of wall time = 293.484420 +The maximum resident set size (KB) = 1045288 -Test 089 rrfs_v1beta_debug PASS +Test 092 rrfs_v1beta_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wam_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_wam_debug -Checking test 090 control_wam_debug results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_wam_debug +Checking test 093 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 300.016643 -The maximum resident set size (KB) = 302804 +The total amount of wall time = 298.553079 +The maximum resident set size (KB) = 301984 -Test 090 control_wam_debug PASS +Test 093 control_wam_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/regional_spp_sppt_shum_skeb_dyn32_phy32 -Checking test 091 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 094 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -2910,15 +3058,15 @@ Checking test 091 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 269.007024 -The maximum resident set size (KB) = 882996 +The total amount of wall time = 265.947723 +The maximum resident set size (KB) = 871928 -Test 091 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS +Test 094 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rap_control_dyn32_phy32 -Checking test 092 rap_control_dyn32_phy32 results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rap_control_dyn32_phy32 +Checking test 095 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2964,15 +3112,15 @@ Checking test 092 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 341.349279 -The maximum resident set size (KB) = 777900 +The total amount of wall time = 340.946357 +The maximum resident set size (KB) = 776444 -Test 092 rap_control_dyn32_phy32 PASS +Test 095 rap_control_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hrrr_control_dyn32_phy32 -Checking test 093 hrrr_control_dyn32_phy32 results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hrrr_control_dyn32_phy32 +Checking test 096 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3018,15 +3166,15 @@ Checking test 093 hrrr_control_dyn32_phy32 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 = 183.251391 -The maximum resident set size (KB) = 773240 +The total amount of wall time = 183.089745 +The maximum resident set size (KB) = 773556 -Test 093 hrrr_control_dyn32_phy32 PASS +Test 096 hrrr_control_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rap_2threads_dyn32_phy32 -Checking test 094 rap_2threads_dyn32_phy32 results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rap_2threads_dyn32_phy32 +Checking test 097 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3072,15 +3220,15 @@ Checking test 094 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 319.640708 -The maximum resident set size (KB) = 830044 +The total amount of wall time = 321.439403 +The maximum resident set size (KB) = 828956 -Test 094 rap_2threads_dyn32_phy32 PASS +Test 097 rap_2threads_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hrrr_control_2threads_dyn32_phy32 -Checking test 095 hrrr_control_2threads_dyn32_phy32 results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hrrr_control_2threads_dyn32_phy32 +Checking test 098 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3126,15 +3274,15 @@ Checking test 095 hrrr_control_2threads_dyn32_phy32 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 = 173.488743 -The maximum resident set size (KB) = 829668 +The total amount of wall time = 172.674767 +The maximum resident set size (KB) = 826708 -Test 095 hrrr_control_2threads_dyn32_phy32 PASS +Test 098 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hrrr_control_decomp_dyn32_phy32 -Checking test 096 hrrr_control_decomp_dyn32_phy32 results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hrrr_control_decomp_dyn32_phy32 +Checking test 099 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3180,15 +3328,15 @@ Checking test 096 hrrr_control_decomp_dyn32_phy32 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 = 190.663696 -The maximum resident set size (KB) = 773348 +The total amount of wall time = 190.862556 +The maximum resident set size (KB) = 773472 -Test 096 hrrr_control_decomp_dyn32_phy32 PASS +Test 099 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rap_restart_dyn32_phy32 -Checking test 097 rap_restart_dyn32_phy32 results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rap_restart_dyn32_phy32 +Checking test 100 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3226,15 +3374,15 @@ Checking test 097 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 256.107888 -The maximum resident set size (KB) = 613992 +The total amount of wall time = 254.846087 +The maximum resident set size (KB) = 614880 -Test 097 rap_restart_dyn32_phy32 PASS +Test 100 rap_restart_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hrrr_control_restart_dyn32_phy32 -Checking test 098 hrrr_control_restart_dyn32_phy32 results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hrrr_control_restart_dyn32_phy32 +Checking test 101 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3272,15 +3420,15 @@ Checking test 098 hrrr_control_restart_dyn32_phy32 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 = 94.909814 -The maximum resident set size (KB) = 608028 +The total amount of wall time = 94.666860 +The maximum resident set size (KB) = 607388 -Test 098 hrrr_control_restart_dyn32_phy32 PASS +Test 101 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rap_control_dyn64_phy32 -Checking test 099 rap_control_dyn64_phy32 results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rap_control_dyn64_phy32 +Checking test 102 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3326,82 +3474,82 @@ Checking test 099 rap_control_dyn64_phy32 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 = 232.052345 -The maximum resident set size (KB) = 799368 +The total amount of wall time = 230.474064 +The maximum resident set size (KB) = 794188 -Test 099 rap_control_dyn64_phy32 PASS +Test 102 rap_control_dyn64_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rap_control_debug_dyn32_phy32 -Checking test 100 rap_control_debug_dyn32_phy32 results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rap_control_debug_dyn32_phy32 +Checking test 103 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 289.908722 -The maximum resident set size (KB) = 937040 +The total amount of wall time = 290.993166 +The maximum resident set size (KB) = 935700 -Test 100 rap_control_debug_dyn32_phy32 PASS +Test 103 rap_control_debug_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hrrr_control_debug_dyn32_phy32 -Checking test 101 hrrr_control_debug_dyn32_phy32 results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hrrr_control_debug_dyn32_phy32 +Checking test 104 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 285.267615 -The maximum resident set size (KB) = 936956 +The total amount of wall time = 285.390384 +The maximum resident set size (KB) = 936532 -Test 101 hrrr_control_debug_dyn32_phy32 PASS +Test 104 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rap_control_dyn64_phy32_debug -Checking test 102 rap_control_dyn64_phy32_debug results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rap_control_dyn64_phy32_debug +Checking test 105 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 292.911015 -The maximum resident set size (KB) = 955148 +The total amount of wall time = 292.995426 +The maximum resident set size (KB) = 953736 -Test 102 rap_control_dyn64_phy32_debug PASS +Test 105 rap_control_dyn64_phy32_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hafs_regional_atm -Checking test 103 hafs_regional_atm results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hafs_regional_atm +Checking test 106 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 265.064159 -The maximum resident set size (KB) = 822880 +The total amount of wall time = 265.646863 +The maximum resident set size (KB) = 821092 -Test 103 hafs_regional_atm PASS +Test 106 hafs_regional_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hafs_regional_atm_thompson_gfdlsf -Checking test 104 hafs_regional_atm_thompson_gfdlsf results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hafs_regional_atm_thompson_gfdlsf +Checking test 107 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 303.250403 -The maximum resident set size (KB) = 1180404 +The total amount of wall time = 304.092066 +The maximum resident set size (KB) = 1179796 -Test 104 hafs_regional_atm_thompson_gfdlsf PASS +Test 107 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hafs_regional_atm_ocn -Checking test 105 hafs_regional_atm_ocn results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hafs_regional_atm_ocn +Checking test 108 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -3409,15 +3557,15 @@ Checking test 105 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 385.547911 -The maximum resident set size (KB) = 852396 +The total amount of wall time = 385.475207 +The maximum resident set size (KB) = 853136 -Test 105 hafs_regional_atm_ocn PASS +Test 108 hafs_regional_atm_ocn PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hafs_regional_atm_wav -Checking test 106 hafs_regional_atm_wav results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hafs_regional_atm_wav +Checking test 109 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK @@ -3425,15 +3573,15 @@ Checking test 106 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 705.788910 -The maximum resident set size (KB) = 883720 +The total amount of wall time = 704.432368 +The maximum resident set size (KB) = 884496 -Test 106 hafs_regional_atm_wav PASS +Test 109 hafs_regional_atm_wav PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hafs_regional_atm_ocn_wav -Checking test 107 hafs_regional_atm_ocn_wav results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hafs_regional_atm_ocn_wav +Checking test 110 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -3443,29 +3591,29 @@ Checking test 107 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 900.309232 -The maximum resident set size (KB) = 908680 +The total amount of wall time = 895.131754 +The maximum resident set size (KB) = 906612 -Test 107 hafs_regional_atm_ocn_wav PASS +Test 110 hafs_regional_atm_ocn_wav PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hafs_regional_1nest_atm -Checking test 108 hafs_regional_1nest_atm results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hafs_regional_1nest_atm +Checking test 111 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 327.253644 -The maximum resident set size (KB) = 388876 +The total amount of wall time = 327.000351 +The maximum resident set size (KB) = 387556 -Test 108 hafs_regional_1nest_atm PASS +Test 111 hafs_regional_1nest_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hafs_regional_telescopic_2nests_atm -Checking test 109 hafs_regional_telescopic_2nests_atm results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hafs_regional_telescopic_2nests_atm +Checking test 112 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -3473,29 +3621,29 @@ Checking test 109 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 396.765267 -The maximum resident set size (KB) = 413440 +The total amount of wall time = 394.856342 +The maximum resident set size (KB) = 411312 -Test 109 hafs_regional_telescopic_2nests_atm PASS +Test 112 hafs_regional_telescopic_2nests_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hafs_global_1nest_atm -Checking test 110 hafs_global_1nest_atm results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hafs_global_1nest_atm +Checking test 113 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 165.112841 -The maximum resident set size (KB) = 267420 +The total amount of wall time = 166.126564 +The maximum resident set size (KB) = 263400 -Test 110 hafs_global_1nest_atm PASS +Test 113 hafs_global_1nest_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_multiple_4nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hafs_global_multiple_4nests_atm -Checking test 111 hafs_global_multiple_4nests_atm results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hafs_global_multiple_4nests_atm +Checking test 114 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -3512,15 +3660,15 @@ Checking test 111 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -The total amount of wall time = 485.555925 -The maximum resident set size (KB) = 336932 +The total amount of wall time = 487.280360 +The maximum resident set size (KB) = 339264 -Test 111 hafs_global_multiple_4nests_atm PASS +Test 114 hafs_global_multiple_4nests_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hafs_regional_specified_moving_1nest_atm -Checking test 112 hafs_regional_specified_moving_1nest_atm results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hafs_regional_specified_moving_1nest_atm +Checking test 115 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -3528,29 +3676,29 @@ Checking test 112 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 212.305679 -The maximum resident set size (KB) = 400212 +The total amount of wall time = 212.705167 +The maximum resident set size (KB) = 405228 -Test 112 hafs_regional_specified_moving_1nest_atm PASS +Test 115 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hafs_regional_storm_following_1nest_atm -Checking test 113 hafs_regional_storm_following_1nest_atm results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hafs_regional_storm_following_1nest_atm +Checking test 116 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 200.800962 -The maximum resident set size (KB) = 399032 +The total amount of wall time = 200.307463 +The maximum resident set size (KB) = 399996 -Test 113 hafs_regional_storm_following_1nest_atm PASS +Test 116 hafs_regional_storm_following_1nest_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hafs_regional_storm_following_1nest_atm_ocn -Checking test 114 hafs_regional_storm_following_1nest_atm_ocn results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hafs_regional_storm_following_1nest_atm_ocn +Checking test 117 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -3558,43 +3706,43 @@ Checking test 114 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 238.407121 -The maximum resident set size (KB) = 451652 +The total amount of wall time = 242.205070 +The maximum resident set size (KB) = 452700 -Test 114 hafs_regional_storm_following_1nest_atm_ocn PASS +Test 117 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hafs_global_storm_following_1nest_atm -Checking test 115 hafs_global_storm_following_1nest_atm results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hafs_global_storm_following_1nest_atm +Checking test 118 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 78.744061 -The maximum resident set size (KB) = 277000 +The total amount of wall time = 78.402308 +The maximum resident set size (KB) = 277472 -Test 115 hafs_global_storm_following_1nest_atm PASS +Test 118 hafs_global_storm_following_1nest_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hafs_regional_storm_following_1nest_atm_ocn_debug -Checking test 116 hafs_regional_storm_following_1nest_atm_ocn_debug results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hafs_regional_storm_following_1nest_atm_ocn_debug +Checking test 119 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 797.170440 -The maximum resident set size (KB) = 477196 +The total amount of wall time = 798.010661 +The maximum resident set size (KB) = 477576 -Test 116 hafs_regional_storm_following_1nest_atm_ocn_debug PASS +Test 119 hafs_regional_storm_following_1nest_atm_ocn_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hafs_regional_storm_following_1nest_atm_ocn_wav -Checking test 117 hafs_regional_storm_following_1nest_atm_ocn_wav results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 120 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -3604,162 +3752,162 @@ Checking test 117 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -The total amount of wall time = 522.100472 -The maximum resident set size (KB) = 525720 +The total amount of wall time = 519.837638 +The maximum resident set size (KB) = 519896 -Test 117 hafs_regional_storm_following_1nest_atm_ocn_wav PASS +Test 120 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_docn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hafs_regional_docn -Checking test 118 hafs_regional_docn results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hafs_regional_docn +Checking test 121 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 368.849374 -The maximum resident set size (KB) = 855520 +The total amount of wall time = 368.819457 +The maximum resident set size (KB) = 856672 -Test 118 hafs_regional_docn PASS +Test 121 hafs_regional_docn PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_docn_oisst -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hafs_regional_docn_oisst -Checking test 119 hafs_regional_docn_oisst results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hafs_regional_docn_oisst +Checking test 122 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 369.771626 -The maximum resident set size (KB) = 841704 +The total amount of wall time = 370.145142 +The maximum resident set size (KB) = 838252 -Test 119 hafs_regional_docn_oisst PASS +Test 122 hafs_regional_docn_oisst PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_datm_cdeps -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hafs_regional_datm_cdeps -Checking test 120 hafs_regional_datm_cdeps results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hafs_regional_datm_cdeps +Checking test 123 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -The total amount of wall time = 945.048965 -The maximum resident set size (KB) = 839616 +The total amount of wall time = 944.731115 +The maximum resident set size (KB) = 867596 -Test 120 hafs_regional_datm_cdeps PASS +Test 123 hafs_regional_datm_cdeps PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/datm_cdeps_control_cfsr -Checking test 121 datm_cdeps_control_cfsr results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/datm_cdeps_control_cfsr +Checking test 124 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 140.684245 -The maximum resident set size (KB) = 731780 +The total amount of wall time = 141.221453 +The maximum resident set size (KB) = 733732 -Test 121 datm_cdeps_control_cfsr PASS +Test 124 datm_cdeps_control_cfsr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/datm_cdeps_restart_cfsr -Checking test 122 datm_cdeps_restart_cfsr results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/datm_cdeps_restart_cfsr +Checking test 125 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 85.711932 -The maximum resident set size (KB) = 727096 +The total amount of wall time = 85.376841 +The maximum resident set size (KB) = 728064 -Test 122 datm_cdeps_restart_cfsr PASS +Test 125 datm_cdeps_restart_cfsr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/datm_cdeps_control_gefs -Checking test 123 datm_cdeps_control_gefs results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/datm_cdeps_control_gefs +Checking test 126 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 133.426149 -The maximum resident set size (KB) = 621628 +The total amount of wall time = 134.309955 +The maximum resident set size (KB) = 613408 -Test 123 datm_cdeps_control_gefs PASS +Test 126 datm_cdeps_control_gefs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_iau_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/datm_cdeps_iau_gefs -Checking test 124 datm_cdeps_iau_gefs results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/datm_cdeps_iau_gefs +Checking test 127 datm_cdeps_iau_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 136.157042 -The maximum resident set size (KB) = 615736 +The total amount of wall time = 136.652188 +The maximum resident set size (KB) = 612728 -Test 124 datm_cdeps_iau_gefs PASS +Test 127 datm_cdeps_iau_gefs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_stochy_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/datm_cdeps_stochy_gefs -Checking test 125 datm_cdeps_stochy_gefs results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/datm_cdeps_stochy_gefs +Checking test 128 datm_cdeps_stochy_gefs 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.117223 -The maximum resident set size (KB) = 611940 +The total amount of wall time = 138.473886 +The maximum resident set size (KB) = 617932 -Test 125 datm_cdeps_stochy_gefs PASS +Test 128 datm_cdeps_stochy_gefs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/datm_cdeps_ciceC_cfsr -Checking test 126 datm_cdeps_ciceC_cfsr results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/datm_cdeps_ciceC_cfsr +Checking test 129 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 140.297758 -The maximum resident set size (KB) = 732944 +The total amount of wall time = 141.273692 +The maximum resident set size (KB) = 732908 -Test 126 datm_cdeps_ciceC_cfsr PASS +Test 129 datm_cdeps_ciceC_cfsr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/datm_cdeps_bulk_cfsr -Checking test 127 datm_cdeps_bulk_cfsr results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/datm_cdeps_bulk_cfsr +Checking test 130 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.305456 -The maximum resident set size (KB) = 731540 +The total amount of wall time = 141.304039 +The maximum resident set size (KB) = 732892 -Test 127 datm_cdeps_bulk_cfsr PASS +Test 130 datm_cdeps_bulk_cfsr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/datm_cdeps_bulk_gefs -Checking test 128 datm_cdeps_bulk_gefs results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/datm_cdeps_bulk_gefs +Checking test 131 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 133.878019 -The maximum resident set size (KB) = 614104 +The total amount of wall time = 133.521588 +The maximum resident set size (KB) = 614088 -Test 128 datm_cdeps_bulk_gefs PASS +Test 131 datm_cdeps_bulk_gefs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/datm_cdeps_mx025_cfsr -Checking test 129 datm_cdeps_mx025_cfsr results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/datm_cdeps_mx025_cfsr +Checking test 132 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -3767,15 +3915,15 @@ Checking test 129 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 426.907088 -The maximum resident set size (KB) = 573748 +The total amount of wall time = 431.594319 +The maximum resident set size (KB) = 573324 -Test 129 datm_cdeps_mx025_cfsr PASS +Test 132 datm_cdeps_mx025_cfsr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/datm_cdeps_mx025_gefs -Checking test 130 datm_cdeps_mx025_gefs results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/datm_cdeps_mx025_gefs +Checking test 133 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -3783,52 +3931,65 @@ Checking test 130 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 425.803372 -The maximum resident set size (KB) = 547372 +The total amount of wall time = 426.658725 +The maximum resident set size (KB) = 546672 -Test 130 datm_cdeps_mx025_gefs PASS +Test 133 datm_cdeps_mx025_gefs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/datm_cdeps_multiple_files_cfsr -Checking test 131 datm_cdeps_multiple_files_cfsr results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/datm_cdeps_multiple_files_cfsr +Checking test 134 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.580909 -The maximum resident set size (KB) = 719648 +The total amount of wall time = 141.154056 +The maximum resident set size (KB) = 722108 -Test 131 datm_cdeps_multiple_files_cfsr PASS +Test 134 datm_cdeps_multiple_files_cfsr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/datm_cdeps_3072x1536_cfsr -Checking test 132 datm_cdeps_3072x1536_cfsr results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/datm_cdeps_3072x1536_cfsr +Checking test 135 datm_cdeps_3072x1536_cfsr 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 = 257.309683 -The maximum resident set size (KB) = 1978688 +The total amount of wall time = 254.453866 +The maximum resident set size (KB) = 1981496 -Test 132 datm_cdeps_3072x1536_cfsr PASS +Test 135 datm_cdeps_3072x1536_cfsr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_gfs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/datm_cdeps_gfs -Checking test 133 datm_cdeps_gfs results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/datm_cdeps_gfs +Checking test 136 datm_cdeps_gfs 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 = 255.740749 -The maximum resident set size (KB) = 1977876 +The total amount of wall time = 255.200677 +The maximum resident set size (KB) = 1977420 + +Test 136 datm_cdeps_gfs PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/datm_cdeps_control_cfsr_faster +Checking test 137 datm_cdeps_control_cfsr_faster results .... + Comparing RESTART/20111002.000000.MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -Test 133 datm_cdeps_gfs PASS +The total amount of wall time = 141.450425 +The maximum resident set size (KB) = 735728 + +Test 137 datm_cdeps_control_cfsr_faster PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/datm_cdeps_lnd_gswp3 -Checking test 134 datm_cdeps_lnd_gswp3 results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/datm_cdeps_lnd_gswp3 +Checking test 138 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -3836,15 +3997,15 @@ Checking test 134 datm_cdeps_lnd_gswp3 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.257961 -The maximum resident set size (KB) = 227448 +The total amount of wall time = 21.876668 +The maximum resident set size (KB) = 236756 -Test 134 datm_cdeps_lnd_gswp3 PASS +Test 138 datm_cdeps_lnd_gswp3 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/datm_cdeps_lnd_gswp3_rst -Checking test 135 datm_cdeps_lnd_gswp3_rst results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/datm_cdeps_lnd_gswp3_rst +Checking test 139 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -3852,15 +4013,15 @@ Checking test 135 datm_cdeps_lnd_gswp3_rst 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.177102 -The maximum resident set size (KB) = 232008 +The total amount of wall time = 27.232562 +The maximum resident set size (KB) = 226704 -Test 135 datm_cdeps_lnd_gswp3_rst PASS +Test 139 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_atmlnd_sbs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_p8_atmlnd_sbs -Checking test 136 control_p8_atmlnd_sbs results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_p8_atmlnd_sbs +Checking test 140 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3944,15 +4105,15 @@ Checking test 136 control_p8_atmlnd_sbs 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.586268 -The maximum resident set size (KB) = 1539088 +The total amount of wall time = 236.104200 +The maximum resident set size (KB) = 1539808 -Test 136 control_p8_atmlnd_sbs PASS +Test 140 control_p8_atmlnd_sbs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_atmwav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_atmwav -Checking test 137 control_atmwav results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_atmwav +Checking test 141 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -3995,15 +4156,15 @@ Checking test 137 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -The total amount of wall time = 90.130847 -The maximum resident set size (KB) = 545436 +The total amount of wall time = 90.751755 +The maximum resident set size (KB) = 541780 -Test 137 control_atmwav PASS +Test 141 control_atmwav PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/atmaero_control_p8 -Checking test 138 atmaero_control_p8 results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/atmaero_control_p8 +Checking test 142 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4046,15 +4207,15 @@ Checking test 138 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 244.112610 -The maximum resident set size (KB) = 2811392 +The total amount of wall time = 243.413700 +The maximum resident set size (KB) = 2813744 -Test 138 atmaero_control_p8 PASS +Test 142 atmaero_control_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8_rad -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/atmaero_control_p8_rad -Checking test 139 atmaero_control_p8_rad results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/atmaero_control_p8_rad +Checking test 143 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4097,15 +4258,15 @@ Checking test 139 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 283.820829 -The maximum resident set size (KB) = 2876924 +The total amount of wall time = 280.914846 +The maximum resident set size (KB) = 2876824 -Test 139 atmaero_control_p8_rad PASS +Test 143 atmaero_control_p8_rad PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/atmaero_control_p8_rad_micro -Checking test 140 atmaero_control_p8_rad_micro results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/atmaero_control_p8_rad_micro +Checking test 144 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4148,15 +4309,15 @@ Checking test 140 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 287.329958 -The maximum resident set size (KB) = 2884692 +The total amount of wall time = 287.163127 +The maximum resident set size (KB) = 2883812 -Test 140 atmaero_control_p8_rad_micro PASS +Test 144 atmaero_control_p8_rad_micro PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_atmaq -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/regional_atmaq -Checking test 141 regional_atmaq results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/regional_atmaq +Checking test 145 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -4171,15 +4332,15 @@ Checking test 141 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 658.516541 -The maximum resident set size (KB) = 1408148 +The total amount of wall time = 667.126488 +The maximum resident set size (KB) = 1398428 -Test 141 regional_atmaq PASS +Test 145 regional_atmaq PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_atmaq_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/regional_atmaq_debug -Checking test 142 regional_atmaq_debug results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/regional_atmaq_debug +Checking test 146 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -4192,12 +4353,35 @@ Checking test 142 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1433.239613 -The maximum resident set size (KB) = 1440536 +The total amount of wall time = 1442.937818 +The maximum resident set size (KB) = 1434824 + +Test 146 regional_atmaq_debug PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_atmaq_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/regional_atmaq_faster +Checking test 147 regional_atmaq_faster results .... + Comparing sfcf000.nc .........OK + Comparing sfcf003.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf003.nc .........OK + Comparing atmf006.nc .........OK + Comparing RESTART/20190801.180000.coupler.res .........OK + Comparing RESTART/20190801.180000.fv_core.res.nc .........OK + Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.phy_data.nc .........OK + Comparing RESTART/20190801.180000.sfc_data.nc .........OK + +The total amount of wall time = 651.396153 +The maximum resident set size (KB) = 1399024 -Test 142 regional_atmaq_debug PASS +Test 147 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Thu Mar 2 16:47:14 UTC 2023 -Elapsed time: 01h:25m:32s. Have a nice day! +Tue Mar 7 16:57:16 UTC 2023 +Elapsed time: 01h:30m:25s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index e8c89bbaccf..3a4dfc36aa8 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,21 +1,21 @@ -Mon Feb 27 16:57:57 MST 2023 +Sat Mar 4 08:38:19 MST 2023 Start Regression test -Compile 001 elapsed time 375 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 408 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 882 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 200 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 370 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 1082 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 876 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 894 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 635 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 569 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 384 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 012 elapsed time 320 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/control_c48 -working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/control_c48 +Compile 001 elapsed time 371 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 394 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 852 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 187 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 365 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 1064 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 852 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 854 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 636 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 564 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 345 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 012 elapsed time 298 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/control_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/control_c48 Checking test 001 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -54,14 +54,14 @@ Checking test 001 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 823.262510 -0:The maximum resident set size (KB) = 681132 +0:The total amount of wall time = 819.857014 +0:The maximum resident set size (KB) = 675608 -Test 001 control_c48 PASS +Test 001 control_c48 PASS Tries: 2 -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/control_stochy -working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/control_stochy +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/control_stochy +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/control_stochy Checking test 002 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -72,14 +72,14 @@ Checking test 002 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 180.983796 -0:The maximum resident set size (KB) = 442676 +0:The total amount of wall time = 172.678311 +0:The maximum resident set size (KB) = 442620 Test 002 control_stochy PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/control_ras -working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/control_ras +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/control_ras +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/control_ras Checking test 003 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -90,14 +90,14 @@ Checking test 003 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 297.583148 -0:The maximum resident set size (KB) = 452324 +0:The total amount of wall time = 293.391668 +0:The maximum resident set size (KB) = 452036 Test 003 control_ras PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/control_p8 -working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/control_p8 Checking test 004 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -144,14 +144,14 @@ Checking test 004 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 318.732670 -0:The maximum resident set size (KB) = 1225600 +0:The total amount of wall time = 309.759657 +0:The maximum resident set size (KB) = 1226000 Test 004 control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rap_control -working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/rap_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/rap_control Checking test 005 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -198,14 +198,14 @@ Checking test 005 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 725.292458 -0:The maximum resident set size (KB) = 791720 +0:The total amount of wall time = 714.611001 +0:The maximum resident set size (KB) = 791788 Test 005 rap_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rap_control -working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/rap_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/rap_decomp Checking test 006 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -252,14 +252,14 @@ Checking test 006 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 722.774430 -0:The maximum resident set size (KB) = 791180 +0:The total amount of wall time = 721.729341 +0:The maximum resident set size (KB) = 791156 Test 006 rap_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rap_control -working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/rap_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/rap_2threads Checking test 007 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -306,14 +306,14 @@ Checking test 007 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 669.436970 -0:The maximum resident set size (KB) = 864044 +0:The total amount of wall time = 664.456258 +0:The maximum resident set size (KB) = 863968 Test 007 rap_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rap_control -working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/rap_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/rap_restart Checking test 008 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -352,14 +352,14 @@ Checking test 008 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 361.861476 -0:The maximum resident set size (KB) = 538644 +0:The total amount of wall time = 357.643260 +0:The maximum resident set size (KB) = 538620 Test 008 rap_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/rap_sfcdiff +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/rap_sfcdiff Checking test 009 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -406,14 +406,14 @@ Checking test 009 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 716.711690 -0:The maximum resident set size (KB) = 791560 +0:The total amount of wall time = 703.711335 +0:The maximum resident set size (KB) = 791676 Test 009 rap_sfcdiff PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/rap_sfcdiff_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/rap_sfcdiff_decomp Checking test 010 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -460,14 +460,14 @@ Checking test 010 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 728.363535 -0:The maximum resident set size (KB) = 790764 +0:The total amount of wall time = 719.026178 +0:The maximum resident set size (KB) = 790636 Test 010 rap_sfcdiff_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/rap_sfcdiff_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/rap_sfcdiff_restart Checking test 011 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -506,14 +506,14 @@ Checking test 011 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 535.420171 -0:The maximum resident set size (KB) = 543756 +0:The total amount of wall time = 533.144676 +0:The maximum resident set size (KB) = 543568 Test 011 rap_sfcdiff_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/hrrr_control -working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/hrrr_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/hrrr_control Checking test 012 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -560,14 +560,14 @@ Checking test 012 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 694.510998 -0:The maximum resident set size (KB) = 789116 +0:The total amount of wall time = 688.588470 +0:The maximum resident set size (KB) = 789252 Test 012 hrrr_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/hrrr_control -working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/hrrr_control_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/hrrr_control_2threads Checking test 013 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -614,14 +614,14 @@ Checking test 013 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 630.234630 -0:The maximum resident set size (KB) = 858728 +0:The total amount of wall time = 624.876571 +0:The maximum resident set size (KB) = 858800 Test 013 hrrr_control_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/hrrr_control -working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/hrrr_control_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/hrrr_control_decomp Checking test 014 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -668,14 +668,14 @@ Checking test 014 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 693.216124 -0:The maximum resident set size (KB) = 788588 +0:The total amount of wall time = 681.462360 +0:The maximum resident set size (KB) = 788280 Test 014 hrrr_control_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/hrrr_control -working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/hrrr_control_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/hrrr_control_restart Checking test 015 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -714,14 +714,14 @@ Checking test 015 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 516.609234 -0:The maximum resident set size (KB) = 540060 +0:The total amount of wall time = 518.868979 +0:The maximum resident set size (KB) = 539648 Test 015 hrrr_control_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rrfs_v1beta -working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/rrfs_v1beta +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/rrfs_v1beta +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/rrfs_v1beta Checking test 016 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -768,14 +768,14 @@ Checking test 016 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 706.938909 -0:The maximum resident set size (KB) = 788420 +0:The total amount of wall time = 697.621199 +0:The maximum resident set size (KB) = 788296 Test 016 rrfs_v1beta PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/rrfs_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/rrfs_conus13km_hrrr_warm Checking test 017 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -784,14 +784,14 @@ Checking test 017 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 208.471993 -0:The maximum resident set size (KB) = 606668 +0:The total amount of wall time = 203.791159 +0:The maximum resident set size (KB) = 607276 Test 017 rrfs_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/rrfs_smoke_conus13km_hrrr_warm Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -800,14 +800,14 @@ Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 230.540906 -0:The maximum resident set size (KB) = 620780 +0:The total amount of wall time = 221.697144 +0:The maximum resident set size (KB) = 621240 Test 018 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/rrfs_conus13km_radar_tten_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/rrfs_conus13km_radar_tten_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/rrfs_conus13km_radar_tten_warm Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -816,14 +816,14 @@ Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 211.958193 -0:The maximum resident set size (KB) = 609624 +0:The total amount of wall time = 204.389916 +0:The maximum resident set size (KB) = 610080 Test 019 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/rrfs_conus13km_radar_tten_warm_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/rrfs_conus13km_radar_tten_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/rrfs_conus13km_radar_tten_warm_2threads Checking test 020 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -832,208 +832,208 @@ Checking test 020 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 140.603435 -0:The maximum resident set size (KB) = 628868 +0:The total amount of wall time = 130.578462 +0:The maximum resident set size (KB) = 629196 Test 020 rrfs_conus13km_radar_tten_warm_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/control_diag_debug -working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/control_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/control_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/control_diag_debug Checking test 021 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 94.145720 -0:The maximum resident set size (KB) = 494892 +0:The total amount of wall time = 88.202541 +0:The maximum resident set size (KB) = 495372 Test 021 control_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/regional_debug -working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/regional_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/regional_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/regional_debug Checking test 022 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 488.927770 -0:The maximum resident set size (KB) = 569176 +0:The total amount of wall time = 483.695324 +0:The maximum resident set size (KB) = 569428 Test 022 regional_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rap_control_debug -working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/rap_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/rap_control_debug Checking test 023 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 159.273127 -0:The maximum resident set size (KB) = 808548 +0:The total amount of wall time = 150.466074 +0:The maximum resident set size (KB) = 808492 Test 023 rap_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/hrrr_control_debug -working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/hrrr_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/hrrr_control_debug Checking test 024 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 156.283240 -0:The maximum resident set size (KB) = 804228 +0:The total amount of wall time = 148.181270 +0:The maximum resident set size (KB) = 804564 Test 024 hrrr_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rap_diag_debug -working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/rap_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/rap_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/rap_diag_debug Checking test 025 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 166.790856 -0:The maximum resident set size (KB) = 891700 +0:The total amount of wall time = 158.881257 +0:The maximum resident set size (KB) = 891792 Test 025 rap_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/rap_noah_sfcdiff_cires_ugwp_debug Checking test 026 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 244.893080 -0:The maximum resident set size (KB) = 806924 +0:The total amount of wall time = 242.377148 +0:The maximum resident set size (KB) = 807128 Test 026 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rap_progcld_thompson_debug -working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/rap_progcld_thompson_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/rap_progcld_thompson_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/rap_progcld_thompson_debug Checking test 027 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 157.998629 -0:The maximum resident set size (KB) = 808668 +0:The total amount of wall time = 151.663807 +0:The maximum resident set size (KB) = 808500 Test 027 rap_progcld_thompson_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rrfs_v1beta_debug -working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/rrfs_v1beta_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/rrfs_v1beta_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/rrfs_v1beta_debug Checking test 028 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 156.017946 -0:The maximum resident set size (KB) = 803832 +0:The total amount of wall time = 150.508055 +0:The maximum resident set size (KB) = 803676 Test 028 rrfs_v1beta_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/control_ras_debug -working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/control_ras_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/control_ras_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/control_ras_debug Checking test 029 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 92.541617 -0:The maximum resident set size (KB) = 449624 +0:The total amount of wall time = 86.143585 +0:The maximum resident set size (KB) = 449260 Test 029 control_ras_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/control_stochy_debug -working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/control_stochy_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/control_stochy_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/control_stochy_debug Checking test 030 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 98.702633 -0:The maximum resident set size (KB) = 441736 +0:The total amount of wall time = 93.797004 +0:The maximum resident set size (KB) = 441616 Test 030 control_stochy_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/control_debug_p8 -working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/control_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/control_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/control_debug_p8 Checking test 031 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 105.785680 -0:The maximum resident set size (KB) = 1224332 +0:The total amount of wall time = 95.532548 +0:The maximum resident set size (KB) = 1224856 Test 031 control_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/rrfs_conus13km_hrrr_warm_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/rrfs_conus13km_hrrr_warm_debugs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/rrfs_conus13km_hrrr_warm_debug Checking test 032 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 392.917788 -0:The maximum resident set size (KB) = 613860 +0:The total amount of wall time = 390.928584 +0:The maximum resident set size (KB) = 614332 Test 032 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rrfs_conus13km_radar_tten_warm_debug -working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/rrfs_conus13km_radar_tten_warm_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/rrfs_conus13km_radar_tten_warm_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/rrfs_conus13km_radar_tten_warm_debug Checking test 033 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 391.942575 -0:The maximum resident set size (KB) = 616408 +0:The total amount of wall time = 390.860446 +0:The maximum resident set size (KB) = 617212 Test 033 rrfs_conus13km_radar_tten_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/control_wam_debug -working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/control_wam_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/control_wam_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/control_wam_debug Checking test 034 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 148.628806 -0:The maximum resident set size (KB) = 184480 +0:The total amount of wall time = 143.590719 +0:The maximum resident set size (KB) = 184876 Test 034 control_wam_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/rap_control_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/rap_control_dyn32_phy32 Checking test 035 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1080,14 +1080,14 @@ Checking test 035 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 692.578557 -0:The maximum resident set size (KB) = 673032 +0:The total amount of wall time = 685.378764 +0:The maximum resident set size (KB) = 672704 Test 035 rap_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/hrrr_control_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/hrrr_control_dyn32_phy32 Checking test 036 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1134,14 +1134,14 @@ Checking test 036 hrrr_control_dyn32_phy32 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 = 354.112274 -0:The maximum resident set size (KB) = 671532 +0:The total amount of wall time = 349.777034 +0:The maximum resident set size (KB) = 671128 Test 036 hrrr_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/rap_2threads_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/rap_2threads_dyn32_phy32 Checking test 037 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1188,14 +1188,14 @@ Checking test 037 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 628.977110 -0:The maximum resident set size (KB) = 718240 +0:The total amount of wall time = 624.954764 +0:The maximum resident set size (KB) = 718364 Test 037 rap_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/hrrr_control_2threads_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/hrrr_control_2threads_dyn32_phy32 Checking test 038 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1242,14 +1242,14 @@ Checking test 038 hrrr_control_2threads_dyn32_phy32 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 = 325.043418 -0:The maximum resident set size (KB) = 715540 +0:The total amount of wall time = 322.386264 +0:The maximum resident set size (KB) = 715480 Test 038 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/hrrr_control_decomp_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/hrrr_control_decomp_dyn32_phy32 Checking test 039 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1296,14 +1296,14 @@ Checking test 039 hrrr_control_decomp_dyn32_phy32 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 = 354.535034 -0:The maximum resident set size (KB) = 670372 +0:The total amount of wall time = 349.006373 +0:The maximum resident set size (KB) = 669944 Test 039 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/rap_restart_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/rap_restart_dyn32_phy32 Checking test 040 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1342,14 +1342,14 @@ Checking test 040 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 520.858780 -0:The maximum resident set size (KB) = 510936 +0:The total amount of wall time = 515.615044 +0:The maximum resident set size (KB) = 510748 Test 040 rap_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/hrrr_control_restart_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/hrrr_control_restart_dyn32_phy32 Checking test 041 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1388,14 +1388,14 @@ Checking test 041 hrrr_control_restart_dyn32_phy32 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 = 182.622704 -0:The maximum resident set size (KB) = 507036 +0:The total amount of wall time = 177.171304 +0:The maximum resident set size (KB) = 506608 Test 041 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rap_control_dyn64_phy32 -working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/rap_control_dyn64_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control_dyn64_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/rap_control_dyn64_phy32 Checking test 042 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1442,56 +1442,56 @@ Checking test 042 rap_control_dyn64_phy32 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 = 413.723932 -0:The maximum resident set size (KB) = 693824 +0:The total amount of wall time = 408.006233 +0:The maximum resident set size (KB) = 692456 Test 042 rap_control_dyn64_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/rap_control_debug_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/rap_control_debug_dyn32_phy32 Checking test 043 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 157.248564 -0:The maximum resident set size (KB) = 690664 +0:The total amount of wall time = 148.655135 +0:The maximum resident set size (KB) = 690544 Test 043 rap_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/hrrr_control_debug_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/hrrr_control_debug_dyn32_phy32 Checking test 044 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 155.066421 -0:The maximum resident set size (KB) = 687732 +0:The total amount of wall time = 145.255934 +0:The maximum resident set size (KB) = 687520 Test 044 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/rap_control_dyn64_phy32_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control_debug_dyn64_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/rap_control_dyn64_phy32_debug Checking test 045 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 164.161444 -0:The maximum resident set size (KB) = 710116 +0:The total amount of wall time = 153.604413 +0:The maximum resident set size (KB) = 710928 Test 045 rap_control_dyn64_phy32_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/cpld_control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/cpld_control_p8 Checking test 046 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1556,14 +1556,14 @@ Checking test 046 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 513.901268 -0:The maximum resident set size (KB) = 3159288 +0:The total amount of wall time = 501.393048 +0:The maximum resident set size (KB) = 3159468 Test 046 cpld_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/cpld_control_nowave_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/cpld_control_c96_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/cpld_control_nowave_noaero_p8 Checking test 047 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1625,14 +1625,14 @@ Checking test 047 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 272.764558 -0:The maximum resident set size (KB) = 1239716 +0:The total amount of wall time = 241.566172 +0:The maximum resident set size (KB) = 1240232 Test 047 cpld_control_nowave_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/cpld_debug_p8 -working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/cpld_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/cpld_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/cpld_debug_p8 Checking test 048 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1685,25 +1685,25 @@ Checking test 048 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 294.947421 -0:The maximum resident set size (KB) = 3179572 +0:The total amount of wall time = 276.890711 +0:The maximum resident set size (KB) = 3177988 Test 048 cpld_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/datm_cdeps_control_cfsr -working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/datm_cdeps_control_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/datm_cdeps_control_cfsr Checking test 049 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 183.953214 -0:The maximum resident set size (KB) = 675568 +0:The total amount of wall time = 178.650270 +0:The maximum resident set size (KB) = 672536 Test 049 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Mon Feb 27 17:32:34 MST 2023 -Elapsed time: 00h:34m:37s. Have a nice day! +Sat Mar 4 09:09:23 MST 2023 +Elapsed time: 00h:31m:04s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index fcffacb4dd7..d898b6dc1ee 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,38 +1,42 @@ -Mon Feb 27 16:57:46 MST 2023 +Sat Mar 4 08:23:21 MST 2023 Start Regression test -Compile 001 elapsed time 1553 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 1434 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 1382 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 462 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 405 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 1134 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 1087 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 1034 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 1018 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 937 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 824 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 434 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 013 elapsed time 308 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 877 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 015 elapsed time 854 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 305 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 017 elapsed time 286 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 1142 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 019 elapsed time 386 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 1585 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 1119 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 022 elapsed time 455 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 023 elapsed time 232 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 024 elapsed time 125 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 025 elapsed time 963 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 026 elapsed time 999 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 027 elapsed time 908 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 891 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 314 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8_mixedmode -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/cpld_control_p8_mixedmode +Compile 001 elapsed time 1459 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1488 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 1367 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 426 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 383 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 1057 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 1060 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 1806 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 1024 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 985 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 924 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 782 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 1291 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 405 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 257 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 813 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 825 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 259 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 269 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 1107 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 021 elapsed time 337 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 1572 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 1093 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 024 elapsed time 425 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 203 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 431 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 102 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 940 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 974 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 890 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 853 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 298 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 1013 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8_mixedmode +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -97,14 +101,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 339.515744 -0:The maximum resident set size (KB) = 2698536 +0:The total amount of wall time = 317.722084 +0:The maximum resident set size (KB) = 2698836 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_gfsv17 -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/cpld_control_gfsv17 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_gfsv17 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -168,14 +172,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 307.578692 -0:The maximum resident set size (KB) = 1437496 +0:The total amount of wall time = 270.340850 +0:The maximum resident set size (KB) = 1437848 Test 002 cpld_control_gfsv17 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/cpld_control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -240,14 +244,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 342.287778 -0:The maximum resident set size (KB) = 2716492 +0:The total amount of wall time = 321.822290 +0:The maximum resident set size (KB) = 2716540 Test 003 cpld_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/cpld_restart_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -300,14 +304,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 195.069692 -0:The maximum resident set size (KB) = 2577740 +0:The total amount of wall time = 189.391220 +0:The maximum resident set size (KB) = 2577548 Test 004 cpld_restart_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/cpld_2threads_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -360,14 +364,14 @@ Checking test 005 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 297.042978 -0:The maximum resident set size (KB) = 3175516 +0:The total amount of wall time = 258.499484 +0:The maximum resident set size (KB) = 3176020 Test 005 cpld_2threads_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/cpld_decomp_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/cpld_decomp_p8 Checking test 006 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -420,14 +424,14 @@ Checking test 006 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 348.018494 -0:The maximum resident set size (KB) = 2723200 +0:The total amount of wall time = 321.368666 +0:The maximum resident set size (KB) = 2723724 Test 006 cpld_decomp_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/cpld_mpi_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/cpld_mpi_p8 Checking test 007 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -480,14 +484,14 @@ Checking test 007 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 310.762946 -0:The maximum resident set size (KB) = 2682616 +0:The total amount of wall time = 266.229434 +0:The maximum resident set size (KB) = 2682768 -Test 007 cpld_mpi_p8 PASS +Test 007 cpld_mpi_p8 PASS Tries: 2 -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_ciceC_p8 -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/cpld_control_ciceC_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_ciceC_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/cpld_control_ciceC_p8 Checking test 008 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -552,14 +556,14 @@ Checking test 008 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 335.356220 -0:The maximum resident set size (KB) = 2716264 +0:The total amount of wall time = 308.291230 +0:The maximum resident set size (KB) = 2716120 Test 008 cpld_control_ciceC_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/cpld_control_c192_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c192_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/cpld_control_c192_p8 Checking test 009 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -612,14 +616,14 @@ Checking test 009 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -0:The total amount of wall time = 702.222894 -0:The maximum resident set size (KB) = 3347776 +0:The total amount of wall time = 762.507311 +0:The maximum resident set size (KB) = 3348220 Test 009 cpld_control_c192_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/cpld_restart_c192_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c192_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/cpld_restart_c192_p8 Checking test 010 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -672,14 +676,14 @@ Checking test 010 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -0:The total amount of wall time = 475.278690 -0:The maximum resident set size (KB) = 3272052 +0:The total amount of wall time = 418.359945 +0:The maximum resident set size (KB) = 3271936 Test 010 cpld_restart_c192_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_noaero_p8 -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/cpld_control_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/cpld_control_noaero_p8 Checking test 011 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -743,14 +747,14 @@ Checking test 011 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 308.760229 -0:The maximum resident set size (KB) = 1436544 +0:The total amount of wall time = 283.473380 +0:The maximum resident set size (KB) = 1436136 Test 011 cpld_control_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/cpld_control_nowave_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c96_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/cpld_control_nowave_noaero_p8 Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -812,14 +816,14 @@ Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 215.488438 -0:The maximum resident set size (KB) = 1452424 +0:The total amount of wall time = 185.859407 +0:The maximum resident set size (KB) = 1452360 Test 012 cpld_control_nowave_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_debug_p8 -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/cpld_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/cpld_debug_p8 Checking test 013 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -872,14 +876,14 @@ Checking test 013 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 503.283573 -0:The maximum resident set size (KB) = 2788208 +0:The total amount of wall time = 472.840231 +0:The maximum resident set size (KB) = 2788276 Test 013 cpld_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_debug_noaero_p8 -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/cpld_debug_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_debug_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/cpld_debug_noaero_p8 Checking test 014 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -931,14 +935,14 @@ Checking test 014 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 368.732751 -0:The maximum resident set size (KB) = 1460532 +0:The total amount of wall time = 348.987118 +0:The maximum resident set size (KB) = 1460684 Test 014 cpld_debug_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_noaero_p8_agrid -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/cpld_control_noaero_p8_agrid +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_noaero_p8_agrid +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/cpld_control_noaero_p8_agrid Checking test 015 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1000,14 +1004,14 @@ Checking test 015 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 279.507322 -0:The maximum resident set size (KB) = 1455812 +0:The total amount of wall time = 242.527548 +0:The maximum resident set size (KB) = 1455960 Test 015 cpld_control_noaero_p8_agrid PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_c48 -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/cpld_control_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/cpld_control_c48 Checking test 016 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1057,14 +1061,14 @@ Checking test 016 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 614.976733 -0:The maximum resident set size (KB) = 2580812 +0:The total amount of wall time = 600.470886 +0:The maximum resident set size (KB) = 2580324 Test 016 cpld_control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/cpld_warmstart_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_warmstart_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/cpld_warmstart_c48 Checking test 017 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1114,14 +1118,14 @@ Checking test 017 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -0:The total amount of wall time = 175.516102 -0:The maximum resident set size (KB) = 2598904 +0:The total amount of wall time = 161.591394 +0:The maximum resident set size (KB) = 2599008 Test 017 cpld_warmstart_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/cpld_restart_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_warmstart_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/cpld_restart_c48 Checking test 018 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1171,15 +1175,87 @@ Checking test 018 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -0:The total amount of wall time = 92.518169 -0:The maximum resident set size (KB) = 2015684 +0:The total amount of wall time = 85.626264 +0:The maximum resident set size (KB) = 2015892 Test 018 cpld_restart_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_CubedSphereGrid -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_CubedSphereGrid -Checking test 019 control_CubedSphereGrid results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8_faster +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/cpld_control_p8_faster +Checking test 019 cpld_control_p8_faster results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + +0:The total amount of wall time = 297.608858 +0:The maximum resident set size (KB) = 2716424 + +Test 019 cpld_control_p8_faster PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_CubedSphereGrid +Checking test 020 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1205,29 +1281,29 @@ Checking test 019 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -0:The total amount of wall time = 145.817948 -0:The maximum resident set size (KB) = 456744 +0:The total amount of wall time = 142.099496 +0:The maximum resident set size (KB) = 456784 -Test 019 control_CubedSphereGrid PASS +Test 020 control_CubedSphereGrid PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_CubedSphereGrid_parallel -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_CubedSphereGrid_parallel -Checking test 020 control_CubedSphereGrid_parallel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid_parallel +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_CubedSphereGrid_parallel +Checking test 021 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing atmf024.nc .........OK -0:The total amount of wall time = 148.045173 -0:The maximum resident set size (KB) = 456804 +0:The total amount of wall time = 140.013545 +0:The maximum resident set size (KB) = 456728 -Test 020 control_CubedSphereGrid_parallel PASS +Test 021 control_CubedSphereGrid_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_latlon -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_latlon -Checking test 021 control_latlon results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_latlon +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_latlon +Checking test 022 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1237,33 +1313,33 @@ Checking test 021 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 150.462219 -0:The maximum resident set size (KB) = 456804 +0:The total amount of wall time = 142.687242 +0:The maximum resident set size (KB) = 456760 -Test 021 control_latlon PASS +Test 022 control_latlon PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_wrtGauss_netcdf_parallel -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_wrtGauss_netcdf_parallel -Checking test 022 control_wrtGauss_netcdf_parallel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wrtGauss_netcdf_parallel +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_wrtGauss_netcdf_parallel +Checking test 023 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 152.650119 -0:The maximum resident set size (KB) = 456808 +0:The total amount of wall time = 145.084582 +0:The maximum resident set size (KB) = 456888 -Test 022 control_wrtGauss_netcdf_parallel PASS +Test 023 control_wrtGauss_netcdf_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_c48 -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_c48 -Checking test 023 control_c48 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_c48 +Checking test 024 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1301,15 +1377,15 @@ Checking test 023 control_c48 results .... Comparing 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.944768 -0:The maximum resident set size (KB) = 628920 +0:The total amount of wall time = 443.004720 +0:The maximum resident set size (KB) = 628912 -Test 023 control_c48 PASS +Test 024 control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_c192 -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_c192 -Checking test 024 control_c192 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c192 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_c192 +Checking test 025 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1319,15 +1395,15 @@ Checking test 024 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 602.461352 -0:The maximum resident set size (KB) = 557080 +0:The total amount of wall time = 591.231468 +0:The maximum resident set size (KB) = 557052 -Test 024 control_c192 PASS +Test 025 control_c192 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_c384 -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_c384 -Checking test 025 control_c384 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c384 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_c384 +Checking test 026 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1337,15 +1413,15 @@ Checking test 025 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 618.884949 -0:The maximum resident set size (KB) = 887288 +0:The total amount of wall time = 602.971556 +0:The maximum resident set size (KB) = 889576 -Test 025 control_c384 PASS +Test 026 control_c384 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_c384gdas -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_c384gdas -Checking test 026 control_c384gdas results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c384gdas +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_c384gdas +Checking test 027 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -1387,15 +1463,15 @@ Checking test 026 control_c384gdas 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 = 585.985312 -0:The maximum resident set size (KB) = 1016076 +0:The total amount of wall time = 533.105788 +0:The maximum resident set size (KB) = 1015040 -Test 026 control_c384gdas PASS +Test 027 control_c384gdas PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_stochy -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_stochy -Checking test 027 control_stochy results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_stochy +Checking test 028 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1405,29 +1481,29 @@ Checking test 027 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 102.341109 -0:The maximum resident set size (KB) = 454888 +0:The total amount of wall time = 96.687827 +0:The maximum resident set size (KB) = 455060 -Test 027 control_stochy PASS +Test 028 control_stochy PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_stochy -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_stochy_restart -Checking test 028 control_stochy_restart results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_stochy_restart +Checking test 029 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 55.952077 -0:The maximum resident set size (KB) = 225880 +0:The total amount of wall time = 51.809516 +0:The maximum resident set size (KB) = 225852 -Test 028 control_stochy_restart PASS +Test 029 control_stochy_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_lndp -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_lndp -Checking test 029 control_lndp results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_lndp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_lndp +Checking test 030 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1437,15 +1513,15 @@ Checking test 029 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 94.826367 -0:The maximum resident set size (KB) = 456480 +0:The total amount of wall time = 89.277545 +0:The maximum resident set size (KB) = 456448 -Test 029 control_lndp PASS +Test 030 control_lndp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_iovr4 -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_iovr4 -Checking test 030 control_iovr4 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_iovr4 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_iovr4 +Checking test 031 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1459,15 +1535,15 @@ Checking test 030 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 152.875915 -0:The maximum resident set size (KB) = 456636 +0:The total amount of wall time = 147.812813 +0:The maximum resident set size (KB) = 456608 -Test 030 control_iovr4 PASS +Test 031 control_iovr4 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_iovr5 -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_iovr5 -Checking test 031 control_iovr5 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_iovr5 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_iovr5 +Checking test 032 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1481,15 +1557,15 @@ Checking test 031 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 157.065643 -0:The maximum resident set size (KB) = 456704 +0:The total amount of wall time = 148.119698 +0:The maximum resident set size (KB) = 456668 -Test 031 control_iovr5 PASS +Test 032 control_iovr5 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_p8 -Checking test 032 control_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_p8 +Checking test 033 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1535,15 +1611,15 @@ Checking test 032 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 191.152624 -0:The maximum resident set size (KB) = 1422896 +0:The total amount of wall time = 179.282302 +0:The maximum resident set size (KB) = 1422884 -Test 032 control_p8 PASS +Test 033 control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8_lndp -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_p8_lndp -Checking test 033 control_p8_lndp results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_lndp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_p8_lndp +Checking test 034 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1561,15 +1637,15 @@ Checking test 033 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -0:The total amount of wall time = 341.201529 -0:The maximum resident set size (KB) = 1423156 +0:The total amount of wall time = 334.711042 +0:The maximum resident set size (KB) = 1423132 -Test 033 control_p8_lndp PASS +Test 034 control_p8_lndp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_restart_p8 -Checking test 034 control_restart_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_restart_p8 +Checking test 035 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1607,15 +1683,15 @@ Checking test 034 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 104.842361 -0:The maximum resident set size (KB) = 582308 +0:The total amount of wall time = 94.672963 +0:The maximum resident set size (KB) = 582332 -Test 034 control_restart_p8 PASS +Test 035 control_restart_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_decomp_p8 -Checking test 035 control_decomp_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_decomp_p8 +Checking test 036 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1657,15 +1733,15 @@ Checking test 035 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 199.567829 -0:The maximum resident set size (KB) = 1417116 +0:The total amount of wall time = 182.225274 +0:The maximum resident set size (KB) = 1416972 -Test 035 control_decomp_p8 PASS +Test 036 control_decomp_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_2threads_p8 -Checking test 036 control_2threads_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_2threads_p8 +Checking test 037 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1707,69 +1783,69 @@ Checking test 036 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 195.845945 -0:The maximum resident set size (KB) = 1508096 - -Test 036 control_2threads_p8 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8_rrtmgp -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_p8_rrtmgp -Checking test 037 control_p8_rrtmgp results .... - Comparing sfcf000.nc ............ALT CHECK......NOT OK - Comparing sfcf021.nc ............ALT CHECK......NOT OK - Comparing sfcf024.nc ............ALT CHECK......NOT OK - Comparing atmf000.nc ............ALT CHECK......NOT OK - Comparing atmf021.nc ............ALT CHECK......NOT OK - Comparing atmf024.nc ............ALT CHECK......NOT OK - Comparing GFSFLX.GrbF00 .........NOT OK - Comparing GFSFLX.GrbF21 .........NOT OK - Comparing GFSFLX.GrbF24 .........NOT OK - Comparing GFSPRS.GrbF00 .........NOT OK - Comparing GFSPRS.GrbF21 .........NOT OK - Comparing GFSPRS.GrbF24 .........NOT OK +0:The total amount of wall time = 178.255161 +0:The maximum resident set size (KB) = 1505192 + +Test 037 control_2threads_p8 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_rrtmgp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_p8_rrtmgp +Checking test 038 control_p8_rrtmgp results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......NOT OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......NOT OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......NOT OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......NOT OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......NOT OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......NOT OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......NOT OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......NOT OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......NOT OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......NOT OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......NOT OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......NOT OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......NOT OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......NOT OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......NOT OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......NOT OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......NOT OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......NOT OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......NOT OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......NOT OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......NOT OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......NOT OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......NOT OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......NOT OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......NOT OK - -0:The total amount of wall time = 271.728403 -0:The maximum resident set size (KB) = 1480712 - -Test 037 control_p8_rrtmgp FAIL Tries: 2 - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/merra2_thompson -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/merra2_thompson -Checking test 038 merra2_thompson results .... + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 245.275882 +0:The maximum resident set size (KB) = 1480740 + +Test 038 control_p8_rrtmgp PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/merra2_thompson +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/merra2_thompson +Checking test 039 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1815,15 +1891,15 @@ Checking test 038 merra2_thompson results .... Comparing 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.185056 -0:The maximum resident set size (KB) = 1429756 +0:The total amount of wall time = 205.938607 +0:The maximum resident set size (KB) = 1429764 -Test 038 merra2_thompson PASS +Test 039 merra2_thompson PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/regional_control -Checking test 039 regional_control results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/regional_control +Checking test 040 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1833,29 +1909,29 @@ Checking test 039 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 366.624847 -0:The maximum resident set size (KB) = 603152 +0:The total amount of wall time = 344.556918 +0:The maximum resident set size (KB) = 603156 -Test 039 regional_control PASS +Test 040 regional_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/regional_restart -Checking test 040 regional_restart results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/regional_restart +Checking test 041 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 197.430357 -0:The maximum resident set size (KB) = 593476 +0:The total amount of wall time = 175.722348 +0:The maximum resident set size (KB) = 593552 -Test 040 regional_restart PASS +Test 041 regional_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/regional_decomp -Checking test 041 regional_decomp results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/regional_decomp +Checking test 042 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1865,15 +1941,15 @@ Checking test 041 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 378.548556 -0:The maximum resident set size (KB) = 597228 +0:The total amount of wall time = 355.486435 +0:The maximum resident set size (KB) = 597236 -Test 041 regional_decomp PASS +Test 042 regional_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/regional_2threads -Checking test 042 regional_2threads results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/regional_2threads +Checking test 043 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1883,44 +1959,44 @@ Checking test 042 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 240.093846 -0:The maximum resident set size (KB) = 609752 +0:The total amount of wall time = 211.377373 +0:The maximum resident set size (KB) = 609772 -Test 042 regional_2threads PASS +Test 043 regional_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_noquilt -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/regional_noquilt -Checking test 043 regional_noquilt results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_noquilt +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/regional_noquilt +Checking test 044 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -0:The total amount of wall time = 387.625095 +0:The total amount of wall time = 366.804398 0:The maximum resident set size (KB) = 597604 -Test 043 regional_noquilt PASS +Test 044 regional_noquilt PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_netcdf_parallel -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/regional_netcdf_parallel -Checking test 044 regional_netcdf_parallel results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_netcdf_parallel +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/regional_netcdf_parallel +Checking test 045 regional_netcdf_parallel results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK Comparing phyf006.nc ............ALT CHECK......OK -0:The total amount of wall time = 348.182389 -0:The maximum resident set size (KB) = 595076 +0:The total amount of wall time = 340.073684 +0:The maximum resident set size (KB) = 595104 -Test 044 regional_netcdf_parallel PASS +Test 045 regional_netcdf_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/regional_2dwrtdecomp -Checking test 045 regional_2dwrtdecomp results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/regional_2dwrtdecomp +Checking test 046 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1930,15 +2006,15 @@ Checking test 045 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 367.152742 -0:The maximum resident set size (KB) = 603184 +0:The total amount of wall time = 341.303978 +0:The maximum resident set size (KB) = 603112 -Test 045 regional_2dwrtdecomp PASS +Test 046 regional_2dwrtdecomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/fv3_regional_wofs -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/regional_wofs -Checking test 046 regional_wofs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/fv3_regional_wofs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/regional_wofs +Checking test 047 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1948,15 +2024,15 @@ Checking test 046 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 430.042216 -0:The maximum resident set size (KB) = 274616 +0:The total amount of wall time = 423.402039 +0:The maximum resident set size (KB) = 274532 -Test 046 regional_wofs PASS +Test 047 regional_wofs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rap_control -Checking test 047 rap_control results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rap_control +Checking test 048 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2002,15 +2078,15 @@ Checking test 047 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 486.623250 -0:The maximum resident set size (KB) = 826352 +0:The total amount of wall time = 476.594972 +0:The maximum resident set size (KB) = 826128 -Test 047 rap_control PASS +Test 048 rap_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_spp_sppt_shum_skeb -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/regional_spp_sppt_shum_skeb -Checking test 048 regional_spp_sppt_shum_skeb results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_spp_sppt_shum_skeb +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/regional_spp_sppt_shum_skeb +Checking test 049 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -2020,15 +2096,15 @@ Checking test 048 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 345.343547 -0:The maximum resident set size (KB) = 949276 +0:The total amount of wall time = 324.832869 +0:The maximum resident set size (KB) = 949156 -Test 048 regional_spp_sppt_shum_skeb PASS +Test 049 regional_spp_sppt_shum_skeb PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rap_decomp -Checking test 049 rap_decomp results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rap_decomp +Checking test 050 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2074,15 +2150,15 @@ Checking test 049 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 512.114858 -0:The maximum resident set size (KB) = 823560 +0:The total amount of wall time = 502.614591 +0:The maximum resident set size (KB) = 823608 -Test 049 rap_decomp PASS +Test 050 rap_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rap_2threads -Checking test 050 rap_2threads results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rap_2threads +Checking test 051 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2128,15 +2204,15 @@ Checking test 050 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 471.651173 -0:The maximum resident set size (KB) = 894532 +0:The total amount of wall time = 464.918130 +0:The maximum resident set size (KB) = 892672 -Test 050 rap_2threads PASS +Test 051 rap_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rap_restart -Checking test 051 rap_restart results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rap_restart +Checking test 052 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2174,15 +2250,15 @@ Checking test 051 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 246.188191 -0:The maximum resident set size (KB) = 572872 +0:The total amount of wall time = 243.467605 +0:The maximum resident set size (KB) = 572892 -Test 051 rap_restart PASS +Test 052 rap_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rap_sfcdiff -Checking test 052 rap_sfcdiff results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rap_sfcdiff +Checking test 053 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2228,15 +2304,15 @@ Checking test 052 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 478.093529 -0:The maximum resident set size (KB) = 826532 +0:The total amount of wall time = 469.868210 +0:The maximum resident set size (KB) = 826424 -Test 052 rap_sfcdiff PASS +Test 053 rap_sfcdiff PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rap_sfcdiff_decomp -Checking test 053 rap_sfcdiff_decomp results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rap_sfcdiff_decomp +Checking test 054 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2282,15 +2358,15 @@ Checking test 053 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 507.490185 -0:The maximum resident set size (KB) = 825488 +0:The total amount of wall time = 496.095295 +0:The maximum resident set size (KB) = 825492 -Test 053 rap_sfcdiff_decomp PASS +Test 054 rap_sfcdiff_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rap_sfcdiff_restart -Checking test 054 rap_sfcdiff_restart results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rap_sfcdiff_restart +Checking test 055 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2328,15 +2404,15 @@ Checking test 054 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 357.199484 -0:The maximum resident set size (KB) = 570236 +0:The total amount of wall time = 351.347619 +0:The maximum resident set size (KB) = 570012 -Test 054 rap_sfcdiff_restart PASS +Test 055 rap_sfcdiff_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hrrr_control -Checking test 055 hrrr_control results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hrrr_control +Checking test 056 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2382,15 +2458,15 @@ Checking test 055 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 459.186112 -0:The maximum resident set size (KB) = 821280 +0:The total amount of wall time = 450.438606 +0:The maximum resident set size (KB) = 821232 -Test 055 hrrr_control PASS +Test 056 hrrr_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hrrr_control_decomp -Checking test 056 hrrr_control_decomp results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hrrr_control_decomp +Checking test 057 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2436,15 +2512,15 @@ Checking test 056 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 481.449172 -0:The maximum resident set size (KB) = 820304 +0:The total amount of wall time = 470.187691 +0:The maximum resident set size (KB) = 820272 -Test 056 hrrr_control_decomp PASS +Test 057 hrrr_control_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hrrr_control_2threads -Checking test 057 hrrr_control_2threads results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hrrr_control_2threads +Checking test 058 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2490,15 +2566,15 @@ Checking test 057 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 438.933029 -0:The maximum resident set size (KB) = 887888 +0:The total amount of wall time = 433.263719 +0:The maximum resident set size (KB) = 887436 -Test 057 hrrr_control_2threads PASS +Test 058 hrrr_control_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hrrr_control_restart -Checking test 058 hrrr_control_restart results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hrrr_control_restart +Checking test 059 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2536,15 +2612,15 @@ Checking test 058 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 340.208400 -0:The maximum resident set size (KB) = 568716 +0:The total amount of wall time = 340.978060 +0:The maximum resident set size (KB) = 568804 -Test 058 hrrr_control_restart PASS +Test 059 hrrr_control_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_v1beta -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rrfs_v1beta -Checking test 059 rrfs_v1beta results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1beta +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rrfs_v1beta +Checking test 060 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2590,15 +2666,15 @@ Checking test 059 rrfs_v1beta results .... Comparing 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.158066 -0:The maximum resident set size (KB) = 819928 +0:The total amount of wall time = 462.804237 +0:The maximum resident set size (KB) = 820012 -Test 059 rrfs_v1beta PASS +Test 060 rrfs_v1beta PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_v1nssl -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rrfs_v1nssl -Checking test 060 rrfs_v1nssl results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1nssl +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rrfs_v1nssl +Checking test 061 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2612,15 +2688,15 @@ Checking test 060 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 573.759807 -0:The maximum resident set size (KB) = 508256 +0:The total amount of wall time = 572.240929 +0:The maximum resident set size (KB) = 508236 -Test 060 rrfs_v1nssl PASS +Test 061 rrfs_v1nssl PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rrfs_v1nssl_nohailnoccn -Checking test 061 rrfs_v1nssl_nohailnoccn results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rrfs_v1nssl_nohailnoccn +Checking test 062 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2634,15 +2710,15 @@ Checking test 061 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 557.121924 -0:The maximum resident set size (KB) = 501320 +0:The total amount of wall time = 552.951471 +0:The maximum resident set size (KB) = 501328 -Test 061 rrfs_v1nssl_nohailnoccn PASS +Test 062 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rrfs_conus13km_hrrr_warm -Checking test 062 rrfs_conus13km_hrrr_warm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rrfs_conus13km_hrrr_warm +Checking test 063 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2650,15 +2726,15 @@ Checking test 062 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 139.519677 -0:The maximum resident set size (KB) = 639004 +0:The total amount of wall time = 127.891040 +0:The maximum resident set size (KB) = 639128 -Test 062 rrfs_conus13km_hrrr_warm PASS +Test 063 rrfs_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rrfs_smoke_conus13km_hrrr_warm -Checking test 063 rrfs_smoke_conus13km_hrrr_warm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rrfs_smoke_conus13km_hrrr_warm +Checking test 064 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2666,15 +2742,15 @@ Checking test 063 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 150.406111 -0:The maximum resident set size (KB) = 653076 +0:The total amount of wall time = 144.427211 +0:The maximum resident set size (KB) = 652900 -Test 063 rrfs_smoke_conus13km_hrrr_warm PASS +Test 064 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rrfs_conus13km_radar_tten_warm -Checking test 064 rrfs_conus13km_radar_tten_warm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rrfs_conus13km_radar_tten_warm +Checking test 065 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2682,15 +2758,15 @@ Checking test 064 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 136.777228 -0:The maximum resident set size (KB) = 641256 +0:The total amount of wall time = 129.149558 +0:The maximum resident set size (KB) = 641228 -Test 064 rrfs_conus13km_radar_tten_warm PASS +Test 065 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rrfs_conus13km_hrrr_warm_2threads -Checking test 065 rrfs_conus13km_hrrr_warm_2threads results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rrfs_conus13km_hrrr_warm_2threads +Checking test 066 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2698,15 +2774,15 @@ Checking test 065 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 89.138083 -0:The maximum resident set size (KB) = 655520 +0:The total amount of wall time = 81.714783 +0:The maximum resident set size (KB) = 655560 -Test 065 rrfs_conus13km_hrrr_warm_2threads PASS +Test 066 rrfs_conus13km_hrrr_warm_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rrfs_conus13km_radar_tten_warm_2threads -Checking test 066 rrfs_conus13km_radar_tten_warm_2threads results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rrfs_conus13km_radar_tten_warm_2threads +Checking test 067 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2714,15 +2790,15 @@ Checking test 066 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 91.156316 -0:The maximum resident set size (KB) = 658456 +0:The total amount of wall time = 82.059368 +0:The maximum resident set size (KB) = 658700 -Test 066 rrfs_conus13km_radar_tten_warm_2threads PASS +Test 067 rrfs_conus13km_radar_tten_warm_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_csawmg -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_csawmg -Checking test 067 control_csawmg results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmg +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_csawmg +Checking test 068 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2732,15 +2808,15 @@ Checking test 067 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 409.938168 -0:The maximum resident set size (KB) = 529008 +0:The total amount of wall time = 396.816318 +0:The maximum resident set size (KB) = 528988 -Test 067 control_csawmg PASS +Test 068 control_csawmg PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_csawmgt -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_csawmgt -Checking test 068 control_csawmgt results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmgt +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_csawmgt +Checking test 069 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2750,15 +2826,15 @@ Checking test 068 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 405.133119 -0:The maximum resident set size (KB) = 528996 +0:The total amount of wall time = 377.641087 +0:The maximum resident set size (KB) = 529024 -Test 068 control_csawmgt PASS +Test 069 control_csawmgt PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_ras -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_ras -Checking test 069 control_ras results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_ras +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_ras +Checking test 070 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2768,55 +2844,127 @@ Checking test 069 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 209.406271 -0:The maximum resident set size (KB) = 487800 +0:The total amount of wall time = 204.167107 +0:The maximum resident set size (KB) = 487632 + +Test 070 control_ras PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wam +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_wam +Checking test 071 control_wam results .... + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK + +0:The total amount of wall time = 128.554951 +0:The maximum resident set size (KB) = 205452 -Test 069 control_ras PASS +Test 071 control_wam PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_wam -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_wam -Checking test 070 control_wam results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_faster +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_p8_faster +Checking test 072 control_p8_faster results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 170.775495 +0:The maximum resident set size (KB) = 1422792 + +Test 072 control_p8_faster PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control_faster +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/regional_control_faster +Checking test 073 regional_control_faster results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 135.274320 -0:The maximum resident set size (KB) = 205672 +0:The total amount of wall time = 321.816301 +0:The maximum resident set size (KB) = 603020 -Test 070 control_wam PASS +Test 073 regional_control_faster PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rrfs_conus13km_hrrr_warm_debug -Checking test 071 rrfs_conus13km_hrrr_warm_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rrfs_conus13km_hrrr_warm_debug +Checking test 074 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 778.955751 -0:The maximum resident set size (KB) = 672244 +0:The total amount of wall time = 782.075153 +0:The maximum resident set size (KB) = 672196 -Test 071 rrfs_conus13km_hrrr_warm_debug PASS +Test 074 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rrfs_conus13km_radar_tten_warm_debug -Checking test 072 rrfs_conus13km_radar_tten_warm_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rrfs_conus13km_radar_tten_warm_debug +Checking test 075 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 779.455808 -0:The maximum resident set size (KB) = 673744 +0:The total amount of wall time = 765.432647 +0:The maximum resident set size (KB) = 673992 -Test 072 rrfs_conus13km_radar_tten_warm_debug PASS +Test 075 rrfs_conus13km_radar_tten_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_CubedSphereGrid_debug -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_CubedSphereGrid_debug -Checking test 073 control_CubedSphereGrid_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_CubedSphereGrid_debug +Checking test 076 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -2842,335 +2990,335 @@ Checking test 073 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -0:The total amount of wall time = 181.185422 +0:The total amount of wall time = 175.172002 0:The maximum resident set size (KB) = 621536 -Test 073 control_CubedSphereGrid_debug PASS +Test 076 control_CubedSphereGrid_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_wrtGauss_netcdf_parallel_debug -Checking test 074 control_wrtGauss_netcdf_parallel_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_wrtGauss_netcdf_parallel_debug +Checking test 077 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 172.260001 -0:The maximum resident set size (KB) = 621312 +0:The total amount of wall time = 162.981028 +0:The maximum resident set size (KB) = 621404 -Test 074 control_wrtGauss_netcdf_parallel_debug PASS +Test 077 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_stochy_debug -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_stochy_debug -Checking test 075 control_stochy_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_stochy_debug +Checking test 078 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 192.263202 -0:The maximum resident set size (KB) = 624980 +0:The total amount of wall time = 182.777546 +0:The maximum resident set size (KB) = 624960 -Test 075 control_stochy_debug PASS +Test 078 control_stochy_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_lndp_debug -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_lndp_debug -Checking test 076 control_lndp_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_lndp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_lndp_debug +Checking test 079 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 175.337303 -0:The maximum resident set size (KB) = 627180 +0:The total amount of wall time = 165.865602 +0:The maximum resident set size (KB) = 627200 -Test 076 control_lndp_debug PASS +Test 079 control_lndp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_csawmg_debug -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_csawmg_debug -Checking test 077 control_csawmg_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmg_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_csawmg_debug +Checking test 080 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 267.033844 -0:The maximum resident set size (KB) = 671376 +0:The total amount of wall time = 256.479685 +0:The maximum resident set size (KB) = 671324 -Test 077 control_csawmg_debug PASS +Test 080 control_csawmg_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_csawmgt_debug -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_csawmgt_debug -Checking test 078 control_csawmgt_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmgt_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_csawmgt_debug +Checking test 081 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 260.397392 -0:The maximum resident set size (KB) = 671132 +0:The total amount of wall time = 252.946069 +0:The maximum resident set size (KB) = 671068 -Test 078 control_csawmgt_debug PASS +Test 081 control_csawmgt_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_ras_debug -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_ras_debug -Checking test 079 control_ras_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_ras_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_ras_debug +Checking test 082 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 176.863358 -0:The maximum resident set size (KB) = 632616 +0:The total amount of wall time = 166.888112 +0:The maximum resident set size (KB) = 632380 -Test 079 control_ras_debug PASS +Test 082 control_ras_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_diag_debug -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_diag_debug -Checking test 080 control_diag_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_diag_debug +Checking test 083 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 177.397186 -0:The maximum resident set size (KB) = 677812 +0:The total amount of wall time = 168.771127 +0:The maximum resident set size (KB) = 677988 -Test 080 control_diag_debug PASS +Test 083 control_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_debug_p8 -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_debug_p8 -Checking test 081 control_debug_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_debug_p8 +Checking test 084 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 194.280206 +0:The total amount of wall time = 182.516230 0:The maximum resident set size (KB) = 1444192 -Test 081 control_debug_p8 PASS +Test 084 control_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_debug -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/regional_debug -Checking test 082 regional_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/regional_debug +Checking test 085 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 1054.249286 -0:The maximum resident set size (KB) = 628944 +0:The total amount of wall time = 1040.203057 +0:The maximum resident set size (KB) = 628948 -Test 082 regional_debug PASS +Test 085 regional_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_debug -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rap_control_debug -Checking test 083 rap_control_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rap_control_debug +Checking test 086 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 301.366019 -0:The maximum resident set size (KB) = 990100 +0:The total amount of wall time = 295.070471 +0:The maximum resident set size (KB) = 989928 -Test 083 rap_control_debug PASS +Test 086 rap_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_debug -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hrrr_control_debug -Checking test 084 hrrr_control_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hrrr_control_debug +Checking test 087 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 299.649563 -0:The maximum resident set size (KB) = 988936 +0:The total amount of wall time = 290.063815 +0:The maximum resident set size (KB) = 988752 -Test 084 hrrr_control_debug PASS +Test 087 hrrr_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_debug -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rap_unified_drag_suite_debug -Checking test 085 rap_unified_drag_suite_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rap_unified_drag_suite_debug +Checking test 088 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 303.203349 -0:The maximum resident set size (KB) = 989908 +0:The total amount of wall time = 295.610239 +0:The maximum resident set size (KB) = 989888 -Test 085 rap_unified_drag_suite_debug PASS +Test 088 rap_unified_drag_suite_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_diag_debug -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rap_diag_debug -Checking test 086 rap_diag_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rap_diag_debug +Checking test 089 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 316.875091 -0:The maximum resident set size (KB) = 1074264 +0:The total amount of wall time = 308.696843 +0:The maximum resident set size (KB) = 1074148 -Test 086 rap_diag_debug PASS +Test 089 rap_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rap_cires_ugwp_debug -Checking test 087 rap_cires_ugwp_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rap_cires_ugwp_debug +Checking test 090 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 311.912972 -0:The maximum resident set size (KB) = 988608 +0:The total amount of wall time = 300.259180 +0:The maximum resident set size (KB) = 988628 -Test 087 rap_cires_ugwp_debug PASS +Test 090 rap_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rap_unified_ugwp_debug -Checking test 088 rap_unified_ugwp_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rap_unified_ugwp_debug +Checking test 091 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 307.876625 -0:The maximum resident set size (KB) = 991952 +0:The total amount of wall time = 300.759613 +0:The maximum resident set size (KB) = 991912 -Test 088 rap_unified_ugwp_debug PASS +Test 091 rap_unified_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_lndp_debug -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rap_lndp_debug -Checking test 089 rap_lndp_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_lndp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rap_lndp_debug +Checking test 092 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 308.394891 -0:The maximum resident set size (KB) = 990576 +0:The total amount of wall time = 297.447274 +0:The maximum resident set size (KB) = 990764 -Test 089 rap_lndp_debug PASS +Test 092 rap_lndp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_flake_debug -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rap_flake_debug -Checking test 090 rap_flake_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_flake_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rap_flake_debug +Checking test 093 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 305.642947 -0:The maximum resident set size (KB) = 990040 +0:The total amount of wall time = 296.749096 +0:The maximum resident set size (KB) = 989964 -Test 090 rap_flake_debug PASS +Test 093 rap_flake_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_progcld_thompson_debug -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rap_progcld_thompson_debug -Checking test 091 rap_progcld_thompson_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_progcld_thompson_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rap_progcld_thompson_debug +Checking test 094 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 305.401718 -0:The maximum resident set size (KB) = 989872 +0:The total amount of wall time = 294.823381 +0:The maximum resident set size (KB) = 989840 -Test 091 rap_progcld_thompson_debug PASS +Test 094 rap_progcld_thompson_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_noah_debug -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rap_noah_debug -Checking test 092 rap_noah_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_noah_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rap_noah_debug +Checking test 095 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 303.087811 -0:The maximum resident set size (KB) = 988452 +0:The total amount of wall time = 288.798690 +0:The maximum resident set size (KB) = 988496 -Test 092 rap_noah_debug PASS +Test 095 rap_noah_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_sfcdiff_debug -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rap_sfcdiff_debug -Checking test 093 rap_sfcdiff_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rap_sfcdiff_debug +Checking test 096 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 304.635932 -0:The maximum resident set size (KB) = 991208 +0:The total amount of wall time = 295.600824 +0:The maximum resident set size (KB) = 991336 -Test 093 rap_sfcdiff_debug PASS +Test 096 rap_sfcdiff_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 094 rap_noah_sfcdiff_cires_ugwp_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 097 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 492.924225 -0:The maximum resident set size (KB) = 989428 +0:The total amount of wall time = 479.818064 +0:The maximum resident set size (KB) = 989440 -Test 094 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 097 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_v1beta_debug -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rrfs_v1beta_debug -Checking test 095 rrfs_v1beta_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1beta_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rrfs_v1beta_debug +Checking test 098 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 302.236983 -0:The maximum resident set size (KB) = 986376 +0:The total amount of wall time = 291.424848 +0:The maximum resident set size (KB) = 986352 -Test 095 rrfs_v1beta_debug PASS +Test 098 rrfs_v1beta_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_wam_debug -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_wam_debug -Checking test 096 control_wam_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wam_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_wam_debug +Checking test 099 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 304.906315 -0:The maximum resident set size (KB) = 238912 +0:The total amount of wall time = 297.511233 +0:The maximum resident set size (KB) = 239064 -Test 096 control_wam_debug PASS +Test 099 control_wam_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/regional_spp_sppt_shum_skeb_dyn32_phy32 -Checking test 097 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 100 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -3180,15 +3328,15 @@ Checking test 097 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 314.243173 -0:The maximum resident set size (KB) = 848436 +0:The total amount of wall time = 306.565424 +0:The maximum resident set size (KB) = 848296 -Test 097 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS +Test 100 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rap_control_dyn32_phy32 -Checking test 098 rap_control_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rap_control_dyn32_phy32 +Checking test 101 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3234,15 +3382,15 @@ Checking test 098 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 391.855765 -0:The maximum resident set size (KB) = 707128 +0:The total amount of wall time = 420.274253 +0:The maximum resident set size (KB) = 707012 -Test 098 rap_control_dyn32_phy32 PASS +Test 101 rap_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hrrr_control_dyn32_phy32 -Checking test 099 hrrr_control_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hrrr_control_dyn32_phy32 +Checking test 102 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3288,15 +3436,15 @@ Checking test 099 hrrr_control_dyn32_phy32 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 = 211.383526 -0:The maximum resident set size (KB) = 705520 +0:The total amount of wall time = 201.013142 +0:The maximum resident set size (KB) = 705432 -Test 099 hrrr_control_dyn32_phy32 PASS +Test 102 hrrr_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rap_2threads_dyn32_phy32 -Checking test 100 rap_2threads_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rap_2threads_dyn32_phy32 +Checking test 103 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3342,15 +3490,15 @@ Checking test 100 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 382.149948 -0:The maximum resident set size (KB) = 761720 +0:The total amount of wall time = 373.639096 +0:The maximum resident set size (KB) = 757200 -Test 100 rap_2threads_dyn32_phy32 PASS +Test 103 rap_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hrrr_control_2threads_dyn32_phy32 -Checking test 101 hrrr_control_2threads_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hrrr_control_2threads_dyn32_phy32 +Checking test 104 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3396,15 +3544,15 @@ Checking test 101 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 208.188858 -0:The maximum resident set size (KB) = 758412 +0:The total amount of wall time = 200.714289 +0:The maximum resident set size (KB) = 758400 -Test 101 hrrr_control_2threads_dyn32_phy32 PASS +Test 104 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hrrr_control_decomp_dyn32_phy32 -Checking test 102 hrrr_control_decomp_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hrrr_control_decomp_dyn32_phy32 +Checking test 105 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3450,15 +3598,15 @@ Checking test 102 hrrr_control_decomp_dyn32_phy32 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 = 221.829004 -0:The maximum resident set size (KB) = 704028 +0:The total amount of wall time = 214.956014 +0:The maximum resident set size (KB) = 703956 -Test 102 hrrr_control_decomp_dyn32_phy32 PASS +Test 105 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rap_restart_dyn32_phy32 -Checking test 103 rap_restart_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rap_restart_dyn32_phy32 +Checking test 106 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3496,15 +3644,15 @@ Checking test 103 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 296.145710 -0:The maximum resident set size (KB) = 544620 +0:The total amount of wall time = 290.381455 +0:The maximum resident set size (KB) = 544784 -Test 103 rap_restart_dyn32_phy32 PASS +Test 106 rap_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hrrr_control_restart_dyn32_phy32 -Checking test 104 hrrr_control_restart_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hrrr_control_restart_dyn32_phy32 +Checking test 107 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3542,15 +3690,15 @@ Checking test 104 hrrr_control_restart_dyn32_phy32 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 = 108.391744 -0:The maximum resident set size (KB) = 536944 +0:The total amount of wall time = 105.121739 +0:The maximum resident set size (KB) = 536724 -Test 104 hrrr_control_restart_dyn32_phy32 PASS +Test 107 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_dyn64_phy32 -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rap_control_dyn64_phy32 -Checking test 105 rap_control_dyn64_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn64_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rap_control_dyn64_phy32 +Checking test 108 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3596,82 +3744,82 @@ Checking test 105 rap_control_dyn64_phy32 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 = 272.572900 -0:The maximum resident set size (KB) = 726848 +0:The total amount of wall time = 267.283074 +0:The maximum resident set size (KB) = 726904 -Test 105 rap_control_dyn64_phy32 PASS +Test 108 rap_control_dyn64_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rap_control_debug_dyn32_phy32 -Checking test 106 rap_control_debug_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rap_control_debug_dyn32_phy32 +Checking test 109 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 298.143614 -0:The maximum resident set size (KB) = 876120 +0:The total amount of wall time = 290.893100 +0:The maximum resident set size (KB) = 876152 -Test 106 rap_control_debug_dyn32_phy32 PASS +Test 109 rap_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hrrr_control_debug_dyn32_phy32 -Checking test 107 hrrr_control_debug_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hrrr_control_debug_dyn32_phy32 +Checking test 110 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 293.423231 -0:The maximum resident set size (KB) = 874272 +0:The total amount of wall time = 285.577056 +0:The maximum resident set size (KB) = 874344 -Test 107 hrrr_control_debug_dyn32_phy32 PASS +Test 110 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rap_control_dyn64_phy32_debug -Checking test 108 rap_control_dyn64_phy32_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug_dyn64_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rap_control_dyn64_phy32_debug +Checking test 111 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 302.454339 -0:The maximum resident set size (KB) = 893512 +0:The total amount of wall time = 294.938910 +0:The maximum resident set size (KB) = 893436 -Test 108 rap_control_dyn64_phy32_debug PASS +Test 111 rap_control_dyn64_phy32_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_atm -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hafs_regional_atm -Checking test 109 hafs_regional_atm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hafs_regional_atm +Checking test 112 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -0:The total amount of wall time = 272.658879 -0:The maximum resident set size (KB) = 739888 +0:The total amount of wall time = 261.575767 +0:The maximum resident set size (KB) = 739256 -Test 109 hafs_regional_atm PASS +Test 112 hafs_regional_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hafs_regional_atm_thompson_gfdlsf -Checking test 110 hafs_regional_atm_thompson_gfdlsf results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hafs_regional_atm_thompson_gfdlsf +Checking test 113 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -0:The total amount of wall time = 312.815826 -0:The maximum resident set size (KB) = 1091528 +0:The total amount of wall time = 288.951753 +0:The maximum resident set size (KB) = 1090792 -Test 110 hafs_regional_atm_thompson_gfdlsf PASS +Test 113 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_atm_ocn -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hafs_regional_atm_ocn -Checking test 111 hafs_regional_atm_ocn results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_ocn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hafs_regional_atm_ocn +Checking test 114 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -3679,15 +3827,15 @@ Checking test 111 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 483.082674 -0:The maximum resident set size (KB) = 738468 +0:The total amount of wall time = 425.216095 +0:The maximum resident set size (KB) = 738620 -Test 111 hafs_regional_atm_ocn PASS +Test 114 hafs_regional_atm_ocn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_atm_wav -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hafs_regional_atm_wav -Checking test 112 hafs_regional_atm_wav results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_wav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hafs_regional_atm_wav +Checking test 115 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK @@ -3695,15 +3843,15 @@ Checking test 112 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 1086.474166 -0:The maximum resident set size (KB) = 767040 +0:The total amount of wall time = 985.167845 +0:The maximum resident set size (KB) = 765892 -Test 112 hafs_regional_atm_wav PASS +Test 115 hafs_regional_atm_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_atm_ocn_wav -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hafs_regional_atm_ocn_wav -Checking test 113 hafs_regional_atm_ocn_wav results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_ocn_wav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hafs_regional_atm_ocn_wav +Checking test 116 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -3713,29 +3861,29 @@ Checking test 113 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 1137.979045 -0:The maximum resident set size (KB) = 790172 +0:The total amount of wall time = 1096.268846 +0:The maximum resident set size (KB) = 789812 -Test 113 hafs_regional_atm_ocn_wav PASS +Test 116 hafs_regional_atm_ocn_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_1nest_atm -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hafs_regional_1nest_atm -Checking test 114 hafs_regional_1nest_atm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hafs_regional_1nest_atm +Checking test 117 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 381.325358 -0:The maximum resident set size (KB) = 293444 +0:The total amount of wall time = 375.550525 +0:The maximum resident set size (KB) = 293516 -Test 114 hafs_regional_1nest_atm PASS +Test 117 hafs_regional_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hafs_regional_telescopic_2nests_atm -Checking test 115 hafs_regional_telescopic_2nests_atm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hafs_regional_telescopic_2nests_atm +Checking test 118 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -3743,29 +3891,29 @@ Checking test 115 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -0:The total amount of wall time = 431.130242 -0:The maximum resident set size (KB) = 308096 +0:The total amount of wall time = 417.635517 +0:The maximum resident set size (KB) = 309060 -Test 115 hafs_regional_telescopic_2nests_atm PASS +Test 118 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_global_1nest_atm -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hafs_global_1nest_atm -Checking test 116 hafs_global_1nest_atm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hafs_global_1nest_atm +Checking test 119 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 170.044068 -0:The maximum resident set size (KB) = 206108 +0:The total amount of wall time = 174.652102 +0:The maximum resident set size (KB) = 206000 -Test 116 hafs_global_1nest_atm PASS +Test 119 hafs_global_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_global_multiple_4nests_atm -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hafs_global_multiple_4nests_atm -Checking test 117 hafs_global_multiple_4nests_atm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_multiple_4nests_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hafs_global_multiple_4nests_atm +Checking test 120 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -3782,15 +3930,15 @@ Checking test 117 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -0:The total amount of wall time = 495.214303 -0:The maximum resident set size (KB) = 292528 +0:The total amount of wall time = 490.100179 +0:The maximum resident set size (KB) = 292492 -Test 117 hafs_global_multiple_4nests_atm PASS +Test 120 hafs_global_multiple_4nests_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hafs_regional_specified_moving_1nest_atm -Checking test 118 hafs_regional_specified_moving_1nest_atm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hafs_regional_specified_moving_1nest_atm +Checking test 121 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -3798,29 +3946,29 @@ Checking test 118 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -0:The total amount of wall time = 248.009649 -0:The maximum resident set size (KB) = 306588 +0:The total amount of wall time = 234.207271 +0:The maximum resident set size (KB) = 306368 -Test 118 hafs_regional_specified_moving_1nest_atm PASS +Test 121 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hafs_regional_storm_following_1nest_atm -Checking test 119 hafs_regional_storm_following_1nest_atm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hafs_regional_storm_following_1nest_atm +Checking test 122 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 231.149717 -0:The maximum resident set size (KB) = 306404 +0:The total amount of wall time = 222.709775 +0:The maximum resident set size (KB) = 306660 -Test 119 hafs_regional_storm_following_1nest_atm PASS +Test 122 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hafs_regional_storm_following_1nest_atm_ocn -Checking test 120 hafs_regional_storm_following_1nest_atm_ocn results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hafs_regional_storm_following_1nest_atm_ocn +Checking test 123 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -3828,43 +3976,43 @@ Checking test 120 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -0:The total amount of wall time = 284.316249 -0:The maximum resident set size (KB) = 353640 +0:The total amount of wall time = 279.546829 +0:The maximum resident set size (KB) = 353680 -Test 120 hafs_regional_storm_following_1nest_atm_ocn PASS +Test 123 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_global_storm_following_1nest_atm -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hafs_global_storm_following_1nest_atm -Checking test 121 hafs_global_storm_following_1nest_atm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_storm_following_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hafs_global_storm_following_1nest_atm +Checking test 124 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 68.142070 -0:The maximum resident set size (KB) = 222124 +0:The total amount of wall time = 66.446231 +0:The maximum resident set size (KB) = 222128 -Test 121 hafs_global_storm_following_1nest_atm PASS +Test 124 hafs_global_storm_following_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hafs_regional_storm_following_1nest_atm_ocn_debug -Checking test 122 hafs_regional_storm_following_1nest_atm_ocn_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hafs_regional_storm_following_1nest_atm_ocn_debug +Checking test 125 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 831.080753 -0:The maximum resident set size (KB) = 386948 +0:The total amount of wall time = 821.424240 +0:The maximum resident set size (KB) = 387180 -Test 122 hafs_regional_storm_following_1nest_atm_ocn_debug PASS +Test 125 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hafs_regional_storm_following_1nest_atm_ocn_wav -Checking test 123 hafs_regional_storm_following_1nest_atm_ocn_wav results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 126 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -3874,162 +4022,129 @@ Checking test 123 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -0:The total amount of wall time = 767.632658 -0:The maximum resident set size (KB) = 416112 +0:The total amount of wall time = 759.948828 +0:The maximum resident set size (KB) = 416860 -Test 123 hafs_regional_storm_following_1nest_atm_ocn_wav PASS +Test 126 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_docn -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hafs_regional_docn -Checking test 124 hafs_regional_docn results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_docn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hafs_regional_docn +Checking test 127 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 407.414611 -0:The maximum resident set size (KB) = 754428 +0:The total amount of wall time = 382.603691 +0:The maximum resident set size (KB) = 754380 -Test 124 hafs_regional_docn PASS +Test 127 hafs_regional_docn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_docn_oisst -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hafs_regional_docn_oisst -Checking test 125 hafs_regional_docn_oisst results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_docn_oisst +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hafs_regional_docn_oisst +Checking test 128 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 405.101050 -0:The maximum resident set size (KB) = 733816 +0:The total amount of wall time = 394.246436 +0:The maximum resident set size (KB) = 733428 -Test 125 hafs_regional_docn_oisst PASS +Test 128 hafs_regional_docn_oisst PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_datm_cdeps -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hafs_regional_datm_cdeps -Checking test 126 hafs_regional_datm_cdeps results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_datm_cdeps +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hafs_regional_datm_cdeps +Checking test 129 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -0:The total amount of wall time = 1164.884201 -0:The maximum resident set size (KB) = 888168 +0:The total amount of wall time = 1281.393566 +0:The maximum resident set size (KB) = 887892 -Test 126 hafs_regional_datm_cdeps PASS +Test 129 hafs_regional_datm_cdeps PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/datm_cdeps_control_cfsr -Checking test 127 datm_cdeps_control_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/datm_cdeps_control_cfsr +Checking test 130 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 165.603420 -0:The maximum resident set size (KB) = 716716 +0:The total amount of wall time = 162.632253 +0:The maximum resident set size (KB) = 728048 -Test 127 datm_cdeps_control_cfsr PASS +Test 130 datm_cdeps_control_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/datm_cdeps_restart_cfsr -Checking test 128 datm_cdeps_restart_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/datm_cdeps_restart_cfsr +Checking test 131 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 101.349015 -0:The maximum resident set size (KB) = 716288 - -Test 128 datm_cdeps_restart_cfsr PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_control_gefs -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/datm_cdeps_control_gefs -Checking test 129 datm_cdeps_control_gefs 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 = 97.812130 +0:The maximum resident set size (KB) = 715948 -0:The total amount of wall time = 164.977500 -0:The maximum resident set size (KB) = 607492 +Test 131 datm_cdeps_restart_cfsr PASS -Test 129 datm_cdeps_control_gefs PASS +Test 132 datm_cdeps_control_gefs FAIL -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_iau_gefs -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/datm_cdeps_iau_gefs -Checking test 130 datm_cdeps_iau_gefs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_iau_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/datm_cdeps_iau_gefs +Checking test 133 datm_cdeps_iau_gefs 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 = 164.205007 +0:The total amount of wall time = 164.867810 0:The maximum resident set size (KB) = 607472 -Test 130 datm_cdeps_iau_gefs PASS +Test 133 datm_cdeps_iau_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_stochy_gefs -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/datm_cdeps_stochy_gefs -Checking test 131 datm_cdeps_stochy_gefs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_stochy_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/datm_cdeps_stochy_gefs +Checking test 134 datm_cdeps_stochy_gefs 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 = 166.737989 +0:The total amount of wall time = 159.847923 0:The maximum resident set size (KB) = 607456 -Test 131 datm_cdeps_stochy_gefs PASS - +Test 134 datm_cdeps_stochy_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_ciceC_cfsr -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/datm_cdeps_ciceC_cfsr -Checking test 132 datm_cdeps_ciceC_cfsr results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK +Test 135 datm_cdeps_ciceC_cfsr FAIL -0:The total amount of wall time = 172.977018 -0:The maximum resident set size (KB) = 727772 -Test 132 datm_cdeps_ciceC_cfsr PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_bulk_cfsr -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/datm_cdeps_bulk_cfsr -Checking test 133 datm_cdeps_bulk_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_bulk_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/datm_cdeps_bulk_cfsr +Checking test 136 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 167.546006 -0:The maximum resident set size (KB) = 716700 - -Test 133 datm_cdeps_bulk_cfsr PASS - +0:The total amount of wall time = 165.629424 +0:The maximum resident set size (KB) = 716672 -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_bulk_gefs -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/datm_cdeps_bulk_gefs -Checking test 134 datm_cdeps_bulk_gefs 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 +Test 136 datm_cdeps_bulk_cfsr PASS -0:The total amount of wall time = 160.232284 -0:The maximum resident set size (KB) = 607444 +Test 137 datm_cdeps_bulk_gefs FAIL -Test 134 datm_cdeps_bulk_gefs PASS - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_mx025_cfsr -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/datm_cdeps_mx025_cfsr -Checking test 135 datm_cdeps_mx025_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_mx025_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/datm_cdeps_mx025_cfsr +Checking test 138 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4037,15 +4152,15 @@ Checking test 135 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 864.068864 -0:The maximum resident set size (KB) = 514396 +0:The total amount of wall time = 699.571322 +0:The maximum resident set size (KB) = 514276 -Test 135 datm_cdeps_mx025_cfsr PASS +Test 138 datm_cdeps_mx025_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_mx025_gefs -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/datm_cdeps_mx025_gefs -Checking test 136 datm_cdeps_mx025_gefs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_mx025_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/datm_cdeps_mx025_gefs +Checking test 139 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4053,65 +4168,78 @@ Checking test 136 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 908.030744 -0:The maximum resident set size (KB) = 494796 +0:The total amount of wall time = 696.776064 +0:The maximum resident set size (KB) = 494792 -Test 136 datm_cdeps_mx025_gefs PASS +Test 139 datm_cdeps_mx025_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/datm_cdeps_multiple_files_cfsr -Checking test 137 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/datm_cdeps_multiple_files_cfsr +Checking test 140 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 170.708338 -0:The maximum resident set size (KB) = 727824 +0:The total amount of wall time = 161.416812 +0:The maximum resident set size (KB) = 716740 -Test 137 datm_cdeps_multiple_files_cfsr PASS +Test 140 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/datm_cdeps_3072x1536_cfsr -Checking test 138 datm_cdeps_3072x1536_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/datm_cdeps_3072x1536_cfsr +Checking test 141 datm_cdeps_3072x1536_cfsr 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 = 274.897388 -0:The maximum resident set size (KB) = 1942008 +0:The total amount of wall time = 257.429581 +0:The maximum resident set size (KB) = 1941516 -Test 138 datm_cdeps_3072x1536_cfsr PASS +Test 141 datm_cdeps_3072x1536_cfsr PASS Tries: 2 -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_gfs -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/datm_cdeps_gfs -Checking test 139 datm_cdeps_gfs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_gfs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/datm_cdeps_gfs +Checking test 142 datm_cdeps_gfs 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 = 275.043220 -0:The maximum resident set size (KB) = 1942052 +0:The total amount of wall time = 267.957695 +0:The maximum resident set size (KB) = 1941316 -Test 139 datm_cdeps_gfs PASS +Test 142 datm_cdeps_gfs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_debug_cfsr -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/datm_cdeps_debug_cfsr -Checking test 140 datm_cdeps_debug_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_debug_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/datm_cdeps_debug_cfsr +Checking test 143 datm_cdeps_debug_cfsr 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 = 461.874728 -0:The maximum resident set size (KB) = 717724 +0:The total amount of wall time = 459.559580 +0:The maximum resident set size (KB) = 706716 + +Test 143 datm_cdeps_debug_cfsr PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr_faster +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/datm_cdeps_control_cfsr_faster +Checking test 144 datm_cdeps_control_cfsr_faster results .... + Comparing RESTART/20111002.000000.MOM.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 = 168.441916 +0:The maximum resident set size (KB) = 716796 -Test 140 datm_cdeps_debug_cfsr PASS +Test 144 datm_cdeps_control_cfsr_faster PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/datm_cdeps_lnd_gswp3 -Checking test 141 datm_cdeps_lnd_gswp3 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_lnd_gswp3 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/datm_cdeps_lnd_gswp3 +Checking test 145 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4119,15 +4247,15 @@ Checking test 141 datm_cdeps_lnd_gswp3 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 = 11.445167 -0:The maximum resident set size (KB) = 208244 +0:The total amount of wall time = 10.302166 +0:The maximum resident set size (KB) = 224552 -Test 141 datm_cdeps_lnd_gswp3 PASS +Test 145 datm_cdeps_lnd_gswp3 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/datm_cdeps_lnd_gswp3_rst -Checking test 142 datm_cdeps_lnd_gswp3_rst results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_lnd_gswp3 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/datm_cdeps_lnd_gswp3_rst +Checking test 146 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4135,15 +4263,15 @@ Checking test 142 datm_cdeps_lnd_gswp3_rst 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 = 17.048179 -0:The maximum resident set size (KB) = 208244 +0:The total amount of wall time = 15.752870 +0:The maximum resident set size (KB) = 208252 -Test 142 datm_cdeps_lnd_gswp3_rst PASS +Test 146 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8_atmlnd_sbs -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_p8_atmlnd_sbs -Checking test 143 control_p8_atmlnd_sbs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_atmlnd_sbs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_p8_atmlnd_sbs +Checking test 147 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -4227,15 +4355,15 @@ Checking test 143 control_p8_atmlnd_sbs results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -0:The total amount of wall time = 240.021752 +0:The total amount of wall time = 224.289148 0:The maximum resident set size (KB) = 1461972 -Test 143 control_p8_atmlnd_sbs PASS +Test 147 control_p8_atmlnd_sbs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_atmwav -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_atmwav -Checking test 144 control_atmwav results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_atmwav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_atmwav +Checking test 148 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -4278,15 +4406,15 @@ Checking test 144 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -0:The total amount of wall time = 102.398710 -0:The maximum resident set size (KB) = 474892 +0:The total amount of wall time = 100.076015 +0:The maximum resident set size (KB) = 474696 -Test 144 control_atmwav PASS +Test 148 control_atmwav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/atmaero_control_p8 -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/atmaero_control_p8 -Checking test 145 atmaero_control_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/atmaero_control_p8 +Checking test 149 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4329,15 +4457,15 @@ Checking test 145 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 256.005184 -0:The maximum resident set size (KB) = 2703356 +0:The total amount of wall time = 249.049944 +0:The maximum resident set size (KB) = 2703328 -Test 145 atmaero_control_p8 PASS +Test 149 atmaero_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/atmaero_control_p8_rad -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/atmaero_control_p8_rad -Checking test 146 atmaero_control_p8_rad results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8_rad +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/atmaero_control_p8_rad +Checking test 150 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4380,15 +4508,15 @@ Checking test 146 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 308.277530 -0:The maximum resident set size (KB) = 2757596 +0:The total amount of wall time = 293.328978 +0:The maximum resident set size (KB) = 2757524 -Test 146 atmaero_control_p8_rad PASS +Test 150 atmaero_control_p8_rad PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/atmaero_control_p8_rad_micro -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/atmaero_control_p8_rad_micro -Checking test 147 atmaero_control_p8_rad_micro results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8_rad_micro +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/atmaero_control_p8_rad_micro +Checking test 151 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4431,15 +4559,15 @@ Checking test 147 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 313.291868 -0:The maximum resident set size (KB) = 2763944 +0:The total amount of wall time = 306.670771 +0:The maximum resident set size (KB) = 2763892 -Test 147 atmaero_control_p8_rad_micro PASS +Test 151 atmaero_control_p8_rad_micro PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_atmaq -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/regional_atmaq -Checking test 148 regional_atmaq results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_atmaq +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/regional_atmaq +Checking test 152 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -4454,77 +4582,86 @@ Checking test 148 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -0:The total amount of wall time = 1307.034576 +0:The total amount of wall time = 1103.757883 0:The maximum resident set size (KB) = 1146040 -Test 148 regional_atmaq PASS +Test 152 regional_atmaq PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_atmaq_faster +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/regional_atmaq_faster +Checking test 153 regional_atmaq_faster results .... + Comparing sfcf000.nc .........OK + Comparing sfcf003.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf003.nc .........OK + Comparing atmf006.nc .........OK + Comparing RESTART/20190801.180000.coupler.res .........OK + Comparing RESTART/20190801.180000.fv_core.res.nc .........OK + Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.phy_data.nc .........OK + Comparing RESTART/20190801.180000.sfc_data.nc .........OK + +0:The total amount of wall time = 1073.041881 +0:The maximum resident set size (KB) = 1145992 + +Test 153 regional_atmaq_faster PASS FAILED TESTS: -Test control_p8_rrtmgp 037 failed in check_result failed -Test control_p8_rrtmgp 037 failed in run_test failed +Test datm_cdeps_control_gefs 132 failed in run_test failed +Test datm_cdeps_ciceC_cfsr 135 failed in run_test failed +Test datm_cdeps_bulk_gefs 137 failed in run_test failed REGRESSION TEST FAILED -Mon Feb 27 18:11:50 MST 2023 -Elapsed time: 01h:14m:05s. Have a nice day! -Tue Feb 28 05:45:30 MST 2023 +Sat Mar 4 09:38:40 MST 2023 +Elapsed time: 01h:15m:19s. Have a nice day! +Sat Mar 4 10:29:57 MST 2023 Start Regression test -Compile 001 elapsed time 1033 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 425 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_rrtmgp -working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_54317/control_p8_rrtmgp -Checking test 001 control_p8_rrtmgp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_gefs +working dir = /glade/scratch/jongkim/pr-1578-intel/jongkim/FV3_RT/rt_62543/datm_cdeps_control_gefs +Checking test 001 datm_cdeps_control_gefs 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 = 161.163139 +0:The maximum resident set size (KB) = 607500 + +Test 001 datm_cdeps_control_gefs PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_ciceC_cfsr +working dir = /glade/scratch/jongkim/pr-1578-intel/jongkim/FV3_RT/rt_62543/datm_cdeps_ciceC_cfsr +Checking test 002 datm_cdeps_ciceC_cfsr results .... + Comparing RESTART/20111002.000000.MOM.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 = 168.804580 +0:The maximum resident set size (KB) = 727672 + +Test 002 datm_cdeps_ciceC_cfsr PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_bulk_gefs +working dir = /glade/scratch/jongkim/pr-1578-intel/jongkim/FV3_RT/rt_62543/datm_cdeps_bulk_gefs +Checking test 003 datm_cdeps_bulk_gefs 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 = 252.444370 -0:The maximum resident set size (KB) = 1480736 +0:The total amount of wall time = 160.566821 +0:The maximum resident set size (KB) = 607448 -Test 001 control_p8_rrtmgp PASS +Test 003 datm_cdeps_bulk_gefs PASS REGRESSION TEST WAS SUCCESSFUL -Tue Feb 28 06:10:29 MST 2023 -Elapsed time: 00h:24m:59s. Have a nice day! +Sat Mar 4 10:41:42 MST 2023 +Elapsed time: 00h:11m:46s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index 384129559e7..398350bc8b6 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,38 +1,42 @@ -Tue Feb 28 12:34:00 EST 2023 +Sat Mar 4 15:35:47 EST 2023 Start Regression test -Compile 001 elapsed time 923 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 942 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 896 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 353 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 325 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 857 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 762 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 780 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 711 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 782 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 684 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 309 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 013 elapsed time 239 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 676 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 015 elapsed time 706 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 223 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 017 elapsed time 254 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 782 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 019 elapsed time 246 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 940 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 738 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 022 elapsed time 258 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 023 elapsed time 169 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 024 elapsed time 149 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 025 elapsed time 753 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 026 elapsed time 697 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 027 elapsed time 651 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 746 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 217 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 001 elapsed time 956 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1005 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 939 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 444 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 357 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 812 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 795 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 1111 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 817 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 818 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 612 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 624 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 926 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 213 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 649 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 697 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 250 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 251 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 708 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 021 elapsed time 249 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 853 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 711 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 024 elapsed time 262 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 152 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 269 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 103 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 724 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 728 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 655 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 703 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 274 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 850 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8_mixedmode -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/cpld_control_p8_mixedmode +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -97,14 +101,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 357.057034 - 0: The maximum resident set size (KB) = 1551992 + 0: The total amount of wall time = 381.110187 + 0: The maximum resident set size (KB) = 1543084 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_gfsv17 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/cpld_control_gfsv17 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -168,14 +172,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 278.730106 - 0: The maximum resident set size (KB) = 1455612 + 0: The total amount of wall time = 280.144669 + 0: The maximum resident set size (KB) = 1462256 Test 002 cpld_control_gfsv17 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/cpld_control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -240,14 +244,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 420.375157 - 0: The maximum resident set size (KB) = 1565212 + 0: The total amount of wall time = 414.104908 + 0: The maximum resident set size (KB) = 1583808 Test 003 cpld_control_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/cpld_restart_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -300,14 +304,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 242.170803 - 0: The maximum resident set size (KB) = 1022304 + 0: The total amount of wall time = 218.532701 + 0: The maximum resident set size (KB) = 1022680 Test 004 cpld_restart_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/cpld_2threads_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -360,14 +364,14 @@ Checking test 005 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 424.513720 - 0: The maximum resident set size (KB) = 1777592 + 0: The total amount of wall time = 418.100406 + 0: The maximum resident set size (KB) = 1777184 Test 005 cpld_2threads_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/cpld_decomp_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/cpld_decomp_p8 Checking test 006 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -420,14 +424,14 @@ Checking test 006 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 402.436366 - 0: The maximum resident set size (KB) = 1575056 + 0: The total amount of wall time = 419.816083 + 0: The maximum resident set size (KB) = 1595072 -Test 006 cpld_decomp_p8 PASS Tries: 2 +Test 006 cpld_decomp_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/cpld_mpi_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/cpld_mpi_p8 Checking test 007 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -480,14 +484,14 @@ Checking test 007 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 349.631553 - 0: The maximum resident set size (KB) = 1523868 + 0: The total amount of wall time = 344.627083 + 0: The maximum resident set size (KB) = 1544172 Test 007 cpld_mpi_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_ciceC_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/cpld_control_ciceC_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/cpld_control_ciceC_p8 Checking test 008 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -552,14 +556,14 @@ Checking test 008 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 408.052578 - 0: The maximum resident set size (KB) = 1596308 + 0: The total amount of wall time = 426.014336 + 0: The maximum resident set size (KB) = 1583072 Test 008 cpld_control_ciceC_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c192_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/cpld_control_c192_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/cpld_control_c192_p8 Checking test 009 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -612,14 +616,14 @@ Checking test 009 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 791.026512 - 0: The maximum resident set size (KB) = 1775188 + 0: The total amount of wall time = 764.256106 + 0: The maximum resident set size (KB) = 1792908 Test 009 cpld_control_c192_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c192_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/cpld_restart_c192_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/cpld_restart_c192_p8 Checking test 010 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -672,14 +676,14 @@ Checking test 010 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 473.016534 - 0: The maximum resident set size (KB) = 1930564 + 0: The total amount of wall time = 464.465229 + 0: The maximum resident set size (KB) = 1925404 Test 010 cpld_restart_c192_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_bmark_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/cpld_bmark_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/cpld_bmark_p8 Checking test 011 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -727,14 +731,14 @@ Checking test 011 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 890.406018 - 0: The maximum resident set size (KB) = 2518080 + 0: The total amount of wall time = 792.669718 + 0: The maximum resident set size (KB) = 2537640 Test 011 cpld_bmark_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_bmark_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/cpld_restart_bmark_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/cpld_restart_bmark_p8 Checking test 012 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -782,14 +786,14 @@ Checking test 012 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 555.058185 - 0: The maximum resident set size (KB) = 2334860 + 0: The total amount of wall time = 504.691690 + 0: The maximum resident set size (KB) = 2338904 Test 012 cpld_restart_bmark_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_noaero_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/cpld_control_noaero_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/cpld_control_noaero_p8 Checking test 013 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -853,14 +857,14 @@ Checking test 013 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 305.512744 - 0: The maximum resident set size (KB) = 1441136 + 0: The total amount of wall time = 307.951416 + 0: The maximum resident set size (KB) = 1447284 Test 013 cpld_control_noaero_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c96_noaero_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/cpld_control_nowave_noaero_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/cpld_control_nowave_noaero_p8 Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -922,16 +926,74 @@ Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 327.827643 - 0: The maximum resident set size (KB) = 1473640 + 0: The total amount of wall time = 342.364926 + 0: The maximum resident set size (KB) = 1473484 Test 014 cpld_control_nowave_noaero_p8 PASS -Test 015 cpld_debug_p8 FAIL + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_debug_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/cpld_debug_p8 +Checking test 015 cpld_debug_p8 results .... + Comparing sfcf003.tile1.nc .........OK + Comparing sfcf003.tile2.nc .........OK + Comparing sfcf003.tile3.nc .........OK + Comparing sfcf003.tile4.nc .........OK + Comparing sfcf003.tile5.nc .........OK + Comparing sfcf003.tile6.nc .........OK + Comparing atmf003.tile1.nc .........OK + Comparing atmf003.tile2.nc .........OK + Comparing atmf003.tile3.nc .........OK + Comparing atmf003.tile4.nc .........OK + Comparing atmf003.tile5.nc .........OK + Comparing atmf003.tile6.nc .........OK + Comparing gocart.inst_aod.20210322_0900z.nc4 .........OK + Comparing RESTART/20210322.090000.coupler.res .........OK + Comparing RESTART/20210322.090000.fv_core.res.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-22-32400.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK + Comparing 20210322.090000.out_pnt.ww3 .........OK + Comparing 20210322.090000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 598.809177 + 0: The maximum resident set size (KB) = 1619196 + +Test 015 cpld_debug_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_debug_noaero_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/cpld_debug_noaero_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/cpld_debug_noaero_p8 Checking test 016 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -983,14 +1045,14 @@ Checking test 016 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 404.743366 - 0: The maximum resident set size (KB) = 1461040 + 0: The total amount of wall time = 397.199874 + 0: The maximum resident set size (KB) = 1484960 Test 016 cpld_debug_noaero_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_noaero_p8_agrid -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/cpld_control_noaero_p8_agrid +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/cpld_control_noaero_p8_agrid Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1052,14 +1114,14 @@ Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 324.634145 - 0: The maximum resident set size (KB) = 1489000 + 0: The total amount of wall time = 325.326836 + 0: The maximum resident set size (KB) = 1488700 Test 017 cpld_control_noaero_p8_agrid PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c48 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/cpld_control_c48 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/cpld_control_c48 Checking test 018 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1109,14 +1171,14 @@ Checking test 018 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 601.559358 - 0: The maximum resident set size (KB) = 2569068 + 0: The total amount of wall time = 601.625093 + 0: The maximum resident set size (KB) = 2568908 Test 018 cpld_control_c48 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_warmstart_c48 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/cpld_warmstart_c48 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/cpld_warmstart_c48 Checking test 019 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1166,14 +1228,14 @@ Checking test 019 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 159.518553 - 0: The maximum resident set size (KB) = 2572544 + 0: The total amount of wall time = 167.804399 + 0: The maximum resident set size (KB) = 2572640 Test 019 cpld_warmstart_c48 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_warmstart_c48 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/cpld_restart_c48 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/cpld_restart_c48 Checking test 020 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1223,15 +1285,87 @@ Checking test 020 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 101.728183 - 0: The maximum resident set size (KB) = 1996112 + 0: The total amount of wall time = 83.960764 + 0: The maximum resident set size (KB) = 1996312 Test 020 cpld_restart_c48 PASS +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8_faster +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/cpld_control_p8_faster +Checking test 021 cpld_control_p8_faster results .... + Comparing sfcf021.tile1.nc ............MISSING baseline + Comparing sfcf021.tile2.nc ............MISSING baseline + Comparing sfcf021.tile3.nc ............MISSING baseline + Comparing sfcf021.tile4.nc ............MISSING baseline + Comparing sfcf021.tile5.nc ............MISSING baseline + Comparing sfcf021.tile6.nc ............MISSING baseline + Comparing atmf021.tile1.nc ............MISSING baseline + Comparing atmf021.tile2.nc ............MISSING baseline + Comparing atmf021.tile3.nc ............MISSING baseline + Comparing atmf021.tile4.nc ............MISSING baseline + Comparing atmf021.tile5.nc ............MISSING baseline + Comparing atmf021.tile6.nc ............MISSING baseline + Comparing sfcf024.tile1.nc ............MISSING baseline + Comparing sfcf024.tile2.nc ............MISSING baseline + Comparing sfcf024.tile3.nc ............MISSING baseline + Comparing sfcf024.tile4.nc ............MISSING baseline + Comparing sfcf024.tile5.nc ............MISSING baseline + Comparing sfcf024.tile6.nc ............MISSING baseline + Comparing atmf024.tile1.nc ............MISSING baseline + Comparing atmf024.tile2.nc ............MISSING baseline + Comparing atmf024.tile3.nc ............MISSING baseline + Comparing atmf024.tile4.nc ............MISSING baseline + Comparing atmf024.tile5.nc ............MISSING baseline + Comparing atmf024.tile6.nc ............MISSING baseline + Comparing gocart.inst_aod.20210323_0600z.nc4 ............MISSING baseline + Comparing RESTART/20210323.060000.coupler.res ............MISSING baseline + Comparing RESTART/20210323.060000.fv_core.res.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............MISSING baseline + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............MISSING baseline + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............MISSING baseline + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............MISSING baseline + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............MISSING baseline + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............MISSING baseline + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............MISSING baseline + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............MISSING baseline + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............MISSING baseline + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............MISSING baseline + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............MISSING baseline + Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............MISSING baseline + Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............MISSING baseline + Comparing RESTART/20210323.060000.MOM.res.nc ............MISSING baseline + Comparing RESTART/iced.2021-03-23-21600.nc ............MISSING baseline + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc ............MISSING baseline + Comparing 20210323.060000.out_pnt.ww3 ............MISSING baseline + Comparing 20210323.060000.out_grd.ww3 ............MISSING baseline + + 0: The total amount of wall time = 358.920457 + 0: The maximum resident set size (KB) = 1584700 + +Test 021 cpld_control_p8_faster FAIL Tries: 2 + + baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_CubedSphereGrid -Checking test 021 control_CubedSphereGrid results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_CubedSphereGrid +Checking test 022 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1257,29 +1391,29 @@ Checking test 021 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 142.693090 - 0: The maximum resident set size (KB) = 437232 + 0: The total amount of wall time = 142.040367 + 0: The maximum resident set size (KB) = 437148 -Test 021 control_CubedSphereGrid PASS +Test 022 control_CubedSphereGrid PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_CubedSphereGrid_parallel -Checking test 022 control_CubedSphereGrid_parallel results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_CubedSphereGrid_parallel +Checking test 023 control_CubedSphereGrid_parallel 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 = 145.692583 - 0: The maximum resident set size (KB) = 437064 + 0: The total amount of wall time = 170.297357 + 0: The maximum resident set size (KB) = 437264 -Test 022 control_CubedSphereGrid_parallel PASS +Test 023 control_CubedSphereGrid_parallel PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_latlon -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_latlon -Checking test 023 control_latlon results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_latlon +Checking test 024 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1289,15 +1423,15 @@ Checking test 023 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 145.707710 - 0: The maximum resident set size (KB) = 437088 + 0: The total amount of wall time = 140.946910 + 0: The maximum resident set size (KB) = 437016 -Test 023 control_latlon PASS +Test 024 control_latlon PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_wrtGauss_netcdf_parallel -Checking test 024 control_wrtGauss_netcdf_parallel results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_wrtGauss_netcdf_parallel +Checking test 025 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1307,15 +1441,15 @@ Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 160.290892 - 0: The maximum resident set size (KB) = 437044 + 0: The total amount of wall time = 164.601589 + 0: The maximum resident set size (KB) = 436976 -Test 024 control_wrtGauss_netcdf_parallel PASS +Test 025 control_wrtGauss_netcdf_parallel PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c48 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_c48 -Checking test 025 control_c48 results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_c48 +Checking test 026 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1353,15 +1487,15 @@ Checking test 025 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 423.903257 -0: The maximum resident set size (KB) = 631104 +0: The total amount of wall time = 429.093964 +0: The maximum resident set size (KB) = 631608 -Test 025 control_c48 PASS +Test 026 control_c48 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c192 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_c192 -Checking test 026 control_c192 results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_c192 +Checking test 027 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1371,15 +1505,15 @@ Checking test 026 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 585.349965 - 0: The maximum resident set size (KB) = 539968 + 0: The total amount of wall time = 581.236728 + 0: The maximum resident set size (KB) = 540148 -Test 026 control_c192 PASS +Test 027 control_c192 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c384 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_c384 -Checking test 027 control_c384 results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_c384 +Checking test 028 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1389,15 +1523,15 @@ Checking test 027 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1127.187683 - 0: The maximum resident set size (KB) = 818340 + 0: The total amount of wall time = 1115.076552 + 0: The maximum resident set size (KB) = 818556 -Test 027 control_c384 PASS +Test 028 control_c384 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c384gdas -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_c384gdas -Checking test 028 control_c384gdas results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_c384gdas +Checking test 029 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -1439,15 +1573,15 @@ Checking test 028 control_c384gdas 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 = 946.910598 - 0: The maximum resident set size (KB) = 948148 + 0: The total amount of wall time = 933.636218 + 0: The maximum resident set size (KB) = 947920 -Test 028 control_c384gdas PASS +Test 029 control_c384gdas PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_stochy -Checking test 029 control_stochy results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_stochy +Checking test 030 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1457,29 +1591,29 @@ Checking test 029 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 98.600710 - 0: The maximum resident set size (KB) = 440092 + 0: The total amount of wall time = 94.989891 + 0: The maximum resident set size (KB) = 440296 -Test 029 control_stochy PASS +Test 030 control_stochy PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_stochy_restart -Checking test 030 control_stochy_restart results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_stochy_restart +Checking test 031 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 51.676639 - 0: The maximum resident set size (KB) = 194760 + 0: The total amount of wall time = 54.715110 + 0: The maximum resident set size (KB) = 194668 -Test 030 control_stochy_restart PASS +Test 031 control_stochy_restart PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_lndp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_lndp -Checking test 031 control_lndp results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_lndp +Checking test 032 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1489,15 +1623,15 @@ Checking test 031 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 90.191850 - 0: The maximum resident set size (KB) = 440044 + 0: The total amount of wall time = 93.289709 + 0: The maximum resident set size (KB) = 440188 -Test 031 control_lndp PASS +Test 032 control_lndp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_iovr4 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_iovr4 -Checking test 032 control_iovr4 results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_iovr4 +Checking test 033 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1511,15 +1645,15 @@ Checking test 032 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 152.104050 - 0: The maximum resident set size (KB) = 437020 + 0: The total amount of wall time = 148.711642 + 0: The maximum resident set size (KB) = 437132 -Test 032 control_iovr4 PASS +Test 033 control_iovr4 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_iovr5 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_iovr5 -Checking test 033 control_iovr5 results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_iovr5 +Checking test 034 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1533,15 +1667,15 @@ Checking test 033 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 149.327633 - 0: The maximum resident set size (KB) = 436936 + 0: The total amount of wall time = 154.295045 + 0: The maximum resident set size (KB) = 436992 -Test 033 control_iovr5 PASS +Test 034 control_iovr5 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_p8 -Checking test 034 control_p8 results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_p8 +Checking test 035 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1587,15 +1721,15 @@ Checking test 034 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 197.208832 - 0: The maximum resident set size (KB) = 1379624 + 0: The total amount of wall time = 180.632868 + 0: The maximum resident set size (KB) = 1403396 -Test 034 control_p8 PASS +Test 035 control_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_lndp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_p8_lndp -Checking test 035 control_p8_lndp results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_p8_lndp +Checking test 036 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1613,15 +1747,15 @@ Checking test 035 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 355.675742 - 0: The maximum resident set size (KB) = 1389300 + 0: The total amount of wall time = 334.930271 + 0: The maximum resident set size (KB) = 1403580 -Test 035 control_p8_lndp PASS +Test 036 control_p8_lndp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_restart_p8 -Checking test 036 control_restart_p8 results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_restart_p8 +Checking test 037 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1659,15 +1793,15 @@ Checking test 036 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 107.804813 - 0: The maximum resident set size (KB) = 551652 + 0: The total amount of wall time = 92.653862 + 0: The maximum resident set size (KB) = 551676 -Test 036 control_restart_p8 PASS +Test 037 control_restart_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_decomp_p8 -Checking test 037 control_decomp_p8 results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_decomp_p8 +Checking test 038 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1709,15 +1843,15 @@ Checking test 037 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 200.823680 - 0: The maximum resident set size (KB) = 1397684 + 0: The total amount of wall time = 183.606250 + 0: The maximum resident set size (KB) = 1373912 -Test 037 control_decomp_p8 PASS +Test 038 control_decomp_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_2threads_p8 -Checking test 038 control_2threads_p8 results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_2threads_p8 +Checking test 039 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1759,15 +1893,15 @@ Checking test 038 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 198.613032 - 0: The maximum resident set size (KB) = 1458808 + 0: The total amount of wall time = 175.358447 + 0: The maximum resident set size (KB) = 1482416 -Test 038 control_2threads_p8 PASS +Test 039 control_2threads_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_rrtmgp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_p8_rrtmgp -Checking test 039 control_p8_rrtmgp results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_p8_rrtmgp +Checking test 040 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1813,15 +1947,15 @@ Checking test 039 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 263.946143 - 0: The maximum resident set size (KB) = 1461512 + 0: The total amount of wall time = 262.971058 + 0: The maximum resident set size (KB) = 1456856 -Test 039 control_p8_rrtmgp PASS +Test 040 control_p8_rrtmgp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/merra2_thompson -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/merra2_thompson -Checking test 040 merra2_thompson results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/merra2_thompson +Checking test 041 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1867,15 +2001,15 @@ Checking test 040 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 221.754803 - 0: The maximum resident set size (KB) = 1407520 + 0: The total amount of wall time = 211.792051 + 0: The maximum resident set size (KB) = 1383880 -Test 040 merra2_thompson PASS +Test 041 merra2_thompson PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/regional_control -Checking test 041 regional_control results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/regional_control +Checking test 042 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1885,29 +2019,29 @@ Checking test 041 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 352.411563 - 0: The maximum resident set size (KB) = 577696 + 0: The total amount of wall time = 338.012709 + 0: The maximum resident set size (KB) = 577672 -Test 041 regional_control PASS +Test 042 regional_control PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/regional_restart -Checking test 042 regional_restart results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/regional_restart +Checking test 043 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 172.728688 - 0: The maximum resident set size (KB) = 577396 + 0: The total amount of wall time = 189.471075 + 0: The maximum resident set size (KB) = 577792 -Test 042 regional_restart PASS +Test 043 regional_restart PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/regional_decomp -Checking test 043 regional_decomp results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/regional_decomp +Checking test 044 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1917,15 +2051,15 @@ Checking test 043 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 358.774286 - 0: The maximum resident set size (KB) = 579184 + 0: The total amount of wall time = 353.873716 + 0: The maximum resident set size (KB) = 579212 -Test 043 regional_decomp PASS +Test 044 regional_decomp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/regional_2threads -Checking test 044 regional_2threads results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/regional_2threads +Checking test 045 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1935,44 +2069,44 @@ Checking test 044 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 210.514990 - 0: The maximum resident set size (KB) = 585328 + 0: The total amount of wall time = 214.239519 + 0: The maximum resident set size (KB) = 583868 -Test 044 regional_2threads PASS +Test 045 regional_2threads PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_noquilt -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/regional_noquilt -Checking test 045 regional_noquilt results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/regional_noquilt +Checking test 046 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 370.301657 - 0: The maximum resident set size (KB) = 573008 + 0: The total amount of wall time = 364.138778 + 0: The maximum resident set size (KB) = 572944 -Test 045 regional_noquilt PASS +Test 046 regional_noquilt PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_netcdf_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/regional_netcdf_parallel -Checking test 046 regional_netcdf_parallel results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/regional_netcdf_parallel +Checking test 047 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 348.356086 - 0: The maximum resident set size (KB) = 576816 + 0: The total amount of wall time = 338.060950 + 0: The maximum resident set size (KB) = 576772 -Test 046 regional_netcdf_parallel PASS +Test 047 regional_netcdf_parallel PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/regional_2dwrtdecomp -Checking test 047 regional_2dwrtdecomp results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/regional_2dwrtdecomp +Checking test 048 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1982,15 +2116,15 @@ Checking test 047 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 356.395806 - 0: The maximum resident set size (KB) = 574788 + 0: The total amount of wall time = 348.172324 + 0: The maximum resident set size (KB) = 577772 -Test 047 regional_2dwrtdecomp PASS +Test 048 regional_2dwrtdecomp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/fv3_regional_wofs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/regional_wofs -Checking test 048 regional_wofs results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/regional_wofs +Checking test 049 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2000,15 +2134,15 @@ Checking test 048 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 424.177864 - 0: The maximum resident set size (KB) = 263200 + 0: The total amount of wall time = 438.379849 + 0: The maximum resident set size (KB) = 263344 -Test 048 regional_wofs PASS +Test 049 regional_wofs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rap_control -Checking test 049 rap_control results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rap_control +Checking test 050 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2054,15 +2188,15 @@ Checking test 049 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 487.231431 - 0: The maximum resident set size (KB) = 807648 + 0: The total amount of wall time = 494.266484 + 0: The maximum resident set size (KB) = 807584 -Test 049 rap_control PASS +Test 050 rap_control PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_spp_sppt_shum_skeb -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/regional_spp_sppt_shum_skeb -Checking test 050 regional_spp_sppt_shum_skeb results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/regional_spp_sppt_shum_skeb +Checking test 051 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -2072,15 +2206,15 @@ Checking test 050 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 350.176687 - 0: The maximum resident set size (KB) = 888148 + 0: The total amount of wall time = 331.802317 + 0: The maximum resident set size (KB) = 887976 -Test 050 regional_spp_sppt_shum_skeb PASS +Test 051 regional_spp_sppt_shum_skeb PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rap_decomp -Checking test 051 rap_decomp results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rap_decomp +Checking test 052 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2126,15 +2260,15 @@ Checking test 051 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 510.855674 - 0: The maximum resident set size (KB) = 807144 + 0: The total amount of wall time = 500.494898 + 0: The maximum resident set size (KB) = 807052 -Test 051 rap_decomp PASS +Test 052 rap_decomp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rap_2threads -Checking test 052 rap_2threads results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rap_2threads +Checking test 053 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2180,15 +2314,15 @@ Checking test 052 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 474.056468 - 0: The maximum resident set size (KB) = 877760 + 0: The total amount of wall time = 467.587751 + 0: The maximum resident set size (KB) = 876272 -Test 052 rap_2threads PASS +Test 053 rap_2threads PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rap_restart -Checking test 053 rap_restart results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rap_restart +Checking test 054 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2226,15 +2360,15 @@ Checking test 053 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 252.231660 - 0: The maximum resident set size (KB) = 553252 + 0: The total amount of wall time = 242.322475 + 0: The maximum resident set size (KB) = 538680 -Test 053 rap_restart PASS +Test 054 rap_restart PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rap_sfcdiff -Checking test 054 rap_sfcdiff results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rap_sfcdiff +Checking test 055 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2280,15 +2414,15 @@ Checking test 054 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 482.738459 - 0: The maximum resident set size (KB) = 807456 + 0: The total amount of wall time = 474.665516 + 0: The maximum resident set size (KB) = 807364 -Test 054 rap_sfcdiff PASS +Test 055 rap_sfcdiff PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rap_sfcdiff_decomp -Checking test 055 rap_sfcdiff_decomp results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rap_sfcdiff_decomp +Checking test 056 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2334,15 +2468,15 @@ Checking test 055 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 501.665369 - 0: The maximum resident set size (KB) = 806696 + 0: The total amount of wall time = 492.195647 + 0: The maximum resident set size (KB) = 806404 -Test 055 rap_sfcdiff_decomp PASS +Test 056 rap_sfcdiff_decomp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rap_sfcdiff_restart -Checking test 056 rap_sfcdiff_restart results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rap_sfcdiff_restart +Checking test 057 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2380,15 +2514,15 @@ Checking test 056 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 362.526357 - 0: The maximum resident set size (KB) = 541380 + 0: The total amount of wall time = 353.822444 + 0: The maximum resident set size (KB) = 541272 -Test 056 rap_sfcdiff_restart PASS +Test 057 rap_sfcdiff_restart PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hrrr_control -Checking test 057 hrrr_control results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hrrr_control +Checking test 058 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2434,15 +2568,15 @@ Checking test 057 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 468.150928 - 0: The maximum resident set size (KB) = 804948 + 0: The total amount of wall time = 451.073758 + 0: The maximum resident set size (KB) = 804688 -Test 057 hrrr_control PASS +Test 058 hrrr_control PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hrrr_control_decomp -Checking test 058 hrrr_control_decomp results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hrrr_control_decomp +Checking test 059 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2488,15 +2622,15 @@ Checking test 058 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 486.045760 - 0: The maximum resident set size (KB) = 804500 + 0: The total amount of wall time = 474.489705 + 0: The maximum resident set size (KB) = 804436 -Test 058 hrrr_control_decomp PASS +Test 059 hrrr_control_decomp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hrrr_control_2threads -Checking test 059 hrrr_control_2threads results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hrrr_control_2threads +Checking test 060 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2542,15 +2676,15 @@ Checking test 059 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 438.433729 - 0: The maximum resident set size (KB) = 871300 + 0: The total amount of wall time = 431.083347 + 0: The maximum resident set size (KB) = 873280 -Test 059 hrrr_control_2threads PASS +Test 060 hrrr_control_2threads PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hrrr_control_restart -Checking test 060 hrrr_control_restart results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hrrr_control_restart +Checking test 061 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2588,15 +2722,15 @@ Checking test 060 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 352.149335 - 0: The maximum resident set size (KB) = 540568 + 0: The total amount of wall time = 339.816508 + 0: The maximum resident set size (KB) = 550208 -Test 060 hrrr_control_restart PASS +Test 061 hrrr_control_restart PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1beta -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rrfs_v1beta -Checking test 061 rrfs_v1beta results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rrfs_v1beta +Checking test 062 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2642,15 +2776,15 @@ Checking test 061 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 472.079004 - 0: The maximum resident set size (KB) = 800796 + 0: The total amount of wall time = 467.060828 + 0: The maximum resident set size (KB) = 800752 -Test 061 rrfs_v1beta PASS +Test 062 rrfs_v1beta PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1nssl -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rrfs_v1nssl -Checking test 062 rrfs_v1nssl results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rrfs_v1nssl +Checking test 063 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2664,15 +2798,15 @@ Checking test 062 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 573.772403 - 0: The maximum resident set size (KB) = 491416 + 0: The total amount of wall time = 568.170933 + 0: The maximum resident set size (KB) = 491620 -Test 062 rrfs_v1nssl PASS +Test 063 rrfs_v1nssl PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rrfs_v1nssl_nohailnoccn -Checking test 063 rrfs_v1nssl_nohailnoccn results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rrfs_v1nssl_nohailnoccn +Checking test 064 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2686,15 +2820,15 @@ Checking test 063 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 555.028993 - 0: The maximum resident set size (KB) = 485848 + 0: The total amount of wall time = 552.436836 + 0: The maximum resident set size (KB) = 485664 -Test 063 rrfs_v1nssl_nohailnoccn PASS +Test 064 rrfs_v1nssl_nohailnoccn PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rrfs_conus13km_hrrr_warm -Checking test 064 rrfs_conus13km_hrrr_warm results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rrfs_conus13km_hrrr_warm +Checking test 065 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2702,15 +2836,15 @@ Checking test 064 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 147.482352 - 0: The maximum resident set size (KB) = 617552 + 0: The total amount of wall time = 128.442753 + 0: The maximum resident set size (KB) = 617484 -Test 064 rrfs_conus13km_hrrr_warm PASS +Test 065 rrfs_conus13km_hrrr_warm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rrfs_smoke_conus13km_hrrr_warm -Checking test 065 rrfs_smoke_conus13km_hrrr_warm results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rrfs_smoke_conus13km_hrrr_warm +Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2718,15 +2852,15 @@ Checking test 065 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 163.067505 - 0: The maximum resident set size (KB) = 627640 + 0: The total amount of wall time = 145.243142 + 0: The maximum resident set size (KB) = 627652 -Test 065 rrfs_smoke_conus13km_hrrr_warm PASS +Test 066 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rrfs_conus13km_radar_tten_warm -Checking test 066 rrfs_conus13km_radar_tten_warm results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rrfs_conus13km_radar_tten_warm +Checking test 067 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2734,15 +2868,15 @@ Checking test 066 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 151.675511 - 0: The maximum resident set size (KB) = 620864 + 0: The total amount of wall time = 129.999313 + 0: The maximum resident set size (KB) = 620988 -Test 066 rrfs_conus13km_radar_tten_warm PASS +Test 067 rrfs_conus13km_radar_tten_warm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rrfs_conus13km_hrrr_warm_2threads -Checking test 067 rrfs_conus13km_hrrr_warm_2threads results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rrfs_conus13km_hrrr_warm_2threads +Checking test 068 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2750,15 +2884,15 @@ Checking test 067 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 105.238398 - 0: The maximum resident set size (KB) = 629956 + 0: The total amount of wall time = 84.877688 + 0: The maximum resident set size (KB) = 630160 -Test 067 rrfs_conus13km_hrrr_warm_2threads PASS +Test 068 rrfs_conus13km_hrrr_warm_2threads PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rrfs_conus13km_radar_tten_warm_2threads -Checking test 068 rrfs_conus13km_radar_tten_warm_2threads results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rrfs_conus13km_radar_tten_warm_2threads +Checking test 069 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2766,15 +2900,15 @@ Checking test 068 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 108.424739 - 0: The maximum resident set size (KB) = 632604 + 0: The total amount of wall time = 89.282533 + 0: The maximum resident set size (KB) = 633000 -Test 068 rrfs_conus13km_radar_tten_warm_2threads PASS +Test 069 rrfs_conus13km_radar_tten_warm_2threads PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmgt -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_csawmgt -Checking test 069 control_csawmgt results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_csawmgt +Checking test 070 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2784,15 +2918,15 @@ Checking test 069 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 393.044749 - 0: The maximum resident set size (KB) = 505692 + 0: The total amount of wall time = 380.153293 + 0: The maximum resident set size (KB) = 505636 -Test 069 control_csawmgt PASS +Test 070 control_csawmgt PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_ras -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_ras -Checking test 070 control_ras results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_ras +Checking test 071 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2802,55 +2936,127 @@ Checking test 070 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 197.662813 - 0: The maximum resident set size (KB) = 470848 + 0: The total amount of wall time = 197.472024 + 0: The maximum resident set size (KB) = 470892 -Test 070 control_ras PASS Tries: 2 +Test 071 control_ras PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wam -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_wam -Checking test 071 control_wam results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_wam +Checking test 072 control_wam results .... + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK + + 0: The total amount of wall time = 126.420302 + 0: The maximum resident set size (KB) = 188096 + +Test 072 control_wam PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_faster +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_p8_faster +Checking test 073 control_p8_faster results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 128.057192 - 0: The maximum resident set size (KB) = 187928 + 0: The total amount of wall time = 167.371290 + 0: The maximum resident set size (KB) = 1379804 -Test 071 control_wam PASS +Test 073 control_p8_faster PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control_faster +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/regional_control_faster +Checking test 074 regional_control_faster results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK + + 0: The total amount of wall time = 312.374962 + 0: The maximum resident set size (KB) = 577632 + +Test 074 regional_control_faster PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rrfs_conus13km_hrrr_warm_debug -Checking test 072 rrfs_conus13km_hrrr_warm_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rrfs_conus13km_hrrr_warm_debug +Checking test 075 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 754.741209 - 0: The maximum resident set size (KB) = 649708 + 0: The total amount of wall time = 754.518211 + 0: The maximum resident set size (KB) = 649396 -Test 072 rrfs_conus13km_hrrr_warm_debug PASS Tries: 2 +Test 075 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rrfs_conus13km_radar_tten_warm_debug -Checking test 073 rrfs_conus13km_radar_tten_warm_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rrfs_conus13km_radar_tten_warm_debug +Checking test 076 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 777.773338 - 0: The maximum resident set size (KB) = 652268 + 0: The total amount of wall time = 754.367076 + 0: The maximum resident set size (KB) = 652164 -Test 073 rrfs_conus13km_radar_tten_warm_debug PASS +Test 076 rrfs_conus13km_radar_tten_warm_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_CubedSphereGrid_debug -Checking test 074 control_CubedSphereGrid_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_CubedSphereGrid_debug +Checking test 077 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -2876,323 +3082,335 @@ Checking test 074 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 172.123969 - 0: The maximum resident set size (KB) = 601912 + 0: The total amount of wall time = 163.111896 + 0: The maximum resident set size (KB) = 601788 -Test 074 control_CubedSphereGrid_debug PASS +Test 077 control_CubedSphereGrid_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_wrtGauss_netcdf_parallel_debug -Checking test 075 control_wrtGauss_netcdf_parallel_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_wrtGauss_netcdf_parallel_debug +Checking test 078 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 193.363432 - 0: The maximum resident set size (KB) = 601152 + 0: The total amount of wall time = 163.146693 + 0: The maximum resident set size (KB) = 601084 -Test 075 control_wrtGauss_netcdf_parallel_debug PASS +Test 078 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_stochy_debug -Checking test 076 control_stochy_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_stochy_debug +Checking test 079 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 181.919608 - 0: The maximum resident set size (KB) = 607996 + 0: The total amount of wall time = 174.902082 + 0: The maximum resident set size (KB) = 607872 -Test 076 control_stochy_debug PASS +Test 079 control_stochy_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_lndp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_lndp_debug -Checking test 077 control_lndp_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_lndp_debug +Checking test 080 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 161.882592 - 0: The maximum resident set size (KB) = 606232 + 0: The total amount of wall time = 156.954774 + 0: The maximum resident set size (KB) = 606000 -Test 077 control_lndp_debug PASS Tries: 2 +Test 080 control_lndp_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmg_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_csawmg_debug -Checking test 078 control_csawmg_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_csawmg_debug +Checking test 081 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 262.193109 - 0: The maximum resident set size (KB) = 642496 + 0: The total amount of wall time = 246.882483 + 0: The maximum resident set size (KB) = 642484 -Test 078 control_csawmg_debug PASS +Test 081 control_csawmg_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmgt_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_csawmgt_debug -Checking test 079 control_csawmgt_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_csawmgt_debug +Checking test 082 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 249.989341 - 0: The maximum resident set size (KB) = 642760 + 0: The total amount of wall time = 242.475940 + 0: The maximum resident set size (KB) = 642684 -Test 079 control_csawmgt_debug PASS +Test 082 control_csawmgt_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_ras_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_ras_debug -Checking test 080 control_ras_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_ras_debug +Checking test 083 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 163.897659 - 0: The maximum resident set size (KB) = 613796 + 0: The total amount of wall time = 158.214064 + 0: The maximum resident set size (KB) = 613720 -Test 080 control_ras_debug PASS +Test 083 control_ras_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_diag_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_diag_debug -Checking test 081 control_diag_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_diag_debug +Checking test 084 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 165.627882 - 0: The maximum resident set size (KB) = 660540 + 0: The total amount of wall time = 160.798463 + 0: The maximum resident set size (KB) = 660684 -Test 081 control_diag_debug PASS +Test 084 control_diag_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_debug_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_debug_p8 -Checking test 082 control_debug_p8 results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_debug_p8 +Checking test 085 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 202.236683 - 0: The maximum resident set size (KB) = 1422832 + 0: The total amount of wall time = 181.265445 + 0: The maximum resident set size (KB) = 1380204 -Test 082 control_debug_p8 PASS +Test 085 control_debug_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/regional_debug -Checking test 083 regional_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/regional_debug +Checking test 086 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1038.343765 - 0: The maximum resident set size (KB) = 606740 + 0: The total amount of wall time = 1042.919849 + 0: The maximum resident set size (KB) = 606860 -Test 083 regional_debug PASS +Test 086 regional_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rap_control_debug -Checking test 084 rap_control_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rap_control_debug +Checking test 087 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 290.569527 - 0: The maximum resident set size (KB) = 972272 + 0: The total amount of wall time = 286.908281 + 0: The maximum resident set size (KB) = 972212 -Test 084 rap_control_debug PASS +Test 087 rap_control_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hrrr_control_debug -Checking test 085 hrrr_control_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hrrr_control_debug +Checking test 088 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 287.186846 - 0: The maximum resident set size (KB) = 967056 + 0: The total amount of wall time = 284.795701 + 0: The maximum resident set size (KB) = 967184 -Test 085 hrrr_control_debug PASS +Test 088 hrrr_control_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rap_unified_drag_suite_debug -Checking test 086 rap_unified_drag_suite_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rap_unified_drag_suite_debug +Checking test 089 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 288.535682 - 0: The maximum resident set size (KB) = 972008 + 0: The total amount of wall time = 285.836724 + 0: The maximum resident set size (KB) = 972124 -Test 086 rap_unified_drag_suite_debug PASS +Test 089 rap_unified_drag_suite_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_diag_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rap_diag_debug -Checking test 087 rap_diag_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rap_diag_debug +Checking test 090 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 305.730512 - 0: The maximum resident set size (KB) = 1056360 + 0: The total amount of wall time = 300.393266 + 0: The maximum resident set size (KB) = 1056412 -Test 087 rap_diag_debug PASS +Test 090 rap_diag_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_cires_ugwp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rap_cires_ugwp_debug -Checking test 088 rap_cires_ugwp_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rap_cires_ugwp_debug +Checking test 091 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 296.693583 - 0: The maximum resident set size (KB) = 971364 + 0: The total amount of wall time = 291.152260 + 0: The maximum resident set size (KB) = 971328 -Test 088 rap_cires_ugwp_debug PASS +Test 091 rap_cires_ugwp_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_cires_ugwp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rap_unified_ugwp_debug -Checking test 089 rap_unified_ugwp_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rap_unified_ugwp_debug +Checking test 092 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 294.336374 - 0: The maximum resident set size (KB) = 973596 + 0: The total amount of wall time = 293.409378 + 0: The maximum resident set size (KB) = 973480 -Test 089 rap_unified_ugwp_debug PASS Tries: 2 +Test 092 rap_unified_ugwp_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_lndp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rap_lndp_debug -Checking test 090 rap_lndp_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rap_lndp_debug +Checking test 093 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 292.105830 - 0: The maximum resident set size (KB) = 972944 + 0: The total amount of wall time = 289.784706 + 0: The maximum resident set size (KB) = 972960 -Test 090 rap_lndp_debug PASS +Test 093 rap_lndp_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_flake_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rap_flake_debug -Checking test 091 rap_flake_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rap_flake_debug +Checking test 094 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 286.113166 + 0: The total amount of wall time = 287.212769 0: The maximum resident set size (KB) = 972096 -Test 091 rap_flake_debug PASS Tries: 2 +Test 094 rap_flake_debug PASS -Test 092 rap_progcld_thompson_debug FAIL + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_progcld_thompson_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rap_progcld_thompson_debug +Checking test 095 rap_progcld_thompson_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 289.998087 + 0: The maximum resident set size (KB) = 972344 + +Test 095 rap_progcld_thompson_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_noah_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rap_noah_debug -Checking test 093 rap_noah_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rap_noah_debug +Checking test 096 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.365816 - 0: The maximum resident set size (KB) = 970708 + 0: The total amount of wall time = 280.427160 + 0: The maximum resident set size (KB) = 970700 -Test 093 rap_noah_debug PASS +Test 096 rap_noah_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rap_sfcdiff_debug -Checking test 094 rap_sfcdiff_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rap_sfcdiff_debug +Checking test 097 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 287.234416 - 0: The maximum resident set size (KB) = 971972 + 0: The total amount of wall time = 287.321233 + 0: The maximum resident set size (KB) = 972076 -Test 094 rap_sfcdiff_debug PASS Tries: 2 +Test 097 rap_sfcdiff_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 095 rap_noah_sfcdiff_cires_ugwp_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 098 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 470.193936 - 0: The maximum resident set size (KB) = 971348 + 0: The total amount of wall time = 473.122579 + 0: The maximum resident set size (KB) = 971440 -Test 095 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 098 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1beta_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rrfs_v1beta_debug -Checking test 096 rrfs_v1beta_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rrfs_v1beta_debug +Checking test 099 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 282.435834 - 0: The maximum resident set size (KB) = 968076 + 0: The total amount of wall time = 284.086605 + 0: The maximum resident set size (KB) = 968052 -Test 096 rrfs_v1beta_debug PASS +Test 099 rrfs_v1beta_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wam_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_wam_debug -Checking test 097 control_wam_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_wam_debug +Checking test 100 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 296.087957 - 0: The maximum resident set size (KB) = 219180 + 0: The total amount of wall time = 295.097674 + 0: The maximum resident set size (KB) = 219120 -Test 097 control_wam_debug PASS +Test 100 control_wam_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/regional_spp_sppt_shum_skeb_dyn32_phy32 -Checking test 098 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 101 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -3202,15 +3420,15 @@ Checking test 098 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 307.619068 - 0: The maximum resident set size (KB) = 788452 + 0: The total amount of wall time = 303.589617 + 0: The maximum resident set size (KB) = 788052 -Test 098 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS +Test 101 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rap_control_dyn32_phy32 -Checking test 099 rap_control_dyn32_phy32 results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rap_control_dyn32_phy32 +Checking test 102 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3256,15 +3474,15 @@ Checking test 099 rap_control_dyn32_phy32 results .... Comparing 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.169168 - 0: The maximum resident set size (KB) = 690732 + 0: The total amount of wall time = 389.472831 + 0: The maximum resident set size (KB) = 690808 -Test 099 rap_control_dyn32_phy32 PASS +Test 102 rap_control_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hrrr_control_dyn32_phy32 -Checking test 100 hrrr_control_dyn32_phy32 results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hrrr_control_dyn32_phy32 +Checking test 103 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3310,15 +3528,15 @@ Checking test 100 hrrr_control_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 208.912954 - 0: The maximum resident set size (KB) = 689180 + 0: The total amount of wall time = 205.330609 + 0: The maximum resident set size (KB) = 689076 -Test 100 hrrr_control_dyn32_phy32 PASS +Test 103 hrrr_control_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rap_2threads_dyn32_phy32 -Checking test 101 rap_2threads_dyn32_phy32 results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rap_2threads_dyn32_phy32 +Checking test 104 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3364,15 +3582,15 @@ Checking test 101 rap_2threads_dyn32_phy32 results .... Comparing 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.409374 - 0: The maximum resident set size (KB) = 740340 + 0: The total amount of wall time = 384.935646 + 0: The maximum resident set size (KB) = 740112 -Test 101 rap_2threads_dyn32_phy32 PASS +Test 104 rap_2threads_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hrrr_control_2threads_dyn32_phy32 -Checking test 102 hrrr_control_2threads_dyn32_phy32 results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hrrr_control_2threads_dyn32_phy32 +Checking test 105 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3418,15 +3636,15 @@ Checking test 102 hrrr_control_2threads_dyn32_phy32 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 = 197.561012 - 0: The maximum resident set size (KB) = 742844 + 0: The total amount of wall time = 200.019667 + 0: The maximum resident set size (KB) = 742692 -Test 102 hrrr_control_2threads_dyn32_phy32 PASS +Test 105 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hrrr_control_decomp_dyn32_phy32 -Checking test 103 hrrr_control_decomp_dyn32_phy32 results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hrrr_control_decomp_dyn32_phy32 +Checking test 106 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3472,15 +3690,15 @@ Checking test 103 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 217.728540 - 0: The maximum resident set size (KB) = 688072 + 0: The total amount of wall time = 224.021981 + 0: The maximum resident set size (KB) = 688076 -Test 103 hrrr_control_decomp_dyn32_phy32 PASS +Test 106 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rap_restart_dyn32_phy32 -Checking test 104 rap_restart_dyn32_phy32 results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rap_restart_dyn32_phy32 +Checking test 107 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3518,15 +3736,15 @@ Checking test 104 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 295.086784 - 0: The maximum resident set size (KB) = 524968 + 0: The total amount of wall time = 291.166290 + 0: The maximum resident set size (KB) = 524836 -Test 104 rap_restart_dyn32_phy32 PASS +Test 107 rap_restart_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hrrr_control_restart_dyn32_phy32 -Checking test 105 hrrr_control_restart_dyn32_phy32 results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hrrr_control_restart_dyn32_phy32 +Checking test 108 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3564,15 +3782,15 @@ Checking test 105 hrrr_control_restart_dyn32_phy32 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 = 105.960686 - 0: The maximum resident set size (KB) = 516484 + 0: The total amount of wall time = 111.513444 + 0: The maximum resident set size (KB) = 517728 -Test 105 hrrr_control_restart_dyn32_phy32 PASS +Test 108 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn64_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rap_control_dyn64_phy32 -Checking test 106 rap_control_dyn64_phy32 results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rap_control_dyn64_phy32 +Checking test 109 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3618,82 +3836,82 @@ Checking test 106 rap_control_dyn64_phy32 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 = 268.302443 - 0: The maximum resident set size (KB) = 713784 + 0: The total amount of wall time = 259.616198 + 0: The maximum resident set size (KB) = 713776 -Test 106 rap_control_dyn64_phy32 PASS Tries: 2 +Test 109 rap_control_dyn64_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rap_control_debug_dyn32_phy32 -Checking test 107 rap_control_debug_dyn32_phy32 results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rap_control_debug_dyn32_phy32 +Checking test 110 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 284.668619 - 0: The maximum resident set size (KB) = 856896 + 0: The total amount of wall time = 285.624359 + 0: The maximum resident set size (KB) = 856716 -Test 107 rap_control_debug_dyn32_phy32 PASS +Test 110 rap_control_debug_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hrrr_control_debug_dyn32_phy32 -Checking test 108 hrrr_control_debug_dyn32_phy32 results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hrrr_control_debug_dyn32_phy32 +Checking test 111 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.625994 - 0: The maximum resident set size (KB) = 855072 + 0: The total amount of wall time = 283.092570 + 0: The maximum resident set size (KB) = 855212 -Test 108 hrrr_control_debug_dyn32_phy32 PASS +Test 111 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rap_control_dyn64_phy32_debug -Checking test 109 rap_control_dyn64_phy32_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rap_control_dyn64_phy32_debug +Checking test 112 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 293.359177 - 0: The maximum resident set size (KB) = 880408 + 0: The total amount of wall time = 288.880931 + 0: The maximum resident set size (KB) = 880420 -Test 109 rap_control_dyn64_phy32_debug PASS Tries: 2 +Test 112 rap_control_dyn64_phy32_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hafs_regional_atm -Checking test 110 hafs_regional_atm results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hafs_regional_atm +Checking test 113 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 272.827406 - 0: The maximum resident set size (KB) = 682612 + 0: The total amount of wall time = 274.756916 + 0: The maximum resident set size (KB) = 681232 -Test 110 hafs_regional_atm PASS +Test 113 hafs_regional_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hafs_regional_atm_thompson_gfdlsf -Checking test 111 hafs_regional_atm_thompson_gfdlsf results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hafs_regional_atm_thompson_gfdlsf +Checking test 114 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 299.087577 - 0: The maximum resident set size (KB) = 1036596 + 0: The total amount of wall time = 309.628001 + 0: The maximum resident set size (KB) = 1036628 -Test 111 hafs_regional_atm_thompson_gfdlsf PASS +Test 114 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_ocn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hafs_regional_atm_ocn -Checking test 112 hafs_regional_atm_ocn results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hafs_regional_atm_ocn +Checking test 115 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -3701,15 +3919,15 @@ Checking test 112 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 438.740053 - 0: The maximum resident set size (KB) = 712128 + 0: The total amount of wall time = 435.642321 + 0: The maximum resident set size (KB) = 712460 -Test 112 hafs_regional_atm_ocn PASS +Test 115 hafs_regional_atm_ocn PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_wav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hafs_regional_atm_wav -Checking test 113 hafs_regional_atm_wav results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hafs_regional_atm_wav +Checking test 116 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK @@ -3717,15 +3935,15 @@ Checking test 113 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 932.136626 - 0: The maximum resident set size (KB) = 747372 + 0: The total amount of wall time = 939.668303 + 0: The maximum resident set size (KB) = 746908 -Test 113 hafs_regional_atm_wav PASS +Test 116 hafs_regional_atm_wav PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_ocn_wav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hafs_regional_atm_ocn_wav -Checking test 114 hafs_regional_atm_ocn_wav results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hafs_regional_atm_ocn_wav +Checking test 117 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -3735,29 +3953,29 @@ Checking test 114 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 1033.833288 - 0: The maximum resident set size (KB) = 764012 + 0: The total amount of wall time = 1034.205378 + 0: The maximum resident set size (KB) = 764760 -Test 114 hafs_regional_atm_ocn_wav PASS +Test 117 hafs_regional_atm_ocn_wav PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hafs_regional_1nest_atm -Checking test 115 hafs_regional_1nest_atm results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hafs_regional_1nest_atm +Checking test 118 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 384.165369 - 0: The maximum resident set size (KB) = 275916 + 0: The total amount of wall time = 379.659275 + 0: The maximum resident set size (KB) = 276132 -Test 115 hafs_regional_1nest_atm PASS +Test 118 hafs_regional_1nest_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hafs_regional_telescopic_2nests_atm -Checking test 116 hafs_regional_telescopic_2nests_atm results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hafs_regional_telescopic_2nests_atm +Checking test 119 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -3765,29 +3983,29 @@ Checking test 116 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 435.760968 - 0: The maximum resident set size (KB) = 282336 + 0: The total amount of wall time = 437.671968 + 0: The maximum resident set size (KB) = 282292 -Test 116 hafs_regional_telescopic_2nests_atm PASS +Test 119 hafs_regional_telescopic_2nests_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hafs_global_1nest_atm -Checking test 117 hafs_global_1nest_atm results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hafs_global_1nest_atm +Checking test 120 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 173.580236 - 0: The maximum resident set size (KB) = 177824 + 0: The total amount of wall time = 183.642890 + 0: The maximum resident set size (KB) = 177772 -Test 117 hafs_global_1nest_atm PASS +Test 120 hafs_global_1nest_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_multiple_4nests_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hafs_global_multiple_4nests_atm -Checking test 118 hafs_global_multiple_4nests_atm results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hafs_global_multiple_4nests_atm +Checking test 121 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -3804,15 +4022,15 @@ Checking test 118 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 505.880499 - 0: The maximum resident set size (KB) = 209868 + 0: The total amount of wall time = 507.175679 + 0: The maximum resident set size (KB) = 229956 -Test 118 hafs_global_multiple_4nests_atm PASS +Test 121 hafs_global_multiple_4nests_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hafs_regional_specified_moving_1nest_atm -Checking test 119 hafs_regional_specified_moving_1nest_atm results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hafs_regional_specified_moving_1nest_atm +Checking test 122 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -3820,29 +4038,29 @@ Checking test 119 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 237.305121 - 0: The maximum resident set size (KB) = 288444 + 0: The total amount of wall time = 243.195448 + 0: The maximum resident set size (KB) = 288288 -Test 119 hafs_regional_specified_moving_1nest_atm PASS +Test 122 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hafs_regional_storm_following_1nest_atm -Checking test 120 hafs_regional_storm_following_1nest_atm results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hafs_regional_storm_following_1nest_atm +Checking test 123 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 226.177511 - 0: The maximum resident set size (KB) = 287124 + 0: The total amount of wall time = 227.865179 + 0: The maximum resident set size (KB) = 287092 -Test 120 hafs_regional_storm_following_1nest_atm PASS +Test 123 hafs_regional_storm_following_1nest_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hafs_regional_storm_following_1nest_atm_ocn -Checking test 121 hafs_regional_storm_following_1nest_atm_ocn results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hafs_regional_storm_following_1nest_atm_ocn +Checking test 124 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -3850,43 +4068,43 @@ Checking test 121 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 261.955513 - 0: The maximum resident set size (KB) = 325092 + 0: The total amount of wall time = 263.132613 + 0: The maximum resident set size (KB) = 324104 -Test 121 hafs_regional_storm_following_1nest_atm_ocn PASS +Test 124 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hafs_global_storm_following_1nest_atm -Checking test 122 hafs_global_storm_following_1nest_atm results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hafs_global_storm_following_1nest_atm +Checking test 125 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 71.743742 - 0: The maximum resident set size (KB) = 192844 + 0: The total amount of wall time = 70.325184 + 0: The maximum resident set size (KB) = 192812 -Test 122 hafs_global_storm_following_1nest_atm PASS +Test 125 hafs_global_storm_following_1nest_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hafs_regional_storm_following_1nest_atm_ocn_debug -Checking test 123 hafs_regional_storm_following_1nest_atm_ocn_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hafs_regional_storm_following_1nest_atm_ocn_debug +Checking test 126 hafs_regional_storm_following_1nest_atm_ocn_debug results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 775.234228 - 0: The maximum resident set size (KB) = 353732 + 0: The total amount of wall time = 775.678676 + 0: The maximum resident set size (KB) = 352996 -Test 123 hafs_regional_storm_following_1nest_atm_ocn_debug PASS +Test 126 hafs_regional_storm_following_1nest_atm_ocn_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hafs_regional_storm_following_1nest_atm_ocn_wav -Checking test 124 hafs_regional_storm_following_1nest_atm_ocn_wav results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 127 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -3896,162 +4114,162 @@ Checking test 124 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 744.257165 - 0: The maximum resident set size (KB) = 368372 + 0: The total amount of wall time = 744.362188 + 0: The maximum resident set size (KB) = 367028 -Test 124 hafs_regional_storm_following_1nest_atm_ocn_wav PASS +Test 127 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_docn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hafs_regional_docn -Checking test 125 hafs_regional_docn results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hafs_regional_docn +Checking test 128 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 386.974894 - 0: The maximum resident set size (KB) = 723968 + 0: The total amount of wall time = 393.831946 + 0: The maximum resident set size (KB) = 723376 -Test 125 hafs_regional_docn PASS +Test 128 hafs_regional_docn PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_docn_oisst -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hafs_regional_docn_oisst -Checking test 126 hafs_regional_docn_oisst results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hafs_regional_docn_oisst +Checking test 129 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 391.347095 - 0: The maximum resident set size (KB) = 710268 + 0: The total amount of wall time = 389.105197 + 0: The maximum resident set size (KB) = 709432 -Test 126 hafs_regional_docn_oisst PASS +Test 129 hafs_regional_docn_oisst PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_datm_cdeps -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hafs_regional_datm_cdeps -Checking test 127 hafs_regional_datm_cdeps results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hafs_regional_datm_cdeps +Checking test 130 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 1169.053987 - 0: The maximum resident set size (KB) = 808968 + 0: The total amount of wall time = 1168.527335 + 0: The maximum resident set size (KB) = 808980 -Test 127 hafs_regional_datm_cdeps PASS +Test 130 hafs_regional_datm_cdeps PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/datm_cdeps_control_cfsr -Checking test 128 datm_cdeps_control_cfsr results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/datm_cdeps_control_cfsr +Checking test 131 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 166.453730 - 0: The maximum resident set size (KB) = 721072 + 0: The total amount of wall time = 167.674770 + 0: The maximum resident set size (KB) = 721060 -Test 128 datm_cdeps_control_cfsr PASS +Test 131 datm_cdeps_control_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/datm_cdeps_restart_cfsr -Checking test 129 datm_cdeps_restart_cfsr results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/datm_cdeps_restart_cfsr +Checking test 132 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 95.947139 - 0: The maximum resident set size (KB) = 716032 + 0: The total amount of wall time = 96.765422 + 0: The maximum resident set size (KB) = 715932 -Test 129 datm_cdeps_restart_cfsr PASS +Test 132 datm_cdeps_restart_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/datm_cdeps_control_gefs -Checking test 130 datm_cdeps_control_gefs results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/datm_cdeps_control_gefs +Checking test 133 datm_cdeps_control_gefs 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 = 159.743803 - 0: The maximum resident set size (KB) = 601048 + 0: The total amount of wall time = 165.205846 + 0: The maximum resident set size (KB) = 603068 -Test 130 datm_cdeps_control_gefs PASS +Test 133 datm_cdeps_control_gefs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_iau_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/datm_cdeps_iau_gefs -Checking test 131 datm_cdeps_iau_gefs results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/datm_cdeps_iau_gefs +Checking test 134 datm_cdeps_iau_gefs 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 = 163.238110 - 0: The maximum resident set size (KB) = 601004 + 0: The total amount of wall time = 161.892606 + 0: The maximum resident set size (KB) = 605012 -Test 131 datm_cdeps_iau_gefs PASS +Test 134 datm_cdeps_iau_gefs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_stochy_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/datm_cdeps_stochy_gefs -Checking test 132 datm_cdeps_stochy_gefs results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/datm_cdeps_stochy_gefs +Checking test 135 datm_cdeps_stochy_gefs 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 = 161.774148 - 0: The maximum resident set size (KB) = 601048 + 0: The total amount of wall time = 161.608795 + 0: The maximum resident set size (KB) = 600996 -Test 132 datm_cdeps_stochy_gefs PASS +Test 135 datm_cdeps_stochy_gefs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/datm_cdeps_ciceC_cfsr -Checking test 133 datm_cdeps_ciceC_cfsr results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/datm_cdeps_ciceC_cfsr +Checking test 136 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 167.037541 - 0: The maximum resident set size (KB) = 721140 + 0: The total amount of wall time = 165.792171 + 0: The maximum resident set size (KB) = 721476 -Test 133 datm_cdeps_ciceC_cfsr PASS +Test 136 datm_cdeps_ciceC_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_bulk_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/datm_cdeps_bulk_cfsr -Checking test 134 datm_cdeps_bulk_cfsr results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/datm_cdeps_bulk_cfsr +Checking test 137 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 165.115945 - 0: The maximum resident set size (KB) = 721164 + 0: The total amount of wall time = 166.822891 + 0: The maximum resident set size (KB) = 721204 -Test 134 datm_cdeps_bulk_cfsr PASS +Test 137 datm_cdeps_bulk_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_bulk_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/datm_cdeps_bulk_gefs -Checking test 135 datm_cdeps_bulk_gefs results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/datm_cdeps_bulk_gefs +Checking test 138 datm_cdeps_bulk_gefs 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 = 158.222040 - 0: The maximum resident set size (KB) = 601952 + 0: The total amount of wall time = 161.158318 + 0: The maximum resident set size (KB) = 608076 -Test 135 datm_cdeps_bulk_gefs PASS +Test 138 datm_cdeps_bulk_gefs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_mx025_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/datm_cdeps_mx025_cfsr -Checking test 136 datm_cdeps_mx025_cfsr results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/datm_cdeps_mx025_cfsr +Checking test 139 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4059,15 +4277,15 @@ Checking test 136 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 431.632027 - 0: The maximum resident set size (KB) = 497260 + 0: The total amount of wall time = 428.476106 + 0: The maximum resident set size (KB) = 494952 -Test 136 datm_cdeps_mx025_cfsr PASS +Test 139 datm_cdeps_mx025_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_mx025_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/datm_cdeps_mx025_gefs -Checking test 137 datm_cdeps_mx025_gefs results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/datm_cdeps_mx025_gefs +Checking test 140 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4075,65 +4293,78 @@ Checking test 137 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 408.466324 - 0: The maximum resident set size (KB) = 476772 + 0: The total amount of wall time = 433.543825 + 0: The maximum resident set size (KB) = 476736 -Test 137 datm_cdeps_mx025_gefs PASS +Test 140 datm_cdeps_mx025_gefs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/datm_cdeps_multiple_files_cfsr -Checking test 138 datm_cdeps_multiple_files_cfsr results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/datm_cdeps_multiple_files_cfsr +Checking test 141 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 165.902689 - 0: The maximum resident set size (KB) = 720996 + 0: The total amount of wall time = 166.011060 + 0: The maximum resident set size (KB) = 721536 -Test 138 datm_cdeps_multiple_files_cfsr PASS +Test 141 datm_cdeps_multiple_files_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/datm_cdeps_3072x1536_cfsr -Checking test 139 datm_cdeps_3072x1536_cfsr results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/datm_cdeps_3072x1536_cfsr +Checking test 142 datm_cdeps_3072x1536_cfsr 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 = 255.082484 - 0: The maximum resident set size (KB) = 1948360 + 0: The total amount of wall time = 253.523195 + 0: The maximum resident set size (KB) = 1948172 -Test 139 datm_cdeps_3072x1536_cfsr PASS +Test 142 datm_cdeps_3072x1536_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_gfs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/datm_cdeps_gfs -Checking test 140 datm_cdeps_gfs results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/datm_cdeps_gfs +Checking test 143 datm_cdeps_gfs 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 = 254.068460 - 0: The maximum resident set size (KB) = 1948276 + 0: The total amount of wall time = 249.974847 + 0: The maximum resident set size (KB) = 1967620 -Test 140 datm_cdeps_gfs PASS +Test 143 datm_cdeps_gfs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_debug_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/datm_cdeps_debug_cfsr -Checking test 141 datm_cdeps_debug_cfsr results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/datm_cdeps_debug_cfsr +Checking test 144 datm_cdeps_debug_cfsr 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 = 374.584871 - 0: The maximum resident set size (KB) = 714832 + 0: The total amount of wall time = 373.921194 + 0: The maximum resident set size (KB) = 714700 + +Test 144 datm_cdeps_debug_cfsr PASS + -Test 141 datm_cdeps_debug_cfsr PASS +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr_faster +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/datm_cdeps_control_cfsr_faster +Checking test 145 datm_cdeps_control_cfsr_faster results .... + Comparing RESTART/20111002.000000.MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK + + 0: The total amount of wall time = 163.387844 + 0: The maximum resident set size (KB) = 721352 + +Test 145 datm_cdeps_control_cfsr_faster PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/datm_cdeps_lnd_gswp3 -Checking test 142 datm_cdeps_lnd_gswp3 results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/datm_cdeps_lnd_gswp3 +Checking test 146 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4141,15 +4372,15 @@ Checking test 142 datm_cdeps_lnd_gswp3 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 = 14.116383 - 0: The maximum resident set size (KB) = 145876 + 0: The total amount of wall time = 9.895409 + 0: The maximum resident set size (KB) = 149928 -Test 142 datm_cdeps_lnd_gswp3 PASS +Test 146 datm_cdeps_lnd_gswp3 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/datm_cdeps_lnd_gswp3_rst -Checking test 143 datm_cdeps_lnd_gswp3_rst results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/datm_cdeps_lnd_gswp3_rst +Checking test 147 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4157,15 +4388,15 @@ Checking test 143 datm_cdeps_lnd_gswp3_rst 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 = 22.627641 - 0: The maximum resident set size (KB) = 153908 + 0: The total amount of wall time = 16.471056 + 0: The maximum resident set size (KB) = 149828 -Test 143 datm_cdeps_lnd_gswp3_rst PASS +Test 147 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_atmlnd_sbs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_p8_atmlnd_sbs -Checking test 144 control_p8_atmlnd_sbs results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_p8_atmlnd_sbs +Checking test 148 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -4249,15 +4480,15 @@ Checking test 144 control_p8_atmlnd_sbs 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 = 233.321711 - 0: The maximum resident set size (KB) = 1425160 + 0: The total amount of wall time = 232.970971 + 0: The maximum resident set size (KB) = 1424976 -Test 144 control_p8_atmlnd_sbs PASS +Test 148 control_p8_atmlnd_sbs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_atmwav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_atmwav -Checking test 145 control_atmwav results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_atmwav +Checking test 149 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -4300,15 +4531,15 @@ Checking test 145 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 94.726500 - 0: The maximum resident set size (KB) = 450724 + 0: The total amount of wall time = 94.232400 + 0: The maximum resident set size (KB) = 450560 -Test 145 control_atmwav PASS +Test 149 control_atmwav PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/atmaero_control_p8 -Checking test 146 atmaero_control_p8 results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/atmaero_control_p8 +Checking test 150 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4351,15 +4582,15 @@ Checking test 146 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 244.531048 - 0: The maximum resident set size (KB) = 1461416 + 0: The total amount of wall time = 252.545148 + 0: The maximum resident set size (KB) = 1478556 -Test 146 atmaero_control_p8 PASS +Test 150 atmaero_control_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8_rad -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/atmaero_control_p8_rad -Checking test 147 atmaero_control_p8_rad results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/atmaero_control_p8_rad +Checking test 151 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4402,15 +4633,15 @@ Checking test 147 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 299.230987 - 0: The maximum resident set size (KB) = 1481800 + 0: The total amount of wall time = 299.424245 + 0: The maximum resident set size (KB) = 1481712 -Test 147 atmaero_control_p8_rad PASS +Test 151 atmaero_control_p8_rad PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8_rad_micro -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/atmaero_control_p8_rad_micro -Checking test 148 atmaero_control_p8_rad_micro results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/atmaero_control_p8_rad_micro +Checking test 152 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4453,15 +4684,15 @@ Checking test 148 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 307.054533 - 0: The maximum resident set size (KB) = 1503892 + 0: The total amount of wall time = 303.400788 + 0: The maximum resident set size (KB) = 1486876 -Test 148 atmaero_control_p8_rad_micro PASS +Test 152 atmaero_control_p8_rad_micro PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_atmaq -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/regional_atmaq -Checking test 149 regional_atmaq results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/regional_atmaq +Checking test 153 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -4476,98 +4707,118 @@ Checking test 149 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 636.231552 - 0: The maximum resident set size (KB) = 1087232 + 0: The total amount of wall time = 630.911169 + 0: The maximum resident set size (KB) = 1088084 -Test 149 regional_atmaq PASS +Test 153 regional_atmaq PASS -FAILED TESTS: -Test cpld_debug_p8 015 failed in run_test failed -Test rap_progcld_thompson_debug 092 failed in run_test failed -REGRESSION TEST FAILED -Tue Feb 28 18:43:02 EST 2023 -Elapsed time: 06h:09m:03s. Have a nice day! -Tue Feb 28 19:56:54 EST 2023 -Start Regression test +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_atmaq_faster +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/regional_atmaq_faster +Checking test 154 regional_atmaq_faster results .... + Comparing sfcf000.nc .........OK + Comparing sfcf003.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf003.nc .........OK + Comparing atmf006.nc .........OK + Comparing RESTART/20190801.180000.coupler.res .........OK + Comparing RESTART/20190801.180000.fv_core.res.nc .........OK + Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.phy_data.nc .........OK + Comparing RESTART/20190801.180000.sfc_data.nc .........OK -Compile 001 elapsed time 716 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 002 elapsed time 608 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug + 0: The total amount of wall time = 637.594771 + 0: The maximum resident set size (KB) = 1077632 -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_debug_p8 -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_14293/cpld_debug_p8 -Checking test 001 cpld_debug_p8 results .... - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing gocart.inst_aod.20210322_0900z.nc4 .........OK - Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-32400.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK - Comparing 20210322.090000.out_pnt.ww3 .........OK - Comparing 20210322.090000.out_grd.ww3 .........OK +Test 154 regional_atmaq_faster PASS - 0: The total amount of wall time = 583.282275 - 0: The maximum resident set size (KB) = 1625816 +FAILED TESTS: +Test cpld_control_p8_faster 021 failed in check_result failed +Test cpld_control_p8_faster 021 failed in run_test failed -Test 001 cpld_debug_p8 PASS +REGRESSION TEST FAILED +Sat Mar 4 17:26:04 EST 2023 +Elapsed time: 01h:50m:18s. Have a nice day! +Mon Mar 6 09:31:36 EST 2023 +Start Regression test +Compile 001 elapsed time 915 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_progcld_thompson_debug -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_14293/rap_progcld_thompson_debug -Checking test 002 rap_progcld_thompson_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8_faster +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_37025/cpld_control_p8_faster +Checking test 001 cpld_control_p8_faster results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 285.729743 - 0: The maximum resident set size (KB) = 972060 + 0: The total amount of wall time = 405.873791 + 0: The maximum resident set size (KB) = 1586512 -Test 002 rap_progcld_thompson_debug PASS +Test 001 cpld_control_p8_faster PASS REGRESSION TEST WAS SUCCESSFUL -Tue Feb 28 20:24:42 EST 2023 -Elapsed time: 00h:27m:49s. Have a nice day! +Mon Mar 6 10:47:08 EST 2023 +Elapsed time: 01h:15m:33s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index e96473c051d..835b407e279 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,21 +1,21 @@ -Tue Feb 28 17:18:21 UTC 2023 +Sat Mar 4 19:48:45 UTC 2023 Start Regression test -Compile 001 elapsed time 180 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 182 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 179 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 184 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile 003 elapsed time 310 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 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 005 elapsed time 179 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 386 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 310 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 311 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 256 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 222 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 141 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 012 elapsed time 111 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 95 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 180 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 387 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 312 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 312 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 253 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 225 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 140 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 012 elapsed time 113 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/control_c48 Checking test 001 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -54,14 +54,14 @@ Checking test 001 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 681.995352 -0: The maximum resident set size (KB) = 703460 +0: The total amount of wall time = 687.569479 +0: The maximum resident set size (KB) = 698272 Test 001 control_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/control_stochy Checking test 002 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -72,14 +72,14 @@ Checking test 002 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 650.806372 - 0: The maximum resident set size (KB) = 477796 + 0: The total amount of wall time = 666.416902 + 0: The maximum resident set size (KB) = 479384 Test 002 control_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/control_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/control_ras Checking test 003 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -90,14 +90,14 @@ Checking test 003 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 823.581703 - 0: The maximum resident set size (KB) = 487412 + 0: The total amount of wall time = 830.906204 + 0: The maximum resident set size (KB) = 486292 Test 003 control_ras PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/control_p8 Checking test 004 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -144,14 +144,14 @@ Checking test 004 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 883.743504 - 0: The maximum resident set size (KB) = 1236324 + 0: The total amount of wall time = 906.694769 + 0: The maximum resident set size (KB) = 1231520 Test 004 control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/rap_control Checking test 005 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -198,14 +198,14 @@ Checking test 005 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1505.343195 - 0: The maximum resident set size (KB) = 827564 + 0: The total amount of wall time = 1456.214262 + 0: The maximum resident set size (KB) = 826216 Test 005 rap_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/rap_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/rap_decomp Checking test 006 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -252,14 +252,14 @@ Checking test 006 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1497.239260 - 0: The maximum resident set size (KB) = 826780 + 0: The total amount of wall time = 1421.087517 + 0: The maximum resident set size (KB) = 829536 Test 006 rap_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/rap_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/rap_2threads Checking test 007 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -306,14 +306,14 @@ Checking test 007 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1395.296250 - 0: The maximum resident set size (KB) = 899828 + 0: The total amount of wall time = 1346.205838 + 0: The maximum resident set size (KB) = 898148 Test 007 rap_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/rap_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/rap_restart Checking test 008 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -352,14 +352,14 @@ Checking test 008 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 723.548459 - 0: The maximum resident set size (KB) = 545176 + 0: The total amount of wall time = 739.011066 + 0: The maximum resident set size (KB) = 549584 Test 008 rap_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/rap_sfcdiff Checking test 009 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -406,14 +406,14 @@ Checking test 009 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1468.993275 - 0: The maximum resident set size (KB) = 825568 + 0: The total amount of wall time = 1446.645066 + 0: The maximum resident set size (KB) = 827692 Test 009 rap_sfcdiff PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/rap_sfcdiff_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/rap_sfcdiff_decomp Checking test 010 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -460,14 +460,14 @@ Checking test 010 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1418.171232 - 0: The maximum resident set size (KB) = 825952 + 0: The total amount of wall time = 1434.115884 + 0: The maximum resident set size (KB) = 826376 Test 010 rap_sfcdiff_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/rap_sfcdiff_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/rap_sfcdiff_restart Checking test 011 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -506,14 +506,14 @@ Checking test 011 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1073.372238 - 0: The maximum resident set size (KB) = 554372 + 0: The total amount of wall time = 1085.320289 + 0: The maximum resident set size (KB) = 550236 Test 011 rap_sfcdiff_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/hrrr_control Checking test 012 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -560,14 +560,14 @@ Checking test 012 hrrr_control results .... Comparing 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.890472 - 0: The maximum resident set size (KB) = 831164 + 0: The total amount of wall time = 1436.662439 + 0: The maximum resident set size (KB) = 827460 Test 012 hrrr_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/hrrr_control_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/hrrr_control_2threads Checking test 013 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -614,14 +614,14 @@ Checking test 013 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1362.051701 - 0: The maximum resident set size (KB) = 893208 + 0: The total amount of wall time = 1329.228300 + 0: The maximum resident set size (KB) = 890848 Test 013 hrrr_control_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/hrrr_control_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/hrrr_control_decomp Checking test 014 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -668,14 +668,14 @@ Checking test 014 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1419.127555 - 0: The maximum resident set size (KB) = 828608 + 0: The total amount of wall time = 1423.902413 + 0: The maximum resident set size (KB) = 831164 Test 014 hrrr_control_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/hrrr_control_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/hrrr_control_restart Checking test 015 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -714,14 +714,14 @@ Checking test 015 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1061.841752 - 0: The maximum resident set size (KB) = 548908 + 0: The total amount of wall time = 1049.586820 + 0: The maximum resident set size (KB) = 550844 Test 015 hrrr_control_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/rrfs_v1beta Checking test 016 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -768,14 +768,14 @@ Checking test 016 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1448.064702 - 0: The maximum resident set size (KB) = 825300 + 0: The total amount of wall time = 1439.850285 + 0: The maximum resident set size (KB) = 826256 Test 016 rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/rrfs_conus13km_hrrr_warm Checking test 017 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -784,14 +784,14 @@ Checking test 017 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 769.900404 - 0: The maximum resident set size (KB) = 636516 + 0: The total amount of wall time = 759.070324 + 0: The maximum resident set size (KB) = 636772 Test 017 rrfs_conus13km_hrrr_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/rrfs_smoke_conus13km_hrrr_warm Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -800,14 +800,14 @@ Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 789.567918 - 0: The maximum resident set size (KB) = 651592 + 0: The total amount of wall time = 797.263319 + 0: The maximum resident set size (KB) = 650192 Test 018 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/rrfs_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/rrfs_conus13km_radar_tten_warm Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -816,14 +816,14 @@ Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 755.956341 - 0: The maximum resident set size (KB) = 638848 + 0: The total amount of wall time = 795.117104 + 0: The maximum resident set size (KB) = 640024 Test 019 rrfs_conus13km_radar_tten_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/rrfs_conus13km_radar_tten_warm_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/rrfs_conus13km_radar_tten_warm_2threads Checking test 020 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -832,208 +832,208 @@ Checking test 020 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 885.814415 - 0: The maximum resident set size (KB) = 637104 + 0: The total amount of wall time = 899.812997 + 0: The maximum resident set size (KB) = 635416 Test 020 rrfs_conus13km_radar_tten_warm_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/control_diag_debug Checking test 021 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 128.243754 - 0: The maximum resident set size (KB) = 534476 + 0: The total amount of wall time = 130.542255 + 0: The maximum resident set size (KB) = 530048 Test 021 control_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/regional_debug Checking test 022 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 700.252699 - 0: The maximum resident set size (KB) = 594120 + 0: The total amount of wall time = 592.908726 + 0: The maximum resident set size (KB) = 594916 Test 022 regional_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/rap_control_debug Checking test 023 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 172.706799 - 0: The maximum resident set size (KB) = 844760 + 0: The total amount of wall time = 175.640009 + 0: The maximum resident set size (KB) = 846816 Test 023 rap_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/hrrr_control_debug Checking test 024 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 170.575272 - 0: The maximum resident set size (KB) = 840912 + 0: The total amount of wall time = 175.031380 + 0: The maximum resident set size (KB) = 842900 Test 024 hrrr_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/rap_diag_debug Checking test 025 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 215.055794 - 0: The maximum resident set size (KB) = 926236 + 0: The total amount of wall time = 214.027605 + 0: The maximum resident set size (KB) = 928544 Test 025 rap_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/rap_noah_sfcdiff_cires_ugwp_debug Checking test 026 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 270.294493 - 0: The maximum resident set size (KB) = 847904 + 0: The total amount of wall time = 283.894594 + 0: The maximum resident set size (KB) = 843860 Test 026 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/rap_progcld_thompson_debug Checking test 027 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 178.101190 - 0: The maximum resident set size (KB) = 845300 + 0: The total amount of wall time = 177.591581 + 0: The maximum resident set size (KB) = 849544 Test 027 rap_progcld_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/rrfs_v1beta_debug Checking test 028 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 177.743407 - 0: The maximum resident set size (KB) = 842864 + 0: The total amount of wall time = 175.416823 + 0: The maximum resident set size (KB) = 843156 Test 028 rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/control_ras_debug Checking test 029 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 103.041127 - 0: The maximum resident set size (KB) = 484492 + 0: The total amount of wall time = 104.569374 + 0: The maximum resident set size (KB) = 482444 Test 029 control_ras_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/control_stochy_debug Checking test 030 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 117.235254 - 0: The maximum resident set size (KB) = 480624 + 0: The total amount of wall time = 118.440657 + 0: The maximum resident set size (KB) = 476304 Test 030 control_stochy_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/control_debug_p8 Checking test 031 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 118.628295 - 0: The maximum resident set size (KB) = 1236320 + 0: The total amount of wall time = 119.962301 + 0: The maximum resident set size (KB) = 1234068 Test 031 control_debug_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/rrfs_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/rrfs_conus13km_hrrr_warm_debug Checking test 032 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 575.808646 - 0: The maximum resident set size (KB) = 653820 + 0: The total amount of wall time = 575.668703 + 0: The maximum resident set size (KB) = 653064 Test 032 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rrfs_conus13km_radar_tten_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/rrfs_conus13km_radar_tten_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/rrfs_conus13km_radar_tten_warm_debug Checking test 033 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 551.560096 - 0: The maximum resident set size (KB) = 655992 + 0: The total amount of wall time = 571.650398 + 0: The maximum resident set size (KB) = 657296 Test 033 rrfs_conus13km_radar_tten_warm_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/control_wam_debug Checking test 034 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 184.147770 - 0: The maximum resident set size (KB) = 193420 + 0: The total amount of wall time = 184.673782 + 0: The maximum resident set size (KB) = 193048 Test 034 control_wam_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/rap_control_dyn32_phy32 Checking test 035 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1080,14 +1080,14 @@ Checking test 035 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1419.930772 - 0: The maximum resident set size (KB) = 685984 + 0: The total amount of wall time = 1448.646234 + 0: The maximum resident set size (KB) = 689096 Test 035 rap_control_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/hrrr_control_dyn32_phy32 Checking test 036 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1134,14 +1134,14 @@ Checking test 036 hrrr_control_dyn32_phy32 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 = 731.249018 - 0: The maximum resident set size (KB) = 688044 + 0: The total amount of wall time = 735.473695 + 0: The maximum resident set size (KB) = 689220 Test 036 hrrr_control_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/rap_2threads_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/rap_2threads_dyn32_phy32 Checking test 037 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1188,14 +1188,14 @@ Checking test 037 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1319.444562 - 0: The maximum resident set size (KB) = 730604 + 0: The total amount of wall time = 1316.605144 + 0: The maximum resident set size (KB) = 728848 Test 037 rap_2threads_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/hrrr_control_2threads_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/hrrr_control_2threads_dyn32_phy32 Checking test 038 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1242,14 +1242,14 @@ Checking test 038 hrrr_control_2threads_dyn32_phy32 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 = 668.123702 - 0: The maximum resident set size (KB) = 728524 + 0: The total amount of wall time = 669.416747 + 0: The maximum resident set size (KB) = 728480 Test 038 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/hrrr_control_decomp_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/hrrr_control_decomp_dyn32_phy32 Checking test 039 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1296,14 +1296,14 @@ Checking test 039 hrrr_control_decomp_dyn32_phy32 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 = 721.478766 - 0: The maximum resident set size (KB) = 682736 + 0: The total amount of wall time = 737.384549 + 0: The maximum resident set size (KB) = 684076 Test 039 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/rap_restart_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/rap_restart_dyn32_phy32 Checking test 040 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1342,14 +1342,14 @@ Checking test 040 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1065.043011 - 0: The maximum resident set size (KB) = 512088 + 0: The total amount of wall time = 1093.191865 + 0: The maximum resident set size (KB) = 515928 Test 040 rap_restart_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/hrrr_control_restart_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/hrrr_control_restart_dyn32_phy32 Checking test 041 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1388,14 +1388,14 @@ Checking test 041 hrrr_control_restart_dyn32_phy32 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 = 364.269706 - 0: The maximum resident set size (KB) = 512352 + 0: The total amount of wall time = 365.726584 + 0: The maximum resident set size (KB) = 508620 Test 041 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/rap_control_dyn64_phy32 Checking test 042 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1442,56 +1442,56 @@ Checking test 042 rap_control_dyn64_phy32 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 = 1071.739973 - 0: The maximum resident set size (KB) = 709080 + 0: The total amount of wall time = 1062.739029 + 0: The maximum resident set size (KB) = 708904 Test 042 rap_control_dyn64_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/rap_control_debug_dyn32_phy32 Checking test 043 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 174.725396 - 0: The maximum resident set size (KB) = 709280 + 0: The total amount of wall time = 174.182849 + 0: The maximum resident set size (KB) = 701084 Test 043 rap_control_debug_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/hrrr_control_debug_dyn32_phy32 Checking test 044 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 170.059599 - 0: The maximum resident set size (KB) = 708380 + 0: The total amount of wall time = 174.373416 + 0: The maximum resident set size (KB) = 702304 Test 044 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/rap_control_dyn64_phy32_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/rap_control_dyn64_phy32_debug Checking test 045 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 204.468927 - 0: The maximum resident set size (KB) = 725104 + 0: The total amount of wall time = 207.383731 + 0: The maximum resident set size (KB) = 718548 Test 045 rap_control_dyn64_phy32_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/cpld_control_p8 Checking test 046 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1556,14 +1556,14 @@ Checking test 046 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1754.270977 - 0: The maximum resident set size (KB) = 1430092 + 0: The total amount of wall time = 1780.532942 + 0: The maximum resident set size (KB) = 1428688 Test 046 cpld_control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/cpld_control_nowave_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/cpld_control_nowave_noaero_p8 Checking test 047 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1625,14 +1625,14 @@ Checking test 047 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 1207.285492 - 0: The maximum resident set size (KB) = 1334824 + 0: The total amount of wall time = 1210.187846 + 0: The maximum resident set size (KB) = 1332564 Test 047 cpld_control_nowave_noaero_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/cpld_debug_p8 Checking test 048 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1685,25 +1685,25 @@ Checking test 048 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 889.194595 - 0: The maximum resident set size (KB) = 1446572 + 0: The total amount of wall time = 859.213237 + 0: The maximum resident set size (KB) = 1444772 -Test 048 cpld_debug_p8 PASS +Test 048 cpld_debug_p8 PASS Tries: 2 baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/datm_cdeps_control_cfsr Checking test 049 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 175.226684 - 0: The maximum resident set size (KB) = 663140 + 0: The total amount of wall time = 176.099080 + 0: The maximum resident set size (KB) = 665420 Test 049 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Tue Feb 28 20:16:54 UTC 2023 -Elapsed time: 02h:58m:36s. Have a nice day! +Sat Mar 4 20:59:14 UTC 2023 +Elapsed time: 01h:10m:29s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 9690785037c..e6887728a6a 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,38 +1,42 @@ -Tue Feb 28 17:02:57 UTC 2023 +Sat Mar 4 19:32:45 UTC 2023 Start Regression test -Compile 001 elapsed time 613 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 596 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 001 elapsed time 603 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 611 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON Compile 003 elapsed time 558 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 215 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 209 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 498 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 489 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 474 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 476 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 450 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 432 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 203 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 013 elapsed time 174 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 435 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 015 elapsed time 442 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 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 017 elapsed time 175 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 557 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 019 elapsed time 183 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 622 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 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 022 elapsed time 184 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 023 elapsed time 105 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 024 elapsed time 52 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 025 elapsed time 471 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 026 elapsed time 523 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 027 elapsed time 458 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 454 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 169 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 232 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 205 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 507 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 501 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 691 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 487 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 477 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 472 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 430 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 572 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 201 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 169 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 433 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 440 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 164 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 157 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 582 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 188 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 617 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 556 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 024 elapsed time 179 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 108 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 184 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 52 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 472 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 574 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 466 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 452 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 165 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 534 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8_mixedmode -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/cpld_control_p8_mixedmode +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -97,14 +101,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 303.532610 - 0: The maximum resident set size (KB) = 3146468 + 0: The total amount of wall time = 307.744798 + 0: The maximum resident set size (KB) = 3144364 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_gfsv17 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/cpld_control_gfsv17 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -168,14 +172,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 223.457946 - 0: The maximum resident set size (KB) = 1730508 + 0: The total amount of wall time = 223.569821 + 0: The maximum resident set size (KB) = 1737024 Test 002 cpld_control_gfsv17 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -240,14 +244,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 335.680410 - 0: The maximum resident set size (KB) = 3176712 + 0: The total amount of wall time = 335.274480 + 0: The maximum resident set size (KB) = 3171408 Test 003 cpld_control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/cpld_restart_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -300,14 +304,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 192.921637 - 0: The maximum resident set size (KB) = 3049552 + 0: The total amount of wall time = 193.655981 + 0: The maximum resident set size (KB) = 3044332 Test 004 cpld_restart_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/cpld_2threads_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -360,14 +364,14 @@ Checking test 005 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 353.531541 - 0: The maximum resident set size (KB) = 3504052 + 0: The total amount of wall time = 353.177801 + 0: The maximum resident set size (KB) = 3509492 Test 005 cpld_2threads_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/cpld_decomp_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/cpld_decomp_p8 Checking test 006 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -420,14 +424,14 @@ Checking test 006 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 337.312641 - 0: The maximum resident set size (KB) = 3163776 + 0: The total amount of wall time = 338.990441 + 0: The maximum resident set size (KB) = 3174488 Test 006 cpld_decomp_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/cpld_mpi_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/cpld_mpi_p8 Checking test 007 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -480,14 +484,14 @@ Checking test 007 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 279.787983 - 0: The maximum resident set size (KB) = 3020704 + 0: The total amount of wall time = 279.282474 + 0: The maximum resident set size (KB) = 3027584 Test 007 cpld_mpi_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_ciceC_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/cpld_control_ciceC_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/cpld_control_ciceC_p8 Checking test 008 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -552,14 +556,14 @@ Checking test 008 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 335.774463 - 0: The maximum resident set size (KB) = 3177544 + 0: The total amount of wall time = 338.384762 + 0: The maximum resident set size (KB) = 3180448 Test 008 cpld_control_ciceC_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/cpld_control_c192_p8 Checking test 009 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -612,14 +616,14 @@ Checking test 009 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 578.791677 - 0: The maximum resident set size (KB) = 3252664 + 0: The total amount of wall time = 581.402761 + 0: The maximum resident set size (KB) = 3251620 Test 009 cpld_control_c192_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/cpld_restart_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/cpld_restart_c192_p8 Checking test 010 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -672,14 +676,14 @@ Checking test 010 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 400.279222 - 0: The maximum resident set size (KB) = 3151064 + 0: The total amount of wall time = 401.136024 + 0: The maximum resident set size (KB) = 3155620 Test 010 cpld_restart_c192_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/cpld_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/cpld_bmark_p8 Checking test 011 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -727,14 +731,14 @@ Checking test 011 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 694.111111 - 0: The maximum resident set size (KB) = 4041660 + 0: The total amount of wall time = 703.299157 + 0: The maximum resident set size (KB) = 4030164 Test 011 cpld_bmark_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/cpld_restart_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/cpld_restart_bmark_p8 Checking test 012 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -782,14 +786,14 @@ Checking test 012 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 431.622391 - 0: The maximum resident set size (KB) = 3968248 + 0: The total amount of wall time = 439.742927 + 0: The maximum resident set size (KB) = 3975796 Test 012 cpld_restart_bmark_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/cpld_control_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/cpld_control_noaero_p8 Checking test 013 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -853,14 +857,14 @@ Checking test 013 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 259.351943 - 0: The maximum resident set size (KB) = 1718876 + 0: The total amount of wall time = 261.583278 + 0: The maximum resident set size (KB) = 1718232 Test 013 cpld_control_noaero_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/cpld_control_nowave_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/cpld_control_nowave_noaero_p8 Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -922,14 +926,14 @@ Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 255.805177 - 0: The maximum resident set size (KB) = 1766636 + 0: The total amount of wall time = 257.395069 + 0: The maximum resident set size (KB) = 1762876 Test 014 cpld_control_nowave_noaero_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/cpld_debug_p8 Checking test 015 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -982,14 +986,14 @@ Checking test 015 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 658.148590 - 0: The maximum resident set size (KB) = 3243720 + 0: The total amount of wall time = 663.266000 + 0: The maximum resident set size (KB) = 3247140 Test 015 cpld_debug_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_debug_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/cpld_debug_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/cpld_debug_noaero_p8 Checking test 016 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1041,14 +1045,14 @@ Checking test 016 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 402.269255 - 0: The maximum resident set size (KB) = 1741528 + 0: The total amount of wall time = 400.986624 + 0: The maximum resident set size (KB) = 1734896 Test 016 cpld_debug_noaero_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_noaero_p8_agrid -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/cpld_control_noaero_p8_agrid +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/cpld_control_noaero_p8_agrid Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1110,14 +1114,14 @@ Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 266.006258 - 0: The maximum resident set size (KB) = 1760240 + 0: The total amount of wall time = 263.957688 + 0: The maximum resident set size (KB) = 1753216 Test 017 cpld_control_noaero_p8_agrid PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/cpld_control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/cpld_control_c48 Checking test 018 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1167,14 +1171,14 @@ Checking test 018 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 583.314755 - 0: The maximum resident set size (KB) = 2806780 + 0: The total amount of wall time = 588.179717 + 0: The maximum resident set size (KB) = 2797156 Test 018 cpld_control_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/cpld_warmstart_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/cpld_warmstart_c48 Checking test 019 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1224,14 +1228,14 @@ Checking test 019 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 155.823186 - 0: The maximum resident set size (KB) = 2796916 + 0: The total amount of wall time = 153.261533 + 0: The maximum resident set size (KB) = 2808188 Test 019 cpld_warmstart_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/cpld_restart_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/cpld_restart_c48 Checking test 020 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1281,15 +1285,87 @@ Checking test 020 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 81.003502 - 0: The maximum resident set size (KB) = 2248572 + 0: The total amount of wall time = 82.790846 + 0: The maximum resident set size (KB) = 2246092 Test 020 cpld_restart_c48 PASS +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/cpld_control_p8_faster +Checking test 021 cpld_control_p8_faster results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 317.201741 + 0: The maximum resident set size (KB) = 3181500 + +Test 021 cpld_control_p8_faster PASS + + baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_CubedSphereGrid -Checking test 021 control_CubedSphereGrid results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_CubedSphereGrid +Checking test 022 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1315,29 +1391,29 @@ Checking test 021 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 128.517604 - 0: The maximum resident set size (KB) = 624612 + 0: The total amount of wall time = 131.679412 + 0: The maximum resident set size (KB) = 624256 -Test 021 control_CubedSphereGrid PASS +Test 022 control_CubedSphereGrid PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_CubedSphereGrid_parallel -Checking test 022 control_CubedSphereGrid_parallel results .... - Comparing sfcf000.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_CubedSphereGrid_parallel +Checking test 023 control_CubedSphereGrid_parallel results .... + Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 128.805804 - 0: The maximum resident set size (KB) = 629692 + 0: The total amount of wall time = 128.346394 + 0: The maximum resident set size (KB) = 625356 -Test 022 control_CubedSphereGrid_parallel PASS +Test 023 control_CubedSphereGrid_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_latlon -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_latlon -Checking test 023 control_latlon results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_latlon +Checking test 024 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1347,15 +1423,15 @@ Checking test 023 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 132.544540 - 0: The maximum resident set size (KB) = 627356 + 0: The total amount of wall time = 132.206022 + 0: The maximum resident set size (KB) = 627332 -Test 023 control_latlon PASS +Test 024 control_latlon PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wrtGauss_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_wrtGauss_netcdf_parallel -Checking test 024 control_wrtGauss_netcdf_parallel results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_wrtGauss_netcdf_parallel +Checking test 025 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1365,15 +1441,15 @@ Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.205680 - 0: The maximum resident set size (KB) = 628992 + 0: The total amount of wall time = 136.446234 + 0: The maximum resident set size (KB) = 625780 -Test 024 control_wrtGauss_netcdf_parallel PASS +Test 025 control_wrtGauss_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_c48 -Checking test 025 control_c48 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_c48 +Checking test 026 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1411,15 +1487,15 @@ Checking test 025 control_c48 results .... Comparing 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.759295 -0: The maximum resident set size (KB) = 803952 +0: The total amount of wall time = 369.895399 +0: The maximum resident set size (KB) = 815636 -Test 025 control_c48 PASS +Test 026 control_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_c192 -Checking test 026 control_c192 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_c192 +Checking test 027 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1429,15 +1505,15 @@ Checking test 026 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 524.527985 - 0: The maximum resident set size (KB) = 759524 + 0: The total amount of wall time = 526.911059 + 0: The maximum resident set size (KB) = 760260 -Test 026 control_c192 PASS +Test 027 control_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_c384 -Checking test 027 control_c384 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_c384 +Checking test 028 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1447,15 +1523,15 @@ Checking test 027 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 539.089063 - 0: The maximum resident set size (KB) = 1254748 + 0: The total amount of wall time = 537.895482 + 0: The maximum resident set size (KB) = 1259636 -Test 027 control_c384 PASS +Test 028 control_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c384gdas -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_c384gdas -Checking test 028 control_c384gdas results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_c384gdas +Checking test 029 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -1497,15 +1573,15 @@ Checking test 028 control_c384gdas 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 = 467.793097 - 0: The maximum resident set size (KB) = 1368604 + 0: The total amount of wall time = 468.034792 + 0: The maximum resident set size (KB) = 1373656 -Test 028 control_c384gdas PASS +Test 029 control_c384gdas PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_stochy -Checking test 029 control_stochy results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_stochy +Checking test 030 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1515,29 +1591,29 @@ Checking test 029 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 86.129680 - 0: The maximum resident set size (KB) = 629680 + 0: The total amount of wall time = 87.288703 + 0: The maximum resident set size (KB) = 628420 -Test 029 control_stochy PASS +Test 030 control_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_stochy_restart -Checking test 030 control_stochy_restart results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_stochy_restart +Checking test 031 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 47.192091 - 0: The maximum resident set size (KB) = 482984 + 0: The total amount of wall time = 47.838021 + 0: The maximum resident set size (KB) = 482024 -Test 030 control_stochy_restart PASS +Test 031 control_stochy_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_lndp -Checking test 031 control_lndp results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_lndp +Checking test 032 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1547,15 +1623,15 @@ Checking test 031 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 80.431965 - 0: The maximum resident set size (KB) = 630616 + 0: The total amount of wall time = 82.915281 + 0: The maximum resident set size (KB) = 631492 -Test 031 control_lndp PASS +Test 032 control_lndp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_iovr4 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_iovr4 -Checking test 032 control_iovr4 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_iovr4 +Checking test 033 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1569,15 +1645,15 @@ Checking test 032 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 133.889333 - 0: The maximum resident set size (KB) = 627540 + 0: The total amount of wall time = 136.405853 + 0: The maximum resident set size (KB) = 624964 -Test 032 control_iovr4 PASS +Test 033 control_iovr4 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_iovr5 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_iovr5 -Checking test 033 control_iovr5 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_iovr5 +Checking test 034 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1591,15 +1667,15 @@ Checking test 033 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 133.523047 - 0: The maximum resident set size (KB) = 625384 + 0: The total amount of wall time = 136.426706 + 0: The maximum resident set size (KB) = 624404 -Test 033 control_iovr5 PASS +Test 034 control_iovr5 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_p8 -Checking test 034 control_p8 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_p8 +Checking test 035 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1645,15 +1721,15 @@ Checking test 034 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 166.701506 - 0: The maximum resident set size (KB) = 1605472 + 0: The total amount of wall time = 165.003998 + 0: The maximum resident set size (KB) = 1608268 -Test 034 control_p8 PASS +Test 035 control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_p8_lndp -Checking test 035 control_p8_lndp results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_p8_lndp +Checking test 036 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1671,15 +1747,15 @@ Checking test 035 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 310.023083 - 0: The maximum resident set size (KB) = 1601464 + 0: The total amount of wall time = 312.356914 + 0: The maximum resident set size (KB) = 1604816 -Test 035 control_p8_lndp PASS +Test 036 control_p8_lndp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_restart_p8 -Checking test 036 control_restart_p8 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_restart_p8 +Checking test 037 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1717,15 +1793,15 @@ Checking test 036 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 87.477865 - 0: The maximum resident set size (KB) = 876128 + 0: The total amount of wall time = 87.930660 + 0: The maximum resident set size (KB) = 875296 -Test 036 control_restart_p8 PASS +Test 037 control_restart_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_decomp_p8 -Checking test 037 control_decomp_p8 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_decomp_p8 +Checking test 038 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1767,15 +1843,15 @@ Checking test 037 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 171.411649 - 0: The maximum resident set size (KB) = 1589096 + 0: The total amount of wall time = 171.885267 + 0: The maximum resident set size (KB) = 1589320 -Test 037 control_decomp_p8 PASS +Test 038 control_decomp_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_2threads_p8 -Checking test 038 control_2threads_p8 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_2threads_p8 +Checking test 039 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1817,15 +1893,15 @@ Checking test 038 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 161.928273 - 0: The maximum resident set size (KB) = 1683492 + 0: The total amount of wall time = 163.040566 + 0: The maximum resident set size (KB) = 1679900 -Test 038 control_2threads_p8 PASS +Test 039 control_2threads_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_p8_rrtmgp -Checking test 039 control_p8_rrtmgp results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_p8_rrtmgp +Checking test 040 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1871,15 +1947,15 @@ Checking test 039 control_p8_rrtmgp results .... Comparing 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.900188 - 0: The maximum resident set size (KB) = 1673148 + 0: The total amount of wall time = 222.572411 + 0: The maximum resident set size (KB) = 1669356 -Test 039 control_p8_rrtmgp PASS +Test 040 control_p8_rrtmgp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/merra2_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/merra2_thompson -Checking test 040 merra2_thompson results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/merra2_thompson +Checking test 041 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1925,15 +2001,15 @@ Checking test 040 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 189.371784 - 0: The maximum resident set size (KB) = 1610608 + 0: The total amount of wall time = 189.938281 + 0: The maximum resident set size (KB) = 1617048 -Test 040 merra2_thompson PASS +Test 041 merra2_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/regional_control -Checking test 041 regional_control results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/regional_control +Checking test 042 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1943,29 +2019,29 @@ Checking test 041 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 297.028026 - 0: The maximum resident set size (KB) = 866480 + 0: The total amount of wall time = 296.394839 + 0: The maximum resident set size (KB) = 866784 -Test 041 regional_control PASS +Test 042 regional_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/regional_restart -Checking test 042 regional_restart results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/regional_restart +Checking test 043 regional_restart 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.810841 - 0: The maximum resident set size (KB) = 862644 + 0: The total amount of wall time = 151.106817 + 0: The maximum resident set size (KB) = 865956 -Test 042 regional_restart PASS +Test 043 regional_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/regional_decomp -Checking test 043 regional_decomp results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/regional_decomp +Checking test 044 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1975,15 +2051,15 @@ Checking test 043 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 313.217090 - 0: The maximum resident set size (KB) = 865532 + 0: The total amount of wall time = 314.268822 + 0: The maximum resident set size (KB) = 859724 -Test 043 regional_decomp PASS +Test 044 regional_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/regional_2threads -Checking test 044 regional_2threads results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/regional_2threads +Checking test 045 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1993,44 +2069,44 @@ Checking test 044 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 181.549186 - 0: The maximum resident set size (KB) = 841956 + 0: The total amount of wall time = 182.108947 + 0: The maximum resident set size (KB) = 844828 -Test 044 regional_2threads PASS +Test 045 regional_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_noquilt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/regional_noquilt -Checking test 045 regional_noquilt results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/regional_noquilt +Checking test 046 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 318.045214 - 0: The maximum resident set size (KB) = 855320 + 0: The total amount of wall time = 320.001662 + 0: The maximum resident set size (KB) = 860736 -Test 045 regional_noquilt PASS +Test 046 regional_noquilt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/regional_netcdf_parallel -Checking test 046 regional_netcdf_parallel results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/regional_netcdf_parallel +Checking test 047 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 291.965836 - 0: The maximum resident set size (KB) = 858420 + 0: The total amount of wall time = 294.037994 + 0: The maximum resident set size (KB) = 863192 -Test 046 regional_netcdf_parallel PASS +Test 047 regional_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/regional_2dwrtdecomp -Checking test 047 regional_2dwrtdecomp results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/regional_2dwrtdecomp +Checking test 048 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2040,15 +2116,15 @@ Checking test 047 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 296.428766 - 0: The maximum resident set size (KB) = 869008 + 0: The total amount of wall time = 299.287540 + 0: The maximum resident set size (KB) = 866488 -Test 047 regional_2dwrtdecomp PASS +Test 048 regional_2dwrtdecomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/fv3_regional_wofs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/regional_wofs -Checking test 048 regional_wofs results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/regional_wofs +Checking test 049 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2058,15 +2134,15 @@ Checking test 048 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 376.187980 - 0: The maximum resident set size (KB) = 628372 + 0: The total amount of wall time = 376.239979 + 0: The maximum resident set size (KB) = 624884 -Test 048 regional_wofs PASS +Test 049 regional_wofs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rap_control -Checking test 049 rap_control results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rap_control +Checking test 050 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2112,15 +2188,15 @@ Checking test 049 rap_control results .... Comparing 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.680010 - 0: The maximum resident set size (KB) = 1056996 + 0: The total amount of wall time = 458.459834 + 0: The maximum resident set size (KB) = 1058396 -Test 049 rap_control PASS +Test 050 rap_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_spp_sppt_shum_skeb -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/regional_spp_sppt_shum_skeb -Checking test 050 regional_spp_sppt_shum_skeb results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/regional_spp_sppt_shum_skeb +Checking test 051 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -2130,15 +2206,15 @@ Checking test 050 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 279.940854 - 0: The maximum resident set size (KB) = 1178228 + 0: The total amount of wall time = 281.244889 + 0: The maximum resident set size (KB) = 1175320 -Test 050 regional_spp_sppt_shum_skeb PASS +Test 051 regional_spp_sppt_shum_skeb PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rap_decomp -Checking test 051 rap_decomp results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rap_decomp +Checking test 052 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2184,15 +2260,15 @@ Checking test 051 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 478.742838 - 0: The maximum resident set size (KB) = 1007332 + 0: The total amount of wall time = 482.032232 + 0: The maximum resident set size (KB) = 1005756 -Test 051 rap_decomp PASS +Test 052 rap_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rap_2threads -Checking test 052 rap_2threads results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rap_2threads +Checking test 053 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2238,15 +2314,15 @@ Checking test 052 rap_2threads results .... Comparing 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.971590 - 0: The maximum resident set size (KB) = 1134416 + 0: The total amount of wall time = 442.994372 + 0: The maximum resident set size (KB) = 1136076 -Test 052 rap_2threads PASS +Test 053 rap_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rap_restart -Checking test 053 rap_restart results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rap_restart +Checking test 054 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2284,15 +2360,15 @@ Checking test 053 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 233.228514 - 0: The maximum resident set size (KB) = 966608 + 0: The total amount of wall time = 234.671492 + 0: The maximum resident set size (KB) = 965004 -Test 053 rap_restart PASS +Test 054 rap_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rap_sfcdiff -Checking test 054 rap_sfcdiff results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rap_sfcdiff +Checking test 055 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2338,15 +2414,15 @@ Checking test 054 rap_sfcdiff results .... Comparing 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.850412 - 0: The maximum resident set size (KB) = 1062268 + 0: The total amount of wall time = 455.524313 + 0: The maximum resident set size (KB) = 1057996 -Test 054 rap_sfcdiff PASS +Test 055 rap_sfcdiff PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rap_sfcdiff_decomp -Checking test 055 rap_sfcdiff_decomp results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rap_sfcdiff_decomp +Checking test 056 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2392,15 +2468,15 @@ Checking test 055 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 476.642848 - 0: The maximum resident set size (KB) = 1003632 + 0: The total amount of wall time = 479.247406 + 0: The maximum resident set size (KB) = 1004608 -Test 055 rap_sfcdiff_decomp PASS +Test 056 rap_sfcdiff_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rap_sfcdiff_restart -Checking test 056 rap_sfcdiff_restart results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rap_sfcdiff_restart +Checking test 057 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2438,15 +2514,15 @@ Checking test 056 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 341.477942 - 0: The maximum resident set size (KB) = 992952 + 0: The total amount of wall time = 339.490107 + 0: The maximum resident set size (KB) = 988072 -Test 056 rap_sfcdiff_restart PASS +Test 057 rap_sfcdiff_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hrrr_control -Checking test 057 hrrr_control results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hrrr_control +Checking test 058 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2492,15 +2568,15 @@ Checking test 057 hrrr_control results .... Comparing 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.484871 - 0: The maximum resident set size (KB) = 1059276 + 0: The total amount of wall time = 437.496358 + 0: The maximum resident set size (KB) = 1059360 -Test 057 hrrr_control PASS +Test 058 hrrr_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hrrr_control_decomp -Checking test 058 hrrr_control_decomp results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hrrr_control_decomp +Checking test 059 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2546,15 +2622,15 @@ Checking test 058 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 454.204363 - 0: The maximum resident set size (KB) = 1004020 + 0: The total amount of wall time = 459.952156 + 0: The maximum resident set size (KB) = 996124 -Test 058 hrrr_control_decomp PASS +Test 059 hrrr_control_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hrrr_control_2threads -Checking test 059 hrrr_control_2threads results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hrrr_control_2threads +Checking test 060 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2600,15 +2676,15 @@ Checking test 059 hrrr_control_2threads results .... Comparing 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.065655 - 0: The maximum resident set size (KB) = 1137532 + 0: The total amount of wall time = 418.101351 + 0: The maximum resident set size (KB) = 1130600 -Test 059 hrrr_control_2threads PASS +Test 060 hrrr_control_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hrrr_control_restart -Checking test 060 hrrr_control_restart results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hrrr_control_restart +Checking test 061 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2646,15 +2722,15 @@ Checking test 060 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 329.340291 - 0: The maximum resident set size (KB) = 987348 + 0: The total amount of wall time = 328.592693 + 0: The maximum resident set size (KB) = 989072 -Test 060 hrrr_control_restart PASS +Test 061 hrrr_control_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rrfs_v1beta -Checking test 061 rrfs_v1beta results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rrfs_v1beta +Checking test 062 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2700,15 +2776,15 @@ Checking test 061 rrfs_v1beta results .... Comparing 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.941615 - 0: The maximum resident set size (KB) = 1054504 + 0: The total amount of wall time = 448.629999 + 0: The maximum resident set size (KB) = 1058256 -Test 061 rrfs_v1beta PASS +Test 062 rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1nssl -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rrfs_v1nssl -Checking test 062 rrfs_v1nssl results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rrfs_v1nssl +Checking test 063 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2722,15 +2798,15 @@ Checking test 062 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 525.429126 - 0: The maximum resident set size (KB) = 694884 + 0: The total amount of wall time = 524.945663 + 0: The maximum resident set size (KB) = 696632 -Test 062 rrfs_v1nssl PASS +Test 063 rrfs_v1nssl PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rrfs_v1nssl_nohailnoccn -Checking test 063 rrfs_v1nssl_nohailnoccn results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rrfs_v1nssl_nohailnoccn +Checking test 064 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2744,15 +2820,15 @@ Checking test 063 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 510.339246 - 0: The maximum resident set size (KB) = 755824 + 0: The total amount of wall time = 515.859546 + 0: The maximum resident set size (KB) = 753104 -Test 063 rrfs_v1nssl_nohailnoccn PASS +Test 064 rrfs_v1nssl_nohailnoccn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rrfs_conus13km_hrrr_warm -Checking test 064 rrfs_conus13km_hrrr_warm results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rrfs_conus13km_hrrr_warm +Checking test 065 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2760,15 +2836,15 @@ Checking test 064 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 121.972982 - 0: The maximum resident set size (KB) = 931444 + 0: The total amount of wall time = 125.391351 + 0: The maximum resident set size (KB) = 932832 -Test 064 rrfs_conus13km_hrrr_warm PASS +Test 065 rrfs_conus13km_hrrr_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rrfs_smoke_conus13km_hrrr_warm -Checking test 065 rrfs_smoke_conus13km_hrrr_warm results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rrfs_smoke_conus13km_hrrr_warm +Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2776,15 +2852,15 @@ Checking test 065 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 137.903093 - 0: The maximum resident set size (KB) = 960956 + 0: The total amount of wall time = 138.476146 + 0: The maximum resident set size (KB) = 958884 -Test 065 rrfs_smoke_conus13km_hrrr_warm PASS +Test 066 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rrfs_conus13km_radar_tten_warm -Checking test 066 rrfs_conus13km_radar_tten_warm results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rrfs_conus13km_radar_tten_warm +Checking test 067 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2792,15 +2868,15 @@ Checking test 066 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 123.755983 - 0: The maximum resident set size (KB) = 937324 + 0: The total amount of wall time = 123.798458 + 0: The maximum resident set size (KB) = 933904 -Test 066 rrfs_conus13km_radar_tten_warm PASS +Test 067 rrfs_conus13km_radar_tten_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rrfs_conus13km_hrrr_warm_2threads -Checking test 067 rrfs_conus13km_hrrr_warm_2threads results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rrfs_conus13km_hrrr_warm_2threads +Checking test 068 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2808,15 +2884,15 @@ Checking test 067 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 76.751193 - 0: The maximum resident set size (KB) = 844052 + 0: The total amount of wall time = 78.117618 + 0: The maximum resident set size (KB) = 880792 -Test 067 rrfs_conus13km_hrrr_warm_2threads PASS +Test 068 rrfs_conus13km_hrrr_warm_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rrfs_conus13km_radar_tten_warm_2threads -Checking test 068 rrfs_conus13km_radar_tten_warm_2threads results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rrfs_conus13km_radar_tten_warm_2threads +Checking test 069 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2824,15 +2900,15 @@ Checking test 068 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 77.644382 - 0: The maximum resident set size (KB) = 881516 + 0: The total amount of wall time = 78.296862 + 0: The maximum resident set size (KB) = 883828 -Test 068 rrfs_conus13km_radar_tten_warm_2threads PASS +Test 069 rrfs_conus13km_radar_tten_warm_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmg -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_csawmg -Checking test 069 control_csawmg results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_csawmg +Checking test 070 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2842,15 +2918,15 @@ Checking test 069 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 342.230164 - 0: The maximum resident set size (KB) = 726060 + 0: The total amount of wall time = 344.375465 + 0: The maximum resident set size (KB) = 727780 -Test 069 control_csawmg PASS +Test 070 control_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmgt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_csawmgt -Checking test 070 control_csawmgt results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_csawmgt +Checking test 071 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2860,15 +2936,15 @@ Checking test 070 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 336.602875 - 0: The maximum resident set size (KB) = 725840 + 0: The total amount of wall time = 339.237095 + 0: The maximum resident set size (KB) = 721180 -Test 070 control_csawmgt PASS +Test 071 control_csawmgt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_ras -Checking test 071 control_ras results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_ras +Checking test 072 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2878,55 +2954,127 @@ Checking test 071 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 179.094952 - 0: The maximum resident set size (KB) = 719896 + 0: The total amount of wall time = 181.678938 + 0: The maximum resident set size (KB) = 718200 -Test 071 control_ras PASS +Test 072 control_ras PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wam -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_wam -Checking test 072 control_wam results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_wam +Checking test 073 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 111.305442 - 0: The maximum resident set size (KB) = 641296 + 0: The total amount of wall time = 112.702744 + 0: The maximum resident set size (KB) = 646464 + +Test 073 control_wam PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_p8_faster +Checking test 074 control_p8_faster results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 151.506548 + 0: The maximum resident set size (KB) = 1612476 + +Test 074 control_p8_faster PASS -Test 072 control_wam PASS + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/regional_control_faster +Checking test 075 regional_control_faster results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK + + 0: The total amount of wall time = 272.407251 + 0: The maximum resident set size (KB) = 865456 + +Test 075 regional_control_faster PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rrfs_conus13km_hrrr_warm_debug -Checking test 073 rrfs_conus13km_hrrr_warm_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rrfs_conus13km_hrrr_warm_debug +Checking test 076 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 727.417687 - 0: The maximum resident set size (KB) = 963564 + 0: The total amount of wall time = 730.537497 + 0: The maximum resident set size (KB) = 962028 -Test 073 rrfs_conus13km_hrrr_warm_debug PASS +Test 076 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rrfs_conus13km_radar_tten_warm_debug -Checking test 074 rrfs_conus13km_radar_tten_warm_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rrfs_conus13km_radar_tten_warm_debug +Checking test 077 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 736.921042 - 0: The maximum resident set size (KB) = 969652 + 0: The total amount of wall time = 722.366854 + 0: The maximum resident set size (KB) = 969296 -Test 074 rrfs_conus13km_radar_tten_warm_debug PASS +Test 077 rrfs_conus13km_radar_tten_warm_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_CubedSphereGrid_debug -Checking test 075 control_CubedSphereGrid_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_CubedSphereGrid_debug +Checking test 078 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -2952,335 +3100,335 @@ Checking test 075 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 160.941303 - 0: The maximum resident set size (KB) = 800328 + 0: The total amount of wall time = 160.291863 + 0: The maximum resident set size (KB) = 794188 -Test 075 control_CubedSphereGrid_debug PASS +Test 078 control_CubedSphereGrid_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_wrtGauss_netcdf_parallel_debug -Checking test 076 control_wrtGauss_netcdf_parallel_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_wrtGauss_netcdf_parallel_debug +Checking test 079 control_wrtGauss_netcdf_parallel_debug results .... + Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 149.474400 - 0: The maximum resident set size (KB) = 795408 + 0: The total amount of wall time = 151.047924 + 0: The maximum resident set size (KB) = 797668 -Test 076 control_wrtGauss_netcdf_parallel_debug PASS +Test 079 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_stochy_debug -Checking test 077 control_stochy_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_stochy_debug +Checking test 080 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 171.343334 - 0: The maximum resident set size (KB) = 799240 + 0: The total amount of wall time = 171.780222 + 0: The maximum resident set size (KB) = 802796 -Test 077 control_stochy_debug PASS +Test 080 control_stochy_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_lndp_debug -Checking test 078 control_lndp_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_lndp_debug +Checking test 081 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 153.416677 - 0: The maximum resident set size (KB) = 803484 + 0: The total amount of wall time = 158.300093 + 0: The maximum resident set size (KB) = 797044 -Test 078 control_lndp_debug PASS +Test 081 control_lndp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmg_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_csawmg_debug -Checking test 079 control_csawmg_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_csawmg_debug +Checking test 082 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 233.226177 - 0: The maximum resident set size (KB) = 845876 + 0: The total amount of wall time = 233.602358 + 0: The maximum resident set size (KB) = 847336 -Test 079 control_csawmg_debug PASS +Test 082 control_csawmg_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmgt_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_csawmgt_debug -Checking test 080 control_csawmgt_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_csawmgt_debug +Checking test 083 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 226.489479 - 0: The maximum resident set size (KB) = 846696 + 0: The total amount of wall time = 228.382083 + 0: The maximum resident set size (KB) = 845796 -Test 080 control_csawmgt_debug PASS +Test 083 control_csawmgt_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_ras_debug -Checking test 081 control_ras_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_ras_debug +Checking test 084 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 152.751459 - 0: The maximum resident set size (KB) = 804440 + 0: The total amount of wall time = 156.630867 + 0: The maximum resident set size (KB) = 802064 -Test 081 control_ras_debug PASS +Test 084 control_ras_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_diag_debug -Checking test 082 control_diag_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_diag_debug +Checking test 085 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 158.758391 - 0: The maximum resident set size (KB) = 850860 + 0: The total amount of wall time = 158.052735 + 0: The maximum resident set size (KB) = 850884 -Test 082 control_diag_debug PASS +Test 085 control_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_debug_p8 -Checking test 083 control_debug_p8 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_debug_p8 +Checking test 086 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 170.439452 - 0: The maximum resident set size (KB) = 1620428 + 0: The total amount of wall time = 170.066833 + 0: The maximum resident set size (KB) = 1628656 -Test 083 control_debug_p8 PASS +Test 086 control_debug_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/regional_debug -Checking test 084 regional_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/regional_debug +Checking test 087 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 963.965165 - 0: The maximum resident set size (KB) = 889908 + 0: The total amount of wall time = 945.362287 + 0: The maximum resident set size (KB) = 890328 -Test 084 regional_debug PASS +Test 087 regional_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rap_control_debug -Checking test 085 rap_control_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rap_control_debug +Checking test 088 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 272.059222 - 0: The maximum resident set size (KB) = 1175528 + 0: The total amount of wall time = 275.689615 + 0: The maximum resident set size (KB) = 1178200 -Test 085 rap_control_debug PASS +Test 088 rap_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hrrr_control_debug -Checking test 086 hrrr_control_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hrrr_control_debug +Checking test 089 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 263.957280 - 0: The maximum resident set size (KB) = 1170748 + 0: The total amount of wall time = 275.040215 + 0: The maximum resident set size (KB) = 1174648 -Test 086 hrrr_control_debug PASS +Test 089 hrrr_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rap_unified_drag_suite_debug -Checking test 087 rap_unified_drag_suite_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rap_unified_drag_suite_debug +Checking test 090 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.552055 - 0: The maximum resident set size (KB) = 1179344 + 0: The total amount of wall time = 276.036111 + 0: The maximum resident set size (KB) = 1178160 -Test 087 rap_unified_drag_suite_debug PASS +Test 090 rap_unified_drag_suite_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rap_diag_debug -Checking test 088 rap_diag_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rap_diag_debug +Checking test 091 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 290.170591 - 0: The maximum resident set size (KB) = 1260900 + 0: The total amount of wall time = 294.914979 + 0: The maximum resident set size (KB) = 1258596 -Test 088 rap_diag_debug PASS +Test 091 rap_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rap_cires_ugwp_debug -Checking test 089 rap_cires_ugwp_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rap_cires_ugwp_debug +Checking test 092 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.711636 - 0: The maximum resident set size (KB) = 1172120 + 0: The total amount of wall time = 283.293363 + 0: The maximum resident set size (KB) = 1175708 -Test 089 rap_cires_ugwp_debug PASS +Test 092 rap_cires_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rap_unified_ugwp_debug -Checking test 090 rap_unified_ugwp_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rap_unified_ugwp_debug +Checking test 093 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.430808 - 0: The maximum resident set size (KB) = 1178612 + 0: The total amount of wall time = 280.286621 + 0: The maximum resident set size (KB) = 1182468 -Test 090 rap_unified_ugwp_debug PASS +Test 093 rap_unified_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rap_lndp_debug -Checking test 091 rap_lndp_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rap_lndp_debug +Checking test 094 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.513816 - 0: The maximum resident set size (KB) = 1173160 + 0: The total amount of wall time = 277.468894 + 0: The maximum resident set size (KB) = 1177284 -Test 091 rap_lndp_debug PASS +Test 094 rap_lndp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_flake_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rap_flake_debug -Checking test 092 rap_flake_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rap_flake_debug +Checking test 095 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 270.099881 - 0: The maximum resident set size (KB) = 1176812 + 0: The total amount of wall time = 275.546932 + 0: The maximum resident set size (KB) = 1176492 -Test 092 rap_flake_debug PASS +Test 095 rap_flake_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rap_progcld_thompson_debug -Checking test 093 rap_progcld_thompson_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rap_progcld_thompson_debug +Checking test 096 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.125742 - 0: The maximum resident set size (KB) = 1176272 + 0: The total amount of wall time = 273.543455 + 0: The maximum resident set size (KB) = 1170392 -Test 093 rap_progcld_thompson_debug PASS +Test 096 rap_progcld_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_noah_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rap_noah_debug -Checking test 094 rap_noah_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rap_noah_debug +Checking test 097 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 264.875707 - 0: The maximum resident set size (KB) = 1171972 + 0: The total amount of wall time = 270.375590 + 0: The maximum resident set size (KB) = 1177140 -Test 094 rap_noah_debug PASS +Test 097 rap_noah_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rap_sfcdiff_debug -Checking test 095 rap_sfcdiff_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rap_sfcdiff_debug +Checking test 098 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.463868 - 0: The maximum resident set size (KB) = 1180260 + 0: The total amount of wall time = 276.508813 + 0: The maximum resident set size (KB) = 1179492 -Test 095 rap_sfcdiff_debug PASS +Test 098 rap_sfcdiff_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 096 rap_noah_sfcdiff_cires_ugwp_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 099 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 442.692483 - 0: The maximum resident set size (KB) = 1175832 + 0: The total amount of wall time = 454.815006 + 0: The maximum resident set size (KB) = 1181444 -Test 096 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 099 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rrfs_v1beta_debug -Checking test 097 rrfs_v1beta_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rrfs_v1beta_debug +Checking test 100 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 268.094781 - 0: The maximum resident set size (KB) = 1171192 + 0: The total amount of wall time = 276.600420 + 0: The maximum resident set size (KB) = 1171876 -Test 097 rrfs_v1beta_debug PASS +Test 100 rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_wam_debug -Checking test 098 control_wam_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_wam_debug +Checking test 101 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 279.561730 - 0: The maximum resident set size (KB) = 525680 + 0: The total amount of wall time = 283.123733 + 0: The maximum resident set size (KB) = 525512 -Test 098 control_wam_debug PASS +Test 101 control_wam_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/regional_spp_sppt_shum_skeb_dyn32_phy32 -Checking test 099 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 102 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -3290,15 +3438,15 @@ Checking test 099 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 261.199387 - 0: The maximum resident set size (KB) = 1072608 + 0: The total amount of wall time = 263.974737 + 0: The maximum resident set size (KB) = 1072804 -Test 099 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS +Test 102 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rap_control_dyn32_phy32 -Checking test 100 rap_control_dyn32_phy32 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rap_control_dyn32_phy32 +Checking test 103 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3344,15 +3492,15 @@ Checking test 100 rap_control_dyn32_phy32 results .... Comparing 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.374055 - 0: The maximum resident set size (KB) = 1003476 + 0: The total amount of wall time = 371.223068 + 0: The maximum resident set size (KB) = 1001580 -Test 100 rap_control_dyn32_phy32 PASS +Test 103 rap_control_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hrrr_control_dyn32_phy32 -Checking test 101 hrrr_control_dyn32_phy32 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hrrr_control_dyn32_phy32 +Checking test 104 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3398,15 +3546,15 @@ Checking test 101 hrrr_control_dyn32_phy32 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 = 193.586504 - 0: The maximum resident set size (KB) = 960436 + 0: The total amount of wall time = 193.976229 + 0: The maximum resident set size (KB) = 955352 -Test 101 hrrr_control_dyn32_phy32 PASS +Test 104 hrrr_control_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rap_2threads_dyn32_phy32 -Checking test 102 rap_2threads_dyn32_phy32 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rap_2threads_dyn32_phy32 +Checking test 105 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3452,15 +3600,15 @@ Checking test 102 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 356.480606 - 0: The maximum resident set size (KB) = 1021688 + 0: The total amount of wall time = 358.358049 + 0: The maximum resident set size (KB) = 1027760 -Test 102 rap_2threads_dyn32_phy32 PASS +Test 105 rap_2threads_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hrrr_control_2threads_dyn32_phy32 -Checking test 103 hrrr_control_2threads_dyn32_phy32 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hrrr_control_2threads_dyn32_phy32 +Checking test 106 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3506,15 +3654,15 @@ Checking test 103 hrrr_control_2threads_dyn32_phy32 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 = 190.814922 - 0: The maximum resident set size (KB) = 1006908 + 0: The total amount of wall time = 190.343973 + 0: The maximum resident set size (KB) = 1007836 -Test 103 hrrr_control_2threads_dyn32_phy32 PASS +Test 106 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hrrr_control_decomp_dyn32_phy32 -Checking test 104 hrrr_control_decomp_dyn32_phy32 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hrrr_control_decomp_dyn32_phy32 +Checking test 107 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3560,15 +3708,15 @@ Checking test 104 hrrr_control_decomp_dyn32_phy32 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 = 205.019588 - 0: The maximum resident set size (KB) = 897968 + 0: The total amount of wall time = 205.927672 + 0: The maximum resident set size (KB) = 893228 -Test 104 hrrr_control_decomp_dyn32_phy32 PASS +Test 107 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rap_restart_dyn32_phy32 -Checking test 105 rap_restart_dyn32_phy32 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rap_restart_dyn32_phy32 +Checking test 108 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3606,15 +3754,15 @@ Checking test 105 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 278.705853 - 0: The maximum resident set size (KB) = 952632 + 0: The total amount of wall time = 280.965069 + 0: The maximum resident set size (KB) = 951936 -Test 105 rap_restart_dyn32_phy32 PASS +Test 108 rap_restart_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hrrr_control_restart_dyn32_phy32 -Checking test 106 hrrr_control_restart_dyn32_phy32 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hrrr_control_restart_dyn32_phy32 +Checking test 109 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3652,15 +3800,15 @@ Checking test 106 hrrr_control_restart_dyn32_phy32 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 = 101.810706 - 0: The maximum resident set size (KB) = 863852 + 0: The total amount of wall time = 101.344810 + 0: The maximum resident set size (KB) = 864488 -Test 106 hrrr_control_restart_dyn32_phy32 PASS +Test 109 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rap_control_dyn64_phy32 -Checking test 107 rap_control_dyn64_phy32 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rap_control_dyn64_phy32 +Checking test 110 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3706,82 +3854,82 @@ Checking test 107 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 241.067980 - 0: The maximum resident set size (KB) = 964288 + 0: The total amount of wall time = 241.256880 + 0: The maximum resident set size (KB) = 966404 -Test 107 rap_control_dyn64_phy32 PASS +Test 110 rap_control_dyn64_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rap_control_debug_dyn32_phy32 -Checking test 108 rap_control_debug_dyn32_phy32 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rap_control_debug_dyn32_phy32 +Checking test 111 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 268.016967 - 0: The maximum resident set size (KB) = 1060984 + 0: The total amount of wall time = 273.053801 + 0: The maximum resident set size (KB) = 1057996 -Test 108 rap_control_debug_dyn32_phy32 PASS +Test 111 rap_control_debug_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hrrr_control_debug_dyn32_phy32 -Checking test 109 hrrr_control_debug_dyn32_phy32 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hrrr_control_debug_dyn32_phy32 +Checking test 112 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 265.961954 - 0: The maximum resident set size (KB) = 1054376 + 0: The total amount of wall time = 266.837924 + 0: The maximum resident set size (KB) = 1055868 -Test 109 hrrr_control_debug_dyn32_phy32 PASS +Test 112 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rap_control_dyn64_phy32_debug -Checking test 110 rap_control_dyn64_phy32_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rap_control_dyn64_phy32_debug +Checking test 113 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.704372 - 0: The maximum resident set size (KB) = 1095088 + 0: The total amount of wall time = 277.101637 + 0: The maximum resident set size (KB) = 1103468 -Test 110 rap_control_dyn64_phy32_debug PASS +Test 113 rap_control_dyn64_phy32_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hafs_regional_atm -Checking test 111 hafs_regional_atm results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hafs_regional_atm +Checking test 114 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 239.190384 - 0: The maximum resident set size (KB) = 1051376 + 0: The total amount of wall time = 235.229911 + 0: The maximum resident set size (KB) = 1047524 -Test 111 hafs_regional_atm PASS +Test 114 hafs_regional_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hafs_regional_atm_thompson_gfdlsf -Checking test 112 hafs_regional_atm_thompson_gfdlsf results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hafs_regional_atm_thompson_gfdlsf +Checking test 115 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 315.063461 - 0: The maximum resident set size (KB) = 1419488 + 0: The total amount of wall time = 326.439154 + 0: The maximum resident set size (KB) = 1419928 -Test 112 hafs_regional_atm_thompson_gfdlsf PASS +Test 115 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hafs_regional_atm_ocn -Checking test 113 hafs_regional_atm_ocn results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hafs_regional_atm_ocn +Checking test 116 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -3789,15 +3937,15 @@ Checking test 113 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 372.015072 - 0: The maximum resident set size (KB) = 1216240 + 0: The total amount of wall time = 381.120225 + 0: The maximum resident set size (KB) = 1218540 -Test 113 hafs_regional_atm_ocn PASS +Test 116 hafs_regional_atm_ocn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hafs_regional_atm_wav -Checking test 114 hafs_regional_atm_wav results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hafs_regional_atm_wav +Checking test 117 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK @@ -3805,15 +3953,15 @@ Checking test 114 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 739.168637 - 0: The maximum resident set size (KB) = 1245864 + 0: The total amount of wall time = 739.672281 + 0: The maximum resident set size (KB) = 1254744 -Test 114 hafs_regional_atm_wav PASS +Test 117 hafs_regional_atm_wav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hafs_regional_atm_ocn_wav -Checking test 115 hafs_regional_atm_ocn_wav results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hafs_regional_atm_ocn_wav +Checking test 118 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -3823,29 +3971,29 @@ Checking test 115 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 843.181916 - 0: The maximum resident set size (KB) = 1269780 + 0: The total amount of wall time = 841.696463 + 0: The maximum resident set size (KB) = 1268468 -Test 115 hafs_regional_atm_ocn_wav PASS +Test 118 hafs_regional_atm_ocn_wav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hafs_regional_1nest_atm -Checking test 116 hafs_regional_1nest_atm results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hafs_regional_1nest_atm +Checking test 119 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 322.061205 - 0: The maximum resident set size (KB) = 511644 + 0: The total amount of wall time = 319.362189 + 0: The maximum resident set size (KB) = 505628 -Test 116 hafs_regional_1nest_atm PASS +Test 119 hafs_regional_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hafs_regional_telescopic_2nests_atm -Checking test 117 hafs_regional_telescopic_2nests_atm results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hafs_regional_telescopic_2nests_atm +Checking test 120 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -3853,29 +4001,29 @@ Checking test 117 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 364.016520 - 0: The maximum resident set size (KB) = 513984 + 0: The total amount of wall time = 361.847535 + 0: The maximum resident set size (KB) = 514536 -Test 117 hafs_regional_telescopic_2nests_atm PASS +Test 120 hafs_regional_telescopic_2nests_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hafs_global_1nest_atm -Checking test 118 hafs_global_1nest_atm results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hafs_global_1nest_atm +Checking test 121 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 147.002701 - 0: The maximum resident set size (KB) = 351468 + 0: The total amount of wall time = 145.116937 + 0: The maximum resident set size (KB) = 350708 -Test 118 hafs_global_1nest_atm PASS +Test 121 hafs_global_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_multiple_4nests_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hafs_global_multiple_4nests_atm -Checking test 119 hafs_global_multiple_4nests_atm results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hafs_global_multiple_4nests_atm +Checking test 122 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -3892,15 +4040,15 @@ Checking test 119 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 417.880903 - 0: The maximum resident set size (KB) = 423792 + 0: The total amount of wall time = 423.175473 + 0: The maximum resident set size (KB) = 422920 -Test 119 hafs_global_multiple_4nests_atm PASS +Test 122 hafs_global_multiple_4nests_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hafs_regional_specified_moving_1nest_atm -Checking test 120 hafs_regional_specified_moving_1nest_atm results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hafs_regional_specified_moving_1nest_atm +Checking test 123 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -3908,29 +4056,29 @@ Checking test 120 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 201.398210 - 0: The maximum resident set size (KB) = 514844 + 0: The total amount of wall time = 200.676636 + 0: The maximum resident set size (KB) = 515744 -Test 120 hafs_regional_specified_moving_1nest_atm PASS +Test 123 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hafs_regional_storm_following_1nest_atm -Checking test 121 hafs_regional_storm_following_1nest_atm results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hafs_regional_storm_following_1nest_atm +Checking test 124 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 190.949707 - 0: The maximum resident set size (KB) = 512836 + 0: The total amount of wall time = 190.063512 + 0: The maximum resident set size (KB) = 516820 -Test 121 hafs_regional_storm_following_1nest_atm PASS +Test 124 hafs_regional_storm_following_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hafs_regional_storm_following_1nest_atm_ocn -Checking test 122 hafs_regional_storm_following_1nest_atm_ocn results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hafs_regional_storm_following_1nest_atm_ocn +Checking test 125 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -3938,43 +4086,43 @@ Checking test 122 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 222.907201 - 0: The maximum resident set size (KB) = 558600 + 0: The total amount of wall time = 219.824409 + 0: The maximum resident set size (KB) = 555384 -Test 122 hafs_regional_storm_following_1nest_atm_ocn PASS +Test 125 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hafs_global_storm_following_1nest_atm -Checking test 123 hafs_global_storm_following_1nest_atm results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hafs_global_storm_following_1nest_atm +Checking test 126 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 58.504047 - 0: The maximum resident set size (KB) = 363388 + 0: The total amount of wall time = 57.404873 + 0: The maximum resident set size (KB) = 365956 -Test 123 hafs_global_storm_following_1nest_atm PASS +Test 126 hafs_global_storm_following_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hafs_regional_storm_following_1nest_atm_ocn_debug -Checking test 124 hafs_regional_storm_following_1nest_atm_ocn_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hafs_regional_storm_following_1nest_atm_ocn_debug +Checking test 127 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 756.361156 - 0: The maximum resident set size (KB) = 579140 + 0: The total amount of wall time = 759.743454 + 0: The maximum resident set size (KB) = 580064 -Test 124 hafs_regional_storm_following_1nest_atm_ocn_debug PASS +Test 127 hafs_regional_storm_following_1nest_atm_ocn_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hafs_regional_storm_following_1nest_atm_ocn_wav -Checking test 125 hafs_regional_storm_following_1nest_atm_ocn_wav results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 128 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -3984,162 +4132,162 @@ Checking test 125 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 512.576004 - 0: The maximum resident set size (KB) = 608200 + 0: The total amount of wall time = 510.818798 + 0: The maximum resident set size (KB) = 614976 -Test 125 hafs_regional_storm_following_1nest_atm_ocn_wav PASS +Test 128 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_docn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hafs_regional_docn -Checking test 126 hafs_regional_docn results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hafs_regional_docn +Checking test 129 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 356.795848 - 0: The maximum resident set size (KB) = 1230456 + 0: The total amount of wall time = 359.257492 + 0: The maximum resident set size (KB) = 1229384 -Test 126 hafs_regional_docn PASS +Test 129 hafs_regional_docn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_docn_oisst -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hafs_regional_docn_oisst -Checking test 127 hafs_regional_docn_oisst results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hafs_regional_docn_oisst +Checking test 130 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 357.676320 - 0: The maximum resident set size (KB) = 1216224 + 0: The total amount of wall time = 356.895960 + 0: The maximum resident set size (KB) = 1218460 -Test 127 hafs_regional_docn_oisst PASS +Test 130 hafs_regional_docn_oisst PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_datm_cdeps -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hafs_regional_datm_cdeps -Checking test 128 hafs_regional_datm_cdeps results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hafs_regional_datm_cdeps +Checking test 131 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 934.084581 - 0: The maximum resident set size (KB) = 1037720 + 0: The total amount of wall time = 952.182786 + 0: The maximum resident set size (KB) = 1037416 -Test 128 hafs_regional_datm_cdeps PASS +Test 131 hafs_regional_datm_cdeps PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/datm_cdeps_control_cfsr -Checking test 129 datm_cdeps_control_cfsr results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/datm_cdeps_control_cfsr +Checking test 132 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 155.534501 - 0: The maximum resident set size (KB) = 1059016 + 0: The total amount of wall time = 157.741103 + 0: The maximum resident set size (KB) = 1073440 -Test 129 datm_cdeps_control_cfsr PASS +Test 132 datm_cdeps_control_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/datm_cdeps_restart_cfsr -Checking test 130 datm_cdeps_restart_cfsr results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/datm_cdeps_restart_cfsr +Checking test 133 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 92.160678 - 0: The maximum resident set size (KB) = 1012356 + 0: The total amount of wall time = 89.911671 + 0: The maximum resident set size (KB) = 1008232 -Test 130 datm_cdeps_restart_cfsr PASS +Test 133 datm_cdeps_restart_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/datm_cdeps_control_gefs -Checking test 131 datm_cdeps_control_gefs results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/datm_cdeps_control_gefs +Checking test 134 datm_cdeps_control_gefs 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.200787 - 0: The maximum resident set size (KB) = 959532 + 0: The total amount of wall time = 150.464029 + 0: The maximum resident set size (KB) = 963080 -Test 131 datm_cdeps_control_gefs PASS +Test 134 datm_cdeps_control_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_iau_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/datm_cdeps_iau_gefs -Checking test 132 datm_cdeps_iau_gefs results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/datm_cdeps_iau_gefs +Checking test 135 datm_cdeps_iau_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.172667 - 0: The maximum resident set size (KB) = 961272 + 0: The total amount of wall time = 151.907028 + 0: The maximum resident set size (KB) = 958828 -Test 132 datm_cdeps_iau_gefs PASS +Test 135 datm_cdeps_iau_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_stochy_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/datm_cdeps_stochy_gefs -Checking test 133 datm_cdeps_stochy_gefs results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/datm_cdeps_stochy_gefs +Checking test 136 datm_cdeps_stochy_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 151.067317 - 0: The maximum resident set size (KB) = 966008 + 0: The total amount of wall time = 152.089570 + 0: The maximum resident set size (KB) = 959532 -Test 133 datm_cdeps_stochy_gefs PASS +Test 136 datm_cdeps_stochy_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_ciceC_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/datm_cdeps_ciceC_cfsr -Checking test 134 datm_cdeps_ciceC_cfsr results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/datm_cdeps_ciceC_cfsr +Checking test 137 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 154.297641 - 0: The maximum resident set size (KB) = 1057136 + 0: The total amount of wall time = 154.253615 + 0: The maximum resident set size (KB) = 1055808 -Test 134 datm_cdeps_ciceC_cfsr PASS +Test 137 datm_cdeps_ciceC_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/datm_cdeps_bulk_cfsr -Checking test 135 datm_cdeps_bulk_cfsr results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/datm_cdeps_bulk_cfsr +Checking test 138 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 154.210284 - 0: The maximum resident set size (KB) = 1063588 + 0: The total amount of wall time = 155.806443 + 0: The maximum resident set size (KB) = 1063180 -Test 135 datm_cdeps_bulk_cfsr PASS +Test 138 datm_cdeps_bulk_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/datm_cdeps_bulk_gefs -Checking test 136 datm_cdeps_bulk_gefs results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/datm_cdeps_bulk_gefs +Checking test 139 datm_cdeps_bulk_gefs 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.553282 - 0: The maximum resident set size (KB) = 972344 + 0: The total amount of wall time = 148.785525 + 0: The maximum resident set size (KB) = 971580 -Test 136 datm_cdeps_bulk_gefs PASS +Test 139 datm_cdeps_bulk_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/datm_cdeps_mx025_cfsr -Checking test 137 datm_cdeps_mx025_cfsr results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/datm_cdeps_mx025_cfsr +Checking test 140 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4147,15 +4295,15 @@ Checking test 137 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 393.271699 - 0: The maximum resident set size (KB) = 875740 + 0: The total amount of wall time = 398.275132 + 0: The maximum resident set size (KB) = 880624 -Test 137 datm_cdeps_mx025_cfsr PASS +Test 140 datm_cdeps_mx025_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/datm_cdeps_mx025_gefs -Checking test 138 datm_cdeps_mx025_gefs results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/datm_cdeps_mx025_gefs +Checking test 141 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4163,65 +4311,78 @@ Checking test 138 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 386.415003 - 0: The maximum resident set size (KB) = 930992 + 0: The total amount of wall time = 394.873227 + 0: The maximum resident set size (KB) = 928432 -Test 138 datm_cdeps_mx025_gefs PASS +Test 141 datm_cdeps_mx025_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/datm_cdeps_multiple_files_cfsr -Checking test 139 datm_cdeps_multiple_files_cfsr results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/datm_cdeps_multiple_files_cfsr +Checking test 142 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 155.224696 - 0: The maximum resident set size (KB) = 1073400 + 0: The total amount of wall time = 155.733034 + 0: The maximum resident set size (KB) = 1068976 -Test 139 datm_cdeps_multiple_files_cfsr PASS +Test 142 datm_cdeps_multiple_files_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/datm_cdeps_3072x1536_cfsr -Checking test 140 datm_cdeps_3072x1536_cfsr results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/datm_cdeps_3072x1536_cfsr +Checking test 143 datm_cdeps_3072x1536_cfsr 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 = 214.641850 - 0: The maximum resident set size (KB) = 2360004 + 0: The total amount of wall time = 217.682919 + 0: The maximum resident set size (KB) = 2371740 -Test 140 datm_cdeps_3072x1536_cfsr PASS +Test 143 datm_cdeps_3072x1536_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_gfs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/datm_cdeps_gfs -Checking test 141 datm_cdeps_gfs results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/datm_cdeps_gfs +Checking test 144 datm_cdeps_gfs results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 214.094151 - 0: The maximum resident set size (KB) = 2359220 + 0: The total amount of wall time = 220.399154 + 0: The maximum resident set size (KB) = 2370372 -Test 141 datm_cdeps_gfs PASS +Test 144 datm_cdeps_gfs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/datm_cdeps_debug_cfsr -Checking test 142 datm_cdeps_debug_cfsr results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/datm_cdeps_debug_cfsr +Checking test 145 datm_cdeps_debug_cfsr 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 = 446.529468 - 0: The maximum resident set size (KB) = 985972 + 0: The total amount of wall time = 458.832905 + 0: The maximum resident set size (KB) = 981680 -Test 142 datm_cdeps_debug_cfsr PASS +Test 145 datm_cdeps_debug_cfsr PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/datm_cdeps_control_cfsr_faster +Checking test 146 datm_cdeps_control_cfsr_faster results .... + Comparing RESTART/20111002.000000.MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK + + 0: The total amount of wall time = 156.750166 + 0: The maximum resident set size (KB) = 1056780 + +Test 146 datm_cdeps_control_cfsr_faster PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/datm_cdeps_lnd_gswp3 -Checking test 143 datm_cdeps_lnd_gswp3 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/datm_cdeps_lnd_gswp3 +Checking test 147 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4229,15 +4390,15 @@ Checking test 143 datm_cdeps_lnd_gswp3 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 = 6.615823 - 0: The maximum resident set size (KB) = 261404 + 0: The total amount of wall time = 6.672772 + 0: The maximum resident set size (KB) = 262192 -Test 143 datm_cdeps_lnd_gswp3 PASS +Test 147 datm_cdeps_lnd_gswp3 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/datm_cdeps_lnd_gswp3_rst -Checking test 144 datm_cdeps_lnd_gswp3_rst results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/datm_cdeps_lnd_gswp3_rst +Checking test 148 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4245,15 +4406,15 @@ Checking test 144 datm_cdeps_lnd_gswp3_rst 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 = 11.820213 - 0: The maximum resident set size (KB) = 261552 + 0: The total amount of wall time = 11.662582 + 0: The maximum resident set size (KB) = 262532 -Test 144 datm_cdeps_lnd_gswp3_rst PASS +Test 148 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_atmlnd_sbs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_p8_atmlnd_sbs -Checking test 145 control_p8_atmlnd_sbs results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_p8_atmlnd_sbs +Checking test 149 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -4337,15 +4498,15 @@ Checking test 145 control_p8_atmlnd_sbs 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 = 202.084218 - 0: The maximum resident set size (KB) = 1610364 + 0: The total amount of wall time = 200.767945 + 0: The maximum resident set size (KB) = 1607924 -Test 145 control_p8_atmlnd_sbs PASS +Test 149 control_p8_atmlnd_sbs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_atmwav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_atmwav -Checking test 146 control_atmwav results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_atmwav +Checking test 150 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -4388,15 +4549,15 @@ Checking test 146 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 86.746107 - 0: The maximum resident set size (KB) = 655732 + 0: The total amount of wall time = 86.519372 + 0: The maximum resident set size (KB) = 655840 -Test 146 control_atmwav PASS +Test 150 control_atmwav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/atmaero_control_p8 -Checking test 147 atmaero_control_p8 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/atmaero_control_p8 +Checking test 151 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4439,15 +4600,15 @@ Checking test 147 atmaero_control_p8 results .... Comparing 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.180121 - 0: The maximum resident set size (KB) = 2976228 + 0: The total amount of wall time = 223.543866 + 0: The maximum resident set size (KB) = 2966784 -Test 147 atmaero_control_p8 PASS +Test 151 atmaero_control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8_rad -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/atmaero_control_p8_rad -Checking test 148 atmaero_control_p8_rad results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/atmaero_control_p8_rad +Checking test 152 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4490,15 +4651,15 @@ Checking test 148 atmaero_control_p8_rad results .... Comparing 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.653717 - 0: The maximum resident set size (KB) = 3047784 + 0: The total amount of wall time = 276.827935 + 0: The maximum resident set size (KB) = 3044856 -Test 148 atmaero_control_p8_rad PASS +Test 152 atmaero_control_p8_rad PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8_rad_micro -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/atmaero_control_p8_rad_micro -Checking test 149 atmaero_control_p8_rad_micro results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/atmaero_control_p8_rad_micro +Checking test 153 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4541,15 +4702,15 @@ Checking test 149 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 283.070166 - 0: The maximum resident set size (KB) = 3053260 + 0: The total amount of wall time = 283.121304 + 0: The maximum resident set size (KB) = 3056008 -Test 149 atmaero_control_p8_rad_micro PASS +Test 153 atmaero_control_p8_rad_micro PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_atmaq -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/regional_atmaq -Checking test 150 regional_atmaq results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/regional_atmaq +Checking test 154 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -4564,15 +4725,15 @@ Checking test 150 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 612.555099 - 0: The maximum resident set size (KB) = 1569120 + 0: The total amount of wall time = 600.092247 + 0: The maximum resident set size (KB) = 1553136 -Test 150 regional_atmaq PASS +Test 154 regional_atmaq PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_atmaq_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/regional_atmaq_debug -Checking test 151 regional_atmaq_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/regional_atmaq_debug +Checking test 155 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -4585,12 +4746,35 @@ Checking test 151 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1297.142707 - 0: The maximum resident set size (KB) = 1511320 + 0: The total amount of wall time = 1310.196567 + 0: The maximum resident set size (KB) = 1540868 + +Test 155 regional_atmaq_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_atmaq_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/regional_atmaq_faster +Checking test 156 regional_atmaq_faster results .... + Comparing sfcf000.nc .........OK + Comparing sfcf003.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf003.nc .........OK + Comparing atmf006.nc .........OK + Comparing RESTART/20190801.180000.coupler.res .........OK + Comparing RESTART/20190801.180000.fv_core.res.nc .........OK + Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.phy_data.nc .........OK + Comparing RESTART/20190801.180000.sfc_data.nc .........OK + + 0: The total amount of wall time = 565.480555 + 0: The maximum resident set size (KB) = 1556264 -Test 151 regional_atmaq_debug PASS +Test 156 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Tue Feb 28 20:34:36 UTC 2023 -Elapsed time: 03h:31m:41s. Have a nice day! +Sat Mar 4 20:46:36 UTC 2023 +Elapsed time: 01h:13m:52s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index 86342b184cd..d838d0c15b1 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,38 +1,42 @@ -Tue Feb 28 17:38:59 UTC 2023 +Sat Mar 4 20:54:36 UTC 2023 Start Regression test -Compile 001 elapsed time 1965 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 002 elapsed time 2078 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 003 elapsed time 1696 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 004 elapsed time 323 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 487 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 1351 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 007 elapsed time 1545 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 008 elapsed time 1602 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 009 elapsed time 1588 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 010 elapsed time 1520 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 011 elapsed time 1412 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 012 elapsed time 321 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 013 elapsed time 277 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 1422 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 015 elapsed time 1445 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 016 elapsed time 376 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 017 elapsed time 391 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 1711 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 019 elapsed time 463 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 2172 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 021 elapsed time 1750 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 022 elapsed time 342 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 023 elapsed time 265 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 024 elapsed time 134 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 025 elapsed time 1544 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 026 elapsed time 1678 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 027 elapsed time 1513 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 028 elapsed time 1432 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 029 elapsed time 264 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 001 elapsed time 1819 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 002 elapsed time 1861 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 003 elapsed time 2087 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 004 elapsed time 365 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 297 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 1487 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 007 elapsed time 1543 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 008 elapsed time 3337 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 009 elapsed time 1619 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 010 elapsed time 1593 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 011 elapsed time 1493 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 012 elapsed time 1395 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 013 elapsed time 1970 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 014 elapsed time 329 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 236 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 1376 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 017 elapsed time 1443 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 018 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 019 elapsed time 245 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 1636 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 021 elapsed time 247 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 2113 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 023 elapsed time 1632 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 024 elapsed time 296 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 025 elapsed time 162 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 300 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 027 elapsed time 113 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 028 elapsed time 1491 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 029 elapsed time 1704 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 030 elapsed time 1396 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 031 elapsed time 1453 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 032 elapsed time 234 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 1868 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8_mixedmode -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/cpld_control_p8_mixedmode +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -97,14 +101,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 431.774795 - 0: The maximum resident set size (KB) = 1743032 + 0: The total amount of wall time = 481.930873 + 0: The maximum resident set size (KB) = 1744192 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_gfsv17 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/cpld_control_gfsv17 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -168,14 +172,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 318.037536 - 0: The maximum resident set size (KB) = 1636620 + 0: The total amount of wall time = 370.222773 + 0: The maximum resident set size (KB) = 1622272 Test 002 cpld_control_gfsv17 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/cpld_control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -240,14 +244,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 504.053213 - 0: The maximum resident set size (KB) = 1782872 + 0: The total amount of wall time = 532.133008 + 0: The maximum resident set size (KB) = 1765052 Test 003 cpld_control_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/cpld_restart_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -300,14 +304,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 335.938256 - 0: The maximum resident set size (KB) = 1491620 + 0: The total amount of wall time = 305.209177 + 0: The maximum resident set size (KB) = 1487836 Test 004 cpld_restart_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/cpld_2threads_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -360,14 +364,14 @@ Checking test 005 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 535.746888 - 0: The maximum resident set size (KB) = 1984516 + 0: The total amount of wall time = 571.013844 + 0: The maximum resident set size (KB) = 1974616 Test 005 cpld_2threads_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/cpld_decomp_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/cpld_decomp_p8 Checking test 006 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -420,14 +424,14 @@ Checking test 006 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 500.866634 - 0: The maximum resident set size (KB) = 1763992 + 0: The total amount of wall time = 537.817658 + 0: The maximum resident set size (KB) = 1766484 Test 006 cpld_decomp_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/cpld_mpi_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/cpld_mpi_p8 Checking test 007 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -480,14 +484,14 @@ Checking test 007 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 423.557383 - 0: The maximum resident set size (KB) = 1742156 + 0: The total amount of wall time = 470.631721 + 0: The maximum resident set size (KB) = 1725116 Test 007 cpld_mpi_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_ciceC_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/cpld_control_ciceC_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/cpld_control_ciceC_p8 Checking test 008 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -552,14 +556,14 @@ Checking test 008 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 501.779270 - 0: The maximum resident set size (KB) = 1793476 + 0: The total amount of wall time = 540.864053 + 0: The maximum resident set size (KB) = 1774544 Test 008 cpld_control_ciceC_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_noaero_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/cpld_control_noaero_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/cpld_control_noaero_p8 Checking test 009 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -623,14 +627,14 @@ Checking test 009 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 359.155086 - 0: The maximum resident set size (KB) = 1618956 + 0: The total amount of wall time = 426.947366 + 0: The maximum resident set size (KB) = 1631608 Test 009 cpld_control_noaero_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/cpld_control_nowave_noaero_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/cpld_control_nowave_noaero_p8 Checking test 010 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -692,14 +696,14 @@ Checking test 010 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 364.893880 - 0: The maximum resident set size (KB) = 1671780 + 0: The total amount of wall time = 417.737924 + 0: The maximum resident set size (KB) = 1672304 Test 010 cpld_control_nowave_noaero_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_debug_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/cpld_debug_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/cpld_debug_p8 Checking test 011 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -752,14 +756,14 @@ Checking test 011 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 874.680895 - 0: The maximum resident set size (KB) = 1825448 + 0: The total amount of wall time = 884.254491 + 0: The maximum resident set size (KB) = 1820336 Test 011 cpld_debug_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_debug_noaero_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/cpld_debug_noaero_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/cpld_debug_noaero_p8 Checking test 012 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -811,14 +815,14 @@ Checking test 012 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 545.969188 - 0: The maximum resident set size (KB) = 1624392 + 0: The total amount of wall time = 557.132272 + 0: The maximum resident set size (KB) = 1656012 Test 012 cpld_debug_noaero_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/cpld_control_noaero_p8_agrid +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/cpld_control_noaero_p8_agrid Checking test 013 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -880,14 +884,14 @@ Checking test 013 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 397.193562 - 0: The maximum resident set size (KB) = 1690224 + 0: The total amount of wall time = 458.116892 + 0: The maximum resident set size (KB) = 1669924 Test 013 cpld_control_noaero_p8_agrid PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c48 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/cpld_control_c48 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/cpld_control_c48 Checking test 014 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -937,14 +941,14 @@ Checking test 014 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 803.460077 - 0: The maximum resident set size (KB) = 2766724 + 0: The total amount of wall time = 819.064134 + 0: The maximum resident set size (KB) = 2765044 Test 014 cpld_control_c48 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_warmstart_c48 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/cpld_warmstart_c48 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/cpld_warmstart_c48 Checking test 015 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -994,14 +998,14 @@ Checking test 015 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 220.844544 - 0: The maximum resident set size (KB) = 2770616 + 0: The total amount of wall time = 237.153569 + 0: The maximum resident set size (KB) = 2756348 Test 015 cpld_warmstart_c48 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_warmstart_c48 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/cpld_restart_c48 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/cpld_restart_c48 Checking test 016 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1051,15 +1055,87 @@ Checking test 016 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 122.964854 - 0: The maximum resident set size (KB) = 2217076 + 0: The total amount of wall time = 125.158306 + 0: The maximum resident set size (KB) = 2207684 Test 016 cpld_restart_c48 PASS +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8_faster +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/cpld_control_p8_faster +Checking test 017 cpld_control_p8_faster results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 489.886191 + 0: The maximum resident set size (KB) = 1769424 + +Test 017 cpld_control_p8_faster PASS + + baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_CubedSphereGrid -Checking test 017 control_CubedSphereGrid results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_CubedSphereGrid +Checking test 018 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1085,29 +1161,29 @@ Checking test 017 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 189.503147 - 0: The maximum resident set size (KB) = 573588 + 0: The total amount of wall time = 213.309451 + 0: The maximum resident set size (KB) = 577320 -Test 017 control_CubedSphereGrid PASS +Test 018 control_CubedSphereGrid PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid_parallel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_CubedSphereGrid_parallel -Checking test 018 control_CubedSphereGrid_parallel results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_CubedSphereGrid_parallel +Checking test 019 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK + Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 216.685967 - 0: The maximum resident set size (KB) = 575604 + 0: The total amount of wall time = 208.540092 + 0: The maximum resident set size (KB) = 573292 -Test 018 control_CubedSphereGrid_parallel PASS +Test 019 control_CubedSphereGrid_parallel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_latlon -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_latlon -Checking test 019 control_latlon results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_latlon +Checking test 020 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1117,33 +1193,33 @@ Checking test 019 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 213.024166 - 0: The maximum resident set size (KB) = 570840 + 0: The total amount of wall time = 207.440110 + 0: The maximum resident set size (KB) = 575356 -Test 019 control_latlon PASS +Test 020 control_latlon PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_wrtGauss_netcdf_parallel -Checking test 020 control_wrtGauss_netcdf_parallel results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_wrtGauss_netcdf_parallel +Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK - Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 216.364850 - 0: The maximum resident set size (KB) = 576224 + 0: The total amount of wall time = 208.884787 + 0: The maximum resident set size (KB) = 575408 -Test 020 control_wrtGauss_netcdf_parallel PASS +Test 021 control_wrtGauss_netcdf_parallel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c48 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_c48 -Checking test 021 control_c48 results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_c48 +Checking test 022 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1181,15 +1257,15 @@ Checking test 021 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 599.177870 -0: The maximum resident set size (KB) = 789236 +0: The total amount of wall time = 600.404826 +0: The maximum resident set size (KB) = 790288 -Test 021 control_c48 PASS +Test 022 control_c48 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c192 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_c192 -Checking test 022 control_c192 results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_c192 +Checking test 023 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1199,15 +1275,15 @@ Checking test 022 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 756.445161 - 0: The maximum resident set size (KB) = 682428 + 0: The total amount of wall time = 781.511659 + 0: The maximum resident set size (KB) = 696596 -Test 022 control_c192 PASS +Test 023 control_c192 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c384 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_c384 -Checking test 023 control_c384 results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_c384 +Checking test 024 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1217,15 +1293,15 @@ Checking test 023 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 998.686842 - 0: The maximum resident set size (KB) = 1054588 + 0: The total amount of wall time = 1003.951843 + 0: The maximum resident set size (KB) = 1053624 -Test 023 control_c384 PASS +Test 024 control_c384 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c384gdas -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_c384gdas -Checking test 024 control_c384gdas results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_c384gdas +Checking test 025 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -1267,15 +1343,15 @@ Checking test 024 control_c384gdas 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 = 903.463839 - 0: The maximum resident set size (KB) = 1193508 + 0: The total amount of wall time = 861.081008 + 0: The maximum resident set size (KB) = 1187416 -Test 024 control_c384gdas PASS +Test 025 control_c384gdas PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_stochy -Checking test 025 control_stochy results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_stochy +Checking test 026 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1285,29 +1361,29 @@ Checking test 025 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 137.717364 - 0: The maximum resident set size (KB) = 584396 + 0: The total amount of wall time = 134.181160 + 0: The maximum resident set size (KB) = 579892 -Test 025 control_stochy PASS +Test 026 control_stochy PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_stochy_restart -Checking test 026 control_stochy_restart results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_stochy_restart +Checking test 027 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 84.096101 - 0: The maximum resident set size (KB) = 394996 + 0: The total amount of wall time = 69.803603 + 0: The maximum resident set size (KB) = 393024 -Test 026 control_stochy_restart PASS +Test 027 control_stochy_restart PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_lndp -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_lndp -Checking test 027 control_lndp results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_lndp +Checking test 028 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1317,15 +1393,15 @@ Checking test 027 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 160.298421 - 0: The maximum resident set size (KB) = 579584 + 0: The total amount of wall time = 123.628269 + 0: The maximum resident set size (KB) = 577840 -Test 027 control_lndp PASS +Test 028 control_lndp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_iovr4 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_iovr4 -Checking test 028 control_iovr4 results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_iovr4 +Checking test 029 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1339,15 +1415,15 @@ Checking test 028 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 251.862662 - 0: The maximum resident set size (KB) = 572692 + 0: The total amount of wall time = 215.254223 + 0: The maximum resident set size (KB) = 575692 -Test 028 control_iovr4 PASS +Test 029 control_iovr4 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_iovr5 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_iovr5 -Checking test 029 control_iovr5 results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_iovr5 +Checking test 030 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1361,15 +1437,15 @@ Checking test 029 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 228.105799 - 0: The maximum resident set size (KB) = 574976 + 0: The total amount of wall time = 216.589832 + 0: The maximum resident set size (KB) = 574904 -Test 029 control_iovr5 PASS +Test 030 control_iovr5 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_p8 -Checking test 030 control_p8 results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_p8 +Checking test 031 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1415,15 +1491,15 @@ Checking test 030 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 256.510338 - 0: The maximum resident set size (KB) = 1540904 + 0: The total amount of wall time = 259.864475 + 0: The maximum resident set size (KB) = 1546640 -Test 030 control_p8 PASS +Test 031 control_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_lndp -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_p8_lndp -Checking test 031 control_p8_lndp results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_p8_lndp +Checking test 032 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1441,15 +1517,15 @@ Checking test 031 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 489.170252 - 0: The maximum resident set size (KB) = 1539368 + 0: The total amount of wall time = 494.979007 + 0: The maximum resident set size (KB) = 1536004 -Test 031 control_p8_lndp PASS +Test 032 control_p8_lndp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_restart_p8 -Checking test 032 control_restart_p8 results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_restart_p8 +Checking test 033 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1487,15 +1563,15 @@ Checking test 032 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 145.773027 - 0: The maximum resident set size (KB) = 780924 + 0: The total amount of wall time = 121.221951 + 0: The maximum resident set size (KB) = 775752 -Test 032 control_restart_p8 PASS +Test 033 control_restart_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_decomp_p8 -Checking test 033 control_decomp_p8 results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_decomp_p8 +Checking test 034 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1537,15 +1613,15 @@ Checking test 033 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 282.931002 - 0: The maximum resident set size (KB) = 1525280 + 0: The total amount of wall time = 265.952019 + 0: The maximum resident set size (KB) = 1538020 -Test 033 control_decomp_p8 PASS +Test 034 control_decomp_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_2threads_p8 -Checking test 034 control_2threads_p8 results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_2threads_p8 +Checking test 035 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1587,15 +1663,15 @@ Checking test 034 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 278.175836 - 0: The maximum resident set size (KB) = 1622652 + 0: The total amount of wall time = 247.024152 + 0: The maximum resident set size (KB) = 1624384 -Test 034 control_2threads_p8 PASS +Test 035 control_2threads_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_rrtmgp -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_p8_rrtmgp -Checking test 035 control_p8_rrtmgp results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_p8_rrtmgp +Checking test 036 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1641,15 +1717,15 @@ Checking test 035 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 362.885808 - 0: The maximum resident set size (KB) = 1604688 + 0: The total amount of wall time = 331.347898 + 0: The maximum resident set size (KB) = 1613992 -Test 035 control_p8_rrtmgp PASS +Test 036 control_p8_rrtmgp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/merra2_thompson -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/merra2_thompson -Checking test 036 merra2_thompson results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/merra2_thompson +Checking test 037 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1695,15 +1771,15 @@ Checking test 036 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 328.087671 - 0: The maximum resident set size (KB) = 1551316 + 0: The total amount of wall time = 296.523132 + 0: The maximum resident set size (KB) = 1547876 -Test 036 merra2_thompson PASS +Test 037 merra2_thompson PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/regional_control -Checking test 037 regional_control results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/regional_control +Checking test 038 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1713,29 +1789,29 @@ Checking test 037 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 466.144387 - 0: The maximum resident set size (KB) = 787524 + 0: The total amount of wall time = 484.766751 + 0: The maximum resident set size (KB) = 788416 -Test 037 regional_control PASS +Test 038 regional_control PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/regional_restart -Checking test 038 regional_restart results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/regional_restart +Checking test 039 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 231.398565 - 0: The maximum resident set size (KB) = 779232 + 0: The total amount of wall time = 218.191945 + 0: The maximum resident set size (KB) = 781688 -Test 038 regional_restart PASS +Test 039 regional_restart PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/regional_decomp -Checking test 039 regional_decomp results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/regional_decomp +Checking test 040 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1745,15 +1821,15 @@ Checking test 039 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 476.258109 - 0: The maximum resident set size (KB) = 782592 + 0: The total amount of wall time = 496.966861 + 0: The maximum resident set size (KB) = 782088 -Test 039 regional_decomp PASS +Test 040 regional_decomp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/regional_2threads -Checking test 040 regional_2threads results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/regional_2threads +Checking test 041 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1763,44 +1839,44 @@ Checking test 040 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 332.754174 - 0: The maximum resident set size (KB) = 770880 + 0: The total amount of wall time = 303.167285 + 0: The maximum resident set size (KB) = 768008 -Test 040 regional_2threads PASS +Test 041 regional_2threads PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_noquilt -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/regional_noquilt -Checking test 041 regional_noquilt results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/regional_noquilt +Checking test 042 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 484.774013 - 0: The maximum resident set size (KB) = 778800 + 0: The total amount of wall time = 512.444859 + 0: The maximum resident set size (KB) = 775768 -Test 041 regional_noquilt PASS +Test 042 regional_noquilt PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_netcdf_parallel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/regional_netcdf_parallel -Checking test 042 regional_netcdf_parallel results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/regional_netcdf_parallel +Checking test 043 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 454.923486 - 0: The maximum resident set size (KB) = 782600 + 0: The total amount of wall time = 480.778267 + 0: The maximum resident set size (KB) = 782368 -Test 042 regional_netcdf_parallel PASS +Test 043 regional_netcdf_parallel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/regional_2dwrtdecomp -Checking test 043 regional_2dwrtdecomp results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/regional_2dwrtdecomp +Checking test 044 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1810,15 +1886,15 @@ Checking test 043 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 461.721440 - 0: The maximum resident set size (KB) = 788212 + 0: The total amount of wall time = 474.587836 + 0: The maximum resident set size (KB) = 786944 -Test 043 regional_2dwrtdecomp PASS +Test 044 regional_2dwrtdecomp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/fv3_regional_wofs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/regional_wofs -Checking test 044 regional_wofs results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/regional_wofs +Checking test 045 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1828,15 +1904,15 @@ Checking test 044 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 560.823434 - 0: The maximum resident set size (KB) = 522168 + 0: The total amount of wall time = 587.195974 + 0: The maximum resident set size (KB) = 520112 -Test 044 regional_wofs PASS +Test 045 regional_wofs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rap_control -Checking test 045 rap_control results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rap_control +Checking test 046 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1882,15 +1958,15 @@ Checking test 045 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 668.325817 - 0: The maximum resident set size (KB) = 953932 + 0: The total amount of wall time = 655.315928 + 0: The maximum resident set size (KB) = 946472 -Test 045 rap_control PASS +Test 046 rap_control PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/regional_spp_sppt_shum_skeb -Checking test 046 regional_spp_sppt_shum_skeb results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/regional_spp_sppt_shum_skeb +Checking test 047 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -1900,15 +1976,15 @@ Checking test 046 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 485.401405 - 0: The maximum resident set size (KB) = 1086088 + 0: The total amount of wall time = 463.307940 + 0: The maximum resident set size (KB) = 1083032 -Test 046 regional_spp_sppt_shum_skeb PASS +Test 047 regional_spp_sppt_shum_skeb PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rap_decomp -Checking test 047 rap_decomp results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rap_decomp +Checking test 048 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1954,15 +2030,15 @@ Checking test 047 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 682.570016 - 0: The maximum resident set size (KB) = 953912 + 0: The total amount of wall time = 681.410396 + 0: The maximum resident set size (KB) = 948944 -Test 047 rap_decomp PASS +Test 048 rap_decomp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rap_2threads -Checking test 048 rap_2threads results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rap_2threads +Checking test 049 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2008,15 +2084,15 @@ Checking test 048 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 659.998948 - 0: The maximum resident set size (KB) = 1018912 + 0: The total amount of wall time = 655.404284 + 0: The maximum resident set size (KB) = 1026916 -Test 048 rap_2threads PASS +Test 049 rap_2threads PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rap_restart -Checking test 049 rap_restart results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rap_restart +Checking test 050 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2054,15 +2130,15 @@ Checking test 049 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 352.231710 - 0: The maximum resident set size (KB) = 831036 + 0: The total amount of wall time = 323.433487 + 0: The maximum resident set size (KB) = 830956 -Test 049 rap_restart PASS +Test 050 rap_restart PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rap_sfcdiff -Checking test 050 rap_sfcdiff results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rap_sfcdiff +Checking test 051 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2108,15 +2184,15 @@ Checking test 050 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 668.941325 - 0: The maximum resident set size (KB) = 961568 + 0: The total amount of wall time = 659.451140 + 0: The maximum resident set size (KB) = 944480 -Test 050 rap_sfcdiff PASS +Test 051 rap_sfcdiff PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rap_sfcdiff_decomp -Checking test 051 rap_sfcdiff_decomp results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rap_sfcdiff_decomp +Checking test 052 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2162,15 +2238,15 @@ Checking test 051 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 734.152615 - 0: The maximum resident set size (KB) = 936820 + 0: The total amount of wall time = 704.741926 + 0: The maximum resident set size (KB) = 956092 -Test 051 rap_sfcdiff_decomp PASS +Test 052 rap_sfcdiff_decomp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rap_sfcdiff_restart -Checking test 052 rap_sfcdiff_restart results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rap_sfcdiff_restart +Checking test 053 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2208,15 +2284,15 @@ Checking test 052 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 477.751498 - 0: The maximum resident set size (KB) = 831884 + 0: The total amount of wall time = 456.295016 + 0: The maximum resident set size (KB) = 846636 -Test 052 rap_sfcdiff_restart PASS +Test 053 rap_sfcdiff_restart PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/hrrr_control -Checking test 053 hrrr_control results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/hrrr_control +Checking test 054 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2262,15 +2338,15 @@ Checking test 053 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 636.852208 - 0: The maximum resident set size (KB) = 947472 + 0: The total amount of wall time = 640.406957 + 0: The maximum resident set size (KB) = 947308 -Test 053 hrrr_control PASS +Test 054 hrrr_control PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/hrrr_control_decomp -Checking test 054 hrrr_control_decomp results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/hrrr_control_decomp +Checking test 055 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2316,15 +2392,15 @@ Checking test 054 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 723.257586 - 0: The maximum resident set size (KB) = 936432 + 0: The total amount of wall time = 658.736104 + 0: The maximum resident set size (KB) = 951388 -Test 054 hrrr_control_decomp PASS +Test 055 hrrr_control_decomp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/hrrr_control_2threads -Checking test 055 hrrr_control_2threads results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/hrrr_control_2threads +Checking test 056 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2370,15 +2446,15 @@ Checking test 055 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 594.052394 - 0: The maximum resident set size (KB) = 1028720 + 0: The total amount of wall time = 611.254131 + 0: The maximum resident set size (KB) = 1023852 -Test 055 hrrr_control_2threads PASS +Test 056 hrrr_control_2threads PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/hrrr_control_restart -Checking test 056 hrrr_control_restart results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/hrrr_control_restart +Checking test 057 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2416,15 +2492,15 @@ Checking test 056 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 471.446331 - 0: The maximum resident set size (KB) = 833580 + 0: The total amount of wall time = 438.502149 + 0: The maximum resident set size (KB) = 840812 -Test 056 hrrr_control_restart PASS +Test 057 hrrr_control_restart PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1beta -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rrfs_v1beta -Checking test 057 rrfs_v1beta results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rrfs_v1beta +Checking test 058 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2470,15 +2546,15 @@ Checking test 057 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 663.019627 - 0: The maximum resident set size (KB) = 955452 + 0: The total amount of wall time = 657.223589 + 0: The maximum resident set size (KB) = 956132 -Test 057 rrfs_v1beta PASS +Test 058 rrfs_v1beta PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1nssl -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rrfs_v1nssl -Checking test 058 rrfs_v1nssl results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rrfs_v1nssl +Checking test 059 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2492,15 +2568,15 @@ Checking test 058 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 789.081199 - 0: The maximum resident set size (KB) = 636396 + 0: The total amount of wall time = 763.764884 + 0: The maximum resident set size (KB) = 637728 -Test 058 rrfs_v1nssl PASS +Test 059 rrfs_v1nssl PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rrfs_v1nssl_nohailnoccn -Checking test 059 rrfs_v1nssl_nohailnoccn results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rrfs_v1nssl_nohailnoccn +Checking test 060 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2514,15 +2590,15 @@ Checking test 059 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 801.464009 - 0: The maximum resident set size (KB) = 634248 + 0: The total amount of wall time = 742.812850 + 0: The maximum resident set size (KB) = 628356 -Test 059 rrfs_v1nssl_nohailnoccn PASS +Test 060 rrfs_v1nssl_nohailnoccn PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rrfs_conus13km_hrrr_warm -Checking test 060 rrfs_conus13km_hrrr_warm results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rrfs_conus13km_hrrr_warm +Checking test 061 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2530,15 +2606,15 @@ Checking test 060 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 180.907639 - 0: The maximum resident set size (KB) = 854224 + 0: The total amount of wall time = 173.216919 + 0: The maximum resident set size (KB) = 846180 -Test 060 rrfs_conus13km_hrrr_warm PASS +Test 061 rrfs_conus13km_hrrr_warm PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rrfs_smoke_conus13km_hrrr_warm -Checking test 061 rrfs_smoke_conus13km_hrrr_warm results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rrfs_smoke_conus13km_hrrr_warm +Checking test 062 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2546,15 +2622,15 @@ Checking test 061 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 233.698292 - 0: The maximum resident set size (KB) = 888220 + 0: The total amount of wall time = 220.527790 + 0: The maximum resident set size (KB) = 888052 -Test 061 rrfs_smoke_conus13km_hrrr_warm PASS +Test 062 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rrfs_conus13km_radar_tten_warm -Checking test 062 rrfs_conus13km_radar_tten_warm results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rrfs_conus13km_radar_tten_warm +Checking test 063 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2562,15 +2638,15 @@ Checking test 062 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 202.659616 - 0: The maximum resident set size (KB) = 854120 + 0: The total amount of wall time = 188.588605 + 0: The maximum resident set size (KB) = 861648 -Test 062 rrfs_conus13km_radar_tten_warm PASS +Test 063 rrfs_conus13km_radar_tten_warm PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rrfs_conus13km_hrrr_warm_2threads -Checking test 063 rrfs_conus13km_hrrr_warm_2threads results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rrfs_conus13km_hrrr_warm_2threads +Checking test 064 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2578,15 +2654,15 @@ Checking test 063 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 167.972680 - 0: The maximum resident set size (KB) = 824668 + 0: The total amount of wall time = 119.143406 + 0: The maximum resident set size (KB) = 818024 -Test 063 rrfs_conus13km_hrrr_warm_2threads PASS +Test 064 rrfs_conus13km_hrrr_warm_2threads PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rrfs_conus13km_radar_tten_warm_2threads -Checking test 064 rrfs_conus13km_radar_tten_warm_2threads results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rrfs_conus13km_radar_tten_warm_2threads +Checking test 065 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2594,15 +2670,15 @@ Checking test 064 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 146.921844 - 0: The maximum resident set size (KB) = 832004 + 0: The total amount of wall time = 121.900336 + 0: The maximum resident set size (KB) = 830400 -Test 064 rrfs_conus13km_radar_tten_warm_2threads PASS +Test 065 rrfs_conus13km_radar_tten_warm_2threads PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmg -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_csawmg -Checking test 065 control_csawmg results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_csawmg +Checking test 066 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2612,15 +2688,15 @@ Checking test 065 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 553.728292 - 0: The maximum resident set size (KB) = 665268 + 0: The total amount of wall time = 487.873572 + 0: The maximum resident set size (KB) = 662432 -Test 065 control_csawmg PASS +Test 066 control_csawmg PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmgt -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_csawmgt -Checking test 066 control_csawmgt results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_csawmgt +Checking test 067 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2630,15 +2706,15 @@ Checking test 066 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 529.706853 - 0: The maximum resident set size (KB) = 668652 + 0: The total amount of wall time = 482.126790 + 0: The maximum resident set size (KB) = 667636 -Test 066 control_csawmgt PASS +Test 067 control_csawmgt PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_ras -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_ras -Checking test 067 control_ras results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_ras +Checking test 068 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2648,55 +2724,127 @@ Checking test 067 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 286.300878 - 0: The maximum resident set size (KB) = 632896 + 0: The total amount of wall time = 263.023646 + 0: The maximum resident set size (KB) = 635344 -Test 067 control_ras PASS +Test 068 control_ras PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wam -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_wam -Checking test 068 control_wam results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_wam +Checking test 069 control_wam results .... + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK + + 0: The total amount of wall time = 165.658280 + 0: The maximum resident set size (KB) = 478248 + +Test 069 control_wam PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_faster +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_p8_faster +Checking test 070 control_p8_faster results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 168.671571 - 0: The maximum resident set size (KB) = 477952 + 0: The total amount of wall time = 220.299724 + 0: The maximum resident set size (KB) = 1534468 -Test 068 control_wam PASS +Test 070 control_p8_faster PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control_faster +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/regional_control_faster +Checking test 071 regional_control_faster results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK + + 0: The total amount of wall time = 421.336900 + 0: The maximum resident set size (KB) = 781332 + +Test 071 regional_control_faster PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rrfs_conus13km_hrrr_warm_debug -Checking test 069 rrfs_conus13km_hrrr_warm_debug results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rrfs_conus13km_hrrr_warm_debug +Checking test 072 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 959.854558 - 0: The maximum resident set size (KB) = 882064 + 0: The total amount of wall time = 959.185523 + 0: The maximum resident set size (KB) = 873312 -Test 069 rrfs_conus13km_hrrr_warm_debug PASS +Test 072 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rrfs_conus13km_radar_tten_warm_debug -Checking test 070 rrfs_conus13km_radar_tten_warm_debug results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rrfs_conus13km_radar_tten_warm_debug +Checking test 073 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 976.967147 - 0: The maximum resident set size (KB) = 881628 + 0: The total amount of wall time = 978.913003 + 0: The maximum resident set size (KB) = 883536 -Test 070 rrfs_conus13km_radar_tten_warm_debug PASS +Test 073 rrfs_conus13km_radar_tten_warm_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_CubedSphereGrid_debug -Checking test 071 control_CubedSphereGrid_debug results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_CubedSphereGrid_debug +Checking test 074 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -2722,335 +2870,335 @@ Checking test 071 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 228.629305 - 0: The maximum resident set size (KB) = 731840 + 0: The total amount of wall time = 218.735442 + 0: The maximum resident set size (KB) = 732480 -Test 071 control_CubedSphereGrid_debug PASS +Test 074 control_CubedSphereGrid_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_wrtGauss_netcdf_parallel_debug -Checking test 072 control_wrtGauss_netcdf_parallel_debug results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_wrtGauss_netcdf_parallel_debug +Checking test 075 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 217.581469 - 0: The maximum resident set size (KB) = 729844 + 0: The total amount of wall time = 205.304455 + 0: The maximum resident set size (KB) = 731744 -Test 072 control_wrtGauss_netcdf_parallel_debug PASS +Test 075 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_stochy_debug -Checking test 073 control_stochy_debug results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_stochy_debug +Checking test 076 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 241.633699 - 0: The maximum resident set size (KB) = 741464 + 0: The total amount of wall time = 241.339510 + 0: The maximum resident set size (KB) = 739904 -Test 073 control_stochy_debug PASS +Test 076 control_stochy_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_lndp_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_lndp_debug -Checking test 074 control_lndp_debug results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_lndp_debug +Checking test 077 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 210.963739 - 0: The maximum resident set size (KB) = 739960 + 0: The total amount of wall time = 205.631883 + 0: The maximum resident set size (KB) = 743732 -Test 074 control_lndp_debug PASS +Test 077 control_lndp_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmg_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_csawmg_debug -Checking test 075 control_csawmg_debug results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_csawmg_debug +Checking test 078 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 316.098123 - 0: The maximum resident set size (KB) = 782192 + 0: The total amount of wall time = 312.486821 + 0: The maximum resident set size (KB) = 781988 -Test 075 control_csawmg_debug PASS +Test 078 control_csawmg_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmgt_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_csawmgt_debug -Checking test 076 control_csawmgt_debug results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_csawmgt_debug +Checking test 079 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 312.253733 - 0: The maximum resident set size (KB) = 784228 + 0: The total amount of wall time = 307.761908 + 0: The maximum resident set size (KB) = 787276 -Test 076 control_csawmgt_debug PASS +Test 079 control_csawmgt_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_ras_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_ras_debug -Checking test 077 control_ras_debug results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_ras_debug +Checking test 080 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 220.924339 - 0: The maximum resident set size (KB) = 747764 + 0: The total amount of wall time = 204.685135 + 0: The maximum resident set size (KB) = 744304 -Test 077 control_ras_debug PASS +Test 080 control_ras_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_diag_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_diag_debug -Checking test 078 control_diag_debug results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_diag_debug +Checking test 081 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 224.934121 - 0: The maximum resident set size (KB) = 793688 + 0: The total amount of wall time = 214.079103 + 0: The maximum resident set size (KB) = 788428 -Test 078 control_diag_debug PASS +Test 081 control_diag_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_debug_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_debug_p8 -Checking test 079 control_debug_p8 results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_debug_p8 +Checking test 082 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 227.570929 - 0: The maximum resident set size (KB) = 1558376 + 0: The total amount of wall time = 237.494038 + 0: The maximum resident set size (KB) = 1550464 -Test 079 control_debug_p8 PASS +Test 082 control_debug_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/regional_debug -Checking test 080 regional_debug results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/regional_debug +Checking test 083 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1304.037599 - 0: The maximum resident set size (KB) = 801568 + 0: The total amount of wall time = 1292.981981 + 0: The maximum resident set size (KB) = 795260 -Test 080 regional_debug PASS +Test 083 regional_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rap_control_debug -Checking test 081 rap_control_debug results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rap_control_debug +Checking test 084 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 366.319261 - 0: The maximum resident set size (KB) = 1118216 + 0: The total amount of wall time = 368.433963 + 0: The maximum resident set size (KB) = 1114656 -Test 081 rap_control_debug PASS +Test 084 rap_control_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/hrrr_control_debug -Checking test 082 hrrr_control_debug results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/hrrr_control_debug +Checking test 085 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 358.143672 - 0: The maximum resident set size (KB) = 1112364 + 0: The total amount of wall time = 359.510301 + 0: The maximum resident set size (KB) = 1113280 -Test 082 hrrr_control_debug PASS +Test 085 hrrr_control_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rap_unified_drag_suite_debug -Checking test 083 rap_unified_drag_suite_debug results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rap_unified_drag_suite_debug +Checking test 086 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 365.343307 - 0: The maximum resident set size (KB) = 1115880 + 0: The total amount of wall time = 367.940447 + 0: The maximum resident set size (KB) = 1113240 -Test 083 rap_unified_drag_suite_debug PASS +Test 086 rap_unified_drag_suite_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_diag_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rap_diag_debug -Checking test 084 rap_diag_debug results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rap_diag_debug +Checking test 087 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 394.686603 - 0: The maximum resident set size (KB) = 1196540 + 0: The total amount of wall time = 388.426704 + 0: The maximum resident set size (KB) = 1196692 -Test 084 rap_diag_debug PASS +Test 087 rap_diag_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rap_cires_ugwp_debug -Checking test 085 rap_cires_ugwp_debug results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rap_cires_ugwp_debug +Checking test 088 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 373.159692 - 0: The maximum resident set size (KB) = 1118012 + 0: The total amount of wall time = 371.696743 + 0: The maximum resident set size (KB) = 1117424 -Test 085 rap_cires_ugwp_debug PASS +Test 088 rap_cires_ugwp_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rap_unified_ugwp_debug -Checking test 086 rap_unified_ugwp_debug results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rap_unified_ugwp_debug +Checking test 089 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 374.843648 - 0: The maximum resident set size (KB) = 1117316 + 0: The total amount of wall time = 376.372158 + 0: The maximum resident set size (KB) = 1121464 -Test 086 rap_unified_ugwp_debug PASS +Test 089 rap_unified_ugwp_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_lndp_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rap_lndp_debug -Checking test 087 rap_lndp_debug results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rap_lndp_debug +Checking test 090 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 370.304469 - 0: The maximum resident set size (KB) = 1112576 + 0: The total amount of wall time = 371.516740 + 0: The maximum resident set size (KB) = 1110868 -Test 087 rap_lndp_debug PASS +Test 090 rap_lndp_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_flake_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rap_flake_debug -Checking test 088 rap_flake_debug results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rap_flake_debug +Checking test 091 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 364.179938 - 0: The maximum resident set size (KB) = 1114232 + 0: The total amount of wall time = 367.410579 + 0: The maximum resident set size (KB) = 1110640 -Test 088 rap_flake_debug PASS +Test 091 rap_flake_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_progcld_thompson_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rap_progcld_thompson_debug -Checking test 089 rap_progcld_thompson_debug results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rap_progcld_thompson_debug +Checking test 092 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 369.326338 - 0: The maximum resident set size (KB) = 1116136 + 0: The total amount of wall time = 367.238762 + 0: The maximum resident set size (KB) = 1116468 -Test 089 rap_progcld_thompson_debug PASS +Test 092 rap_progcld_thompson_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_noah_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rap_noah_debug -Checking test 090 rap_noah_debug results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rap_noah_debug +Checking test 093 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 367.157022 - 0: The maximum resident set size (KB) = 1116916 + 0: The total amount of wall time = 367.368554 + 0: The maximum resident set size (KB) = 1110948 -Test 090 rap_noah_debug PASS +Test 093 rap_noah_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rap_sfcdiff_debug -Checking test 091 rap_sfcdiff_debug results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rap_sfcdiff_debug +Checking test 094 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 368.639076 - 0: The maximum resident set size (KB) = 1113224 + 0: The total amount of wall time = 370.960867 + 0: The maximum resident set size (KB) = 1109784 -Test 091 rap_sfcdiff_debug PASS +Test 094 rap_sfcdiff_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 092 rap_noah_sfcdiff_cires_ugwp_debug results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 095 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 600.182782 - 0: The maximum resident set size (KB) = 1108736 + 0: The total amount of wall time = 600.586095 + 0: The maximum resident set size (KB) = 1106700 -Test 092 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 095 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1beta_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rrfs_v1beta_debug -Checking test 093 rrfs_v1beta_debug results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rrfs_v1beta_debug +Checking test 096 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 368.616592 - 0: The maximum resident set size (KB) = 1108840 + 0: The total amount of wall time = 358.422252 + 0: The maximum resident set size (KB) = 1105944 -Test 093 rrfs_v1beta_debug PASS +Test 096 rrfs_v1beta_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wam_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_wam_debug -Checking test 094 control_wam_debug results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_wam_debug +Checking test 097 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 446.651218 - 0: The maximum resident set size (KB) = 440396 + 0: The total amount of wall time = 369.269632 + 0: The maximum resident set size (KB) = 433708 -Test 094 control_wam_debug PASS +Test 097 control_wam_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/regional_spp_sppt_shum_skeb_dyn32_phy32 -Checking test 095 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 098 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -3060,15 +3208,15 @@ Checking test 095 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 436.047842 - 0: The maximum resident set size (KB) = 986160 + 0: The total amount of wall time = 391.386536 + 0: The maximum resident set size (KB) = 981032 -Test 095 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS +Test 098 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rap_control_dyn32_phy32 -Checking test 096 rap_control_dyn32_phy32 results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rap_control_dyn32_phy32 +Checking test 099 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3114,15 +3262,15 @@ Checking test 096 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 588.632120 - 0: The maximum resident set size (KB) = 851900 + 0: The total amount of wall time = 514.524499 + 0: The maximum resident set size (KB) = 852176 -Test 096 rap_control_dyn32_phy32 PASS +Test 099 rap_control_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/hrrr_control_dyn32_phy32 -Checking test 097 hrrr_control_dyn32_phy32 results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/hrrr_control_dyn32_phy32 +Checking test 100 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3168,15 +3316,15 @@ Checking test 097 hrrr_control_dyn32_phy32 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 = 315.639099 - 0: The maximum resident set size (KB) = 826936 + 0: The total amount of wall time = 263.934005 + 0: The maximum resident set size (KB) = 838932 -Test 097 hrrr_control_dyn32_phy32 PASS +Test 100 hrrr_control_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rap_2threads_dyn32_phy32 -Checking test 098 rap_2threads_dyn32_phy32 results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rap_2threads_dyn32_phy32 +Checking test 101 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3222,15 +3370,15 @@ Checking test 098 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 560.852380 - 0: The maximum resident set size (KB) = 890812 + 0: The total amount of wall time = 519.529732 + 0: The maximum resident set size (KB) = 892268 -Test 098 rap_2threads_dyn32_phy32 PASS +Test 101 rap_2threads_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/hrrr_control_2threads_dyn32_phy32 -Checking test 099 hrrr_control_2threads_dyn32_phy32 results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/hrrr_control_2threads_dyn32_phy32 +Checking test 102 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3276,15 +3424,15 @@ Checking test 099 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 321.712936 - 0: The maximum resident set size (KB) = 888392 + 0: The total amount of wall time = 259.498445 + 0: The maximum resident set size (KB) = 889268 -Test 099 hrrr_control_2threads_dyn32_phy32 PASS +Test 102 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/hrrr_control_decomp_dyn32_phy32 -Checking test 100 hrrr_control_decomp_dyn32_phy32 results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/hrrr_control_decomp_dyn32_phy32 +Checking test 103 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3330,15 +3478,15 @@ Checking test 100 hrrr_control_decomp_dyn32_phy32 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 = 341.067872 - 0: The maximum resident set size (KB) = 820756 + 0: The total amount of wall time = 288.869969 + 0: The maximum resident set size (KB) = 821412 -Test 100 hrrr_control_decomp_dyn32_phy32 PASS +Test 103 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rap_restart_dyn32_phy32 -Checking test 101 rap_restart_dyn32_phy32 results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rap_restart_dyn32_phy32 +Checking test 104 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3376,15 +3524,15 @@ Checking test 101 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 394.776986 - 0: The maximum resident set size (KB) = 805632 + 0: The total amount of wall time = 412.326692 + 0: The maximum resident set size (KB) = 811928 -Test 101 rap_restart_dyn32_phy32 PASS +Test 104 rap_restart_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/hrrr_control_restart_dyn32_phy32 -Checking test 102 hrrr_control_restart_dyn32_phy32 results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/hrrr_control_restart_dyn32_phy32 +Checking test 105 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3422,15 +3570,15 @@ Checking test 102 hrrr_control_restart_dyn32_phy32 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 = 164.594750 - 0: The maximum resident set size (KB) = 762352 + 0: The total amount of wall time = 149.477980 + 0: The maximum resident set size (KB) = 763780 -Test 102 hrrr_control_restart_dyn32_phy32 PASS +Test 105 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn64_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rap_control_dyn64_phy32 -Checking test 103 rap_control_dyn64_phy32 results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rap_control_dyn64_phy32 +Checking test 106 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3476,82 +3624,82 @@ Checking test 103 rap_control_dyn64_phy32 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 = 374.260906 - 0: The maximum resident set size (KB) = 861852 + 0: The total amount of wall time = 341.994295 + 0: The maximum resident set size (KB) = 865468 -Test 103 rap_control_dyn64_phy32 PASS +Test 106 rap_control_dyn64_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rap_control_debug_dyn32_phy32 -Checking test 104 rap_control_debug_dyn32_phy32 results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rap_control_debug_dyn32_phy32 +Checking test 107 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 380.879030 - 0: The maximum resident set size (KB) = 997680 + 0: The total amount of wall time = 374.628026 + 0: The maximum resident set size (KB) = 998976 -Test 104 rap_control_debug_dyn32_phy32 PASS +Test 107 rap_control_debug_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/hrrr_control_debug_dyn32_phy32 -Checking test 105 hrrr_control_debug_dyn32_phy32 results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/hrrr_control_debug_dyn32_phy32 +Checking test 108 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 417.729497 - 0: The maximum resident set size (KB) = 1003588 + 0: The total amount of wall time = 364.670160 + 0: The maximum resident set size (KB) = 998132 -Test 105 hrrr_control_debug_dyn32_phy32 PASS +Test 108 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rap_control_dyn64_phy32_debug -Checking test 106 rap_control_dyn64_phy32_debug results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rap_control_dyn64_phy32_debug +Checking test 109 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 485.385520 - 0: The maximum resident set size (KB) = 1039668 + 0: The total amount of wall time = 366.859984 + 0: The maximum resident set size (KB) = 1037592 -Test 106 rap_control_dyn64_phy32_debug PASS +Test 109 rap_control_dyn64_phy32_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/hafs_regional_atm -Checking test 107 hafs_regional_atm results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/hafs_regional_atm +Checking test 110 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 451.263492 - 0: The maximum resident set size (KB) = 1219868 + 0: The total amount of wall time = 385.821224 + 0: The maximum resident set size (KB) = 1210564 -Test 107 hafs_regional_atm PASS +Test 110 hafs_regional_atm PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/hafs_regional_atm_thompson_gfdlsf -Checking test 108 hafs_regional_atm_thompson_gfdlsf results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/hafs_regional_atm_thompson_gfdlsf +Checking test 111 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 612.850875 - 0: The maximum resident set size (KB) = 1542836 + 0: The total amount of wall time = 468.487860 + 0: The maximum resident set size (KB) = 1548844 -Test 108 hafs_regional_atm_thompson_gfdlsf PASS +Test 111 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_ocn -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/hafs_regional_atm_ocn -Checking test 109 hafs_regional_atm_ocn results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/hafs_regional_atm_ocn +Checking test 112 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -3559,15 +3707,15 @@ Checking test 109 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 554.786065 - 0: The maximum resident set size (KB) = 1288280 + 0: The total amount of wall time = 594.212072 + 0: The maximum resident set size (KB) = 1295684 -Test 109 hafs_regional_atm_ocn PASS +Test 112 hafs_regional_atm_ocn PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_wav -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/hafs_regional_atm_wav -Checking test 110 hafs_regional_atm_wav results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/hafs_regional_atm_wav +Checking test 113 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK @@ -3575,15 +3723,15 @@ Checking test 110 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 956.275061 - 0: The maximum resident set size (KB) = 1319664 + 0: The total amount of wall time = 967.857531 + 0: The maximum resident set size (KB) = 1314888 -Test 110 hafs_regional_atm_wav PASS +Test 113 hafs_regional_atm_wav PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/hafs_regional_atm_ocn_wav -Checking test 111 hafs_regional_atm_ocn_wav results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/hafs_regional_atm_ocn_wav +Checking test 114 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -3593,162 +3741,162 @@ Checking test 111 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 1063.752364 - 0: The maximum resident set size (KB) = 1336856 + 0: The total amount of wall time = 1103.705343 + 0: The maximum resident set size (KB) = 1329524 -Test 111 hafs_regional_atm_ocn_wav PASS +Test 114 hafs_regional_atm_ocn_wav PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_docn -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/hafs_regional_docn -Checking test 112 hafs_regional_docn results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/hafs_regional_docn +Checking test 115 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 533.064773 - 0: The maximum resident set size (KB) = 1310420 + 0: The total amount of wall time = 546.683695 + 0: The maximum resident set size (KB) = 1286620 -Test 112 hafs_regional_docn PASS +Test 115 hafs_regional_docn PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_docn_oisst -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/hafs_regional_docn_oisst -Checking test 113 hafs_regional_docn_oisst results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/hafs_regional_docn_oisst +Checking test 116 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 531.570938 - 0: The maximum resident set size (KB) = 1288724 + 0: The total amount of wall time = 525.276860 + 0: The maximum resident set size (KB) = 1298172 -Test 113 hafs_regional_docn_oisst PASS +Test 116 hafs_regional_docn_oisst PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_datm_cdeps -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/hafs_regional_datm_cdeps -Checking test 114 hafs_regional_datm_cdeps results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/hafs_regional_datm_cdeps +Checking test 117 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 1306.922889 - 0: The maximum resident set size (KB) = 980988 + 0: The total amount of wall time = 1418.732259 + 0: The maximum resident set size (KB) = 976112 -Test 114 hafs_regional_datm_cdeps PASS +Test 117 hafs_regional_datm_cdeps PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/datm_cdeps_control_cfsr -Checking test 115 datm_cdeps_control_cfsr results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/datm_cdeps_control_cfsr +Checking test 118 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 257.725741 - 0: The maximum resident set size (KB) = 966628 + 0: The total amount of wall time = 223.543730 + 0: The maximum resident set size (KB) = 964892 -Test 115 datm_cdeps_control_cfsr PASS +Test 118 datm_cdeps_control_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/datm_cdeps_restart_cfsr -Checking test 116 datm_cdeps_restart_cfsr results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/datm_cdeps_restart_cfsr +Checking test 119 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 163.348982 - 0: The maximum resident set size (KB) = 939580 + 0: The total amount of wall time = 155.112061 + 0: The maximum resident set size (KB) = 927900 -Test 116 datm_cdeps_restart_cfsr PASS +Test 119 datm_cdeps_restart_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_gefs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/datm_cdeps_control_gefs -Checking test 117 datm_cdeps_control_gefs results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/datm_cdeps_control_gefs +Checking test 120 datm_cdeps_control_gefs 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 = 242.164381 - 0: The maximum resident set size (KB) = 867452 + 0: The total amount of wall time = 241.312781 + 0: The maximum resident set size (KB) = 859976 -Test 117 datm_cdeps_control_gefs PASS +Test 120 datm_cdeps_control_gefs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_iau_gefs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/datm_cdeps_iau_gefs -Checking test 118 datm_cdeps_iau_gefs results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/datm_cdeps_iau_gefs +Checking test 121 datm_cdeps_iau_gefs 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 = 254.681078 - 0: The maximum resident set size (KB) = 855248 + 0: The total amount of wall time = 244.001531 + 0: The maximum resident set size (KB) = 865520 -Test 118 datm_cdeps_iau_gefs PASS +Test 121 datm_cdeps_iau_gefs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_stochy_gefs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/datm_cdeps_stochy_gefs -Checking test 119 datm_cdeps_stochy_gefs results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/datm_cdeps_stochy_gefs +Checking test 122 datm_cdeps_stochy_gefs 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 = 249.545982 - 0: The maximum resident set size (KB) = 859828 + 0: The total amount of wall time = 218.587986 + 0: The maximum resident set size (KB) = 861144 -Test 119 datm_cdeps_stochy_gefs PASS +Test 122 datm_cdeps_stochy_gefs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/datm_cdeps_ciceC_cfsr -Checking test 120 datm_cdeps_ciceC_cfsr results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/datm_cdeps_ciceC_cfsr +Checking test 123 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 251.351074 - 0: The maximum resident set size (KB) = 968280 + 0: The total amount of wall time = 222.394226 + 0: The maximum resident set size (KB) = 958296 -Test 120 datm_cdeps_ciceC_cfsr PASS +Test 123 datm_cdeps_ciceC_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/datm_cdeps_bulk_cfsr -Checking test 121 datm_cdeps_bulk_cfsr results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/datm_cdeps_bulk_cfsr +Checking test 124 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 250.921747 - 0: The maximum resident set size (KB) = 956220 + 0: The total amount of wall time = 221.542384 + 0: The maximum resident set size (KB) = 959108 -Test 121 datm_cdeps_bulk_cfsr PASS +Test 124 datm_cdeps_bulk_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/datm_cdeps_bulk_gefs -Checking test 122 datm_cdeps_bulk_gefs results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/datm_cdeps_bulk_gefs +Checking test 125 datm_cdeps_bulk_gefs 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 = 227.499567 - 0: The maximum resident set size (KB) = 865316 + 0: The total amount of wall time = 243.264523 + 0: The maximum resident set size (KB) = 871720 -Test 122 datm_cdeps_bulk_gefs PASS +Test 125 datm_cdeps_bulk_gefs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/datm_cdeps_mx025_cfsr -Checking test 123 datm_cdeps_mx025_cfsr results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/datm_cdeps_mx025_cfsr +Checking test 126 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -3756,15 +3904,15 @@ Checking test 123 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 695.240123 - 0: The maximum resident set size (KB) = 765612 + 0: The total amount of wall time = 591.510513 + 0: The maximum resident set size (KB) = 766024 -Test 123 datm_cdeps_mx025_cfsr PASS +Test 126 datm_cdeps_mx025_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/datm_cdeps_mx025_gefs -Checking test 124 datm_cdeps_mx025_gefs results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/datm_cdeps_mx025_gefs +Checking test 127 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -3772,65 +3920,78 @@ Checking test 124 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 748.115276 - 0: The maximum resident set size (KB) = 741048 + 0: The total amount of wall time = 588.067480 + 0: The maximum resident set size (KB) = 733524 -Test 124 datm_cdeps_mx025_gefs PASS +Test 127 datm_cdeps_mx025_gefs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/datm_cdeps_multiple_files_cfsr -Checking test 125 datm_cdeps_multiple_files_cfsr results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/datm_cdeps_multiple_files_cfsr +Checking test 128 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 255.325649 - 0: The maximum resident set size (KB) = 965844 + 0: The total amount of wall time = 219.836772 + 0: The maximum resident set size (KB) = 975820 -Test 125 datm_cdeps_multiple_files_cfsr PASS +Test 128 datm_cdeps_multiple_files_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/datm_cdeps_3072x1536_cfsr -Checking test 126 datm_cdeps_3072x1536_cfsr results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/datm_cdeps_3072x1536_cfsr +Checking test 129 datm_cdeps_3072x1536_cfsr 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 = 361.487880 - 0: The maximum resident set size (KB) = 2251696 + 0: The total amount of wall time = 356.840860 + 0: The maximum resident set size (KB) = 2255704 -Test 126 datm_cdeps_3072x1536_cfsr PASS +Test 129 datm_cdeps_3072x1536_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_gfs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/datm_cdeps_gfs -Checking test 127 datm_cdeps_gfs results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/datm_cdeps_gfs +Checking test 130 datm_cdeps_gfs 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 = 415.113978 - 0: The maximum resident set size (KB) = 2253716 + 0: The total amount of wall time = 331.049397 + 0: The maximum resident set size (KB) = 2253036 -Test 127 datm_cdeps_gfs PASS +Test 130 datm_cdeps_gfs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_debug_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/datm_cdeps_debug_cfsr -Checking test 128 datm_cdeps_debug_cfsr results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/datm_cdeps_debug_cfsr +Checking test 131 datm_cdeps_debug_cfsr 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 = 619.456631 - 0: The maximum resident set size (KB) = 940160 + 0: The total amount of wall time = 589.781715 + 0: The maximum resident set size (KB) = 919460 + +Test 131 datm_cdeps_debug_cfsr PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr_faster +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/datm_cdeps_control_cfsr_faster +Checking test 132 datm_cdeps_control_cfsr_faster results .... + Comparing RESTART/20111002.000000.MOM.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 = 243.075286 + 0: The maximum resident set size (KB) = 969608 -Test 128 datm_cdeps_debug_cfsr PASS +Test 132 datm_cdeps_control_cfsr_faster PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/datm_cdeps_lnd_gswp3 -Checking test 129 datm_cdeps_lnd_gswp3 results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/datm_cdeps_lnd_gswp3 +Checking test 133 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -3838,15 +3999,15 @@ Checking test 129 datm_cdeps_lnd_gswp3 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 = 41.897433 - 0: The maximum resident set size (KB) = 242984 + 0: The total amount of wall time = 18.856970 + 0: The maximum resident set size (KB) = 250180 -Test 129 datm_cdeps_lnd_gswp3 PASS +Test 133 datm_cdeps_lnd_gswp3 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/datm_cdeps_lnd_gswp3_rst -Checking test 130 datm_cdeps_lnd_gswp3_rst results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/datm_cdeps_lnd_gswp3_rst +Checking test 134 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -3854,15 +4015,15 @@ Checking test 130 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 45.364609 - 0: The maximum resident set size (KB) = 256364 + 0: The total amount of wall time = 21.003845 + 0: The maximum resident set size (KB) = 247740 -Test 130 datm_cdeps_lnd_gswp3_rst PASS +Test 134 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_atmlnd_sbs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_p8_atmlnd_sbs -Checking test 131 control_p8_atmlnd_sbs results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_p8_atmlnd_sbs +Checking test 135 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3946,15 +4107,15 @@ Checking test 131 control_p8_atmlnd_sbs 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 = 310.326644 - 0: The maximum resident set size (KB) = 1587588 + 0: The total amount of wall time = 332.302051 + 0: The maximum resident set size (KB) = 1587820 -Test 131 control_p8_atmlnd_sbs PASS +Test 135 control_p8_atmlnd_sbs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_atmwav -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_atmwav -Checking test 132 control_atmwav results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_atmwav +Checking test 136 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -3997,15 +4158,15 @@ Checking test 132 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 128.402573 - 0: The maximum resident set size (KB) = 597424 + 0: The total amount of wall time = 126.765322 + 0: The maximum resident set size (KB) = 598892 -Test 132 control_atmwav PASS +Test 136 control_atmwav PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/atmaero_control_p8 -Checking test 133 atmaero_control_p8 results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/atmaero_control_p8 +Checking test 137 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4048,15 +4209,15 @@ Checking test 133 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 323.006092 - 0: The maximum resident set size (KB) = 1635068 + 0: The total amount of wall time = 340.447418 + 0: The maximum resident set size (KB) = 1627124 -Test 133 atmaero_control_p8 PASS +Test 137 atmaero_control_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8_rad -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/atmaero_control_p8_rad -Checking test 134 atmaero_control_p8_rad results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/atmaero_control_p8_rad +Checking test 138 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4099,15 +4260,15 @@ Checking test 134 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 387.012991 - 0: The maximum resident set size (KB) = 1668800 + 0: The total amount of wall time = 437.317228 + 0: The maximum resident set size (KB) = 1680240 -Test 134 atmaero_control_p8_rad PASS +Test 138 atmaero_control_p8_rad PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/atmaero_control_p8_rad_micro -Checking test 135 atmaero_control_p8_rad_micro results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/atmaero_control_p8_rad_micro +Checking test 139 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4150,15 +4311,38 @@ Checking test 135 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 388.319959 - 0: The maximum resident set size (KB) = 1689836 + 0: The total amount of wall time = 414.714301 + 0: The maximum resident set size (KB) = 1664892 -Test 135 atmaero_control_p8_rad_micro PASS +Test 139 atmaero_control_p8_rad_micro PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_atmaq -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/regional_atmaq -Checking test 136 regional_atmaq results .... +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/regional_atmaq +Checking test 140 regional_atmaq results .... + Comparing sfcf000.nc .........OK + Comparing sfcf003.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf003.nc .........OK + Comparing atmf006.nc .........OK + Comparing RESTART/20190801.180000.coupler.res .........OK + Comparing RESTART/20190801.180000.fv_core.res.nc .........OK + Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.phy_data.nc .........OK + Comparing RESTART/20190801.180000.sfc_data.nc .........OK + + 0: The total amount of wall time = 1212.742385 + 0: The maximum resident set size (KB) = 1400684 + +Test 140 regional_atmaq PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_atmaq_faster +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/regional_atmaq_faster +Checking test 141 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -4173,12 +4357,12 @@ Checking test 136 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 941.390764 - 0: The maximum resident set size (KB) = 1427088 + 0: The total amount of wall time = 973.656915 + 0: The maximum resident set size (KB) = 1310140 -Test 136 regional_atmaq PASS +Test 141 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Tue Feb 28 20:34:11 UTC 2023 -Elapsed time: 02h:55m:13s. Have a nice day! +Sun Mar 5 00:04:05 UTC 2023 +Elapsed time: 03h:09m:31s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index a4ab06d6c97..5d3f2741a41 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,38 +1,42 @@ -Tue Feb 28 19:41:25 CST 2023 +Sat Mar 4 14:17:35 CST 2023 Start Regression test -Compile 001 elapsed time 790 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 789 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 700 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 266 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 249 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 677 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 629 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 620 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 625 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 602 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 492 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 222 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 013 elapsed time 222 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 590 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 015 elapsed time 609 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 240 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 017 elapsed time 231 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 698 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 019 elapsed time 476 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 818 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 757 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 022 elapsed time 253 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 023 elapsed time 220 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 024 elapsed time 190 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 025 elapsed time 597 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 026 elapsed time 617 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 027 elapsed time 548 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 503 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 210 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 001 elapsed time 726 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 742 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 724 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 299 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 255 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 614 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 612 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 860 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 582 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 618 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 602 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 540 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 704 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 222 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 214 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 539 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 519 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 232 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 209 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 604 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 216 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 751 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 589 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 024 elapsed time 215 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 132 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 228 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 55 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 558 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 619 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 557 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 499 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 171 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 583 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8_mixedmode -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/cpld_control_p8_mixedmode +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -97,14 +101,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 311.799948 - 0: The maximum resident set size (KB) = 3146248 + 0: The total amount of wall time = 306.939084 + 0: The maximum resident set size (KB) = 3140872 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_gfsv17 -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/cpld_control_gfsv17 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -168,14 +172,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 237.690299 - 0: The maximum resident set size (KB) = 1731136 + 0: The total amount of wall time = 224.534147 + 0: The maximum resident set size (KB) = 1736076 Test 002 cpld_control_gfsv17 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/cpld_control_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -240,14 +244,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 352.971491 - 0: The maximum resident set size (KB) = 3180744 + 0: The total amount of wall time = 346.351986 + 0: The maximum resident set size (KB) = 3171408 Test 003 cpld_control_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/cpld_restart_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -300,14 +304,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 204.396024 - 0: The maximum resident set size (KB) = 3047856 + 0: The total amount of wall time = 206.053221 + 0: The maximum resident set size (KB) = 3055624 Test 004 cpld_restart_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/cpld_2threads_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -360,14 +364,14 @@ Checking test 005 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 411.404099 - 0: The maximum resident set size (KB) = 3512908 + 0: The total amount of wall time = 420.863784 + 0: The maximum resident set size (KB) = 3502956 Test 005 cpld_2threads_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/cpld_decomp_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/cpld_decomp_p8 Checking test 006 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -420,14 +424,14 @@ Checking test 006 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 345.691980 - 0: The maximum resident set size (KB) = 3168076 + 0: The total amount of wall time = 351.480057 + 0: The maximum resident set size (KB) = 3169476 Test 006 cpld_decomp_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/cpld_mpi_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/cpld_mpi_p8 Checking test 007 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -480,14 +484,14 @@ Checking test 007 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 287.673042 - 0: The maximum resident set size (KB) = 3028952 + 0: The total amount of wall time = 296.104032 + 0: The maximum resident set size (KB) = 3010960 Test 007 cpld_mpi_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_ciceC_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/cpld_control_ciceC_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/cpld_control_ciceC_p8 Checking test 008 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -552,14 +556,14 @@ Checking test 008 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 353.392292 - 0: The maximum resident set size (KB) = 3175116 + 0: The total amount of wall time = 350.995024 + 0: The maximum resident set size (KB) = 3171496 Test 008 cpld_control_ciceC_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/cpld_control_c192_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/cpld_control_c192_p8 Checking test 009 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -612,14 +616,14 @@ Checking test 009 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 659.734343 - 0: The maximum resident set size (KB) = 3247956 + 0: The total amount of wall time = 647.644302 + 0: The maximum resident set size (KB) = 3261196 Test 009 cpld_control_c192_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/cpld_restart_c192_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/cpld_restart_c192_p8 Checking test 010 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -672,14 +676,14 @@ Checking test 010 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 459.673238 - 0: The maximum resident set size (KB) = 3146672 + 0: The total amount of wall time = 453.213638 + 0: The maximum resident set size (KB) = 3160000 Test 010 cpld_restart_c192_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_bmark_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/cpld_bmark_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/cpld_bmark_p8 Checking test 011 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -727,14 +731,14 @@ Checking test 011 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 876.457276 - 0: The maximum resident set size (KB) = 4040260 + 0: The total amount of wall time = 902.755554 + 0: The maximum resident set size (KB) = 3976732 Test 011 cpld_bmark_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_bmark_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/cpld_restart_bmark_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/cpld_restart_bmark_p8 Checking test 012 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -782,14 +786,14 @@ Checking test 012 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 543.608448 - 0: The maximum resident set size (KB) = 3959036 + 0: The total amount of wall time = 540.973742 + 0: The maximum resident set size (KB) = 3975996 Test 012 cpld_restart_bmark_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_noaero_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/cpld_control_noaero_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/cpld_control_noaero_p8 Checking test 013 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -853,14 +857,14 @@ Checking test 013 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 261.273395 - 0: The maximum resident set size (KB) = 1720856 + 0: The total amount of wall time = 256.926023 + 0: The maximum resident set size (KB) = 1726604 Test 013 cpld_control_noaero_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c96_noaero_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/cpld_control_nowave_noaero_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/cpld_control_nowave_noaero_p8 Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -922,14 +926,14 @@ Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 263.239836 - 0: The maximum resident set size (KB) = 1762528 + 0: The total amount of wall time = 261.156068 + 0: The maximum resident set size (KB) = 1772112 Test 014 cpld_control_nowave_noaero_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_debug_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/cpld_debug_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/cpld_debug_p8 Checking test 015 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -982,14 +986,14 @@ Checking test 015 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 692.027600 - 0: The maximum resident set size (KB) = 3243104 + 0: The total amount of wall time = 692.339565 + 0: The maximum resident set size (KB) = 3245860 Test 015 cpld_debug_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_debug_noaero_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/cpld_debug_noaero_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/cpld_debug_noaero_p8 Checking test 016 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1041,14 +1045,14 @@ Checking test 016 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 434.819697 - 0: The maximum resident set size (KB) = 1752392 + 0: The total amount of wall time = 437.344061 + 0: The maximum resident set size (KB) = 1744084 Test 016 cpld_debug_noaero_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_noaero_p8_agrid -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/cpld_control_noaero_p8_agrid +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/cpld_control_noaero_p8_agrid Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1110,14 +1114,14 @@ Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 271.557475 - 0: The maximum resident set size (KB) = 1762212 + 0: The total amount of wall time = 265.702473 + 0: The maximum resident set size (KB) = 1768944 Test 017 cpld_control_noaero_p8_agrid PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c48 -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/cpld_control_c48 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/cpld_control_c48 Checking test 018 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1167,14 +1171,14 @@ Checking test 018 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 497.901712 - 0: The maximum resident set size (KB) = 2796524 + 0: The total amount of wall time = 505.315391 + 0: The maximum resident set size (KB) = 2788164 Test 018 cpld_control_c48 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_warmstart_c48 -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/cpld_warmstart_c48 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/cpld_warmstart_c48 Checking test 019 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1224,14 +1228,14 @@ Checking test 019 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 140.023396 - 0: The maximum resident set size (KB) = 2803408 + 0: The total amount of wall time = 136.020603 + 0: The maximum resident set size (KB) = 2805808 Test 019 cpld_warmstart_c48 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_warmstart_c48 -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/cpld_restart_c48 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/cpld_restart_c48 Checking test 020 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1281,15 +1285,87 @@ Checking test 020 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 72.254655 - 0: The maximum resident set size (KB) = 2250832 + 0: The total amount of wall time = 74.475997 + 0: The maximum resident set size (KB) = 2243520 Test 020 cpld_restart_c48 PASS +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8_faster +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/cpld_control_p8_faster +Checking test 021 cpld_control_p8_faster results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 330.252678 + 0: The maximum resident set size (KB) = 3175916 + +Test 021 cpld_control_p8_faster PASS + + baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_CubedSphereGrid -Checking test 021 control_CubedSphereGrid results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_CubedSphereGrid +Checking test 022 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1315,29 +1391,29 @@ Checking test 021 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 131.736134 - 0: The maximum resident set size (KB) = 628156 + 0: The total amount of wall time = 132.636819 + 0: The maximum resident set size (KB) = 625976 -Test 021 control_CubedSphereGrid PASS +Test 022 control_CubedSphereGrid PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid_parallel -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_CubedSphereGrid_parallel -Checking test 022 control_CubedSphereGrid_parallel results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_CubedSphereGrid_parallel +Checking test 023 control_CubedSphereGrid_parallel results .... 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.373172 - 0: The maximum resident set size (KB) = 629824 + 0: The total amount of wall time = 129.819174 + 0: The maximum resident set size (KB) = 628296 -Test 022 control_CubedSphereGrid_parallel PASS +Test 023 control_CubedSphereGrid_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_latlon -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_latlon -Checking test 023 control_latlon results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_latlon +Checking test 024 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1347,33 +1423,33 @@ Checking test 023 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.024717 - 0: The maximum resident set size (KB) = 632768 + 0: The total amount of wall time = 134.817468 + 0: The maximum resident set size (KB) = 592912 -Test 023 control_latlon PASS +Test 024 control_latlon PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wrtGauss_netcdf_parallel -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_wrtGauss_netcdf_parallel -Checking test 024 control_wrtGauss_netcdf_parallel results .... - Comparing sfcf000.nc .........OK +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_wrtGauss_netcdf_parallel +Checking test 025 control_wrtGauss_netcdf_parallel results .... + Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc .........OK - Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.778505 - 0: The maximum resident set size (KB) = 627596 + 0: The total amount of wall time = 136.249257 + 0: The maximum resident set size (KB) = 631296 -Test 024 control_wrtGauss_netcdf_parallel PASS +Test 025 control_wrtGauss_netcdf_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c48 -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_c48 -Checking test 025 control_c48 results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_c48 +Checking test 026 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1411,15 +1487,15 @@ Checking test 025 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 347.756121 -0: The maximum resident set size (KB) = 815552 +0: The total amount of wall time = 348.792388 +0: The maximum resident set size (KB) = 817704 -Test 025 control_c48 PASS +Test 026 control_c48 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c192 -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_c192 -Checking test 026 control_c192 results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_c192 +Checking test 027 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1429,15 +1505,15 @@ Checking test 026 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 525.405908 - 0: The maximum resident set size (KB) = 758376 + 0: The total amount of wall time = 525.735935 + 0: The maximum resident set size (KB) = 770080 -Test 026 control_c192 PASS +Test 027 control_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c384 -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_c384 -Checking test 027 control_c384 results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_c384 +Checking test 028 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1447,15 +1523,15 @@ Checking test 027 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 614.442326 - 0: The maximum resident set size (KB) = 1233084 + 0: The total amount of wall time = 591.752107 + 0: The maximum resident set size (KB) = 1226908 -Test 027 control_c384 PASS +Test 028 control_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c384gdas -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_c384gdas -Checking test 028 control_c384gdas results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_c384gdas +Checking test 029 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -1497,15 +1573,15 @@ Checking test 028 control_c384gdas 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 = 521.905020 - 0: The maximum resident set size (KB) = 1331700 + 0: The total amount of wall time = 525.615458 + 0: The maximum resident set size (KB) = 1335492 -Test 028 control_c384gdas PASS +Test 029 control_c384gdas PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_stochy -Checking test 029 control_stochy results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_stochy +Checking test 030 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1515,29 +1591,29 @@ Checking test 029 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 87.090957 - 0: The maximum resident set size (KB) = 629520 + 0: The total amount of wall time = 86.907139 + 0: The maximum resident set size (KB) = 634724 -Test 029 control_stochy PASS +Test 030 control_stochy PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_stochy_restart -Checking test 030 control_stochy_restart results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_stochy_restart +Checking test 031 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 47.430441 - 0: The maximum resident set size (KB) = 490644 + 0: The total amount of wall time = 46.804386 + 0: The maximum resident set size (KB) = 483116 -Test 030 control_stochy_restart PASS +Test 031 control_stochy_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_lndp -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_lndp -Checking test 031 control_lndp results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_lndp +Checking test 032 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1547,15 +1623,15 @@ Checking test 031 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 81.418162 - 0: The maximum resident set size (KB) = 629604 + 0: The total amount of wall time = 81.774779 + 0: The maximum resident set size (KB) = 628964 -Test 031 control_lndp PASS +Test 032 control_lndp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_iovr4 -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_iovr4 -Checking test 032 control_iovr4 results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_iovr4 +Checking test 033 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1569,15 +1645,15 @@ Checking test 032 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 133.958593 - 0: The maximum resident set size (KB) = 633376 + 0: The total amount of wall time = 135.220497 + 0: The maximum resident set size (KB) = 629628 -Test 032 control_iovr4 PASS +Test 033 control_iovr4 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_iovr5 -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_iovr5 -Checking test 033 control_iovr5 results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_iovr5 +Checking test 034 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1591,15 +1667,15 @@ Checking test 033 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.109636 - 0: The maximum resident set size (KB) = 627804 + 0: The total amount of wall time = 135.575998 + 0: The maximum resident set size (KB) = 630800 -Test 033 control_iovr5 PASS +Test 034 control_iovr5 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_p8 -Checking test 034 control_p8 results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_p8 +Checking test 035 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1645,15 +1721,15 @@ Checking test 034 control_p8 results .... Comparing 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.346608 - 0: The maximum resident set size (KB) = 1600764 + 0: The total amount of wall time = 167.306712 + 0: The maximum resident set size (KB) = 1609860 -Test 034 control_p8 PASS +Test 035 control_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_lndp -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_p8_lndp -Checking test 035 control_p8_lndp results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_p8_lndp +Checking test 036 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1671,15 +1747,15 @@ Checking test 035 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 311.283791 - 0: The maximum resident set size (KB) = 1604088 + 0: The total amount of wall time = 311.795315 + 0: The maximum resident set size (KB) = 1597176 -Test 035 control_p8_lndp PASS +Test 036 control_p8_lndp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_restart_p8 -Checking test 036 control_restart_p8 results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_restart_p8 +Checking test 037 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1717,15 +1793,15 @@ Checking test 036 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 87.443489 - 0: The maximum resident set size (KB) = 876800 + 0: The total amount of wall time = 87.545257 + 0: The maximum resident set size (KB) = 882248 -Test 036 control_restart_p8 PASS +Test 037 control_restart_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_decomp_p8 -Checking test 037 control_decomp_p8 results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_decomp_p8 +Checking test 038 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1767,15 +1843,15 @@ Checking test 037 control_decomp_p8 results .... Comparing 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.108635 - 0: The maximum resident set size (KB) = 1587508 + 0: The total amount of wall time = 173.706934 + 0: The maximum resident set size (KB) = 1590316 -Test 037 control_decomp_p8 PASS +Test 038 control_decomp_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_2threads_p8 -Checking test 038 control_2threads_p8 results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_2threads_p8 +Checking test 039 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1817,15 +1893,15 @@ Checking test 038 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 181.707282 - 0: The maximum resident set size (KB) = 1682704 + 0: The total amount of wall time = 180.876311 + 0: The maximum resident set size (KB) = 1679384 -Test 038 control_2threads_p8 PASS +Test 039 control_2threads_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_rrtmgp -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_p8_rrtmgp -Checking test 039 control_p8_rrtmgp results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_p8_rrtmgp +Checking test 040 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1871,15 +1947,15 @@ Checking test 039 control_p8_rrtmgp results .... Comparing 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.600765 - 0: The maximum resident set size (KB) = 1666672 + 0: The total amount of wall time = 228.654273 + 0: The maximum resident set size (KB) = 1676272 -Test 039 control_p8_rrtmgp PASS +Test 040 control_p8_rrtmgp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/merra2_thompson -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/merra2_thompson -Checking test 040 merra2_thompson results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/merra2_thompson +Checking test 041 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1925,15 +2001,15 @@ Checking test 040 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 189.443605 - 0: The maximum resident set size (KB) = 1616516 + 0: The total amount of wall time = 189.205175 + 0: The maximum resident set size (KB) = 1609952 -Test 040 merra2_thompson PASS +Test 041 merra2_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/regional_control -Checking test 041 regional_control results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/regional_control +Checking test 042 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1943,29 +2019,29 @@ Checking test 041 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 294.911836 - 0: The maximum resident set size (KB) = 865704 + 0: The total amount of wall time = 296.558103 + 0: The maximum resident set size (KB) = 868116 -Test 041 regional_control PASS +Test 042 regional_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/regional_restart -Checking test 042 regional_restart results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/regional_restart +Checking test 043 regional_restart 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.206270 - 0: The maximum resident set size (KB) = 863860 + 0: The total amount of wall time = 151.197824 + 0: The maximum resident set size (KB) = 863784 -Test 042 regional_restart PASS +Test 043 regional_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/regional_decomp -Checking test 043 regional_decomp results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/regional_decomp +Checking test 044 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1975,15 +2051,15 @@ Checking test 043 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 315.220382 - 0: The maximum resident set size (KB) = 859520 + 0: The total amount of wall time = 315.829614 + 0: The maximum resident set size (KB) = 862684 -Test 043 regional_decomp PASS +Test 044 regional_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/regional_2threads -Checking test 044 regional_2threads results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/regional_2threads +Checking test 045 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1993,44 +2069,44 @@ Checking test 044 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 208.690364 - 0: The maximum resident set size (KB) = 842940 + 0: The total amount of wall time = 208.560546 + 0: The maximum resident set size (KB) = 840740 -Test 044 regional_2threads PASS +Test 045 regional_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_noquilt -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/regional_noquilt -Checking test 045 regional_noquilt results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/regional_noquilt +Checking test 046 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 314.583965 - 0: The maximum resident set size (KB) = 858520 + 0: The total amount of wall time = 317.503514 + 0: The maximum resident set size (KB) = 860960 -Test 045 regional_noquilt PASS +Test 046 regional_noquilt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_netcdf_parallel -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/regional_netcdf_parallel -Checking test 046 regional_netcdf_parallel results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/regional_netcdf_parallel +Checking test 047 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK - Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 291.890797 - 0: The maximum resident set size (KB) = 867864 + 0: The total amount of wall time = 291.664583 + 0: The maximum resident set size (KB) = 860240 -Test 046 regional_netcdf_parallel PASS +Test 047 regional_netcdf_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/regional_2dwrtdecomp -Checking test 047 regional_2dwrtdecomp results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/regional_2dwrtdecomp +Checking test 048 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2040,15 +2116,15 @@ Checking test 047 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 298.437297 - 0: The maximum resident set size (KB) = 864892 + 0: The total amount of wall time = 294.361627 + 0: The maximum resident set size (KB) = 865840 -Test 047 regional_2dwrtdecomp PASS +Test 048 regional_2dwrtdecomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/fv3_regional_wofs -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/regional_wofs -Checking test 048 regional_wofs results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/regional_wofs +Checking test 049 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2058,15 +2134,15 @@ Checking test 048 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 375.102845 - 0: The maximum resident set size (KB) = 623524 + 0: The total amount of wall time = 373.249826 + 0: The maximum resident set size (KB) = 624800 -Test 048 regional_wofs PASS +Test 049 regional_wofs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rap_control -Checking test 049 rap_control results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rap_control +Checking test 050 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2112,15 +2188,15 @@ Checking test 049 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 461.350630 - 0: The maximum resident set size (KB) = 1065984 + 0: The total amount of wall time = 459.170931 + 0: The maximum resident set size (KB) = 1062932 -Test 049 rap_control PASS +Test 050 rap_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_spp_sppt_shum_skeb -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/regional_spp_sppt_shum_skeb -Checking test 050 regional_spp_sppt_shum_skeb results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/regional_spp_sppt_shum_skeb +Checking test 051 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -2130,15 +2206,15 @@ Checking test 050 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 330.591694 - 0: The maximum resident set size (KB) = 1147316 + 0: The total amount of wall time = 328.515617 + 0: The maximum resident set size (KB) = 1169032 -Test 050 regional_spp_sppt_shum_skeb PASS +Test 051 regional_spp_sppt_shum_skeb PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rap_decomp -Checking test 051 rap_decomp results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rap_decomp +Checking test 052 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2184,15 +2260,15 @@ Checking test 051 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 479.976241 - 0: The maximum resident set size (KB) = 1012244 + 0: The total amount of wall time = 485.168000 + 0: The maximum resident set size (KB) = 1006344 -Test 051 rap_decomp PASS +Test 052 rap_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rap_2threads -Checking test 052 rap_2threads results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rap_2threads +Checking test 053 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2238,15 +2314,15 @@ Checking test 052 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 480.376134 - 0: The maximum resident set size (KB) = 1138640 + 0: The total amount of wall time = 479.976992 + 0: The maximum resident set size (KB) = 1135800 -Test 052 rap_2threads PASS +Test 053 rap_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rap_restart -Checking test 053 rap_restart results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rap_restart +Checking test 054 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2284,15 +2360,15 @@ Checking test 053 rap_restart results .... Comparing 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.729693 - 0: The maximum resident set size (KB) = 974976 + 0: The total amount of wall time = 232.363934 + 0: The maximum resident set size (KB) = 969788 -Test 053 rap_restart PASS +Test 054 rap_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rap_sfcdiff -Checking test 054 rap_sfcdiff results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rap_sfcdiff +Checking test 055 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2338,15 +2414,15 @@ Checking test 054 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 454.833072 - 0: The maximum resident set size (KB) = 1062976 + 0: The total amount of wall time = 451.033455 + 0: The maximum resident set size (KB) = 1064940 -Test 054 rap_sfcdiff PASS +Test 055 rap_sfcdiff PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rap_sfcdiff_decomp -Checking test 055 rap_sfcdiff_decomp results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rap_sfcdiff_decomp +Checking test 056 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2392,15 +2468,15 @@ Checking test 055 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 478.292525 - 0: The maximum resident set size (KB) = 1007520 + 0: The total amount of wall time = 477.263314 + 0: The maximum resident set size (KB) = 1001312 -Test 055 rap_sfcdiff_decomp PASS +Test 056 rap_sfcdiff_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rap_sfcdiff_restart -Checking test 056 rap_sfcdiff_restart results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rap_sfcdiff_restart +Checking test 057 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2438,15 +2514,15 @@ Checking test 056 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 351.127888 - 0: The maximum resident set size (KB) = 997120 + 0: The total amount of wall time = 343.757917 + 0: The maximum resident set size (KB) = 999672 -Test 056 rap_sfcdiff_restart PASS +Test 057 rap_sfcdiff_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hrrr_control -Checking test 057 hrrr_control results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hrrr_control +Checking test 058 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2492,15 +2568,15 @@ Checking test 057 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 434.886174 - 0: The maximum resident set size (KB) = 1057188 + 0: The total amount of wall time = 434.862807 + 0: The maximum resident set size (KB) = 1060500 -Test 057 hrrr_control PASS +Test 058 hrrr_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hrrr_control_decomp -Checking test 058 hrrr_control_decomp results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hrrr_control_decomp +Checking test 059 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2546,15 +2622,15 @@ Checking test 058 hrrr_control_decomp results .... Comparing 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.211877 - 0: The maximum resident set size (KB) = 1006844 + 0: The total amount of wall time = 458.578057 + 0: The maximum resident set size (KB) = 1001524 -Test 058 hrrr_control_decomp PASS +Test 059 hrrr_control_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hrrr_control_2threads -Checking test 059 hrrr_control_2threads results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hrrr_control_2threads +Checking test 060 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2600,15 +2676,15 @@ Checking test 059 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 449.301408 - 0: The maximum resident set size (KB) = 1134040 + 0: The total amount of wall time = 452.710874 + 0: The maximum resident set size (KB) = 1137964 -Test 059 hrrr_control_2threads PASS +Test 060 hrrr_control_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hrrr_control_restart -Checking test 060 hrrr_control_restart results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hrrr_control_restart +Checking test 061 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2646,15 +2722,15 @@ Checking test 060 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 333.865491 - 0: The maximum resident set size (KB) = 988204 + 0: The total amount of wall time = 333.337774 + 0: The maximum resident set size (KB) = 987580 -Test 060 hrrr_control_restart PASS +Test 061 hrrr_control_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1beta -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rrfs_v1beta -Checking test 061 rrfs_v1beta results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rrfs_v1beta +Checking test 062 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2700,15 +2776,15 @@ Checking test 061 rrfs_v1beta results .... Comparing 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.891960 - 0: The maximum resident set size (KB) = 1074776 + 0: The total amount of wall time = 449.222940 + 0: The maximum resident set size (KB) = 1056328 -Test 061 rrfs_v1beta PASS +Test 062 rrfs_v1beta PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1nssl -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rrfs_v1nssl -Checking test 062 rrfs_v1nssl results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rrfs_v1nssl +Checking test 063 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2722,15 +2798,15 @@ Checking test 062 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 532.022044 - 0: The maximum resident set size (KB) = 705316 + 0: The total amount of wall time = 529.385693 + 0: The maximum resident set size (KB) = 701744 -Test 062 rrfs_v1nssl PASS +Test 063 rrfs_v1nssl PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rrfs_v1nssl_nohailnoccn -Checking test 063 rrfs_v1nssl_nohailnoccn results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rrfs_v1nssl_nohailnoccn +Checking test 064 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2744,15 +2820,15 @@ Checking test 063 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 516.126819 - 0: The maximum resident set size (KB) = 762416 + 0: The total amount of wall time = 517.354433 + 0: The maximum resident set size (KB) = 765068 -Test 063 rrfs_v1nssl_nohailnoccn PASS +Test 064 rrfs_v1nssl_nohailnoccn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rrfs_conus13km_hrrr_warm -Checking test 064 rrfs_conus13km_hrrr_warm results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rrfs_conus13km_hrrr_warm +Checking test 065 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2760,15 +2836,15 @@ Checking test 064 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 122.895246 - 0: The maximum resident set size (KB) = 892252 + 0: The total amount of wall time = 123.588469 + 0: The maximum resident set size (KB) = 931572 -Test 064 rrfs_conus13km_hrrr_warm PASS +Test 065 rrfs_conus13km_hrrr_warm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rrfs_smoke_conus13km_hrrr_warm -Checking test 065 rrfs_smoke_conus13km_hrrr_warm results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rrfs_smoke_conus13km_hrrr_warm +Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2776,15 +2852,15 @@ Checking test 065 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 138.035420 - 0: The maximum resident set size (KB) = 958620 + 0: The total amount of wall time = 140.264375 + 0: The maximum resident set size (KB) = 959016 -Test 065 rrfs_smoke_conus13km_hrrr_warm PASS +Test 066 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rrfs_conus13km_radar_tten_warm -Checking test 066 rrfs_conus13km_radar_tten_warm results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rrfs_conus13km_radar_tten_warm +Checking test 067 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2792,15 +2868,15 @@ Checking test 066 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 123.548228 - 0: The maximum resident set size (KB) = 933580 + 0: The total amount of wall time = 126.266279 + 0: The maximum resident set size (KB) = 932444 -Test 066 rrfs_conus13km_radar_tten_warm PASS +Test 067 rrfs_conus13km_radar_tten_warm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rrfs_conus13km_hrrr_warm_2threads -Checking test 067 rrfs_conus13km_hrrr_warm_2threads results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rrfs_conus13km_hrrr_warm_2threads +Checking test 068 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2808,15 +2884,15 @@ Checking test 067 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 82.872214 - 0: The maximum resident set size (KB) = 842580 + 0: The total amount of wall time = 85.345622 + 0: The maximum resident set size (KB) = 845860 -Test 067 rrfs_conus13km_hrrr_warm_2threads PASS +Test 068 rrfs_conus13km_hrrr_warm_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rrfs_conus13km_radar_tten_warm_2threads -Checking test 068 rrfs_conus13km_radar_tten_warm_2threads results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rrfs_conus13km_radar_tten_warm_2threads +Checking test 069 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2824,15 +2900,15 @@ Checking test 068 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 83.331542 - 0: The maximum resident set size (KB) = 892488 + 0: The total amount of wall time = 84.238277 + 0: The maximum resident set size (KB) = 887396 -Test 068 rrfs_conus13km_radar_tten_warm_2threads PASS +Test 069 rrfs_conus13km_radar_tten_warm_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmg -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_csawmg -Checking test 069 control_csawmg results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_csawmg +Checking test 070 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2842,15 +2918,15 @@ Checking test 069 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 348.219443 - 0: The maximum resident set size (KB) = 722580 + 0: The total amount of wall time = 342.403692 + 0: The maximum resident set size (KB) = 722092 -Test 069 control_csawmg PASS +Test 070 control_csawmg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmgt -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_csawmgt -Checking test 070 control_csawmgt results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_csawmgt +Checking test 071 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2860,15 +2936,15 @@ Checking test 070 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 340.750793 - 0: The maximum resident set size (KB) = 730696 + 0: The total amount of wall time = 337.184713 + 0: The maximum resident set size (KB) = 729572 -Test 070 control_csawmgt PASS +Test 071 control_csawmgt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_ras -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_ras -Checking test 071 control_ras results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_ras +Checking test 072 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2878,55 +2954,127 @@ Checking test 071 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 182.813207 - 0: The maximum resident set size (KB) = 724364 + 0: The total amount of wall time = 181.714380 + 0: The maximum resident set size (KB) = 712912 -Test 071 control_ras PASS +Test 072 control_ras PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wam -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_wam -Checking test 072 control_wam results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_wam +Checking test 073 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 112.141139 - 0: The maximum resident set size (KB) = 610812 + 0: The total amount of wall time = 112.964085 + 0: The maximum resident set size (KB) = 639844 -Test 072 control_wam PASS +Test 073 control_wam PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_faster +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_p8_faster +Checking test 074 control_p8_faster results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 151.919192 + 0: The maximum resident set size (KB) = 1601688 + +Test 074 control_p8_faster PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control_faster +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/regional_control_faster +Checking test 075 regional_control_faster results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK + + 0: The total amount of wall time = 269.208807 + 0: The maximum resident set size (KB) = 869376 + +Test 075 regional_control_faster PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rrfs_conus13km_hrrr_warm_debug -Checking test 073 rrfs_conus13km_hrrr_warm_debug results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rrfs_conus13km_hrrr_warm_debug +Checking test 076 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 734.214634 - 0: The maximum resident set size (KB) = 955624 + 0: The total amount of wall time = 742.760454 + 0: The maximum resident set size (KB) = 957116 -Test 073 rrfs_conus13km_hrrr_warm_debug PASS +Test 076 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rrfs_conus13km_radar_tten_warm_debug -Checking test 074 rrfs_conus13km_radar_tten_warm_debug results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rrfs_conus13km_radar_tten_warm_debug +Checking test 077 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 740.791537 - 0: The maximum resident set size (KB) = 966444 + 0: The total amount of wall time = 745.005118 + 0: The maximum resident set size (KB) = 965788 -Test 074 rrfs_conus13km_radar_tten_warm_debug PASS +Test 077 rrfs_conus13km_radar_tten_warm_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_CubedSphereGrid_debug -Checking test 075 control_CubedSphereGrid_debug results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_CubedSphereGrid_debug +Checking test 078 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -2952,335 +3100,335 @@ Checking test 075 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 170.381994 - 0: The maximum resident set size (KB) = 793284 + 0: The total amount of wall time = 175.296868 + 0: The maximum resident set size (KB) = 795920 -Test 075 control_CubedSphereGrid_debug PASS +Test 078 control_CubedSphereGrid_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_wrtGauss_netcdf_parallel_debug -Checking test 076 control_wrtGauss_netcdf_parallel_debug results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_wrtGauss_netcdf_parallel_debug +Checking test 079 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK + Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 162.741623 - 0: The maximum resident set size (KB) = 789428 + 0: The total amount of wall time = 156.597766 + 0: The maximum resident set size (KB) = 802096 -Test 076 control_wrtGauss_netcdf_parallel_debug PASS +Test 079 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_stochy_debug -Checking test 077 control_stochy_debug results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_stochy_debug +Checking test 080 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 177.662069 - 0: The maximum resident set size (KB) = 800788 + 0: The total amount of wall time = 177.945904 + 0: The maximum resident set size (KB) = 799748 -Test 077 control_stochy_debug PASS +Test 080 control_stochy_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_lndp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_lndp_debug -Checking test 078 control_lndp_debug results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_lndp_debug +Checking test 081 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 159.161256 - 0: The maximum resident set size (KB) = 793616 + 0: The total amount of wall time = 160.643101 + 0: The maximum resident set size (KB) = 798412 -Test 078 control_lndp_debug PASS +Test 081 control_lndp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmg_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_csawmg_debug -Checking test 079 control_csawmg_debug results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_csawmg_debug +Checking test 082 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 239.534510 - 0: The maximum resident set size (KB) = 844288 + 0: The total amount of wall time = 240.254972 + 0: The maximum resident set size (KB) = 846364 -Test 079 control_csawmg_debug PASS +Test 082 control_csawmg_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmgt_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_csawmgt_debug -Checking test 080 control_csawmgt_debug results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_csawmgt_debug +Checking test 083 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 244.647474 - 0: The maximum resident set size (KB) = 847188 + 0: The total amount of wall time = 239.152568 + 0: The maximum resident set size (KB) = 842348 -Test 080 control_csawmgt_debug PASS +Test 083 control_csawmgt_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_ras_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_ras_debug -Checking test 081 control_ras_debug results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_ras_debug +Checking test 084 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 163.824988 - 0: The maximum resident set size (KB) = 809656 + 0: The total amount of wall time = 159.780133 + 0: The maximum resident set size (KB) = 809328 -Test 081 control_ras_debug PASS +Test 084 control_ras_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_diag_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_diag_debug -Checking test 082 control_diag_debug results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_diag_debug +Checking test 085 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 168.925352 - 0: The maximum resident set size (KB) = 844680 + 0: The total amount of wall time = 167.270369 + 0: The maximum resident set size (KB) = 852336 -Test 082 control_diag_debug PASS +Test 085 control_diag_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_debug_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_debug_p8 -Checking test 083 control_debug_p8 results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_debug_p8 +Checking test 086 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 180.130234 - 0: The maximum resident set size (KB) = 1634288 + 0: The total amount of wall time = 180.682794 + 0: The maximum resident set size (KB) = 1618088 -Test 083 control_debug_p8 PASS +Test 086 control_debug_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/regional_debug -Checking test 084 regional_debug results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/regional_debug +Checking test 087 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 996.885006 - 0: The maximum resident set size (KB) = 881720 + 0: The total amount of wall time = 973.654613 + 0: The maximum resident set size (KB) = 896304 -Test 084 regional_debug PASS +Test 087 regional_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rap_control_debug -Checking test 085 rap_control_debug results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rap_control_debug +Checking test 088 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 287.911265 - 0: The maximum resident set size (KB) = 1171604 + 0: The total amount of wall time = 295.969070 + 0: The maximum resident set size (KB) = 1174908 -Test 085 rap_control_debug PASS +Test 088 rap_control_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hrrr_control_debug -Checking test 086 hrrr_control_debug results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hrrr_control_debug +Checking test 089 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.813431 - 0: The maximum resident set size (KB) = 1165388 + 0: The total amount of wall time = 281.038846 + 0: The maximum resident set size (KB) = 1171768 -Test 086 hrrr_control_debug PASS +Test 089 hrrr_control_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rap_unified_drag_suite_debug -Checking test 087 rap_unified_drag_suite_debug results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rap_unified_drag_suite_debug +Checking test 090 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 288.786967 - 0: The maximum resident set size (KB) = 1174996 + 0: The total amount of wall time = 291.191775 + 0: The maximum resident set size (KB) = 1174128 -Test 087 rap_unified_drag_suite_debug PASS +Test 090 rap_unified_drag_suite_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_diag_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rap_diag_debug -Checking test 088 rap_diag_debug results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rap_diag_debug +Checking test 091 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 302.361374 - 0: The maximum resident set size (KB) = 1258760 + 0: The total amount of wall time = 311.236582 + 0: The maximum resident set size (KB) = 1260788 -Test 088 rap_diag_debug PASS +Test 091 rap_diag_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rap_cires_ugwp_debug -Checking test 089 rap_cires_ugwp_debug results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rap_cires_ugwp_debug +Checking test 092 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 299.890657 - 0: The maximum resident set size (KB) = 1172404 + 0: The total amount of wall time = 295.380042 + 0: The maximum resident set size (KB) = 1175900 -Test 089 rap_cires_ugwp_debug PASS +Test 092 rap_cires_ugwp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rap_unified_ugwp_debug -Checking test 090 rap_unified_ugwp_debug results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rap_unified_ugwp_debug +Checking test 093 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 289.409472 - 0: The maximum resident set size (KB) = 1169484 + 0: The total amount of wall time = 286.480297 + 0: The maximum resident set size (KB) = 1181640 -Test 090 rap_unified_ugwp_debug PASS +Test 093 rap_unified_ugwp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_lndp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rap_lndp_debug -Checking test 091 rap_lndp_debug results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rap_lndp_debug +Checking test 094 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 290.016584 - 0: The maximum resident set size (KB) = 1176608 + 0: The total amount of wall time = 294.335969 + 0: The maximum resident set size (KB) = 1175680 -Test 091 rap_lndp_debug PASS +Test 094 rap_lndp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_flake_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rap_flake_debug -Checking test 092 rap_flake_debug results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rap_flake_debug +Checking test 095 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 292.593182 - 0: The maximum resident set size (KB) = 1180920 + 0: The total amount of wall time = 289.248584 + 0: The maximum resident set size (KB) = 1176988 -Test 092 rap_flake_debug PASS +Test 095 rap_flake_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_progcld_thompson_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rap_progcld_thompson_debug -Checking test 093 rap_progcld_thompson_debug results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rap_progcld_thompson_debug +Checking test 096 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 285.535823 - 0: The maximum resident set size (KB) = 1174096 + 0: The total amount of wall time = 308.762616 + 0: The maximum resident set size (KB) = 1171148 -Test 093 rap_progcld_thompson_debug PASS +Test 096 rap_progcld_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_noah_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rap_noah_debug -Checking test 094 rap_noah_debug results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rap_noah_debug +Checking test 097 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.731054 - 0: The maximum resident set size (KB) = 1169464 + 0: The total amount of wall time = 275.339785 + 0: The maximum resident set size (KB) = 1174700 -Test 094 rap_noah_debug PASS +Test 097 rap_noah_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rap_sfcdiff_debug -Checking test 095 rap_sfcdiff_debug results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rap_sfcdiff_debug +Checking test 098 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 287.927311 - 0: The maximum resident set size (KB) = 1173392 + 0: The total amount of wall time = 282.729194 + 0: The maximum resident set size (KB) = 1178512 -Test 095 rap_sfcdiff_debug PASS +Test 098 rap_sfcdiff_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 096 rap_noah_sfcdiff_cires_ugwp_debug results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 099 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 475.170517 - 0: The maximum resident set size (KB) = 1170788 + 0: The total amount of wall time = 462.891360 + 0: The maximum resident set size (KB) = 1171948 -Test 096 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 099 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1beta_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rrfs_v1beta_debug -Checking test 097 rrfs_v1beta_debug results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rrfs_v1beta_debug +Checking test 100 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 286.883822 - 0: The maximum resident set size (KB) = 1166664 + 0: The total amount of wall time = 280.232980 + 0: The maximum resident set size (KB) = 1177500 -Test 097 rrfs_v1beta_debug PASS +Test 100 rrfs_v1beta_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wam_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_wam_debug -Checking test 098 control_wam_debug results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_wam_debug +Checking test 101 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 293.200872 - 0: The maximum resident set size (KB) = 530120 + 0: The total amount of wall time = 295.389220 + 0: The maximum resident set size (KB) = 521476 -Test 098 control_wam_debug PASS +Test 101 control_wam_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/regional_spp_sppt_shum_skeb_dyn32_phy32 -Checking test 099 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 102 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -3290,15 +3438,15 @@ Checking test 099 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 301.825671 - 0: The maximum resident set size (KB) = 1082332 + 0: The total amount of wall time = 303.021149 + 0: The maximum resident set size (KB) = 1057924 -Test 099 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS +Test 102 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rap_control_dyn32_phy32 -Checking test 100 rap_control_dyn32_phy32 results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rap_control_dyn32_phy32 +Checking test 103 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3344,15 +3492,15 @@ Checking test 100 rap_control_dyn32_phy32 results .... Comparing 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.940849 - 0: The maximum resident set size (KB) = 1004908 + 0: The total amount of wall time = 369.072615 + 0: The maximum resident set size (KB) = 1010340 -Test 100 rap_control_dyn32_phy32 PASS +Test 103 rap_control_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hrrr_control_dyn32_phy32 -Checking test 101 hrrr_control_dyn32_phy32 results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hrrr_control_dyn32_phy32 +Checking test 104 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3398,15 +3546,15 @@ Checking test 101 hrrr_control_dyn32_phy32 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 = 194.265667 - 0: The maximum resident set size (KB) = 948828 + 0: The total amount of wall time = 195.775219 + 0: The maximum resident set size (KB) = 949492 -Test 101 hrrr_control_dyn32_phy32 PASS +Test 104 hrrr_control_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rap_2threads_dyn32_phy32 -Checking test 102 rap_2threads_dyn32_phy32 results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rap_2threads_dyn32_phy32 +Checking test 105 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3452,15 +3600,15 @@ Checking test 102 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 387.870305 - 0: The maximum resident set size (KB) = 1024204 + 0: The total amount of wall time = 393.204293 + 0: The maximum resident set size (KB) = 1020484 -Test 102 rap_2threads_dyn32_phy32 PASS +Test 105 rap_2threads_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hrrr_control_2threads_dyn32_phy32 -Checking test 103 hrrr_control_2threads_dyn32_phy32 results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hrrr_control_2threads_dyn32_phy32 +Checking test 106 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3506,15 +3654,15 @@ Checking test 103 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 208.276342 - 0: The maximum resident set size (KB) = 1011440 + 0: The total amount of wall time = 209.489679 + 0: The maximum resident set size (KB) = 1009444 -Test 103 hrrr_control_2threads_dyn32_phy32 PASS +Test 106 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hrrr_control_decomp_dyn32_phy32 -Checking test 104 hrrr_control_decomp_dyn32_phy32 results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hrrr_control_decomp_dyn32_phy32 +Checking test 107 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3560,15 +3708,15 @@ Checking test 104 hrrr_control_decomp_dyn32_phy32 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 = 207.352139 - 0: The maximum resident set size (KB) = 898512 + 0: The total amount of wall time = 205.824536 + 0: The maximum resident set size (KB) = 856920 -Test 104 hrrr_control_decomp_dyn32_phy32 PASS +Test 107 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rap_restart_dyn32_phy32 -Checking test 105 rap_restart_dyn32_phy32 results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rap_restart_dyn32_phy32 +Checking test 108 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3606,15 +3754,15 @@ Checking test 105 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 281.040969 - 0: The maximum resident set size (KB) = 949456 + 0: The total amount of wall time = 280.500676 + 0: The maximum resident set size (KB) = 949656 -Test 105 rap_restart_dyn32_phy32 PASS +Test 108 rap_restart_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hrrr_control_restart_dyn32_phy32 -Checking test 106 hrrr_control_restart_dyn32_phy32 results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hrrr_control_restart_dyn32_phy32 +Checking test 109 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3652,15 +3800,15 @@ Checking test 106 hrrr_control_restart_dyn32_phy32 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 = 101.024038 - 0: The maximum resident set size (KB) = 855712 + 0: The total amount of wall time = 100.506210 + 0: The maximum resident set size (KB) = 864576 -Test 106 hrrr_control_restart_dyn32_phy32 PASS +Test 109 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn64_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rap_control_dyn64_phy32 -Checking test 107 rap_control_dyn64_phy32 results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rap_control_dyn64_phy32 +Checking test 110 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3706,82 +3854,82 @@ Checking test 107 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 240.739026 - 0: The maximum resident set size (KB) = 911436 + 0: The total amount of wall time = 243.851800 + 0: The maximum resident set size (KB) = 971788 -Test 107 rap_control_dyn64_phy32 PASS +Test 110 rap_control_dyn64_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rap_control_debug_dyn32_phy32 -Checking test 108 rap_control_debug_dyn32_phy32 results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rap_control_debug_dyn32_phy32 +Checking test 111 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 305.463079 - 0: The maximum resident set size (KB) = 1065128 + 0: The total amount of wall time = 287.818589 + 0: The maximum resident set size (KB) = 1062636 -Test 108 rap_control_debug_dyn32_phy32 PASS +Test 111 rap_control_debug_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hrrr_control_debug_dyn32_phy32 -Checking test 109 hrrr_control_debug_dyn32_phy32 results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hrrr_control_debug_dyn32_phy32 +Checking test 112 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 287.761948 - 0: The maximum resident set size (KB) = 1003880 + 0: The total amount of wall time = 288.172440 + 0: The maximum resident set size (KB) = 1054616 -Test 109 hrrr_control_debug_dyn32_phy32 PASS +Test 112 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug_dyn64_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rap_control_dyn64_phy32_debug -Checking test 110 rap_control_dyn64_phy32_debug results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rap_control_dyn64_phy32_debug +Checking test 113 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 286.065390 - 0: The maximum resident set size (KB) = 1095664 + 0: The total amount of wall time = 314.560671 + 0: The maximum resident set size (KB) = 1089840 -Test 110 rap_control_dyn64_phy32_debug PASS +Test 113 rap_control_dyn64_phy32_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hafs_regional_atm -Checking test 111 hafs_regional_atm results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hafs_regional_atm +Checking test 114 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 267.427668 - 0: The maximum resident set size (KB) = 1054928 + 0: The total amount of wall time = 272.063334 + 0: The maximum resident set size (KB) = 1058724 -Test 111 hafs_regional_atm PASS +Test 114 hafs_regional_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hafs_regional_atm_thompson_gfdlsf -Checking test 112 hafs_regional_atm_thompson_gfdlsf results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hafs_regional_atm_thompson_gfdlsf +Checking test 115 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 419.069403 - 0: The maximum resident set size (KB) = 1421804 + 0: The total amount of wall time = 414.910697 + 0: The maximum resident set size (KB) = 1426896 -Test 112 hafs_regional_atm_thompson_gfdlsf PASS +Test 115 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_ocn -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hafs_regional_atm_ocn -Checking test 113 hafs_regional_atm_ocn results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hafs_regional_atm_ocn +Checking test 116 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -3789,15 +3937,15 @@ Checking test 113 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 380.972164 - 0: The maximum resident set size (KB) = 1226196 + 0: The total amount of wall time = 385.635486 + 0: The maximum resident set size (KB) = 1230192 -Test 113 hafs_regional_atm_ocn PASS +Test 116 hafs_regional_atm_ocn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_wav -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hafs_regional_atm_wav -Checking test 114 hafs_regional_atm_wav results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hafs_regional_atm_wav +Checking test 117 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK @@ -3805,15 +3953,15 @@ Checking test 114 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 730.299560 - 0: The maximum resident set size (KB) = 1255464 + 0: The total amount of wall time = 726.616797 + 0: The maximum resident set size (KB) = 1257308 -Test 114 hafs_regional_atm_wav PASS +Test 117 hafs_regional_atm_wav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_ocn_wav -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hafs_regional_atm_ocn_wav -Checking test 115 hafs_regional_atm_ocn_wav results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hafs_regional_atm_ocn_wav +Checking test 118 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -3823,29 +3971,29 @@ Checking test 115 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 828.112615 - 0: The maximum resident set size (KB) = 1282036 + 0: The total amount of wall time = 830.285839 + 0: The maximum resident set size (KB) = 1277324 -Test 115 hafs_regional_atm_ocn_wav PASS +Test 118 hafs_regional_atm_ocn_wav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hafs_regional_1nest_atm -Checking test 116 hafs_regional_1nest_atm results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hafs_regional_1nest_atm +Checking test 119 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 369.729119 - 0: The maximum resident set size (KB) = 509880 + 0: The total amount of wall time = 365.442801 + 0: The maximum resident set size (KB) = 515096 -Test 116 hafs_regional_1nest_atm PASS +Test 119 hafs_regional_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hafs_regional_telescopic_2nests_atm -Checking test 117 hafs_regional_telescopic_2nests_atm results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hafs_regional_telescopic_2nests_atm +Checking test 120 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -3853,29 +4001,29 @@ Checking test 117 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 419.436938 - 0: The maximum resident set size (KB) = 518384 + 0: The total amount of wall time = 417.846356 + 0: The maximum resident set size (KB) = 521760 -Test 117 hafs_regional_telescopic_2nests_atm PASS +Test 120 hafs_regional_telescopic_2nests_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hafs_global_1nest_atm -Checking test 118 hafs_global_1nest_atm results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hafs_global_1nest_atm +Checking test 121 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 182.626152 - 0: The maximum resident set size (KB) = 352748 + 0: The total amount of wall time = 173.147549 + 0: The maximum resident set size (KB) = 352880 -Test 118 hafs_global_1nest_atm PASS +Test 121 hafs_global_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_multiple_4nests_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hafs_global_multiple_4nests_atm -Checking test 119 hafs_global_multiple_4nests_atm results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hafs_global_multiple_4nests_atm +Checking test 122 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -3892,15 +4040,15 @@ Checking test 119 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 482.400096 - 0: The maximum resident set size (KB) = 373972 + 0: The total amount of wall time = 473.819085 + 0: The maximum resident set size (KB) = 426840 -Test 119 hafs_global_multiple_4nests_atm PASS +Test 122 hafs_global_multiple_4nests_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hafs_regional_specified_moving_1nest_atm -Checking test 120 hafs_regional_specified_moving_1nest_atm results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hafs_regional_specified_moving_1nest_atm +Checking test 123 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -3908,29 +4056,29 @@ Checking test 120 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 233.215130 - 0: The maximum resident set size (KB) = 523400 + 0: The total amount of wall time = 227.252558 + 0: The maximum resident set size (KB) = 514760 -Test 120 hafs_regional_specified_moving_1nest_atm PASS +Test 123 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hafs_regional_storm_following_1nest_atm -Checking test 121 hafs_regional_storm_following_1nest_atm results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hafs_regional_storm_following_1nest_atm +Checking test 124 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 226.062982 - 0: The maximum resident set size (KB) = 523452 + 0: The total amount of wall time = 215.542666 + 0: The maximum resident set size (KB) = 524328 -Test 121 hafs_regional_storm_following_1nest_atm PASS +Test 124 hafs_regional_storm_following_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hafs_regional_storm_following_1nest_atm_ocn -Checking test 122 hafs_regional_storm_following_1nest_atm_ocn results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hafs_regional_storm_following_1nest_atm_ocn +Checking test 125 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -3938,43 +4086,43 @@ Checking test 122 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 292.757540 - 0: The maximum resident set size (KB) = 559692 + 0: The total amount of wall time = 282.045690 + 0: The maximum resident set size (KB) = 555832 -Test 122 hafs_regional_storm_following_1nest_atm_ocn PASS +Test 125 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_storm_following_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hafs_global_storm_following_1nest_atm -Checking test 123 hafs_global_storm_following_1nest_atm results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hafs_global_storm_following_1nest_atm +Checking test 126 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 78.174596 - 0: The maximum resident set size (KB) = 364316 + 0: The total amount of wall time = 68.502904 + 0: The maximum resident set size (KB) = 365824 -Test 123 hafs_global_storm_following_1nest_atm PASS +Test 126 hafs_global_storm_following_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hafs_regional_storm_following_1nest_atm_ocn_debug -Checking test 124 hafs_regional_storm_following_1nest_atm_ocn_debug results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hafs_regional_storm_following_1nest_atm_ocn_debug +Checking test 127 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 807.242894 - 0: The maximum resident set size (KB) = 576172 + 0: The total amount of wall time = 795.071726 + 0: The maximum resident set size (KB) = 584180 -Test 124 hafs_regional_storm_following_1nest_atm_ocn_debug PASS +Test 127 hafs_regional_storm_following_1nest_atm_ocn_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hafs_regional_storm_following_1nest_atm_ocn_wav -Checking test 125 hafs_regional_storm_following_1nest_atm_ocn_wav results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 128 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -3984,162 +4132,162 @@ Checking test 125 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 583.825906 - 0: The maximum resident set size (KB) = 616388 + 0: The total amount of wall time = 581.937553 + 0: The maximum resident set size (KB) = 617500 -Test 125 hafs_regional_storm_following_1nest_atm_ocn_wav PASS +Test 128 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_docn -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hafs_regional_docn -Checking test 126 hafs_regional_docn results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hafs_regional_docn +Checking test 129 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 359.776531 - 0: The maximum resident set size (KB) = 1236356 + 0: The total amount of wall time = 358.765516 + 0: The maximum resident set size (KB) = 1231484 -Test 126 hafs_regional_docn PASS +Test 129 hafs_regional_docn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_docn_oisst -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hafs_regional_docn_oisst -Checking test 127 hafs_regional_docn_oisst results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hafs_regional_docn_oisst +Checking test 130 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 361.097194 - 0: The maximum resident set size (KB) = 1216612 + 0: The total amount of wall time = 358.231735 + 0: The maximum resident set size (KB) = 1220640 -Test 127 hafs_regional_docn_oisst PASS +Test 130 hafs_regional_docn_oisst PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_datm_cdeps -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hafs_regional_datm_cdeps -Checking test 128 hafs_regional_datm_cdeps results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hafs_regional_datm_cdeps +Checking test 131 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 918.514684 - 0: The maximum resident set size (KB) = 1037496 + 0: The total amount of wall time = 919.519461 + 0: The maximum resident set size (KB) = 1044072 -Test 128 hafs_regional_datm_cdeps PASS +Test 131 hafs_regional_datm_cdeps PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/datm_cdeps_control_cfsr -Checking test 129 datm_cdeps_control_cfsr results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/datm_cdeps_control_cfsr +Checking test 132 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.370355 - 0: The maximum resident set size (KB) = 1080772 + 0: The total amount of wall time = 146.703601 + 0: The maximum resident set size (KB) = 1068416 -Test 129 datm_cdeps_control_cfsr PASS +Test 132 datm_cdeps_control_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/datm_cdeps_restart_cfsr -Checking test 130 datm_cdeps_restart_cfsr results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/datm_cdeps_restart_cfsr +Checking test 133 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 90.018507 - 0: The maximum resident set size (KB) = 1013860 + 0: The total amount of wall time = 92.511302 + 0: The maximum resident set size (KB) = 1017384 -Test 130 datm_cdeps_restart_cfsr PASS +Test 133 datm_cdeps_restart_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/datm_cdeps_control_gefs -Checking test 131 datm_cdeps_control_gefs results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/datm_cdeps_control_gefs +Checking test 134 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 143.784196 - 0: The maximum resident set size (KB) = 970248 + 0: The total amount of wall time = 142.947248 + 0: The maximum resident set size (KB) = 969332 -Test 131 datm_cdeps_control_gefs PASS +Test 134 datm_cdeps_control_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_iau_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/datm_cdeps_iau_gefs -Checking test 132 datm_cdeps_iau_gefs results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/datm_cdeps_iau_gefs +Checking test 135 datm_cdeps_iau_gefs 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.349590 - 0: The maximum resident set size (KB) = 968972 + 0: The total amount of wall time = 144.851071 + 0: The maximum resident set size (KB) = 963732 -Test 132 datm_cdeps_iau_gefs PASS +Test 135 datm_cdeps_iau_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_stochy_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/datm_cdeps_stochy_gefs -Checking test 133 datm_cdeps_stochy_gefs results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/datm_cdeps_stochy_gefs +Checking test 136 datm_cdeps_stochy_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 144.797839 - 0: The maximum resident set size (KB) = 963624 + 0: The total amount of wall time = 145.343009 + 0: The maximum resident set size (KB) = 977220 -Test 133 datm_cdeps_stochy_gefs PASS +Test 136 datm_cdeps_stochy_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_ciceC_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/datm_cdeps_ciceC_cfsr -Checking test 134 datm_cdeps_ciceC_cfsr results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/datm_cdeps_ciceC_cfsr +Checking test 137 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.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.575380 - 0: The maximum resident set size (KB) = 1075632 + 0: The total amount of wall time = 146.041708 + 0: The maximum resident set size (KB) = 1071324 -Test 134 datm_cdeps_ciceC_cfsr PASS +Test 137 datm_cdeps_ciceC_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_bulk_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/datm_cdeps_bulk_cfsr -Checking test 135 datm_cdeps_bulk_cfsr results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/datm_cdeps_bulk_cfsr +Checking test 138 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.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.726303 - 0: The maximum resident set size (KB) = 1061508 + 0: The total amount of wall time = 146.262322 + 0: The maximum resident set size (KB) = 1083988 -Test 135 datm_cdeps_bulk_cfsr PASS +Test 138 datm_cdeps_bulk_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_bulk_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/datm_cdeps_bulk_gefs -Checking test 136 datm_cdeps_bulk_gefs results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/datm_cdeps_bulk_gefs +Checking test 139 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 142.550023 - 0: The maximum resident set size (KB) = 948104 + 0: The total amount of wall time = 141.090101 + 0: The maximum resident set size (KB) = 965688 -Test 136 datm_cdeps_bulk_gefs PASS +Test 139 datm_cdeps_bulk_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_mx025_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/datm_cdeps_mx025_cfsr -Checking test 137 datm_cdeps_mx025_cfsr results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/datm_cdeps_mx025_cfsr +Checking test 140 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4147,15 +4295,15 @@ Checking test 137 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 444.375994 - 0: The maximum resident set size (KB) = 878808 + 0: The total amount of wall time = 432.472741 + 0: The maximum resident set size (KB) = 874264 -Test 137 datm_cdeps_mx025_cfsr PASS +Test 140 datm_cdeps_mx025_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_mx025_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/datm_cdeps_mx025_gefs -Checking test 138 datm_cdeps_mx025_gefs results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/datm_cdeps_mx025_gefs +Checking test 141 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4163,65 +4311,78 @@ Checking test 138 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 430.448361 - 0: The maximum resident set size (KB) = 929704 + 0: The total amount of wall time = 436.230573 + 0: The maximum resident set size (KB) = 928056 -Test 138 datm_cdeps_mx025_gefs PASS +Test 141 datm_cdeps_mx025_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/datm_cdeps_multiple_files_cfsr -Checking test 139 datm_cdeps_multiple_files_cfsr results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/datm_cdeps_multiple_files_cfsr +Checking test 142 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.329466 - 0: The maximum resident set size (KB) = 1060592 + 0: The total amount of wall time = 145.581055 + 0: The maximum resident set size (KB) = 1034120 -Test 139 datm_cdeps_multiple_files_cfsr PASS +Test 142 datm_cdeps_multiple_files_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/datm_cdeps_3072x1536_cfsr -Checking test 140 datm_cdeps_3072x1536_cfsr results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/datm_cdeps_3072x1536_cfsr +Checking test 143 datm_cdeps_3072x1536_cfsr 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 = 198.126337 - 0: The maximum resident set size (KB) = 2373544 + 0: The total amount of wall time = 196.141257 + 0: The maximum resident set size (KB) = 2375356 -Test 140 datm_cdeps_3072x1536_cfsr PASS +Test 143 datm_cdeps_3072x1536_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_gfs -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/datm_cdeps_gfs -Checking test 141 datm_cdeps_gfs results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/datm_cdeps_gfs +Checking test 144 datm_cdeps_gfs 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 = 200.017285 - 0: The maximum resident set size (KB) = 2358032 + 0: The total amount of wall time = 204.631005 + 0: The maximum resident set size (KB) = 2355072 -Test 141 datm_cdeps_gfs PASS +Test 144 datm_cdeps_gfs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_debug_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/datm_cdeps_debug_cfsr -Checking test 142 datm_cdeps_debug_cfsr results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/datm_cdeps_debug_cfsr +Checking test 145 datm_cdeps_debug_cfsr 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 = 444.604368 - 0: The maximum resident set size (KB) = 1002616 + 0: The total amount of wall time = 438.903723 + 0: The maximum resident set size (KB) = 1020112 + +Test 145 datm_cdeps_debug_cfsr PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr_faster +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/datm_cdeps_control_cfsr_faster +Checking test 146 datm_cdeps_control_cfsr_faster results .... + Comparing RESTART/20111002.000000.MOM.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.491675 + 0: The maximum resident set size (KB) = 1067368 -Test 142 datm_cdeps_debug_cfsr PASS +Test 146 datm_cdeps_control_cfsr_faster PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_lnd_gswp3 -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/datm_cdeps_lnd_gswp3 -Checking test 143 datm_cdeps_lnd_gswp3 results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/datm_cdeps_lnd_gswp3 +Checking test 147 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4229,15 +4390,15 @@ Checking test 143 datm_cdeps_lnd_gswp3 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 = 6.969370 - 0: The maximum resident set size (KB) = 264024 + 0: The total amount of wall time = 6.593781 + 0: The maximum resident set size (KB) = 255044 -Test 143 datm_cdeps_lnd_gswp3 PASS +Test 147 datm_cdeps_lnd_gswp3 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_lnd_gswp3 -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/datm_cdeps_lnd_gswp3_rst -Checking test 144 datm_cdeps_lnd_gswp3_rst results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/datm_cdeps_lnd_gswp3_rst +Checking test 148 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4245,15 +4406,15 @@ Checking test 144 datm_cdeps_lnd_gswp3_rst 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.896981 - 0: The maximum resident set size (KB) = 252352 + 0: The total amount of wall time = 12.709982 + 0: The maximum resident set size (KB) = 259332 -Test 144 datm_cdeps_lnd_gswp3_rst PASS +Test 148 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_atmlnd_sbs -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_p8_atmlnd_sbs -Checking test 145 control_p8_atmlnd_sbs results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_p8_atmlnd_sbs +Checking test 149 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -4337,15 +4498,15 @@ Checking test 145 control_p8_atmlnd_sbs 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 = 202.821515 - 0: The maximum resident set size (KB) = 1626008 + 0: The total amount of wall time = 204.149442 + 0: The maximum resident set size (KB) = 1617924 -Test 145 control_p8_atmlnd_sbs PASS +Test 149 control_p8_atmlnd_sbs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_atmwav -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_atmwav -Checking test 146 control_atmwav results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_atmwav +Checking test 150 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -4388,15 +4549,15 @@ Checking test 146 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 86.450844 - 0: The maximum resident set size (KB) = 659896 + 0: The total amount of wall time = 88.110104 + 0: The maximum resident set size (KB) = 634400 -Test 146 control_atmwav PASS +Test 150 control_atmwav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/atmaero_control_p8 -Checking test 147 atmaero_control_p8 results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/atmaero_control_p8 +Checking test 151 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4439,15 +4600,15 @@ Checking test 147 atmaero_control_p8 results .... Comparing 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.312887 - 0: The maximum resident set size (KB) = 2972256 + 0: The total amount of wall time = 227.338464 + 0: The maximum resident set size (KB) = 2977076 -Test 147 atmaero_control_p8 PASS +Test 151 atmaero_control_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8_rad -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/atmaero_control_p8_rad -Checking test 148 atmaero_control_p8_rad results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/atmaero_control_p8_rad +Checking test 152 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4490,15 +4651,15 @@ Checking test 148 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 280.343169 - 0: The maximum resident set size (KB) = 2972032 + 0: The total amount of wall time = 279.426392 + 0: The maximum resident set size (KB) = 3050152 -Test 148 atmaero_control_p8_rad PASS +Test 152 atmaero_control_p8_rad PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8_rad_micro -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/atmaero_control_p8_rad_micro -Checking test 149 atmaero_control_p8_rad_micro results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/atmaero_control_p8_rad_micro +Checking test 153 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4541,15 +4702,15 @@ Checking test 149 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 283.966022 - 0: The maximum resident set size (KB) = 3056532 + 0: The total amount of wall time = 283.711103 + 0: The maximum resident set size (KB) = 3058584 -Test 149 atmaero_control_p8_rad_micro PASS +Test 153 atmaero_control_p8_rad_micro PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_atmaq -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/regional_atmaq -Checking test 150 regional_atmaq results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/regional_atmaq +Checking test 154 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -4564,15 +4725,15 @@ Checking test 150 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 583.717317 - 0: The maximum resident set size (KB) = 1571008 + 0: The total amount of wall time = 580.980632 + 0: The maximum resident set size (KB) = 1571820 -Test 150 regional_atmaq PASS +Test 154 regional_atmaq PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_atmaq_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/regional_atmaq_debug -Checking test 151 regional_atmaq_debug results .... +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/regional_atmaq_debug +Checking test 155 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -4585,12 +4746,35 @@ Checking test 151 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1305.757210 - 0: The maximum resident set size (KB) = 1521408 + 0: The total amount of wall time = 1327.447188 + 0: The maximum resident set size (KB) = 1519296 + +Test 155 regional_atmaq_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_atmaq_faster +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/regional_atmaq_faster +Checking test 156 regional_atmaq_faster results .... + Comparing sfcf000.nc .........OK + Comparing sfcf003.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf003.nc .........OK + Comparing atmf006.nc .........OK + Comparing RESTART/20190801.180000.coupler.res .........OK + Comparing RESTART/20190801.180000.fv_core.res.nc .........OK + Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.phy_data.nc .........OK + Comparing RESTART/20190801.180000.sfc_data.nc .........OK + + 0: The total amount of wall time = 548.782339 + 0: The maximum resident set size (KB) = 1394676 -Test 151 regional_atmaq_debug PASS +Test 156 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Tue Feb 28 21:05:40 CST 2023 -Elapsed time: 01h:24m:16s. Have a nice day! +Sat Mar 4 15:36:31 CST 2023 +Elapsed time: 01h:18m:57s. Have a nice day! diff --git a/tests/RegressionTests_wcoss2.intel.log b/tests/RegressionTests_wcoss2.intel.log index bec6a768f3b..1adbe772155 100644 --- a/tests/RegressionTests_wcoss2.intel.log +++ b/tests/RegressionTests_wcoss2.intel.log @@ -1,31 +1,34 @@ -Fri Feb 24 14:53:45 UTC 2023 +Tue Mar 7 16:58:43 UTC 2023 Start Regression test -Compile 001 elapsed time 574 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 1136 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 533 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 537 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 005 elapsed time 491 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 487 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 1077 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 008 elapsed time 999 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 966 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 717 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 011 elapsed time 152 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 012 elapsed time 499 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 630 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 395 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 253 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 676 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 017 elapsed time 216 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 638 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 019 elapsed time 530 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 020 elapsed time 599 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 565 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 022 elapsed time 428 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8_mixedmode -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/cpld_control_p8_mixedmode +Compile 001 elapsed time 606 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 615 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 1059 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 590 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 005 elapsed time 1096 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 658 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 1599 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 1038 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 460 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 1390 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 791 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 1585 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 484 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 014 elapsed time 922 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 615 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 477 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 017 elapsed time 221 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 851 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 019 elapsed time 428 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 675 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 1064 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 022 elapsed time 929 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 447 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 024 elapsed time 214 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 025 elapsed time 515 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8_mixedmode +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -90,14 +93,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 348.506363 -The maximum resident set size (KB) = 2954236 +The total amount of wall time = 344.493806 +The maximum resident set size (KB) = 2954468 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/cpld_control_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/cpld_control_p8 Checking test 002 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -162,14 +165,14 @@ Checking test 002 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 392.872121 -The maximum resident set size (KB) = 2981468 +The total amount of wall time = 389.051981 +The maximum resident set size (KB) = 2983004 Test 002 cpld_control_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/cpld_restart_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/cpld_restart_p8 Checking test 003 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -222,14 +225,14 @@ Checking test 003 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 235.432198 -The maximum resident set size (KB) = 2869940 +The total amount of wall time = 232.514891 +The maximum resident set size (KB) = 2866428 Test 003 cpld_restart_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/cpld_2threads_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/cpld_2threads_p8 Checking test 004 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -282,14 +285,14 @@ Checking test 004 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 379.461646 -The maximum resident set size (KB) = 3284888 +The total amount of wall time = 376.846506 +The maximum resident set size (KB) = 3286084 Test 004 cpld_2threads_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/cpld_decomp_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/cpld_decomp_p8 Checking test 005 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -342,14 +345,14 @@ Checking test 005 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 387.510023 -The maximum resident set size (KB) = 2980316 +The total amount of wall time = 382.120558 +The maximum resident set size (KB) = 2977580 Test 005 cpld_decomp_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/cpld_mpi_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/cpld_mpi_p8 Checking test 006 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -402,14 +405,14 @@ Checking test 006 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 324.784566 -The maximum resident set size (KB) = 2911532 +The total amount of wall time = 322.449895 +The maximum resident set size (KB) = 2911612 Test 006 cpld_mpi_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_ciceC_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/cpld_control_ciceC_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_ciceC_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/cpld_control_ciceC_p8 Checking test 007 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -474,14 +477,14 @@ Checking test 007 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 391.874639 -The maximum resident set size (KB) = 2984608 +The total amount of wall time = 388.873476 +The maximum resident set size (KB) = 2983128 Test 007 cpld_control_ciceC_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_bmark_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/cpld_bmark_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_bmark_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/cpld_bmark_p8 Checking test 008 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -529,14 +532,14 @@ Checking test 008 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 943.164109 -The maximum resident set size (KB) = 3919324 +The total amount of wall time = 942.125104 +The maximum resident set size (KB) = 3918928 Test 008 cpld_bmark_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_bmark_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/cpld_restart_bmark_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_bmark_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/cpld_restart_bmark_p8 Checking test 009 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -584,14 +587,14 @@ Checking test 009 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 703.379559 -The maximum resident set size (KB) = 3885800 +The total amount of wall time = 643.651138 +The maximum resident set size (KB) = 3892296 Test 009 cpld_restart_bmark_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/cpld_control_noaero_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/cpld_control_noaero_p8 Checking test 010 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -655,14 +658,14 @@ Checking test 010 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 297.898075 -The maximum resident set size (KB) = 1583048 +The total amount of wall time = 284.669803 +The maximum resident set size (KB) = 1573776 Test 010 cpld_control_noaero_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/cpld_control_nowave_noaero_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c96_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/cpld_control_nowave_noaero_p8 Checking test 011 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -724,14 +727,14 @@ Checking test 011 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 309.473146 -The maximum resident set size (KB) = 1620988 +The total amount of wall time = 301.897780 +The maximum resident set size (KB) = 1632368 Test 011 cpld_control_nowave_noaero_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/cpld_control_noaero_p8_agrid +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_noaero_p8_agrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/cpld_control_noaero_p8_agrid Checking test 012 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -793,14 +796,14 @@ Checking test 012 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 320.712967 -The maximum resident set size (KB) = 1622088 +The total amount of wall time = 308.521694 +The maximum resident set size (KB) = 1617004 Test 012 cpld_control_noaero_p8_agrid PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/cpld_control_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/cpld_control_c48 Checking test 013 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -850,14 +853,14 @@ Checking test 013 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 436.185515 -The maximum resident set size (KB) = 2632260 +The total amount of wall time = 436.760277 +The maximum resident set size (KB) = 2634048 Test 013 cpld_control_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/cpld_warmstart_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/cpld_warmstart_c48 Checking test 014 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -907,14 +910,14 @@ Checking test 014 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 126.589749 -The maximum resident set size (KB) = 2649544 +The total amount of wall time = 125.172991 +The maximum resident set size (KB) = 2652480 Test 014 cpld_warmstart_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/cpld_restart_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/cpld_restart_c48 Checking test 015 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -964,15 +967,87 @@ Checking test 015 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 78.212273 -The maximum resident set size (KB) = 2067924 +The total amount of wall time = 73.721754 +The maximum resident set size (KB) = 2063804 Test 015 cpld_restart_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_CubedSphereGrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_CubedSphereGrid -Checking test 016 control_CubedSphereGrid results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/cpld_control_p8_faster +Checking test 016 cpld_control_p8_faster results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + +The total amount of wall time = 381.954110 +The maximum resident set size (KB) = 2978712 + +Test 016 cpld_control_p8_faster PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_CubedSphereGrid +Checking test 017 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -998,15 +1073,15 @@ Checking test 016 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 130.529446 -The maximum resident set size (KB) = 512936 +The total amount of wall time = 130.035575 +The maximum resident set size (KB) = 517264 -Test 016 control_CubedSphereGrid PASS +Test 017 control_CubedSphereGrid PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_latlon -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_latlon -Checking test 017 control_latlon results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_latlon +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_latlon +Checking test 018 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1016,15 +1091,15 @@ Checking test 017 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 134.230496 -The maximum resident set size (KB) = 516132 +The total amount of wall time = 133.075553 +The maximum resident set size (KB) = 516560 -Test 017 control_latlon PASS +Test 018 control_latlon PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_wrtGauss_netcdf_parallel -Checking test 018 control_wrtGauss_netcdf_parallel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_wrtGauss_netcdf_parallel +Checking test 019 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1034,15 +1109,15 @@ Checking test 018 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 137.025969 -The maximum resident set size (KB) = 519260 +The total amount of wall time = 134.497729 +The maximum resident set size (KB) = 517232 -Test 018 control_wrtGauss_netcdf_parallel PASS +Test 019 control_wrtGauss_netcdf_parallel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_c48 -Checking test 019 control_c48 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_c48 +Checking test 020 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1080,15 +1155,15 @@ Checking test 019 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 326.990542 -The maximum resident set size (KB) = 677220 +The total amount of wall time = 327.654653 +The maximum resident set size (KB) = 674052 -Test 019 control_c48 PASS +Test 020 control_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_c192 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_c192 -Checking test 020 control_c192 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c192 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_c192 +Checking test 021 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1098,15 +1173,15 @@ Checking test 020 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 532.978219 -The maximum resident set size (KB) = 615940 +The total amount of wall time = 528.704729 +The maximum resident set size (KB) = 614260 -Test 020 control_c192 PASS +Test 021 control_c192 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_c384 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_c384 -Checking test 021 control_c384 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c384 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_c384 +Checking test 022 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1116,15 +1191,15 @@ Checking test 021 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 580.567241 -The maximum resident set size (KB) = 909716 +The total amount of wall time = 573.118698 +The maximum resident set size (KB) = 910072 -Test 021 control_c384 PASS +Test 022 control_c384 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_c384gdas -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_c384gdas -Checking test 022 control_c384gdas results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c384gdas +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_c384gdas +Checking test 023 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -1166,15 +1241,15 @@ Checking test 022 control_c384gdas results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 513.394311 -The maximum resident set size (KB) = 1042680 +The total amount of wall time = 505.188199 +The maximum resident set size (KB) = 1045880 -Test 022 control_c384gdas PASS +Test 023 control_c384gdas PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_stochy -Checking test 023 control_stochy results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_stochy +Checking test 024 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1184,29 +1259,29 @@ Checking test 023 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 90.938998 -The maximum resident set size (KB) = 520788 +The total amount of wall time = 88.536342 +The maximum resident set size (KB) = 519828 -Test 023 control_stochy PASS +Test 024 control_stochy PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_stochy_restart -Checking test 024 control_stochy_restart results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_stochy_restart +Checking test 025 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 48.848325 -The maximum resident set size (KB) = 291324 +The total amount of wall time = 52.801461 +The maximum resident set size (KB) = 293872 -Test 024 control_stochy_restart PASS +Test 025 control_stochy_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_lndp -Checking test 025 control_lndp results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_lndp +Checking test 026 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1216,15 +1291,15 @@ Checking test 025 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 84.908402 -The maximum resident set size (KB) = 519324 +The total amount of wall time = 82.969701 +The maximum resident set size (KB) = 519372 -Test 025 control_lndp PASS +Test 026 control_lndp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_iovr4 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_iovr4 -Checking test 026 control_iovr4 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_iovr4 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_iovr4 +Checking test 027 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1238,15 +1313,15 @@ Checking test 026 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 138.075287 -The maximum resident set size (KB) = 514440 +The total amount of wall time = 136.356600 +The maximum resident set size (KB) = 516404 -Test 026 control_iovr4 PASS +Test 027 control_iovr4 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_iovr5 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_iovr5 -Checking test 027 control_iovr5 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_iovr5 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_iovr5 +Checking test 028 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1260,15 +1335,15 @@ Checking test 027 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 136.297314 -The maximum resident set size (KB) = 520644 +The total amount of wall time = 137.720579 +The maximum resident set size (KB) = 518996 -Test 027 control_iovr5 PASS +Test 028 control_iovr5 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_p8 -Checking test 028 control_p8 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_p8 +Checking test 029 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1314,15 +1389,15 @@ Checking test 028 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 188.423322 -The maximum resident set size (KB) = 1486656 +The total amount of wall time = 181.941346 +The maximum resident set size (KB) = 1492792 -Test 028 control_p8 PASS +Test 029 control_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_p8_lndp -Checking test 029 control_p8_lndp results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_p8_lndp +Checking test 030 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1340,15 +1415,15 @@ Checking test 029 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 331.484570 -The maximum resident set size (KB) = 1484272 +The total amount of wall time = 322.616891 +The maximum resident set size (KB) = 1487572 -Test 029 control_p8_lndp PASS +Test 030 control_p8_lndp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_restart_p8 -Checking test 030 control_restart_p8 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_restart_p8 +Checking test 031 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1386,15 +1461,15 @@ Checking test 030 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 101.385604 -The maximum resident set size (KB) = 657240 +The total amount of wall time = 101.802174 +The maximum resident set size (KB) = 659428 -Test 030 control_restart_p8 PASS +Test 031 control_restart_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_decomp_p8 -Checking test 031 control_decomp_p8 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_decomp_p8 +Checking test 032 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1436,15 +1511,15 @@ Checking test 031 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 189.461883 -The maximum resident set size (KB) = 1481952 +The total amount of wall time = 183.642698 +The maximum resident set size (KB) = 1483672 -Test 031 control_decomp_p8 PASS +Test 032 control_decomp_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_2threads_p8 -Checking test 032 control_2threads_p8 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_2threads_p8 +Checking test 033 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1486,15 +1561,15 @@ Checking test 032 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 166.692938 -The maximum resident set size (KB) = 1568508 +The total amount of wall time = 163.713859 +The maximum resident set size (KB) = 1575572 -Test 032 control_2threads_p8 PASS +Test 033 control_2threads_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8_rrtmgp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_p8_rrtmgp -Checking test 033 control_p8_rrtmgp results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_rrtmgp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_p8_rrtmgp +Checking test 034 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1540,15 +1615,15 @@ Checking test 033 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 239.195356 -The maximum resident set size (KB) = 1548980 +The total amount of wall time = 237.705784 +The maximum resident set size (KB) = 1556808 -Test 033 control_p8_rrtmgp PASS +Test 034 control_p8_rrtmgp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/merra2_thompson -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/merra2_thompson -Checking test 034 merra2_thompson results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/merra2_thompson +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/merra2_thompson +Checking test 035 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1594,15 +1669,15 @@ Checking test 034 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 213.468377 -The maximum resident set size (KB) = 1496516 +The total amount of wall time = 207.851683 +The maximum resident set size (KB) = 1493924 -Test 034 merra2_thompson PASS +Test 035 merra2_thompson PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/regional_control -Checking test 035 regional_control results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/regional_control +Checking test 036 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1612,29 +1687,29 @@ Checking test 035 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 292.994955 -The maximum resident set size (KB) = 655688 +The total amount of wall time = 290.564240 +The maximum resident set size (KB) = 652280 -Test 035 regional_control PASS +Test 036 regional_control PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/regional_restart -Checking test 036 regional_restart results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/regional_restart +Checking test 037 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 159.675499 +The total amount of wall time = 158.908445 The maximum resident set size (KB) = 652420 -Test 036 regional_restart PASS +Test 037 regional_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/regional_decomp -Checking test 037 regional_decomp results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/regional_decomp +Checking test 038 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1644,15 +1719,15 @@ Checking test 037 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 309.419803 -The maximum resident set size (KB) = 654992 +The total amount of wall time = 308.115452 +The maximum resident set size (KB) = 655204 -Test 037 regional_decomp PASS +Test 038 regional_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/regional_2threads -Checking test 038 regional_2threads results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/regional_2threads +Checking test 039 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1662,44 +1737,44 @@ Checking test 038 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 187.153408 -The maximum resident set size (KB) = 699912 +The total amount of wall time = 180.337232 +The maximum resident set size (KB) = 695496 -Test 038 regional_2threads PASS +Test 039 regional_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_noquilt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/regional_noquilt -Checking test 039 regional_noquilt results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_noquilt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/regional_noquilt +Checking test 040 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 318.328456 -The maximum resident set size (KB) = 644840 +The total amount of wall time = 315.008684 +The maximum resident set size (KB) = 647952 -Test 039 regional_noquilt PASS +Test 040 regional_noquilt PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/regional_netcdf_parallel -Checking test 040 regional_netcdf_parallel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/regional_netcdf_parallel +Checking test 041 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK -The total amount of wall time = 289.296839 -The maximum resident set size (KB) = 651988 +The total amount of wall time = 289.439342 +The maximum resident set size (KB) = 653992 -Test 040 regional_netcdf_parallel PASS +Test 041 regional_netcdf_parallel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/regional_2dwrtdecomp -Checking test 041 regional_2dwrtdecomp results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/regional_2dwrtdecomp +Checking test 042 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1709,15 +1784,15 @@ Checking test 041 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 294.026329 -The maximum resident set size (KB) = 656212 +The total amount of wall time = 292.758974 +The maximum resident set size (KB) = 651860 -Test 041 regional_2dwrtdecomp PASS +Test 042 regional_2dwrtdecomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/fv3_regional_wofs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/regional_wofs -Checking test 042 regional_wofs results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/fv3_regional_wofs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/regional_wofs +Checking test 043 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1727,15 +1802,15 @@ Checking test 042 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 365.235760 -The maximum resident set size (KB) = 342208 +The total amount of wall time = 363.998814 +The maximum resident set size (KB) = 342000 -Test 042 regional_wofs PASS +Test 043 regional_wofs PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rap_control -Checking test 043 rap_control results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rap_control +Checking test 044 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1781,15 +1856,15 @@ Checking test 043 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 420.484575 -The maximum resident set size (KB) = 896368 +The total amount of wall time = 420.364243 +The maximum resident set size (KB) = 894456 -Test 043 rap_control PASS +Test 044 rap_control PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/regional_spp_sppt_shum_skeb -Checking test 044 regional_spp_sppt_shum_skeb results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_spp_sppt_shum_skeb +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/regional_spp_sppt_shum_skeb +Checking test 045 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -1799,15 +1874,15 @@ Checking test 044 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 288.959342 -The maximum resident set size (KB) = 986960 +The total amount of wall time = 288.400367 +The maximum resident set size (KB) = 985844 -Test 044 regional_spp_sppt_shum_skeb PASS +Test 045 regional_spp_sppt_shum_skeb PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rap_decomp -Checking test 045 rap_decomp results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rap_decomp +Checking test 046 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1853,15 +1928,15 @@ Checking test 045 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 435.383610 -The maximum resident set size (KB) = 892212 +The total amount of wall time = 434.464671 +The maximum resident set size (KB) = 892812 -Test 045 rap_decomp PASS +Test 046 rap_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rap_2threads -Checking test 046 rap_2threads results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rap_2threads +Checking test 047 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1907,15 +1982,15 @@ Checking test 046 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 395.051439 -The maximum resident set size (KB) = 965452 +The total amount of wall time = 393.490180 +The maximum resident set size (KB) = 964688 -Test 046 rap_2threads PASS +Test 047 rap_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rap_restart -Checking test 047 rap_restart results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rap_restart +Checking test 048 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1953,15 +2028,15 @@ Checking test 047 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 214.437983 -The maximum resident set size (KB) = 645516 +The total amount of wall time = 214.538917 +The maximum resident set size (KB) = 647060 -Test 047 rap_restart PASS +Test 048 rap_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rap_sfcdiff -Checking test 048 rap_sfcdiff results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rap_sfcdiff +Checking test 049 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2007,15 +2082,15 @@ Checking test 048 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 419.217717 -The maximum resident set size (KB) = 892588 +The total amount of wall time = 427.889917 +The maximum resident set size (KB) = 893404 -Test 048 rap_sfcdiff PASS +Test 049 rap_sfcdiff PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rap_sfcdiff_decomp -Checking test 049 rap_sfcdiff_decomp results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rap_sfcdiff_decomp +Checking test 050 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2061,15 +2136,15 @@ Checking test 049 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 435.007269 -The maximum resident set size (KB) = 892908 +The total amount of wall time = 433.213806 +The maximum resident set size (KB) = 891268 -Test 049 rap_sfcdiff_decomp PASS +Test 050 rap_sfcdiff_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rap_sfcdiff_restart -Checking test 050 rap_sfcdiff_restart results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rap_sfcdiff_restart +Checking test 051 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2107,15 +2182,15 @@ Checking test 050 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 311.096038 -The maximum resident set size (KB) = 642616 +The total amount of wall time = 309.437079 +The maximum resident set size (KB) = 642564 -Test 050 rap_sfcdiff_restart PASS +Test 051 rap_sfcdiff_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/hrrr_control -Checking test 051 hrrr_control results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/hrrr_control +Checking test 052 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2161,15 +2236,15 @@ Checking test 051 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 404.180407 -The maximum resident set size (KB) = 893420 +The total amount of wall time = 400.568029 +The maximum resident set size (KB) = 895120 -Test 051 hrrr_control PASS +Test 052 hrrr_control PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/hrrr_control_decomp -Checking test 052 hrrr_control_decomp results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/hrrr_control_decomp +Checking test 053 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2215,15 +2290,15 @@ Checking test 052 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 418.260633 -The maximum resident set size (KB) = 887852 +The total amount of wall time = 414.941659 +The maximum resident set size (KB) = 891584 -Test 052 hrrr_control_decomp PASS +Test 053 hrrr_control_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/hrrr_control_2threads -Checking test 053 hrrr_control_2threads results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/hrrr_control_2threads +Checking test 054 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2269,15 +2344,15 @@ Checking test 053 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 372.350461 -The maximum resident set size (KB) = 959248 +The total amount of wall time = 371.017435 +The maximum resident set size (KB) = 960372 -Test 053 hrrr_control_2threads PASS +Test 054 hrrr_control_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/hrrr_control_restart -Checking test 054 hrrr_control_restart results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/hrrr_control_restart +Checking test 055 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2315,15 +2390,15 @@ Checking test 054 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 299.641003 -The maximum resident set size (KB) = 642844 +The total amount of wall time = 298.043580 +The maximum resident set size (KB) = 645364 -Test 054 hrrr_control_restart PASS +Test 055 hrrr_control_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_v1beta -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rrfs_v1beta -Checking test 055 rrfs_v1beta results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1beta +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rrfs_v1beta +Checking test 056 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2369,15 +2444,15 @@ Checking test 055 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 411.737464 -The maximum resident set size (KB) = 890292 +The total amount of wall time = 412.981496 +The maximum resident set size (KB) = 888104 -Test 055 rrfs_v1beta PASS +Test 056 rrfs_v1beta PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_v1nssl -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rrfs_v1nssl -Checking test 056 rrfs_v1nssl results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1nssl +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rrfs_v1nssl +Checking test 057 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2391,15 +2466,15 @@ Checking test 056 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 475.758958 -The maximum resident set size (KB) = 576576 +The total amount of wall time = 474.330469 +The maximum resident set size (KB) = 575880 -Test 056 rrfs_v1nssl PASS +Test 057 rrfs_v1nssl PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rrfs_v1nssl_nohailnoccn -Checking test 057 rrfs_v1nssl_nohailnoccn results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rrfs_v1nssl_nohailnoccn +Checking test 058 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2413,15 +2488,15 @@ Checking test 057 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 464.796584 -The maximum resident set size (KB) = 567084 +The total amount of wall time = 463.231017 +The maximum resident set size (KB) = 569016 -Test 057 rrfs_v1nssl_nohailnoccn PASS +Test 058 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rrfs_conus13km_hrrr_warm -Checking test 058 rrfs_conus13km_hrrr_warm results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rrfs_conus13km_hrrr_warm +Checking test 059 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2429,15 +2504,15 @@ Checking test 058 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 117.457498 -The maximum resident set size (KB) = 759316 +The total amount of wall time = 118.022148 +The maximum resident set size (KB) = 761720 -Test 058 rrfs_conus13km_hrrr_warm PASS +Test 059 rrfs_conus13km_hrrr_warm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rrfs_smoke_conus13km_hrrr_warm -Checking test 059 rrfs_smoke_conus13km_hrrr_warm results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rrfs_smoke_conus13km_hrrr_warm +Checking test 060 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2445,15 +2520,15 @@ Checking test 059 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 129.403030 -The maximum resident set size (KB) = 777960 +The total amount of wall time = 128.626946 +The maximum resident set size (KB) = 777112 -Test 059 rrfs_smoke_conus13km_hrrr_warm PASS +Test 060 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rrfs_conus13km_radar_tten_warm -Checking test 060 rrfs_conus13km_radar_tten_warm results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rrfs_conus13km_radar_tten_warm +Checking test 061 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2461,15 +2536,15 @@ Checking test 060 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 116.553249 -The maximum resident set size (KB) = 767732 +The total amount of wall time = 120.071280 +The maximum resident set size (KB) = 767260 -Test 060 rrfs_conus13km_radar_tten_warm PASS +Test 061 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rrfs_conus13km_hrrr_warm_2threads -Checking test 061 rrfs_conus13km_hrrr_warm_2threads results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rrfs_conus13km_hrrr_warm_2threads +Checking test 062 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2477,15 +2552,15 @@ Checking test 061 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 85.876096 -The maximum resident set size (KB) = 766924 +The total amount of wall time = 86.619652 +The maximum resident set size (KB) = 758488 -Test 061 rrfs_conus13km_hrrr_warm_2threads PASS +Test 062 rrfs_conus13km_hrrr_warm_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rrfs_conus13km_radar_tten_warm_2threads -Checking test 062 rrfs_conus13km_radar_tten_warm_2threads results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rrfs_conus13km_radar_tten_warm_2threads +Checking test 063 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2493,15 +2568,15 @@ Checking test 062 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 87.324215 -The maximum resident set size (KB) = 762824 +The total amount of wall time = 88.355956 +The maximum resident set size (KB) = 767024 -Test 062 rrfs_conus13km_radar_tten_warm_2threads PASS +Test 063 rrfs_conus13km_radar_tten_warm_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_csawmg -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_csawmg -Checking test 063 control_csawmg results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmg +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_csawmg +Checking test 064 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2511,15 +2586,15 @@ Checking test 063 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 350.054557 -The maximum resident set size (KB) = 587480 +The total amount of wall time = 348.371795 +The maximum resident set size (KB) = 589876 -Test 063 control_csawmg PASS +Test 064 control_csawmg PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_csawmgt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_csawmgt -Checking test 064 control_csawmgt results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmgt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_csawmgt +Checking test 065 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2529,15 +2604,15 @@ Checking test 064 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 349.327890 -The maximum resident set size (KB) = 586884 +The total amount of wall time = 345.181937 +The maximum resident set size (KB) = 589752 -Test 064 control_csawmgt PASS +Test 065 control_csawmgt PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_ras -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_ras -Checking test 065 control_ras results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_ras +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_ras +Checking test 066 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2547,55 +2622,127 @@ Checking test 065 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 181.673363 -The maximum resident set size (KB) = 551104 +The total amount of wall time = 180.385662 +The maximum resident set size (KB) = 550952 -Test 065 control_ras PASS +Test 066 control_ras PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_wam -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_wam -Checking test 066 control_wam results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wam +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_wam +Checking test 067 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 117.958047 -The maximum resident set size (KB) = 273516 +The total amount of wall time = 118.057277 +The maximum resident set size (KB) = 271968 -Test 066 control_wam PASS +Test 067 control_wam PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rrfs_conus13km_hrrr_warm_debug -Checking test 067 rrfs_conus13km_hrrr_warm_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_p8_faster +Checking test 068 control_p8_faster results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 189.137979 +The maximum resident set size (KB) = 1486568 + +Test 068 control_p8_faster PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/regional_control_faster +Checking test 069 regional_control_faster results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK + +The total amount of wall time = 284.982353 +The maximum resident set size (KB) = 650192 + +Test 069 regional_control_faster PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rrfs_conus13km_hrrr_warm_debug +Checking test 070 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 784.787489 -The maximum resident set size (KB) = 796852 +The total amount of wall time = 782.255786 +The maximum resident set size (KB) = 800316 -Test 067 rrfs_conus13km_hrrr_warm_debug PASS +Test 070 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rrfs_conus13km_radar_tten_warm_debug -Checking test 068 rrfs_conus13km_radar_tten_warm_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rrfs_conus13km_radar_tten_warm_debug +Checking test 071 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 783.028696 -The maximum resident set size (KB) = 798032 +The total amount of wall time = 783.568167 +The maximum resident set size (KB) = 797596 -Test 068 rrfs_conus13km_radar_tten_warm_debug PASS +Test 071 rrfs_conus13km_radar_tten_warm_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_CubedSphereGrid_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_CubedSphereGrid_debug -Checking test 069 control_CubedSphereGrid_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_CubedSphereGrid_debug +Checking test 072 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -2621,335 +2768,335 @@ Checking test 069 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 170.970093 -The maximum resident set size (KB) = 680644 +The total amount of wall time = 171.142521 +The maximum resident set size (KB) = 678788 -Test 069 control_CubedSphereGrid_debug PASS +Test 072 control_CubedSphereGrid_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_wrtGauss_netcdf_parallel_debug -Checking test 070 control_wrtGauss_netcdf_parallel_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_wrtGauss_netcdf_parallel_debug +Checking test 073 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 161.375564 -The maximum resident set size (KB) = 679464 +The total amount of wall time = 160.519596 +The maximum resident set size (KB) = 684092 -Test 070 control_wrtGauss_netcdf_parallel_debug PASS +Test 073 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_stochy_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_stochy_debug -Checking test 071 control_stochy_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_stochy_debug +Checking test 074 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 182.391657 -The maximum resident set size (KB) = 686120 +The total amount of wall time = 181.769784 +The maximum resident set size (KB) = 687980 -Test 071 control_stochy_debug PASS +Test 074 control_stochy_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_lndp_debug -Checking test 072 control_lndp_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_lndp_debug +Checking test 075 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 164.373352 -The maximum resident set size (KB) = 684384 +The total amount of wall time = 162.555719 +The maximum resident set size (KB) = 686012 -Test 072 control_lndp_debug PASS +Test 075 control_lndp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_csawmg_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_csawmg_debug -Checking test 073 control_csawmg_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmg_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_csawmg_debug +Checking test 076 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 262.027226 -The maximum resident set size (KB) = 724676 +The total amount of wall time = 260.530499 +The maximum resident set size (KB) = 721420 -Test 073 control_csawmg_debug PASS +Test 076 control_csawmg_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_csawmgt_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_csawmgt_debug -Checking test 074 control_csawmgt_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmgt_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_csawmgt_debug +Checking test 077 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 255.726316 -The maximum resident set size (KB) = 723156 +The total amount of wall time = 256.681782 +The maximum resident set size (KB) = 724012 -Test 074 control_csawmgt_debug PASS +Test 077 control_csawmgt_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_ras_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_ras_debug -Checking test 075 control_ras_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_ras_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_ras_debug +Checking test 078 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 167.090916 -The maximum resident set size (KB) = 690700 +The total amount of wall time = 164.151230 +The maximum resident set size (KB) = 697580 -Test 075 control_ras_debug PASS +Test 078 control_ras_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_diag_debug -Checking test 076 control_diag_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_diag_debug +Checking test 079 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 169.774202 -The maximum resident set size (KB) = 739948 +The total amount of wall time = 167.509028 +The maximum resident set size (KB) = 741736 -Test 076 control_diag_debug PASS +Test 079 control_diag_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_debug_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_debug_p8 -Checking test 077 control_debug_p8 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_debug_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_debug_p8 +Checking test 080 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 191.206275 -The maximum resident set size (KB) = 1510292 +The total amount of wall time = 189.384891 +The maximum resident set size (KB) = 1510084 -Test 077 control_debug_p8 PASS +Test 080 control_debug_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/regional_debug -Checking test 078 regional_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/regional_debug +Checking test 081 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1053.375686 -The maximum resident set size (KB) = 678144 +The total amount of wall time = 1055.418814 +The maximum resident set size (KB) = 677356 -Test 078 regional_debug PASS +Test 081 regional_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rap_control_debug -Checking test 079 rap_control_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rap_control_debug +Checking test 082 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 302.571799 -The maximum resident set size (KB) = 1057536 +The total amount of wall time = 301.941578 +The maximum resident set size (KB) = 1056200 -Test 079 rap_control_debug PASS +Test 082 rap_control_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/hrrr_control_debug -Checking test 080 hrrr_control_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/hrrr_control_debug +Checking test 083 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 294.921620 -The maximum resident set size (KB) = 1051880 +The total amount of wall time = 296.086555 +The maximum resident set size (KB) = 1055588 -Test 080 hrrr_control_debug PASS +Test 083 hrrr_control_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rap_unified_drag_suite_debug -Checking test 081 rap_unified_drag_suite_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rap_unified_drag_suite_debug +Checking test 084 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 301.486376 -The maximum resident set size (KB) = 1056444 +The total amount of wall time = 302.236884 +The maximum resident set size (KB) = 1059528 -Test 081 rap_unified_drag_suite_debug PASS +Test 084 rap_unified_drag_suite_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rap_diag_debug -Checking test 082 rap_diag_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rap_diag_debug +Checking test 085 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 314.629848 -The maximum resident set size (KB) = 1141376 +The total amount of wall time = 313.123139 +The maximum resident set size (KB) = 1139616 -Test 082 rap_diag_debug PASS +Test 085 rap_diag_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rap_cires_ugwp_debug -Checking test 083 rap_cires_ugwp_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rap_cires_ugwp_debug +Checking test 086 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 309.613853 -The maximum resident set size (KB) = 1055852 +The total amount of wall time = 308.781700 +The maximum resident set size (KB) = 1052492 -Test 083 rap_cires_ugwp_debug PASS +Test 086 rap_cires_ugwp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rap_unified_ugwp_debug -Checking test 084 rap_unified_ugwp_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rap_unified_ugwp_debug +Checking test 087 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 308.185712 -The maximum resident set size (KB) = 1060732 +The total amount of wall time = 308.069396 +The maximum resident set size (KB) = 1055888 -Test 084 rap_unified_ugwp_debug PASS +Test 087 rap_unified_ugwp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rap_lndp_debug -Checking test 085 rap_lndp_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rap_lndp_debug +Checking test 088 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 304.715454 -The maximum resident set size (KB) = 1057248 +The total amount of wall time = 303.803065 +The maximum resident set size (KB) = 1059724 -Test 085 rap_lndp_debug PASS +Test 088 rap_lndp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_flake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rap_flake_debug -Checking test 086 rap_flake_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_flake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rap_flake_debug +Checking test 089 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 303.008234 -The maximum resident set size (KB) = 1057344 +The total amount of wall time = 300.939274 +The maximum resident set size (KB) = 1057580 -Test 086 rap_flake_debug PASS +Test 089 rap_flake_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_progcld_thompson_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rap_progcld_thompson_debug -Checking test 087 rap_progcld_thompson_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_progcld_thompson_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rap_progcld_thompson_debug +Checking test 090 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 303.368129 -The maximum resident set size (KB) = 1056288 +The total amount of wall time = 301.684827 +The maximum resident set size (KB) = 1057380 -Test 087 rap_progcld_thompson_debug PASS +Test 090 rap_progcld_thompson_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_noah_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rap_noah_debug -Checking test 088 rap_noah_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_noah_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rap_noah_debug +Checking test 091 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.087220 -The maximum resident set size (KB) = 1056292 +The total amount of wall time = 295.332259 +The maximum resident set size (KB) = 1056836 -Test 088 rap_noah_debug PASS +Test 091 rap_noah_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_sfcdiff_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rap_sfcdiff_debug -Checking test 089 rap_sfcdiff_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rap_sfcdiff_debug +Checking test 092 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 301.636650 -The maximum resident set size (KB) = 1059312 +The total amount of wall time = 301.621839 +The maximum resident set size (KB) = 1054244 -Test 089 rap_sfcdiff_debug PASS +Test 092 rap_sfcdiff_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 090 rap_noah_sfcdiff_cires_ugwp_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 093 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 494.269892 -The maximum resident set size (KB) = 1054496 +The total amount of wall time = 493.509148 +The maximum resident set size (KB) = 1055260 -Test 090 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 093 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_v1beta_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rrfs_v1beta_debug -Checking test 091 rrfs_v1beta_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1beta_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rrfs_v1beta_debug +Checking test 094 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.933987 -The maximum resident set size (KB) = 1055020 +The total amount of wall time = 296.772419 +The maximum resident set size (KB) = 1053728 -Test 091 rrfs_v1beta_debug PASS +Test 094 rrfs_v1beta_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_wam_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_wam_debug -Checking test 092 control_wam_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wam_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_wam_debug +Checking test 095 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 296.890737 -The maximum resident set size (KB) = 305324 +The total amount of wall time = 296.648035 +The maximum resident set size (KB) = 304064 -Test 092 control_wam_debug PASS +Test 095 control_wam_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/regional_spp_sppt_shum_skeb_dyn32_phy32 -Checking test 093 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 096 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -2959,15 +3106,15 @@ Checking test 093 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 269.696854 -The maximum resident set size (KB) = 879024 +The total amount of wall time = 271.910449 +The maximum resident set size (KB) = 878996 -Test 093 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS +Test 096 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rap_control_dyn32_phy32 -Checking test 094 rap_control_dyn32_phy32 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rap_control_dyn32_phy32 +Checking test 097 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3013,15 +3160,15 @@ Checking test 094 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 344.474135 -The maximum resident set size (KB) = 778208 +The total amount of wall time = 342.787715 +The maximum resident set size (KB) = 781324 -Test 094 rap_control_dyn32_phy32 PASS +Test 097 rap_control_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/hrrr_control_dyn32_phy32 -Checking test 095 hrrr_control_dyn32_phy32 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/hrrr_control_dyn32_phy32 +Checking test 098 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3067,15 +3214,15 @@ Checking test 095 hrrr_control_dyn32_phy32 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 = 184.630580 -The maximum resident set size (KB) = 773920 +The total amount of wall time = 183.626331 +The maximum resident set size (KB) = 771428 -Test 095 hrrr_control_dyn32_phy32 PASS +Test 098 hrrr_control_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rap_2threads_dyn32_phy32 -Checking test 096 rap_2threads_dyn32_phy32 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rap_2threads_dyn32_phy32 +Checking test 099 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3121,15 +3268,15 @@ Checking test 096 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 325.616808 -The maximum resident set size (KB) = 830220 +The total amount of wall time = 320.271341 +The maximum resident set size (KB) = 828460 -Test 096 rap_2threads_dyn32_phy32 PASS +Test 099 rap_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/hrrr_control_2threads_dyn32_phy32 -Checking test 097 hrrr_control_2threads_dyn32_phy32 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/hrrr_control_2threads_dyn32_phy32 +Checking test 100 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3175,15 +3322,15 @@ Checking test 097 hrrr_control_2threads_dyn32_phy32 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 = 175.138740 -The maximum resident set size (KB) = 831380 +The total amount of wall time = 173.945000 +The maximum resident set size (KB) = 828552 -Test 097 hrrr_control_2threads_dyn32_phy32 PASS +Test 100 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/hrrr_control_decomp_dyn32_phy32 -Checking test 098 hrrr_control_decomp_dyn32_phy32 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/hrrr_control_decomp_dyn32_phy32 +Checking test 101 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3229,15 +3376,15 @@ Checking test 098 hrrr_control_decomp_dyn32_phy32 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 = 191.429567 -The maximum resident set size (KB) = 771384 +The total amount of wall time = 193.393425 +The maximum resident set size (KB) = 773788 -Test 098 hrrr_control_decomp_dyn32_phy32 PASS +Test 101 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rap_restart_dyn32_phy32 -Checking test 099 rap_restart_dyn32_phy32 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rap_restart_dyn32_phy32 +Checking test 102 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3275,15 +3422,15 @@ Checking test 099 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 258.024909 -The maximum resident set size (KB) = 612140 +The total amount of wall time = 255.490066 +The maximum resident set size (KB) = 612200 -Test 099 rap_restart_dyn32_phy32 PASS +Test 102 rap_restart_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/hrrr_control_restart_dyn32_phy32 -Checking test 100 hrrr_control_restart_dyn32_phy32 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/hrrr_control_restart_dyn32_phy32 +Checking test 103 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3321,15 +3468,15 @@ Checking test 100 hrrr_control_restart_dyn32_phy32 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 = 98.404595 -The maximum resident set size (KB) = 608280 +The total amount of wall time = 94.986389 +The maximum resident set size (KB) = 606332 -Test 100 hrrr_control_restart_dyn32_phy32 PASS +Test 103 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rap_control_dyn64_phy32 -Checking test 101 rap_control_dyn64_phy32 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rap_control_dyn64_phy32 +Checking test 104 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3375,82 +3522,82 @@ Checking test 101 rap_control_dyn64_phy32 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 = 233.106715 -The maximum resident set size (KB) = 798256 +The total amount of wall time = 231.532348 +The maximum resident set size (KB) = 798772 -Test 101 rap_control_dyn64_phy32 PASS +Test 104 rap_control_dyn64_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rap_control_debug_dyn32_phy32 -Checking test 102 rap_control_debug_dyn32_phy32 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rap_control_debug_dyn32_phy32 +Checking test 105 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 295.229051 -The maximum resident set size (KB) = 941620 +The total amount of wall time = 293.809453 +The maximum resident set size (KB) = 945868 -Test 102 rap_control_debug_dyn32_phy32 PASS +Test 105 rap_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/hrrr_control_debug_dyn32_phy32 -Checking test 103 hrrr_control_debug_dyn32_phy32 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/hrrr_control_debug_dyn32_phy32 +Checking test 106 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 291.748935 -The maximum resident set size (KB) = 940536 +The total amount of wall time = 289.092371 +The maximum resident set size (KB) = 938704 -Test 103 hrrr_control_debug_dyn32_phy32 PASS +Test 106 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rap_control_dyn64_phy32_debug -Checking test 104 rap_control_dyn64_phy32_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rap_control_dyn64_phy32_debug +Checking test 107 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 299.912682 -The maximum resident set size (KB) = 961236 +The total amount of wall time = 296.881966 +The maximum resident set size (KB) = 955732 -Test 104 rap_control_dyn64_phy32_debug PASS +Test 107 rap_control_dyn64_phy32_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/hafs_regional_atm -Checking test 105 hafs_regional_atm results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/hafs_regional_atm +Checking test 108 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 268.830181 -The maximum resident set size (KB) = 824360 +The total amount of wall time = 271.771253 +The maximum resident set size (KB) = 822924 -Test 105 hafs_regional_atm PASS +Test 108 hafs_regional_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/hafs_regional_atm_thompson_gfdlsf -Checking test 106 hafs_regional_atm_thompson_gfdlsf results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/hafs_regional_atm_thompson_gfdlsf +Checking test 109 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 356.697929 -The maximum resident set size (KB) = 1181624 +The total amount of wall time = 325.844347 +The maximum resident set size (KB) = 1183584 -Test 106 hafs_regional_atm_thompson_gfdlsf PASS +Test 109 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/hafs_regional_atm_ocn -Checking test 107 hafs_regional_atm_ocn results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/hafs_regional_atm_ocn +Checking test 110 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -3458,15 +3605,15 @@ Checking test 107 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 402.005182 -The maximum resident set size (KB) = 853572 +The total amount of wall time = 391.068462 +The maximum resident set size (KB) = 853692 -Test 107 hafs_regional_atm_ocn PASS +Test 110 hafs_regional_atm_ocn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_atm_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/hafs_regional_atm_wav -Checking test 108 hafs_regional_atm_wav results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/hafs_regional_atm_wav +Checking test 111 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK @@ -3474,15 +3621,15 @@ Checking test 108 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 721.826160 -The maximum resident set size (KB) = 884744 +The total amount of wall time = 704.447204 +The maximum resident set size (KB) = 887596 -Test 108 hafs_regional_atm_wav PASS +Test 111 hafs_regional_atm_wav PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/hafs_regional_atm_ocn_wav -Checking test 109 hafs_regional_atm_ocn_wav results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/hafs_regional_atm_ocn_wav +Checking test 112 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -3492,29 +3639,29 @@ Checking test 109 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 902.791038 -The maximum resident set size (KB) = 910456 +The total amount of wall time = 898.914557 +The maximum resident set size (KB) = 908876 -Test 109 hafs_regional_atm_ocn_wav PASS +Test 112 hafs_regional_atm_ocn_wav PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/hafs_regional_1nest_atm -Checking test 110 hafs_regional_1nest_atm results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/hafs_regional_1nest_atm +Checking test 113 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 337.094844 -The maximum resident set size (KB) = 392152 +The total amount of wall time = 329.590736 +The maximum resident set size (KB) = 390104 -Test 110 hafs_regional_1nest_atm PASS +Test 113 hafs_regional_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/hafs_regional_telescopic_2nests_atm -Checking test 111 hafs_regional_telescopic_2nests_atm results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/hafs_regional_telescopic_2nests_atm +Checking test 114 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -3522,29 +3669,29 @@ Checking test 111 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 410.146103 -The maximum resident set size (KB) = 414052 +The total amount of wall time = 401.362862 +The maximum resident set size (KB) = 415032 -Test 111 hafs_regional_telescopic_2nests_atm PASS +Test 114 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_global_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/hafs_global_1nest_atm -Checking test 112 hafs_global_1nest_atm results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/hafs_global_1nest_atm +Checking test 115 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 169.356285 -The maximum resident set size (KB) = 267572 +The total amount of wall time = 166.277772 +The maximum resident set size (KB) = 287108 -Test 112 hafs_global_1nest_atm PASS +Test 115 hafs_global_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_global_multiple_4nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/hafs_global_multiple_4nests_atm -Checking test 113 hafs_global_multiple_4nests_atm results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_multiple_4nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/hafs_global_multiple_4nests_atm +Checking test 116 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -3561,15 +3708,15 @@ Checking test 113 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -The total amount of wall time = 497.540022 -The maximum resident set size (KB) = 340628 +The total amount of wall time = 488.986741 +The maximum resident set size (KB) = 340128 -Test 113 hafs_global_multiple_4nests_atm PASS +Test 116 hafs_global_multiple_4nests_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/hafs_regional_specified_moving_1nest_atm -Checking test 114 hafs_regional_specified_moving_1nest_atm results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/hafs_regional_specified_moving_1nest_atm +Checking test 117 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -3577,29 +3724,29 @@ Checking test 114 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 222.842399 -The maximum resident set size (KB) = 486720 +The total amount of wall time = 214.354678 +The maximum resident set size (KB) = 402788 -Test 114 hafs_regional_specified_moving_1nest_atm PASS +Test 117 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/hafs_regional_storm_following_1nest_atm -Checking test 115 hafs_regional_storm_following_1nest_atm results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/hafs_regional_storm_following_1nest_atm +Checking test 118 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 203.401433 -The maximum resident set size (KB) = 402684 +The total amount of wall time = 220.957298 +The maximum resident set size (KB) = 401088 -Test 115 hafs_regional_storm_following_1nest_atm PASS +Test 118 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/hafs_regional_storm_following_1nest_atm_ocn -Checking test 116 hafs_regional_storm_following_1nest_atm_ocn results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/hafs_regional_storm_following_1nest_atm_ocn +Checking test 119 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -3607,43 +3754,43 @@ Checking test 116 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 257.616822 -The maximum resident set size (KB) = 451860 +The total amount of wall time = 243.415431 +The maximum resident set size (KB) = 453356 -Test 116 hafs_regional_storm_following_1nest_atm_ocn PASS +Test 119 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/hafs_global_storm_following_1nest_atm -Checking test 117 hafs_global_storm_following_1nest_atm results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/hafs_global_storm_following_1nest_atm +Checking test 120 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 81.650776 -The maximum resident set size (KB) = 404536 +The total amount of wall time = 79.954664 +The maximum resident set size (KB) = 288364 -Test 117 hafs_global_storm_following_1nest_atm PASS +Test 120 hafs_global_storm_following_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/hafs_regional_storm_following_1nest_atm_ocn_debug -Checking test 118 hafs_regional_storm_following_1nest_atm_ocn_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/hafs_regional_storm_following_1nest_atm_ocn_debug +Checking test 121 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 813.011787 -The maximum resident set size (KB) = 485600 +The total amount of wall time = 802.791059 +The maximum resident set size (KB) = 484972 -Test 118 hafs_regional_storm_following_1nest_atm_ocn_debug PASS +Test 121 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/hafs_regional_storm_following_1nest_atm_ocn_wav -Checking test 119 hafs_regional_storm_following_1nest_atm_ocn_wav results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 122 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -3653,15 +3800,15 @@ Checking test 119 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -The total amount of wall time = 543.125107 -The maximum resident set size (KB) = 525876 +The total amount of wall time = 521.524622 +The maximum resident set size (KB) = 523560 -Test 119 hafs_regional_storm_following_1nest_atm_ocn_wav PASS +Test 122 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8_atmlnd_sbs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_p8_atmlnd_sbs -Checking test 120 control_p8_atmlnd_sbs results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_atmlnd_sbs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_p8_atmlnd_sbs +Checking test 123 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3745,15 +3892,15 @@ Checking test 120 control_p8_atmlnd_sbs 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 = 239.702662 -The maximum resident set size (KB) = 1541948 +The total amount of wall time = 237.244416 +The maximum resident set size (KB) = 1540500 -Test 120 control_p8_atmlnd_sbs PASS +Test 123 control_p8_atmlnd_sbs PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/atmaero_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/atmaero_control_p8 -Checking test 121 atmaero_control_p8 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/atmaero_control_p8 +Checking test 124 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3796,15 +3943,15 @@ Checking test 121 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 251.223645 -The maximum resident set size (KB) = 2824076 +The total amount of wall time = 246.330369 +The maximum resident set size (KB) = 2817048 -Test 121 atmaero_control_p8 PASS +Test 124 atmaero_control_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/atmaero_control_p8_rad -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/atmaero_control_p8_rad -Checking test 122 atmaero_control_p8_rad results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8_rad +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/atmaero_control_p8_rad +Checking test 125 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3847,15 +3994,15 @@ Checking test 122 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 284.422462 -The maximum resident set size (KB) = 2879940 +The total amount of wall time = 282.503758 +The maximum resident set size (KB) = 2880708 -Test 122 atmaero_control_p8_rad PASS +Test 125 atmaero_control_p8_rad PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/atmaero_control_p8_rad_micro -Checking test 123 atmaero_control_p8_rad_micro results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8_rad_micro +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/atmaero_control_p8_rad_micro +Checking test 126 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3898,15 +4045,15 @@ Checking test 123 atmaero_control_p8_rad_micro results .... 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.534213 -The maximum resident set size (KB) = 2892624 +The total amount of wall time = 289.095461 +The maximum resident set size (KB) = 2889964 -Test 123 atmaero_control_p8_rad_micro PASS +Test 126 atmaero_control_p8_rad_micro PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_atmaq -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/regional_atmaq -Checking test 124 regional_atmaq results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_atmaq +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/regional_atmaq +Checking test 127 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -3921,15 +4068,15 @@ Checking test 124 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 678.502724 -The maximum resident set size (KB) = 1409248 +The total amount of wall time = 663.801898 +The maximum resident set size (KB) = 1408852 -Test 124 regional_atmaq PASS +Test 127 regional_atmaq PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_atmaq_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/regional_atmaq_debug -Checking test 125 regional_atmaq_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_atmaq_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/regional_atmaq_debug +Checking test 128 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -3942,12 +4089,35 @@ Checking test 125 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1435.810235 -The maximum resident set size (KB) = 1439296 +The total amount of wall time = 1427.533306 +The maximum resident set size (KB) = 1445536 + +Test 128 regional_atmaq_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_atmaq_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/regional_atmaq_faster +Checking test 129 regional_atmaq_faster results .... + Comparing sfcf000.nc .........OK + Comparing sfcf003.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf003.nc .........OK + Comparing atmf006.nc .........OK + Comparing RESTART/20190801.180000.coupler.res .........OK + Comparing RESTART/20190801.180000.fv_core.res.nc .........OK + Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.phy_data.nc .........OK + Comparing RESTART/20190801.180000.sfc_data.nc .........OK + +The total amount of wall time = 656.575411 +The maximum resident set size (KB) = 1403880 -Test 125 regional_atmaq_debug PASS +Test 129 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Fri Feb 24 16:14:54 UTC 2023 -Elapsed time: 01h:21m:11s. Have a nice day! +Tue Mar 7 18:09:06 UTC 2023 +Elapsed time: 01h:10m:24s. Have a nice day! diff --git a/tests/rt.conf b/tests/rt.conf index 8bbdb4fa70f..dce308f1cad 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -39,6 +39,9 @@ RUN | cpld_control_c48 RUN | cpld_warmstart_c48 | | fv3 | RUN | cpld_restart_c48 | | | cpld_warmstart_c48 +COMPILE | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON | | fv3 | +RUN | cpld_control_p8_faster | | fv3 | + ################################################################################################################################################################################### # ATM tests # ################################################################################################################################################################################### @@ -119,6 +122,10 @@ RUN | control_ras COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON | | fv3 | RUN | control_wam | | fv3 | +COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON | | fv3 | +RUN | control_p8_faster | | fv3 | +RUN | regional_control_faster | | fv3 | + ################################################################################################################################################################################### # DEBUG ATM tests # ################################################################################################################################################################################### @@ -237,6 +244,9 @@ RUN | datm_cdeps_gfs COMPILE | -DAPP=NG-GODAS -DDEBUG=ON | - wcoss2.intel acorn.intel | fv3 | RUN | datm_cdeps_debug_cfsr | - wcoss2.intel acorn.intel | fv3 | +COMPILE | -DAPP=NG-GODAS -DFASTER=ON | - wcoss2.intel | fv3 | +RUN | datm_cdeps_control_cfsr_faster | - wcoss2.intel | fv3 | + ################################################################################################################################################################################### # CDEPS Data Atmosphere tests with LND # ################################################################################################################################################################################### @@ -276,3 +286,6 @@ COMPILE | -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 RUN | regional_atmaq | | fv3 | COMPILE | -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON | | fv3 | RUN | regional_atmaq_debug | - jet.intel gaea.intel cheyenne.intel | fv3 | + +COMPILE | -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON | | fv3 | +RUN | regional_atmaq_faster | | fv3 | diff --git a/tests/tests/control_p8_faster b/tests/tests/control_p8_faster new file mode 100644 index 00000000000..61be0575c87 --- /dev/null +++ b/tests/tests/control_p8_faster @@ -0,0 +1,173 @@ +############################################################################### +# +# Global control test GFSv16 atmosphere only at C96L127, P8 configuration +# +############################################################################### + +export TEST_DESCR="Compare global control results with previous trunk version" + +export CNTL_DIR=control_p8_faster + +export LIST_FILES="sfcf000.nc \ + sfcf021.nc \ + sfcf024.nc \ + atmf000.nc \ + atmf021.nc \ + atmf024.nc \ + GFSFLX.GrbF00 \ + GFSFLX.GrbF21 \ + GFSFLX.GrbF24 \ + GFSPRS.GrbF00 \ + GFSPRS.GrbF21 \ + GFSPRS.GrbF24 \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc" + +export_fv3 +export NPZ=127 +export NPZP=128 +export DT_ATMOS=720 +export DT_INNER=${DT_ATMOS} +export SYEAR=2021 +export SMONTH=03 +export SDAY=22 +export SHOUR=06 +export RESTART_INTERVAL="12 -1" +export OUTPUT_GRID='gaussian_grid' +export WRITE_DOPOST=.true. +export OUTPUT_FH='0 21 24' + +# P7 default +export IALB=2 +export IEMS=2 +export LSM=2 +export IOPT_DVEG=4 +export IOPT_CRS=2 +export IOPT_RAD=3 +export IOPT_ALB=1 +export IOPT_STC=3 +# P8 +export IOPT_SFC=3 +export IOPT_TRS=2 + +# FV3 P7 settings +export D2_BG_K1=0.20 +export D2_BG_K2=0.04 +export PSM_BC=1 +# P8 +export DDDMP=0.1 + +# P7 Merra2 Aerosols & NSST +export USE_MERRA2=.true. +export IAER=1011 +export NSTF_NAME=2,1,0,0,0 + +export LHEATSTRG=.false. +export LSEASPRAY=.true. + +# P7 UGWP1 +export GWD_OPT=2 +export DO_UGWP_V1=.false. +export KNOB_UGWP_VERSION=0 +export KNOB_UGWP_NSLOPE=1 +export DO_UGWP_V0=.true. +export DO_GSL_DRAG_LS_BL=.false. +export DO_GSL_DRAG_SS=.true. +export DO_GSL_DRAG_TOFD=.false. +export DO_UGWP_V1_OROG_ONLY=.false. +export DO_UGWP_V0_NST_ONLY=.false. +export LDIAG_UGWP=.false. + +# P7 CA +export DO_CA=.true. +export CA_SGS=.true. +export CA_GLOBAL=.false. +export NCA=1 +export NCELLS=5 +export NLIVES=12 +export NTHRESH=18 +export NSEED=1 +export NFRACSEED=0.5 +export CA_TRIGGER=.true. +export NSPINUP=1 +export ISEED_CA=12345 + +# P7 settings +export TILEDFIX=.true. +export FNALBC="'C96.snowfree_albedo.tileX.nc'" +export FNALBC2="'C96.facsf.tileX.nc'" +export FNTG3C="'C96.substrate_temperature.tileX.nc'" +export FNVEGC="'C96.vegetation_greenness.tileX.nc'" +export FNVETC="'C96.vegetation_type.tileX.nc'" +export FNSOTC="'C96.soil_type.tileX.nc'" +export FNSMCC=${FNSMCC_control} +export FNMSKH=${FNMSKH_control} +export FNVMNC="'C96.vegetation_greenness.tileX.nc'" +export FNVMXC="'C96.vegetation_greenness.tileX.nc'" +export FNSLPC="'C96.slope_type.tileX.nc'" +export FNABSC="'C96.maximum_snow_albedo.tileX.nc'" +export LANDICE=".false." +export FSICL=0 +export FSICS=0 + +export IMP_PHYSICS=8 +export LGFDLMPRAD=.false. +export DO_SAT_ADJ=.false. +export DNATS=0 +export DZ_MIN=6 + +#required for NML.IN sharing +export MIN_SEAICE=0.15 +export FRAC_GRID=.true. +export MOM6_RESTART_SETTING=n +# P8 (not used for standalone) +export USE_CICE_ALB=.false. + +export WRITE_NSFLIP=.true. + +export FV3_RUN=control_run.IN +export CCPP_SUITE=FV3_GFS_v17_p8 +export FIELD_TABLE=field_table_thompson_noaero_tke +export DIAG_TABLE=diag_table_p8_template +# use same namelist for standalone,coupled P7 +export INPUT_NML=cpld_control.nml.IN + +# RRTMGP +export DO_RRTMGP=.false. +export DOGP_CLDOPTICS_LUT=.true. +export DOGP_LWSCAT=.true. +export DOGP_SGS_CNV=.true. + +if [[ $MACHINE_ID = cheyenne.* ]]; then + TPN=18 +fi diff --git a/tests/tests/cpld_control_p8_faster b/tests/tests/cpld_control_p8_faster new file mode 100644 index 00000000000..e57ae370eb9 --- /dev/null +++ b/tests/tests/cpld_control_p8_faster @@ -0,0 +1,87 @@ +# +# cpld_control P8 test +# + +export TEST_DESCR="Fully coupled FV3-CCPP-GOCART-MOM6-CICE-CMEPS-WW3 system - C96MX100" + +export CNTL_DIR="cpld_control_p8_faster" + +export LIST_FILES="sfcf021.tile1.nc \ + sfcf021.tile2.nc \ + sfcf021.tile3.nc \ + sfcf021.tile4.nc \ + sfcf021.tile5.nc \ + sfcf021.tile6.nc \ + atmf021.tile1.nc \ + atmf021.tile2.nc \ + atmf021.tile3.nc \ + atmf021.tile4.nc \ + atmf021.tile5.nc \ + atmf021.tile6.nc \ + sfcf024.tile1.nc \ + sfcf024.tile2.nc \ + sfcf024.tile3.nc \ + sfcf024.tile4.nc \ + sfcf024.tile5.nc \ + sfcf024.tile6.nc \ + atmf024.tile1.nc \ + atmf024.tile2.nc \ + atmf024.tile3.nc \ + atmf024.tile4.nc \ + atmf024.tile5.nc \ + atmf024.tile6.nc \ + gocart.inst_aod.20210323_0600z.nc4 \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc \ + RESTART/20210323.060000.MOM.res.nc \ + RESTART/iced.2021-03-23-21600.nc \ + RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc \ + 20210323.060000.out_pnt.ww3 \ + 20210323.060000.out_grd.ww3 " + +export_fv3 +export_cpl + +export RESTART_N=12 +export RESTART_INTERVAL="${RESTART_N} -1" +export OUTPUT_FH='0 21 24' + +export TOPOEDITS=ufs.topo_edits_011818.nc +export MOM6_ALLOW_LANDMASK_CHANGES=True +export eps_imesh=2.5e-1 + +export FV3_RUN=cpld_control_run.IN + +if [[ $MACHINE_ID = cheyenne.* ]]; then + TPN=18 +fi diff --git a/tests/tests/datm_cdeps_control_cfsr_faster b/tests/tests/datm_cdeps_control_cfsr_faster new file mode 100644 index 00000000000..1fe446d9604 --- /dev/null +++ b/tests/tests/datm_cdeps_control_cfsr_faster @@ -0,0 +1,23 @@ +# +# DATM_CDEPS_MOM6_CICE_CMEPS_CFSR test +# + +export TEST_DESCR="DATM_CDEPS-MOM6-CICE-CMEPS_CFSR - control " + +export CNTL_DIR="datm_cdeps_control_cfsr_faster" + +export LIST_FILES="RESTART/20111002.000000.MOM.res.nc \ + RESTART/iced.2011-10-02-00000.nc \ + RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc" + +export_datm_cdeps +export DATM_SRC="CFSR" +export FILENAME_BASE='cfsr.' +export IATM=1760 +export JATM=880 +export RESTART_N=12 +export eps_imesh='2.5e-1' +export TOPOEDITS=ufs.topo_edits_011818.nc +export MOM6_ALLOW_LANDMASK_CHANGES=True + +export FV3_RUN=cpld_datm_cdeps.IN diff --git a/tests/tests/regional_atmaq_faster b/tests/tests/regional_atmaq_faster new file mode 100644 index 00000000000..0abe7d0e450 --- /dev/null +++ b/tests/tests/regional_atmaq_faster @@ -0,0 +1,99 @@ +############################################################################### +# +# regional aqm test: GFSv15p2 atmosphere with aqm (CMAQ) C96L64 +# +############################################################################### + +export TEST_DESCR="AQM (CMAQ) regional test for comparison of results with previous trunk version" + +export CNTL_DIR=regional_atmaq_faster + +export LIST_FILES="sfcf000.nc \ + sfcf003.nc \ + sfcf006.nc \ + atmf000.nc \ + atmf003.nc \ + atmf006.nc \ + RESTART/20190801.180000.coupler.res \ + RESTART/20190801.180000.fv_core.res.nc \ + RESTART/20190801.180000.fv_core.res.tile1.nc \ + RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc \ + RESTART/20190801.180000.fv_tracer.res.tile1.nc \ + RESTART/20190801.180000.phy_data.nc \ + RESTART/20190801.180000.sfc_data.nc" + +export_fv3 + +export SYEAR=2019 +export SMONTH=08 +export SDAY=1 +export SHOUR=12 +export FHMAX=6 +export DT_ATMOS=180 +export WRTTASK_PER_GROUP=8 +export NSOUT=-1 +export OUTPUT_GRID='lambert_conformal' +export NSTF_NAME='2,0,0,0,0' +export IAER=5111 +export IOVR=3 +export OUTPUT_FH='0 3 6' + +#AQM Specifics +#NPZ input.nml 64 +#DNATS input.nml 4 +#RES_LATLON_DYNAMICS input.nml 'fv3_increment.nc' +#fhzero = 1.0 input.nml +#fhcyc = 0 input.nml +#cdmbgwd = 3.5, 0.25 input.nml +export AQM=.true. +export MAX_OUTPUT_FIELDS=450 +export OUTPUT_GRID='lambert_conformal' +export CEN_LON=-97.5 +export CEN_LAT=38.5 +export LON1=-121.70231097 +export LAT1=22.57417972 +export STDLAT1=38.5 +export STDLAT2=38.5 +export NPX=397 +export NPY=233 +export NX=393 +export NY=225 +export DX=13000.0 +export DY=13000.0 +export FNALBC="'C775.snowfree_albedo.tileX.nc'" +export FNVETC="'C775.vegetation_type.tileX.nc'" +export FNSOTC="'C775.soil_type.tileX.nc'" +export FNABSC="'C775.maximum_snow_albedo.tileX.nc'" + +export INPES=${INPES_aqm} +export JNPES=${JNPES_aqm} +export NTILES=1 +export atm_model='fv3' +export aqm_model='aqm' + +export FIELD_TABLE=field_table_aqm +export DIAG_TABLE=diag_table_aqm +export DNATS=5 +export FSCAV_AERO="'aacd:0.0', 'acet:0.0', 'acrolein:0.0', 'acro_primary:0.0', + 'ald2:0.0', 'ald2_primary:0.0', 'aldx:0.0', 'benzene:0.0', + 'butadiene13:0.0', 'cat1:0.0', 'cl2:0.0', 'clno2:0.0', + 'co:0.0', 'cres:0.0', 'cron:0.0', 'ech4:0.0', 'epox:0.0', + 'eth:0.0', 'etha:0.0', 'ethy:0.0', 'etoh:0.0', 'facd:0.0', + 'fmcl:0.0', 'form:0.0', 'form_primary:0.0', 'gly:0.0', + 'glyd:0.0', 'h2o2:0.0', 'hcl:0.0', 'hg:0.0', 'hgiigas:0.0', + 'hno3:0.0', 'hocl:0.0', 'hono:0.0', 'hpld:0.0', 'intr:0.0', + 'iole:0.0', 'isop:0.0', 'ispd:0.0', 'ispx:0.0', 'ket:0.0', + 'meoh:0.0', 'mepx:0.0', 'mgly:0.0', 'n2o5:0.0', 'naph:0.0', + 'no:0.0', 'no2:0.0', 'no3:0.0', 'ntr1:0.0', 'ntr2:0.0', + 'o3:0.0', 'ole:0.0', 'opan:0.0', 'open:0.0', 'opo3:0.0', + 'pacd:0.0', 'pan:0.0', 'panx:0.0', 'par:0.0', 'pcvoc:0.0', + 'pna:0.0', 'prpa:0.0', 'rooh:0.0', 'sesq:0.0', 'so2:0.0', + 'soaalk:0.0', 'sulf:0.0', 'terp:0.0', 'tol:0.0', 'tolu:0.0', + 'vivpo1:0.0', 'vlvoo1:0.0', 'vlvoo2:0.0', 'vlvpo1:0.0', + 'vsvoo1:0.0', 'vsvoo2:0.0', 'vsvoo3:0.0', 'vsvpo1:0.0', + 'vsvpo2:0.0', 'vsvpo3:0.0', 'xopn:0.0', 'xylmn:0.0', '*:0.2'" +export INPUT_NML="regional_atmaq.nml.IN" +export MODEL_CONFIGURE="model_configure_atmaq.IN" +export NEMS_CONFIGURE="nems.configure.atmaq.IN" +export FV3_RUN="fv3_aqm.IN" +export CCPP_SUITE=FV3_GFS_v15p2 diff --git a/tests/tests/regional_control_faster b/tests/tests/regional_control_faster new file mode 100644 index 00000000000..350c2aecf8c --- /dev/null +++ b/tests/tests/regional_control_faster @@ -0,0 +1,45 @@ +############################################################################### +# +# FV3 regional control (hi-res 3km, small domain) test +# +############################################################################### + +export TEST_DESCR="Compare FV3 regional control results with previous trunk version" + +export CNTL_DIR=regional_control_faster + +export LIST_FILES="dynf000.nc \ + dynf006.nc \ + phyf000.nc \ + phyf006.nc \ + PRSLEV.GrbF00 \ + PRSLEV.GrbF06 \ + NATLEV.GrbF00 \ + NATLEV.GrbF06" + +export_fv3 + +export FV3_RUN=regional_run.IN + +export OZ_PHYS_OLD=.false. +export OZ_PHYS_NEW=.true. +export H2O_PHYS=.true. +export HYBEDMF=.false. +export RESTART_INTERVAL="3 -1" +export WRITE_DOPOST=.true. +export POSTAPP='lam' + +export CCPP_SUITE=FV3_GFS_v15_thompson_mynn_lam3km +export INPUT_NML=regional.nml.IN +export MODEL_CONFIGURE=model_configure_regional.IN +export DIAG_TABLE=diag_table_lam +export FIELD_TABLE=field_table_regional + +export WLCLK=15 +export FHMAX=6 +export INPES=10 +export JNPES=11 +export OUTPUT_FH="3 -1" +WRITE_GROUP=1 +WRTTASK_PER_GROUP=10 +NTILES=1 From 495c5fd106ff3facb5b4aedbf94f8bba6c1da091 Mon Sep 17 00:00:00 2001 From: "Samuel Trahan (NOAA contractor)" <39415369+SamuelTrahanNOAA@users.noreply.github.com> Date: Thu, 9 Mar 2023 13:26:39 -0500 Subject: [PATCH 05/30] Combined PR: hpc-stack locations, Disable Fused Multiply Add, and Enable usage of shared pio (#1645) * Gaea system: change in hpc-stack location, miniconda3 (EPIC-managed) * move DISABLE_FMA to one if at the end * only disable fma on wcoss if FASTER=ON * Update CMakeModules to develop; remove STATIC requirement from PIO find. Co-authored-by: Natalie Perlin Co-authored-by: ulmononian --- CMakeLists.txt | 3 +- CMakeModules | 2 +- cmake/Intel.cmake | 6 + cmake/configure_acorn.cmake | 4 + cmake/configure_wcoss2.cmake | 4 + modulefiles/ufs_gaea.intel | 56 - modulefiles/ufs_gaea.intel.lua | 35 + modulefiles/ufs_gaea.intel_debug | 53 - modulefiles/ufs_gaea.intel_debug.lua | 35 + tests/RegressionTests_acorn.intel.log | 1244 +++++++++--------- tests/RegressionTests_cheyenne.gnu.log | 424 +++--- tests/RegressionTests_cheyenne.intel.log | 1505 +++++++++++----------- tests/RegressionTests_gaea.intel.log | 1399 ++++++++++---------- tests/RegressionTests_hera.gnu.log | 560 ++++---- tests/RegressionTests_hera.intel.log | 1318 +++++++++---------- tests/RegressionTests_jet.intel.log | 1208 ++++++++--------- tests/RegressionTests_orion.intel.log | 1326 +++++++++---------- tests/RegressionTests_wcoss2.intel.log | 1088 ++++++++-------- tests/compile.sh | 6 +- tests/fv3_conf/fv3_qsub.IN_cheyenne | 2 +- tests/fv3_conf/fv3_qsub.IN_wcoss2 | 2 +- tests/fv3_conf/fv3_slurm.IN_expanse | 2 +- tests/fv3_conf/fv3_slurm.IN_gaea | 3 +- tests/fv3_conf/fv3_slurm.IN_hera | 2 +- tests/fv3_conf/fv3_slurm.IN_jet | 2 +- tests/fv3_conf/fv3_slurm.IN_orion | 2 +- tests/fv3_conf/fv3_slurm.IN_s4 | 2 +- tests/fv3_conf/fv3_slurm.IN_stampede | 2 +- tests/module-setup.sh | 27 +- tests/rt.sh | 4 +- tests/run_test.sh | 9 +- 31 files changed, 5111 insertions(+), 5224 deletions(-) delete mode 100644 modulefiles/ufs_gaea.intel create mode 100644 modulefiles/ufs_gaea.intel.lua delete mode 100644 modulefiles/ufs_gaea.intel_debug create mode 100644 modulefiles/ufs_gaea.intel_debug.lua diff --git a/CMakeLists.txt b/CMakeLists.txt index 2af40cae562..48dbbf9a7f0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -63,6 +63,7 @@ set(AVX OFF CACHE BOOL "Enable AVX-I instruction set") set(SIMDMULTIARCH OFF CACHE BOOL "Enable multi-target SIMD instruction sets") set(DEBUG OFF CACHE BOOL "Enable DEBUG mode") set(DEBUG_LINKMPI ON CACHE BOOL "Enable linkmpi option when DEBUG mode is on") +set(DISABLE_FMA OFF CACHE BOOL "Disable Fused Multiply-Add instructions (workaround needed for AMD EPYC)" FORCE) set(INLINE_POST ON CACHE BOOL "Enable inline post") set(MULTI_GASES OFF CACHE BOOL "Enable MULTI_GASES") set(MOVING_NEST OFF CACHE BOOL "Enable moving nest code") @@ -137,7 +138,7 @@ if(FMS) endif() if(CMEPS) - find_package(PIO 2.5.3 REQUIRED COMPONENTS C Fortran STATIC) + find_package(PIO 2.5.3 REQUIRED COMPONENTS C Fortran) endif() find_package(bacio 2.4.0 REQUIRED) diff --git a/CMakeModules b/CMakeModules index cedeb2c64e5..cabd7753ae1 160000 --- a/CMakeModules +++ b/CMakeModules @@ -1 +1 @@ -Subproject commit cedeb2c64e55d3445ac4e4847ea7c4fa3220c3dd +Subproject commit cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 diff --git a/cmake/Intel.cmake b/cmake/Intel.cmake index 3a8f252133e..ac9cbabd4eb 100644 --- a/cmake/Intel.cmake +++ b/cmake/Intel.cmake @@ -43,3 +43,9 @@ if(APPLE) # Passing the -c flag includes them and fixes an error with undefined symbols set(CMAKE_Fortran_ARCHIVE_FINISH " -c ") endif() + +# This must be last, to override all other optimization settings. +if(DISABLE_FMA) + set(CMAKE_Fortran_FLAGS_RELEASE "${CMAKE_Fortran_FLAGS_RELEASE} -no-fma") + set(CMAKE_C_FLAGS_RELEASE "${CMAKE_Fortran_FLAGS_RELEASE} -no-fma") +endif() diff --git a/cmake/configure_acorn.cmake b/cmake/configure_acorn.cmake index c1c59110a74..aba198af7e0 100644 --- a/cmake/configure_acorn.cmake +++ b/cmake/configure_acorn.cmake @@ -1,3 +1,7 @@ set(PARALLEL_NETCDF ON CACHE BOOL "Enable parallel NetCDF" FORCE) set(DEBUG_LINKMPI OFF CACHE BOOL "Enable linkmpi option when DEBUG mode is on" FORCE) set(AVX2 OFF CACHE BOOL "Enable AVX2 instruction set" FORCE) + +if(FASTER) + set(DISABLE_FMA ON CACHE BOOL "Disable Fused Multiply-Add instructions (workaround needed for AMD EPYC)" FORCE) +endif() diff --git a/cmake/configure_wcoss2.cmake b/cmake/configure_wcoss2.cmake index c1c59110a74..aba198af7e0 100644 --- a/cmake/configure_wcoss2.cmake +++ b/cmake/configure_wcoss2.cmake @@ -1,3 +1,7 @@ set(PARALLEL_NETCDF ON CACHE BOOL "Enable parallel NetCDF" FORCE) set(DEBUG_LINKMPI OFF CACHE BOOL "Enable linkmpi option when DEBUG mode is on" FORCE) set(AVX2 OFF CACHE BOOL "Enable AVX2 instruction set" FORCE) + +if(FASTER) + set(DISABLE_FMA ON CACHE BOOL "Disable Fused Multiply-Add instructions (workaround needed for AMD EPYC)" FORCE) +endif() diff --git a/modulefiles/ufs_gaea.intel b/modulefiles/ufs_gaea.intel deleted file mode 100644 index 2f21f011a9e..00000000000 --- a/modulefiles/ufs_gaea.intel +++ /dev/null @@ -1,56 +0,0 @@ -#%Module - -proc ModulesHelp {} { - puts stderr "\tcit - loads modules required for building and running UFS Model on Gaea/Intel" -} - -module-whatis "loads UFS Model prerequisites for Gaea/Intel" - -module load PrgEnv-intel/6.0.5 -module rm intel -module rm cray-mpich -module rm netcdf -module load intel/18.0.6.288 -module load cray-mpich/7.7.11 -module load cray-python/3.7.3.2 -# Needed at runtime: -module load alps - -module use /lustre/f2/pdata/ncep_shared/cmake-3.20.1/modulefiles -module load cmake/3.20.1 - -#needed for WW3 build -module load gcc/8.3.0 - -module use /lustre/f2/pdata/ncep_shared/hpc-stack.epic/libs/intel/2021.3.0/modulefiles/stack - -module load hpc/1.2.0 -module load hpc-intel/2021.3.0 -module load hpc-cray-mpich/7.7.11 - -#module load ufs_common -module load jasper/2.0.25 -module load zlib/1.2.11 -module load libpng/1.6.37 - -module load hdf5/1.10.6 -module load netcdf/4.7.4 -module load pio/2.5.7 -module load esmf/8.3.0b09 -module load fms/2022.04 - -module load bacio/2.4.1 -module load crtm/2.4.0 -module load g2/3.4.5 -module load g2tmpl/1.10.2 -module load ip/3.3.3 -module load sp/2.3.3 -module load w3emc/2.9.2 - -module load gftl-shared/v1.5.0 -module load mapl/2.22.0-esmf-8.3.0b09 - -setenv CC cc -setenv CXX CC -setenv FC ftn -setenv CMAKE_Platform gaea.intel diff --git a/modulefiles/ufs_gaea.intel.lua b/modulefiles/ufs_gaea.intel.lua new file mode 100644 index 00000000000..fb0ded562eb --- /dev/null +++ b/modulefiles/ufs_gaea.intel.lua @@ -0,0 +1,35 @@ +help([[ + This module loads libraries required for building and running UFS Weather Model + on the NOAA RDHPC machine Gaea using Intel-2022.1.2 +]]) + +whatis([===[Loads libraries needed for building the UFS Weather Model on Gaea ]===]) + +prepend_path("MODULEPATH", "/lustre/f2/dev/role.epic/contrib/modulefiles") +load(pathJoin("miniconda3",os.getenv("miniconda_ver") or "4.12.0")) + +load(pathJoin("cmake", os.getenv("cmake_ver") or "3.20.1")) + +prepend_path("MODULEPATH","/lustre/f2/dev/role.epic/contrib/hpc-stack/intel-2021.3.0_noarch/modulefiles/stack") +load(pathJoin("hpc", os.getenv("hpc_ver") or "1.2.0")) +load(pathJoin("intel", os.getenv("intel_ver") or "2021.3.0")) +load(pathJoin("hpc-intel", os.getenv("hpc_intel_ver") or "2021.3.0")) +load(pathJoin("hpc-cray-mpich", os.getenv("hpc_cray_mpich_ver") or "7.7.11")) +load(pathJoin("gcc", os.getenv("gcc_ver") or "8.3.0")) +load(pathJoin("libpng", os.getenv("libpng_ver") or "1.6.37")) + +-- needed for WW3 build +load(pathJoin("gcc", os.getenv("gcc_ver") or "8.3.0")) +-- Needed at runtime: +load("alps") +load("rocoto") + +load("ufs_common") + +setenv("CC","cc") +setenv("FC","ftn") +setenv("CXX","CC") +setenv("CMAKE_C_COMPILER","cc") +setenv("CMAKE_CXX_COMPILER","CC") +setenv("CMAKE_Fortran_COMPILER","ftn") +setenv("CMAKE_Platform","gaea.intel") diff --git a/modulefiles/ufs_gaea.intel_debug b/modulefiles/ufs_gaea.intel_debug deleted file mode 100644 index c357773ae89..00000000000 --- a/modulefiles/ufs_gaea.intel_debug +++ /dev/null @@ -1,53 +0,0 @@ -#%Module - -proc ModulesHelp {} { - puts stderr "\tcit - loads modules required for building and running UFS Model on Gaea/Intel" -} - -module-whatis "loads UFS Model prerequisites for Gaea/Intel" - -module load PrgEnv-intel/6.0.5 -module rm intel -module rm cray-mpich -module rm netcdf -module load intel/18.0.6.288 -module load cray-mpich/7.7.11 -module load cray-python/3.7.3.2 -# Needed at runtime: -module load alps - -module use /lustre/f2/pdata/ncep_shared/cmake-3.20.1/modulefiles -module load cmake/3.20.1 - -module use /lustre/f2/pdata/ncep_shared/hpc-stack.epic/libs/intel/2021.3.0/modulefiles/stack - -module load hpc/1.2.0 -module load hpc-intel/2021.3.0 -module load hpc-cray-mpich/7.7.11 - -#module load ufs_common_debug -module load jasper/2.0.25 -module load zlib/1.2.11 -module load libpng/1.6.37 - -module load hdf5/1.10.6 -module load netcdf/4.7.4 -module load pio/2.5.7 -module load esmf/8.3.0b09-debug -module load fms/2022.04 - -module load bacio/2.4.1 -module load crtm/2.4.0 -module load g2/3.4.5 -module load g2tmpl/1.10.2 -module load ip/3.3.3 -module load sp/2.3.3 -module load w3emc/2.9.2 - -module load gftl-shared/v1.5.0 -module load mapl/2.22.0-esmf-8.3.0b09 - -setenv CC cc -setenv CXX CC -setenv FC ftn -setenv CMAKE_Platform gaea.intel diff --git a/modulefiles/ufs_gaea.intel_debug.lua b/modulefiles/ufs_gaea.intel_debug.lua new file mode 100644 index 00000000000..a7445cea92d --- /dev/null +++ b/modulefiles/ufs_gaea.intel_debug.lua @@ -0,0 +1,35 @@ +help([[ + This module loads libraries required for building and running UFS Weather Model + on the NOAA RDHPC machine Gaea using Intel-2022.1.2 +]]) + +whatis([===[Loads libraries needed for building the UFS Weather Model and debug on Gaea ]===]) + +prepend_path("MODULEPATH", "/lustre/f2/dev/role.epic/contrib/modulefiles") +load(pathJoin("miniconda3",os.getenv("miniconda_ver") or "4.12.0")) + +load(pathJoin("cmake", os.getenv("cmake_ver") or "3.20.1")) + +prepend_path("MODULEPATH","/lustre/f2/dev/role.epic/contrib/hpc-stack/intel-2021.3.0_noarch/modulefiles/stack") +load(pathJoin("hpc", os.getenv("hpc_ver") or "1.2.0")) +load(pathJoin("intel", os.getenv("intel_ver") or "2021.3.0")) +load(pathJoin("hpc-intel", os.getenv("hpc_intel_ver") or "2021.3.0")) +load(pathJoin("hpc-cray-mpich", os.getenv("hpc_cray_mpich_ver") or "7.7.11")) +load(pathJoin("gcc", os.getenv("gcc_ver") or "8.3.0")) +load(pathJoin("libpng", os.getenv("libpng_ver") or "1.6.37")) + +-- needed for WW3 build +load(pathJoin("gcc", os.getenv("gcc_ver") or "8.3.0")) +-- Needed at runtime: +load("alps") +load("rocoto") + +load("ufs_common_debug") + +setenv("CC","cc") +setenv("FC","ftn") +setenv("CXX","CC") +setenv("CMAKE_C_COMPILER","cc") +setenv("CMAKE_CXX_COMPILER","CC") +setenv("CMAKE_Fortran_COMPILER","ftn") +setenv("CMAKE_Platform","gaea.intel") diff --git a/tests/RegressionTests_acorn.intel.log b/tests/RegressionTests_acorn.intel.log index c5ed13ca111..b34b45b1847 100644 --- a/tests/RegressionTests_acorn.intel.log +++ b/tests/RegressionTests_acorn.intel.log @@ -1,39 +1,39 @@ -Tue Mar 7 15:26:51 UTC 2023 +Thu Mar 9 13:46:25 UTC 2023 Start Regression test -Compile 001 elapsed time 656 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 539 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 1108 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 1586 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 005 elapsed time 622 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 624 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 731 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 008 elapsed time 1109 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 1377 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 424 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 639 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 555 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 013 elapsed time 1010 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 938 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 015 elapsed time 1327 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 570 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 017 elapsed time 480 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 770 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 019 elapsed time 360 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 1028 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 1413 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 022 elapsed time 316 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 023 elapsed time 892 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 024 elapsed time 384 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 025 elapsed time 690 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 026 elapsed time 716 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 027 elapsed time 714 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 744 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 367 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 030 elapsed time 578 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8_mixedmode -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/cpld_control_p8_mixedmode +Compile 001 elapsed time 595 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 540 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 986 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 464 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 005 elapsed time 1076 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 1100 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 736 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 1234 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 811 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 422 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 1283 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 972 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 536 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 014 elapsed time 728 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 423 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 243 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 017 elapsed time 601 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 503 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 019 elapsed time 369 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 877 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 857 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 022 elapsed time 736 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 023 elapsed time 225 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 024 elapsed time 145 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 025 elapsed time 685 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 026 elapsed time 534 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 027 elapsed time 473 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 773 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 216 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 030 elapsed time 873 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_mixedmode +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -98,14 +98,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 335.601509 -The maximum resident set size (KB) = 2950460 +The total amount of wall time = 338.463955 +The maximum resident set size (KB) = 2952080 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_gfsv17 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/cpld_control_gfsv17 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_gfsv17 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -169,14 +169,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 260.082897 -The maximum resident set size (KB) = 1586476 +The total amount of wall time = 262.091382 +The maximum resident set size (KB) = 1576640 Test 002 cpld_control_gfsv17 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/cpld_control_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -241,14 +241,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 387.585824 -The maximum resident set size (KB) = 2979368 +The total amount of wall time = 393.427385 +The maximum resident set size (KB) = 2977548 Test 003 cpld_control_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/cpld_restart_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -301,14 +301,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 229.754193 -The maximum resident set size (KB) = 2867364 +The total amount of wall time = 228.765179 +The maximum resident set size (KB) = 2865740 Test 004 cpld_restart_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/cpld_2threads_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -361,14 +361,14 @@ Checking test 005 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 374.823584 -The maximum resident set size (KB) = 3283144 +The total amount of wall time = 380.396607 +The maximum resident set size (KB) = 3282260 Test 005 cpld_2threads_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/cpld_decomp_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/cpld_decomp_p8 Checking test 006 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -421,14 +421,14 @@ Checking test 006 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 383.346894 -The maximum resident set size (KB) = 2977072 +The total amount of wall time = 387.905667 +The maximum resident set size (KB) = 2978344 Test 006 cpld_decomp_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/cpld_mpi_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/cpld_mpi_p8 Checking test 007 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -481,14 +481,14 @@ Checking test 007 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 316.838622 -The maximum resident set size (KB) = 2906136 +The total amount of wall time = 324.501431 +The maximum resident set size (KB) = 2907872 Test 007 cpld_mpi_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_ciceC_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/cpld_control_ciceC_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_ciceC_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/cpld_control_ciceC_p8 Checking test 008 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -553,14 +553,14 @@ Checking test 008 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 391.323575 -The maximum resident set size (KB) = 2979264 +The total amount of wall time = 394.483259 +The maximum resident set size (KB) = 2986296 Test 008 cpld_control_ciceC_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/cpld_control_noaero_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/cpld_control_noaero_p8 Checking test 009 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -624,14 +624,14 @@ Checking test 009 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 282.583985 -The maximum resident set size (KB) = 1569904 +The total amount of wall time = 280.413976 +The maximum resident set size (KB) = 1574796 Test 009 cpld_control_noaero_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/cpld_control_nowave_noaero_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c96_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/cpld_control_nowave_noaero_p8 Checking test 010 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -693,14 +693,14 @@ Checking test 010 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 300.323733 -The maximum resident set size (KB) = 1631236 +The total amount of wall time = 296.580305 +The maximum resident set size (KB) = 1621304 Test 010 cpld_control_nowave_noaero_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/cpld_control_noaero_p8_agrid +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8_agrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/cpld_control_noaero_p8_agrid Checking test 011 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -762,14 +762,14 @@ Checking test 011 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 304.743637 -The maximum resident set size (KB) = 1620836 +The total amount of wall time = 310.078412 +The maximum resident set size (KB) = 1624140 Test 011 cpld_control_noaero_p8_agrid PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/cpld_control_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/cpld_control_c48 Checking test 012 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -819,14 +819,14 @@ Checking test 012 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 434.050787 -The maximum resident set size (KB) = 2631728 +The total amount of wall time = 434.451641 +The maximum resident set size (KB) = 2627176 Test 012 cpld_control_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/cpld_warmstart_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/cpld_warmstart_c48 Checking test 013 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -876,14 +876,14 @@ Checking test 013 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 120.074589 -The maximum resident set size (KB) = 2649140 +The total amount of wall time = 120.493048 +The maximum resident set size (KB) = 2648300 Test 013 cpld_warmstart_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/cpld_restart_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/cpld_restart_c48 Checking test 014 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -933,14 +933,14 @@ Checking test 014 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 65.435689 -The maximum resident set size (KB) = 2062512 +The total amount of wall time = 67.507670 +The maximum resident set size (KB) = 2063236 Test 014 cpld_restart_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/cpld_control_p8_faster +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/cpld_control_p8_faster Checking test 015 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1005,14 +1005,14 @@ Checking test 015 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 380.458861 -The maximum resident set size (KB) = 2977160 +The total amount of wall time = 377.299687 +The maximum resident set size (KB) = 2974992 Test 015 cpld_control_p8_faster PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_CubedSphereGrid +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_CubedSphereGrid Checking test 016 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1039,14 +1039,14 @@ Checking test 016 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 128.900762 -The maximum resident set size (KB) = 514500 +The total amount of wall time = 128.250969 +The maximum resident set size (KB) = 513460 Test 016 control_CubedSphereGrid PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_latlon -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_latlon +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_latlon +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_latlon Checking test 017 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1057,14 +1057,14 @@ Checking test 017 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 131.687977 -The maximum resident set size (KB) = 517804 +The total amount of wall time = 131.480621 +The maximum resident set size (KB) = 516188 Test 017 control_latlon PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_wrtGauss_netcdf_parallel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_wrtGauss_netcdf_parallel Checking test 018 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1075,14 +1075,14 @@ Checking test 018 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 134.125615 -The maximum resident set size (KB) = 518908 +The total amount of wall time = 133.507534 +The maximum resident set size (KB) = 519656 Test 018 control_wrtGauss_netcdf_parallel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_c48 Checking test 019 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1121,14 +1121,14 @@ Checking test 019 control_c48 results .... 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.614850 -The maximum resident set size (KB) = 674736 +The total amount of wall time = 327.121126 +The maximum resident set size (KB) = 673184 Test 019 control_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c192 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_c192 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c192 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_c192 Checking test 020 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1139,14 +1139,14 @@ Checking test 020 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 527.774136 -The maximum resident set size (KB) = 615916 +The total amount of wall time = 527.141448 +The maximum resident set size (KB) = 616108 Test 020 control_c192 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c384 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_c384 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_c384 Checking test 021 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1157,14 +1157,14 @@ Checking test 021 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 574.827781 -The maximum resident set size (KB) = 910956 +The total amount of wall time = 571.934871 +The maximum resident set size (KB) = 910968 Test 021 control_c384 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c384gdas -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_c384gdas +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384gdas +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_c384gdas Checking test 022 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1207,14 +1207,14 @@ Checking test 022 control_c384gdas 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 = 510.419813 -The maximum resident set size (KB) = 1042108 +The total amount of wall time = 504.504223 +The maximum resident set size (KB) = 1042412 Test 022 control_c384gdas PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_stochy +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_stochy Checking test 023 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1225,28 +1225,28 @@ Checking test 023 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 88.436103 -The maximum resident set size (KB) = 520844 +The total amount of wall time = 89.886784 +The maximum resident set size (KB) = 518684 Test 023 control_stochy PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_stochy_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_stochy_restart Checking test 024 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 48.556625 -The maximum resident set size (KB) = 292108 +The total amount of wall time = 48.247837 +The maximum resident set size (KB) = 292520 Test 024 control_stochy_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_lndp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_lndp Checking test 025 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1257,14 +1257,14 @@ Checking test 025 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 82.902953 -The maximum resident set size (KB) = 518456 +The total amount of wall time = 83.461188 +The maximum resident set size (KB) = 521332 Test 025 control_lndp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_iovr4 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_iovr4 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr4 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_iovr4 Checking test 026 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1279,14 +1279,14 @@ Checking test 026 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 134.565619 -The maximum resident set size (KB) = 518860 +The total amount of wall time = 134.955098 +The maximum resident set size (KB) = 513844 Test 026 control_iovr4 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_iovr5 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_iovr5 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr5 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_iovr5 Checking test 027 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1301,14 +1301,14 @@ Checking test 027 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 134.959919 -The maximum resident set size (KB) = 514128 +The total amount of wall time = 135.368007 +The maximum resident set size (KB) = 518536 Test 027 control_iovr5 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_p8 Checking test 028 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1355,14 +1355,14 @@ Checking test 028 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 178.368608 -The maximum resident set size (KB) = 1487548 +The total amount of wall time = 176.747736 +The maximum resident set size (KB) = 1480992 Test 028 control_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_p8_lndp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_p8_lndp Checking test 029 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1381,14 +1381,14 @@ Checking test 029 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 319.899884 -The maximum resident set size (KB) = 1484016 +The total amount of wall time = 319.501636 +The maximum resident set size (KB) = 1489332 Test 029 control_p8_lndp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_restart_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_restart_p8 Checking test 030 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1427,14 +1427,14 @@ Checking test 030 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 99.085548 -The maximum resident set size (KB) = 651040 +The total amount of wall time = 98.515880 +The maximum resident set size (KB) = 654848 Test 030 control_restart_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_decomp_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_decomp_p8 Checking test 031 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1477,14 +1477,14 @@ Checking test 031 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 181.641091 -The maximum resident set size (KB) = 1478776 +The total amount of wall time = 179.460579 +The maximum resident set size (KB) = 1478660 Test 031 control_decomp_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_2threads_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_2threads_p8 Checking test 032 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1527,14 +1527,14 @@ Checking test 032 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 159.639036 -The maximum resident set size (KB) = 1569104 +The total amount of wall time = 159.670811 +The maximum resident set size (KB) = 1562936 Test 032 control_2threads_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_rrtmgp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_p8_rrtmgp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_rrtmgp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_p8_rrtmgp Checking test 033 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1581,14 +1581,14 @@ Checking test 033 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 232.298551 -The maximum resident set size (KB) = 1544116 +The total amount of wall time = 233.404468 +The maximum resident set size (KB) = 1543124 Test 033 control_p8_rrtmgp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/merra2_thompson -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/merra2_thompson +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/merra2_thompson +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/merra2_thompson Checking test 034 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1635,14 +1635,14 @@ Checking test 034 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 202.424831 -The maximum resident set size (KB) = 1494124 +The total amount of wall time = 202.011415 +The maximum resident set size (KB) = 1491556 Test 034 merra2_thompson PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/regional_control +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/regional_control Checking test 035 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1653,28 +1653,28 @@ Checking test 035 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 288.125278 -The maximum resident set size (KB) = 653984 +The total amount of wall time = 289.304157 +The maximum resident set size (KB) = 655144 Test 035 regional_control PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/regional_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/regional_restart Checking test 036 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 153.253665 -The maximum resident set size (KB) = 650168 +The total amount of wall time = 153.235377 +The maximum resident set size (KB) = 648684 Test 036 regional_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/regional_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/regional_decomp Checking test 037 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1685,14 +1685,14 @@ Checking test 037 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 303.514811 -The maximum resident set size (KB) = 652088 +The total amount of wall time = 302.797255 +The maximum resident set size (KB) = 650524 Test 037 regional_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/regional_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/regional_2threads Checking test 038 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1703,14 +1703,14 @@ Checking test 038 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 177.255860 -The maximum resident set size (KB) = 702436 +The total amount of wall time = 179.216734 +The maximum resident set size (KB) = 699000 Test 038 regional_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_noquilt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/regional_noquilt +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_noquilt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/regional_noquilt Checking test 039 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1718,14 +1718,14 @@ Checking test 039 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 310.915520 -The maximum resident set size (KB) = 642536 +The total amount of wall time = 312.562414 +The maximum resident set size (KB) = 642652 Test 039 regional_noquilt PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/regional_2dwrtdecomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/regional_2dwrtdecomp Checking test 040 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1736,14 +1736,14 @@ Checking test 040 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 285.700092 -The maximum resident set size (KB) = 653876 +The total amount of wall time = 289.241173 +The maximum resident set size (KB) = 650112 Test 040 regional_2dwrtdecomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/fv3_regional_wofs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/regional_wofs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/fv3_regional_wofs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/regional_wofs Checking test 041 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1754,14 +1754,14 @@ Checking test 041 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 365.866245 -The maximum resident set size (KB) = 339972 +The total amount of wall time = 362.324116 +The maximum resident set size (KB) = 340740 Test 041 regional_wofs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rap_control +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rap_control Checking test 042 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1808,14 +1808,14 @@ Checking test 042 rap_control results .... 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.118770 -The maximum resident set size (KB) = 895784 +The total amount of wall time = 419.236232 +The maximum resident set size (KB) = 893664 Test 042 rap_control PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/regional_spp_sppt_shum_skeb +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/regional_spp_sppt_shum_skeb Checking test 043 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -1826,14 +1826,14 @@ Checking test 043 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 285.241437 -The maximum resident set size (KB) = 983620 +The total amount of wall time = 285.879551 +The maximum resident set size (KB) = 983236 Test 043 regional_spp_sppt_shum_skeb PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rap_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rap_decomp Checking test 044 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1880,14 +1880,14 @@ Checking test 044 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 432.319931 -The maximum resident set size (KB) = 892296 +The total amount of wall time = 434.623989 +The maximum resident set size (KB) = 889664 Test 044 rap_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rap_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rap_2threads Checking test 045 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1934,14 +1934,14 @@ Checking test 045 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 391.082693 -The maximum resident set size (KB) = 964188 +The total amount of wall time = 392.548039 +The maximum resident set size (KB) = 961140 Test 045 rap_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rap_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rap_restart Checking test 046 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1980,14 +1980,14 @@ Checking test 046 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 211.910152 -The maximum resident set size (KB) = 645184 +The total amount of wall time = 212.032550 +The maximum resident set size (KB) = 647764 Test 046 rap_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rap_sfcdiff +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rap_sfcdiff Checking test 047 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2034,14 +2034,14 @@ Checking test 047 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 415.547789 -The maximum resident set size (KB) = 889368 +The total amount of wall time = 414.406827 +The maximum resident set size (KB) = 892572 Test 047 rap_sfcdiff PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rap_sfcdiff_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rap_sfcdiff_decomp Checking test 048 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2088,14 +2088,14 @@ Checking test 048 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 432.541695 -The maximum resident set size (KB) = 890352 +The total amount of wall time = 432.128719 +The maximum resident set size (KB) = 890516 Test 048 rap_sfcdiff_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rap_sfcdiff_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rap_sfcdiff_restart Checking test 049 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2134,14 +2134,14 @@ Checking test 049 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 310.039179 -The maximum resident set size (KB) = 639076 +The total amount of wall time = 309.835281 +The maximum resident set size (KB) = 639932 Test 049 rap_sfcdiff_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hrrr_control +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hrrr_control Checking test 050 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2188,14 +2188,14 @@ Checking test 050 hrrr_control results .... 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.630783 -The maximum resident set size (KB) = 889828 +The total amount of wall time = 398.940241 +The maximum resident set size (KB) = 893844 Test 050 hrrr_control PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hrrr_control_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hrrr_control_decomp Checking test 051 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2242,14 +2242,14 @@ Checking test 051 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 413.151330 -The maximum resident set size (KB) = 889108 +The total amount of wall time = 413.679912 +The maximum resident set size (KB) = 890488 Test 051 hrrr_control_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hrrr_control_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hrrr_control_2threads Checking test 052 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2296,14 +2296,14 @@ Checking test 052 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 369.847431 -The maximum resident set size (KB) = 963080 +The total amount of wall time = 369.817624 +The maximum resident set size (KB) = 961556 Test 052 hrrr_control_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hrrr_control_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hrrr_control_restart Checking test 053 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2342,14 +2342,14 @@ Checking test 053 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 297.716021 -The maximum resident set size (KB) = 639604 +The total amount of wall time = 299.114537 +The maximum resident set size (KB) = 640216 Test 053 hrrr_control_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1beta -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rrfs_v1beta +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rrfs_v1beta Checking test 054 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2396,14 +2396,14 @@ Checking test 054 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 409.127931 -The maximum resident set size (KB) = 887800 +The total amount of wall time = 409.473470 +The maximum resident set size (KB) = 883640 Test 054 rrfs_v1beta PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1nssl -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rrfs_v1nssl +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rrfs_v1nssl Checking test 055 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2418,14 +2418,14 @@ Checking test 055 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 472.430999 -The maximum resident set size (KB) = 577440 +The total amount of wall time = 471.819229 +The maximum resident set size (KB) = 577640 Test 055 rrfs_v1nssl PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rrfs_v1nssl_nohailnoccn +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rrfs_v1nssl_nohailnoccn Checking test 056 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2440,14 +2440,14 @@ Checking test 056 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 462.149122 -The maximum resident set size (KB) = 567024 +The total amount of wall time = 462.467560 +The maximum resident set size (KB) = 565268 Test 056 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rrfs_conus13km_hrrr_warm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rrfs_conus13km_hrrr_warm Checking test 057 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2456,14 +2456,14 @@ Checking test 057 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 114.064102 -The maximum resident set size (KB) = 761380 +The total amount of wall time = 113.678003 +The maximum resident set size (KB) = 763852 Test 057 rrfs_conus13km_hrrr_warm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rrfs_smoke_conus13km_hrrr_warm Checking test 058 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2472,14 +2472,14 @@ Checking test 058 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 126.308852 -The maximum resident set size (KB) = 772024 +The total amount of wall time = 126.474123 +The maximum resident set size (KB) = 772716 Test 058 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rrfs_conus13km_radar_tten_warm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rrfs_conus13km_radar_tten_warm Checking test 059 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2488,14 +2488,14 @@ Checking test 059 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 115.900611 -The maximum resident set size (KB) = 767520 +The total amount of wall time = 114.473725 +The maximum resident set size (KB) = 764160 Test 059 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rrfs_conus13km_hrrr_warm_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rrfs_conus13km_hrrr_warm_2threads Checking test 060 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2504,14 +2504,14 @@ Checking test 060 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 83.308932 -The maximum resident set size (KB) = 758820 +The total amount of wall time = 83.795020 +The maximum resident set size (KB) = 760828 Test 060 rrfs_conus13km_hrrr_warm_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rrfs_conus13km_radar_tten_warm_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rrfs_conus13km_radar_tten_warm_2threads Checking test 061 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2520,14 +2520,14 @@ Checking test 061 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 85.021027 -The maximum resident set size (KB) = 758120 +The total amount of wall time = 84.366686 +The maximum resident set size (KB) = 762412 Test 061 rrfs_conus13km_radar_tten_warm_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmg -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_csawmg +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_csawmg Checking test 062 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2538,14 +2538,14 @@ Checking test 062 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 344.488005 -The maximum resident set size (KB) = 582424 +The total amount of wall time = 344.761001 +The maximum resident set size (KB) = 586472 Test 062 control_csawmg PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmgt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_csawmgt +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_csawmgt Checking test 063 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2556,14 +2556,14 @@ Checking test 063 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 341.191672 -The maximum resident set size (KB) = 581628 +The total amount of wall time = 342.232204 +The maximum resident set size (KB) = 584216 Test 063 control_csawmgt PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_ras -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_ras +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_ras Checking test 064 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2574,26 +2574,26 @@ Checking test 064 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 179.964305 -The maximum resident set size (KB) = 550916 +The total amount of wall time = 180.189502 +The maximum resident set size (KB) = 550776 Test 064 control_ras PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wam -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_wam +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_wam Checking test 065 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 117.127488 -The maximum resident set size (KB) = 271928 +The total amount of wall time = 117.309057 +The maximum resident set size (KB) = 271484 Test 065 control_wam PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_p8_faster +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_p8_faster Checking test 066 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2640,14 +2640,14 @@ Checking test 066 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 176.190574 -The maximum resident set size (KB) = 1484164 +The total amount of wall time = 174.498797 +The maximum resident set size (KB) = 1478352 Test 066 control_p8_faster PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/regional_control_faster +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/regional_control_faster Checking test 067 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2658,42 +2658,42 @@ Checking test 067 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 282.201319 -The maximum resident set size (KB) = 648660 +The total amount of wall time = 284.316069 +The maximum resident set size (KB) = 652684 Test 067 regional_control_faster PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rrfs_conus13km_hrrr_warm_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rrfs_conus13km_hrrr_warm_debug Checking test 068 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 780.378906 -The maximum resident set size (KB) = 787856 +The total amount of wall time = 787.183152 +The maximum resident set size (KB) = 788460 Test 068 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rrfs_conus13km_radar_tten_warm_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rrfs_conus13km_radar_tten_warm_debug Checking test 069 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 784.152742 -The maximum resident set size (KB) = 794320 +The total amount of wall time = 781.688249 +The maximum resident set size (KB) = 790880 Test 069 rrfs_conus13km_radar_tten_warm_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_CubedSphereGrid_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_CubedSphereGrid_debug Checking test 070 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2720,334 +2720,334 @@ Checking test 070 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 167.218557 -The maximum resident set size (KB) = 672188 +The total amount of wall time = 166.268504 +The maximum resident set size (KB) = 671960 Test 070 control_CubedSphereGrid_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_wrtGauss_netcdf_parallel_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_wrtGauss_netcdf_parallel_debug Checking test 071 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 158.492580 -The maximum resident set size (KB) = 675140 +The total amount of wall time = 158.553323 +The maximum resident set size (KB) = 676340 Test 071 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_stochy_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_stochy_debug Checking test 072 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 179.124537 -The maximum resident set size (KB) = 678236 +The total amount of wall time = 178.165304 +The maximum resident set size (KB) = 683740 Test 072 control_stochy_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_lndp_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_lndp_debug Checking test 073 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 160.465033 -The maximum resident set size (KB) = 679848 +The total amount of wall time = 161.109704 +The maximum resident set size (KB) = 682812 Test 073 control_lndp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmg_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_csawmg_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_csawmg_debug Checking test 074 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 255.419795 -The maximum resident set size (KB) = 716048 +The total amount of wall time = 254.829359 +The maximum resident set size (KB) = 716432 Test 074 control_csawmg_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmgt_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_csawmgt_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_csawmgt_debug Checking test 075 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 252.431686 -The maximum resident set size (KB) = 715360 +The total amount of wall time = 252.803686 +The maximum resident set size (KB) = 713788 Test 075 control_csawmgt_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_ras_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_ras_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_ras_debug Checking test 076 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 162.012284 -The maximum resident set size (KB) = 687440 +The total amount of wall time = 163.381903 +The maximum resident set size (KB) = 688952 Test 076 control_ras_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_diag_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_diag_debug Checking test 077 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 164.409186 -The maximum resident set size (KB) = 734728 +The total amount of wall time = 164.858519 +The maximum resident set size (KB) = 734736 Test 077 control_diag_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_debug_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_debug_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_debug_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_debug_p8 Checking test 078 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 184.929010 -The maximum resident set size (KB) = 1504888 +The total amount of wall time = 186.245041 +The maximum resident set size (KB) = 1495504 Test 078 control_debug_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/regional_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/regional_debug Checking test 079 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1042.342296 -The maximum resident set size (KB) = 672444 +The total amount of wall time = 1047.384324 +The maximum resident set size (KB) = 673336 Test 079 regional_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rap_control_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rap_control_debug Checking test 080 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.186878 -The maximum resident set size (KB) = 1052432 +The total amount of wall time = 298.344624 +The maximum resident set size (KB) = 1049408 Test 080 rap_control_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hrrr_control_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hrrr_control_debug Checking test 081 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 293.975676 -The maximum resident set size (KB) = 1047200 +The total amount of wall time = 292.038376 +The maximum resident set size (KB) = 1043852 Test 081 hrrr_control_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rap_unified_drag_suite_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rap_unified_drag_suite_debug Checking test 082 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.936866 -The maximum resident set size (KB) = 1052100 +The total amount of wall time = 297.825894 +The maximum resident set size (KB) = 1048208 Test 082 rap_unified_drag_suite_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rap_diag_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rap_diag_debug Checking test 083 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 308.443576 -The maximum resident set size (KB) = 1133208 +The total amount of wall time = 309.679220 +The maximum resident set size (KB) = 1132184 Test 083 rap_diag_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rap_cires_ugwp_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rap_cires_ugwp_debug Checking test 084 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 303.744645 -The maximum resident set size (KB) = 1047180 +The total amount of wall time = 304.456326 +The maximum resident set size (KB) = 1053392 Test 084 rap_cires_ugwp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rap_unified_ugwp_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rap_unified_ugwp_debug Checking test 085 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 304.397564 -The maximum resident set size (KB) = 1050416 +The total amount of wall time = 304.941235 +The maximum resident set size (KB) = 1050136 Test 085 rap_unified_ugwp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rap_lndp_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rap_lndp_debug Checking test 086 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.153601 -The maximum resident set size (KB) = 1052356 +The total amount of wall time = 300.481250 +The maximum resident set size (KB) = 1050488 Test 086 rap_lndp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_flake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rap_flake_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_flake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rap_flake_debug Checking test 087 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.373115 -The maximum resident set size (KB) = 1050940 +The total amount of wall time = 297.597461 +The maximum resident set size (KB) = 1051836 Test 087 rap_flake_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_progcld_thompson_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rap_progcld_thompson_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_progcld_thompson_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rap_progcld_thompson_debug Checking test 088 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.323095 -The maximum resident set size (KB) = 1053096 +The total amount of wall time = 298.918343 +The maximum resident set size (KB) = 1049056 Test 088 rap_progcld_thompson_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_noah_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rap_noah_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rap_noah_debug Checking test 089 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 291.335713 -The maximum resident set size (KB) = 1052004 +The total amount of wall time = 292.134209 +The maximum resident set size (KB) = 1051876 Test 089 rap_noah_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rap_sfcdiff_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rap_sfcdiff_debug Checking test 090 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 296.519278 -The maximum resident set size (KB) = 1048368 +The total amount of wall time = 296.891777 +The maximum resident set size (KB) = 1051388 Test 090 rap_sfcdiff_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rap_noah_sfcdiff_cires_ugwp_debug Checking test 091 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 485.740781 -The maximum resident set size (KB) = 1049400 +The total amount of wall time = 485.913072 +The maximum resident set size (KB) = 1048276 Test 091 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1beta_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rrfs_v1beta_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rrfs_v1beta_debug Checking test 092 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 293.484420 -The maximum resident set size (KB) = 1045288 +The total amount of wall time = 291.938669 +The maximum resident set size (KB) = 1048488 Test 092 rrfs_v1beta_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wam_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_wam_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_wam_debug Checking test 093 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 298.553079 -The maximum resident set size (KB) = 301984 +The total amount of wall time = 300.787725 +The maximum resident set size (KB) = 300852 Test 093 control_wam_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 094 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3058,14 +3058,14 @@ Checking test 094 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 265.947723 -The maximum resident set size (KB) = 871928 +The total amount of wall time = 267.102923 +The maximum resident set size (KB) = 878940 Test 094 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rap_control_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rap_control_dyn32_phy32 Checking test 095 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3112,14 +3112,14 @@ Checking test 095 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 340.946357 -The maximum resident set size (KB) = 776444 +The total amount of wall time = 342.617303 +The maximum resident set size (KB) = 775216 Test 095 rap_control_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hrrr_control_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hrrr_control_dyn32_phy32 Checking test 096 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3166,14 +3166,14 @@ Checking test 096 hrrr_control_dyn32_phy32 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 = 183.089745 -The maximum resident set size (KB) = 773556 +The total amount of wall time = 184.387014 +The maximum resident set size (KB) = 776148 Test 096 hrrr_control_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rap_2threads_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rap_2threads_dyn32_phy32 Checking test 097 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3220,14 +3220,14 @@ Checking test 097 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 321.439403 -The maximum resident set size (KB) = 828956 +The total amount of wall time = 321.349882 +The maximum resident set size (KB) = 828684 Test 097 rap_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hrrr_control_2threads_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hrrr_control_2threads_dyn32_phy32 Checking test 098 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3274,14 +3274,14 @@ Checking test 098 hrrr_control_2threads_dyn32_phy32 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 = 172.674767 -The maximum resident set size (KB) = 826708 +The total amount of wall time = 174.418487 +The maximum resident set size (KB) = 828780 Test 098 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hrrr_control_decomp_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hrrr_control_decomp_dyn32_phy32 Checking test 099 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3328,14 +3328,14 @@ Checking test 099 hrrr_control_decomp_dyn32_phy32 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 = 190.862556 -The maximum resident set size (KB) = 773472 +The total amount of wall time = 191.582547 +The maximum resident set size (KB) = 775008 Test 099 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rap_restart_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rap_restart_dyn32_phy32 Checking test 100 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3374,14 +3374,14 @@ Checking test 100 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 254.846087 -The maximum resident set size (KB) = 614880 +The total amount of wall time = 255.453253 +The maximum resident set size (KB) = 612776 Test 100 rap_restart_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hrrr_control_restart_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hrrr_control_restart_dyn32_phy32 Checking test 101 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3420,14 +3420,14 @@ Checking test 101 hrrr_control_restart_dyn32_phy32 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 = 94.666860 -The maximum resident set size (KB) = 607388 +The total amount of wall time = 95.241142 +The maximum resident set size (KB) = 608176 Test 101 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rap_control_dyn64_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rap_control_dyn64_phy32 Checking test 102 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3474,81 +3474,81 @@ Checking test 102 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -The total amount of wall time = 230.474064 -The maximum resident set size (KB) = 794188 +The total amount of wall time = 232.340978 +The maximum resident set size (KB) = 798092 Test 102 rap_control_dyn64_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rap_control_debug_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rap_control_debug_dyn32_phy32 Checking test 103 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 290.993166 -The maximum resident set size (KB) = 935700 +The total amount of wall time = 291.874437 +The maximum resident set size (KB) = 937584 Test 103 rap_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hrrr_control_debug_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hrrr_control_debug_dyn32_phy32 Checking test 104 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 285.390384 -The maximum resident set size (KB) = 936532 +The total amount of wall time = 285.977130 +The maximum resident set size (KB) = 938564 Test 104 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/rap_control_dyn64_phy32_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rap_control_dyn64_phy32_debug Checking test 105 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 292.995426 -The maximum resident set size (KB) = 953736 +The total amount of wall time = 294.941657 +The maximum resident set size (KB) = 956612 Test 105 rap_control_dyn64_phy32_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hafs_regional_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hafs_regional_atm Checking test 106 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 265.646863 -The maximum resident set size (KB) = 821092 +The total amount of wall time = 266.447497 +The maximum resident set size (KB) = 822240 Test 106 hafs_regional_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hafs_regional_atm_thompson_gfdlsf +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hafs_regional_atm_thompson_gfdlsf Checking test 107 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 304.092066 -The maximum resident set size (KB) = 1179796 +The total amount of wall time = 304.001568 +The maximum resident set size (KB) = 1182192 Test 107 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hafs_regional_atm_ocn +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hafs_regional_atm_ocn Checking test 108 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3557,14 +3557,14 @@ Checking test 108 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 385.475207 -The maximum resident set size (KB) = 853136 +The total amount of wall time = 387.615026 +The maximum resident set size (KB) = 851812 Test 108 hafs_regional_atm_ocn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hafs_regional_atm_wav +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hafs_regional_atm_wav Checking test 109 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3573,14 +3573,14 @@ Checking test 109 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 704.432368 -The maximum resident set size (KB) = 884496 +The total amount of wall time = 705.078778 +The maximum resident set size (KB) = 885440 Test 109 hafs_regional_atm_wav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hafs_regional_atm_ocn_wav +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hafs_regional_atm_ocn_wav Checking test 110 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3591,28 +3591,28 @@ Checking test 110 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 895.131754 -The maximum resident set size (KB) = 906612 +The total amount of wall time = 895.240206 +The maximum resident set size (KB) = 907768 Test 110 hafs_regional_atm_ocn_wav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hafs_regional_1nest_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hafs_regional_1nest_atm Checking test 111 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 327.000351 -The maximum resident set size (KB) = 387556 +The total amount of wall time = 327.677400 +The maximum resident set size (KB) = 389380 Test 111 hafs_regional_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hafs_regional_telescopic_2nests_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hafs_regional_telescopic_2nests_atm Checking test 112 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3621,28 +3621,28 @@ Checking test 112 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 394.856342 -The maximum resident set size (KB) = 411312 +The total amount of wall time = 396.821324 +The maximum resident set size (KB) = 411772 Test 112 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hafs_global_1nest_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hafs_global_1nest_atm Checking test 113 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 166.126564 -The maximum resident set size (KB) = 263400 +The total amount of wall time = 165.325957 +The maximum resident set size (KB) = 263328 Test 113 hafs_global_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_multiple_4nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hafs_global_multiple_4nests_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_multiple_4nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hafs_global_multiple_4nests_atm Checking test 114 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3660,14 +3660,14 @@ Checking test 114 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -The total amount of wall time = 487.280360 -The maximum resident set size (KB) = 339264 +The total amount of wall time = 485.980433 +The maximum resident set size (KB) = 340720 Test 114 hafs_global_multiple_4nests_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hafs_regional_specified_moving_1nest_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hafs_regional_specified_moving_1nest_atm Checking test 115 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3676,28 +3676,28 @@ Checking test 115 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 212.705167 -The maximum resident set size (KB) = 405228 +The total amount of wall time = 212.073705 +The maximum resident set size (KB) = 400844 Test 115 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hafs_regional_storm_following_1nest_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hafs_regional_storm_following_1nest_atm Checking test 116 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 200.307463 -The maximum resident set size (KB) = 399996 +The total amount of wall time = 200.096918 +The maximum resident set size (KB) = 403708 Test 116 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hafs_regional_storm_following_1nest_atm_ocn Checking test 117 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3706,42 +3706,42 @@ Checking test 117 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 242.205070 -The maximum resident set size (KB) = 452700 +The total amount of wall time = 241.161844 +The maximum resident set size (KB) = 452080 Test 117 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hafs_global_storm_following_1nest_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hafs_global_storm_following_1nest_atm Checking test 118 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 78.402308 -The maximum resident set size (KB) = 277472 +The total amount of wall time = 78.692441 +The maximum resident set size (KB) = 277396 Test 118 hafs_global_storm_following_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 119 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 798.010661 -The maximum resident set size (KB) = 477576 +The total amount of wall time = 797.533254 +The maximum resident set size (KB) = 475708 Test 119 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 120 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3752,14 +3752,14 @@ Checking test 120 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -The total amount of wall time = 519.837638 -The maximum resident set size (KB) = 519896 +The total amount of wall time = 518.438790 +The maximum resident set size (KB) = 520224 Test 120 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_docn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hafs_regional_docn +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_docn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hafs_regional_docn Checking test 121 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3767,14 +3767,14 @@ Checking test 121 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 368.819457 -The maximum resident set size (KB) = 856672 +The total amount of wall time = 370.225795 +The maximum resident set size (KB) = 856824 Test 121 hafs_regional_docn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_docn_oisst -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hafs_regional_docn_oisst +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_docn_oisst +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hafs_regional_docn_oisst Checking test 122 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3782,131 +3782,131 @@ Checking test 122 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 370.145142 -The maximum resident set size (KB) = 838252 +The total amount of wall time = 371.138716 +The maximum resident set size (KB) = 844272 Test 122 hafs_regional_docn_oisst PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_datm_cdeps -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/hafs_regional_datm_cdeps +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_datm_cdeps +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hafs_regional_datm_cdeps Checking test 123 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -The total amount of wall time = 944.731115 -The maximum resident set size (KB) = 867596 +The total amount of wall time = 944.164967 +The maximum resident set size (KB) = 867772 Test 123 hafs_regional_datm_cdeps PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/datm_cdeps_control_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/datm_cdeps_control_cfsr Checking test 124 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.221453 -The maximum resident set size (KB) = 733732 +The total amount of wall time = 141.853646 +The maximum resident set size (KB) = 732036 Test 124 datm_cdeps_control_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/datm_cdeps_restart_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/datm_cdeps_restart_cfsr Checking test 125 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 85.376841 -The maximum resident set size (KB) = 728064 +The total amount of wall time = 86.834080 +The maximum resident set size (KB) = 728268 Test 125 datm_cdeps_restart_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/datm_cdeps_control_gefs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/datm_cdeps_control_gefs Checking test 126 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 134.309955 -The maximum resident set size (KB) = 613408 +The total amount of wall time = 135.453926 +The maximum resident set size (KB) = 614992 Test 126 datm_cdeps_control_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_iau_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/datm_cdeps_iau_gefs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_iau_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/datm_cdeps_iau_gefs Checking test 127 datm_cdeps_iau_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 136.652188 -The maximum resident set size (KB) = 612728 +The total amount of wall time = 137.248239 +The maximum resident set size (KB) = 613324 Test 127 datm_cdeps_iau_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_stochy_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/datm_cdeps_stochy_gefs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_stochy_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/datm_cdeps_stochy_gefs Checking test 128 datm_cdeps_stochy_gefs 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.473886 -The maximum resident set size (KB) = 617932 +The total amount of wall time = 138.805939 +The maximum resident set size (KB) = 611600 Test 128 datm_cdeps_stochy_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/datm_cdeps_ciceC_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_ciceC_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/datm_cdeps_ciceC_cfsr Checking test 129 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.273692 -The maximum resident set size (KB) = 732908 +The total amount of wall time = 141.041676 +The maximum resident set size (KB) = 734976 Test 129 datm_cdeps_ciceC_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/datm_cdeps_bulk_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_bulk_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/datm_cdeps_bulk_cfsr Checking test 130 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.304039 -The maximum resident set size (KB) = 732892 +The total amount of wall time = 141.583841 +The maximum resident set size (KB) = 735228 Test 130 datm_cdeps_bulk_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/datm_cdeps_bulk_gefs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_bulk_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/datm_cdeps_bulk_gefs Checking test 131 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 133.521588 -The maximum resident set size (KB) = 614088 +The total amount of wall time = 134.869075 +The maximum resident set size (KB) = 611128 Test 131 datm_cdeps_bulk_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/datm_cdeps_mx025_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_mx025_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/datm_cdeps_mx025_cfsr Checking test 132 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -3915,14 +3915,14 @@ Checking test 132 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 431.594319 -The maximum resident set size (KB) = 573324 +The total amount of wall time = 429.183226 +The maximum resident set size (KB) = 574036 Test 132 datm_cdeps_mx025_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/datm_cdeps_mx025_gefs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_mx025_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/datm_cdeps_mx025_gefs Checking test 133 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -3931,64 +3931,64 @@ Checking test 133 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 426.658725 -The maximum resident set size (KB) = 546672 +The total amount of wall time = 427.539353 +The maximum resident set size (KB) = 548000 Test 133 datm_cdeps_mx025_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/datm_cdeps_multiple_files_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/datm_cdeps_multiple_files_cfsr Checking test 134 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.154056 -The maximum resident set size (KB) = 722108 +The total amount of wall time = 141.232065 +The maximum resident set size (KB) = 720448 Test 134 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/datm_cdeps_3072x1536_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/datm_cdeps_3072x1536_cfsr Checking test 135 datm_cdeps_3072x1536_cfsr 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 = 254.453866 -The maximum resident set size (KB) = 1981496 +The total amount of wall time = 256.502365 +The maximum resident set size (KB) = 1982836 Test 135 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_gfs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/datm_cdeps_gfs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_gfs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/datm_cdeps_gfs Checking test 136 datm_cdeps_gfs 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 = 255.200677 -The maximum resident set size (KB) = 1977420 +The total amount of wall time = 255.408607 +The maximum resident set size (KB) = 1980456 Test 136 datm_cdeps_gfs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/datm_cdeps_control_cfsr_faster +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/datm_cdeps_control_cfsr_faster Checking test 137 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.450425 -The maximum resident set size (KB) = 735728 +The total amount of wall time = 141.747059 +The maximum resident set size (KB) = 731260 Test 137 datm_cdeps_control_cfsr_faster PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/datm_cdeps_lnd_gswp3 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/datm_cdeps_lnd_gswp3 Checking test 138 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -3997,14 +3997,14 @@ Checking test 138 datm_cdeps_lnd_gswp3 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 = 21.876668 -The maximum resident set size (KB) = 236756 +The total amount of wall time = 22.069716 +The maximum resident set size (KB) = 226348 Test 138 datm_cdeps_lnd_gswp3 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/datm_cdeps_lnd_gswp3_rst +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/datm_cdeps_lnd_gswp3_rst Checking test 139 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4013,14 +4013,14 @@ Checking test 139 datm_cdeps_lnd_gswp3_rst 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.232562 -The maximum resident set size (KB) = 226704 +The total amount of wall time = 27.008970 +The maximum resident set size (KB) = 233092 Test 139 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_atmlnd_sbs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_p8_atmlnd_sbs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_atmlnd_sbs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_p8_atmlnd_sbs Checking test 140 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4105,14 +4105,14 @@ Checking test 140 control_p8_atmlnd_sbs 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 = 236.104200 -The maximum resident set size (KB) = 1539808 +The total amount of wall time = 236.357151 +The maximum resident set size (KB) = 1536564 Test 140 control_p8_atmlnd_sbs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_atmwav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/control_atmwav +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_atmwav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_atmwav Checking test 141 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4156,14 +4156,14 @@ Checking test 141 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -The total amount of wall time = 90.751755 -The maximum resident set size (KB) = 541780 +The total amount of wall time = 89.714566 +The maximum resident set size (KB) = 544784 Test 141 control_atmwav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/atmaero_control_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/atmaero_control_p8 Checking test 142 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4207,14 +4207,14 @@ Checking test 142 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 243.413700 -The maximum resident set size (KB) = 2813744 +The total amount of wall time = 245.381320 +The maximum resident set size (KB) = 2813340 Test 142 atmaero_control_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8_rad -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/atmaero_control_p8_rad +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/atmaero_control_p8_rad Checking test 143 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4258,14 +4258,14 @@ Checking test 143 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 280.914846 -The maximum resident set size (KB) = 2876824 +The total amount of wall time = 281.904121 +The maximum resident set size (KB) = 2873772 Test 143 atmaero_control_p8_rad PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/atmaero_control_p8_rad_micro +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad_micro +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/atmaero_control_p8_rad_micro Checking test 144 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4309,14 +4309,14 @@ Checking test 144 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 287.163127 -The maximum resident set size (KB) = 2883812 +The total amount of wall time = 288.154374 +The maximum resident set size (KB) = 2879840 Test 144 atmaero_control_p8_rad_micro PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_atmaq -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/regional_atmaq +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/regional_atmaq Checking test 145 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4332,14 +4332,14 @@ Checking test 145 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 667.126488 -The maximum resident set size (KB) = 1398428 +The total amount of wall time = 661.882354 +The maximum resident set size (KB) = 1400124 Test 145 regional_atmaq PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_atmaq_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/regional_atmaq_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/regional_atmaq_debug Checking test 146 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4353,14 +4353,14 @@ Checking test 146 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1442.937818 -The maximum resident set size (KB) = 1434824 +The total amount of wall time = 1439.230626 +The maximum resident set size (KB) = 1440192 Test 146 regional_atmaq_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_atmaq_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47224/regional_atmaq_faster +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/regional_atmaq_faster Checking test 147 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4376,12 +4376,12 @@ Checking test 147 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 651.396153 -The maximum resident set size (KB) = 1399024 +The total amount of wall time = 666.083553 +The maximum resident set size (KB) = 1404224 Test 147 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Tue Mar 7 16:57:16 UTC 2023 -Elapsed time: 01h:30m:25s. Have a nice day! +Thu Mar 9 15:20:42 UTC 2023 +Elapsed time: 01h:34m:17s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index 3a4dfc36aa8..edd49dcb6eb 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,21 +1,21 @@ -Sat Mar 4 08:38:19 MST 2023 +Wed Mar 8 09:40:28 MST 2023 Start Regression test -Compile 001 elapsed time 371 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 394 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 852 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 187 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 365 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 1064 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 852 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 854 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 636 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 564 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 345 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 012 elapsed time 298 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/control_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/control_c48 +Compile 001 elapsed time 373 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 402 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 856 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 190 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 360 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 1070 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 859 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 848 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 622 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 556 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 357 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 012 elapsed time 299 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/control_c48 +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/control_c48 Checking test 001 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -54,14 +54,14 @@ Checking test 001 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 819.857014 +0:The total amount of wall time = 824.440628 0:The maximum resident set size (KB) = 675608 -Test 001 control_c48 PASS Tries: 2 +Test 001 control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/control_stochy +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/control_stochy +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/control_stochy Checking test 002 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -72,14 +72,14 @@ Checking test 002 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 172.678311 -0:The maximum resident set size (KB) = 442620 +0:The total amount of wall time = 176.826358 +0:The maximum resident set size (KB) = 442648 Test 002 control_stochy PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/control_ras -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/control_ras +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/control_ras +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/control_ras Checking test 003 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -90,14 +90,14 @@ Checking test 003 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 293.391668 -0:The maximum resident set size (KB) = 452036 +0:The total amount of wall time = 293.678409 +0:The maximum resident set size (KB) = 452004 Test 003 control_ras PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/control_p8 +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/control_p8 Checking test 004 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -144,14 +144,14 @@ Checking test 004 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 309.759657 -0:The maximum resident set size (KB) = 1226000 +0:The total amount of wall time = 310.021046 +0:The maximum resident set size (KB) = 1225556 Test 004 control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/rap_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/rap_control Checking test 005 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -198,14 +198,14 @@ Checking test 005 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 714.611001 -0:The maximum resident set size (KB) = 791788 +0:The total amount of wall time = 716.599777 +0:The maximum resident set size (KB) = 791812 Test 005 rap_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/rap_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/rap_decomp Checking test 006 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -252,14 +252,14 @@ Checking test 006 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 721.729341 -0:The maximum resident set size (KB) = 791156 +0:The total amount of wall time = 721.883137 +0:The maximum resident set size (KB) = 791028 Test 006 rap_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/rap_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/rap_2threads Checking test 007 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -306,14 +306,14 @@ Checking test 007 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 664.456258 -0:The maximum resident set size (KB) = 863968 +0:The total amount of wall time = 662.599193 +0:The maximum resident set size (KB) = 864036 Test 007 rap_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/rap_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/rap_restart Checking test 008 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -352,14 +352,14 @@ Checking test 008 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 357.643260 -0:The maximum resident set size (KB) = 538620 +0:The total amount of wall time = 359.887123 +0:The maximum resident set size (KB) = 538688 Test 008 rap_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/rap_sfcdiff +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/rap_sfcdiff Checking test 009 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -406,14 +406,14 @@ Checking test 009 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 703.711335 -0:The maximum resident set size (KB) = 791676 +0:The total amount of wall time = 708.386958 +0:The maximum resident set size (KB) = 791560 Test 009 rap_sfcdiff PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/rap_sfcdiff_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/rap_sfcdiff_decomp Checking test 010 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -460,14 +460,14 @@ Checking test 010 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 719.026178 -0:The maximum resident set size (KB) = 790636 +0:The total amount of wall time = 720.789035 +0:The maximum resident set size (KB) = 790924 Test 010 rap_sfcdiff_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/rap_sfcdiff_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/rap_sfcdiff_restart Checking test 011 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -506,14 +506,14 @@ Checking test 011 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 533.144676 -0:The maximum resident set size (KB) = 543568 +0:The total amount of wall time = 530.612586 +0:The maximum resident set size (KB) = 543872 Test 011 rap_sfcdiff_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/hrrr_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/hrrr_control Checking test 012 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -560,14 +560,14 @@ Checking test 012 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 688.588470 -0:The maximum resident set size (KB) = 789252 +0:The total amount of wall time = 690.454761 +0:The maximum resident set size (KB) = 789124 Test 012 hrrr_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/hrrr_control_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/hrrr_control_2threads Checking test 013 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -614,14 +614,14 @@ Checking test 013 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 624.876571 -0:The maximum resident set size (KB) = 858800 +0:The total amount of wall time = 625.494007 +0:The maximum resident set size (KB) = 858760 Test 013 hrrr_control_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/hrrr_control_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/hrrr_control_decomp Checking test 014 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -668,14 +668,14 @@ Checking test 014 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 681.462360 -0:The maximum resident set size (KB) = 788280 +0:The total amount of wall time = 684.658902 +0:The maximum resident set size (KB) = 788472 Test 014 hrrr_control_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/hrrr_control_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/hrrr_control_restart Checking test 015 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -714,14 +714,14 @@ Checking test 015 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 518.868979 -0:The maximum resident set size (KB) = 539648 +0:The total amount of wall time = 513.766808 +0:The maximum resident set size (KB) = 540112 Test 015 hrrr_control_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/rrfs_v1beta -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/rrfs_v1beta +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_v1beta +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/rrfs_v1beta Checking test 016 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -768,14 +768,14 @@ Checking test 016 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 697.621199 -0:The maximum resident set size (KB) = 788296 +0:The total amount of wall time = 696.567278 +0:The maximum resident set size (KB) = 788488 Test 016 rrfs_v1beta PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/rrfs_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/rrfs_conus13km_hrrr_warm Checking test 017 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -784,14 +784,14 @@ Checking test 017 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 203.791159 -0:The maximum resident set size (KB) = 607276 +0:The total amount of wall time = 203.347105 +0:The maximum resident set size (KB) = 606764 Test 017 rrfs_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/rrfs_smoke_conus13km_hrrr_warm Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -800,14 +800,14 @@ Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 221.697144 -0:The maximum resident set size (KB) = 621240 +0:The total amount of wall time = 222.235199 +0:The maximum resident set size (KB) = 620912 Test 018 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/rrfs_conus13km_radar_tten_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_conus13km_radar_tten_warm +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/rrfs_conus13km_radar_tten_warm Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -816,14 +816,14 @@ Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 204.389916 -0:The maximum resident set size (KB) = 610080 +0:The total amount of wall time = 204.610876 +0:The maximum resident set size (KB) = 609516 Test 019 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/rrfs_conus13km_radar_tten_warm_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_conus13km_radar_tten_warm +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/rrfs_conus13km_radar_tten_warm_2threads Checking test 020 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -832,208 +832,208 @@ Checking test 020 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 130.578462 -0:The maximum resident set size (KB) = 629196 +0:The total amount of wall time = 132.244094 +0:The maximum resident set size (KB) = 628024 Test 020 rrfs_conus13km_radar_tten_warm_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/control_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/control_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/control_diag_debug +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/control_diag_debug Checking test 021 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 88.202541 -0:The maximum resident set size (KB) = 495372 +0:The total amount of wall time = 88.614296 +0:The maximum resident set size (KB) = 494824 Test 021 control_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/regional_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/regional_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/regional_debug +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/regional_debug Checking test 022 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 483.695324 -0:The maximum resident set size (KB) = 569428 +0:The total amount of wall time = 478.054598 +0:The maximum resident set size (KB) = 569548 Test 022 regional_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/rap_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_debug +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/rap_control_debug Checking test 023 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 150.466074 -0:The maximum resident set size (KB) = 808492 +0:The total amount of wall time = 150.189045 +0:The maximum resident set size (KB) = 808652 Test 023 rap_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/hrrr_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_debug +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/hrrr_control_debug Checking test 024 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 148.181270 -0:The maximum resident set size (KB) = 804564 +0:The total amount of wall time = 147.372037 +0:The maximum resident set size (KB) = 804500 Test 024 hrrr_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/rap_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/rap_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_diag_debug +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/rap_diag_debug Checking test 025 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 158.881257 -0:The maximum resident set size (KB) = 891792 +0:The total amount of wall time = 159.798912 +0:The maximum resident set size (KB) = 891604 Test 025 rap_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/rap_noah_sfcdiff_cires_ugwp_debug Checking test 026 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 242.377148 -0:The maximum resident set size (KB) = 807128 +0:The total amount of wall time = 239.166114 +0:The maximum resident set size (KB) = 806768 Test 026 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/rap_progcld_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/rap_progcld_thompson_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_progcld_thompson_debug +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/rap_progcld_thompson_debug Checking test 027 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 151.663807 -0:The maximum resident set size (KB) = 808500 +0:The total amount of wall time = 150.500044 +0:The maximum resident set size (KB) = 808596 Test 027 rap_progcld_thompson_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/rrfs_v1beta_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/rrfs_v1beta_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_v1beta_debug +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/rrfs_v1beta_debug Checking test 028 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 150.508055 -0:The maximum resident set size (KB) = 803676 +0:The total amount of wall time = 149.394566 +0:The maximum resident set size (KB) = 803764 Test 028 rrfs_v1beta_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/control_ras_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/control_ras_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/control_ras_debug +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/control_ras_debug Checking test 029 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 86.143585 -0:The maximum resident set size (KB) = 449260 +0:The total amount of wall time = 86.750733 +0:The maximum resident set size (KB) = 449064 Test 029 control_ras_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/control_stochy_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/control_stochy_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/control_stochy_debug +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/control_stochy_debug Checking test 030 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 93.797004 -0:The maximum resident set size (KB) = 441616 +0:The total amount of wall time = 93.542052 +0:The maximum resident set size (KB) = 441300 Test 030 control_stochy_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/control_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/control_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/control_debug_p8 +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/control_debug_p8 Checking test 031 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 95.532548 -0:The maximum resident set size (KB) = 1224856 +0:The total amount of wall time = 96.369629 +0:The maximum resident set size (KB) = 1224636 Test 031 control_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/rrfs_conus13km_hrrr_warm_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_conus13km_hrrr_warm_debugs +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/rrfs_conus13km_hrrr_warm_debug Checking test 032 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 390.928584 -0:The maximum resident set size (KB) = 614332 +0:The total amount of wall time = 386.648972 +0:The maximum resident set size (KB) = 613684 Test 032 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/rrfs_conus13km_radar_tten_warm_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/rrfs_conus13km_radar_tten_warm_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_conus13km_radar_tten_warm_debug +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/rrfs_conus13km_radar_tten_warm_debug Checking test 033 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 390.860446 -0:The maximum resident set size (KB) = 617212 +0:The total amount of wall time = 387.851091 +0:The maximum resident set size (KB) = 616476 Test 033 rrfs_conus13km_radar_tten_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/control_wam_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/control_wam_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/control_wam_debug +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/control_wam_debug Checking test 034 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 143.590719 -0:The maximum resident set size (KB) = 184876 +0:The total amount of wall time = 147.132594 +0:The maximum resident set size (KB) = 184428 Test 034 control_wam_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/rap_control_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/rap_control_dyn32_phy32 Checking test 035 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1080,14 +1080,14 @@ Checking test 035 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 685.378764 -0:The maximum resident set size (KB) = 672704 +0:The total amount of wall time = 686.838660 +0:The maximum resident set size (KB) = 673088 Test 035 rap_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/hrrr_control_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/hrrr_control_dyn32_phy32 Checking test 036 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1134,14 +1134,14 @@ Checking test 036 hrrr_control_dyn32_phy32 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 = 349.777034 -0:The maximum resident set size (KB) = 671128 +0:The total amount of wall time = 349.977048 +0:The maximum resident set size (KB) = 672020 Test 036 hrrr_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/rap_2threads_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/rap_2threads_dyn32_phy32 Checking test 037 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1188,14 +1188,14 @@ Checking test 037 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 624.954764 -0:The maximum resident set size (KB) = 718364 +0:The total amount of wall time = 625.744870 +0:The maximum resident set size (KB) = 718268 Test 037 rap_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/hrrr_control_2threads_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/hrrr_control_2threads_dyn32_phy32 Checking test 038 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1242,14 +1242,14 @@ Checking test 038 hrrr_control_2threads_dyn32_phy32 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 = 322.386264 -0:The maximum resident set size (KB) = 715480 +0:The total amount of wall time = 323.371820 +0:The maximum resident set size (KB) = 715488 Test 038 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/hrrr_control_decomp_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/hrrr_control_decomp_dyn32_phy32 Checking test 039 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1296,14 +1296,14 @@ Checking test 039 hrrr_control_decomp_dyn32_phy32 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 = 349.006373 -0:The maximum resident set size (KB) = 669944 +0:The total amount of wall time = 349.172747 +0:The maximum resident set size (KB) = 670404 Test 039 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/rap_restart_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/rap_restart_dyn32_phy32 Checking test 040 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1342,14 +1342,14 @@ Checking test 040 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 515.615044 -0:The maximum resident set size (KB) = 510748 +0:The total amount of wall time = 514.755627 +0:The maximum resident set size (KB) = 511216 Test 040 rap_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/hrrr_control_restart_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/hrrr_control_restart_dyn32_phy32 Checking test 041 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1388,14 +1388,14 @@ Checking test 041 hrrr_control_restart_dyn32_phy32 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 = 177.171304 -0:The maximum resident set size (KB) = 506608 +0:The total amount of wall time = 177.148864 +0:The maximum resident set size (KB) = 506772 Test 041 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/rap_control_dyn64_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_dyn64_phy32 +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/rap_control_dyn64_phy32 Checking test 042 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1442,56 +1442,56 @@ Checking test 042 rap_control_dyn64_phy32 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 = 408.006233 -0:The maximum resident set size (KB) = 692456 +0:The total amount of wall time = 412.148256 +0:The maximum resident set size (KB) = 693880 Test 042 rap_control_dyn64_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/rap_control_debug_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/rap_control_debug_dyn32_phy32 Checking test 043 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 148.655135 -0:The maximum resident set size (KB) = 690544 +0:The total amount of wall time = 148.864944 +0:The maximum resident set size (KB) = 690632 Test 043 rap_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/hrrr_control_debug_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/hrrr_control_debug_dyn32_phy32 Checking test 044 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 145.255934 -0:The maximum resident set size (KB) = 687520 +0:The total amount of wall time = 146.245798 +0:The maximum resident set size (KB) = 687604 Test 044 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/rap_control_dyn64_phy32_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_debug_dyn64_phy32 +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/rap_control_dyn64_phy32_debug Checking test 045 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 153.604413 -0:The maximum resident set size (KB) = 710928 +0:The total amount of wall time = 154.861299 +0:The maximum resident set size (KB) = 711024 Test 045 rap_control_dyn64_phy32_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/cpld_control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/cpld_control_p8 Checking test 046 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1556,14 +1556,14 @@ Checking test 046 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 501.393048 -0:The maximum resident set size (KB) = 3159468 +0:The total amount of wall time = 503.850329 +0:The maximum resident set size (KB) = 3159516 Test 046 cpld_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/cpld_control_nowave_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/cpld_control_c96_noaero_p8 +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/cpld_control_nowave_noaero_p8 Checking test 047 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1625,14 +1625,14 @@ Checking test 047 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 241.566172 -0:The maximum resident set size (KB) = 1240232 +0:The total amount of wall time = 254.203051 +0:The maximum resident set size (KB) = 1239768 Test 047 cpld_control_nowave_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/cpld_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/cpld_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/cpld_debug_p8 +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/cpld_debug_p8 Checking test 048 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1685,25 +1685,25 @@ Checking test 048 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 276.890711 -0:The maximum resident set size (KB) = 3177988 +0:The total amount of wall time = 277.754628 +0:The maximum resident set size (KB) = 3177700 Test 048 cpld_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/GNU/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_19755/datm_cdeps_control_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/datm_cdeps_control_cfsr +working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/datm_cdeps_control_cfsr Checking test 049 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 178.650270 -0:The maximum resident set size (KB) = 672536 +0:The total amount of wall time = 179.402468 +0:The maximum resident set size (KB) = 674556 Test 049 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Sat Mar 4 09:09:23 MST 2023 -Elapsed time: 00h:31m:04s. Have a nice day! +Wed Mar 8 10:17:15 MST 2023 +Elapsed time: 00h:36m:47s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index d898b6dc1ee..9d58891e775 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,42 +1,45 @@ -Sat Mar 4 08:23:21 MST 2023 +Wed Mar 8 07:52:36 MST 2023 Start Regression test -Compile 001 elapsed time 1459 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 1488 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 1367 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 426 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 383 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 1057 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 1060 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 1806 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 1024 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 985 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 924 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 782 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 1291 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 405 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Test 008 compile FAIL + +Test 008 compile FAIL + +Compile 001 elapsed time 1388 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1450 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 1360 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 433 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 379 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 1076 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 1087 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 1027 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 987 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 916 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 801 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 1262 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 406 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug Compile 015 elapsed time 257 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 813 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 825 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 259 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 818 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 822 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 274 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug Compile 019 elapsed time 269 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 1107 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 021 elapsed time 337 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 1572 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 1093 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 024 elapsed time 425 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 203 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 431 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 102 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 940 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 974 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 890 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 853 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 298 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 1013 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8_mixedmode -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/cpld_control_p8_mixedmode +Compile 020 elapsed time 1120 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 021 elapsed time 348 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 1564 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 1107 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 024 elapsed time 430 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 201 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 434 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 109 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 937 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 969 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 883 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 858 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 299 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 1025 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_mixedmode +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -101,14 +104,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 317.722084 -0:The maximum resident set size (KB) = 2698836 +0:The total amount of wall time = 319.764874 +0:The maximum resident set size (KB) = 2698756 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_gfsv17 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/cpld_control_gfsv17 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_gfsv17 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -172,14 +175,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 270.340850 -0:The maximum resident set size (KB) = 1437848 +0:The total amount of wall time = 286.897062 +0:The maximum resident set size (KB) = 1437628 Test 002 cpld_control_gfsv17 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/cpld_control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -244,14 +247,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 321.822290 -0:The maximum resident set size (KB) = 2716540 +0:The total amount of wall time = 324.232075 +0:The maximum resident set size (KB) = 2716500 Test 003 cpld_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/cpld_restart_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -304,14 +307,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 189.391220 -0:The maximum resident set size (KB) = 2577548 +0:The total amount of wall time = 193.400208 +0:The maximum resident set size (KB) = 2576828 Test 004 cpld_restart_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/cpld_2threads_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -364,14 +367,14 @@ Checking test 005 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 258.499484 -0:The maximum resident set size (KB) = 3176020 +0:The total amount of wall time = 259.582061 +0:The maximum resident set size (KB) = 3176256 Test 005 cpld_2threads_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/cpld_decomp_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/cpld_decomp_p8 Checking test 006 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -424,14 +427,14 @@ Checking test 006 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 321.368666 -0:The maximum resident set size (KB) = 2723724 +0:The total amount of wall time = 324.071740 +0:The maximum resident set size (KB) = 2721408 Test 006 cpld_decomp_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/cpld_mpi_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/cpld_mpi_p8 Checking test 007 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -484,14 +487,14 @@ Checking test 007 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 266.229434 -0:The maximum resident set size (KB) = 2682768 +0:The total amount of wall time = 270.034851 +0:The maximum resident set size (KB) = 2682656 -Test 007 cpld_mpi_p8 PASS Tries: 2 +Test 007 cpld_mpi_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_ciceC_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/cpld_control_ciceC_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_ciceC_p8 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/cpld_control_ciceC_p8 Checking test 008 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -556,14 +559,14 @@ Checking test 008 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 308.291230 -0:The maximum resident set size (KB) = 2716120 +0:The total amount of wall time = 323.834970 +0:The maximum resident set size (KB) = 2716464 Test 008 cpld_control_ciceC_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/cpld_control_c192_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c192_p8 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/cpld_control_c192_p8 Checking test 009 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -616,14 +619,14 @@ Checking test 009 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -0:The total amount of wall time = 762.507311 -0:The maximum resident set size (KB) = 3348220 +0:The total amount of wall time = 797.878761 +0:The maximum resident set size (KB) = 3348412 Test 009 cpld_control_c192_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/cpld_restart_c192_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c192_p8 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/cpld_restart_c192_p8 Checking test 010 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -676,14 +679,14 @@ Checking test 010 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -0:The total amount of wall time = 418.359945 -0:The maximum resident set size (KB) = 3271936 +0:The total amount of wall time = 445.663162 +0:The maximum resident set size (KB) = 3272024 Test 010 cpld_restart_c192_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/cpld_control_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/cpld_control_noaero_p8 Checking test 011 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -747,14 +750,14 @@ Checking test 011 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 283.473380 -0:The maximum resident set size (KB) = 1436136 +0:The total amount of wall time = 297.129627 +0:The maximum resident set size (KB) = 1436396 Test 011 cpld_control_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/cpld_control_nowave_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c96_noaero_p8 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/cpld_control_nowave_noaero_p8 Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -816,14 +819,14 @@ Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 185.859407 -0:The maximum resident set size (KB) = 1452360 +0:The total amount of wall time = 196.356868 +0:The maximum resident set size (KB) = 1452420 Test 012 cpld_control_nowave_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/cpld_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_debug_p8 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/cpld_debug_p8 Checking test 013 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -876,14 +879,14 @@ Checking test 013 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 472.840231 -0:The maximum resident set size (KB) = 2788276 +0:The total amount of wall time = 474.638104 +0:The maximum resident set size (KB) = 2788156 Test 013 cpld_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_debug_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/cpld_debug_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_debug_noaero_p8 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/cpld_debug_noaero_p8 Checking test 014 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -935,14 +938,14 @@ Checking test 014 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 348.987118 -0:The maximum resident set size (KB) = 1460684 +0:The total amount of wall time = 350.390380 +0:The maximum resident set size (KB) = 1460504 Test 014 cpld_debug_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_noaero_p8_agrid -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/cpld_control_noaero_p8_agrid +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8_agrid +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/cpld_control_noaero_p8_agrid Checking test 015 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1004,14 +1007,14 @@ Checking test 015 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 242.527548 -0:The maximum resident set size (KB) = 1455960 +0:The total amount of wall time = 277.132353 +0:The maximum resident set size (KB) = 1455992 Test 015 cpld_control_noaero_p8_agrid PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/cpld_control_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c48 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/cpld_control_c48 Checking test 016 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1061,14 +1064,14 @@ Checking test 016 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 600.470886 -0:The maximum resident set size (KB) = 2580324 +0:The total amount of wall time = 606.277361 +0:The maximum resident set size (KB) = 2580396 Test 016 cpld_control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/cpld_warmstart_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/cpld_warmstart_c48 Checking test 017 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1118,14 +1121,14 @@ Checking test 017 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -0:The total amount of wall time = 161.591394 -0:The maximum resident set size (KB) = 2599008 +0:The total amount of wall time = 161.530110 +0:The maximum resident set size (KB) = 2598908 Test 017 cpld_warmstart_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/cpld_restart_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/cpld_restart_c48 Checking test 018 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1175,86 +1178,14 @@ Checking test 018 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -0:The total amount of wall time = 85.626264 -0:The maximum resident set size (KB) = 2015892 +0:The total amount of wall time = 84.386872 +0:The maximum resident set size (KB) = 2016028 Test 018 cpld_restart_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8_faster -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/cpld_control_p8_faster -Checking test 019 cpld_control_p8_faster results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -0:The total amount of wall time = 297.608858 -0:The maximum resident set size (KB) = 2716424 - -Test 019 cpld_control_p8_faster PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_CubedSphereGrid +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_CubedSphereGrid Checking test 020 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1281,28 +1212,28 @@ Checking test 020 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -0:The total amount of wall time = 142.099496 -0:The maximum resident set size (KB) = 456784 +0:The total amount of wall time = 142.481044 +0:The maximum resident set size (KB) = 456792 Test 020 control_CubedSphereGrid PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid_parallel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_CubedSphereGrid_parallel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid_parallel +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_CubedSphereGrid_parallel Checking test 021 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK -0:The total amount of wall time = 140.013545 -0:The maximum resident set size (KB) = 456728 +0:The total amount of wall time = 139.228397 +0:The maximum resident set size (KB) = 456860 Test 021 control_CubedSphereGrid_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_latlon -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_latlon +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_latlon +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_latlon Checking test 022 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1313,32 +1244,32 @@ Checking test 022 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 142.687242 -0:The maximum resident set size (KB) = 456760 +0:The total amount of wall time = 147.198123 +0:The maximum resident set size (KB) = 456784 Test 022 control_latlon PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wrtGauss_netcdf_parallel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_wrtGauss_netcdf_parallel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_wrtGauss_netcdf_parallel Checking test 023 control_wrtGauss_netcdf_parallel results .... - Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 145.084582 -0:The maximum resident set size (KB) = 456888 +0:The total amount of wall time = 149.425568 +0:The maximum resident set size (KB) = 456632 Test 023 control_wrtGauss_netcdf_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c48 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_c48 Checking test 024 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1377,14 +1308,14 @@ Checking test 024 control_c48 results .... Comparing 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.004720 -0:The maximum resident set size (KB) = 628912 +0:The total amount of wall time = 444.291297 +0:The maximum resident set size (KB) = 628928 Test 024 control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c192 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_c192 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c192 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_c192 Checking test 025 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1395,14 +1326,14 @@ Checking test 025 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 591.231468 -0:The maximum resident set size (KB) = 557052 +0:The total amount of wall time = 597.132792 +0:The maximum resident set size (KB) = 557028 Test 025 control_c192 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c384 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_c384 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_c384 Checking test 026 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1413,14 +1344,14 @@ Checking test 026 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 602.971556 -0:The maximum resident set size (KB) = 889576 +0:The total amount of wall time = 603.043463 +0:The maximum resident set size (KB) = 891052 Test 026 control_c384 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c384gdas -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_c384gdas +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384gdas +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_c384gdas Checking test 027 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1463,14 +1394,14 @@ Checking test 027 control_c384gdas 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 = 533.105788 -0:The maximum resident set size (KB) = 1015040 +0:The total amount of wall time = 530.180295 +0:The maximum resident set size (KB) = 1016128 Test 027 control_c384gdas PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_stochy +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_stochy Checking test 028 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1481,28 +1412,28 @@ Checking test 028 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 96.687827 -0:The maximum resident set size (KB) = 455060 +0:The total amount of wall time = 98.435793 +0:The maximum resident set size (KB) = 455096 Test 028 control_stochy PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_stochy_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_stochy_restart Checking test 029 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 51.809516 -0:The maximum resident set size (KB) = 225852 +0:The total amount of wall time = 52.078760 +0:The maximum resident set size (KB) = 225996 Test 029 control_stochy_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_lndp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_lndp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_lndp Checking test 030 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1513,14 +1444,14 @@ Checking test 030 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 89.277545 -0:The maximum resident set size (KB) = 456448 +0:The total amount of wall time = 90.672073 +0:The maximum resident set size (KB) = 456672 Test 030 control_lndp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_iovr4 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_iovr4 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr4 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_iovr4 Checking test 031 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1535,14 +1466,14 @@ Checking test 031 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 147.812813 -0:The maximum resident set size (KB) = 456608 +0:The total amount of wall time = 149.741960 +0:The maximum resident set size (KB) = 456800 Test 031 control_iovr4 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_iovr5 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_iovr5 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr5 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_iovr5 Checking test 032 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1557,14 +1488,14 @@ Checking test 032 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 148.119698 -0:The maximum resident set size (KB) = 456668 +0:The total amount of wall time = 146.957344 +0:The maximum resident set size (KB) = 456796 Test 032 control_iovr5 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_p8 Checking test 033 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1611,14 +1542,14 @@ Checking test 033 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 179.282302 -0:The maximum resident set size (KB) = 1422884 +0:The total amount of wall time = 180.878236 +0:The maximum resident set size (KB) = 1422872 Test 033 control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_lndp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_p8_lndp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_lndp +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_p8_lndp Checking test 034 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1637,14 +1568,14 @@ Checking test 034 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -0:The total amount of wall time = 334.711042 -0:The maximum resident set size (KB) = 1423132 +0:The total amount of wall time = 339.227094 +0:The maximum resident set size (KB) = 1423164 Test 034 control_p8_lndp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_restart_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_restart_p8 Checking test 035 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1683,14 +1614,14 @@ Checking test 035 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 94.672963 -0:The maximum resident set size (KB) = 582332 +0:The total amount of wall time = 95.799222 +0:The maximum resident set size (KB) = 582372 Test 035 control_restart_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_decomp_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_decomp_p8 Checking test 036 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1733,14 +1664,14 @@ Checking test 036 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 182.225274 -0:The maximum resident set size (KB) = 1416972 +0:The total amount of wall time = 194.649807 +0:The maximum resident set size (KB) = 1417092 Test 036 control_decomp_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_2threads_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_2threads_p8 Checking test 037 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1783,14 +1714,14 @@ Checking test 037 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 178.255161 -0:The maximum resident set size (KB) = 1505192 +0:The total amount of wall time = 180.265070 +0:The maximum resident set size (KB) = 1505088 Test 037 control_2threads_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_rrtmgp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_p8_rrtmgp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_rrtmgp +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_p8_rrtmgp Checking test 038 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1837,14 +1768,14 @@ Checking test 038 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 245.275882 -0:The maximum resident set size (KB) = 1480740 +0:The total amount of wall time = 254.061013 +0:The maximum resident set size (KB) = 1480704 Test 038 control_p8_rrtmgp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/merra2_thompson -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/merra2_thompson +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/merra2_thompson +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/merra2_thompson Checking test 039 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1891,14 +1822,14 @@ Checking test 039 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 205.938607 -0:The maximum resident set size (KB) = 1429764 +0:The total amount of wall time = 208.419096 +0:The maximum resident set size (KB) = 1429788 Test 039 merra2_thompson PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/regional_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/regional_control Checking test 040 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1909,28 +1840,28 @@ Checking test 040 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 344.556918 -0:The maximum resident set size (KB) = 603156 +0:The total amount of wall time = 344.138523 +0:The maximum resident set size (KB) = 603116 Test 040 regional_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/regional_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/regional_restart Checking test 041 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 175.722348 -0:The maximum resident set size (KB) = 593552 +0:The total amount of wall time = 176.510547 +0:The maximum resident set size (KB) = 593548 Test 041 regional_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/regional_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/regional_decomp Checking test 042 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1941,14 +1872,14 @@ Checking test 042 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 355.486435 -0:The maximum resident set size (KB) = 597236 +0:The total amount of wall time = 364.601721 +0:The maximum resident set size (KB) = 597240 Test 042 regional_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/regional_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/regional_2threads Checking test 043 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1959,14 +1890,14 @@ Checking test 043 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 211.377373 -0:The maximum resident set size (KB) = 609772 +0:The total amount of wall time = 209.276611 +0:The maximum resident set size (KB) = 609752 Test 043 regional_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_noquilt -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/regional_noquilt +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_noquilt +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/regional_noquilt Checking test 044 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1974,28 +1905,28 @@ Checking test 044 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -0:The total amount of wall time = 366.804398 -0:The maximum resident set size (KB) = 597604 +0:The total amount of wall time = 369.014614 +0:The maximum resident set size (KB) = 597632 Test 044 regional_noquilt PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_netcdf_parallel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/regional_netcdf_parallel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_netcdf_parallel +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/regional_netcdf_parallel Checking test 045 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK + Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf006.nc ............ALT CHECK......OK -0:The total amount of wall time = 340.073684 -0:The maximum resident set size (KB) = 595104 +0:The total amount of wall time = 344.770467 +0:The maximum resident set size (KB) = 595076 Test 045 regional_netcdf_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/regional_2dwrtdecomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/regional_2dwrtdecomp Checking test 046 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2006,14 +1937,14 @@ Checking test 046 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 341.303978 -0:The maximum resident set size (KB) = 603112 +0:The total amount of wall time = 347.526502 +0:The maximum resident set size (KB) = 603168 Test 046 regional_2dwrtdecomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/fv3_regional_wofs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/regional_wofs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/fv3_regional_wofs +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/regional_wofs Checking test 047 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2024,14 +1955,14 @@ Checking test 047 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 423.402039 -0:The maximum resident set size (KB) = 274532 +0:The total amount of wall time = 427.166258 +0:The maximum resident set size (KB) = 274564 Test 047 regional_wofs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rap_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rap_control Checking test 048 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2078,14 +2009,14 @@ Checking test 048 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 476.594972 -0:The maximum resident set size (KB) = 826128 +0:The total amount of wall time = 474.172232 +0:The maximum resident set size (KB) = 826476 Test 048 rap_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_spp_sppt_shum_skeb -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/regional_spp_sppt_shum_skeb +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/regional_spp_sppt_shum_skeb Checking test 049 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2096,14 +2027,14 @@ Checking test 049 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 324.832869 -0:The maximum resident set size (KB) = 949156 +0:The total amount of wall time = 325.298543 +0:The maximum resident set size (KB) = 949272 Test 049 regional_spp_sppt_shum_skeb PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rap_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rap_decomp Checking test 050 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2150,14 +2081,14 @@ Checking test 050 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 502.614591 -0:The maximum resident set size (KB) = 823608 +0:The total amount of wall time = 499.846370 +0:The maximum resident set size (KB) = 823680 Test 050 rap_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rap_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rap_2threads Checking test 051 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2204,14 +2135,14 @@ Checking test 051 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 464.918130 -0:The maximum resident set size (KB) = 892672 +0:The total amount of wall time = 469.702290 +0:The maximum resident set size (KB) = 892632 Test 051 rap_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rap_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rap_restart Checking test 052 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2250,14 +2181,14 @@ Checking test 052 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 243.467605 -0:The maximum resident set size (KB) = 572892 +0:The total amount of wall time = 241.521778 +0:The maximum resident set size (KB) = 572740 Test 052 rap_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rap_sfcdiff +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rap_sfcdiff Checking test 053 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2304,14 +2235,14 @@ Checking test 053 rap_sfcdiff results .... Comparing 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.868210 -0:The maximum resident set size (KB) = 826424 +0:The total amount of wall time = 466.318682 +0:The maximum resident set size (KB) = 826452 Test 053 rap_sfcdiff PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rap_sfcdiff_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rap_sfcdiff_decomp Checking test 054 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2358,14 +2289,14 @@ Checking test 054 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 496.095295 -0:The maximum resident set size (KB) = 825492 +0:The total amount of wall time = 496.741837 +0:The maximum resident set size (KB) = 825532 Test 054 rap_sfcdiff_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rap_sfcdiff_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rap_sfcdiff_restart Checking test 055 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2404,14 +2335,14 @@ Checking test 055 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 351.347619 -0:The maximum resident set size (KB) = 570012 +0:The total amount of wall time = 354.622434 +0:The maximum resident set size (KB) = 570140 Test 055 rap_sfcdiff_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hrrr_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hrrr_control Checking test 056 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2458,14 +2389,14 @@ Checking test 056 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 450.438606 -0:The maximum resident set size (KB) = 821232 +0:The total amount of wall time = 453.301928 +0:The maximum resident set size (KB) = 821596 Test 056 hrrr_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hrrr_control_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hrrr_control_decomp Checking test 057 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2512,14 +2443,14 @@ Checking test 057 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 470.187691 -0:The maximum resident set size (KB) = 820272 +0:The total amount of wall time = 480.925779 +0:The maximum resident set size (KB) = 820388 Test 057 hrrr_control_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hrrr_control_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hrrr_control_2threads Checking test 058 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2566,14 +2497,14 @@ Checking test 058 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 433.263719 -0:The maximum resident set size (KB) = 887436 +0:The total amount of wall time = 432.803841 +0:The maximum resident set size (KB) = 888012 Test 058 hrrr_control_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hrrr_control_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hrrr_control_restart Checking test 059 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2612,14 +2543,14 @@ Checking test 059 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 340.978060 -0:The maximum resident set size (KB) = 568804 +0:The total amount of wall time = 342.513922 +0:The maximum resident set size (KB) = 568828 Test 059 hrrr_control_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1beta -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rrfs_v1beta +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rrfs_v1beta Checking test 060 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2666,14 +2597,14 @@ Checking test 060 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 462.804237 -0:The maximum resident set size (KB) = 820012 +0:The total amount of wall time = 455.419895 +0:The maximum resident set size (KB) = 820024 Test 060 rrfs_v1beta PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1nssl -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rrfs_v1nssl +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rrfs_v1nssl Checking test 061 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2688,14 +2619,14 @@ Checking test 061 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 572.240929 -0:The maximum resident set size (KB) = 508236 +0:The total amount of wall time = 575.110996 +0:The maximum resident set size (KB) = 508324 Test 061 rrfs_v1nssl PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rrfs_v1nssl_nohailnoccn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rrfs_v1nssl_nohailnoccn Checking test 062 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2710,14 +2641,14 @@ Checking test 062 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 552.951471 -0:The maximum resident set size (KB) = 501328 +0:The total amount of wall time = 558.830331 +0:The maximum resident set size (KB) = 501304 Test 062 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rrfs_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rrfs_conus13km_hrrr_warm Checking test 063 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2726,14 +2657,14 @@ Checking test 063 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 127.891040 -0:The maximum resident set size (KB) = 639128 +0:The total amount of wall time = 128.523263 +0:The maximum resident set size (KB) = 639096 Test 063 rrfs_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rrfs_smoke_conus13km_hrrr_warm Checking test 064 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2742,14 +2673,14 @@ Checking test 064 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 144.427211 -0:The maximum resident set size (KB) = 652900 +0:The total amount of wall time = 145.404911 +0:The maximum resident set size (KB) = 652796 Test 064 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rrfs_conus13km_radar_tten_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rrfs_conus13km_radar_tten_warm Checking test 065 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2758,14 +2689,14 @@ Checking test 065 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 129.149558 -0:The maximum resident set size (KB) = 641228 +0:The total amount of wall time = 129.005964 +0:The maximum resident set size (KB) = 641024 Test 065 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rrfs_conus13km_hrrr_warm_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rrfs_conus13km_hrrr_warm_2threads Checking test 066 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2774,14 +2705,14 @@ Checking test 066 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 81.714783 -0:The maximum resident set size (KB) = 655560 +0:The total amount of wall time = 81.553036 +0:The maximum resident set size (KB) = 655352 Test 066 rrfs_conus13km_hrrr_warm_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rrfs_conus13km_radar_tten_warm_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rrfs_conus13km_radar_tten_warm_2threads Checking test 067 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2790,14 +2721,14 @@ Checking test 067 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 82.059368 -0:The maximum resident set size (KB) = 658700 +0:The total amount of wall time = 81.308455 +0:The maximum resident set size (KB) = 659160 Test 067 rrfs_conus13km_radar_tten_warm_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmg -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_csawmg +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_csawmg Checking test 068 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2808,14 +2739,14 @@ Checking test 068 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 396.816318 -0:The maximum resident set size (KB) = 528988 +0:The total amount of wall time = 397.699017 +0:The maximum resident set size (KB) = 529012 Test 068 control_csawmg PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmgt -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_csawmgt +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_csawmgt Checking test 069 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2826,14 +2757,14 @@ Checking test 069 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 377.641087 -0:The maximum resident set size (KB) = 529024 +0:The total amount of wall time = 391.307898 +0:The maximum resident set size (KB) = 529016 Test 069 control_csawmgt PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_ras -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_ras +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_ras Checking test 070 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2844,26 +2775,26 @@ Checking test 070 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 204.167107 -0:The maximum resident set size (KB) = 487632 +0:The total amount of wall time = 204.705731 +0:The maximum resident set size (KB) = 487808 Test 070 control_ras PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wam -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_wam +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_wam Checking test 071 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -0:The total amount of wall time = 128.554951 -0:The maximum resident set size (KB) = 205452 +0:The total amount of wall time = 129.184031 +0:The maximum resident set size (KB) = 205612 Test 071 control_wam PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_faster -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_p8_faster +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_faster +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_p8_faster Checking test 072 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2910,14 +2841,14 @@ Checking test 072 control_p8_faster results .... Comparing 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.775495 -0:The maximum resident set size (KB) = 1422792 +0:The total amount of wall time = 171.617245 +0:The maximum resident set size (KB) = 1422764 Test 072 control_p8_faster PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control_faster -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/regional_control_faster +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control_faster +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/regional_control_faster Checking test 073 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2928,42 +2859,42 @@ Checking test 073 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 321.816301 -0:The maximum resident set size (KB) = 603020 +0:The total amount of wall time = 323.691585 +0:The maximum resident set size (KB) = 603048 Test 073 regional_control_faster PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rrfs_conus13km_hrrr_warm_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rrfs_conus13km_hrrr_warm_debug Checking test 074 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 782.075153 -0:The maximum resident set size (KB) = 672196 +0:The total amount of wall time = 766.531668 +0:The maximum resident set size (KB) = 672144 Test 074 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rrfs_conus13km_radar_tten_warm_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm_debug +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rrfs_conus13km_radar_tten_warm_debug Checking test 075 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 765.432647 -0:The maximum resident set size (KB) = 673992 +0:The total amount of wall time = 766.863624 +0:The maximum resident set size (KB) = 673940 Test 075 rrfs_conus13km_radar_tten_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_CubedSphereGrid_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid_debug +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_CubedSphereGrid_debug Checking test 076 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2990,334 +2921,334 @@ Checking test 076 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -0:The total amount of wall time = 175.172002 -0:The maximum resident set size (KB) = 621536 +0:The total amount of wall time = 174.774392 +0:The maximum resident set size (KB) = 621612 Test 076 control_CubedSphereGrid_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_wrtGauss_netcdf_parallel_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_wrtGauss_netcdf_parallel_debug Checking test 077 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 162.981028 -0:The maximum resident set size (KB) = 621404 +0:The total amount of wall time = 163.204019 +0:The maximum resident set size (KB) = 621344 Test 077 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_stochy_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy_debug +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_stochy_debug Checking test 078 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 182.777546 -0:The maximum resident set size (KB) = 624960 +0:The total amount of wall time = 184.674395 +0:The maximum resident set size (KB) = 625128 Test 078 control_stochy_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_lndp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_lndp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp_debug +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_lndp_debug Checking test 079 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 165.865602 -0:The maximum resident set size (KB) = 627200 +0:The total amount of wall time = 165.369379 +0:The maximum resident set size (KB) = 627056 Test 079 control_lndp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmg_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_csawmg_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg_debug +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_csawmg_debug Checking test 080 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 256.479685 -0:The maximum resident set size (KB) = 671324 +0:The total amount of wall time = 257.832407 +0:The maximum resident set size (KB) = 671408 Test 080 control_csawmg_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmgt_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_csawmgt_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt_debug +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_csawmgt_debug Checking test 081 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 252.946069 -0:The maximum resident set size (KB) = 671068 +0:The total amount of wall time = 253.427256 +0:The maximum resident set size (KB) = 671112 Test 081 control_csawmgt_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_ras_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_ras_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras_debug +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_ras_debug Checking test 082 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 166.888112 -0:The maximum resident set size (KB) = 632380 +0:The total amount of wall time = 167.932174 +0:The maximum resident set size (KB) = 632608 Test 082 control_ras_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_diag_debug +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_diag_debug Checking test 083 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 168.771127 -0:The maximum resident set size (KB) = 677988 +0:The total amount of wall time = 169.401338 +0:The maximum resident set size (KB) = 677884 Test 083 control_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_debug_p8 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_debug_p8 Checking test 084 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 182.516230 -0:The maximum resident set size (KB) = 1444192 +0:The total amount of wall time = 184.352772 +0:The maximum resident set size (KB) = 1444220 Test 084 control_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/regional_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_debug +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/regional_debug Checking test 085 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 1040.203057 -0:The maximum resident set size (KB) = 628948 +0:The total amount of wall time = 1040.777286 +0:The maximum resident set size (KB) = 629040 Test 085 regional_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rap_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rap_control_debug Checking test 086 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 295.070471 -0:The maximum resident set size (KB) = 989928 +0:The total amount of wall time = 300.049687 +0:The maximum resident set size (KB) = 989988 Test 086 rap_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hrrr_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hrrr_control_debug Checking test 087 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 290.063815 -0:The maximum resident set size (KB) = 988752 +0:The total amount of wall time = 291.051650 +0:The maximum resident set size (KB) = 988888 Test 087 hrrr_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rap_unified_drag_suite_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rap_unified_drag_suite_debug Checking test 088 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 295.610239 -0:The maximum resident set size (KB) = 989888 +0:The total amount of wall time = 296.002978 +0:The maximum resident set size (KB) = 989976 Test 088 rap_unified_drag_suite_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rap_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_diag_debug +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rap_diag_debug Checking test 089 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 308.696843 -0:The maximum resident set size (KB) = 1074148 +0:The total amount of wall time = 308.903752 +0:The maximum resident set size (KB) = 1074116 Test 089 rap_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rap_cires_ugwp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rap_cires_ugwp_debug Checking test 090 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 300.259180 -0:The maximum resident set size (KB) = 988628 +0:The total amount of wall time = 301.045473 +0:The maximum resident set size (KB) = 988664 Test 090 rap_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rap_unified_ugwp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rap_unified_ugwp_debug Checking test 091 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 300.759613 -0:The maximum resident set size (KB) = 991912 +0:The total amount of wall time = 301.872070 +0:The maximum resident set size (KB) = 991944 Test 091 rap_unified_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_lndp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rap_lndp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_lndp_debug +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rap_lndp_debug Checking test 092 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 297.447274 -0:The maximum resident set size (KB) = 990764 +0:The total amount of wall time = 298.054004 +0:The maximum resident set size (KB) = 990704 Test 092 rap_lndp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_flake_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rap_flake_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_flake_debug +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rap_flake_debug Checking test 093 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 296.749096 -0:The maximum resident set size (KB) = 989964 +0:The total amount of wall time = 295.566928 +0:The maximum resident set size (KB) = 989928 Test 093 rap_flake_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_progcld_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rap_progcld_thompson_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_progcld_thompson_debug +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rap_progcld_thompson_debug Checking test 094 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 294.823381 -0:The maximum resident set size (KB) = 989840 +0:The total amount of wall time = 295.159483 +0:The maximum resident set size (KB) = 990204 Test 094 rap_progcld_thompson_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_noah_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rap_noah_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_debug +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rap_noah_debug Checking test 095 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 288.798690 -0:The maximum resident set size (KB) = 988496 +0:The total amount of wall time = 288.599234 +0:The maximum resident set size (KB) = 988488 Test 095 rap_noah_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rap_sfcdiff_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff_debug +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rap_sfcdiff_debug Checking test 096 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 295.600824 -0:The maximum resident set size (KB) = 991336 +0:The total amount of wall time = 296.505569 +0:The maximum resident set size (KB) = 991308 Test 096 rap_sfcdiff_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rap_noah_sfcdiff_cires_ugwp_debug Checking test 097 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 479.818064 -0:The maximum resident set size (KB) = 989440 +0:The total amount of wall time = 480.570032 +0:The maximum resident set size (KB) = 989468 Test 097 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1beta_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rrfs_v1beta_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta_debug +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rrfs_v1beta_debug Checking test 098 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 291.424848 -0:The maximum resident set size (KB) = 986352 +0:The total amount of wall time = 290.792431 +0:The maximum resident set size (KB) = 986400 Test 098 rrfs_v1beta_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wam_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_wam_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam_debug +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_wam_debug Checking test 099 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 297.511233 -0:The maximum resident set size (KB) = 239064 +0:The total amount of wall time = 296.683706 +0:The maximum resident set size (KB) = 238904 Test 099 control_wam_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 100 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3328,14 +3259,14 @@ Checking test 100 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 306.565424 -0:The maximum resident set size (KB) = 848296 +0:The total amount of wall time = 304.542986 +0:The maximum resident set size (KB) = 848320 Test 100 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rap_control_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rap_control_dyn32_phy32 Checking test 101 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3382,14 +3313,14 @@ Checking test 101 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 420.274253 -0:The maximum resident set size (KB) = 707012 +0:The total amount of wall time = 384.995312 +0:The maximum resident set size (KB) = 707108 Test 101 rap_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hrrr_control_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hrrr_control_dyn32_phy32 Checking test 102 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3436,14 +3367,14 @@ Checking test 102 hrrr_control_dyn32_phy32 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 = 201.013142 -0:The maximum resident set size (KB) = 705432 +0:The total amount of wall time = 206.197651 +0:The maximum resident set size (KB) = 705460 Test 102 hrrr_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rap_2threads_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rap_2threads_dyn32_phy32 Checking test 103 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3490,14 +3421,14 @@ Checking test 103 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 373.639096 -0:The maximum resident set size (KB) = 757200 +0:The total amount of wall time = 378.214873 +0:The maximum resident set size (KB) = 757080 Test 103 rap_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hrrr_control_2threads_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hrrr_control_2threads_dyn32_phy32 Checking test 104 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3544,14 +3475,14 @@ Checking test 104 hrrr_control_2threads_dyn32_phy32 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 = 200.714289 -0:The maximum resident set size (KB) = 758400 +0:The total amount of wall time = 201.481628 +0:The maximum resident set size (KB) = 758252 Test 104 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hrrr_control_decomp_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hrrr_control_decomp_dyn32_phy32 Checking test 105 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3598,14 +3529,14 @@ Checking test 105 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 214.956014 -0:The maximum resident set size (KB) = 703956 +0:The total amount of wall time = 215.882832 +0:The maximum resident set size (KB) = 704004 Test 105 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rap_restart_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rap_restart_dyn32_phy32 Checking test 106 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3644,14 +3575,14 @@ Checking test 106 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 290.381455 -0:The maximum resident set size (KB) = 544784 +0:The total amount of wall time = 291.975477 +0:The maximum resident set size (KB) = 544688 Test 106 rap_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hrrr_control_restart_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hrrr_control_restart_dyn32_phy32 Checking test 107 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3690,14 +3621,14 @@ Checking test 107 hrrr_control_restart_dyn32_phy32 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 = 105.121739 -0:The maximum resident set size (KB) = 536724 +0:The total amount of wall time = 105.076574 +0:The maximum resident set size (KB) = 536692 Test 107 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rap_control_dyn64_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn64_phy32 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rap_control_dyn64_phy32 Checking test 108 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3744,81 +3675,81 @@ Checking test 108 rap_control_dyn64_phy32 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 = 267.283074 -0:The maximum resident set size (KB) = 726904 +0:The total amount of wall time = 269.557617 +0:The maximum resident set size (KB) = 726892 Test 108 rap_control_dyn64_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rap_control_debug_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rap_control_debug_dyn32_phy32 Checking test 109 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 290.893100 -0:The maximum resident set size (KB) = 876152 +0:The total amount of wall time = 290.888612 +0:The maximum resident set size (KB) = 876224 Test 109 rap_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hrrr_control_debug_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hrrr_control_debug_dyn32_phy32 Checking test 110 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 285.577056 -0:The maximum resident set size (KB) = 874344 +0:The total amount of wall time = 286.647071 +0:The maximum resident set size (KB) = 874384 Test 110 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/rap_control_dyn64_phy32_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn64_phy32 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rap_control_dyn64_phy32_debug Checking test 111 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 294.938910 -0:The maximum resident set size (KB) = 893436 +0:The total amount of wall time = 296.425349 +0:The maximum resident set size (KB) = 893456 Test 111 rap_control_dyn64_phy32_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hafs_regional_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hafs_regional_atm Checking test 112 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -0:The total amount of wall time = 261.575767 -0:The maximum resident set size (KB) = 739256 +0:The total amount of wall time = 301.903872 +0:The maximum resident set size (KB) = 739668 Test 112 hafs_regional_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hafs_regional_atm_thompson_gfdlsf +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hafs_regional_atm_thompson_gfdlsf Checking test 113 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -0:The total amount of wall time = 288.951753 -0:The maximum resident set size (KB) = 1090792 +0:The total amount of wall time = 296.871184 +0:The maximum resident set size (KB) = 1091316 Test 113 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_ocn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hafs_regional_atm_ocn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hafs_regional_atm_ocn Checking test 114 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3827,14 +3758,14 @@ Checking test 114 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 425.216095 -0:The maximum resident set size (KB) = 738620 +0:The total amount of wall time = 455.140143 +0:The maximum resident set size (KB) = 738460 Test 114 hafs_regional_atm_ocn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_wav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hafs_regional_atm_wav +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_wav +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hafs_regional_atm_wav Checking test 115 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3843,14 +3774,14 @@ Checking test 115 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 985.167845 -0:The maximum resident set size (KB) = 765892 +0:The total amount of wall time = 1071.036248 +0:The maximum resident set size (KB) = 766064 Test 115 hafs_regional_atm_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_ocn_wav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hafs_regional_atm_ocn_wav +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn_wav +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hafs_regional_atm_ocn_wav Checking test 116 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3861,28 +3792,28 @@ Checking test 116 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 1096.268846 -0:The maximum resident set size (KB) = 789812 +0:The total amount of wall time = 1150.428557 +0:The maximum resident set size (KB) = 789780 Test 116 hafs_regional_atm_ocn_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hafs_regional_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_1nest_atm +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hafs_regional_1nest_atm Checking test 117 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 375.550525 -0:The maximum resident set size (KB) = 293516 +0:The total amount of wall time = 379.073868 +0:The maximum resident set size (KB) = 293396 Test 117 hafs_regional_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hafs_regional_telescopic_2nests_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hafs_regional_telescopic_2nests_atm Checking test 118 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3891,28 +3822,28 @@ Checking test 118 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -0:The total amount of wall time = 417.635517 -0:The maximum resident set size (KB) = 309060 +0:The total amount of wall time = 427.104947 +0:The maximum resident set size (KB) = 309192 Test 118 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hafs_global_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_1nest_atm +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hafs_global_1nest_atm Checking test 119 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 174.652102 -0:The maximum resident set size (KB) = 206000 +0:The total amount of wall time = 170.782832 +0:The maximum resident set size (KB) = 206176 Test 119 hafs_global_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_multiple_4nests_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hafs_global_multiple_4nests_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_multiple_4nests_atm +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hafs_global_multiple_4nests_atm Checking test 120 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3930,14 +3861,14 @@ Checking test 120 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -0:The total amount of wall time = 490.100179 -0:The maximum resident set size (KB) = 292492 +0:The total amount of wall time = 493.173588 +0:The maximum resident set size (KB) = 292436 Test 120 hafs_global_multiple_4nests_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hafs_regional_specified_moving_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hafs_regional_specified_moving_1nest_atm Checking test 121 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3946,28 +3877,28 @@ Checking test 121 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -0:The total amount of wall time = 234.207271 -0:The maximum resident set size (KB) = 306368 +0:The total amount of wall time = 240.477051 +0:The maximum resident set size (KB) = 306740 Test 121 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hafs_regional_storm_following_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hafs_regional_storm_following_1nest_atm Checking test 122 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 222.709775 -0:The maximum resident set size (KB) = 306660 +0:The total amount of wall time = 227.593274 +0:The maximum resident set size (KB) = 306504 Test 122 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hafs_regional_storm_following_1nest_atm_ocn Checking test 123 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3976,42 +3907,42 @@ Checking test 123 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -0:The total amount of wall time = 279.546829 +0:The total amount of wall time = 279.030271 0:The maximum resident set size (KB) = 353680 Test 123 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_storm_following_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hafs_global_storm_following_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_storm_following_1nest_atm +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hafs_global_storm_following_1nest_atm Checking test 124 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 66.446231 -0:The maximum resident set size (KB) = 222128 +0:The total amount of wall time = 66.753984 +0:The maximum resident set size (KB) = 222524 Test 124 hafs_global_storm_following_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 125 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 821.424240 -0:The maximum resident set size (KB) = 387180 +0:The total amount of wall time = 824.913025 +0:The maximum resident set size (KB) = 386844 Test 125 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 126 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4022,14 +3953,14 @@ Checking test 126 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -0:The total amount of wall time = 759.948828 -0:The maximum resident set size (KB) = 416860 +0:The total amount of wall time = 851.470155 +0:The maximum resident set size (KB) = 417540 Test 126 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_docn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hafs_regional_docn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_docn +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hafs_regional_docn Checking test 127 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4037,14 +3968,14 @@ Checking test 127 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 382.603691 -0:The maximum resident set size (KB) = 754380 +0:The total amount of wall time = 394.663707 +0:The maximum resident set size (KB) = 753896 Test 127 hafs_regional_docn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_docn_oisst -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hafs_regional_docn_oisst +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_docn_oisst +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hafs_regional_docn_oisst Checking test 128 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4052,98 +3983,131 @@ Checking test 128 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 394.246436 -0:The maximum resident set size (KB) = 733428 +0:The total amount of wall time = 392.254165 +0:The maximum resident set size (KB) = 733696 Test 128 hafs_regional_docn_oisst PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_datm_cdeps -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/hafs_regional_datm_cdeps +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_datm_cdeps +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hafs_regional_datm_cdeps Checking test 129 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -0:The total amount of wall time = 1281.393566 -0:The maximum resident set size (KB) = 887892 +0:The total amount of wall time = 1280.608354 +0:The maximum resident set size (KB) = 887952 Test 129 hafs_regional_datm_cdeps PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/datm_cdeps_control_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/datm_cdeps_control_cfsr Checking test 130 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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.632253 -0:The maximum resident set size (KB) = 728048 +0:The total amount of wall time = 168.324377 +0:The maximum resident set size (KB) = 716692 Test 130 datm_cdeps_control_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/datm_cdeps_restart_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/datm_cdeps_restart_cfsr Checking test 131 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 97.812130 -0:The maximum resident set size (KB) = 715948 +0:The total amount of wall time = 100.927361 +0:The maximum resident set size (KB) = 704844 Test 131 datm_cdeps_restart_cfsr PASS -Test 132 datm_cdeps_control_gefs FAIL +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_gefs +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/datm_cdeps_control_gefs +Checking test 132 datm_cdeps_control_gefs 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 = 161.263214 +0:The maximum resident set size (KB) = 607456 -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_iau_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/datm_cdeps_iau_gefs +Test 132 datm_cdeps_control_gefs PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_iau_gefs +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/datm_cdeps_iau_gefs Checking test 133 datm_cdeps_iau_gefs 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 = 164.867810 -0:The maximum resident set size (KB) = 607472 +0:The total amount of wall time = 164.567398 +0:The maximum resident set size (KB) = 607500 Test 133 datm_cdeps_iau_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_stochy_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/datm_cdeps_stochy_gefs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_stochy_gefs +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/datm_cdeps_stochy_gefs Checking test 134 datm_cdeps_stochy_gefs 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 = 159.847923 +0:The total amount of wall time = 164.110661 0:The maximum resident set size (KB) = 607456 Test 134 datm_cdeps_stochy_gefs PASS -Test 135 datm_cdeps_ciceC_cfsr FAIL +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_ciceC_cfsr +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/datm_cdeps_ciceC_cfsr +Checking test 135 datm_cdeps_ciceC_cfsr results .... + Comparing RESTART/20111002.000000.MOM.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 = 168.615624 +0:The maximum resident set size (KB) = 716724 + +Test 135 datm_cdeps_ciceC_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_bulk_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/datm_cdeps_bulk_cfsr + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_bulk_cfsr +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/datm_cdeps_bulk_cfsr Checking test 136 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 165.629424 -0:The maximum resident set size (KB) = 716672 +0:The total amount of wall time = 169.745325 +0:The maximum resident set size (KB) = 727832 Test 136 datm_cdeps_bulk_cfsr PASS -Test 137 datm_cdeps_bulk_gefs FAIL + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_bulk_gefs +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/datm_cdeps_bulk_gefs +Checking test 137 datm_cdeps_bulk_gefs 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 = 161.123087 +0:The maximum resident set size (KB) = 607456 + +Test 137 datm_cdeps_bulk_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_mx025_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/datm_cdeps_mx025_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_mx025_cfsr +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/datm_cdeps_mx025_cfsr Checking test 138 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4152,14 +4116,14 @@ Checking test 138 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 699.571322 -0:The maximum resident set size (KB) = 514276 +0:The total amount of wall time = 751.664427 +0:The maximum resident set size (KB) = 514352 Test 138 datm_cdeps_mx025_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_mx025_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/datm_cdeps_mx025_gefs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_mx025_gefs +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/datm_cdeps_mx025_gefs Checking test 139 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4168,77 +4132,77 @@ Checking test 139 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 696.776064 -0:The maximum resident set size (KB) = 494792 +0:The total amount of wall time = 777.327410 +0:The maximum resident set size (KB) = 494816 Test 139 datm_cdeps_mx025_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/datm_cdeps_multiple_files_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/datm_cdeps_multiple_files_cfsr Checking test 140 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 161.416812 -0:The maximum resident set size (KB) = 716740 +0:The total amount of wall time = 167.361016 +0:The maximum resident set size (KB) = 716704 Test 140 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/datm_cdeps_3072x1536_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/datm_cdeps_3072x1536_cfsr Checking test 141 datm_cdeps_3072x1536_cfsr 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 = 257.429581 -0:The maximum resident set size (KB) = 1941516 +0:The total amount of wall time = 257.635288 +0:The maximum resident set size (KB) = 1942080 -Test 141 datm_cdeps_3072x1536_cfsr PASS Tries: 2 +Test 141 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_gfs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/datm_cdeps_gfs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_gfs +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/datm_cdeps_gfs Checking test 142 datm_cdeps_gfs 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 = 267.957695 -0:The maximum resident set size (KB) = 1941316 +0:The total amount of wall time = 258.345758 +0:The maximum resident set size (KB) = 1940280 Test 142 datm_cdeps_gfs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_debug_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/datm_cdeps_debug_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_debug_cfsr +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/datm_cdeps_debug_cfsr Checking test 143 datm_cdeps_debug_cfsr results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -0:The total amount of wall time = 459.559580 -0:The maximum resident set size (KB) = 706716 +0:The total amount of wall time = 459.786293 +0:The maximum resident set size (KB) = 706652 Test 143 datm_cdeps_debug_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr_faster -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/datm_cdeps_control_cfsr_faster +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr_faster +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/datm_cdeps_control_cfsr_faster Checking test 144 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.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 = 168.441916 -0:The maximum resident set size (KB) = 716796 +0:The total amount of wall time = 168.113048 +0:The maximum resident set size (KB) = 716768 Test 144 datm_cdeps_control_cfsr_faster PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/datm_cdeps_lnd_gswp3 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_lnd_gswp3 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/datm_cdeps_lnd_gswp3 Checking test 145 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4247,14 +4211,14 @@ Checking test 145 datm_cdeps_lnd_gswp3 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 = 10.302166 -0:The maximum resident set size (KB) = 224552 +0:The total amount of wall time = 10.405393 +0:The maximum resident set size (KB) = 208264 Test 145 datm_cdeps_lnd_gswp3 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/datm_cdeps_lnd_gswp3_rst +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_lnd_gswp3 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/datm_cdeps_lnd_gswp3_rst Checking test 146 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4263,14 +4227,14 @@ Checking test 146 datm_cdeps_lnd_gswp3_rst 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 = 15.752870 -0:The maximum resident set size (KB) = 208252 +0:The total amount of wall time = 16.477821 +0:The maximum resident set size (KB) = 216404 Test 146 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_atmlnd_sbs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_p8_atmlnd_sbs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_atmlnd_sbs +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_p8_atmlnd_sbs Checking test 147 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4355,14 +4319,14 @@ Checking test 147 control_p8_atmlnd_sbs 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 = 224.289148 -0:The maximum resident set size (KB) = 1461972 +0:The total amount of wall time = 236.023630 +0:The maximum resident set size (KB) = 1462016 Test 147 control_p8_atmlnd_sbs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_atmwav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/control_atmwav +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_atmwav +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_atmwav Checking test 148 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4406,14 +4370,14 @@ Checking test 148 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -0:The total amount of wall time = 100.076015 -0:The maximum resident set size (KB) = 474696 +0:The total amount of wall time = 99.381651 +0:The maximum resident set size (KB) = 474784 Test 148 control_atmwav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/atmaero_control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8 +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/atmaero_control_p8 Checking test 149 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4457,14 +4421,14 @@ Checking test 149 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 249.049944 -0:The maximum resident set size (KB) = 2703328 +0:The total amount of wall time = 248.720169 +0:The maximum resident set size (KB) = 2703396 Test 149 atmaero_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8_rad -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/atmaero_control_p8_rad +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/atmaero_control_p8_rad Checking test 150 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4508,14 +4472,14 @@ Checking test 150 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 293.328978 -0:The maximum resident set size (KB) = 2757524 +0:The total amount of wall time = 306.423304 +0:The maximum resident set size (KB) = 2757536 Test 150 atmaero_control_p8_rad PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8_rad_micro -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/atmaero_control_p8_rad_micro +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad_micro +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/atmaero_control_p8_rad_micro Checking test 151 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4559,14 +4523,14 @@ Checking test 151 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 306.670771 -0:The maximum resident set size (KB) = 2763892 +0:The total amount of wall time = 307.879757 +0:The maximum resident set size (KB) = 2763912 Test 151 atmaero_control_p8_rad_micro PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_atmaq -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/regional_atmaq +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/regional_atmaq Checking test 152 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4582,14 +4546,14 @@ Checking test 152 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -0:The total amount of wall time = 1103.757883 -0:The maximum resident set size (KB) = 1146040 +0:The total amount of wall time = 1097.272100 +0:The maximum resident set size (KB) = 1146016 Test 152 regional_atmaq PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_atmaq_faster -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7899/regional_atmaq_faster +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq_faster +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/regional_atmaq_faster Checking test 153 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4605,63 +4569,94 @@ Checking test 153 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -0:The total amount of wall time = 1073.041881 -0:The maximum resident set size (KB) = 1145992 +0:The total amount of wall time = 1148.416336 +0:The maximum resident set size (KB) = 1146304 Test 153 regional_atmaq_faster PASS FAILED TESTS: -Test datm_cdeps_control_gefs 132 failed in run_test failed -Test datm_cdeps_ciceC_cfsr 135 failed in run_test failed -Test datm_cdeps_bulk_gefs 137 failed in run_test failed +Test compile_008 failed in run_compile failed REGRESSION TEST FAILED -Sat Mar 4 09:38:40 MST 2023 -Elapsed time: 01h:15m:19s. Have a nice day! -Sat Mar 4 10:29:57 MST 2023 +Wed Mar 8 09:11:48 MST 2023 +Elapsed time: 01h:19m:12s. Have a nice day! +Wed Mar 8 09:23:22 MST 2023 Start Regression test -Compile 001 elapsed time 425 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_gefs -working dir = /glade/scratch/jongkim/pr-1578-intel/jongkim/FV3_RT/rt_62543/datm_cdeps_control_gefs -Checking test 001 datm_cdeps_control_gefs 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 = 161.163139 -0:The maximum resident set size (KB) = 607500 - -Test 001 datm_cdeps_control_gefs PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_ciceC_cfsr -working dir = /glade/scratch/jongkim/pr-1578-intel/jongkim/FV3_RT/rt_62543/datm_cdeps_ciceC_cfsr -Checking test 002 datm_cdeps_ciceC_cfsr results .... - Comparing RESTART/20111002.000000.MOM.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 = 168.804580 -0:The maximum resident set size (KB) = 727672 - -Test 002 datm_cdeps_ciceC_cfsr PASS - +Compile 001 elapsed time 1708 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_bulk_gefs -working dir = /glade/scratch/jongkim/pr-1578-intel/jongkim/FV3_RT/rt_62543/datm_cdeps_bulk_gefs -Checking test 003 datm_cdeps_bulk_gefs 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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_faster +working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_9994/cpld_control_p8_faster +Checking test 001 cpld_control_p8_faster results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 160.566821 -0:The maximum resident set size (KB) = 607448 +0:The total amount of wall time = 313.676895 +0:The maximum resident set size (KB) = 2716192 -Test 003 datm_cdeps_bulk_gefs PASS +Test 001 cpld_control_p8_faster PASS REGRESSION TEST WAS SUCCESSFUL -Sat Mar 4 10:41:42 MST 2023 -Elapsed time: 00h:11m:46s. Have a nice day! +Wed Mar 8 10:09:35 MST 2023 +Elapsed time: 00h:46m:13s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index 398350bc8b6..e6fddb312ae 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,42 +1,42 @@ -Sat Mar 4 15:35:47 EST 2023 +Wed Mar 8 14:05:28 EST 2023 Start Regression test -Compile 001 elapsed time 956 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 1005 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 939 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 444 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 357 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 812 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 795 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 1111 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 817 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 818 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 612 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 624 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 926 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 213 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 649 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 697 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 250 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 251 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 708 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 021 elapsed time 249 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 853 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 711 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 024 elapsed time 262 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 152 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 269 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 103 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 724 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 728 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 655 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 703 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 274 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 850 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8_mixedmode -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/cpld_control_p8_mixedmode +Compile 001 elapsed time 1004 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1006 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 893 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 385 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 349 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 845 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 891 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 1098 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 861 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 776 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 689 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 634 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 1081 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 573 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 333 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 750 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 856 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 332 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 352 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 845 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 021 elapsed time 387 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 1061 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 1038 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 024 elapsed time 613 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 415 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 486 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 275 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 782 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 804 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 723 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 805 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 253 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 802 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_mixedmode +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -101,14 +101,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 381.110187 - 0: The maximum resident set size (KB) = 1543084 + 0: The total amount of wall time = 341.541053 + 0: The maximum resident set size (KB) = 1534860 -Test 001 cpld_control_p8_mixedmode PASS +Test 001 cpld_control_p8_mixedmode PASS Tries: 2 -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_gfsv17 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/cpld_control_gfsv17 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_gfsv17 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -172,14 +172,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 280.144669 - 0: The maximum resident set size (KB) = 1462256 + 0: The total amount of wall time = 274.106615 + 0: The maximum resident set size (KB) = 1443716 Test 002 cpld_control_gfsv17 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/cpld_control_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -244,14 +244,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 414.104908 - 0: The maximum resident set size (KB) = 1583808 + 0: The total amount of wall time = 395.798873 + 0: The maximum resident set size (KB) = 1568020 Test 003 cpld_control_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/cpld_restart_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -304,14 +304,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 218.532701 - 0: The maximum resident set size (KB) = 1022680 + 0: The total amount of wall time = 252.364512 + 0: The maximum resident set size (KB) = 1019008 Test 004 cpld_restart_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/cpld_2threads_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -364,14 +364,14 @@ Checking test 005 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 418.100406 - 0: The maximum resident set size (KB) = 1777184 + 0: The total amount of wall time = 406.323691 + 0: The maximum resident set size (KB) = 1756712 Test 005 cpld_2threads_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/cpld_decomp_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/cpld_decomp_p8 Checking test 006 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -424,14 +424,14 @@ Checking test 006 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 419.816083 - 0: The maximum resident set size (KB) = 1595072 + 0: The total amount of wall time = 387.090659 + 0: The maximum resident set size (KB) = 1561968 Test 006 cpld_decomp_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/cpld_mpi_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/cpld_mpi_p8 Checking test 007 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -484,14 +484,14 @@ Checking test 007 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 344.627083 - 0: The maximum resident set size (KB) = 1544172 + 0: The total amount of wall time = 340.840887 + 0: The maximum resident set size (KB) = 1526600 Test 007 cpld_mpi_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_ciceC_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/cpld_control_ciceC_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_ciceC_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/cpld_control_ciceC_p8 Checking test 008 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -556,14 +556,14 @@ Checking test 008 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 426.014336 - 0: The maximum resident set size (KB) = 1583072 + 0: The total amount of wall time = 391.843612 + 0: The maximum resident set size (KB) = 1568288 -Test 008 cpld_control_ciceC_p8 PASS +Test 008 cpld_control_ciceC_p8 PASS Tries: 2 -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c192_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/cpld_control_c192_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c192_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/cpld_control_c192_p8 Checking test 009 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -616,14 +616,14 @@ Checking test 009 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 764.256106 - 0: The maximum resident set size (KB) = 1792908 + 0: The total amount of wall time = 764.676849 + 0: The maximum resident set size (KB) = 1760044 Test 009 cpld_control_c192_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c192_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/cpld_restart_c192_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c192_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/cpld_restart_c192_p8 Checking test 010 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -676,14 +676,14 @@ Checking test 010 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 464.465229 - 0: The maximum resident set size (KB) = 1925404 + 0: The total amount of wall time = 563.798980 + 0: The maximum resident set size (KB) = 1923488 Test 010 cpld_restart_c192_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_bmark_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/cpld_bmark_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_bmark_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/cpld_bmark_p8 Checking test 011 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -731,14 +731,14 @@ Checking test 011 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 792.669718 - 0: The maximum resident set size (KB) = 2537640 + 0: The total amount of wall time = 795.618635 + 0: The maximum resident set size (KB) = 2503276 Test 011 cpld_bmark_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_bmark_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/cpld_restart_bmark_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_bmark_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/cpld_restart_bmark_p8 Checking test 012 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -786,14 +786,14 @@ Checking test 012 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 504.691690 - 0: The maximum resident set size (KB) = 2338904 + 0: The total amount of wall time = 705.094356 + 0: The maximum resident set size (KB) = 2330324 Test 012 cpld_restart_bmark_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_noaero_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/cpld_control_noaero_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/cpld_control_noaero_p8 Checking test 013 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -857,14 +857,14 @@ Checking test 013 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 307.951416 - 0: The maximum resident set size (KB) = 1447284 + 0: The total amount of wall time = 341.162805 + 0: The maximum resident set size (KB) = 1441012 Test 013 cpld_control_noaero_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c96_noaero_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/cpld_control_nowave_noaero_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c96_noaero_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/cpld_control_nowave_noaero_p8 Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -926,14 +926,14 @@ Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 342.364926 - 0: The maximum resident set size (KB) = 1473484 + 0: The total amount of wall time = 328.741862 + 0: The maximum resident set size (KB) = 1473092 Test 014 cpld_control_nowave_noaero_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_debug_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/cpld_debug_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_debug_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/cpld_debug_p8 Checking test 015 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -986,14 +986,14 @@ Checking test 015 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 598.809177 - 0: The maximum resident set size (KB) = 1619196 + 0: The total amount of wall time = 589.327159 + 0: The maximum resident set size (KB) = 1596976 -Test 015 cpld_debug_p8 PASS +Test 015 cpld_debug_p8 PASS Tries: 2 -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_debug_noaero_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/cpld_debug_noaero_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_debug_noaero_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/cpld_debug_noaero_p8 Checking test 016 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1045,14 +1045,14 @@ Checking test 016 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 397.199874 - 0: The maximum resident set size (KB) = 1484960 + 0: The total amount of wall time = 462.095695 + 0: The maximum resident set size (KB) = 1441552 Test 016 cpld_debug_noaero_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_noaero_p8_agrid -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/cpld_control_noaero_p8_agrid +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8_agrid +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/cpld_control_noaero_p8_agrid Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1114,14 +1114,14 @@ Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 325.326836 - 0: The maximum resident set size (KB) = 1488700 + 0: The total amount of wall time = 339.082516 + 0: The maximum resident set size (KB) = 1476132 Test 017 cpld_control_noaero_p8_agrid PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c48 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/cpld_control_c48 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c48 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/cpld_control_c48 Checking test 018 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1171,14 +1171,14 @@ Checking test 018 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 601.625093 - 0: The maximum resident set size (KB) = 2568908 + 0: The total amount of wall time = 622.595926 + 0: The maximum resident set size (KB) = 2569216 Test 018 cpld_control_c48 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_warmstart_c48 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/cpld_warmstart_c48 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/cpld_warmstart_c48 Checking test 019 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1228,14 +1228,14 @@ Checking test 019 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 167.804399 - 0: The maximum resident set size (KB) = 2572640 + 0: The total amount of wall time = 174.643407 + 0: The maximum resident set size (KB) = 2585804 Test 019 cpld_warmstart_c48 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_warmstart_c48 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/cpld_restart_c48 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/cpld_restart_c48 Checking test 020 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1285,86 +1285,16 @@ Checking test 020 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 83.960764 - 0: The maximum resident set size (KB) = 1996312 + 0: The total amount of wall time = 86.117634 + 0: The maximum resident set size (KB) = 1996408 Test 020 cpld_restart_c48 PASS +Test 021 cpld_control_p8_faster FAIL -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8_faster -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/cpld_control_p8_faster -Checking test 021 cpld_control_p8_faster results .... - Comparing sfcf021.tile1.nc ............MISSING baseline - Comparing sfcf021.tile2.nc ............MISSING baseline - Comparing sfcf021.tile3.nc ............MISSING baseline - Comparing sfcf021.tile4.nc ............MISSING baseline - Comparing sfcf021.tile5.nc ............MISSING baseline - Comparing sfcf021.tile6.nc ............MISSING baseline - Comparing atmf021.tile1.nc ............MISSING baseline - Comparing atmf021.tile2.nc ............MISSING baseline - Comparing atmf021.tile3.nc ............MISSING baseline - Comparing atmf021.tile4.nc ............MISSING baseline - Comparing atmf021.tile5.nc ............MISSING baseline - Comparing atmf021.tile6.nc ............MISSING baseline - Comparing sfcf024.tile1.nc ............MISSING baseline - Comparing sfcf024.tile2.nc ............MISSING baseline - Comparing sfcf024.tile3.nc ............MISSING baseline - Comparing sfcf024.tile4.nc ............MISSING baseline - Comparing sfcf024.tile5.nc ............MISSING baseline - Comparing sfcf024.tile6.nc ............MISSING baseline - Comparing atmf024.tile1.nc ............MISSING baseline - Comparing atmf024.tile2.nc ............MISSING baseline - Comparing atmf024.tile3.nc ............MISSING baseline - Comparing atmf024.tile4.nc ............MISSING baseline - Comparing atmf024.tile5.nc ............MISSING baseline - Comparing atmf024.tile6.nc ............MISSING baseline - Comparing gocart.inst_aod.20210323_0600z.nc4 ............MISSING baseline - Comparing RESTART/20210323.060000.coupler.res ............MISSING baseline - Comparing RESTART/20210323.060000.fv_core.res.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............MISSING baseline - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............MISSING baseline - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............MISSING baseline - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............MISSING baseline - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............MISSING baseline - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............MISSING baseline - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............MISSING baseline - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............MISSING baseline - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............MISSING baseline - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............MISSING baseline - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............MISSING baseline - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............MISSING baseline - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............MISSING baseline - Comparing RESTART/20210323.060000.MOM.res.nc ............MISSING baseline - Comparing RESTART/iced.2021-03-23-21600.nc ............MISSING baseline - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc ............MISSING baseline - Comparing 20210323.060000.out_pnt.ww3 ............MISSING baseline - Comparing 20210323.060000.out_grd.ww3 ............MISSING baseline - - 0: The total amount of wall time = 358.920457 - 0: The maximum resident set size (KB) = 1584700 - -Test 021 cpld_control_p8_faster FAIL Tries: 2 - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_CubedSphereGrid + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_CubedSphereGrid Checking test 022 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1391,28 +1321,28 @@ Checking test 022 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 142.040367 - 0: The maximum resident set size (KB) = 437148 + 0: The total amount of wall time = 138.272285 + 0: The maximum resident set size (KB) = 437268 -Test 022 control_CubedSphereGrid PASS +Test 022 control_CubedSphereGrid PASS Tries: 2 -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_CubedSphereGrid_parallel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid_parallel +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_CubedSphereGrid_parallel Checking test 023 control_CubedSphereGrid_parallel 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 = 170.297357 - 0: The maximum resident set size (KB) = 437264 + 0: The total amount of wall time = 300.613122 + 0: The maximum resident set size (KB) = 437160 Test 023 control_CubedSphereGrid_parallel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_latlon -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_latlon +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_latlon +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_latlon Checking test 024 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1423,14 +1353,14 @@ Checking test 024 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 140.946910 - 0: The maximum resident set size (KB) = 437016 + 0: The total amount of wall time = 164.695258 + 0: The maximum resident set size (KB) = 437080 Test 024 control_latlon PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_wrtGauss_netcdf_parallel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_wrtGauss_netcdf_parallel Checking test 025 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1441,14 +1371,14 @@ Checking test 025 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 164.601589 - 0: The maximum resident set size (KB) = 436976 + 0: The total amount of wall time = 344.787578 + 0: The maximum resident set size (KB) = 436836 Test 025 control_wrtGauss_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c48 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_c48 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c48 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_c48 Checking test 026 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1487,14 +1417,14 @@ Checking test 026 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 429.093964 -0: The maximum resident set size (KB) = 631608 +0: The total amount of wall time = 422.223022 +0: The maximum resident set size (KB) = 631112 Test 026 control_c48 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c192 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_c192 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c192 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_c192 Checking test 027 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1505,14 +1435,14 @@ Checking test 027 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 581.236728 - 0: The maximum resident set size (KB) = 540148 + 0: The total amount of wall time = 580.469470 + 0: The maximum resident set size (KB) = 540024 Test 027 control_c192 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c384 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_c384 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_c384 Checking test 028 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1523,14 +1453,14 @@ Checking test 028 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1115.076552 - 0: The maximum resident set size (KB) = 818556 + 0: The total amount of wall time = 1113.351586 + 0: The maximum resident set size (KB) = 818300 Test 028 control_c384 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c384gdas -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_c384gdas +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384gdas +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_c384gdas Checking test 029 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1573,14 +1503,14 @@ Checking test 029 control_c384gdas 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 = 933.636218 - 0: The maximum resident set size (KB) = 947920 + 0: The total amount of wall time = 990.491891 + 0: The maximum resident set size (KB) = 948160 Test 029 control_c384gdas PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_stochy +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_stochy Checking test 030 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1591,28 +1521,28 @@ Checking test 030 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 94.989891 - 0: The maximum resident set size (KB) = 440296 + 0: The total amount of wall time = 100.420802 + 0: The maximum resident set size (KB) = 440308 Test 030 control_stochy PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_stochy_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_stochy_restart Checking test 031 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 54.715110 - 0: The maximum resident set size (KB) = 194668 + 0: The total amount of wall time = 57.731801 + 0: The maximum resident set size (KB) = 194444 Test 031 control_stochy_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_lndp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_lndp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_lndp Checking test 032 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1623,14 +1553,14 @@ Checking test 032 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 93.289709 - 0: The maximum resident set size (KB) = 440188 + 0: The total amount of wall time = 86.755501 + 0: The maximum resident set size (KB) = 440112 Test 032 control_lndp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_iovr4 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_iovr4 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr4 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_iovr4 Checking test 033 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1645,14 +1575,14 @@ Checking test 033 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 148.711642 - 0: The maximum resident set size (KB) = 437132 + 0: The total amount of wall time = 147.500269 + 0: The maximum resident set size (KB) = 436908 Test 033 control_iovr4 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_iovr5 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_iovr5 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr5 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_iovr5 Checking test 034 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1667,14 +1597,14 @@ Checking test 034 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 154.295045 - 0: The maximum resident set size (KB) = 436992 + 0: The total amount of wall time = 144.810417 + 0: The maximum resident set size (KB) = 437056 Test 034 control_iovr5 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_p8 Checking test 035 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1721,14 +1651,14 @@ Checking test 035 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 180.632868 - 0: The maximum resident set size (KB) = 1403396 + 0: The total amount of wall time = 209.375932 + 0: The maximum resident set size (KB) = 1379692 Test 035 control_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_lndp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_p8_lndp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_lndp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_p8_lndp Checking test 036 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1747,14 +1677,14 @@ Checking test 036 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 334.930271 - 0: The maximum resident set size (KB) = 1403580 + 0: The total amount of wall time = 363.336610 + 0: The maximum resident set size (KB) = 1379632 Test 036 control_p8_lndp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_restart_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_restart_p8 Checking test 037 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1793,14 +1723,14 @@ Checking test 037 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 92.653862 - 0: The maximum resident set size (KB) = 551676 + 0: The total amount of wall time = 119.310987 + 0: The maximum resident set size (KB) = 556068 Test 037 control_restart_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_decomp_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_decomp_p8 Checking test 038 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1843,14 +1773,14 @@ Checking test 038 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 183.606250 - 0: The maximum resident set size (KB) = 1373912 + 0: The total amount of wall time = 211.146995 + 0: The maximum resident set size (KB) = 1374188 Test 038 control_decomp_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_2threads_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_2threads_p8 Checking test 039 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1893,14 +1823,14 @@ Checking test 039 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 175.358447 - 0: The maximum resident set size (KB) = 1482416 + 0: The total amount of wall time = 215.588048 + 0: The maximum resident set size (KB) = 1457216 Test 039 control_2threads_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_rrtmgp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_p8_rrtmgp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_rrtmgp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_p8_rrtmgp Checking test 040 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1947,14 +1877,14 @@ Checking test 040 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 262.971058 - 0: The maximum resident set size (KB) = 1456856 + 0: The total amount of wall time = 275.347002 + 0: The maximum resident set size (KB) = 1437372 Test 040 control_p8_rrtmgp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/merra2_thompson -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/merra2_thompson +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/merra2_thompson +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/merra2_thompson Checking test 041 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2001,14 +1931,14 @@ Checking test 041 merra2_thompson results .... Comparing 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.792051 - 0: The maximum resident set size (KB) = 1383880 + 0: The total amount of wall time = 256.096066 + 0: The maximum resident set size (KB) = 1385848 Test 041 merra2_thompson PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/regional_control +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/regional_control Checking test 042 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2019,28 +1949,28 @@ Checking test 042 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 338.012709 - 0: The maximum resident set size (KB) = 577672 + 0: The total amount of wall time = 349.733767 + 0: The maximum resident set size (KB) = 577820 Test 042 regional_control PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/regional_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/regional_restart Checking test 043 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 189.471075 - 0: The maximum resident set size (KB) = 577792 + 0: The total amount of wall time = 197.530554 + 0: The maximum resident set size (KB) = 577368 Test 043 regional_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/regional_decomp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/regional_decomp Checking test 044 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2051,14 +1981,14 @@ Checking test 044 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 353.873716 - 0: The maximum resident set size (KB) = 579212 + 0: The total amount of wall time = 359.805211 + 0: The maximum resident set size (KB) = 579360 Test 044 regional_decomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/regional_2threads +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/regional_2threads Checking test 045 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2069,14 +1999,14 @@ Checking test 045 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 214.239519 - 0: The maximum resident set size (KB) = 583868 + 0: The total amount of wall time = 224.301600 + 0: The maximum resident set size (KB) = 584748 Test 045 regional_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_noquilt -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/regional_noquilt +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_noquilt +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/regional_noquilt Checking test 046 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2084,28 +2014,28 @@ Checking test 046 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 364.138778 - 0: The maximum resident set size (KB) = 572944 + 0: The total amount of wall time = 367.845982 + 0: The maximum resident set size (KB) = 573108 Test 046 regional_noquilt PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_netcdf_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/regional_netcdf_parallel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_netcdf_parallel +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/regional_netcdf_parallel Checking test 047 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 338.060950 - 0: The maximum resident set size (KB) = 576772 + 0: The total amount of wall time = 465.798680 + 0: The maximum resident set size (KB) = 576860 -Test 047 regional_netcdf_parallel PASS +Test 047 regional_netcdf_parallel PASS Tries: 2 -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/regional_2dwrtdecomp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/regional_2dwrtdecomp Checking test 048 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2116,14 +2046,14 @@ Checking test 048 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 348.172324 - 0: The maximum resident set size (KB) = 577772 + 0: The total amount of wall time = 341.220489 + 0: The maximum resident set size (KB) = 577820 Test 048 regional_2dwrtdecomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/fv3_regional_wofs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/regional_wofs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/fv3_regional_wofs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/regional_wofs Checking test 049 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2134,14 +2064,14 @@ Checking test 049 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 438.379849 - 0: The maximum resident set size (KB) = 263344 + 0: The total amount of wall time = 438.671565 + 0: The maximum resident set size (KB) = 263252 Test 049 regional_wofs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rap_control +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rap_control Checking test 050 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2188,14 +2118,14 @@ Checking test 050 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 494.266484 - 0: The maximum resident set size (KB) = 807584 + 0: The total amount of wall time = 500.939586 + 0: The maximum resident set size (KB) = 807668 Test 050 rap_control PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_spp_sppt_shum_skeb -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/regional_spp_sppt_shum_skeb +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/regional_spp_sppt_shum_skeb Checking test 051 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2206,14 +2136,14 @@ Checking test 051 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 331.802317 - 0: The maximum resident set size (KB) = 887976 + 0: The total amount of wall time = 338.620599 + 0: The maximum resident set size (KB) = 897996 Test 051 regional_spp_sppt_shum_skeb PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rap_decomp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rap_decomp Checking test 052 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2260,14 +2190,14 @@ Checking test 052 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 500.494898 - 0: The maximum resident set size (KB) = 807052 + 0: The total amount of wall time = 524.643341 + 0: The maximum resident set size (KB) = 807332 Test 052 rap_decomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rap_2threads +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rap_2threads Checking test 053 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2314,14 +2244,14 @@ Checking test 053 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 467.587751 - 0: The maximum resident set size (KB) = 876272 + 0: The total amount of wall time = 492.800154 + 0: The maximum resident set size (KB) = 878992 Test 053 rap_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rap_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rap_restart Checking test 054 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2360,14 +2290,14 @@ Checking test 054 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 242.322475 - 0: The maximum resident set size (KB) = 538680 + 0: The total amount of wall time = 262.087232 + 0: The maximum resident set size (KB) = 554060 Test 054 rap_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rap_sfcdiff +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rap_sfcdiff Checking test 055 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2414,14 +2344,14 @@ Checking test 055 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 474.665516 - 0: The maximum resident set size (KB) = 807364 + 0: The total amount of wall time = 497.728421 + 0: The maximum resident set size (KB) = 807656 Test 055 rap_sfcdiff PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rap_sfcdiff_decomp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rap_sfcdiff_decomp Checking test 056 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2468,14 +2398,14 @@ Checking test 056 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 492.195647 - 0: The maximum resident set size (KB) = 806404 + 0: The total amount of wall time = 534.385547 + 0: The maximum resident set size (KB) = 806736 Test 056 rap_sfcdiff_decomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rap_sfcdiff_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rap_sfcdiff_restart Checking test 057 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2514,14 +2444,14 @@ Checking test 057 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 353.822444 - 0: The maximum resident set size (KB) = 541272 + 0: The total amount of wall time = 379.337211 + 0: The maximum resident set size (KB) = 551528 Test 057 rap_sfcdiff_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hrrr_control +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hrrr_control Checking test 058 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2568,14 +2498,14 @@ Checking test 058 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 451.073758 - 0: The maximum resident set size (KB) = 804688 + 0: The total amount of wall time = 489.942259 + 0: The maximum resident set size (KB) = 804904 Test 058 hrrr_control PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hrrr_control_decomp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hrrr_control_decomp Checking test 059 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2622,14 +2552,14 @@ Checking test 059 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 474.489705 - 0: The maximum resident set size (KB) = 804436 + 0: The total amount of wall time = 506.327737 + 0: The maximum resident set size (KB) = 804556 Test 059 hrrr_control_decomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hrrr_control_2threads +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hrrr_control_2threads Checking test 060 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2676,14 +2606,14 @@ Checking test 060 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 431.083347 - 0: The maximum resident set size (KB) = 873280 + 0: The total amount of wall time = 451.229146 + 0: The maximum resident set size (KB) = 871324 Test 060 hrrr_control_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hrrr_control_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hrrr_control_restart Checking test 061 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2722,14 +2652,14 @@ Checking test 061 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 339.816508 - 0: The maximum resident set size (KB) = 550208 + 0: The total amount of wall time = 353.378265 + 0: The maximum resident set size (KB) = 550240 Test 061 hrrr_control_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1beta -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rrfs_v1beta +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rrfs_v1beta Checking test 062 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2776,14 +2706,14 @@ Checking test 062 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 467.060828 - 0: The maximum resident set size (KB) = 800752 + 0: The total amount of wall time = 503.441198 + 0: The maximum resident set size (KB) = 800700 Test 062 rrfs_v1beta PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1nssl -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rrfs_v1nssl +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rrfs_v1nssl Checking test 063 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2798,14 +2728,14 @@ Checking test 063 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 568.170933 - 0: The maximum resident set size (KB) = 491620 + 0: The total amount of wall time = 593.158078 + 0: The maximum resident set size (KB) = 491776 Test 063 rrfs_v1nssl PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rrfs_v1nssl_nohailnoccn +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rrfs_v1nssl_nohailnoccn Checking test 064 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2820,14 +2750,14 @@ Checking test 064 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 552.436836 - 0: The maximum resident set size (KB) = 485664 + 0: The total amount of wall time = 566.677316 + 0: The maximum resident set size (KB) = 485704 Test 064 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rrfs_conus13km_hrrr_warm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rrfs_conus13km_hrrr_warm Checking test 065 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2836,14 +2766,14 @@ Checking test 065 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 128.442753 - 0: The maximum resident set size (KB) = 617484 + 0: The total amount of wall time = 147.576703 + 0: The maximum resident set size (KB) = 617784 Test 065 rrfs_conus13km_hrrr_warm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rrfs_smoke_conus13km_hrrr_warm Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2852,14 +2782,14 @@ Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 145.243142 - 0: The maximum resident set size (KB) = 627652 + 0: The total amount of wall time = 161.167025 + 0: The maximum resident set size (KB) = 627816 Test 066 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rrfs_conus13km_radar_tten_warm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rrfs_conus13km_radar_tten_warm Checking test 067 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2868,14 +2798,14 @@ Checking test 067 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 129.999313 - 0: The maximum resident set size (KB) = 620988 + 0: The total amount of wall time = 147.357829 + 0: The maximum resident set size (KB) = 620508 Test 067 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rrfs_conus13km_hrrr_warm_2threads +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rrfs_conus13km_hrrr_warm_2threads Checking test 068 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2884,14 +2814,14 @@ Checking test 068 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 84.877688 - 0: The maximum resident set size (KB) = 630160 + 0: The total amount of wall time = 95.641568 + 0: The maximum resident set size (KB) = 629188 Test 068 rrfs_conus13km_hrrr_warm_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rrfs_conus13km_radar_tten_warm_2threads +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rrfs_conus13km_radar_tten_warm_2threads Checking test 069 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2900,14 +2830,14 @@ Checking test 069 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 89.282533 - 0: The maximum resident set size (KB) = 633000 + 0: The total amount of wall time = 105.042143 + 0: The maximum resident set size (KB) = 632864 Test 069 rrfs_conus13km_radar_tten_warm_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmgt -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_csawmgt +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_csawmgt Checking test 070 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2918,14 +2848,14 @@ Checking test 070 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 380.153293 - 0: The maximum resident set size (KB) = 505636 + 0: The total amount of wall time = 400.884236 + 0: The maximum resident set size (KB) = 505476 Test 070 control_csawmgt PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_ras -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_ras +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_ras Checking test 071 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2936,26 +2866,26 @@ Checking test 071 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 197.472024 - 0: The maximum resident set size (KB) = 470892 + 0: The total amount of wall time = 203.334998 + 0: The maximum resident set size (KB) = 470932 Test 071 control_ras PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wam -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_wam +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_wam Checking test 072 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 126.420302 - 0: The maximum resident set size (KB) = 188096 + 0: The total amount of wall time = 127.314385 + 0: The maximum resident set size (KB) = 187976 Test 072 control_wam PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_faster -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_p8_faster +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_faster +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_p8_faster Checking test 073 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3002,14 +2932,14 @@ Checking test 073 control_p8_faster results .... Comparing 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.371290 - 0: The maximum resident set size (KB) = 1379804 + 0: The total amount of wall time = 194.249241 + 0: The maximum resident set size (KB) = 1379556 Test 073 control_p8_faster PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control_faster -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/regional_control_faster +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control_faster +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/regional_control_faster Checking test 074 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3020,42 +2950,42 @@ Checking test 074 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 312.374962 - 0: The maximum resident set size (KB) = 577632 + 0: The total amount of wall time = 348.615438 + 0: The maximum resident set size (KB) = 577568 Test 074 regional_control_faster PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rrfs_conus13km_hrrr_warm_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rrfs_conus13km_hrrr_warm_debug Checking test 075 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 754.518211 - 0: The maximum resident set size (KB) = 649396 + 0: The total amount of wall time = 781.820263 + 0: The maximum resident set size (KB) = 649592 Test 075 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rrfs_conus13km_radar_tten_warm_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rrfs_conus13km_radar_tten_warm_debug Checking test 076 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 754.367076 - 0: The maximum resident set size (KB) = 652164 + 0: The total amount of wall time = 782.673804 + 0: The maximum resident set size (KB) = 652324 Test 076 rrfs_conus13km_radar_tten_warm_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_CubedSphereGrid_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_CubedSphereGrid_debug Checking test 077 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3082,334 +3012,334 @@ Checking test 077 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 163.111896 - 0: The maximum resident set size (KB) = 601788 + 0: The total amount of wall time = 175.180250 + 0: The maximum resident set size (KB) = 601888 Test 077 control_CubedSphereGrid_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_wrtGauss_netcdf_parallel_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_wrtGauss_netcdf_parallel_debug Checking test 078 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 163.146693 - 0: The maximum resident set size (KB) = 601084 + 0: The total amount of wall time = 174.134479 + 0: The maximum resident set size (KB) = 601164 Test 078 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_stochy_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_stochy_debug Checking test 079 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 174.902082 - 0: The maximum resident set size (KB) = 607872 + 0: The total amount of wall time = 182.108219 + 0: The maximum resident set size (KB) = 608172 Test 079 control_stochy_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_lndp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_lndp_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_lndp_debug Checking test 080 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 156.954774 - 0: The maximum resident set size (KB) = 606000 + 0: The total amount of wall time = 171.106627 + 0: The maximum resident set size (KB) = 606124 Test 080 control_lndp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmg_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_csawmg_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_csawmg_debug Checking test 081 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 246.882483 - 0: The maximum resident set size (KB) = 642484 + 0: The total amount of wall time = 267.854356 + 0: The maximum resident set size (KB) = 642268 Test 081 control_csawmg_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmgt_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_csawmgt_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_csawmgt_debug Checking test 082 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 242.475940 - 0: The maximum resident set size (KB) = 642684 + 0: The total amount of wall time = 262.509991 + 0: The maximum resident set size (KB) = 642576 Test 082 control_csawmgt_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_ras_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_ras_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_ras_debug Checking test 083 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 158.214064 - 0: The maximum resident set size (KB) = 613720 + 0: The total amount of wall time = 164.754081 + 0: The maximum resident set size (KB) = 613444 Test 083 control_ras_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_diag_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_diag_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_diag_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_diag_debug Checking test 084 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 160.798463 - 0: The maximum resident set size (KB) = 660684 + 0: The total amount of wall time = 168.486029 + 0: The maximum resident set size (KB) = 660520 Test 084 control_diag_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_debug_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_debug_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_debug_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_debug_p8 Checking test 085 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 181.265445 - 0: The maximum resident set size (KB) = 1380204 + 0: The total amount of wall time = 196.997655 + 0: The maximum resident set size (KB) = 1380144 Test 085 control_debug_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/regional_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/regional_debug Checking test 086 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1042.919849 - 0: The maximum resident set size (KB) = 606860 + 0: The total amount of wall time = 1062.146970 + 0: The maximum resident set size (KB) = 606732 Test 086 regional_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rap_control_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rap_control_debug Checking test 087 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 286.908281 - 0: The maximum resident set size (KB) = 972212 + 0: The total amount of wall time = 298.830674 + 0: The maximum resident set size (KB) = 972104 Test 087 rap_control_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hrrr_control_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hrrr_control_debug Checking test 088 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 284.795701 - 0: The maximum resident set size (KB) = 967184 + 0: The total amount of wall time = 290.522807 + 0: The maximum resident set size (KB) = 967276 Test 088 hrrr_control_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rap_unified_drag_suite_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rap_unified_drag_suite_debug Checking test 089 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 285.836724 - 0: The maximum resident set size (KB) = 972124 + 0: The total amount of wall time = 298.939132 + 0: The maximum resident set size (KB) = 972220 Test 089 rap_unified_drag_suite_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_diag_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rap_diag_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_diag_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rap_diag_debug Checking test 090 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 300.393266 - 0: The maximum resident set size (KB) = 1056412 + 0: The total amount of wall time = 315.841078 + 0: The maximum resident set size (KB) = 1056444 Test 090 rap_diag_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_cires_ugwp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rap_cires_ugwp_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rap_cires_ugwp_debug Checking test 091 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 291.152260 - 0: The maximum resident set size (KB) = 971328 + 0: The total amount of wall time = 303.171442 + 0: The maximum resident set size (KB) = 971196 Test 091 rap_cires_ugwp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_cires_ugwp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rap_unified_ugwp_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rap_unified_ugwp_debug Checking test 092 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 293.409378 - 0: The maximum resident set size (KB) = 973480 + 0: The total amount of wall time = 303.603461 + 0: The maximum resident set size (KB) = 973632 Test 092 rap_unified_ugwp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_lndp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rap_lndp_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_lndp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rap_lndp_debug Checking test 093 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 289.784706 - 0: The maximum resident set size (KB) = 972960 + 0: The total amount of wall time = 301.304576 + 0: The maximum resident set size (KB) = 972808 Test 093 rap_lndp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_flake_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rap_flake_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_flake_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rap_flake_debug Checking test 094 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 287.212769 - 0: The maximum resident set size (KB) = 972096 + 0: The total amount of wall time = 296.656209 + 0: The maximum resident set size (KB) = 972020 Test 094 rap_flake_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_progcld_thompson_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rap_progcld_thompson_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_progcld_thompson_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rap_progcld_thompson_debug Checking test 095 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 289.998087 - 0: The maximum resident set size (KB) = 972344 + 0: The total amount of wall time = 297.121195 + 0: The maximum resident set size (KB) = 972052 Test 095 rap_progcld_thompson_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_noah_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rap_noah_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rap_noah_debug Checking test 096 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.427160 - 0: The maximum resident set size (KB) = 970700 + 0: The total amount of wall time = 291.141954 + 0: The maximum resident set size (KB) = 970616 Test 096 rap_noah_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rap_sfcdiff_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rap_sfcdiff_debug Checking test 097 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 287.321233 - 0: The maximum resident set size (KB) = 972076 + 0: The total amount of wall time = 297.843661 + 0: The maximum resident set size (KB) = 971788 Test 097 rap_sfcdiff_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rap_noah_sfcdiff_cires_ugwp_debug Checking test 098 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 473.122579 - 0: The maximum resident set size (KB) = 971440 + 0: The total amount of wall time = 483.550292 + 0: The maximum resident set size (KB) = 971392 Test 098 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1beta_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rrfs_v1beta_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rrfs_v1beta_debug Checking test 099 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 284.086605 - 0: The maximum resident set size (KB) = 968052 + 0: The total amount of wall time = 296.261009 + 0: The maximum resident set size (KB) = 967968 Test 099 rrfs_v1beta_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wam_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_wam_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_wam_debug Checking test 100 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 295.097674 - 0: The maximum resident set size (KB) = 219120 + 0: The total amount of wall time = 296.620749 + 0: The maximum resident set size (KB) = 219112 Test 100 control_wam_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 101 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3420,14 +3350,14 @@ Checking test 101 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 303.589617 - 0: The maximum resident set size (KB) = 788052 + 0: The total amount of wall time = 331.503202 + 0: The maximum resident set size (KB) = 788240 Test 101 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rap_control_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rap_control_dyn32_phy32 Checking test 102 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3474,14 +3404,14 @@ Checking test 102 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 389.472831 - 0: The maximum resident set size (KB) = 690808 + 0: The total amount of wall time = 397.595512 + 0: The maximum resident set size (KB) = 690912 Test 102 rap_control_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hrrr_control_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hrrr_control_dyn32_phy32 Checking test 103 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3528,14 +3458,14 @@ Checking test 103 hrrr_control_dyn32_phy32 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 = 205.330609 - 0: The maximum resident set size (KB) = 689076 + 0: The total amount of wall time = 214.714284 + 0: The maximum resident set size (KB) = 689252 Test 103 hrrr_control_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rap_2threads_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rap_2threads_dyn32_phy32 Checking test 104 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3582,14 +3512,14 @@ Checking test 104 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 384.935646 - 0: The maximum resident set size (KB) = 740112 + 0: The total amount of wall time = 380.772794 + 0: The maximum resident set size (KB) = 740516 Test 104 rap_2threads_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hrrr_control_2threads_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hrrr_control_2threads_dyn32_phy32 Checking test 105 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3636,14 +3566,14 @@ Checking test 105 hrrr_control_2threads_dyn32_phy32 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 = 200.019667 - 0: The maximum resident set size (KB) = 742692 + 0: The total amount of wall time = 211.592422 + 0: The maximum resident set size (KB) = 742832 Test 105 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hrrr_control_decomp_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hrrr_control_decomp_dyn32_phy32 Checking test 106 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3690,14 +3620,14 @@ Checking test 106 hrrr_control_decomp_dyn32_phy32 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 = 224.021981 - 0: The maximum resident set size (KB) = 688076 + 0: The total amount of wall time = 227.148865 + 0: The maximum resident set size (KB) = 687980 Test 106 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rap_restart_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rap_restart_dyn32_phy32 Checking test 107 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3736,14 +3666,14 @@ Checking test 107 rap_restart_dyn32_phy32 results .... Comparing 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.166290 - 0: The maximum resident set size (KB) = 524836 + 0: The total amount of wall time = 294.829873 + 0: The maximum resident set size (KB) = 524880 Test 107 rap_restart_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hrrr_control_restart_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hrrr_control_restart_dyn32_phy32 Checking test 108 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3782,14 +3712,14 @@ Checking test 108 hrrr_control_restart_dyn32_phy32 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 = 111.513444 - 0: The maximum resident set size (KB) = 517728 + 0: The total amount of wall time = 106.857201 + 0: The maximum resident set size (KB) = 517672 Test 108 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn64_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rap_control_dyn64_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn64_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rap_control_dyn64_phy32 Checking test 109 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3836,81 +3766,81 @@ Checking test 109 rap_control_dyn64_phy32 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 = 259.616198 - 0: The maximum resident set size (KB) = 713776 + 0: The total amount of wall time = 269.565261 + 0: The maximum resident set size (KB) = 713864 Test 109 rap_control_dyn64_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rap_control_debug_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rap_control_debug_dyn32_phy32 Checking test 110 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 285.624359 - 0: The maximum resident set size (KB) = 856716 + 0: The total amount of wall time = 295.564160 + 0: The maximum resident set size (KB) = 856772 Test 110 rap_control_debug_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hrrr_control_debug_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hrrr_control_debug_dyn32_phy32 Checking test 111 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 283.092570 - 0: The maximum resident set size (KB) = 855212 + 0: The total amount of wall time = 288.608347 + 0: The maximum resident set size (KB) = 854852 Test 111 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/rap_control_dyn64_phy32_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rap_control_dyn64_phy32_debug Checking test 112 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 288.880931 - 0: The maximum resident set size (KB) = 880420 + 0: The total amount of wall time = 299.468266 + 0: The maximum resident set size (KB) = 880308 Test 112 rap_control_dyn64_phy32_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hafs_regional_atm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hafs_regional_atm Checking test 113 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 274.756916 - 0: The maximum resident set size (KB) = 681232 + 0: The total amount of wall time = 276.201999 + 0: The maximum resident set size (KB) = 681680 Test 113 hafs_regional_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hafs_regional_atm_thompson_gfdlsf +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hafs_regional_atm_thompson_gfdlsf Checking test 114 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 309.628001 - 0: The maximum resident set size (KB) = 1036628 + 0: The total amount of wall time = 308.908409 + 0: The maximum resident set size (KB) = 1036920 Test 114 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_ocn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hafs_regional_atm_ocn +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hafs_regional_atm_ocn Checking test 115 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3919,14 +3849,14 @@ Checking test 115 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 435.642321 - 0: The maximum resident set size (KB) = 712460 + 0: The total amount of wall time = 458.879792 + 0: The maximum resident set size (KB) = 712396 Test 115 hafs_regional_atm_ocn PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_wav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hafs_regional_atm_wav +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_wav +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hafs_regional_atm_wav Checking test 116 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3935,14 +3865,14 @@ Checking test 116 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 939.668303 - 0: The maximum resident set size (KB) = 746908 + 0: The total amount of wall time = 938.760423 + 0: The maximum resident set size (KB) = 747640 Test 116 hafs_regional_atm_wav PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_ocn_wav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hafs_regional_atm_ocn_wav +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn_wav +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hafs_regional_atm_ocn_wav Checking test 117 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3953,28 +3883,28 @@ Checking test 117 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 1034.205378 - 0: The maximum resident set size (KB) = 764760 + 0: The total amount of wall time = 1052.307244 + 0: The maximum resident set size (KB) = 764296 Test 117 hafs_regional_atm_ocn_wav PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hafs_regional_1nest_atm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_1nest_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hafs_regional_1nest_atm Checking test 118 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 379.659275 - 0: The maximum resident set size (KB) = 276132 + 0: The total amount of wall time = 383.032637 + 0: The maximum resident set size (KB) = 277124 Test 118 hafs_regional_1nest_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hafs_regional_telescopic_2nests_atm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hafs_regional_telescopic_2nests_atm Checking test 119 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3983,28 +3913,28 @@ Checking test 119 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 437.671968 - 0: The maximum resident set size (KB) = 282292 + 0: The total amount of wall time = 437.252416 + 0: The maximum resident set size (KB) = 282600 Test 119 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hafs_global_1nest_atm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_1nest_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hafs_global_1nest_atm Checking test 120 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 183.642890 - 0: The maximum resident set size (KB) = 177772 + 0: The total amount of wall time = 172.147320 + 0: The maximum resident set size (KB) = 178040 Test 120 hafs_global_1nest_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_multiple_4nests_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hafs_global_multiple_4nests_atm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_multiple_4nests_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hafs_global_multiple_4nests_atm Checking test 121 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4022,14 +3952,14 @@ Checking test 121 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 507.175679 - 0: The maximum resident set size (KB) = 229956 + 0: The total amount of wall time = 512.563419 + 0: The maximum resident set size (KB) = 208676 Test 121 hafs_global_multiple_4nests_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hafs_regional_specified_moving_1nest_atm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hafs_regional_specified_moving_1nest_atm Checking test 122 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4038,28 +3968,28 @@ Checking test 122 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 243.195448 - 0: The maximum resident set size (KB) = 288288 + 0: The total amount of wall time = 238.253177 + 0: The maximum resident set size (KB) = 288212 Test 122 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hafs_regional_storm_following_1nest_atm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hafs_regional_storm_following_1nest_atm Checking test 123 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 227.865179 - 0: The maximum resident set size (KB) = 287092 + 0: The total amount of wall time = 225.704490 + 0: The maximum resident set size (KB) = 286988 Test 123 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hafs_regional_storm_following_1nest_atm_ocn Checking test 124 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4068,42 +3998,42 @@ Checking test 124 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 263.132613 - 0: The maximum resident set size (KB) = 324104 + 0: The total amount of wall time = 269.951303 + 0: The maximum resident set size (KB) = 324288 Test 124 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hafs_global_storm_following_1nest_atm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_storm_following_1nest_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hafs_global_storm_following_1nest_atm Checking test 125 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 70.325184 - 0: The maximum resident set size (KB) = 192812 + 0: The total amount of wall time = 70.791324 + 0: The maximum resident set size (KB) = 192948 Test 125 hafs_global_storm_following_1nest_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 126 hafs_regional_storm_following_1nest_atm_ocn_debug results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 775.678676 - 0: The maximum resident set size (KB) = 352996 + 0: The total amount of wall time = 782.187963 + 0: The maximum resident set size (KB) = 353160 Test 126 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 127 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4114,14 +4044,14 @@ Checking test 127 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 744.362188 - 0: The maximum resident set size (KB) = 367028 + 0: The total amount of wall time = 737.356886 + 0: The maximum resident set size (KB) = 366700 Test 127 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_docn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hafs_regional_docn +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_docn +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hafs_regional_docn Checking test 128 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4129,14 +4059,14 @@ Checking test 128 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 393.831946 - 0: The maximum resident set size (KB) = 723376 + 0: The total amount of wall time = 389.116045 + 0: The maximum resident set size (KB) = 723212 Test 128 hafs_regional_docn PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_docn_oisst -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hafs_regional_docn_oisst +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_docn_oisst +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hafs_regional_docn_oisst Checking test 129 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4144,131 +4074,131 @@ Checking test 129 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 389.105197 - 0: The maximum resident set size (KB) = 709432 + 0: The total amount of wall time = 389.347870 + 0: The maximum resident set size (KB) = 710132 Test 129 hafs_regional_docn_oisst PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_datm_cdeps -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/hafs_regional_datm_cdeps +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_datm_cdeps +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hafs_regional_datm_cdeps Checking test 130 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 1168.527335 - 0: The maximum resident set size (KB) = 808980 + 0: The total amount of wall time = 1171.687483 + 0: The maximum resident set size (KB) = 808992 Test 130 hafs_regional_datm_cdeps PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/datm_cdeps_control_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/datm_cdeps_control_cfsr Checking test 131 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 167.674770 - 0: The maximum resident set size (KB) = 721060 + 0: The total amount of wall time = 168.435731 + 0: The maximum resident set size (KB) = 715724 Test 131 datm_cdeps_control_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/datm_cdeps_restart_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/datm_cdeps_restart_cfsr Checking test 132 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 96.765422 - 0: The maximum resident set size (KB) = 715932 + 0: The total amount of wall time = 96.691630 + 0: The maximum resident set size (KB) = 715912 Test 132 datm_cdeps_restart_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/datm_cdeps_control_gefs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/datm_cdeps_control_gefs Checking test 133 datm_cdeps_control_gefs 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 = 165.205846 - 0: The maximum resident set size (KB) = 603068 + 0: The total amount of wall time = 162.338902 + 0: The maximum resident set size (KB) = 608800 Test 133 datm_cdeps_control_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_iau_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/datm_cdeps_iau_gefs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_iau_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/datm_cdeps_iau_gefs Checking test 134 datm_cdeps_iau_gefs 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 = 161.892606 - 0: The maximum resident set size (KB) = 605012 + 0: The total amount of wall time = 166.397940 + 0: The maximum resident set size (KB) = 607164 Test 134 datm_cdeps_iau_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_stochy_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/datm_cdeps_stochy_gefs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_stochy_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/datm_cdeps_stochy_gefs Checking test 135 datm_cdeps_stochy_gefs 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 = 161.608795 - 0: The maximum resident set size (KB) = 600996 + 0: The total amount of wall time = 162.440756 + 0: The maximum resident set size (KB) = 598152 Test 135 datm_cdeps_stochy_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/datm_cdeps_ciceC_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_ciceC_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/datm_cdeps_ciceC_cfsr Checking test 136 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 165.792171 - 0: The maximum resident set size (KB) = 721476 + 0: The total amount of wall time = 170.239566 + 0: The maximum resident set size (KB) = 717696 Test 136 datm_cdeps_ciceC_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_bulk_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/datm_cdeps_bulk_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_bulk_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/datm_cdeps_bulk_cfsr Checking test 137 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 166.822891 - 0: The maximum resident set size (KB) = 721204 + 0: The total amount of wall time = 164.917461 + 0: The maximum resident set size (KB) = 715816 Test 137 datm_cdeps_bulk_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_bulk_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/datm_cdeps_bulk_gefs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_bulk_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/datm_cdeps_bulk_gefs Checking test 138 datm_cdeps_bulk_gefs 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 = 161.158318 - 0: The maximum resident set size (KB) = 608076 + 0: The total amount of wall time = 163.247702 + 0: The maximum resident set size (KB) = 608924 Test 138 datm_cdeps_bulk_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_mx025_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/datm_cdeps_mx025_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_mx025_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/datm_cdeps_mx025_cfsr Checking test 139 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4277,14 +4207,14 @@ Checking test 139 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 428.476106 - 0: The maximum resident set size (KB) = 494952 + 0: The total amount of wall time = 411.611785 + 0: The maximum resident set size (KB) = 494420 Test 139 datm_cdeps_mx025_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_mx025_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/datm_cdeps_mx025_gefs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_mx025_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/datm_cdeps_mx025_gefs Checking test 140 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4293,77 +4223,77 @@ Checking test 140 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 433.543825 - 0: The maximum resident set size (KB) = 476736 + 0: The total amount of wall time = 430.934977 + 0: The maximum resident set size (KB) = 475744 Test 140 datm_cdeps_mx025_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/datm_cdeps_multiple_files_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/datm_cdeps_multiple_files_cfsr Checking test 141 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 166.011060 - 0: The maximum resident set size (KB) = 721536 + 0: The total amount of wall time = 166.309890 + 0: The maximum resident set size (KB) = 715824 Test 141 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/datm_cdeps_3072x1536_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/datm_cdeps_3072x1536_cfsr Checking test 142 datm_cdeps_3072x1536_cfsr 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 = 253.523195 - 0: The maximum resident set size (KB) = 1948172 + 0: The total amount of wall time = 255.714373 + 0: The maximum resident set size (KB) = 1947960 Test 142 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_gfs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/datm_cdeps_gfs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_gfs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/datm_cdeps_gfs Checking test 143 datm_cdeps_gfs 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 = 249.974847 - 0: The maximum resident set size (KB) = 1967620 + 0: The total amount of wall time = 256.762095 + 0: The maximum resident set size (KB) = 1947640 Test 143 datm_cdeps_gfs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_debug_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/datm_cdeps_debug_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_debug_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/datm_cdeps_debug_cfsr Checking test 144 datm_cdeps_debug_cfsr 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 = 373.921194 - 0: The maximum resident set size (KB) = 714700 + 0: The total amount of wall time = 373.118633 + 0: The maximum resident set size (KB) = 708084 Test 144 datm_cdeps_debug_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr_faster -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/datm_cdeps_control_cfsr_faster +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr_faster +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/datm_cdeps_control_cfsr_faster Checking test 145 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 163.387844 - 0: The maximum resident set size (KB) = 721352 + 0: The total amount of wall time = 164.181284 + 0: The maximum resident set size (KB) = 721276 Test 145 datm_cdeps_control_cfsr_faster PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/datm_cdeps_lnd_gswp3 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/datm_cdeps_lnd_gswp3 Checking test 146 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4372,14 +4302,14 @@ Checking test 146 datm_cdeps_lnd_gswp3 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.895409 - 0: The maximum resident set size (KB) = 149928 + 0: The total amount of wall time = 10.671925 + 0: The maximum resident set size (KB) = 153944 Test 146 datm_cdeps_lnd_gswp3 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/datm_cdeps_lnd_gswp3_rst +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/datm_cdeps_lnd_gswp3_rst Checking test 147 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4388,14 +4318,14 @@ Checking test 147 datm_cdeps_lnd_gswp3_rst 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 = 16.471056 - 0: The maximum resident set size (KB) = 149828 + 0: The total amount of wall time = 23.943832 + 0: The maximum resident set size (KB) = 149936 Test 147 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_atmlnd_sbs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_p8_atmlnd_sbs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_atmlnd_sbs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_p8_atmlnd_sbs Checking test 148 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4480,14 +4410,14 @@ Checking test 148 control_p8_atmlnd_sbs 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 = 232.970971 - 0: The maximum resident set size (KB) = 1424976 + 0: The total amount of wall time = 233.680676 + 0: The maximum resident set size (KB) = 1412424 Test 148 control_p8_atmlnd_sbs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_atmwav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/control_atmwav +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_atmwav +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_atmwav Checking test 149 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4531,14 +4461,14 @@ Checking test 149 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 94.232400 - 0: The maximum resident set size (KB) = 450560 + 0: The total amount of wall time = 94.055888 + 0: The maximum resident set size (KB) = 450752 Test 149 control_atmwav PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/atmaero_control_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/atmaero_control_p8 Checking test 150 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4582,14 +4512,14 @@ Checking test 150 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 252.545148 - 0: The maximum resident set size (KB) = 1478556 + 0: The total amount of wall time = 248.738018 + 0: The maximum resident set size (KB) = 1447884 Test 150 atmaero_control_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8_rad -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/atmaero_control_p8_rad +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/atmaero_control_p8_rad Checking test 151 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4633,14 +4563,14 @@ Checking test 151 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 299.424245 - 0: The maximum resident set size (KB) = 1481712 + 0: The total amount of wall time = 307.214707 + 0: The maximum resident set size (KB) = 1468396 Test 151 atmaero_control_p8_rad PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8_rad_micro -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/atmaero_control_p8_rad_micro +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad_micro +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/atmaero_control_p8_rad_micro Checking test 152 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4684,14 +4614,14 @@ Checking test 152 atmaero_control_p8_rad_micro results .... Comparing 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.400788 - 0: The maximum resident set size (KB) = 1486876 + 0: The total amount of wall time = 307.479311 + 0: The maximum resident set size (KB) = 1473160 Test 152 atmaero_control_p8_rad_micro PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_atmaq -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/regional_atmaq +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/regional_atmaq Checking test 153 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4707,14 +4637,14 @@ Checking test 153 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 630.911169 - 0: The maximum resident set size (KB) = 1088084 + 0: The total amount of wall time = 646.020696 + 0: The maximum resident set size (KB) = 1101548 Test 153 regional_atmaq PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_atmaq_faster -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_26478/regional_atmaq_faster +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq_faster +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/regional_atmaq_faster Checking test 154 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4730,25 +4660,24 @@ Checking test 154 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 637.594771 - 0: The maximum resident set size (KB) = 1077632 + 0: The total amount of wall time = 620.037739 + 0: The maximum resident set size (KB) = 1096400 Test 154 regional_atmaq_faster PASS FAILED TESTS: -Test cpld_control_p8_faster 021 failed in check_result failed Test cpld_control_p8_faster 021 failed in run_test failed REGRESSION TEST FAILED -Sat Mar 4 17:26:04 EST 2023 -Elapsed time: 01h:50m:18s. Have a nice day! -Mon Mar 6 09:31:36 EST 2023 +Wed Mar 8 19:34:56 EST 2023 +Elapsed time: 05h:29m:43s. Have a nice day! +Wed Mar 8 19:55:56 EST 2023 Start Regression test -Compile 001 elapsed time 915 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 001 elapsed time 986 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8_faster -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_37025/cpld_control_p8_faster +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_faster +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_6091/cpld_control_p8_faster Checking test 001 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -4813,12 +4742,12 @@ Checking test 001 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 405.873791 - 0: The maximum resident set size (KB) = 1586512 + 0: The total amount of wall time = 373.895626 + 0: The maximum resident set size (KB) = 1567976 Test 001 cpld_control_p8_faster PASS REGRESSION TEST WAS SUCCESSFUL -Mon Mar 6 10:47:08 EST 2023 -Elapsed time: 01h:15m:33s. Have a nice day! +Wed Mar 8 20:29:07 EST 2023 +Elapsed time: 00h:33m:26s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 835b407e279..21f2f6c6251 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,21 +1,21 @@ -Sat Mar 4 19:48:45 UTC 2023 +Wed Mar 8 18:48:43 UTC 2023 Start Regression test -Compile 001 elapsed time 179 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 178 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile 002 elapsed time 184 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 310 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 003 elapsed time 311 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug Compile 004 elapsed time 95 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 180 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 387 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 005 elapsed time 179 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 388 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile 007 elapsed time 312 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug Compile 008 elapsed time 312 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 253 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 225 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 140 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 009 elapsed time 257 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 222 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 139 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON Compile 012 elapsed time 113 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/control_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/control_c48 Checking test 001 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -54,14 +54,14 @@ Checking test 001 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 687.569479 -0: The maximum resident set size (KB) = 698272 +0: The total amount of wall time = 682.355812 +0: The maximum resident set size (KB) = 702256 Test 001 control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/control_stochy +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/control_stochy Checking test 002 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -72,14 +72,14 @@ Checking test 002 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 666.416902 - 0: The maximum resident set size (KB) = 479384 + 0: The total amount of wall time = 654.802339 + 0: The maximum resident set size (KB) = 478132 Test 002 control_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/control_ras +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/control_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/control_ras Checking test 003 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -90,14 +90,14 @@ Checking test 003 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 830.906204 - 0: The maximum resident set size (KB) = 486292 + 0: The total amount of wall time = 819.915274 + 0: The maximum resident set size (KB) = 486772 Test 003 control_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/control_p8 Checking test 004 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -144,14 +144,14 @@ Checking test 004 control_p8 results .... Comparing 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.694769 - 0: The maximum resident set size (KB) = 1231520 + 0: The total amount of wall time = 911.645749 + 0: The maximum resident set size (KB) = 1231888 Test 004 control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/rap_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/rap_control Checking test 005 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -198,14 +198,14 @@ Checking test 005 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1456.214262 - 0: The maximum resident set size (KB) = 826216 + 0: The total amount of wall time = 1476.105232 + 0: The maximum resident set size (KB) = 827272 Test 005 rap_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/rap_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/rap_decomp Checking test 006 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -252,14 +252,14 @@ Checking test 006 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1421.087517 - 0: The maximum resident set size (KB) = 829536 + 0: The total amount of wall time = 1450.646374 + 0: The maximum resident set size (KB) = 830716 Test 006 rap_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/rap_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/rap_2threads Checking test 007 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -306,14 +306,14 @@ Checking test 007 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1346.205838 - 0: The maximum resident set size (KB) = 898148 + 0: The total amount of wall time = 1333.477024 + 0: The maximum resident set size (KB) = 897896 Test 007 rap_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/rap_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/rap_restart Checking test 008 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -352,14 +352,14 @@ Checking test 008 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 739.011066 - 0: The maximum resident set size (KB) = 549584 + 0: The total amount of wall time = 728.915132 + 0: The maximum resident set size (KB) = 545016 Test 008 rap_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/rap_sfcdiff +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/rap_sfcdiff Checking test 009 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -406,14 +406,14 @@ Checking test 009 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1446.645066 - 0: The maximum resident set size (KB) = 827692 + 0: The total amount of wall time = 1469.223304 + 0: The maximum resident set size (KB) = 829620 Test 009 rap_sfcdiff PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/rap_sfcdiff_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/rap_sfcdiff_decomp Checking test 010 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -460,14 +460,14 @@ Checking test 010 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1434.115884 - 0: The maximum resident set size (KB) = 826376 + 0: The total amount of wall time = 1462.989314 + 0: The maximum resident set size (KB) = 830432 Test 010 rap_sfcdiff_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/rap_sfcdiff_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/rap_sfcdiff_restart Checking test 011 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -506,14 +506,14 @@ Checking test 011 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1085.320289 - 0: The maximum resident set size (KB) = 550236 + 0: The total amount of wall time = 1064.649970 + 0: The maximum resident set size (KB) = 555008 Test 011 rap_sfcdiff_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/hrrr_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/hrrr_control Checking test 012 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -560,14 +560,14 @@ Checking test 012 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1436.662439 - 0: The maximum resident set size (KB) = 827460 + 0: The total amount of wall time = 1420.478225 + 0: The maximum resident set size (KB) = 825692 Test 012 hrrr_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/hrrr_control_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/hrrr_control_2threads Checking test 013 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -614,14 +614,14 @@ Checking test 013 hrrr_control_2threads results .... Comparing 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.228300 - 0: The maximum resident set size (KB) = 890848 + 0: The total amount of wall time = 1321.714190 + 0: The maximum resident set size (KB) = 892732 Test 013 hrrr_control_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/hrrr_control_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/hrrr_control_decomp Checking test 014 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -668,14 +668,14 @@ Checking test 014 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1423.902413 - 0: The maximum resident set size (KB) = 831164 + 0: The total amount of wall time = 1441.376565 + 0: The maximum resident set size (KB) = 827624 Test 014 hrrr_control_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/hrrr_control_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/hrrr_control_restart Checking test 015 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -714,14 +714,14 @@ Checking test 015 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1049.586820 - 0: The maximum resident set size (KB) = 550844 + 0: The total amount of wall time = 1064.852715 + 0: The maximum resident set size (KB) = 547140 Test 015 hrrr_control_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/rrfs_v1beta +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/rrfs_v1beta Checking test 016 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -768,14 +768,14 @@ Checking test 016 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1439.850285 - 0: The maximum resident set size (KB) = 826256 + 0: The total amount of wall time = 1449.123000 + 0: The maximum resident set size (KB) = 830832 Test 016 rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/rrfs_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/rrfs_conus13km_hrrr_warm Checking test 017 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -784,14 +784,14 @@ Checking test 017 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 759.070324 - 0: The maximum resident set size (KB) = 636772 + 0: The total amount of wall time = 790.477177 + 0: The maximum resident set size (KB) = 636152 Test 017 rrfs_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/rrfs_smoke_conus13km_hrrr_warm Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -800,14 +800,14 @@ Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 797.263319 - 0: The maximum resident set size (KB) = 650192 + 0: The total amount of wall time = 809.639374 + 0: The maximum resident set size (KB) = 651488 Test 018 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/rrfs_conus13km_radar_tten_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/rrfs_conus13km_radar_tten_warm Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -816,14 +816,14 @@ Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 795.117104 - 0: The maximum resident set size (KB) = 640024 + 0: The total amount of wall time = 706.494754 + 0: The maximum resident set size (KB) = 638688 Test 019 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/rrfs_conus13km_radar_tten_warm_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/rrfs_conus13km_radar_tten_warm_2threads Checking test 020 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -832,208 +832,208 @@ Checking test 020 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 899.812997 - 0: The maximum resident set size (KB) = 635416 + 0: The total amount of wall time = 890.945608 + 0: The maximum resident set size (KB) = 638364 Test 020 rrfs_conus13km_radar_tten_warm_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/control_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/control_diag_debug Checking test 021 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 130.542255 - 0: The maximum resident set size (KB) = 530048 + 0: The total amount of wall time = 127.366642 + 0: The maximum resident set size (KB) = 533600 Test 021 control_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/regional_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/regional_debug Checking test 022 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 592.908726 - 0: The maximum resident set size (KB) = 594916 + 0: The total amount of wall time = 605.608514 + 0: The maximum resident set size (KB) = 595136 Test 022 regional_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/rap_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/rap_control_debug Checking test 023 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 175.640009 - 0: The maximum resident set size (KB) = 846816 + 0: The total amount of wall time = 179.426420 + 0: The maximum resident set size (KB) = 847532 Test 023 rap_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/hrrr_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/hrrr_control_debug Checking test 024 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 175.031380 - 0: The maximum resident set size (KB) = 842900 + 0: The total amount of wall time = 174.472156 + 0: The maximum resident set size (KB) = 842028 Test 024 hrrr_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/rap_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/rap_diag_debug Checking test 025 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 214.027605 - 0: The maximum resident set size (KB) = 928544 + 0: The total amount of wall time = 216.558657 + 0: The maximum resident set size (KB) = 928472 Test 025 rap_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/rap_noah_sfcdiff_cires_ugwp_debug Checking test 026 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 283.894594 - 0: The maximum resident set size (KB) = 843860 + 0: The total amount of wall time = 278.043056 + 0: The maximum resident set size (KB) = 843276 Test 026 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/rap_progcld_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/rap_progcld_thompson_debug Checking test 027 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 177.591581 - 0: The maximum resident set size (KB) = 849544 + 0: The total amount of wall time = 180.828856 + 0: The maximum resident set size (KB) = 849428 Test 027 rap_progcld_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/rrfs_v1beta_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/rrfs_v1beta_debug Checking test 028 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 175.416823 - 0: The maximum resident set size (KB) = 843156 + 0: The total amount of wall time = 177.323305 + 0: The maximum resident set size (KB) = 846396 Test 028 rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/control_ras_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/control_ras_debug Checking test 029 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 104.569374 - 0: The maximum resident set size (KB) = 482444 + 0: The total amount of wall time = 103.695708 + 0: The maximum resident set size (KB) = 483900 Test 029 control_ras_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/control_stochy_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/control_stochy_debug Checking test 030 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 118.440657 - 0: The maximum resident set size (KB) = 476304 + 0: The total amount of wall time = 117.837026 + 0: The maximum resident set size (KB) = 479664 Test 030 control_stochy_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/control_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/control_debug_p8 Checking test 031 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 119.962301 - 0: The maximum resident set size (KB) = 1234068 + 0: The total amount of wall time = 120.588814 + 0: The maximum resident set size (KB) = 1234016 Test 031 control_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/rrfs_conus13km_hrrr_warm_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_conus13km_hrrr_warm_debugs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/rrfs_conus13km_hrrr_warm_debug Checking test 032 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 575.668703 - 0: The maximum resident set size (KB) = 653064 + 0: The total amount of wall time = 535.860072 + 0: The maximum resident set size (KB) = 652852 Test 032 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rrfs_conus13km_radar_tten_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/rrfs_conus13km_radar_tten_warm_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_conus13km_radar_tten_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/rrfs_conus13km_radar_tten_warm_debug Checking test 033 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 571.650398 - 0: The maximum resident set size (KB) = 657296 + 0: The total amount of wall time = 584.291045 + 0: The maximum resident set size (KB) = 656148 Test 033 rrfs_conus13km_radar_tten_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/control_wam_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/control_wam_debug Checking test 034 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 184.673782 - 0: The maximum resident set size (KB) = 193048 + 0: The total amount of wall time = 186.141810 + 0: The maximum resident set size (KB) = 193940 Test 034 control_wam_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/rap_control_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/rap_control_dyn32_phy32 Checking test 035 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1080,14 +1080,14 @@ Checking test 035 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1448.646234 - 0: The maximum resident set size (KB) = 689096 + 0: The total amount of wall time = 1462.735342 + 0: The maximum resident set size (KB) = 685572 Test 035 rap_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/hrrr_control_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/hrrr_control_dyn32_phy32 Checking test 036 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1134,14 +1134,14 @@ Checking test 036 hrrr_control_dyn32_phy32 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 = 735.473695 - 0: The maximum resident set size (KB) = 689220 + 0: The total amount of wall time = 738.943688 + 0: The maximum resident set size (KB) = 685668 Test 036 hrrr_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/rap_2threads_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/rap_2threads_dyn32_phy32 Checking test 037 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1188,14 +1188,14 @@ Checking test 037 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1316.605144 - 0: The maximum resident set size (KB) = 728848 + 0: The total amount of wall time = 1348.642021 + 0: The maximum resident set size (KB) = 731040 Test 037 rap_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/hrrr_control_2threads_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/hrrr_control_2threads_dyn32_phy32 Checking test 038 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1242,14 +1242,14 @@ Checking test 038 hrrr_control_2threads_dyn32_phy32 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 = 669.416747 - 0: The maximum resident set size (KB) = 728480 + 0: The total amount of wall time = 673.903231 + 0: The maximum resident set size (KB) = 724032 Test 038 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/hrrr_control_decomp_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/hrrr_control_decomp_dyn32_phy32 Checking test 039 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1296,14 +1296,14 @@ Checking test 039 hrrr_control_decomp_dyn32_phy32 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 = 737.384549 - 0: The maximum resident set size (KB) = 684076 + 0: The total amount of wall time = 736.915262 + 0: The maximum resident set size (KB) = 686164 Test 039 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/rap_restart_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/rap_restart_dyn32_phy32 Checking test 040 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1342,14 +1342,14 @@ Checking test 040 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1093.191865 - 0: The maximum resident set size (KB) = 515928 + 0: The total amount of wall time = 1077.092690 + 0: The maximum resident set size (KB) = 516060 Test 040 rap_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/hrrr_control_restart_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/hrrr_control_restart_dyn32_phy32 Checking test 041 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1388,14 +1388,14 @@ Checking test 041 hrrr_control_restart_dyn32_phy32 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 = 365.726584 - 0: The maximum resident set size (KB) = 508620 + 0: The total amount of wall time = 372.044029 + 0: The maximum resident set size (KB) = 512500 Test 041 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/rap_control_dyn64_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/rap_control_dyn64_phy32 Checking test 042 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1442,128 +1442,58 @@ Checking test 042 rap_control_dyn64_phy32 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 = 1062.739029 - 0: The maximum resident set size (KB) = 708904 + 0: The total amount of wall time = 1057.824830 + 0: The maximum resident set size (KB) = 709960 Test 042 rap_control_dyn64_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/rap_control_debug_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/rap_control_debug_dyn32_phy32 Checking test 043 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 174.182849 - 0: The maximum resident set size (KB) = 701084 + 0: The total amount of wall time = 169.642350 + 0: The maximum resident set size (KB) = 710304 Test 043 rap_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/hrrr_control_debug_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/hrrr_control_debug_dyn32_phy32 Checking test 044 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 174.373416 - 0: The maximum resident set size (KB) = 702304 + 0: The total amount of wall time = 172.103080 + 0: The maximum resident set size (KB) = 708988 Test 044 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/rap_control_dyn64_phy32_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_debug_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/rap_control_dyn64_phy32_debug Checking test 045 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 207.383731 - 0: The maximum resident set size (KB) = 718548 + 0: The total amount of wall time = 203.667185 + 0: The maximum resident set size (KB) = 724732 Test 045 rap_control_dyn64_phy32_debug PASS +Test 046 cpld_control_p8 FAIL -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/cpld_control_p8 -Checking test 046 cpld_control_p8 results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 1780.532942 - 0: The maximum resident set size (KB) = 1428688 -Test 046 cpld_control_p8 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/cpld_control_nowave_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/cpld_control_c96_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/cpld_control_nowave_noaero_p8 Checking test 047 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1625,14 +1555,14 @@ Checking test 047 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 1210.187846 - 0: The maximum resident set size (KB) = 1332564 + 0: The total amount of wall time = 1229.194464 + 0: The maximum resident set size (KB) = 1330956 Test 047 cpld_control_nowave_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/cpld_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/cpld_debug_p8 Checking test 048 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1685,25 +1615,107 @@ Checking test 048 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 859.213237 - 0: The maximum resident set size (KB) = 1444772 + 0: The total amount of wall time = 893.937828 + 0: The maximum resident set size (KB) = 1446376 -Test 048 cpld_debug_p8 PASS Tries: 2 +Test 048 cpld_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2079/datm_cdeps_control_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/datm_cdeps_control_cfsr Checking test 049 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 176.099080 - 0: The maximum resident set size (KB) = 665420 + 0: The total amount of wall time = 171.949118 + 0: The maximum resident set size (KB) = 660292 Test 049 datm_cdeps_control_cfsr PASS +FAILED TESTS: +Test cpld_control_p8 046 failed in run_test failed + +REGRESSION TEST FAILED +Wed Mar 8 20:05:33 UTC 2023 +Elapsed time: 01h:16m:51s. Have a nice day! +Wed Mar 8 20:41:31 UTC 2023 +Start Regression test + +Compile 001 elapsed time 256 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_248518/cpld_control_p8 +Checking test 001 cpld_control_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 1685.072982 + 0: The maximum resident set size (KB) = 1432388 + +Test 001 cpld_control_p8 PASS + REGRESSION TEST WAS SUCCESSFUL -Sat Mar 4 20:59:14 UTC 2023 -Elapsed time: 01h:10m:29s. Have a nice day! +Wed Mar 8 21:18:35 UTC 2023 +Elapsed time: 00h:37m:04s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index e6887728a6a..7896c257a3e 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,42 +1,42 @@ -Sat Mar 4 19:32:45 UTC 2023 +Wed Mar 8 18:32:37 UTC 2023 Start Regression test -Compile 001 elapsed time 603 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 611 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 558 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 232 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 205 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 507 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 501 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 691 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 001 elapsed time 607 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 606 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 551 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 219 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 200 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 506 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 497 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 688 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON Compile 009 elapsed time 487 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 477 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 472 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 430 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 572 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 201 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 169 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 433 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 440 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 164 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 157 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 582 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 188 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 617 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 556 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 024 elapsed time 179 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 108 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 184 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 52 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 471 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 480 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 425 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 590 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 226 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 187 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 434 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 445 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 159 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 161 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 555 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 021 elapsed time 193 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 627 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 583 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 024 elapsed time 181 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 110 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 186 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 51 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile 028 elapsed time 472 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 574 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 466 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 452 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 165 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 029 elapsed time 523 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 465 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 449 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 198 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug Compile 033 elapsed time 534 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8_mixedmode -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/cpld_control_p8_mixedmode +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_mixedmode +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -101,14 +101,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 307.744798 - 0: The maximum resident set size (KB) = 3144364 + 0: The total amount of wall time = 304.281405 + 0: The maximum resident set size (KB) = 3140052 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_gfsv17 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/cpld_control_gfsv17 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_gfsv17 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -172,14 +172,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 223.569821 - 0: The maximum resident set size (KB) = 1737024 + 0: The total amount of wall time = 221.160056 + 0: The maximum resident set size (KB) = 1726356 Test 002 cpld_control_gfsv17 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/cpld_control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -244,14 +244,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 335.274480 - 0: The maximum resident set size (KB) = 3171408 + 0: The total amount of wall time = 336.081932 + 0: The maximum resident set size (KB) = 3179016 Test 003 cpld_control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/cpld_restart_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -304,14 +304,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 193.655981 - 0: The maximum resident set size (KB) = 3044332 + 0: The total amount of wall time = 194.269673 + 0: The maximum resident set size (KB) = 3054840 Test 004 cpld_restart_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/cpld_2threads_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -364,14 +364,14 @@ Checking test 005 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 353.177801 - 0: The maximum resident set size (KB) = 3509492 + 0: The total amount of wall time = 351.556681 + 0: The maximum resident set size (KB) = 3509760 Test 005 cpld_2threads_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/cpld_decomp_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/cpld_decomp_p8 Checking test 006 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -424,14 +424,14 @@ Checking test 006 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 338.990441 - 0: The maximum resident set size (KB) = 3174488 + 0: The total amount of wall time = 338.172297 + 0: The maximum resident set size (KB) = 3170352 Test 006 cpld_decomp_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/cpld_mpi_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/cpld_mpi_p8 Checking test 007 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -484,14 +484,14 @@ Checking test 007 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 279.282474 - 0: The maximum resident set size (KB) = 3027584 + 0: The total amount of wall time = 277.060471 + 0: The maximum resident set size (KB) = 3023016 Test 007 cpld_mpi_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_ciceC_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/cpld_control_ciceC_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_ciceC_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/cpld_control_ciceC_p8 Checking test 008 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -556,14 +556,14 @@ Checking test 008 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 338.384762 - 0: The maximum resident set size (KB) = 3180448 + 0: The total amount of wall time = 337.033423 + 0: The maximum resident set size (KB) = 3171548 Test 008 cpld_control_ciceC_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/cpld_control_c192_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/cpld_control_c192_p8 Checking test 009 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -616,14 +616,14 @@ Checking test 009 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 581.402761 - 0: The maximum resident set size (KB) = 3251620 + 0: The total amount of wall time = 599.139754 + 0: The maximum resident set size (KB) = 3252016 Test 009 cpld_control_c192_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/cpld_restart_c192_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/cpld_restart_c192_p8 Checking test 010 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -676,14 +676,14 @@ Checking test 010 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 401.136024 - 0: The maximum resident set size (KB) = 3155620 + 0: The total amount of wall time = 398.885428 + 0: The maximum resident set size (KB) = 3150608 Test 010 cpld_restart_c192_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/cpld_bmark_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/cpld_bmark_p8 Checking test 011 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -731,14 +731,14 @@ Checking test 011 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 703.299157 - 0: The maximum resident set size (KB) = 4030164 + 0: The total amount of wall time = 702.349333 + 0: The maximum resident set size (KB) = 4033148 Test 011 cpld_bmark_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/cpld_restart_bmark_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/cpld_restart_bmark_p8 Checking test 012 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -786,14 +786,14 @@ Checking test 012 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 439.742927 - 0: The maximum resident set size (KB) = 3975796 + 0: The total amount of wall time = 444.014712 + 0: The maximum resident set size (KB) = 3969756 Test 012 cpld_restart_bmark_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/cpld_control_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/cpld_control_noaero_p8 Checking test 013 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -857,14 +857,14 @@ Checking test 013 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 261.583278 - 0: The maximum resident set size (KB) = 1718232 + 0: The total amount of wall time = 260.100325 + 0: The maximum resident set size (KB) = 1723624 Test 013 cpld_control_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/cpld_control_nowave_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c96_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/cpld_control_nowave_noaero_p8 Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -926,14 +926,14 @@ Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 257.395069 - 0: The maximum resident set size (KB) = 1762876 + 0: The total amount of wall time = 258.078388 + 0: The maximum resident set size (KB) = 1761724 Test 014 cpld_control_nowave_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/cpld_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/cpld_debug_p8 Checking test 015 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -986,14 +986,14 @@ Checking test 015 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 663.266000 - 0: The maximum resident set size (KB) = 3247140 + 0: The total amount of wall time = 646.260179 + 0: The maximum resident set size (KB) = 3244904 Test 015 cpld_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_debug_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/cpld_debug_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_debug_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/cpld_debug_noaero_p8 Checking test 016 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1045,14 +1045,14 @@ Checking test 016 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 400.986624 - 0: The maximum resident set size (KB) = 1734896 + 0: The total amount of wall time = 396.112200 + 0: The maximum resident set size (KB) = 1733892 Test 016 cpld_debug_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_noaero_p8_agrid -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/cpld_control_noaero_p8_agrid +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8_agrid +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/cpld_control_noaero_p8_agrid Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1114,14 +1114,14 @@ Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 263.957688 - 0: The maximum resident set size (KB) = 1753216 + 0: The total amount of wall time = 265.417602 + 0: The maximum resident set size (KB) = 1767588 Test 017 cpld_control_noaero_p8_agrid PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/cpld_control_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/cpld_control_c48 Checking test 018 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1171,14 +1171,14 @@ Checking test 018 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 588.179717 - 0: The maximum resident set size (KB) = 2797156 + 0: The total amount of wall time = 584.225880 + 0: The maximum resident set size (KB) = 2798932 Test 018 cpld_control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/cpld_warmstart_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/cpld_warmstart_c48 Checking test 019 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1228,14 +1228,14 @@ Checking test 019 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 153.261533 - 0: The maximum resident set size (KB) = 2808188 + 0: The total amount of wall time = 153.400018 + 0: The maximum resident set size (KB) = 2799224 Test 019 cpld_warmstart_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/cpld_restart_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/cpld_restart_c48 Checking test 020 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1285,14 +1285,14 @@ Checking test 020 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 82.790846 - 0: The maximum resident set size (KB) = 2246092 + 0: The total amount of wall time = 80.028893 + 0: The maximum resident set size (KB) = 2247628 Test 020 cpld_restart_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/cpld_control_p8_faster +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/cpld_control_p8_faster Checking test 021 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1357,14 +1357,14 @@ Checking test 021 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 317.201741 - 0: The maximum resident set size (KB) = 3181500 + 0: The total amount of wall time = 314.120704 + 0: The maximum resident set size (KB) = 3179624 Test 021 cpld_control_p8_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_CubedSphereGrid +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_CubedSphereGrid Checking test 022 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1391,28 +1391,28 @@ Checking test 022 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 131.679412 - 0: The maximum resident set size (KB) = 624256 + 0: The total amount of wall time = 129.451907 + 0: The maximum resident set size (KB) = 625788 Test 022 control_CubedSphereGrid PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_CubedSphereGrid_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_CubedSphereGrid_parallel Checking test 023 control_CubedSphereGrid_parallel results .... - Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 128.346394 - 0: The maximum resident set size (KB) = 625356 + 0: The total amount of wall time = 126.789296 + 0: The maximum resident set size (KB) = 629516 Test 023 control_CubedSphereGrid_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_latlon -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_latlon +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_latlon +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_latlon Checking test 024 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1423,14 +1423,14 @@ Checking test 024 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 132.206022 - 0: The maximum resident set size (KB) = 627332 + 0: The total amount of wall time = 131.716673 + 0: The maximum resident set size (KB) = 628424 Test 024 control_latlon PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wrtGauss_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_wrtGauss_netcdf_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_wrtGauss_netcdf_parallel Checking test 025 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1441,14 +1441,14 @@ Checking test 025 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.446234 - 0: The maximum resident set size (KB) = 625780 + 0: The total amount of wall time = 136.154723 + 0: The maximum resident set size (KB) = 629300 Test 025 control_wrtGauss_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_c48 Checking test 026 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1487,14 +1487,14 @@ Checking test 026 control_c48 results .... Comparing 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.895399 -0: The maximum resident set size (KB) = 815636 +0: The total amount of wall time = 371.722474 +0: The maximum resident set size (KB) = 814384 Test 026 control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_c192 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_c192 Checking test 027 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1505,14 +1505,14 @@ Checking test 027 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 526.911059 - 0: The maximum resident set size (KB) = 760260 + 0: The total amount of wall time = 527.127368 + 0: The maximum resident set size (KB) = 764192 Test 027 control_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_c384 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_c384 Checking test 028 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1523,14 +1523,14 @@ Checking test 028 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 537.895482 - 0: The maximum resident set size (KB) = 1259636 + 0: The total amount of wall time = 537.246100 + 0: The maximum resident set size (KB) = 1256908 Test 028 control_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c384gdas -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_c384gdas +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384gdas +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_c384gdas Checking test 029 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1573,14 +1573,14 @@ Checking test 029 control_c384gdas 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 = 468.034792 - 0: The maximum resident set size (KB) = 1373656 + 0: The total amount of wall time = 469.553330 + 0: The maximum resident set size (KB) = 1367912 Test 029 control_c384gdas PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_stochy +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_stochy Checking test 030 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1591,28 +1591,28 @@ Checking test 030 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 87.288703 - 0: The maximum resident set size (KB) = 628420 + 0: The total amount of wall time = 87.494753 + 0: The maximum resident set size (KB) = 634244 Test 030 control_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_stochy_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_stochy_restart Checking test 031 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 47.838021 - 0: The maximum resident set size (KB) = 482024 + 0: The total amount of wall time = 47.848540 + 0: The maximum resident set size (KB) = 485520 Test 031 control_stochy_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_lndp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_lndp Checking test 032 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1623,14 +1623,14 @@ Checking test 032 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 82.915281 - 0: The maximum resident set size (KB) = 631492 + 0: The total amount of wall time = 82.108024 + 0: The maximum resident set size (KB) = 627264 Test 032 control_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_iovr4 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_iovr4 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr4 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_iovr4 Checking test 033 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1645,14 +1645,14 @@ Checking test 033 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.405853 - 0: The maximum resident set size (KB) = 624964 + 0: The total amount of wall time = 136.600960 + 0: The maximum resident set size (KB) = 626252 Test 033 control_iovr4 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_iovr5 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_iovr5 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr5 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_iovr5 Checking test 034 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1667,14 +1667,14 @@ Checking test 034 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.426706 - 0: The maximum resident set size (KB) = 624404 + 0: The total amount of wall time = 135.463009 + 0: The maximum resident set size (KB) = 634280 Test 034 control_iovr5 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_p8 Checking test 035 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1721,14 +1721,14 @@ Checking test 035 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 165.003998 - 0: The maximum resident set size (KB) = 1608268 + 0: The total amount of wall time = 165.880706 + 0: The maximum resident set size (KB) = 1608340 Test 035 control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_p8_lndp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_lndp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_p8_lndp Checking test 036 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1747,14 +1747,14 @@ Checking test 036 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 312.356914 - 0: The maximum resident set size (KB) = 1604816 + 0: The total amount of wall time = 308.577364 + 0: The maximum resident set size (KB) = 1603060 Test 036 control_p8_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_restart_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_restart_p8 Checking test 037 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1793,14 +1793,14 @@ Checking test 037 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 87.930660 - 0: The maximum resident set size (KB) = 875296 + 0: The total amount of wall time = 87.497129 + 0: The maximum resident set size (KB) = 876620 Test 037 control_restart_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_decomp_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_decomp_p8 Checking test 038 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1843,14 +1843,14 @@ Checking test 038 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 171.885267 - 0: The maximum resident set size (KB) = 1589320 + 0: The total amount of wall time = 172.974304 + 0: The maximum resident set size (KB) = 1587100 Test 038 control_decomp_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_2threads_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_2threads_p8 Checking test 039 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1893,14 +1893,14 @@ Checking test 039 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 163.040566 - 0: The maximum resident set size (KB) = 1679900 + 0: The total amount of wall time = 161.810100 + 0: The maximum resident set size (KB) = 1682696 Test 039 control_2threads_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_p8_rrtmgp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_p8_rrtmgp Checking test 040 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1947,14 +1947,14 @@ Checking test 040 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 222.572411 - 0: The maximum resident set size (KB) = 1669356 + 0: The total amount of wall time = 222.677289 + 0: The maximum resident set size (KB) = 1676456 Test 040 control_p8_rrtmgp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/merra2_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/merra2_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/merra2_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/merra2_thompson Checking test 041 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2001,14 +2001,14 @@ Checking test 041 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 189.938281 - 0: The maximum resident set size (KB) = 1617048 + 0: The total amount of wall time = 190.554242 + 0: The maximum resident set size (KB) = 1608880 Test 041 merra2_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/regional_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/regional_control Checking test 042 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2019,28 +2019,28 @@ Checking test 042 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 296.394839 - 0: The maximum resident set size (KB) = 866784 + 0: The total amount of wall time = 298.562217 + 0: The maximum resident set size (KB) = 869136 Test 042 regional_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/regional_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/regional_restart Checking test 043 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 151.106817 - 0: The maximum resident set size (KB) = 865956 + 0: The total amount of wall time = 152.682899 + 0: The maximum resident set size (KB) = 860392 Test 043 regional_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/regional_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/regional_decomp Checking test 044 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2051,14 +2051,14 @@ Checking test 044 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 314.268822 - 0: The maximum resident set size (KB) = 859724 + 0: The total amount of wall time = 312.176830 + 0: The maximum resident set size (KB) = 857456 Test 044 regional_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/regional_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/regional_2threads Checking test 045 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2069,14 +2069,14 @@ Checking test 045 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 182.108947 - 0: The maximum resident set size (KB) = 844828 + 0: The total amount of wall time = 182.596303 + 0: The maximum resident set size (KB) = 846156 Test 045 regional_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_noquilt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/regional_noquilt +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_noquilt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/regional_noquilt Checking test 046 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2084,28 +2084,28 @@ Checking test 046 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 320.001662 - 0: The maximum resident set size (KB) = 860736 + 0: The total amount of wall time = 317.167747 + 0: The maximum resident set size (KB) = 851644 Test 046 regional_noquilt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/regional_netcdf_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/regional_netcdf_parallel Checking test 047 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK + Comparing dynf006.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 294.037994 - 0: The maximum resident set size (KB) = 863192 + 0: The total amount of wall time = 291.407167 + 0: The maximum resident set size (KB) = 856844 Test 047 regional_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/regional_2dwrtdecomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/regional_2dwrtdecomp Checking test 048 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2116,14 +2116,14 @@ Checking test 048 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 299.287540 - 0: The maximum resident set size (KB) = 866488 + 0: The total amount of wall time = 297.408586 + 0: The maximum resident set size (KB) = 866120 Test 048 regional_2dwrtdecomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/fv3_regional_wofs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/regional_wofs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/fv3_regional_wofs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/regional_wofs Checking test 049 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2134,14 +2134,14 @@ Checking test 049 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 376.239979 - 0: The maximum resident set size (KB) = 624884 + 0: The total amount of wall time = 374.694596 + 0: The maximum resident set size (KB) = 626884 Test 049 regional_wofs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rap_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rap_control Checking test 050 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2188,14 +2188,14 @@ Checking test 050 rap_control results .... Comparing 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.459834 - 0: The maximum resident set size (KB) = 1058396 + 0: The total amount of wall time = 459.394314 + 0: The maximum resident set size (KB) = 1062140 Test 050 rap_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_spp_sppt_shum_skeb -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/regional_spp_sppt_shum_skeb +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/regional_spp_sppt_shum_skeb Checking test 051 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2206,14 +2206,14 @@ Checking test 051 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 281.244889 - 0: The maximum resident set size (KB) = 1175320 + 0: The total amount of wall time = 282.957084 + 0: The maximum resident set size (KB) = 1177276 Test 051 regional_spp_sppt_shum_skeb PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rap_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rap_decomp Checking test 052 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2260,14 +2260,14 @@ Checking test 052 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 482.032232 - 0: The maximum resident set size (KB) = 1005756 + 0: The total amount of wall time = 480.163775 + 0: The maximum resident set size (KB) = 1001972 Test 052 rap_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rap_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rap_2threads Checking test 053 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2314,14 +2314,14 @@ Checking test 053 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 442.994372 - 0: The maximum resident set size (KB) = 1136076 + 0: The total amount of wall time = 440.152835 + 0: The maximum resident set size (KB) = 1140204 Test 053 rap_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rap_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rap_restart Checking test 054 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2360,14 +2360,14 @@ Checking test 054 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 234.671492 - 0: The maximum resident set size (KB) = 965004 + 0: The total amount of wall time = 236.267987 + 0: The maximum resident set size (KB) = 975880 Test 054 rap_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rap_sfcdiff +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rap_sfcdiff Checking test 055 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2414,14 +2414,14 @@ Checking test 055 rap_sfcdiff results .... Comparing 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.524313 - 0: The maximum resident set size (KB) = 1057996 + 0: The total amount of wall time = 452.335391 + 0: The maximum resident set size (KB) = 1066060 Test 055 rap_sfcdiff PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rap_sfcdiff_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rap_sfcdiff_decomp Checking test 056 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2468,14 +2468,14 @@ Checking test 056 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 479.247406 - 0: The maximum resident set size (KB) = 1004608 + 0: The total amount of wall time = 475.251244 + 0: The maximum resident set size (KB) = 1000716 Test 056 rap_sfcdiff_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rap_sfcdiff_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rap_sfcdiff_restart Checking test 057 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2514,14 +2514,14 @@ Checking test 057 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 339.490107 - 0: The maximum resident set size (KB) = 988072 + 0: The total amount of wall time = 340.898634 + 0: The maximum resident set size (KB) = 990956 Test 057 rap_sfcdiff_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hrrr_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hrrr_control Checking test 058 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2568,14 +2568,14 @@ Checking test 058 hrrr_control results .... Comparing 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.496358 - 0: The maximum resident set size (KB) = 1059360 + 0: The total amount of wall time = 434.248023 + 0: The maximum resident set size (KB) = 1062524 Test 058 hrrr_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hrrr_control_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hrrr_control_decomp Checking test 059 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2622,14 +2622,14 @@ Checking test 059 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 459.952156 - 0: The maximum resident set size (KB) = 996124 + 0: The total amount of wall time = 457.309173 + 0: The maximum resident set size (KB) = 997028 Test 059 hrrr_control_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hrrr_control_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hrrr_control_2threads Checking test 060 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2676,14 +2676,14 @@ Checking test 060 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 418.101351 - 0: The maximum resident set size (KB) = 1130600 + 0: The total amount of wall time = 416.422574 + 0: The maximum resident set size (KB) = 1134088 Test 060 hrrr_control_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hrrr_control_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hrrr_control_restart Checking test 061 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2722,14 +2722,14 @@ Checking test 061 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 328.592693 - 0: The maximum resident set size (KB) = 989072 + 0: The total amount of wall time = 331.664037 + 0: The maximum resident set size (KB) = 989964 Test 061 hrrr_control_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rrfs_v1beta +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rrfs_v1beta Checking test 062 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2776,14 +2776,14 @@ Checking test 062 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 448.629999 - 0: The maximum resident set size (KB) = 1058256 + 0: The total amount of wall time = 447.564087 + 0: The maximum resident set size (KB) = 1057164 Test 062 rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1nssl -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rrfs_v1nssl +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rrfs_v1nssl Checking test 063 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2798,14 +2798,14 @@ Checking test 063 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 524.945663 - 0: The maximum resident set size (KB) = 696632 + 0: The total amount of wall time = 523.309943 + 0: The maximum resident set size (KB) = 696876 Test 063 rrfs_v1nssl PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rrfs_v1nssl_nohailnoccn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rrfs_v1nssl_nohailnoccn Checking test 064 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2820,14 +2820,14 @@ Checking test 064 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 515.859546 - 0: The maximum resident set size (KB) = 753104 + 0: The total amount of wall time = 512.694860 + 0: The maximum resident set size (KB) = 757720 Test 064 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rrfs_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rrfs_conus13km_hrrr_warm Checking test 065 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2836,14 +2836,14 @@ Checking test 065 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 125.391351 - 0: The maximum resident set size (KB) = 932832 + 0: The total amount of wall time = 123.218789 + 0: The maximum resident set size (KB) = 926988 Test 065 rrfs_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rrfs_smoke_conus13km_hrrr_warm Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2852,14 +2852,14 @@ Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 138.476146 - 0: The maximum resident set size (KB) = 958884 + 0: The total amount of wall time = 138.714842 + 0: The maximum resident set size (KB) = 959432 Test 066 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rrfs_conus13km_radar_tten_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rrfs_conus13km_radar_tten_warm Checking test 067 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2868,14 +2868,14 @@ Checking test 067 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 123.798458 - 0: The maximum resident set size (KB) = 933904 + 0: The total amount of wall time = 123.666332 + 0: The maximum resident set size (KB) = 941492 Test 067 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rrfs_conus13km_hrrr_warm_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rrfs_conus13km_hrrr_warm_2threads Checking test 068 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2884,14 +2884,14 @@ Checking test 068 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 78.117618 - 0: The maximum resident set size (KB) = 880792 + 0: The total amount of wall time = 77.680604 + 0: The maximum resident set size (KB) = 879160 Test 068 rrfs_conus13km_hrrr_warm_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rrfs_conus13km_radar_tten_warm_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rrfs_conus13km_radar_tten_warm_2threads Checking test 069 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2900,14 +2900,14 @@ Checking test 069 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 78.296862 - 0: The maximum resident set size (KB) = 883828 + 0: The total amount of wall time = 79.358287 + 0: The maximum resident set size (KB) = 841808 Test 069 rrfs_conus13km_radar_tten_warm_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmg -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_csawmg +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_csawmg Checking test 070 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2918,14 +2918,14 @@ Checking test 070 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 344.375465 - 0: The maximum resident set size (KB) = 727780 + 0: The total amount of wall time = 344.923587 + 0: The maximum resident set size (KB) = 729908 Test 070 control_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmgt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_csawmgt +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_csawmgt Checking test 071 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2936,14 +2936,14 @@ Checking test 071 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 339.237095 - 0: The maximum resident set size (KB) = 721180 + 0: The total amount of wall time = 339.481133 + 0: The maximum resident set size (KB) = 725636 Test 071 control_csawmgt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_ras +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_ras Checking test 072 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2954,26 +2954,26 @@ Checking test 072 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 181.678938 - 0: The maximum resident set size (KB) = 718200 + 0: The total amount of wall time = 181.362474 + 0: The maximum resident set size (KB) = 716432 Test 072 control_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wam -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_wam +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_wam Checking test 073 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 112.702744 - 0: The maximum resident set size (KB) = 646464 + 0: The total amount of wall time = 112.710947 + 0: The maximum resident set size (KB) = 640964 Test 073 control_wam PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_p8_faster +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_p8_faster Checking test 074 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3020,14 +3020,14 @@ Checking test 074 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 151.506548 - 0: The maximum resident set size (KB) = 1612476 + 0: The total amount of wall time = 152.263484 + 0: The maximum resident set size (KB) = 1604468 Test 074 control_p8_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/regional_control_faster +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/regional_control_faster Checking test 075 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3038,42 +3038,42 @@ Checking test 075 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 272.407251 - 0: The maximum resident set size (KB) = 865456 + 0: The total amount of wall time = 270.795314 + 0: The maximum resident set size (KB) = 876860 Test 075 regional_control_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rrfs_conus13km_hrrr_warm_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rrfs_conus13km_hrrr_warm_debug Checking test 076 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 730.537497 - 0: The maximum resident set size (KB) = 962028 + 0: The total amount of wall time = 719.223485 + 0: The maximum resident set size (KB) = 957964 Test 076 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rrfs_conus13km_radar_tten_warm_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rrfs_conus13km_radar_tten_warm_debug Checking test 077 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 722.366854 - 0: The maximum resident set size (KB) = 969296 + 0: The total amount of wall time = 733.510105 + 0: The maximum resident set size (KB) = 967428 Test 077 rrfs_conus13km_radar_tten_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_CubedSphereGrid_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_CubedSphereGrid_debug Checking test 078 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3100,334 +3100,334 @@ Checking test 078 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 160.291863 - 0: The maximum resident set size (KB) = 794188 + 0: The total amount of wall time = 164.924528 + 0: The maximum resident set size (KB) = 791884 Test 078 control_CubedSphereGrid_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_wrtGauss_netcdf_parallel_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_wrtGauss_netcdf_parallel_debug Checking test 079 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 151.047924 - 0: The maximum resident set size (KB) = 797668 + 0: The total amount of wall time = 153.386877 + 0: The maximum resident set size (KB) = 793264 Test 079 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_stochy_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_stochy_debug Checking test 080 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 171.780222 - 0: The maximum resident set size (KB) = 802796 + 0: The total amount of wall time = 168.953407 + 0: The maximum resident set size (KB) = 805064 Test 080 control_stochy_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_lndp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_lndp_debug Checking test 081 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 158.300093 - 0: The maximum resident set size (KB) = 797044 + 0: The total amount of wall time = 154.286806 + 0: The maximum resident set size (KB) = 798012 Test 081 control_lndp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmg_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_csawmg_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_csawmg_debug Checking test 082 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 233.602358 - 0: The maximum resident set size (KB) = 847336 + 0: The total amount of wall time = 227.105837 + 0: The maximum resident set size (KB) = 848112 Test 082 control_csawmg_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmgt_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_csawmgt_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_csawmgt_debug Checking test 083 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 228.382083 - 0: The maximum resident set size (KB) = 845796 + 0: The total amount of wall time = 229.357215 + 0: The maximum resident set size (KB) = 844540 Test 083 control_csawmgt_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_ras_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_ras_debug Checking test 084 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 156.630867 - 0: The maximum resident set size (KB) = 802064 + 0: The total amount of wall time = 154.742449 + 0: The maximum resident set size (KB) = 809836 Test 084 control_ras_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_diag_debug Checking test 085 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 158.052735 - 0: The maximum resident set size (KB) = 850884 + 0: The total amount of wall time = 159.134798 + 0: The maximum resident set size (KB) = 855544 Test 085 control_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_debug_p8 Checking test 086 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 170.066833 - 0: The maximum resident set size (KB) = 1628656 + 0: The total amount of wall time = 171.053060 + 0: The maximum resident set size (KB) = 1627096 Test 086 control_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/regional_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/regional_debug Checking test 087 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 945.362287 - 0: The maximum resident set size (KB) = 890328 + 0: The total amount of wall time = 980.769904 + 0: The maximum resident set size (KB) = 890684 Test 087 regional_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rap_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rap_control_debug Checking test 088 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.689615 - 0: The maximum resident set size (KB) = 1178200 + 0: The total amount of wall time = 267.877028 + 0: The maximum resident set size (KB) = 1174588 Test 088 rap_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hrrr_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hrrr_control_debug Checking test 089 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.040215 - 0: The maximum resident set size (KB) = 1174648 + 0: The total amount of wall time = 267.320549 + 0: The maximum resident set size (KB) = 1180204 Test 089 hrrr_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rap_unified_drag_suite_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rap_unified_drag_suite_debug Checking test 090 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.036111 - 0: The maximum resident set size (KB) = 1178160 + 0: The total amount of wall time = 273.998432 + 0: The maximum resident set size (KB) = 1172736 Test 090 rap_unified_drag_suite_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rap_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rap_diag_debug Checking test 091 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 294.914979 - 0: The maximum resident set size (KB) = 1258596 + 0: The total amount of wall time = 291.332677 + 0: The maximum resident set size (KB) = 1259920 Test 091 rap_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rap_cires_ugwp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rap_cires_ugwp_debug Checking test 092 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 283.293363 - 0: The maximum resident set size (KB) = 1175708 + 0: The total amount of wall time = 277.293282 + 0: The maximum resident set size (KB) = 1179608 Test 092 rap_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rap_unified_ugwp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rap_unified_ugwp_debug Checking test 093 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.286621 - 0: The maximum resident set size (KB) = 1182468 + 0: The total amount of wall time = 277.960528 + 0: The maximum resident set size (KB) = 1178544 Test 093 rap_unified_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rap_lndp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rap_lndp_debug Checking test 094 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.468894 - 0: The maximum resident set size (KB) = 1177284 + 0: The total amount of wall time = 278.501474 + 0: The maximum resident set size (KB) = 1176788 Test 094 rap_lndp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_flake_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rap_flake_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_flake_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rap_flake_debug Checking test 095 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.546932 - 0: The maximum resident set size (KB) = 1176492 + 0: The total amount of wall time = 272.237475 + 0: The maximum resident set size (KB) = 1177592 Test 095 rap_flake_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rap_progcld_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rap_progcld_thompson_debug Checking test 096 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.543455 - 0: The maximum resident set size (KB) = 1170392 + 0: The total amount of wall time = 276.068067 + 0: The maximum resident set size (KB) = 1171852 Test 096 rap_progcld_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_noah_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rap_noah_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rap_noah_debug Checking test 097 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 270.375590 - 0: The maximum resident set size (KB) = 1177140 + 0: The total amount of wall time = 267.207306 + 0: The maximum resident set size (KB) = 1172220 Test 097 rap_noah_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rap_sfcdiff_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rap_sfcdiff_debug Checking test 098 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.508813 - 0: The maximum resident set size (KB) = 1179492 + 0: The total amount of wall time = 273.794176 + 0: The maximum resident set size (KB) = 1179440 Test 098 rap_sfcdiff_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rap_noah_sfcdiff_cires_ugwp_debug Checking test 099 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 454.815006 - 0: The maximum resident set size (KB) = 1181444 + 0: The total amount of wall time = 451.090943 + 0: The maximum resident set size (KB) = 1178448 Test 099 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rrfs_v1beta_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rrfs_v1beta_debug Checking test 100 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.600420 - 0: The maximum resident set size (KB) = 1171876 + 0: The total amount of wall time = 268.916347 + 0: The maximum resident set size (KB) = 1175400 Test 100 rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_wam_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_wam_debug Checking test 101 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 283.123733 - 0: The maximum resident set size (KB) = 525512 + 0: The total amount of wall time = 281.295147 + 0: The maximum resident set size (KB) = 523580 Test 101 control_wam_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 102 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3438,14 +3438,14 @@ Checking test 102 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 263.974737 - 0: The maximum resident set size (KB) = 1072804 + 0: The total amount of wall time = 260.267998 + 0: The maximum resident set size (KB) = 1071404 Test 102 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rap_control_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rap_control_dyn32_phy32 Checking test 103 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3492,14 +3492,14 @@ Checking test 103 rap_control_dyn32_phy32 results .... Comparing 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.223068 - 0: The maximum resident set size (KB) = 1001580 + 0: The total amount of wall time = 368.248261 + 0: The maximum resident set size (KB) = 1003068 Test 103 rap_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hrrr_control_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hrrr_control_dyn32_phy32 Checking test 104 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3546,14 +3546,14 @@ Checking test 104 hrrr_control_dyn32_phy32 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 = 193.976229 - 0: The maximum resident set size (KB) = 955352 + 0: The total amount of wall time = 192.142439 + 0: The maximum resident set size (KB) = 955188 Test 104 hrrr_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rap_2threads_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rap_2threads_dyn32_phy32 Checking test 105 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3600,14 +3600,14 @@ Checking test 105 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 358.358049 - 0: The maximum resident set size (KB) = 1027760 + 0: The total amount of wall time = 356.874466 + 0: The maximum resident set size (KB) = 1019924 Test 105 rap_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hrrr_control_2threads_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hrrr_control_2threads_dyn32_phy32 Checking test 106 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3654,14 +3654,14 @@ Checking test 106 hrrr_control_2threads_dyn32_phy32 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 = 190.343973 - 0: The maximum resident set size (KB) = 1007836 + 0: The total amount of wall time = 190.920009 + 0: The maximum resident set size (KB) = 1004788 Test 106 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hrrr_control_decomp_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hrrr_control_decomp_dyn32_phy32 Checking test 107 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3708,14 +3708,14 @@ Checking test 107 hrrr_control_decomp_dyn32_phy32 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 = 205.927672 - 0: The maximum resident set size (KB) = 893228 + 0: The total amount of wall time = 204.124471 + 0: The maximum resident set size (KB) = 896016 Test 107 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rap_restart_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rap_restart_dyn32_phy32 Checking test 108 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3754,14 +3754,14 @@ Checking test 108 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 280.965069 - 0: The maximum resident set size (KB) = 951936 + 0: The total amount of wall time = 281.821556 + 0: The maximum resident set size (KB) = 956944 Test 108 rap_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hrrr_control_restart_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hrrr_control_restart_dyn32_phy32 Checking test 109 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3800,14 +3800,14 @@ Checking test 109 hrrr_control_restart_dyn32_phy32 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 = 101.344810 - 0: The maximum resident set size (KB) = 864488 + 0: The total amount of wall time = 100.032544 + 0: The maximum resident set size (KB) = 860388 Test 109 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rap_control_dyn64_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rap_control_dyn64_phy32 Checking test 110 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3854,81 +3854,81 @@ Checking test 110 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 241.256880 - 0: The maximum resident set size (KB) = 966404 + 0: The total amount of wall time = 243.079879 + 0: The maximum resident set size (KB) = 971208 Test 110 rap_control_dyn64_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rap_control_debug_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rap_control_debug_dyn32_phy32 Checking test 111 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.053801 - 0: The maximum resident set size (KB) = 1057996 + 0: The total amount of wall time = 267.080847 + 0: The maximum resident set size (KB) = 1059904 Test 111 rap_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hrrr_control_debug_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hrrr_control_debug_dyn32_phy32 Checking test 112 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 266.837924 - 0: The maximum resident set size (KB) = 1055868 + 0: The total amount of wall time = 265.377132 + 0: The maximum resident set size (KB) = 1055100 Test 112 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/rap_control_dyn64_phy32_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rap_control_dyn64_phy32_debug Checking test 113 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.101637 - 0: The maximum resident set size (KB) = 1103468 + 0: The total amount of wall time = 277.275136 + 0: The maximum resident set size (KB) = 1108788 Test 113 rap_control_dyn64_phy32_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hafs_regional_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hafs_regional_atm Checking test 114 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 235.229911 - 0: The maximum resident set size (KB) = 1047524 + 0: The total amount of wall time = 237.867617 + 0: The maximum resident set size (KB) = 1051100 Test 114 hafs_regional_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hafs_regional_atm_thompson_gfdlsf +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hafs_regional_atm_thompson_gfdlsf Checking test 115 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 326.439154 - 0: The maximum resident set size (KB) = 1419928 + 0: The total amount of wall time = 311.195404 + 0: The maximum resident set size (KB) = 1414648 Test 115 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hafs_regional_atm_ocn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hafs_regional_atm_ocn Checking test 116 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3937,14 +3937,14 @@ Checking test 116 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 381.120225 - 0: The maximum resident set size (KB) = 1218540 + 0: The total amount of wall time = 377.927932 + 0: The maximum resident set size (KB) = 1221392 Test 116 hafs_regional_atm_ocn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hafs_regional_atm_wav +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hafs_regional_atm_wav Checking test 117 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3953,14 +3953,14 @@ Checking test 117 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 739.672281 - 0: The maximum resident set size (KB) = 1254744 + 0: The total amount of wall time = 740.796278 + 0: The maximum resident set size (KB) = 1245468 Test 117 hafs_regional_atm_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hafs_regional_atm_ocn_wav +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hafs_regional_atm_ocn_wav Checking test 118 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3971,28 +3971,28 @@ Checking test 118 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 841.696463 - 0: The maximum resident set size (KB) = 1268468 + 0: The total amount of wall time = 838.342541 + 0: The maximum resident set size (KB) = 1268808 Test 118 hafs_regional_atm_ocn_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hafs_regional_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hafs_regional_1nest_atm Checking test 119 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 319.362189 - 0: The maximum resident set size (KB) = 505628 + 0: The total amount of wall time = 317.910671 + 0: The maximum resident set size (KB) = 508900 Test 119 hafs_regional_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hafs_regional_telescopic_2nests_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hafs_regional_telescopic_2nests_atm Checking test 120 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4001,28 +4001,28 @@ Checking test 120 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 361.847535 - 0: The maximum resident set size (KB) = 514536 + 0: The total amount of wall time = 365.942565 + 0: The maximum resident set size (KB) = 516304 Test 120 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hafs_global_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hafs_global_1nest_atm Checking test 121 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 145.116937 - 0: The maximum resident set size (KB) = 350708 + 0: The total amount of wall time = 145.880395 + 0: The maximum resident set size (KB) = 349028 Test 121 hafs_global_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_multiple_4nests_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hafs_global_multiple_4nests_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_multiple_4nests_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hafs_global_multiple_4nests_atm Checking test 122 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4040,14 +4040,14 @@ Checking test 122 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 423.175473 - 0: The maximum resident set size (KB) = 422920 + 0: The total amount of wall time = 417.417556 + 0: The maximum resident set size (KB) = 420212 Test 122 hafs_global_multiple_4nests_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hafs_regional_specified_moving_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hafs_regional_specified_moving_1nest_atm Checking test 123 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4056,28 +4056,28 @@ Checking test 123 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 200.676636 - 0: The maximum resident set size (KB) = 515744 + 0: The total amount of wall time = 202.052596 + 0: The maximum resident set size (KB) = 515772 Test 123 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hafs_regional_storm_following_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hafs_regional_storm_following_1nest_atm Checking test 124 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 190.063512 - 0: The maximum resident set size (KB) = 516820 + 0: The total amount of wall time = 190.307876 + 0: The maximum resident set size (KB) = 515308 Test 124 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hafs_regional_storm_following_1nest_atm_ocn Checking test 125 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4086,42 +4086,42 @@ Checking test 125 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 219.824409 - 0: The maximum resident set size (KB) = 555384 + 0: The total amount of wall time = 219.654921 + 0: The maximum resident set size (KB) = 553576 Test 125 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hafs_global_storm_following_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_storm_following_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hafs_global_storm_following_1nest_atm Checking test 126 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 57.404873 - 0: The maximum resident set size (KB) = 365956 + 0: The total amount of wall time = 57.668594 + 0: The maximum resident set size (KB) = 364156 Test 126 hafs_global_storm_following_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 127 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 759.743454 - 0: The maximum resident set size (KB) = 580064 + 0: The total amount of wall time = 764.634133 + 0: The maximum resident set size (KB) = 578248 Test 127 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 128 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4132,14 +4132,14 @@ Checking test 128 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 510.818798 - 0: The maximum resident set size (KB) = 614976 + 0: The total amount of wall time = 512.516634 + 0: The maximum resident set size (KB) = 610212 Test 128 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_docn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hafs_regional_docn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_docn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hafs_regional_docn Checking test 129 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4147,14 +4147,14 @@ Checking test 129 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 359.257492 - 0: The maximum resident set size (KB) = 1229384 + 0: The total amount of wall time = 358.628924 + 0: The maximum resident set size (KB) = 1230656 Test 129 hafs_regional_docn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_docn_oisst -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hafs_regional_docn_oisst +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_docn_oisst +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hafs_regional_docn_oisst Checking test 130 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4162,131 +4162,131 @@ Checking test 130 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 356.895960 - 0: The maximum resident set size (KB) = 1218460 + 0: The total amount of wall time = 355.310059 + 0: The maximum resident set size (KB) = 1214840 Test 130 hafs_regional_docn_oisst PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_datm_cdeps -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/hafs_regional_datm_cdeps +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_datm_cdeps +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hafs_regional_datm_cdeps Checking test 131 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 952.182786 - 0: The maximum resident set size (KB) = 1037416 + 0: The total amount of wall time = 958.419860 + 0: The maximum resident set size (KB) = 1039164 Test 131 hafs_regional_datm_cdeps PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/datm_cdeps_control_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/datm_cdeps_control_cfsr Checking test 132 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 157.741103 - 0: The maximum resident set size (KB) = 1073440 + 0: The total amount of wall time = 153.943255 + 0: The maximum resident set size (KB) = 1054740 Test 132 datm_cdeps_control_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/datm_cdeps_restart_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/datm_cdeps_restart_cfsr Checking test 133 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.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.911671 - 0: The maximum resident set size (KB) = 1008232 + 0: The total amount of wall time = 92.489498 + 0: The maximum resident set size (KB) = 1032472 Test 133 datm_cdeps_restart_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/datm_cdeps_control_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/datm_cdeps_control_gefs Checking test 134 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.464029 - 0: The maximum resident set size (KB) = 963080 + 0: The total amount of wall time = 148.678979 + 0: The maximum resident set size (KB) = 962824 Test 134 datm_cdeps_control_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_iau_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/datm_cdeps_iau_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_iau_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/datm_cdeps_iau_gefs Checking test 135 datm_cdeps_iau_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 151.907028 - 0: The maximum resident set size (KB) = 958828 + 0: The total amount of wall time = 151.295471 + 0: The maximum resident set size (KB) = 970272 Test 135 datm_cdeps_iau_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_stochy_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/datm_cdeps_stochy_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_stochy_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/datm_cdeps_stochy_gefs Checking test 136 datm_cdeps_stochy_gefs 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 = 152.089570 - 0: The maximum resident set size (KB) = 959532 + 0: The total amount of wall time = 149.789886 + 0: The maximum resident set size (KB) = 963736 Test 136 datm_cdeps_stochy_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_ciceC_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/datm_cdeps_ciceC_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_ciceC_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/datm_cdeps_ciceC_cfsr Checking test 137 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 154.253615 - 0: The maximum resident set size (KB) = 1055808 + 0: The total amount of wall time = 151.855048 + 0: The maximum resident set size (KB) = 1070508 Test 137 datm_cdeps_ciceC_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/datm_cdeps_bulk_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/datm_cdeps_bulk_cfsr Checking test 138 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 155.806443 - 0: The maximum resident set size (KB) = 1063180 + 0: The total amount of wall time = 156.543212 + 0: The maximum resident set size (KB) = 1051924 Test 138 datm_cdeps_bulk_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/datm_cdeps_bulk_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/datm_cdeps_bulk_gefs Checking test 139 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.785525 - 0: The maximum resident set size (KB) = 971580 + 0: The total amount of wall time = 150.993030 + 0: The maximum resident set size (KB) = 966748 Test 139 datm_cdeps_bulk_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/datm_cdeps_mx025_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/datm_cdeps_mx025_cfsr Checking test 140 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4295,14 +4295,14 @@ Checking test 140 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 398.275132 - 0: The maximum resident set size (KB) = 880624 + 0: The total amount of wall time = 390.610895 + 0: The maximum resident set size (KB) = 875964 Test 140 datm_cdeps_mx025_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/datm_cdeps_mx025_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/datm_cdeps_mx025_gefs Checking test 141 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4311,77 +4311,77 @@ Checking test 141 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 394.873227 - 0: The maximum resident set size (KB) = 928432 + 0: The total amount of wall time = 395.572061 + 0: The maximum resident set size (KB) = 929512 Test 141 datm_cdeps_mx025_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/datm_cdeps_multiple_files_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/datm_cdeps_multiple_files_cfsr Checking test 142 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 155.733034 - 0: The maximum resident set size (KB) = 1068976 + 0: The total amount of wall time = 154.803578 + 0: The maximum resident set size (KB) = 1066960 Test 142 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/datm_cdeps_3072x1536_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/datm_cdeps_3072x1536_cfsr Checking test 143 datm_cdeps_3072x1536_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 217.682919 - 0: The maximum resident set size (KB) = 2371740 + 0: The total amount of wall time = 213.853455 + 0: The maximum resident set size (KB) = 2363992 Test 143 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_gfs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/datm_cdeps_gfs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_gfs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/datm_cdeps_gfs Checking test 144 datm_cdeps_gfs 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 = 220.399154 - 0: The maximum resident set size (KB) = 2370372 + 0: The total amount of wall time = 218.138981 + 0: The maximum resident set size (KB) = 2356844 Test 144 datm_cdeps_gfs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/datm_cdeps_debug_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/datm_cdeps_debug_cfsr Checking test 145 datm_cdeps_debug_cfsr 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 = 458.832905 - 0: The maximum resident set size (KB) = 981680 + 0: The total amount of wall time = 448.727476 + 0: The maximum resident set size (KB) = 988168 Test 145 datm_cdeps_debug_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/datm_cdeps_control_cfsr_faster +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/datm_cdeps_control_cfsr_faster Checking test 146 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 156.750166 - 0: The maximum resident set size (KB) = 1056780 + 0: The total amount of wall time = 152.664752 + 0: The maximum resident set size (KB) = 1054596 Test 146 datm_cdeps_control_cfsr_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/datm_cdeps_lnd_gswp3 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_lnd_gswp3 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/datm_cdeps_lnd_gswp3 Checking test 147 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4390,14 +4390,14 @@ Checking test 147 datm_cdeps_lnd_gswp3 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 = 6.672772 - 0: The maximum resident set size (KB) = 262192 + 0: The total amount of wall time = 6.509896 + 0: The maximum resident set size (KB) = 261124 Test 147 datm_cdeps_lnd_gswp3 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/datm_cdeps_lnd_gswp3_rst +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_lnd_gswp3 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/datm_cdeps_lnd_gswp3_rst Checking test 148 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4406,14 +4406,14 @@ Checking test 148 datm_cdeps_lnd_gswp3_rst 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 = 11.662582 - 0: The maximum resident set size (KB) = 262532 + 0: The total amount of wall time = 12.241084 + 0: The maximum resident set size (KB) = 264844 Test 148 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_atmlnd_sbs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_p8_atmlnd_sbs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_atmlnd_sbs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_p8_atmlnd_sbs Checking test 149 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4498,14 +4498,14 @@ Checking test 149 control_p8_atmlnd_sbs 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 = 200.767945 - 0: The maximum resident set size (KB) = 1607924 + 0: The total amount of wall time = 201.031888 + 0: The maximum resident set size (KB) = 1610320 Test 149 control_p8_atmlnd_sbs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_atmwav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/control_atmwav +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_atmwav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_atmwav Checking test 150 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4549,14 +4549,14 @@ Checking test 150 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 86.519372 - 0: The maximum resident set size (KB) = 655840 + 0: The total amount of wall time = 86.705674 + 0: The maximum resident set size (KB) = 662124 Test 150 control_atmwav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/atmaero_control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/atmaero_control_p8 Checking test 151 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4600,14 +4600,14 @@ Checking test 151 atmaero_control_p8 results .... Comparing 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.543866 - 0: The maximum resident set size (KB) = 2966784 + 0: The total amount of wall time = 226.480728 + 0: The maximum resident set size (KB) = 2972580 Test 151 atmaero_control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8_rad -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/atmaero_control_p8_rad +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/atmaero_control_p8_rad Checking test 152 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4651,14 +4651,14 @@ Checking test 152 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 276.827935 - 0: The maximum resident set size (KB) = 3044856 + 0: The total amount of wall time = 278.345437 + 0: The maximum resident set size (KB) = 3046132 Test 152 atmaero_control_p8_rad PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8_rad_micro -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/atmaero_control_p8_rad_micro +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad_micro +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/atmaero_control_p8_rad_micro Checking test 153 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4702,14 +4702,14 @@ Checking test 153 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 283.121304 - 0: The maximum resident set size (KB) = 3056008 + 0: The total amount of wall time = 281.488975 + 0: The maximum resident set size (KB) = 3056544 Test 153 atmaero_control_p8_rad_micro PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_atmaq -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/regional_atmaq +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/regional_atmaq Checking test 154 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4725,14 +4725,14 @@ Checking test 154 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 600.092247 - 0: The maximum resident set size (KB) = 1553136 + 0: The total amount of wall time = 599.078028 + 0: The maximum resident set size (KB) = 1559128 Test 154 regional_atmaq PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_atmaq_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/regional_atmaq_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/regional_atmaq_debug Checking test 155 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4746,14 +4746,14 @@ Checking test 155 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1310.196567 - 0: The maximum resident set size (KB) = 1540868 + 0: The total amount of wall time = 1336.754267 + 0: The maximum resident set size (KB) = 1522452 Test 155 regional_atmaq_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_atmaq_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17946/regional_atmaq_faster +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/regional_atmaq_faster Checking test 156 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4769,12 +4769,12 @@ Checking test 156 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 565.480555 - 0: The maximum resident set size (KB) = 1556264 + 0: The total amount of wall time = 566.003168 + 0: The maximum resident set size (KB) = 1554940 Test 156 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Sat Mar 4 20:46:36 UTC 2023 -Elapsed time: 01h:13m:52s. Have a nice day! +Wed Mar 8 19:54:04 UTC 2023 +Elapsed time: 01h:21m:28s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index d838d0c15b1..bd65d7ca58a 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,42 +1,42 @@ -Sat Mar 4 20:54:36 UTC 2023 +Wed Mar 8 18:55:21 UTC 2023 Start Regression test -Compile 001 elapsed time 1819 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 002 elapsed time 1861 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 003 elapsed time 2087 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 004 elapsed time 365 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 297 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 1487 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 007 elapsed time 1543 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 008 elapsed time 3337 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 009 elapsed time 1619 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 010 elapsed time 1593 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 011 elapsed time 1493 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 012 elapsed time 1395 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 013 elapsed time 1970 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 014 elapsed time 329 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 236 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 1376 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 017 elapsed time 1443 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 018 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 019 elapsed time 245 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 1636 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 021 elapsed time 247 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 2113 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 023 elapsed time 1632 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 024 elapsed time 296 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 025 elapsed time 162 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 300 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 027 elapsed time 113 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 028 elapsed time 1491 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 029 elapsed time 1704 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 030 elapsed time 1396 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 031 elapsed time 1453 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 032 elapsed time 234 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 1868 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8_mixedmode -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/cpld_control_p8_mixedmode +Compile 001 elapsed time 1824 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 002 elapsed time 1845 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 003 elapsed time 1744 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 004 elapsed time 345 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 321 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 1473 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 007 elapsed time 1524 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 008 elapsed time 3339 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 009 elapsed time 1631 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 010 elapsed time 1614 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 011 elapsed time 1521 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 012 elapsed time 1439 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 013 elapsed time 2058 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 014 elapsed time 419 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 305 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 1520 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 017 elapsed time 1495 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 018 elapsed time 260 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 303 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 1643 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 021 elapsed time 348 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 2148 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 023 elapsed time 1717 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 024 elapsed time 320 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 025 elapsed time 223 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 316 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 027 elapsed time 128 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 028 elapsed time 1481 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 029 elapsed time 1641 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 030 elapsed time 1554 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 031 elapsed time 1507 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 032 elapsed time 304 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 1861 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_mixedmode +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -101,14 +101,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 481.930873 - 0: The maximum resident set size (KB) = 1744192 + 0: The total amount of wall time = 683.791575 + 0: The maximum resident set size (KB) = 1729780 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_gfsv17 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/cpld_control_gfsv17 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_gfsv17 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -172,14 +172,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 370.222773 - 0: The maximum resident set size (KB) = 1622272 + 0: The total amount of wall time = 363.154698 + 0: The maximum resident set size (KB) = 1625372 Test 002 cpld_control_gfsv17 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/cpld_control_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -244,14 +244,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 532.133008 - 0: The maximum resident set size (KB) = 1765052 + 0: The total amount of wall time = 707.862081 + 0: The maximum resident set size (KB) = 1793460 Test 003 cpld_control_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/cpld_restart_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -304,14 +304,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 305.209177 - 0: The maximum resident set size (KB) = 1487836 + 0: The total amount of wall time = 451.847081 + 0: The maximum resident set size (KB) = 1479724 Test 004 cpld_restart_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/cpld_2threads_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -364,14 +364,14 @@ Checking test 005 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 571.013844 - 0: The maximum resident set size (KB) = 1974616 + 0: The total amount of wall time = 756.663293 + 0: The maximum resident set size (KB) = 1985304 Test 005 cpld_2threads_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/cpld_decomp_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/cpld_decomp_p8 Checking test 006 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -424,14 +424,14 @@ Checking test 006 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 537.817658 - 0: The maximum resident set size (KB) = 1766484 + 0: The total amount of wall time = 740.404861 + 0: The maximum resident set size (KB) = 1778580 Test 006 cpld_decomp_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/cpld_mpi_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/cpld_mpi_p8 Checking test 007 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -484,14 +484,14 @@ Checking test 007 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 470.631721 - 0: The maximum resident set size (KB) = 1725116 + 0: The total amount of wall time = 673.062523 + 0: The maximum resident set size (KB) = 1728776 Test 007 cpld_mpi_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_ciceC_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/cpld_control_ciceC_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_ciceC_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/cpld_control_ciceC_p8 Checking test 008 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -556,14 +556,14 @@ Checking test 008 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 540.864053 - 0: The maximum resident set size (KB) = 1774544 + 0: The total amount of wall time = 729.343494 + 0: The maximum resident set size (KB) = 1765228 Test 008 cpld_control_ciceC_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_noaero_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/cpld_control_noaero_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/cpld_control_noaero_p8 Checking test 009 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -627,14 +627,14 @@ Checking test 009 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 426.947366 - 0: The maximum resident set size (KB) = 1631608 + 0: The total amount of wall time = 409.753800 + 0: The maximum resident set size (KB) = 1621492 Test 009 cpld_control_noaero_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/cpld_control_nowave_noaero_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c96_noaero_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/cpld_control_nowave_noaero_p8 Checking test 010 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -696,14 +696,14 @@ Checking test 010 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 417.737924 - 0: The maximum resident set size (KB) = 1672304 + 0: The total amount of wall time = 452.686962 + 0: The maximum resident set size (KB) = 1665712 Test 010 cpld_control_nowave_noaero_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_debug_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/cpld_debug_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_debug_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/cpld_debug_p8 Checking test 011 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -756,14 +756,14 @@ Checking test 011 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 884.254491 - 0: The maximum resident set size (KB) = 1820336 + 0: The total amount of wall time = 939.189305 + 0: The maximum resident set size (KB) = 1841704 Test 011 cpld_debug_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_debug_noaero_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/cpld_debug_noaero_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_debug_noaero_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/cpld_debug_noaero_p8 Checking test 012 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -815,14 +815,14 @@ Checking test 012 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 557.132272 - 0: The maximum resident set size (KB) = 1656012 + 0: The total amount of wall time = 547.893347 + 0: The maximum resident set size (KB) = 1641280 Test 012 cpld_debug_noaero_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/cpld_control_noaero_p8_agrid +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8_agrid +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/cpld_control_noaero_p8_agrid Checking test 013 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -884,14 +884,14 @@ Checking test 013 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 458.116892 - 0: The maximum resident set size (KB) = 1669924 + 0: The total amount of wall time = 633.276279 + 0: The maximum resident set size (KB) = 1663476 Test 013 cpld_control_noaero_p8_agrid PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c48 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/cpld_control_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c48 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/cpld_control_c48 Checking test 014 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -941,14 +941,14 @@ Checking test 014 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 819.064134 - 0: The maximum resident set size (KB) = 2765044 + 0: The total amount of wall time = 848.341307 + 0: The maximum resident set size (KB) = 2763696 Test 014 cpld_control_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_warmstart_c48 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/cpld_warmstart_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/cpld_warmstart_c48 Checking test 015 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -998,14 +998,14 @@ Checking test 015 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 237.153569 - 0: The maximum resident set size (KB) = 2756348 + 0: The total amount of wall time = 228.691936 + 0: The maximum resident set size (KB) = 2758232 Test 015 cpld_warmstart_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_warmstart_c48 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/cpld_restart_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/cpld_restart_c48 Checking test 016 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1055,14 +1055,14 @@ Checking test 016 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 125.158306 - 0: The maximum resident set size (KB) = 2207684 + 0: The total amount of wall time = 128.150810 + 0: The maximum resident set size (KB) = 2211144 Test 016 cpld_restart_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8_faster -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/cpld_control_p8_faster +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_faster +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/cpld_control_p8_faster Checking test 017 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1127,14 +1127,14 @@ Checking test 017 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 489.886191 - 0: The maximum resident set size (KB) = 1769424 + 0: The total amount of wall time = 763.586233 + 0: The maximum resident set size (KB) = 1771124 Test 017 cpld_control_p8_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_CubedSphereGrid +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_CubedSphereGrid Checking test 018 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1161,28 +1161,28 @@ Checking test 018 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 213.309451 - 0: The maximum resident set size (KB) = 577320 + 0: The total amount of wall time = 199.323795 + 0: The maximum resident set size (KB) = 569964 Test 018 control_CubedSphereGrid PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid_parallel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_CubedSphereGrid_parallel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid_parallel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_CubedSphereGrid_parallel Checking test 019 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK - Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 208.540092 - 0: The maximum resident set size (KB) = 573292 + 0: The total amount of wall time = 205.602726 + 0: The maximum resident set size (KB) = 573008 Test 019 control_CubedSphereGrid_parallel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_latlon -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_latlon +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_latlon +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_latlon Checking test 020 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1193,16 +1193,16 @@ Checking test 020 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 207.440110 - 0: The maximum resident set size (KB) = 575356 + 0: The total amount of wall time = 211.959324 + 0: The maximum resident set size (KB) = 581740 Test 020 control_latlon PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_wrtGauss_netcdf_parallel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_wrtGauss_netcdf_parallel Checking test 021 control_wrtGauss_netcdf_parallel results .... - Comparing sfcf000.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK @@ -1211,14 +1211,14 @@ Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 208.884787 - 0: The maximum resident set size (KB) = 575408 + 0: The total amount of wall time = 207.324487 + 0: The maximum resident set size (KB) = 575780 Test 021 control_wrtGauss_netcdf_parallel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c48 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c48 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_c48 Checking test 022 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1257,14 +1257,14 @@ Checking test 022 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 600.404826 -0: The maximum resident set size (KB) = 790288 +0: The total amount of wall time = 614.980120 +0: The maximum resident set size (KB) = 790460 Test 022 control_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c192 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_c192 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c192 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_c192 Checking test 023 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1275,14 +1275,14 @@ Checking test 023 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 781.511659 - 0: The maximum resident set size (KB) = 696596 + 0: The total amount of wall time = 988.033522 + 0: The maximum resident set size (KB) = 685460 Test 023 control_c192 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c384 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_c384 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_c384 Checking test 024 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1293,14 +1293,14 @@ Checking test 024 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1003.951843 - 0: The maximum resident set size (KB) = 1053624 + 0: The total amount of wall time = 1235.794799 + 0: The maximum resident set size (KB) = 1057972 Test 024 control_c384 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c384gdas -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_c384gdas +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384gdas +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_c384gdas Checking test 025 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1343,14 +1343,14 @@ Checking test 025 control_c384gdas 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 = 861.081008 - 0: The maximum resident set size (KB) = 1187416 + 0: The total amount of wall time = 1060.331939 + 0: The maximum resident set size (KB) = 1185568 Test 025 control_c384gdas PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_stochy +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_stochy Checking test 026 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1361,28 +1361,28 @@ Checking test 026 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 134.181160 - 0: The maximum resident set size (KB) = 579892 + 0: The total amount of wall time = 151.455101 + 0: The maximum resident set size (KB) = 575808 Test 026 control_stochy PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_stochy_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_stochy_restart Checking test 027 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 69.803603 - 0: The maximum resident set size (KB) = 393024 + 0: The total amount of wall time = 142.097005 + 0: The maximum resident set size (KB) = 400420 Test 027 control_stochy_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_lndp -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_lndp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_lndp Checking test 028 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1393,14 +1393,14 @@ Checking test 028 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 123.628269 - 0: The maximum resident set size (KB) = 577840 + 0: The total amount of wall time = 144.500487 + 0: The maximum resident set size (KB) = 575892 Test 028 control_lndp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_iovr4 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_iovr4 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr4 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_iovr4 Checking test 029 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1415,14 +1415,14 @@ Checking test 029 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 215.254223 - 0: The maximum resident set size (KB) = 575692 + 0: The total amount of wall time = 228.693334 + 0: The maximum resident set size (KB) = 573880 Test 029 control_iovr4 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_iovr5 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_iovr5 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr5 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_iovr5 Checking test 030 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1437,14 +1437,14 @@ Checking test 030 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 216.589832 - 0: The maximum resident set size (KB) = 574904 + 0: The total amount of wall time = 318.217086 + 0: The maximum resident set size (KB) = 573108 Test 030 control_iovr5 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_p8 Checking test 031 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1491,14 +1491,14 @@ Checking test 031 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 259.864475 - 0: The maximum resident set size (KB) = 1546640 + 0: The total amount of wall time = 400.176559 + 0: The maximum resident set size (KB) = 1541260 Test 031 control_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_lndp -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_p8_lndp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_lndp +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_p8_lndp Checking test 032 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1517,14 +1517,14 @@ Checking test 032 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 494.979007 - 0: The maximum resident set size (KB) = 1536004 + 0: The total amount of wall time = 653.499956 + 0: The maximum resident set size (KB) = 1536820 Test 032 control_p8_lndp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_restart_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_restart_p8 Checking test 033 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1563,14 +1563,14 @@ Checking test 033 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 121.221951 - 0: The maximum resident set size (KB) = 775752 + 0: The total amount of wall time = 204.595908 + 0: The maximum resident set size (KB) = 783308 Test 033 control_restart_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_decomp_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_decomp_p8 Checking test 034 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1613,14 +1613,14 @@ Checking test 034 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 265.952019 - 0: The maximum resident set size (KB) = 1538020 + 0: The total amount of wall time = 1769.322418 + 0: The maximum resident set size (KB) = 1529496 Test 034 control_decomp_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_2threads_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_2threads_p8 Checking test 035 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1663,14 +1663,14 @@ Checking test 035 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 247.024152 - 0: The maximum resident set size (KB) = 1624384 + 0: The total amount of wall time = 377.149442 + 0: The maximum resident set size (KB) = 1619336 Test 035 control_2threads_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_rrtmgp -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_p8_rrtmgp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_rrtmgp +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_p8_rrtmgp Checking test 036 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1717,14 +1717,14 @@ Checking test 036 control_p8_rrtmgp results .... Comparing 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.347898 - 0: The maximum resident set size (KB) = 1613992 + 0: The total amount of wall time = 436.178142 + 0: The maximum resident set size (KB) = 1601964 Test 036 control_p8_rrtmgp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/merra2_thompson -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/merra2_thompson +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/merra2_thompson +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/merra2_thompson Checking test 037 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1771,14 +1771,14 @@ Checking test 037 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 296.523132 - 0: The maximum resident set size (KB) = 1547876 + 0: The total amount of wall time = 362.081238 + 0: The maximum resident set size (KB) = 1537396 Test 037 merra2_thompson PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/regional_control +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/regional_control Checking test 038 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1789,28 +1789,28 @@ Checking test 038 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 484.766751 - 0: The maximum resident set size (KB) = 788416 + 0: The total amount of wall time = 632.636828 + 0: The maximum resident set size (KB) = 787876 Test 038 regional_control PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/regional_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/regional_restart Checking test 039 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 218.191945 - 0: The maximum resident set size (KB) = 781688 + 0: The total amount of wall time = 368.405306 + 0: The maximum resident set size (KB) = 777580 Test 039 regional_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/regional_decomp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/regional_decomp Checking test 040 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1821,14 +1821,14 @@ Checking test 040 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 496.966861 - 0: The maximum resident set size (KB) = 782088 + 0: The total amount of wall time = 661.615500 + 0: The maximum resident set size (KB) = 785452 Test 040 regional_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/regional_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/regional_2threads Checking test 041 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1839,14 +1839,14 @@ Checking test 041 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 303.167285 - 0: The maximum resident set size (KB) = 768008 + 0: The total amount of wall time = 348.373109 + 0: The maximum resident set size (KB) = 770332 Test 041 regional_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_noquilt -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/regional_noquilt +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_noquilt +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/regional_noquilt Checking test 042 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1854,28 +1854,28 @@ Checking test 042 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 512.444859 - 0: The maximum resident set size (KB) = 775768 + 0: The total amount of wall time = 659.316036 + 0: The maximum resident set size (KB) = 770480 Test 042 regional_noquilt PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_netcdf_parallel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/regional_netcdf_parallel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_netcdf_parallel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/regional_netcdf_parallel Checking test 043 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK + Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 480.778267 - 0: The maximum resident set size (KB) = 782368 + 0: The total amount of wall time = 628.653173 + 0: The maximum resident set size (KB) = 779684 Test 043 regional_netcdf_parallel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/regional_2dwrtdecomp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/regional_2dwrtdecomp Checking test 044 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1886,14 +1886,14 @@ Checking test 044 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 474.587836 - 0: The maximum resident set size (KB) = 786944 + 0: The total amount of wall time = 616.992044 + 0: The maximum resident set size (KB) = 784728 Test 044 regional_2dwrtdecomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/fv3_regional_wofs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/regional_wofs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/fv3_regional_wofs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/regional_wofs Checking test 045 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1904,14 +1904,14 @@ Checking test 045 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 587.195974 - 0: The maximum resident set size (KB) = 520112 + 0: The total amount of wall time = 766.341639 + 0: The maximum resident set size (KB) = 518112 Test 045 regional_wofs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rap_control +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rap_control Checking test 046 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1958,14 +1958,14 @@ Checking test 046 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 655.315928 - 0: The maximum resident set size (KB) = 946472 + 0: The total amount of wall time = 842.653759 + 0: The maximum resident set size (KB) = 947848 Test 046 rap_control PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/regional_spp_sppt_shum_skeb +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/regional_spp_sppt_shum_skeb Checking test 047 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -1976,14 +1976,14 @@ Checking test 047 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 463.307940 - 0: The maximum resident set size (KB) = 1083032 + 0: The total amount of wall time = 517.203684 + 0: The maximum resident set size (KB) = 1092084 Test 047 regional_spp_sppt_shum_skeb PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rap_decomp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rap_decomp Checking test 048 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2030,14 +2030,14 @@ Checking test 048 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 681.410396 - 0: The maximum resident set size (KB) = 948944 + 0: The total amount of wall time = 859.558204 + 0: The maximum resident set size (KB) = 952780 Test 048 rap_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rap_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rap_2threads Checking test 049 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2084,14 +2084,14 @@ Checking test 049 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 655.404284 - 0: The maximum resident set size (KB) = 1026916 + 0: The total amount of wall time = 800.263347 + 0: The maximum resident set size (KB) = 1019456 Test 049 rap_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rap_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rap_restart Checking test 050 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2130,14 +2130,14 @@ Checking test 050 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 323.433487 - 0: The maximum resident set size (KB) = 830956 + 0: The total amount of wall time = 441.102805 + 0: The maximum resident set size (KB) = 830600 Test 050 rap_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rap_sfcdiff +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rap_sfcdiff Checking test 051 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2184,14 +2184,14 @@ Checking test 051 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 659.451140 - 0: The maximum resident set size (KB) = 944480 + 0: The total amount of wall time = 796.251377 + 0: The maximum resident set size (KB) = 943816 Test 051 rap_sfcdiff PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rap_sfcdiff_decomp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rap_sfcdiff_decomp Checking test 052 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2238,14 +2238,14 @@ Checking test 052 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 704.741926 - 0: The maximum resident set size (KB) = 956092 + 0: The total amount of wall time = 833.289686 + 0: The maximum resident set size (KB) = 956516 Test 052 rap_sfcdiff_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rap_sfcdiff_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rap_sfcdiff_restart Checking test 053 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2284,14 +2284,14 @@ Checking test 053 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 456.295016 - 0: The maximum resident set size (KB) = 846636 + 0: The total amount of wall time = 714.126902 + 0: The maximum resident set size (KB) = 834916 Test 053 rap_sfcdiff_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/hrrr_control +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/hrrr_control Checking test 054 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2338,14 +2338,14 @@ Checking test 054 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 640.406957 - 0: The maximum resident set size (KB) = 947308 + 0: The total amount of wall time = 758.048361 + 0: The maximum resident set size (KB) = 963892 Test 054 hrrr_control PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/hrrr_control_decomp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/hrrr_control_decomp Checking test 055 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2392,14 +2392,14 @@ Checking test 055 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 658.736104 - 0: The maximum resident set size (KB) = 951388 + 0: The total amount of wall time = 880.811062 + 0: The maximum resident set size (KB) = 940720 Test 055 hrrr_control_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/hrrr_control_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/hrrr_control_2threads Checking test 056 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2446,14 +2446,14 @@ Checking test 056 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 611.254131 - 0: The maximum resident set size (KB) = 1023852 + 0: The total amount of wall time = 772.988201 + 0: The maximum resident set size (KB) = 1011244 Test 056 hrrr_control_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/hrrr_control_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/hrrr_control_restart Checking test 057 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2492,14 +2492,14 @@ Checking test 057 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 438.502149 - 0: The maximum resident set size (KB) = 840812 + 0: The total amount of wall time = 647.873323 + 0: The maximum resident set size (KB) = 835744 Test 057 hrrr_control_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1beta -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rrfs_v1beta +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rrfs_v1beta Checking test 058 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2546,14 +2546,14 @@ Checking test 058 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 657.223589 - 0: The maximum resident set size (KB) = 956132 + 0: The total amount of wall time = 832.514271 + 0: The maximum resident set size (KB) = 937168 Test 058 rrfs_v1beta PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1nssl -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rrfs_v1nssl +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rrfs_v1nssl Checking test 059 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2568,14 +2568,14 @@ Checking test 059 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 763.764884 - 0: The maximum resident set size (KB) = 637728 + 0: The total amount of wall time = 887.479186 + 0: The maximum resident set size (KB) = 640780 Test 059 rrfs_v1nssl PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rrfs_v1nssl_nohailnoccn +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rrfs_v1nssl_nohailnoccn Checking test 060 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2590,14 +2590,14 @@ Checking test 060 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 742.812850 - 0: The maximum resident set size (KB) = 628356 + 0: The total amount of wall time = 898.866218 + 0: The maximum resident set size (KB) = 630464 Test 060 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rrfs_conus13km_hrrr_warm +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rrfs_conus13km_hrrr_warm Checking test 061 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2606,14 +2606,14 @@ Checking test 061 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 173.216919 - 0: The maximum resident set size (KB) = 846180 + 0: The total amount of wall time = 199.334452 + 0: The maximum resident set size (KB) = 850092 Test 061 rrfs_conus13km_hrrr_warm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rrfs_smoke_conus13km_hrrr_warm Checking test 062 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2622,14 +2622,14 @@ Checking test 062 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 220.527790 - 0: The maximum resident set size (KB) = 888052 + 0: The total amount of wall time = 217.010434 + 0: The maximum resident set size (KB) = 869444 Test 062 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rrfs_conus13km_radar_tten_warm +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rrfs_conus13km_radar_tten_warm Checking test 063 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2638,14 +2638,14 @@ Checking test 063 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 188.588605 - 0: The maximum resident set size (KB) = 861648 + 0: The total amount of wall time = 222.116908 + 0: The maximum resident set size (KB) = 845848 Test 063 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rrfs_conus13km_hrrr_warm_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rrfs_conus13km_hrrr_warm_2threads Checking test 064 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2654,14 +2654,14 @@ Checking test 064 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 119.143406 - 0: The maximum resident set size (KB) = 818024 + 0: The total amount of wall time = 569.901820 + 0: The maximum resident set size (KB) = 818856 Test 064 rrfs_conus13km_hrrr_warm_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rrfs_conus13km_radar_tten_warm_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rrfs_conus13km_radar_tten_warm_2threads Checking test 065 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2670,14 +2670,14 @@ Checking test 065 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 121.900336 - 0: The maximum resident set size (KB) = 830400 + 0: The total amount of wall time = 135.305223 + 0: The maximum resident set size (KB) = 828444 Test 065 rrfs_conus13km_radar_tten_warm_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmg -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_csawmg +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_csawmg Checking test 066 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2688,14 +2688,14 @@ Checking test 066 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 487.873572 - 0: The maximum resident set size (KB) = 662432 + 0: The total amount of wall time = 612.792777 + 0: The maximum resident set size (KB) = 667432 Test 066 control_csawmg PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmgt -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_csawmgt +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_csawmgt Checking test 067 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2706,14 +2706,14 @@ Checking test 067 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 482.126790 - 0: The maximum resident set size (KB) = 667636 + 0: The total amount of wall time = 616.190662 + 0: The maximum resident set size (KB) = 668032 Test 067 control_csawmgt PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_ras -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_ras +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_ras Checking test 068 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2724,26 +2724,26 @@ Checking test 068 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 263.023646 - 0: The maximum resident set size (KB) = 635344 + 0: The total amount of wall time = 330.547458 + 0: The maximum resident set size (KB) = 633212 Test 068 control_ras PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wam -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_wam +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_wam Checking test 069 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 165.658280 - 0: The maximum resident set size (KB) = 478248 + 0: The total amount of wall time = 219.663369 + 0: The maximum resident set size (KB) = 480812 Test 069 control_wam PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_faster -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_p8_faster +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_faster +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_p8_faster Checking test 070 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2790,14 +2790,14 @@ Checking test 070 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 220.299724 - 0: The maximum resident set size (KB) = 1534468 + 0: The total amount of wall time = 392.429243 + 0: The maximum resident set size (KB) = 1535820 Test 070 control_p8_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control_faster -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/regional_control_faster +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control_faster +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/regional_control_faster Checking test 071 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2808,42 +2808,42 @@ Checking test 071 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 421.336900 - 0: The maximum resident set size (KB) = 781332 + 0: The total amount of wall time = 647.912693 + 0: The maximum resident set size (KB) = 790660 Test 071 regional_control_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rrfs_conus13km_hrrr_warm_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rrfs_conus13km_hrrr_warm_debug Checking test 072 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 959.185523 - 0: The maximum resident set size (KB) = 873312 + 0: The total amount of wall time = 972.255473 + 0: The maximum resident set size (KB) = 876704 Test 072 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rrfs_conus13km_radar_tten_warm_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rrfs_conus13km_radar_tten_warm_debug Checking test 073 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 978.913003 - 0: The maximum resident set size (KB) = 883536 + 0: The total amount of wall time = 1025.151578 + 0: The maximum resident set size (KB) = 878508 Test 073 rrfs_conus13km_radar_tten_warm_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_CubedSphereGrid_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_CubedSphereGrid_debug Checking test 074 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2870,334 +2870,334 @@ Checking test 074 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 218.735442 - 0: The maximum resident set size (KB) = 732480 + 0: The total amount of wall time = 237.342675 + 0: The maximum resident set size (KB) = 734076 Test 074 control_CubedSphereGrid_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_wrtGauss_netcdf_parallel_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_wrtGauss_netcdf_parallel_debug Checking test 075 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 205.304455 - 0: The maximum resident set size (KB) = 731744 + 0: The total amount of wall time = 219.007639 + 0: The maximum resident set size (KB) = 733620 Test 075 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_stochy_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_stochy_debug Checking test 076 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 241.339510 - 0: The maximum resident set size (KB) = 739904 + 0: The total amount of wall time = 230.598194 + 0: The maximum resident set size (KB) = 743852 Test 076 control_stochy_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_lndp_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_lndp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_lndp_debug Checking test 077 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 205.631883 - 0: The maximum resident set size (KB) = 743732 + 0: The total amount of wall time = 246.761096 + 0: The maximum resident set size (KB) = 739076 Test 077 control_lndp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmg_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_csawmg_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_csawmg_debug Checking test 078 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 312.486821 - 0: The maximum resident set size (KB) = 781988 + 0: The total amount of wall time = 369.323997 + 0: The maximum resident set size (KB) = 786664 Test 078 control_csawmg_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmgt_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_csawmgt_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_csawmgt_debug Checking test 079 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 307.761908 - 0: The maximum resident set size (KB) = 787276 + 0: The total amount of wall time = 371.344112 + 0: The maximum resident set size (KB) = 785304 Test 079 control_csawmgt_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_ras_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_ras_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_ras_debug Checking test 080 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 204.685135 - 0: The maximum resident set size (KB) = 744304 + 0: The total amount of wall time = 213.311965 + 0: The maximum resident set size (KB) = 750564 Test 080 control_ras_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_diag_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_diag_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_diag_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_diag_debug Checking test 081 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 214.079103 - 0: The maximum resident set size (KB) = 788428 + 0: The total amount of wall time = 234.943673 + 0: The maximum resident set size (KB) = 790132 Test 081 control_diag_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_debug_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_debug_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_debug_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_debug_p8 Checking test 082 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 237.494038 - 0: The maximum resident set size (KB) = 1550464 + 0: The total amount of wall time = 298.196908 + 0: The maximum resident set size (KB) = 1549504 Test 082 control_debug_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/regional_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/regional_debug Checking test 083 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1292.981981 - 0: The maximum resident set size (KB) = 795260 + 0: The total amount of wall time = 1375.873103 + 0: The maximum resident set size (KB) = 802680 Test 083 regional_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rap_control_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rap_control_debug Checking test 084 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 368.433963 - 0: The maximum resident set size (KB) = 1114656 + 0: The total amount of wall time = 390.249227 + 0: The maximum resident set size (KB) = 1112264 Test 084 rap_control_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/hrrr_control_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/hrrr_control_debug Checking test 085 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 359.510301 - 0: The maximum resident set size (KB) = 1113280 + 0: The total amount of wall time = 378.632359 + 0: The maximum resident set size (KB) = 1108680 Test 085 hrrr_control_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rap_unified_drag_suite_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rap_unified_drag_suite_debug Checking test 086 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 367.940447 - 0: The maximum resident set size (KB) = 1113240 + 0: The total amount of wall time = 407.960695 + 0: The maximum resident set size (KB) = 1112228 Test 086 rap_unified_drag_suite_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_diag_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rap_diag_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_diag_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rap_diag_debug Checking test 087 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 388.426704 - 0: The maximum resident set size (KB) = 1196692 + 0: The total amount of wall time = 411.326910 + 0: The maximum resident set size (KB) = 1189592 Test 087 rap_diag_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rap_cires_ugwp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rap_cires_ugwp_debug Checking test 088 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 371.696743 - 0: The maximum resident set size (KB) = 1117424 + 0: The total amount of wall time = 390.827664 + 0: The maximum resident set size (KB) = 1108492 Test 088 rap_cires_ugwp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rap_unified_ugwp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rap_unified_ugwp_debug Checking test 089 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 376.372158 - 0: The maximum resident set size (KB) = 1121464 + 0: The total amount of wall time = 390.290907 + 0: The maximum resident set size (KB) = 1113880 Test 089 rap_unified_ugwp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_lndp_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rap_lndp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_lndp_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rap_lndp_debug Checking test 090 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 371.516740 - 0: The maximum resident set size (KB) = 1110868 + 0: The total amount of wall time = 406.825957 + 0: The maximum resident set size (KB) = 1113688 Test 090 rap_lndp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_flake_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rap_flake_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_flake_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rap_flake_debug Checking test 091 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 367.410579 - 0: The maximum resident set size (KB) = 1110640 + 0: The total amount of wall time = 377.320185 + 0: The maximum resident set size (KB) = 1111872 Test 091 rap_flake_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_progcld_thompson_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rap_progcld_thompson_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_progcld_thompson_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rap_progcld_thompson_debug Checking test 092 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 367.238762 - 0: The maximum resident set size (KB) = 1116468 + 0: The total amount of wall time = 413.249352 + 0: The maximum resident set size (KB) = 1112764 Test 092 rap_progcld_thompson_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_noah_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rap_noah_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rap_noah_debug Checking test 093 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 367.368554 - 0: The maximum resident set size (KB) = 1110948 + 0: The total amount of wall time = 444.832079 + 0: The maximum resident set size (KB) = 1113880 Test 093 rap_noah_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rap_sfcdiff_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rap_sfcdiff_debug Checking test 094 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 370.960867 - 0: The maximum resident set size (KB) = 1109784 + 0: The total amount of wall time = 414.518187 + 0: The maximum resident set size (KB) = 1113708 Test 094 rap_sfcdiff_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rap_noah_sfcdiff_cires_ugwp_debug Checking test 095 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 600.586095 - 0: The maximum resident set size (KB) = 1106700 + 0: The total amount of wall time = 636.620864 + 0: The maximum resident set size (KB) = 1106592 Test 095 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1beta_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rrfs_v1beta_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rrfs_v1beta_debug Checking test 096 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 358.422252 - 0: The maximum resident set size (KB) = 1105944 + 0: The total amount of wall time = 380.741406 + 0: The maximum resident set size (KB) = 1104848 Test 096 rrfs_v1beta_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wam_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_wam_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_wam_debug Checking test 097 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 369.269632 - 0: The maximum resident set size (KB) = 433708 + 0: The total amount of wall time = 390.106107 + 0: The maximum resident set size (KB) = 436708 Test 097 control_wam_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 098 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3208,14 +3208,14 @@ Checking test 098 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 391.386536 - 0: The maximum resident set size (KB) = 981032 + 0: The total amount of wall time = 525.807822 + 0: The maximum resident set size (KB) = 976528 Test 098 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rap_control_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rap_control_dyn32_phy32 Checking test 099 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3262,14 +3262,14 @@ Checking test 099 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 514.524499 - 0: The maximum resident set size (KB) = 852176 + 0: The total amount of wall time = 755.591214 + 0: The maximum resident set size (KB) = 847208 Test 099 rap_control_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/hrrr_control_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/hrrr_control_dyn32_phy32 Checking test 100 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3316,14 +3316,14 @@ Checking test 100 hrrr_control_dyn32_phy32 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 = 263.934005 - 0: The maximum resident set size (KB) = 838932 + 0: The total amount of wall time = 367.305519 + 0: The maximum resident set size (KB) = 829364 Test 100 hrrr_control_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rap_2threads_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rap_2threads_dyn32_phy32 Checking test 101 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3370,14 +3370,14 @@ Checking test 101 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 519.529732 - 0: The maximum resident set size (KB) = 892268 + 0: The total amount of wall time = 827.934933 + 0: The maximum resident set size (KB) = 896300 Test 101 rap_2threads_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/hrrr_control_2threads_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/hrrr_control_2threads_dyn32_phy32 Checking test 102 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3424,14 +3424,14 @@ Checking test 102 hrrr_control_2threads_dyn32_phy32 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 = 259.498445 - 0: The maximum resident set size (KB) = 889268 + 0: The total amount of wall time = 382.371462 + 0: The maximum resident set size (KB) = 882380 Test 102 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/hrrr_control_decomp_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/hrrr_control_decomp_dyn32_phy32 Checking test 103 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3478,14 +3478,14 @@ Checking test 103 hrrr_control_decomp_dyn32_phy32 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 = 288.869969 - 0: The maximum resident set size (KB) = 821412 + 0: The total amount of wall time = 405.766350 + 0: The maximum resident set size (KB) = 831504 Test 103 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rap_restart_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rap_restart_dyn32_phy32 Checking test 104 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3524,14 +3524,14 @@ Checking test 104 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 412.326692 - 0: The maximum resident set size (KB) = 811928 + 0: The total amount of wall time = 581.124102 + 0: The maximum resident set size (KB) = 801692 Test 104 rap_restart_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/hrrr_control_restart_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/hrrr_control_restart_dyn32_phy32 Checking test 105 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3570,14 +3570,14 @@ Checking test 105 hrrr_control_restart_dyn32_phy32 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 = 149.477980 - 0: The maximum resident set size (KB) = 763780 + 0: The total amount of wall time = 197.480123 + 0: The maximum resident set size (KB) = 760668 Test 105 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn64_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rap_control_dyn64_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn64_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rap_control_dyn64_phy32 Checking test 106 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3624,81 +3624,81 @@ Checking test 106 rap_control_dyn64_phy32 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 = 341.994295 - 0: The maximum resident set size (KB) = 865468 + 0: The total amount of wall time = 512.670729 + 0: The maximum resident set size (KB) = 870360 Test 106 rap_control_dyn64_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rap_control_debug_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rap_control_debug_dyn32_phy32 Checking test 107 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 374.628026 - 0: The maximum resident set size (KB) = 998976 + 0: The total amount of wall time = 392.639636 + 0: The maximum resident set size (KB) = 997844 Test 107 rap_control_debug_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/hrrr_control_debug_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/hrrr_control_debug_dyn32_phy32 Checking test 108 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 364.670160 - 0: The maximum resident set size (KB) = 998132 + 0: The total amount of wall time = 374.664665 + 0: The maximum resident set size (KB) = 994628 Test 108 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/rap_control_dyn64_phy32_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rap_control_dyn64_phy32_debug Checking test 109 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 366.859984 - 0: The maximum resident set size (KB) = 1037592 + 0: The total amount of wall time = 409.180509 + 0: The maximum resident set size (KB) = 1032580 Test 109 rap_control_dyn64_phy32_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/hafs_regional_atm +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/hafs_regional_atm Checking test 110 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 385.821224 - 0: The maximum resident set size (KB) = 1210564 + 0: The total amount of wall time = 571.606991 + 0: The maximum resident set size (KB) = 1225268 Test 110 hafs_regional_atm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/hafs_regional_atm_thompson_gfdlsf +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/hafs_regional_atm_thompson_gfdlsf Checking test 111 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 468.487860 - 0: The maximum resident set size (KB) = 1548844 + 0: The total amount of wall time = 807.742299 + 0: The maximum resident set size (KB) = 1553020 Test 111 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_ocn -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/hafs_regional_atm_ocn +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/hafs_regional_atm_ocn Checking test 112 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3707,14 +3707,14 @@ Checking test 112 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 594.212072 - 0: The maximum resident set size (KB) = 1295684 + 0: The total amount of wall time = 848.224113 + 0: The maximum resident set size (KB) = 1294328 Test 112 hafs_regional_atm_ocn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_wav -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/hafs_regional_atm_wav +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_wav +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/hafs_regional_atm_wav Checking test 113 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3723,14 +3723,14 @@ Checking test 113 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 967.857531 - 0: The maximum resident set size (KB) = 1314888 + 0: The total amount of wall time = 1108.737662 + 0: The maximum resident set size (KB) = 1324564 Test 113 hafs_regional_atm_wav PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/hafs_regional_atm_ocn_wav +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn_wav +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/hafs_regional_atm_ocn_wav Checking test 114 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3741,14 +3741,14 @@ Checking test 114 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 1103.705343 - 0: The maximum resident set size (KB) = 1329524 + 0: The total amount of wall time = 1223.091107 + 0: The maximum resident set size (KB) = 1352212 Test 114 hafs_regional_atm_ocn_wav PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_docn -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/hafs_regional_docn +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_docn +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/hafs_regional_docn Checking test 115 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3756,14 +3756,14 @@ Checking test 115 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 546.683695 - 0: The maximum resident set size (KB) = 1286620 + 0: The total amount of wall time = 656.573291 + 0: The maximum resident set size (KB) = 1309080 Test 115 hafs_regional_docn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_docn_oisst -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/hafs_regional_docn_oisst +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_docn_oisst +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/hafs_regional_docn_oisst Checking test 116 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3771,131 +3771,131 @@ Checking test 116 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 525.276860 - 0: The maximum resident set size (KB) = 1298172 + 0: The total amount of wall time = 653.423473 + 0: The maximum resident set size (KB) = 1293252 Test 116 hafs_regional_docn_oisst PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_datm_cdeps -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/hafs_regional_datm_cdeps +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_datm_cdeps +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/hafs_regional_datm_cdeps Checking test 117 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 1418.732259 - 0: The maximum resident set size (KB) = 976112 + 0: The total amount of wall time = 1580.169509 + 0: The maximum resident set size (KB) = 972728 Test 117 hafs_regional_datm_cdeps PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/datm_cdeps_control_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/datm_cdeps_control_cfsr Checking test 118 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 223.543730 - 0: The maximum resident set size (KB) = 964892 + 0: The total amount of wall time = 299.370901 + 0: The maximum resident set size (KB) = 960956 Test 118 datm_cdeps_control_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/datm_cdeps_restart_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/datm_cdeps_restart_cfsr Checking test 119 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 155.112061 - 0: The maximum resident set size (KB) = 927900 + 0: The total amount of wall time = 132.075051 + 0: The maximum resident set size (KB) = 931812 Test 119 datm_cdeps_restart_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_gefs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/datm_cdeps_control_gefs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_gefs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/datm_cdeps_control_gefs Checking test 120 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 241.312781 - 0: The maximum resident set size (KB) = 859976 + 0: The total amount of wall time = 281.155619 + 0: The maximum resident set size (KB) = 865060 Test 120 datm_cdeps_control_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_iau_gefs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/datm_cdeps_iau_gefs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_iau_gefs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/datm_cdeps_iau_gefs Checking test 121 datm_cdeps_iau_gefs 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 = 244.001531 - 0: The maximum resident set size (KB) = 865520 + 0: The total amount of wall time = 324.327793 + 0: The maximum resident set size (KB) = 859036 Test 121 datm_cdeps_iau_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_stochy_gefs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/datm_cdeps_stochy_gefs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_stochy_gefs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/datm_cdeps_stochy_gefs Checking test 122 datm_cdeps_stochy_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 218.587986 - 0: The maximum resident set size (KB) = 861144 + 0: The total amount of wall time = 335.703720 + 0: The maximum resident set size (KB) = 870752 Test 122 datm_cdeps_stochy_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/datm_cdeps_ciceC_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_ciceC_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/datm_cdeps_ciceC_cfsr Checking test 123 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 222.394226 - 0: The maximum resident set size (KB) = 958296 + 0: The total amount of wall time = 323.657266 + 0: The maximum resident set size (KB) = 962592 Test 123 datm_cdeps_ciceC_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/datm_cdeps_bulk_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_bulk_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/datm_cdeps_bulk_cfsr Checking test 124 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 221.542384 - 0: The maximum resident set size (KB) = 959108 + 0: The total amount of wall time = 322.981942 + 0: The maximum resident set size (KB) = 963740 Test 124 datm_cdeps_bulk_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/datm_cdeps_bulk_gefs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_bulk_gefs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/datm_cdeps_bulk_gefs Checking test 125 datm_cdeps_bulk_gefs 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 = 243.264523 - 0: The maximum resident set size (KB) = 871720 + 0: The total amount of wall time = 284.136477 + 0: The maximum resident set size (KB) = 859820 Test 125 datm_cdeps_bulk_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/datm_cdeps_mx025_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_mx025_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/datm_cdeps_mx025_cfsr Checking test 126 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -3904,14 +3904,14 @@ Checking test 126 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 591.510513 - 0: The maximum resident set size (KB) = 766024 + 0: The total amount of wall time = 723.436741 + 0: The maximum resident set size (KB) = 765792 Test 126 datm_cdeps_mx025_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/datm_cdeps_mx025_gefs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_mx025_gefs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/datm_cdeps_mx025_gefs Checking test 127 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -3920,77 +3920,77 @@ Checking test 127 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 588.067480 - 0: The maximum resident set size (KB) = 733524 + 0: The total amount of wall time = 637.126120 + 0: The maximum resident set size (KB) = 734252 Test 127 datm_cdeps_mx025_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/datm_cdeps_multiple_files_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/datm_cdeps_multiple_files_cfsr Checking test 128 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 219.836772 - 0: The maximum resident set size (KB) = 975820 + 0: The total amount of wall time = 287.569203 + 0: The maximum resident set size (KB) = 967216 Test 128 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/datm_cdeps_3072x1536_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/datm_cdeps_3072x1536_cfsr Checking test 129 datm_cdeps_3072x1536_cfsr 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 = 356.840860 - 0: The maximum resident set size (KB) = 2255704 + 0: The total amount of wall time = 404.265118 + 0: The maximum resident set size (KB) = 2264740 Test 129 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_gfs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/datm_cdeps_gfs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_gfs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/datm_cdeps_gfs Checking test 130 datm_cdeps_gfs 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 = 331.049397 - 0: The maximum resident set size (KB) = 2253036 + 0: The total amount of wall time = 404.355070 + 0: The maximum resident set size (KB) = 2261108 Test 130 datm_cdeps_gfs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_debug_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/datm_cdeps_debug_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_debug_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/datm_cdeps_debug_cfsr Checking test 131 datm_cdeps_debug_cfsr 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 = 589.781715 - 0: The maximum resident set size (KB) = 919460 + 0: The total amount of wall time = 623.646354 + 0: The maximum resident set size (KB) = 912204 Test 131 datm_cdeps_debug_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr_faster -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/datm_cdeps_control_cfsr_faster +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr_faster +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/datm_cdeps_control_cfsr_faster Checking test 132 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.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 = 243.075286 - 0: The maximum resident set size (KB) = 969608 + 0: The total amount of wall time = 244.378737 + 0: The maximum resident set size (KB) = 970968 Test 132 datm_cdeps_control_cfsr_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/datm_cdeps_lnd_gswp3 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/datm_cdeps_lnd_gswp3 Checking test 133 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -3999,14 +3999,14 @@ Checking test 133 datm_cdeps_lnd_gswp3 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.856970 - 0: The maximum resident set size (KB) = 250180 + 0: The total amount of wall time = 100.350839 + 0: The maximum resident set size (KB) = 252556 Test 133 datm_cdeps_lnd_gswp3 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/datm_cdeps_lnd_gswp3_rst +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/datm_cdeps_lnd_gswp3_rst Checking test 134 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4015,14 +4015,14 @@ Checking test 134 datm_cdeps_lnd_gswp3_rst 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 = 21.003845 - 0: The maximum resident set size (KB) = 247740 + 0: The total amount of wall time = 79.307586 + 0: The maximum resident set size (KB) = 250072 Test 134 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_atmlnd_sbs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_p8_atmlnd_sbs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_atmlnd_sbs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_p8_atmlnd_sbs Checking test 135 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4107,14 +4107,14 @@ Checking test 135 control_p8_atmlnd_sbs results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 332.302051 - 0: The maximum resident set size (KB) = 1587820 + 0: The total amount of wall time = 395.314040 + 0: The maximum resident set size (KB) = 1587148 Test 135 control_p8_atmlnd_sbs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_atmwav -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/control_atmwav +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_atmwav +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_atmwav Checking test 136 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4158,14 +4158,14 @@ Checking test 136 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 126.765322 - 0: The maximum resident set size (KB) = 598892 + 0: The total amount of wall time = 163.146322 + 0: The maximum resident set size (KB) = 599796 Test 136 control_atmwav PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/atmaero_control_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/atmaero_control_p8 Checking test 137 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4209,14 +4209,14 @@ Checking test 137 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 340.447418 - 0: The maximum resident set size (KB) = 1627124 + 0: The total amount of wall time = 432.566750 + 0: The maximum resident set size (KB) = 1636196 Test 137 atmaero_control_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8_rad -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/atmaero_control_p8_rad +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/atmaero_control_p8_rad Checking test 138 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4260,14 +4260,14 @@ Checking test 138 atmaero_control_p8_rad results .... Comparing 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.317228 - 0: The maximum resident set size (KB) = 1680240 + 0: The total amount of wall time = 473.871058 + 0: The maximum resident set size (KB) = 1661328 Test 138 atmaero_control_p8_rad PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/atmaero_control_p8_rad_micro +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad_micro +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/atmaero_control_p8_rad_micro Checking test 139 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4311,14 +4311,14 @@ Checking test 139 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 414.714301 - 0: The maximum resident set size (KB) = 1664892 + 0: The total amount of wall time = 487.530446 + 0: The maximum resident set size (KB) = 1688740 Test 139 atmaero_control_p8_rad_micro PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_atmaq -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/regional_atmaq +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/regional_atmaq Checking test 140 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4334,14 +4334,14 @@ Checking test 140 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 1212.742385 - 0: The maximum resident set size (KB) = 1400684 + 0: The total amount of wall time = 1109.786211 + 0: The maximum resident set size (KB) = 1356272 Test 140 regional_atmaq PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_atmaq_faster -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_278015/regional_atmaq_faster +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq_faster +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/regional_atmaq_faster Checking test 141 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4357,12 +4357,12 @@ Checking test 141 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 973.656915 - 0: The maximum resident set size (KB) = 1310140 + 0: The total amount of wall time = 1086.189996 + 0: The maximum resident set size (KB) = 1331168 Test 141 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Sun Mar 5 00:04:05 UTC 2023 -Elapsed time: 03h:09m:31s. Have a nice day! +Wed Mar 8 22:10:19 UTC 2023 +Elapsed time: 03h:14m:58s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index 5d3f2741a41..11a0677715d 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,42 +1,42 @@ -Sat Mar 4 14:17:35 CST 2023 +Wed Mar 8 12:32:48 CST 2023 Start Regression test -Compile 001 elapsed time 726 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 742 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 724 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 299 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 255 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 614 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 612 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 860 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 582 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 618 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 602 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 540 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 704 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 222 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 214 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 539 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 519 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 232 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 209 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 604 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 216 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 751 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 589 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 024 elapsed time 215 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 132 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 228 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 55 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 558 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 619 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 557 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 499 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 171 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 583 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8_mixedmode -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/cpld_control_p8_mixedmode +Compile 001 elapsed time 779 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 779 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 739 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 285 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 243 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 604 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 604 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 816 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 620 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 592 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 573 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 512 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 749 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 272 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 205 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 575 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 525 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 207 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 206 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 629 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 021 elapsed time 234 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 763 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 675 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 024 elapsed time 202 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 158 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 238 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 84 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 564 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 570 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 574 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 564 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 164 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 663 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_mixedmode +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -101,14 +101,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 306.939084 - 0: The maximum resident set size (KB) = 3140872 + 0: The total amount of wall time = 336.877165 + 0: The maximum resident set size (KB) = 3144272 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_gfsv17 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/cpld_control_gfsv17 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_gfsv17 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -172,14 +172,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 224.534147 - 0: The maximum resident set size (KB) = 1736076 + 0: The total amount of wall time = 258.080182 + 0: The maximum resident set size (KB) = 1737640 Test 002 cpld_control_gfsv17 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/cpld_control_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -244,14 +244,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 346.351986 - 0: The maximum resident set size (KB) = 3171408 + 0: The total amount of wall time = 348.464064 + 0: The maximum resident set size (KB) = 3168988 Test 003 cpld_control_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/cpld_restart_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -304,14 +304,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 206.053221 - 0: The maximum resident set size (KB) = 3055624 + 0: The total amount of wall time = 203.959017 + 0: The maximum resident set size (KB) = 3048492 Test 004 cpld_restart_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/cpld_2threads_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -364,14 +364,14 @@ Checking test 005 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 420.863784 - 0: The maximum resident set size (KB) = 3502956 + 0: The total amount of wall time = 412.334822 + 0: The maximum resident set size (KB) = 3504828 Test 005 cpld_2threads_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/cpld_decomp_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/cpld_decomp_p8 Checking test 006 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -424,14 +424,14 @@ Checking test 006 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 351.480057 - 0: The maximum resident set size (KB) = 3169476 + 0: The total amount of wall time = 346.288032 + 0: The maximum resident set size (KB) = 3170444 Test 006 cpld_decomp_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/cpld_mpi_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/cpld_mpi_p8 Checking test 007 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -484,14 +484,14 @@ Checking test 007 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 296.104032 - 0: The maximum resident set size (KB) = 3010960 + 0: The total amount of wall time = 287.880993 + 0: The maximum resident set size (KB) = 3029568 Test 007 cpld_mpi_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_ciceC_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/cpld_control_ciceC_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_ciceC_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/cpld_control_ciceC_p8 Checking test 008 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -556,14 +556,14 @@ Checking test 008 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 350.995024 - 0: The maximum resident set size (KB) = 3171496 + 0: The total amount of wall time = 344.185398 + 0: The maximum resident set size (KB) = 3177564 Test 008 cpld_control_ciceC_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/cpld_control_c192_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c192_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/cpld_control_c192_p8 Checking test 009 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -616,14 +616,14 @@ Checking test 009 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 647.644302 - 0: The maximum resident set size (KB) = 3261196 + 0: The total amount of wall time = 654.942801 + 0: The maximum resident set size (KB) = 3260912 Test 009 cpld_control_c192_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/cpld_restart_c192_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c192_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/cpld_restart_c192_p8 Checking test 010 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -676,14 +676,14 @@ Checking test 010 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 453.213638 - 0: The maximum resident set size (KB) = 3160000 + 0: The total amount of wall time = 452.276873 + 0: The maximum resident set size (KB) = 3150760 Test 010 cpld_restart_c192_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_bmark_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/cpld_bmark_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_bmark_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/cpld_bmark_p8 Checking test 011 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -731,14 +731,14 @@ Checking test 011 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 902.755554 - 0: The maximum resident set size (KB) = 3976732 + 0: The total amount of wall time = 904.233030 + 0: The maximum resident set size (KB) = 4043356 Test 011 cpld_bmark_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_bmark_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/cpld_restart_bmark_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_bmark_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/cpld_restart_bmark_p8 Checking test 012 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -786,14 +786,14 @@ Checking test 012 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 540.973742 - 0: The maximum resident set size (KB) = 3975996 + 0: The total amount of wall time = 548.726341 + 0: The maximum resident set size (KB) = 3961096 Test 012 cpld_restart_bmark_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_noaero_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/cpld_control_noaero_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/cpld_control_noaero_p8 Checking test 013 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -857,14 +857,14 @@ Checking test 013 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 256.926023 - 0: The maximum resident set size (KB) = 1726604 + 0: The total amount of wall time = 258.001386 + 0: The maximum resident set size (KB) = 1715620 Test 013 cpld_control_noaero_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c96_noaero_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/cpld_control_nowave_noaero_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c96_noaero_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/cpld_control_nowave_noaero_p8 Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -926,14 +926,14 @@ Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 261.156068 - 0: The maximum resident set size (KB) = 1772112 + 0: The total amount of wall time = 263.748207 + 0: The maximum resident set size (KB) = 1759308 Test 014 cpld_control_nowave_noaero_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_debug_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/cpld_debug_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_debug_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/cpld_debug_p8 Checking test 015 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -986,14 +986,14 @@ Checking test 015 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 692.339565 - 0: The maximum resident set size (KB) = 3245860 + 0: The total amount of wall time = 708.047363 + 0: The maximum resident set size (KB) = 3259048 Test 015 cpld_debug_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_debug_noaero_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/cpld_debug_noaero_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_debug_noaero_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/cpld_debug_noaero_p8 Checking test 016 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1045,14 +1045,14 @@ Checking test 016 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 437.344061 - 0: The maximum resident set size (KB) = 1744084 + 0: The total amount of wall time = 442.657797 + 0: The maximum resident set size (KB) = 1742824 Test 016 cpld_debug_noaero_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_noaero_p8_agrid -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/cpld_control_noaero_p8_agrid +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8_agrid +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/cpld_control_noaero_p8_agrid Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1114,14 +1114,14 @@ Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 265.702473 - 0: The maximum resident set size (KB) = 1768944 + 0: The total amount of wall time = 296.103265 + 0: The maximum resident set size (KB) = 1764448 Test 017 cpld_control_noaero_p8_agrid PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c48 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/cpld_control_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c48 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/cpld_control_c48 Checking test 018 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1171,14 +1171,14 @@ Checking test 018 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 505.315391 - 0: The maximum resident set size (KB) = 2788164 + 0: The total amount of wall time = 497.181790 + 0: The maximum resident set size (KB) = 2803224 Test 018 cpld_control_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_warmstart_c48 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/cpld_warmstart_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/cpld_warmstart_c48 Checking test 019 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1228,14 +1228,14 @@ Checking test 019 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 136.020603 - 0: The maximum resident set size (KB) = 2805808 + 0: The total amount of wall time = 138.730575 + 0: The maximum resident set size (KB) = 2798928 Test 019 cpld_warmstart_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_warmstart_c48 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/cpld_restart_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/cpld_restart_c48 Checking test 020 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1285,14 +1285,14 @@ Checking test 020 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 74.475997 - 0: The maximum resident set size (KB) = 2243520 + 0: The total amount of wall time = 94.986656 + 0: The maximum resident set size (KB) = 2221576 Test 020 cpld_restart_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8_faster -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/cpld_control_p8_faster +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_faster +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/cpld_control_p8_faster Checking test 021 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1357,14 +1357,14 @@ Checking test 021 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 330.252678 - 0: The maximum resident set size (KB) = 3175916 + 0: The total amount of wall time = 322.848716 + 0: The maximum resident set size (KB) = 3183744 Test 021 cpld_control_p8_faster PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_CubedSphereGrid +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_CubedSphereGrid Checking test 022 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1391,28 +1391,28 @@ Checking test 022 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 132.636819 - 0: The maximum resident set size (KB) = 625976 + 0: The total amount of wall time = 131.151760 + 0: The maximum resident set size (KB) = 629300 Test 022 control_CubedSphereGrid PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid_parallel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_CubedSphereGrid_parallel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid_parallel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_CubedSphereGrid_parallel Checking test 023 control_CubedSphereGrid_parallel results .... 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 = 129.819174 - 0: The maximum resident set size (KB) = 628296 + 0: The total amount of wall time = 128.162073 + 0: The maximum resident set size (KB) = 630492 Test 023 control_CubedSphereGrid_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_latlon -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_latlon +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_latlon +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_latlon Checking test 024 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1423,16 +1423,16 @@ Checking test 024 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.817468 - 0: The maximum resident set size (KB) = 592912 + 0: The total amount of wall time = 133.736516 + 0: The maximum resident set size (KB) = 634324 Test 024 control_latlon PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wrtGauss_netcdf_parallel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_wrtGauss_netcdf_parallel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_wrtGauss_netcdf_parallel Checking test 025 control_wrtGauss_netcdf_parallel results .... - Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK @@ -1441,14 +1441,14 @@ Checking test 025 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.249257 - 0: The maximum resident set size (KB) = 631296 + 0: The total amount of wall time = 136.888594 + 0: The maximum resident set size (KB) = 628828 Test 025 control_wrtGauss_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c48 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c48 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_c48 Checking test 026 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1487,14 +1487,14 @@ Checking test 026 control_c48 results .... Comparing 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.792388 -0: The maximum resident set size (KB) = 817704 +0: The total amount of wall time = 347.193954 +0: The maximum resident set size (KB) = 817908 Test 026 control_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c192 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_c192 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c192 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_c192 Checking test 027 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1505,14 +1505,14 @@ Checking test 027 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 525.735935 - 0: The maximum resident set size (KB) = 770080 + 0: The total amount of wall time = 528.211659 + 0: The maximum resident set size (KB) = 761428 Test 027 control_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c384 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_c384 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_c384 Checking test 028 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1523,14 +1523,14 @@ Checking test 028 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 591.752107 - 0: The maximum resident set size (KB) = 1226908 + 0: The total amount of wall time = 602.612833 + 0: The maximum resident set size (KB) = 1230304 Test 028 control_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c384gdas -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_c384gdas +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384gdas +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_c384gdas Checking test 029 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1573,14 +1573,14 @@ Checking test 029 control_c384gdas 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 = 525.615458 - 0: The maximum resident set size (KB) = 1335492 + 0: The total amount of wall time = 526.749019 + 0: The maximum resident set size (KB) = 1337808 Test 029 control_c384gdas PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_stochy +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_stochy Checking test 030 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1591,28 +1591,28 @@ Checking test 030 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 86.907139 - 0: The maximum resident set size (KB) = 634724 + 0: The total amount of wall time = 88.153468 + 0: The maximum resident set size (KB) = 628812 Test 030 control_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_stochy_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_stochy_restart Checking test 031 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 46.804386 - 0: The maximum resident set size (KB) = 483116 + 0: The total amount of wall time = 48.071092 + 0: The maximum resident set size (KB) = 479760 Test 031 control_stochy_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_lndp -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_lndp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_lndp Checking test 032 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1623,14 +1623,14 @@ Checking test 032 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 81.774779 - 0: The maximum resident set size (KB) = 628964 + 0: The total amount of wall time = 81.115563 + 0: The maximum resident set size (KB) = 629376 Test 032 control_lndp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_iovr4 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_iovr4 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr4 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_iovr4 Checking test 033 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1645,14 +1645,14 @@ Checking test 033 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.220497 - 0: The maximum resident set size (KB) = 629628 + 0: The total amount of wall time = 135.289444 + 0: The maximum resident set size (KB) = 629580 Test 033 control_iovr4 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_iovr5 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_iovr5 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr5 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_iovr5 Checking test 034 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1667,14 +1667,14 @@ Checking test 034 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.575998 - 0: The maximum resident set size (KB) = 630800 + 0: The total amount of wall time = 135.054214 + 0: The maximum resident set size (KB) = 628060 Test 034 control_iovr5 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_p8 Checking test 035 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1721,14 +1721,14 @@ Checking test 035 control_p8 results .... Comparing 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.306712 - 0: The maximum resident set size (KB) = 1609860 + 0: The total amount of wall time = 168.590035 + 0: The maximum resident set size (KB) = 1605208 Test 035 control_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_lndp -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_p8_lndp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_lndp +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_p8_lndp Checking test 036 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1747,14 +1747,14 @@ Checking test 036 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 311.795315 - 0: The maximum resident set size (KB) = 1597176 + 0: The total amount of wall time = 315.363481 + 0: The maximum resident set size (KB) = 1607072 Test 036 control_p8_lndp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_restart_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_restart_p8 Checking test 037 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1793,14 +1793,14 @@ Checking test 037 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 87.545257 - 0: The maximum resident set size (KB) = 882248 + 0: The total amount of wall time = 88.654373 + 0: The maximum resident set size (KB) = 863284 Test 037 control_restart_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_decomp_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_decomp_p8 Checking test 038 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1843,14 +1843,14 @@ Checking test 038 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 173.706934 - 0: The maximum resident set size (KB) = 1590316 + 0: The total amount of wall time = 183.650871 + 0: The maximum resident set size (KB) = 1589448 Test 038 control_decomp_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_2threads_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_2threads_p8 Checking test 039 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1893,14 +1893,14 @@ Checking test 039 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 180.876311 - 0: The maximum resident set size (KB) = 1679384 + 0: The total amount of wall time = 183.702617 + 0: The maximum resident set size (KB) = 1671776 Test 039 control_2threads_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_rrtmgp -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_p8_rrtmgp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_rrtmgp +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_p8_rrtmgp Checking test 040 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1947,14 +1947,14 @@ Checking test 040 control_p8_rrtmgp results .... Comparing 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.654273 - 0: The maximum resident set size (KB) = 1676272 + 0: The total amount of wall time = 232.514858 + 0: The maximum resident set size (KB) = 1662936 Test 040 control_p8_rrtmgp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/merra2_thompson -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/merra2_thompson +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/merra2_thompson +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/merra2_thompson Checking test 041 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2001,14 +2001,14 @@ Checking test 041 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 189.205175 - 0: The maximum resident set size (KB) = 1609952 + 0: The total amount of wall time = 190.579596 + 0: The maximum resident set size (KB) = 1614064 Test 041 merra2_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/regional_control +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/regional_control Checking test 042 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2019,28 +2019,28 @@ Checking test 042 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 296.558103 - 0: The maximum resident set size (KB) = 868116 + 0: The total amount of wall time = 297.204593 + 0: The maximum resident set size (KB) = 868720 Test 042 regional_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/regional_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/regional_restart Checking test 043 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 151.197824 - 0: The maximum resident set size (KB) = 863784 + 0: The total amount of wall time = 152.589813 + 0: The maximum resident set size (KB) = 861284 Test 043 regional_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/regional_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/regional_decomp Checking test 044 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2051,14 +2051,14 @@ Checking test 044 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 315.829614 - 0: The maximum resident set size (KB) = 862684 + 0: The total amount of wall time = 313.646975 + 0: The maximum resident set size (KB) = 863112 Test 044 regional_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/regional_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/regional_2threads Checking test 045 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2069,14 +2069,14 @@ Checking test 045 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 208.560546 - 0: The maximum resident set size (KB) = 840740 + 0: The total amount of wall time = 208.455155 + 0: The maximum resident set size (KB) = 844692 Test 045 regional_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_noquilt -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/regional_noquilt +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_noquilt +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/regional_noquilt Checking test 046 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2084,28 +2084,28 @@ Checking test 046 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 317.503514 - 0: The maximum resident set size (KB) = 860960 + 0: The total amount of wall time = 319.514060 + 0: The maximum resident set size (KB) = 859020 Test 046 regional_noquilt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_netcdf_parallel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/regional_netcdf_parallel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_netcdf_parallel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/regional_netcdf_parallel Checking test 047 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 291.664583 - 0: The maximum resident set size (KB) = 860240 + 0: The total amount of wall time = 291.599719 + 0: The maximum resident set size (KB) = 860236 Test 047 regional_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/regional_2dwrtdecomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/regional_2dwrtdecomp Checking test 048 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2116,14 +2116,14 @@ Checking test 048 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 294.361627 - 0: The maximum resident set size (KB) = 865840 + 0: The total amount of wall time = 295.344020 + 0: The maximum resident set size (KB) = 866924 Test 048 regional_2dwrtdecomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/fv3_regional_wofs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/regional_wofs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/fv3_regional_wofs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/regional_wofs Checking test 049 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2134,14 +2134,14 @@ Checking test 049 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 373.249826 - 0: The maximum resident set size (KB) = 624800 + 0: The total amount of wall time = 373.768327 + 0: The maximum resident set size (KB) = 625900 Test 049 regional_wofs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rap_control +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rap_control Checking test 050 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2188,14 +2188,14 @@ Checking test 050 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 459.170931 - 0: The maximum resident set size (KB) = 1062932 + 0: The total amount of wall time = 457.653991 + 0: The maximum resident set size (KB) = 1065208 Test 050 rap_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_spp_sppt_shum_skeb -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/regional_spp_sppt_shum_skeb +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/regional_spp_sppt_shum_skeb Checking test 051 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2206,14 +2206,14 @@ Checking test 051 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 328.515617 - 0: The maximum resident set size (KB) = 1169032 + 0: The total amount of wall time = 321.957537 + 0: The maximum resident set size (KB) = 1184504 Test 051 regional_spp_sppt_shum_skeb PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rap_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rap_decomp Checking test 052 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2260,14 +2260,14 @@ Checking test 052 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 485.168000 - 0: The maximum resident set size (KB) = 1006344 + 0: The total amount of wall time = 482.070741 + 0: The maximum resident set size (KB) = 1009684 Test 052 rap_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rap_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rap_2threads Checking test 053 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2314,14 +2314,14 @@ Checking test 053 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 479.976992 - 0: The maximum resident set size (KB) = 1135800 + 0: The total amount of wall time = 477.664028 + 0: The maximum resident set size (KB) = 1077992 Test 053 rap_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rap_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rap_restart Checking test 054 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2360,14 +2360,14 @@ Checking test 054 rap_restart results .... Comparing 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.363934 - 0: The maximum resident set size (KB) = 969788 + 0: The total amount of wall time = 232.723761 + 0: The maximum resident set size (KB) = 975520 Test 054 rap_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rap_sfcdiff +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rap_sfcdiff Checking test 055 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2414,14 +2414,14 @@ Checking test 055 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 451.033455 - 0: The maximum resident set size (KB) = 1064940 + 0: The total amount of wall time = 452.283552 + 0: The maximum resident set size (KB) = 1060944 Test 055 rap_sfcdiff PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rap_sfcdiff_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rap_sfcdiff_decomp Checking test 056 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2468,14 +2468,14 @@ Checking test 056 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 477.263314 - 0: The maximum resident set size (KB) = 1001312 + 0: The total amount of wall time = 480.057175 + 0: The maximum resident set size (KB) = 1004216 Test 056 rap_sfcdiff_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rap_sfcdiff_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rap_sfcdiff_restart Checking test 057 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2514,14 +2514,14 @@ Checking test 057 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 343.757917 - 0: The maximum resident set size (KB) = 999672 + 0: The total amount of wall time = 343.050675 + 0: The maximum resident set size (KB) = 992008 Test 057 rap_sfcdiff_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hrrr_control +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hrrr_control Checking test 058 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2568,14 +2568,14 @@ Checking test 058 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 434.862807 - 0: The maximum resident set size (KB) = 1060500 + 0: The total amount of wall time = 438.047975 + 0: The maximum resident set size (KB) = 1057812 Test 058 hrrr_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hrrr_control_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hrrr_control_decomp Checking test 059 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2622,14 +2622,14 @@ Checking test 059 hrrr_control_decomp results .... Comparing 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.578057 - 0: The maximum resident set size (KB) = 1001524 + 0: The total amount of wall time = 458.856535 + 0: The maximum resident set size (KB) = 1005412 Test 059 hrrr_control_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hrrr_control_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hrrr_control_2threads Checking test 060 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2676,14 +2676,14 @@ Checking test 060 hrrr_control_2threads results .... Comparing 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.710874 - 0: The maximum resident set size (KB) = 1137964 + 0: The total amount of wall time = 450.110256 + 0: The maximum resident set size (KB) = 1136408 Test 060 hrrr_control_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hrrr_control_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hrrr_control_restart Checking test 061 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2722,14 +2722,14 @@ Checking test 061 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 333.337774 - 0: The maximum resident set size (KB) = 987580 + 0: The total amount of wall time = 330.433329 + 0: The maximum resident set size (KB) = 985356 Test 061 hrrr_control_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1beta -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rrfs_v1beta +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rrfs_v1beta Checking test 062 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2776,14 +2776,14 @@ Checking test 062 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 449.222940 - 0: The maximum resident set size (KB) = 1056328 + 0: The total amount of wall time = 446.981896 + 0: The maximum resident set size (KB) = 1060400 Test 062 rrfs_v1beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1nssl -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rrfs_v1nssl +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rrfs_v1nssl Checking test 063 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2798,14 +2798,14 @@ Checking test 063 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 529.385693 - 0: The maximum resident set size (KB) = 701744 + 0: The total amount of wall time = 531.605293 + 0: The maximum resident set size (KB) = 698508 Test 063 rrfs_v1nssl PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rrfs_v1nssl_nohailnoccn +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rrfs_v1nssl_nohailnoccn Checking test 064 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2820,14 +2820,14 @@ Checking test 064 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 517.354433 - 0: The maximum resident set size (KB) = 765068 + 0: The total amount of wall time = 517.998233 + 0: The maximum resident set size (KB) = 759256 Test 064 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rrfs_conus13km_hrrr_warm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rrfs_conus13km_hrrr_warm Checking test 065 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2836,14 +2836,14 @@ Checking test 065 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 123.588469 - 0: The maximum resident set size (KB) = 931572 + 0: The total amount of wall time = 123.189577 + 0: The maximum resident set size (KB) = 928972 Test 065 rrfs_conus13km_hrrr_warm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rrfs_smoke_conus13km_hrrr_warm Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2852,14 +2852,14 @@ Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 140.264375 - 0: The maximum resident set size (KB) = 959016 + 0: The total amount of wall time = 139.668729 + 0: The maximum resident set size (KB) = 958700 Test 066 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rrfs_conus13km_radar_tten_warm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rrfs_conus13km_radar_tten_warm Checking test 067 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2868,14 +2868,14 @@ Checking test 067 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 126.266279 - 0: The maximum resident set size (KB) = 932444 + 0: The total amount of wall time = 124.977149 + 0: The maximum resident set size (KB) = 935888 Test 067 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rrfs_conus13km_hrrr_warm_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rrfs_conus13km_hrrr_warm_2threads Checking test 068 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2884,14 +2884,14 @@ Checking test 068 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 85.345622 - 0: The maximum resident set size (KB) = 845860 + 0: The total amount of wall time = 83.648323 + 0: The maximum resident set size (KB) = 837184 Test 068 rrfs_conus13km_hrrr_warm_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rrfs_conus13km_radar_tten_warm_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rrfs_conus13km_radar_tten_warm_2threads Checking test 069 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2900,14 +2900,14 @@ Checking test 069 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 84.238277 - 0: The maximum resident set size (KB) = 887396 + 0: The total amount of wall time = 84.458841 + 0: The maximum resident set size (KB) = 851748 Test 069 rrfs_conus13km_radar_tten_warm_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmg -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_csawmg +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_csawmg Checking test 070 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2918,14 +2918,14 @@ Checking test 070 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 342.403692 - 0: The maximum resident set size (KB) = 722092 + 0: The total amount of wall time = 346.048433 + 0: The maximum resident set size (KB) = 725700 Test 070 control_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmgt -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_csawmgt +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_csawmgt Checking test 071 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2936,14 +2936,14 @@ Checking test 071 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 337.184713 - 0: The maximum resident set size (KB) = 729572 + 0: The total amount of wall time = 341.126033 + 0: The maximum resident set size (KB) = 728624 Test 071 control_csawmgt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_ras -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_ras +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_ras Checking test 072 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2954,26 +2954,26 @@ Checking test 072 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 181.714380 - 0: The maximum resident set size (KB) = 712912 + 0: The total amount of wall time = 182.242133 + 0: The maximum resident set size (KB) = 718552 Test 072 control_ras PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wam -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_wam +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_wam Checking test 073 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 112.964085 - 0: The maximum resident set size (KB) = 639844 + 0: The total amount of wall time = 112.397590 + 0: The maximum resident set size (KB) = 643200 Test 073 control_wam PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_faster -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_p8_faster +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_faster +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_p8_faster Checking test 074 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3020,14 +3020,14 @@ Checking test 074 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 151.919192 - 0: The maximum resident set size (KB) = 1601688 + 0: The total amount of wall time = 153.150096 + 0: The maximum resident set size (KB) = 1609760 Test 074 control_p8_faster PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control_faster -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/regional_control_faster +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control_faster +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/regional_control_faster Checking test 075 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3038,42 +3038,42 @@ Checking test 075 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 269.208807 - 0: The maximum resident set size (KB) = 869376 + 0: The total amount of wall time = 269.830637 + 0: The maximum resident set size (KB) = 866992 Test 075 regional_control_faster PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rrfs_conus13km_hrrr_warm_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rrfs_conus13km_hrrr_warm_debug Checking test 076 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 742.760454 - 0: The maximum resident set size (KB) = 957116 + 0: The total amount of wall time = 739.090999 + 0: The maximum resident set size (KB) = 959524 Test 076 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rrfs_conus13km_radar_tten_warm_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rrfs_conus13km_radar_tten_warm_debug Checking test 077 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 745.005118 - 0: The maximum resident set size (KB) = 965788 + 0: The total amount of wall time = 719.570687 + 0: The maximum resident set size (KB) = 966840 Test 077 rrfs_conus13km_radar_tten_warm_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_CubedSphereGrid_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_CubedSphereGrid_debug Checking test 078 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3100,334 +3100,334 @@ Checking test 078 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 175.296868 - 0: The maximum resident set size (KB) = 795920 + 0: The total amount of wall time = 169.010078 + 0: The maximum resident set size (KB) = 793448 Test 078 control_CubedSphereGrid_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_wrtGauss_netcdf_parallel_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_wrtGauss_netcdf_parallel_debug Checking test 079 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 156.597766 - 0: The maximum resident set size (KB) = 802096 + 0: The total amount of wall time = 162.557313 + 0: The maximum resident set size (KB) = 798596 Test 079 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_stochy_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_stochy_debug Checking test 080 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 177.945904 - 0: The maximum resident set size (KB) = 799748 + 0: The total amount of wall time = 175.964536 + 0: The maximum resident set size (KB) = 802108 Test 080 control_stochy_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_lndp_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_lndp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_lndp_debug Checking test 081 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 160.643101 - 0: The maximum resident set size (KB) = 798412 + 0: The total amount of wall time = 161.248328 + 0: The maximum resident set size (KB) = 801132 Test 081 control_lndp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmg_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_csawmg_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_csawmg_debug Checking test 082 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 240.254972 - 0: The maximum resident set size (KB) = 846364 + 0: The total amount of wall time = 240.414382 + 0: The maximum resident set size (KB) = 846868 Test 082 control_csawmg_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmgt_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_csawmgt_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_csawmgt_debug Checking test 083 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 239.152568 - 0: The maximum resident set size (KB) = 842348 + 0: The total amount of wall time = 239.645950 + 0: The maximum resident set size (KB) = 847040 Test 083 control_csawmgt_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_ras_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_ras_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_ras_debug Checking test 084 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 159.780133 - 0: The maximum resident set size (KB) = 809328 + 0: The total amount of wall time = 165.590790 + 0: The maximum resident set size (KB) = 803052 Test 084 control_ras_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_diag_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_diag_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_diag_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_diag_debug Checking test 085 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 167.270369 - 0: The maximum resident set size (KB) = 852336 + 0: The total amount of wall time = 167.820936 + 0: The maximum resident set size (KB) = 854244 Test 085 control_diag_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_debug_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_debug_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_debug_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_debug_p8 Checking test 086 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 180.682794 - 0: The maximum resident set size (KB) = 1618088 + 0: The total amount of wall time = 179.263904 + 0: The maximum resident set size (KB) = 1619920 Test 086 control_debug_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/regional_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/regional_debug Checking test 087 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 973.654613 - 0: The maximum resident set size (KB) = 896304 + 0: The total amount of wall time = 1014.672642 + 0: The maximum resident set size (KB) = 888920 Test 087 regional_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rap_control_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rap_control_debug Checking test 088 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 295.969070 - 0: The maximum resident set size (KB) = 1174908 + 0: The total amount of wall time = 288.751190 + 0: The maximum resident set size (KB) = 1180684 Test 088 rap_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hrrr_control_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hrrr_control_debug Checking test 089 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.038846 - 0: The maximum resident set size (KB) = 1171768 + 0: The total amount of wall time = 289.710554 + 0: The maximum resident set size (KB) = 1171656 Test 089 hrrr_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rap_unified_drag_suite_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rap_unified_drag_suite_debug Checking test 090 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 291.191775 - 0: The maximum resident set size (KB) = 1174128 + 0: The total amount of wall time = 286.789141 + 0: The maximum resident set size (KB) = 1173348 Test 090 rap_unified_drag_suite_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_diag_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rap_diag_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_diag_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rap_diag_debug Checking test 091 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 311.236582 - 0: The maximum resident set size (KB) = 1260788 + 0: The total amount of wall time = 311.031375 + 0: The maximum resident set size (KB) = 1257472 Test 091 rap_diag_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rap_cires_ugwp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rap_cires_ugwp_debug Checking test 092 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 295.380042 - 0: The maximum resident set size (KB) = 1175900 + 0: The total amount of wall time = 294.786154 + 0: The maximum resident set size (KB) = 1183672 Test 092 rap_cires_ugwp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rap_unified_ugwp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rap_unified_ugwp_debug Checking test 093 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 286.480297 - 0: The maximum resident set size (KB) = 1181640 + 0: The total amount of wall time = 291.435893 + 0: The maximum resident set size (KB) = 1178520 Test 093 rap_unified_ugwp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_lndp_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rap_lndp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_lndp_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rap_lndp_debug Checking test 094 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 294.335969 - 0: The maximum resident set size (KB) = 1175680 + 0: The total amount of wall time = 290.023658 + 0: The maximum resident set size (KB) = 1177688 Test 094 rap_lndp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_flake_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rap_flake_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_flake_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rap_flake_debug Checking test 095 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 289.248584 - 0: The maximum resident set size (KB) = 1176988 + 0: The total amount of wall time = 293.602598 + 0: The maximum resident set size (KB) = 1156412 Test 095 rap_flake_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_progcld_thompson_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rap_progcld_thompson_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_progcld_thompson_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rap_progcld_thompson_debug Checking test 096 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 308.762616 - 0: The maximum resident set size (KB) = 1171148 + 0: The total amount of wall time = 286.873424 + 0: The maximum resident set size (KB) = 1184440 Test 096 rap_progcld_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_noah_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rap_noah_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rap_noah_debug Checking test 097 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.339785 - 0: The maximum resident set size (KB) = 1174700 + 0: The total amount of wall time = 283.988170 + 0: The maximum resident set size (KB) = 1175180 Test 097 rap_noah_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rap_sfcdiff_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rap_sfcdiff_debug Checking test 098 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 282.729194 - 0: The maximum resident set size (KB) = 1178512 + 0: The total amount of wall time = 294.077109 + 0: The maximum resident set size (KB) = 1172604 Test 098 rap_sfcdiff_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rap_noah_sfcdiff_cires_ugwp_debug Checking test 099 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 462.891360 - 0: The maximum resident set size (KB) = 1171948 + 0: The total amount of wall time = 464.016705 + 0: The maximum resident set size (KB) = 1176716 Test 099 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1beta_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rrfs_v1beta_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rrfs_v1beta_debug Checking test 100 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.232980 - 0: The maximum resident set size (KB) = 1177500 + 0: The total amount of wall time = 282.285636 + 0: The maximum resident set size (KB) = 1168516 Test 100 rrfs_v1beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wam_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_wam_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_wam_debug Checking test 101 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 295.389220 - 0: The maximum resident set size (KB) = 521476 + 0: The total amount of wall time = 288.209577 + 0: The maximum resident set size (KB) = 529924 Test 101 control_wam_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 102 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3438,14 +3438,14 @@ Checking test 102 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 303.021149 - 0: The maximum resident set size (KB) = 1057924 + 0: The total amount of wall time = 303.718530 + 0: The maximum resident set size (KB) = 1083532 Test 102 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rap_control_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rap_control_dyn32_phy32 Checking test 103 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3492,14 +3492,14 @@ Checking test 103 rap_control_dyn32_phy32 results .... Comparing 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.072615 - 0: The maximum resident set size (KB) = 1010340 + 0: The total amount of wall time = 369.734356 + 0: The maximum resident set size (KB) = 997740 Test 103 rap_control_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hrrr_control_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hrrr_control_dyn32_phy32 Checking test 104 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3546,14 +3546,14 @@ Checking test 104 hrrr_control_dyn32_phy32 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 = 195.775219 - 0: The maximum resident set size (KB) = 949492 + 0: The total amount of wall time = 195.380344 + 0: The maximum resident set size (KB) = 954568 Test 104 hrrr_control_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rap_2threads_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rap_2threads_dyn32_phy32 Checking test 105 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3600,14 +3600,14 @@ Checking test 105 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 393.204293 - 0: The maximum resident set size (KB) = 1020484 + 0: The total amount of wall time = 389.840670 + 0: The maximum resident set size (KB) = 1021344 Test 105 rap_2threads_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hrrr_control_2threads_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hrrr_control_2threads_dyn32_phy32 Checking test 106 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3654,14 +3654,14 @@ Checking test 106 hrrr_control_2threads_dyn32_phy32 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 = 209.489679 - 0: The maximum resident set size (KB) = 1009444 + 0: The total amount of wall time = 210.069105 + 0: The maximum resident set size (KB) = 1009884 Test 106 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hrrr_control_decomp_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hrrr_control_decomp_dyn32_phy32 Checking test 107 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3708,14 +3708,14 @@ Checking test 107 hrrr_control_decomp_dyn32_phy32 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 = 205.824536 - 0: The maximum resident set size (KB) = 856920 + 0: The total amount of wall time = 206.743338 + 0: The maximum resident set size (KB) = 889264 Test 107 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rap_restart_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rap_restart_dyn32_phy32 Checking test 108 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3754,14 +3754,14 @@ Checking test 108 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 280.500676 - 0: The maximum resident set size (KB) = 949656 + 0: The total amount of wall time = 282.681645 + 0: The maximum resident set size (KB) = 956216 Test 108 rap_restart_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hrrr_control_restart_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hrrr_control_restart_dyn32_phy32 Checking test 109 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3800,14 +3800,14 @@ Checking test 109 hrrr_control_restart_dyn32_phy32 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 = 100.506210 - 0: The maximum resident set size (KB) = 864576 + 0: The total amount of wall time = 100.615237 + 0: The maximum resident set size (KB) = 875144 Test 109 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn64_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rap_control_dyn64_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn64_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rap_control_dyn64_phy32 Checking test 110 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3854,81 +3854,81 @@ Checking test 110 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 243.851800 - 0: The maximum resident set size (KB) = 971788 + 0: The total amount of wall time = 238.540791 + 0: The maximum resident set size (KB) = 915504 Test 110 rap_control_dyn64_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rap_control_debug_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rap_control_debug_dyn32_phy32 Checking test 111 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 287.818589 - 0: The maximum resident set size (KB) = 1062636 + 0: The total amount of wall time = 293.756395 + 0: The maximum resident set size (KB) = 1059384 Test 111 rap_control_debug_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hrrr_control_debug_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hrrr_control_debug_dyn32_phy32 Checking test 112 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 288.172440 - 0: The maximum resident set size (KB) = 1054616 + 0: The total amount of wall time = 295.266519 + 0: The maximum resident set size (KB) = 1055840 Test 112 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug_dyn64_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/rap_control_dyn64_phy32_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn64_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rap_control_dyn64_phy32_debug Checking test 113 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 314.560671 - 0: The maximum resident set size (KB) = 1089840 + 0: The total amount of wall time = 291.774015 + 0: The maximum resident set size (KB) = 1106460 Test 113 rap_control_dyn64_phy32_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hafs_regional_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hafs_regional_atm Checking test 114 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 272.063334 - 0: The maximum resident set size (KB) = 1058724 + 0: The total amount of wall time = 280.242764 + 0: The maximum resident set size (KB) = 1056228 Test 114 hafs_regional_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hafs_regional_atm_thompson_gfdlsf +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hafs_regional_atm_thompson_gfdlsf Checking test 115 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 414.910697 - 0: The maximum resident set size (KB) = 1426896 + 0: The total amount of wall time = 433.675499 + 0: The maximum resident set size (KB) = 1349876 Test 115 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_ocn -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hafs_regional_atm_ocn +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hafs_regional_atm_ocn Checking test 116 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3937,14 +3937,14 @@ Checking test 116 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 385.635486 - 0: The maximum resident set size (KB) = 1230192 + 0: The total amount of wall time = 382.534362 + 0: The maximum resident set size (KB) = 1223896 Test 116 hafs_regional_atm_ocn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_wav -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hafs_regional_atm_wav +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_wav +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hafs_regional_atm_wav Checking test 117 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3953,14 +3953,14 @@ Checking test 117 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 726.616797 - 0: The maximum resident set size (KB) = 1257308 + 0: The total amount of wall time = 731.606663 + 0: The maximum resident set size (KB) = 1257284 -Test 117 hafs_regional_atm_wav PASS +Test 117 hafs_regional_atm_wav PASS Tries: 2 -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_ocn_wav -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hafs_regional_atm_ocn_wav +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn_wav +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hafs_regional_atm_ocn_wav Checking test 118 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3971,28 +3971,28 @@ Checking test 118 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 830.285839 - 0: The maximum resident set size (KB) = 1277324 + 0: The total amount of wall time = 831.753526 + 0: The maximum resident set size (KB) = 1283764 Test 118 hafs_regional_atm_ocn_wav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_1nest_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hafs_regional_1nest_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_1nest_atm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hafs_regional_1nest_atm Checking test 119 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 365.442801 - 0: The maximum resident set size (KB) = 515096 + 0: The total amount of wall time = 380.484114 + 0: The maximum resident set size (KB) = 508560 Test 119 hafs_regional_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hafs_regional_telescopic_2nests_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hafs_regional_telescopic_2nests_atm Checking test 120 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4001,28 +4001,28 @@ Checking test 120 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 417.846356 - 0: The maximum resident set size (KB) = 521760 + 0: The total amount of wall time = 430.397342 + 0: The maximum resident set size (KB) = 517968 Test 120 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_1nest_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hafs_global_1nest_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_1nest_atm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hafs_global_1nest_atm Checking test 121 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 173.147549 - 0: The maximum resident set size (KB) = 352880 + 0: The total amount of wall time = 173.181677 + 0: The maximum resident set size (KB) = 357368 Test 121 hafs_global_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_multiple_4nests_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hafs_global_multiple_4nests_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_multiple_4nests_atm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hafs_global_multiple_4nests_atm Checking test 122 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4040,14 +4040,14 @@ Checking test 122 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 473.819085 - 0: The maximum resident set size (KB) = 426840 + 0: The total amount of wall time = 477.381633 + 0: The maximum resident set size (KB) = 430344 Test 122 hafs_global_multiple_4nests_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hafs_regional_specified_moving_1nest_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hafs_regional_specified_moving_1nest_atm Checking test 123 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4056,28 +4056,28 @@ Checking test 123 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 227.252558 - 0: The maximum resident set size (KB) = 514760 + 0: The total amount of wall time = 230.918846 + 0: The maximum resident set size (KB) = 521092 Test 123 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hafs_regional_storm_following_1nest_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hafs_regional_storm_following_1nest_atm Checking test 124 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 215.542666 - 0: The maximum resident set size (KB) = 524328 + 0: The total amount of wall time = 216.938381 + 0: The maximum resident set size (KB) = 519768 Test 124 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hafs_regional_storm_following_1nest_atm_ocn Checking test 125 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4086,42 +4086,42 @@ Checking test 125 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 282.045690 - 0: The maximum resident set size (KB) = 555832 + 0: The total amount of wall time = 288.779888 + 0: The maximum resident set size (KB) = 558040 Test 125 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_storm_following_1nest_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hafs_global_storm_following_1nest_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_storm_following_1nest_atm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hafs_global_storm_following_1nest_atm Checking test 126 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 68.502904 - 0: The maximum resident set size (KB) = 365824 + 0: The total amount of wall time = 68.897061 + 0: The maximum resident set size (KB) = 369628 Test 126 hafs_global_storm_following_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 127 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 795.071726 - 0: The maximum resident set size (KB) = 584180 + 0: The total amount of wall time = 820.020168 + 0: The maximum resident set size (KB) = 583340 Test 127 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 128 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4132,14 +4132,14 @@ Checking test 128 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 581.937553 - 0: The maximum resident set size (KB) = 617500 + 0: The total amount of wall time = 576.743766 + 0: The maximum resident set size (KB) = 620516 Test 128 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_docn -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hafs_regional_docn +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_docn +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hafs_regional_docn Checking test 129 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4147,14 +4147,14 @@ Checking test 129 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 358.765516 - 0: The maximum resident set size (KB) = 1231484 + 0: The total amount of wall time = 357.658349 + 0: The maximum resident set size (KB) = 1230472 Test 129 hafs_regional_docn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_docn_oisst -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hafs_regional_docn_oisst +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_docn_oisst +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hafs_regional_docn_oisst Checking test 130 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4162,131 +4162,131 @@ Checking test 130 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 358.231735 - 0: The maximum resident set size (KB) = 1220640 + 0: The total amount of wall time = 366.120533 + 0: The maximum resident set size (KB) = 1217200 Test 130 hafs_regional_docn_oisst PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_datm_cdeps -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/hafs_regional_datm_cdeps +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_datm_cdeps +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hafs_regional_datm_cdeps Checking test 131 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 919.519461 - 0: The maximum resident set size (KB) = 1044072 + 0: The total amount of wall time = 935.267076 + 0: The maximum resident set size (KB) = 1039456 Test 131 hafs_regional_datm_cdeps PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/datm_cdeps_control_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/datm_cdeps_control_cfsr Checking test 132 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.703601 - 0: The maximum resident set size (KB) = 1068416 + 0: The total amount of wall time = 145.871764 + 0: The maximum resident set size (KB) = 1079360 Test 132 datm_cdeps_control_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/datm_cdeps_restart_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/datm_cdeps_restart_cfsr Checking test 133 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 92.511302 - 0: The maximum resident set size (KB) = 1017384 + 0: The total amount of wall time = 89.774618 + 0: The maximum resident set size (KB) = 1041124 Test 133 datm_cdeps_restart_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_gefs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/datm_cdeps_control_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_gefs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/datm_cdeps_control_gefs Checking test 134 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 142.947248 - 0: The maximum resident set size (KB) = 969332 + 0: The total amount of wall time = 146.127427 + 0: The maximum resident set size (KB) = 969244 Test 134 datm_cdeps_control_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_iau_gefs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/datm_cdeps_iau_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_iau_gefs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/datm_cdeps_iau_gefs Checking test 135 datm_cdeps_iau_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 144.851071 - 0: The maximum resident set size (KB) = 963732 + 0: The total amount of wall time = 145.119028 + 0: The maximum resident set size (KB) = 936820 Test 135 datm_cdeps_iau_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_stochy_gefs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/datm_cdeps_stochy_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_stochy_gefs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/datm_cdeps_stochy_gefs Checking test 136 datm_cdeps_stochy_gefs 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.343009 - 0: The maximum resident set size (KB) = 977220 + 0: The total amount of wall time = 146.191597 + 0: The maximum resident set size (KB) = 959692 Test 136 datm_cdeps_stochy_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_ciceC_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/datm_cdeps_ciceC_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_ciceC_cfsr +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/datm_cdeps_ciceC_cfsr Checking test 137 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.041708 - 0: The maximum resident set size (KB) = 1071324 + 0: The total amount of wall time = 151.569433 + 0: The maximum resident set size (KB) = 1047180 Test 137 datm_cdeps_ciceC_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_bulk_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/datm_cdeps_bulk_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_bulk_cfsr +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/datm_cdeps_bulk_cfsr Checking test 138 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.262322 - 0: The maximum resident set size (KB) = 1083988 + 0: The total amount of wall time = 149.675674 + 0: The maximum resident set size (KB) = 1066228 Test 138 datm_cdeps_bulk_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_bulk_gefs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/datm_cdeps_bulk_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_bulk_gefs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/datm_cdeps_bulk_gefs Checking test 139 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 141.090101 - 0: The maximum resident set size (KB) = 965688 + 0: The total amount of wall time = 148.264964 + 0: The maximum resident set size (KB) = 966124 Test 139 datm_cdeps_bulk_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_mx025_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/datm_cdeps_mx025_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_mx025_cfsr +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/datm_cdeps_mx025_cfsr Checking test 140 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4295,14 +4295,14 @@ Checking test 140 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 432.472741 - 0: The maximum resident set size (KB) = 874264 + 0: The total amount of wall time = 443.856489 + 0: The maximum resident set size (KB) = 872496 Test 140 datm_cdeps_mx025_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_mx025_gefs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/datm_cdeps_mx025_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_mx025_gefs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/datm_cdeps_mx025_gefs Checking test 141 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4311,77 +4311,77 @@ Checking test 141 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 436.230573 - 0: The maximum resident set size (KB) = 928056 + 0: The total amount of wall time = 443.348798 + 0: The maximum resident set size (KB) = 910976 Test 141 datm_cdeps_mx025_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/datm_cdeps_multiple_files_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/datm_cdeps_multiple_files_cfsr Checking test 142 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 145.581055 - 0: The maximum resident set size (KB) = 1034120 + 0: The total amount of wall time = 148.927760 + 0: The maximum resident set size (KB) = 1058880 Test 142 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/datm_cdeps_3072x1536_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/datm_cdeps_3072x1536_cfsr Checking test 143 datm_cdeps_3072x1536_cfsr 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 = 196.141257 - 0: The maximum resident set size (KB) = 2375356 + 0: The total amount of wall time = 195.047290 + 0: The maximum resident set size (KB) = 2361368 Test 143 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_gfs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/datm_cdeps_gfs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_gfs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/datm_cdeps_gfs Checking test 144 datm_cdeps_gfs 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 = 204.631005 - 0: The maximum resident set size (KB) = 2355072 + 0: The total amount of wall time = 201.041267 + 0: The maximum resident set size (KB) = 2361728 Test 144 datm_cdeps_gfs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_debug_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/datm_cdeps_debug_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_debug_cfsr +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/datm_cdeps_debug_cfsr Checking test 145 datm_cdeps_debug_cfsr 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 = 438.903723 - 0: The maximum resident set size (KB) = 1020112 + 0: The total amount of wall time = 443.877181 + 0: The maximum resident set size (KB) = 992148 Test 145 datm_cdeps_debug_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr_faster -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/datm_cdeps_control_cfsr_faster +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr_faster +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/datm_cdeps_control_cfsr_faster Checking test 146 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.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.491675 - 0: The maximum resident set size (KB) = 1067368 + 0: The total amount of wall time = 153.107633 + 0: The maximum resident set size (KB) = 1053420 Test 146 datm_cdeps_control_cfsr_faster PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_lnd_gswp3 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/datm_cdeps_lnd_gswp3 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_lnd_gswp3 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/datm_cdeps_lnd_gswp3 Checking test 147 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4390,14 +4390,14 @@ Checking test 147 datm_cdeps_lnd_gswp3 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 = 6.593781 - 0: The maximum resident set size (KB) = 255044 + 0: The total amount of wall time = 7.254620 + 0: The maximum resident set size (KB) = 228768 Test 147 datm_cdeps_lnd_gswp3 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_lnd_gswp3 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/datm_cdeps_lnd_gswp3_rst +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_lnd_gswp3 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/datm_cdeps_lnd_gswp3_rst Checking test 148 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4406,14 +4406,14 @@ Checking test 148 datm_cdeps_lnd_gswp3_rst 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.709982 - 0: The maximum resident set size (KB) = 259332 + 0: The total amount of wall time = 12.579523 + 0: The maximum resident set size (KB) = 270964 Test 148 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_atmlnd_sbs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_p8_atmlnd_sbs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_atmlnd_sbs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_p8_atmlnd_sbs Checking test 149 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4498,14 +4498,14 @@ Checking test 149 control_p8_atmlnd_sbs 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 = 204.149442 - 0: The maximum resident set size (KB) = 1617924 + 0: The total amount of wall time = 206.029420 + 0: The maximum resident set size (KB) = 1567876 Test 149 control_p8_atmlnd_sbs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_atmwav -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/control_atmwav +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_atmwav +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_atmwav Checking test 150 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4549,14 +4549,14 @@ Checking test 150 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 88.110104 - 0: The maximum resident set size (KB) = 634400 + 0: The total amount of wall time = 91.820514 + 0: The maximum resident set size (KB) = 662936 Test 150 control_atmwav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/atmaero_control_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/atmaero_control_p8 Checking test 151 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4600,14 +4600,14 @@ Checking test 151 atmaero_control_p8 results .... Comparing 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.338464 - 0: The maximum resident set size (KB) = 2977076 + 0: The total amount of wall time = 234.432876 + 0: The maximum resident set size (KB) = 2977492 Test 151 atmaero_control_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8_rad -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/atmaero_control_p8_rad +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/atmaero_control_p8_rad Checking test 152 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4651,14 +4651,14 @@ Checking test 152 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 279.426392 - 0: The maximum resident set size (KB) = 3050152 + 0: The total amount of wall time = 299.760497 + 0: The maximum resident set size (KB) = 3046072 Test 152 atmaero_control_p8_rad PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8_rad_micro -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/atmaero_control_p8_rad_micro +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad_micro +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/atmaero_control_p8_rad_micro Checking test 153 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4702,14 +4702,14 @@ Checking test 153 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 283.711103 - 0: The maximum resident set size (KB) = 3058584 + 0: The total amount of wall time = 290.425035 + 0: The maximum resident set size (KB) = 3055224 Test 153 atmaero_control_p8_rad_micro PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_atmaq -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/regional_atmaq +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/regional_atmaq Checking test 154 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4725,14 +4725,14 @@ Checking test 154 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 580.980632 - 0: The maximum resident set size (KB) = 1571820 + 0: The total amount of wall time = 579.879275 + 0: The maximum resident set size (KB) = 1584244 Test 154 regional_atmaq PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_atmaq_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/regional_atmaq_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/regional_atmaq_debug Checking test 155 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4746,14 +4746,14 @@ Checking test 155 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1327.447188 - 0: The maximum resident set size (KB) = 1519296 + 0: The total amount of wall time = 1333.988149 + 0: The maximum resident set size (KB) = 1519516 Test 155 regional_atmaq_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_atmaq_faster -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_171548/regional_atmaq_faster +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq_faster +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/regional_atmaq_faster Checking test 156 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4769,12 +4769,12 @@ Checking test 156 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 548.782339 - 0: The maximum resident set size (KB) = 1394676 + 0: The total amount of wall time = 566.801868 + 0: The maximum resident set size (KB) = 1574588 Test 156 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Sat Mar 4 15:36:31 CST 2023 -Elapsed time: 01h:18m:57s. Have a nice day! +Wed Mar 8 20:38:32 CST 2023 +Elapsed time: 08h:05m:45s. Have a nice day! diff --git a/tests/RegressionTests_wcoss2.intel.log b/tests/RegressionTests_wcoss2.intel.log index 1adbe772155..7f67d42102b 100644 --- a/tests/RegressionTests_wcoss2.intel.log +++ b/tests/RegressionTests_wcoss2.intel.log @@ -1,34 +1,34 @@ -Tue Mar 7 16:58:43 UTC 2023 +Thu Mar 9 13:45:30 UTC 2023 Start Regression test -Compile 001 elapsed time 606 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 615 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 1059 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 590 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 005 elapsed time 1096 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 658 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 1599 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 008 elapsed time 1038 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 460 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 1390 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 791 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 1585 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 013 elapsed time 484 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 922 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 015 elapsed time 615 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 477 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 017 elapsed time 221 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 851 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 019 elapsed time 428 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 675 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 1064 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 022 elapsed time 929 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 447 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 024 elapsed time 214 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 025 elapsed time 515 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8_mixedmode -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/cpld_control_p8_mixedmode +Compile 001 elapsed time 860 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1117 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 658 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 1172 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 005 elapsed time 738 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 683 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 1274 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 679 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 998 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 447 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 645 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 347 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 562 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 014 elapsed time 1249 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 617 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 458 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 017 elapsed time 823 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 757 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 019 elapsed time 884 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 729 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 845 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 022 elapsed time 601 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 1021 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 024 elapsed time 222 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 025 elapsed time 769 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_mixedmode +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -93,14 +93,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 344.493806 -The maximum resident set size (KB) = 2954468 +The total amount of wall time = 362.142103 +The maximum resident set size (KB) = 2952680 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/cpld_control_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/cpld_control_p8 Checking test 002 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -165,14 +165,14 @@ Checking test 002 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 389.051981 -The maximum resident set size (KB) = 2983004 +The total amount of wall time = 392.241909 +The maximum resident set size (KB) = 2981036 Test 002 cpld_control_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/cpld_restart_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/cpld_restart_p8 Checking test 003 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -225,14 +225,14 @@ Checking test 003 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 232.514891 -The maximum resident set size (KB) = 2866428 +The total amount of wall time = 241.240218 +The maximum resident set size (KB) = 2868812 Test 003 cpld_restart_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/cpld_2threads_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/cpld_2threads_p8 Checking test 004 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -285,14 +285,14 @@ Checking test 004 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 376.846506 -The maximum resident set size (KB) = 3286084 +The total amount of wall time = 378.339197 +The maximum resident set size (KB) = 3283560 Test 004 cpld_2threads_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/cpld_decomp_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/cpld_decomp_p8 Checking test 005 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -345,14 +345,14 @@ Checking test 005 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 382.120558 -The maximum resident set size (KB) = 2977580 +The total amount of wall time = 423.706431 +The maximum resident set size (KB) = 2979020 Test 005 cpld_decomp_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/cpld_mpi_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/cpld_mpi_p8 Checking test 006 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -405,14 +405,14 @@ Checking test 006 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 322.449895 -The maximum resident set size (KB) = 2911612 +The total amount of wall time = 324.354572 +The maximum resident set size (KB) = 2907316 Test 006 cpld_mpi_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_ciceC_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/cpld_control_ciceC_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_ciceC_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/cpld_control_ciceC_p8 Checking test 007 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -477,14 +477,14 @@ Checking test 007 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 388.873476 -The maximum resident set size (KB) = 2983128 +The total amount of wall time = 402.469785 +The maximum resident set size (KB) = 2980864 Test 007 cpld_control_ciceC_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_bmark_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/cpld_bmark_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_bmark_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/cpld_bmark_p8 Checking test 008 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -532,14 +532,14 @@ Checking test 008 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 942.125104 -The maximum resident set size (KB) = 3918928 +The total amount of wall time = 963.019940 +The maximum resident set size (KB) = 3919688 Test 008 cpld_bmark_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_bmark_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/cpld_restart_bmark_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_bmark_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/cpld_restart_bmark_p8 Checking test 009 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -587,14 +587,14 @@ Checking test 009 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 643.651138 -The maximum resident set size (KB) = 3892296 +The total amount of wall time = 870.981410 +The maximum resident set size (KB) = 3892556 Test 009 cpld_restart_bmark_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/cpld_control_noaero_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/cpld_control_noaero_p8 Checking test 010 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -658,14 +658,14 @@ Checking test 010 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 284.669803 -The maximum resident set size (KB) = 1573776 +The total amount of wall time = 303.115183 +The maximum resident set size (KB) = 1571440 Test 010 cpld_control_noaero_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/cpld_control_nowave_noaero_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c96_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/cpld_control_nowave_noaero_p8 Checking test 011 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -727,14 +727,14 @@ Checking test 011 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 301.897780 -The maximum resident set size (KB) = 1632368 +The total amount of wall time = 307.101819 +The maximum resident set size (KB) = 1630984 Test 011 cpld_control_nowave_noaero_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/cpld_control_noaero_p8_agrid +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8_agrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/cpld_control_noaero_p8_agrid Checking test 012 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -796,14 +796,14 @@ Checking test 012 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 308.521694 -The maximum resident set size (KB) = 1617004 +The total amount of wall time = 339.804584 +The maximum resident set size (KB) = 1629472 Test 012 cpld_control_noaero_p8_agrid PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/cpld_control_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/cpld_control_c48 Checking test 013 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -853,14 +853,14 @@ Checking test 013 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 436.760277 -The maximum resident set size (KB) = 2634048 +The total amount of wall time = 439.904798 +The maximum resident set size (KB) = 2632224 Test 013 cpld_control_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/cpld_warmstart_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/cpld_warmstart_c48 Checking test 014 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -910,14 +910,14 @@ Checking test 014 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 125.172991 -The maximum resident set size (KB) = 2652480 +The total amount of wall time = 144.523729 +The maximum resident set size (KB) = 2656924 Test 014 cpld_warmstart_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/cpld_restart_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/cpld_restart_c48 Checking test 015 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -967,14 +967,14 @@ Checking test 015 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 73.721754 -The maximum resident set size (KB) = 2063804 +The total amount of wall time = 71.903785 +The maximum resident set size (KB) = 2065100 Test 015 cpld_restart_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/cpld_control_p8_faster +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/cpld_control_p8_faster Checking test 016 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1039,14 +1039,14 @@ Checking test 016 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 381.954110 -The maximum resident set size (KB) = 2978712 +The total amount of wall time = 424.862194 +The maximum resident set size (KB) = 2983928 Test 016 cpld_control_p8_faster PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_CubedSphereGrid +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_CubedSphereGrid Checking test 017 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1073,14 +1073,14 @@ Checking test 017 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 130.035575 -The maximum resident set size (KB) = 517264 +The total amount of wall time = 138.786213 +The maximum resident set size (KB) = 515440 Test 017 control_CubedSphereGrid PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_latlon -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_latlon +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_latlon +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_latlon Checking test 018 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1091,14 +1091,14 @@ Checking test 018 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 133.075553 -The maximum resident set size (KB) = 516560 +The total amount of wall time = 132.898635 +The maximum resident set size (KB) = 523136 Test 018 control_latlon PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_wrtGauss_netcdf_parallel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_wrtGauss_netcdf_parallel Checking test 019 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1109,14 +1109,14 @@ Checking test 019 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 134.497729 -The maximum resident set size (KB) = 517232 +The total amount of wall time = 135.525354 +The maximum resident set size (KB) = 520720 Test 019 control_wrtGauss_netcdf_parallel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_c48 Checking test 020 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1155,14 +1155,14 @@ Checking test 020 control_c48 results .... 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.654653 -The maximum resident set size (KB) = 674052 +The total amount of wall time = 325.319327 +The maximum resident set size (KB) = 675520 Test 020 control_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c192 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_c192 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c192 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_c192 Checking test 021 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1173,14 +1173,14 @@ Checking test 021 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 528.704729 -The maximum resident set size (KB) = 614260 +The total amount of wall time = 571.266956 +The maximum resident set size (KB) = 618204 Test 021 control_c192 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c384 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_c384 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_c384 Checking test 022 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1191,14 +1191,14 @@ Checking test 022 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 573.118698 -The maximum resident set size (KB) = 910072 +The total amount of wall time = 576.326316 +The maximum resident set size (KB) = 907048 Test 022 control_c384 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c384gdas -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_c384gdas +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384gdas +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_c384gdas Checking test 023 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1241,14 +1241,14 @@ Checking test 023 control_c384gdas 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 = 505.188199 -The maximum resident set size (KB) = 1045880 +The total amount of wall time = 515.405312 +The maximum resident set size (KB) = 1043084 Test 023 control_c384gdas PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_stochy +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_stochy Checking test 024 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1259,28 +1259,28 @@ Checking test 024 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 88.536342 -The maximum resident set size (KB) = 519828 +The total amount of wall time = 90.625576 +The maximum resident set size (KB) = 518180 Test 024 control_stochy PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_stochy_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_stochy_restart Checking test 025 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 52.801461 -The maximum resident set size (KB) = 293872 +The total amount of wall time = 49.595628 +The maximum resident set size (KB) = 288260 Test 025 control_stochy_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_lndp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_lndp Checking test 026 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1291,14 +1291,14 @@ Checking test 026 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 82.969701 -The maximum resident set size (KB) = 519372 +The total amount of wall time = 86.571039 +The maximum resident set size (KB) = 522568 Test 026 control_lndp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_iovr4 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_iovr4 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr4 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_iovr4 Checking test 027 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1313,14 +1313,14 @@ Checking test 027 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 136.356600 -The maximum resident set size (KB) = 516404 +The total amount of wall time = 137.539233 +The maximum resident set size (KB) = 516180 Test 027 control_iovr4 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_iovr5 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_iovr5 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr5 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_iovr5 Checking test 028 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1335,14 +1335,14 @@ Checking test 028 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 137.720579 -The maximum resident set size (KB) = 518996 +The total amount of wall time = 137.946646 +The maximum resident set size (KB) = 517988 Test 028 control_iovr5 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_p8 Checking test 029 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1389,14 +1389,14 @@ Checking test 029 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 181.941346 -The maximum resident set size (KB) = 1492792 +The total amount of wall time = 188.958497 +The maximum resident set size (KB) = 1487108 Test 029 control_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_p8_lndp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_p8_lndp Checking test 030 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1415,14 +1415,14 @@ Checking test 030 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 322.616891 -The maximum resident set size (KB) = 1487572 +The total amount of wall time = 329.002509 +The maximum resident set size (KB) = 1492884 Test 030 control_p8_lndp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_restart_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_restart_p8 Checking test 031 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1461,14 +1461,14 @@ Checking test 031 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 101.802174 -The maximum resident set size (KB) = 659428 +The total amount of wall time = 101.240753 +The maximum resident set size (KB) = 662780 Test 031 control_restart_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_decomp_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_decomp_p8 Checking test 032 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1511,14 +1511,14 @@ Checking test 032 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 183.642698 -The maximum resident set size (KB) = 1483672 +The total amount of wall time = 191.159701 +The maximum resident set size (KB) = 1479388 Test 032 control_decomp_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_2threads_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_2threads_p8 Checking test 033 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1561,14 +1561,14 @@ Checking test 033 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 163.713859 -The maximum resident set size (KB) = 1575572 +The total amount of wall time = 166.584832 +The maximum resident set size (KB) = 1567232 Test 033 control_2threads_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_rrtmgp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_p8_rrtmgp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_rrtmgp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_p8_rrtmgp Checking test 034 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1615,14 +1615,14 @@ Checking test 034 control_p8_rrtmgp results .... 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.705784 -The maximum resident set size (KB) = 1556808 +The total amount of wall time = 238.953402 +The maximum resident set size (KB) = 1555660 Test 034 control_p8_rrtmgp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/merra2_thompson -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/merra2_thompson +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/merra2_thompson +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/merra2_thompson Checking test 035 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1669,14 +1669,14 @@ Checking test 035 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 207.851683 -The maximum resident set size (KB) = 1493924 +The total amount of wall time = 209.638069 +The maximum resident set size (KB) = 1494612 Test 035 merra2_thompson PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/regional_control +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/regional_control Checking test 036 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1687,28 +1687,28 @@ Checking test 036 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 290.564240 -The maximum resident set size (KB) = 652280 +The total amount of wall time = 296.692151 +The maximum resident set size (KB) = 655920 Test 036 regional_control PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/regional_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/regional_restart Checking test 037 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 158.908445 -The maximum resident set size (KB) = 652420 +The total amount of wall time = 159.969823 +The maximum resident set size (KB) = 653436 Test 037 regional_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/regional_decomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/regional_decomp Checking test 038 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1719,14 +1719,14 @@ Checking test 038 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 308.115452 -The maximum resident set size (KB) = 655204 +The total amount of wall time = 328.084744 +The maximum resident set size (KB) = 654592 Test 038 regional_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/regional_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/regional_2threads Checking test 039 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1737,14 +1737,14 @@ Checking test 039 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 180.337232 -The maximum resident set size (KB) = 695496 +The total amount of wall time = 188.230872 +The maximum resident set size (KB) = 696824 Test 039 regional_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_noquilt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/regional_noquilt +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_noquilt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/regional_noquilt Checking test 040 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1752,28 +1752,28 @@ Checking test 040 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 315.008684 -The maximum resident set size (KB) = 647952 +The total amount of wall time = 316.879531 +The maximum resident set size (KB) = 644896 Test 040 regional_noquilt PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/regional_netcdf_parallel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/regional_netcdf_parallel Checking test 041 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK -The total amount of wall time = 289.439342 -The maximum resident set size (KB) = 653992 +The total amount of wall time = 292.242911 +The maximum resident set size (KB) = 652476 Test 041 regional_netcdf_parallel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/regional_2dwrtdecomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/regional_2dwrtdecomp Checking test 042 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1784,14 +1784,14 @@ Checking test 042 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 292.758974 -The maximum resident set size (KB) = 651860 +The total amount of wall time = 292.660805 +The maximum resident set size (KB) = 656328 Test 042 regional_2dwrtdecomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/fv3_regional_wofs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/regional_wofs +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/fv3_regional_wofs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/regional_wofs Checking test 043 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1802,14 +1802,14 @@ Checking test 043 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 363.998814 -The maximum resident set size (KB) = 342000 +The total amount of wall time = 364.628122 +The maximum resident set size (KB) = 343764 Test 043 regional_wofs PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rap_control +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rap_control Checking test 044 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1856,14 +1856,14 @@ Checking test 044 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 420.364243 -The maximum resident set size (KB) = 894456 +The total amount of wall time = 424.826594 +The maximum resident set size (KB) = 894828 Test 044 rap_control PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/regional_spp_sppt_shum_skeb +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/regional_spp_sppt_shum_skeb Checking test 045 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -1874,14 +1874,14 @@ Checking test 045 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 288.400367 -The maximum resident set size (KB) = 985844 +The total amount of wall time = 297.982772 +The maximum resident set size (KB) = 988780 Test 045 regional_spp_sppt_shum_skeb PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rap_decomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rap_decomp Checking test 046 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1928,14 +1928,14 @@ Checking test 046 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 434.464671 -The maximum resident set size (KB) = 892812 +The total amount of wall time = 437.867597 +The maximum resident set size (KB) = 894580 Test 046 rap_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rap_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rap_2threads Checking test 047 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1982,14 +1982,14 @@ Checking test 047 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 393.490180 -The maximum resident set size (KB) = 964688 +The total amount of wall time = 398.916992 +The maximum resident set size (KB) = 966752 Test 047 rap_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rap_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rap_restart Checking test 048 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2028,14 +2028,14 @@ Checking test 048 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 214.538917 -The maximum resident set size (KB) = 647060 +The total amount of wall time = 215.058449 +The maximum resident set size (KB) = 644872 Test 048 rap_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rap_sfcdiff +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rap_sfcdiff Checking test 049 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2082,14 +2082,14 @@ Checking test 049 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 427.889917 -The maximum resident set size (KB) = 893404 +The total amount of wall time = 418.650350 +The maximum resident set size (KB) = 895308 Test 049 rap_sfcdiff PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rap_sfcdiff_decomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rap_sfcdiff_decomp Checking test 050 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2136,14 +2136,14 @@ Checking test 050 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 433.213806 -The maximum resident set size (KB) = 891268 +The total amount of wall time = 474.194830 +The maximum resident set size (KB) = 893624 Test 050 rap_sfcdiff_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rap_sfcdiff_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rap_sfcdiff_restart Checking test 051 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2182,14 +2182,14 @@ Checking test 051 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 309.437079 -The maximum resident set size (KB) = 642564 +The total amount of wall time = 311.379513 +The maximum resident set size (KB) = 639504 Test 051 rap_sfcdiff_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/hrrr_control +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/hrrr_control Checking test 052 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2236,14 +2236,14 @@ Checking test 052 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 400.568029 -The maximum resident set size (KB) = 895120 +The total amount of wall time = 406.911958 +The maximum resident set size (KB) = 894756 Test 052 hrrr_control PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/hrrr_control_decomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/hrrr_control_decomp Checking test 053 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2290,14 +2290,14 @@ Checking test 053 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 414.941659 -The maximum resident set size (KB) = 891584 +The total amount of wall time = 418.374669 +The maximum resident set size (KB) = 890156 Test 053 hrrr_control_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/hrrr_control_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/hrrr_control_2threads Checking test 054 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2344,14 +2344,14 @@ Checking test 054 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 371.017435 -The maximum resident set size (KB) = 960372 +The total amount of wall time = 378.560499 +The maximum resident set size (KB) = 960312 Test 054 hrrr_control_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/hrrr_control_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/hrrr_control_restart Checking test 055 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2390,14 +2390,14 @@ Checking test 055 hrrr_control_restart results .... 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.043580 -The maximum resident set size (KB) = 645364 +The total amount of wall time = 305.399715 +The maximum resident set size (KB) = 639732 Test 055 hrrr_control_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1beta -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rrfs_v1beta +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rrfs_v1beta Checking test 056 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2444,14 +2444,14 @@ Checking test 056 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 412.981496 -The maximum resident set size (KB) = 888104 +The total amount of wall time = 417.117115 +The maximum resident set size (KB) = 884920 Test 056 rrfs_v1beta PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1nssl -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rrfs_v1nssl +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rrfs_v1nssl Checking test 057 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2466,14 +2466,14 @@ Checking test 057 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 474.330469 -The maximum resident set size (KB) = 575880 +The total amount of wall time = 497.803081 +The maximum resident set size (KB) = 578224 Test 057 rrfs_v1nssl PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rrfs_v1nssl_nohailnoccn +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rrfs_v1nssl_nohailnoccn Checking test 058 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2488,14 +2488,14 @@ Checking test 058 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 463.231017 -The maximum resident set size (KB) = 569016 +The total amount of wall time = 468.647715 +The maximum resident set size (KB) = 569132 Test 058 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rrfs_conus13km_hrrr_warm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rrfs_conus13km_hrrr_warm Checking test 059 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2504,14 +2504,14 @@ Checking test 059 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 118.022148 -The maximum resident set size (KB) = 761720 +The total amount of wall time = 121.525110 +The maximum resident set size (KB) = 758884 Test 059 rrfs_conus13km_hrrr_warm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rrfs_smoke_conus13km_hrrr_warm Checking test 060 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2520,14 +2520,14 @@ Checking test 060 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 128.626946 -The maximum resident set size (KB) = 777112 +The total amount of wall time = 130.309990 +The maximum resident set size (KB) = 776132 Test 060 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rrfs_conus13km_radar_tten_warm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rrfs_conus13km_radar_tten_warm Checking test 061 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2536,14 +2536,14 @@ Checking test 061 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 120.071280 -The maximum resident set size (KB) = 767260 +The total amount of wall time = 120.959888 +The maximum resident set size (KB) = 765848 Test 061 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rrfs_conus13km_hrrr_warm_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rrfs_conus13km_hrrr_warm_2threads Checking test 062 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2552,14 +2552,14 @@ Checking test 062 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 86.619652 -The maximum resident set size (KB) = 758488 +The total amount of wall time = 98.105690 +The maximum resident set size (KB) = 760852 Test 062 rrfs_conus13km_hrrr_warm_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rrfs_conus13km_radar_tten_warm_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rrfs_conus13km_radar_tten_warm_2threads Checking test 063 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2568,14 +2568,14 @@ Checking test 063 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 88.355956 -The maximum resident set size (KB) = 767024 +The total amount of wall time = 89.113195 +The maximum resident set size (KB) = 763948 Test 063 rrfs_conus13km_radar_tten_warm_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmg -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_csawmg +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_csawmg Checking test 064 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2586,14 +2586,14 @@ Checking test 064 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 348.371795 -The maximum resident set size (KB) = 589876 +The total amount of wall time = 349.485483 +The maximum resident set size (KB) = 587684 Test 064 control_csawmg PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmgt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_csawmgt +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_csawmgt Checking test 065 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2604,14 +2604,14 @@ Checking test 065 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 345.181937 -The maximum resident set size (KB) = 589752 +The total amount of wall time = 349.279571 +The maximum resident set size (KB) = 585020 Test 065 control_csawmgt PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_ras -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_ras +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_ras Checking test 066 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2622,26 +2622,26 @@ Checking test 066 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 180.385662 -The maximum resident set size (KB) = 550952 +The total amount of wall time = 188.129901 +The maximum resident set size (KB) = 548448 Test 066 control_ras PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wam -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_wam +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_wam Checking test 067 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 118.057277 -The maximum resident set size (KB) = 271968 +The total amount of wall time = 126.073613 +The maximum resident set size (KB) = 288468 Test 067 control_wam PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_p8_faster +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_p8_faster Checking test 068 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2688,14 +2688,14 @@ Checking test 068 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 189.137979 -The maximum resident set size (KB) = 1486568 +The total amount of wall time = 175.941971 +The maximum resident set size (KB) = 1486632 Test 068 control_p8_faster PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/regional_control_faster +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/regional_control_faster Checking test 069 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2706,42 +2706,42 @@ Checking test 069 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 284.982353 -The maximum resident set size (KB) = 650192 +The total amount of wall time = 291.812096 +The maximum resident set size (KB) = 653692 Test 069 regional_control_faster PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rrfs_conus13km_hrrr_warm_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rrfs_conus13km_hrrr_warm_debug Checking test 070 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 782.255786 -The maximum resident set size (KB) = 800316 +The total amount of wall time = 792.399273 +The maximum resident set size (KB) = 789912 Test 070 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rrfs_conus13km_radar_tten_warm_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rrfs_conus13km_radar_tten_warm_debug Checking test 071 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 783.568167 -The maximum resident set size (KB) = 797596 +The total amount of wall time = 785.993029 +The maximum resident set size (KB) = 799308 Test 071 rrfs_conus13km_radar_tten_warm_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_CubedSphereGrid_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_CubedSphereGrid_debug Checking test 072 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2768,334 +2768,334 @@ Checking test 072 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 171.142521 -The maximum resident set size (KB) = 678788 +The total amount of wall time = 171.233300 +The maximum resident set size (KB) = 677552 Test 072 control_CubedSphereGrid_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_wrtGauss_netcdf_parallel_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_wrtGauss_netcdf_parallel_debug Checking test 073 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 160.519596 -The maximum resident set size (KB) = 684092 +The total amount of wall time = 161.784451 +The maximum resident set size (KB) = 681440 Test 073 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_stochy_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_stochy_debug Checking test 074 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 181.769784 -The maximum resident set size (KB) = 687980 +The total amount of wall time = 181.788495 +The maximum resident set size (KB) = 685396 Test 074 control_stochy_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_lndp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_lndp_debug Checking test 075 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 162.555719 -The maximum resident set size (KB) = 686012 +The total amount of wall time = 162.289798 +The maximum resident set size (KB) = 687700 Test 075 control_lndp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmg_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_csawmg_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_csawmg_debug Checking test 076 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 260.530499 -The maximum resident set size (KB) = 721420 +The total amount of wall time = 260.056146 +The maximum resident set size (KB) = 721232 Test 076 control_csawmg_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmgt_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_csawmgt_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_csawmgt_debug Checking test 077 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 256.681782 -The maximum resident set size (KB) = 724012 +The total amount of wall time = 273.570423 +The maximum resident set size (KB) = 721488 Test 077 control_csawmgt_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_ras_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_ras_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_ras_debug Checking test 078 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 164.151230 -The maximum resident set size (KB) = 697580 +The total amount of wall time = 166.579705 +The maximum resident set size (KB) = 697128 Test 078 control_ras_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_diag_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_diag_debug Checking test 079 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 167.509028 -The maximum resident set size (KB) = 741736 +The total amount of wall time = 185.777469 +The maximum resident set size (KB) = 742480 Test 079 control_diag_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_debug_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_debug_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_debug_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_debug_p8 Checking test 080 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 189.384891 -The maximum resident set size (KB) = 1510084 +The total amount of wall time = 195.669287 +The maximum resident set size (KB) = 1505544 Test 080 control_debug_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/regional_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/regional_debug Checking test 081 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1055.418814 -The maximum resident set size (KB) = 677356 +The total amount of wall time = 1058.759880 +The maximum resident set size (KB) = 679444 Test 081 regional_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rap_control_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rap_control_debug Checking test 082 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 301.941578 -The maximum resident set size (KB) = 1056200 +The total amount of wall time = 303.438424 +The maximum resident set size (KB) = 1058984 Test 082 rap_control_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/hrrr_control_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/hrrr_control_debug Checking test 083 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 296.086555 -The maximum resident set size (KB) = 1055588 +The total amount of wall time = 310.908039 +The maximum resident set size (KB) = 1059008 Test 083 hrrr_control_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rap_unified_drag_suite_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rap_unified_drag_suite_debug Checking test 084 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 302.236884 -The maximum resident set size (KB) = 1059528 +The total amount of wall time = 303.975027 +The maximum resident set size (KB) = 1057236 Test 084 rap_unified_drag_suite_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rap_diag_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rap_diag_debug Checking test 085 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 313.123139 +The total amount of wall time = 330.205386 The maximum resident set size (KB) = 1139616 Test 085 rap_diag_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rap_cires_ugwp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rap_cires_ugwp_debug Checking test 086 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 308.781700 -The maximum resident set size (KB) = 1052492 +The total amount of wall time = 322.669890 +The maximum resident set size (KB) = 1056584 Test 086 rap_cires_ugwp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rap_unified_ugwp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rap_unified_ugwp_debug Checking test 087 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 308.069396 -The maximum resident set size (KB) = 1055888 +The total amount of wall time = 318.529900 +The maximum resident set size (KB) = 1058888 Test 087 rap_unified_ugwp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rap_lndp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rap_lndp_debug Checking test 088 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 303.803065 -The maximum resident set size (KB) = 1059724 +The total amount of wall time = 306.866122 +The maximum resident set size (KB) = 1060316 Test 088 rap_lndp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_flake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rap_flake_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_flake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rap_flake_debug Checking test 089 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.939274 -The maximum resident set size (KB) = 1057580 +The total amount of wall time = 303.825175 +The maximum resident set size (KB) = 1058928 Test 089 rap_flake_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_progcld_thompson_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rap_progcld_thompson_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_progcld_thompson_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rap_progcld_thompson_debug Checking test 090 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 301.684827 -The maximum resident set size (KB) = 1057380 +The total amount of wall time = 318.372417 +The maximum resident set size (KB) = 1057280 Test 090 rap_progcld_thompson_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_noah_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rap_noah_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rap_noah_debug Checking test 091 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 295.332259 -The maximum resident set size (KB) = 1056836 +The total amount of wall time = 299.163525 +The maximum resident set size (KB) = 1052488 Test 091 rap_noah_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rap_sfcdiff_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rap_sfcdiff_debug Checking test 092 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 301.621839 -The maximum resident set size (KB) = 1054244 +The total amount of wall time = 303.672683 +The maximum resident set size (KB) = 1054888 Test 092 rap_sfcdiff_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rap_noah_sfcdiff_cires_ugwp_debug Checking test 093 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 493.509148 -The maximum resident set size (KB) = 1055260 +The total amount of wall time = 507.765121 +The maximum resident set size (KB) = 1057864 Test 093 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1beta_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rrfs_v1beta_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rrfs_v1beta_debug Checking test 094 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 296.772419 -The maximum resident set size (KB) = 1053728 +The total amount of wall time = 309.518434 +The maximum resident set size (KB) = 1055036 Test 094 rrfs_v1beta_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wam_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_wam_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_wam_debug Checking test 095 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 296.648035 -The maximum resident set size (KB) = 304064 +The total amount of wall time = 297.484537 +The maximum resident set size (KB) = 304380 Test 095 control_wam_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 096 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3106,14 +3106,14 @@ Checking test 096 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 271.910449 -The maximum resident set size (KB) = 878996 +The total amount of wall time = 276.597281 +The maximum resident set size (KB) = 878356 Test 096 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rap_control_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rap_control_dyn32_phy32 Checking test 097 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3160,14 +3160,14 @@ Checking test 097 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 342.787715 -The maximum resident set size (KB) = 781324 +The total amount of wall time = 342.896029 +The maximum resident set size (KB) = 774232 Test 097 rap_control_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/hrrr_control_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/hrrr_control_dyn32_phy32 Checking test 098 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3214,14 +3214,14 @@ Checking test 098 hrrr_control_dyn32_phy32 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 = 183.626331 -The maximum resident set size (KB) = 771428 +The total amount of wall time = 199.429914 +The maximum resident set size (KB) = 773384 Test 098 hrrr_control_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rap_2threads_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rap_2threads_dyn32_phy32 Checking test 099 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3268,14 +3268,14 @@ Checking test 099 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 320.271341 -The maximum resident set size (KB) = 828460 +The total amount of wall time = 321.834737 +The maximum resident set size (KB) = 829788 Test 099 rap_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/hrrr_control_2threads_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/hrrr_control_2threads_dyn32_phy32 Checking test 100 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3322,14 +3322,14 @@ Checking test 100 hrrr_control_2threads_dyn32_phy32 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 = 173.945000 -The maximum resident set size (KB) = 828552 +The total amount of wall time = 177.773517 +The maximum resident set size (KB) = 826604 Test 100 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/hrrr_control_decomp_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/hrrr_control_decomp_dyn32_phy32 Checking test 101 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3376,14 +3376,14 @@ Checking test 101 hrrr_control_decomp_dyn32_phy32 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 = 193.393425 -The maximum resident set size (KB) = 773788 +The total amount of wall time = 193.330273 +The maximum resident set size (KB) = 773584 Test 101 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rap_restart_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rap_restart_dyn32_phy32 Checking test 102 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3422,14 +3422,14 @@ Checking test 102 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 255.490066 -The maximum resident set size (KB) = 612200 +The total amount of wall time = 258.563842 +The maximum resident set size (KB) = 614444 Test 102 rap_restart_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/hrrr_control_restart_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/hrrr_control_restart_dyn32_phy32 Checking test 103 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3468,14 +3468,14 @@ Checking test 103 hrrr_control_restart_dyn32_phy32 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 = 94.986389 -The maximum resident set size (KB) = 606332 +The total amount of wall time = 95.534788 +The maximum resident set size (KB) = 607808 Test 103 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rap_control_dyn64_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rap_control_dyn64_phy32 Checking test 104 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3522,81 +3522,81 @@ Checking test 104 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -The total amount of wall time = 231.532348 -The maximum resident set size (KB) = 798772 +The total amount of wall time = 235.585767 +The maximum resident set size (KB) = 796464 Test 104 rap_control_dyn64_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rap_control_debug_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rap_control_debug_dyn32_phy32 Checking test 105 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 293.809453 -The maximum resident set size (KB) = 945868 +The total amount of wall time = 294.966539 +The maximum resident set size (KB) = 940180 Test 105 rap_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/hrrr_control_debug_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/hrrr_control_debug_dyn32_phy32 Checking test 106 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 289.092371 -The maximum resident set size (KB) = 938704 +The total amount of wall time = 292.630707 +The maximum resident set size (KB) = 938576 Test 106 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/rap_control_dyn64_phy32_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rap_control_dyn64_phy32_debug Checking test 107 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 296.881966 -The maximum resident set size (KB) = 955732 +The total amount of wall time = 307.641869 +The maximum resident set size (KB) = 960344 Test 107 rap_control_dyn64_phy32_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/hafs_regional_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/hafs_regional_atm Checking test 108 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 271.771253 -The maximum resident set size (KB) = 822924 +The total amount of wall time = 272.372791 +The maximum resident set size (KB) = 825852 Test 108 hafs_regional_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/hafs_regional_atm_thompson_gfdlsf +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/hafs_regional_atm_thompson_gfdlsf Checking test 109 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 325.844347 -The maximum resident set size (KB) = 1183584 +The total amount of wall time = 329.590925 +The maximum resident set size (KB) = 1183200 Test 109 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/hafs_regional_atm_ocn +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/hafs_regional_atm_ocn Checking test 110 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3605,14 +3605,14 @@ Checking test 110 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 391.068462 -The maximum resident set size (KB) = 853692 +The total amount of wall time = 392.844703 +The maximum resident set size (KB) = 852584 Test 110 hafs_regional_atm_ocn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/hafs_regional_atm_wav +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/hafs_regional_atm_wav Checking test 111 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3621,14 +3621,14 @@ Checking test 111 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 704.447204 -The maximum resident set size (KB) = 887596 +The total amount of wall time = 709.574259 +The maximum resident set size (KB) = 885320 Test 111 hafs_regional_atm_wav PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/hafs_regional_atm_ocn_wav +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/hafs_regional_atm_ocn_wav Checking test 112 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3639,28 +3639,28 @@ Checking test 112 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 898.914557 -The maximum resident set size (KB) = 908876 +The total amount of wall time = 902.135824 +The maximum resident set size (KB) = 907288 Test 112 hafs_regional_atm_ocn_wav PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/hafs_regional_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/hafs_regional_1nest_atm Checking test 113 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 329.590736 -The maximum resident set size (KB) = 390104 +The total amount of wall time = 338.132464 +The maximum resident set size (KB) = 391636 Test 113 hafs_regional_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/hafs_regional_telescopic_2nests_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/hafs_regional_telescopic_2nests_atm Checking test 114 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3669,28 +3669,28 @@ Checking test 114 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 401.362862 -The maximum resident set size (KB) = 415032 +The total amount of wall time = 403.578727 +The maximum resident set size (KB) = 411680 Test 114 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/hafs_global_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/hafs_global_1nest_atm Checking test 115 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 166.277772 -The maximum resident set size (KB) = 287108 +The total amount of wall time = 168.498354 +The maximum resident set size (KB) = 271616 Test 115 hafs_global_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_multiple_4nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/hafs_global_multiple_4nests_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_multiple_4nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/hafs_global_multiple_4nests_atm Checking test 116 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3708,14 +3708,14 @@ Checking test 116 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -The total amount of wall time = 488.986741 -The maximum resident set size (KB) = 340128 +The total amount of wall time = 519.590313 +The maximum resident set size (KB) = 341336 Test 116 hafs_global_multiple_4nests_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/hafs_regional_specified_moving_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/hafs_regional_specified_moving_1nest_atm Checking test 117 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3724,28 +3724,28 @@ Checking test 117 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 214.354678 -The maximum resident set size (KB) = 402788 +The total amount of wall time = 225.544434 +The maximum resident set size (KB) = 401824 Test 117 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/hafs_regional_storm_following_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/hafs_regional_storm_following_1nest_atm Checking test 118 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 220.957298 -The maximum resident set size (KB) = 401088 +The total amount of wall time = 204.127404 +The maximum resident set size (KB) = 404028 Test 118 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/hafs_regional_storm_following_1nest_atm_ocn Checking test 119 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3754,42 +3754,42 @@ Checking test 119 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 243.415431 -The maximum resident set size (KB) = 453356 +The total amount of wall time = 246.418021 +The maximum resident set size (KB) = 451944 Test 119 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/hafs_global_storm_following_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/hafs_global_storm_following_1nest_atm Checking test 120 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 79.954664 -The maximum resident set size (KB) = 288364 +The total amount of wall time = 81.008409 +The maximum resident set size (KB) = 283864 Test 120 hafs_global_storm_following_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 121 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 802.791059 -The maximum resident set size (KB) = 484972 +The total amount of wall time = 807.407225 +The maximum resident set size (KB) = 482896 Test 121 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 122 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3800,14 +3800,14 @@ Checking test 122 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -The total amount of wall time = 521.524622 -The maximum resident set size (KB) = 523560 +The total amount of wall time = 531.936656 +The maximum resident set size (KB) = 524848 Test 122 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_atmlnd_sbs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/control_p8_atmlnd_sbs +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_atmlnd_sbs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_p8_atmlnd_sbs Checking test 123 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3892,14 +3892,14 @@ Checking test 123 control_p8_atmlnd_sbs 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 = 237.244416 -The maximum resident set size (KB) = 1540500 +The total amount of wall time = 254.942396 +The maximum resident set size (KB) = 1535596 Test 123 control_p8_atmlnd_sbs PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/atmaero_control_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/atmaero_control_p8 Checking test 124 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3943,14 +3943,14 @@ Checking test 124 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 246.330369 -The maximum resident set size (KB) = 2817048 +The total amount of wall time = 249.866525 +The maximum resident set size (KB) = 2819136 Test 124 atmaero_control_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8_rad -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/atmaero_control_p8_rad +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/atmaero_control_p8_rad Checking test 125 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3994,14 +3994,14 @@ Checking test 125 atmaero_control_p8_rad results .... 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.503758 -The maximum resident set size (KB) = 2880708 +The total amount of wall time = 286.698504 +The maximum resident set size (KB) = 2881656 Test 125 atmaero_control_p8_rad PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/atmaero_control_p8_rad_micro +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad_micro +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/atmaero_control_p8_rad_micro Checking test 126 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4045,14 +4045,14 @@ Checking test 126 atmaero_control_p8_rad_micro results .... 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.095461 -The maximum resident set size (KB) = 2889964 +The total amount of wall time = 297.702818 +The maximum resident set size (KB) = 2886924 Test 126 atmaero_control_p8_rad_micro PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_atmaq -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/regional_atmaq +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/regional_atmaq Checking test 127 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4068,14 +4068,14 @@ Checking test 127 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 663.801898 -The maximum resident set size (KB) = 1408852 +The total amount of wall time = 800.498110 +The maximum resident set size (KB) = 1409392 Test 127 regional_atmaq PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_atmaq_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/regional_atmaq_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/regional_atmaq_debug Checking test 128 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4089,14 +4089,14 @@ Checking test 128 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1427.533306 -The maximum resident set size (KB) = 1445536 +The total amount of wall time = 1488.272908 +The maximum resident set size (KB) = 1450268 Test 128 regional_atmaq_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_atmaq_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_163087/regional_atmaq_faster +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/regional_atmaq_faster Checking test 129 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4112,12 +4112,12 @@ Checking test 129 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 656.575411 -The maximum resident set size (KB) = 1403880 +The total amount of wall time = 716.217176 +The maximum resident set size (KB) = 1406128 Test 129 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Tue Mar 7 18:09:06 UTC 2023 -Elapsed time: 01h:10m:24s. Have a nice day! +Thu Mar 9 15:39:36 UTC 2023 +Elapsed time: 01h:54m:07s. Have a nice day! diff --git a/tests/compile.sh b/tests/compile.sh index 001a1cfea29..b858a7e0d9c 100755 --- a/tests/compile.sh +++ b/tests/compile.sh @@ -58,7 +58,7 @@ if [[ $MACHINE_ID == macosx.* ]] || [[ $MACHINE_ID == linux.* ]]; then else # Activate lua environment for gaea if [[ $MACHINE_ID == gaea.* ]] ; then - source /lustre/f2/pdata/esrl/gsd/contrib/lua-5.1.4.9/init/init_lmod.sh + source /lustre/f2/dev/role.epic/contrib/Lmod_init.sh fi # Load fv3 module module use $PATHTR/modulefiles @@ -132,13 +132,13 @@ bash -x ${PATHTR}/build.sh mv ${BUILD_DIR}/ufs_model ${PATHTR}/tests/${BUILD_NAME}.exe if [[ "${MAKE_OPT}" == "-DDEBUG=ON" ]]; then - if [[ $MACHINE_ID == gaea.* ]] || [[ $MACHINE_ID == linux.* ]]; then + if [[ $MACHINE_ID == linux.* ]]; then cp ${PATHTR}/modulefiles/ufs_${MACHINE_ID}_debug ${PATHTR}/tests/modules.${BUILD_NAME} else cp ${PATHTR}/modulefiles/ufs_${MACHINE_ID}_debug.lua ${PATHTR}/tests/modules.${BUILD_NAME}.lua fi else - if [[ $MACHINE_ID == gaea.* ]] || [[ $MACHINE_ID == linux.* ]]; then + if [[ $MACHINE_ID == linux.* ]]; then cp ${PATHTR}/modulefiles/ufs_${MACHINE_ID} ${PATHTR}/tests/modules.${BUILD_NAME} else cp ${PATHTR}/modulefiles/ufs_${MACHINE_ID}.lua ${PATHTR}/tests/modules.${BUILD_NAME}.lua diff --git a/tests/fv3_conf/fv3_qsub.IN_cheyenne b/tests/fv3_conf/fv3_qsub.IN_cheyenne index b87293ce8a4..38b0d6a8ff2 100644 --- a/tests/fv3_conf/fv3_qsub.IN_cheyenne +++ b/tests/fv3_conf/fv3_qsub.IN_cheyenne @@ -17,7 +17,7 @@ if [[ ! -d modulefiles ]]; then mkdir modulefiles mv *.lua modulefiles fi -module use modulefiles +module use $PWD/modulefiles module load modules.fv3 module list set -x diff --git a/tests/fv3_conf/fv3_qsub.IN_wcoss2 b/tests/fv3_conf/fv3_qsub.IN_wcoss2 index f3eb54297e1..db6b3f1d124 100644 --- a/tests/fv3_conf/fv3_qsub.IN_wcoss2 +++ b/tests/fv3_conf/fv3_qsub.IN_wcoss2 @@ -15,7 +15,7 @@ echo -n " $( date +%s )," > job_timestamp.txt cd $PBS_O_WORKDIR set +x -module use $( pwd -P ) +module use $PWD/modulefiles module load modules.fv3 module load cray-pals module list diff --git a/tests/fv3_conf/fv3_slurm.IN_expanse b/tests/fv3_conf/fv3_slurm.IN_expanse index 9420868b8dc..1dbc6bcbb5c 100644 --- a/tests/fv3_conf/fv3_slurm.IN_expanse +++ b/tests/fv3_conf/fv3_slurm.IN_expanse @@ -14,7 +14,7 @@ echo -n " $( date +%s )," > job_timestamp.txt set +x MACHINE_ID=expanse source ./module-setup.sh -module use $( pwd -P ) +module use $PWD/modulefiles module load modules.fv3 module list set -x diff --git a/tests/fv3_conf/fv3_slurm.IN_gaea b/tests/fv3_conf/fv3_slurm.IN_gaea index 92c234edfba..d72b0407ec9 100644 --- a/tests/fv3_conf/fv3_slurm.IN_gaea +++ b/tests/fv3_conf/fv3_slurm.IN_gaea @@ -15,8 +15,7 @@ echo -n " $( date +%s )," > job_timestamp.txt set +x MACHINE_ID=gaea source ./module-setup.sh -source /lustre/f2/pdata/esrl/gsd/contrib/lua-5.1.4.9/init/init_lmod.sh -module use $( pwd -P ) +module use --prepend $PWD/modulefiles module load modules.fv3 module list set -x diff --git a/tests/fv3_conf/fv3_slurm.IN_hera b/tests/fv3_conf/fv3_slurm.IN_hera index 06ba96a8dde..225acbd1928 100644 --- a/tests/fv3_conf/fv3_slurm.IN_hera +++ b/tests/fv3_conf/fv3_slurm.IN_hera @@ -16,7 +16,7 @@ echo -n " $( date +%s )," > job_timestamp.txt set +x MACHINE_ID=hera source ./module-setup.sh -module use $( pwd -P ) +module use $PWD/modulefiles module load modules.fv3 module list set -x diff --git a/tests/fv3_conf/fv3_slurm.IN_jet b/tests/fv3_conf/fv3_slurm.IN_jet index 0790b5bf994..21effeb05eb 100644 --- a/tests/fv3_conf/fv3_slurm.IN_jet +++ b/tests/fv3_conf/fv3_slurm.IN_jet @@ -17,7 +17,7 @@ echo -n " $( date +%s )," > job_timestamp.txt set +x MACHINE_ID=jet source ./module-setup.sh -module use $( pwd -P ) +module use $PWD/modulefiles module load modules.fv3 module list set -x diff --git a/tests/fv3_conf/fv3_slurm.IN_orion b/tests/fv3_conf/fv3_slurm.IN_orion index a32e3836b4d..50e8cf56553 100644 --- a/tests/fv3_conf/fv3_slurm.IN_orion +++ b/tests/fv3_conf/fv3_slurm.IN_orion @@ -17,7 +17,7 @@ echo -n " $( date +%s )," > job_timestamp.txt set +x MACHINE_ID=orion source ./module-setup.sh -module use $( pwd -P ) +module use $PWD/modulefiles module load modules.fv3 module list set -x diff --git a/tests/fv3_conf/fv3_slurm.IN_s4 b/tests/fv3_conf/fv3_slurm.IN_s4 index 066e11438ae..f3f9730604a 100644 --- a/tests/fv3_conf/fv3_slurm.IN_s4 +++ b/tests/fv3_conf/fv3_slurm.IN_s4 @@ -16,7 +16,7 @@ echo -n " $( date +%s )," > job_timestamp.txt set +x MACHINE_ID=s4 source ./module-setup.sh -module use $( pwd -P ) +module use $PWD/modulefiles module load modules.fv3 module list set -x diff --git a/tests/fv3_conf/fv3_slurm.IN_stampede b/tests/fv3_conf/fv3_slurm.IN_stampede index 3a2f9dd76a0..384cc778f01 100644 --- a/tests/fv3_conf/fv3_slurm.IN_stampede +++ b/tests/fv3_conf/fv3_slurm.IN_stampede @@ -13,7 +13,7 @@ echo -n " $( date +%s )," > job_timestamp.txt set +x MACHINE_ID=stampede source ./module-setup.sh -module use $( pwd -P ) +module use $PWD/modulefiles module load modules.fv3 module list set -x diff --git a/tests/module-setup.sh b/tests/module-setup.sh index 34767e40a7c..48a6c91c113 100755 --- a/tests/module-setup.sh +++ b/tests/module-setup.sh @@ -60,33 +60,8 @@ elif [[ $MACHINE_ID = gaea* ]] ; then # the module command fails. Hence we actually have to source # /etc/profile here. source /etc/profile - __ms_source_etc_profile=yes - else - __ms_source_etc_profile=no - fi - module purge - # clean up after purge - unset _LMFILES_ - unset _LMFILES_000 - unset _LMFILES_001 - unset LOADEDMODULES - module load modules - if [[ -d /opt/cray/ari/modulefiles ]] ; then - module use -a /opt/cray/ari/modulefiles - fi - if [[ -d /opt/cray/pe/ari/modulefiles ]] ; then - module use -a /opt/cray/pe/ari/modulefiles - fi - if [[ -d /opt/cray/pe/craype/default/modulefiles ]] ; then - module use -a /opt/cray/pe/craype/default/modulefiles - fi - if [[ -s /etc/opt/cray/pe/admin-pe/site-config ]] ; then - source /etc/opt/cray/pe/admin-pe/site-config - fi - if [[ "$__ms_source_etc_profile" == yes ]] ; then - source /etc/profile - unset __ms_source_etc_profile fi + source /lustre/f2/dev/role.epic/contrib/Lmod_init.sh elif [[ $MACHINE_ID = expanse* ]]; then # We are on SDSC Expanse diff --git a/tests/rt.sh b/tests/rt.sh index aa9b00df493..1fb074df5f8 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -446,7 +446,7 @@ if [[ $TESTS_FILE =~ '35d' ]] || [[ $TESTS_FILE =~ 'weekly' ]]; then fi -BL_DATE=20230227 +BL_DATE=20230308 RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-${BL_DATE}/${RT_COMPILER^^}} @@ -821,7 +821,7 @@ else echo ; echo REGRESSION TEST WAS SUCCESSFUL (echo ; echo REGRESSION TEST WAS SUCCESSFUL) >> ${REGRESSIONTEST_LOG} - rm -f fv3_*.x fv3_*.exe modules.fv3_* keep_tests.tmp + rm -f fv3_*.x fv3_*.exe modules.fv3_* modulefiles/modules.fv3_* keep_tests.tmp [[ ${KEEP_RUNDIR} == false ]] && rm -rf ${RUNDIR_ROOT} [[ ${ROCOTO} == true ]] && rm -f ${ROCOTO_XML} ${ROCOTO_DB} ${ROCOTO_STATE} *_lock.db [[ ${TEST_35D} == true ]] && rm -f tests/cpld_bmark*_20* diff --git a/tests/run_test.sh b/tests/run_test.sh index 5155450d304..3f63afaaa97 100755 --- a/tests/run_test.sh +++ b/tests/run_test.sh @@ -89,12 +89,13 @@ MACHINE_ID=${MACHINE_ID:-false} cp ${PATHRT}/fv3_${COMPILE_NR}.exe fv3.exe # modulefile for FV3 prerequisites: -if [[ $MACHINE_ID == gaea.* ]] || [[ $MACHINE_ID == linux.* ]]; then - cp ${PATHRT}/modules.fv3_${COMPILE_NR} modules.fv3 +mkdir -p modulefiles +if [[ $MACHINE_ID == linux.* ]]; then + cp ${PATHRT}/modules.fv3_${COMPILE_NR} ./modulefiles/modules.fv3 else - cp ${PATHRT}/modules.fv3_${COMPILE_NR}.lua modules.fv3.lua + cp ${PATHRT}/modules.fv3_${COMPILE_NR}.lua ./modulefiles/modules.fv3.lua fi -cp ${PATHTR}/modulefiles/ufs_common* . +cp ${PATHTR}/modulefiles/ufs_common* ./modulefiles/. # Get the shell file that loads the "module" command and purges modules: cp ${PATHRT}/module-setup.sh module-setup.sh From daa7a5ddd21ff4772d5f3a53c3d8945f5b7787b2 Mon Sep 17 00:00:00 2001 From: Jessica Meixner Date: Mon, 13 Mar 2023 09:13:44 -0400 Subject: [PATCH 06/30] update WW3 with its develop branch (#1625) * update WW3 --- WW3 | 2 +- tests/RegressionTests_acorn.intel.log | 948 +++++++++--------- tests/RegressionTests_cheyenne.gnu.log | 324 +++--- tests/RegressionTests_cheyenne.intel.log | 1135 +++++++++++---------- tests/RegressionTests_gaea.intel.log | 1154 +++++++++++----------- tests/RegressionTests_hera.gnu.log | 332 +++---- tests/RegressionTests_hera.intel.log | 1010 +++++++++---------- tests/RegressionTests_jet.intel.log | 922 ++++++++--------- tests/RegressionTests_orion.intel.log | 1024 +++++++++---------- tests/RegressionTests_wcoss2.intel.log | 828 ++++++++-------- 10 files changed, 3828 insertions(+), 3851 deletions(-) diff --git a/WW3 b/WW3 index b93b9f00118..29edfe2d544 160000 --- a/WW3 +++ b/WW3 @@ -1 +1 @@ -Subproject commit b93b9f00118f6fb316fd2289dff10b1455357f3f +Subproject commit 29edfe2d5441426be13d47948af1937f3792b65e diff --git a/tests/RegressionTests_acorn.intel.log b/tests/RegressionTests_acorn.intel.log index b34b45b1847..607ce89e6bc 100644 --- a/tests/RegressionTests_acorn.intel.log +++ b/tests/RegressionTests_acorn.intel.log @@ -1,39 +1,39 @@ -Thu Mar 9 13:46:25 UTC 2023 +Thu Mar 9 21:55:55 UTC 2023 Start Regression test -Compile 001 elapsed time 595 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 540 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 986 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 464 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 005 elapsed time 1076 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 1100 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 736 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 008 elapsed time 1234 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 811 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 422 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 1283 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 972 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 013 elapsed time 536 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 728 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 015 elapsed time 423 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 243 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 017 elapsed time 601 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 503 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 019 elapsed time 369 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 877 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 857 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 022 elapsed time 736 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 023 elapsed time 225 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 024 elapsed time 145 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 025 elapsed time 685 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 026 elapsed time 534 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 027 elapsed time 473 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 773 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 216 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 030 elapsed time 873 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 562 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 537 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 509 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 468 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 005 elapsed time 470 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 622 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 466 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 871 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 1039 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 943 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 877 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 221 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 260 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 014 elapsed time 486 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 578 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 156 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 017 elapsed time 280 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 620 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 019 elapsed time 415 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 686 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 679 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 022 elapsed time 225 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 023 elapsed time 617 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 024 elapsed time 54 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 025 elapsed time 1060 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 026 elapsed time 1018 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 027 elapsed time 658 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 746 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 400 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 030 elapsed time 665 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_mixedmode -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/cpld_control_p8_mixedmode +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -98,14 +98,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 338.463955 -The maximum resident set size (KB) = 2952080 +The total amount of wall time = 337.063634 +The maximum resident set size (KB) = 2950036 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_gfsv17 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/cpld_control_gfsv17 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -169,14 +169,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 262.091382 -The maximum resident set size (KB) = 1576640 +The total amount of wall time = 262.151056 +The maximum resident set size (KB) = 1587976 Test 002 cpld_control_gfsv17 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -241,14 +241,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 393.427385 -The maximum resident set size (KB) = 2977548 +The total amount of wall time = 387.143860 +The maximum resident set size (KB) = 2978916 Test 003 cpld_control_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/cpld_restart_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -301,14 +301,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 228.765179 -The maximum resident set size (KB) = 2865740 +The total amount of wall time = 231.255829 +The maximum resident set size (KB) = 2867568 Test 004 cpld_restart_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/cpld_2threads_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -361,14 +361,14 @@ Checking test 005 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 380.396607 -The maximum resident set size (KB) = 3282260 +The total amount of wall time = 373.884830 +The maximum resident set size (KB) = 3277840 Test 005 cpld_2threads_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/cpld_decomp_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/cpld_decomp_p8 Checking test 006 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -421,14 +421,14 @@ Checking test 006 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 387.905667 -The maximum resident set size (KB) = 2978344 +The total amount of wall time = 381.259153 +The maximum resident set size (KB) = 2977204 Test 006 cpld_decomp_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/cpld_mpi_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/cpld_mpi_p8 Checking test 007 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -481,14 +481,14 @@ Checking test 007 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 324.501431 -The maximum resident set size (KB) = 2907872 +The total amount of wall time = 319.122116 +The maximum resident set size (KB) = 2909424 Test 007 cpld_mpi_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_ciceC_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/cpld_control_ciceC_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/cpld_control_ciceC_p8 Checking test 008 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -553,14 +553,14 @@ Checking test 008 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 394.483259 -The maximum resident set size (KB) = 2986296 +The total amount of wall time = 390.724208 +The maximum resident set size (KB) = 2978944 Test 008 cpld_control_ciceC_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/cpld_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/cpld_control_noaero_p8 Checking test 009 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -624,14 +624,14 @@ Checking test 009 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 280.413976 -The maximum resident set size (KB) = 1574796 +The total amount of wall time = 282.408125 +The maximum resident set size (KB) = 1579308 Test 009 cpld_control_noaero_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/cpld_control_nowave_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/cpld_control_nowave_noaero_p8 Checking test 010 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -693,14 +693,14 @@ Checking test 010 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 296.580305 -The maximum resident set size (KB) = 1621304 +The total amount of wall time = 299.018449 +The maximum resident set size (KB) = 1625216 Test 010 cpld_control_nowave_noaero_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/cpld_control_noaero_p8_agrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/cpld_control_noaero_p8_agrid Checking test 011 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -762,14 +762,14 @@ Checking test 011 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 310.078412 -The maximum resident set size (KB) = 1624140 +The total amount of wall time = 306.691665 +The maximum resident set size (KB) = 1616508 Test 011 cpld_control_noaero_p8_agrid PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/cpld_control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/cpld_control_c48 Checking test 012 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -819,14 +819,14 @@ Checking test 012 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 434.451641 -The maximum resident set size (KB) = 2627176 +The total amount of wall time = 433.080046 +The maximum resident set size (KB) = 2628576 Test 012 cpld_control_c48 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/cpld_warmstart_c48 Checking test 013 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -876,14 +876,14 @@ Checking test 013 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 120.493048 -The maximum resident set size (KB) = 2648300 +The total amount of wall time = 119.962029 +The maximum resident set size (KB) = 2648200 Test 013 cpld_warmstart_c48 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/cpld_restart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/cpld_restart_c48 Checking test 014 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -933,14 +933,14 @@ Checking test 014 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 67.507670 -The maximum resident set size (KB) = 2063236 +The total amount of wall time = 65.033244 +The maximum resident set size (KB) = 2063000 Test 014 cpld_restart_c48 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/cpld_control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/cpld_control_p8_faster Checking test 015 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1005,14 +1005,14 @@ Checking test 015 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 377.299687 -The maximum resident set size (KB) = 2974992 +The total amount of wall time = 376.032435 +The maximum resident set size (KB) = 2975332 Test 015 cpld_control_p8_faster PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_CubedSphereGrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/control_CubedSphereGrid Checking test 016 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1039,14 +1039,14 @@ Checking test 016 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 128.250969 -The maximum resident set size (KB) = 513460 +The total amount of wall time = 128.557009 +The maximum resident set size (KB) = 516596 Test 016 control_CubedSphereGrid PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_latlon -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_latlon +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/control_latlon Checking test 017 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1057,14 +1057,14 @@ Checking test 017 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 131.480621 -The maximum resident set size (KB) = 516188 +The total amount of wall time = 130.743556 +The maximum resident set size (KB) = 515388 Test 017 control_latlon PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_wrtGauss_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/control_wrtGauss_netcdf_parallel Checking test 018 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1075,14 +1075,14 @@ Checking test 018 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 133.507534 -The maximum resident set size (KB) = 519656 +The total amount of wall time = 133.135909 +The maximum resident set size (KB) = 516716 Test 018 control_wrtGauss_netcdf_parallel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/control_c48 Checking test 019 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1121,14 +1121,14 @@ Checking test 019 control_c48 results .... 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.121126 -The maximum resident set size (KB) = 673184 +The total amount of wall time = 326.392808 +The maximum resident set size (KB) = 674472 Test 019 control_c48 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c192 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_c192 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/control_c192 Checking test 020 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1139,14 +1139,14 @@ Checking test 020 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 527.141448 -The maximum resident set size (KB) = 616108 +The total amount of wall time = 528.137105 +The maximum resident set size (KB) = 613204 Test 020 control_c192 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_c384 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/control_c384 Checking test 021 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1157,14 +1157,14 @@ Checking test 021 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 571.934871 -The maximum resident set size (KB) = 910968 +The total amount of wall time = 573.461100 +The maximum resident set size (KB) = 909668 Test 021 control_c384 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384gdas -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_c384gdas +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/control_c384gdas Checking test 022 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1207,14 +1207,14 @@ Checking test 022 control_c384gdas 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 = 504.504223 -The maximum resident set size (KB) = 1042412 +The total amount of wall time = 504.952455 +The maximum resident set size (KB) = 1045788 Test 022 control_c384gdas PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/control_stochy Checking test 023 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1225,28 +1225,28 @@ Checking test 023 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 89.886784 -The maximum resident set size (KB) = 518684 +The total amount of wall time = 89.368450 +The maximum resident set size (KB) = 518972 Test 023 control_stochy PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_stochy_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/control_stochy_restart Checking test 024 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 48.247837 -The maximum resident set size (KB) = 292520 +The total amount of wall time = 48.280543 +The maximum resident set size (KB) = 291236 Test 024 control_stochy_restart PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/control_lndp Checking test 025 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1257,14 +1257,14 @@ Checking test 025 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 83.461188 -The maximum resident set size (KB) = 521332 +The total amount of wall time = 82.225650 +The maximum resident set size (KB) = 521072 Test 025 control_lndp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr4 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_iovr4 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/control_iovr4 Checking test 026 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1279,14 +1279,14 @@ Checking test 026 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 134.955098 -The maximum resident set size (KB) = 513844 +The total amount of wall time = 135.145517 +The maximum resident set size (KB) = 513456 Test 026 control_iovr4 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr5 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_iovr5 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/control_iovr5 Checking test 027 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1301,14 +1301,14 @@ Checking test 027 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.368007 -The maximum resident set size (KB) = 518536 +The total amount of wall time = 134.097198 +The maximum resident set size (KB) = 515208 Test 027 control_iovr5 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/control_p8 Checking test 028 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1355,14 +1355,14 @@ Checking test 028 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 176.747736 -The maximum resident set size (KB) = 1480992 +The total amount of wall time = 177.990484 +The maximum resident set size (KB) = 1483628 Test 028 control_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_p8_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/control_p8_lndp Checking test 029 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1381,14 +1381,14 @@ Checking test 029 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 319.501636 -The maximum resident set size (KB) = 1489332 +The total amount of wall time = 320.394846 +The maximum resident set size (KB) = 1485248 Test 029 control_p8_lndp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_restart_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/control_restart_p8 Checking test 030 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1427,14 +1427,14 @@ Checking test 030 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 98.515880 -The maximum resident set size (KB) = 654848 +The total amount of wall time = 99.224857 +The maximum resident set size (KB) = 650148 Test 030 control_restart_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_decomp_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/control_decomp_p8 Checking test 031 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1477,14 +1477,14 @@ Checking test 031 control_decomp_p8 results .... 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.460579 -The maximum resident set size (KB) = 1478660 +The total amount of wall time = 179.646047 +The maximum resident set size (KB) = 1477912 Test 031 control_decomp_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_2threads_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/control_2threads_p8 Checking test 032 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1527,14 +1527,14 @@ Checking test 032 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 159.670811 -The maximum resident set size (KB) = 1562936 +The total amount of wall time = 159.574129 +The maximum resident set size (KB) = 1568100 Test 032 control_2threads_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_rrtmgp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_p8_rrtmgp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/control_p8_rrtmgp Checking test 033 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1581,14 +1581,14 @@ Checking test 033 control_p8_rrtmgp results .... 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.404468 -The maximum resident set size (KB) = 1543124 +The total amount of wall time = 233.482222 +The maximum resident set size (KB) = 1541120 Test 033 control_p8_rrtmgp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/merra2_thompson -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/merra2_thompson +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/merra2_thompson Checking test 034 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1635,14 +1635,14 @@ Checking test 034 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 202.011415 -The maximum resident set size (KB) = 1491556 +The total amount of wall time = 203.440694 +The maximum resident set size (KB) = 1489924 Test 034 merra2_thompson PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/regional_control Checking test 035 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1653,28 +1653,28 @@ Checking test 035 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 289.304157 -The maximum resident set size (KB) = 655144 +The total amount of wall time = 291.825382 +The maximum resident set size (KB) = 649684 Test 035 regional_control PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/regional_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/regional_restart Checking test 036 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 153.235377 -The maximum resident set size (KB) = 648684 +The total amount of wall time = 157.373973 +The maximum resident set size (KB) = 650936 Test 036 regional_restart PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/regional_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/regional_decomp Checking test 037 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1685,14 +1685,14 @@ Checking test 037 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 302.797255 -The maximum resident set size (KB) = 650524 +The total amount of wall time = 301.960778 +The maximum resident set size (KB) = 651592 Test 037 regional_decomp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/regional_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/regional_2threads Checking test 038 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1703,14 +1703,14 @@ Checking test 038 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 179.216734 -The maximum resident set size (KB) = 699000 +The total amount of wall time = 178.129392 +The maximum resident set size (KB) = 695056 Test 038 regional_2threads PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_noquilt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/regional_noquilt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/regional_noquilt Checking test 039 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1718,14 +1718,14 @@ Checking test 039 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 312.562414 -The maximum resident set size (KB) = 642652 +The total amount of wall time = 309.372016 +The maximum resident set size (KB) = 644396 Test 039 regional_noquilt PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/regional_2dwrtdecomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/regional_2dwrtdecomp Checking test 040 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1736,14 +1736,14 @@ Checking test 040 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 289.241173 -The maximum resident set size (KB) = 650112 +The total amount of wall time = 286.725430 +The maximum resident set size (KB) = 655168 Test 040 regional_2dwrtdecomp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/fv3_regional_wofs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/regional_wofs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/regional_wofs Checking test 041 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1754,14 +1754,14 @@ Checking test 041 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 362.324116 -The maximum resident set size (KB) = 340740 +The total amount of wall time = 364.210633 +The maximum resident set size (KB) = 341596 Test 041 regional_wofs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/rap_control Checking test 042 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1808,14 +1808,14 @@ Checking test 042 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 419.236232 -The maximum resident set size (KB) = 893664 +The total amount of wall time = 419.285004 +The maximum resident set size (KB) = 896572 Test 042 rap_control PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/regional_spp_sppt_shum_skeb +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/regional_spp_sppt_shum_skeb Checking test 043 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -1826,14 +1826,14 @@ Checking test 043 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 285.879551 -The maximum resident set size (KB) = 983236 +The total amount of wall time = 286.921990 +The maximum resident set size (KB) = 984152 Test 043 regional_spp_sppt_shum_skeb PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rap_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/rap_decomp Checking test 044 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1880,14 +1880,14 @@ Checking test 044 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 434.623989 -The maximum resident set size (KB) = 889664 +The total amount of wall time = 433.813522 +The maximum resident set size (KB) = 892664 Test 044 rap_decomp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rap_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/rap_2threads Checking test 045 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1934,14 +1934,14 @@ Checking test 045 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 392.548039 -The maximum resident set size (KB) = 961140 +The total amount of wall time = 391.679717 +The maximum resident set size (KB) = 964156 Test 045 rap_2threads PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rap_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/rap_restart Checking test 046 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1980,14 +1980,14 @@ Checking test 046 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 212.032550 -The maximum resident set size (KB) = 647764 +The total amount of wall time = 213.135261 +The maximum resident set size (KB) = 641972 Test 046 rap_restart PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/rap_sfcdiff Checking test 047 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2034,14 +2034,14 @@ Checking test 047 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 414.406827 -The maximum resident set size (KB) = 892572 +The total amount of wall time = 414.826926 +The maximum resident set size (KB) = 893960 Test 047 rap_sfcdiff PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rap_sfcdiff_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/rap_sfcdiff_decomp Checking test 048 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2088,14 +2088,14 @@ Checking test 048 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 432.128719 -The maximum resident set size (KB) = 890516 +The total amount of wall time = 434.141668 +The maximum resident set size (KB) = 894104 Test 048 rap_sfcdiff_decomp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rap_sfcdiff_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/rap_sfcdiff_restart Checking test 049 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2134,14 +2134,14 @@ Checking test 049 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 309.835281 -The maximum resident set size (KB) = 639932 +The total amount of wall time = 309.481640 +The maximum resident set size (KB) = 641020 Test 049 rap_sfcdiff_restart PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/hrrr_control Checking test 050 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2188,14 +2188,14 @@ Checking test 050 hrrr_control results .... 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.940241 -The maximum resident set size (KB) = 893844 +The total amount of wall time = 400.523769 +The maximum resident set size (KB) = 892720 Test 050 hrrr_control PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hrrr_control_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/hrrr_control_decomp Checking test 051 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2242,14 +2242,14 @@ Checking test 051 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 413.679912 -The maximum resident set size (KB) = 890488 +The total amount of wall time = 415.650768 +The maximum resident set size (KB) = 887216 Test 051 hrrr_control_decomp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hrrr_control_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/hrrr_control_2threads Checking test 052 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2296,14 +2296,14 @@ Checking test 052 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 369.817624 -The maximum resident set size (KB) = 961556 +The total amount of wall time = 371.373058 +The maximum resident set size (KB) = 958720 Test 052 hrrr_control_2threads PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hrrr_control_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/hrrr_control_restart Checking test 053 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2342,14 +2342,14 @@ Checking test 053 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 299.114537 -The maximum resident set size (KB) = 640216 +The total amount of wall time = 297.149206 +The maximum resident set size (KB) = 640224 Test 053 hrrr_control_restart PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rrfs_v1beta +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/rrfs_v1beta Checking test 054 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2396,14 +2396,14 @@ Checking test 054 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 409.473470 -The maximum resident set size (KB) = 883640 +The total amount of wall time = 409.599488 +The maximum resident set size (KB) = 888740 Test 054 rrfs_v1beta PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rrfs_v1nssl +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/rrfs_v1nssl Checking test 055 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2418,14 +2418,14 @@ Checking test 055 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 471.819229 -The maximum resident set size (KB) = 577640 +The total amount of wall time = 474.313444 +The maximum resident set size (KB) = 576480 Test 055 rrfs_v1nssl PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rrfs_v1nssl_nohailnoccn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/rrfs_v1nssl_nohailnoccn Checking test 056 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2440,14 +2440,14 @@ Checking test 056 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 462.467560 -The maximum resident set size (KB) = 565268 +The total amount of wall time = 463.709724 +The maximum resident set size (KB) = 564812 Test 056 rrfs_v1nssl_nohailnoccn PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/rrfs_conus13km_hrrr_warm Checking test 057 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2456,14 +2456,14 @@ Checking test 057 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 113.678003 -The maximum resident set size (KB) = 763852 +The total amount of wall time = 115.190310 +The maximum resident set size (KB) = 763064 Test 057 rrfs_conus13km_hrrr_warm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/rrfs_smoke_conus13km_hrrr_warm Checking test 058 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2472,14 +2472,14 @@ Checking test 058 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 126.474123 -The maximum resident set size (KB) = 772716 +The total amount of wall time = 128.787542 +The maximum resident set size (KB) = 778524 Test 058 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rrfs_conus13km_radar_tten_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/rrfs_conus13km_radar_tten_warm Checking test 059 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2488,14 +2488,14 @@ Checking test 059 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 114.473725 -The maximum resident set size (KB) = 764160 +The total amount of wall time = 118.987529 +The maximum resident set size (KB) = 763020 Test 059 rrfs_conus13km_radar_tten_warm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rrfs_conus13km_hrrr_warm_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/rrfs_conus13km_hrrr_warm_2threads Checking test 060 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2504,14 +2504,14 @@ Checking test 060 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 83.795020 -The maximum resident set size (KB) = 760828 +The total amount of wall time = 86.879713 +The maximum resident set size (KB) = 754732 Test 060 rrfs_conus13km_hrrr_warm_2threads PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rrfs_conus13km_radar_tten_warm_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/rrfs_conus13km_radar_tten_warm_2threads Checking test 061 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2520,14 +2520,14 @@ Checking test 061 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 84.366686 -The maximum resident set size (KB) = 762412 +The total amount of wall time = 86.504322 +The maximum resident set size (KB) = 762712 Test 061 rrfs_conus13km_radar_tten_warm_2threads PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_csawmg +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/control_csawmg Checking test 062 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2538,14 +2538,14 @@ Checking test 062 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 344.761001 -The maximum resident set size (KB) = 586472 +The total amount of wall time = 346.532480 +The maximum resident set size (KB) = 581688 Test 062 control_csawmg PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_csawmgt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/control_csawmgt Checking test 063 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2556,14 +2556,14 @@ Checking test 063 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 342.232204 -The maximum resident set size (KB) = 584216 +The total amount of wall time = 345.506226 +The maximum resident set size (KB) = 586464 Test 063 control_csawmgt PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_ras +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/control_ras Checking test 064 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2574,26 +2574,26 @@ Checking test 064 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 180.189502 -The maximum resident set size (KB) = 550776 +The total amount of wall time = 180.656994 +The maximum resident set size (KB) = 549296 Test 064 control_ras PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_wam +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/control_wam Checking test 065 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 117.309057 -The maximum resident set size (KB) = 271484 +The total amount of wall time = 117.512083 +The maximum resident set size (KB) = 272644 Test 065 control_wam PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/control_p8_faster Checking test 066 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2640,14 +2640,14 @@ Checking test 066 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 174.498797 -The maximum resident set size (KB) = 1478352 +The total amount of wall time = 174.891238 +The maximum resident set size (KB) = 1486512 Test 066 control_p8_faster PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/regional_control_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/regional_control_faster Checking test 067 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2658,42 +2658,42 @@ Checking test 067 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 284.316069 -The maximum resident set size (KB) = 652684 +The total amount of wall time = 288.131379 +The maximum resident set size (KB) = 648824 Test 067 regional_control_faster PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rrfs_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/rrfs_conus13km_hrrr_warm_debug Checking test 068 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 787.183152 -The maximum resident set size (KB) = 788460 +The total amount of wall time = 783.129547 +The maximum resident set size (KB) = 785752 Test 068 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rrfs_conus13km_radar_tten_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/rrfs_conus13km_radar_tten_warm_debug Checking test 069 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 781.688249 -The maximum resident set size (KB) = 790880 +The total amount of wall time = 783.459148 +The maximum resident set size (KB) = 790996 Test 069 rrfs_conus13km_radar_tten_warm_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_CubedSphereGrid_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/control_CubedSphereGrid_debug Checking test 070 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2720,334 +2720,334 @@ Checking test 070 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 166.268504 -The maximum resident set size (KB) = 671960 +The total amount of wall time = 165.998302 +The maximum resident set size (KB) = 675532 Test 070 control_CubedSphereGrid_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/control_wrtGauss_netcdf_parallel_debug Checking test 071 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 158.553323 -The maximum resident set size (KB) = 676340 +The total amount of wall time = 159.107036 +The maximum resident set size (KB) = 674912 Test 071 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_stochy_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/control_stochy_debug Checking test 072 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 178.165304 -The maximum resident set size (KB) = 683740 +The total amount of wall time = 181.193215 +The maximum resident set size (KB) = 680084 Test 072 control_stochy_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/control_lndp_debug Checking test 073 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 161.109704 -The maximum resident set size (KB) = 682812 +The total amount of wall time = 160.858150 +The maximum resident set size (KB) = 683220 Test 073 control_lndp_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_csawmg_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/control_csawmg_debug Checking test 074 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 254.829359 -The maximum resident set size (KB) = 716432 +The total amount of wall time = 254.392558 +The maximum resident set size (KB) = 713824 Test 074 control_csawmg_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_csawmgt_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/control_csawmgt_debug Checking test 075 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 252.803686 -The maximum resident set size (KB) = 713788 +The total amount of wall time = 249.822569 +The maximum resident set size (KB) = 715800 Test 075 control_csawmgt_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_ras_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/control_ras_debug Checking test 076 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 163.381903 -The maximum resident set size (KB) = 688952 +The total amount of wall time = 161.882779 +The maximum resident set size (KB) = 686032 Test 076 control_ras_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/control_diag_debug Checking test 077 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 164.858519 -The maximum resident set size (KB) = 734736 +The total amount of wall time = 164.322993 +The maximum resident set size (KB) = 737312 Test 077 control_diag_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_debug_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_debug_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/control_debug_p8 Checking test 078 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 186.245041 -The maximum resident set size (KB) = 1495504 +The total amount of wall time = 186.333046 +The maximum resident set size (KB) = 1503104 Test 078 control_debug_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/regional_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/regional_debug Checking test 079 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1047.384324 -The maximum resident set size (KB) = 673336 +The total amount of wall time = 1044.804335 +The maximum resident set size (KB) = 669988 Test 079 regional_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/rap_control_debug Checking test 080 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.344624 -The maximum resident set size (KB) = 1049408 +The total amount of wall time = 297.530297 +The maximum resident set size (KB) = 1050716 Test 080 rap_control_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hrrr_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/hrrr_control_debug Checking test 081 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 292.038376 -The maximum resident set size (KB) = 1043852 +The total amount of wall time = 292.250607 +The maximum resident set size (KB) = 1048244 Test 081 hrrr_control_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rap_unified_drag_suite_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/rap_unified_drag_suite_debug Checking test 082 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.825894 -The maximum resident set size (KB) = 1048208 +The total amount of wall time = 298.643678 +The maximum resident set size (KB) = 1049432 Test 082 rap_unified_drag_suite_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rap_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/rap_diag_debug Checking test 083 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 309.679220 -The maximum resident set size (KB) = 1132184 +The total amount of wall time = 309.927294 +The maximum resident set size (KB) = 1131604 Test 083 rap_diag_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/rap_cires_ugwp_debug Checking test 084 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 304.456326 -The maximum resident set size (KB) = 1053392 +The total amount of wall time = 305.295047 +The maximum resident set size (KB) = 1047200 Test 084 rap_cires_ugwp_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rap_unified_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/rap_unified_ugwp_debug Checking test 085 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 304.941235 -The maximum resident set size (KB) = 1050136 +The total amount of wall time = 306.495196 +The maximum resident set size (KB) = 1051052 Test 085 rap_unified_ugwp_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rap_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/rap_lndp_debug Checking test 086 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.481250 -The maximum resident set size (KB) = 1050488 +The total amount of wall time = 299.240948 +The maximum resident set size (KB) = 1053236 Test 086 rap_lndp_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_flake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rap_flake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/rap_flake_debug Checking test 087 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.597461 -The maximum resident set size (KB) = 1051836 +The total amount of wall time = 296.245603 +The maximum resident set size (KB) = 1053068 Test 087 rap_flake_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_progcld_thompson_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rap_progcld_thompson_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/rap_progcld_thompson_debug Checking test 088 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.918343 -The maximum resident set size (KB) = 1049056 +The total amount of wall time = 296.373683 +The maximum resident set size (KB) = 1052304 Test 088 rap_progcld_thompson_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rap_noah_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/rap_noah_debug Checking test 089 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 292.134209 -The maximum resident set size (KB) = 1051876 +The total amount of wall time = 291.513171 +The maximum resident set size (KB) = 1053936 Test 089 rap_noah_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rap_sfcdiff_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/rap_sfcdiff_debug Checking test 090 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 296.891777 -The maximum resident set size (KB) = 1051388 +The total amount of wall time = 296.198816 +The maximum resident set size (KB) = 1052764 Test 090 rap_sfcdiff_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/rap_noah_sfcdiff_cires_ugwp_debug Checking test 091 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 485.913072 -The maximum resident set size (KB) = 1048276 +The total amount of wall time = 486.739052 +The maximum resident set size (KB) = 1047500 Test 091 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rrfs_v1beta_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/rrfs_v1beta_debug Checking test 092 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 291.938669 -The maximum resident set size (KB) = 1048488 +The total amount of wall time = 297.133563 +The maximum resident set size (KB) = 1048300 Test 092 rrfs_v1beta_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_wam_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/control_wam_debug Checking test 093 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 300.787725 -The maximum resident set size (KB) = 300852 +The total amount of wall time = 299.315766 +The maximum resident set size (KB) = 300360 Test 093 control_wam_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 094 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3058,14 +3058,14 @@ Checking test 094 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 267.102923 -The maximum resident set size (KB) = 878940 +The total amount of wall time = 266.750664 +The maximum resident set size (KB) = 878648 Test 094 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/rap_control_dyn32_phy32 Checking test 095 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3112,14 +3112,14 @@ Checking test 095 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 342.617303 -The maximum resident set size (KB) = 775216 +The total amount of wall time = 341.712852 +The maximum resident set size (KB) = 777896 Test 095 rap_control_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/hrrr_control_dyn32_phy32 Checking test 096 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3166,14 +3166,14 @@ Checking test 096 hrrr_control_dyn32_phy32 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 = 184.387014 -The maximum resident set size (KB) = 776148 +The total amount of wall time = 183.005252 +The maximum resident set size (KB) = 777564 Test 096 hrrr_control_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rap_2threads_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/rap_2threads_dyn32_phy32 Checking test 097 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3220,14 +3220,14 @@ Checking test 097 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 321.349882 -The maximum resident set size (KB) = 828684 +The total amount of wall time = 320.701040 +The maximum resident set size (KB) = 835568 Test 097 rap_2threads_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hrrr_control_2threads_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/hrrr_control_2threads_dyn32_phy32 Checking test 098 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3274,14 +3274,14 @@ Checking test 098 hrrr_control_2threads_dyn32_phy32 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 = 174.418487 -The maximum resident set size (KB) = 828780 +The total amount of wall time = 173.133263 +The maximum resident set size (KB) = 827172 Test 098 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hrrr_control_decomp_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/hrrr_control_decomp_dyn32_phy32 Checking test 099 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3328,14 +3328,14 @@ Checking test 099 hrrr_control_decomp_dyn32_phy32 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 = 191.582547 -The maximum resident set size (KB) = 775008 +The total amount of wall time = 190.926590 +The maximum resident set size (KB) = 773960 Test 099 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rap_restart_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/rap_restart_dyn32_phy32 Checking test 100 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3374,14 +3374,14 @@ Checking test 100 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 255.453253 -The maximum resident set size (KB) = 612776 +The total amount of wall time = 256.515379 +The maximum resident set size (KB) = 612480 Test 100 rap_restart_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hrrr_control_restart_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/hrrr_control_restart_dyn32_phy32 Checking test 101 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3420,14 +3420,14 @@ Checking test 101 hrrr_control_restart_dyn32_phy32 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 = 95.241142 -The maximum resident set size (KB) = 608176 +The total amount of wall time = 95.298012 +The maximum resident set size (KB) = 605948 Test 101 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rap_control_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/rap_control_dyn64_phy32 Checking test 102 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3474,81 +3474,81 @@ Checking test 102 rap_control_dyn64_phy32 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 = 232.340978 -The maximum resident set size (KB) = 798092 +The total amount of wall time = 230.759867 +The maximum resident set size (KB) = 798000 Test 102 rap_control_dyn64_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rap_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/rap_control_debug_dyn32_phy32 Checking test 103 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 291.874437 -The maximum resident set size (KB) = 937584 +The total amount of wall time = 289.967830 +The maximum resident set size (KB) = 935040 Test 103 rap_control_debug_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hrrr_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/hrrr_control_debug_dyn32_phy32 Checking test 104 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 285.977130 -The maximum resident set size (KB) = 938564 +The total amount of wall time = 285.024130 +The maximum resident set size (KB) = 935936 Test 104 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/rap_control_dyn64_phy32_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/rap_control_dyn64_phy32_debug Checking test 105 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 294.941657 -The maximum resident set size (KB) = 956612 +The total amount of wall time = 294.179079 +The maximum resident set size (KB) = 957180 Test 105 rap_control_dyn64_phy32_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hafs_regional_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/hafs_regional_atm Checking test 106 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 266.447497 -The maximum resident set size (KB) = 822240 +The total amount of wall time = 264.382337 +The maximum resident set size (KB) = 822656 Test 106 hafs_regional_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/hafs_regional_atm_thompson_gfdlsf Checking test 107 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 304.001568 -The maximum resident set size (KB) = 1182192 +The total amount of wall time = 300.333459 +The maximum resident set size (KB) = 1177656 Test 107 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hafs_regional_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/hafs_regional_atm_ocn Checking test 108 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3557,14 +3557,14 @@ Checking test 108 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 387.615026 -The maximum resident set size (KB) = 851812 +The total amount of wall time = 386.712370 +The maximum resident set size (KB) = 851288 Test 108 hafs_regional_atm_ocn PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hafs_regional_atm_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/hafs_regional_atm_wav Checking test 109 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3573,14 +3573,14 @@ Checking test 109 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 705.078778 -The maximum resident set size (KB) = 885440 +The total amount of wall time = 706.762450 +The maximum resident set size (KB) = 880620 Test 109 hafs_regional_atm_wav PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hafs_regional_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/hafs_regional_atm_ocn_wav Checking test 110 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3591,28 +3591,28 @@ Checking test 110 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 895.240206 -The maximum resident set size (KB) = 907768 +The total amount of wall time = 895.210890 +The maximum resident set size (KB) = 906304 Test 110 hafs_regional_atm_ocn_wav PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hafs_regional_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/hafs_regional_1nest_atm Checking test 111 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 327.677400 -The maximum resident set size (KB) = 389380 +The total amount of wall time = 328.582720 +The maximum resident set size (KB) = 389564 Test 111 hafs_regional_1nest_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hafs_regional_telescopic_2nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/hafs_regional_telescopic_2nests_atm Checking test 112 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3621,28 +3621,28 @@ Checking test 112 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 396.821324 -The maximum resident set size (KB) = 411772 +The total amount of wall time = 395.804831 +The maximum resident set size (KB) = 411744 Test 112 hafs_regional_telescopic_2nests_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hafs_global_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/hafs_global_1nest_atm Checking test 113 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 165.325957 -The maximum resident set size (KB) = 263328 +The total amount of wall time = 165.248959 +The maximum resident set size (KB) = 264392 Test 113 hafs_global_1nest_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_multiple_4nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hafs_global_multiple_4nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/hafs_global_multiple_4nests_atm Checking test 114 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3660,14 +3660,14 @@ Checking test 114 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -The total amount of wall time = 485.980433 -The maximum resident set size (KB) = 340720 +The total amount of wall time = 486.809092 +The maximum resident set size (KB) = 338548 Test 114 hafs_global_multiple_4nests_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hafs_regional_specified_moving_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/hafs_regional_specified_moving_1nest_atm Checking test 115 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3676,28 +3676,28 @@ Checking test 115 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 212.073705 -The maximum resident set size (KB) = 400844 +The total amount of wall time = 211.150752 +The maximum resident set size (KB) = 400060 Test 115 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hafs_regional_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/hafs_regional_storm_following_1nest_atm Checking test 116 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 200.096918 -The maximum resident set size (KB) = 403708 +The total amount of wall time = 198.607736 +The maximum resident set size (KB) = 400424 Test 116 hafs_regional_storm_following_1nest_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/hafs_regional_storm_following_1nest_atm_ocn Checking test 117 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3706,42 +3706,42 @@ Checking test 117 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 241.161844 -The maximum resident set size (KB) = 452080 +The total amount of wall time = 239.427060 +The maximum resident set size (KB) = 452480 Test 117 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hafs_global_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/hafs_global_storm_following_1nest_atm Checking test 118 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 78.692441 -The maximum resident set size (KB) = 277396 +The total amount of wall time = 78.898644 +The maximum resident set size (KB) = 285524 Test 118 hafs_global_storm_following_1nest_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 119 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 797.533254 -The maximum resident set size (KB) = 475708 +The total amount of wall time = 802.030794 +The maximum resident set size (KB) = 482980 Test 119 hafs_regional_storm_following_1nest_atm_ocn_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 120 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3752,14 +3752,14 @@ Checking test 120 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -The total amount of wall time = 518.438790 -The maximum resident set size (KB) = 520224 +The total amount of wall time = 514.476182 +The maximum resident set size (KB) = 526460 Test 120 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_docn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hafs_regional_docn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/hafs_regional_docn Checking test 121 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3767,14 +3767,14 @@ Checking test 121 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 370.225795 -The maximum resident set size (KB) = 856824 +The total amount of wall time = 367.848893 +The maximum resident set size (KB) = 854136 Test 121 hafs_regional_docn PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_docn_oisst -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hafs_regional_docn_oisst +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/hafs_regional_docn_oisst Checking test 122 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3782,131 +3782,131 @@ Checking test 122 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 371.138716 -The maximum resident set size (KB) = 844272 +The total amount of wall time = 370.693509 +The maximum resident set size (KB) = 841816 Test 122 hafs_regional_docn_oisst PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_datm_cdeps -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/hafs_regional_datm_cdeps +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/hafs_regional_datm_cdeps Checking test 123 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -The total amount of wall time = 944.164967 -The maximum resident set size (KB) = 867772 +The total amount of wall time = 944.414484 +The maximum resident set size (KB) = 835856 Test 123 hafs_regional_datm_cdeps PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/datm_cdeps_control_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/datm_cdeps_control_cfsr Checking test 124 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.853646 -The maximum resident set size (KB) = 732036 +The total amount of wall time = 141.558978 +The maximum resident set size (KB) = 732292 Test 124 datm_cdeps_control_cfsr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/datm_cdeps_restart_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/datm_cdeps_restart_cfsr Checking test 125 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 86.834080 -The maximum resident set size (KB) = 728268 +The total amount of wall time = 85.570605 +The maximum resident set size (KB) = 708772 Test 125 datm_cdeps_restart_cfsr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/datm_cdeps_control_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/datm_cdeps_control_gefs Checking test 126 datm_cdeps_control_gefs 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.453926 -The maximum resident set size (KB) = 614992 +The total amount of wall time = 134.167450 +The maximum resident set size (KB) = 612148 Test 126 datm_cdeps_control_gefs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_iau_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/datm_cdeps_iau_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/datm_cdeps_iau_gefs Checking test 127 datm_cdeps_iau_gefs 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.248239 -The maximum resident set size (KB) = 613324 +The total amount of wall time = 137.203484 +The maximum resident set size (KB) = 615596 Test 127 datm_cdeps_iau_gefs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_stochy_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/datm_cdeps_stochy_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/datm_cdeps_stochy_gefs Checking test 128 datm_cdeps_stochy_gefs 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.805939 -The maximum resident set size (KB) = 611600 +The total amount of wall time = 138.925409 +The maximum resident set size (KB) = 611176 Test 128 datm_cdeps_stochy_gefs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/datm_cdeps_ciceC_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/datm_cdeps_ciceC_cfsr Checking test 129 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.041676 -The maximum resident set size (KB) = 734976 +The total amount of wall time = 140.810025 +The maximum resident set size (KB) = 732316 Test 129 datm_cdeps_ciceC_cfsr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/datm_cdeps_bulk_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/datm_cdeps_bulk_cfsr Checking test 130 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.583841 -The maximum resident set size (KB) = 735228 +The total amount of wall time = 142.639516 +The maximum resident set size (KB) = 734032 Test 130 datm_cdeps_bulk_cfsr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/datm_cdeps_bulk_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/datm_cdeps_bulk_gefs Checking test 131 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 134.869075 -The maximum resident set size (KB) = 611128 +The total amount of wall time = 135.145404 +The maximum resident set size (KB) = 614008 Test 131 datm_cdeps_bulk_gefs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/datm_cdeps_mx025_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/datm_cdeps_mx025_cfsr Checking test 132 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -3915,14 +3915,14 @@ Checking test 132 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 429.183226 -The maximum resident set size (KB) = 574036 +The total amount of wall time = 430.819633 +The maximum resident set size (KB) = 571992 Test 132 datm_cdeps_mx025_cfsr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/datm_cdeps_mx025_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/datm_cdeps_mx025_gefs Checking test 133 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -3931,64 +3931,64 @@ Checking test 133 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 427.539353 -The maximum resident set size (KB) = 548000 +The total amount of wall time = 428.794730 +The maximum resident set size (KB) = 545920 Test 133 datm_cdeps_mx025_gefs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/datm_cdeps_multiple_files_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/datm_cdeps_multiple_files_cfsr Checking test 134 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.232065 -The maximum resident set size (KB) = 720448 +The total amount of wall time = 141.410605 +The maximum resident set size (KB) = 732716 Test 134 datm_cdeps_multiple_files_cfsr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/datm_cdeps_3072x1536_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/datm_cdeps_3072x1536_cfsr Checking test 135 datm_cdeps_3072x1536_cfsr 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 = 256.502365 -The maximum resident set size (KB) = 1982836 +The total amount of wall time = 257.278158 +The maximum resident set size (KB) = 1982792 Test 135 datm_cdeps_3072x1536_cfsr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_gfs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/datm_cdeps_gfs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/datm_cdeps_gfs Checking test 136 datm_cdeps_gfs 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 = 255.408607 -The maximum resident set size (KB) = 1980456 +The total amount of wall time = 255.490965 +The maximum resident set size (KB) = 1979404 Test 136 datm_cdeps_gfs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/datm_cdeps_control_cfsr_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/datm_cdeps_control_cfsr_faster Checking test 137 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.747059 -The maximum resident set size (KB) = 731260 +The total amount of wall time = 142.188870 +The maximum resident set size (KB) = 731892 Test 137 datm_cdeps_control_cfsr_faster PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/datm_cdeps_lnd_gswp3 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/datm_cdeps_lnd_gswp3 Checking test 138 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -3997,14 +3997,14 @@ Checking test 138 datm_cdeps_lnd_gswp3 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.069716 -The maximum resident set size (KB) = 226348 +The total amount of wall time = 21.935620 +The maximum resident set size (KB) = 230772 Test 138 datm_cdeps_lnd_gswp3 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/datm_cdeps_lnd_gswp3_rst +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/datm_cdeps_lnd_gswp3_rst Checking test 139 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4013,14 +4013,14 @@ Checking test 139 datm_cdeps_lnd_gswp3_rst 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.008970 -The maximum resident set size (KB) = 233092 +The total amount of wall time = 27.558164 +The maximum resident set size (KB) = 222484 Test 139 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_atmlnd_sbs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_p8_atmlnd_sbs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/control_p8_atmlnd_sbs Checking test 140 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4105,14 +4105,14 @@ Checking test 140 control_p8_atmlnd_sbs 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 = 236.357151 -The maximum resident set size (KB) = 1536564 +The total amount of wall time = 235.355732 +The maximum resident set size (KB) = 1529516 Test 140 control_p8_atmlnd_sbs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_atmwav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/control_atmwav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/control_atmwav Checking test 141 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4156,14 +4156,14 @@ Checking test 141 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -The total amount of wall time = 89.714566 -The maximum resident set size (KB) = 544784 +The total amount of wall time = 90.208321 +The maximum resident set size (KB) = 539148 Test 141 control_atmwav PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/atmaero_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/atmaero_control_p8 Checking test 142 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4207,14 +4207,14 @@ Checking test 142 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 245.381320 -The maximum resident set size (KB) = 2813340 +The total amount of wall time = 243.637889 +The maximum resident set size (KB) = 2812852 Test 142 atmaero_control_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/atmaero_control_p8_rad +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/atmaero_control_p8_rad Checking test 143 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4258,14 +4258,14 @@ Checking test 143 atmaero_control_p8_rad results .... 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.904121 -The maximum resident set size (KB) = 2873772 +The total amount of wall time = 281.968113 +The maximum resident set size (KB) = 2875144 Test 143 atmaero_control_p8_rad PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/atmaero_control_p8_rad_micro +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/atmaero_control_p8_rad_micro Checking test 144 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4309,14 +4309,14 @@ Checking test 144 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 288.154374 -The maximum resident set size (KB) = 2879840 +The total amount of wall time = 286.950838 +The maximum resident set size (KB) = 2885248 Test 144 atmaero_control_p8_rad_micro PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/regional_atmaq +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/regional_atmaq Checking test 145 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4332,14 +4332,14 @@ Checking test 145 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 661.882354 -The maximum resident set size (KB) = 1400124 +The total amount of wall time = 654.403194 +The maximum resident set size (KB) = 1402252 Test 145 regional_atmaq PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/regional_atmaq_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/regional_atmaq_debug Checking test 146 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4353,14 +4353,14 @@ Checking test 146 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1439.230626 -The maximum resident set size (KB) = 1440192 +The total amount of wall time = 1429.707930 +The maximum resident set size (KB) = 1439956 Test 146 regional_atmaq_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_186513/regional_atmaq_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/regional_atmaq_faster Checking test 147 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4376,12 +4376,12 @@ Checking test 147 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 666.083553 -The maximum resident set size (KB) = 1404224 +The total amount of wall time = 649.238772 +The maximum resident set size (KB) = 1400172 Test 147 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Thu Mar 9 15:20:42 UTC 2023 -Elapsed time: 01h:34m:17s. Have a nice day! +Fri Mar 10 00:20:42 UTC 2023 +Elapsed time: 02h:24m:48s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index edd49dcb6eb..e08db068b9a 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,21 +1,21 @@ -Wed Mar 8 09:40:28 MST 2023 +Fri Mar 10 06:53:43 MST 2023 Start Regression test -Compile 001 elapsed time 373 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 402 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 856 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 190 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 360 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 1070 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 859 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 848 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 622 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 556 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 357 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 012 elapsed time 299 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 001 elapsed time 369 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 393 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 848 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 191 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 356 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 1064 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 849 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 845 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 639 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 563 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 359 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 012 elapsed time 300 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/control_c48 -working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/control_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/control_c48 Checking test 001 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -54,14 +54,14 @@ Checking test 001 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 824.440628 -0:The maximum resident set size (KB) = 675608 +0:The total amount of wall time = 819.842843 +0:The maximum resident set size (KB) = 675624 Test 001 control_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/control_stochy -working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/control_stochy +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/control_stochy Checking test 002 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -72,14 +72,14 @@ Checking test 002 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 176.826358 -0:The maximum resident set size (KB) = 442648 +0:The total amount of wall time = 174.824773 +0:The maximum resident set size (KB) = 442644 Test 002 control_stochy PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/control_ras -working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/control_ras +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/control_ras Checking test 003 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -90,14 +90,14 @@ Checking test 003 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 293.678409 -0:The maximum resident set size (KB) = 452004 +0:The total amount of wall time = 294.410701 +0:The maximum resident set size (KB) = 452036 Test 003 control_ras PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/control_p8 -working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/control_p8 Checking test 004 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -144,14 +144,14 @@ Checking test 004 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 310.021046 -0:The maximum resident set size (KB) = 1225556 +0:The total amount of wall time = 309.639815 +0:The maximum resident set size (KB) = 1226004 Test 004 control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control -working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/rap_control Checking test 005 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -198,14 +198,14 @@ Checking test 005 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 716.599777 -0:The maximum resident set size (KB) = 791812 +0:The total amount of wall time = 720.757002 +0:The maximum resident set size (KB) = 791772 Test 005 rap_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control -working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/rap_decomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/rap_decomp Checking test 006 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -252,14 +252,14 @@ Checking test 006 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 721.883137 -0:The maximum resident set size (KB) = 791028 +0:The total amount of wall time = 724.900562 +0:The maximum resident set size (KB) = 791168 Test 006 rap_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control -working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/rap_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/rap_2threads Checking test 007 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -306,14 +306,14 @@ Checking test 007 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 662.599193 -0:The maximum resident set size (KB) = 864036 +0:The total amount of wall time = 665.992351 +0:The maximum resident set size (KB) = 864000 Test 007 rap_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control -working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/rap_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/rap_restart Checking test 008 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -352,14 +352,14 @@ Checking test 008 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 359.887123 -0:The maximum resident set size (KB) = 538688 +0:The total amount of wall time = 359.234666 +0:The maximum resident set size (KB) = 539728 Test 008 rap_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/rap_sfcdiff Checking test 009 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -406,14 +406,14 @@ Checking test 009 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 708.386958 -0:The maximum resident set size (KB) = 791560 +0:The total amount of wall time = 712.385185 +0:The maximum resident set size (KB) = 791656 Test 009 rap_sfcdiff PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/rap_sfcdiff_decomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/rap_sfcdiff_decomp Checking test 010 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -460,14 +460,14 @@ Checking test 010 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 720.789035 -0:The maximum resident set size (KB) = 790924 +0:The total amount of wall time = 724.119539 +0:The maximum resident set size (KB) = 790620 Test 010 rap_sfcdiff_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/rap_sfcdiff_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/rap_sfcdiff_restart Checking test 011 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -506,14 +506,14 @@ Checking test 011 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 530.612586 -0:The maximum resident set size (KB) = 543872 +0:The total amount of wall time = 536.018073 +0:The maximum resident set size (KB) = 543616 Test 011 rap_sfcdiff_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control -working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/hrrr_control Checking test 012 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -560,14 +560,14 @@ Checking test 012 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 690.454761 -0:The maximum resident set size (KB) = 789124 +0:The total amount of wall time = 688.484611 +0:The maximum resident set size (KB) = 789244 Test 012 hrrr_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control -working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/hrrr_control_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/hrrr_control_2threads Checking test 013 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -614,14 +614,14 @@ Checking test 013 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 625.494007 -0:The maximum resident set size (KB) = 858760 +0:The total amount of wall time = 625.557772 +0:The maximum resident set size (KB) = 858964 Test 013 hrrr_control_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control -working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/hrrr_control_decomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/hrrr_control_decomp Checking test 014 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -668,14 +668,14 @@ Checking test 014 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 684.658902 -0:The maximum resident set size (KB) = 788472 +0:The total amount of wall time = 689.981571 +0:The maximum resident set size (KB) = 788320 Test 014 hrrr_control_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control -working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/hrrr_control_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/hrrr_control_restart Checking test 015 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -714,14 +714,14 @@ Checking test 015 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 513.766808 -0:The maximum resident set size (KB) = 540112 +0:The total amount of wall time = 517.281511 +0:The maximum resident set size (KB) = 539700 Test 015 hrrr_control_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_v1beta -working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/rrfs_v1beta +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/rrfs_v1beta Checking test 016 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -768,14 +768,14 @@ Checking test 016 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 696.567278 -0:The maximum resident set size (KB) = 788488 +0:The total amount of wall time = 699.745081 +0:The maximum resident set size (KB) = 788712 Test 016 rrfs_v1beta PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/rrfs_conus13km_hrrr_warm Checking test 017 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -784,14 +784,14 @@ Checking test 017 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 203.347105 -0:The maximum resident set size (KB) = 606764 +0:The total amount of wall time = 203.332557 +0:The maximum resident set size (KB) = 607236 Test 017 rrfs_conus13km_hrrr_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/rrfs_smoke_conus13km_hrrr_warm Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -800,14 +800,14 @@ Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 222.235199 -0:The maximum resident set size (KB) = 620912 +0:The total amount of wall time = 222.791426 +0:The maximum resident set size (KB) = 621268 Test 018 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/rrfs_conus13km_radar_tten_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/rrfs_conus13km_radar_tten_warm Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -816,14 +816,14 @@ Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 204.610876 -0:The maximum resident set size (KB) = 609516 +0:The total amount of wall time = 204.815189 +0:The maximum resident set size (KB) = 610036 Test 019 rrfs_conus13km_radar_tten_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/rrfs_conus13km_radar_tten_warm_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/rrfs_conus13km_radar_tten_warm_2threads Checking test 020 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -832,208 +832,208 @@ Checking test 020 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 132.244094 -0:The maximum resident set size (KB) = 628024 +0:The total amount of wall time = 131.612612 +0:The maximum resident set size (KB) = 628072 Test 020 rrfs_conus13km_radar_tten_warm_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/control_diag_debug -working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/control_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/control_diag_debug Checking test 021 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 88.614296 -0:The maximum resident set size (KB) = 494824 +0:The total amount of wall time = 89.398106 +0:The maximum resident set size (KB) = 495308 Test 021 control_diag_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/regional_debug -working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/regional_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/regional_debug Checking test 022 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 478.054598 -0:The maximum resident set size (KB) = 569548 +0:The total amount of wall time = 487.354861 +0:The maximum resident set size (KB) = 569872 Test 022 regional_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_debug -working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/rap_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/rap_control_debug Checking test 023 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 150.189045 -0:The maximum resident set size (KB) = 808652 +0:The total amount of wall time = 151.733616 +0:The maximum resident set size (KB) = 808852 Test 023 rap_control_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_debug -working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/hrrr_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/hrrr_control_debug Checking test 024 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 147.372037 -0:The maximum resident set size (KB) = 804500 +0:The total amount of wall time = 149.082778 +0:The maximum resident set size (KB) = 804240 Test 024 hrrr_control_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_diag_debug -working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/rap_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/rap_diag_debug Checking test 025 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 159.798912 -0:The maximum resident set size (KB) = 891604 +0:The total amount of wall time = 160.985102 +0:The maximum resident set size (KB) = 891584 Test 025 rap_diag_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/rap_noah_sfcdiff_cires_ugwp_debug Checking test 026 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 239.166114 -0:The maximum resident set size (KB) = 806768 +0:The total amount of wall time = 247.224647 +0:The maximum resident set size (KB) = 807108 Test 026 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_progcld_thompson_debug -working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/rap_progcld_thompson_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/rap_progcld_thompson_debug Checking test 027 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 150.500044 -0:The maximum resident set size (KB) = 808596 +0:The total amount of wall time = 156.783625 +0:The maximum resident set size (KB) = 808532 Test 027 rap_progcld_thompson_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_v1beta_debug -working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/rrfs_v1beta_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/rrfs_v1beta_debug Checking test 028 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 149.394566 -0:The maximum resident set size (KB) = 803764 +0:The total amount of wall time = 155.535535 +0:The maximum resident set size (KB) = 803784 Test 028 rrfs_v1beta_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/control_ras_debug -working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/control_ras_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/control_ras_debug Checking test 029 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 86.750733 -0:The maximum resident set size (KB) = 449064 +0:The total amount of wall time = 86.222805 +0:The maximum resident set size (KB) = 449184 Test 029 control_ras_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/control_stochy_debug -working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/control_stochy_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/control_stochy_debug Checking test 030 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 93.542052 -0:The maximum resident set size (KB) = 441300 +0:The total amount of wall time = 93.775283 +0:The maximum resident set size (KB) = 441604 Test 030 control_stochy_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/control_debug_p8 -working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/control_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/control_debug_p8 Checking test 031 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 96.369629 -0:The maximum resident set size (KB) = 1224636 +0:The total amount of wall time = 97.387139 +0:The maximum resident set size (KB) = 1224836 Test 031 control_debug_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/rrfs_conus13km_hrrr_warm_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/rrfs_conus13km_hrrr_warm_debug Checking test 032 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 386.648972 -0:The maximum resident set size (KB) = 613684 +0:The total amount of wall time = 390.849080 +0:The maximum resident set size (KB) = 615124 Test 032 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_conus13km_radar_tten_warm_debug -working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/rrfs_conus13km_radar_tten_warm_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/rrfs_conus13km_radar_tten_warm_debug Checking test 033 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 387.851091 -0:The maximum resident set size (KB) = 616476 +0:The total amount of wall time = 392.236712 +0:The maximum resident set size (KB) = 617168 Test 033 rrfs_conus13km_radar_tten_warm_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/control_wam_debug -working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/control_wam_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/control_wam_debug Checking test 034 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 147.132594 -0:The maximum resident set size (KB) = 184428 +0:The total amount of wall time = 144.503623 +0:The maximum resident set size (KB) = 184768 Test 034 control_wam_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/rap_control_dyn32_phy32 Checking test 035 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1080,14 +1080,14 @@ Checking test 035 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 686.838660 -0:The maximum resident set size (KB) = 673088 +0:The total amount of wall time = 687.351071 +0:The maximum resident set size (KB) = 672700 Test 035 rap_control_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/hrrr_control_dyn32_phy32 Checking test 036 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1134,14 +1134,14 @@ Checking test 036 hrrr_control_dyn32_phy32 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 = 349.977048 -0:The maximum resident set size (KB) = 672020 +0:The total amount of wall time = 350.121407 +0:The maximum resident set size (KB) = 671148 Test 036 hrrr_control_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/rap_2threads_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/rap_2threads_dyn32_phy32 Checking test 037 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1188,14 +1188,14 @@ Checking test 037 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 625.744870 -0:The maximum resident set size (KB) = 718268 +0:The total amount of wall time = 626.961810 +0:The maximum resident set size (KB) = 718820 Test 037 rap_2threads_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/hrrr_control_2threads_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/hrrr_control_2threads_dyn32_phy32 Checking test 038 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1242,14 +1242,14 @@ Checking test 038 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 323.371820 -0:The maximum resident set size (KB) = 715488 +0:The total amount of wall time = 320.328550 +0:The maximum resident set size (KB) = 715544 Test 038 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/hrrr_control_decomp_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/hrrr_control_decomp_dyn32_phy32 Checking test 039 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1296,14 +1296,14 @@ Checking test 039 hrrr_control_decomp_dyn32_phy32 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 = 349.172747 -0:The maximum resident set size (KB) = 670404 +0:The total amount of wall time = 350.521383 +0:The maximum resident set size (KB) = 669972 Test 039 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/rap_restart_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/rap_restart_dyn32_phy32 Checking test 040 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1342,14 +1342,14 @@ Checking test 040 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 514.755627 -0:The maximum resident set size (KB) = 511216 +0:The total amount of wall time = 516.767068 +0:The maximum resident set size (KB) = 510800 Test 040 rap_restart_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/hrrr_control_restart_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/hrrr_control_restart_dyn32_phy32 Checking test 041 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1388,14 +1388,14 @@ Checking test 041 hrrr_control_restart_dyn32_phy32 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 = 177.148864 -0:The maximum resident set size (KB) = 506772 +0:The total amount of wall time = 177.740612 +0:The maximum resident set size (KB) = 506580 Test 041 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_dyn64_phy32 -working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/rap_control_dyn64_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/rap_control_dyn64_phy32 Checking test 042 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1442,56 +1442,56 @@ Checking test 042 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 412.148256 -0:The maximum resident set size (KB) = 693880 +0:The total amount of wall time = 407.680738 +0:The maximum resident set size (KB) = 692440 Test 042 rap_control_dyn64_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/rap_control_debug_dyn32_phy32 Checking test 043 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 148.864944 -0:The maximum resident set size (KB) = 690632 +0:The total amount of wall time = 147.791945 +0:The maximum resident set size (KB) = 690472 Test 043 rap_control_debug_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/hrrr_control_debug_dyn32_phy32 Checking test 044 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 146.245798 -0:The maximum resident set size (KB) = 687604 +0:The total amount of wall time = 146.668937 +0:The maximum resident set size (KB) = 687392 Test 044 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/rap_control_dyn64_phy32_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/rap_control_dyn64_phy32_debug Checking test 045 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 154.861299 -0:The maximum resident set size (KB) = 711024 +0:The total amount of wall time = 154.395899 +0:The maximum resident set size (KB) = 711048 Test 045 rap_control_dyn64_phy32_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/cpld_control_p8 Checking test 046 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1556,14 +1556,14 @@ Checking test 046 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 503.850329 -0:The maximum resident set size (KB) = 3159516 +0:The total amount of wall time = 501.789432 +0:The maximum resident set size (KB) = 3163664 Test 046 cpld_control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/cpld_control_nowave_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/cpld_control_nowave_noaero_p8 Checking test 047 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1625,14 +1625,14 @@ Checking test 047 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 254.203051 -0:The maximum resident set size (KB) = 1239768 +0:The total amount of wall time = 251.062112 +0:The maximum resident set size (KB) = 1240224 Test 047 cpld_control_nowave_noaero_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/cpld_debug_p8 -working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/cpld_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/cpld_debug_p8 Checking test 048 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1685,25 +1685,25 @@ Checking test 048 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 277.754628 -0:The maximum resident set size (KB) = 3177700 +0:The total amount of wall time = 278.066811 +0:The maximum resident set size (KB) = 3180388 Test 048 cpld_debug_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/datm_cdeps_control_cfsr -working dir = /glade/scratch/jongkim/rt-1645-gnu/jongkim/FV3_RT/rt_69607/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/datm_cdeps_control_cfsr Checking test 049 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 179.402468 -0:The maximum resident set size (KB) = 674556 +0:The total amount of wall time = 173.784212 +0:The maximum resident set size (KB) = 672024 Test 049 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Wed Mar 8 10:17:15 MST 2023 -Elapsed time: 00h:36m:47s. Have a nice day! +Fri Mar 10 08:21:00 MST 2023 +Elapsed time: 01h:27m:17s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 9d58891e775..474f17a639a 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,45 +1,42 @@ -Wed Mar 8 07:52:36 MST 2023 +Fri Mar 10 06:38:25 MST 2023 Start Regression test -Test 008 compile FAIL - -Test 008 compile FAIL - -Compile 001 elapsed time 1388 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 1450 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 1360 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 433 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 379 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 1076 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 1087 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 1027 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 987 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 916 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 801 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 1262 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 1466 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1400 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 1363 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 443 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 391 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 1066 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 1077 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 1750 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 1032 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 983 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 928 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 797 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 1273 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile 014 elapsed time 406 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 257 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 818 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 265 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 828 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile 017 elapsed time 822 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 274 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 264 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug Compile 019 elapsed time 269 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 1120 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 021 elapsed time 348 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 1564 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 1107 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 024 elapsed time 430 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 201 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 434 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 109 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 937 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 969 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 883 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 858 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 020 elapsed time 1105 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 021 elapsed time 346 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 1573 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 1102 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 024 elapsed time 432 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 205 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 426 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 108 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 941 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 982 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 892 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 884 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile 032 elapsed time 299 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 1025 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 033 elapsed time 1035 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_mixedmode -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/cpld_control_p8_mixedmode +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -104,14 +101,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 319.764874 -0:The maximum resident set size (KB) = 2698756 +0:The total amount of wall time = 320.482175 +0:The maximum resident set size (KB) = 2698412 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_gfsv17 -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/cpld_control_gfsv17 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -175,14 +172,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 286.897062 -0:The maximum resident set size (KB) = 1437628 +0:The total amount of wall time = 277.282087 +0:The maximum resident set size (KB) = 1437724 Test 002 cpld_control_gfsv17 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -247,14 +244,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 324.232075 -0:The maximum resident set size (KB) = 2716500 +0:The total amount of wall time = 323.836019 +0:The maximum resident set size (KB) = 2716388 Test 003 cpld_control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/cpld_restart_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -307,14 +304,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 193.400208 -0:The maximum resident set size (KB) = 2576828 +0:The total amount of wall time = 183.027772 +0:The maximum resident set size (KB) = 2577500 Test 004 cpld_restart_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/cpld_2threads_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -367,14 +364,14 @@ Checking test 005 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 259.582061 -0:The maximum resident set size (KB) = 3176256 +0:The total amount of wall time = 261.483758 +0:The maximum resident set size (KB) = 3176356 Test 005 cpld_2threads_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/cpld_decomp_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/cpld_decomp_p8 Checking test 006 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -427,14 +424,14 @@ Checking test 006 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 324.071740 -0:The maximum resident set size (KB) = 2721408 +0:The total amount of wall time = 317.533437 +0:The maximum resident set size (KB) = 2720872 Test 006 cpld_decomp_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/cpld_mpi_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/cpld_mpi_p8 Checking test 007 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -487,14 +484,14 @@ Checking test 007 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 270.034851 -0:The maximum resident set size (KB) = 2682656 +0:The total amount of wall time = 271.777148 +0:The maximum resident set size (KB) = 2682304 Test 007 cpld_mpi_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_ciceC_p8 -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/cpld_control_ciceC_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/cpld_control_ciceC_p8 Checking test 008 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -559,14 +556,14 @@ Checking test 008 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 323.834970 -0:The maximum resident set size (KB) = 2716464 +0:The total amount of wall time = 316.741500 +0:The maximum resident set size (KB) = 2716404 Test 008 cpld_control_ciceC_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/cpld_control_c192_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/cpld_control_c192_p8 Checking test 009 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -619,14 +616,14 @@ Checking test 009 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -0:The total amount of wall time = 797.878761 -0:The maximum resident set size (KB) = 3348412 +0:The total amount of wall time = 766.722819 +0:The maximum resident set size (KB) = 3349588 Test 009 cpld_control_c192_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/cpld_restart_c192_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/cpld_restart_c192_p8 Checking test 010 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -679,14 +676,14 @@ Checking test 010 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -0:The total amount of wall time = 445.663162 -0:The maximum resident set size (KB) = 3272024 +0:The total amount of wall time = 440.735534 +0:The maximum resident set size (KB) = 3272156 Test 010 cpld_restart_c192_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8 -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/cpld_control_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/cpld_control_noaero_p8 Checking test 011 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -750,14 +747,14 @@ Checking test 011 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 297.129627 -0:The maximum resident set size (KB) = 1436396 +0:The total amount of wall time = 297.727829 +0:The maximum resident set size (KB) = 1436348 Test 011 cpld_control_noaero_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/cpld_control_nowave_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/cpld_control_nowave_noaero_p8 Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -819,14 +816,14 @@ Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 196.356868 -0:The maximum resident set size (KB) = 1452420 +0:The total amount of wall time = 195.921304 +0:The maximum resident set size (KB) = 1452672 Test 012 cpld_control_nowave_noaero_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_debug_p8 -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/cpld_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/cpld_debug_p8 Checking test 013 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -879,14 +876,14 @@ Checking test 013 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 474.638104 -0:The maximum resident set size (KB) = 2788156 +0:The total amount of wall time = 474.787837 +0:The maximum resident set size (KB) = 2788252 Test 013 cpld_debug_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_debug_noaero_p8 -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/cpld_debug_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/cpld_debug_noaero_p8 Checking test 014 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -938,14 +935,14 @@ Checking test 014 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 350.390380 -0:The maximum resident set size (KB) = 1460504 +0:The total amount of wall time = 351.357021 +0:The maximum resident set size (KB) = 1460624 Test 014 cpld_debug_noaero_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8_agrid -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/cpld_control_noaero_p8_agrid +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/cpld_control_noaero_p8_agrid Checking test 015 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1007,14 +1004,14 @@ Checking test 015 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 277.132353 -0:The maximum resident set size (KB) = 1455992 +0:The total amount of wall time = 264.790059 +0:The maximum resident set size (KB) = 1455868 Test 015 cpld_control_noaero_p8_agrid PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c48 -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/cpld_control_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/cpld_control_c48 Checking test 016 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1064,14 +1061,14 @@ Checking test 016 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 606.277361 -0:The maximum resident set size (KB) = 2580396 +0:The total amount of wall time = 609.191927 +0:The maximum resident set size (KB) = 2580160 Test 016 cpld_control_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/cpld_warmstart_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/cpld_warmstart_c48 Checking test 017 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1121,14 +1118,14 @@ Checking test 017 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -0:The total amount of wall time = 161.530110 -0:The maximum resident set size (KB) = 2598908 +0:The total amount of wall time = 161.452146 +0:The maximum resident set size (KB) = 2599004 Test 017 cpld_warmstart_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/cpld_restart_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/cpld_restart_c48 Checking test 018 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1178,14 +1175,86 @@ Checking test 018 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -0:The total amount of wall time = 84.386872 -0:The maximum resident set size (KB) = 2016028 +0:The total amount of wall time = 84.146371 +0:The maximum resident set size (KB) = 2016160 Test 018 cpld_restart_c48 PASS +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_faster +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/cpld_control_p8_faster +Checking test 019 cpld_control_p8_faster results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + +0:The total amount of wall time = 313.430155 +0:The maximum resident set size (KB) = 2716180 + +Test 019 cpld_control_p8_faster PASS + + baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_CubedSphereGrid +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/control_CubedSphereGrid Checking test 020 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1212,28 +1281,28 @@ Checking test 020 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -0:The total amount of wall time = 142.481044 -0:The maximum resident set size (KB) = 456792 +0:The total amount of wall time = 147.161759 +0:The maximum resident set size (KB) = 456832 Test 020 control_CubedSphereGrid PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid_parallel -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_CubedSphereGrid_parallel +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/control_CubedSphereGrid_parallel Checking test 021 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc .........OK + Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf024.nc .........OK -0:The total amount of wall time = 139.228397 -0:The maximum resident set size (KB) = 456860 +0:The total amount of wall time = 142.048790 +0:The maximum resident set size (KB) = 456820 Test 021 control_CubedSphereGrid_parallel PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_latlon -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_latlon +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/control_latlon Checking test 022 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1244,32 +1313,32 @@ Checking test 022 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 147.198123 -0:The maximum resident set size (KB) = 456784 +0:The total amount of wall time = 144.663556 +0:The maximum resident set size (KB) = 456808 Test 022 control_latlon PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_wrtGauss_netcdf_parallel +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/control_wrtGauss_netcdf_parallel Checking test 023 control_wrtGauss_netcdf_parallel results .... - Comparing sfcf000.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 149.425568 -0:The maximum resident set size (KB) = 456632 +0:The total amount of wall time = 149.161031 +0:The maximum resident set size (KB) = 456624 Test 023 control_wrtGauss_netcdf_parallel PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c48 -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/control_c48 Checking test 024 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1308,14 +1377,14 @@ Checking test 024 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 444.291297 -0:The maximum resident set size (KB) = 628928 +0:The total amount of wall time = 443.252340 +0:The maximum resident set size (KB) = 628916 Test 024 control_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c192 -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_c192 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/control_c192 Checking test 025 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1326,14 +1395,14 @@ Checking test 025 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 597.132792 -0:The maximum resident set size (KB) = 557028 +0:The total amount of wall time = 589.725469 +0:The maximum resident set size (KB) = 557088 Test 025 control_c192 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384 -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_c384 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/control_c384 Checking test 026 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1344,14 +1413,14 @@ Checking test 026 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 603.043463 -0:The maximum resident set size (KB) = 891052 +0:The total amount of wall time = 601.336003 +0:The maximum resident set size (KB) = 888996 Test 026 control_c384 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384gdas -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_c384gdas +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/control_c384gdas Checking test 027 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1394,14 +1463,14 @@ Checking test 027 control_c384gdas 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 = 530.180295 -0:The maximum resident set size (KB) = 1016128 +0:The total amount of wall time = 538.836871 +0:The maximum resident set size (KB) = 1014924 Test 027 control_c384gdas PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_stochy +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/control_stochy Checking test 028 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1412,28 +1481,28 @@ Checking test 028 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 98.435793 -0:The maximum resident set size (KB) = 455096 +0:The total amount of wall time = 97.008233 +0:The maximum resident set size (KB) = 455024 Test 028 control_stochy PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_stochy_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/control_stochy_restart Checking test 029 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 52.078760 -0:The maximum resident set size (KB) = 225996 +0:The total amount of wall time = 51.437674 +0:The maximum resident set size (KB) = 225724 Test 029 control_stochy_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_lndp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/control_lndp Checking test 030 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1444,14 +1513,14 @@ Checking test 030 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 90.672073 -0:The maximum resident set size (KB) = 456672 +0:The total amount of wall time = 90.523037 +0:The maximum resident set size (KB) = 456404 Test 030 control_lndp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr4 -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_iovr4 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/control_iovr4 Checking test 031 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1466,14 +1535,14 @@ Checking test 031 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 149.741960 -0:The maximum resident set size (KB) = 456800 +0:The total amount of wall time = 147.666624 +0:The maximum resident set size (KB) = 456888 Test 031 control_iovr4 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr5 -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_iovr5 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/control_iovr5 Checking test 032 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1488,14 +1557,14 @@ Checking test 032 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 146.957344 -0:The maximum resident set size (KB) = 456796 +0:The total amount of wall time = 145.142471 +0:The maximum resident set size (KB) = 456648 Test 032 control_iovr5 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/control_p8 Checking test 033 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1542,14 +1611,14 @@ Checking test 033 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 180.878236 -0:The maximum resident set size (KB) = 1422872 +0:The total amount of wall time = 181.108208 +0:The maximum resident set size (KB) = 1422844 Test 033 control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_lndp -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_p8_lndp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/control_p8_lndp Checking test 034 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1568,14 +1637,14 @@ Checking test 034 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -0:The total amount of wall time = 339.227094 -0:The maximum resident set size (KB) = 1423164 +0:The total amount of wall time = 337.122032 +0:The maximum resident set size (KB) = 1423168 Test 034 control_p8_lndp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_restart_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/control_restart_p8 Checking test 035 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1614,14 +1683,14 @@ Checking test 035 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 95.799222 -0:The maximum resident set size (KB) = 582372 +0:The total amount of wall time = 95.497102 +0:The maximum resident set size (KB) = 582332 Test 035 control_restart_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_decomp_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/control_decomp_p8 Checking test 036 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1664,14 +1733,14 @@ Checking test 036 control_decomp_p8 results .... Comparing 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.649807 -0:The maximum resident set size (KB) = 1417092 +0:The total amount of wall time = 188.533755 +0:The maximum resident set size (KB) = 1417036 Test 036 control_decomp_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_2threads_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/control_2threads_p8 Checking test 037 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1714,14 +1783,14 @@ Checking test 037 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 180.265070 -0:The maximum resident set size (KB) = 1505088 +0:The total amount of wall time = 174.131274 +0:The maximum resident set size (KB) = 1505124 Test 037 control_2threads_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_rrtmgp -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_p8_rrtmgp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/control_p8_rrtmgp Checking test 038 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1768,14 +1837,14 @@ Checking test 038 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 254.061013 -0:The maximum resident set size (KB) = 1480704 +0:The total amount of wall time = 254.084645 +0:The maximum resident set size (KB) = 1480748 Test 038 control_p8_rrtmgp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/merra2_thompson -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/merra2_thompson +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/merra2_thompson Checking test 039 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1822,14 +1891,14 @@ Checking test 039 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 208.419096 -0:The maximum resident set size (KB) = 1429788 +0:The total amount of wall time = 206.584351 +0:The maximum resident set size (KB) = 1429744 Test 039 merra2_thompson PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/regional_control Checking test 040 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1840,28 +1909,28 @@ Checking test 040 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 344.138523 -0:The maximum resident set size (KB) = 603116 +0:The total amount of wall time = 346.114182 +0:The maximum resident set size (KB) = 603140 Test 040 regional_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/regional_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/regional_restart Checking test 041 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 176.510547 -0:The maximum resident set size (KB) = 593548 +0:The total amount of wall time = 169.151379 +0:The maximum resident set size (KB) = 593464 Test 041 regional_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/regional_decomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/regional_decomp Checking test 042 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1872,14 +1941,14 @@ Checking test 042 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 364.601721 -0:The maximum resident set size (KB) = 597240 +0:The total amount of wall time = 362.926387 +0:The maximum resident set size (KB) = 597148 Test 042 regional_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/regional_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/regional_2threads Checking test 043 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1890,14 +1959,14 @@ Checking test 043 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 209.276611 -0:The maximum resident set size (KB) = 609752 +0:The total amount of wall time = 212.079933 +0:The maximum resident set size (KB) = 609952 Test 043 regional_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_noquilt -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/regional_noquilt +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/regional_noquilt Checking test 044 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1905,28 +1974,28 @@ Checking test 044 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -0:The total amount of wall time = 369.014614 -0:The maximum resident set size (KB) = 597632 +0:The total amount of wall time = 372.128282 +0:The maximum resident set size (KB) = 597616 Test 044 regional_noquilt PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_netcdf_parallel -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/regional_netcdf_parallel +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/regional_netcdf_parallel Checking test 045 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK + Comparing dynf006.nc ............ALT CHECK......OK Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf006.nc ............ALT CHECK......OK -0:The total amount of wall time = 344.770467 -0:The maximum resident set size (KB) = 595076 +0:The total amount of wall time = 339.164087 +0:The maximum resident set size (KB) = 595096 Test 045 regional_netcdf_parallel PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/regional_2dwrtdecomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/regional_2dwrtdecomp Checking test 046 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1937,14 +2006,14 @@ Checking test 046 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 347.526502 -0:The maximum resident set size (KB) = 603168 +0:The total amount of wall time = 343.792078 +0:The maximum resident set size (KB) = 603148 Test 046 regional_2dwrtdecomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/fv3_regional_wofs -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/regional_wofs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/regional_wofs Checking test 047 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1955,14 +2024,14 @@ Checking test 047 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 427.166258 -0:The maximum resident set size (KB) = 274564 +0:The total amount of wall time = 414.305080 +0:The maximum resident set size (KB) = 274460 Test 047 regional_wofs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/rap_control Checking test 048 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2009,14 +2078,14 @@ Checking test 048 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 474.172232 -0:The maximum resident set size (KB) = 826476 +0:The total amount of wall time = 477.972619 +0:The maximum resident set size (KB) = 826164 Test 048 rap_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/regional_spp_sppt_shum_skeb +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/regional_spp_sppt_shum_skeb Checking test 049 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2027,14 +2096,14 @@ Checking test 049 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 325.298543 -0:The maximum resident set size (KB) = 949272 +0:The total amount of wall time = 326.996245 +0:The maximum resident set size (KB) = 949300 Test 049 regional_spp_sppt_shum_skeb PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rap_decomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/rap_decomp Checking test 050 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2081,14 +2150,14 @@ Checking test 050 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 499.846370 -0:The maximum resident set size (KB) = 823680 +0:The total amount of wall time = 505.979303 +0:The maximum resident set size (KB) = 823580 Test 050 rap_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rap_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/rap_2threads Checking test 051 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2135,14 +2204,14 @@ Checking test 051 rap_2threads results .... Comparing 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.702290 -0:The maximum resident set size (KB) = 892632 +0:The total amount of wall time = 465.216164 +0:The maximum resident set size (KB) = 892680 Test 051 rap_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rap_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/rap_restart Checking test 052 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2181,14 +2250,14 @@ Checking test 052 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 241.521778 -0:The maximum resident set size (KB) = 572740 +0:The total amount of wall time = 242.891694 +0:The maximum resident set size (KB) = 572800 Test 052 rap_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/rap_sfcdiff Checking test 053 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2235,14 +2304,14 @@ Checking test 053 rap_sfcdiff results .... Comparing 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.318682 -0:The maximum resident set size (KB) = 826452 +0:The total amount of wall time = 470.318077 +0:The maximum resident set size (KB) = 826456 Test 053 rap_sfcdiff PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rap_sfcdiff_decomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/rap_sfcdiff_decomp Checking test 054 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2289,14 +2358,14 @@ Checking test 054 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 496.741837 -0:The maximum resident set size (KB) = 825532 +0:The total amount of wall time = 492.111412 +0:The maximum resident set size (KB) = 825500 Test 054 rap_sfcdiff_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rap_sfcdiff_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/rap_sfcdiff_restart Checking test 055 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2335,14 +2404,14 @@ Checking test 055 rap_sfcdiff_restart results .... Comparing 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.622434 -0:The maximum resident set size (KB) = 570140 +0:The total amount of wall time = 354.376851 +0:The maximum resident set size (KB) = 570024 Test 055 rap_sfcdiff_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/hrrr_control Checking test 056 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2389,14 +2458,14 @@ Checking test 056 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 453.301928 -0:The maximum resident set size (KB) = 821596 +0:The total amount of wall time = 453.899563 +0:The maximum resident set size (KB) = 821300 Test 056 hrrr_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hrrr_control_decomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/hrrr_control_decomp Checking test 057 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2443,14 +2512,14 @@ Checking test 057 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 480.925779 -0:The maximum resident set size (KB) = 820388 +0:The total amount of wall time = 473.240490 +0:The maximum resident set size (KB) = 820252 Test 057 hrrr_control_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hrrr_control_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/hrrr_control_2threads Checking test 058 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2497,14 +2566,14 @@ Checking test 058 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 432.803841 -0:The maximum resident set size (KB) = 888012 +0:The total amount of wall time = 430.765278 +0:The maximum resident set size (KB) = 887936 Test 058 hrrr_control_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hrrr_control_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/hrrr_control_restart Checking test 059 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2543,14 +2612,14 @@ Checking test 059 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 342.513922 -0:The maximum resident set size (KB) = 568828 +0:The total amount of wall time = 343.356341 +0:The maximum resident set size (KB) = 568652 Test 059 hrrr_control_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rrfs_v1beta +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/rrfs_v1beta Checking test 060 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2597,14 +2666,14 @@ Checking test 060 rrfs_v1beta results .... Comparing 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.419895 -0:The maximum resident set size (KB) = 820024 +0:The total amount of wall time = 466.428015 +0:The maximum resident set size (KB) = 820016 Test 060 rrfs_v1beta PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rrfs_v1nssl +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/rrfs_v1nssl Checking test 061 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2619,14 +2688,14 @@ Checking test 061 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 575.110996 -0:The maximum resident set size (KB) = 508324 +0:The total amount of wall time = 565.029304 +0:The maximum resident set size (KB) = 508192 Test 061 rrfs_v1nssl PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rrfs_v1nssl_nohailnoccn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/rrfs_v1nssl_nohailnoccn Checking test 062 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2641,14 +2710,14 @@ Checking test 062 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 558.830331 -0:The maximum resident set size (KB) = 501304 +0:The total amount of wall time = 554.065625 +0:The maximum resident set size (KB) = 501268 Test 062 rrfs_v1nssl_nohailnoccn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/rrfs_conus13km_hrrr_warm Checking test 063 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2657,14 +2726,14 @@ Checking test 063 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 128.523263 -0:The maximum resident set size (KB) = 639096 +0:The total amount of wall time = 129.303851 +0:The maximum resident set size (KB) = 639180 Test 063 rrfs_conus13km_hrrr_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/rrfs_smoke_conus13km_hrrr_warm Checking test 064 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2673,14 +2742,14 @@ Checking test 064 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 145.404911 -0:The maximum resident set size (KB) = 652796 +0:The total amount of wall time = 145.591474 +0:The maximum resident set size (KB) = 653004 Test 064 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rrfs_conus13km_radar_tten_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/rrfs_conus13km_radar_tten_warm Checking test 065 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2689,14 +2758,14 @@ Checking test 065 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 129.005964 -0:The maximum resident set size (KB) = 641024 +0:The total amount of wall time = 129.276477 +0:The maximum resident set size (KB) = 641284 Test 065 rrfs_conus13km_radar_tten_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rrfs_conus13km_hrrr_warm_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/rrfs_conus13km_hrrr_warm_2threads Checking test 066 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2705,14 +2774,14 @@ Checking test 066 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 81.553036 -0:The maximum resident set size (KB) = 655352 +0:The total amount of wall time = 82.878171 +0:The maximum resident set size (KB) = 655532 Test 066 rrfs_conus13km_hrrr_warm_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rrfs_conus13km_radar_tten_warm_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/rrfs_conus13km_radar_tten_warm_2threads Checking test 067 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2721,14 +2790,14 @@ Checking test 067 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 81.308455 -0:The maximum resident set size (KB) = 659160 +0:The total amount of wall time = 83.128396 +0:The maximum resident set size (KB) = 658276 Test 067 rrfs_conus13km_radar_tten_warm_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_csawmg +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/control_csawmg Checking test 068 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2739,14 +2808,14 @@ Checking test 068 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 397.699017 -0:The maximum resident set size (KB) = 529012 +0:The total amount of wall time = 399.729889 +0:The maximum resident set size (KB) = 529056 Test 068 control_csawmg PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_csawmgt +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/control_csawmgt Checking test 069 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2757,14 +2826,14 @@ Checking test 069 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 391.307898 -0:The maximum resident set size (KB) = 529016 +0:The total amount of wall time = 394.507380 +0:The maximum resident set size (KB) = 529008 Test 069 control_csawmgt PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_ras +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/control_ras Checking test 070 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2775,26 +2844,26 @@ Checking test 070 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 204.705731 -0:The maximum resident set size (KB) = 487808 +0:The total amount of wall time = 204.112985 +0:The maximum resident set size (KB) = 487632 Test 070 control_ras PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_wam +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/control_wam Checking test 071 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -0:The total amount of wall time = 129.184031 -0:The maximum resident set size (KB) = 205612 +0:The total amount of wall time = 123.823938 +0:The maximum resident set size (KB) = 205740 Test 071 control_wam PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_faster -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_p8_faster +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/control_p8_faster Checking test 072 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2841,14 +2910,14 @@ Checking test 072 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 171.617245 -0:The maximum resident set size (KB) = 1422764 +0:The total amount of wall time = 171.062165 +0:The maximum resident set size (KB) = 1422808 Test 072 control_p8_faster PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control_faster -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/regional_control_faster +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/regional_control_faster Checking test 073 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2859,42 +2928,42 @@ Checking test 073 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 323.691585 -0:The maximum resident set size (KB) = 603048 +0:The total amount of wall time = 325.099725 +0:The maximum resident set size (KB) = 603052 Test 073 regional_control_faster PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rrfs_conus13km_hrrr_warm_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/rrfs_conus13km_hrrr_warm_debug Checking test 074 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 766.531668 +0:The total amount of wall time = 769.832307 0:The maximum resident set size (KB) = 672144 Test 074 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rrfs_conus13km_radar_tten_warm_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/rrfs_conus13km_radar_tten_warm_debug Checking test 075 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 766.863624 -0:The maximum resident set size (KB) = 673940 +0:The total amount of wall time = 770.754878 +0:The maximum resident set size (KB) = 673976 Test 075 rrfs_conus13km_radar_tten_warm_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid_debug -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_CubedSphereGrid_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/control_CubedSphereGrid_debug Checking test 076 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2921,334 +2990,334 @@ Checking test 076 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -0:The total amount of wall time = 174.774392 -0:The maximum resident set size (KB) = 621612 +0:The total amount of wall time = 177.871503 +0:The maximum resident set size (KB) = 621772 Test 076 control_CubedSphereGrid_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_wrtGauss_netcdf_parallel_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/control_wrtGauss_netcdf_parallel_debug Checking test 077 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK - Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 163.204019 -0:The maximum resident set size (KB) = 621344 +0:The total amount of wall time = 162.934794 +0:The maximum resident set size (KB) = 621436 Test 077 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy_debug -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_stochy_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/control_stochy_debug Checking test 078 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 184.674395 -0:The maximum resident set size (KB) = 625128 +0:The total amount of wall time = 184.422807 +0:The maximum resident set size (KB) = 625140 Test 078 control_stochy_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp_debug -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_lndp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/control_lndp_debug Checking test 079 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 165.369379 -0:The maximum resident set size (KB) = 627056 +0:The total amount of wall time = 169.852034 +0:The maximum resident set size (KB) = 627184 Test 079 control_lndp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg_debug -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_csawmg_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/control_csawmg_debug Checking test 080 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 257.832407 -0:The maximum resident set size (KB) = 671408 +0:The total amount of wall time = 260.110130 +0:The maximum resident set size (KB) = 671312 Test 080 control_csawmg_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt_debug -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_csawmgt_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/control_csawmgt_debug Checking test 081 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 253.427256 -0:The maximum resident set size (KB) = 671112 +0:The total amount of wall time = 254.125311 +0:The maximum resident set size (KB) = 671124 Test 081 control_csawmgt_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras_debug -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_ras_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/control_ras_debug Checking test 082 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 167.932174 -0:The maximum resident set size (KB) = 632608 +0:The total amount of wall time = 167.795038 +0:The maximum resident set size (KB) = 632424 Test 082 control_ras_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_diag_debug -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/control_diag_debug Checking test 083 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 169.401338 -0:The maximum resident set size (KB) = 677884 +0:The total amount of wall time = 171.586400 +0:The maximum resident set size (KB) = 677920 Test 083 control_diag_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_debug_p8 -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/control_debug_p8 Checking test 084 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 184.352772 -0:The maximum resident set size (KB) = 1444220 +0:The total amount of wall time = 185.865407 +0:The maximum resident set size (KB) = 1444180 Test 084 control_debug_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_debug -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/regional_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/regional_debug Checking test 085 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 1040.777286 -0:The maximum resident set size (KB) = 629040 +0:The total amount of wall time = 1040.632194 +0:The maximum resident set size (KB) = 629056 Test 085 regional_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rap_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/rap_control_debug Checking test 086 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 300.049687 -0:The maximum resident set size (KB) = 989988 +0:The total amount of wall time = 297.968045 +0:The maximum resident set size (KB) = 989828 Test 086 rap_control_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hrrr_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/hrrr_control_debug Checking test 087 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 291.051650 -0:The maximum resident set size (KB) = 988888 +0:The total amount of wall time = 294.080471 +0:The maximum resident set size (KB) = 988760 Test 087 hrrr_control_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rap_unified_drag_suite_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/rap_unified_drag_suite_debug Checking test 088 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 296.002978 -0:The maximum resident set size (KB) = 989976 +0:The total amount of wall time = 296.054292 +0:The maximum resident set size (KB) = 989868 Test 088 rap_unified_drag_suite_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_diag_debug -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rap_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/rap_diag_debug Checking test 089 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 308.903752 -0:The maximum resident set size (KB) = 1074116 +0:The total amount of wall time = 309.184993 +0:The maximum resident set size (KB) = 1074284 Test 089 rap_diag_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rap_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/rap_cires_ugwp_debug Checking test 090 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 301.045473 -0:The maximum resident set size (KB) = 988664 +0:The total amount of wall time = 301.787188 +0:The maximum resident set size (KB) = 988728 Test 090 rap_cires_ugwp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rap_unified_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/rap_unified_ugwp_debug Checking test 091 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 301.872070 -0:The maximum resident set size (KB) = 991944 +0:The total amount of wall time = 302.121379 +0:The maximum resident set size (KB) = 992032 Test 091 rap_unified_ugwp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_lndp_debug -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rap_lndp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/rap_lndp_debug Checking test 092 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 298.054004 -0:The maximum resident set size (KB) = 990704 +0:The total amount of wall time = 298.551830 +0:The maximum resident set size (KB) = 990624 Test 092 rap_lndp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_flake_debug -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rap_flake_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/rap_flake_debug Checking test 093 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 295.566928 -0:The maximum resident set size (KB) = 989928 +0:The total amount of wall time = 295.638127 +0:The maximum resident set size (KB) = 989900 Test 093 rap_flake_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_progcld_thompson_debug -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rap_progcld_thompson_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/rap_progcld_thompson_debug Checking test 094 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 295.159483 -0:The maximum resident set size (KB) = 990204 +0:The total amount of wall time = 296.210358 +0:The maximum resident set size (KB) = 989980 Test 094 rap_progcld_thompson_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_debug -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rap_noah_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/rap_noah_debug Checking test 095 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 288.599234 -0:The maximum resident set size (KB) = 988488 +0:The total amount of wall time = 289.780069 +0:The maximum resident set size (KB) = 988620 Test 095 rap_noah_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff_debug -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rap_sfcdiff_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/rap_sfcdiff_debug Checking test 096 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 296.505569 +0:The total amount of wall time = 295.322959 0:The maximum resident set size (KB) = 991308 Test 096 rap_sfcdiff_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/rap_noah_sfcdiff_cires_ugwp_debug Checking test 097 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 480.570032 -0:The maximum resident set size (KB) = 989468 +0:The total amount of wall time = 481.094050 +0:The maximum resident set size (KB) = 989412 Test 097 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta_debug -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rrfs_v1beta_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/rrfs_v1beta_debug Checking test 098 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 290.792431 -0:The maximum resident set size (KB) = 986400 +0:The total amount of wall time = 290.782344 +0:The maximum resident set size (KB) = 986380 Test 098 rrfs_v1beta_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam_debug -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_wam_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/control_wam_debug Checking test 099 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 296.683706 -0:The maximum resident set size (KB) = 238904 +0:The total amount of wall time = 300.616130 +0:The maximum resident set size (KB) = 239092 Test 099 control_wam_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 100 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3259,14 +3328,14 @@ Checking test 100 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 304.542986 -0:The maximum resident set size (KB) = 848320 +0:The total amount of wall time = 301.681279 +0:The maximum resident set size (KB) = 848304 Test 100 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/rap_control_dyn32_phy32 Checking test 101 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3313,14 +3382,14 @@ Checking test 101 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 384.995312 -0:The maximum resident set size (KB) = 707108 +0:The total amount of wall time = 386.030745 +0:The maximum resident set size (KB) = 707144 Test 101 rap_control_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/hrrr_control_dyn32_phy32 Checking test 102 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3367,14 +3436,14 @@ Checking test 102 hrrr_control_dyn32_phy32 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 = 206.197651 -0:The maximum resident set size (KB) = 705460 +0:The total amount of wall time = 206.626338 +0:The maximum resident set size (KB) = 705476 Test 102 hrrr_control_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rap_2threads_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/rap_2threads_dyn32_phy32 Checking test 103 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3421,14 +3490,14 @@ Checking test 103 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 378.214873 -0:The maximum resident set size (KB) = 757080 +0:The total amount of wall time = 375.401911 +0:The maximum resident set size (KB) = 757420 Test 103 rap_2threads_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hrrr_control_2threads_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/hrrr_control_2threads_dyn32_phy32 Checking test 104 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3475,14 +3544,14 @@ Checking test 104 hrrr_control_2threads_dyn32_phy32 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 = 201.481628 -0:The maximum resident set size (KB) = 758252 +0:The total amount of wall time = 202.106909 +0:The maximum resident set size (KB) = 758352 Test 104 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hrrr_control_decomp_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/hrrr_control_decomp_dyn32_phy32 Checking test 105 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3529,14 +3598,14 @@ Checking test 105 hrrr_control_decomp_dyn32_phy32 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 = 215.882832 -0:The maximum resident set size (KB) = 704004 +0:The total amount of wall time = 219.333427 +0:The maximum resident set size (KB) = 703984 Test 105 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rap_restart_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/rap_restart_dyn32_phy32 Checking test 106 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3575,14 +3644,14 @@ Checking test 106 rap_restart_dyn32_phy32 results .... Comparing 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.975477 -0:The maximum resident set size (KB) = 544688 +0:The total amount of wall time = 289.420062 +0:The maximum resident set size (KB) = 544648 Test 106 rap_restart_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hrrr_control_restart_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/hrrr_control_restart_dyn32_phy32 Checking test 107 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3621,14 +3690,14 @@ Checking test 107 hrrr_control_restart_dyn32_phy32 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 = 105.076574 -0:The maximum resident set size (KB) = 536692 +0:The total amount of wall time = 106.329564 +0:The maximum resident set size (KB) = 536736 Test 107 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn64_phy32 -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rap_control_dyn64_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/rap_control_dyn64_phy32 Checking test 108 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3675,81 +3744,81 @@ Checking test 108 rap_control_dyn64_phy32 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 = 269.557617 -0:The maximum resident set size (KB) = 726892 +0:The total amount of wall time = 269.239843 +0:The maximum resident set size (KB) = 726760 Test 108 rap_control_dyn64_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/rap_control_debug_dyn32_phy32 Checking test 109 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 290.888612 -0:The maximum resident set size (KB) = 876224 +0:The total amount of wall time = 295.288326 +0:The maximum resident set size (KB) = 876388 Test 109 rap_control_debug_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/hrrr_control_debug_dyn32_phy32 Checking test 110 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 286.647071 -0:The maximum resident set size (KB) = 874384 +0:The total amount of wall time = 288.670290 +0:The maximum resident set size (KB) = 874412 Test 110 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/rap_control_dyn64_phy32_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/rap_control_dyn64_phy32_debug Checking test 111 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 296.425349 -0:The maximum resident set size (KB) = 893456 +0:The total amount of wall time = 297.081528 +0:The maximum resident set size (KB) = 893380 Test 111 rap_control_dyn64_phy32_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hafs_regional_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/hafs_regional_atm Checking test 112 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -0:The total amount of wall time = 301.903872 -0:The maximum resident set size (KB) = 739668 +0:The total amount of wall time = 264.939970 +0:The maximum resident set size (KB) = 739044 Test 112 hafs_regional_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hafs_regional_atm_thompson_gfdlsf +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/hafs_regional_atm_thompson_gfdlsf Checking test 113 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -0:The total amount of wall time = 296.871184 -0:The maximum resident set size (KB) = 1091316 +0:The total amount of wall time = 291.156680 +0:The maximum resident set size (KB) = 1090904 Test 113 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hafs_regional_atm_ocn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/hafs_regional_atm_ocn Checking test 114 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3758,14 +3827,14 @@ Checking test 114 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 455.140143 -0:The maximum resident set size (KB) = 738460 +0:The total amount of wall time = 460.985450 +0:The maximum resident set size (KB) = 738656 Test 114 hafs_regional_atm_ocn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_wav -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hafs_regional_atm_wav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/hafs_regional_atm_wav Checking test 115 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3774,14 +3843,14 @@ Checking test 115 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 1071.036248 -0:The maximum resident set size (KB) = 766064 +0:The total amount of wall time = 1069.171712 +0:The maximum resident set size (KB) = 766364 Test 115 hafs_regional_atm_wav PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn_wav -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hafs_regional_atm_ocn_wav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/hafs_regional_atm_ocn_wav Checking test 116 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3792,28 +3861,28 @@ Checking test 116 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 1150.428557 -0:The maximum resident set size (KB) = 789780 +0:The total amount of wall time = 1139.259391 +0:The maximum resident set size (KB) = 790648 Test 116 hafs_regional_atm_ocn_wav PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_1nest_atm -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hafs_regional_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/hafs_regional_1nest_atm Checking test 117 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 379.073868 -0:The maximum resident set size (KB) = 293396 +0:The total amount of wall time = 375.451819 +0:The maximum resident set size (KB) = 293392 Test 117 hafs_regional_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hafs_regional_telescopic_2nests_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/hafs_regional_telescopic_2nests_atm Checking test 118 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3822,28 +3891,28 @@ Checking test 118 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -0:The total amount of wall time = 427.104947 -0:The maximum resident set size (KB) = 309192 +0:The total amount of wall time = 431.933784 +0:The maximum resident set size (KB) = 309116 Test 118 hafs_regional_telescopic_2nests_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_1nest_atm -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hafs_global_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/hafs_global_1nest_atm Checking test 119 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 170.782832 -0:The maximum resident set size (KB) = 206176 +0:The total amount of wall time = 173.619886 +0:The maximum resident set size (KB) = 206056 Test 119 hafs_global_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_multiple_4nests_atm -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hafs_global_multiple_4nests_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/hafs_global_multiple_4nests_atm Checking test 120 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3861,14 +3930,14 @@ Checking test 120 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -0:The total amount of wall time = 493.173588 -0:The maximum resident set size (KB) = 292436 +0:The total amount of wall time = 487.596943 +0:The maximum resident set size (KB) = 292352 Test 120 hafs_global_multiple_4nests_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hafs_regional_specified_moving_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/hafs_regional_specified_moving_1nest_atm Checking test 121 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3877,28 +3946,28 @@ Checking test 121 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -0:The total amount of wall time = 240.477051 -0:The maximum resident set size (KB) = 306740 +0:The total amount of wall time = 241.236438 +0:The maximum resident set size (KB) = 306804 Test 121 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hafs_regional_storm_following_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/hafs_regional_storm_following_1nest_atm Checking test 122 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 227.593274 -0:The maximum resident set size (KB) = 306504 +0:The total amount of wall time = 230.363326 +0:The maximum resident set size (KB) = 306156 Test 122 hafs_regional_storm_following_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hafs_regional_storm_following_1nest_atm_ocn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/hafs_regional_storm_following_1nest_atm_ocn Checking test 123 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3907,42 +3976,42 @@ Checking test 123 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -0:The total amount of wall time = 279.030271 -0:The maximum resident set size (KB) = 353680 +0:The total amount of wall time = 277.904455 +0:The maximum resident set size (KB) = 353620 Test 123 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_storm_following_1nest_atm -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hafs_global_storm_following_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/hafs_global_storm_following_1nest_atm Checking test 124 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 66.753984 -0:The maximum resident set size (KB) = 222524 +0:The total amount of wall time = 67.231599 +0:The maximum resident set size (KB) = 222088 Test 124 hafs_global_storm_following_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 125 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 824.913025 -0:The maximum resident set size (KB) = 386844 +0:The total amount of wall time = 823.997991 +0:The maximum resident set size (KB) = 386832 Test 125 hafs_regional_storm_following_1nest_atm_ocn_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 126 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3953,14 +4022,14 @@ Checking test 126 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -0:The total amount of wall time = 851.470155 -0:The maximum resident set size (KB) = 417540 +0:The total amount of wall time = 762.381018 +0:The maximum resident set size (KB) = 417076 Test 126 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_docn -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hafs_regional_docn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/hafs_regional_docn Checking test 127 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3968,14 +4037,14 @@ Checking test 127 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 394.663707 -0:The maximum resident set size (KB) = 753896 +0:The total amount of wall time = 395.586302 +0:The maximum resident set size (KB) = 754152 Test 127 hafs_regional_docn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_docn_oisst -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hafs_regional_docn_oisst +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/hafs_regional_docn_oisst Checking test 128 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3983,131 +4052,131 @@ Checking test 128 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 392.254165 -0:The maximum resident set size (KB) = 733696 +0:The total amount of wall time = 407.623142 +0:The maximum resident set size (KB) = 733480 Test 128 hafs_regional_docn_oisst PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_datm_cdeps -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/hafs_regional_datm_cdeps +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/hafs_regional_datm_cdeps Checking test 129 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -0:The total amount of wall time = 1280.608354 -0:The maximum resident set size (KB) = 887952 +0:The total amount of wall time = 1280.923133 +0:The maximum resident set size (KB) = 887872 Test 129 hafs_regional_datm_cdeps PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/datm_cdeps_control_cfsr Checking test 130 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 168.324377 +0:The total amount of wall time = 168.481157 0:The maximum resident set size (KB) = 716692 Test 130 datm_cdeps_control_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/datm_cdeps_restart_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/datm_cdeps_restart_cfsr Checking test 131 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 100.927361 -0:The maximum resident set size (KB) = 704844 +0:The total amount of wall time = 97.625530 +0:The maximum resident set size (KB) = 704828 Test 131 datm_cdeps_restart_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_gefs -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/datm_cdeps_control_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/datm_cdeps_control_gefs Checking test 132 datm_cdeps_control_gefs 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 = 161.263214 -0:The maximum resident set size (KB) = 607456 +0:The total amount of wall time = 160.866708 +0:The maximum resident set size (KB) = 607504 Test 132 datm_cdeps_control_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_iau_gefs -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/datm_cdeps_iau_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/datm_cdeps_iau_gefs Checking test 133 datm_cdeps_iau_gefs 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 = 164.567398 -0:The maximum resident set size (KB) = 607500 +0:The total amount of wall time = 161.034591 +0:The maximum resident set size (KB) = 607460 Test 133 datm_cdeps_iau_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_stochy_gefs -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/datm_cdeps_stochy_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/datm_cdeps_stochy_gefs Checking test 134 datm_cdeps_stochy_gefs 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 = 164.110661 -0:The maximum resident set size (KB) = 607456 +0:The total amount of wall time = 164.407941 +0:The maximum resident set size (KB) = 607492 Test 134 datm_cdeps_stochy_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_ciceC_cfsr -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/datm_cdeps_ciceC_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/datm_cdeps_ciceC_cfsr Checking test 135 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 168.615624 -0:The maximum resident set size (KB) = 716724 +0:The total amount of wall time = 168.960235 +0:The maximum resident set size (KB) = 716704 Test 135 datm_cdeps_ciceC_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_bulk_cfsr -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/datm_cdeps_bulk_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/datm_cdeps_bulk_cfsr Checking test 136 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 169.745325 -0:The maximum resident set size (KB) = 727832 +0:The total amount of wall time = 168.938318 +0:The maximum resident set size (KB) = 716716 Test 136 datm_cdeps_bulk_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_bulk_gefs -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/datm_cdeps_bulk_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/datm_cdeps_bulk_gefs Checking test 137 datm_cdeps_bulk_gefs 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 = 161.123087 -0:The maximum resident set size (KB) = 607456 +0:The total amount of wall time = 161.499464 +0:The maximum resident set size (KB) = 607444 Test 137 datm_cdeps_bulk_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_mx025_cfsr -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/datm_cdeps_mx025_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/datm_cdeps_mx025_cfsr Checking test 138 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4116,14 +4185,14 @@ Checking test 138 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 751.664427 -0:The maximum resident set size (KB) = 514352 +0:The total amount of wall time = 417.790800 +0:The maximum resident set size (KB) = 514304 Test 138 datm_cdeps_mx025_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_mx025_gefs -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/datm_cdeps_mx025_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/datm_cdeps_mx025_gefs Checking test 139 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4132,77 +4201,77 @@ Checking test 139 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 777.327410 -0:The maximum resident set size (KB) = 494816 +0:The total amount of wall time = 761.450148 +0:The maximum resident set size (KB) = 494728 Test 139 datm_cdeps_mx025_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/datm_cdeps_multiple_files_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/datm_cdeps_multiple_files_cfsr Checking test 140 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 167.361016 -0:The maximum resident set size (KB) = 716704 +0:The total amount of wall time = 162.907088 +0:The maximum resident set size (KB) = 716716 Test 140 datm_cdeps_multiple_files_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/datm_cdeps_3072x1536_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/datm_cdeps_3072x1536_cfsr Checking test 141 datm_cdeps_3072x1536_cfsr 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 = 257.635288 -0:The maximum resident set size (KB) = 1942080 +0:The total amount of wall time = 268.946965 +0:The maximum resident set size (KB) = 1937140 Test 141 datm_cdeps_3072x1536_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_gfs -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/datm_cdeps_gfs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/datm_cdeps_gfs Checking test 142 datm_cdeps_gfs 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 = 258.345758 -0:The maximum resident set size (KB) = 1940280 +0:The total amount of wall time = 254.829144 +0:The maximum resident set size (KB) = 1940276 Test 142 datm_cdeps_gfs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_debug_cfsr -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/datm_cdeps_debug_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/datm_cdeps_debug_cfsr Checking test 143 datm_cdeps_debug_cfsr results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -0:The total amount of wall time = 459.786293 -0:The maximum resident set size (KB) = 706652 +0:The total amount of wall time = 458.890809 +0:The maximum resident set size (KB) = 717868 Test 143 datm_cdeps_debug_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr_faster -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/datm_cdeps_control_cfsr_faster +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/datm_cdeps_control_cfsr_faster Checking test 144 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.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 = 168.113048 +0:The total amount of wall time = 167.615572 0:The maximum resident set size (KB) = 716768 Test 144 datm_cdeps_control_cfsr_faster PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/datm_cdeps_lnd_gswp3 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/datm_cdeps_lnd_gswp3 Checking test 145 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4211,14 +4280,14 @@ Checking test 145 datm_cdeps_lnd_gswp3 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 = 10.405393 -0:The maximum resident set size (KB) = 208264 +0:The total amount of wall time = 11.592106 +0:The maximum resident set size (KB) = 212700 Test 145 datm_cdeps_lnd_gswp3 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/datm_cdeps_lnd_gswp3_rst +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/datm_cdeps_lnd_gswp3_rst Checking test 146 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4227,14 +4296,14 @@ Checking test 146 datm_cdeps_lnd_gswp3_rst 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 = 16.477821 -0:The maximum resident set size (KB) = 216404 +0:The total amount of wall time = 16.266187 +0:The maximum resident set size (KB) = 208228 Test 146 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_atmlnd_sbs -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_p8_atmlnd_sbs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/control_p8_atmlnd_sbs Checking test 147 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4319,14 +4388,14 @@ Checking test 147 control_p8_atmlnd_sbs 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 = 236.023630 -0:The maximum resident set size (KB) = 1462016 +0:The total amount of wall time = 234.460915 +0:The maximum resident set size (KB) = 1461992 Test 147 control_p8_atmlnd_sbs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_atmwav -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/control_atmwav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/control_atmwav Checking test 148 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4370,14 +4439,14 @@ Checking test 148 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -0:The total amount of wall time = 99.381651 -0:The maximum resident set size (KB) = 474784 +0:The total amount of wall time = 99.722424 +0:The maximum resident set size (KB) = 474580 Test 148 control_atmwav PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8 -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/atmaero_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/atmaero_control_p8 Checking test 149 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4421,14 +4490,14 @@ Checking test 149 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 248.720169 -0:The maximum resident set size (KB) = 2703396 +0:The total amount of wall time = 251.424569 +0:The maximum resident set size (KB) = 2703372 Test 149 atmaero_control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/atmaero_control_p8_rad +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/atmaero_control_p8_rad Checking test 150 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4472,14 +4541,14 @@ Checking test 150 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 306.423304 -0:The maximum resident set size (KB) = 2757536 +0:The total amount of wall time = 310.546962 +0:The maximum resident set size (KB) = 2757512 Test 150 atmaero_control_p8_rad PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad_micro -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/atmaero_control_p8_rad_micro +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/atmaero_control_p8_rad_micro Checking test 151 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4523,14 +4592,14 @@ Checking test 151 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 307.879757 -0:The maximum resident set size (KB) = 2763912 +0:The total amount of wall time = 309.558480 +0:The maximum resident set size (KB) = 2763888 Test 151 atmaero_control_p8_rad_micro PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/regional_atmaq +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/regional_atmaq Checking test 152 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4546,14 +4615,14 @@ Checking test 152 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -0:The total amount of wall time = 1097.272100 -0:The maximum resident set size (KB) = 1146016 +0:The total amount of wall time = 1127.324163 +0:The maximum resident set size (KB) = 1146108 Test 152 regional_atmaq PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq_faster -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_68762/regional_atmaq_faster +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/regional_atmaq_faster Checking test 153 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4569,94 +4638,12 @@ Checking test 153 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -0:The total amount of wall time = 1148.416336 -0:The maximum resident set size (KB) = 1146304 +0:The total amount of wall time = 1118.313271 +0:The maximum resident set size (KB) = 1146224 Test 153 regional_atmaq_faster PASS -FAILED TESTS: -Test compile_008 failed in run_compile failed - -REGRESSION TEST FAILED -Wed Mar 8 09:11:48 MST 2023 -Elapsed time: 01h:19m:12s. Have a nice day! -Wed Mar 8 09:23:22 MST 2023 -Start Regression test - -Compile 001 elapsed time 1708 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_faster -working dir = /glade/scratch/jongkim/rt-1645-intel/jongkim/FV3_RT/rt_9994/cpld_control_p8_faster -Checking test 001 cpld_control_p8_faster results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -0:The total amount of wall time = 313.676895 -0:The maximum resident set size (KB) = 2716192 - -Test 001 cpld_control_p8_faster PASS - REGRESSION TEST WAS SUCCESSFUL -Wed Mar 8 10:09:35 MST 2023 -Elapsed time: 00h:46m:13s. Have a nice day! +Fri Mar 10 08:43:27 MST 2023 +Elapsed time: 02h:05m:03s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index e6fddb312ae..88ac80b83bb 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,42 +1,44 @@ -Wed Mar 8 14:05:28 EST 2023 +Fri Mar 10 09:20:08 EST 2023 Start Regression test -Compile 001 elapsed time 1004 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 1006 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 893 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 385 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 349 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 845 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 891 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 1098 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 861 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 776 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 689 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 634 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 1081 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 573 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 333 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 750 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 856 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 332 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 352 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 845 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 021 elapsed time 387 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 1061 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 1038 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 024 elapsed time 613 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 415 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 486 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 275 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 782 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 804 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 723 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 805 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 253 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 802 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Test 003 compile FAIL + +Compile 001 elapsed time 984 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 948 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 814 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 411 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 373 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 966 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 846 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 1099 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 839 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 870 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 686 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 627 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 1133 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 270 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 259 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 674 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 623 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 261 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 209 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 742 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 021 elapsed time 282 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 884 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 728 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 024 elapsed time 276 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 172 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 297 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 112 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 703 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 668 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 673 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 735 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 240 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 895 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_mixedmode -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/cpld_control_p8_mixedmode +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -101,14 +103,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 341.541053 - 0: The maximum resident set size (KB) = 1534860 + 0: The total amount of wall time = 328.940515 + 0: The maximum resident set size (KB) = 1534756 -Test 001 cpld_control_p8_mixedmode PASS Tries: 2 +Test 001 cpld_control_p8_mixedmode PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_gfsv17 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/cpld_control_gfsv17 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -172,14 +174,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 274.106615 - 0: The maximum resident set size (KB) = 1443716 + 0: The total amount of wall time = 247.307559 + 0: The maximum resident set size (KB) = 1443512 Test 002 cpld_control_gfsv17 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/cpld_control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -244,14 +246,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 395.798873 - 0: The maximum resident set size (KB) = 1568020 + 0: The total amount of wall time = 376.423168 + 0: The maximum resident set size (KB) = 1568400 Test 003 cpld_control_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/cpld_restart_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -304,14 +306,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 252.364512 - 0: The maximum resident set size (KB) = 1019008 + 0: The total amount of wall time = 251.572999 + 0: The maximum resident set size (KB) = 1018892 Test 004 cpld_restart_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/cpld_2threads_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -364,14 +366,14 @@ Checking test 005 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 406.323691 - 0: The maximum resident set size (KB) = 1756712 + 0: The total amount of wall time = 399.286099 + 0: The maximum resident set size (KB) = 1759016 Test 005 cpld_2threads_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/cpld_decomp_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/cpld_decomp_p8 Checking test 006 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -424,14 +426,14 @@ Checking test 006 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 387.090659 - 0: The maximum resident set size (KB) = 1561968 + 0: The total amount of wall time = 383.147597 + 0: The maximum resident set size (KB) = 1561792 Test 006 cpld_decomp_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/cpld_mpi_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/cpld_mpi_p8 Checking test 007 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -484,14 +486,14 @@ Checking test 007 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 340.840887 - 0: The maximum resident set size (KB) = 1526600 + 0: The total amount of wall time = 316.814643 + 0: The maximum resident set size (KB) = 1526480 Test 007 cpld_mpi_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_ciceC_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/cpld_control_ciceC_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/cpld_control_ciceC_p8 Checking test 008 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -556,14 +558,14 @@ Checking test 008 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 391.843612 - 0: The maximum resident set size (KB) = 1568288 + 0: The total amount of wall time = 384.907231 + 0: The maximum resident set size (KB) = 1568164 -Test 008 cpld_control_ciceC_p8 PASS Tries: 2 +Test 008 cpld_control_ciceC_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c192_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/cpld_control_c192_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/cpld_control_c192_p8 Checking test 009 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -616,14 +618,14 @@ Checking test 009 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 764.676849 - 0: The maximum resident set size (KB) = 1760044 + 0: The total amount of wall time = 752.944392 + 0: The maximum resident set size (KB) = 1761664 Test 009 cpld_control_c192_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c192_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/cpld_restart_c192_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/cpld_restart_c192_p8 Checking test 010 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -676,14 +678,14 @@ Checking test 010 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 563.798980 - 0: The maximum resident set size (KB) = 1923488 + 0: The total amount of wall time = 596.211834 + 0: The maximum resident set size (KB) = 1924904 Test 010 cpld_restart_c192_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_bmark_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/cpld_bmark_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/cpld_bmark_p8 Checking test 011 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -731,14 +733,14 @@ Checking test 011 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 795.618635 - 0: The maximum resident set size (KB) = 2503276 + 0: The total amount of wall time = 902.775694 + 0: The maximum resident set size (KB) = 2502868 Test 011 cpld_bmark_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_bmark_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/cpld_restart_bmark_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/cpld_restart_bmark_p8 Checking test 012 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -786,14 +788,14 @@ Checking test 012 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 705.094356 - 0: The maximum resident set size (KB) = 2330324 + 0: The total amount of wall time = 822.146947 + 0: The maximum resident set size (KB) = 2330296 Test 012 cpld_restart_bmark_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/cpld_control_noaero_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/cpld_control_noaero_p8 Checking test 013 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -857,14 +859,14 @@ Checking test 013 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 341.162805 - 0: The maximum resident set size (KB) = 1441012 + 0: The total amount of wall time = 330.185775 + 0: The maximum resident set size (KB) = 1440548 Test 013 cpld_control_noaero_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c96_noaero_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/cpld_control_nowave_noaero_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/cpld_control_nowave_noaero_p8 Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -926,14 +928,14 @@ Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 328.741862 - 0: The maximum resident set size (KB) = 1473092 + 0: The total amount of wall time = 346.551861 + 0: The maximum resident set size (KB) = 1473836 Test 014 cpld_control_nowave_noaero_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_debug_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/cpld_debug_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/cpld_debug_p8 Checking test 015 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -986,14 +988,14 @@ Checking test 015 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 589.327159 - 0: The maximum resident set size (KB) = 1596976 + 0: The total amount of wall time = 589.959744 + 0: The maximum resident set size (KB) = 1595816 -Test 015 cpld_debug_p8 PASS Tries: 2 +Test 015 cpld_debug_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_debug_noaero_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/cpld_debug_noaero_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/cpld_debug_noaero_p8 Checking test 016 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1045,14 +1047,14 @@ Checking test 016 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 462.095695 - 0: The maximum resident set size (KB) = 1441552 + 0: The total amount of wall time = 402.316400 + 0: The maximum resident set size (KB) = 1441720 Test 016 cpld_debug_noaero_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8_agrid -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/cpld_control_noaero_p8_agrid +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/cpld_control_noaero_p8_agrid Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1114,14 +1116,14 @@ Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 339.082516 - 0: The maximum resident set size (KB) = 1476132 + 0: The total amount of wall time = 305.327022 + 0: The maximum resident set size (KB) = 1476240 Test 017 cpld_control_noaero_p8_agrid PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c48 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/cpld_control_c48 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/cpld_control_c48 Checking test 018 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1171,14 +1173,14 @@ Checking test 018 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 622.595926 - 0: The maximum resident set size (KB) = 2569216 + 0: The total amount of wall time = 603.684910 + 0: The maximum resident set size (KB) = 2568964 Test 018 cpld_control_c48 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/cpld_warmstart_c48 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/cpld_warmstart_c48 Checking test 019 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1228,14 +1230,14 @@ Checking test 019 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 174.643407 - 0: The maximum resident set size (KB) = 2585804 + 0: The total amount of wall time = 161.722777 + 0: The maximum resident set size (KB) = 2585680 Test 019 cpld_warmstart_c48 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/cpld_restart_c48 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/cpld_restart_c48 Checking test 020 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1285,16 +1287,86 @@ Checking test 020 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 86.117634 - 0: The maximum resident set size (KB) = 1996408 + 0: The total amount of wall time = 93.034925 + 0: The maximum resident set size (KB) = 1996428 Test 020 cpld_restart_c48 PASS -Test 021 cpld_control_p8_faster FAIL + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_faster +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/cpld_control_p8_faster +Checking test 021 cpld_control_p8_faster results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 454.440357 + 0: The maximum resident set size (KB) = 1568848 + +Test 021 cpld_control_p8_faster PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_CubedSphereGrid +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/control_CubedSphereGrid Checking test 022 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1321,28 +1393,28 @@ Checking test 022 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 138.272285 - 0: The maximum resident set size (KB) = 437268 + 0: The total amount of wall time = 257.791156 + 0: The maximum resident set size (KB) = 437356 Test 022 control_CubedSphereGrid PASS Tries: 2 baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_CubedSphereGrid_parallel +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/control_CubedSphereGrid_parallel Checking test 023 control_CubedSphereGrid_parallel 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 = 300.613122 - 0: The maximum resident set size (KB) = 437160 + 0: The total amount of wall time = 142.780836 + 0: The maximum resident set size (KB) = 437088 Test 023 control_CubedSphereGrid_parallel PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_latlon -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_latlon +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/control_latlon Checking test 024 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1353,14 +1425,14 @@ Checking test 024 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 164.695258 - 0: The maximum resident set size (KB) = 437080 + 0: The total amount of wall time = 142.329051 + 0: The maximum resident set size (KB) = 437036 Test 024 control_latlon PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_wrtGauss_netcdf_parallel +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/control_wrtGauss_netcdf_parallel Checking test 025 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1371,14 +1443,14 @@ Checking test 025 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 344.787578 - 0: The maximum resident set size (KB) = 436836 + 0: The total amount of wall time = 154.661529 + 0: The maximum resident set size (KB) = 436952 Test 025 control_wrtGauss_netcdf_parallel PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c48 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_c48 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/control_c48 Checking test 026 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1417,14 +1489,14 @@ Checking test 026 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 422.223022 -0: The maximum resident set size (KB) = 631112 +0: The total amount of wall time = 419.440668 +0: The maximum resident set size (KB) = 630276 Test 026 control_c48 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c192 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_c192 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/control_c192 Checking test 027 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1435,14 +1507,14 @@ Checking test 027 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 580.469470 - 0: The maximum resident set size (KB) = 540024 + 0: The total amount of wall time = 577.531710 + 0: The maximum resident set size (KB) = 540044 Test 027 control_c192 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_c384 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/control_c384 Checking test 028 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1453,14 +1525,14 @@ Checking test 028 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1113.351586 - 0: The maximum resident set size (KB) = 818300 + 0: The total amount of wall time = 1154.529647 + 0: The maximum resident set size (KB) = 818360 Test 028 control_c384 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384gdas -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_c384gdas +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/control_c384gdas Checking test 029 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1503,14 +1575,14 @@ Checking test 029 control_c384gdas 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 = 990.491891 - 0: The maximum resident set size (KB) = 948160 + 0: The total amount of wall time = 959.902117 + 0: The maximum resident set size (KB) = 948376 Test 029 control_c384gdas PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_stochy +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/control_stochy Checking test 030 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1521,28 +1593,28 @@ Checking test 030 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 100.420802 - 0: The maximum resident set size (KB) = 440308 + 0: The total amount of wall time = 97.952149 + 0: The maximum resident set size (KB) = 440264 Test 030 control_stochy PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_stochy_restart +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/control_stochy_restart Checking test 031 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 57.731801 - 0: The maximum resident set size (KB) = 194444 + 0: The total amount of wall time = 86.378668 + 0: The maximum resident set size (KB) = 194648 Test 031 control_stochy_restart PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_lndp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/control_lndp Checking test 032 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1553,14 +1625,14 @@ Checking test 032 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 86.755501 - 0: The maximum resident set size (KB) = 440112 + 0: The total amount of wall time = 87.599028 + 0: The maximum resident set size (KB) = 440128 Test 032 control_lndp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr4 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_iovr4 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/control_iovr4 Checking test 033 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1575,14 +1647,14 @@ Checking test 033 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 147.500269 - 0: The maximum resident set size (KB) = 436908 + 0: The total amount of wall time = 144.463823 + 0: The maximum resident set size (KB) = 437060 Test 033 control_iovr4 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr5 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_iovr5 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/control_iovr5 Checking test 034 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1597,14 +1669,14 @@ Checking test 034 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 144.810417 - 0: The maximum resident set size (KB) = 437056 + 0: The total amount of wall time = 143.113757 + 0: The maximum resident set size (KB) = 436988 Test 034 control_iovr5 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/control_p8 Checking test 035 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1651,14 +1723,14 @@ Checking test 035 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 209.375932 - 0: The maximum resident set size (KB) = 1379692 + 0: The total amount of wall time = 178.046858 + 0: The maximum resident set size (KB) = 1379696 Test 035 control_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_lndp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_p8_lndp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/control_p8_lndp Checking test 036 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1677,14 +1749,14 @@ Checking test 036 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 363.336610 - 0: The maximum resident set size (KB) = 1379632 + 0: The total amount of wall time = 346.295861 + 0: The maximum resident set size (KB) = 1379656 Test 036 control_p8_lndp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_restart_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/control_restart_p8 Checking test 037 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1723,14 +1795,14 @@ Checking test 037 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 119.310987 - 0: The maximum resident set size (KB) = 556068 + 0: The total amount of wall time = 128.876920 + 0: The maximum resident set size (KB) = 556116 Test 037 control_restart_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_decomp_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/control_decomp_p8 Checking test 038 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1773,14 +1845,14 @@ Checking test 038 control_decomp_p8 results .... Comparing 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.146995 - 0: The maximum resident set size (KB) = 1374188 + 0: The total amount of wall time = 190.903700 + 0: The maximum resident set size (KB) = 1374124 Test 038 control_decomp_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_2threads_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/control_2threads_p8 Checking test 039 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1823,14 +1895,14 @@ Checking test 039 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 215.588048 - 0: The maximum resident set size (KB) = 1457216 + 0: The total amount of wall time = 174.573608 + 0: The maximum resident set size (KB) = 1457112 Test 039 control_2threads_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_rrtmgp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_p8_rrtmgp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/control_p8_rrtmgp Checking test 040 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1877,14 +1949,14 @@ Checking test 040 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 275.347002 - 0: The maximum resident set size (KB) = 1437372 + 0: The total amount of wall time = 248.870929 + 0: The maximum resident set size (KB) = 1437408 Test 040 control_p8_rrtmgp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/merra2_thompson -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/merra2_thompson +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/merra2_thompson Checking test 041 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1931,14 +2003,14 @@ Checking test 041 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 256.096066 + 0: The total amount of wall time = 210.146630 0: The maximum resident set size (KB) = 1385848 Test 041 merra2_thompson PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/regional_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/regional_control Checking test 042 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1949,28 +2021,28 @@ Checking test 042 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 349.733767 - 0: The maximum resident set size (KB) = 577820 + 0: The total amount of wall time = 334.028129 + 0: The maximum resident set size (KB) = 577824 Test 042 regional_control PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/regional_restart +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/regional_restart Checking test 043 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 197.530554 - 0: The maximum resident set size (KB) = 577368 + 0: The total amount of wall time = 177.014195 + 0: The maximum resident set size (KB) = 577440 -Test 043 regional_restart PASS +Test 043 regional_restart PASS Tries: 2 baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/regional_decomp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/regional_decomp Checking test 044 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1981,14 +2053,14 @@ Checking test 044 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 359.805211 - 0: The maximum resident set size (KB) = 579360 + 0: The total amount of wall time = 352.843280 + 0: The maximum resident set size (KB) = 579324 Test 044 regional_decomp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/regional_2threads +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/regional_2threads Checking test 045 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1999,14 +2071,14 @@ Checking test 045 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 224.301600 - 0: The maximum resident set size (KB) = 584748 + 0: The total amount of wall time = 214.129623 + 0: The maximum resident set size (KB) = 585332 Test 045 regional_2threads PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_noquilt -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/regional_noquilt +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/regional_noquilt Checking test 046 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2014,28 +2086,28 @@ Checking test 046 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 367.845982 - 0: The maximum resident set size (KB) = 573108 + 0: The total amount of wall time = 360.806136 + 0: The maximum resident set size (KB) = 572884 -Test 046 regional_noquilt PASS +Test 046 regional_noquilt PASS Tries: 2 baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_netcdf_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/regional_netcdf_parallel +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/regional_netcdf_parallel Checking test 047 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 465.798680 - 0: The maximum resident set size (KB) = 576860 + 0: The total amount of wall time = 335.100444 + 0: The maximum resident set size (KB) = 576944 -Test 047 regional_netcdf_parallel PASS Tries: 2 +Test 047 regional_netcdf_parallel PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/regional_2dwrtdecomp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/regional_2dwrtdecomp Checking test 048 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2046,14 +2118,14 @@ Checking test 048 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 341.220489 - 0: The maximum resident set size (KB) = 577820 + 0: The total amount of wall time = 332.761038 + 0: The maximum resident set size (KB) = 577832 Test 048 regional_2dwrtdecomp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/fv3_regional_wofs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/regional_wofs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/regional_wofs Checking test 049 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2064,14 +2136,14 @@ Checking test 049 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 438.671565 - 0: The maximum resident set size (KB) = 263252 + 0: The total amount of wall time = 421.261422 + 0: The maximum resident set size (KB) = 263280 Test 049 regional_wofs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rap_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/rap_control Checking test 050 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2118,14 +2190,14 @@ Checking test 050 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 500.939586 - 0: The maximum resident set size (KB) = 807668 + 0: The total amount of wall time = 475.655610 + 0: The maximum resident set size (KB) = 807540 Test 050 rap_control PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/regional_spp_sppt_shum_skeb +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/regional_spp_sppt_shum_skeb Checking test 051 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2136,14 +2208,14 @@ Checking test 051 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 338.620599 - 0: The maximum resident set size (KB) = 897996 + 0: The total amount of wall time = 372.767638 + 0: The maximum resident set size (KB) = 887956 Test 051 regional_spp_sppt_shum_skeb PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rap_decomp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/rap_decomp Checking test 052 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2190,14 +2262,14 @@ Checking test 052 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 524.643341 - 0: The maximum resident set size (KB) = 807332 + 0: The total amount of wall time = 529.357089 + 0: The maximum resident set size (KB) = 807152 Test 052 rap_decomp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rap_2threads +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/rap_2threads Checking test 053 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2244,14 +2316,14 @@ Checking test 053 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 492.800154 - 0: The maximum resident set size (KB) = 878992 + 0: The total amount of wall time = 478.863250 + 0: The maximum resident set size (KB) = 877512 Test 053 rap_2threads PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rap_restart +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/rap_restart Checking test 054 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2290,14 +2362,14 @@ Checking test 054 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 262.087232 - 0: The maximum resident set size (KB) = 554060 + 0: The total amount of wall time = 252.992933 + 0: The maximum resident set size (KB) = 553236 Test 054 rap_restart PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rap_sfcdiff +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/rap_sfcdiff Checking test 055 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2344,14 +2416,14 @@ Checking test 055 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 497.728421 - 0: The maximum resident set size (KB) = 807656 + 0: The total amount of wall time = 486.303838 + 0: The maximum resident set size (KB) = 807592 Test 055 rap_sfcdiff PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rap_sfcdiff_decomp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/rap_sfcdiff_decomp Checking test 056 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2398,14 +2470,14 @@ Checking test 056 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 534.385547 - 0: The maximum resident set size (KB) = 806736 + 0: The total amount of wall time = 512.111472 + 0: The maximum resident set size (KB) = 806724 Test 056 rap_sfcdiff_decomp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rap_sfcdiff_restart +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/rap_sfcdiff_restart Checking test 057 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2444,14 +2516,14 @@ Checking test 057 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 379.337211 - 0: The maximum resident set size (KB) = 551528 + 0: The total amount of wall time = 383.171140 + 0: The maximum resident set size (KB) = 551240 Test 057 rap_sfcdiff_restart PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hrrr_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/hrrr_control Checking test 058 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2498,14 +2570,14 @@ Checking test 058 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 489.942259 - 0: The maximum resident set size (KB) = 804904 + 0: The total amount of wall time = 467.103323 + 0: The maximum resident set size (KB) = 804908 Test 058 hrrr_control PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hrrr_control_decomp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/hrrr_control_decomp Checking test 059 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2552,14 +2624,14 @@ Checking test 059 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 506.327737 - 0: The maximum resident set size (KB) = 804556 + 0: The total amount of wall time = 483.835530 + 0: The maximum resident set size (KB) = 804480 Test 059 hrrr_control_decomp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hrrr_control_2threads +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/hrrr_control_2threads Checking test 060 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2606,14 +2678,14 @@ Checking test 060 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 451.229146 - 0: The maximum resident set size (KB) = 871324 + 0: The total amount of wall time = 439.017739 + 0: The maximum resident set size (KB) = 871224 Test 060 hrrr_control_2threads PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hrrr_control_restart +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/hrrr_control_restart Checking test 061 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2652,14 +2724,14 @@ Checking test 061 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 353.378265 - 0: The maximum resident set size (KB) = 550240 + 0: The total amount of wall time = 363.227625 + 0: The maximum resident set size (KB) = 550096 Test 061 hrrr_control_restart PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rrfs_v1beta +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/rrfs_v1beta Checking test 062 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2706,14 +2778,14 @@ Checking test 062 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 503.441198 - 0: The maximum resident set size (KB) = 800700 + 0: The total amount of wall time = 477.258424 + 0: The maximum resident set size (KB) = 800900 Test 062 rrfs_v1beta PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rrfs_v1nssl +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/rrfs_v1nssl Checking test 063 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2728,14 +2800,14 @@ Checking test 063 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 593.158078 - 0: The maximum resident set size (KB) = 491776 + 0: The total amount of wall time = 579.299151 + 0: The maximum resident set size (KB) = 491760 Test 063 rrfs_v1nssl PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rrfs_v1nssl_nohailnoccn +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/rrfs_v1nssl_nohailnoccn Checking test 064 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2750,14 +2822,14 @@ Checking test 064 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 566.677316 + 0: The total amount of wall time = 567.674335 0: The maximum resident set size (KB) = 485704 Test 064 rrfs_v1nssl_nohailnoccn PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rrfs_conus13km_hrrr_warm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/rrfs_conus13km_hrrr_warm Checking test 065 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2766,14 +2838,14 @@ Checking test 065 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 147.576703 - 0: The maximum resident set size (KB) = 617784 + 0: The total amount of wall time = 150.848651 + 0: The maximum resident set size (KB) = 617128 Test 065 rrfs_conus13km_hrrr_warm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rrfs_smoke_conus13km_hrrr_warm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/rrfs_smoke_conus13km_hrrr_warm Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2782,14 +2854,14 @@ Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 161.167025 - 0: The maximum resident set size (KB) = 627816 + 0: The total amount of wall time = 165.271949 + 0: The maximum resident set size (KB) = 627576 Test 066 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rrfs_conus13km_radar_tten_warm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/rrfs_conus13km_radar_tten_warm Checking test 067 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2798,14 +2870,14 @@ Checking test 067 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 147.357829 - 0: The maximum resident set size (KB) = 620508 + 0: The total amount of wall time = 152.099573 + 0: The maximum resident set size (KB) = 620840 Test 067 rrfs_conus13km_radar_tten_warm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rrfs_conus13km_hrrr_warm_2threads +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/rrfs_conus13km_hrrr_warm_2threads Checking test 068 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2814,14 +2886,14 @@ Checking test 068 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 95.641568 - 0: The maximum resident set size (KB) = 629188 + 0: The total amount of wall time = 104.528021 + 0: The maximum resident set size (KB) = 629468 Test 068 rrfs_conus13km_hrrr_warm_2threads PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rrfs_conus13km_radar_tten_warm_2threads +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/rrfs_conus13km_radar_tten_warm_2threads Checking test 069 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2830,14 +2902,14 @@ Checking test 069 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 105.042143 - 0: The maximum resident set size (KB) = 632864 + 0: The total amount of wall time = 103.667234 + 0: The maximum resident set size (KB) = 632464 Test 069 rrfs_conus13km_radar_tten_warm_2threads PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_csawmgt +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/control_csawmgt Checking test 070 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2848,14 +2920,14 @@ Checking test 070 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 400.884236 - 0: The maximum resident set size (KB) = 505476 + 0: The total amount of wall time = 403.582357 + 0: The maximum resident set size (KB) = 505580 Test 070 control_csawmgt PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_ras +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/control_ras Checking test 071 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2866,26 +2938,26 @@ Checking test 071 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 203.334998 - 0: The maximum resident set size (KB) = 470932 + 0: The total amount of wall time = 205.807586 + 0: The maximum resident set size (KB) = 470844 Test 071 control_ras PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_wam +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/control_wam Checking test 072 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 127.314385 - 0: The maximum resident set size (KB) = 187976 + 0: The total amount of wall time = 128.822653 + 0: The maximum resident set size (KB) = 188056 Test 072 control_wam PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_faster -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_p8_faster +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/control_p8_faster Checking test 073 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2932,14 +3004,14 @@ Checking test 073 control_p8_faster results .... Comparing 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.249241 - 0: The maximum resident set size (KB) = 1379556 + 0: The total amount of wall time = 194.524471 + 0: The maximum resident set size (KB) = 1379632 Test 073 control_p8_faster PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control_faster -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/regional_control_faster +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/regional_control_faster Checking test 074 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2950,42 +3022,42 @@ Checking test 074 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 348.615438 - 0: The maximum resident set size (KB) = 577568 + 0: The total amount of wall time = 321.328923 + 0: The maximum resident set size (KB) = 577612 Test 074 regional_control_faster PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rrfs_conus13km_hrrr_warm_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/rrfs_conus13km_hrrr_warm_debug Checking test 075 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 781.820263 + 0: The total amount of wall time = 785.788202 0: The maximum resident set size (KB) = 649592 Test 075 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rrfs_conus13km_radar_tten_warm_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/rrfs_conus13km_radar_tten_warm_debug Checking test 076 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 782.673804 - 0: The maximum resident set size (KB) = 652324 + 0: The total amount of wall time = 785.698302 + 0: The maximum resident set size (KB) = 652452 Test 076 rrfs_conus13km_radar_tten_warm_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_CubedSphereGrid_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/control_CubedSphereGrid_debug Checking test 077 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3012,334 +3084,334 @@ Checking test 077 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 175.180250 - 0: The maximum resident set size (KB) = 601888 + 0: The total amount of wall time = 172.002543 + 0: The maximum resident set size (KB) = 601992 Test 077 control_CubedSphereGrid_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_wrtGauss_netcdf_parallel_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/control_wrtGauss_netcdf_parallel_debug Checking test 078 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 174.134479 - 0: The maximum resident set size (KB) = 601164 + 0: The total amount of wall time = 174.028083 + 0: The maximum resident set size (KB) = 601236 Test 078 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_stochy_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/control_stochy_debug Checking test 079 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 182.108219 - 0: The maximum resident set size (KB) = 608172 + 0: The total amount of wall time = 197.039738 + 0: The maximum resident set size (KB) = 607944 Test 079 control_stochy_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_lndp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/control_lndp_debug Checking test 080 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 171.106627 - 0: The maximum resident set size (KB) = 606124 + 0: The total amount of wall time = 169.829479 + 0: The maximum resident set size (KB) = 605948 Test 080 control_lndp_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_csawmg_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/control_csawmg_debug Checking test 081 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 267.854356 - 0: The maximum resident set size (KB) = 642268 + 0: The total amount of wall time = 274.237306 + 0: The maximum resident set size (KB) = 642456 Test 081 control_csawmg_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_csawmgt_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/control_csawmgt_debug Checking test 082 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 262.509991 - 0: The maximum resident set size (KB) = 642576 + 0: The total amount of wall time = 274.114717 + 0: The maximum resident set size (KB) = 642624 Test 082 control_csawmgt_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_ras_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/control_ras_debug Checking test 083 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 164.754081 - 0: The maximum resident set size (KB) = 613444 + 0: The total amount of wall time = 175.548253 + 0: The maximum resident set size (KB) = 613816 Test 083 control_ras_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_diag_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_diag_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/control_diag_debug Checking test 084 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 168.486029 - 0: The maximum resident set size (KB) = 660520 + 0: The total amount of wall time = 170.928251 + 0: The maximum resident set size (KB) = 660268 Test 084 control_diag_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_debug_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_debug_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/control_debug_p8 Checking test 085 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 196.997655 - 0: The maximum resident set size (KB) = 1380144 + 0: The total amount of wall time = 220.183765 + 0: The maximum resident set size (KB) = 1380116 Test 085 control_debug_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/regional_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/regional_debug Checking test 086 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1062.146970 - 0: The maximum resident set size (KB) = 606732 + 0: The total amount of wall time = 1066.044196 + 0: The maximum resident set size (KB) = 606784 Test 086 regional_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rap_control_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/rap_control_debug Checking test 087 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 298.830674 - 0: The maximum resident set size (KB) = 972104 + 0: The total amount of wall time = 299.171127 + 0: The maximum resident set size (KB) = 972188 Test 087 rap_control_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hrrr_control_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/hrrr_control_debug Checking test 088 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 290.522807 - 0: The maximum resident set size (KB) = 967276 + 0: The total amount of wall time = 300.690928 + 0: The maximum resident set size (KB) = 967364 Test 088 hrrr_control_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rap_unified_drag_suite_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/rap_unified_drag_suite_debug Checking test 089 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 298.939132 - 0: The maximum resident set size (KB) = 972220 + 0: The total amount of wall time = 303.421405 + 0: The maximum resident set size (KB) = 972224 Test 089 rap_unified_drag_suite_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_diag_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rap_diag_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/rap_diag_debug Checking test 090 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 315.841078 - 0: The maximum resident set size (KB) = 1056444 + 0: The total amount of wall time = 342.151723 + 0: The maximum resident set size (KB) = 1056340 Test 090 rap_diag_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rap_cires_ugwp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/rap_cires_ugwp_debug Checking test 091 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 303.171442 - 0: The maximum resident set size (KB) = 971196 + 0: The total amount of wall time = 313.334131 + 0: The maximum resident set size (KB) = 971188 Test 091 rap_cires_ugwp_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rap_unified_ugwp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/rap_unified_ugwp_debug Checking test 092 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 303.603461 - 0: The maximum resident set size (KB) = 973632 + 0: The total amount of wall time = 302.240709 + 0: The maximum resident set size (KB) = 973468 Test 092 rap_unified_ugwp_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_lndp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rap_lndp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/rap_lndp_debug Checking test 093 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 301.304576 - 0: The maximum resident set size (KB) = 972808 + 0: The total amount of wall time = 307.897810 + 0: The maximum resident set size (KB) = 973040 Test 093 rap_lndp_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_flake_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rap_flake_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/rap_flake_debug Checking test 094 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 296.656209 - 0: The maximum resident set size (KB) = 972020 + 0: The total amount of wall time = 309.298093 + 0: The maximum resident set size (KB) = 972148 Test 094 rap_flake_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_progcld_thompson_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rap_progcld_thompson_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/rap_progcld_thompson_debug Checking test 095 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 297.121195 - 0: The maximum resident set size (KB) = 972052 + 0: The total amount of wall time = 310.160435 + 0: The maximum resident set size (KB) = 972040 Test 095 rap_progcld_thompson_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rap_noah_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/rap_noah_debug Checking test 096 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 291.141954 - 0: The maximum resident set size (KB) = 970616 + 0: The total amount of wall time = 293.635971 + 0: The maximum resident set size (KB) = 970668 Test 096 rap_noah_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rap_sfcdiff_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/rap_sfcdiff_debug Checking test 097 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 297.843661 - 0: The maximum resident set size (KB) = 971788 + 0: The total amount of wall time = 308.510979 + 0: The maximum resident set size (KB) = 971964 Test 097 rap_sfcdiff_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/rap_noah_sfcdiff_cires_ugwp_debug Checking test 098 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 483.550292 - 0: The maximum resident set size (KB) = 971392 + 0: The total amount of wall time = 492.879851 + 0: The maximum resident set size (KB) = 971488 Test 098 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rrfs_v1beta_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/rrfs_v1beta_debug Checking test 099 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 296.261009 - 0: The maximum resident set size (KB) = 967968 + 0: The total amount of wall time = 303.432331 + 0: The maximum resident set size (KB) = 967916 Test 099 rrfs_v1beta_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_wam_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/control_wam_debug Checking test 100 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 296.620749 - 0: The maximum resident set size (KB) = 219112 + 0: The total amount of wall time = 299.672553 + 0: The maximum resident set size (KB) = 219212 Test 100 control_wam_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 101 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3350,14 +3422,14 @@ Checking test 101 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 331.503202 - 0: The maximum resident set size (KB) = 788240 + 0: The total amount of wall time = 332.652023 + 0: The maximum resident set size (KB) = 788368 Test 101 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rap_control_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/rap_control_dyn32_phy32 Checking test 102 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3404,14 +3476,14 @@ Checking test 102 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 397.595512 - 0: The maximum resident set size (KB) = 690912 + 0: The total amount of wall time = 410.964216 + 0: The maximum resident set size (KB) = 690816 Test 102 rap_control_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hrrr_control_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/hrrr_control_dyn32_phy32 Checking test 103 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3458,14 +3530,14 @@ Checking test 103 hrrr_control_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 214.714284 - 0: The maximum resident set size (KB) = 689252 + 0: The total amount of wall time = 221.749606 + 0: The maximum resident set size (KB) = 689260 Test 103 hrrr_control_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rap_2threads_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/rap_2threads_dyn32_phy32 Checking test 104 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3512,14 +3584,14 @@ Checking test 104 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 380.772794 - 0: The maximum resident set size (KB) = 740516 + 0: The total amount of wall time = 385.823505 + 0: The maximum resident set size (KB) = 740556 Test 104 rap_2threads_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hrrr_control_2threads_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/hrrr_control_2threads_dyn32_phy32 Checking test 105 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3566,14 +3638,14 @@ Checking test 105 hrrr_control_2threads_dyn32_phy32 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 = 211.592422 - 0: The maximum resident set size (KB) = 742832 + 0: The total amount of wall time = 213.936884 + 0: The maximum resident set size (KB) = 742768 Test 105 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hrrr_control_decomp_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/hrrr_control_decomp_dyn32_phy32 Checking test 106 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3620,14 +3692,14 @@ Checking test 106 hrrr_control_decomp_dyn32_phy32 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 = 227.148865 - 0: The maximum resident set size (KB) = 687980 + 0: The total amount of wall time = 241.109941 + 0: The maximum resident set size (KB) = 688192 Test 106 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rap_restart_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/rap_restart_dyn32_phy32 Checking test 107 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3666,14 +3738,14 @@ Checking test 107 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 294.829873 - 0: The maximum resident set size (KB) = 524880 + 0: The total amount of wall time = 439.564381 + 0: The maximum resident set size (KB) = 524952 Test 107 rap_restart_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hrrr_control_restart_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/hrrr_control_restart_dyn32_phy32 Checking test 108 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3712,14 +3784,14 @@ Checking test 108 hrrr_control_restart_dyn32_phy32 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 = 106.857201 - 0: The maximum resident set size (KB) = 517672 + 0: The total amount of wall time = 110.968316 + 0: The maximum resident set size (KB) = 517732 Test 108 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn64_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rap_control_dyn64_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/rap_control_dyn64_phy32 Checking test 109 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3766,81 +3838,81 @@ Checking test 109 rap_control_dyn64_phy32 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 = 269.565261 - 0: The maximum resident set size (KB) = 713864 + 0: The total amount of wall time = 291.039127 + 0: The maximum resident set size (KB) = 713860 Test 109 rap_control_dyn64_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rap_control_debug_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/rap_control_debug_dyn32_phy32 Checking test 110 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 295.564160 - 0: The maximum resident set size (KB) = 856772 + 0: The total amount of wall time = 306.977983 + 0: The maximum resident set size (KB) = 856644 Test 110 rap_control_debug_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hrrr_control_debug_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/hrrr_control_debug_dyn32_phy32 Checking test 111 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 288.608347 - 0: The maximum resident set size (KB) = 854852 + 0: The total amount of wall time = 294.678023 + 0: The maximum resident set size (KB) = 854924 Test 111 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/rap_control_dyn64_phy32_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/rap_control_dyn64_phy32_debug Checking test 112 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 299.468266 - 0: The maximum resident set size (KB) = 880308 + 0: The total amount of wall time = 327.427884 + 0: The maximum resident set size (KB) = 880260 Test 112 rap_control_dyn64_phy32_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hafs_regional_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/hafs_regional_atm Checking test 113 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 276.201999 - 0: The maximum resident set size (KB) = 681680 + 0: The total amount of wall time = 348.677406 + 0: The maximum resident set size (KB) = 681612 Test 113 hafs_regional_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hafs_regional_atm_thompson_gfdlsf +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/hafs_regional_atm_thompson_gfdlsf Checking test 114 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 308.908409 - 0: The maximum resident set size (KB) = 1036920 + 0: The total amount of wall time = 478.769540 + 0: The maximum resident set size (KB) = 1035796 Test 114 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hafs_regional_atm_ocn +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/hafs_regional_atm_ocn Checking test 115 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3849,14 +3921,14 @@ Checking test 115 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 458.879792 - 0: The maximum resident set size (KB) = 712396 + 0: The total amount of wall time = 653.885537 + 0: The maximum resident set size (KB) = 712404 Test 115 hafs_regional_atm_ocn PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_wav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hafs_regional_atm_wav +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/hafs_regional_atm_wav Checking test 116 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3865,14 +3937,14 @@ Checking test 116 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 938.760423 - 0: The maximum resident set size (KB) = 747640 + 0: The total amount of wall time = 1046.925894 + 0: The maximum resident set size (KB) = 746740 Test 116 hafs_regional_atm_wav PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn_wav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hafs_regional_atm_ocn_wav +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/hafs_regional_atm_ocn_wav Checking test 117 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3883,28 +3955,28 @@ Checking test 117 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 1052.307244 - 0: The maximum resident set size (KB) = 764296 + 0: The total amount of wall time = 1062.421653 + 0: The maximum resident set size (KB) = 764764 Test 117 hafs_regional_atm_ocn_wav PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hafs_regional_1nest_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/hafs_regional_1nest_atm Checking test 118 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 383.032637 - 0: The maximum resident set size (KB) = 277124 + 0: The total amount of wall time = 401.811140 + 0: The maximum resident set size (KB) = 277104 Test 118 hafs_regional_1nest_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hafs_regional_telescopic_2nests_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/hafs_regional_telescopic_2nests_atm Checking test 119 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3913,28 +3985,28 @@ Checking test 119 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 437.252416 - 0: The maximum resident set size (KB) = 282600 + 0: The total amount of wall time = 460.067689 + 0: The maximum resident set size (KB) = 282740 Test 119 hafs_regional_telescopic_2nests_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hafs_global_1nest_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/hafs_global_1nest_atm Checking test 120 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 172.147320 - 0: The maximum resident set size (KB) = 178040 + 0: The total amount of wall time = 180.893227 + 0: The maximum resident set size (KB) = 177688 Test 120 hafs_global_1nest_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_multiple_4nests_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hafs_global_multiple_4nests_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/hafs_global_multiple_4nests_atm Checking test 121 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3952,14 +4024,14 @@ Checking test 121 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 512.563419 - 0: The maximum resident set size (KB) = 208676 + 0: The total amount of wall time = 509.935446 + 0: The maximum resident set size (KB) = 209896 Test 121 hafs_global_multiple_4nests_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hafs_regional_specified_moving_1nest_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/hafs_regional_specified_moving_1nest_atm Checking test 122 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3968,28 +4040,28 @@ Checking test 122 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 238.253177 - 0: The maximum resident set size (KB) = 288212 + 0: The total amount of wall time = 248.578412 + 0: The maximum resident set size (KB) = 288076 Test 122 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hafs_regional_storm_following_1nest_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/hafs_regional_storm_following_1nest_atm Checking test 123 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 225.704490 - 0: The maximum resident set size (KB) = 286988 + 0: The total amount of wall time = 237.492933 + 0: The maximum resident set size (KB) = 286816 Test 123 hafs_regional_storm_following_1nest_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/hafs_regional_storm_following_1nest_atm_ocn Checking test 124 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3998,42 +4070,42 @@ Checking test 124 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 269.951303 - 0: The maximum resident set size (KB) = 324288 + 0: The total amount of wall time = 274.212238 + 0: The maximum resident set size (KB) = 323880 Test 124 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hafs_global_storm_following_1nest_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/hafs_global_storm_following_1nest_atm Checking test 125 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 70.791324 - 0: The maximum resident set size (KB) = 192948 + 0: The total amount of wall time = 74.440042 + 0: The maximum resident set size (KB) = 192992 Test 125 hafs_global_storm_following_1nest_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 126 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 782.187963 - 0: The maximum resident set size (KB) = 353160 + 0: The total amount of wall time = 791.558627 + 0: The maximum resident set size (KB) = 352924 Test 126 hafs_regional_storm_following_1nest_atm_ocn_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 127 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4044,14 +4116,14 @@ Checking test 127 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 737.356886 - 0: The maximum resident set size (KB) = 366700 + 0: The total amount of wall time = 763.457759 + 0: The maximum resident set size (KB) = 368824 Test 127 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_docn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hafs_regional_docn +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/hafs_regional_docn Checking test 128 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4059,14 +4131,14 @@ Checking test 128 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 389.116045 - 0: The maximum resident set size (KB) = 723212 + 0: The total amount of wall time = 403.393786 + 0: The maximum resident set size (KB) = 723264 -Test 128 hafs_regional_docn PASS +Test 128 hafs_regional_docn PASS Tries: 2 baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_docn_oisst -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hafs_regional_docn_oisst +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/hafs_regional_docn_oisst Checking test 129 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4074,131 +4146,131 @@ Checking test 129 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 389.347870 - 0: The maximum resident set size (KB) = 710132 + 0: The total amount of wall time = 411.004148 + 0: The maximum resident set size (KB) = 709756 Test 129 hafs_regional_docn_oisst PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_datm_cdeps -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/hafs_regional_datm_cdeps +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/hafs_regional_datm_cdeps Checking test 130 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 1171.687483 - 0: The maximum resident set size (KB) = 808992 + 0: The total amount of wall time = 1211.317548 + 0: The maximum resident set size (KB) = 808980 Test 130 hafs_regional_datm_cdeps PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/datm_cdeps_control_cfsr Checking test 131 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 168.435731 - 0: The maximum resident set size (KB) = 715724 + 0: The total amount of wall time = 181.078845 + 0: The maximum resident set size (KB) = 717492 Test 131 datm_cdeps_control_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/datm_cdeps_restart_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/datm_cdeps_restart_cfsr Checking test 132 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 96.691630 - 0: The maximum resident set size (KB) = 715912 + 0: The total amount of wall time = 131.113582 + 0: The maximum resident set size (KB) = 715972 Test 132 datm_cdeps_restart_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/datm_cdeps_control_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/datm_cdeps_control_gefs Checking test 133 datm_cdeps_control_gefs 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 = 162.338902 - 0: The maximum resident set size (KB) = 608800 + 0: The total amount of wall time = 170.555649 + 0: The maximum resident set size (KB) = 598444 Test 133 datm_cdeps_control_gefs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_iau_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/datm_cdeps_iau_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/datm_cdeps_iau_gefs Checking test 134 datm_cdeps_iau_gefs 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 = 166.397940 - 0: The maximum resident set size (KB) = 607164 + 0: The total amount of wall time = 172.052592 + 0: The maximum resident set size (KB) = 593356 Test 134 datm_cdeps_iau_gefs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_stochy_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/datm_cdeps_stochy_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/datm_cdeps_stochy_gefs Checking test 135 datm_cdeps_stochy_gefs 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 = 162.440756 - 0: The maximum resident set size (KB) = 598152 + 0: The total amount of wall time = 190.171613 + 0: The maximum resident set size (KB) = 597392 Test 135 datm_cdeps_stochy_gefs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/datm_cdeps_ciceC_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/datm_cdeps_ciceC_cfsr Checking test 136 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.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.239566 - 0: The maximum resident set size (KB) = 717696 + 0: The total amount of wall time = 176.583912 + 0: The maximum resident set size (KB) = 715776 Test 136 datm_cdeps_ciceC_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_bulk_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/datm_cdeps_bulk_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/datm_cdeps_bulk_cfsr Checking test 137 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 164.917461 - 0: The maximum resident set size (KB) = 715816 + 0: The total amount of wall time = 207.289463 + 0: The maximum resident set size (KB) = 721484 Test 137 datm_cdeps_bulk_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_bulk_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/datm_cdeps_bulk_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/datm_cdeps_bulk_gefs Checking test 138 datm_cdeps_bulk_gefs 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 = 163.247702 - 0: The maximum resident set size (KB) = 608924 + 0: The total amount of wall time = 168.226713 + 0: The maximum resident set size (KB) = 602148 Test 138 datm_cdeps_bulk_gefs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_mx025_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/datm_cdeps_mx025_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/datm_cdeps_mx025_cfsr Checking test 139 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4207,14 +4279,14 @@ Checking test 139 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 411.611785 - 0: The maximum resident set size (KB) = 494420 + 0: The total amount of wall time = 489.889896 + 0: The maximum resident set size (KB) = 496572 Test 139 datm_cdeps_mx025_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_mx025_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/datm_cdeps_mx025_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/datm_cdeps_mx025_gefs Checking test 140 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4223,77 +4295,77 @@ Checking test 140 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 430.934977 - 0: The maximum resident set size (KB) = 475744 + 0: The total amount of wall time = 483.893366 + 0: The maximum resident set size (KB) = 475740 Test 140 datm_cdeps_mx025_gefs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/datm_cdeps_multiple_files_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/datm_cdeps_multiple_files_cfsr Checking test 141 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 166.309890 - 0: The maximum resident set size (KB) = 715824 + 0: The total amount of wall time = 170.250594 + 0: The maximum resident set size (KB) = 721420 Test 141 datm_cdeps_multiple_files_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/datm_cdeps_3072x1536_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/datm_cdeps_3072x1536_cfsr Checking test 142 datm_cdeps_3072x1536_cfsr 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 = 255.714373 - 0: The maximum resident set size (KB) = 1947960 + 0: The total amount of wall time = 314.004626 + 0: The maximum resident set size (KB) = 1947836 Test 142 datm_cdeps_3072x1536_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_gfs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/datm_cdeps_gfs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/datm_cdeps_gfs Checking test 143 datm_cdeps_gfs 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 = 256.762095 - 0: The maximum resident set size (KB) = 1947640 + 0: The total amount of wall time = 255.428690 + 0: The maximum resident set size (KB) = 1948024 Test 143 datm_cdeps_gfs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_debug_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/datm_cdeps_debug_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/datm_cdeps_debug_cfsr Checking test 144 datm_cdeps_debug_cfsr 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 = 373.118633 - 0: The maximum resident set size (KB) = 708084 + 0: The total amount of wall time = 382.841812 + 0: The maximum resident set size (KB) = 714924 Test 144 datm_cdeps_debug_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr_faster -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/datm_cdeps_control_cfsr_faster +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/datm_cdeps_control_cfsr_faster Checking test 145 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 164.181284 - 0: The maximum resident set size (KB) = 721276 + 0: The total amount of wall time = 169.099854 + 0: The maximum resident set size (KB) = 721184 Test 145 datm_cdeps_control_cfsr_faster PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/datm_cdeps_lnd_gswp3 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/datm_cdeps_lnd_gswp3 Checking test 146 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4302,14 +4374,14 @@ Checking test 146 datm_cdeps_lnd_gswp3 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 = 10.671925 - 0: The maximum resident set size (KB) = 153944 + 0: The total amount of wall time = 15.308527 + 0: The maximum resident set size (KB) = 149904 Test 146 datm_cdeps_lnd_gswp3 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/datm_cdeps_lnd_gswp3_rst +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/datm_cdeps_lnd_gswp3_rst Checking test 147 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4318,14 +4390,14 @@ Checking test 147 datm_cdeps_lnd_gswp3_rst 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 = 23.943832 - 0: The maximum resident set size (KB) = 149936 + 0: The total amount of wall time = 25.744802 + 0: The maximum resident set size (KB) = 154092 Test 147 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_atmlnd_sbs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_p8_atmlnd_sbs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/control_p8_atmlnd_sbs Checking test 148 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4410,14 +4482,14 @@ Checking test 148 control_p8_atmlnd_sbs 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 = 233.680676 - 0: The maximum resident set size (KB) = 1412424 + 0: The total amount of wall time = 272.657391 + 0: The maximum resident set size (KB) = 1412612 Test 148 control_p8_atmlnd_sbs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_atmwav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/control_atmwav +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/control_atmwav Checking test 149 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4461,14 +4533,14 @@ Checking test 149 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 94.055888 - 0: The maximum resident set size (KB) = 450752 + 0: The total amount of wall time = 101.961382 + 0: The maximum resident set size (KB) = 450736 Test 149 control_atmwav PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/atmaero_control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/atmaero_control_p8 Checking test 150 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4512,14 +4584,14 @@ Checking test 150 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 248.738018 - 0: The maximum resident set size (KB) = 1447884 + 0: The total amount of wall time = 280.885203 + 0: The maximum resident set size (KB) = 1447732 Test 150 atmaero_control_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/atmaero_control_p8_rad +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/atmaero_control_p8_rad Checking test 151 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4563,14 +4635,14 @@ Checking test 151 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 307.214707 - 0: The maximum resident set size (KB) = 1468396 + 0: The total amount of wall time = 318.498630 + 0: The maximum resident set size (KB) = 1468492 Test 151 atmaero_control_p8_rad PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad_micro -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/atmaero_control_p8_rad_micro +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/atmaero_control_p8_rad_micro Checking test 152 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4614,14 +4686,14 @@ Checking test 152 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 307.479311 - 0: The maximum resident set size (KB) = 1473160 + 0: The total amount of wall time = 327.523569 + 0: The maximum resident set size (KB) = 1473212 Test 152 atmaero_control_p8_rad_micro PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/regional_atmaq +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/regional_atmaq Checking test 153 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4637,14 +4709,14 @@ Checking test 153 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 646.020696 - 0: The maximum resident set size (KB) = 1101548 + 0: The total amount of wall time = 701.812861 + 0: The maximum resident set size (KB) = 1106568 Test 153 regional_atmaq PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq_faster -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_31002/regional_atmaq_faster +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/regional_atmaq_faster Checking test 154 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4660,94 +4732,12 @@ Checking test 154 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 620.037739 - 0: The maximum resident set size (KB) = 1096400 + 0: The total amount of wall time = 690.486970 + 0: The maximum resident set size (KB) = 1097044 Test 154 regional_atmaq_faster PASS -FAILED TESTS: -Test cpld_control_p8_faster 021 failed in run_test failed - -REGRESSION TEST FAILED -Wed Mar 8 19:34:56 EST 2023 -Elapsed time: 05h:29m:43s. Have a nice day! -Wed Mar 8 19:55:56 EST 2023 -Start Regression test - -Compile 001 elapsed time 986 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_faster -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_6091/cpld_control_p8_faster -Checking test 001 cpld_control_p8_faster results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 373.895626 - 0: The maximum resident set size (KB) = 1567976 - -Test 001 cpld_control_p8_faster PASS - REGRESSION TEST WAS SUCCESSFUL -Wed Mar 8 20:29:07 EST 2023 -Elapsed time: 00h:33m:26s. Have a nice day! +Fri Mar 10 17:51:19 EST 2023 +Elapsed time: 08h:31m:31s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 21f2f6c6251..9ede579991a 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,21 +1,21 @@ -Wed Mar 8 18:48:43 UTC 2023 +Fri Mar 10 13:47:44 UTC 2023 Start Regression test -Compile 001 elapsed time 178 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 184 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 311 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 95 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 179 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 388 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 312 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 312 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 257 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 222 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 139 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 012 elapsed time 113 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 001 elapsed time 186 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 190 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 333 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 105 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 186 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 397 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 323 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 326 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 264 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 235 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 159 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 012 elapsed time 117 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/control_c48 Checking test 001 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -54,14 +54,14 @@ Checking test 001 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 682.355812 -0: The maximum resident set size (KB) = 702256 +0: The total amount of wall time = 683.491099 +0: The maximum resident set size (KB) = 703164 Test 001 control_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/control_stochy Checking test 002 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -72,14 +72,14 @@ Checking test 002 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 654.802339 - 0: The maximum resident set size (KB) = 478132 + 0: The total amount of wall time = 637.248503 + 0: The maximum resident set size (KB) = 483252 Test 002 control_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/control_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/control_ras Checking test 003 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -90,14 +90,14 @@ Checking test 003 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 819.915274 - 0: The maximum resident set size (KB) = 486772 + 0: The total amount of wall time = 837.820596 + 0: The maximum resident set size (KB) = 486880 Test 003 control_ras PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/control_p8 Checking test 004 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -144,14 +144,14 @@ Checking test 004 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 911.645749 - 0: The maximum resident set size (KB) = 1231888 + 0: The total amount of wall time = 916.900903 + 0: The maximum resident set size (KB) = 1234688 Test 004 control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/rap_control Checking test 005 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -198,14 +198,14 @@ Checking test 005 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1476.105232 - 0: The maximum resident set size (KB) = 827272 + 0: The total amount of wall time = 1478.889558 + 0: The maximum resident set size (KB) = 832344 Test 005 rap_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/rap_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/rap_decomp Checking test 006 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -252,14 +252,14 @@ Checking test 006 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1450.646374 - 0: The maximum resident set size (KB) = 830716 + 0: The total amount of wall time = 1439.968999 + 0: The maximum resident set size (KB) = 827936 Test 006 rap_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/rap_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/rap_2threads Checking test 007 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -306,14 +306,14 @@ Checking test 007 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1333.477024 - 0: The maximum resident set size (KB) = 897896 + 0: The total amount of wall time = 1393.262545 + 0: The maximum resident set size (KB) = 898360 Test 007 rap_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/rap_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/rap_restart Checking test 008 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -352,14 +352,14 @@ Checking test 008 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 728.915132 - 0: The maximum resident set size (KB) = 545016 + 0: The total amount of wall time = 721.152439 + 0: The maximum resident set size (KB) = 549688 Test 008 rap_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/rap_sfcdiff Checking test 009 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -406,14 +406,14 @@ Checking test 009 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1469.223304 - 0: The maximum resident set size (KB) = 829620 + 0: The total amount of wall time = 1458.406862 + 0: The maximum resident set size (KB) = 831528 Test 009 rap_sfcdiff PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/rap_sfcdiff_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/rap_sfcdiff_decomp Checking test 010 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -460,14 +460,14 @@ Checking test 010 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1462.989314 - 0: The maximum resident set size (KB) = 830432 + 0: The total amount of wall time = 1459.362079 + 0: The maximum resident set size (KB) = 826724 Test 010 rap_sfcdiff_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/rap_sfcdiff_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/rap_sfcdiff_restart Checking test 011 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -506,14 +506,14 @@ Checking test 011 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1064.649970 - 0: The maximum resident set size (KB) = 555008 + 0: The total amount of wall time = 1092.935291 + 0: The maximum resident set size (KB) = 550500 Test 011 rap_sfcdiff_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/hrrr_control Checking test 012 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -560,14 +560,14 @@ Checking test 012 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1420.478225 - 0: The maximum resident set size (KB) = 825692 + 0: The total amount of wall time = 1444.137289 + 0: The maximum resident set size (KB) = 828684 Test 012 hrrr_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/hrrr_control_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/hrrr_control_2threads Checking test 013 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -614,14 +614,14 @@ Checking test 013 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1321.714190 - 0: The maximum resident set size (KB) = 892732 + 0: The total amount of wall time = 1310.178860 + 0: The maximum resident set size (KB) = 896084 Test 013 hrrr_control_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/hrrr_control_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/hrrr_control_decomp Checking test 014 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -668,14 +668,14 @@ Checking test 014 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1441.376565 - 0: The maximum resident set size (KB) = 827624 + 0: The total amount of wall time = 1393.724272 + 0: The maximum resident set size (KB) = 829064 Test 014 hrrr_control_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/hrrr_control_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/hrrr_control_restart Checking test 015 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -714,14 +714,14 @@ Checking test 015 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1064.852715 - 0: The maximum resident set size (KB) = 547140 + 0: The total amount of wall time = 1055.924741 + 0: The maximum resident set size (KB) = 549624 Test 015 hrrr_control_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/rrfs_v1beta Checking test 016 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -768,14 +768,14 @@ Checking test 016 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1449.123000 - 0: The maximum resident set size (KB) = 830832 + 0: The total amount of wall time = 1467.493013 + 0: The maximum resident set size (KB) = 823044 Test 016 rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/rrfs_conus13km_hrrr_warm Checking test 017 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -784,14 +784,14 @@ Checking test 017 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 790.477177 - 0: The maximum resident set size (KB) = 636152 + 0: The total amount of wall time = 769.893207 + 0: The maximum resident set size (KB) = 635172 Test 017 rrfs_conus13km_hrrr_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/rrfs_smoke_conus13km_hrrr_warm Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -800,14 +800,14 @@ Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 809.639374 - 0: The maximum resident set size (KB) = 651488 + 0: The total amount of wall time = 801.990935 + 0: The maximum resident set size (KB) = 651924 Test 018 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/rrfs_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/rrfs_conus13km_radar_tten_warm Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -816,14 +816,14 @@ Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 706.494754 - 0: The maximum resident set size (KB) = 638688 + 0: The total amount of wall time = 771.835506 + 0: The maximum resident set size (KB) = 639420 Test 019 rrfs_conus13km_radar_tten_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/rrfs_conus13km_radar_tten_warm_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/rrfs_conus13km_radar_tten_warm_2threads Checking test 020 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -832,208 +832,208 @@ Checking test 020 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 890.945608 - 0: The maximum resident set size (KB) = 638364 + 0: The total amount of wall time = 859.802496 + 0: The maximum resident set size (KB) = 638784 Test 020 rrfs_conus13km_radar_tten_warm_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/control_diag_debug Checking test 021 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 127.366642 - 0: The maximum resident set size (KB) = 533600 + 0: The total amount of wall time = 132.505730 + 0: The maximum resident set size (KB) = 534044 Test 021 control_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/regional_debug Checking test 022 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 605.608514 - 0: The maximum resident set size (KB) = 595136 + 0: The total amount of wall time = 727.695499 + 0: The maximum resident set size (KB) = 596980 Test 022 regional_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/rap_control_debug Checking test 023 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 179.426420 - 0: The maximum resident set size (KB) = 847532 + 0: The total amount of wall time = 179.186491 + 0: The maximum resident set size (KB) = 845416 Test 023 rap_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/hrrr_control_debug Checking test 024 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 174.472156 - 0: The maximum resident set size (KB) = 842028 + 0: The total amount of wall time = 174.885552 + 0: The maximum resident set size (KB) = 841604 Test 024 hrrr_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/rap_diag_debug Checking test 025 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 216.558657 - 0: The maximum resident set size (KB) = 928472 + 0: The total amount of wall time = 214.389031 + 0: The maximum resident set size (KB) = 930812 Test 025 rap_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/rap_noah_sfcdiff_cires_ugwp_debug Checking test 026 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 278.043056 - 0: The maximum resident set size (KB) = 843276 + 0: The total amount of wall time = 279.122366 + 0: The maximum resident set size (KB) = 850896 Test 026 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/rap_progcld_thompson_debug Checking test 027 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 180.828856 - 0: The maximum resident set size (KB) = 849428 + 0: The total amount of wall time = 178.869411 + 0: The maximum resident set size (KB) = 843588 Test 027 rap_progcld_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/rrfs_v1beta_debug Checking test 028 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 177.323305 - 0: The maximum resident set size (KB) = 846396 + 0: The total amount of wall time = 177.839206 + 0: The maximum resident set size (KB) = 846032 Test 028 rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/control_ras_debug Checking test 029 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 103.695708 - 0: The maximum resident set size (KB) = 483900 + 0: The total amount of wall time = 103.354216 + 0: The maximum resident set size (KB) = 486368 Test 029 control_ras_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/control_stochy_debug Checking test 030 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 117.837026 - 0: The maximum resident set size (KB) = 479664 + 0: The total amount of wall time = 121.501432 + 0: The maximum resident set size (KB) = 480484 Test 030 control_stochy_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/control_debug_p8 Checking test 031 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 120.588814 - 0: The maximum resident set size (KB) = 1234016 + 0: The total amount of wall time = 119.488444 + 0: The maximum resident set size (KB) = 1233688 Test 031 control_debug_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/rrfs_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/rrfs_conus13km_hrrr_warm_debug Checking test 032 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 535.860072 - 0: The maximum resident set size (KB) = 652852 + 0: The total amount of wall time = 568.134560 + 0: The maximum resident set size (KB) = 652792 Test 032 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_conus13km_radar_tten_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/rrfs_conus13km_radar_tten_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/rrfs_conus13km_radar_tten_warm_debug Checking test 033 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 584.291045 - 0: The maximum resident set size (KB) = 656148 + 0: The total amount of wall time = 586.683455 + 0: The maximum resident set size (KB) = 656632 Test 033 rrfs_conus13km_radar_tten_warm_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/control_wam_debug Checking test 034 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 186.141810 - 0: The maximum resident set size (KB) = 193940 + 0: The total amount of wall time = 184.633002 + 0: The maximum resident set size (KB) = 193128 Test 034 control_wam_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/rap_control_dyn32_phy32 Checking test 035 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1080,14 +1080,14 @@ Checking test 035 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1462.735342 - 0: The maximum resident set size (KB) = 685572 + 0: The total amount of wall time = 1435.015489 + 0: The maximum resident set size (KB) = 688980 Test 035 rap_control_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/hrrr_control_dyn32_phy32 Checking test 036 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1134,14 +1134,14 @@ Checking test 036 hrrr_control_dyn32_phy32 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 = 738.943688 - 0: The maximum resident set size (KB) = 685668 + 0: The total amount of wall time = 739.542477 + 0: The maximum resident set size (KB) = 681448 Test 036 hrrr_control_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/rap_2threads_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/rap_2threads_dyn32_phy32 Checking test 037 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1188,14 +1188,14 @@ Checking test 037 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1348.642021 - 0: The maximum resident set size (KB) = 731040 + 0: The total amount of wall time = 1358.104085 + 0: The maximum resident set size (KB) = 732132 Test 037 rap_2threads_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/hrrr_control_2threads_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/hrrr_control_2threads_dyn32_phy32 Checking test 038 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1242,14 +1242,14 @@ Checking test 038 hrrr_control_2threads_dyn32_phy32 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 = 673.903231 - 0: The maximum resident set size (KB) = 724032 + 0: The total amount of wall time = 683.452629 + 0: The maximum resident set size (KB) = 730224 Test 038 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/hrrr_control_decomp_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/hrrr_control_decomp_dyn32_phy32 Checking test 039 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1296,14 +1296,14 @@ Checking test 039 hrrr_control_decomp_dyn32_phy32 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 = 736.915262 - 0: The maximum resident set size (KB) = 686164 + 0: The total amount of wall time = 735.809500 + 0: The maximum resident set size (KB) = 684204 Test 039 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/rap_restart_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/rap_restart_dyn32_phy32 Checking test 040 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1342,14 +1342,14 @@ Checking test 040 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1077.092690 - 0: The maximum resident set size (KB) = 516060 + 0: The total amount of wall time = 1077.935948 + 0: The maximum resident set size (KB) = 513004 Test 040 rap_restart_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/hrrr_control_restart_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/hrrr_control_restart_dyn32_phy32 Checking test 041 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1388,14 +1388,14 @@ Checking test 041 hrrr_control_restart_dyn32_phy32 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 = 372.044029 - 0: The maximum resident set size (KB) = 512500 + 0: The total amount of wall time = 350.480804 + 0: The maximum resident set size (KB) = 508012 Test 041 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/rap_control_dyn64_phy32 Checking test 042 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1442,50 +1442,50 @@ Checking test 042 rap_control_dyn64_phy32 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 = 1057.824830 - 0: The maximum resident set size (KB) = 709960 + 0: The total amount of wall time = 1061.506081 + 0: The maximum resident set size (KB) = 710304 Test 042 rap_control_dyn64_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/rap_control_debug_dyn32_phy32 Checking test 043 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 169.642350 - 0: The maximum resident set size (KB) = 710304 + 0: The total amount of wall time = 173.002994 + 0: The maximum resident set size (KB) = 703208 Test 043 rap_control_debug_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/hrrr_control_debug_dyn32_phy32 Checking test 044 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 172.103080 - 0: The maximum resident set size (KB) = 708988 + 0: The total amount of wall time = 171.837249 + 0: The maximum resident set size (KB) = 705536 Test 044 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/rap_control_dyn64_phy32_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/rap_control_dyn64_phy32_debug Checking test 045 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 203.667185 - 0: The maximum resident set size (KB) = 724732 + 0: The total amount of wall time = 207.455324 + 0: The maximum resident set size (KB) = 724468 Test 045 rap_control_dyn64_phy32_debug PASS @@ -1493,7 +1493,7 @@ Test 046 cpld_control_p8 FAIL baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/cpld_control_nowave_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/cpld_control_nowave_noaero_p8 Checking test 047 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1555,14 +1555,14 @@ Checking test 047 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 1229.194464 - 0: The maximum resident set size (KB) = 1330956 + 0: The total amount of wall time = 1222.525573 + 0: The maximum resident set size (KB) = 1331544 Test 047 cpld_control_nowave_noaero_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/cpld_debug_p8 Checking test 048 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1615,21 +1615,21 @@ Checking test 048 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 893.937828 - 0: The maximum resident set size (KB) = 1446376 + 0: The total amount of wall time = 927.741282 + 0: The maximum resident set size (KB) = 1446504 Test 048 cpld_debug_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25504/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/datm_cdeps_control_cfsr Checking test 049 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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.949118 - 0: The maximum resident set size (KB) = 660292 + 0: The total amount of wall time = 180.545671 + 0: The maximum resident set size (KB) = 668660 Test 049 datm_cdeps_control_cfsr PASS @@ -1637,15 +1637,15 @@ FAILED TESTS: Test cpld_control_p8 046 failed in run_test failed REGRESSION TEST FAILED -Wed Mar 8 20:05:33 UTC 2023 -Elapsed time: 01h:16m:51s. Have a nice day! -Wed Mar 8 20:41:31 UTC 2023 +Fri Mar 10 14:57:53 UTC 2023 +Elapsed time: 01h:10m:10s. Have a nice day! +Fri Mar 10 15:35:40 UTC 2023 Start Regression test -Compile 001 elapsed time 256 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 001 elapsed time 263 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_248518/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_91197/cpld_control_p8 Checking test 001 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1710,12 +1710,12 @@ Checking test 001 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1685.072982 - 0: The maximum resident set size (KB) = 1432388 + 0: The total amount of wall time = 1734.177516 + 0: The maximum resident set size (KB) = 1428440 Test 001 cpld_control_p8 PASS REGRESSION TEST WAS SUCCESSFUL -Wed Mar 8 21:18:35 UTC 2023 -Elapsed time: 00h:37m:04s. Have a nice day! +Fri Mar 10 16:14:09 UTC 2023 +Elapsed time: 00h:38m:30s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 7896c257a3e..58f773c48e5 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,42 +1,42 @@ -Wed Mar 8 18:32:37 UTC 2023 +Fri Mar 10 13:33:10 UTC 2023 Start Regression test -Compile 001 elapsed time 607 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 606 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 551 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 219 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 200 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 506 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 497 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 688 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 487 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 471 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 480 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 425 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 590 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 226 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 187 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 434 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 445 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 159 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 161 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 555 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 021 elapsed time 193 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 627 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 583 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 024 elapsed time 181 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 110 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 186 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 51 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 472 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 523 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 465 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 449 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 198 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 534 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 612 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 610 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 591 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 244 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 217 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 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 007 elapsed time 511 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 713 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 509 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 509 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 486 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 432 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 570 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 211 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 216 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 485 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 466 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 179 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 167 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 589 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 021 elapsed time 225 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 639 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 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 024 elapsed time 205 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 116 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 185 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 59 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 497 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 576 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 497 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 473 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 202 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 533 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_mixedmode -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/cpld_control_p8_mixedmode +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -101,14 +101,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 304.281405 - 0: The maximum resident set size (KB) = 3140052 + 0: The total amount of wall time = 314.799261 + 0: The maximum resident set size (KB) = 3143496 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_gfsv17 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/cpld_control_gfsv17 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -172,14 +172,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 221.160056 - 0: The maximum resident set size (KB) = 1726356 + 0: The total amount of wall time = 227.442066 + 0: The maximum resident set size (KB) = 1726368 Test 002 cpld_control_gfsv17 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -244,14 +244,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 336.081932 - 0: The maximum resident set size (KB) = 3179016 + 0: The total amount of wall time = 343.392505 + 0: The maximum resident set size (KB) = 3181600 Test 003 cpld_control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/cpld_restart_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -304,14 +304,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 194.269673 - 0: The maximum resident set size (KB) = 3054840 + 0: The total amount of wall time = 200.686009 + 0: The maximum resident set size (KB) = 3053416 Test 004 cpld_restart_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/cpld_2threads_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -364,14 +364,14 @@ Checking test 005 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 351.556681 - 0: The maximum resident set size (KB) = 3509760 + 0: The total amount of wall time = 358.266667 + 0: The maximum resident set size (KB) = 3512692 Test 005 cpld_2threads_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/cpld_decomp_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/cpld_decomp_p8 Checking test 006 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -424,14 +424,14 @@ Checking test 006 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 338.172297 - 0: The maximum resident set size (KB) = 3170352 + 0: The total amount of wall time = 346.531922 + 0: The maximum resident set size (KB) = 3176364 Test 006 cpld_decomp_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/cpld_mpi_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/cpld_mpi_p8 Checking test 007 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -484,14 +484,14 @@ Checking test 007 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 277.060471 - 0: The maximum resident set size (KB) = 3023016 + 0: The total amount of wall time = 284.596555 + 0: The maximum resident set size (KB) = 3025448 Test 007 cpld_mpi_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_ciceC_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/cpld_control_ciceC_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/cpld_control_ciceC_p8 Checking test 008 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -556,14 +556,14 @@ Checking test 008 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 337.033423 - 0: The maximum resident set size (KB) = 3171548 + 0: The total amount of wall time = 345.772387 + 0: The maximum resident set size (KB) = 3172560 Test 008 cpld_control_ciceC_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/cpld_control_c192_p8 Checking test 009 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -616,14 +616,14 @@ Checking test 009 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 599.139754 - 0: The maximum resident set size (KB) = 3252016 + 0: The total amount of wall time = 597.928119 + 0: The maximum resident set size (KB) = 3256380 Test 009 cpld_control_c192_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/cpld_restart_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/cpld_restart_c192_p8 Checking test 010 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -676,14 +676,14 @@ Checking test 010 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 398.885428 - 0: The maximum resident set size (KB) = 3150608 + 0: The total amount of wall time = 416.220208 + 0: The maximum resident set size (KB) = 3155220 Test 010 cpld_restart_c192_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/cpld_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/cpld_bmark_p8 Checking test 011 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -731,14 +731,14 @@ Checking test 011 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 702.349333 - 0: The maximum resident set size (KB) = 4033148 + 0: The total amount of wall time = 734.898738 + 0: The maximum resident set size (KB) = 4030320 Test 011 cpld_bmark_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/cpld_restart_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/cpld_restart_bmark_p8 Checking test 012 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -786,14 +786,14 @@ Checking test 012 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 444.014712 - 0: The maximum resident set size (KB) = 3969756 + 0: The total amount of wall time = 454.266943 + 0: The maximum resident set size (KB) = 3981220 Test 012 cpld_restart_bmark_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/cpld_control_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/cpld_control_noaero_p8 Checking test 013 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -857,14 +857,14 @@ Checking test 013 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 260.100325 - 0: The maximum resident set size (KB) = 1723624 + 0: The total amount of wall time = 268.134048 + 0: The maximum resident set size (KB) = 1720984 Test 013 cpld_control_noaero_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/cpld_control_nowave_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/cpld_control_nowave_noaero_p8 Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -926,14 +926,14 @@ Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 258.078388 - 0: The maximum resident set size (KB) = 1761724 + 0: The total amount of wall time = 262.437249 + 0: The maximum resident set size (KB) = 1762088 Test 014 cpld_control_nowave_noaero_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/cpld_debug_p8 Checking test 015 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -986,14 +986,14 @@ Checking test 015 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 646.260179 - 0: The maximum resident set size (KB) = 3244904 + 0: The total amount of wall time = 655.127507 + 0: The maximum resident set size (KB) = 3246092 Test 015 cpld_debug_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_debug_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/cpld_debug_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/cpld_debug_noaero_p8 Checking test 016 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1045,14 +1045,14 @@ Checking test 016 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 396.112200 - 0: The maximum resident set size (KB) = 1733892 + 0: The total amount of wall time = 403.352809 + 0: The maximum resident set size (KB) = 1739000 Test 016 cpld_debug_noaero_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8_agrid -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/cpld_control_noaero_p8_agrid +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/cpld_control_noaero_p8_agrid Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1114,14 +1114,14 @@ Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 265.417602 - 0: The maximum resident set size (KB) = 1767588 + 0: The total amount of wall time = 279.474966 + 0: The maximum resident set size (KB) = 1761264 Test 017 cpld_control_noaero_p8_agrid PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/cpld_control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/cpld_control_c48 Checking test 018 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1171,14 +1171,14 @@ Checking test 018 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 584.225880 - 0: The maximum resident set size (KB) = 2798932 + 0: The total amount of wall time = 585.937425 + 0: The maximum resident set size (KB) = 2803072 Test 018 cpld_control_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/cpld_warmstart_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/cpld_warmstart_c48 Checking test 019 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1228,14 +1228,14 @@ Checking test 019 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 153.400018 - 0: The maximum resident set size (KB) = 2799224 + 0: The total amount of wall time = 153.733151 + 0: The maximum resident set size (KB) = 2799372 Test 019 cpld_warmstart_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/cpld_restart_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/cpld_restart_c48 Checking test 020 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1285,14 +1285,14 @@ Checking test 020 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 80.028893 - 0: The maximum resident set size (KB) = 2247628 + 0: The total amount of wall time = 87.391632 + 0: The maximum resident set size (KB) = 2246980 Test 020 cpld_restart_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/cpld_control_p8_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/cpld_control_p8_faster Checking test 021 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1357,14 +1357,14 @@ Checking test 021 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 314.120704 - 0: The maximum resident set size (KB) = 3179624 + 0: The total amount of wall time = 323.500125 + 0: The maximum resident set size (KB) = 3181040 Test 021 cpld_control_p8_faster PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_CubedSphereGrid +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/control_CubedSphereGrid Checking test 022 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1391,28 +1391,28 @@ Checking test 022 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 129.451907 - 0: The maximum resident set size (KB) = 625788 + 0: The total amount of wall time = 132.760688 + 0: The maximum resident set size (KB) = 625172 Test 022 control_CubedSphereGrid PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_CubedSphereGrid_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/control_CubedSphereGrid_parallel Checking test 023 control_CubedSphereGrid_parallel results .... - Comparing sfcf000.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 126.789296 - 0: The maximum resident set size (KB) = 629516 + 0: The total amount of wall time = 130.177400 + 0: The maximum resident set size (KB) = 628440 Test 023 control_CubedSphereGrid_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_latlon -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_latlon +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/control_latlon Checking test 024 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1423,14 +1423,14 @@ Checking test 024 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 131.716673 - 0: The maximum resident set size (KB) = 628424 + 0: The total amount of wall time = 133.735855 + 0: The maximum resident set size (KB) = 627052 Test 024 control_latlon PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_wrtGauss_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/control_wrtGauss_netcdf_parallel Checking test 025 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1441,14 +1441,14 @@ Checking test 025 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.154723 - 0: The maximum resident set size (KB) = 629300 + 0: The total amount of wall time = 138.084199 + 0: The maximum resident set size (KB) = 627672 Test 025 control_wrtGauss_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/control_c48 Checking test 026 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1487,14 +1487,14 @@ Checking test 026 control_c48 results .... Comparing 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.722474 -0: The maximum resident set size (KB) = 814384 +0: The total amount of wall time = 371.432722 +0: The maximum resident set size (KB) = 802984 Test 026 control_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/control_c192 Checking test 027 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1505,14 +1505,14 @@ Checking test 027 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 527.127368 - 0: The maximum resident set size (KB) = 764192 + 0: The total amount of wall time = 522.722964 + 0: The maximum resident set size (KB) = 762540 Test 027 control_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_c384 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/control_c384 Checking test 028 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1523,14 +1523,14 @@ Checking test 028 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 537.246100 - 0: The maximum resident set size (KB) = 1256908 + 0: The total amount of wall time = 535.957215 + 0: The maximum resident set size (KB) = 1252836 Test 028 control_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384gdas -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_c384gdas +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/control_c384gdas Checking test 029 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1573,14 +1573,14 @@ Checking test 029 control_c384gdas results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 469.553330 - 0: The maximum resident set size (KB) = 1367912 + 0: The total amount of wall time = 474.378397 + 0: The maximum resident set size (KB) = 1367324 Test 029 control_c384gdas PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/control_stochy Checking test 030 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1591,28 +1591,28 @@ Checking test 030 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 87.494753 - 0: The maximum resident set size (KB) = 634244 + 0: The total amount of wall time = 87.635820 + 0: The maximum resident set size (KB) = 632240 Test 030 control_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_stochy_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/control_stochy_restart Checking test 031 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 47.848540 - 0: The maximum resident set size (KB) = 485520 + 0: The total amount of wall time = 47.933399 + 0: The maximum resident set size (KB) = 481784 Test 031 control_stochy_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_lndp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/control_lndp Checking test 032 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1623,14 +1623,14 @@ Checking test 032 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 82.108024 - 0: The maximum resident set size (KB) = 627264 + 0: The total amount of wall time = 82.733387 + 0: The maximum resident set size (KB) = 630496 Test 032 control_lndp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr4 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_iovr4 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/control_iovr4 Checking test 033 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1645,14 +1645,14 @@ Checking test 033 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.600960 - 0: The maximum resident set size (KB) = 626252 + 0: The total amount of wall time = 138.670454 + 0: The maximum resident set size (KB) = 626528 Test 033 control_iovr4 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr5 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_iovr5 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/control_iovr5 Checking test 034 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1667,14 +1667,14 @@ Checking test 034 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.463009 - 0: The maximum resident set size (KB) = 634280 + 0: The total amount of wall time = 136.349878 + 0: The maximum resident set size (KB) = 628476 Test 034 control_iovr5 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/control_p8 Checking test 035 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1721,14 +1721,14 @@ Checking test 035 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 165.880706 - 0: The maximum resident set size (KB) = 1608340 + 0: The total amount of wall time = 172.535653 + 0: The maximum resident set size (KB) = 1603072 Test 035 control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_p8_lndp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/control_p8_lndp Checking test 036 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1747,14 +1747,14 @@ Checking test 036 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 308.577364 - 0: The maximum resident set size (KB) = 1603060 + 0: The total amount of wall time = 317.897904 + 0: The maximum resident set size (KB) = 1608724 Test 036 control_p8_lndp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_restart_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/control_restart_p8 Checking test 037 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1793,14 +1793,14 @@ Checking test 037 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 87.497129 - 0: The maximum resident set size (KB) = 876620 + 0: The total amount of wall time = 89.027870 + 0: The maximum resident set size (KB) = 872444 Test 037 control_restart_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_decomp_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/control_decomp_p8 Checking test 038 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1843,14 +1843,14 @@ Checking test 038 control_decomp_p8 results .... Comparing 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.974304 - 0: The maximum resident set size (KB) = 1587100 + 0: The total amount of wall time = 176.103658 + 0: The maximum resident set size (KB) = 1589312 Test 038 control_decomp_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_2threads_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/control_2threads_p8 Checking test 039 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1893,14 +1893,14 @@ Checking test 039 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 161.810100 - 0: The maximum resident set size (KB) = 1682696 + 0: The total amount of wall time = 168.229864 + 0: The maximum resident set size (KB) = 1680828 Test 039 control_2threads_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_p8_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/control_p8_rrtmgp Checking test 040 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1947,14 +1947,14 @@ Checking test 040 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 222.677289 - 0: The maximum resident set size (KB) = 1676456 + 0: The total amount of wall time = 231.527534 + 0: The maximum resident set size (KB) = 1672712 Test 040 control_p8_rrtmgp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/merra2_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/merra2_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/merra2_thompson Checking test 041 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2001,14 +2001,14 @@ Checking test 041 merra2_thompson results .... Comparing 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.554242 - 0: The maximum resident set size (KB) = 1608880 + 0: The total amount of wall time = 192.307605 + 0: The maximum resident set size (KB) = 1611912 Test 041 merra2_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/regional_control Checking test 042 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2019,28 +2019,28 @@ Checking test 042 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 298.562217 - 0: The maximum resident set size (KB) = 869136 + 0: The total amount of wall time = 301.594892 + 0: The maximum resident set size (KB) = 867328 Test 042 regional_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/regional_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/regional_restart Checking test 043 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 152.682899 - 0: The maximum resident set size (KB) = 860392 + 0: The total amount of wall time = 153.858026 + 0: The maximum resident set size (KB) = 863452 Test 043 regional_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/regional_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/regional_decomp Checking test 044 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2051,14 +2051,14 @@ Checking test 044 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 312.176830 - 0: The maximum resident set size (KB) = 857456 + 0: The total amount of wall time = 316.563271 + 0: The maximum resident set size (KB) = 855820 Test 044 regional_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/regional_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/regional_2threads Checking test 045 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2069,14 +2069,14 @@ Checking test 045 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 182.596303 - 0: The maximum resident set size (KB) = 846156 + 0: The total amount of wall time = 190.054695 + 0: The maximum resident set size (KB) = 839900 Test 045 regional_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_noquilt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/regional_noquilt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/regional_noquilt Checking test 046 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2084,28 +2084,28 @@ Checking test 046 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 317.167747 - 0: The maximum resident set size (KB) = 851644 + 0: The total amount of wall time = 326.865189 + 0: The maximum resident set size (KB) = 855928 Test 046 regional_noquilt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/regional_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/regional_netcdf_parallel Checking test 047 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK - Comparing dynf006.nc ............ALT CHECK......OK + Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 291.407167 - 0: The maximum resident set size (KB) = 856844 + 0: The total amount of wall time = 297.319017 + 0: The maximum resident set size (KB) = 864992 Test 047 regional_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/regional_2dwrtdecomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/regional_2dwrtdecomp Checking test 048 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2116,14 +2116,14 @@ Checking test 048 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 297.408586 - 0: The maximum resident set size (KB) = 866120 + 0: The total amount of wall time = 303.397006 + 0: The maximum resident set size (KB) = 868516 Test 048 regional_2dwrtdecomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/fv3_regional_wofs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/regional_wofs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/regional_wofs Checking test 049 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2134,14 +2134,14 @@ Checking test 049 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 374.694596 - 0: The maximum resident set size (KB) = 626884 + 0: The total amount of wall time = 379.651371 + 0: The maximum resident set size (KB) = 625096 Test 049 regional_wofs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/rap_control Checking test 050 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2188,14 +2188,14 @@ Checking test 050 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 459.394314 - 0: The maximum resident set size (KB) = 1062140 + 0: The total amount of wall time = 461.092562 + 0: The maximum resident set size (KB) = 1063588 Test 050 rap_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/regional_spp_sppt_shum_skeb +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/regional_spp_sppt_shum_skeb Checking test 051 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2206,14 +2206,14 @@ Checking test 051 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 282.957084 - 0: The maximum resident set size (KB) = 1177276 + 0: The total amount of wall time = 289.061574 + 0: The maximum resident set size (KB) = 1179836 Test 051 regional_spp_sppt_shum_skeb PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rap_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/rap_decomp Checking test 052 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2260,14 +2260,14 @@ Checking test 052 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 480.163775 - 0: The maximum resident set size (KB) = 1001972 + 0: The total amount of wall time = 483.045454 + 0: The maximum resident set size (KB) = 1007976 Test 052 rap_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rap_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/rap_2threads Checking test 053 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2314,14 +2314,14 @@ Checking test 053 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 440.152835 - 0: The maximum resident set size (KB) = 1140204 + 0: The total amount of wall time = 443.593488 + 0: The maximum resident set size (KB) = 1136288 Test 053 rap_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rap_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/rap_restart Checking test 054 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2360,14 +2360,14 @@ Checking test 054 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 236.267987 - 0: The maximum resident set size (KB) = 975880 + 0: The total amount of wall time = 233.483170 + 0: The maximum resident set size (KB) = 971160 Test 054 rap_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/rap_sfcdiff Checking test 055 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2414,14 +2414,14 @@ Checking test 055 rap_sfcdiff results .... Comparing 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.335391 - 0: The maximum resident set size (KB) = 1066060 + 0: The total amount of wall time = 452.002206 + 0: The maximum resident set size (KB) = 1059096 Test 055 rap_sfcdiff PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rap_sfcdiff_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/rap_sfcdiff_decomp Checking test 056 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2468,14 +2468,14 @@ Checking test 056 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 475.251244 - 0: The maximum resident set size (KB) = 1000716 + 0: The total amount of wall time = 479.492465 + 0: The maximum resident set size (KB) = 1004684 Test 056 rap_sfcdiff_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rap_sfcdiff_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/rap_sfcdiff_restart Checking test 057 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2514,14 +2514,14 @@ Checking test 057 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 340.898634 - 0: The maximum resident set size (KB) = 990956 + 0: The total amount of wall time = 342.492824 + 0: The maximum resident set size (KB) = 992116 Test 057 rap_sfcdiff_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/hrrr_control Checking test 058 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2568,14 +2568,14 @@ Checking test 058 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 434.248023 - 0: The maximum resident set size (KB) = 1062524 + 0: The total amount of wall time = 438.012691 + 0: The maximum resident set size (KB) = 1058964 Test 058 hrrr_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hrrr_control_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/hrrr_control_decomp Checking test 059 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2622,14 +2622,14 @@ Checking test 059 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 457.309173 - 0: The maximum resident set size (KB) = 997028 + 0: The total amount of wall time = 458.309025 + 0: The maximum resident set size (KB) = 999392 Test 059 hrrr_control_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hrrr_control_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/hrrr_control_2threads Checking test 060 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2676,14 +2676,14 @@ Checking test 060 hrrr_control_2threads results .... Comparing 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.422574 - 0: The maximum resident set size (KB) = 1134088 + 0: The total amount of wall time = 416.745748 + 0: The maximum resident set size (KB) = 1137616 Test 060 hrrr_control_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hrrr_control_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/hrrr_control_restart Checking test 061 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2722,14 +2722,14 @@ Checking test 061 hrrr_control_restart results .... Comparing 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.664037 - 0: The maximum resident set size (KB) = 989964 + 0: The total amount of wall time = 328.657231 + 0: The maximum resident set size (KB) = 982928 Test 061 hrrr_control_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/rrfs_v1beta Checking test 062 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2776,14 +2776,14 @@ Checking test 062 rrfs_v1beta results .... Comparing 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.564087 + 0: The total amount of wall time = 447.210360 0: The maximum resident set size (KB) = 1057164 Test 062 rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rrfs_v1nssl +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/rrfs_v1nssl Checking test 063 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2798,14 +2798,14 @@ Checking test 063 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 523.309943 - 0: The maximum resident set size (KB) = 696876 + 0: The total amount of wall time = 527.964516 + 0: The maximum resident set size (KB) = 690672 Test 063 rrfs_v1nssl PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rrfs_v1nssl_nohailnoccn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/rrfs_v1nssl_nohailnoccn Checking test 064 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2820,14 +2820,14 @@ Checking test 064 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 512.694860 - 0: The maximum resident set size (KB) = 757720 + 0: The total amount of wall time = 516.419745 + 0: The maximum resident set size (KB) = 753740 Test 064 rrfs_v1nssl_nohailnoccn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/rrfs_conus13km_hrrr_warm Checking test 065 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2836,14 +2836,14 @@ Checking test 065 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 123.218789 - 0: The maximum resident set size (KB) = 926988 + 0: The total amount of wall time = 125.028896 + 0: The maximum resident set size (KB) = 928784 Test 065 rrfs_conus13km_hrrr_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/rrfs_smoke_conus13km_hrrr_warm Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2852,14 +2852,14 @@ Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 138.714842 - 0: The maximum resident set size (KB) = 959432 + 0: The total amount of wall time = 140.054654 + 0: The maximum resident set size (KB) = 961740 Test 066 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rrfs_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/rrfs_conus13km_radar_tten_warm Checking test 067 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2868,14 +2868,14 @@ Checking test 067 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 123.666332 - 0: The maximum resident set size (KB) = 941492 + 0: The total amount of wall time = 125.124296 + 0: The maximum resident set size (KB) = 937856 Test 067 rrfs_conus13km_radar_tten_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rrfs_conus13km_hrrr_warm_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/rrfs_conus13km_hrrr_warm_2threads Checking test 068 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2884,14 +2884,14 @@ Checking test 068 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 77.680604 - 0: The maximum resident set size (KB) = 879160 + 0: The total amount of wall time = 78.696682 + 0: The maximum resident set size (KB) = 878948 Test 068 rrfs_conus13km_hrrr_warm_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rrfs_conus13km_radar_tten_warm_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/rrfs_conus13km_radar_tten_warm_2threads Checking test 069 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2900,14 +2900,14 @@ Checking test 069 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 79.358287 - 0: The maximum resident set size (KB) = 841808 + 0: The total amount of wall time = 79.885639 + 0: The maximum resident set size (KB) = 885604 Test 069 rrfs_conus13km_radar_tten_warm_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_csawmg +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/control_csawmg Checking test 070 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2918,14 +2918,14 @@ Checking test 070 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 344.923587 - 0: The maximum resident set size (KB) = 729908 + 0: The total amount of wall time = 347.218532 + 0: The maximum resident set size (KB) = 721092 Test 070 control_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_csawmgt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/control_csawmgt Checking test 071 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2936,14 +2936,14 @@ Checking test 071 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 339.481133 - 0: The maximum resident set size (KB) = 725636 + 0: The total amount of wall time = 340.954991 + 0: The maximum resident set size (KB) = 727100 Test 071 control_csawmgt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/control_ras Checking test 072 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2954,26 +2954,26 @@ Checking test 072 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 181.362474 - 0: The maximum resident set size (KB) = 716432 + 0: The total amount of wall time = 179.811761 + 0: The maximum resident set size (KB) = 722848 Test 072 control_ras PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_wam +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/control_wam Checking test 073 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 112.710947 - 0: The maximum resident set size (KB) = 640964 + 0: The total amount of wall time = 112.133891 + 0: The maximum resident set size (KB) = 639508 Test 073 control_wam PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_p8_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/control_p8_faster Checking test 074 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3020,14 +3020,14 @@ Checking test 074 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 152.263484 - 0: The maximum resident set size (KB) = 1604468 + 0: The total amount of wall time = 154.294447 + 0: The maximum resident set size (KB) = 1606836 Test 074 control_p8_faster PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/regional_control_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/regional_control_faster Checking test 075 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3038,42 +3038,42 @@ Checking test 075 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 270.795314 - 0: The maximum resident set size (KB) = 876860 + 0: The total amount of wall time = 276.123331 + 0: The maximum resident set size (KB) = 873592 Test 075 regional_control_faster PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rrfs_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/rrfs_conus13km_hrrr_warm_debug Checking test 076 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 719.223485 - 0: The maximum resident set size (KB) = 957964 + 0: The total amount of wall time = 714.453890 + 0: The maximum resident set size (KB) = 962684 Test 076 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rrfs_conus13km_radar_tten_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/rrfs_conus13km_radar_tten_warm_debug Checking test 077 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 733.510105 - 0: The maximum resident set size (KB) = 967428 + 0: The total amount of wall time = 734.451427 + 0: The maximum resident set size (KB) = 965472 Test 077 rrfs_conus13km_radar_tten_warm_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_CubedSphereGrid_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/control_CubedSphereGrid_debug Checking test 078 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3100,334 +3100,334 @@ Checking test 078 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 164.924528 - 0: The maximum resident set size (KB) = 791884 + 0: The total amount of wall time = 161.138611 + 0: The maximum resident set size (KB) = 793868 Test 078 control_CubedSphereGrid_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_wrtGauss_netcdf_parallel_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/control_wrtGauss_netcdf_parallel_debug Checking test 079 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 153.386877 - 0: The maximum resident set size (KB) = 793264 + 0: The total amount of wall time = 152.804085 + 0: The maximum resident set size (KB) = 794748 Test 079 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/control_stochy_debug Checking test 080 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 168.953407 - 0: The maximum resident set size (KB) = 805064 + 0: The total amount of wall time = 171.335731 + 0: The maximum resident set size (KB) = 798280 Test 080 control_stochy_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/control_lndp_debug Checking test 081 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 154.286806 - 0: The maximum resident set size (KB) = 798012 + 0: The total amount of wall time = 155.464191 + 0: The maximum resident set size (KB) = 798972 Test 081 control_lndp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_csawmg_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/control_csawmg_debug Checking test 082 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 227.105837 - 0: The maximum resident set size (KB) = 848112 + 0: The total amount of wall time = 232.669289 + 0: The maximum resident set size (KB) = 846884 Test 082 control_csawmg_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_csawmgt_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/control_csawmgt_debug Checking test 083 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 229.357215 - 0: The maximum resident set size (KB) = 844540 + 0: The total amount of wall time = 227.797337 + 0: The maximum resident set size (KB) = 843408 Test 083 control_csawmgt_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/control_ras_debug Checking test 084 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 154.742449 - 0: The maximum resident set size (KB) = 809836 + 0: The total amount of wall time = 155.460239 + 0: The maximum resident set size (KB) = 808492 Test 084 control_ras_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/control_diag_debug Checking test 085 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 159.134798 - 0: The maximum resident set size (KB) = 855544 + 0: The total amount of wall time = 164.128871 + 0: The maximum resident set size (KB) = 848388 Test 085 control_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/control_debug_p8 Checking test 086 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 171.053060 - 0: The maximum resident set size (KB) = 1627096 + 0: The total amount of wall time = 173.203117 + 0: The maximum resident set size (KB) = 1627696 Test 086 control_debug_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/regional_debug Checking test 087 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 980.769904 - 0: The maximum resident set size (KB) = 890684 + 0: The total amount of wall time = 982.628088 + 0: The maximum resident set size (KB) = 890024 Test 087 regional_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/rap_control_debug Checking test 088 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 267.877028 - 0: The maximum resident set size (KB) = 1174588 + 0: The total amount of wall time = 277.829610 + 0: The maximum resident set size (KB) = 1174336 Test 088 rap_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/hrrr_control_debug Checking test 089 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 267.320549 - 0: The maximum resident set size (KB) = 1180204 + 0: The total amount of wall time = 270.019162 + 0: The maximum resident set size (KB) = 1175780 Test 089 hrrr_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rap_unified_drag_suite_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/rap_unified_drag_suite_debug Checking test 090 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.998432 - 0: The maximum resident set size (KB) = 1172736 + 0: The total amount of wall time = 275.306823 + 0: The maximum resident set size (KB) = 1178716 Test 090 rap_unified_drag_suite_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/rap_diag_debug Checking test 091 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 291.332677 - 0: The maximum resident set size (KB) = 1259920 + 0: The total amount of wall time = 292.982424 + 0: The maximum resident set size (KB) = 1258648 Test 091 rap_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rap_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/rap_cires_ugwp_debug Checking test 092 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.293282 - 0: The maximum resident set size (KB) = 1179608 + 0: The total amount of wall time = 280.571399 + 0: The maximum resident set size (KB) = 1174820 Test 092 rap_cires_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rap_unified_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/rap_unified_ugwp_debug Checking test 093 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.960528 - 0: The maximum resident set size (KB) = 1178544 + 0: The total amount of wall time = 280.988272 + 0: The maximum resident set size (KB) = 1181924 Test 093 rap_unified_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rap_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/rap_lndp_debug Checking test 094 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 278.501474 - 0: The maximum resident set size (KB) = 1176788 + 0: The total amount of wall time = 277.444444 + 0: The maximum resident set size (KB) = 1176996 Test 094 rap_lndp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_flake_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rap_flake_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/rap_flake_debug Checking test 095 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 272.237475 - 0: The maximum resident set size (KB) = 1177592 + 0: The total amount of wall time = 272.693047 + 0: The maximum resident set size (KB) = 1173152 Test 095 rap_flake_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/rap_progcld_thompson_debug Checking test 096 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.068067 - 0: The maximum resident set size (KB) = 1171852 + 0: The total amount of wall time = 274.441669 + 0: The maximum resident set size (KB) = 1181020 Test 096 rap_progcld_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rap_noah_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/rap_noah_debug Checking test 097 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 267.207306 - 0: The maximum resident set size (KB) = 1172220 + 0: The total amount of wall time = 271.141613 + 0: The maximum resident set size (KB) = 1170364 Test 097 rap_noah_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rap_sfcdiff_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/rap_sfcdiff_debug Checking test 098 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.794176 - 0: The maximum resident set size (KB) = 1179440 + 0: The total amount of wall time = 275.497273 + 0: The maximum resident set size (KB) = 1175176 Test 098 rap_sfcdiff_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/rap_noah_sfcdiff_cires_ugwp_debug Checking test 099 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 451.090943 - 0: The maximum resident set size (KB) = 1178448 + 0: The total amount of wall time = 445.049477 + 0: The maximum resident set size (KB) = 1173164 Test 099 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/rrfs_v1beta_debug Checking test 100 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 268.916347 - 0: The maximum resident set size (KB) = 1175400 + 0: The total amount of wall time = 270.421902 + 0: The maximum resident set size (KB) = 1170152 Test 100 rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/control_wam_debug Checking test 101 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 281.295147 - 0: The maximum resident set size (KB) = 523580 + 0: The total amount of wall time = 280.219967 + 0: The maximum resident set size (KB) = 524716 Test 101 control_wam_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 102 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3438,14 +3438,14 @@ Checking test 102 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 260.267998 - 0: The maximum resident set size (KB) = 1071404 + 0: The total amount of wall time = 265.229610 + 0: The maximum resident set size (KB) = 1075380 Test 102 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/rap_control_dyn32_phy32 Checking test 103 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3492,14 +3492,14 @@ Checking test 103 rap_control_dyn32_phy32 results .... Comparing 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.248261 - 0: The maximum resident set size (KB) = 1003068 + 0: The total amount of wall time = 371.538204 + 0: The maximum resident set size (KB) = 1004804 Test 103 rap_control_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/hrrr_control_dyn32_phy32 Checking test 104 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3546,14 +3546,14 @@ Checking test 104 hrrr_control_dyn32_phy32 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 = 192.142439 - 0: The maximum resident set size (KB) = 955188 + 0: The total amount of wall time = 197.333228 + 0: The maximum resident set size (KB) = 956976 Test 104 hrrr_control_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rap_2threads_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/rap_2threads_dyn32_phy32 Checking test 105 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3600,14 +3600,14 @@ Checking test 105 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 356.874466 - 0: The maximum resident set size (KB) = 1019924 + 0: The total amount of wall time = 358.978326 + 0: The maximum resident set size (KB) = 1020040 Test 105 rap_2threads_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hrrr_control_2threads_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/hrrr_control_2threads_dyn32_phy32 Checking test 106 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3654,14 +3654,14 @@ Checking test 106 hrrr_control_2threads_dyn32_phy32 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 = 190.920009 - 0: The maximum resident set size (KB) = 1004788 + 0: The total amount of wall time = 193.138393 + 0: The maximum resident set size (KB) = 1005444 Test 106 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hrrr_control_decomp_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/hrrr_control_decomp_dyn32_phy32 Checking test 107 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3708,14 +3708,14 @@ Checking test 107 hrrr_control_decomp_dyn32_phy32 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 = 204.124471 - 0: The maximum resident set size (KB) = 896016 + 0: The total amount of wall time = 209.086123 + 0: The maximum resident set size (KB) = 899276 Test 107 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rap_restart_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/rap_restart_dyn32_phy32 Checking test 108 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3754,14 +3754,14 @@ Checking test 108 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 281.821556 - 0: The maximum resident set size (KB) = 956944 + 0: The total amount of wall time = 280.243030 + 0: The maximum resident set size (KB) = 956148 Test 108 rap_restart_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hrrr_control_restart_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/hrrr_control_restart_dyn32_phy32 Checking test 109 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3800,14 +3800,14 @@ Checking test 109 hrrr_control_restart_dyn32_phy32 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 = 100.032544 - 0: The maximum resident set size (KB) = 860388 + 0: The total amount of wall time = 101.471939 + 0: The maximum resident set size (KB) = 864440 Test 109 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/rap_control_dyn64_phy32 Checking test 110 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3854,81 +3854,81 @@ Checking test 110 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 243.079879 - 0: The maximum resident set size (KB) = 971208 + 0: The total amount of wall time = 243.726057 + 0: The maximum resident set size (KB) = 964620 Test 110 rap_control_dyn64_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/rap_control_debug_dyn32_phy32 Checking test 111 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 267.080847 - 0: The maximum resident set size (KB) = 1059904 + 0: The total amount of wall time = 272.003827 + 0: The maximum resident set size (KB) = 1054696 Test 111 rap_control_debug_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/hrrr_control_debug_dyn32_phy32 Checking test 112 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 265.377132 - 0: The maximum resident set size (KB) = 1055100 + 0: The total amount of wall time = 265.685104 + 0: The maximum resident set size (KB) = 1050000 Test 112 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/rap_control_dyn64_phy32_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/rap_control_dyn64_phy32_debug Checking test 113 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.275136 - 0: The maximum resident set size (KB) = 1108788 + 0: The total amount of wall time = 277.473543 + 0: The maximum resident set size (KB) = 1107012 Test 113 rap_control_dyn64_phy32_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hafs_regional_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/hafs_regional_atm Checking test 114 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 237.867617 - 0: The maximum resident set size (KB) = 1051100 + 0: The total amount of wall time = 242.122322 + 0: The maximum resident set size (KB) = 1057452 Test 114 hafs_regional_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hafs_regional_atm_thompson_gfdlsf +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/hafs_regional_atm_thompson_gfdlsf Checking test 115 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 311.195404 - 0: The maximum resident set size (KB) = 1414648 + 0: The total amount of wall time = 327.936867 + 0: The maximum resident set size (KB) = 1416476 Test 115 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hafs_regional_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/hafs_regional_atm_ocn Checking test 116 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3937,14 +3937,14 @@ Checking test 116 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 377.927932 - 0: The maximum resident set size (KB) = 1221392 + 0: The total amount of wall time = 386.068217 + 0: The maximum resident set size (KB) = 1220184 Test 116 hafs_regional_atm_ocn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hafs_regional_atm_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/hafs_regional_atm_wav Checking test 117 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3953,14 +3953,14 @@ Checking test 117 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 740.796278 - 0: The maximum resident set size (KB) = 1245468 + 0: The total amount of wall time = 753.246370 + 0: The maximum resident set size (KB) = 1249144 Test 117 hafs_regional_atm_wav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hafs_regional_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/hafs_regional_atm_ocn_wav Checking test 118 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3971,28 +3971,28 @@ Checking test 118 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 838.342541 - 0: The maximum resident set size (KB) = 1268808 + 0: The total amount of wall time = 839.062824 + 0: The maximum resident set size (KB) = 1295136 Test 118 hafs_regional_atm_ocn_wav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hafs_regional_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/hafs_regional_1nest_atm Checking test 119 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 317.910671 - 0: The maximum resident set size (KB) = 508900 + 0: The total amount of wall time = 319.475888 + 0: The maximum resident set size (KB) = 504060 Test 119 hafs_regional_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hafs_regional_telescopic_2nests_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/hafs_regional_telescopic_2nests_atm Checking test 120 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4001,28 +4001,28 @@ Checking test 120 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 365.942565 - 0: The maximum resident set size (KB) = 516304 + 0: The total amount of wall time = 366.212344 + 0: The maximum resident set size (KB) = 511576 Test 120 hafs_regional_telescopic_2nests_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hafs_global_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/hafs_global_1nest_atm Checking test 121 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 145.880395 - 0: The maximum resident set size (KB) = 349028 + 0: The total amount of wall time = 146.580234 + 0: The maximum resident set size (KB) = 353700 Test 121 hafs_global_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_multiple_4nests_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hafs_global_multiple_4nests_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/hafs_global_multiple_4nests_atm Checking test 122 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4040,14 +4040,14 @@ Checking test 122 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 417.417556 - 0: The maximum resident set size (KB) = 420212 + 0: The total amount of wall time = 428.138545 + 0: The maximum resident set size (KB) = 450376 Test 122 hafs_global_multiple_4nests_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hafs_regional_specified_moving_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/hafs_regional_specified_moving_1nest_atm Checking test 123 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4056,28 +4056,28 @@ Checking test 123 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 202.052596 - 0: The maximum resident set size (KB) = 515772 + 0: The total amount of wall time = 204.563052 + 0: The maximum resident set size (KB) = 515120 Test 123 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hafs_regional_storm_following_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/hafs_regional_storm_following_1nest_atm Checking test 124 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 190.307876 - 0: The maximum resident set size (KB) = 515308 + 0: The total amount of wall time = 193.079903 + 0: The maximum resident set size (KB) = 519268 Test 124 hafs_regional_storm_following_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hafs_regional_storm_following_1nest_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/hafs_regional_storm_following_1nest_atm_ocn Checking test 125 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4086,42 +4086,42 @@ Checking test 125 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 219.654921 - 0: The maximum resident set size (KB) = 553576 + 0: The total amount of wall time = 223.978585 + 0: The maximum resident set size (KB) = 552528 Test 125 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hafs_global_storm_following_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/hafs_global_storm_following_1nest_atm Checking test 126 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 57.668594 - 0: The maximum resident set size (KB) = 364156 + 0: The total amount of wall time = 61.731451 + 0: The maximum resident set size (KB) = 363032 Test 126 hafs_global_storm_following_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 127 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 764.634133 - 0: The maximum resident set size (KB) = 578248 + 0: The total amount of wall time = 765.746261 + 0: The maximum resident set size (KB) = 576092 Test 127 hafs_regional_storm_following_1nest_atm_ocn_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 128 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4132,14 +4132,14 @@ Checking test 128 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 512.516634 - 0: The maximum resident set size (KB) = 610212 + 0: The total amount of wall time = 519.758800 + 0: The maximum resident set size (KB) = 613916 Test 128 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_docn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hafs_regional_docn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/hafs_regional_docn Checking test 129 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4147,14 +4147,14 @@ Checking test 129 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 358.628924 - 0: The maximum resident set size (KB) = 1230656 + 0: The total amount of wall time = 361.417428 + 0: The maximum resident set size (KB) = 1227356 Test 129 hafs_regional_docn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_docn_oisst -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hafs_regional_docn_oisst +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/hafs_regional_docn_oisst Checking test 130 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4162,131 +4162,131 @@ Checking test 130 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 355.310059 - 0: The maximum resident set size (KB) = 1214840 + 0: The total amount of wall time = 360.675027 + 0: The maximum resident set size (KB) = 1212672 Test 130 hafs_regional_docn_oisst PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_datm_cdeps -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/hafs_regional_datm_cdeps +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/hafs_regional_datm_cdeps Checking test 131 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 958.419860 - 0: The maximum resident set size (KB) = 1039164 + 0: The total amount of wall time = 953.094992 + 0: The maximum resident set size (KB) = 1038992 Test 131 hafs_regional_datm_cdeps PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/datm_cdeps_control_cfsr Checking test 132 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 153.943255 - 0: The maximum resident set size (KB) = 1054740 + 0: The total amount of wall time = 158.286313 + 0: The maximum resident set size (KB) = 1059452 Test 132 datm_cdeps_control_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/datm_cdeps_restart_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/datm_cdeps_restart_cfsr Checking test 133 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 92.489498 - 0: The maximum resident set size (KB) = 1032472 + 0: The total amount of wall time = 95.224920 + 0: The maximum resident set size (KB) = 1009776 Test 133 datm_cdeps_restart_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/datm_cdeps_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/datm_cdeps_control_gefs Checking test 134 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.678979 - 0: The maximum resident set size (KB) = 962824 + 0: The total amount of wall time = 150.330266 + 0: The maximum resident set size (KB) = 968684 Test 134 datm_cdeps_control_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_iau_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/datm_cdeps_iau_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/datm_cdeps_iau_gefs Checking test 135 datm_cdeps_iau_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 151.295471 - 0: The maximum resident set size (KB) = 970272 + 0: The total amount of wall time = 152.640356 + 0: The maximum resident set size (KB) = 960404 Test 135 datm_cdeps_iau_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_stochy_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/datm_cdeps_stochy_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/datm_cdeps_stochy_gefs Checking test 136 datm_cdeps_stochy_gefs 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.789886 - 0: The maximum resident set size (KB) = 963736 + 0: The total amount of wall time = 151.882484 + 0: The maximum resident set size (KB) = 962336 Test 136 datm_cdeps_stochy_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_ciceC_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/datm_cdeps_ciceC_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/datm_cdeps_ciceC_cfsr Checking test 137 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.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.855048 - 0: The maximum resident set size (KB) = 1070508 + 0: The total amount of wall time = 156.844714 + 0: The maximum resident set size (KB) = 1072244 Test 137 datm_cdeps_ciceC_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/datm_cdeps_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/datm_cdeps_bulk_cfsr Checking test 138 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 156.543212 - 0: The maximum resident set size (KB) = 1051924 + 0: The total amount of wall time = 157.181915 + 0: The maximum resident set size (KB) = 1055656 Test 138 datm_cdeps_bulk_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/datm_cdeps_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/datm_cdeps_bulk_gefs Checking test 139 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.993030 - 0: The maximum resident set size (KB) = 966748 + 0: The total amount of wall time = 147.471129 + 0: The maximum resident set size (KB) = 963908 Test 139 datm_cdeps_bulk_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/datm_cdeps_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/datm_cdeps_mx025_cfsr Checking test 140 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4295,14 +4295,14 @@ Checking test 140 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 390.610895 - 0: The maximum resident set size (KB) = 875964 + 0: The total amount of wall time = 404.930302 + 0: The maximum resident set size (KB) = 878144 Test 140 datm_cdeps_mx025_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/datm_cdeps_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/datm_cdeps_mx025_gefs Checking test 141 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4311,77 +4311,77 @@ Checking test 141 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 395.572061 - 0: The maximum resident set size (KB) = 929512 + 0: The total amount of wall time = 396.297436 + 0: The maximum resident set size (KB) = 929244 Test 141 datm_cdeps_mx025_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/datm_cdeps_multiple_files_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/datm_cdeps_multiple_files_cfsr Checking test 142 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 154.803578 - 0: The maximum resident set size (KB) = 1066960 + 0: The total amount of wall time = 152.859419 + 0: The maximum resident set size (KB) = 1072400 Test 142 datm_cdeps_multiple_files_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/datm_cdeps_3072x1536_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/datm_cdeps_3072x1536_cfsr Checking test 143 datm_cdeps_3072x1536_cfsr 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 = 213.853455 - 0: The maximum resident set size (KB) = 2363992 + 0: The total amount of wall time = 217.078746 + 0: The maximum resident set size (KB) = 2363472 Test 143 datm_cdeps_3072x1536_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_gfs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/datm_cdeps_gfs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/datm_cdeps_gfs Checking test 144 datm_cdeps_gfs results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 218.138981 - 0: The maximum resident set size (KB) = 2356844 + 0: The total amount of wall time = 223.555366 + 0: The maximum resident set size (KB) = 2361080 Test 144 datm_cdeps_gfs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/datm_cdeps_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/datm_cdeps_debug_cfsr Checking test 145 datm_cdeps_debug_cfsr 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 = 448.727476 - 0: The maximum resident set size (KB) = 988168 + 0: The total amount of wall time = 439.550110 + 0: The maximum resident set size (KB) = 986668 Test 145 datm_cdeps_debug_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/datm_cdeps_control_cfsr_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/datm_cdeps_control_cfsr_faster Checking test 146 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 152.664752 - 0: The maximum resident set size (KB) = 1054596 + 0: The total amount of wall time = 156.211653 + 0: The maximum resident set size (KB) = 1064360 Test 146 datm_cdeps_control_cfsr_faster PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/datm_cdeps_lnd_gswp3 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/datm_cdeps_lnd_gswp3 Checking test 147 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4390,14 +4390,14 @@ Checking test 147 datm_cdeps_lnd_gswp3 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 = 6.509896 - 0: The maximum resident set size (KB) = 261124 + 0: The total amount of wall time = 8.956077 + 0: The maximum resident set size (KB) = 252056 Test 147 datm_cdeps_lnd_gswp3 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/datm_cdeps_lnd_gswp3_rst +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/datm_cdeps_lnd_gswp3_rst Checking test 148 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4406,14 +4406,14 @@ Checking test 148 datm_cdeps_lnd_gswp3_rst 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.241084 - 0: The maximum resident set size (KB) = 264844 + 0: The total amount of wall time = 12.343392 + 0: The maximum resident set size (KB) = 265656 Test 148 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_atmlnd_sbs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_p8_atmlnd_sbs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/control_p8_atmlnd_sbs Checking test 149 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4498,14 +4498,14 @@ Checking test 149 control_p8_atmlnd_sbs 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.031888 - 0: The maximum resident set size (KB) = 1610320 + 0: The total amount of wall time = 206.552121 + 0: The maximum resident set size (KB) = 1617448 Test 149 control_p8_atmlnd_sbs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_atmwav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/control_atmwav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/control_atmwav Checking test 150 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4549,14 +4549,14 @@ Checking test 150 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 86.705674 - 0: The maximum resident set size (KB) = 662124 + 0: The total amount of wall time = 87.415174 + 0: The maximum resident set size (KB) = 662176 Test 150 control_atmwav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/atmaero_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/atmaero_control_p8 Checking test 151 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4600,14 +4600,14 @@ Checking test 151 atmaero_control_p8 results .... Comparing 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.480728 - 0: The maximum resident set size (KB) = 2972580 + 0: The total amount of wall time = 231.266353 + 0: The maximum resident set size (KB) = 2976728 Test 151 atmaero_control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/atmaero_control_p8_rad +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/atmaero_control_p8_rad Checking test 152 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4651,14 +4651,14 @@ Checking test 152 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 278.345437 - 0: The maximum resident set size (KB) = 3046132 + 0: The total amount of wall time = 280.899407 + 0: The maximum resident set size (KB) = 3043184 Test 152 atmaero_control_p8_rad PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad_micro -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/atmaero_control_p8_rad_micro +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/atmaero_control_p8_rad_micro Checking test 153 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4702,14 +4702,14 @@ Checking test 153 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 281.488975 - 0: The maximum resident set size (KB) = 3056544 + 0: The total amount of wall time = 285.403765 + 0: The maximum resident set size (KB) = 3052656 Test 153 atmaero_control_p8_rad_micro PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/regional_atmaq +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/regional_atmaq Checking test 154 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4725,14 +4725,14 @@ Checking test 154 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 599.078028 - 0: The maximum resident set size (KB) = 1559128 + 0: The total amount of wall time = 614.021046 + 0: The maximum resident set size (KB) = 1553412 Test 154 regional_atmaq PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/regional_atmaq_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/regional_atmaq_debug Checking test 155 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4746,14 +4746,14 @@ Checking test 155 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1336.754267 - 0: The maximum resident set size (KB) = 1522452 + 0: The total amount of wall time = 1325.000102 + 0: The maximum resident set size (KB) = 1511636 Test 155 regional_atmaq_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8843/regional_atmaq_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/regional_atmaq_faster Checking test 156 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4769,12 +4769,12 @@ Checking test 156 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 566.003168 - 0: The maximum resident set size (KB) = 1554940 + 0: The total amount of wall time = 575.257651 + 0: The maximum resident set size (KB) = 1559708 Test 156 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Wed Mar 8 19:54:04 UTC 2023 -Elapsed time: 01h:21m:28s. Have a nice day! +Fri Mar 10 14:50:07 UTC 2023 +Elapsed time: 01h:16m:57s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index bd65d7ca58a..bc93a284fc2 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,42 +1,42 @@ -Wed Mar 8 18:55:21 UTC 2023 +Sun Mar 12 19:28:19 UTC 2023 Start Regression test -Compile 001 elapsed time 1824 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 002 elapsed time 1845 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 003 elapsed time 1744 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 004 elapsed time 345 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 321 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 1473 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 007 elapsed time 1524 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 008 elapsed time 3339 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 009 elapsed time 1631 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 010 elapsed time 1614 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 011 elapsed time 1521 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 012 elapsed time 1439 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 013 elapsed time 2058 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 014 elapsed time 419 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 305 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 1520 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 017 elapsed time 1495 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 018 elapsed time 260 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 303 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 1643 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 021 elapsed time 348 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 2148 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 023 elapsed time 1717 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 024 elapsed time 320 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 025 elapsed time 223 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 316 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 027 elapsed time 128 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 028 elapsed time 1481 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 001 elapsed time 1838 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 002 elapsed time 1834 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 003 elapsed time 1674 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 004 elapsed time 311 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 275 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 1486 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 007 elapsed time 1508 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 008 elapsed time 3573 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 009 elapsed time 1601 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 010 elapsed time 1590 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 011 elapsed time 1493 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 012 elapsed time 1387 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 013 elapsed time 2090 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 014 elapsed time 385 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 291 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 1464 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 017 elapsed time 1442 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 018 elapsed time 306 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 296 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 1654 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 021 elapsed time 335 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 2123 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 023 elapsed time 1689 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 024 elapsed time 282 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 025 elapsed time 163 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 330 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 027 elapsed time 161 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 028 elapsed time 1465 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON Compile 029 elapsed time 1641 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 030 elapsed time 1554 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 031 elapsed time 1507 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 032 elapsed time 304 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 1861 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 030 elapsed time 1491 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 031 elapsed time 1491 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 032 elapsed time 267 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 1914 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_mixedmode -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/cpld_control_p8_mixedmode +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -101,14 +101,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 683.791575 - 0: The maximum resident set size (KB) = 1729780 + 0: The total amount of wall time = 450.836742 + 0: The maximum resident set size (KB) = 1753476 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_gfsv17 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/cpld_control_gfsv17 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -172,14 +172,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 363.154698 - 0: The maximum resident set size (KB) = 1625372 + 0: The total amount of wall time = 381.391388 + 0: The maximum resident set size (KB) = 1630088 Test 002 cpld_control_gfsv17 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -244,14 +244,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 707.862081 - 0: The maximum resident set size (KB) = 1793460 + 0: The total amount of wall time = 554.035589 + 0: The maximum resident set size (KB) = 1763684 Test 003 cpld_control_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/cpld_restart_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -304,14 +304,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 451.847081 - 0: The maximum resident set size (KB) = 1479724 + 0: The total amount of wall time = 325.405640 + 0: The maximum resident set size (KB) = 1489052 Test 004 cpld_restart_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/cpld_2threads_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -364,14 +364,14 @@ Checking test 005 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 756.663293 - 0: The maximum resident set size (KB) = 1985304 + 0: The total amount of wall time = 564.001092 + 0: The maximum resident set size (KB) = 1991328 Test 005 cpld_2threads_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/cpld_decomp_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/cpld_decomp_p8 Checking test 006 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -424,14 +424,14 @@ Checking test 006 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 740.404861 - 0: The maximum resident set size (KB) = 1778580 + 0: The total amount of wall time = 549.246017 + 0: The maximum resident set size (KB) = 1761396 Test 006 cpld_decomp_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/cpld_mpi_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/cpld_mpi_p8 Checking test 007 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -484,14 +484,14 @@ Checking test 007 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 673.062523 - 0: The maximum resident set size (KB) = 1728776 + 0: The total amount of wall time = 470.768238 + 0: The maximum resident set size (KB) = 1725744 Test 007 cpld_mpi_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_ciceC_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/cpld_control_ciceC_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/cpld_control_ciceC_p8 Checking test 008 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -556,14 +556,14 @@ Checking test 008 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 729.343494 - 0: The maximum resident set size (KB) = 1765228 + 0: The total amount of wall time = 550.459293 + 0: The maximum resident set size (KB) = 1764584 Test 008 cpld_control_ciceC_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/cpld_control_noaero_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/cpld_control_noaero_p8 Checking test 009 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -627,14 +627,14 @@ Checking test 009 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 409.753800 - 0: The maximum resident set size (KB) = 1621492 + 0: The total amount of wall time = 421.225322 + 0: The maximum resident set size (KB) = 1619320 Test 009 cpld_control_noaero_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/cpld_control_nowave_noaero_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/cpld_control_nowave_noaero_p8 Checking test 010 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -696,14 +696,14 @@ Checking test 010 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 452.686962 - 0: The maximum resident set size (KB) = 1665712 + 0: The total amount of wall time = 414.632088 + 0: The maximum resident set size (KB) = 1681036 Test 010 cpld_control_nowave_noaero_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_debug_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/cpld_debug_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/cpld_debug_p8 Checking test 011 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -756,14 +756,14 @@ Checking test 011 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 939.189305 - 0: The maximum resident set size (KB) = 1841704 + 0: The total amount of wall time = 910.550446 + 0: The maximum resident set size (KB) = 1837632 Test 011 cpld_debug_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_debug_noaero_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/cpld_debug_noaero_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/cpld_debug_noaero_p8 Checking test 012 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -815,14 +815,14 @@ Checking test 012 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 547.893347 - 0: The maximum resident set size (KB) = 1641280 + 0: The total amount of wall time = 544.947249 + 0: The maximum resident set size (KB) = 1642636 Test 012 cpld_debug_noaero_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/cpld_control_noaero_p8_agrid +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/cpld_control_noaero_p8_agrid Checking test 013 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -884,14 +884,14 @@ Checking test 013 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 633.276279 - 0: The maximum resident set size (KB) = 1663476 + 0: The total amount of wall time = 426.646108 + 0: The maximum resident set size (KB) = 1670280 Test 013 cpld_control_noaero_p8_agrid PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c48 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/cpld_control_c48 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/cpld_control_c48 Checking test 014 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -941,14 +941,14 @@ Checking test 014 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 848.341307 - 0: The maximum resident set size (KB) = 2763696 + 0: The total amount of wall time = 838.214891 + 0: The maximum resident set size (KB) = 2760612 Test 014 cpld_control_c48 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/cpld_warmstart_c48 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/cpld_warmstart_c48 Checking test 015 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -998,14 +998,14 @@ Checking test 015 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 228.691936 - 0: The maximum resident set size (KB) = 2758232 + 0: The total amount of wall time = 232.253346 + 0: The maximum resident set size (KB) = 2773184 Test 015 cpld_warmstart_c48 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/cpld_restart_c48 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/cpld_restart_c48 Checking test 016 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1055,14 +1055,14 @@ Checking test 016 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 128.150810 - 0: The maximum resident set size (KB) = 2211144 + 0: The total amount of wall time = 116.292456 + 0: The maximum resident set size (KB) = 2210640 Test 016 cpld_restart_c48 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_faster -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/cpld_control_p8_faster +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/cpld_control_p8_faster Checking test 017 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1127,14 +1127,14 @@ Checking test 017 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 763.586233 - 0: The maximum resident set size (KB) = 1771124 + 0: The total amount of wall time = 525.559786 + 0: The maximum resident set size (KB) = 1780336 Test 017 cpld_control_p8_faster PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_CubedSphereGrid +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/control_CubedSphereGrid Checking test 018 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1161,28 +1161,28 @@ Checking test 018 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 199.323795 - 0: The maximum resident set size (KB) = 569964 + 0: The total amount of wall time = 287.584107 + 0: The maximum resident set size (KB) = 574948 Test 018 control_CubedSphereGrid PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid_parallel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_CubedSphereGrid_parallel +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/control_CubedSphereGrid_parallel Checking test 019 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK + Comparing atmf024.nc ............ALT CHECK......OK - 0: The total amount of wall time = 205.602726 - 0: The maximum resident set size (KB) = 573008 + 0: The total amount of wall time = 307.379844 + 0: The maximum resident set size (KB) = 575240 Test 019 control_CubedSphereGrid_parallel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_latlon -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_latlon +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/control_latlon Checking test 020 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1193,16 +1193,16 @@ Checking test 020 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 211.959324 - 0: The maximum resident set size (KB) = 581740 + 0: The total amount of wall time = 275.632937 + 0: The maximum resident set size (KB) = 576540 Test 020 control_latlon PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_wrtGauss_netcdf_parallel +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/control_wrtGauss_netcdf_parallel Checking test 021 control_wrtGauss_netcdf_parallel results .... - Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK @@ -1211,14 +1211,14 @@ Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 207.324487 - 0: The maximum resident set size (KB) = 575780 + 0: The total amount of wall time = 321.591206 + 0: The maximum resident set size (KB) = 572312 Test 021 control_wrtGauss_netcdf_parallel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c48 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_c48 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/control_c48 Checking test 022 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1257,14 +1257,14 @@ Checking test 022 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 614.980120 -0: The maximum resident set size (KB) = 790460 +0: The total amount of wall time = 600.345341 +0: The maximum resident set size (KB) = 790496 Test 022 control_c48 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c192 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_c192 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/control_c192 Checking test 023 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1275,14 +1275,14 @@ Checking test 023 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 988.033522 - 0: The maximum resident set size (KB) = 685460 + 0: The total amount of wall time = 990.989883 + 0: The maximum resident set size (KB) = 694168 Test 023 control_c192 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_c384 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/control_c384 Checking test 024 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1293,14 +1293,14 @@ Checking test 024 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1235.794799 - 0: The maximum resident set size (KB) = 1057972 + 0: The total amount of wall time = 1260.313030 + 0: The maximum resident set size (KB) = 1058468 Test 024 control_c384 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384gdas -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_c384gdas +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/control_c384gdas Checking test 025 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1343,14 +1343,14 @@ Checking test 025 control_c384gdas 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 = 1060.331939 - 0: The maximum resident set size (KB) = 1185568 + 0: The total amount of wall time = 1084.071319 + 0: The maximum resident set size (KB) = 1189036 Test 025 control_c384gdas PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_stochy +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/control_stochy Checking test 026 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1361,28 +1361,28 @@ Checking test 026 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 151.455101 - 0: The maximum resident set size (KB) = 575808 + 0: The total amount of wall time = 176.284688 + 0: The maximum resident set size (KB) = 577516 Test 026 control_stochy PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_stochy_restart +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/control_stochy_restart Checking test 027 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 142.097005 - 0: The maximum resident set size (KB) = 400420 + 0: The total amount of wall time = 104.991135 + 0: The maximum resident set size (KB) = 395616 Test 027 control_stochy_restart PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_lndp +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/control_lndp Checking test 028 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1393,14 +1393,14 @@ Checking test 028 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 144.500487 - 0: The maximum resident set size (KB) = 575892 + 0: The total amount of wall time = 187.467565 + 0: The maximum resident set size (KB) = 574308 Test 028 control_lndp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr4 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_iovr4 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/control_iovr4 Checking test 029 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1415,14 +1415,14 @@ Checking test 029 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 228.693334 - 0: The maximum resident set size (KB) = 573880 + 0: The total amount of wall time = 312.956991 + 0: The maximum resident set size (KB) = 571016 Test 029 control_iovr4 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr5 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_iovr5 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/control_iovr5 Checking test 030 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1437,14 +1437,14 @@ Checking test 030 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 318.217086 - 0: The maximum resident set size (KB) = 573108 + 0: The total amount of wall time = 302.310085 + 0: The maximum resident set size (KB) = 571656 Test 030 control_iovr5 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/control_p8 Checking test 031 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1491,14 +1491,14 @@ Checking test 031 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 400.176559 - 0: The maximum resident set size (KB) = 1541260 + 0: The total amount of wall time = 307.329340 + 0: The maximum resident set size (KB) = 1535540 Test 031 control_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_lndp -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_p8_lndp +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/control_p8_lndp Checking test 032 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1517,14 +1517,14 @@ Checking test 032 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 653.499956 - 0: The maximum resident set size (KB) = 1536820 + 0: The total amount of wall time = 579.753211 + 0: The maximum resident set size (KB) = 1536164 Test 032 control_p8_lndp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_restart_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/control_restart_p8 Checking test 033 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1563,14 +1563,14 @@ Checking test 033 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 204.595908 - 0: The maximum resident set size (KB) = 783308 + 0: The total amount of wall time = 158.636285 + 0: The maximum resident set size (KB) = 775448 Test 033 control_restart_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_decomp_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/control_decomp_p8 Checking test 034 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1613,14 +1613,14 @@ Checking test 034 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1769.322418 - 0: The maximum resident set size (KB) = 1529496 + 0: The total amount of wall time = 334.266495 + 0: The maximum resident set size (KB) = 1521672 Test 034 control_decomp_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_2threads_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/control_2threads_p8 Checking test 035 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1663,14 +1663,14 @@ Checking test 035 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 377.149442 - 0: The maximum resident set size (KB) = 1619336 + 0: The total amount of wall time = 307.311676 + 0: The maximum resident set size (KB) = 1615500 Test 035 control_2threads_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_rrtmgp -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_p8_rrtmgp +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/control_p8_rrtmgp Checking test 036 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1717,14 +1717,14 @@ Checking test 036 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 436.178142 - 0: The maximum resident set size (KB) = 1601964 + 0: The total amount of wall time = 389.915868 + 0: The maximum resident set size (KB) = 1602696 Test 036 control_p8_rrtmgp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/merra2_thompson -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/merra2_thompson +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/merra2_thompson Checking test 037 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1771,14 +1771,14 @@ Checking test 037 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 362.081238 - 0: The maximum resident set size (KB) = 1537396 + 0: The total amount of wall time = 387.081812 + 0: The maximum resident set size (KB) = 1555888 Test 037 merra2_thompson PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/regional_control Checking test 038 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1789,28 +1789,28 @@ Checking test 038 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 632.636828 - 0: The maximum resident set size (KB) = 787876 + 0: The total amount of wall time = 657.485336 + 0: The maximum resident set size (KB) = 785240 Test 038 regional_control PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/regional_restart +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/regional_restart Checking test 039 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 368.405306 - 0: The maximum resident set size (KB) = 777580 + 0: The total amount of wall time = 309.039445 + 0: The maximum resident set size (KB) = 779540 Test 039 regional_restart PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/regional_decomp +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/regional_decomp Checking test 040 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1821,14 +1821,14 @@ Checking test 040 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 661.615500 - 0: The maximum resident set size (KB) = 785452 + 0: The total amount of wall time = 683.194419 + 0: The maximum resident set size (KB) = 777544 Test 040 regional_decomp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/regional_2threads +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/regional_2threads Checking test 041 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1839,14 +1839,14 @@ Checking test 041 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 348.373109 - 0: The maximum resident set size (KB) = 770332 + 0: The total amount of wall time = 387.400139 + 0: The maximum resident set size (KB) = 769636 Test 041 regional_2threads PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_noquilt -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/regional_noquilt +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/regional_noquilt Checking test 042 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1854,28 +1854,28 @@ Checking test 042 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 659.316036 - 0: The maximum resident set size (KB) = 770480 + 0: The total amount of wall time = 618.162790 + 0: The maximum resident set size (KB) = 775964 Test 042 regional_noquilt PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_netcdf_parallel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/regional_netcdf_parallel +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/regional_netcdf_parallel Checking test 043 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 628.653173 - 0: The maximum resident set size (KB) = 779684 + 0: The total amount of wall time = 595.218716 + 0: The maximum resident set size (KB) = 783676 Test 043 regional_netcdf_parallel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/regional_2dwrtdecomp +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/regional_2dwrtdecomp Checking test 044 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1886,14 +1886,14 @@ Checking test 044 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 616.992044 - 0: The maximum resident set size (KB) = 784728 + 0: The total amount of wall time = 660.789839 + 0: The maximum resident set size (KB) = 784756 Test 044 regional_2dwrtdecomp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/fv3_regional_wofs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/regional_wofs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/regional_wofs Checking test 045 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1904,14 +1904,14 @@ Checking test 045 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 766.341639 - 0: The maximum resident set size (KB) = 518112 + 0: The total amount of wall time = 799.554183 + 0: The maximum resident set size (KB) = 523148 Test 045 regional_wofs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rap_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/rap_control Checking test 046 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1958,14 +1958,14 @@ Checking test 046 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 842.653759 - 0: The maximum resident set size (KB) = 947848 + 0: The total amount of wall time = 860.948537 + 0: The maximum resident set size (KB) = 945136 Test 046 rap_control PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/regional_spp_sppt_shum_skeb +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/regional_spp_sppt_shum_skeb Checking test 047 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -1976,14 +1976,14 @@ Checking test 047 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 517.203684 - 0: The maximum resident set size (KB) = 1092084 + 0: The total amount of wall time = 573.321146 + 0: The maximum resident set size (KB) = 1091428 Test 047 regional_spp_sppt_shum_skeb PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rap_decomp +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/rap_decomp Checking test 048 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2030,14 +2030,14 @@ Checking test 048 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 859.558204 - 0: The maximum resident set size (KB) = 952780 + 0: The total amount of wall time = 849.876312 + 0: The maximum resident set size (KB) = 951620 Test 048 rap_decomp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rap_2threads +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/rap_2threads Checking test 049 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2084,14 +2084,14 @@ Checking test 049 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 800.263347 - 0: The maximum resident set size (KB) = 1019456 + 0: The total amount of wall time = 826.803751 + 0: The maximum resident set size (KB) = 1022712 Test 049 rap_2threads PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rap_restart +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/rap_restart Checking test 050 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2130,14 +2130,14 @@ Checking test 050 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 441.102805 - 0: The maximum resident set size (KB) = 830600 + 0: The total amount of wall time = 357.058530 + 0: The maximum resident set size (KB) = 830852 Test 050 rap_restart PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rap_sfcdiff +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/rap_sfcdiff Checking test 051 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2184,14 +2184,14 @@ Checking test 051 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 796.251377 - 0: The maximum resident set size (KB) = 943816 + 0: The total amount of wall time = 832.030775 + 0: The maximum resident set size (KB) = 964100 Test 051 rap_sfcdiff PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rap_sfcdiff_decomp +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/rap_sfcdiff_decomp Checking test 052 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2238,14 +2238,14 @@ Checking test 052 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 833.289686 - 0: The maximum resident set size (KB) = 956516 + 0: The total amount of wall time = 862.809434 + 0: The maximum resident set size (KB) = 937088 Test 052 rap_sfcdiff_decomp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rap_sfcdiff_restart +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/rap_sfcdiff_restart Checking test 053 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2284,14 +2284,14 @@ Checking test 053 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 714.126902 - 0: The maximum resident set size (KB) = 834916 + 0: The total amount of wall time = 557.234199 + 0: The maximum resident set size (KB) = 842748 Test 053 rap_sfcdiff_restart PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/hrrr_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/hrrr_control Checking test 054 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2338,14 +2338,14 @@ Checking test 054 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 758.048361 - 0: The maximum resident set size (KB) = 963892 + 0: The total amount of wall time = 834.883131 + 0: The maximum resident set size (KB) = 957604 Test 054 hrrr_control PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/hrrr_control_decomp +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/hrrr_control_decomp Checking test 055 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2392,14 +2392,14 @@ Checking test 055 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 880.811062 - 0: The maximum resident set size (KB) = 940720 + 0: The total amount of wall time = 835.155321 + 0: The maximum resident set size (KB) = 939948 Test 055 hrrr_control_decomp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/hrrr_control_2threads +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/hrrr_control_2threads Checking test 056 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2446,14 +2446,14 @@ Checking test 056 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 772.988201 - 0: The maximum resident set size (KB) = 1011244 + 0: The total amount of wall time = 772.445364 + 0: The maximum resident set size (KB) = 1021408 Test 056 hrrr_control_2threads PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/hrrr_control_restart +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/hrrr_control_restart Checking test 057 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2492,14 +2492,14 @@ Checking test 057 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 647.873323 - 0: The maximum resident set size (KB) = 835744 + 0: The total amount of wall time = 542.282663 + 0: The maximum resident set size (KB) = 846416 Test 057 hrrr_control_restart PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rrfs_v1beta +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/rrfs_v1beta Checking test 058 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2546,14 +2546,14 @@ Checking test 058 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 832.514271 - 0: The maximum resident set size (KB) = 937168 + 0: The total amount of wall time = 832.671680 + 0: The maximum resident set size (KB) = 943504 Test 058 rrfs_v1beta PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rrfs_v1nssl +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/rrfs_v1nssl Checking test 059 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2568,14 +2568,14 @@ Checking test 059 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 887.479186 - 0: The maximum resident set size (KB) = 640780 + 0: The total amount of wall time = 898.706447 + 0: The maximum resident set size (KB) = 630824 Test 059 rrfs_v1nssl PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rrfs_v1nssl_nohailnoccn +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/rrfs_v1nssl_nohailnoccn Checking test 060 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2590,14 +2590,14 @@ Checking test 060 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 898.866218 - 0: The maximum resident set size (KB) = 630464 + 0: The total amount of wall time = 878.961453 + 0: The maximum resident set size (KB) = 634876 Test 060 rrfs_v1nssl_nohailnoccn PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rrfs_conus13km_hrrr_warm +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/rrfs_conus13km_hrrr_warm Checking test 061 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2606,14 +2606,14 @@ Checking test 061 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 199.334452 - 0: The maximum resident set size (KB) = 850092 + 0: The total amount of wall time = 211.450212 + 0: The maximum resident set size (KB) = 844052 Test 061 rrfs_conus13km_hrrr_warm PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/rrfs_smoke_conus13km_hrrr_warm Checking test 062 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2622,14 +2622,14 @@ Checking test 062 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 217.010434 - 0: The maximum resident set size (KB) = 869444 + 0: The total amount of wall time = 236.673305 + 0: The maximum resident set size (KB) = 884120 Test 062 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rrfs_conus13km_radar_tten_warm +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/rrfs_conus13km_radar_tten_warm Checking test 063 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2638,14 +2638,14 @@ Checking test 063 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 222.116908 - 0: The maximum resident set size (KB) = 845848 + 0: The total amount of wall time = 244.480951 + 0: The maximum resident set size (KB) = 859884 Test 063 rrfs_conus13km_radar_tten_warm PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rrfs_conus13km_hrrr_warm_2threads +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/rrfs_conus13km_hrrr_warm_2threads Checking test 064 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2654,14 +2654,14 @@ Checking test 064 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 569.901820 - 0: The maximum resident set size (KB) = 818856 + 0: The total amount of wall time = 143.062654 + 0: The maximum resident set size (KB) = 825416 Test 064 rrfs_conus13km_hrrr_warm_2threads PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rrfs_conus13km_radar_tten_warm_2threads +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/rrfs_conus13km_radar_tten_warm_2threads Checking test 065 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2670,14 +2670,14 @@ Checking test 065 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 135.305223 - 0: The maximum resident set size (KB) = 828444 + 0: The total amount of wall time = 170.023418 + 0: The maximum resident set size (KB) = 834024 Test 065 rrfs_conus13km_radar_tten_warm_2threads PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_csawmg +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/control_csawmg Checking test 066 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2688,14 +2688,14 @@ Checking test 066 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 612.792777 - 0: The maximum resident set size (KB) = 667432 + 0: The total amount of wall time = 726.707272 + 0: The maximum resident set size (KB) = 667008 Test 066 control_csawmg PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_csawmgt +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/control_csawmgt Checking test 067 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2706,14 +2706,14 @@ Checking test 067 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 616.190662 - 0: The maximum resident set size (KB) = 668032 + 0: The total amount of wall time = 714.615646 + 0: The maximum resident set size (KB) = 667816 Test 067 control_csawmgt PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_ras +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/control_ras Checking test 068 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2724,26 +2724,26 @@ Checking test 068 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 330.547458 - 0: The maximum resident set size (KB) = 633212 + 0: The total amount of wall time = 377.364756 + 0: The maximum resident set size (KB) = 631672 Test 068 control_ras PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_wam +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/control_wam Checking test 069 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 219.663369 - 0: The maximum resident set size (KB) = 480812 + 0: The total amount of wall time = 217.039130 + 0: The maximum resident set size (KB) = 480396 Test 069 control_wam PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_faster -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_p8_faster +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/control_p8_faster Checking test 070 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2790,14 +2790,14 @@ Checking test 070 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 392.429243 - 0: The maximum resident set size (KB) = 1535820 + 0: The total amount of wall time = 230.527783 + 0: The maximum resident set size (KB) = 1533884 Test 070 control_p8_faster PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control_faster -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/regional_control_faster +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/regional_control_faster Checking test 071 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2808,42 +2808,42 @@ Checking test 071 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 647.912693 - 0: The maximum resident set size (KB) = 790660 + 0: The total amount of wall time = 479.773316 + 0: The maximum resident set size (KB) = 782016 Test 071 regional_control_faster PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rrfs_conus13km_hrrr_warm_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/rrfs_conus13km_hrrr_warm_debug Checking test 072 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 972.255473 - 0: The maximum resident set size (KB) = 876704 + 0: The total amount of wall time = 987.934637 + 0: The maximum resident set size (KB) = 876012 Test 072 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rrfs_conus13km_radar_tten_warm_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/rrfs_conus13km_radar_tten_warm_debug Checking test 073 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 1025.151578 - 0: The maximum resident set size (KB) = 878508 + 0: The total amount of wall time = 963.998248 + 0: The maximum resident set size (KB) = 886072 Test 073 rrfs_conus13km_radar_tten_warm_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_CubedSphereGrid_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/control_CubedSphereGrid_debug Checking test 074 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2870,334 +2870,334 @@ Checking test 074 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 237.342675 - 0: The maximum resident set size (KB) = 734076 + 0: The total amount of wall time = 236.928034 + 0: The maximum resident set size (KB) = 737020 Test 074 control_CubedSphereGrid_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/control_wrtGauss_netcdf_parallel_debug Checking test 075 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 219.007639 - 0: The maximum resident set size (KB) = 733620 + 0: The total amount of wall time = 227.022651 + 0: The maximum resident set size (KB) = 733368 Test 075 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_stochy_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/control_stochy_debug Checking test 076 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 230.598194 - 0: The maximum resident set size (KB) = 743852 + 0: The total amount of wall time = 241.767011 + 0: The maximum resident set size (KB) = 740412 Test 076 control_stochy_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_lndp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/control_lndp_debug Checking test 077 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 246.761096 - 0: The maximum resident set size (KB) = 739076 + 0: The total amount of wall time = 218.182027 + 0: The maximum resident set size (KB) = 740324 Test 077 control_lndp_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_csawmg_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/control_csawmg_debug Checking test 078 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 369.323997 - 0: The maximum resident set size (KB) = 786664 + 0: The total amount of wall time = 329.365416 + 0: The maximum resident set size (KB) = 784584 Test 078 control_csawmg_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_csawmgt_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/control_csawmgt_debug Checking test 079 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 371.344112 - 0: The maximum resident set size (KB) = 785304 + 0: The total amount of wall time = 310.736424 + 0: The maximum resident set size (KB) = 780732 Test 079 control_csawmgt_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_ras_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/control_ras_debug Checking test 080 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 213.311965 - 0: The maximum resident set size (KB) = 750564 + 0: The total amount of wall time = 207.195983 + 0: The maximum resident set size (KB) = 743984 Test 080 control_ras_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_diag_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_diag_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/control_diag_debug Checking test 081 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 234.943673 - 0: The maximum resident set size (KB) = 790132 + 0: The total amount of wall time = 262.010812 + 0: The maximum resident set size (KB) = 790988 Test 081 control_diag_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_debug_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_debug_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/control_debug_p8 Checking test 082 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 298.196908 - 0: The maximum resident set size (KB) = 1549504 + 0: The total amount of wall time = 249.919452 + 0: The maximum resident set size (KB) = 1558140 Test 082 control_debug_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/regional_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/regional_debug Checking test 083 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1375.873103 - 0: The maximum resident set size (KB) = 802680 + 0: The total amount of wall time = 1350.757248 + 0: The maximum resident set size (KB) = 802164 Test 083 regional_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rap_control_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/rap_control_debug Checking test 084 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 390.249227 - 0: The maximum resident set size (KB) = 1112264 + 0: The total amount of wall time = 380.245722 + 0: The maximum resident set size (KB) = 1106884 Test 084 rap_control_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/hrrr_control_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/hrrr_control_debug Checking test 085 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 378.632359 - 0: The maximum resident set size (KB) = 1108680 + 0: The total amount of wall time = 408.135378 + 0: The maximum resident set size (KB) = 1110220 Test 085 hrrr_control_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rap_unified_drag_suite_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/rap_unified_drag_suite_debug Checking test 086 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 407.960695 - 0: The maximum resident set size (KB) = 1112228 + 0: The total amount of wall time = 401.748053 + 0: The maximum resident set size (KB) = 1115536 Test 086 rap_unified_drag_suite_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_diag_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rap_diag_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/rap_diag_debug Checking test 087 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 411.326910 - 0: The maximum resident set size (KB) = 1189592 + 0: The total amount of wall time = 427.215326 + 0: The maximum resident set size (KB) = 1189808 Test 087 rap_diag_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rap_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/rap_cires_ugwp_debug Checking test 088 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 390.827664 - 0: The maximum resident set size (KB) = 1108492 + 0: The total amount of wall time = 413.575567 + 0: The maximum resident set size (KB) = 1106672 Test 088 rap_cires_ugwp_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rap_unified_ugwp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/rap_unified_ugwp_debug Checking test 089 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 390.290907 - 0: The maximum resident set size (KB) = 1113880 + 0: The total amount of wall time = 409.554665 + 0: The maximum resident set size (KB) = 1110228 Test 089 rap_unified_ugwp_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_lndp_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rap_lndp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/rap_lndp_debug Checking test 090 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 406.825957 - 0: The maximum resident set size (KB) = 1113688 + 0: The total amount of wall time = 391.795559 + 0: The maximum resident set size (KB) = 1108260 Test 090 rap_lndp_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_flake_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rap_flake_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/rap_flake_debug Checking test 091 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 377.320185 - 0: The maximum resident set size (KB) = 1111872 + 0: The total amount of wall time = 385.659102 + 0: The maximum resident set size (KB) = 1111592 Test 091 rap_flake_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_progcld_thompson_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rap_progcld_thompson_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/rap_progcld_thompson_debug Checking test 092 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 413.249352 - 0: The maximum resident set size (KB) = 1112764 + 0: The total amount of wall time = 366.598061 + 0: The maximum resident set size (KB) = 1113844 Test 092 rap_progcld_thompson_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rap_noah_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/rap_noah_debug Checking test 093 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 444.832079 - 0: The maximum resident set size (KB) = 1113880 + 0: The total amount of wall time = 391.050762 + 0: The maximum resident set size (KB) = 1105516 Test 093 rap_noah_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rap_sfcdiff_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/rap_sfcdiff_debug Checking test 094 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 414.518187 - 0: The maximum resident set size (KB) = 1113708 + 0: The total amount of wall time = 406.053442 + 0: The maximum resident set size (KB) = 1110164 Test 094 rap_sfcdiff_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/rap_noah_sfcdiff_cires_ugwp_debug Checking test 095 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 636.620864 - 0: The maximum resident set size (KB) = 1106592 + 0: The total amount of wall time = 628.331830 + 0: The maximum resident set size (KB) = 1103244 Test 095 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rrfs_v1beta_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/rrfs_v1beta_debug Checking test 096 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 380.741406 - 0: The maximum resident set size (KB) = 1104848 + 0: The total amount of wall time = 389.077120 + 0: The maximum resident set size (KB) = 1106112 Test 096 rrfs_v1beta_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_wam_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/control_wam_debug Checking test 097 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 390.106107 - 0: The maximum resident set size (KB) = 436708 + 0: The total amount of wall time = 404.098258 + 0: The maximum resident set size (KB) = 434736 Test 097 control_wam_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 098 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3208,14 +3208,14 @@ Checking test 098 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 525.807822 - 0: The maximum resident set size (KB) = 976528 + 0: The total amount of wall time = 408.299647 + 0: The maximum resident set size (KB) = 978876 Test 098 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/rap_control_dyn32_phy32 Checking test 099 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3262,14 +3262,14 @@ Checking test 099 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 755.591214 - 0: The maximum resident set size (KB) = 847208 + 0: The total amount of wall time = 584.096077 + 0: The maximum resident set size (KB) = 854564 Test 099 rap_control_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/hrrr_control_dyn32_phy32 Checking test 100 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3316,14 +3316,14 @@ Checking test 100 hrrr_control_dyn32_phy32 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 = 367.305519 - 0: The maximum resident set size (KB) = 829364 + 0: The total amount of wall time = 328.548851 + 0: The maximum resident set size (KB) = 826232 Test 100 hrrr_control_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rap_2threads_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/rap_2threads_dyn32_phy32 Checking test 101 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3370,14 +3370,14 @@ Checking test 101 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 827.934933 - 0: The maximum resident set size (KB) = 896300 + 0: The total amount of wall time = 570.179948 + 0: The maximum resident set size (KB) = 890016 Test 101 rap_2threads_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/hrrr_control_2threads_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/hrrr_control_2threads_dyn32_phy32 Checking test 102 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3424,14 +3424,14 @@ Checking test 102 hrrr_control_2threads_dyn32_phy32 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 = 382.371462 - 0: The maximum resident set size (KB) = 882380 + 0: The total amount of wall time = 309.804876 + 0: The maximum resident set size (KB) = 893024 Test 102 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/hrrr_control_decomp_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/hrrr_control_decomp_dyn32_phy32 Checking test 103 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3478,14 +3478,14 @@ Checking test 103 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 405.766350 - 0: The maximum resident set size (KB) = 831504 + 0: The total amount of wall time = 327.630789 + 0: The maximum resident set size (KB) = 821744 Test 103 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rap_restart_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/rap_restart_dyn32_phy32 Checking test 104 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3524,14 +3524,14 @@ Checking test 104 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 581.124102 - 0: The maximum resident set size (KB) = 801692 + 0: The total amount of wall time = 487.994076 + 0: The maximum resident set size (KB) = 833308 Test 104 rap_restart_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/hrrr_control_restart_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/hrrr_control_restart_dyn32_phy32 Checking test 105 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3570,14 +3570,14 @@ Checking test 105 hrrr_control_restart_dyn32_phy32 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 = 197.480123 - 0: The maximum resident set size (KB) = 760668 + 0: The total amount of wall time = 154.605343 + 0: The maximum resident set size (KB) = 761336 Test 105 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn64_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rap_control_dyn64_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/rap_control_dyn64_phy32 Checking test 106 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3624,81 +3624,81 @@ Checking test 106 rap_control_dyn64_phy32 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 = 512.670729 - 0: The maximum resident set size (KB) = 870360 + 0: The total amount of wall time = 396.156160 + 0: The maximum resident set size (KB) = 867904 Test 106 rap_control_dyn64_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rap_control_debug_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/rap_control_debug_dyn32_phy32 Checking test 107 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 392.639636 - 0: The maximum resident set size (KB) = 997844 + 0: The total amount of wall time = 364.815602 + 0: The maximum resident set size (KB) = 1002108 Test 107 rap_control_debug_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/hrrr_control_debug_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/hrrr_control_debug_dyn32_phy32 Checking test 108 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 374.664665 - 0: The maximum resident set size (KB) = 994628 + 0: The total amount of wall time = 359.969313 + 0: The maximum resident set size (KB) = 994288 Test 108 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/rap_control_dyn64_phy32_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/rap_control_dyn64_phy32_debug Checking test 109 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 409.180509 - 0: The maximum resident set size (KB) = 1032580 + 0: The total amount of wall time = 378.015663 + 0: The maximum resident set size (KB) = 1033976 Test 109 rap_control_dyn64_phy32_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/hafs_regional_atm +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/hafs_regional_atm Checking test 110 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 571.606991 - 0: The maximum resident set size (KB) = 1225268 + 0: The total amount of wall time = 513.631130 + 0: The maximum resident set size (KB) = 1224248 Test 110 hafs_regional_atm PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/hafs_regional_atm_thompson_gfdlsf Checking test 111 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 807.742299 - 0: The maximum resident set size (KB) = 1553020 + 0: The total amount of wall time = 667.249302 + 0: The maximum resident set size (KB) = 1544908 Test 111 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/hafs_regional_atm_ocn +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/hafs_regional_atm_ocn Checking test 112 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3707,14 +3707,14 @@ Checking test 112 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 848.224113 - 0: The maximum resident set size (KB) = 1294328 + 0: The total amount of wall time = 789.686110 + 0: The maximum resident set size (KB) = 1300856 Test 112 hafs_regional_atm_ocn PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_wav -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/hafs_regional_atm_wav +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/hafs_regional_atm_wav Checking test 113 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3723,14 +3723,14 @@ Checking test 113 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 1108.737662 - 0: The maximum resident set size (KB) = 1324564 + 0: The total amount of wall time = 1348.664422 + 0: The maximum resident set size (KB) = 1329360 Test 113 hafs_regional_atm_wav PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/hafs_regional_atm_ocn_wav +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/hafs_regional_atm_ocn_wav Checking test 114 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3741,14 +3741,14 @@ Checking test 114 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 1223.091107 - 0: The maximum resident set size (KB) = 1352212 + 0: The total amount of wall time = 1399.551503 + 0: The maximum resident set size (KB) = 1345204 Test 114 hafs_regional_atm_ocn_wav PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_docn -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/hafs_regional_docn +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/hafs_regional_docn Checking test 115 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3756,14 +3756,14 @@ Checking test 115 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 656.573291 - 0: The maximum resident set size (KB) = 1309080 + 0: The total amount of wall time = 762.636378 + 0: The maximum resident set size (KB) = 1308524 Test 115 hafs_regional_docn PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_docn_oisst -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/hafs_regional_docn_oisst +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/hafs_regional_docn_oisst Checking test 116 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3771,131 +3771,131 @@ Checking test 116 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 653.423473 - 0: The maximum resident set size (KB) = 1293252 + 0: The total amount of wall time = 780.263397 + 0: The maximum resident set size (KB) = 1282280 Test 116 hafs_regional_docn_oisst PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_datm_cdeps -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/hafs_regional_datm_cdeps +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/hafs_regional_datm_cdeps Checking test 117 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 1580.169509 - 0: The maximum resident set size (KB) = 972728 + 0: The total amount of wall time = 1591.794826 + 0: The maximum resident set size (KB) = 976580 -Test 117 hafs_regional_datm_cdeps PASS +Test 117 hafs_regional_datm_cdeps PASS Tries: 2 baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/datm_cdeps_control_cfsr Checking test 118 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 299.370901 - 0: The maximum resident set size (KB) = 960956 + 0: The total amount of wall time = 297.596700 + 0: The maximum resident set size (KB) = 968384 Test 118 datm_cdeps_control_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/datm_cdeps_restart_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/datm_cdeps_restart_cfsr Checking test 119 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 132.075051 - 0: The maximum resident set size (KB) = 931812 + 0: The total amount of wall time = 163.636329 + 0: The maximum resident set size (KB) = 933332 Test 119 datm_cdeps_restart_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_gefs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/datm_cdeps_control_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/datm_cdeps_control_gefs Checking test 120 datm_cdeps_control_gefs 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 = 281.155619 - 0: The maximum resident set size (KB) = 865060 + 0: The total amount of wall time = 275.539442 + 0: The maximum resident set size (KB) = 863924 Test 120 datm_cdeps_control_gefs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_iau_gefs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/datm_cdeps_iau_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/datm_cdeps_iau_gefs Checking test 121 datm_cdeps_iau_gefs 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 = 324.327793 - 0: The maximum resident set size (KB) = 859036 + 0: The total amount of wall time = 293.420249 + 0: The maximum resident set size (KB) = 861556 Test 121 datm_cdeps_iau_gefs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_stochy_gefs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/datm_cdeps_stochy_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/datm_cdeps_stochy_gefs Checking test 122 datm_cdeps_stochy_gefs 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 = 335.703720 - 0: The maximum resident set size (KB) = 870752 + 0: The total amount of wall time = 279.083541 + 0: The maximum resident set size (KB) = 863488 Test 122 datm_cdeps_stochy_gefs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/datm_cdeps_ciceC_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/datm_cdeps_ciceC_cfsr Checking test 123 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 323.657266 - 0: The maximum resident set size (KB) = 962592 + 0: The total amount of wall time = 292.097605 + 0: The maximum resident set size (KB) = 962192 Test 123 datm_cdeps_ciceC_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/datm_cdeps_bulk_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/datm_cdeps_bulk_cfsr Checking test 124 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 322.981942 - 0: The maximum resident set size (KB) = 963740 + 0: The total amount of wall time = 281.716799 + 0: The maximum resident set size (KB) = 979984 Test 124 datm_cdeps_bulk_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/datm_cdeps_bulk_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/datm_cdeps_bulk_gefs Checking test 125 datm_cdeps_bulk_gefs 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 = 284.136477 - 0: The maximum resident set size (KB) = 859820 + 0: The total amount of wall time = 294.978671 + 0: The maximum resident set size (KB) = 868332 Test 125 datm_cdeps_bulk_gefs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/datm_cdeps_mx025_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/datm_cdeps_mx025_cfsr Checking test 126 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -3904,14 +3904,14 @@ Checking test 126 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 723.436741 - 0: The maximum resident set size (KB) = 765792 + 0: The total amount of wall time = 703.842346 + 0: The maximum resident set size (KB) = 762148 Test 126 datm_cdeps_mx025_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/datm_cdeps_mx025_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/datm_cdeps_mx025_gefs Checking test 127 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -3920,77 +3920,77 @@ Checking test 127 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 637.126120 - 0: The maximum resident set size (KB) = 734252 + 0: The total amount of wall time = 733.946139 + 0: The maximum resident set size (KB) = 737932 Test 127 datm_cdeps_mx025_gefs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/datm_cdeps_multiple_files_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/datm_cdeps_multiple_files_cfsr Checking test 128 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 287.569203 - 0: The maximum resident set size (KB) = 967216 + 0: The total amount of wall time = 281.611645 + 0: The maximum resident set size (KB) = 964296 Test 128 datm_cdeps_multiple_files_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/datm_cdeps_3072x1536_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/datm_cdeps_3072x1536_cfsr Checking test 129 datm_cdeps_3072x1536_cfsr 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 = 404.265118 - 0: The maximum resident set size (KB) = 2264740 + 0: The total amount of wall time = 389.936901 + 0: The maximum resident set size (KB) = 2248384 Test 129 datm_cdeps_3072x1536_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_gfs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/datm_cdeps_gfs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/datm_cdeps_gfs Checking test 130 datm_cdeps_gfs 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 = 404.355070 - 0: The maximum resident set size (KB) = 2261108 + 0: The total amount of wall time = 363.984179 + 0: The maximum resident set size (KB) = 2267540 Test 130 datm_cdeps_gfs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_debug_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/datm_cdeps_debug_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/datm_cdeps_debug_cfsr Checking test 131 datm_cdeps_debug_cfsr 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 = 623.646354 - 0: The maximum resident set size (KB) = 912204 + 0: The total amount of wall time = 612.317083 + 0: The maximum resident set size (KB) = 918220 Test 131 datm_cdeps_debug_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr_faster -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/datm_cdeps_control_cfsr_faster +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/datm_cdeps_control_cfsr_faster Checking test 132 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.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 = 244.378737 - 0: The maximum resident set size (KB) = 970968 + 0: The total amount of wall time = 268.315212 + 0: The maximum resident set size (KB) = 962172 Test 132 datm_cdeps_control_cfsr_faster PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/datm_cdeps_lnd_gswp3 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/datm_cdeps_lnd_gswp3 Checking test 133 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -3999,14 +3999,14 @@ Checking test 133 datm_cdeps_lnd_gswp3 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 = 100.350839 - 0: The maximum resident set size (KB) = 252556 + 0: The total amount of wall time = 41.167192 + 0: The maximum resident set size (KB) = 243848 Test 133 datm_cdeps_lnd_gswp3 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/datm_cdeps_lnd_gswp3_rst +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/datm_cdeps_lnd_gswp3_rst Checking test 134 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4015,14 +4015,14 @@ Checking test 134 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 79.307586 - 0: The maximum resident set size (KB) = 250072 + 0: The total amount of wall time = 26.194736 + 0: The maximum resident set size (KB) = 240564 Test 134 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_atmlnd_sbs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_p8_atmlnd_sbs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/control_p8_atmlnd_sbs Checking test 135 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4107,14 +4107,14 @@ Checking test 135 control_p8_atmlnd_sbs 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 = 395.314040 - 0: The maximum resident set size (KB) = 1587148 + 0: The total amount of wall time = 602.427127 + 0: The maximum resident set size (KB) = 1596136 Test 135 control_p8_atmlnd_sbs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_atmwav -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/control_atmwav +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/control_atmwav Checking test 136 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4158,14 +4158,14 @@ Checking test 136 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 163.146322 - 0: The maximum resident set size (KB) = 599796 + 0: The total amount of wall time = 266.690170 + 0: The maximum resident set size (KB) = 597396 Test 136 control_atmwav PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/atmaero_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/atmaero_control_p8 Checking test 137 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4209,14 +4209,14 @@ Checking test 137 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 432.566750 - 0: The maximum resident set size (KB) = 1636196 + 0: The total amount of wall time = 465.127807 + 0: The maximum resident set size (KB) = 1634724 Test 137 atmaero_control_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/atmaero_control_p8_rad +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/atmaero_control_p8_rad Checking test 138 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4260,14 +4260,14 @@ Checking test 138 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 473.871058 - 0: The maximum resident set size (KB) = 1661328 + 0: The total amount of wall time = 471.841350 + 0: The maximum resident set size (KB) = 1668920 Test 138 atmaero_control_p8_rad PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/atmaero_control_p8_rad_micro +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/atmaero_control_p8_rad_micro Checking test 139 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4311,14 +4311,14 @@ Checking test 139 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 487.530446 - 0: The maximum resident set size (KB) = 1688740 + 0: The total amount of wall time = 543.273883 + 0: The maximum resident set size (KB) = 1688400 Test 139 atmaero_control_p8_rad_micro PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/regional_atmaq +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/regional_atmaq Checking test 140 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4334,14 +4334,14 @@ Checking test 140 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 1109.786211 - 0: The maximum resident set size (KB) = 1356272 + 0: The total amount of wall time = 1446.007259 + 0: The maximum resident set size (KB) = 1410288 Test 140 regional_atmaq PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq_faster -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_143697/regional_atmaq_faster +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/regional_atmaq_faster Checking test 141 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4357,12 +4357,12 @@ Checking test 141 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 1086.189996 - 0: The maximum resident set size (KB) = 1331168 + 0: The total amount of wall time = 1145.797083 + 0: The maximum resident set size (KB) = 1407884 Test 141 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Wed Mar 8 22:10:19 UTC 2023 -Elapsed time: 03h:14m:58s. Have a nice day! +Sun Mar 12 22:41:47 UTC 2023 +Elapsed time: 03h:13m:29s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index 11a0677715d..199c6862da9 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,42 +1,42 @@ -Wed Mar 8 12:32:48 CST 2023 +Fri Mar 10 08:16:57 CST 2023 Start Regression test -Compile 001 elapsed time 779 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 779 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 739 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 285 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 243 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 604 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 604 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 816 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 620 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 592 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 573 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 512 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 749 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 272 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 205 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 575 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 525 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 207 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 206 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 629 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 021 elapsed time 234 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 763 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 675 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 024 elapsed time 202 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 158 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 238 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 84 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 564 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 570 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 574 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 564 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 164 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 663 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 741 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 741 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 695 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 264 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 250 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 645 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 624 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 810 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 667 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 572 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 541 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 539 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 652 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 251 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 162 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 533 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 536 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 210 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 210 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 622 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 187 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 758 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 689 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 024 elapsed time 207 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 112 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 207 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 56 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 553 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 614 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 546 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 551 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 177 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 602 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_mixedmode -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/cpld_control_p8_mixedmode +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -101,14 +101,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 336.877165 - 0: The maximum resident set size (KB) = 3144272 + 0: The total amount of wall time = 310.343685 + 0: The maximum resident set size (KB) = 3141020 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_gfsv17 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/cpld_control_gfsv17 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -172,14 +172,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 258.080182 - 0: The maximum resident set size (KB) = 1737640 + 0: The total amount of wall time = 227.055222 + 0: The maximum resident set size (KB) = 1726976 Test 002 cpld_control_gfsv17 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/cpld_control_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -244,14 +244,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 348.464064 - 0: The maximum resident set size (KB) = 3168988 + 0: The total amount of wall time = 348.624989 + 0: The maximum resident set size (KB) = 3180744 Test 003 cpld_control_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/cpld_restart_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -304,14 +304,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 203.959017 - 0: The maximum resident set size (KB) = 3048492 + 0: The total amount of wall time = 239.983003 + 0: The maximum resident set size (KB) = 3050400 Test 004 cpld_restart_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/cpld_2threads_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -364,14 +364,14 @@ Checking test 005 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 412.334822 - 0: The maximum resident set size (KB) = 3504828 + 0: The total amount of wall time = 409.346952 + 0: The maximum resident set size (KB) = 3516812 Test 005 cpld_2threads_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/cpld_decomp_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/cpld_decomp_p8 Checking test 006 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -424,14 +424,14 @@ Checking test 006 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 346.288032 - 0: The maximum resident set size (KB) = 3170444 + 0: The total amount of wall time = 344.295853 + 0: The maximum resident set size (KB) = 3169096 Test 006 cpld_decomp_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/cpld_mpi_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/cpld_mpi_p8 Checking test 007 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -484,14 +484,14 @@ Checking test 007 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 287.880993 - 0: The maximum resident set size (KB) = 3029568 + 0: The total amount of wall time = 291.444541 + 0: The maximum resident set size (KB) = 3034204 Test 007 cpld_mpi_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_ciceC_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/cpld_control_ciceC_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/cpld_control_ciceC_p8 Checking test 008 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -556,14 +556,14 @@ Checking test 008 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 344.185398 - 0: The maximum resident set size (KB) = 3177564 + 0: The total amount of wall time = 352.855824 + 0: The maximum resident set size (KB) = 3181156 Test 008 cpld_control_ciceC_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/cpld_control_c192_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/cpld_control_c192_p8 Checking test 009 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -616,14 +616,14 @@ Checking test 009 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 654.942801 - 0: The maximum resident set size (KB) = 3260912 + 0: The total amount of wall time = 658.159705 + 0: The maximum resident set size (KB) = 3268320 Test 009 cpld_control_c192_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/cpld_restart_c192_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/cpld_restart_c192_p8 Checking test 010 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -676,14 +676,14 @@ Checking test 010 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 452.276873 - 0: The maximum resident set size (KB) = 3150760 + 0: The total amount of wall time = 458.932204 + 0: The maximum resident set size (KB) = 3157644 Test 010 cpld_restart_c192_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_bmark_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/cpld_bmark_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/cpld_bmark_p8 Checking test 011 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -731,14 +731,14 @@ Checking test 011 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 904.233030 - 0: The maximum resident set size (KB) = 4043356 + 0: The total amount of wall time = 905.167511 + 0: The maximum resident set size (KB) = 4038708 Test 011 cpld_bmark_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_bmark_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/cpld_restart_bmark_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/cpld_restart_bmark_p8 Checking test 012 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -786,14 +786,14 @@ Checking test 012 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 548.726341 - 0: The maximum resident set size (KB) = 3961096 + 0: The total amount of wall time = 564.565534 + 0: The maximum resident set size (KB) = 3975400 Test 012 cpld_restart_bmark_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/cpld_control_noaero_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/cpld_control_noaero_p8 Checking test 013 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -857,14 +857,14 @@ Checking test 013 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 258.001386 - 0: The maximum resident set size (KB) = 1715620 + 0: The total amount of wall time = 258.248652 + 0: The maximum resident set size (KB) = 1712836 Test 013 cpld_control_noaero_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c96_noaero_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/cpld_control_nowave_noaero_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/cpld_control_nowave_noaero_p8 Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -926,14 +926,14 @@ Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 263.748207 - 0: The maximum resident set size (KB) = 1759308 + 0: The total amount of wall time = 263.405131 + 0: The maximum resident set size (KB) = 1771736 Test 014 cpld_control_nowave_noaero_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_debug_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/cpld_debug_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/cpld_debug_p8 Checking test 015 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -986,14 +986,14 @@ Checking test 015 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 708.047363 - 0: The maximum resident set size (KB) = 3259048 + 0: The total amount of wall time = 691.266216 + 0: The maximum resident set size (KB) = 3211568 Test 015 cpld_debug_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_debug_noaero_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/cpld_debug_noaero_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/cpld_debug_noaero_p8 Checking test 016 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1045,14 +1045,14 @@ Checking test 016 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 442.657797 - 0: The maximum resident set size (KB) = 1742824 + 0: The total amount of wall time = 426.375563 + 0: The maximum resident set size (KB) = 1739896 Test 016 cpld_debug_noaero_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8_agrid -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/cpld_control_noaero_p8_agrid +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/cpld_control_noaero_p8_agrid Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1114,14 +1114,14 @@ Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 296.103265 - 0: The maximum resident set size (KB) = 1764448 + 0: The total amount of wall time = 270.315083 + 0: The maximum resident set size (KB) = 1768852 Test 017 cpld_control_noaero_p8_agrid PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c48 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/cpld_control_c48 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/cpld_control_c48 Checking test 018 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1171,14 +1171,14 @@ Checking test 018 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 497.181790 - 0: The maximum resident set size (KB) = 2803224 + 0: The total amount of wall time = 498.049572 + 0: The maximum resident set size (KB) = 2803616 Test 018 cpld_control_c48 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/cpld_warmstart_c48 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/cpld_warmstart_c48 Checking test 019 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1228,14 +1228,14 @@ Checking test 019 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 138.730575 - 0: The maximum resident set size (KB) = 2798928 + 0: The total amount of wall time = 136.439242 + 0: The maximum resident set size (KB) = 2801568 Test 019 cpld_warmstart_c48 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/cpld_restart_c48 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/cpld_restart_c48 Checking test 020 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1285,14 +1285,14 @@ Checking test 020 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 94.986656 - 0: The maximum resident set size (KB) = 2221576 + 0: The total amount of wall time = 74.907302 + 0: The maximum resident set size (KB) = 2243404 Test 020 cpld_restart_c48 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_faster -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/cpld_control_p8_faster +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/cpld_control_p8_faster Checking test 021 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1357,14 +1357,14 @@ Checking test 021 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 322.848716 - 0: The maximum resident set size (KB) = 3183744 + 0: The total amount of wall time = 327.943615 + 0: The maximum resident set size (KB) = 3176888 Test 021 cpld_control_p8_faster PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_CubedSphereGrid +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/control_CubedSphereGrid Checking test 022 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1391,28 +1391,28 @@ Checking test 022 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 131.151760 - 0: The maximum resident set size (KB) = 629300 + 0: The total amount of wall time = 130.327219 + 0: The maximum resident set size (KB) = 628488 Test 022 control_CubedSphereGrid PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid_parallel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_CubedSphereGrid_parallel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/control_CubedSphereGrid_parallel Checking test 023 control_CubedSphereGrid_parallel results .... 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.162073 - 0: The maximum resident set size (KB) = 630492 + 0: The total amount of wall time = 127.079648 + 0: The maximum resident set size (KB) = 633888 Test 023 control_CubedSphereGrid_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_latlon -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_latlon +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/control_latlon Checking test 024 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1423,32 +1423,32 @@ Checking test 024 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 133.736516 - 0: The maximum resident set size (KB) = 634324 + 0: The total amount of wall time = 133.770910 + 0: The maximum resident set size (KB) = 630284 Test 024 control_latlon PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_wrtGauss_netcdf_parallel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/control_wrtGauss_netcdf_parallel Checking test 025 control_wrtGauss_netcdf_parallel results .... - Comparing sfcf000.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.888594 - 0: The maximum resident set size (KB) = 628828 + 0: The total amount of wall time = 136.686916 + 0: The maximum resident set size (KB) = 628096 Test 025 control_wrtGauss_netcdf_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c48 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_c48 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/control_c48 Checking test 026 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1487,14 +1487,14 @@ Checking test 026 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 347.193954 -0: The maximum resident set size (KB) = 817908 +0: The total amount of wall time = 345.699370 +0: The maximum resident set size (KB) = 818520 Test 026 control_c48 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c192 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_c192 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/control_c192 Checking test 027 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1505,14 +1505,14 @@ Checking test 027 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 528.211659 - 0: The maximum resident set size (KB) = 761428 + 0: The total amount of wall time = 526.765108 + 0: The maximum resident set size (KB) = 769248 Test 027 control_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_c384 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/control_c384 Checking test 028 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1523,14 +1523,14 @@ Checking test 028 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 602.612833 - 0: The maximum resident set size (KB) = 1230304 + 0: The total amount of wall time = 607.077061 + 0: The maximum resident set size (KB) = 1225660 Test 028 control_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384gdas -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_c384gdas +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/control_c384gdas Checking test 029 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1573,14 +1573,14 @@ Checking test 029 control_c384gdas 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 = 526.749019 - 0: The maximum resident set size (KB) = 1337808 + 0: The total amount of wall time = 547.628494 + 0: The maximum resident set size (KB) = 1328604 Test 029 control_c384gdas PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_stochy +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/control_stochy Checking test 030 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1591,28 +1591,28 @@ Checking test 030 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 88.153468 - 0: The maximum resident set size (KB) = 628812 + 0: The total amount of wall time = 88.324385 + 0: The maximum resident set size (KB) = 632428 Test 030 control_stochy PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_stochy_restart +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/control_stochy_restart Checking test 031 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 48.071092 - 0: The maximum resident set size (KB) = 479760 + 0: The total amount of wall time = 47.286814 + 0: The maximum resident set size (KB) = 481208 Test 031 control_stochy_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_lndp +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/control_lndp Checking test 032 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1623,14 +1623,14 @@ Checking test 032 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 81.115563 - 0: The maximum resident set size (KB) = 629376 + 0: The total amount of wall time = 81.922711 + 0: The maximum resident set size (KB) = 632024 Test 032 control_lndp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr4 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_iovr4 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/control_iovr4 Checking test 033 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1645,14 +1645,14 @@ Checking test 033 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.289444 - 0: The maximum resident set size (KB) = 629580 + 0: The total amount of wall time = 138.357865 + 0: The maximum resident set size (KB) = 634248 Test 033 control_iovr4 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr5 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_iovr5 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/control_iovr5 Checking test 034 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1667,14 +1667,14 @@ Checking test 034 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.054214 - 0: The maximum resident set size (KB) = 628060 + 0: The total amount of wall time = 138.331575 + 0: The maximum resident set size (KB) = 631032 Test 034 control_iovr5 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/control_p8 Checking test 035 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1721,14 +1721,14 @@ Checking test 035 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 168.590035 - 0: The maximum resident set size (KB) = 1605208 + 0: The total amount of wall time = 168.589172 + 0: The maximum resident set size (KB) = 1612952 Test 035 control_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_lndp -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_p8_lndp +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/control_p8_lndp Checking test 036 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1747,14 +1747,14 @@ Checking test 036 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 315.363481 - 0: The maximum resident set size (KB) = 1607072 + 0: The total amount of wall time = 313.178694 + 0: The maximum resident set size (KB) = 1605048 Test 036 control_p8_lndp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_restart_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/control_restart_p8 Checking test 037 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1793,14 +1793,14 @@ Checking test 037 control_restart_p8 results .... Comparing 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.654373 - 0: The maximum resident set size (KB) = 863284 + 0: The total amount of wall time = 89.745658 + 0: The maximum resident set size (KB) = 878440 Test 037 control_restart_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_decomp_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/control_decomp_p8 Checking test 038 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1843,14 +1843,14 @@ Checking test 038 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 183.650871 - 0: The maximum resident set size (KB) = 1589448 + 0: The total amount of wall time = 186.985556 + 0: The maximum resident set size (KB) = 1588404 Test 038 control_decomp_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_2threads_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/control_2threads_p8 Checking test 039 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1893,14 +1893,14 @@ Checking test 039 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 183.702617 - 0: The maximum resident set size (KB) = 1671776 + 0: The total amount of wall time = 183.326050 + 0: The maximum resident set size (KB) = 1687460 Test 039 control_2threads_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_rrtmgp -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_p8_rrtmgp +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/control_p8_rrtmgp Checking test 040 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1947,14 +1947,14 @@ Checking test 040 control_p8_rrtmgp results .... Comparing 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.514858 - 0: The maximum resident set size (KB) = 1662936 + 0: The total amount of wall time = 230.030659 + 0: The maximum resident set size (KB) = 1675320 Test 040 control_p8_rrtmgp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/merra2_thompson -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/merra2_thompson +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/merra2_thompson Checking test 041 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2001,14 +2001,14 @@ Checking test 041 merra2_thompson results .... Comparing 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.579596 - 0: The maximum resident set size (KB) = 1614064 + 0: The total amount of wall time = 191.111056 + 0: The maximum resident set size (KB) = 1619816 Test 041 merra2_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/regional_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/regional_control Checking test 042 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2019,28 +2019,28 @@ Checking test 042 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 297.204593 - 0: The maximum resident set size (KB) = 868720 + 0: The total amount of wall time = 297.581987 + 0: The maximum resident set size (KB) = 867340 Test 042 regional_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/regional_restart +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/regional_restart Checking test 043 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 152.589813 - 0: The maximum resident set size (KB) = 861284 + 0: The total amount of wall time = 152.970241 + 0: The maximum resident set size (KB) = 863180 Test 043 regional_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/regional_decomp +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/regional_decomp Checking test 044 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2051,14 +2051,14 @@ Checking test 044 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 313.646975 - 0: The maximum resident set size (KB) = 863112 + 0: The total amount of wall time = 332.791159 + 0: The maximum resident set size (KB) = 860260 Test 044 regional_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/regional_2threads +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/regional_2threads Checking test 045 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2069,14 +2069,14 @@ Checking test 045 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 208.455155 - 0: The maximum resident set size (KB) = 844692 + 0: The total amount of wall time = 211.811703 + 0: The maximum resident set size (KB) = 844300 Test 045 regional_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_noquilt -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/regional_noquilt +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/regional_noquilt Checking test 046 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2084,28 +2084,28 @@ Checking test 046 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 319.514060 - 0: The maximum resident set size (KB) = 859020 + 0: The total amount of wall time = 325.891773 + 0: The maximum resident set size (KB) = 858756 Test 046 regional_noquilt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_netcdf_parallel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/regional_netcdf_parallel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/regional_netcdf_parallel Checking test 047 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 291.599719 - 0: The maximum resident set size (KB) = 860236 + 0: The total amount of wall time = 305.542855 + 0: The maximum resident set size (KB) = 865668 Test 047 regional_netcdf_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/regional_2dwrtdecomp +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/regional_2dwrtdecomp Checking test 048 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2116,14 +2116,14 @@ Checking test 048 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 295.344020 - 0: The maximum resident set size (KB) = 866924 + 0: The total amount of wall time = 310.114756 + 0: The maximum resident set size (KB) = 869164 Test 048 regional_2dwrtdecomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/fv3_regional_wofs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/regional_wofs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/regional_wofs Checking test 049 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2134,14 +2134,14 @@ Checking test 049 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 373.768327 - 0: The maximum resident set size (KB) = 625900 + 0: The total amount of wall time = 411.815857 + 0: The maximum resident set size (KB) = 626512 Test 049 regional_wofs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rap_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/rap_control Checking test 050 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2188,14 +2188,14 @@ Checking test 050 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 457.653991 - 0: The maximum resident set size (KB) = 1065208 + 0: The total amount of wall time = 457.339748 + 0: The maximum resident set size (KB) = 1076816 Test 050 rap_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/regional_spp_sppt_shum_skeb +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/regional_spp_sppt_shum_skeb Checking test 051 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2206,14 +2206,14 @@ Checking test 051 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 321.957537 - 0: The maximum resident set size (KB) = 1184504 + 0: The total amount of wall time = 329.539614 + 0: The maximum resident set size (KB) = 1180392 Test 051 regional_spp_sppt_shum_skeb PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rap_decomp +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/rap_decomp Checking test 052 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2260,14 +2260,14 @@ Checking test 052 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 482.070741 - 0: The maximum resident set size (KB) = 1009684 + 0: The total amount of wall time = 479.388810 + 0: The maximum resident set size (KB) = 995048 Test 052 rap_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rap_2threads +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/rap_2threads Checking test 053 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2314,14 +2314,14 @@ Checking test 053 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 477.664028 - 0: The maximum resident set size (KB) = 1077992 + 0: The total amount of wall time = 477.546522 + 0: The maximum resident set size (KB) = 1136924 Test 053 rap_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rap_restart +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/rap_restart Checking test 054 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2360,14 +2360,14 @@ Checking test 054 rap_restart results .... Comparing 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.723761 - 0: The maximum resident set size (KB) = 975520 + 0: The total amount of wall time = 233.196019 + 0: The maximum resident set size (KB) = 969904 Test 054 rap_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rap_sfcdiff +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/rap_sfcdiff Checking test 055 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2414,14 +2414,14 @@ Checking test 055 rap_sfcdiff results .... Comparing 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.283552 - 0: The maximum resident set size (KB) = 1060944 + 0: The total amount of wall time = 449.220856 + 0: The maximum resident set size (KB) = 1069044 Test 055 rap_sfcdiff PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rap_sfcdiff_decomp +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/rap_sfcdiff_decomp Checking test 056 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2468,14 +2468,14 @@ Checking test 056 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 480.057175 - 0: The maximum resident set size (KB) = 1004216 + 0: The total amount of wall time = 479.288103 + 0: The maximum resident set size (KB) = 1011744 Test 056 rap_sfcdiff_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rap_sfcdiff_restart +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/rap_sfcdiff_restart Checking test 057 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2514,14 +2514,14 @@ Checking test 057 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 343.050675 - 0: The maximum resident set size (KB) = 992008 + 0: The total amount of wall time = 350.572131 + 0: The maximum resident set size (KB) = 996260 Test 057 rap_sfcdiff_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hrrr_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/hrrr_control Checking test 058 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2568,14 +2568,14 @@ Checking test 058 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 438.047975 - 0: The maximum resident set size (KB) = 1057812 + 0: The total amount of wall time = 433.538278 + 0: The maximum resident set size (KB) = 1056180 Test 058 hrrr_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hrrr_control_decomp +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/hrrr_control_decomp Checking test 059 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2622,14 +2622,14 @@ Checking test 059 hrrr_control_decomp results .... Comparing 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.856535 - 0: The maximum resident set size (KB) = 1005412 + 0: The total amount of wall time = 458.740284 + 0: The maximum resident set size (KB) = 1006356 Test 059 hrrr_control_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hrrr_control_2threads +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/hrrr_control_2threads Checking test 060 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2676,14 +2676,14 @@ Checking test 060 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 450.110256 - 0: The maximum resident set size (KB) = 1136408 + 0: The total amount of wall time = 450.920164 + 0: The maximum resident set size (KB) = 1128984 Test 060 hrrr_control_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hrrr_control_restart +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/hrrr_control_restart Checking test 061 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2722,14 +2722,14 @@ Checking test 061 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 330.433329 - 0: The maximum resident set size (KB) = 985356 + 0: The total amount of wall time = 352.895924 + 0: The maximum resident set size (KB) = 986220 Test 061 hrrr_control_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rrfs_v1beta +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/rrfs_v1beta Checking test 062 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2776,14 +2776,14 @@ Checking test 062 rrfs_v1beta results .... Comparing 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.981896 - 0: The maximum resident set size (KB) = 1060400 + 0: The total amount of wall time = 445.881210 + 0: The maximum resident set size (KB) = 1058412 Test 062 rrfs_v1beta PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rrfs_v1nssl +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/rrfs_v1nssl Checking test 063 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2798,14 +2798,14 @@ Checking test 063 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 531.605293 - 0: The maximum resident set size (KB) = 698508 + 0: The total amount of wall time = 526.319893 + 0: The maximum resident set size (KB) = 684612 Test 063 rrfs_v1nssl PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rrfs_v1nssl_nohailnoccn +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/rrfs_v1nssl_nohailnoccn Checking test 064 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2820,14 +2820,14 @@ Checking test 064 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 517.998233 - 0: The maximum resident set size (KB) = 759256 + 0: The total amount of wall time = 518.067749 + 0: The maximum resident set size (KB) = 753712 Test 064 rrfs_v1nssl_nohailnoccn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rrfs_conus13km_hrrr_warm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/rrfs_conus13km_hrrr_warm Checking test 065 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2836,14 +2836,14 @@ Checking test 065 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 123.189577 - 0: The maximum resident set size (KB) = 928972 + 0: The total amount of wall time = 122.853284 + 0: The maximum resident set size (KB) = 926420 Test 065 rrfs_conus13km_hrrr_warm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rrfs_smoke_conus13km_hrrr_warm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/rrfs_smoke_conus13km_hrrr_warm Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2852,14 +2852,14 @@ Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 139.668729 - 0: The maximum resident set size (KB) = 958700 + 0: The total amount of wall time = 139.014603 + 0: The maximum resident set size (KB) = 956172 Test 066 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rrfs_conus13km_radar_tten_warm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/rrfs_conus13km_radar_tten_warm Checking test 067 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2868,14 +2868,14 @@ Checking test 067 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 124.977149 - 0: The maximum resident set size (KB) = 935888 + 0: The total amount of wall time = 123.634997 + 0: The maximum resident set size (KB) = 932804 Test 067 rrfs_conus13km_radar_tten_warm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rrfs_conus13km_hrrr_warm_2threads +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/rrfs_conus13km_hrrr_warm_2threads Checking test 068 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2884,14 +2884,14 @@ Checking test 068 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 83.648323 - 0: The maximum resident set size (KB) = 837184 + 0: The total amount of wall time = 83.704508 + 0: The maximum resident set size (KB) = 843508 Test 068 rrfs_conus13km_hrrr_warm_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rrfs_conus13km_radar_tten_warm_2threads +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/rrfs_conus13km_radar_tten_warm_2threads Checking test 069 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2900,14 +2900,14 @@ Checking test 069 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 84.458841 - 0: The maximum resident set size (KB) = 851748 + 0: The total amount of wall time = 83.625425 + 0: The maximum resident set size (KB) = 854276 Test 069 rrfs_conus13km_radar_tten_warm_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_csawmg +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/control_csawmg Checking test 070 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2918,14 +2918,14 @@ Checking test 070 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 346.048433 - 0: The maximum resident set size (KB) = 725700 + 0: The total amount of wall time = 349.500489 + 0: The maximum resident set size (KB) = 725340 Test 070 control_csawmg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_csawmgt +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/control_csawmgt Checking test 071 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2936,14 +2936,14 @@ Checking test 071 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 341.126033 - 0: The maximum resident set size (KB) = 728624 + 0: The total amount of wall time = 348.364107 + 0: The maximum resident set size (KB) = 724032 Test 071 control_csawmgt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_ras +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/control_ras Checking test 072 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2954,26 +2954,26 @@ Checking test 072 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 182.242133 - 0: The maximum resident set size (KB) = 718552 + 0: The total amount of wall time = 203.785297 + 0: The maximum resident set size (KB) = 723124 Test 072 control_ras PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_wam +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/control_wam Checking test 073 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 112.397590 - 0: The maximum resident set size (KB) = 643200 + 0: The total amount of wall time = 115.835589 + 0: The maximum resident set size (KB) = 635632 Test 073 control_wam PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_faster -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_p8_faster +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/control_p8_faster Checking test 074 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3020,14 +3020,14 @@ Checking test 074 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 153.150096 - 0: The maximum resident set size (KB) = 1609760 + 0: The total amount of wall time = 171.773864 + 0: The maximum resident set size (KB) = 1614752 Test 074 control_p8_faster PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control_faster -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/regional_control_faster +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/regional_control_faster Checking test 075 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3038,42 +3038,42 @@ Checking test 075 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 269.830637 - 0: The maximum resident set size (KB) = 866992 + 0: The total amount of wall time = 281.069928 + 0: The maximum resident set size (KB) = 867544 Test 075 regional_control_faster PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rrfs_conus13km_hrrr_warm_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/rrfs_conus13km_hrrr_warm_debug Checking test 076 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 739.090999 - 0: The maximum resident set size (KB) = 959524 + 0: The total amount of wall time = 732.815440 + 0: The maximum resident set size (KB) = 958712 Test 076 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rrfs_conus13km_radar_tten_warm_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/rrfs_conus13km_radar_tten_warm_debug Checking test 077 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 719.570687 - 0: The maximum resident set size (KB) = 966840 + 0: The total amount of wall time = 747.099938 + 0: The maximum resident set size (KB) = 966708 Test 077 rrfs_conus13km_radar_tten_warm_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_CubedSphereGrid_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/control_CubedSphereGrid_debug Checking test 078 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3100,334 +3100,334 @@ Checking test 078 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 169.010078 - 0: The maximum resident set size (KB) = 793448 + 0: The total amount of wall time = 172.938137 + 0: The maximum resident set size (KB) = 800620 Test 078 control_CubedSphereGrid_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_wrtGauss_netcdf_parallel_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/control_wrtGauss_netcdf_parallel_debug Checking test 079 control_wrtGauss_netcdf_parallel_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 162.557313 - 0: The maximum resident set size (KB) = 798596 + 0: The total amount of wall time = 194.310081 + 0: The maximum resident set size (KB) = 795320 Test 079 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_stochy_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/control_stochy_debug Checking test 080 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 175.964536 - 0: The maximum resident set size (KB) = 802108 + 0: The total amount of wall time = 199.209653 + 0: The maximum resident set size (KB) = 802084 Test 080 control_stochy_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_lndp_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/control_lndp_debug Checking test 081 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 161.248328 - 0: The maximum resident set size (KB) = 801132 + 0: The total amount of wall time = 207.906057 + 0: The maximum resident set size (KB) = 795968 Test 081 control_lndp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_csawmg_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/control_csawmg_debug Checking test 082 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 240.414382 - 0: The maximum resident set size (KB) = 846868 + 0: The total amount of wall time = 251.712462 + 0: The maximum resident set size (KB) = 850332 Test 082 control_csawmg_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_csawmgt_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/control_csawmgt_debug Checking test 083 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 239.645950 - 0: The maximum resident set size (KB) = 847040 + 0: The total amount of wall time = 242.935519 + 0: The maximum resident set size (KB) = 846708 Test 083 control_csawmgt_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_ras_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/control_ras_debug Checking test 084 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 165.590790 - 0: The maximum resident set size (KB) = 803052 + 0: The total amount of wall time = 167.625901 + 0: The maximum resident set size (KB) = 809520 Test 084 control_ras_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_diag_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_diag_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/control_diag_debug Checking test 085 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 167.820936 - 0: The maximum resident set size (KB) = 854244 + 0: The total amount of wall time = 167.836146 + 0: The maximum resident set size (KB) = 851260 Test 085 control_diag_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_debug_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_debug_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/control_debug_p8 Checking test 086 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 179.263904 - 0: The maximum resident set size (KB) = 1619920 + 0: The total amount of wall time = 174.676677 + 0: The maximum resident set size (KB) = 1623820 Test 086 control_debug_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/regional_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/regional_debug Checking test 087 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1014.672642 - 0: The maximum resident set size (KB) = 888920 + 0: The total amount of wall time = 996.217106 + 0: The maximum resident set size (KB) = 892024 Test 087 regional_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rap_control_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/rap_control_debug Checking test 088 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 288.751190 - 0: The maximum resident set size (KB) = 1180684 + 0: The total amount of wall time = 287.348460 + 0: The maximum resident set size (KB) = 1176692 Test 088 rap_control_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hrrr_control_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/hrrr_control_debug Checking test 089 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 289.710554 - 0: The maximum resident set size (KB) = 1171656 + 0: The total amount of wall time = 283.350980 + 0: The maximum resident set size (KB) = 1174576 Test 089 hrrr_control_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rap_unified_drag_suite_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/rap_unified_drag_suite_debug Checking test 090 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 286.789141 - 0: The maximum resident set size (KB) = 1173348 + 0: The total amount of wall time = 283.192389 + 0: The maximum resident set size (KB) = 1173656 Test 090 rap_unified_drag_suite_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_diag_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rap_diag_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/rap_diag_debug Checking test 091 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 311.031375 - 0: The maximum resident set size (KB) = 1257472 + 0: The total amount of wall time = 312.923415 + 0: The maximum resident set size (KB) = 1258796 Test 091 rap_diag_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rap_cires_ugwp_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/rap_cires_ugwp_debug Checking test 092 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 294.786154 - 0: The maximum resident set size (KB) = 1183672 + 0: The total amount of wall time = 292.174905 + 0: The maximum resident set size (KB) = 1177676 Test 092 rap_cires_ugwp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rap_unified_ugwp_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/rap_unified_ugwp_debug Checking test 093 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 291.435893 - 0: The maximum resident set size (KB) = 1178520 + 0: The total amount of wall time = 292.733032 + 0: The maximum resident set size (KB) = 1170052 Test 093 rap_unified_ugwp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_lndp_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rap_lndp_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/rap_lndp_debug Checking test 094 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 290.023658 - 0: The maximum resident set size (KB) = 1177688 + 0: The total amount of wall time = 285.695072 + 0: The maximum resident set size (KB) = 1177168 Test 094 rap_lndp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_flake_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rap_flake_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/rap_flake_debug Checking test 095 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 293.602598 - 0: The maximum resident set size (KB) = 1156412 + 0: The total amount of wall time = 291.011794 + 0: The maximum resident set size (KB) = 1178068 Test 095 rap_flake_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_progcld_thompson_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rap_progcld_thompson_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/rap_progcld_thompson_debug Checking test 096 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 286.873424 - 0: The maximum resident set size (KB) = 1184440 + 0: The total amount of wall time = 289.919417 + 0: The maximum resident set size (KB) = 1179192 Test 096 rap_progcld_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rap_noah_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/rap_noah_debug Checking test 097 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 283.988170 - 0: The maximum resident set size (KB) = 1175180 + 0: The total amount of wall time = 280.208780 + 0: The maximum resident set size (KB) = 1174860 Test 097 rap_noah_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rap_sfcdiff_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/rap_sfcdiff_debug Checking test 098 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 294.077109 - 0: The maximum resident set size (KB) = 1172604 + 0: The total amount of wall time = 282.524558 + 0: The maximum resident set size (KB) = 1181496 Test 098 rap_sfcdiff_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/rap_noah_sfcdiff_cires_ugwp_debug Checking test 099 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 464.016705 - 0: The maximum resident set size (KB) = 1176716 + 0: The total amount of wall time = 462.825083 + 0: The maximum resident set size (KB) = 1177104 Test 099 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rrfs_v1beta_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/rrfs_v1beta_debug Checking test 100 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 282.285636 - 0: The maximum resident set size (KB) = 1168516 + 0: The total amount of wall time = 282.658364 + 0: The maximum resident set size (KB) = 1172700 Test 100 rrfs_v1beta_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_wam_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/control_wam_debug Checking test 101 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 288.209577 - 0: The maximum resident set size (KB) = 529924 + 0: The total amount of wall time = 294.149828 + 0: The maximum resident set size (KB) = 531360 Test 101 control_wam_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 102 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3438,14 +3438,14 @@ Checking test 102 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 303.718530 - 0: The maximum resident set size (KB) = 1083532 + 0: The total amount of wall time = 302.449041 + 0: The maximum resident set size (KB) = 1071248 Test 102 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rap_control_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/rap_control_dyn32_phy32 Checking test 103 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3492,14 +3492,14 @@ Checking test 103 rap_control_dyn32_phy32 results .... Comparing 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.734356 - 0: The maximum resident set size (KB) = 997740 + 0: The total amount of wall time = 373.058320 + 0: The maximum resident set size (KB) = 1000548 Test 103 rap_control_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hrrr_control_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/hrrr_control_dyn32_phy32 Checking test 104 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3546,14 +3546,14 @@ Checking test 104 hrrr_control_dyn32_phy32 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 = 195.380344 - 0: The maximum resident set size (KB) = 954568 + 0: The total amount of wall time = 194.093742 + 0: The maximum resident set size (KB) = 949928 Test 104 hrrr_control_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rap_2threads_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/rap_2threads_dyn32_phy32 Checking test 105 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3600,14 +3600,14 @@ Checking test 105 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 389.840670 - 0: The maximum resident set size (KB) = 1021344 + 0: The total amount of wall time = 393.462321 + 0: The maximum resident set size (KB) = 1025076 Test 105 rap_2threads_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hrrr_control_2threads_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/hrrr_control_2threads_dyn32_phy32 Checking test 106 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3654,14 +3654,14 @@ Checking test 106 hrrr_control_2threads_dyn32_phy32 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 = 210.069105 - 0: The maximum resident set size (KB) = 1009884 + 0: The total amount of wall time = 209.374085 + 0: The maximum resident set size (KB) = 1012828 Test 106 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hrrr_control_decomp_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/hrrr_control_decomp_dyn32_phy32 Checking test 107 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3708,14 +3708,14 @@ Checking test 107 hrrr_control_decomp_dyn32_phy32 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 = 206.743338 - 0: The maximum resident set size (KB) = 889264 + 0: The total amount of wall time = 205.468156 + 0: The maximum resident set size (KB) = 911768 Test 107 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rap_restart_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/rap_restart_dyn32_phy32 Checking test 108 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3754,14 +3754,14 @@ Checking test 108 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 282.681645 - 0: The maximum resident set size (KB) = 956216 + 0: The total amount of wall time = 281.265910 + 0: The maximum resident set size (KB) = 947560 Test 108 rap_restart_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hrrr_control_restart_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/hrrr_control_restart_dyn32_phy32 Checking test 109 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3800,14 +3800,14 @@ Checking test 109 hrrr_control_restart_dyn32_phy32 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 = 100.615237 - 0: The maximum resident set size (KB) = 875144 + 0: The total amount of wall time = 102.342493 + 0: The maximum resident set size (KB) = 819652 Test 109 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn64_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rap_control_dyn64_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/rap_control_dyn64_phy32 Checking test 110 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3854,81 +3854,81 @@ Checking test 110 rap_control_dyn64_phy32 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 = 238.540791 - 0: The maximum resident set size (KB) = 915504 + 0: The total amount of wall time = 241.056572 + 0: The maximum resident set size (KB) = 962108 Test 110 rap_control_dyn64_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rap_control_debug_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/rap_control_debug_dyn32_phy32 Checking test 111 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 293.756395 - 0: The maximum resident set size (KB) = 1059384 + 0: The total amount of wall time = 278.229695 + 0: The maximum resident set size (KB) = 1058940 Test 111 rap_control_debug_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hrrr_control_debug_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/hrrr_control_debug_dyn32_phy32 Checking test 112 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 295.266519 - 0: The maximum resident set size (KB) = 1055840 + 0: The total amount of wall time = 280.073977 + 0: The maximum resident set size (KB) = 1062624 Test 112 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn64_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/rap_control_dyn64_phy32_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/rap_control_dyn64_phy32_debug Checking test 113 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 291.774015 - 0: The maximum resident set size (KB) = 1106460 + 0: The total amount of wall time = 298.037508 + 0: The maximum resident set size (KB) = 1107888 Test 113 rap_control_dyn64_phy32_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hafs_regional_atm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/hafs_regional_atm Checking test 114 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 280.242764 - 0: The maximum resident set size (KB) = 1056228 + 0: The total amount of wall time = 270.623784 + 0: The maximum resident set size (KB) = 1056104 Test 114 hafs_regional_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hafs_regional_atm_thompson_gfdlsf +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/hafs_regional_atm_thompson_gfdlsf Checking test 115 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 433.675499 - 0: The maximum resident set size (KB) = 1349876 + 0: The total amount of wall time = 431.317355 + 0: The maximum resident set size (KB) = 1423376 Test 115 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hafs_regional_atm_ocn +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/hafs_regional_atm_ocn Checking test 116 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3937,14 +3937,14 @@ Checking test 116 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 382.534362 - 0: The maximum resident set size (KB) = 1223896 + 0: The total amount of wall time = 379.595390 + 0: The maximum resident set size (KB) = 1232136 Test 116 hafs_regional_atm_ocn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_wav -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hafs_regional_atm_wav +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/hafs_regional_atm_wav Checking test 117 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3953,14 +3953,14 @@ Checking test 117 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 731.606663 - 0: The maximum resident set size (KB) = 1257284 + 0: The total amount of wall time = 735.660915 + 0: The maximum resident set size (KB) = 1253828 -Test 117 hafs_regional_atm_wav PASS Tries: 2 +Test 117 hafs_regional_atm_wav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn_wav -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hafs_regional_atm_ocn_wav +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/hafs_regional_atm_ocn_wav Checking test 118 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3971,28 +3971,28 @@ Checking test 118 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 831.753526 - 0: The maximum resident set size (KB) = 1283764 + 0: The total amount of wall time = 833.888551 + 0: The maximum resident set size (KB) = 1285348 Test 118 hafs_regional_atm_ocn_wav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_1nest_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hafs_regional_1nest_atm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/hafs_regional_1nest_atm Checking test 119 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 380.484114 - 0: The maximum resident set size (KB) = 508560 + 0: The total amount of wall time = 368.940570 + 0: The maximum resident set size (KB) = 513212 Test 119 hafs_regional_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hafs_regional_telescopic_2nests_atm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/hafs_regional_telescopic_2nests_atm Checking test 120 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4001,28 +4001,28 @@ Checking test 120 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 430.397342 - 0: The maximum resident set size (KB) = 517968 + 0: The total amount of wall time = 420.590108 + 0: The maximum resident set size (KB) = 517436 Test 120 hafs_regional_telescopic_2nests_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_1nest_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hafs_global_1nest_atm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/hafs_global_1nest_atm Checking test 121 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 173.181677 - 0: The maximum resident set size (KB) = 357368 + 0: The total amount of wall time = 178.199974 + 0: The maximum resident set size (KB) = 355124 Test 121 hafs_global_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_multiple_4nests_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hafs_global_multiple_4nests_atm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/hafs_global_multiple_4nests_atm Checking test 122 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4040,14 +4040,14 @@ Checking test 122 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 477.381633 - 0: The maximum resident set size (KB) = 430344 + 0: The total amount of wall time = 474.207758 + 0: The maximum resident set size (KB) = 425852 Test 122 hafs_global_multiple_4nests_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hafs_regional_specified_moving_1nest_atm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/hafs_regional_specified_moving_1nest_atm Checking test 123 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4056,28 +4056,28 @@ Checking test 123 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 230.918846 - 0: The maximum resident set size (KB) = 521092 + 0: The total amount of wall time = 229.865983 + 0: The maximum resident set size (KB) = 518320 Test 123 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hafs_regional_storm_following_1nest_atm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/hafs_regional_storm_following_1nest_atm Checking test 124 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 216.938381 - 0: The maximum resident set size (KB) = 519768 + 0: The total amount of wall time = 218.774814 + 0: The maximum resident set size (KB) = 516672 Test 124 hafs_regional_storm_following_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hafs_regional_storm_following_1nest_atm_ocn +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/hafs_regional_storm_following_1nest_atm_ocn Checking test 125 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4086,42 +4086,42 @@ Checking test 125 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 288.779888 - 0: The maximum resident set size (KB) = 558040 + 0: The total amount of wall time = 290.967009 + 0: The maximum resident set size (KB) = 552372 Test 125 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_storm_following_1nest_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hafs_global_storm_following_1nest_atm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/hafs_global_storm_following_1nest_atm Checking test 126 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 68.897061 - 0: The maximum resident set size (KB) = 369628 + 0: The total amount of wall time = 69.041653 + 0: The maximum resident set size (KB) = 374304 Test 126 hafs_global_storm_following_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 127 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 820.020168 - 0: The maximum resident set size (KB) = 583340 + 0: The total amount of wall time = 803.185924 + 0: The maximum resident set size (KB) = 582904 Test 127 hafs_regional_storm_following_1nest_atm_ocn_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 128 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4132,14 +4132,14 @@ Checking test 128 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 576.743766 - 0: The maximum resident set size (KB) = 620516 + 0: The total amount of wall time = 580.096431 + 0: The maximum resident set size (KB) = 620688 Test 128 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_docn -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hafs_regional_docn +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/hafs_regional_docn Checking test 129 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4147,14 +4147,14 @@ Checking test 129 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 357.658349 - 0: The maximum resident set size (KB) = 1230472 + 0: The total amount of wall time = 362.668043 + 0: The maximum resident set size (KB) = 1227888 Test 129 hafs_regional_docn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_docn_oisst -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hafs_regional_docn_oisst +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/hafs_regional_docn_oisst Checking test 130 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4162,131 +4162,131 @@ Checking test 130 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 366.120533 - 0: The maximum resident set size (KB) = 1217200 + 0: The total amount of wall time = 363.598729 + 0: The maximum resident set size (KB) = 1223992 Test 130 hafs_regional_docn_oisst PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_datm_cdeps -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/hafs_regional_datm_cdeps +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/hafs_regional_datm_cdeps Checking test 131 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 935.267076 - 0: The maximum resident set size (KB) = 1039456 + 0: The total amount of wall time = 926.312455 + 0: The maximum resident set size (KB) = 1038444 Test 131 hafs_regional_datm_cdeps PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/datm_cdeps_control_cfsr +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/datm_cdeps_control_cfsr Checking test 132 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 145.871764 - 0: The maximum resident set size (KB) = 1079360 + 0: The total amount of wall time = 146.532640 + 0: The maximum resident set size (KB) = 1054888 Test 132 datm_cdeps_control_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/datm_cdeps_restart_cfsr +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/datm_cdeps_restart_cfsr Checking test 133 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.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.774618 - 0: The maximum resident set size (KB) = 1041124 + 0: The total amount of wall time = 93.221768 + 0: The maximum resident set size (KB) = 1028132 Test 133 datm_cdeps_restart_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_gefs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/datm_cdeps_control_gefs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/datm_cdeps_control_gefs Checking test 134 datm_cdeps_control_gefs 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.127427 - 0: The maximum resident set size (KB) = 969244 + 0: The total amount of wall time = 146.349514 + 0: The maximum resident set size (KB) = 970872 Test 134 datm_cdeps_control_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_iau_gefs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/datm_cdeps_iau_gefs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/datm_cdeps_iau_gefs Checking test 135 datm_cdeps_iau_gefs 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.119028 - 0: The maximum resident set size (KB) = 936820 + 0: The total amount of wall time = 148.634726 + 0: The maximum resident set size (KB) = 952916 Test 135 datm_cdeps_iau_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_stochy_gefs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/datm_cdeps_stochy_gefs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/datm_cdeps_stochy_gefs Checking test 136 datm_cdeps_stochy_gefs 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.191597 - 0: The maximum resident set size (KB) = 959692 + 0: The total amount of wall time = 147.078022 + 0: The maximum resident set size (KB) = 973420 Test 136 datm_cdeps_stochy_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_ciceC_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/datm_cdeps_ciceC_cfsr +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/datm_cdeps_ciceC_cfsr Checking test 137 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.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.569433 - 0: The maximum resident set size (KB) = 1047180 + 0: The total amount of wall time = 145.556732 + 0: The maximum resident set size (KB) = 1072812 Test 137 datm_cdeps_ciceC_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_bulk_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/datm_cdeps_bulk_cfsr +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/datm_cdeps_bulk_cfsr Checking test 138 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.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.675674 - 0: The maximum resident set size (KB) = 1066228 + 0: The total amount of wall time = 147.583678 + 0: The maximum resident set size (KB) = 1060472 Test 138 datm_cdeps_bulk_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_bulk_gefs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/datm_cdeps_bulk_gefs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/datm_cdeps_bulk_gefs Checking test 139 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.264964 - 0: The maximum resident set size (KB) = 966124 + 0: The total amount of wall time = 149.125279 + 0: The maximum resident set size (KB) = 966244 Test 139 datm_cdeps_bulk_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_mx025_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/datm_cdeps_mx025_cfsr +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/datm_cdeps_mx025_cfsr Checking test 140 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4295,14 +4295,14 @@ Checking test 140 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 443.856489 - 0: The maximum resident set size (KB) = 872496 + 0: The total amount of wall time = 440.613326 + 0: The maximum resident set size (KB) = 877336 Test 140 datm_cdeps_mx025_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_mx025_gefs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/datm_cdeps_mx025_gefs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/datm_cdeps_mx025_gefs Checking test 141 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4311,77 +4311,77 @@ Checking test 141 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 443.348798 - 0: The maximum resident set size (KB) = 910976 + 0: The total amount of wall time = 440.647431 + 0: The maximum resident set size (KB) = 935308 Test 141 datm_cdeps_mx025_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/datm_cdeps_multiple_files_cfsr +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/datm_cdeps_multiple_files_cfsr Checking test 142 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.927760 - 0: The maximum resident set size (KB) = 1058880 + 0: The total amount of wall time = 145.980791 + 0: The maximum resident set size (KB) = 1059032 Test 142 datm_cdeps_multiple_files_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/datm_cdeps_3072x1536_cfsr +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/datm_cdeps_3072x1536_cfsr Checking test 143 datm_cdeps_3072x1536_cfsr 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 = 195.047290 - 0: The maximum resident set size (KB) = 2361368 + 0: The total amount of wall time = 195.506567 + 0: The maximum resident set size (KB) = 2359636 Test 143 datm_cdeps_3072x1536_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_gfs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/datm_cdeps_gfs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/datm_cdeps_gfs Checking test 144 datm_cdeps_gfs 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 = 201.041267 - 0: The maximum resident set size (KB) = 2361728 + 0: The total amount of wall time = 203.244309 + 0: The maximum resident set size (KB) = 2315148 Test 144 datm_cdeps_gfs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_debug_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/datm_cdeps_debug_cfsr +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/datm_cdeps_debug_cfsr Checking test 145 datm_cdeps_debug_cfsr 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 = 443.877181 - 0: The maximum resident set size (KB) = 992148 + 0: The total amount of wall time = 440.268453 + 0: The maximum resident set size (KB) = 1005856 Test 145 datm_cdeps_debug_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr_faster -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/datm_cdeps_control_cfsr_faster +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/datm_cdeps_control_cfsr_faster Checking test 146 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 153.107633 - 0: The maximum resident set size (KB) = 1053420 + 0: The total amount of wall time = 146.852347 + 0: The maximum resident set size (KB) = 1062520 Test 146 datm_cdeps_control_cfsr_faster PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_lnd_gswp3 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/datm_cdeps_lnd_gswp3 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/datm_cdeps_lnd_gswp3 Checking test 147 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4390,14 +4390,14 @@ Checking test 147 datm_cdeps_lnd_gswp3 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.254620 - 0: The maximum resident set size (KB) = 228768 + 0: The total amount of wall time = 13.455687 + 0: The maximum resident set size (KB) = 262532 Test 147 datm_cdeps_lnd_gswp3 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_lnd_gswp3 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/datm_cdeps_lnd_gswp3_rst +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/datm_cdeps_lnd_gswp3_rst Checking test 148 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4406,14 +4406,14 @@ Checking test 148 datm_cdeps_lnd_gswp3_rst 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.579523 - 0: The maximum resident set size (KB) = 270964 + 0: The total amount of wall time = 13.524351 + 0: The maximum resident set size (KB) = 264508 Test 148 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_atmlnd_sbs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_p8_atmlnd_sbs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/control_p8_atmlnd_sbs Checking test 149 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4498,14 +4498,14 @@ Checking test 149 control_p8_atmlnd_sbs 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 = 206.029420 - 0: The maximum resident set size (KB) = 1567876 + 0: The total amount of wall time = 205.675384 + 0: The maximum resident set size (KB) = 1619324 Test 149 control_p8_atmlnd_sbs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_atmwav -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/control_atmwav +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/control_atmwav Checking test 150 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4549,14 +4549,14 @@ Checking test 150 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 91.820514 - 0: The maximum resident set size (KB) = 662936 + 0: The total amount of wall time = 87.720797 + 0: The maximum resident set size (KB) = 656444 Test 150 control_atmwav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/atmaero_control_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/atmaero_control_p8 Checking test 151 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4600,14 +4600,14 @@ Checking test 151 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 234.432876 - 0: The maximum resident set size (KB) = 2977492 + 0: The total amount of wall time = 230.185173 + 0: The maximum resident set size (KB) = 2970196 Test 151 atmaero_control_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/atmaero_control_p8_rad +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/atmaero_control_p8_rad Checking test 152 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4651,14 +4651,14 @@ Checking test 152 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 299.760497 - 0: The maximum resident set size (KB) = 3046072 + 0: The total amount of wall time = 282.081174 + 0: The maximum resident set size (KB) = 3046172 Test 152 atmaero_control_p8_rad PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad_micro -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/atmaero_control_p8_rad_micro +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/atmaero_control_p8_rad_micro Checking test 153 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4702,14 +4702,14 @@ Checking test 153 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 290.425035 - 0: The maximum resident set size (KB) = 3055224 + 0: The total amount of wall time = 284.873711 + 0: The maximum resident set size (KB) = 3056048 Test 153 atmaero_control_p8_rad_micro PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/regional_atmaq +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/regional_atmaq Checking test 154 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4725,14 +4725,14 @@ Checking test 154 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 579.879275 - 0: The maximum resident set size (KB) = 1584244 + 0: The total amount of wall time = 579.802721 + 0: The maximum resident set size (KB) = 1561524 Test 154 regional_atmaq PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/regional_atmaq_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/regional_atmaq_debug Checking test 155 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4746,14 +4746,14 @@ Checking test 155 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1333.988149 - 0: The maximum resident set size (KB) = 1519516 + 0: The total amount of wall time = 1325.187042 + 0: The maximum resident set size (KB) = 1520972 Test 155 regional_atmaq_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq_faster -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_82868/regional_atmaq_faster +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/regional_atmaq_faster Checking test 156 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4769,12 +4769,12 @@ Checking test 156 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 566.801868 - 0: The maximum resident set size (KB) = 1574588 + 0: The total amount of wall time = 556.918778 + 0: The maximum resident set size (KB) = 1537104 Test 156 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Wed Mar 8 20:38:32 CST 2023 -Elapsed time: 08h:05m:45s. Have a nice day! +Fri Mar 10 13:40:38 CST 2023 +Elapsed time: 05h:23m:42s. Have a nice day! diff --git a/tests/RegressionTests_wcoss2.intel.log b/tests/RegressionTests_wcoss2.intel.log index 7f67d42102b..0a40fcadbca 100644 --- a/tests/RegressionTests_wcoss2.intel.log +++ b/tests/RegressionTests_wcoss2.intel.log @@ -1,34 +1,34 @@ -Thu Mar 9 13:45:30 UTC 2023 +Fri Mar 10 03:02:26 UTC 2023 Start Regression test -Compile 001 elapsed time 860 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 1117 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 658 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 1172 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 005 elapsed time 738 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 683 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 1274 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 008 elapsed time 679 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 1472 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 610 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 588 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 585 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 005 elapsed time 502 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 653 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 1623 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 1427 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile 009 elapsed time 998 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 447 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 645 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 347 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 013 elapsed time 562 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 1249 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 015 elapsed time 617 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 458 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 017 elapsed time 823 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 757 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 019 elapsed time 884 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 729 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 845 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 022 elapsed time 601 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 1021 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 024 elapsed time 222 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 025 elapsed time 769 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 928 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 597 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 200 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 237 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 014 elapsed time 733 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 887 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 710 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 017 elapsed time 420 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 1043 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 019 elapsed time 491 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 724 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 1025 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 022 elapsed time 821 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 514 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 024 elapsed time 253 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 025 elapsed time 619 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_mixedmode -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/cpld_control_p8_mixedmode +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -93,14 +93,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 362.142103 -The maximum resident set size (KB) = 2952680 +The total amount of wall time = 353.017283 +The maximum resident set size (KB) = 2953520 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/cpld_control_p8 Checking test 002 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -165,14 +165,14 @@ Checking test 002 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 392.241909 -The maximum resident set size (KB) = 2981036 +The total amount of wall time = 391.893450 +The maximum resident set size (KB) = 2980920 Test 002 cpld_control_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/cpld_restart_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/cpld_restart_p8 Checking test 003 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -225,14 +225,14 @@ Checking test 003 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 241.240218 -The maximum resident set size (KB) = 2868812 +The total amount of wall time = 274.567953 +The maximum resident set size (KB) = 2865964 Test 003 cpld_restart_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/cpld_2threads_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/cpld_2threads_p8 Checking test 004 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -285,14 +285,14 @@ Checking test 004 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 378.339197 -The maximum resident set size (KB) = 3283560 +The total amount of wall time = 376.395979 +The maximum resident set size (KB) = 3285764 Test 004 cpld_2threads_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/cpld_decomp_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/cpld_decomp_p8 Checking test 005 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -345,14 +345,14 @@ Checking test 005 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 423.706431 -The maximum resident set size (KB) = 2979020 +The total amount of wall time = 385.024297 +The maximum resident set size (KB) = 2978556 Test 005 cpld_decomp_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/cpld_mpi_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/cpld_mpi_p8 Checking test 006 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -405,14 +405,14 @@ Checking test 006 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 324.354572 -The maximum resident set size (KB) = 2907316 +The total amount of wall time = 325.100644 +The maximum resident set size (KB) = 2911432 Test 006 cpld_mpi_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_ciceC_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/cpld_control_ciceC_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/cpld_control_ciceC_p8 Checking test 007 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -477,14 +477,14 @@ Checking test 007 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 402.469785 -The maximum resident set size (KB) = 2980864 +The total amount of wall time = 394.784355 +The maximum resident set size (KB) = 2980304 Test 007 cpld_control_ciceC_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_bmark_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/cpld_bmark_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/cpld_bmark_p8 Checking test 008 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -532,14 +532,14 @@ Checking test 008 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 963.019940 -The maximum resident set size (KB) = 3919688 +The total amount of wall time = 958.439600 +The maximum resident set size (KB) = 3920468 Test 008 cpld_bmark_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_bmark_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/cpld_restart_bmark_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/cpld_restart_bmark_p8 Checking test 009 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -587,14 +587,14 @@ Checking test 009 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 870.981410 -The maximum resident set size (KB) = 3892556 +The total amount of wall time = 652.605866 +The maximum resident set size (KB) = 3890436 Test 009 cpld_restart_bmark_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/cpld_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/cpld_control_noaero_p8 Checking test 010 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -658,14 +658,14 @@ Checking test 010 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 303.115183 -The maximum resident set size (KB) = 1571440 +The total amount of wall time = 289.522173 +The maximum resident set size (KB) = 1577836 Test 010 cpld_control_noaero_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/cpld_control_nowave_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/cpld_control_nowave_noaero_p8 Checking test 011 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -727,14 +727,14 @@ Checking test 011 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 307.101819 -The maximum resident set size (KB) = 1630984 +The total amount of wall time = 302.130768 +The maximum resident set size (KB) = 1620940 Test 011 cpld_control_nowave_noaero_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/cpld_control_noaero_p8_agrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/cpld_control_noaero_p8_agrid Checking test 012 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -796,14 +796,14 @@ Checking test 012 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 339.804584 -The maximum resident set size (KB) = 1629472 +The total amount of wall time = 310.868755 +The maximum resident set size (KB) = 1621296 Test 012 cpld_control_noaero_p8_agrid PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/cpld_control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/cpld_control_c48 Checking test 013 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -853,14 +853,14 @@ Checking test 013 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 439.904798 -The maximum resident set size (KB) = 2632224 +The total amount of wall time = 438.064865 +The maximum resident set size (KB) = 2632292 Test 013 cpld_control_c48 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/cpld_warmstart_c48 Checking test 014 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -910,14 +910,14 @@ Checking test 014 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 144.523729 -The maximum resident set size (KB) = 2656924 +The total amount of wall time = 129.693859 +The maximum resident set size (KB) = 2648600 Test 014 cpld_warmstart_c48 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/cpld_restart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/cpld_restart_c48 Checking test 015 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -967,14 +967,14 @@ Checking test 015 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 71.903785 -The maximum resident set size (KB) = 2065100 +The total amount of wall time = 73.216754 +The maximum resident set size (KB) = 2064072 Test 015 cpld_restart_c48 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/cpld_control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/cpld_control_p8_faster Checking test 016 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1039,14 +1039,14 @@ Checking test 016 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 424.862194 -The maximum resident set size (KB) = 2983928 +The total amount of wall time = 383.542321 +The maximum resident set size (KB) = 2984144 Test 016 cpld_control_p8_faster PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_CubedSphereGrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/control_CubedSphereGrid Checking test 017 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1073,14 +1073,14 @@ Checking test 017 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 138.786213 -The maximum resident set size (KB) = 515440 +The total amount of wall time = 138.900316 +The maximum resident set size (KB) = 513992 Test 017 control_CubedSphereGrid PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_latlon -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_latlon +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/control_latlon Checking test 018 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1091,14 +1091,14 @@ Checking test 018 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 132.898635 -The maximum resident set size (KB) = 523136 +The total amount of wall time = 144.914020 +The maximum resident set size (KB) = 519420 Test 018 control_latlon PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_wrtGauss_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/control_wrtGauss_netcdf_parallel Checking test 019 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1109,14 +1109,14 @@ Checking test 019 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.525354 -The maximum resident set size (KB) = 520720 +The total amount of wall time = 144.740795 +The maximum resident set size (KB) = 518000 Test 019 control_wrtGauss_netcdf_parallel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/control_c48 Checking test 020 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1155,14 +1155,14 @@ Checking test 020 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 325.319327 -The maximum resident set size (KB) = 675520 +The total amount of wall time = 331.200776 +The maximum resident set size (KB) = 675516 Test 020 control_c48 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c192 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_c192 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/control_c192 Checking test 021 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1173,14 +1173,14 @@ Checking test 021 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 571.266956 -The maximum resident set size (KB) = 618204 +The total amount of wall time = 571.412096 +The maximum resident set size (KB) = 616640 Test 021 control_c192 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_c384 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/control_c384 Checking test 022 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1191,14 +1191,14 @@ Checking test 022 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 576.326316 -The maximum resident set size (KB) = 907048 +The total amount of wall time = 583.419399 +The maximum resident set size (KB) = 912640 Test 022 control_c384 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384gdas -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_c384gdas +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/control_c384gdas Checking test 023 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1241,14 +1241,14 @@ Checking test 023 control_c384gdas results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 515.405312 -The maximum resident set size (KB) = 1043084 +The total amount of wall time = 504.159417 +The maximum resident set size (KB) = 1044184 Test 023 control_c384gdas PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/control_stochy Checking test 024 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1259,28 +1259,28 @@ Checking test 024 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 90.625576 -The maximum resident set size (KB) = 518180 +The total amount of wall time = 98.251320 +The maximum resident set size (KB) = 521444 Test 024 control_stochy PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_stochy_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/control_stochy_restart Checking test 025 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 49.595628 -The maximum resident set size (KB) = 288260 +The total amount of wall time = 48.763294 +The maximum resident set size (KB) = 288308 Test 025 control_stochy_restart PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/control_lndp Checking test 026 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1291,14 +1291,14 @@ Checking test 026 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 86.571039 -The maximum resident set size (KB) = 522568 +The total amount of wall time = 92.513012 +The maximum resident set size (KB) = 522420 Test 026 control_lndp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr4 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_iovr4 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/control_iovr4 Checking test 027 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1313,14 +1313,14 @@ Checking test 027 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 137.539233 -The maximum resident set size (KB) = 516180 +The total amount of wall time = 145.969101 +The maximum resident set size (KB) = 520380 Test 027 control_iovr4 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr5 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_iovr5 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/control_iovr5 Checking test 028 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1335,14 +1335,14 @@ Checking test 028 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 137.946646 -The maximum resident set size (KB) = 517988 +The total amount of wall time = 178.270664 +The maximum resident set size (KB) = 519640 Test 028 control_iovr5 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/control_p8 Checking test 029 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1389,14 +1389,14 @@ Checking test 029 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 188.958497 -The maximum resident set size (KB) = 1487108 +The total amount of wall time = 181.920498 +The maximum resident set size (KB) = 1490108 Test 029 control_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_p8_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/control_p8_lndp Checking test 030 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1415,14 +1415,14 @@ Checking test 030 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 329.002509 -The maximum resident set size (KB) = 1492884 +The total amount of wall time = 341.046551 +The maximum resident set size (KB) = 1490140 Test 030 control_p8_lndp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_restart_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/control_restart_p8 Checking test 031 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1461,14 +1461,14 @@ Checking test 031 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 101.240753 -The maximum resident set size (KB) = 662780 +The total amount of wall time = 101.445039 +The maximum resident set size (KB) = 657088 Test 031 control_restart_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_decomp_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/control_decomp_p8 Checking test 032 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1511,14 +1511,14 @@ Checking test 032 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 191.159701 -The maximum resident set size (KB) = 1479388 +The total amount of wall time = 184.569183 +The maximum resident set size (KB) = 1481452 Test 032 control_decomp_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_2threads_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/control_2threads_p8 Checking test 033 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1561,14 +1561,14 @@ Checking test 033 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 166.584832 -The maximum resident set size (KB) = 1567232 +The total amount of wall time = 161.974463 +The maximum resident set size (KB) = 1569212 Test 033 control_2threads_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_rrtmgp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_p8_rrtmgp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/control_p8_rrtmgp Checking test 034 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1615,14 +1615,14 @@ Checking test 034 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 238.953402 -The maximum resident set size (KB) = 1555660 +The total amount of wall time = 236.528803 +The maximum resident set size (KB) = 1547276 Test 034 control_p8_rrtmgp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/merra2_thompson -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/merra2_thompson +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/merra2_thompson Checking test 035 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1669,14 +1669,14 @@ Checking test 035 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 209.638069 -The maximum resident set size (KB) = 1494612 +The total amount of wall time = 206.820339 +The maximum resident set size (KB) = 1493836 Test 035 merra2_thompson PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/regional_control Checking test 036 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1687,28 +1687,28 @@ Checking test 036 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 296.692151 -The maximum resident set size (KB) = 655920 +The total amount of wall time = 291.979999 +The maximum resident set size (KB) = 656580 Test 036 regional_control PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/regional_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/regional_restart Checking test 037 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 159.969823 -The maximum resident set size (KB) = 653436 +The total amount of wall time = 160.694496 +The maximum resident set size (KB) = 653216 Test 037 regional_restart PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/regional_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/regional_decomp Checking test 038 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1719,14 +1719,14 @@ Checking test 038 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 328.084744 -The maximum resident set size (KB) = 654592 +The total amount of wall time = 311.036129 +The maximum resident set size (KB) = 654988 Test 038 regional_decomp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/regional_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/regional_2threads Checking test 039 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1737,14 +1737,14 @@ Checking test 039 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 188.230872 -The maximum resident set size (KB) = 696824 +The total amount of wall time = 181.889515 +The maximum resident set size (KB) = 703076 Test 039 regional_2threads PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_noquilt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/regional_noquilt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/regional_noquilt Checking test 040 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1752,28 +1752,28 @@ Checking test 040 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 316.879531 -The maximum resident set size (KB) = 644896 +The total amount of wall time = 321.409898 +The maximum resident set size (KB) = 648352 Test 040 regional_noquilt PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/regional_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/regional_netcdf_parallel Checking test 041 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK -The total amount of wall time = 292.242911 -The maximum resident set size (KB) = 652476 +The total amount of wall time = 291.846844 +The maximum resident set size (KB) = 651908 Test 041 regional_netcdf_parallel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/regional_2dwrtdecomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/regional_2dwrtdecomp Checking test 042 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1784,14 +1784,14 @@ Checking test 042 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 292.660805 -The maximum resident set size (KB) = 656328 +The total amount of wall time = 292.869766 +The maximum resident set size (KB) = 657540 Test 042 regional_2dwrtdecomp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/fv3_regional_wofs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/regional_wofs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/regional_wofs Checking test 043 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1802,14 +1802,14 @@ Checking test 043 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 364.628122 -The maximum resident set size (KB) = 343764 +The total amount of wall time = 366.443014 +The maximum resident set size (KB) = 342196 Test 043 regional_wofs PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/rap_control Checking test 044 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1856,14 +1856,14 @@ Checking test 044 rap_control results .... 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.826594 -The maximum resident set size (KB) = 894828 +The total amount of wall time = 421.151552 +The maximum resident set size (KB) = 894680 Test 044 rap_control PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/regional_spp_sppt_shum_skeb +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/regional_spp_sppt_shum_skeb Checking test 045 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -1874,14 +1874,14 @@ Checking test 045 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 297.982772 -The maximum resident set size (KB) = 988780 +The total amount of wall time = 287.623122 +The maximum resident set size (KB) = 993656 Test 045 regional_spp_sppt_shum_skeb PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rap_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/rap_decomp Checking test 046 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1928,14 +1928,14 @@ Checking test 046 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 437.867597 -The maximum resident set size (KB) = 894580 +The total amount of wall time = 438.075151 +The maximum resident set size (KB) = 893852 Test 046 rap_decomp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rap_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/rap_2threads Checking test 047 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1982,14 +1982,14 @@ Checking test 047 rap_2threads results .... 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.916992 -The maximum resident set size (KB) = 966752 +The total amount of wall time = 396.569559 +The maximum resident set size (KB) = 961032 Test 047 rap_2threads PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rap_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/rap_restart Checking test 048 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2028,14 +2028,14 @@ Checking test 048 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 215.058449 -The maximum resident set size (KB) = 644872 +The total amount of wall time = 214.078490 +The maximum resident set size (KB) = 647392 Test 048 rap_restart PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/rap_sfcdiff Checking test 049 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2082,14 +2082,14 @@ Checking test 049 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 418.650350 -The maximum resident set size (KB) = 895308 +The total amount of wall time = 421.993222 +The maximum resident set size (KB) = 893988 Test 049 rap_sfcdiff PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rap_sfcdiff_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/rap_sfcdiff_decomp Checking test 050 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2136,14 +2136,14 @@ Checking test 050 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 474.194830 -The maximum resident set size (KB) = 893624 +The total amount of wall time = 437.198324 +The maximum resident set size (KB) = 891856 Test 050 rap_sfcdiff_decomp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rap_sfcdiff_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/rap_sfcdiff_restart Checking test 051 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2182,14 +2182,14 @@ Checking test 051 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 311.379513 -The maximum resident set size (KB) = 639504 +The total amount of wall time = 313.609000 +The maximum resident set size (KB) = 644408 Test 051 rap_sfcdiff_restart PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/hrrr_control Checking test 052 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2236,14 +2236,14 @@ Checking test 052 hrrr_control results .... 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.911958 -The maximum resident set size (KB) = 894756 +The total amount of wall time = 402.575130 +The maximum resident set size (KB) = 892776 Test 052 hrrr_control PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/hrrr_control_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/hrrr_control_decomp Checking test 053 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2290,14 +2290,14 @@ Checking test 053 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 418.374669 -The maximum resident set size (KB) = 890156 +The total amount of wall time = 420.459190 +The maximum resident set size (KB) = 889908 Test 053 hrrr_control_decomp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/hrrr_control_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/hrrr_control_2threads Checking test 054 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2344,14 +2344,14 @@ Checking test 054 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 378.560499 -The maximum resident set size (KB) = 960312 +The total amount of wall time = 375.622048 +The maximum resident set size (KB) = 959800 Test 054 hrrr_control_2threads PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/hrrr_control_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/hrrr_control_restart Checking test 055 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2390,14 +2390,14 @@ Checking test 055 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 305.399715 -The maximum resident set size (KB) = 639732 +The total amount of wall time = 300.116727 +The maximum resident set size (KB) = 642952 Test 055 hrrr_control_restart PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rrfs_v1beta +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/rrfs_v1beta Checking test 056 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2444,14 +2444,14 @@ Checking test 056 rrfs_v1beta results .... 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.117115 -The maximum resident set size (KB) = 884920 +The total amount of wall time = 412.841348 +The maximum resident set size (KB) = 889812 Test 056 rrfs_v1beta PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rrfs_v1nssl +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/rrfs_v1nssl Checking test 057 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2466,14 +2466,14 @@ Checking test 057 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 497.803081 -The maximum resident set size (KB) = 578224 +The total amount of wall time = 471.515657 +The maximum resident set size (KB) = 579060 Test 057 rrfs_v1nssl PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rrfs_v1nssl_nohailnoccn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/rrfs_v1nssl_nohailnoccn Checking test 058 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2488,14 +2488,14 @@ Checking test 058 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 468.647715 -The maximum resident set size (KB) = 569132 +The total amount of wall time = 463.513301 +The maximum resident set size (KB) = 569060 Test 058 rrfs_v1nssl_nohailnoccn PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/rrfs_conus13km_hrrr_warm Checking test 059 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2504,14 +2504,14 @@ Checking test 059 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 121.525110 -The maximum resident set size (KB) = 758884 +The total amount of wall time = 116.968428 +The maximum resident set size (KB) = 768620 Test 059 rrfs_conus13km_hrrr_warm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/rrfs_smoke_conus13km_hrrr_warm Checking test 060 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2520,14 +2520,14 @@ Checking test 060 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 130.309990 -The maximum resident set size (KB) = 776132 +The total amount of wall time = 133.228343 +The maximum resident set size (KB) = 783348 Test 060 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rrfs_conus13km_radar_tten_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/rrfs_conus13km_radar_tten_warm Checking test 061 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2536,14 +2536,14 @@ Checking test 061 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 120.959888 -The maximum resident set size (KB) = 765848 +The total amount of wall time = 121.072800 +The maximum resident set size (KB) = 764732 Test 061 rrfs_conus13km_radar_tten_warm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rrfs_conus13km_hrrr_warm_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/rrfs_conus13km_hrrr_warm_2threads Checking test 062 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2552,14 +2552,14 @@ Checking test 062 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 98.105690 -The maximum resident set size (KB) = 760852 +The total amount of wall time = 88.448170 +The maximum resident set size (KB) = 763488 Test 062 rrfs_conus13km_hrrr_warm_2threads PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rrfs_conus13km_radar_tten_warm_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/rrfs_conus13km_radar_tten_warm_2threads Checking test 063 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2568,14 +2568,14 @@ Checking test 063 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 89.113195 -The maximum resident set size (KB) = 763948 +The total amount of wall time = 91.291540 +The maximum resident set size (KB) = 764368 Test 063 rrfs_conus13km_radar_tten_warm_2threads PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_csawmg +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/control_csawmg Checking test 064 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2586,14 +2586,14 @@ Checking test 064 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 349.485483 -The maximum resident set size (KB) = 587684 +The total amount of wall time = 352.069657 +The maximum resident set size (KB) = 589460 Test 064 control_csawmg PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_csawmgt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/control_csawmgt Checking test 065 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2604,14 +2604,14 @@ Checking test 065 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 349.279571 -The maximum resident set size (KB) = 585020 +The total amount of wall time = 346.521404 +The maximum resident set size (KB) = 589264 Test 065 control_csawmgt PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_ras +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/control_ras Checking test 066 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2622,26 +2622,26 @@ Checking test 066 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 188.129901 -The maximum resident set size (KB) = 548448 +The total amount of wall time = 183.550477 +The maximum resident set size (KB) = 549480 Test 066 control_ras PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_wam +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/control_wam Checking test 067 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 126.073613 -The maximum resident set size (KB) = 288468 +The total amount of wall time = 120.208033 +The maximum resident set size (KB) = 287884 Test 067 control_wam PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/control_p8_faster Checking test 068 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2688,14 +2688,14 @@ Checking test 068 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 175.941971 -The maximum resident set size (KB) = 1486632 +The total amount of wall time = 180.231270 +The maximum resident set size (KB) = 1487900 Test 068 control_p8_faster PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/regional_control_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/regional_control_faster Checking test 069 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2706,42 +2706,42 @@ Checking test 069 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 291.812096 -The maximum resident set size (KB) = 653692 +The total amount of wall time = 290.523094 +The maximum resident set size (KB) = 654308 Test 069 regional_control_faster PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rrfs_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/rrfs_conus13km_hrrr_warm_debug Checking test 070 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 792.399273 -The maximum resident set size (KB) = 789912 +The total amount of wall time = 784.252713 +The maximum resident set size (KB) = 799708 Test 070 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rrfs_conus13km_radar_tten_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/rrfs_conus13km_radar_tten_warm_debug Checking test 071 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 785.993029 -The maximum resident set size (KB) = 799308 +The total amount of wall time = 789.184515 +The maximum resident set size (KB) = 795104 Test 071 rrfs_conus13km_radar_tten_warm_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_CubedSphereGrid_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/control_CubedSphereGrid_debug Checking test 072 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2768,334 +2768,334 @@ Checking test 072 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 171.233300 -The maximum resident set size (KB) = 677552 +The total amount of wall time = 170.572640 +The maximum resident set size (KB) = 679740 Test 072 control_CubedSphereGrid_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/control_wrtGauss_netcdf_parallel_debug Checking test 073 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 161.784451 -The maximum resident set size (KB) = 681440 +The total amount of wall time = 160.566326 +The maximum resident set size (KB) = 683204 Test 073 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_stochy_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/control_stochy_debug Checking test 074 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 181.788495 -The maximum resident set size (KB) = 685396 +The total amount of wall time = 181.584971 +The maximum resident set size (KB) = 689944 Test 074 control_stochy_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/control_lndp_debug Checking test 075 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 162.289798 -The maximum resident set size (KB) = 687700 +The total amount of wall time = 164.290814 +The maximum resident set size (KB) = 686428 Test 075 control_lndp_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_csawmg_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/control_csawmg_debug Checking test 076 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 260.056146 -The maximum resident set size (KB) = 721232 +The total amount of wall time = 257.239780 +The maximum resident set size (KB) = 719944 Test 076 control_csawmg_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_csawmgt_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/control_csawmgt_debug Checking test 077 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 273.570423 -The maximum resident set size (KB) = 721488 +The total amount of wall time = 255.678374 +The maximum resident set size (KB) = 723136 Test 077 control_csawmgt_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_ras_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/control_ras_debug Checking test 078 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 166.579705 -The maximum resident set size (KB) = 697128 +The total amount of wall time = 163.587291 +The maximum resident set size (KB) = 692800 Test 078 control_ras_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/control_diag_debug Checking test 079 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 185.777469 -The maximum resident set size (KB) = 742480 +The total amount of wall time = 166.887487 +The maximum resident set size (KB) = 740880 Test 079 control_diag_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_debug_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_debug_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/control_debug_p8 Checking test 080 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 195.669287 -The maximum resident set size (KB) = 1505544 +The total amount of wall time = 191.343229 +The maximum resident set size (KB) = 1502576 Test 080 control_debug_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/regional_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/regional_debug Checking test 081 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1058.759880 -The maximum resident set size (KB) = 679444 +The total amount of wall time = 1054.433329 +The maximum resident set size (KB) = 680468 Test 081 regional_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/rap_control_debug Checking test 082 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 303.438424 -The maximum resident set size (KB) = 1058984 +The total amount of wall time = 303.696837 +The maximum resident set size (KB) = 1058800 Test 082 rap_control_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/hrrr_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/hrrr_control_debug Checking test 083 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 310.908039 -The maximum resident set size (KB) = 1059008 +The total amount of wall time = 298.188386 +The maximum resident set size (KB) = 1054648 Test 083 hrrr_control_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rap_unified_drag_suite_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/rap_unified_drag_suite_debug Checking test 084 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 303.975027 -The maximum resident set size (KB) = 1057236 +The total amount of wall time = 301.648000 +The maximum resident set size (KB) = 1058912 Test 084 rap_unified_drag_suite_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rap_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/rap_diag_debug Checking test 085 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 330.205386 -The maximum resident set size (KB) = 1139616 +The total amount of wall time = 313.578635 +The maximum resident set size (KB) = 1142176 Test 085 rap_diag_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/rap_cires_ugwp_debug Checking test 086 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 322.669890 -The maximum resident set size (KB) = 1056584 +The total amount of wall time = 307.813919 +The maximum resident set size (KB) = 1057364 Test 086 rap_cires_ugwp_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rap_unified_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/rap_unified_ugwp_debug Checking test 087 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 318.529900 -The maximum resident set size (KB) = 1058888 +The total amount of wall time = 309.656195 +The maximum resident set size (KB) = 1057540 Test 087 rap_unified_ugwp_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rap_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/rap_lndp_debug Checking test 088 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 306.866122 -The maximum resident set size (KB) = 1060316 +The total amount of wall time = 306.043805 +The maximum resident set size (KB) = 1058100 Test 088 rap_lndp_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_flake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rap_flake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/rap_flake_debug Checking test 089 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 303.825175 -The maximum resident set size (KB) = 1058928 +The total amount of wall time = 302.740402 +The maximum resident set size (KB) = 1057048 Test 089 rap_flake_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_progcld_thompson_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rap_progcld_thompson_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/rap_progcld_thompson_debug Checking test 090 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 318.372417 -The maximum resident set size (KB) = 1057280 +The total amount of wall time = 301.686393 +The maximum resident set size (KB) = 1058924 Test 090 rap_progcld_thompson_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rap_noah_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/rap_noah_debug Checking test 091 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 299.163525 -The maximum resident set size (KB) = 1052488 +The total amount of wall time = 297.547077 +The maximum resident set size (KB) = 1056416 Test 091 rap_noah_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rap_sfcdiff_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/rap_sfcdiff_debug Checking test 092 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 303.672683 -The maximum resident set size (KB) = 1054888 +The total amount of wall time = 301.821222 +The maximum resident set size (KB) = 1056056 Test 092 rap_sfcdiff_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/rap_noah_sfcdiff_cires_ugwp_debug Checking test 093 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 507.765121 -The maximum resident set size (KB) = 1057864 +The total amount of wall time = 492.115989 +The maximum resident set size (KB) = 1058312 Test 093 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rrfs_v1beta_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/rrfs_v1beta_debug Checking test 094 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 309.518434 -The maximum resident set size (KB) = 1055036 +The total amount of wall time = 297.967392 +The maximum resident set size (KB) = 1053688 Test 094 rrfs_v1beta_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_wam_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/control_wam_debug Checking test 095 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 297.484537 -The maximum resident set size (KB) = 304380 +The total amount of wall time = 303.046039 +The maximum resident set size (KB) = 487904 Test 095 control_wam_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 096 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3106,14 +3106,14 @@ Checking test 096 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 276.597281 -The maximum resident set size (KB) = 878356 +The total amount of wall time = 269.178518 +The maximum resident set size (KB) = 878096 Test 096 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/rap_control_dyn32_phy32 Checking test 097 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3160,14 +3160,14 @@ Checking test 097 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 342.896029 -The maximum resident set size (KB) = 774232 +The total amount of wall time = 342.315778 +The maximum resident set size (KB) = 779008 Test 097 rap_control_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/hrrr_control_dyn32_phy32 Checking test 098 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3214,14 +3214,14 @@ Checking test 098 hrrr_control_dyn32_phy32 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 = 199.429914 -The maximum resident set size (KB) = 773384 +The total amount of wall time = 184.167296 +The maximum resident set size (KB) = 774236 Test 098 hrrr_control_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rap_2threads_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/rap_2threads_dyn32_phy32 Checking test 099 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3268,14 +3268,14 @@ Checking test 099 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 321.834737 -The maximum resident set size (KB) = 829788 +The total amount of wall time = 321.284086 +The maximum resident set size (KB) = 829304 Test 099 rap_2threads_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/hrrr_control_2threads_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/hrrr_control_2threads_dyn32_phy32 Checking test 100 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3322,14 +3322,14 @@ Checking test 100 hrrr_control_2threads_dyn32_phy32 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 = 177.773517 -The maximum resident set size (KB) = 826604 +The total amount of wall time = 175.059517 +The maximum resident set size (KB) = 831948 Test 100 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/hrrr_control_decomp_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/hrrr_control_decomp_dyn32_phy32 Checking test 101 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3376,14 +3376,14 @@ Checking test 101 hrrr_control_decomp_dyn32_phy32 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 = 193.330273 -The maximum resident set size (KB) = 773584 +The total amount of wall time = 201.301356 +The maximum resident set size (KB) = 773192 Test 101 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rap_restart_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/rap_restart_dyn32_phy32 Checking test 102 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3422,14 +3422,14 @@ Checking test 102 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 258.563842 -The maximum resident set size (KB) = 614444 +The total amount of wall time = 257.503524 +The maximum resident set size (KB) = 612516 Test 102 rap_restart_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/hrrr_control_restart_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/hrrr_control_restart_dyn32_phy32 Checking test 103 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3468,14 +3468,14 @@ Checking test 103 hrrr_control_restart_dyn32_phy32 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 = 95.534788 -The maximum resident set size (KB) = 607808 +The total amount of wall time = 95.597844 +The maximum resident set size (KB) = 604768 Test 103 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rap_control_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/rap_control_dyn64_phy32 Checking test 104 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3522,81 +3522,81 @@ Checking test 104 rap_control_dyn64_phy32 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 = 235.585767 -The maximum resident set size (KB) = 796464 +The total amount of wall time = 231.384622 +The maximum resident set size (KB) = 799764 Test 104 rap_control_dyn64_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rap_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/rap_control_debug_dyn32_phy32 Checking test 105 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 294.966539 -The maximum resident set size (KB) = 940180 +The total amount of wall time = 293.223377 +The maximum resident set size (KB) = 939376 Test 105 rap_control_debug_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/hrrr_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/hrrr_control_debug_dyn32_phy32 Checking test 106 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 292.630707 -The maximum resident set size (KB) = 938576 +The total amount of wall time = 289.481213 +The maximum resident set size (KB) = 942756 Test 106 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/rap_control_dyn64_phy32_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/rap_control_dyn64_phy32_debug Checking test 107 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 307.641869 -The maximum resident set size (KB) = 960344 +The total amount of wall time = 297.810856 +The maximum resident set size (KB) = 955544 Test 107 rap_control_dyn64_phy32_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/hafs_regional_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/hafs_regional_atm Checking test 108 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 272.372791 -The maximum resident set size (KB) = 825852 +The total amount of wall time = 269.125757 +The maximum resident set size (KB) = 822936 Test 108 hafs_regional_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/hafs_regional_atm_thompson_gfdlsf Checking test 109 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 329.590925 -The maximum resident set size (KB) = 1183200 +The total amount of wall time = 323.625734 +The maximum resident set size (KB) = 1186036 Test 109 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/hafs_regional_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/hafs_regional_atm_ocn Checking test 110 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3605,14 +3605,14 @@ Checking test 110 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 392.844703 -The maximum resident set size (KB) = 852584 +The total amount of wall time = 395.058901 +The maximum resident set size (KB) = 853476 Test 110 hafs_regional_atm_ocn PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/hafs_regional_atm_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/hafs_regional_atm_wav Checking test 111 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3621,14 +3621,14 @@ Checking test 111 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 709.574259 -The maximum resident set size (KB) = 885320 +The total amount of wall time = 710.371090 +The maximum resident set size (KB) = 884716 Test 111 hafs_regional_atm_wav PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/hafs_regional_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/hafs_regional_atm_ocn_wav Checking test 112 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3639,28 +3639,28 @@ Checking test 112 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 902.135824 -The maximum resident set size (KB) = 907288 +The total amount of wall time = 914.394887 +The maximum resident set size (KB) = 907468 Test 112 hafs_regional_atm_ocn_wav PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/hafs_regional_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/hafs_regional_1nest_atm Checking test 113 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 338.132464 -The maximum resident set size (KB) = 391636 +The total amount of wall time = 327.795896 +The maximum resident set size (KB) = 390388 Test 113 hafs_regional_1nest_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/hafs_regional_telescopic_2nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/hafs_regional_telescopic_2nests_atm Checking test 114 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3669,28 +3669,28 @@ Checking test 114 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 403.578727 -The maximum resident set size (KB) = 411680 +The total amount of wall time = 401.515414 +The maximum resident set size (KB) = 415684 Test 114 hafs_regional_telescopic_2nests_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/hafs_global_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/hafs_global_1nest_atm Checking test 115 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 168.498354 -The maximum resident set size (KB) = 271616 +The total amount of wall time = 168.170013 +The maximum resident set size (KB) = 270904 Test 115 hafs_global_1nest_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_multiple_4nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/hafs_global_multiple_4nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/hafs_global_multiple_4nests_atm Checking test 116 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3708,14 +3708,14 @@ Checking test 116 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -The total amount of wall time = 519.590313 -The maximum resident set size (KB) = 341336 +The total amount of wall time = 505.380635 +The maximum resident set size (KB) = 338512 Test 116 hafs_global_multiple_4nests_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/hafs_regional_specified_moving_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/hafs_regional_specified_moving_1nest_atm Checking test 117 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3724,28 +3724,28 @@ Checking test 117 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 225.544434 -The maximum resident set size (KB) = 401824 +The total amount of wall time = 215.095438 +The maximum resident set size (KB) = 403684 Test 117 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/hafs_regional_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/hafs_regional_storm_following_1nest_atm Checking test 118 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 204.127404 -The maximum resident set size (KB) = 404028 +The total amount of wall time = 203.354287 +The maximum resident set size (KB) = 405768 Test 118 hafs_regional_storm_following_1nest_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/hafs_regional_storm_following_1nest_atm_ocn Checking test 119 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3754,42 +3754,42 @@ Checking test 119 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 246.418021 -The maximum resident set size (KB) = 451944 +The total amount of wall time = 243.521415 +The maximum resident set size (KB) = 453348 Test 119 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/hafs_global_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/hafs_global_storm_following_1nest_atm Checking test 120 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 81.008409 -The maximum resident set size (KB) = 283864 +The total amount of wall time = 79.584352 +The maximum resident set size (KB) = 289928 Test 120 hafs_global_storm_following_1nest_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 121 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 807.407225 -The maximum resident set size (KB) = 482896 +The total amount of wall time = 804.643106 +The maximum resident set size (KB) = 487620 Test 121 hafs_regional_storm_following_1nest_atm_ocn_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 122 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3800,14 +3800,14 @@ Checking test 122 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -The total amount of wall time = 531.936656 -The maximum resident set size (KB) = 524848 +The total amount of wall time = 525.198887 +The maximum resident set size (KB) = 525848 Test 122 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_atmlnd_sbs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/control_p8_atmlnd_sbs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/control_p8_atmlnd_sbs Checking test 123 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3892,14 +3892,14 @@ Checking test 123 control_p8_atmlnd_sbs 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 = 254.942396 -The maximum resident set size (KB) = 1535596 +The total amount of wall time = 240.070621 +The maximum resident set size (KB) = 1542224 Test 123 control_p8_atmlnd_sbs PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/atmaero_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/atmaero_control_p8 Checking test 124 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3943,14 +3943,14 @@ Checking test 124 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 249.866525 -The maximum resident set size (KB) = 2819136 +The total amount of wall time = 247.403008 +The maximum resident set size (KB) = 2819712 Test 124 atmaero_control_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/atmaero_control_p8_rad +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/atmaero_control_p8_rad Checking test 125 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3994,14 +3994,14 @@ Checking test 125 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 286.698504 -The maximum resident set size (KB) = 2881656 +The total amount of wall time = 283.839798 +The maximum resident set size (KB) = 2880436 Test 125 atmaero_control_p8_rad PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/atmaero_control_p8_rad_micro +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/atmaero_control_p8_rad_micro Checking test 126 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4045,14 +4045,14 @@ Checking test 126 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 297.702818 -The maximum resident set size (KB) = 2886924 +The total amount of wall time = 289.712189 +The maximum resident set size (KB) = 2889084 Test 126 atmaero_control_p8_rad_micro PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/regional_atmaq +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/regional_atmaq Checking test 127 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4068,14 +4068,14 @@ Checking test 127 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 800.498110 -The maximum resident set size (KB) = 1409392 +The total amount of wall time = 676.545314 +The maximum resident set size (KB) = 1408648 Test 127 regional_atmaq PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/regional_atmaq_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/regional_atmaq_debug Checking test 128 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4089,14 +4089,14 @@ Checking test 128 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1488.272908 -The maximum resident set size (KB) = 1450268 +The total amount of wall time = 1453.090692 +The maximum resident set size (KB) = 1444912 Test 128 regional_atmaq_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_80410/regional_atmaq_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/regional_atmaq_faster Checking test 129 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4112,12 +4112,12 @@ Checking test 129 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 716.217176 -The maximum resident set size (KB) = 1406128 +The total amount of wall time = 659.199598 +The maximum resident set size (KB) = 1404448 Test 129 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Thu Mar 9 15:39:36 UTC 2023 -Elapsed time: 01h:54m:07s. Have a nice day! +Fri Mar 10 04:21:58 UTC 2023 +Elapsed time: 01h:19m:34s. Have a nice day! From e3ad808153ea689f223b8c2f42224bd5440daa0e Mon Sep 17 00:00:00 2001 From: Phil Pegion <38869668+pjpegion@users.noreply.github.com> Date: Tue, 14 Mar 2023 10:01:34 -0600 Subject: [PATCH 07/30] Fix wave init (#1547) * fix clock initialization for a restart in WW3 * update WW3 submodule * update to develop WW3 --- WW3 | 2 +- tests/RegressionTests_acorn.intel.log | 948 ++++++++-------- tests/RegressionTests_cheyenne.gnu.log | 318 +++--- tests/RegressionTests_cheyenne.intel.log | 994 ++++++++--------- tests/RegressionTests_gaea.intel.log | 1246 +++++++++++----------- tests/RegressionTests_hera.gnu.log | 472 ++++---- tests/RegressionTests_hera.intel.log | 1008 ++++++++--------- tests/RegressionTests_jet.intel.log | 926 ++++++++-------- tests/RegressionTests_orion.intel.log | 1018 +++++++++--------- tests/RegressionTests_wcoss2.intel.log | 830 +++++++------- 10 files changed, 3883 insertions(+), 3879 deletions(-) diff --git a/WW3 b/WW3 index 29edfe2d544..af544dca5bf 160000 --- a/WW3 +++ b/WW3 @@ -1 +1 @@ -Subproject commit 29edfe2d5441426be13d47948af1937f3792b65e +Subproject commit af544dca5bf49bf3c3ad8d47b786e8211dcf4bba diff --git a/tests/RegressionTests_acorn.intel.log b/tests/RegressionTests_acorn.intel.log index 607ce89e6bc..74292d17528 100644 --- a/tests/RegressionTests_acorn.intel.log +++ b/tests/RegressionTests_acorn.intel.log @@ -1,39 +1,39 @@ -Thu Mar 9 21:55:55 UTC 2023 +Tue Mar 14 12:19:23 UTC 2023 Start Regression test -Compile 001 elapsed time 562 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 537 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 509 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 468 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 005 elapsed time 470 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 622 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 466 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 008 elapsed time 871 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 1039 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 943 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 877 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 221 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 013 elapsed time 260 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 486 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 015 elapsed time 578 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 156 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 017 elapsed time 280 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 620 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 019 elapsed time 415 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 686 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 679 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 022 elapsed time 225 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 023 elapsed time 617 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 024 elapsed time 54 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 025 elapsed time 1060 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 026 elapsed time 1018 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 027 elapsed time 658 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 746 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 400 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 030 elapsed time 665 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 688 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 540 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 512 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 467 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 005 elapsed time 951 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 1042 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 819 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 1136 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 1438 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 417 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 787 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 929 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 418 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 014 elapsed time 910 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 485 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 424 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 017 elapsed time 360 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 731 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 019 elapsed time 836 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 753 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 758 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 022 elapsed time 226 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 023 elapsed time 165 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 024 elapsed time 83 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 025 elapsed time 449 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 026 elapsed time 508 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 027 elapsed time 829 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 949 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 605 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 030 elapsed time 864 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_mixedmode -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/cpld_control_p8_mixedmode +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -98,14 +98,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 337.063634 -The maximum resident set size (KB) = 2950036 +The total amount of wall time = 333.635998 +The maximum resident set size (KB) = 2950972 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_gfsv17 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/cpld_control_gfsv17 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -169,14 +169,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 262.151056 -The maximum resident set size (KB) = 1587976 +The total amount of wall time = 265.225154 +The maximum resident set size (KB) = 1579812 Test 002 cpld_control_gfsv17 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -241,14 +241,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 387.143860 -The maximum resident set size (KB) = 2978916 +The total amount of wall time = 399.741239 +The maximum resident set size (KB) = 2979864 Test 003 cpld_control_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/cpld_restart_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -301,14 +301,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 231.255829 -The maximum resident set size (KB) = 2867568 +The total amount of wall time = 231.429049 +The maximum resident set size (KB) = 2868956 Test 004 cpld_restart_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/cpld_2threads_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -361,14 +361,14 @@ Checking test 005 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 373.884830 -The maximum resident set size (KB) = 3277840 +The total amount of wall time = 383.453518 +The maximum resident set size (KB) = 3283136 Test 005 cpld_2threads_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/cpld_decomp_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/cpld_decomp_p8 Checking test 006 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -421,14 +421,14 @@ Checking test 006 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 381.259153 -The maximum resident set size (KB) = 2977204 +The total amount of wall time = 395.820563 +The maximum resident set size (KB) = 2976864 Test 006 cpld_decomp_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/cpld_mpi_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/cpld_mpi_p8 Checking test 007 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -481,14 +481,14 @@ Checking test 007 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 319.122116 -The maximum resident set size (KB) = 2909424 +The total amount of wall time = 328.971055 +The maximum resident set size (KB) = 2909652 Test 007 cpld_mpi_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_ciceC_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/cpld_control_ciceC_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/cpld_control_ciceC_p8 Checking test 008 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -553,14 +553,14 @@ Checking test 008 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 390.724208 -The maximum resident set size (KB) = 2978944 +The total amount of wall time = 399.066835 +The maximum resident set size (KB) = 2980308 Test 008 cpld_control_ciceC_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/cpld_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/cpld_control_noaero_p8 Checking test 009 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -624,14 +624,14 @@ Checking test 009 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 282.408125 -The maximum resident set size (KB) = 1579308 +The total amount of wall time = 285.976290 +The maximum resident set size (KB) = 1572080 Test 009 cpld_control_noaero_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/cpld_control_nowave_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/cpld_control_nowave_noaero_p8 Checking test 010 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -693,14 +693,14 @@ Checking test 010 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 299.018449 -The maximum resident set size (KB) = 1625216 +The total amount of wall time = 303.126432 +The maximum resident set size (KB) = 1620244 Test 010 cpld_control_nowave_noaero_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/cpld_control_noaero_p8_agrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/cpld_control_noaero_p8_agrid Checking test 011 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -762,14 +762,14 @@ Checking test 011 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 306.691665 -The maximum resident set size (KB) = 1616508 +The total amount of wall time = 309.681043 +The maximum resident set size (KB) = 1629488 Test 011 cpld_control_noaero_p8_agrid PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/cpld_control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/cpld_control_c48 Checking test 012 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -819,14 +819,14 @@ Checking test 012 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 433.080046 -The maximum resident set size (KB) = 2628576 +The total amount of wall time = 431.627035 +The maximum resident set size (KB) = 2628004 Test 012 cpld_control_c48 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/cpld_warmstart_c48 Checking test 013 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -876,14 +876,14 @@ Checking test 013 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 119.962029 -The maximum resident set size (KB) = 2648200 +The total amount of wall time = 120.211025 +The maximum resident set size (KB) = 2652076 Test 013 cpld_warmstart_c48 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/cpld_restart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/cpld_restart_c48 Checking test 014 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -933,14 +933,14 @@ Checking test 014 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 65.033244 -The maximum resident set size (KB) = 2063000 +The total amount of wall time = 69.924019 +The maximum resident set size (KB) = 2068664 Test 014 cpld_restart_c48 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/cpld_control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/cpld_control_p8_faster Checking test 015 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1005,14 +1005,14 @@ Checking test 015 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 376.032435 -The maximum resident set size (KB) = 2975332 +The total amount of wall time = 376.619745 +The maximum resident set size (KB) = 2975092 Test 015 cpld_control_p8_faster PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/control_CubedSphereGrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/control_CubedSphereGrid Checking test 016 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1039,14 +1039,14 @@ Checking test 016 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 128.557009 -The maximum resident set size (KB) = 516596 +The total amount of wall time = 129.262366 +The maximum resident set size (KB) = 519000 Test 016 control_CubedSphereGrid PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_latlon -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/control_latlon +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/control_latlon Checking test 017 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1057,14 +1057,14 @@ Checking test 017 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 130.743556 -The maximum resident set size (KB) = 515388 +The total amount of wall time = 130.796960 +The maximum resident set size (KB) = 513436 Test 017 control_latlon PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/control_wrtGauss_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/control_wrtGauss_netcdf_parallel Checking test 018 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1075,14 +1075,14 @@ Checking test 018 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 133.135909 -The maximum resident set size (KB) = 516716 +The total amount of wall time = 133.279375 +The maximum resident set size (KB) = 519628 Test 018 control_wrtGauss_netcdf_parallel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/control_c48 Checking test 019 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1121,14 +1121,14 @@ Checking test 019 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 326.392808 -The maximum resident set size (KB) = 674472 +The total amount of wall time = 325.530008 +The maximum resident set size (KB) = 672192 Test 019 control_c48 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c192 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/control_c192 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/control_c192 Checking test 020 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1139,14 +1139,14 @@ Checking test 020 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 528.137105 -The maximum resident set size (KB) = 613204 +The total amount of wall time = 525.861504 +The maximum resident set size (KB) = 612852 Test 020 control_c192 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/control_c384 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/control_c384 Checking test 021 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1157,14 +1157,14 @@ Checking test 021 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 573.461100 -The maximum resident set size (KB) = 909668 +The total amount of wall time = 572.361619 +The maximum resident set size (KB) = 905612 Test 021 control_c384 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384gdas -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/control_c384gdas +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/control_c384gdas Checking test 022 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1207,14 +1207,14 @@ Checking test 022 control_c384gdas 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 = 504.952455 -The maximum resident set size (KB) = 1045788 +The total amount of wall time = 527.544822 +The maximum resident set size (KB) = 1042232 Test 022 control_c384gdas PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/control_stochy Checking test 023 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1225,28 +1225,28 @@ Checking test 023 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 89.368450 -The maximum resident set size (KB) = 518972 +The total amount of wall time = 89.322985 +The maximum resident set size (KB) = 521176 Test 023 control_stochy PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/control_stochy_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/control_stochy_restart Checking test 024 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 48.280543 -The maximum resident set size (KB) = 291236 +The total amount of wall time = 48.272864 +The maximum resident set size (KB) = 289608 Test 024 control_stochy_restart PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/control_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/control_lndp Checking test 025 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1257,14 +1257,14 @@ Checking test 025 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 82.225650 -The maximum resident set size (KB) = 521072 +The total amount of wall time = 82.504602 +The maximum resident set size (KB) = 520916 Test 025 control_lndp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr4 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/control_iovr4 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/control_iovr4 Checking test 026 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1279,14 +1279,14 @@ Checking test 026 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.145517 -The maximum resident set size (KB) = 513456 +The total amount of wall time = 135.473193 +The maximum resident set size (KB) = 520004 Test 026 control_iovr4 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr5 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/control_iovr5 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/control_iovr5 Checking test 027 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1301,14 +1301,14 @@ Checking test 027 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 134.097198 -The maximum resident set size (KB) = 515208 +The total amount of wall time = 134.212579 +The maximum resident set size (KB) = 518980 Test 027 control_iovr5 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/control_p8 Checking test 028 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1355,14 +1355,14 @@ Checking test 028 control_p8 results .... 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.990484 -The maximum resident set size (KB) = 1483628 +The total amount of wall time = 179.156864 +The maximum resident set size (KB) = 1487580 Test 028 control_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/control_p8_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/control_p8_lndp Checking test 029 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1381,14 +1381,14 @@ Checking test 029 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 320.394846 -The maximum resident set size (KB) = 1485248 +The total amount of wall time = 318.934887 +The maximum resident set size (KB) = 1488852 Test 029 control_p8_lndp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/control_restart_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/control_restart_p8 Checking test 030 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1427,14 +1427,14 @@ Checking test 030 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 99.224857 -The maximum resident set size (KB) = 650148 +The total amount of wall time = 97.554311 +The maximum resident set size (KB) = 650268 Test 030 control_restart_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/control_decomp_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/control_decomp_p8 Checking test 031 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1477,14 +1477,14 @@ Checking test 031 control_decomp_p8 results .... 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.646047 -The maximum resident set size (KB) = 1477912 +The total amount of wall time = 179.759372 +The maximum resident set size (KB) = 1478840 Test 031 control_decomp_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/control_2threads_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/control_2threads_p8 Checking test 032 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1527,14 +1527,14 @@ Checking test 032 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 159.574129 -The maximum resident set size (KB) = 1568100 +The total amount of wall time = 160.093739 +The maximum resident set size (KB) = 1569376 Test 032 control_2threads_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_rrtmgp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/control_p8_rrtmgp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/control_p8_rrtmgp Checking test 033 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1581,14 +1581,14 @@ Checking test 033 control_p8_rrtmgp results .... 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.482222 -The maximum resident set size (KB) = 1541120 +The total amount of wall time = 232.377545 +The maximum resident set size (KB) = 1543668 Test 033 control_p8_rrtmgp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/merra2_thompson -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/merra2_thompson +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/merra2_thompson Checking test 034 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1635,14 +1635,14 @@ Checking test 034 merra2_thompson results .... 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.440694 -The maximum resident set size (KB) = 1489924 +The total amount of wall time = 201.764250 +The maximum resident set size (KB) = 1489588 Test 034 merra2_thompson PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/regional_control Checking test 035 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1653,28 +1653,28 @@ Checking test 035 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 291.825382 -The maximum resident set size (KB) = 649684 +The total amount of wall time = 290.755365 +The maximum resident set size (KB) = 654568 Test 035 regional_control PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/regional_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/regional_restart Checking test 036 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 157.373973 -The maximum resident set size (KB) = 650936 +The total amount of wall time = 156.887508 +The maximum resident set size (KB) = 647880 Test 036 regional_restart PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/regional_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/regional_decomp Checking test 037 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1685,14 +1685,14 @@ Checking test 037 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 301.960778 -The maximum resident set size (KB) = 651592 +The total amount of wall time = 303.517230 +The maximum resident set size (KB) = 650548 Test 037 regional_decomp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/regional_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/regional_2threads Checking test 038 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1703,14 +1703,14 @@ Checking test 038 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 178.129392 -The maximum resident set size (KB) = 695056 +The total amount of wall time = 177.193314 +The maximum resident set size (KB) = 697700 Test 038 regional_2threads PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_noquilt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/regional_noquilt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/regional_noquilt Checking test 039 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1718,14 +1718,14 @@ Checking test 039 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 309.372016 -The maximum resident set size (KB) = 644396 +The total amount of wall time = 315.477563 +The maximum resident set size (KB) = 646004 Test 039 regional_noquilt PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/regional_2dwrtdecomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/regional_2dwrtdecomp Checking test 040 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1736,14 +1736,14 @@ Checking test 040 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 286.725430 -The maximum resident set size (KB) = 655168 +The total amount of wall time = 286.396290 +The maximum resident set size (KB) = 655316 Test 040 regional_2dwrtdecomp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/fv3_regional_wofs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/regional_wofs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/regional_wofs Checking test 041 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1754,14 +1754,14 @@ Checking test 041 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 364.210633 -The maximum resident set size (KB) = 341596 +The total amount of wall time = 361.057257 +The maximum resident set size (KB) = 338512 Test 041 regional_wofs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/rap_control Checking test 042 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1808,14 +1808,14 @@ Checking test 042 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 419.285004 -The maximum resident set size (KB) = 896572 +The total amount of wall time = 418.008690 +The maximum resident set size (KB) = 896860 Test 042 rap_control PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/regional_spp_sppt_shum_skeb +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/regional_spp_sppt_shum_skeb Checking test 043 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -1826,14 +1826,14 @@ Checking test 043 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 286.921990 -The maximum resident set size (KB) = 984152 +The total amount of wall time = 283.406901 +The maximum resident set size (KB) = 984520 Test 043 regional_spp_sppt_shum_skeb PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/rap_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/rap_decomp Checking test 044 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1880,14 +1880,14 @@ Checking test 044 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 433.813522 -The maximum resident set size (KB) = 892664 +The total amount of wall time = 432.795375 +The maximum resident set size (KB) = 890040 Test 044 rap_decomp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/rap_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/rap_2threads Checking test 045 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1934,14 +1934,14 @@ Checking test 045 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 391.679717 -The maximum resident set size (KB) = 964156 +The total amount of wall time = 391.771904 +The maximum resident set size (KB) = 961040 Test 045 rap_2threads PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/rap_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/rap_restart Checking test 046 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1980,14 +1980,14 @@ Checking test 046 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 213.135261 -The maximum resident set size (KB) = 641972 +The total amount of wall time = 212.418917 +The maximum resident set size (KB) = 647308 Test 046 rap_restart PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/rap_sfcdiff Checking test 047 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2034,14 +2034,14 @@ Checking test 047 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 414.826926 -The maximum resident set size (KB) = 893960 +The total amount of wall time = 414.082352 +The maximum resident set size (KB) = 894016 Test 047 rap_sfcdiff PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/rap_sfcdiff_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/rap_sfcdiff_decomp Checking test 048 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2088,14 +2088,14 @@ Checking test 048 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 434.141668 -The maximum resident set size (KB) = 894104 +The total amount of wall time = 433.187502 +The maximum resident set size (KB) = 890008 Test 048 rap_sfcdiff_decomp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/rap_sfcdiff_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/rap_sfcdiff_restart Checking test 049 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2134,14 +2134,14 @@ Checking test 049 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 309.481640 -The maximum resident set size (KB) = 641020 +The total amount of wall time = 308.549247 +The maximum resident set size (KB) = 639968 Test 049 rap_sfcdiff_restart PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/hrrr_control Checking test 050 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2188,14 +2188,14 @@ Checking test 050 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 400.523769 -The maximum resident set size (KB) = 892720 +The total amount of wall time = 399.139394 +The maximum resident set size (KB) = 894456 Test 050 hrrr_control PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/hrrr_control_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/hrrr_control_decomp Checking test 051 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2242,14 +2242,14 @@ Checking test 051 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 415.650768 -The maximum resident set size (KB) = 887216 +The total amount of wall time = 414.410613 +The maximum resident set size (KB) = 887420 Test 051 hrrr_control_decomp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/hrrr_control_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/hrrr_control_2threads Checking test 052 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2296,14 +2296,14 @@ Checking test 052 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 371.373058 -The maximum resident set size (KB) = 958720 +The total amount of wall time = 370.091829 +The maximum resident set size (KB) = 960560 Test 052 hrrr_control_2threads PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/hrrr_control_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/hrrr_control_restart Checking test 053 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2342,14 +2342,14 @@ Checking test 053 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 297.149206 -The maximum resident set size (KB) = 640224 +The total amount of wall time = 299.018288 +The maximum resident set size (KB) = 641600 Test 053 hrrr_control_restart PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/rrfs_v1beta +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/rrfs_v1beta Checking test 054 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2396,14 +2396,14 @@ Checking test 054 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 409.599488 -The maximum resident set size (KB) = 888740 +The total amount of wall time = 409.271129 +The maximum resident set size (KB) = 887016 Test 054 rrfs_v1beta PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/rrfs_v1nssl +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/rrfs_v1nssl Checking test 055 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2418,14 +2418,14 @@ Checking test 055 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 474.313444 -The maximum resident set size (KB) = 576480 +The total amount of wall time = 474.284356 +The maximum resident set size (KB) = 576984 Test 055 rrfs_v1nssl PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/rrfs_v1nssl_nohailnoccn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/rrfs_v1nssl_nohailnoccn Checking test 056 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2440,14 +2440,14 @@ Checking test 056 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 463.709724 -The maximum resident set size (KB) = 564812 +The total amount of wall time = 461.361742 +The maximum resident set size (KB) = 565964 Test 056 rrfs_v1nssl_nohailnoccn PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/rrfs_conus13km_hrrr_warm Checking test 057 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2456,14 +2456,14 @@ Checking test 057 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 115.190310 -The maximum resident set size (KB) = 763064 +The total amount of wall time = 115.223675 +The maximum resident set size (KB) = 761868 Test 057 rrfs_conus13km_hrrr_warm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/rrfs_smoke_conus13km_hrrr_warm Checking test 058 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2472,14 +2472,14 @@ Checking test 058 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 128.787542 -The maximum resident set size (KB) = 778524 +The total amount of wall time = 127.104179 +The maximum resident set size (KB) = 772980 Test 058 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/rrfs_conus13km_radar_tten_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/rrfs_conus13km_radar_tten_warm Checking test 059 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2488,14 +2488,14 @@ Checking test 059 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 118.987529 -The maximum resident set size (KB) = 763020 +The total amount of wall time = 114.843483 +The maximum resident set size (KB) = 763848 Test 059 rrfs_conus13km_radar_tten_warm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/rrfs_conus13km_hrrr_warm_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/rrfs_conus13km_hrrr_warm_2threads Checking test 060 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2504,14 +2504,14 @@ Checking test 060 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 86.879713 -The maximum resident set size (KB) = 754732 +The total amount of wall time = 84.579530 +The maximum resident set size (KB) = 756992 Test 060 rrfs_conus13km_hrrr_warm_2threads PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/rrfs_conus13km_radar_tten_warm_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/rrfs_conus13km_radar_tten_warm_2threads Checking test 061 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2520,14 +2520,14 @@ Checking test 061 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 86.504322 -The maximum resident set size (KB) = 762712 +The total amount of wall time = 85.407819 +The maximum resident set size (KB) = 767296 Test 061 rrfs_conus13km_radar_tten_warm_2threads PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/control_csawmg +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/control_csawmg Checking test 062 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2538,14 +2538,14 @@ Checking test 062 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 346.532480 -The maximum resident set size (KB) = 581688 +The total amount of wall time = 345.118339 +The maximum resident set size (KB) = 584980 Test 062 control_csawmg PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/control_csawmgt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/control_csawmgt Checking test 063 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2556,14 +2556,14 @@ Checking test 063 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 345.506226 -The maximum resident set size (KB) = 586464 +The total amount of wall time = 342.183742 +The maximum resident set size (KB) = 585516 Test 063 control_csawmgt PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/control_ras +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/control_ras Checking test 064 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2574,26 +2574,26 @@ Checking test 064 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 180.656994 -The maximum resident set size (KB) = 549296 +The total amount of wall time = 179.839025 +The maximum resident set size (KB) = 551004 Test 064 control_ras PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/control_wam +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/control_wam Checking test 065 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 117.512083 -The maximum resident set size (KB) = 272644 +The total amount of wall time = 117.519345 +The maximum resident set size (KB) = 270168 Test 065 control_wam PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/control_p8_faster Checking test 066 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2640,14 +2640,14 @@ Checking test 066 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 174.891238 -The maximum resident set size (KB) = 1486512 +The total amount of wall time = 173.039854 +The maximum resident set size (KB) = 1476536 Test 066 control_p8_faster PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/regional_control_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/regional_control_faster Checking test 067 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2658,42 +2658,42 @@ Checking test 067 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 288.131379 -The maximum resident set size (KB) = 648824 +The total amount of wall time = 283.625453 +The maximum resident set size (KB) = 648428 Test 067 regional_control_faster PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/rrfs_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/rrfs_conus13km_hrrr_warm_debug Checking test 068 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 783.129547 -The maximum resident set size (KB) = 785752 +The total amount of wall time = 783.906739 +The maximum resident set size (KB) = 792840 Test 068 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/rrfs_conus13km_radar_tten_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/rrfs_conus13km_radar_tten_warm_debug Checking test 069 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 783.459148 -The maximum resident set size (KB) = 790996 +The total amount of wall time = 781.230991 +The maximum resident set size (KB) = 789016 Test 069 rrfs_conus13km_radar_tten_warm_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/control_CubedSphereGrid_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/control_CubedSphereGrid_debug Checking test 070 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2720,334 +2720,334 @@ Checking test 070 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 165.998302 -The maximum resident set size (KB) = 675532 +The total amount of wall time = 166.133401 +The maximum resident set size (KB) = 671588 Test 070 control_CubedSphereGrid_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/control_wrtGauss_netcdf_parallel_debug Checking test 071 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 159.107036 -The maximum resident set size (KB) = 674912 +The total amount of wall time = 158.330514 +The maximum resident set size (KB) = 676320 Test 071 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/control_stochy_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/control_stochy_debug Checking test 072 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 181.193215 -The maximum resident set size (KB) = 680084 +The total amount of wall time = 179.029984 +The maximum resident set size (KB) = 682860 Test 072 control_stochy_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/control_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/control_lndp_debug Checking test 073 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 160.858150 -The maximum resident set size (KB) = 683220 +The total amount of wall time = 160.953461 +The maximum resident set size (KB) = 683104 Test 073 control_lndp_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/control_csawmg_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/control_csawmg_debug Checking test 074 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 254.392558 -The maximum resident set size (KB) = 713824 +The total amount of wall time = 255.306661 +The maximum resident set size (KB) = 713520 Test 074 control_csawmg_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/control_csawmgt_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/control_csawmgt_debug Checking test 075 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 249.822569 -The maximum resident set size (KB) = 715800 +The total amount of wall time = 252.044259 +The maximum resident set size (KB) = 714212 Test 075 control_csawmgt_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/control_ras_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/control_ras_debug Checking test 076 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 161.882779 -The maximum resident set size (KB) = 686032 +The total amount of wall time = 163.314334 +The maximum resident set size (KB) = 688200 Test 076 control_ras_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/control_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/control_diag_debug Checking test 077 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 164.322993 -The maximum resident set size (KB) = 737312 +The total amount of wall time = 163.774037 +The maximum resident set size (KB) = 734740 Test 077 control_diag_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_debug_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/control_debug_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/control_debug_p8 Checking test 078 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 186.333046 -The maximum resident set size (KB) = 1503104 +The total amount of wall time = 188.026996 +The maximum resident set size (KB) = 1494772 Test 078 control_debug_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/regional_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/regional_debug Checking test 079 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1044.804335 -The maximum resident set size (KB) = 669988 +The total amount of wall time = 1044.094942 +The maximum resident set size (KB) = 672972 Test 079 regional_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/rap_control_debug Checking test 080 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.530297 -The maximum resident set size (KB) = 1050716 +The total amount of wall time = 298.141416 +The maximum resident set size (KB) = 1051744 Test 080 rap_control_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/hrrr_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/hrrr_control_debug Checking test 081 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 292.250607 -The maximum resident set size (KB) = 1048244 +The total amount of wall time = 292.817387 +The maximum resident set size (KB) = 1047560 Test 081 hrrr_control_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/rap_unified_drag_suite_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/rap_unified_drag_suite_debug Checking test 082 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.643678 -The maximum resident set size (KB) = 1049432 +The total amount of wall time = 297.820274 +The maximum resident set size (KB) = 1050168 Test 082 rap_unified_drag_suite_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/rap_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/rap_diag_debug Checking test 083 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 309.927294 -The maximum resident set size (KB) = 1131604 +The total amount of wall time = 309.413940 +The maximum resident set size (KB) = 1135008 Test 083 rap_diag_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/rap_cires_ugwp_debug Checking test 084 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 305.295047 -The maximum resident set size (KB) = 1047200 +The total amount of wall time = 304.293831 +The maximum resident set size (KB) = 1048556 Test 084 rap_cires_ugwp_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/rap_unified_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/rap_unified_ugwp_debug Checking test 085 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 306.495196 -The maximum resident set size (KB) = 1051052 +The total amount of wall time = 304.016766 +The maximum resident set size (KB) = 1050484 Test 085 rap_unified_ugwp_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/rap_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/rap_lndp_debug Checking test 086 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 299.240948 -The maximum resident set size (KB) = 1053236 +The total amount of wall time = 301.439188 +The maximum resident set size (KB) = 1051316 Test 086 rap_lndp_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_flake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/rap_flake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/rap_flake_debug Checking test 087 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 296.245603 -The maximum resident set size (KB) = 1053068 +The total amount of wall time = 298.436238 +The maximum resident set size (KB) = 1049376 Test 087 rap_flake_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_progcld_thompson_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/rap_progcld_thompson_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/rap_progcld_thompson_debug Checking test 088 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 296.373683 -The maximum resident set size (KB) = 1052304 +The total amount of wall time = 298.200719 +The maximum resident set size (KB) = 1049628 Test 088 rap_progcld_thompson_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/rap_noah_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/rap_noah_debug Checking test 089 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 291.513171 -The maximum resident set size (KB) = 1053936 +The total amount of wall time = 293.506629 +The maximum resident set size (KB) = 1053380 Test 089 rap_noah_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/rap_sfcdiff_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/rap_sfcdiff_debug Checking test 090 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 296.198816 -The maximum resident set size (KB) = 1052764 +The total amount of wall time = 298.619333 +The maximum resident set size (KB) = 1054580 Test 090 rap_sfcdiff_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/rap_noah_sfcdiff_cires_ugwp_debug Checking test 091 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 486.739052 -The maximum resident set size (KB) = 1047500 +The total amount of wall time = 486.390071 +The maximum resident set size (KB) = 1051684 Test 091 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/rrfs_v1beta_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/rrfs_v1beta_debug Checking test 092 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.133563 -The maximum resident set size (KB) = 1048300 +The total amount of wall time = 293.662525 +The maximum resident set size (KB) = 1050000 Test 092 rrfs_v1beta_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/control_wam_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/control_wam_debug Checking test 093 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 299.315766 -The maximum resident set size (KB) = 300360 +The total amount of wall time = 299.468459 +The maximum resident set size (KB) = 302352 Test 093 control_wam_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 094 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3058,14 +3058,14 @@ Checking test 094 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 266.750664 -The maximum resident set size (KB) = 878648 +The total amount of wall time = 267.552327 +The maximum resident set size (KB) = 872352 Test 094 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/rap_control_dyn32_phy32 Checking test 095 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3112,14 +3112,14 @@ Checking test 095 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 341.712852 -The maximum resident set size (KB) = 777896 +The total amount of wall time = 343.726308 +The maximum resident set size (KB) = 778176 Test 095 rap_control_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/hrrr_control_dyn32_phy32 Checking test 096 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3166,14 +3166,14 @@ Checking test 096 hrrr_control_dyn32_phy32 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 = 183.005252 -The maximum resident set size (KB) = 777564 +The total amount of wall time = 183.893143 +The maximum resident set size (KB) = 772616 Test 096 hrrr_control_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/rap_2threads_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/rap_2threads_dyn32_phy32 Checking test 097 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3220,14 +3220,14 @@ Checking test 097 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 320.701040 -The maximum resident set size (KB) = 835568 +The total amount of wall time = 321.251328 +The maximum resident set size (KB) = 829828 Test 097 rap_2threads_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/hrrr_control_2threads_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/hrrr_control_2threads_dyn32_phy32 Checking test 098 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3274,14 +3274,14 @@ Checking test 098 hrrr_control_2threads_dyn32_phy32 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 = 173.133263 -The maximum resident set size (KB) = 827172 +The total amount of wall time = 173.597534 +The maximum resident set size (KB) = 827184 Test 098 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/hrrr_control_decomp_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/hrrr_control_decomp_dyn32_phy32 Checking test 099 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3328,14 +3328,14 @@ Checking test 099 hrrr_control_decomp_dyn32_phy32 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 = 190.926590 -The maximum resident set size (KB) = 773960 +The total amount of wall time = 190.853854 +The maximum resident set size (KB) = 774664 Test 099 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/rap_restart_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/rap_restart_dyn32_phy32 Checking test 100 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3374,14 +3374,14 @@ Checking test 100 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 256.515379 -The maximum resident set size (KB) = 612480 +The total amount of wall time = 255.861415 +The maximum resident set size (KB) = 612740 Test 100 rap_restart_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/hrrr_control_restart_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/hrrr_control_restart_dyn32_phy32 Checking test 101 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3420,14 +3420,14 @@ Checking test 101 hrrr_control_restart_dyn32_phy32 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 = 95.298012 -The maximum resident set size (KB) = 605948 +The total amount of wall time = 95.217980 +The maximum resident set size (KB) = 605820 Test 101 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/rap_control_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/rap_control_dyn64_phy32 Checking test 102 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3474,81 +3474,81 @@ Checking test 102 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -The total amount of wall time = 230.759867 -The maximum resident set size (KB) = 798000 +The total amount of wall time = 230.626246 +The maximum resident set size (KB) = 796016 Test 102 rap_control_dyn64_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/rap_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/rap_control_debug_dyn32_phy32 Checking test 103 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 289.967830 -The maximum resident set size (KB) = 935040 +The total amount of wall time = 290.939417 +The maximum resident set size (KB) = 935628 Test 103 rap_control_debug_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/hrrr_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/hrrr_control_debug_dyn32_phy32 Checking test 104 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 285.024130 -The maximum resident set size (KB) = 935936 +The total amount of wall time = 285.152806 +The maximum resident set size (KB) = 934024 Test 104 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/rap_control_dyn64_phy32_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/rap_control_dyn64_phy32_debug Checking test 105 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 294.179079 -The maximum resident set size (KB) = 957180 +The total amount of wall time = 293.170246 +The maximum resident set size (KB) = 955540 Test 105 rap_control_dyn64_phy32_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/hafs_regional_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/hafs_regional_atm Checking test 106 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 264.382337 -The maximum resident set size (KB) = 822656 +The total amount of wall time = 264.127906 +The maximum resident set size (KB) = 818608 Test 106 hafs_regional_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/hafs_regional_atm_thompson_gfdlsf Checking test 107 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 300.333459 -The maximum resident set size (KB) = 1177656 +The total amount of wall time = 304.607968 +The maximum resident set size (KB) = 1179340 Test 107 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/hafs_regional_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/hafs_regional_atm_ocn Checking test 108 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3557,14 +3557,14 @@ Checking test 108 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 386.712370 -The maximum resident set size (KB) = 851288 +The total amount of wall time = 388.533879 +The maximum resident set size (KB) = 852324 Test 108 hafs_regional_atm_ocn PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/hafs_regional_atm_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/hafs_regional_atm_wav Checking test 109 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3573,14 +3573,14 @@ Checking test 109 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 706.762450 -The maximum resident set size (KB) = 880620 +The total amount of wall time = 702.554013 +The maximum resident set size (KB) = 880700 Test 109 hafs_regional_atm_wav PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/hafs_regional_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/hafs_regional_atm_ocn_wav Checking test 110 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3591,28 +3591,28 @@ Checking test 110 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 895.210890 -The maximum resident set size (KB) = 906304 +The total amount of wall time = 882.456328 +The maximum resident set size (KB) = 906280 Test 110 hafs_regional_atm_ocn_wav PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/hafs_regional_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/hafs_regional_1nest_atm Checking test 111 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 328.582720 -The maximum resident set size (KB) = 389564 +The total amount of wall time = 327.377319 +The maximum resident set size (KB) = 389300 Test 111 hafs_regional_1nest_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/hafs_regional_telescopic_2nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/hafs_regional_telescopic_2nests_atm Checking test 112 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3621,28 +3621,28 @@ Checking test 112 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 395.804831 -The maximum resident set size (KB) = 411744 +The total amount of wall time = 397.811701 +The maximum resident set size (KB) = 413140 Test 112 hafs_regional_telescopic_2nests_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/hafs_global_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/hafs_global_1nest_atm Checking test 113 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 165.248959 -The maximum resident set size (KB) = 264392 +The total amount of wall time = 165.559970 +The maximum resident set size (KB) = 262864 Test 113 hafs_global_1nest_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_multiple_4nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/hafs_global_multiple_4nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/hafs_global_multiple_4nests_atm Checking test 114 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3660,14 +3660,14 @@ Checking test 114 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -The total amount of wall time = 486.809092 -The maximum resident set size (KB) = 338548 +The total amount of wall time = 488.398583 +The maximum resident set size (KB) = 337716 Test 114 hafs_global_multiple_4nests_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/hafs_regional_specified_moving_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/hafs_regional_specified_moving_1nest_atm Checking test 115 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3676,28 +3676,28 @@ Checking test 115 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 211.150752 -The maximum resident set size (KB) = 400060 +The total amount of wall time = 211.454795 +The maximum resident set size (KB) = 406536 Test 115 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/hafs_regional_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/hafs_regional_storm_following_1nest_atm Checking test 116 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 198.607736 -The maximum resident set size (KB) = 400424 +The total amount of wall time = 200.002872 +The maximum resident set size (KB) = 404520 Test 116 hafs_regional_storm_following_1nest_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/hafs_regional_storm_following_1nest_atm_ocn Checking test 117 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3706,42 +3706,42 @@ Checking test 117 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 239.427060 -The maximum resident set size (KB) = 452480 +The total amount of wall time = 243.338624 +The maximum resident set size (KB) = 453216 Test 117 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/hafs_global_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/hafs_global_storm_following_1nest_atm Checking test 118 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 78.898644 -The maximum resident set size (KB) = 285524 +The total amount of wall time = 79.019416 +The maximum resident set size (KB) = 278984 Test 118 hafs_global_storm_following_1nest_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 119 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 802.030794 -The maximum resident set size (KB) = 482980 +The total amount of wall time = 799.548795 +The maximum resident set size (KB) = 478092 Test 119 hafs_regional_storm_following_1nest_atm_ocn_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 120 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3752,14 +3752,14 @@ Checking test 120 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -The total amount of wall time = 514.476182 -The maximum resident set size (KB) = 526460 +The total amount of wall time = 520.455276 +The maximum resident set size (KB) = 521392 Test 120 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_docn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/hafs_regional_docn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/hafs_regional_docn Checking test 121 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3767,14 +3767,14 @@ Checking test 121 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 367.848893 -The maximum resident set size (KB) = 854136 +The total amount of wall time = 369.105600 +The maximum resident set size (KB) = 856084 Test 121 hafs_regional_docn PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_docn_oisst -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/hafs_regional_docn_oisst +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/hafs_regional_docn_oisst Checking test 122 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3782,131 +3782,131 @@ Checking test 122 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 370.693509 -The maximum resident set size (KB) = 841816 +The total amount of wall time = 371.079670 +The maximum resident set size (KB) = 842864 Test 122 hafs_regional_docn_oisst PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_datm_cdeps -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/hafs_regional_datm_cdeps +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/hafs_regional_datm_cdeps Checking test 123 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -The total amount of wall time = 944.414484 -The maximum resident set size (KB) = 835856 +The total amount of wall time = 946.807260 +The maximum resident set size (KB) = 869140 Test 123 hafs_regional_datm_cdeps PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/datm_cdeps_control_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/datm_cdeps_control_cfsr Checking test 124 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.558978 -The maximum resident set size (KB) = 732292 +The total amount of wall time = 141.407940 +The maximum resident set size (KB) = 732768 Test 124 datm_cdeps_control_cfsr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/datm_cdeps_restart_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/datm_cdeps_restart_cfsr Checking test 125 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 85.570605 -The maximum resident set size (KB) = 708772 +The total amount of wall time = 85.704865 +The maximum resident set size (KB) = 721592 Test 125 datm_cdeps_restart_cfsr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/datm_cdeps_control_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/datm_cdeps_control_gefs Checking test 126 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 134.167450 -The maximum resident set size (KB) = 612148 +The total amount of wall time = 133.967595 +The maximum resident set size (KB) = 612328 Test 126 datm_cdeps_control_gefs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_iau_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/datm_cdeps_iau_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/datm_cdeps_iau_gefs Checking test 127 datm_cdeps_iau_gefs 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.203484 -The maximum resident set size (KB) = 615596 +The total amount of wall time = 136.475762 +The maximum resident set size (KB) = 613092 Test 127 datm_cdeps_iau_gefs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_stochy_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/datm_cdeps_stochy_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/datm_cdeps_stochy_gefs Checking test 128 datm_cdeps_stochy_gefs 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.925409 -The maximum resident set size (KB) = 611176 +The total amount of wall time = 138.363750 +The maximum resident set size (KB) = 615716 Test 128 datm_cdeps_stochy_gefs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/datm_cdeps_ciceC_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/datm_cdeps_ciceC_cfsr Checking test 129 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 140.810025 -The maximum resident set size (KB) = 732316 +The total amount of wall time = 141.355364 +The maximum resident set size (KB) = 732028 Test 129 datm_cdeps_ciceC_cfsr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/datm_cdeps_bulk_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/datm_cdeps_bulk_cfsr Checking test 130 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 142.639516 -The maximum resident set size (KB) = 734032 +The total amount of wall time = 141.864062 +The maximum resident set size (KB) = 732868 Test 130 datm_cdeps_bulk_cfsr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/datm_cdeps_bulk_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/datm_cdeps_bulk_gefs Checking test 131 datm_cdeps_bulk_gefs 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.145404 -The maximum resident set size (KB) = 614008 +The total amount of wall time = 134.416935 +The maximum resident set size (KB) = 615164 Test 131 datm_cdeps_bulk_gefs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/datm_cdeps_mx025_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/datm_cdeps_mx025_cfsr Checking test 132 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -3915,14 +3915,14 @@ Checking test 132 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 430.819633 -The maximum resident set size (KB) = 571992 +The total amount of wall time = 432.734118 +The maximum resident set size (KB) = 570208 Test 132 datm_cdeps_mx025_cfsr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/datm_cdeps_mx025_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/datm_cdeps_mx025_gefs Checking test 133 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -3931,64 +3931,64 @@ Checking test 133 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 428.794730 -The maximum resident set size (KB) = 545920 +The total amount of wall time = 430.563212 +The maximum resident set size (KB) = 551392 Test 133 datm_cdeps_mx025_gefs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/datm_cdeps_multiple_files_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/datm_cdeps_multiple_files_cfsr Checking test 134 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.410605 -The maximum resident set size (KB) = 732716 +The total amount of wall time = 140.807862 +The maximum resident set size (KB) = 731276 Test 134 datm_cdeps_multiple_files_cfsr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/datm_cdeps_3072x1536_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/datm_cdeps_3072x1536_cfsr Checking test 135 datm_cdeps_3072x1536_cfsr 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 = 257.278158 -The maximum resident set size (KB) = 1982792 +The total amount of wall time = 255.839471 +The maximum resident set size (KB) = 1983936 Test 135 datm_cdeps_3072x1536_cfsr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_gfs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/datm_cdeps_gfs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/datm_cdeps_gfs Checking test 136 datm_cdeps_gfs 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 = 255.490965 -The maximum resident set size (KB) = 1979404 +The total amount of wall time = 257.273267 +The maximum resident set size (KB) = 1983132 Test 136 datm_cdeps_gfs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/datm_cdeps_control_cfsr_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/datm_cdeps_control_cfsr_faster Checking test 137 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 142.188870 -The maximum resident set size (KB) = 731892 +The total amount of wall time = 142.312899 +The maximum resident set size (KB) = 732588 Test 137 datm_cdeps_control_cfsr_faster PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/datm_cdeps_lnd_gswp3 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/datm_cdeps_lnd_gswp3 Checking test 138 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -3997,14 +3997,14 @@ Checking test 138 datm_cdeps_lnd_gswp3 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 = 21.935620 -The maximum resident set size (KB) = 230772 +The total amount of wall time = 22.263291 +The maximum resident set size (KB) = 226460 Test 138 datm_cdeps_lnd_gswp3 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/datm_cdeps_lnd_gswp3_rst +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/datm_cdeps_lnd_gswp3_rst Checking test 139 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4013,14 +4013,14 @@ Checking test 139 datm_cdeps_lnd_gswp3_rst 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.558164 -The maximum resident set size (KB) = 222484 +The total amount of wall time = 27.149241 +The maximum resident set size (KB) = 230780 Test 139 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_atmlnd_sbs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/control_p8_atmlnd_sbs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/control_p8_atmlnd_sbs Checking test 140 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4105,14 +4105,14 @@ Checking test 140 control_p8_atmlnd_sbs 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.355732 -The maximum resident set size (KB) = 1529516 +The total amount of wall time = 235.080999 +The maximum resident set size (KB) = 1532916 Test 140 control_p8_atmlnd_sbs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_atmwav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/control_atmwav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/control_atmwav Checking test 141 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4156,14 +4156,14 @@ Checking test 141 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -The total amount of wall time = 90.208321 -The maximum resident set size (KB) = 539148 +The total amount of wall time = 90.437097 +The maximum resident set size (KB) = 542224 Test 141 control_atmwav PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/atmaero_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/atmaero_control_p8 Checking test 142 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4207,14 +4207,14 @@ Checking test 142 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 243.637889 -The maximum resident set size (KB) = 2812852 +The total amount of wall time = 243.330706 +The maximum resident set size (KB) = 2813956 Test 142 atmaero_control_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/atmaero_control_p8_rad +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/atmaero_control_p8_rad Checking test 143 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4258,14 +4258,14 @@ Checking test 143 atmaero_control_p8_rad results .... 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.968113 -The maximum resident set size (KB) = 2875144 +The total amount of wall time = 283.059567 +The maximum resident set size (KB) = 2876552 Test 143 atmaero_control_p8_rad PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/atmaero_control_p8_rad_micro +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/atmaero_control_p8_rad_micro Checking test 144 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4309,14 +4309,14 @@ Checking test 144 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 286.950838 -The maximum resident set size (KB) = 2885248 +The total amount of wall time = 287.378544 +The maximum resident set size (KB) = 2881988 Test 144 atmaero_control_p8_rad_micro PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/regional_atmaq +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/regional_atmaq Checking test 145 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4332,14 +4332,14 @@ Checking test 145 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 654.403194 -The maximum resident set size (KB) = 1402252 +The total amount of wall time = 673.139923 +The maximum resident set size (KB) = 1406416 Test 145 regional_atmaq PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/regional_atmaq_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/regional_atmaq_debug Checking test 146 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4353,14 +4353,14 @@ Checking test 146 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1429.707930 -The maximum resident set size (KB) = 1439956 +The total amount of wall time = 1439.699791 +The maximum resident set size (KB) = 1437864 Test 146 regional_atmaq_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_15297/regional_atmaq_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/regional_atmaq_faster Checking test 147 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4376,12 +4376,12 @@ Checking test 147 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 649.238772 -The maximum resident set size (KB) = 1400172 +The total amount of wall time = 650.428329 +The maximum resident set size (KB) = 1402972 Test 147 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Fri Mar 10 00:20:42 UTC 2023 -Elapsed time: 02h:24m:48s. Have a nice day! +Tue Mar 14 13:54:19 UTC 2023 +Elapsed time: 01h:34m:56s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index e08db068b9a..c617f3546a3 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,21 +1,21 @@ -Fri Mar 10 06:53:43 MST 2023 +Mon Mar 13 19:38:29 MDT 2023 Start Regression test -Compile 001 elapsed time 369 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 393 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 848 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 191 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 356 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 1064 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 849 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 845 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 639 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 563 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 359 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 012 elapsed time 300 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 001 elapsed time 374 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 394 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 850 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 192 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 364 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 1070 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 851 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 859 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 657 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 568 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 358 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 012 elapsed time 296 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/control_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/control_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/control_c48 Checking test 001 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -54,14 +54,14 @@ Checking test 001 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 819.842843 +0:The total amount of wall time = 820.946066 0:The maximum resident set size (KB) = 675624 Test 001 control_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/control_stochy +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/control_stochy Checking test 002 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -72,14 +72,14 @@ Checking test 002 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 174.824773 -0:The maximum resident set size (KB) = 442644 +0:The total amount of wall time = 177.387397 +0:The maximum resident set size (KB) = 442588 Test 002 control_stochy PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/control_ras -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/control_ras +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/control_ras Checking test 003 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -90,14 +90,14 @@ Checking test 003 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 294.410701 -0:The maximum resident set size (KB) = 452036 +0:The total amount of wall time = 294.519597 +0:The maximum resident set size (KB) = 451980 Test 003 control_ras PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/control_p8 Checking test 004 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -144,14 +144,14 @@ Checking test 004 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 309.639815 -0:The maximum resident set size (KB) = 1226004 +0:The total amount of wall time = 310.940100 +0:The maximum resident set size (KB) = 1226032 Test 004 control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/rap_control Checking test 005 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -198,14 +198,14 @@ Checking test 005 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 720.757002 +0:The total amount of wall time = 717.415231 0:The maximum resident set size (KB) = 791772 Test 005 rap_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/rap_decomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/rap_decomp Checking test 006 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -252,14 +252,14 @@ Checking test 006 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 724.900562 -0:The maximum resident set size (KB) = 791168 +0:The total amount of wall time = 725.033689 +0:The maximum resident set size (KB) = 791136 Test 006 rap_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/rap_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/rap_2threads Checking test 007 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -306,14 +306,14 @@ Checking test 007 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 665.992351 -0:The maximum resident set size (KB) = 864000 +0:The total amount of wall time = 663.569880 +0:The maximum resident set size (KB) = 863960 Test 007 rap_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/rap_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/rap_restart Checking test 008 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -352,14 +352,14 @@ Checking test 008 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 359.234666 -0:The maximum resident set size (KB) = 539728 +0:The total amount of wall time = 361.017526 +0:The maximum resident set size (KB) = 538636 Test 008 rap_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/rap_sfcdiff Checking test 009 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -406,14 +406,14 @@ Checking test 009 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 712.385185 -0:The maximum resident set size (KB) = 791656 +0:The total amount of wall time = 709.789069 +0:The maximum resident set size (KB) = 791628 Test 009 rap_sfcdiff PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/rap_sfcdiff_decomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/rap_sfcdiff_decomp Checking test 010 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -460,14 +460,14 @@ Checking test 010 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 724.119539 -0:The maximum resident set size (KB) = 790620 +0:The total amount of wall time = 721.229007 +0:The maximum resident set size (KB) = 790648 Test 010 rap_sfcdiff_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/rap_sfcdiff_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/rap_sfcdiff_restart Checking test 011 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -506,14 +506,14 @@ Checking test 011 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 536.018073 -0:The maximum resident set size (KB) = 543616 +0:The total amount of wall time = 530.877895 +0:The maximum resident set size (KB) = 543580 Test 011 rap_sfcdiff_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/hrrr_control Checking test 012 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -560,14 +560,14 @@ Checking test 012 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 688.484611 -0:The maximum resident set size (KB) = 789244 +0:The total amount of wall time = 686.668683 +0:The maximum resident set size (KB) = 788760 Test 012 hrrr_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/hrrr_control_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/hrrr_control_2threads Checking test 013 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -614,14 +614,14 @@ Checking test 013 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 625.557772 -0:The maximum resident set size (KB) = 858964 +0:The total amount of wall time = 621.502776 +0:The maximum resident set size (KB) = 858796 Test 013 hrrr_control_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/hrrr_control_decomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/hrrr_control_decomp Checking test 014 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -668,14 +668,14 @@ Checking test 014 hrrr_control_decomp results .... Comparing 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.981571 -0:The maximum resident set size (KB) = 788320 +0:The total amount of wall time = 686.051834 +0:The maximum resident set size (KB) = 788256 Test 014 hrrr_control_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/hrrr_control_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/hrrr_control_restart Checking test 015 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -714,14 +714,14 @@ Checking test 015 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 517.281511 -0:The maximum resident set size (KB) = 539700 +0:The total amount of wall time = 513.742890 +0:The maximum resident set size (KB) = 539540 Test 015 hrrr_control_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_v1beta -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/rrfs_v1beta +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/rrfs_v1beta Checking test 016 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -768,14 +768,14 @@ Checking test 016 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 699.745081 -0:The maximum resident set size (KB) = 788712 +0:The total amount of wall time = 696.807235 +0:The maximum resident set size (KB) = 788584 Test 016 rrfs_v1beta PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/rrfs_conus13km_hrrr_warm Checking test 017 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -784,14 +784,14 @@ Checking test 017 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 203.332557 -0:The maximum resident set size (KB) = 607236 +0:The total amount of wall time = 203.340368 +0:The maximum resident set size (KB) = 607100 Test 017 rrfs_conus13km_hrrr_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/rrfs_smoke_conus13km_hrrr_warm Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -800,14 +800,14 @@ Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 222.791426 -0:The maximum resident set size (KB) = 621268 +0:The total amount of wall time = 221.794154 +0:The maximum resident set size (KB) = 621276 Test 018 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/rrfs_conus13km_radar_tten_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/rrfs_conus13km_radar_tten_warm Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -816,14 +816,14 @@ Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 204.815189 -0:The maximum resident set size (KB) = 610036 +0:The total amount of wall time = 205.489465 +0:The maximum resident set size (KB) = 610580 Test 019 rrfs_conus13km_radar_tten_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/rrfs_conus13km_radar_tten_warm_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/rrfs_conus13km_radar_tten_warm_2threads Checking test 020 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -832,208 +832,208 @@ Checking test 020 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 131.612612 -0:The maximum resident set size (KB) = 628072 +0:The total amount of wall time = 131.715591 +0:The maximum resident set size (KB) = 627920 Test 020 rrfs_conus13km_radar_tten_warm_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/control_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/control_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/control_diag_debug Checking test 021 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 89.398106 -0:The maximum resident set size (KB) = 495308 +0:The total amount of wall time = 88.868725 +0:The maximum resident set size (KB) = 495396 Test 021 control_diag_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/regional_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/regional_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/regional_debug Checking test 022 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 487.354861 -0:The maximum resident set size (KB) = 569872 +0:The total amount of wall time = 483.865923 +0:The maximum resident set size (KB) = 569864 Test 022 regional_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/rap_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/rap_control_debug Checking test 023 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 151.733616 -0:The maximum resident set size (KB) = 808852 +0:The total amount of wall time = 152.640141 +0:The maximum resident set size (KB) = 808892 Test 023 rap_control_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/hrrr_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/hrrr_control_debug Checking test 024 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 149.082778 -0:The maximum resident set size (KB) = 804240 +0:The total amount of wall time = 149.427122 +0:The maximum resident set size (KB) = 804316 Test 024 hrrr_control_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/rap_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/rap_diag_debug Checking test 025 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 160.985102 -0:The maximum resident set size (KB) = 891584 +0:The total amount of wall time = 160.022731 +0:The maximum resident set size (KB) = 891780 Test 025 rap_diag_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/rap_noah_sfcdiff_cires_ugwp_debug Checking test 026 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 247.224647 -0:The maximum resident set size (KB) = 807108 +0:The total amount of wall time = 241.674947 +0:The maximum resident set size (KB) = 807060 Test 026 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_progcld_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/rap_progcld_thompson_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/rap_progcld_thompson_debug Checking test 027 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 156.783625 +0:The total amount of wall time = 152.119296 0:The maximum resident set size (KB) = 808532 Test 027 rap_progcld_thompson_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_v1beta_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/rrfs_v1beta_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/rrfs_v1beta_debug Checking test 028 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 155.535535 -0:The maximum resident set size (KB) = 803784 +0:The total amount of wall time = 151.420197 +0:The maximum resident set size (KB) = 803684 Test 028 rrfs_v1beta_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/control_ras_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/control_ras_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/control_ras_debug Checking test 029 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 86.222805 -0:The maximum resident set size (KB) = 449184 +0:The total amount of wall time = 86.217602 +0:The maximum resident set size (KB) = 449320 Test 029 control_ras_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/control_stochy_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/control_stochy_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/control_stochy_debug Checking test 030 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 93.775283 -0:The maximum resident set size (KB) = 441604 +0:The total amount of wall time = 94.042812 +0:The maximum resident set size (KB) = 441680 Test 030 control_stochy_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/control_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/control_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/control_debug_p8 Checking test 031 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 97.387139 -0:The maximum resident set size (KB) = 1224836 +0:The total amount of wall time = 96.853299 +0:The maximum resident set size (KB) = 1224796 Test 031 control_debug_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/rrfs_conus13km_hrrr_warm_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/rrfs_conus13km_hrrr_warm_debug Checking test 032 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 390.849080 -0:The maximum resident set size (KB) = 615124 +0:The total amount of wall time = 389.661795 +0:The maximum resident set size (KB) = 614332 Test 032 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_conus13km_radar_tten_warm_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/rrfs_conus13km_radar_tten_warm_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/rrfs_conus13km_radar_tten_warm_debug Checking test 033 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 392.236712 -0:The maximum resident set size (KB) = 617168 +0:The total amount of wall time = 390.912663 +0:The maximum resident set size (KB) = 617172 Test 033 rrfs_conus13km_radar_tten_warm_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/control_wam_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/control_wam_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/control_wam_debug Checking test 034 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 144.503623 -0:The maximum resident set size (KB) = 184768 +0:The total amount of wall time = 144.627368 +0:The maximum resident set size (KB) = 184752 Test 034 control_wam_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/rap_control_dyn32_phy32 Checking test 035 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1080,14 +1080,14 @@ Checking test 035 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 687.351071 -0:The maximum resident set size (KB) = 672700 +0:The total amount of wall time = 686.444686 +0:The maximum resident set size (KB) = 672672 Test 035 rap_control_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/hrrr_control_dyn32_phy32 Checking test 036 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1134,14 +1134,14 @@ Checking test 036 hrrr_control_dyn32_phy32 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 = 350.121407 -0:The maximum resident set size (KB) = 671148 +0:The total amount of wall time = 350.316580 +0:The maximum resident set size (KB) = 671064 Test 036 hrrr_control_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/rap_2threads_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/rap_2threads_dyn32_phy32 Checking test 037 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1188,14 +1188,14 @@ Checking test 037 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 626.961810 -0:The maximum resident set size (KB) = 718820 +0:The total amount of wall time = 626.487389 +0:The maximum resident set size (KB) = 718280 Test 037 rap_2threads_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/hrrr_control_2threads_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/hrrr_control_2threads_dyn32_phy32 Checking test 038 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1242,14 +1242,14 @@ Checking test 038 hrrr_control_2threads_dyn32_phy32 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 = 320.328550 -0:The maximum resident set size (KB) = 715544 +0:The total amount of wall time = 322.240518 +0:The maximum resident set size (KB) = 715496 Test 038 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/hrrr_control_decomp_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/hrrr_control_decomp_dyn32_phy32 Checking test 039 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1296,14 +1296,14 @@ Checking test 039 hrrr_control_decomp_dyn32_phy32 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 = 350.521383 -0:The maximum resident set size (KB) = 669972 +0:The total amount of wall time = 349.646348 +0:The maximum resident set size (KB) = 669892 Test 039 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/rap_restart_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/rap_restart_dyn32_phy32 Checking test 040 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1342,14 +1342,14 @@ Checking test 040 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 516.767068 -0:The maximum resident set size (KB) = 510800 +0:The total amount of wall time = 518.941015 +0:The maximum resident set size (KB) = 510880 Test 040 rap_restart_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/hrrr_control_restart_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/hrrr_control_restart_dyn32_phy32 Checking test 041 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1388,14 +1388,14 @@ Checking test 041 hrrr_control_restart_dyn32_phy32 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 = 177.740612 -0:The maximum resident set size (KB) = 506580 +0:The total amount of wall time = 178.100635 +0:The maximum resident set size (KB) = 506328 Test 041 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/rap_control_dyn64_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/rap_control_dyn64_phy32 Checking test 042 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1442,56 +1442,56 @@ Checking test 042 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 407.680738 -0:The maximum resident set size (KB) = 692440 +0:The total amount of wall time = 407.897030 +0:The maximum resident set size (KB) = 692388 Test 042 rap_control_dyn64_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/rap_control_debug_dyn32_phy32 Checking test 043 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 147.791945 -0:The maximum resident set size (KB) = 690472 +0:The total amount of wall time = 148.273894 +0:The maximum resident set size (KB) = 690540 Test 043 rap_control_debug_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/hrrr_control_debug_dyn32_phy32 Checking test 044 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 146.668937 -0:The maximum resident set size (KB) = 687392 +0:The total amount of wall time = 145.355167 +0:The maximum resident set size (KB) = 687384 Test 044 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/rap_control_dyn64_phy32_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/rap_control_dyn64_phy32_debug Checking test 045 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 154.395899 -0:The maximum resident set size (KB) = 711048 +0:The total amount of wall time = 153.279923 +0:The maximum resident set size (KB) = 711012 Test 045 rap_control_dyn64_phy32_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/cpld_control_p8 Checking test 046 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1556,14 +1556,14 @@ Checking test 046 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 501.789432 -0:The maximum resident set size (KB) = 3163664 +0:The total amount of wall time = 490.820072 +0:The maximum resident set size (KB) = 3159560 Test 046 cpld_control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/cpld_control_nowave_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/cpld_control_nowave_noaero_p8 Checking test 047 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1625,14 +1625,14 @@ Checking test 047 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 251.062112 -0:The maximum resident set size (KB) = 1240224 +0:The total amount of wall time = 245.832773 +0:The maximum resident set size (KB) = 1240252 Test 047 cpld_control_nowave_noaero_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/cpld_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/cpld_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/cpld_debug_p8 Checking test 048 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1685,25 +1685,25 @@ Checking test 048 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 278.066811 -0:The maximum resident set size (KB) = 3180388 +0:The total amount of wall time = 274.841904 +0:The maximum resident set size (KB) = 3179516 Test 048 cpld_debug_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30902/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/datm_cdeps_control_cfsr Checking test 049 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 173.784212 -0:The maximum resident set size (KB) = 672024 +0:The total amount of wall time = 173.524113 +0:The maximum resident set size (KB) = 671468 Test 049 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Fri Mar 10 08:21:00 MST 2023 -Elapsed time: 01h:27m:17s. Have a nice day! +Mon Mar 13 21:05:36 MDT 2023 +Elapsed time: 01h:27m:07s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 474f17a639a..08474abfd56 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,42 +1,44 @@ -Fri Mar 10 06:38:25 MST 2023 +Mon Mar 13 19:23:47 MDT 2023 Start Regression test -Compile 001 elapsed time 1466 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Test 008 compile FAIL + +Compile 001 elapsed time 1441 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON Compile 002 elapsed time 1400 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 1363 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 443 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 391 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 1066 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 1077 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 1750 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 1032 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 983 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 928 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 797 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 1273 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 406 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 265 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 828 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 822 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 264 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 269 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 1105 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 021 elapsed time 346 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 1573 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 1102 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 024 elapsed time 432 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 205 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 426 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 108 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 941 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 982 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 892 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 884 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 299 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 1035 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 1366 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 451 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 390 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 1062 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 1079 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 1786 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 1036 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 986 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 919 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 804 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 1279 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 398 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 264 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 830 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 826 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 269 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 273 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 1103 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 021 elapsed time 340 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 1549 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 1104 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 024 elapsed time 439 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 212 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 430 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 112 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 944 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 979 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 889 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 879 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 303 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 1027 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_mixedmode -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/cpld_control_p8_mixedmode +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -101,14 +103,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 320.482175 -0:The maximum resident set size (KB) = 2698412 +0:The total amount of wall time = 323.413478 +0:The maximum resident set size (KB) = 2698488 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_gfsv17 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/cpld_control_gfsv17 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -172,14 +174,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 277.282087 -0:The maximum resident set size (KB) = 1437724 +0:The total amount of wall time = 285.015714 +0:The maximum resident set size (KB) = 1437748 Test 002 cpld_control_gfsv17 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -244,14 +246,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 323.836019 -0:The maximum resident set size (KB) = 2716388 +0:The total amount of wall time = 326.006083 +0:The maximum resident set size (KB) = 2716376 Test 003 cpld_control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/cpld_restart_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -304,14 +306,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 183.027772 -0:The maximum resident set size (KB) = 2577500 +0:The total amount of wall time = 186.453892 +0:The maximum resident set size (KB) = 2577368 Test 004 cpld_restart_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/cpld_2threads_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -364,14 +366,14 @@ Checking test 005 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 261.483758 -0:The maximum resident set size (KB) = 3176356 +0:The total amount of wall time = 259.120487 +0:The maximum resident set size (KB) = 3175560 Test 005 cpld_2threads_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/cpld_decomp_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/cpld_decomp_p8 Checking test 006 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -424,14 +426,14 @@ Checking test 006 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 317.533437 -0:The maximum resident set size (KB) = 2720872 +0:The total amount of wall time = 327.459168 +0:The maximum resident set size (KB) = 2721288 Test 006 cpld_decomp_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/cpld_mpi_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/cpld_mpi_p8 Checking test 007 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -484,14 +486,14 @@ Checking test 007 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 271.777148 -0:The maximum resident set size (KB) = 2682304 +0:The total amount of wall time = 282.296836 +0:The maximum resident set size (KB) = 2682508 Test 007 cpld_mpi_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_ciceC_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/cpld_control_ciceC_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/cpld_control_ciceC_p8 Checking test 008 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -556,14 +558,14 @@ Checking test 008 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 316.741500 -0:The maximum resident set size (KB) = 2716404 +0:The total amount of wall time = 325.007806 +0:The maximum resident set size (KB) = 2716468 Test 008 cpld_control_ciceC_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/cpld_control_c192_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/cpld_control_c192_p8 Checking test 009 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -616,14 +618,14 @@ Checking test 009 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -0:The total amount of wall time = 766.722819 -0:The maximum resident set size (KB) = 3349588 +0:The total amount of wall time = 644.631142 +0:The maximum resident set size (KB) = 3348848 Test 009 cpld_control_c192_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/cpld_restart_c192_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/cpld_restart_c192_p8 Checking test 010 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -676,14 +678,14 @@ Checking test 010 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -0:The total amount of wall time = 440.735534 -0:The maximum resident set size (KB) = 3272156 +0:The total amount of wall time = 405.932397 +0:The maximum resident set size (KB) = 3271188 Test 010 cpld_restart_c192_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/cpld_control_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/cpld_control_noaero_p8 Checking test 011 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -747,14 +749,14 @@ Checking test 011 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 297.727829 -0:The maximum resident set size (KB) = 1436348 +0:The total amount of wall time = 298.629733 +0:The maximum resident set size (KB) = 1436356 Test 011 cpld_control_noaero_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/cpld_control_nowave_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/cpld_control_nowave_noaero_p8 Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -816,14 +818,14 @@ Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 195.921304 -0:The maximum resident set size (KB) = 1452672 +0:The total amount of wall time = 198.565955 +0:The maximum resident set size (KB) = 1452520 Test 012 cpld_control_nowave_noaero_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/cpld_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/cpld_debug_p8 Checking test 013 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -876,14 +878,14 @@ Checking test 013 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 474.787837 -0:The maximum resident set size (KB) = 2788252 +0:The total amount of wall time = 472.461692 +0:The maximum resident set size (KB) = 2788056 Test 013 cpld_debug_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_debug_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/cpld_debug_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/cpld_debug_noaero_p8 Checking test 014 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -935,14 +937,14 @@ Checking test 014 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 351.357021 -0:The maximum resident set size (KB) = 1460624 +0:The total amount of wall time = 349.572824 +0:The maximum resident set size (KB) = 1460584 Test 014 cpld_debug_noaero_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8_agrid -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/cpld_control_noaero_p8_agrid +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/cpld_control_noaero_p8_agrid Checking test 015 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1004,14 +1006,14 @@ Checking test 015 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 264.790059 -0:The maximum resident set size (KB) = 1455868 +0:The total amount of wall time = 257.001902 +0:The maximum resident set size (KB) = 1455896 Test 015 cpld_control_noaero_p8_agrid PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/cpld_control_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/cpld_control_c48 Checking test 016 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1061,14 +1063,14 @@ Checking test 016 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 609.191927 -0:The maximum resident set size (KB) = 2580160 +0:The total amount of wall time = 606.312258 +0:The maximum resident set size (KB) = 2580332 Test 016 cpld_control_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/cpld_warmstart_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/cpld_warmstart_c48 Checking test 017 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1118,14 +1120,14 @@ Checking test 017 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -0:The total amount of wall time = 161.452146 -0:The maximum resident set size (KB) = 2599004 +0:The total amount of wall time = 163.816238 +0:The maximum resident set size (KB) = 2598812 Test 017 cpld_warmstart_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/cpld_restart_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/cpld_restart_c48 Checking test 018 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1175,14 +1177,14 @@ Checking test 018 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -0:The total amount of wall time = 84.146371 -0:The maximum resident set size (KB) = 2016160 +0:The total amount of wall time = 85.139819 +0:The maximum resident set size (KB) = 2016124 Test 018 cpld_restart_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_faster -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/cpld_control_p8_faster +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/cpld_control_p8_faster Checking test 019 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1247,14 +1249,14 @@ Checking test 019 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 313.430155 -0:The maximum resident set size (KB) = 2716180 +0:The total amount of wall time = 308.744539 +0:The maximum resident set size (KB) = 2716468 Test 019 cpld_control_p8_faster PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/control_CubedSphereGrid +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/control_CubedSphereGrid Checking test 020 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1281,28 +1283,28 @@ Checking test 020 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -0:The total amount of wall time = 147.161759 -0:The maximum resident set size (KB) = 456832 +0:The total amount of wall time = 142.342516 +0:The maximum resident set size (KB) = 456764 Test 020 control_CubedSphereGrid PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid_parallel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/control_CubedSphereGrid_parallel +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/control_CubedSphereGrid_parallel Checking test 021 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf024.nc .........OK -0:The total amount of wall time = 142.048790 -0:The maximum resident set size (KB) = 456820 +0:The total amount of wall time = 140.094368 +0:The maximum resident set size (KB) = 456856 Test 021 control_CubedSphereGrid_parallel PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_latlon -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/control_latlon +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/control_latlon Checking test 022 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1313,14 +1315,14 @@ Checking test 022 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 144.663556 -0:The maximum resident set size (KB) = 456808 +0:The total amount of wall time = 145.646633 +0:The maximum resident set size (KB) = 456836 Test 022 control_latlon PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/control_wrtGauss_netcdf_parallel +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/control_wrtGauss_netcdf_parallel Checking test 023 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1331,14 +1333,14 @@ Checking test 023 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 149.161031 -0:The maximum resident set size (KB) = 456624 +0:The total amount of wall time = 149.511163 +0:The maximum resident set size (KB) = 456768 Test 023 control_wrtGauss_netcdf_parallel PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/control_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/control_c48 Checking test 024 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1377,14 +1379,14 @@ Checking test 024 control_c48 results .... Comparing 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.252340 -0:The maximum resident set size (KB) = 628916 +0:The total amount of wall time = 442.694221 +0:The maximum resident set size (KB) = 628904 Test 024 control_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c192 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/control_c192 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/control_c192 Checking test 025 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1395,14 +1397,14 @@ Checking test 025 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 589.725469 -0:The maximum resident set size (KB) = 557088 +0:The total amount of wall time = 589.815750 +0:The maximum resident set size (KB) = 557048 Test 025 control_c192 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/control_c384 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/control_c384 Checking test 026 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1413,14 +1415,14 @@ Checking test 026 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 601.336003 -0:The maximum resident set size (KB) = 888996 +0:The total amount of wall time = 605.021485 +0:The maximum resident set size (KB) = 889068 Test 026 control_c384 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384gdas -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/control_c384gdas +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/control_c384gdas Checking test 027 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1463,14 +1465,14 @@ Checking test 027 control_c384gdas 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 = 538.836871 -0:The maximum resident set size (KB) = 1014924 +0:The total amount of wall time = 527.559092 +0:The maximum resident set size (KB) = 1015220 Test 027 control_c384gdas PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/control_stochy +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/control_stochy Checking test 028 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1481,28 +1483,28 @@ Checking test 028 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 97.008233 -0:The maximum resident set size (KB) = 455024 +0:The total amount of wall time = 96.942629 +0:The maximum resident set size (KB) = 455060 Test 028 control_stochy PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/control_stochy_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/control_stochy_restart Checking test 029 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 51.437674 -0:The maximum resident set size (KB) = 225724 +0:The total amount of wall time = 52.424550 +0:The maximum resident set size (KB) = 225696 Test 029 control_stochy_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/control_lndp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/control_lndp Checking test 030 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1513,14 +1515,14 @@ Checking test 030 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 90.523037 -0:The maximum resident set size (KB) = 456404 +0:The total amount of wall time = 89.878536 +0:The maximum resident set size (KB) = 456496 Test 030 control_lndp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr4 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/control_iovr4 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/control_iovr4 Checking test 031 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1535,14 +1537,14 @@ Checking test 031 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 147.666624 -0:The maximum resident set size (KB) = 456888 +0:The total amount of wall time = 149.090483 +0:The maximum resident set size (KB) = 456820 Test 031 control_iovr4 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr5 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/control_iovr5 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/control_iovr5 Checking test 032 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1557,14 +1559,14 @@ Checking test 032 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 145.142471 -0:The maximum resident set size (KB) = 456648 +0:The total amount of wall time = 147.250690 +0:The maximum resident set size (KB) = 456868 Test 032 control_iovr5 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/control_p8 Checking test 033 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1611,14 +1613,14 @@ Checking test 033 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 181.108208 -0:The maximum resident set size (KB) = 1422844 +0:The total amount of wall time = 181.200275 +0:The maximum resident set size (KB) = 1422848 Test 033 control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_lndp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/control_p8_lndp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/control_p8_lndp Checking test 034 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1637,14 +1639,14 @@ Checking test 034 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -0:The total amount of wall time = 337.122032 -0:The maximum resident set size (KB) = 1423168 +0:The total amount of wall time = 330.265447 +0:The maximum resident set size (KB) = 1423144 Test 034 control_p8_lndp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/control_restart_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/control_restart_p8 Checking test 035 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1683,14 +1685,14 @@ Checking test 035 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 95.497102 -0:The maximum resident set size (KB) = 582332 +0:The total amount of wall time = 96.502176 +0:The maximum resident set size (KB) = 582368 Test 035 control_restart_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/control_decomp_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/control_decomp_p8 Checking test 036 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1733,14 +1735,14 @@ Checking test 036 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 188.533755 -0:The maximum resident set size (KB) = 1417036 +0:The total amount of wall time = 186.647140 +0:The maximum resident set size (KB) = 1417072 Test 036 control_decomp_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/control_2threads_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/control_2threads_p8 Checking test 037 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1783,14 +1785,14 @@ Checking test 037 control_2threads_p8 results .... Comparing 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.131274 -0:The maximum resident set size (KB) = 1505124 +0:The total amount of wall time = 177.748814 +0:The maximum resident set size (KB) = 1507456 Test 037 control_2threads_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_rrtmgp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/control_p8_rrtmgp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/control_p8_rrtmgp Checking test 038 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1837,14 +1839,14 @@ Checking test 038 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 254.084645 -0:The maximum resident set size (KB) = 1480748 +0:The total amount of wall time = 253.615842 +0:The maximum resident set size (KB) = 1480708 Test 038 control_p8_rrtmgp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/merra2_thompson -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/merra2_thompson +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/merra2_thompson Checking test 039 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1891,14 +1893,14 @@ Checking test 039 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 206.584351 -0:The maximum resident set size (KB) = 1429744 +0:The total amount of wall time = 208.293121 +0:The maximum resident set size (KB) = 1429740 Test 039 merra2_thompson PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/regional_control Checking test 040 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1909,28 +1911,28 @@ Checking test 040 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 346.114182 -0:The maximum resident set size (KB) = 603140 +0:The total amount of wall time = 340.980681 +0:The maximum resident set size (KB) = 603104 Test 040 regional_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/regional_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/regional_restart Checking test 041 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 169.151379 -0:The maximum resident set size (KB) = 593464 +0:The total amount of wall time = 178.925197 +0:The maximum resident set size (KB) = 593516 Test 041 regional_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/regional_decomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/regional_decomp Checking test 042 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1941,14 +1943,14 @@ Checking test 042 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 362.926387 -0:The maximum resident set size (KB) = 597148 +0:The total amount of wall time = 354.969760 +0:The maximum resident set size (KB) = 597184 Test 042 regional_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/regional_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/regional_2threads Checking test 043 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1959,14 +1961,14 @@ Checking test 043 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 212.079933 -0:The maximum resident set size (KB) = 609952 +0:The total amount of wall time = 208.546551 +0:The maximum resident set size (KB) = 609984 Test 043 regional_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_noquilt -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/regional_noquilt +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/regional_noquilt Checking test 044 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1974,28 +1976,28 @@ Checking test 044 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -0:The total amount of wall time = 372.128282 -0:The maximum resident set size (KB) = 597616 +0:The total amount of wall time = 361.220250 +0:The maximum resident set size (KB) = 597628 Test 044 regional_noquilt PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_netcdf_parallel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/regional_netcdf_parallel +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/regional_netcdf_parallel Checking test 045 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK Comparing phyf006.nc ............ALT CHECK......OK -0:The total amount of wall time = 339.164087 -0:The maximum resident set size (KB) = 595096 +0:The total amount of wall time = 339.089472 +0:The maximum resident set size (KB) = 595024 Test 045 regional_netcdf_parallel PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/regional_2dwrtdecomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/regional_2dwrtdecomp Checking test 046 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2006,14 +2008,14 @@ Checking test 046 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 343.792078 -0:The maximum resident set size (KB) = 603148 +0:The total amount of wall time = 337.684245 +0:The maximum resident set size (KB) = 603208 Test 046 regional_2dwrtdecomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/fv3_regional_wofs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/regional_wofs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/regional_wofs Checking test 047 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2024,14 +2026,14 @@ Checking test 047 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 414.305080 -0:The maximum resident set size (KB) = 274460 +0:The total amount of wall time = 423.639149 +0:The maximum resident set size (KB) = 274560 Test 047 regional_wofs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/rap_control Checking test 048 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2078,14 +2080,14 @@ Checking test 048 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 477.972619 -0:The maximum resident set size (KB) = 826164 +0:The total amount of wall time = 476.952232 +0:The maximum resident set size (KB) = 826104 Test 048 rap_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/regional_spp_sppt_shum_skeb +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/regional_spp_sppt_shum_skeb Checking test 049 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2096,14 +2098,14 @@ Checking test 049 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 326.996245 -0:The maximum resident set size (KB) = 949300 +0:The total amount of wall time = 324.223359 +0:The maximum resident set size (KB) = 949212 Test 049 regional_spp_sppt_shum_skeb PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/rap_decomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/rap_decomp Checking test 050 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2150,14 +2152,14 @@ Checking test 050 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 505.979303 -0:The maximum resident set size (KB) = 823580 +0:The total amount of wall time = 510.224400 +0:The maximum resident set size (KB) = 823496 Test 050 rap_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/rap_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/rap_2threads Checking test 051 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2204,14 +2206,14 @@ Checking test 051 rap_2threads results .... Comparing 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.216164 -0:The maximum resident set size (KB) = 892680 +0:The total amount of wall time = 464.642877 +0:The maximum resident set size (KB) = 892804 Test 051 rap_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/rap_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/rap_restart Checking test 052 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2250,14 +2252,14 @@ Checking test 052 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 242.891694 -0:The maximum resident set size (KB) = 572800 +0:The total amount of wall time = 238.905188 +0:The maximum resident set size (KB) = 572712 Test 052 rap_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/rap_sfcdiff Checking test 053 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2304,14 +2306,14 @@ Checking test 053 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 470.318077 -0:The maximum resident set size (KB) = 826456 +0:The total amount of wall time = 475.394052 +0:The maximum resident set size (KB) = 826440 Test 053 rap_sfcdiff PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/rap_sfcdiff_decomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/rap_sfcdiff_decomp Checking test 054 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2358,14 +2360,14 @@ Checking test 054 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 492.111412 -0:The maximum resident set size (KB) = 825500 +0:The total amount of wall time = 502.166458 +0:The maximum resident set size (KB) = 825472 Test 054 rap_sfcdiff_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/rap_sfcdiff_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/rap_sfcdiff_restart Checking test 055 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2404,14 +2406,14 @@ Checking test 055 rap_sfcdiff_restart results .... Comparing 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.376851 -0:The maximum resident set size (KB) = 570024 +0:The total amount of wall time = 353.842641 +0:The maximum resident set size (KB) = 570236 Test 055 rap_sfcdiff_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/hrrr_control Checking test 056 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2458,14 +2460,14 @@ Checking test 056 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 453.899563 -0:The maximum resident set size (KB) = 821300 +0:The total amount of wall time = 445.010339 +0:The maximum resident set size (KB) = 821252 Test 056 hrrr_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/hrrr_control_decomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/hrrr_control_decomp Checking test 057 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2512,14 +2514,14 @@ Checking test 057 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 473.240490 -0:The maximum resident set size (KB) = 820252 +0:The total amount of wall time = 486.199370 +0:The maximum resident set size (KB) = 820440 Test 057 hrrr_control_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/hrrr_control_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/hrrr_control_2threads Checking test 058 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2566,14 +2568,14 @@ Checking test 058 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 430.765278 -0:The maximum resident set size (KB) = 887936 +0:The total amount of wall time = 432.658913 +0:The maximum resident set size (KB) = 887924 Test 058 hrrr_control_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/hrrr_control_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/hrrr_control_restart Checking test 059 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2612,14 +2614,14 @@ Checking test 059 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 343.356341 -0:The maximum resident set size (KB) = 568652 +0:The total amount of wall time = 341.985969 +0:The maximum resident set size (KB) = 568756 Test 059 hrrr_control_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/rrfs_v1beta +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/rrfs_v1beta Checking test 060 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2666,14 +2668,14 @@ Checking test 060 rrfs_v1beta results .... Comparing 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.428015 -0:The maximum resident set size (KB) = 820016 +0:The total amount of wall time = 455.051703 +0:The maximum resident set size (KB) = 820004 Test 060 rrfs_v1beta PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/rrfs_v1nssl +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/rrfs_v1nssl Checking test 061 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2688,14 +2690,14 @@ Checking test 061 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 565.029304 -0:The maximum resident set size (KB) = 508192 +0:The total amount of wall time = 571.431349 +0:The maximum resident set size (KB) = 508188 Test 061 rrfs_v1nssl PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/rrfs_v1nssl_nohailnoccn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/rrfs_v1nssl_nohailnoccn Checking test 062 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2710,14 +2712,14 @@ Checking test 062 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 554.065625 -0:The maximum resident set size (KB) = 501268 +0:The total amount of wall time = 549.802828 +0:The maximum resident set size (KB) = 501368 Test 062 rrfs_v1nssl_nohailnoccn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/rrfs_conus13km_hrrr_warm Checking test 063 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2726,14 +2728,14 @@ Checking test 063 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 129.303851 -0:The maximum resident set size (KB) = 639180 +0:The total amount of wall time = 127.011710 +0:The maximum resident set size (KB) = 638940 Test 063 rrfs_conus13km_hrrr_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/rrfs_smoke_conus13km_hrrr_warm Checking test 064 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2742,14 +2744,14 @@ Checking test 064 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 145.591474 -0:The maximum resident set size (KB) = 653004 +0:The total amount of wall time = 144.151637 +0:The maximum resident set size (KB) = 653020 Test 064 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/rrfs_conus13km_radar_tten_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/rrfs_conus13km_radar_tten_warm Checking test 065 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2758,14 +2760,14 @@ Checking test 065 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 129.276477 -0:The maximum resident set size (KB) = 641284 +0:The total amount of wall time = 128.706220 +0:The maximum resident set size (KB) = 641252 Test 065 rrfs_conus13km_radar_tten_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/rrfs_conus13km_hrrr_warm_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/rrfs_conus13km_hrrr_warm_2threads Checking test 066 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2774,14 +2776,14 @@ Checking test 066 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 82.878171 -0:The maximum resident set size (KB) = 655532 +0:The total amount of wall time = 84.721402 +0:The maximum resident set size (KB) = 655548 Test 066 rrfs_conus13km_hrrr_warm_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/rrfs_conus13km_radar_tten_warm_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/rrfs_conus13km_radar_tten_warm_2threads Checking test 067 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2790,14 +2792,14 @@ Checking test 067 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 83.128396 -0:The maximum resident set size (KB) = 658276 +0:The total amount of wall time = 81.259586 +0:The maximum resident set size (KB) = 658444 Test 067 rrfs_conus13km_radar_tten_warm_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/control_csawmg +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/control_csawmg Checking test 068 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2808,14 +2810,14 @@ Checking test 068 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 399.729889 +0:The total amount of wall time = 397.782300 0:The maximum resident set size (KB) = 529056 Test 068 control_csawmg PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/control_csawmgt +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/control_csawmgt Checking test 069 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2826,14 +2828,14 @@ Checking test 069 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 394.507380 -0:The maximum resident set size (KB) = 529008 +0:The total amount of wall time = 392.492675 +0:The maximum resident set size (KB) = 529044 Test 069 control_csawmgt PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/control_ras +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/control_ras Checking test 070 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2844,26 +2846,26 @@ Checking test 070 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 204.112985 -0:The maximum resident set size (KB) = 487632 +0:The total amount of wall time = 204.018867 +0:The maximum resident set size (KB) = 487756 Test 070 control_ras PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/control_wam +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/control_wam Checking test 071 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -0:The total amount of wall time = 123.823938 -0:The maximum resident set size (KB) = 205740 +0:The total amount of wall time = 129.315951 +0:The maximum resident set size (KB) = 205676 Test 071 control_wam PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_faster -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/control_p8_faster +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/control_p8_faster Checking test 072 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2910,14 +2912,14 @@ Checking test 072 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 171.062165 -0:The maximum resident set size (KB) = 1422808 +0:The total amount of wall time = 174.031076 +0:The maximum resident set size (KB) = 1422792 Test 072 control_p8_faster PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control_faster -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/regional_control_faster +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/regional_control_faster Checking test 073 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2928,42 +2930,42 @@ Checking test 073 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 325.099725 -0:The maximum resident set size (KB) = 603052 +0:The total amount of wall time = 327.012479 +0:The maximum resident set size (KB) = 603024 Test 073 regional_control_faster PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/rrfs_conus13km_hrrr_warm_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/rrfs_conus13km_hrrr_warm_debug Checking test 074 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 769.832307 -0:The maximum resident set size (KB) = 672144 +0:The total amount of wall time = 764.661320 +0:The maximum resident set size (KB) = 672184 Test 074 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/rrfs_conus13km_radar_tten_warm_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/rrfs_conus13km_radar_tten_warm_debug Checking test 075 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 770.754878 -0:The maximum resident set size (KB) = 673976 +0:The total amount of wall time = 765.606303 +0:The maximum resident set size (KB) = 673892 Test 075 rrfs_conus13km_radar_tten_warm_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/control_CubedSphereGrid_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/control_CubedSphereGrid_debug Checking test 076 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2990,334 +2992,334 @@ Checking test 076 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -0:The total amount of wall time = 177.871503 -0:The maximum resident set size (KB) = 621772 +0:The total amount of wall time = 174.610088 +0:The maximum resident set size (KB) = 621504 Test 076 control_CubedSphereGrid_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/control_wrtGauss_netcdf_parallel_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/control_wrtGauss_netcdf_parallel_debug Checking test 077 control_wrtGauss_netcdf_parallel_debug results .... - Comparing sfcf000.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK + Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 162.934794 -0:The maximum resident set size (KB) = 621436 +0:The total amount of wall time = 164.582888 +0:The maximum resident set size (KB) = 621336 Test 077 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/control_stochy_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/control_stochy_debug Checking test 078 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 184.422807 -0:The maximum resident set size (KB) = 625140 +0:The total amount of wall time = 183.060648 +0:The maximum resident set size (KB) = 625188 Test 078 control_stochy_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/control_lndp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/control_lndp_debug Checking test 079 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 169.852034 -0:The maximum resident set size (KB) = 627184 +0:The total amount of wall time = 164.871902 +0:The maximum resident set size (KB) = 627220 Test 079 control_lndp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/control_csawmg_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/control_csawmg_debug Checking test 080 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 260.110130 -0:The maximum resident set size (KB) = 671312 +0:The total amount of wall time = 257.636248 +0:The maximum resident set size (KB) = 671380 Test 080 control_csawmg_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/control_csawmgt_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/control_csawmgt_debug Checking test 081 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 254.125311 -0:The maximum resident set size (KB) = 671124 +0:The total amount of wall time = 252.814032 +0:The maximum resident set size (KB) = 671092 Test 081 control_csawmgt_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/control_ras_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/control_ras_debug Checking test 082 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 167.795038 -0:The maximum resident set size (KB) = 632424 +0:The total amount of wall time = 166.755510 +0:The maximum resident set size (KB) = 632624 Test 082 control_ras_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/control_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/control_diag_debug Checking test 083 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 171.586400 -0:The maximum resident set size (KB) = 677920 +0:The total amount of wall time = 169.199318 +0:The maximum resident set size (KB) = 678052 Test 083 control_diag_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/control_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/control_debug_p8 Checking test 084 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 185.865407 -0:The maximum resident set size (KB) = 1444180 +0:The total amount of wall time = 184.753718 +0:The maximum resident set size (KB) = 1444204 Test 084 control_debug_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/regional_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/regional_debug Checking test 085 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 1040.632194 -0:The maximum resident set size (KB) = 629056 +0:The total amount of wall time = 1036.831500 +0:The maximum resident set size (KB) = 629012 Test 085 regional_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/rap_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/rap_control_debug Checking test 086 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 297.968045 -0:The maximum resident set size (KB) = 989828 +0:The total amount of wall time = 295.753529 +0:The maximum resident set size (KB) = 989712 Test 086 rap_control_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/hrrr_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/hrrr_control_debug Checking test 087 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 294.080471 -0:The maximum resident set size (KB) = 988760 +0:The total amount of wall time = 291.460689 +0:The maximum resident set size (KB) = 988852 Test 087 hrrr_control_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/rap_unified_drag_suite_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/rap_unified_drag_suite_debug Checking test 088 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 296.054292 -0:The maximum resident set size (KB) = 989868 +0:The total amount of wall time = 295.634375 +0:The maximum resident set size (KB) = 989892 Test 088 rap_unified_drag_suite_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/rap_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/rap_diag_debug Checking test 089 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 309.184993 -0:The maximum resident set size (KB) = 1074284 +0:The total amount of wall time = 309.422372 +0:The maximum resident set size (KB) = 1074392 Test 089 rap_diag_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/rap_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/rap_cires_ugwp_debug Checking test 090 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 301.787188 -0:The maximum resident set size (KB) = 988728 +0:The total amount of wall time = 301.105878 +0:The maximum resident set size (KB) = 988592 Test 090 rap_cires_ugwp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/rap_unified_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/rap_unified_ugwp_debug Checking test 091 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 302.121379 -0:The maximum resident set size (KB) = 992032 +0:The total amount of wall time = 301.888386 +0:The maximum resident set size (KB) = 991940 Test 091 rap_unified_ugwp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_lndp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/rap_lndp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/rap_lndp_debug Checking test 092 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 298.551830 -0:The maximum resident set size (KB) = 990624 +0:The total amount of wall time = 297.897647 +0:The maximum resident set size (KB) = 990612 Test 092 rap_lndp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_flake_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/rap_flake_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/rap_flake_debug Checking test 093 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 295.638127 -0:The maximum resident set size (KB) = 989900 +0:The total amount of wall time = 295.669727 +0:The maximum resident set size (KB) = 990024 Test 093 rap_flake_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_progcld_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/rap_progcld_thompson_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/rap_progcld_thompson_debug Checking test 094 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 296.210358 -0:The maximum resident set size (KB) = 989980 +0:The total amount of wall time = 295.909969 +0:The maximum resident set size (KB) = 989832 Test 094 rap_progcld_thompson_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/rap_noah_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/rap_noah_debug Checking test 095 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 289.780069 -0:The maximum resident set size (KB) = 988620 +0:The total amount of wall time = 289.364120 +0:The maximum resident set size (KB) = 988500 Test 095 rap_noah_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/rap_sfcdiff_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/rap_sfcdiff_debug Checking test 096 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 295.322959 -0:The maximum resident set size (KB) = 991308 +0:The total amount of wall time = 295.874801 +0:The maximum resident set size (KB) = 991288 Test 096 rap_sfcdiff_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/rap_noah_sfcdiff_cires_ugwp_debug Checking test 097 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 481.094050 -0:The maximum resident set size (KB) = 989412 +0:The total amount of wall time = 479.711415 +0:The maximum resident set size (KB) = 989556 Test 097 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/rrfs_v1beta_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/rrfs_v1beta_debug Checking test 098 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 290.782344 -0:The maximum resident set size (KB) = 986380 +0:The total amount of wall time = 297.998381 +0:The maximum resident set size (KB) = 986428 Test 098 rrfs_v1beta_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/control_wam_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/control_wam_debug Checking test 099 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 300.616130 -0:The maximum resident set size (KB) = 239092 +0:The total amount of wall time = 297.266894 +0:The maximum resident set size (KB) = 239048 Test 099 control_wam_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 100 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3328,14 +3330,14 @@ Checking test 100 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 301.681279 -0:The maximum resident set size (KB) = 848304 +0:The total amount of wall time = 302.241982 +0:The maximum resident set size (KB) = 848396 Test 100 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/rap_control_dyn32_phy32 Checking test 101 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3382,14 +3384,14 @@ Checking test 101 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 386.030745 -0:The maximum resident set size (KB) = 707144 +0:The total amount of wall time = 385.840183 +0:The maximum resident set size (KB) = 707124 Test 101 rap_control_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/hrrr_control_dyn32_phy32 Checking test 102 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3436,14 +3438,14 @@ Checking test 102 hrrr_control_dyn32_phy32 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 = 206.626338 -0:The maximum resident set size (KB) = 705476 +0:The total amount of wall time = 204.534101 +0:The maximum resident set size (KB) = 705408 Test 102 hrrr_control_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/rap_2threads_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/rap_2threads_dyn32_phy32 Checking test 103 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3490,14 +3492,14 @@ Checking test 103 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 375.401911 -0:The maximum resident set size (KB) = 757420 +0:The total amount of wall time = 375.400725 +0:The maximum resident set size (KB) = 757180 Test 103 rap_2threads_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/hrrr_control_2threads_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/hrrr_control_2threads_dyn32_phy32 Checking test 104 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3544,14 +3546,14 @@ Checking test 104 hrrr_control_2threads_dyn32_phy32 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 = 202.106909 -0:The maximum resident set size (KB) = 758352 +0:The total amount of wall time = 202.002673 +0:The maximum resident set size (KB) = 758464 Test 104 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/hrrr_control_decomp_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/hrrr_control_decomp_dyn32_phy32 Checking test 105 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3598,14 +3600,14 @@ Checking test 105 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 219.333427 -0:The maximum resident set size (KB) = 703984 +0:The total amount of wall time = 216.608546 +0:The maximum resident set size (KB) = 703928 Test 105 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/rap_restart_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/rap_restart_dyn32_phy32 Checking test 106 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3644,14 +3646,14 @@ Checking test 106 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 289.420062 -0:The maximum resident set size (KB) = 544648 +0:The total amount of wall time = 294.396803 +0:The maximum resident set size (KB) = 544720 Test 106 rap_restart_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/hrrr_control_restart_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/hrrr_control_restart_dyn32_phy32 Checking test 107 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3690,14 +3692,14 @@ Checking test 107 hrrr_control_restart_dyn32_phy32 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 = 106.329564 -0:The maximum resident set size (KB) = 536736 +0:The total amount of wall time = 105.385998 +0:The maximum resident set size (KB) = 536524 Test 107 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/rap_control_dyn64_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/rap_control_dyn64_phy32 Checking test 108 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3744,81 +3746,81 @@ Checking test 108 rap_control_dyn64_phy32 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 = 269.239843 -0:The maximum resident set size (KB) = 726760 +0:The total amount of wall time = 268.118341 +0:The maximum resident set size (KB) = 726704 Test 108 rap_control_dyn64_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/rap_control_debug_dyn32_phy32 Checking test 109 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 295.288326 -0:The maximum resident set size (KB) = 876388 +0:The total amount of wall time = 291.562697 +0:The maximum resident set size (KB) = 876308 Test 109 rap_control_debug_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/hrrr_control_debug_dyn32_phy32 Checking test 110 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 288.670290 -0:The maximum resident set size (KB) = 874412 +0:The total amount of wall time = 286.252370 +0:The maximum resident set size (KB) = 874552 Test 110 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/rap_control_dyn64_phy32_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/rap_control_dyn64_phy32_debug Checking test 111 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 297.081528 -0:The maximum resident set size (KB) = 893380 +0:The total amount of wall time = 295.315381 +0:The maximum resident set size (KB) = 893420 Test 111 rap_control_dyn64_phy32_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/hafs_regional_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/hafs_regional_atm Checking test 112 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -0:The total amount of wall time = 264.939970 -0:The maximum resident set size (KB) = 739044 +0:The total amount of wall time = 265.754985 +0:The maximum resident set size (KB) = 740100 Test 112 hafs_regional_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/hafs_regional_atm_thompson_gfdlsf +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/hafs_regional_atm_thompson_gfdlsf Checking test 113 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -0:The total amount of wall time = 291.156680 -0:The maximum resident set size (KB) = 1090904 +0:The total amount of wall time = 287.196142 +0:The maximum resident set size (KB) = 1091556 Test 113 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/hafs_regional_atm_ocn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/hafs_regional_atm_ocn Checking test 114 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3827,14 +3829,14 @@ Checking test 114 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 460.985450 -0:The maximum resident set size (KB) = 738656 +0:The total amount of wall time = 453.171608 +0:The maximum resident set size (KB) = 738532 Test 114 hafs_regional_atm_ocn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_wav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/hafs_regional_atm_wav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/hafs_regional_atm_wav Checking test 115 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3843,14 +3845,14 @@ Checking test 115 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 1069.171712 -0:The maximum resident set size (KB) = 766364 +0:The total amount of wall time = 1080.167043 +0:The maximum resident set size (KB) = 766764 Test 115 hafs_regional_atm_wav PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn_wav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/hafs_regional_atm_ocn_wav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/hafs_regional_atm_ocn_wav Checking test 116 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3861,28 +3863,28 @@ Checking test 116 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 1139.259391 -0:The maximum resident set size (KB) = 790648 +0:The total amount of wall time = 1114.581313 +0:The maximum resident set size (KB) = 790016 Test 116 hafs_regional_atm_ocn_wav PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/hafs_regional_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/hafs_regional_1nest_atm Checking test 117 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 375.451819 -0:The maximum resident set size (KB) = 293392 +0:The total amount of wall time = 379.324316 +0:The maximum resident set size (KB) = 293388 Test 117 hafs_regional_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/hafs_regional_telescopic_2nests_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/hafs_regional_telescopic_2nests_atm Checking test 118 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3891,28 +3893,28 @@ Checking test 118 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -0:The total amount of wall time = 431.933784 -0:The maximum resident set size (KB) = 309116 +0:The total amount of wall time = 428.413189 +0:The maximum resident set size (KB) = 309084 Test 118 hafs_regional_telescopic_2nests_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/hafs_global_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/hafs_global_1nest_atm Checking test 119 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 173.619886 -0:The maximum resident set size (KB) = 206056 +0:The total amount of wall time = 170.953834 +0:The maximum resident set size (KB) = 206532 Test 119 hafs_global_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_multiple_4nests_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/hafs_global_multiple_4nests_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/hafs_global_multiple_4nests_atm Checking test 120 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3930,14 +3932,14 @@ Checking test 120 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -0:The total amount of wall time = 487.596943 -0:The maximum resident set size (KB) = 292352 +0:The total amount of wall time = 489.946164 +0:The maximum resident set size (KB) = 292392 Test 120 hafs_global_multiple_4nests_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/hafs_regional_specified_moving_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/hafs_regional_specified_moving_1nest_atm Checking test 121 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3946,28 +3948,28 @@ Checking test 121 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -0:The total amount of wall time = 241.236438 -0:The maximum resident set size (KB) = 306804 +0:The total amount of wall time = 241.380736 +0:The maximum resident set size (KB) = 306564 Test 121 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/hafs_regional_storm_following_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/hafs_regional_storm_following_1nest_atm Checking test 122 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 230.363326 -0:The maximum resident set size (KB) = 306156 +0:The total amount of wall time = 228.449388 +0:The maximum resident set size (KB) = 306744 Test 122 hafs_regional_storm_following_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/hafs_regional_storm_following_1nest_atm_ocn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/hafs_regional_storm_following_1nest_atm_ocn Checking test 123 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3976,42 +3978,42 @@ Checking test 123 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -0:The total amount of wall time = 277.904455 -0:The maximum resident set size (KB) = 353620 +0:The total amount of wall time = 279.067596 +0:The maximum resident set size (KB) = 353664 Test 123 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_storm_following_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/hafs_global_storm_following_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/hafs_global_storm_following_1nest_atm Checking test 124 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 67.231599 -0:The maximum resident set size (KB) = 222088 +0:The total amount of wall time = 66.094372 +0:The maximum resident set size (KB) = 221724 Test 124 hafs_global_storm_following_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 125 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 823.997991 -0:The maximum resident set size (KB) = 386832 +0:The total amount of wall time = 821.211719 +0:The maximum resident set size (KB) = 386884 Test 125 hafs_regional_storm_following_1nest_atm_ocn_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 126 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4022,14 +4024,14 @@ Checking test 126 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -0:The total amount of wall time = 762.381018 -0:The maximum resident set size (KB) = 417076 +0:The total amount of wall time = 766.749296 +0:The maximum resident set size (KB) = 416968 Test 126 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_docn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/hafs_regional_docn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/hafs_regional_docn Checking test 127 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4037,14 +4039,14 @@ Checking test 127 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 395.586302 -0:The maximum resident set size (KB) = 754152 +0:The total amount of wall time = 391.586507 +0:The maximum resident set size (KB) = 754188 Test 127 hafs_regional_docn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_docn_oisst -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/hafs_regional_docn_oisst +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/hafs_regional_docn_oisst Checking test 128 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4052,131 +4054,131 @@ Checking test 128 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 407.623142 -0:The maximum resident set size (KB) = 733480 +0:The total amount of wall time = 422.919867 +0:The maximum resident set size (KB) = 733812 Test 128 hafs_regional_docn_oisst PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_datm_cdeps -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/hafs_regional_datm_cdeps +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/hafs_regional_datm_cdeps Checking test 129 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -0:The total amount of wall time = 1280.923133 -0:The maximum resident set size (KB) = 887872 +0:The total amount of wall time = 1283.737353 +0:The maximum resident set size (KB) = 887896 Test 129 hafs_regional_datm_cdeps PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/datm_cdeps_control_cfsr Checking test 130 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 168.481157 -0:The maximum resident set size (KB) = 716692 +0:The total amount of wall time = 169.298449 +0:The maximum resident set size (KB) = 716748 Test 130 datm_cdeps_control_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/datm_cdeps_restart_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/datm_cdeps_restart_cfsr Checking test 131 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 97.625530 -0:The maximum resident set size (KB) = 704828 +0:The total amount of wall time = 100.681794 +0:The maximum resident set size (KB) = 715872 Test 131 datm_cdeps_restart_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/datm_cdeps_control_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/datm_cdeps_control_gefs Checking test 132 datm_cdeps_control_gefs 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 = 160.866708 -0:The maximum resident set size (KB) = 607504 +0:The total amount of wall time = 161.347413 +0:The maximum resident set size (KB) = 607484 Test 132 datm_cdeps_control_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_iau_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/datm_cdeps_iau_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/datm_cdeps_iau_gefs Checking test 133 datm_cdeps_iau_gefs 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 = 161.034591 -0:The maximum resident set size (KB) = 607460 +0:The total amount of wall time = 165.347102 +0:The maximum resident set size (KB) = 607576 Test 133 datm_cdeps_iau_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_stochy_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/datm_cdeps_stochy_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/datm_cdeps_stochy_gefs Checking test 134 datm_cdeps_stochy_gefs 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 = 164.407941 -0:The maximum resident set size (KB) = 607492 +0:The total amount of wall time = 163.686724 +0:The maximum resident set size (KB) = 607472 Test 134 datm_cdeps_stochy_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_ciceC_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/datm_cdeps_ciceC_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/datm_cdeps_ciceC_cfsr Checking test 135 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 168.960235 -0:The maximum resident set size (KB) = 716704 +0:The total amount of wall time = 169.451489 +0:The maximum resident set size (KB) = 727872 Test 135 datm_cdeps_ciceC_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_bulk_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/datm_cdeps_bulk_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/datm_cdeps_bulk_cfsr Checking test 136 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 168.938318 +0:The total amount of wall time = 168.915683 0:The maximum resident set size (KB) = 716716 Test 136 datm_cdeps_bulk_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_bulk_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/datm_cdeps_bulk_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/datm_cdeps_bulk_gefs Checking test 137 datm_cdeps_bulk_gefs 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 = 161.499464 -0:The maximum resident set size (KB) = 607444 +0:The total amount of wall time = 162.248383 +0:The maximum resident set size (KB) = 607528 Test 137 datm_cdeps_bulk_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_mx025_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/datm_cdeps_mx025_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/datm_cdeps_mx025_cfsr Checking test 138 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4185,14 +4187,14 @@ Checking test 138 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 417.790800 -0:The maximum resident set size (KB) = 514304 +0:The total amount of wall time = 688.992849 +0:The maximum resident set size (KB) = 514380 Test 138 datm_cdeps_mx025_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_mx025_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/datm_cdeps_mx025_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/datm_cdeps_mx025_gefs Checking test 139 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4201,77 +4203,77 @@ Checking test 139 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 761.450148 -0:The maximum resident set size (KB) = 494728 +0:The total amount of wall time = 691.039193 +0:The maximum resident set size (KB) = 494784 Test 139 datm_cdeps_mx025_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/datm_cdeps_multiple_files_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/datm_cdeps_multiple_files_cfsr Checking test 140 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 162.907088 -0:The maximum resident set size (KB) = 716716 +0:The total amount of wall time = 168.445482 +0:The maximum resident set size (KB) = 716736 Test 140 datm_cdeps_multiple_files_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/datm_cdeps_3072x1536_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/datm_cdeps_3072x1536_cfsr Checking test 141 datm_cdeps_3072x1536_cfsr 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 = 268.946965 -0:The maximum resident set size (KB) = 1937140 +0:The total amount of wall time = 258.511723 +0:The maximum resident set size (KB) = 1941128 Test 141 datm_cdeps_3072x1536_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_gfs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/datm_cdeps_gfs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/datm_cdeps_gfs Checking test 142 datm_cdeps_gfs 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 = 254.829144 -0:The maximum resident set size (KB) = 1940276 +0:The total amount of wall time = 269.968304 +0:The maximum resident set size (KB) = 1940312 Test 142 datm_cdeps_gfs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_debug_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/datm_cdeps_debug_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/datm_cdeps_debug_cfsr Checking test 143 datm_cdeps_debug_cfsr 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 = 458.890809 -0:The maximum resident set size (KB) = 717868 +0:The total amount of wall time = 459.008280 +0:The maximum resident set size (KB) = 706744 Test 143 datm_cdeps_debug_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr_faster -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/datm_cdeps_control_cfsr_faster +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/datm_cdeps_control_cfsr_faster Checking test 144 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 167.615572 -0:The maximum resident set size (KB) = 716768 +0:The total amount of wall time = 168.046948 +0:The maximum resident set size (KB) = 716796 Test 144 datm_cdeps_control_cfsr_faster PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/datm_cdeps_lnd_gswp3 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/datm_cdeps_lnd_gswp3 Checking test 145 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4280,14 +4282,14 @@ Checking test 145 datm_cdeps_lnd_gswp3 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 = 11.592106 -0:The maximum resident set size (KB) = 212700 +0:The total amount of wall time = 10.882367 +0:The maximum resident set size (KB) = 208188 Test 145 datm_cdeps_lnd_gswp3 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/datm_cdeps_lnd_gswp3_rst +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/datm_cdeps_lnd_gswp3_rst Checking test 146 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4296,14 +4298,14 @@ Checking test 146 datm_cdeps_lnd_gswp3_rst 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 = 16.266187 -0:The maximum resident set size (KB) = 208228 +0:The total amount of wall time = 15.562871 +0:The maximum resident set size (KB) = 208196 Test 146 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_atmlnd_sbs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/control_p8_atmlnd_sbs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/control_p8_atmlnd_sbs Checking test 147 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4388,14 +4390,14 @@ Checking test 147 control_p8_atmlnd_sbs 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 = 234.460915 -0:The maximum resident set size (KB) = 1461992 +0:The total amount of wall time = 237.231218 +0:The maximum resident set size (KB) = 1461976 Test 147 control_p8_atmlnd_sbs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_atmwav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/control_atmwav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/control_atmwav Checking test 148 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4439,14 +4441,14 @@ Checking test 148 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -0:The total amount of wall time = 99.722424 -0:The maximum resident set size (KB) = 474580 +0:The total amount of wall time = 99.879451 +0:The maximum resident set size (KB) = 474712 Test 148 control_atmwav PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/atmaero_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/atmaero_control_p8 Checking test 149 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4490,14 +4492,14 @@ Checking test 149 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 251.424569 -0:The maximum resident set size (KB) = 2703372 +0:The total amount of wall time = 249.544332 +0:The maximum resident set size (KB) = 2703368 Test 149 atmaero_control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/atmaero_control_p8_rad +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/atmaero_control_p8_rad Checking test 150 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4541,14 +4543,14 @@ Checking test 150 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 310.546962 -0:The maximum resident set size (KB) = 2757512 +0:The total amount of wall time = 302.855886 +0:The maximum resident set size (KB) = 2757504 Test 150 atmaero_control_p8_rad PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad_micro -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/atmaero_control_p8_rad_micro +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/atmaero_control_p8_rad_micro Checking test 151 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4592,14 +4594,14 @@ Checking test 151 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 309.558480 -0:The maximum resident set size (KB) = 2763888 +0:The total amount of wall time = 306.719502 +0:The maximum resident set size (KB) = 2763896 Test 151 atmaero_control_p8_rad_micro PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/regional_atmaq +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/regional_atmaq Checking test 152 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4615,14 +4617,14 @@ Checking test 152 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -0:The total amount of wall time = 1127.324163 -0:The maximum resident set size (KB) = 1146108 +0:The total amount of wall time = 1053.465055 +0:The maximum resident set size (KB) = 1146068 Test 152 regional_atmaq PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq_faster -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_33448/regional_atmaq_faster +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/regional_atmaq_faster Checking test 153 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4638,12 +4640,12 @@ Checking test 153 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -0:The total amount of wall time = 1118.313271 -0:The maximum resident set size (KB) = 1146224 +0:The total amount of wall time = 1033.010356 +0:The maximum resident set size (KB) = 1146036 Test 153 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Fri Mar 10 08:43:27 MST 2023 -Elapsed time: 02h:05m:03s. Have a nice day! +Mon Mar 13 22:44:12 MDT 2023 +Elapsed time: 03h:20m:26s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index 88ac80b83bb..fef5b07c4db 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,44 +1,42 @@ -Fri Mar 10 09:20:08 EST 2023 +Mon Mar 13 21:51:57 EDT 2023 Start Regression test -Test 003 compile FAIL - -Compile 001 elapsed time 984 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 948 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 814 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 411 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 373 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 966 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 846 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 1099 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 839 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 870 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 686 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 627 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 1133 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 270 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 259 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 674 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 623 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 261 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 209 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 742 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 021 elapsed time 282 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 884 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 728 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 024 elapsed time 276 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 172 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 297 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 112 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 703 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 668 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 673 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 735 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 240 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 895 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 1006 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1026 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 968 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 441 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 384 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 840 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 955 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 1261 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 852 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 878 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 776 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 651 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 967 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 408 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 260 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 816 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 747 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 288 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 286 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 734 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 021 elapsed time 309 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 919 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 822 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 024 elapsed time 398 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 311 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 385 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 164 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 800 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 782 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 738 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 766 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 268 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 886 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_mixedmode -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/cpld_control_p8_mixedmode +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -103,14 +101,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 328.940515 - 0: The maximum resident set size (KB) = 1534756 + 0: The total amount of wall time = 372.610475 + 0: The maximum resident set size (KB) = 1532456 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_gfsv17 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/cpld_control_gfsv17 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -174,14 +172,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 247.307559 - 0: The maximum resident set size (KB) = 1443512 + 0: The total amount of wall time = 276.061687 + 0: The maximum resident set size (KB) = 1443532 Test 002 cpld_control_gfsv17 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/cpld_control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -246,14 +244,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 376.423168 - 0: The maximum resident set size (KB) = 1568400 + 0: The total amount of wall time = 405.874841 + 0: The maximum resident set size (KB) = 1567868 Test 003 cpld_control_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/cpld_restart_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -306,14 +304,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 251.572999 - 0: The maximum resident set size (KB) = 1018892 + 0: The total amount of wall time = 219.695398 + 0: The maximum resident set size (KB) = 1018988 Test 004 cpld_restart_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/cpld_2threads_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -366,74 +364,16 @@ Checking test 005 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 399.286099 - 0: The maximum resident set size (KB) = 1759016 + 0: The total amount of wall time = 437.428839 + 0: The maximum resident set size (KB) = 1760472 Test 005 cpld_2threads_p8 PASS - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/cpld_decomp_p8 -Checking test 006 cpld_decomp_p8 results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 383.147597 - 0: The maximum resident set size (KB) = 1561792 - -Test 006 cpld_decomp_p8 PASS +Test 006 cpld_decomp_p8 FAIL baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/cpld_mpi_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/cpld_mpi_p8 Checking test 007 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -486,14 +426,14 @@ Checking test 007 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 316.814643 - 0: The maximum resident set size (KB) = 1526480 + 0: The total amount of wall time = 351.687722 + 0: The maximum resident set size (KB) = 1527008 Test 007 cpld_mpi_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_ciceC_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/cpld_control_ciceC_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/cpld_control_ciceC_p8 Checking test 008 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -558,14 +498,14 @@ Checking test 008 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 384.907231 - 0: The maximum resident set size (KB) = 1568164 + 0: The total amount of wall time = 411.813718 + 0: The maximum resident set size (KB) = 1568364 Test 008 cpld_control_ciceC_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c192_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/cpld_control_c192_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/cpld_control_c192_p8 Checking test 009 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -618,14 +558,14 @@ Checking test 009 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 752.944392 - 0: The maximum resident set size (KB) = 1761664 + 0: The total amount of wall time = 804.202562 + 0: The maximum resident set size (KB) = 1761136 Test 009 cpld_control_c192_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c192_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/cpld_restart_c192_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/cpld_restart_c192_p8 Checking test 010 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -678,14 +618,14 @@ Checking test 010 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 596.211834 - 0: The maximum resident set size (KB) = 1924904 + 0: The total amount of wall time = 584.665110 + 0: The maximum resident set size (KB) = 1924728 Test 010 cpld_restart_c192_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_bmark_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/cpld_bmark_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/cpld_bmark_p8 Checking test 011 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -733,14 +673,14 @@ Checking test 011 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 902.775694 - 0: The maximum resident set size (KB) = 2502868 + 0: The total amount of wall time = 886.713784 + 0: The maximum resident set size (KB) = 2503316 Test 011 cpld_bmark_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_bmark_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/cpld_restart_bmark_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/cpld_restart_bmark_p8 Checking test 012 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -788,14 +728,14 @@ Checking test 012 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 822.146947 - 0: The maximum resident set size (KB) = 2330296 + 0: The total amount of wall time = 636.572505 + 0: The maximum resident set size (KB) = 2330108 Test 012 cpld_restart_bmark_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/cpld_control_noaero_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/cpld_control_noaero_p8 Checking test 013 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -859,14 +799,14 @@ Checking test 013 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 330.185775 - 0: The maximum resident set size (KB) = 1440548 + 0: The total amount of wall time = 306.903283 + 0: The maximum resident set size (KB) = 1440636 Test 013 cpld_control_noaero_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c96_noaero_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/cpld_control_nowave_noaero_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/cpld_control_nowave_noaero_p8 Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -928,74 +868,16 @@ Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 346.551861 - 0: The maximum resident set size (KB) = 1473836 + 0: The total amount of wall time = 321.947809 + 0: The maximum resident set size (KB) = 1473464 Test 014 cpld_control_nowave_noaero_p8 PASS - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_debug_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/cpld_debug_p8 -Checking test 015 cpld_debug_p8 results .... - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing gocart.inst_aod.20210322_0900z.nc4 .........OK - Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-32400.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK - Comparing 20210322.090000.out_pnt.ww3 .........OK - Comparing 20210322.090000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 589.959744 - 0: The maximum resident set size (KB) = 1595816 - -Test 015 cpld_debug_p8 PASS +Test 015 cpld_debug_p8 FAIL baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_debug_noaero_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/cpld_debug_noaero_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/cpld_debug_noaero_p8 Checking test 016 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1047,14 +929,14 @@ Checking test 016 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 402.316400 - 0: The maximum resident set size (KB) = 1441720 + 0: The total amount of wall time = 405.298029 + 0: The maximum resident set size (KB) = 1441196 Test 016 cpld_debug_noaero_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8_agrid -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/cpld_control_noaero_p8_agrid +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/cpld_control_noaero_p8_agrid Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1116,14 +998,14 @@ Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 305.327022 - 0: The maximum resident set size (KB) = 1476240 + 0: The total amount of wall time = 307.651844 + 0: The maximum resident set size (KB) = 1476280 Test 017 cpld_control_noaero_p8_agrid PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c48 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/cpld_control_c48 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/cpld_control_c48 Checking test 018 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1173,14 +1055,14 @@ Checking test 018 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 603.684910 - 0: The maximum resident set size (KB) = 2568964 + 0: The total amount of wall time = 628.418348 + 0: The maximum resident set size (KB) = 2568924 Test 018 cpld_control_c48 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/cpld_warmstart_c48 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/cpld_warmstart_c48 Checking test 019 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1230,14 +1112,14 @@ Checking test 019 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 161.722777 - 0: The maximum resident set size (KB) = 2585680 + 0: The total amount of wall time = 185.159808 + 0: The maximum resident set size (KB) = 2586072 Test 019 cpld_warmstart_c48 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/cpld_restart_c48 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/cpld_restart_c48 Checking test 020 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1287,14 +1169,14 @@ Checking test 020 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 93.034925 - 0: The maximum resident set size (KB) = 1996428 + 0: The total amount of wall time = 85.883854 + 0: The maximum resident set size (KB) = 1996260 Test 020 cpld_restart_c48 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_faster -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/cpld_control_p8_faster +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/cpld_control_p8_faster Checking test 021 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1359,14 +1241,14 @@ Checking test 021 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 454.440357 - 0: The maximum resident set size (KB) = 1568848 + 0: The total amount of wall time = 401.560340 + 0: The maximum resident set size (KB) = 1567416 Test 021 cpld_control_p8_faster PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/control_CubedSphereGrid +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/control_CubedSphereGrid Checking test 022 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1393,28 +1275,28 @@ Checking test 022 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 257.791156 - 0: The maximum resident set size (KB) = 437356 + 0: The total amount of wall time = 141.992776 + 0: The maximum resident set size (KB) = 437244 -Test 022 control_CubedSphereGrid PASS Tries: 2 +Test 022 control_CubedSphereGrid PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/control_CubedSphereGrid_parallel +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/control_CubedSphereGrid_parallel Checking test 023 control_CubedSphereGrid_parallel 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 = 142.780836 - 0: The maximum resident set size (KB) = 437088 + 0: The total amount of wall time = 141.923464 + 0: The maximum resident set size (KB) = 437068 Test 023 control_CubedSphereGrid_parallel PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_latlon -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/control_latlon +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/control_latlon Checking test 024 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1425,14 +1307,14 @@ Checking test 024 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 142.329051 - 0: The maximum resident set size (KB) = 437036 + 0: The total amount of wall time = 142.445056 + 0: The maximum resident set size (KB) = 436880 Test 024 control_latlon PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/control_wrtGauss_netcdf_parallel +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/control_wrtGauss_netcdf_parallel Checking test 025 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1443,14 +1325,14 @@ Checking test 025 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 154.661529 - 0: The maximum resident set size (KB) = 436952 + 0: The total amount of wall time = 151.854444 + 0: The maximum resident set size (KB) = 437100 Test 025 control_wrtGauss_netcdf_parallel PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c48 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/control_c48 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/control_c48 Checking test 026 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1489,14 +1371,14 @@ Checking test 026 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 419.440668 -0: The maximum resident set size (KB) = 630276 +0: The total amount of wall time = 419.391325 +0: The maximum resident set size (KB) = 631036 Test 026 control_c48 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c192 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/control_c192 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/control_c192 Checking test 027 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1507,14 +1389,14 @@ Checking test 027 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 577.531710 - 0: The maximum resident set size (KB) = 540044 + 0: The total amount of wall time = 583.072977 + 0: The maximum resident set size (KB) = 540160 Test 027 control_c192 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/control_c384 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/control_c384 Checking test 028 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1525,14 +1407,14 @@ Checking test 028 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1154.529647 - 0: The maximum resident set size (KB) = 818360 + 0: The total amount of wall time = 1120.984782 + 0: The maximum resident set size (KB) = 818356 Test 028 control_c384 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384gdas -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/control_c384gdas +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/control_c384gdas Checking test 029 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1575,14 +1457,14 @@ Checking test 029 control_c384gdas 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 = 959.902117 - 0: The maximum resident set size (KB) = 948376 + 0: The total amount of wall time = 967.905421 + 0: The maximum resident set size (KB) = 948360 Test 029 control_c384gdas PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/control_stochy +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/control_stochy Checking test 030 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1593,28 +1475,28 @@ Checking test 030 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 97.952149 - 0: The maximum resident set size (KB) = 440264 + 0: The total amount of wall time = 97.587299 + 0: The maximum resident set size (KB) = 440304 Test 030 control_stochy PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/control_stochy_restart +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/control_stochy_restart Checking test 031 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 86.378668 - 0: The maximum resident set size (KB) = 194648 + 0: The total amount of wall time = 53.029362 + 0: The maximum resident set size (KB) = 194608 Test 031 control_stochy_restart PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/control_lndp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/control_lndp Checking test 032 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1625,14 +1507,14 @@ Checking test 032 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 87.599028 - 0: The maximum resident set size (KB) = 440128 + 0: The total amount of wall time = 90.846628 + 0: The maximum resident set size (KB) = 440328 Test 032 control_lndp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr4 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/control_iovr4 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/control_iovr4 Checking test 033 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1647,14 +1529,14 @@ Checking test 033 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 144.463823 - 0: The maximum resident set size (KB) = 437060 + 0: The total amount of wall time = 151.769934 + 0: The maximum resident set size (KB) = 437024 Test 033 control_iovr4 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr5 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/control_iovr5 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/control_iovr5 Checking test 034 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1669,14 +1551,14 @@ Checking test 034 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 143.113757 - 0: The maximum resident set size (KB) = 436988 + 0: The total amount of wall time = 147.067735 + 0: The maximum resident set size (KB) = 436948 Test 034 control_iovr5 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/control_p8 Checking test 035 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1723,14 +1605,14 @@ Checking test 035 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 178.046858 - 0: The maximum resident set size (KB) = 1379696 + 0: The total amount of wall time = 184.249988 + 0: The maximum resident set size (KB) = 1379600 Test 035 control_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_lndp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/control_p8_lndp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/control_p8_lndp Checking test 036 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1749,14 +1631,14 @@ Checking test 036 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 346.295861 - 0: The maximum resident set size (KB) = 1379656 + 0: The total amount of wall time = 349.112876 + 0: The maximum resident set size (KB) = 1379732 Test 036 control_p8_lndp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/control_restart_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/control_restart_p8 Checking test 037 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1795,14 +1677,14 @@ Checking test 037 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 128.876920 - 0: The maximum resident set size (KB) = 556116 + 0: The total amount of wall time = 110.535855 + 0: The maximum resident set size (KB) = 556096 Test 037 control_restart_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/control_decomp_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/control_decomp_p8 Checking test 038 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1845,14 +1727,14 @@ Checking test 038 control_decomp_p8 results .... Comparing 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.903700 - 0: The maximum resident set size (KB) = 1374124 + 0: The total amount of wall time = 184.716491 + 0: The maximum resident set size (KB) = 1374076 Test 038 control_decomp_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/control_2threads_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/control_2threads_p8 Checking test 039 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1895,14 +1777,14 @@ Checking test 039 control_2threads_p8 results .... Comparing 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.573608 - 0: The maximum resident set size (KB) = 1457112 + 0: The total amount of wall time = 177.192269 + 0: The maximum resident set size (KB) = 1457068 Test 039 control_2threads_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_rrtmgp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/control_p8_rrtmgp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/control_p8_rrtmgp Checking test 040 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1949,14 +1831,14 @@ Checking test 040 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 248.870929 - 0: The maximum resident set size (KB) = 1437408 + 0: The total amount of wall time = 249.743105 + 0: The maximum resident set size (KB) = 1437308 Test 040 control_p8_rrtmgp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/merra2_thompson -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/merra2_thompson +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/merra2_thompson Checking test 041 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2003,14 +1885,14 @@ Checking test 041 merra2_thompson results .... Comparing 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.146630 - 0: The maximum resident set size (KB) = 1385848 + 0: The total amount of wall time = 216.168249 + 0: The maximum resident set size (KB) = 1385876 Test 041 merra2_thompson PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/regional_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/regional_control Checking test 042 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2021,28 +1903,28 @@ Checking test 042 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 334.028129 - 0: The maximum resident set size (KB) = 577824 + 0: The total amount of wall time = 345.443991 + 0: The maximum resident set size (KB) = 577728 Test 042 regional_control PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/regional_restart +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/regional_restart Checking test 043 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 177.014195 - 0: The maximum resident set size (KB) = 577440 + 0: The total amount of wall time = 195.285761 + 0: The maximum resident set size (KB) = 577464 -Test 043 regional_restart PASS Tries: 2 +Test 043 regional_restart PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/regional_decomp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/regional_decomp Checking test 044 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2053,14 +1935,14 @@ Checking test 044 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 352.843280 - 0: The maximum resident set size (KB) = 579324 + 0: The total amount of wall time = 364.107987 + 0: The maximum resident set size (KB) = 579364 Test 044 regional_decomp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/regional_2threads +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/regional_2threads Checking test 045 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2071,14 +1953,14 @@ Checking test 045 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 214.129623 - 0: The maximum resident set size (KB) = 585332 + 0: The total amount of wall time = 235.644226 + 0: The maximum resident set size (KB) = 585416 Test 045 regional_2threads PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_noquilt -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/regional_noquilt +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/regional_noquilt Checking test 046 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2086,28 +1968,28 @@ Checking test 046 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 360.806136 - 0: The maximum resident set size (KB) = 572884 + 0: The total amount of wall time = 382.732580 + 0: The maximum resident set size (KB) = 573056 -Test 046 regional_noquilt PASS Tries: 2 +Test 046 regional_noquilt PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_netcdf_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/regional_netcdf_parallel +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/regional_netcdf_parallel Checking test 047 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 335.100444 - 0: The maximum resident set size (KB) = 576944 + 0: The total amount of wall time = 344.533136 + 0: The maximum resident set size (KB) = 576928 Test 047 regional_netcdf_parallel PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/regional_2dwrtdecomp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/regional_2dwrtdecomp Checking test 048 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2118,14 +2000,14 @@ Checking test 048 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 332.761038 - 0: The maximum resident set size (KB) = 577832 + 0: The total amount of wall time = 352.739481 + 0: The maximum resident set size (KB) = 577872 Test 048 regional_2dwrtdecomp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/fv3_regional_wofs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/regional_wofs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/regional_wofs Checking test 049 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2136,14 +2018,14 @@ Checking test 049 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 421.261422 - 0: The maximum resident set size (KB) = 263280 + 0: The total amount of wall time = 427.855392 + 0: The maximum resident set size (KB) = 263032 Test 049 regional_wofs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/rap_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/rap_control Checking test 050 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2190,14 +2072,14 @@ Checking test 050 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 475.655610 - 0: The maximum resident set size (KB) = 807540 + 0: The total amount of wall time = 476.697797 + 0: The maximum resident set size (KB) = 807668 Test 050 rap_control PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/regional_spp_sppt_shum_skeb +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/regional_spp_sppt_shum_skeb Checking test 051 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2208,14 +2090,14 @@ Checking test 051 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 372.767638 - 0: The maximum resident set size (KB) = 887956 + 0: The total amount of wall time = 345.890412 + 0: The maximum resident set size (KB) = 897632 Test 051 regional_spp_sppt_shum_skeb PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/rap_decomp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/rap_decomp Checking test 052 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2262,14 +2144,14 @@ Checking test 052 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 529.357089 - 0: The maximum resident set size (KB) = 807152 + 0: The total amount of wall time = 505.969098 + 0: The maximum resident set size (KB) = 807168 Test 052 rap_decomp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/rap_2threads +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/rap_2threads Checking test 053 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2316,14 +2198,14 @@ Checking test 053 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 478.863250 - 0: The maximum resident set size (KB) = 877512 + 0: The total amount of wall time = 471.034644 + 0: The maximum resident set size (KB) = 875256 Test 053 rap_2threads PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/rap_restart +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/rap_restart Checking test 054 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2362,14 +2244,14 @@ Checking test 054 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 252.992933 - 0: The maximum resident set size (KB) = 553236 + 0: The total amount of wall time = 249.409988 + 0: The maximum resident set size (KB) = 554084 Test 054 rap_restart PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/rap_sfcdiff +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/rap_sfcdiff Checking test 055 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2416,14 +2298,14 @@ Checking test 055 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 486.303838 - 0: The maximum resident set size (KB) = 807592 + 0: The total amount of wall time = 502.070997 + 0: The maximum resident set size (KB) = 807520 Test 055 rap_sfcdiff PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/rap_sfcdiff_decomp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/rap_sfcdiff_decomp Checking test 056 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2470,14 +2352,14 @@ Checking test 056 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 512.111472 - 0: The maximum resident set size (KB) = 806724 + 0: The total amount of wall time = 505.732245 + 0: The maximum resident set size (KB) = 806624 Test 056 rap_sfcdiff_decomp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/rap_sfcdiff_restart +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/rap_sfcdiff_restart Checking test 057 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2516,14 +2398,14 @@ Checking test 057 rap_sfcdiff_restart results .... Comparing 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.171140 - 0: The maximum resident set size (KB) = 551240 + 0: The total amount of wall time = 368.053443 + 0: The maximum resident set size (KB) = 551420 Test 057 rap_sfcdiff_restart PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/hrrr_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/hrrr_control Checking test 058 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2570,14 +2452,14 @@ Checking test 058 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 467.103323 - 0: The maximum resident set size (KB) = 804908 + 0: The total amount of wall time = 466.746459 + 0: The maximum resident set size (KB) = 805000 Test 058 hrrr_control PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/hrrr_control_decomp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/hrrr_control_decomp Checking test 059 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2624,14 +2506,14 @@ Checking test 059 hrrr_control_decomp results .... Comparing 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.835530 - 0: The maximum resident set size (KB) = 804480 + 0: The total amount of wall time = 488.174364 + 0: The maximum resident set size (KB) = 804552 Test 059 hrrr_control_decomp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/hrrr_control_2threads +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/hrrr_control_2threads Checking test 060 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2678,14 +2560,14 @@ Checking test 060 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 439.017739 - 0: The maximum resident set size (KB) = 871224 + 0: The total amount of wall time = 454.566608 + 0: The maximum resident set size (KB) = 873088 Test 060 hrrr_control_2threads PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/hrrr_control_restart +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/hrrr_control_restart Checking test 061 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2724,14 +2606,14 @@ Checking test 061 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 363.227625 - 0: The maximum resident set size (KB) = 550096 + 0: The total amount of wall time = 356.702319 + 0: The maximum resident set size (KB) = 550208 Test 061 hrrr_control_restart PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/rrfs_v1beta +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/rrfs_v1beta Checking test 062 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2778,14 +2660,14 @@ Checking test 062 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 477.258424 - 0: The maximum resident set size (KB) = 800900 + 0: The total amount of wall time = 476.881108 + 0: The maximum resident set size (KB) = 800748 Test 062 rrfs_v1beta PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/rrfs_v1nssl +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/rrfs_v1nssl Checking test 063 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2800,14 +2682,14 @@ Checking test 063 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 579.299151 - 0: The maximum resident set size (KB) = 491760 + 0: The total amount of wall time = 579.169278 + 0: The maximum resident set size (KB) = 491824 Test 063 rrfs_v1nssl PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/rrfs_v1nssl_nohailnoccn +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/rrfs_v1nssl_nohailnoccn Checking test 064 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2822,14 +2704,14 @@ Checking test 064 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 567.674335 - 0: The maximum resident set size (KB) = 485704 + 0: The total amount of wall time = 563.373849 + 0: The maximum resident set size (KB) = 485764 Test 064 rrfs_v1nssl_nohailnoccn PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/rrfs_conus13km_hrrr_warm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/rrfs_conus13km_hrrr_warm Checking test 065 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2838,14 +2720,14 @@ Checking test 065 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 150.848651 - 0: The maximum resident set size (KB) = 617128 + 0: The total amount of wall time = 132.365781 + 0: The maximum resident set size (KB) = 617320 Test 065 rrfs_conus13km_hrrr_warm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/rrfs_smoke_conus13km_hrrr_warm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/rrfs_smoke_conus13km_hrrr_warm Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2854,14 +2736,14 @@ Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 165.271949 - 0: The maximum resident set size (KB) = 627576 + 0: The total amount of wall time = 153.952127 + 0: The maximum resident set size (KB) = 627764 Test 066 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/rrfs_conus13km_radar_tten_warm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/rrfs_conus13km_radar_tten_warm Checking test 067 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2870,14 +2752,14 @@ Checking test 067 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 152.099573 - 0: The maximum resident set size (KB) = 620840 + 0: The total amount of wall time = 135.360111 + 0: The maximum resident set size (KB) = 620912 Test 067 rrfs_conus13km_radar_tten_warm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/rrfs_conus13km_hrrr_warm_2threads +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/rrfs_conus13km_hrrr_warm_2threads Checking test 068 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2886,14 +2768,14 @@ Checking test 068 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 104.528021 - 0: The maximum resident set size (KB) = 629468 + 0: The total amount of wall time = 91.360374 + 0: The maximum resident set size (KB) = 629584 Test 068 rrfs_conus13km_hrrr_warm_2threads PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/rrfs_conus13km_radar_tten_warm_2threads +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/rrfs_conus13km_radar_tten_warm_2threads Checking test 069 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2902,14 +2784,14 @@ Checking test 069 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 103.667234 - 0: The maximum resident set size (KB) = 632464 + 0: The total amount of wall time = 95.705488 + 0: The maximum resident set size (KB) = 633044 Test 069 rrfs_conus13km_radar_tten_warm_2threads PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/control_csawmgt +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/control_csawmgt Checking test 070 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2920,14 +2802,14 @@ Checking test 070 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 403.582357 - 0: The maximum resident set size (KB) = 505580 + 0: The total amount of wall time = 380.305738 + 0: The maximum resident set size (KB) = 505600 Test 070 control_csawmgt PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/control_ras +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/control_ras Checking test 071 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2938,26 +2820,26 @@ Checking test 071 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 205.807586 - 0: The maximum resident set size (KB) = 470844 + 0: The total amount of wall time = 199.819006 + 0: The maximum resident set size (KB) = 470820 Test 071 control_ras PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/control_wam +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/control_wam Checking test 072 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 128.822653 - 0: The maximum resident set size (KB) = 188056 + 0: The total amount of wall time = 129.636620 + 0: The maximum resident set size (KB) = 188160 Test 072 control_wam PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_faster -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/control_p8_faster +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/control_p8_faster Checking test 073 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3004,14 +2886,14 @@ Checking test 073 control_p8_faster results .... Comparing 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.524471 - 0: The maximum resident set size (KB) = 1379632 + 0: The total amount of wall time = 173.960421 + 0: The maximum resident set size (KB) = 1379580 Test 073 control_p8_faster PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control_faster -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/regional_control_faster +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/regional_control_faster Checking test 074 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3022,42 +2904,42 @@ Checking test 074 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 321.328923 - 0: The maximum resident set size (KB) = 577612 + 0: The total amount of wall time = 317.212514 + 0: The maximum resident set size (KB) = 577576 Test 074 regional_control_faster PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/rrfs_conus13km_hrrr_warm_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/rrfs_conus13km_hrrr_warm_debug Checking test 075 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 785.788202 - 0: The maximum resident set size (KB) = 649592 + 0: The total amount of wall time = 778.756382 + 0: The maximum resident set size (KB) = 649436 Test 075 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/rrfs_conus13km_radar_tten_warm_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/rrfs_conus13km_radar_tten_warm_debug Checking test 076 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 785.698302 - 0: The maximum resident set size (KB) = 652452 + 0: The total amount of wall time = 776.654185 + 0: The maximum resident set size (KB) = 652216 Test 076 rrfs_conus13km_radar_tten_warm_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/control_CubedSphereGrid_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/control_CubedSphereGrid_debug Checking test 077 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3084,334 +2966,334 @@ Checking test 077 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 172.002543 - 0: The maximum resident set size (KB) = 601992 + 0: The total amount of wall time = 164.653158 + 0: The maximum resident set size (KB) = 601808 Test 077 control_CubedSphereGrid_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/control_wrtGauss_netcdf_parallel_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/control_wrtGauss_netcdf_parallel_debug Checking test 078 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 174.028083 - 0: The maximum resident set size (KB) = 601236 + 0: The total amount of wall time = 158.831978 + 0: The maximum resident set size (KB) = 601008 Test 078 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/control_stochy_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/control_stochy_debug Checking test 079 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 197.039738 - 0: The maximum resident set size (KB) = 607944 + 0: The total amount of wall time = 182.251578 + 0: The maximum resident set size (KB) = 607980 Test 079 control_stochy_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/control_lndp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/control_lndp_debug Checking test 080 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 169.829479 - 0: The maximum resident set size (KB) = 605948 + 0: The total amount of wall time = 160.642363 + 0: The maximum resident set size (KB) = 605784 Test 080 control_lndp_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/control_csawmg_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/control_csawmg_debug Checking test 081 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.237306 - 0: The maximum resident set size (KB) = 642456 + 0: The total amount of wall time = 248.007157 + 0: The maximum resident set size (KB) = 642416 Test 081 control_csawmg_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/control_csawmgt_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/control_csawmgt_debug Checking test 082 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.114717 - 0: The maximum resident set size (KB) = 642624 + 0: The total amount of wall time = 244.088263 + 0: The maximum resident set size (KB) = 642564 Test 082 control_csawmgt_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/control_ras_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/control_ras_debug Checking test 083 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 175.548253 - 0: The maximum resident set size (KB) = 613816 + 0: The total amount of wall time = 173.911240 + 0: The maximum resident set size (KB) = 613696 Test 083 control_ras_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_diag_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/control_diag_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/control_diag_debug Checking test 084 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 170.928251 - 0: The maximum resident set size (KB) = 660268 + 0: The total amount of wall time = 164.372462 + 0: The maximum resident set size (KB) = 660380 Test 084 control_diag_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_debug_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/control_debug_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/control_debug_p8 Checking test 085 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 220.183765 - 0: The maximum resident set size (KB) = 1380116 + 0: The total amount of wall time = 178.368682 + 0: The maximum resident set size (KB) = 1380068 Test 085 control_debug_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/regional_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/regional_debug Checking test 086 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1066.044196 - 0: The maximum resident set size (KB) = 606784 + 0: The total amount of wall time = 1044.311699 + 0: The maximum resident set size (KB) = 606680 Test 086 regional_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/rap_control_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/rap_control_debug Checking test 087 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 299.171127 - 0: The maximum resident set size (KB) = 972188 + 0: The total amount of wall time = 288.400526 + 0: The maximum resident set size (KB) = 972116 Test 087 rap_control_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/hrrr_control_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/hrrr_control_debug Checking test 088 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 300.690928 - 0: The maximum resident set size (KB) = 967364 + 0: The total amount of wall time = 283.041832 + 0: The maximum resident set size (KB) = 967188 Test 088 hrrr_control_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/rap_unified_drag_suite_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/rap_unified_drag_suite_debug Checking test 089 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 303.421405 - 0: The maximum resident set size (KB) = 972224 + 0: The total amount of wall time = 297.562803 + 0: The maximum resident set size (KB) = 971972 Test 089 rap_unified_drag_suite_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_diag_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/rap_diag_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/rap_diag_debug Checking test 090 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 342.151723 - 0: The maximum resident set size (KB) = 1056340 + 0: The total amount of wall time = 303.286360 + 0: The maximum resident set size (KB) = 1056308 Test 090 rap_diag_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/rap_cires_ugwp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/rap_cires_ugwp_debug Checking test 091 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 313.334131 - 0: The maximum resident set size (KB) = 971188 + 0: The total amount of wall time = 297.273628 + 0: The maximum resident set size (KB) = 971380 Test 091 rap_cires_ugwp_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/rap_unified_ugwp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/rap_unified_ugwp_debug Checking test 092 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 302.240709 - 0: The maximum resident set size (KB) = 973468 + 0: The total amount of wall time = 297.531076 + 0: The maximum resident set size (KB) = 973552 Test 092 rap_unified_ugwp_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_lndp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/rap_lndp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/rap_lndp_debug Checking test 093 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 307.897810 - 0: The maximum resident set size (KB) = 973040 + 0: The total amount of wall time = 288.897682 + 0: The maximum resident set size (KB) = 972768 Test 093 rap_lndp_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_flake_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/rap_flake_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/rap_flake_debug Checking test 094 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 309.298093 - 0: The maximum resident set size (KB) = 972148 + 0: The total amount of wall time = 288.489566 + 0: The maximum resident set size (KB) = 972100 Test 094 rap_flake_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_progcld_thompson_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/rap_progcld_thompson_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/rap_progcld_thompson_debug Checking test 095 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 310.160435 - 0: The maximum resident set size (KB) = 972040 + 0: The total amount of wall time = 287.642471 + 0: The maximum resident set size (KB) = 972068 Test 095 rap_progcld_thompson_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/rap_noah_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/rap_noah_debug Checking test 096 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 293.635971 - 0: The maximum resident set size (KB) = 970668 + 0: The total amount of wall time = 281.523318 + 0: The maximum resident set size (KB) = 970636 Test 096 rap_noah_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/rap_sfcdiff_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/rap_sfcdiff_debug Checking test 097 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 308.510979 - 0: The maximum resident set size (KB) = 971964 + 0: The total amount of wall time = 288.312158 + 0: The maximum resident set size (KB) = 971732 Test 097 rap_sfcdiff_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/rap_noah_sfcdiff_cires_ugwp_debug Checking test 098 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 492.879851 - 0: The maximum resident set size (KB) = 971488 + 0: The total amount of wall time = 475.519646 + 0: The maximum resident set size (KB) = 971276 Test 098 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/rrfs_v1beta_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/rrfs_v1beta_debug Checking test 099 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 303.432331 - 0: The maximum resident set size (KB) = 967916 + 0: The total amount of wall time = 284.038164 + 0: The maximum resident set size (KB) = 968044 Test 099 rrfs_v1beta_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/control_wam_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/control_wam_debug Checking test 100 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 299.672553 - 0: The maximum resident set size (KB) = 219212 + 0: The total amount of wall time = 298.464362 + 0: The maximum resident set size (KB) = 219252 Test 100 control_wam_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 101 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3422,14 +3304,14 @@ Checking test 101 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 332.652023 - 0: The maximum resident set size (KB) = 788368 + 0: The total amount of wall time = 299.704587 + 0: The maximum resident set size (KB) = 788216 Test 101 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/rap_control_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/rap_control_dyn32_phy32 Checking test 102 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3476,14 +3358,14 @@ Checking test 102 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 410.964216 - 0: The maximum resident set size (KB) = 690816 + 0: The total amount of wall time = 393.853843 + 0: The maximum resident set size (KB) = 690964 Test 102 rap_control_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/hrrr_control_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/hrrr_control_dyn32_phy32 Checking test 103 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3530,14 +3412,14 @@ Checking test 103 hrrr_control_dyn32_phy32 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 = 221.749606 - 0: The maximum resident set size (KB) = 689260 + 0: The total amount of wall time = 217.809540 + 0: The maximum resident set size (KB) = 689384 Test 103 hrrr_control_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/rap_2threads_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/rap_2threads_dyn32_phy32 Checking test 104 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3584,14 +3466,14 @@ Checking test 104 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 385.823505 - 0: The maximum resident set size (KB) = 740556 + 0: The total amount of wall time = 369.121717 + 0: The maximum resident set size (KB) = 740512 Test 104 rap_2threads_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/hrrr_control_2threads_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/hrrr_control_2threads_dyn32_phy32 Checking test 105 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3638,14 +3520,14 @@ Checking test 105 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 213.936884 - 0: The maximum resident set size (KB) = 742768 + 0: The total amount of wall time = 200.067947 + 0: The maximum resident set size (KB) = 742880 Test 105 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/hrrr_control_decomp_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/hrrr_control_decomp_dyn32_phy32 Checking test 106 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3692,14 +3574,14 @@ Checking test 106 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 241.109941 - 0: The maximum resident set size (KB) = 688192 + 0: The total amount of wall time = 215.181113 + 0: The maximum resident set size (KB) = 688188 Test 106 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/rap_restart_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/rap_restart_dyn32_phy32 Checking test 107 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3738,14 +3620,14 @@ Checking test 107 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 439.564381 - 0: The maximum resident set size (KB) = 524952 + 0: The total amount of wall time = 296.371150 + 0: The maximum resident set size (KB) = 524944 Test 107 rap_restart_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/hrrr_control_restart_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/hrrr_control_restart_dyn32_phy32 Checking test 108 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3784,14 +3666,14 @@ Checking test 108 hrrr_control_restart_dyn32_phy32 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 = 110.968316 - 0: The maximum resident set size (KB) = 517732 + 0: The total amount of wall time = 111.103677 + 0: The maximum resident set size (KB) = 517200 Test 108 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn64_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/rap_control_dyn64_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/rap_control_dyn64_phy32 Checking test 109 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3838,81 +3720,81 @@ Checking test 109 rap_control_dyn64_phy32 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 = 291.039127 - 0: The maximum resident set size (KB) = 713860 + 0: The total amount of wall time = 264.392737 + 0: The maximum resident set size (KB) = 713740 Test 109 rap_control_dyn64_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/rap_control_debug_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/rap_control_debug_dyn32_phy32 Checking test 110 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 306.977983 - 0: The maximum resident set size (KB) = 856644 + 0: The total amount of wall time = 284.307573 + 0: The maximum resident set size (KB) = 856816 Test 110 rap_control_debug_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/hrrr_control_debug_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/hrrr_control_debug_dyn32_phy32 Checking test 111 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 294.678023 - 0: The maximum resident set size (KB) = 854924 + 0: The total amount of wall time = 281.325781 + 0: The maximum resident set size (KB) = 854804 Test 111 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/rap_control_dyn64_phy32_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/rap_control_dyn64_phy32_debug Checking test 112 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 327.427884 - 0: The maximum resident set size (KB) = 880260 + 0: The total amount of wall time = 290.056226 + 0: The maximum resident set size (KB) = 880156 Test 112 rap_control_dyn64_phy32_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/hafs_regional_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/hafs_regional_atm Checking test 113 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 348.677406 - 0: The maximum resident set size (KB) = 681612 + 0: The total amount of wall time = 276.299604 + 0: The maximum resident set size (KB) = 682044 Test 113 hafs_regional_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/hafs_regional_atm_thompson_gfdlsf +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/hafs_regional_atm_thompson_gfdlsf Checking test 114 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 478.769540 - 0: The maximum resident set size (KB) = 1035796 + 0: The total amount of wall time = 319.071061 + 0: The maximum resident set size (KB) = 1037260 Test 114 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/hafs_regional_atm_ocn +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/hafs_regional_atm_ocn Checking test 115 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3921,14 +3803,14 @@ Checking test 115 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 653.885537 - 0: The maximum resident set size (KB) = 712404 + 0: The total amount of wall time = 440.609510 + 0: The maximum resident set size (KB) = 713024 Test 115 hafs_regional_atm_ocn PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_wav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/hafs_regional_atm_wav +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/hafs_regional_atm_wav Checking test 116 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3937,14 +3819,14 @@ Checking test 116 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 1046.925894 - 0: The maximum resident set size (KB) = 746740 + 0: The total amount of wall time = 941.044788 + 0: The maximum resident set size (KB) = 747316 Test 116 hafs_regional_atm_wav PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn_wav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/hafs_regional_atm_ocn_wav +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/hafs_regional_atm_ocn_wav Checking test 117 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3955,28 +3837,28 @@ Checking test 117 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 1062.421653 - 0: The maximum resident set size (KB) = 764764 + 0: The total amount of wall time = 1033.805721 + 0: The maximum resident set size (KB) = 764556 Test 117 hafs_regional_atm_ocn_wav PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/hafs_regional_1nest_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/hafs_regional_1nest_atm Checking test 118 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 401.811140 - 0: The maximum resident set size (KB) = 277104 + 0: The total amount of wall time = 382.670037 + 0: The maximum resident set size (KB) = 276584 Test 118 hafs_regional_1nest_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/hafs_regional_telescopic_2nests_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/hafs_regional_telescopic_2nests_atm Checking test 119 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3985,28 +3867,28 @@ Checking test 119 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 460.067689 - 0: The maximum resident set size (KB) = 282740 + 0: The total amount of wall time = 431.388474 + 0: The maximum resident set size (KB) = 282136 Test 119 hafs_regional_telescopic_2nests_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/hafs_global_1nest_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/hafs_global_1nest_atm Checking test 120 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 180.893227 - 0: The maximum resident set size (KB) = 177688 + 0: The total amount of wall time = 178.912138 + 0: The maximum resident set size (KB) = 177708 Test 120 hafs_global_1nest_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_multiple_4nests_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/hafs_global_multiple_4nests_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/hafs_global_multiple_4nests_atm Checking test 121 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4024,14 +3906,14 @@ Checking test 121 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 509.935446 - 0: The maximum resident set size (KB) = 209896 + 0: The total amount of wall time = 507.229358 + 0: The maximum resident set size (KB) = 227728 Test 121 hafs_global_multiple_4nests_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/hafs_regional_specified_moving_1nest_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/hafs_regional_specified_moving_1nest_atm Checking test 122 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4040,28 +3922,28 @@ Checking test 122 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 248.578412 - 0: The maximum resident set size (KB) = 288076 + 0: The total amount of wall time = 237.104442 + 0: The maximum resident set size (KB) = 288544 Test 122 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/hafs_regional_storm_following_1nest_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/hafs_regional_storm_following_1nest_atm Checking test 123 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 237.492933 - 0: The maximum resident set size (KB) = 286816 + 0: The total amount of wall time = 227.515186 + 0: The maximum resident set size (KB) = 286652 Test 123 hafs_regional_storm_following_1nest_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/hafs_regional_storm_following_1nest_atm_ocn Checking test 124 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4070,42 +3952,42 @@ Checking test 124 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 274.212238 - 0: The maximum resident set size (KB) = 323880 + 0: The total amount of wall time = 266.561638 + 0: The maximum resident set size (KB) = 324408 Test 124 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/hafs_global_storm_following_1nest_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/hafs_global_storm_following_1nest_atm Checking test 125 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 74.440042 - 0: The maximum resident set size (KB) = 192992 + 0: The total amount of wall time = 71.375345 + 0: The maximum resident set size (KB) = 193076 Test 125 hafs_global_storm_following_1nest_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 126 hafs_regional_storm_following_1nest_atm_ocn_debug results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 791.558627 - 0: The maximum resident set size (KB) = 352924 + 0: The total amount of wall time = 780.009648 + 0: The maximum resident set size (KB) = 353656 Test 126 hafs_regional_storm_following_1nest_atm_ocn_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 127 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4116,14 +3998,14 @@ Checking test 127 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 763.457759 - 0: The maximum resident set size (KB) = 368824 + 0: The total amount of wall time = 745.560916 + 0: The maximum resident set size (KB) = 367948 Test 127 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_docn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/hafs_regional_docn +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/hafs_regional_docn Checking test 128 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4131,14 +4013,14 @@ Checking test 128 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 403.393786 - 0: The maximum resident set size (KB) = 723264 + 0: The total amount of wall time = 400.158573 + 0: The maximum resident set size (KB) = 722844 -Test 128 hafs_regional_docn PASS Tries: 2 +Test 128 hafs_regional_docn PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_docn_oisst -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/hafs_regional_docn_oisst +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/hafs_regional_docn_oisst Checking test 129 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4146,131 +4028,131 @@ Checking test 129 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 411.004148 - 0: The maximum resident set size (KB) = 709756 + 0: The total amount of wall time = 396.028123 + 0: The maximum resident set size (KB) = 710144 Test 129 hafs_regional_docn_oisst PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_datm_cdeps -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/hafs_regional_datm_cdeps +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/hafs_regional_datm_cdeps Checking test 130 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 1211.317548 - 0: The maximum resident set size (KB) = 808980 + 0: The total amount of wall time = 1175.741483 + 0: The maximum resident set size (KB) = 808988 Test 130 hafs_regional_datm_cdeps PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/datm_cdeps_control_cfsr Checking test 131 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 181.078845 - 0: The maximum resident set size (KB) = 717492 + 0: The total amount of wall time = 169.944695 + 0: The maximum resident set size (KB) = 715840 Test 131 datm_cdeps_control_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/datm_cdeps_restart_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/datm_cdeps_restart_cfsr Checking test 132 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 131.113582 - 0: The maximum resident set size (KB) = 715972 + 0: The total amount of wall time = 96.791672 + 0: The maximum resident set size (KB) = 715948 Test 132 datm_cdeps_restart_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/datm_cdeps_control_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/datm_cdeps_control_gefs Checking test 133 datm_cdeps_control_gefs 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 = 170.555649 - 0: The maximum resident set size (KB) = 598444 + 0: The total amount of wall time = 162.674541 + 0: The maximum resident set size (KB) = 598128 Test 133 datm_cdeps_control_gefs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_iau_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/datm_cdeps_iau_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/datm_cdeps_iau_gefs Checking test 134 datm_cdeps_iau_gefs 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 = 172.052592 - 0: The maximum resident set size (KB) = 593356 + 0: The total amount of wall time = 165.668959 + 0: The maximum resident set size (KB) = 598476 Test 134 datm_cdeps_iau_gefs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_stochy_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/datm_cdeps_stochy_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/datm_cdeps_stochy_gefs Checking test 135 datm_cdeps_stochy_gefs 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 = 190.171613 - 0: The maximum resident set size (KB) = 597392 + 0: The total amount of wall time = 164.288827 + 0: The maximum resident set size (KB) = 598012 Test 135 datm_cdeps_stochy_gefs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/datm_cdeps_ciceC_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/datm_cdeps_ciceC_cfsr Checking test 136 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 176.583912 - 0: The maximum resident set size (KB) = 715776 + 0: The total amount of wall time = 166.585170 + 0: The maximum resident set size (KB) = 717736 Test 136 datm_cdeps_ciceC_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_bulk_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/datm_cdeps_bulk_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/datm_cdeps_bulk_cfsr Checking test 137 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 207.289463 - 0: The maximum resident set size (KB) = 721484 + 0: The total amount of wall time = 165.429009 + 0: The maximum resident set size (KB) = 715788 Test 137 datm_cdeps_bulk_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_bulk_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/datm_cdeps_bulk_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/datm_cdeps_bulk_gefs Checking test 138 datm_cdeps_bulk_gefs 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 = 168.226713 - 0: The maximum resident set size (KB) = 602148 + 0: The total amount of wall time = 160.261049 + 0: The maximum resident set size (KB) = 598136 Test 138 datm_cdeps_bulk_gefs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_mx025_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/datm_cdeps_mx025_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/datm_cdeps_mx025_cfsr Checking test 139 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4279,14 +4161,14 @@ Checking test 139 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 489.889896 - 0: The maximum resident set size (KB) = 496572 + 0: The total amount of wall time = 441.394850 + 0: The maximum resident set size (KB) = 496672 Test 139 datm_cdeps_mx025_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_mx025_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/datm_cdeps_mx025_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/datm_cdeps_mx025_gefs Checking test 140 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4295,77 +4177,77 @@ Checking test 140 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 483.893366 - 0: The maximum resident set size (KB) = 475740 + 0: The total amount of wall time = 461.997888 + 0: The maximum resident set size (KB) = 476352 Test 140 datm_cdeps_mx025_gefs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/datm_cdeps_multiple_files_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/datm_cdeps_multiple_files_cfsr Checking test 141 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 170.250594 - 0: The maximum resident set size (KB) = 721420 + 0: The total amount of wall time = 166.920929 + 0: The maximum resident set size (KB) = 721496 Test 141 datm_cdeps_multiple_files_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/datm_cdeps_3072x1536_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/datm_cdeps_3072x1536_cfsr Checking test 142 datm_cdeps_3072x1536_cfsr 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 = 314.004626 - 0: The maximum resident set size (KB) = 1947836 + 0: The total amount of wall time = 254.913490 + 0: The maximum resident set size (KB) = 1947532 Test 142 datm_cdeps_3072x1536_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_gfs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/datm_cdeps_gfs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/datm_cdeps_gfs Checking test 143 datm_cdeps_gfs 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 = 255.428690 - 0: The maximum resident set size (KB) = 1948024 + 0: The total amount of wall time = 253.925699 + 0: The maximum resident set size (KB) = 1947988 Test 143 datm_cdeps_gfs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_debug_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/datm_cdeps_debug_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/datm_cdeps_debug_cfsr Checking test 144 datm_cdeps_debug_cfsr 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 = 382.841812 - 0: The maximum resident set size (KB) = 714924 + 0: The total amount of wall time = 375.156334 + 0: The maximum resident set size (KB) = 714844 Test 144 datm_cdeps_debug_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr_faster -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/datm_cdeps_control_cfsr_faster +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/datm_cdeps_control_cfsr_faster Checking test 145 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 169.099854 - 0: The maximum resident set size (KB) = 721184 + 0: The total amount of wall time = 166.065771 + 0: The maximum resident set size (KB) = 721280 Test 145 datm_cdeps_control_cfsr_faster PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/datm_cdeps_lnd_gswp3 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/datm_cdeps_lnd_gswp3 Checking test 146 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4374,14 +4256,14 @@ Checking test 146 datm_cdeps_lnd_gswp3 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 = 15.308527 - 0: The maximum resident set size (KB) = 149904 + 0: The total amount of wall time = 14.939884 + 0: The maximum resident set size (KB) = 153852 Test 146 datm_cdeps_lnd_gswp3 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/datm_cdeps_lnd_gswp3_rst +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/datm_cdeps_lnd_gswp3_rst Checking test 147 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4390,14 +4272,14 @@ Checking test 147 datm_cdeps_lnd_gswp3_rst 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 = 25.744802 - 0: The maximum resident set size (KB) = 154092 + 0: The total amount of wall time = 22.731963 + 0: The maximum resident set size (KB) = 145644 Test 147 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_atmlnd_sbs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/control_p8_atmlnd_sbs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/control_p8_atmlnd_sbs Checking test 148 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4482,14 +4364,14 @@ Checking test 148 control_p8_atmlnd_sbs 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 = 272.657391 - 0: The maximum resident set size (KB) = 1412612 + 0: The total amount of wall time = 231.458084 + 0: The maximum resident set size (KB) = 1412416 Test 148 control_p8_atmlnd_sbs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_atmwav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/control_atmwav +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/control_atmwav Checking test 149 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4533,14 +4415,14 @@ Checking test 149 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 101.961382 - 0: The maximum resident set size (KB) = 450736 + 0: The total amount of wall time = 103.497304 + 0: The maximum resident set size (KB) = 450640 Test 149 control_atmwav PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/atmaero_control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/atmaero_control_p8 Checking test 150 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4584,14 +4466,14 @@ Checking test 150 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 280.885203 - 0: The maximum resident set size (KB) = 1447732 + 0: The total amount of wall time = 255.515776 + 0: The maximum resident set size (KB) = 1447724 Test 150 atmaero_control_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/atmaero_control_p8_rad +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/atmaero_control_p8_rad Checking test 151 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4635,14 +4517,14 @@ Checking test 151 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 318.498630 - 0: The maximum resident set size (KB) = 1468492 + 0: The total amount of wall time = 299.861736 + 0: The maximum resident set size (KB) = 1468464 Test 151 atmaero_control_p8_rad PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad_micro -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/atmaero_control_p8_rad_micro +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/atmaero_control_p8_rad_micro Checking test 152 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4686,14 +4568,14 @@ Checking test 152 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 327.523569 - 0: The maximum resident set size (KB) = 1473212 + 0: The total amount of wall time = 303.503608 + 0: The maximum resident set size (KB) = 1473052 Test 152 atmaero_control_p8_rad_micro PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/regional_atmaq +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/regional_atmaq Checking test 153 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4709,14 +4591,14 @@ Checking test 153 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 701.812861 - 0: The maximum resident set size (KB) = 1106568 + 0: The total amount of wall time = 650.737643 + 0: The maximum resident set size (KB) = 1102968 Test 153 regional_atmaq PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq_faster -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47764/regional_atmaq_faster +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/regional_atmaq_faster Checking test 154 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4732,12 +4614,144 @@ Checking test 154 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 690.486970 - 0: The maximum resident set size (KB) = 1097044 + 0: The total amount of wall time = 679.449368 + 0: The maximum resident set size (KB) = 1084292 Test 154 regional_atmaq_faster PASS +FAILED TESTS: +Test cpld_decomp_p8 006 failed in run_test failed +Test cpld_debug_p8 015 failed in run_test failed + +REGRESSION TEST FAILED +Tue Mar 14 00:15:26 EDT 2023 +Elapsed time: 02h:23m:54s. Have a nice day! +Tue Mar 14 08:37:21 EDT 2023 +Start Regression test + +Compile 001 elapsed time 1078 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 501 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/Jessica.Meixner/FV3_RT/rt_5111/cpld_decomp_p8 +Checking test 001 cpld_decomp_p8 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 379.437314 + 0: The maximum resident set size (KB) = 1575716 + +Test 001 cpld_decomp_p8 PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_debug_p8 +working dir = /lustre/f2/scratch/Jessica.Meixner/FV3_RT/rt_5111/cpld_debug_p8 +Checking test 002 cpld_debug_p8 results .... + Comparing sfcf003.tile1.nc .........OK + Comparing sfcf003.tile2.nc .........OK + Comparing sfcf003.tile3.nc .........OK + Comparing sfcf003.tile4.nc .........OK + Comparing sfcf003.tile5.nc .........OK + Comparing sfcf003.tile6.nc .........OK + Comparing atmf003.tile1.nc .........OK + Comparing atmf003.tile2.nc .........OK + Comparing atmf003.tile3.nc .........OK + Comparing atmf003.tile4.nc .........OK + Comparing atmf003.tile5.nc .........OK + Comparing atmf003.tile6.nc .........OK + Comparing gocart.inst_aod.20210322_0900z.nc4 .........OK + Comparing RESTART/20210322.090000.coupler.res .........OK + Comparing RESTART/20210322.090000.fv_core.res.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-22-32400.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK + Comparing 20210322.090000.out_pnt.ww3 .........OK + Comparing 20210322.090000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 591.550285 + 0: The maximum resident set size (KB) = 1595784 + +Test 002 cpld_debug_p8 PASS + REGRESSION TEST WAS SUCCESSFUL -Fri Mar 10 17:51:19 EST 2023 -Elapsed time: 08h:31m:31s. Have a nice day! +Tue Mar 14 09:10:19 EDT 2023 +Elapsed time: 00h:33m:24s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 9ede579991a..2143d4c0471 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,21 +1,21 @@ -Fri Mar 10 13:47:44 UTC 2023 +Tue Mar 14 01:18:38 UTC 2023 Start Regression test -Compile 001 elapsed time 186 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 190 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 333 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 105 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 186 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 397 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 323 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 326 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 264 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 235 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 159 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 012 elapsed time 117 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 001 elapsed time 180 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 184 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 314 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 95 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 182 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 388 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 312 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 314 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 266 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 221 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 147 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 012 elapsed time 112 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/control_c48 Checking test 001 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -54,14 +54,14 @@ Checking test 001 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 683.491099 -0: The maximum resident set size (KB) = 703164 +0: The total amount of wall time = 685.871707 +0: The maximum resident set size (KB) = 702312 Test 001 control_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/control_stochy Checking test 002 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -72,14 +72,14 @@ Checking test 002 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 637.248503 - 0: The maximum resident set size (KB) = 483252 + 0: The total amount of wall time = 659.206878 + 0: The maximum resident set size (KB) = 479304 Test 002 control_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/control_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/control_ras Checking test 003 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -90,14 +90,14 @@ Checking test 003 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 837.820596 - 0: The maximum resident set size (KB) = 486880 + 0: The total amount of wall time = 835.205574 + 0: The maximum resident set size (KB) = 484824 Test 003 control_ras PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/control_p8 Checking test 004 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -144,14 +144,14 @@ Checking test 004 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 916.900903 - 0: The maximum resident set size (KB) = 1234688 + 0: The total amount of wall time = 896.145318 + 0: The maximum resident set size (KB) = 1235076 Test 004 control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/rap_control Checking test 005 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -198,14 +198,14 @@ Checking test 005 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1478.889558 - 0: The maximum resident set size (KB) = 832344 + 0: The total amount of wall time = 1481.700860 + 0: The maximum resident set size (KB) = 828772 Test 005 rap_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/rap_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/rap_decomp Checking test 006 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -252,14 +252,14 @@ Checking test 006 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1439.968999 - 0: The maximum resident set size (KB) = 827936 + 0: The total amount of wall time = 1437.078717 + 0: The maximum resident set size (KB) = 834356 Test 006 rap_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/rap_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/rap_2threads Checking test 007 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -306,14 +306,14 @@ Checking test 007 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1393.262545 - 0: The maximum resident set size (KB) = 898360 + 0: The total amount of wall time = 1363.974420 + 0: The maximum resident set size (KB) = 899712 Test 007 rap_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/rap_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/rap_restart Checking test 008 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -352,14 +352,14 @@ Checking test 008 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 721.152439 - 0: The maximum resident set size (KB) = 549688 + 0: The total amount of wall time = 721.878961 + 0: The maximum resident set size (KB) = 547336 Test 008 rap_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/rap_sfcdiff Checking test 009 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -406,14 +406,14 @@ Checking test 009 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1458.406862 - 0: The maximum resident set size (KB) = 831528 + 0: The total amount of wall time = 1482.554609 + 0: The maximum resident set size (KB) = 827048 Test 009 rap_sfcdiff PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/rap_sfcdiff_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/rap_sfcdiff_decomp Checking test 010 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -460,14 +460,14 @@ Checking test 010 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1459.362079 - 0: The maximum resident set size (KB) = 826724 + 0: The total amount of wall time = 1435.362960 + 0: The maximum resident set size (KB) = 829572 Test 010 rap_sfcdiff_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/rap_sfcdiff_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/rap_sfcdiff_restart Checking test 011 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -506,14 +506,14 @@ Checking test 011 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1092.935291 - 0: The maximum resident set size (KB) = 550500 + 0: The total amount of wall time = 1073.101195 + 0: The maximum resident set size (KB) = 553764 Test 011 rap_sfcdiff_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/hrrr_control Checking test 012 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -560,14 +560,14 @@ Checking test 012 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1444.137289 - 0: The maximum resident set size (KB) = 828684 + 0: The total amount of wall time = 1467.314960 + 0: The maximum resident set size (KB) = 826692 Test 012 hrrr_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/hrrr_control_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/hrrr_control_2threads Checking test 013 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -614,14 +614,14 @@ Checking test 013 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1310.178860 - 0: The maximum resident set size (KB) = 896084 + 0: The total amount of wall time = 1315.000444 + 0: The maximum resident set size (KB) = 893820 Test 013 hrrr_control_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/hrrr_control_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/hrrr_control_decomp Checking test 014 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -668,14 +668,14 @@ Checking test 014 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1393.724272 - 0: The maximum resident set size (KB) = 829064 + 0: The total amount of wall time = 1432.182447 + 0: The maximum resident set size (KB) = 830820 Test 014 hrrr_control_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/hrrr_control_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/hrrr_control_restart Checking test 015 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -714,14 +714,14 @@ Checking test 015 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1055.924741 - 0: The maximum resident set size (KB) = 549624 + 0: The total amount of wall time = 1041.707336 + 0: The maximum resident set size (KB) = 547088 Test 015 hrrr_control_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/rrfs_v1beta Checking test 016 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -768,14 +768,14 @@ Checking test 016 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1467.493013 - 0: The maximum resident set size (KB) = 823044 + 0: The total amount of wall time = 1451.428825 + 0: The maximum resident set size (KB) = 823780 Test 016 rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/rrfs_conus13km_hrrr_warm Checking test 017 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -784,14 +784,14 @@ Checking test 017 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 769.893207 - 0: The maximum resident set size (KB) = 635172 + 0: The total amount of wall time = 774.380972 + 0: The maximum resident set size (KB) = 635460 Test 017 rrfs_conus13km_hrrr_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/rrfs_smoke_conus13km_hrrr_warm Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -800,14 +800,14 @@ Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 801.990935 - 0: The maximum resident set size (KB) = 651924 + 0: The total amount of wall time = 741.227633 + 0: The maximum resident set size (KB) = 650696 Test 018 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/rrfs_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/rrfs_conus13km_radar_tten_warm Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -816,14 +816,14 @@ Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 771.835506 - 0: The maximum resident set size (KB) = 639420 + 0: The total amount of wall time = 727.677854 + 0: The maximum resident set size (KB) = 638948 Test 019 rrfs_conus13km_radar_tten_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/rrfs_conus13km_radar_tten_warm_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/rrfs_conus13km_radar_tten_warm_2threads Checking test 020 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -832,208 +832,208 @@ Checking test 020 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 859.802496 - 0: The maximum resident set size (KB) = 638784 + 0: The total amount of wall time = 910.275340 + 0: The maximum resident set size (KB) = 637364 Test 020 rrfs_conus13km_radar_tten_warm_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/control_diag_debug Checking test 021 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 132.505730 - 0: The maximum resident set size (KB) = 534044 + 0: The total amount of wall time = 131.857250 + 0: The maximum resident set size (KB) = 533492 Test 021 control_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/regional_debug Checking test 022 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 727.695499 - 0: The maximum resident set size (KB) = 596980 + 0: The total amount of wall time = 570.756507 + 0: The maximum resident set size (KB) = 594108 Test 022 regional_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/rap_control_debug Checking test 023 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 179.186491 - 0: The maximum resident set size (KB) = 845416 + 0: The total amount of wall time = 181.283020 + 0: The maximum resident set size (KB) = 848856 Test 023 rap_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/hrrr_control_debug Checking test 024 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 174.885552 - 0: The maximum resident set size (KB) = 841604 + 0: The total amount of wall time = 174.037937 + 0: The maximum resident set size (KB) = 841016 Test 024 hrrr_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/rap_diag_debug Checking test 025 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 214.389031 - 0: The maximum resident set size (KB) = 930812 + 0: The total amount of wall time = 212.242713 + 0: The maximum resident set size (KB) = 928280 Test 025 rap_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/rap_noah_sfcdiff_cires_ugwp_debug Checking test 026 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.122366 - 0: The maximum resident set size (KB) = 850896 + 0: The total amount of wall time = 277.086566 + 0: The maximum resident set size (KB) = 840496 Test 026 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/rap_progcld_thompson_debug Checking test 027 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 178.869411 - 0: The maximum resident set size (KB) = 843588 + 0: The total amount of wall time = 176.635253 + 0: The maximum resident set size (KB) = 846536 Test 027 rap_progcld_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/rrfs_v1beta_debug Checking test 028 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 177.839206 - 0: The maximum resident set size (KB) = 846032 + 0: The total amount of wall time = 177.344618 + 0: The maximum resident set size (KB) = 841024 Test 028 rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/control_ras_debug Checking test 029 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 103.354216 - 0: The maximum resident set size (KB) = 486368 + 0: The total amount of wall time = 107.542396 + 0: The maximum resident set size (KB) = 484888 Test 029 control_ras_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/control_stochy_debug Checking test 030 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 121.501432 - 0: The maximum resident set size (KB) = 480484 + 0: The total amount of wall time = 122.320076 + 0: The maximum resident set size (KB) = 477064 Test 030 control_stochy_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/control_debug_p8 Checking test 031 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 119.488444 - 0: The maximum resident set size (KB) = 1233688 + 0: The total amount of wall time = 118.625767 + 0: The maximum resident set size (KB) = 1234076 Test 031 control_debug_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/rrfs_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/rrfs_conus13km_hrrr_warm_debug Checking test 032 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 568.134560 - 0: The maximum resident set size (KB) = 652792 + 0: The total amount of wall time = 581.310854 + 0: The maximum resident set size (KB) = 653940 Test 032 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_conus13km_radar_tten_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/rrfs_conus13km_radar_tten_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/rrfs_conus13km_radar_tten_warm_debug Checking test 033 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 586.683455 - 0: The maximum resident set size (KB) = 656632 + 0: The total amount of wall time = 543.172149 + 0: The maximum resident set size (KB) = 655880 Test 033 rrfs_conus13km_radar_tten_warm_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/control_wam_debug Checking test 034 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 184.633002 - 0: The maximum resident set size (KB) = 193128 + 0: The total amount of wall time = 186.697462 + 0: The maximum resident set size (KB) = 196220 Test 034 control_wam_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/rap_control_dyn32_phy32 Checking test 035 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1080,14 +1080,14 @@ Checking test 035 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1435.015489 - 0: The maximum resident set size (KB) = 688980 + 0: The total amount of wall time = 1460.514614 + 0: The maximum resident set size (KB) = 684192 Test 035 rap_control_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/hrrr_control_dyn32_phy32 Checking test 036 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1134,14 +1134,14 @@ Checking test 036 hrrr_control_dyn32_phy32 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 = 739.542477 - 0: The maximum resident set size (KB) = 681448 + 0: The total amount of wall time = 736.383454 + 0: The maximum resident set size (KB) = 685228 Test 036 hrrr_control_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/rap_2threads_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/rap_2threads_dyn32_phy32 Checking test 037 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1188,14 +1188,14 @@ Checking test 037 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1358.104085 - 0: The maximum resident set size (KB) = 732132 + 0: The total amount of wall time = 1321.323483 + 0: The maximum resident set size (KB) = 732936 Test 037 rap_2threads_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/hrrr_control_2threads_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/hrrr_control_2threads_dyn32_phy32 Checking test 038 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1242,14 +1242,14 @@ Checking test 038 hrrr_control_2threads_dyn32_phy32 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 = 683.452629 - 0: The maximum resident set size (KB) = 730224 + 0: The total amount of wall time = 677.986373 + 0: The maximum resident set size (KB) = 728960 Test 038 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/hrrr_control_decomp_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/hrrr_control_decomp_dyn32_phy32 Checking test 039 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1296,14 +1296,14 @@ Checking test 039 hrrr_control_decomp_dyn32_phy32 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 = 735.809500 - 0: The maximum resident set size (KB) = 684204 + 0: The total amount of wall time = 707.577927 + 0: The maximum resident set size (KB) = 683848 Test 039 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/rap_restart_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/rap_restart_dyn32_phy32 Checking test 040 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1342,14 +1342,14 @@ Checking test 040 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1077.935948 - 0: The maximum resident set size (KB) = 513004 + 0: The total amount of wall time = 1055.917213 + 0: The maximum resident set size (KB) = 517244 Test 040 rap_restart_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/hrrr_control_restart_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/hrrr_control_restart_dyn32_phy32 Checking test 041 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1388,14 +1388,14 @@ Checking test 041 hrrr_control_restart_dyn32_phy32 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 = 350.480804 - 0: The maximum resident set size (KB) = 508012 + 0: The total amount of wall time = 364.072439 + 0: The maximum resident set size (KB) = 508236 Test 041 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/rap_control_dyn64_phy32 Checking test 042 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1442,58 +1442,128 @@ Checking test 042 rap_control_dyn64_phy32 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 = 1061.506081 - 0: The maximum resident set size (KB) = 710304 + 0: The total amount of wall time = 1059.285964 + 0: The maximum resident set size (KB) = 711788 Test 042 rap_control_dyn64_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/rap_control_debug_dyn32_phy32 Checking test 043 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 173.002994 - 0: The maximum resident set size (KB) = 703208 + 0: The total amount of wall time = 172.517556 + 0: The maximum resident set size (KB) = 704748 Test 043 rap_control_debug_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/hrrr_control_debug_dyn32_phy32 Checking test 044 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 171.837249 - 0: The maximum resident set size (KB) = 705536 + 0: The total amount of wall time = 170.029556 + 0: The maximum resident set size (KB) = 701984 Test 044 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/rap_control_dyn64_phy32_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/rap_control_dyn64_phy32_debug Checking test 045 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 207.455324 - 0: The maximum resident set size (KB) = 724468 + 0: The total amount of wall time = 207.217954 + 0: The maximum resident set size (KB) = 724012 Test 045 rap_control_dyn64_phy32_debug PASS -Test 046 cpld_control_p8 FAIL + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/cpld_control_p8 +Checking test 046 cpld_control_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 1687.169685 + 0: The maximum resident set size (KB) = 1429480 + +Test 046 cpld_control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/cpld_control_nowave_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/cpld_control_nowave_noaero_p8 Checking test 047 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1555,14 +1625,14 @@ Checking test 047 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 1222.525573 - 0: The maximum resident set size (KB) = 1331544 + 0: The total amount of wall time = 1233.193815 + 0: The maximum resident set size (KB) = 1335076 Test 047 cpld_control_nowave_noaero_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/cpld_debug_p8 Checking test 048 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1615,107 +1685,25 @@ Checking test 048 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 927.741282 - 0: The maximum resident set size (KB) = 1446504 + 0: The total amount of wall time = 849.010083 + 0: The maximum resident set size (KB) = 1446956 Test 048 cpld_debug_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_12462/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/datm_cdeps_control_cfsr Checking test 049 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 180.545671 - 0: The maximum resident set size (KB) = 668660 + 0: The total amount of wall time = 180.715136 + 0: The maximum resident set size (KB) = 663828 Test 049 datm_cdeps_control_cfsr PASS -FAILED TESTS: -Test cpld_control_p8 046 failed in run_test failed - -REGRESSION TEST FAILED -Fri Mar 10 14:57:53 UTC 2023 -Elapsed time: 01h:10m:10s. Have a nice day! -Fri Mar 10 15:35:40 UTC 2023 -Start Regression test - -Compile 001 elapsed time 263 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_91197/cpld_control_p8 -Checking test 001 cpld_control_p8 results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 1734.177516 - 0: The maximum resident set size (KB) = 1428440 - -Test 001 cpld_control_p8 PASS - REGRESSION TEST WAS SUCCESSFUL -Fri Mar 10 16:14:09 UTC 2023 -Elapsed time: 00h:38m:30s. Have a nice day! +Tue Mar 14 02:12:43 UTC 2023 +Elapsed time: 00h:54m:05s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 58f773c48e5..dfc7c7856cd 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,42 +1,42 @@ -Fri Mar 10 13:33:10 UTC 2023 +Tue Mar 14 01:02:52 UTC 2023 Start Regression test -Compile 001 elapsed time 612 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 610 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 591 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 244 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 217 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 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 007 elapsed time 511 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 713 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 509 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 509 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 486 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 432 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 570 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 211 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 216 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 485 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 466 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 179 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 167 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 589 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 021 elapsed time 225 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 639 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 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 024 elapsed time 205 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 116 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 001 elapsed time 598 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 621 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 559 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 225 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 212 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 501 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 496 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 690 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 481 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 470 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 460 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 418 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 589 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 216 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 153 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 428 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 437 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 161 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 166 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 563 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 187 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 629 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 590 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 024 elapsed time 182 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 114 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON Compile 026 elapsed time 185 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 59 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 497 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 576 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 497 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 473 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 202 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 533 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 027 elapsed time 61 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 468 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 522 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 458 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 460 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 170 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 539 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_mixedmode -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/cpld_control_p8_mixedmode +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -101,14 +101,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 314.799261 - 0: The maximum resident set size (KB) = 3143496 + 0: The total amount of wall time = 307.221136 + 0: The maximum resident set size (KB) = 3140152 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_gfsv17 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/cpld_control_gfsv17 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -172,14 +172,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 227.442066 - 0: The maximum resident set size (KB) = 1726368 + 0: The total amount of wall time = 222.631996 + 0: The maximum resident set size (KB) = 1736868 Test 002 cpld_control_gfsv17 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -244,14 +244,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 343.392505 - 0: The maximum resident set size (KB) = 3181600 + 0: The total amount of wall time = 337.620589 + 0: The maximum resident set size (KB) = 3179152 Test 003 cpld_control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/cpld_restart_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -304,14 +304,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 200.686009 - 0: The maximum resident set size (KB) = 3053416 + 0: The total amount of wall time = 198.722927 + 0: The maximum resident set size (KB) = 3055096 Test 004 cpld_restart_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/cpld_2threads_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -364,14 +364,14 @@ Checking test 005 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 358.266667 - 0: The maximum resident set size (KB) = 3512692 + 0: The total amount of wall time = 349.530375 + 0: The maximum resident set size (KB) = 3508296 Test 005 cpld_2threads_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/cpld_decomp_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/cpld_decomp_p8 Checking test 006 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -424,14 +424,14 @@ Checking test 006 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 346.531922 - 0: The maximum resident set size (KB) = 3176364 + 0: The total amount of wall time = 338.450619 + 0: The maximum resident set size (KB) = 3170632 Test 006 cpld_decomp_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/cpld_mpi_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/cpld_mpi_p8 Checking test 007 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -484,14 +484,14 @@ Checking test 007 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 284.596555 - 0: The maximum resident set size (KB) = 3025448 + 0: The total amount of wall time = 277.065736 + 0: The maximum resident set size (KB) = 3019492 Test 007 cpld_mpi_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_ciceC_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/cpld_control_ciceC_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/cpld_control_ciceC_p8 Checking test 008 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -556,14 +556,14 @@ Checking test 008 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 345.772387 - 0: The maximum resident set size (KB) = 3172560 + 0: The total amount of wall time = 335.329431 + 0: The maximum resident set size (KB) = 3177816 Test 008 cpld_control_ciceC_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/cpld_control_c192_p8 Checking test 009 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -616,14 +616,14 @@ Checking test 009 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 597.928119 - 0: The maximum resident set size (KB) = 3256380 + 0: The total amount of wall time = 580.740245 + 0: The maximum resident set size (KB) = 3252580 Test 009 cpld_control_c192_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/cpld_restart_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/cpld_restart_c192_p8 Checking test 010 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -676,14 +676,14 @@ Checking test 010 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 416.220208 - 0: The maximum resident set size (KB) = 3155220 + 0: The total amount of wall time = 408.705195 + 0: The maximum resident set size (KB) = 3155504 Test 010 cpld_restart_c192_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/cpld_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/cpld_bmark_p8 Checking test 011 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -731,14 +731,14 @@ Checking test 011 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 734.898738 - 0: The maximum resident set size (KB) = 4030320 + 0: The total amount of wall time = 712.502587 + 0: The maximum resident set size (KB) = 4033108 Test 011 cpld_bmark_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/cpld_restart_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/cpld_restart_bmark_p8 Checking test 012 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -786,14 +786,14 @@ Checking test 012 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 454.266943 - 0: The maximum resident set size (KB) = 3981220 + 0: The total amount of wall time = 444.277684 + 0: The maximum resident set size (KB) = 3972408 Test 012 cpld_restart_bmark_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/cpld_control_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/cpld_control_noaero_p8 Checking test 013 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -857,14 +857,14 @@ Checking test 013 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 268.134048 - 0: The maximum resident set size (KB) = 1720984 + 0: The total amount of wall time = 262.854982 + 0: The maximum resident set size (KB) = 1726776 Test 013 cpld_control_noaero_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/cpld_control_nowave_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/cpld_control_nowave_noaero_p8 Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -926,14 +926,14 @@ Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 262.437249 - 0: The maximum resident set size (KB) = 1762088 + 0: The total amount of wall time = 257.310744 + 0: The maximum resident set size (KB) = 1766140 Test 014 cpld_control_nowave_noaero_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/cpld_debug_p8 Checking test 015 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -986,14 +986,14 @@ Checking test 015 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 655.127507 - 0: The maximum resident set size (KB) = 3246092 + 0: The total amount of wall time = 643.828486 + 0: The maximum resident set size (KB) = 3240144 Test 015 cpld_debug_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_debug_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/cpld_debug_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/cpld_debug_noaero_p8 Checking test 016 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1045,14 +1045,14 @@ Checking test 016 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 403.352809 - 0: The maximum resident set size (KB) = 1739000 + 0: The total amount of wall time = 401.601314 + 0: The maximum resident set size (KB) = 1743524 Test 016 cpld_debug_noaero_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8_agrid -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/cpld_control_noaero_p8_agrid +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/cpld_control_noaero_p8_agrid Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1114,14 +1114,14 @@ Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 279.474966 - 0: The maximum resident set size (KB) = 1761264 + 0: The total amount of wall time = 267.324618 + 0: The maximum resident set size (KB) = 1765568 Test 017 cpld_control_noaero_p8_agrid PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/cpld_control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/cpld_control_c48 Checking test 018 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1171,14 +1171,14 @@ Checking test 018 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 585.937425 - 0: The maximum resident set size (KB) = 2803072 + 0: The total amount of wall time = 583.269253 + 0: The maximum resident set size (KB) = 2798096 Test 018 cpld_control_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/cpld_warmstart_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/cpld_warmstart_c48 Checking test 019 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1228,14 +1228,14 @@ Checking test 019 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 153.733151 - 0: The maximum resident set size (KB) = 2799372 + 0: The total amount of wall time = 155.745040 + 0: The maximum resident set size (KB) = 2798644 Test 019 cpld_warmstart_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/cpld_restart_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/cpld_restart_c48 Checking test 020 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1285,14 +1285,14 @@ Checking test 020 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 87.391632 - 0: The maximum resident set size (KB) = 2246980 + 0: The total amount of wall time = 82.024750 + 0: The maximum resident set size (KB) = 2251936 Test 020 cpld_restart_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/cpld_control_p8_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/cpld_control_p8_faster Checking test 021 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1357,14 +1357,14 @@ Checking test 021 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 323.500125 - 0: The maximum resident set size (KB) = 3181040 + 0: The total amount of wall time = 319.458710 + 0: The maximum resident set size (KB) = 3183208 Test 021 cpld_control_p8_faster PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/control_CubedSphereGrid +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_CubedSphereGrid Checking test 022 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1391,28 +1391,28 @@ Checking test 022 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 132.760688 - 0: The maximum resident set size (KB) = 625172 + 0: The total amount of wall time = 129.325733 + 0: The maximum resident set size (KB) = 628420 Test 022 control_CubedSphereGrid PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/control_CubedSphereGrid_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_CubedSphereGrid_parallel Checking test 023 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 130.177400 - 0: The maximum resident set size (KB) = 628440 + 0: The total amount of wall time = 127.150938 + 0: The maximum resident set size (KB) = 627600 Test 023 control_CubedSphereGrid_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_latlon -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/control_latlon +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_latlon Checking test 024 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1423,14 +1423,14 @@ Checking test 024 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 133.735855 - 0: The maximum resident set size (KB) = 627052 + 0: The total amount of wall time = 132.459410 + 0: The maximum resident set size (KB) = 629972 Test 024 control_latlon PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/control_wrtGauss_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_wrtGauss_netcdf_parallel Checking test 025 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1441,14 +1441,14 @@ Checking test 025 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 138.084199 - 0: The maximum resident set size (KB) = 627672 + 0: The total amount of wall time = 135.830957 + 0: The maximum resident set size (KB) = 628164 Test 025 control_wrtGauss_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_c48 Checking test 026 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1487,14 +1487,14 @@ Checking test 026 control_c48 results .... Comparing 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.432722 -0: The maximum resident set size (KB) = 802984 +0: The total amount of wall time = 369.575712 +0: The maximum resident set size (KB) = 814768 Test 026 control_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/control_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_c192 Checking test 027 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1505,14 +1505,14 @@ Checking test 027 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 522.722964 - 0: The maximum resident set size (KB) = 762540 + 0: The total amount of wall time = 530.567762 + 0: The maximum resident set size (KB) = 763276 Test 027 control_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/control_c384 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_c384 Checking test 028 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1523,14 +1523,14 @@ Checking test 028 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 535.957215 - 0: The maximum resident set size (KB) = 1252836 + 0: The total amount of wall time = 538.565027 + 0: The maximum resident set size (KB) = 1257272 Test 028 control_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384gdas -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/control_c384gdas +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_c384gdas Checking test 029 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1573,14 +1573,14 @@ Checking test 029 control_c384gdas 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 = 474.378397 - 0: The maximum resident set size (KB) = 1367324 + 0: The total amount of wall time = 475.361934 + 0: The maximum resident set size (KB) = 1375788 Test 029 control_c384gdas PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_stochy Checking test 030 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1591,28 +1591,28 @@ Checking test 030 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 87.635820 - 0: The maximum resident set size (KB) = 632240 + 0: The total amount of wall time = 87.669998 + 0: The maximum resident set size (KB) = 629512 Test 030 control_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/control_stochy_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_stochy_restart Checking test 031 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 47.933399 - 0: The maximum resident set size (KB) = 481784 + 0: The total amount of wall time = 47.275305 + 0: The maximum resident set size (KB) = 483676 Test 031 control_stochy_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/control_lndp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_lndp Checking test 032 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1623,14 +1623,14 @@ Checking test 032 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 82.733387 - 0: The maximum resident set size (KB) = 630496 + 0: The total amount of wall time = 81.046872 + 0: The maximum resident set size (KB) = 630828 Test 032 control_lndp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr4 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/control_iovr4 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_iovr4 Checking test 033 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1645,14 +1645,14 @@ Checking test 033 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 138.670454 - 0: The maximum resident set size (KB) = 626528 + 0: The total amount of wall time = 135.379899 + 0: The maximum resident set size (KB) = 628184 Test 033 control_iovr4 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr5 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/control_iovr5 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_iovr5 Checking test 034 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1667,14 +1667,14 @@ Checking test 034 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.349878 - 0: The maximum resident set size (KB) = 628476 + 0: The total amount of wall time = 134.569747 + 0: The maximum resident set size (KB) = 632268 Test 034 control_iovr5 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_p8 Checking test 035 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1721,14 +1721,14 @@ Checking test 035 control_p8 results .... Comparing 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.535653 - 0: The maximum resident set size (KB) = 1603072 + 0: The total amount of wall time = 170.152452 + 0: The maximum resident set size (KB) = 1600108 Test 035 control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/control_p8_lndp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_p8_lndp Checking test 036 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1747,14 +1747,14 @@ Checking test 036 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 317.897904 - 0: The maximum resident set size (KB) = 1608724 + 0: The total amount of wall time = 316.382797 + 0: The maximum resident set size (KB) = 1598328 Test 036 control_p8_lndp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/control_restart_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_restart_p8 Checking test 037 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1793,14 +1793,14 @@ Checking test 037 control_restart_p8 results .... Comparing 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.027870 - 0: The maximum resident set size (KB) = 872444 + 0: The total amount of wall time = 86.586472 + 0: The maximum resident set size (KB) = 878656 Test 037 control_restart_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/control_decomp_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_decomp_p8 Checking test 038 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1843,14 +1843,14 @@ Checking test 038 control_decomp_p8 results .... Comparing 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.103658 - 0: The maximum resident set size (KB) = 1589312 + 0: The total amount of wall time = 178.023795 + 0: The maximum resident set size (KB) = 1584536 Test 038 control_decomp_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/control_2threads_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_2threads_p8 Checking test 039 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1893,14 +1893,14 @@ Checking test 039 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 168.229864 - 0: The maximum resident set size (KB) = 1680828 + 0: The total amount of wall time = 168.625635 + 0: The maximum resident set size (KB) = 1678416 Test 039 control_2threads_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/control_p8_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_p8_rrtmgp Checking test 040 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1947,14 +1947,14 @@ Checking test 040 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 231.527534 - 0: The maximum resident set size (KB) = 1672712 + 0: The total amount of wall time = 223.947706 + 0: The maximum resident set size (KB) = 1675140 Test 040 control_p8_rrtmgp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/merra2_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/merra2_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/merra2_thompson Checking test 041 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2001,14 +2001,14 @@ Checking test 041 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 192.307605 - 0: The maximum resident set size (KB) = 1611912 + 0: The total amount of wall time = 189.659849 + 0: The maximum resident set size (KB) = 1612768 Test 041 merra2_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/regional_control Checking test 042 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2019,28 +2019,28 @@ Checking test 042 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 301.594892 - 0: The maximum resident set size (KB) = 867328 + 0: The total amount of wall time = 298.207262 + 0: The maximum resident set size (KB) = 869608 Test 042 regional_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/regional_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/regional_restart Checking test 043 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 153.858026 - 0: The maximum resident set size (KB) = 863452 + 0: The total amount of wall time = 151.105835 + 0: The maximum resident set size (KB) = 858480 Test 043 regional_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/regional_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/regional_decomp Checking test 044 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2051,14 +2051,14 @@ Checking test 044 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 316.563271 - 0: The maximum resident set size (KB) = 855820 + 0: The total amount of wall time = 315.113515 + 0: The maximum resident set size (KB) = 862316 Test 044 regional_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/regional_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/regional_2threads Checking test 045 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2069,14 +2069,14 @@ Checking test 045 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 190.054695 - 0: The maximum resident set size (KB) = 839900 + 0: The total amount of wall time = 183.774985 + 0: The maximum resident set size (KB) = 846352 Test 045 regional_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_noquilt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/regional_noquilt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/regional_noquilt Checking test 046 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2084,28 +2084,28 @@ Checking test 046 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 326.865189 - 0: The maximum resident set size (KB) = 855928 + 0: The total amount of wall time = 319.752331 + 0: The maximum resident set size (KB) = 858436 Test 046 regional_noquilt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/regional_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/regional_netcdf_parallel Checking test 047 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 297.319017 - 0: The maximum resident set size (KB) = 864992 + 0: The total amount of wall time = 295.265561 + 0: The maximum resident set size (KB) = 862784 Test 047 regional_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/regional_2dwrtdecomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/regional_2dwrtdecomp Checking test 048 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2116,14 +2116,14 @@ Checking test 048 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 303.397006 - 0: The maximum resident set size (KB) = 868516 + 0: The total amount of wall time = 299.883535 + 0: The maximum resident set size (KB) = 868976 Test 048 regional_2dwrtdecomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/fv3_regional_wofs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/regional_wofs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/regional_wofs Checking test 049 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2134,14 +2134,14 @@ Checking test 049 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 379.651371 - 0: The maximum resident set size (KB) = 625096 + 0: The total amount of wall time = 378.073893 + 0: The maximum resident set size (KB) = 630048 Test 049 regional_wofs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rap_control Checking test 050 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2188,14 +2188,14 @@ Checking test 050 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 461.092562 - 0: The maximum resident set size (KB) = 1063588 + 0: The total amount of wall time = 457.286327 + 0: The maximum resident set size (KB) = 1062528 Test 050 rap_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/regional_spp_sppt_shum_skeb +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/regional_spp_sppt_shum_skeb Checking test 051 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2206,14 +2206,14 @@ Checking test 051 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 289.061574 - 0: The maximum resident set size (KB) = 1179836 + 0: The total amount of wall time = 282.929494 + 0: The maximum resident set size (KB) = 1182552 Test 051 regional_spp_sppt_shum_skeb PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/rap_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rap_decomp Checking test 052 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2260,14 +2260,14 @@ Checking test 052 rap_decomp results .... Comparing 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.045454 - 0: The maximum resident set size (KB) = 1007976 + 0: The total amount of wall time = 482.377870 + 0: The maximum resident set size (KB) = 1005644 Test 052 rap_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/rap_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rap_2threads Checking test 053 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2314,14 +2314,14 @@ Checking test 053 rap_2threads results .... Comparing 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.593488 - 0: The maximum resident set size (KB) = 1136288 + 0: The total amount of wall time = 439.657649 + 0: The maximum resident set size (KB) = 1132704 Test 053 rap_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/rap_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rap_restart Checking test 054 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2360,14 +2360,14 @@ Checking test 054 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 233.483170 - 0: The maximum resident set size (KB) = 971160 + 0: The total amount of wall time = 235.274557 + 0: The maximum resident set size (KB) = 979104 Test 054 rap_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rap_sfcdiff Checking test 055 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2414,14 +2414,14 @@ Checking test 055 rap_sfcdiff results .... Comparing 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.002206 - 0: The maximum resident set size (KB) = 1059096 + 0: The total amount of wall time = 451.046441 + 0: The maximum resident set size (KB) = 1067020 Test 055 rap_sfcdiff PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/rap_sfcdiff_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rap_sfcdiff_decomp Checking test 056 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2468,14 +2468,14 @@ Checking test 056 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 479.492465 - 0: The maximum resident set size (KB) = 1004684 + 0: The total amount of wall time = 476.904897 + 0: The maximum resident set size (KB) = 1002688 Test 056 rap_sfcdiff_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/rap_sfcdiff_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rap_sfcdiff_restart Checking test 057 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2514,14 +2514,14 @@ Checking test 057 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 342.492824 - 0: The maximum resident set size (KB) = 992116 + 0: The total amount of wall time = 342.266838 + 0: The maximum resident set size (KB) = 979144 Test 057 rap_sfcdiff_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hrrr_control Checking test 058 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2568,14 +2568,14 @@ Checking test 058 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 438.012691 - 0: The maximum resident set size (KB) = 1058964 + 0: The total amount of wall time = 436.018687 + 0: The maximum resident set size (KB) = 1061832 Test 058 hrrr_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/hrrr_control_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hrrr_control_decomp Checking test 059 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2622,14 +2622,14 @@ Checking test 059 hrrr_control_decomp results .... Comparing 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.309025 - 0: The maximum resident set size (KB) = 999392 + 0: The total amount of wall time = 456.666807 + 0: The maximum resident set size (KB) = 1005440 Test 059 hrrr_control_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/hrrr_control_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hrrr_control_2threads Checking test 060 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2676,14 +2676,14 @@ Checking test 060 hrrr_control_2threads results .... Comparing 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.745748 - 0: The maximum resident set size (KB) = 1137616 + 0: The total amount of wall time = 417.933550 + 0: The maximum resident set size (KB) = 1131396 Test 060 hrrr_control_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/hrrr_control_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hrrr_control_restart Checking test 061 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2722,14 +2722,14 @@ Checking test 061 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 328.657231 - 0: The maximum resident set size (KB) = 982928 + 0: The total amount of wall time = 330.449069 + 0: The maximum resident set size (KB) = 987544 Test 061 hrrr_control_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rrfs_v1beta Checking test 062 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2776,14 +2776,14 @@ Checking test 062 rrfs_v1beta results .... Comparing 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.210360 - 0: The maximum resident set size (KB) = 1057164 + 0: The total amount of wall time = 446.646060 + 0: The maximum resident set size (KB) = 1060100 Test 062 rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/rrfs_v1nssl +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rrfs_v1nssl Checking test 063 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2798,14 +2798,14 @@ Checking test 063 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 527.964516 - 0: The maximum resident set size (KB) = 690672 + 0: The total amount of wall time = 527.559905 + 0: The maximum resident set size (KB) = 696316 Test 063 rrfs_v1nssl PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/rrfs_v1nssl_nohailnoccn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rrfs_v1nssl_nohailnoccn Checking test 064 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2820,14 +2820,14 @@ Checking test 064 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 516.419745 - 0: The maximum resident set size (KB) = 753740 + 0: The total amount of wall time = 512.966940 + 0: The maximum resident set size (KB) = 761772 Test 064 rrfs_v1nssl_nohailnoccn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rrfs_conus13km_hrrr_warm Checking test 065 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2836,14 +2836,14 @@ Checking test 065 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 125.028896 - 0: The maximum resident set size (KB) = 928784 + 0: The total amount of wall time = 122.916329 + 0: The maximum resident set size (KB) = 930508 Test 065 rrfs_conus13km_hrrr_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rrfs_smoke_conus13km_hrrr_warm Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2852,14 +2852,14 @@ Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 140.054654 - 0: The maximum resident set size (KB) = 961740 + 0: The total amount of wall time = 138.588293 + 0: The maximum resident set size (KB) = 962416 Test 066 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/rrfs_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rrfs_conus13km_radar_tten_warm Checking test 067 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2868,14 +2868,14 @@ Checking test 067 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 125.124296 - 0: The maximum resident set size (KB) = 937856 + 0: The total amount of wall time = 127.041292 + 0: The maximum resident set size (KB) = 936576 Test 067 rrfs_conus13km_radar_tten_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/rrfs_conus13km_hrrr_warm_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rrfs_conus13km_hrrr_warm_2threads Checking test 068 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2884,14 +2884,14 @@ Checking test 068 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 78.696682 - 0: The maximum resident set size (KB) = 878948 + 0: The total amount of wall time = 78.431746 + 0: The maximum resident set size (KB) = 839424 Test 068 rrfs_conus13km_hrrr_warm_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/rrfs_conus13km_radar_tten_warm_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rrfs_conus13km_radar_tten_warm_2threads Checking test 069 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2900,14 +2900,14 @@ Checking test 069 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 79.885639 - 0: The maximum resident set size (KB) = 885604 + 0: The total amount of wall time = 78.258180 + 0: The maximum resident set size (KB) = 883784 Test 069 rrfs_conus13km_radar_tten_warm_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/control_csawmg +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_csawmg Checking test 070 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2918,14 +2918,14 @@ Checking test 070 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 347.218532 - 0: The maximum resident set size (KB) = 721092 + 0: The total amount of wall time = 342.585193 + 0: The maximum resident set size (KB) = 728640 Test 070 control_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/control_csawmgt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_csawmgt Checking test 071 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2936,14 +2936,14 @@ Checking test 071 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 340.954991 - 0: The maximum resident set size (KB) = 727100 + 0: The total amount of wall time = 340.893034 + 0: The maximum resident set size (KB) = 731672 Test 071 control_csawmgt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/control_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_ras Checking test 072 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2954,26 +2954,26 @@ Checking test 072 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 179.811761 - 0: The maximum resident set size (KB) = 722848 + 0: The total amount of wall time = 179.470427 + 0: The maximum resident set size (KB) = 718292 Test 072 control_ras PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/control_wam +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_wam Checking test 073 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 112.133891 - 0: The maximum resident set size (KB) = 639508 + 0: The total amount of wall time = 112.823326 + 0: The maximum resident set size (KB) = 647560 Test 073 control_wam PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/control_p8_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_p8_faster Checking test 074 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3020,14 +3020,14 @@ Checking test 074 control_p8_faster results .... Comparing 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.294447 - 0: The maximum resident set size (KB) = 1606836 + 0: The total amount of wall time = 151.900639 + 0: The maximum resident set size (KB) = 1607516 Test 074 control_p8_faster PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/regional_control_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/regional_control_faster Checking test 075 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3038,42 +3038,42 @@ Checking test 075 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 276.123331 - 0: The maximum resident set size (KB) = 873592 + 0: The total amount of wall time = 270.437061 + 0: The maximum resident set size (KB) = 864472 Test 075 regional_control_faster PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/rrfs_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rrfs_conus13km_hrrr_warm_debug Checking test 076 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 714.453890 - 0: The maximum resident set size (KB) = 962684 + 0: The total amount of wall time = 724.459357 + 0: The maximum resident set size (KB) = 962876 Test 076 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/rrfs_conus13km_radar_tten_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rrfs_conus13km_radar_tten_warm_debug Checking test 077 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 734.451427 - 0: The maximum resident set size (KB) = 965472 + 0: The total amount of wall time = 726.871197 + 0: The maximum resident set size (KB) = 965680 Test 077 rrfs_conus13km_radar_tten_warm_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/control_CubedSphereGrid_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_CubedSphereGrid_debug Checking test 078 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3100,334 +3100,334 @@ Checking test 078 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 161.138611 - 0: The maximum resident set size (KB) = 793868 + 0: The total amount of wall time = 162.614884 + 0: The maximum resident set size (KB) = 795052 Test 078 control_CubedSphereGrid_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/control_wrtGauss_netcdf_parallel_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_wrtGauss_netcdf_parallel_debug Checking test 079 control_wrtGauss_netcdf_parallel_debug 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 = 152.804085 - 0: The maximum resident set size (KB) = 794748 + 0: The total amount of wall time = 151.261332 + 0: The maximum resident set size (KB) = 791020 Test 079 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_stochy_debug Checking test 080 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 171.335731 - 0: The maximum resident set size (KB) = 798280 + 0: The total amount of wall time = 168.272166 + 0: The maximum resident set size (KB) = 797872 Test 080 control_stochy_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/control_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_lndp_debug Checking test 081 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 155.464191 - 0: The maximum resident set size (KB) = 798972 + 0: The total amount of wall time = 154.223818 + 0: The maximum resident set size (KB) = 797856 Test 081 control_lndp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/control_csawmg_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_csawmg_debug Checking test 082 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 232.669289 - 0: The maximum resident set size (KB) = 846884 + 0: The total amount of wall time = 230.571831 + 0: The maximum resident set size (KB) = 848408 Test 082 control_csawmg_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/control_csawmgt_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_csawmgt_debug Checking test 083 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 227.797337 - 0: The maximum resident set size (KB) = 843408 + 0: The total amount of wall time = 225.138000 + 0: The maximum resident set size (KB) = 840036 Test 083 control_csawmgt_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_ras_debug Checking test 084 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 155.460239 - 0: The maximum resident set size (KB) = 808492 + 0: The total amount of wall time = 154.972680 + 0: The maximum resident set size (KB) = 806112 Test 084 control_ras_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_diag_debug Checking test 085 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 164.128871 - 0: The maximum resident set size (KB) = 848388 + 0: The total amount of wall time = 161.102472 + 0: The maximum resident set size (KB) = 852712 Test 085 control_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_debug_p8 Checking test 086 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 173.203117 - 0: The maximum resident set size (KB) = 1627696 + 0: The total amount of wall time = 169.907390 + 0: The maximum resident set size (KB) = 1628396 Test 086 control_debug_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/regional_debug Checking test 087 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 982.628088 - 0: The maximum resident set size (KB) = 890024 + 0: The total amount of wall time = 1005.893574 + 0: The maximum resident set size (KB) = 891616 Test 087 regional_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rap_control_debug Checking test 088 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.829610 - 0: The maximum resident set size (KB) = 1174336 + 0: The total amount of wall time = 277.837989 + 0: The maximum resident set size (KB) = 1176976 Test 088 rap_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hrrr_control_debug Checking test 089 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 270.019162 - 0: The maximum resident set size (KB) = 1175780 + 0: The total amount of wall time = 268.704799 + 0: The maximum resident set size (KB) = 1179500 Test 089 hrrr_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/rap_unified_drag_suite_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rap_unified_drag_suite_debug Checking test 090 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.306823 - 0: The maximum resident set size (KB) = 1178716 + 0: The total amount of wall time = 275.182977 + 0: The maximum resident set size (KB) = 1177128 Test 090 rap_unified_drag_suite_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rap_diag_debug Checking test 091 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 292.982424 - 0: The maximum resident set size (KB) = 1258648 + 0: The total amount of wall time = 292.112111 + 0: The maximum resident set size (KB) = 1258464 Test 091 rap_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/rap_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rap_cires_ugwp_debug Checking test 092 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.571399 - 0: The maximum resident set size (KB) = 1174820 + 0: The total amount of wall time = 281.781163 + 0: The maximum resident set size (KB) = 1175124 Test 092 rap_cires_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/rap_unified_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rap_unified_ugwp_debug Checking test 093 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.988272 - 0: The maximum resident set size (KB) = 1181924 + 0: The total amount of wall time = 281.043088 + 0: The maximum resident set size (KB) = 1178708 Test 093 rap_unified_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/rap_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rap_lndp_debug Checking test 094 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.444444 - 0: The maximum resident set size (KB) = 1176996 + 0: The total amount of wall time = 278.562159 + 0: The maximum resident set size (KB) = 1176952 Test 094 rap_lndp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_flake_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/rap_flake_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rap_flake_debug Checking test 095 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 272.693047 - 0: The maximum resident set size (KB) = 1173152 + 0: The total amount of wall time = 270.417117 + 0: The maximum resident set size (KB) = 1176180 Test 095 rap_flake_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rap_progcld_thompson_debug Checking test 096 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.441669 - 0: The maximum resident set size (KB) = 1181020 + 0: The total amount of wall time = 275.241406 + 0: The maximum resident set size (KB) = 1173156 Test 096 rap_progcld_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/rap_noah_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rap_noah_debug Checking test 097 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.141613 - 0: The maximum resident set size (KB) = 1170364 + 0: The total amount of wall time = 270.590600 + 0: The maximum resident set size (KB) = 1180780 Test 097 rap_noah_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/rap_sfcdiff_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rap_sfcdiff_debug Checking test 098 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.497273 - 0: The maximum resident set size (KB) = 1175176 + 0: The total amount of wall time = 276.658775 + 0: The maximum resident set size (KB) = 1179596 Test 098 rap_sfcdiff_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rap_noah_sfcdiff_cires_ugwp_debug Checking test 099 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 445.049477 - 0: The maximum resident set size (KB) = 1173164 + 0: The total amount of wall time = 442.548197 + 0: The maximum resident set size (KB) = 1173372 Test 099 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rrfs_v1beta_debug Checking test 100 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 270.421902 - 0: The maximum resident set size (KB) = 1170152 + 0: The total amount of wall time = 271.801710 + 0: The maximum resident set size (KB) = 1177084 Test 100 rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_wam_debug Checking test 101 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 280.219967 - 0: The maximum resident set size (KB) = 524716 + 0: The total amount of wall time = 272.949961 + 0: The maximum resident set size (KB) = 522068 Test 101 control_wam_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 102 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3438,14 +3438,14 @@ Checking test 102 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 265.229610 - 0: The maximum resident set size (KB) = 1075380 + 0: The total amount of wall time = 259.694383 + 0: The maximum resident set size (KB) = 1072796 Test 102 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rap_control_dyn32_phy32 Checking test 103 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3492,14 +3492,14 @@ Checking test 103 rap_control_dyn32_phy32 results .... Comparing 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.538204 - 0: The maximum resident set size (KB) = 1004804 + 0: The total amount of wall time = 369.589805 + 0: The maximum resident set size (KB) = 1005840 Test 103 rap_control_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hrrr_control_dyn32_phy32 Checking test 104 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3546,14 +3546,14 @@ Checking test 104 hrrr_control_dyn32_phy32 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 = 197.333228 - 0: The maximum resident set size (KB) = 956976 + 0: The total amount of wall time = 194.723108 + 0: The maximum resident set size (KB) = 948932 Test 104 hrrr_control_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/rap_2threads_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rap_2threads_dyn32_phy32 Checking test 105 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3600,14 +3600,14 @@ Checking test 105 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 358.978326 - 0: The maximum resident set size (KB) = 1020040 + 0: The total amount of wall time = 357.554377 + 0: The maximum resident set size (KB) = 1025644 Test 105 rap_2threads_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/hrrr_control_2threads_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hrrr_control_2threads_dyn32_phy32 Checking test 106 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3654,14 +3654,14 @@ Checking test 106 hrrr_control_2threads_dyn32_phy32 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 = 193.138393 - 0: The maximum resident set size (KB) = 1005444 + 0: The total amount of wall time = 189.411512 + 0: The maximum resident set size (KB) = 1003256 Test 106 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/hrrr_control_decomp_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hrrr_control_decomp_dyn32_phy32 Checking test 107 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3708,14 +3708,14 @@ Checking test 107 hrrr_control_decomp_dyn32_phy32 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 = 209.086123 - 0: The maximum resident set size (KB) = 899276 + 0: The total amount of wall time = 204.493453 + 0: The maximum resident set size (KB) = 896168 Test 107 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/rap_restart_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rap_restart_dyn32_phy32 Checking test 108 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3754,14 +3754,14 @@ Checking test 108 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 280.243030 - 0: The maximum resident set size (KB) = 956148 + 0: The total amount of wall time = 279.088594 + 0: The maximum resident set size (KB) = 951728 Test 108 rap_restart_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/hrrr_control_restart_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hrrr_control_restart_dyn32_phy32 Checking test 109 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3800,14 +3800,14 @@ Checking test 109 hrrr_control_restart_dyn32_phy32 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 = 101.471939 - 0: The maximum resident set size (KB) = 864440 + 0: The total amount of wall time = 100.519303 + 0: The maximum resident set size (KB) = 869872 Test 109 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rap_control_dyn64_phy32 Checking test 110 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3854,81 +3854,81 @@ Checking test 110 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 243.726057 - 0: The maximum resident set size (KB) = 964620 + 0: The total amount of wall time = 241.503284 + 0: The maximum resident set size (KB) = 966964 Test 110 rap_control_dyn64_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rap_control_debug_dyn32_phy32 Checking test 111 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 272.003827 - 0: The maximum resident set size (KB) = 1054696 + 0: The total amount of wall time = 270.714679 + 0: The maximum resident set size (KB) = 1056556 Test 111 rap_control_debug_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hrrr_control_debug_dyn32_phy32 Checking test 112 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 265.685104 - 0: The maximum resident set size (KB) = 1050000 + 0: The total amount of wall time = 266.297158 + 0: The maximum resident set size (KB) = 1055340 Test 112 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/rap_control_dyn64_phy32_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rap_control_dyn64_phy32_debug Checking test 113 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.473543 - 0: The maximum resident set size (KB) = 1107012 + 0: The total amount of wall time = 280.435962 + 0: The maximum resident set size (KB) = 1107896 Test 113 rap_control_dyn64_phy32_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/hafs_regional_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hafs_regional_atm Checking test 114 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 242.122322 - 0: The maximum resident set size (KB) = 1057452 + 0: The total amount of wall time = 242.955584 + 0: The maximum resident set size (KB) = 1048488 Test 114 hafs_regional_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/hafs_regional_atm_thompson_gfdlsf +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hafs_regional_atm_thompson_gfdlsf Checking test 115 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 327.936867 - 0: The maximum resident set size (KB) = 1416476 + 0: The total amount of wall time = 328.182298 + 0: The maximum resident set size (KB) = 1413356 Test 115 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/hafs_regional_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hafs_regional_atm_ocn Checking test 116 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3937,14 +3937,14 @@ Checking test 116 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 386.068217 - 0: The maximum resident set size (KB) = 1220184 + 0: The total amount of wall time = 384.993350 + 0: The maximum resident set size (KB) = 1221444 Test 116 hafs_regional_atm_ocn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/hafs_regional_atm_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hafs_regional_atm_wav Checking test 117 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3953,14 +3953,14 @@ Checking test 117 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 753.246370 - 0: The maximum resident set size (KB) = 1249144 + 0: The total amount of wall time = 770.019132 + 0: The maximum resident set size (KB) = 1247720 Test 117 hafs_regional_atm_wav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/hafs_regional_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hafs_regional_atm_ocn_wav Checking test 118 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3971,28 +3971,28 @@ Checking test 118 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 839.062824 - 0: The maximum resident set size (KB) = 1295136 + 0: The total amount of wall time = 837.503485 + 0: The maximum resident set size (KB) = 1274444 Test 118 hafs_regional_atm_ocn_wav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/hafs_regional_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hafs_regional_1nest_atm Checking test 119 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 319.475888 - 0: The maximum resident set size (KB) = 504060 + 0: The total amount of wall time = 323.356677 + 0: The maximum resident set size (KB) = 508348 Test 119 hafs_regional_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/hafs_regional_telescopic_2nests_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hafs_regional_telescopic_2nests_atm Checking test 120 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4001,28 +4001,28 @@ Checking test 120 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 366.212344 - 0: The maximum resident set size (KB) = 511576 + 0: The total amount of wall time = 368.543455 + 0: The maximum resident set size (KB) = 513552 Test 120 hafs_regional_telescopic_2nests_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/hafs_global_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hafs_global_1nest_atm Checking test 121 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 146.580234 - 0: The maximum resident set size (KB) = 353700 + 0: The total amount of wall time = 146.081995 + 0: The maximum resident set size (KB) = 352076 Test 121 hafs_global_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_multiple_4nests_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/hafs_global_multiple_4nests_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hafs_global_multiple_4nests_atm Checking test 122 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4040,14 +4040,14 @@ Checking test 122 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 428.138545 - 0: The maximum resident set size (KB) = 450376 + 0: The total amount of wall time = 418.454535 + 0: The maximum resident set size (KB) = 452284 Test 122 hafs_global_multiple_4nests_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/hafs_regional_specified_moving_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hafs_regional_specified_moving_1nest_atm Checking test 123 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4056,28 +4056,28 @@ Checking test 123 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 204.563052 - 0: The maximum resident set size (KB) = 515120 + 0: The total amount of wall time = 201.570506 + 0: The maximum resident set size (KB) = 517180 Test 123 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/hafs_regional_storm_following_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hafs_regional_storm_following_1nest_atm Checking test 124 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 193.079903 - 0: The maximum resident set size (KB) = 519268 + 0: The total amount of wall time = 191.223663 + 0: The maximum resident set size (KB) = 512396 Test 124 hafs_regional_storm_following_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/hafs_regional_storm_following_1nest_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hafs_regional_storm_following_1nest_atm_ocn Checking test 125 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4086,42 +4086,42 @@ Checking test 125 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 223.978585 - 0: The maximum resident set size (KB) = 552528 + 0: The total amount of wall time = 221.839606 + 0: The maximum resident set size (KB) = 553232 Test 125 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/hafs_global_storm_following_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hafs_global_storm_following_1nest_atm Checking test 126 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 61.731451 - 0: The maximum resident set size (KB) = 363032 + 0: The total amount of wall time = 57.966599 + 0: The maximum resident set size (KB) = 364772 Test 126 hafs_global_storm_following_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 127 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 765.746261 - 0: The maximum resident set size (KB) = 576092 + 0: The total amount of wall time = 774.344168 + 0: The maximum resident set size (KB) = 578000 Test 127 hafs_regional_storm_following_1nest_atm_ocn_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 128 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4132,14 +4132,14 @@ Checking test 128 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 519.758800 - 0: The maximum resident set size (KB) = 613916 + 0: The total amount of wall time = 512.999576 + 0: The maximum resident set size (KB) = 613656 Test 128 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_docn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/hafs_regional_docn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hafs_regional_docn Checking test 129 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4147,14 +4147,14 @@ Checking test 129 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 361.417428 - 0: The maximum resident set size (KB) = 1227356 + 0: The total amount of wall time = 355.738028 + 0: The maximum resident set size (KB) = 1224592 Test 129 hafs_regional_docn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_docn_oisst -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/hafs_regional_docn_oisst +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hafs_regional_docn_oisst Checking test 130 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4162,131 +4162,131 @@ Checking test 130 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 360.675027 - 0: The maximum resident set size (KB) = 1212672 + 0: The total amount of wall time = 354.032162 + 0: The maximum resident set size (KB) = 1213328 Test 130 hafs_regional_docn_oisst PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_datm_cdeps -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/hafs_regional_datm_cdeps +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hafs_regional_datm_cdeps Checking test 131 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 953.094992 - 0: The maximum resident set size (KB) = 1038992 + 0: The total amount of wall time = 958.972743 + 0: The maximum resident set size (KB) = 1039888 Test 131 hafs_regional_datm_cdeps PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/datm_cdeps_control_cfsr Checking test 132 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 158.286313 - 0: The maximum resident set size (KB) = 1059452 + 0: The total amount of wall time = 155.509189 + 0: The maximum resident set size (KB) = 1067200 Test 132 datm_cdeps_control_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/datm_cdeps_restart_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/datm_cdeps_restart_cfsr Checking test 133 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 95.224920 - 0: The maximum resident set size (KB) = 1009776 + 0: The total amount of wall time = 91.274729 + 0: The maximum resident set size (KB) = 1011756 Test 133 datm_cdeps_restart_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/datm_cdeps_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/datm_cdeps_control_gefs Checking test 134 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.330266 - 0: The maximum resident set size (KB) = 968684 + 0: The total amount of wall time = 149.717256 + 0: The maximum resident set size (KB) = 961944 Test 134 datm_cdeps_control_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_iau_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/datm_cdeps_iau_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/datm_cdeps_iau_gefs Checking test 135 datm_cdeps_iau_gefs 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 = 152.640356 - 0: The maximum resident set size (KB) = 960404 + 0: The total amount of wall time = 153.047499 + 0: The maximum resident set size (KB) = 958916 Test 135 datm_cdeps_iau_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_stochy_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/datm_cdeps_stochy_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/datm_cdeps_stochy_gefs Checking test 136 datm_cdeps_stochy_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 151.882484 - 0: The maximum resident set size (KB) = 962336 + 0: The total amount of wall time = 152.018825 + 0: The maximum resident set size (KB) = 970304 Test 136 datm_cdeps_stochy_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_ciceC_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/datm_cdeps_ciceC_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/datm_cdeps_ciceC_cfsr Checking test 137 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 156.844714 - 0: The maximum resident set size (KB) = 1072244 + 0: The total amount of wall time = 154.712892 + 0: The maximum resident set size (KB) = 1070416 Test 137 datm_cdeps_ciceC_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/datm_cdeps_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/datm_cdeps_bulk_cfsr Checking test 138 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 157.181915 - 0: The maximum resident set size (KB) = 1055656 + 0: The total amount of wall time = 153.370258 + 0: The maximum resident set size (KB) = 1058064 Test 138 datm_cdeps_bulk_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/datm_cdeps_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/datm_cdeps_bulk_gefs Checking test 139 datm_cdeps_bulk_gefs 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.471129 - 0: The maximum resident set size (KB) = 963908 + 0: The total amount of wall time = 144.055211 + 0: The maximum resident set size (KB) = 968664 Test 139 datm_cdeps_bulk_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/datm_cdeps_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/datm_cdeps_mx025_cfsr Checking test 140 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4295,14 +4295,14 @@ Checking test 140 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 404.930302 - 0: The maximum resident set size (KB) = 878144 + 0: The total amount of wall time = 399.453884 + 0: The maximum resident set size (KB) = 877240 Test 140 datm_cdeps_mx025_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/datm_cdeps_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/datm_cdeps_mx025_gefs Checking test 141 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4311,77 +4311,77 @@ Checking test 141 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 396.297436 - 0: The maximum resident set size (KB) = 929244 + 0: The total amount of wall time = 393.169957 + 0: The maximum resident set size (KB) = 935464 Test 141 datm_cdeps_mx025_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/datm_cdeps_multiple_files_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/datm_cdeps_multiple_files_cfsr Checking test 142 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 152.859419 - 0: The maximum resident set size (KB) = 1072400 + 0: The total amount of wall time = 154.922241 + 0: The maximum resident set size (KB) = 1075212 Test 142 datm_cdeps_multiple_files_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/datm_cdeps_3072x1536_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/datm_cdeps_3072x1536_cfsr Checking test 143 datm_cdeps_3072x1536_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 217.078746 - 0: The maximum resident set size (KB) = 2363472 + 0: The total amount of wall time = 217.389971 + 0: The maximum resident set size (KB) = 2374092 Test 143 datm_cdeps_3072x1536_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_gfs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/datm_cdeps_gfs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/datm_cdeps_gfs Checking test 144 datm_cdeps_gfs results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 223.555366 - 0: The maximum resident set size (KB) = 2361080 + 0: The total amount of wall time = 217.281501 + 0: The maximum resident set size (KB) = 2368220 Test 144 datm_cdeps_gfs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/datm_cdeps_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/datm_cdeps_debug_cfsr Checking test 145 datm_cdeps_debug_cfsr 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 = 439.550110 - 0: The maximum resident set size (KB) = 986668 + 0: The total amount of wall time = 440.546373 + 0: The maximum resident set size (KB) = 983616 Test 145 datm_cdeps_debug_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/datm_cdeps_control_cfsr_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/datm_cdeps_control_cfsr_faster Checking test 146 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 156.211653 - 0: The maximum resident set size (KB) = 1064360 + 0: The total amount of wall time = 151.435970 + 0: The maximum resident set size (KB) = 1057416 Test 146 datm_cdeps_control_cfsr_faster PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/datm_cdeps_lnd_gswp3 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/datm_cdeps_lnd_gswp3 Checking test 147 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4390,14 +4390,14 @@ Checking test 147 datm_cdeps_lnd_gswp3 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 = 8.956077 - 0: The maximum resident set size (KB) = 252056 + 0: The total amount of wall time = 6.853825 + 0: The maximum resident set size (KB) = 255360 Test 147 datm_cdeps_lnd_gswp3 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/datm_cdeps_lnd_gswp3_rst +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/datm_cdeps_lnd_gswp3_rst Checking test 148 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4406,14 +4406,14 @@ Checking test 148 datm_cdeps_lnd_gswp3_rst 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.343392 - 0: The maximum resident set size (KB) = 265656 + 0: The total amount of wall time = 12.162825 + 0: The maximum resident set size (KB) = 254720 Test 148 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_atmlnd_sbs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/control_p8_atmlnd_sbs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_p8_atmlnd_sbs Checking test 149 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4498,14 +4498,14 @@ Checking test 149 control_p8_atmlnd_sbs 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 = 206.552121 - 0: The maximum resident set size (KB) = 1617448 + 0: The total amount of wall time = 201.535774 + 0: The maximum resident set size (KB) = 1615160 Test 149 control_p8_atmlnd_sbs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_atmwav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/control_atmwav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_atmwav Checking test 150 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4549,14 +4549,14 @@ Checking test 150 control_atmwav 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.415174 - 0: The maximum resident set size (KB) = 662176 + 0: The total amount of wall time = 86.416940 + 0: The maximum resident set size (KB) = 664156 Test 150 control_atmwav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/atmaero_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/atmaero_control_p8 Checking test 151 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4600,14 +4600,14 @@ Checking test 151 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 231.266353 - 0: The maximum resident set size (KB) = 2976728 + 0: The total amount of wall time = 226.129838 + 0: The maximum resident set size (KB) = 2974392 Test 151 atmaero_control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/atmaero_control_p8_rad +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/atmaero_control_p8_rad Checking test 152 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4651,14 +4651,14 @@ Checking test 152 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 280.899407 - 0: The maximum resident set size (KB) = 3043184 + 0: The total amount of wall time = 278.367521 + 0: The maximum resident set size (KB) = 3050176 Test 152 atmaero_control_p8_rad PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad_micro -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/atmaero_control_p8_rad_micro +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/atmaero_control_p8_rad_micro Checking test 153 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4702,14 +4702,14 @@ Checking test 153 atmaero_control_p8_rad_micro results .... Comparing 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.403765 - 0: The maximum resident set size (KB) = 3052656 + 0: The total amount of wall time = 283.984874 + 0: The maximum resident set size (KB) = 3054772 Test 153 atmaero_control_p8_rad_micro PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/regional_atmaq +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/regional_atmaq Checking test 154 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4725,14 +4725,14 @@ Checking test 154 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 614.021046 - 0: The maximum resident set size (KB) = 1553412 + 0: The total amount of wall time = 603.633149 + 0: The maximum resident set size (KB) = 1567884 Test 154 regional_atmaq PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/regional_atmaq_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/regional_atmaq_debug Checking test 155 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4746,14 +4746,14 @@ Checking test 155 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1325.000102 - 0: The maximum resident set size (KB) = 1511636 + 0: The total amount of wall time = 1323.205196 + 0: The maximum resident set size (KB) = 1510800 Test 155 regional_atmaq_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29875/regional_atmaq_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/regional_atmaq_faster Checking test 156 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4769,12 +4769,12 @@ Checking test 156 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 575.257651 - 0: The maximum resident set size (KB) = 1559708 + 0: The total amount of wall time = 567.628965 + 0: The maximum resident set size (KB) = 1563280 Test 156 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Fri Mar 10 14:50:07 UTC 2023 -Elapsed time: 01h:16m:57s. Have a nice day! +Tue Mar 14 02:26:40 UTC 2023 +Elapsed time: 01h:23m:49s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index bc93a284fc2..5b5c6de5b28 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,42 +1,42 @@ -Sun Mar 12 19:28:19 UTC 2023 +Tue Mar 14 01:54:15 UTC 2023 Start Regression test -Compile 001 elapsed time 1838 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 002 elapsed time 1834 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 003 elapsed time 1674 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 004 elapsed time 311 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 275 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 1486 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 007 elapsed time 1508 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 008 elapsed time 3573 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 009 elapsed time 1601 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 010 elapsed time 1590 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 011 elapsed time 1493 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 012 elapsed time 1387 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 013 elapsed time 2090 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 014 elapsed time 385 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 291 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 1464 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 017 elapsed time 1442 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 018 elapsed time 306 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 296 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 1654 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 021 elapsed time 335 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 2123 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 023 elapsed time 1689 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 024 elapsed time 282 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 025 elapsed time 163 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 330 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 027 elapsed time 161 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 028 elapsed time 1465 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 029 elapsed time 1641 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 030 elapsed time 1491 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 031 elapsed time 1491 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 032 elapsed time 267 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 1914 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 001 elapsed time 1819 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 002 elapsed time 1985 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 003 elapsed time 1768 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 004 elapsed time 318 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 292 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 1495 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 007 elapsed time 1520 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 008 elapsed time 3348 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 009 elapsed time 1554 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 010 elapsed time 1560 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 011 elapsed time 1452 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 012 elapsed time 1375 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 013 elapsed time 1965 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 014 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 387 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 1544 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 017 elapsed time 1498 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 018 elapsed time 482 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 237 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 1664 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 021 elapsed time 293 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 2091 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 023 elapsed time 1658 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 024 elapsed time 301 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 025 elapsed time 177 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 270 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 027 elapsed time 104 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 028 elapsed time 1461 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 029 elapsed time 1622 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 030 elapsed time 1448 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 031 elapsed time 1428 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 032 elapsed time 266 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 1887 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_mixedmode -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/cpld_control_p8_mixedmode +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -101,14 +101,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 450.836742 - 0: The maximum resident set size (KB) = 1753476 + 0: The total amount of wall time = 434.391510 + 0: The maximum resident set size (KB) = 1729632 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_gfsv17 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/cpld_control_gfsv17 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -172,14 +172,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 381.391388 - 0: The maximum resident set size (KB) = 1630088 + 0: The total amount of wall time = 314.282697 + 0: The maximum resident set size (KB) = 1625892 Test 002 cpld_control_gfsv17 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/cpld_control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -244,14 +244,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 554.035589 - 0: The maximum resident set size (KB) = 1763684 + 0: The total amount of wall time = 496.491849 + 0: The maximum resident set size (KB) = 1766948 Test 003 cpld_control_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/cpld_restart_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -304,14 +304,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 325.405640 - 0: The maximum resident set size (KB) = 1489052 + 0: The total amount of wall time = 267.710806 + 0: The maximum resident set size (KB) = 1489664 Test 004 cpld_restart_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/cpld_2threads_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -364,14 +364,14 @@ Checking test 005 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 564.001092 - 0: The maximum resident set size (KB) = 1991328 + 0: The total amount of wall time = 523.366084 + 0: The maximum resident set size (KB) = 1958556 Test 005 cpld_2threads_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/cpld_decomp_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/cpld_decomp_p8 Checking test 006 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -424,14 +424,14 @@ Checking test 006 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 549.246017 - 0: The maximum resident set size (KB) = 1761396 + 0: The total amount of wall time = 497.839644 + 0: The maximum resident set size (KB) = 1771116 Test 006 cpld_decomp_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/cpld_mpi_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/cpld_mpi_p8 Checking test 007 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -484,14 +484,14 @@ Checking test 007 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 470.768238 - 0: The maximum resident set size (KB) = 1725744 + 0: The total amount of wall time = 432.137711 + 0: The maximum resident set size (KB) = 1726988 Test 007 cpld_mpi_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_ciceC_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/cpld_control_ciceC_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/cpld_control_ciceC_p8 Checking test 008 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -556,14 +556,14 @@ Checking test 008 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 550.459293 - 0: The maximum resident set size (KB) = 1764584 + 0: The total amount of wall time = 505.036732 + 0: The maximum resident set size (KB) = 1776716 Test 008 cpld_control_ciceC_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/cpld_control_noaero_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/cpld_control_noaero_p8 Checking test 009 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -627,14 +627,14 @@ Checking test 009 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 421.225322 - 0: The maximum resident set size (KB) = 1619320 + 0: The total amount of wall time = 369.955852 + 0: The maximum resident set size (KB) = 1602292 Test 009 cpld_control_noaero_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/cpld_control_nowave_noaero_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/cpld_control_nowave_noaero_p8 Checking test 010 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -696,14 +696,14 @@ Checking test 010 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 414.632088 - 0: The maximum resident set size (KB) = 1681036 + 0: The total amount of wall time = 369.917209 + 0: The maximum resident set size (KB) = 1669032 Test 010 cpld_control_nowave_noaero_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_debug_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/cpld_debug_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/cpld_debug_p8 Checking test 011 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -756,14 +756,14 @@ Checking test 011 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 910.550446 - 0: The maximum resident set size (KB) = 1837632 + 0: The total amount of wall time = 875.272117 + 0: The maximum resident set size (KB) = 1819848 Test 011 cpld_debug_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_debug_noaero_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/cpld_debug_noaero_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/cpld_debug_noaero_p8 Checking test 012 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -815,14 +815,14 @@ Checking test 012 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 544.947249 - 0: The maximum resident set size (KB) = 1642636 + 0: The total amount of wall time = 553.612532 + 0: The maximum resident set size (KB) = 1597044 Test 012 cpld_debug_noaero_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/cpld_control_noaero_p8_agrid +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/cpld_control_noaero_p8_agrid Checking test 013 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -884,14 +884,14 @@ Checking test 013 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 426.646108 - 0: The maximum resident set size (KB) = 1670280 + 0: The total amount of wall time = 389.106775 + 0: The maximum resident set size (KB) = 1671448 Test 013 cpld_control_noaero_p8_agrid PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c48 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/cpld_control_c48 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/cpld_control_c48 Checking test 014 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -941,14 +941,14 @@ Checking test 014 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 838.214891 - 0: The maximum resident set size (KB) = 2760612 + 0: The total amount of wall time = 811.091535 + 0: The maximum resident set size (KB) = 2773636 Test 014 cpld_control_c48 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/cpld_warmstart_c48 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/cpld_warmstart_c48 Checking test 015 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -998,14 +998,14 @@ Checking test 015 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 232.253346 - 0: The maximum resident set size (KB) = 2773184 + 0: The total amount of wall time = 214.924335 + 0: The maximum resident set size (KB) = 2768248 Test 015 cpld_warmstart_c48 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/cpld_restart_c48 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/cpld_restart_c48 Checking test 016 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1055,14 +1055,14 @@ Checking test 016 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 116.292456 - 0: The maximum resident set size (KB) = 2210640 + 0: The total amount of wall time = 115.082700 + 0: The maximum resident set size (KB) = 2208936 Test 016 cpld_restart_c48 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_faster -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/cpld_control_p8_faster +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/cpld_control_p8_faster Checking test 017 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1127,14 +1127,14 @@ Checking test 017 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 525.559786 - 0: The maximum resident set size (KB) = 1780336 + 0: The total amount of wall time = 486.258667 + 0: The maximum resident set size (KB) = 1774160 Test 017 cpld_control_p8_faster PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/control_CubedSphereGrid +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/control_CubedSphereGrid Checking test 018 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1161,28 +1161,28 @@ Checking test 018 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 287.584107 - 0: The maximum resident set size (KB) = 574948 + 0: The total amount of wall time = 202.703771 + 0: The maximum resident set size (KB) = 578224 Test 018 control_CubedSphereGrid PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid_parallel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/control_CubedSphereGrid_parallel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/control_CubedSphereGrid_parallel Checking test 019 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing atmf024.nc .........OK - 0: The total amount of wall time = 307.379844 - 0: The maximum resident set size (KB) = 575240 + 0: The total amount of wall time = 203.945375 + 0: The maximum resident set size (KB) = 574220 Test 019 control_CubedSphereGrid_parallel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_latlon -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/control_latlon +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/control_latlon Checking test 020 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1193,32 +1193,32 @@ Checking test 020 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 275.632937 - 0: The maximum resident set size (KB) = 576540 + 0: The total amount of wall time = 210.532694 + 0: The maximum resident set size (KB) = 571456 Test 020 control_latlon PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/control_wrtGauss_netcdf_parallel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/control_wrtGauss_netcdf_parallel Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK + Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 321.591206 - 0: The maximum resident set size (KB) = 572312 + 0: The total amount of wall time = 209.958543 + 0: The maximum resident set size (KB) = 575544 Test 021 control_wrtGauss_netcdf_parallel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c48 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/control_c48 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/control_c48 Checking test 022 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1257,14 +1257,14 @@ Checking test 022 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 600.345341 -0: The maximum resident set size (KB) = 790496 +0: The total amount of wall time = 596.682390 +0: The maximum resident set size (KB) = 788336 Test 022 control_c48 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c192 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/control_c192 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/control_c192 Checking test 023 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1275,14 +1275,14 @@ Checking test 023 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 990.989883 - 0: The maximum resident set size (KB) = 694168 + 0: The total amount of wall time = 813.780540 + 0: The maximum resident set size (KB) = 682324 Test 023 control_c192 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/control_c384 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/control_c384 Checking test 024 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1293,14 +1293,14 @@ Checking test 024 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1260.313030 - 0: The maximum resident set size (KB) = 1058468 + 0: The total amount of wall time = 1027.025545 + 0: The maximum resident set size (KB) = 1047848 Test 024 control_c384 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384gdas -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/control_c384gdas +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/control_c384gdas Checking test 025 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1343,14 +1343,14 @@ Checking test 025 control_c384gdas 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 = 1084.071319 - 0: The maximum resident set size (KB) = 1189036 + 0: The total amount of wall time = 873.696945 + 0: The maximum resident set size (KB) = 1177584 Test 025 control_c384gdas PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/control_stochy +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/control_stochy Checking test 026 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1361,28 +1361,28 @@ Checking test 026 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 176.284688 - 0: The maximum resident set size (KB) = 577516 + 0: The total amount of wall time = 133.837270 + 0: The maximum resident set size (KB) = 580168 Test 026 control_stochy PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/control_stochy_restart +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/control_stochy_restart Checking test 027 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 104.991135 - 0: The maximum resident set size (KB) = 395616 + 0: The total amount of wall time = 78.164298 + 0: The maximum resident set size (KB) = 393392 Test 027 control_stochy_restart PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/control_lndp +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/control_lndp Checking test 028 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1393,14 +1393,14 @@ Checking test 028 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 187.467565 - 0: The maximum resident set size (KB) = 574308 + 0: The total amount of wall time = 133.422226 + 0: The maximum resident set size (KB) = 578244 Test 028 control_lndp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr4 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/control_iovr4 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/control_iovr4 Checking test 029 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1415,14 +1415,14 @@ Checking test 029 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 312.956991 - 0: The maximum resident set size (KB) = 571016 + 0: The total amount of wall time = 216.628292 + 0: The maximum resident set size (KB) = 572916 Test 029 control_iovr4 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr5 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/control_iovr5 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/control_iovr5 Checking test 030 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1437,14 +1437,14 @@ Checking test 030 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 302.310085 - 0: The maximum resident set size (KB) = 571656 + 0: The total amount of wall time = 211.271142 + 0: The maximum resident set size (KB) = 578168 Test 030 control_iovr5 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/control_p8 Checking test 031 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1491,14 +1491,14 @@ Checking test 031 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 307.329340 - 0: The maximum resident set size (KB) = 1535540 + 0: The total amount of wall time = 265.045913 + 0: The maximum resident set size (KB) = 1537588 Test 031 control_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_lndp -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/control_p8_lndp +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/control_p8_lndp Checking test 032 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1517,14 +1517,14 @@ Checking test 032 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 579.753211 - 0: The maximum resident set size (KB) = 1536164 + 0: The total amount of wall time = 473.947670 + 0: The maximum resident set size (KB) = 1543256 Test 032 control_p8_lndp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/control_restart_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/control_restart_p8 Checking test 033 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1563,14 +1563,14 @@ Checking test 033 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 158.636285 - 0: The maximum resident set size (KB) = 775448 + 0: The total amount of wall time = 143.976820 + 0: The maximum resident set size (KB) = 791232 Test 033 control_restart_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/control_decomp_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/control_decomp_p8 Checking test 034 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1613,14 +1613,14 @@ Checking test 034 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 334.266495 - 0: The maximum resident set size (KB) = 1521672 + 0: The total amount of wall time = 257.795729 + 0: The maximum resident set size (KB) = 1520424 Test 034 control_decomp_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/control_2threads_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/control_2threads_p8 Checking test 035 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1663,14 +1663,14 @@ Checking test 035 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 307.311676 - 0: The maximum resident set size (KB) = 1615500 + 0: The total amount of wall time = 252.869477 + 0: The maximum resident set size (KB) = 1626108 Test 035 control_2threads_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_rrtmgp -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/control_p8_rrtmgp +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/control_p8_rrtmgp Checking test 036 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1717,14 +1717,14 @@ Checking test 036 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 389.915868 - 0: The maximum resident set size (KB) = 1602696 + 0: The total amount of wall time = 340.598350 + 0: The maximum resident set size (KB) = 1602840 Test 036 control_p8_rrtmgp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/merra2_thompson -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/merra2_thompson +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/merra2_thompson Checking test 037 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1771,14 +1771,14 @@ Checking test 037 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 387.081812 - 0: The maximum resident set size (KB) = 1555888 + 0: The total amount of wall time = 290.889556 + 0: The maximum resident set size (KB) = 1546512 Test 037 merra2_thompson PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/regional_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/regional_control Checking test 038 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1789,28 +1789,28 @@ Checking test 038 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 657.485336 - 0: The maximum resident set size (KB) = 785240 + 0: The total amount of wall time = 465.722523 + 0: The maximum resident set size (KB) = 788248 Test 038 regional_control PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/regional_restart +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/regional_restart Checking test 039 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 309.039445 - 0: The maximum resident set size (KB) = 779540 + 0: The total amount of wall time = 224.274169 + 0: The maximum resident set size (KB) = 779920 Test 039 regional_restart PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/regional_decomp +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/regional_decomp Checking test 040 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1821,14 +1821,14 @@ Checking test 040 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 683.194419 - 0: The maximum resident set size (KB) = 777544 + 0: The total amount of wall time = 454.568753 + 0: The maximum resident set size (KB) = 783856 Test 040 regional_decomp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/regional_2threads +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/regional_2threads Checking test 041 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1839,14 +1839,14 @@ Checking test 041 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 387.400139 - 0: The maximum resident set size (KB) = 769636 + 0: The total amount of wall time = 298.808976 + 0: The maximum resident set size (KB) = 768848 Test 041 regional_2threads PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_noquilt -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/regional_noquilt +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/regional_noquilt Checking test 042 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1854,28 +1854,28 @@ Checking test 042 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 618.162790 - 0: The maximum resident set size (KB) = 775964 + 0: The total amount of wall time = 511.000636 + 0: The maximum resident set size (KB) = 773280 Test 042 regional_noquilt PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/regional_netcdf_parallel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/regional_netcdf_parallel Checking test 043 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK - Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 595.218716 - 0: The maximum resident set size (KB) = 783676 + 0: The total amount of wall time = 452.509155 + 0: The maximum resident set size (KB) = 781700 Test 043 regional_netcdf_parallel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/regional_2dwrtdecomp +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/regional_2dwrtdecomp Checking test 044 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1886,14 +1886,14 @@ Checking test 044 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 660.789839 - 0: The maximum resident set size (KB) = 784756 + 0: The total amount of wall time = 451.521203 + 0: The maximum resident set size (KB) = 783944 Test 044 regional_2dwrtdecomp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/fv3_regional_wofs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/regional_wofs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/regional_wofs Checking test 045 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1904,14 +1904,14 @@ Checking test 045 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 799.554183 - 0: The maximum resident set size (KB) = 523148 + 0: The total amount of wall time = 534.091905 + 0: The maximum resident set size (KB) = 518032 Test 045 regional_wofs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/rap_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/rap_control Checking test 046 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1958,14 +1958,14 @@ Checking test 046 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 860.948537 - 0: The maximum resident set size (KB) = 945136 + 0: The total amount of wall time = 655.281213 + 0: The maximum resident set size (KB) = 958416 Test 046 rap_control PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/regional_spp_sppt_shum_skeb +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/regional_spp_sppt_shum_skeb Checking test 047 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -1976,14 +1976,14 @@ Checking test 047 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 573.321146 - 0: The maximum resident set size (KB) = 1091428 + 0: The total amount of wall time = 418.284020 + 0: The maximum resident set size (KB) = 1080016 Test 047 regional_spp_sppt_shum_skeb PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/rap_decomp +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/rap_decomp Checking test 048 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2030,14 +2030,14 @@ Checking test 048 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 849.876312 - 0: The maximum resident set size (KB) = 951620 + 0: The total amount of wall time = 707.324933 + 0: The maximum resident set size (KB) = 941196 Test 048 rap_decomp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/rap_2threads +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/rap_2threads Checking test 049 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2084,14 +2084,14 @@ Checking test 049 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 826.803751 - 0: The maximum resident set size (KB) = 1022712 + 0: The total amount of wall time = 635.227201 + 0: The maximum resident set size (KB) = 1020984 Test 049 rap_2threads PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/rap_restart +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/rap_restart Checking test 050 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2130,14 +2130,14 @@ Checking test 050 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 357.058530 - 0: The maximum resident set size (KB) = 830852 + 0: The total amount of wall time = 327.780612 + 0: The maximum resident set size (KB) = 831372 Test 050 rap_restart PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/rap_sfcdiff +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/rap_sfcdiff Checking test 051 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2184,14 +2184,14 @@ Checking test 051 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 832.030775 - 0: The maximum resident set size (KB) = 964100 + 0: The total amount of wall time = 655.466804 + 0: The maximum resident set size (KB) = 945164 Test 051 rap_sfcdiff PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/rap_sfcdiff_decomp +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/rap_sfcdiff_decomp Checking test 052 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2238,14 +2238,14 @@ Checking test 052 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 862.809434 - 0: The maximum resident set size (KB) = 937088 + 0: The total amount of wall time = 701.601495 + 0: The maximum resident set size (KB) = 949784 Test 052 rap_sfcdiff_decomp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/rap_sfcdiff_restart +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/rap_sfcdiff_restart Checking test 053 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2284,14 +2284,14 @@ Checking test 053 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 557.234199 - 0: The maximum resident set size (KB) = 842748 + 0: The total amount of wall time = 464.756098 + 0: The maximum resident set size (KB) = 840124 Test 053 rap_sfcdiff_restart PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/hrrr_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/hrrr_control Checking test 054 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2338,14 +2338,14 @@ Checking test 054 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 834.883131 - 0: The maximum resident set size (KB) = 957604 + 0: The total amount of wall time = 643.106928 + 0: The maximum resident set size (KB) = 945056 Test 054 hrrr_control PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/hrrr_control_decomp +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/hrrr_control_decomp Checking test 055 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2392,14 +2392,14 @@ Checking test 055 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 835.155321 - 0: The maximum resident set size (KB) = 939948 + 0: The total amount of wall time = 696.257487 + 0: The maximum resident set size (KB) = 943440 Test 055 hrrr_control_decomp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/hrrr_control_2threads +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/hrrr_control_2threads Checking test 056 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2446,14 +2446,14 @@ Checking test 056 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 772.445364 - 0: The maximum resident set size (KB) = 1021408 + 0: The total amount of wall time = 627.581104 + 0: The maximum resident set size (KB) = 1025380 Test 056 hrrr_control_2threads PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/hrrr_control_restart +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/hrrr_control_restart Checking test 057 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2492,14 +2492,14 @@ Checking test 057 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 542.282663 - 0: The maximum resident set size (KB) = 846416 + 0: The total amount of wall time = 448.327715 + 0: The maximum resident set size (KB) = 844248 Test 057 hrrr_control_restart PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/rrfs_v1beta +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/rrfs_v1beta Checking test 058 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2546,14 +2546,14 @@ Checking test 058 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 832.671680 - 0: The maximum resident set size (KB) = 943504 + 0: The total amount of wall time = 666.634415 + 0: The maximum resident set size (KB) = 956388 Test 058 rrfs_v1beta PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/rrfs_v1nssl +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/rrfs_v1nssl Checking test 059 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2568,14 +2568,14 @@ Checking test 059 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 898.706447 - 0: The maximum resident set size (KB) = 630824 + 0: The total amount of wall time = 781.823867 + 0: The maximum resident set size (KB) = 638484 Test 059 rrfs_v1nssl PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/rrfs_v1nssl_nohailnoccn +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/rrfs_v1nssl_nohailnoccn Checking test 060 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2590,14 +2590,14 @@ Checking test 060 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 878.961453 - 0: The maximum resident set size (KB) = 634876 + 0: The total amount of wall time = 775.809277 + 0: The maximum resident set size (KB) = 634240 Test 060 rrfs_v1nssl_nohailnoccn PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/rrfs_conus13km_hrrr_warm +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/rrfs_conus13km_hrrr_warm Checking test 061 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2606,14 +2606,14 @@ Checking test 061 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 211.450212 - 0: The maximum resident set size (KB) = 844052 + 0: The total amount of wall time = 185.439462 + 0: The maximum resident set size (KB) = 853560 Test 061 rrfs_conus13km_hrrr_warm PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/rrfs_smoke_conus13km_hrrr_warm Checking test 062 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2622,14 +2622,14 @@ Checking test 062 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 236.673305 - 0: The maximum resident set size (KB) = 884120 + 0: The total amount of wall time = 220.592849 + 0: The maximum resident set size (KB) = 869708 Test 062 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/rrfs_conus13km_radar_tten_warm +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/rrfs_conus13km_radar_tten_warm Checking test 063 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2638,14 +2638,14 @@ Checking test 063 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 244.480951 - 0: The maximum resident set size (KB) = 859884 + 0: The total amount of wall time = 174.768913 + 0: The maximum resident set size (KB) = 854672 Test 063 rrfs_conus13km_radar_tten_warm PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/rrfs_conus13km_hrrr_warm_2threads +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/rrfs_conus13km_hrrr_warm_2threads Checking test 064 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2654,14 +2654,14 @@ Checking test 064 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 143.062654 - 0: The maximum resident set size (KB) = 825416 + 0: The total amount of wall time = 114.799986 + 0: The maximum resident set size (KB) = 821672 Test 064 rrfs_conus13km_hrrr_warm_2threads PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/rrfs_conus13km_radar_tten_warm_2threads +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/rrfs_conus13km_radar_tten_warm_2threads Checking test 065 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2670,14 +2670,14 @@ Checking test 065 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 170.023418 - 0: The maximum resident set size (KB) = 834024 + 0: The total amount of wall time = 128.342045 + 0: The maximum resident set size (KB) = 820748 Test 065 rrfs_conus13km_radar_tten_warm_2threads PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/control_csawmg +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/control_csawmg Checking test 066 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2688,14 +2688,14 @@ Checking test 066 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 726.707272 - 0: The maximum resident set size (KB) = 667008 + 0: The total amount of wall time = 499.136571 + 0: The maximum resident set size (KB) = 666196 Test 066 control_csawmg PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/control_csawmgt +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/control_csawmgt Checking test 067 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2706,14 +2706,14 @@ Checking test 067 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 714.615646 - 0: The maximum resident set size (KB) = 667816 + 0: The total amount of wall time = 487.096029 + 0: The maximum resident set size (KB) = 667092 Test 067 control_csawmgt PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/control_ras +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/control_ras Checking test 068 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2724,26 +2724,26 @@ Checking test 068 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 377.364756 - 0: The maximum resident set size (KB) = 631672 + 0: The total amount of wall time = 260.070974 + 0: The maximum resident set size (KB) = 637140 Test 068 control_ras PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/control_wam +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/control_wam Checking test 069 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 217.039130 - 0: The maximum resident set size (KB) = 480396 + 0: The total amount of wall time = 173.390693 + 0: The maximum resident set size (KB) = 476500 Test 069 control_wam PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_faster -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/control_p8_faster +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/control_p8_faster Checking test 070 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2790,14 +2790,14 @@ Checking test 070 control_p8_faster results .... Comparing 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.527783 - 0: The maximum resident set size (KB) = 1533884 + 0: The total amount of wall time = 225.662294 + 0: The maximum resident set size (KB) = 1530512 Test 070 control_p8_faster PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control_faster -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/regional_control_faster +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/regional_control_faster Checking test 071 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2808,42 +2808,42 @@ Checking test 071 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 479.773316 - 0: The maximum resident set size (KB) = 782016 + 0: The total amount of wall time = 428.313668 + 0: The maximum resident set size (KB) = 784548 Test 071 regional_control_faster PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/rrfs_conus13km_hrrr_warm_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/rrfs_conus13km_hrrr_warm_debug Checking test 072 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 987.934637 - 0: The maximum resident set size (KB) = 876012 + 0: The total amount of wall time = 952.285709 + 0: The maximum resident set size (KB) = 877952 Test 072 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/rrfs_conus13km_radar_tten_warm_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/rrfs_conus13km_radar_tten_warm_debug Checking test 073 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 963.998248 - 0: The maximum resident set size (KB) = 886072 + 0: The total amount of wall time = 960.405163 + 0: The maximum resident set size (KB) = 883292 Test 073 rrfs_conus13km_radar_tten_warm_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/control_CubedSphereGrid_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/control_CubedSphereGrid_debug Checking test 074 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2870,334 +2870,334 @@ Checking test 074 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 236.928034 - 0: The maximum resident set size (KB) = 737020 + 0: The total amount of wall time = 216.278901 + 0: The maximum resident set size (KB) = 731904 Test 074 control_CubedSphereGrid_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/control_wrtGauss_netcdf_parallel_debug Checking test 075 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 227.022651 - 0: The maximum resident set size (KB) = 733368 + 0: The total amount of wall time = 204.587332 + 0: The maximum resident set size (KB) = 731172 Test 075 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/control_stochy_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/control_stochy_debug Checking test 076 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 241.767011 - 0: The maximum resident set size (KB) = 740412 + 0: The total amount of wall time = 231.054749 + 0: The maximum resident set size (KB) = 742460 Test 076 control_stochy_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/control_lndp_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/control_lndp_debug Checking test 077 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 218.182027 - 0: The maximum resident set size (KB) = 740324 + 0: The total amount of wall time = 201.806559 + 0: The maximum resident set size (KB) = 738352 Test 077 control_lndp_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/control_csawmg_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/control_csawmg_debug Checking test 078 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 329.365416 - 0: The maximum resident set size (KB) = 784584 + 0: The total amount of wall time = 309.399864 + 0: The maximum resident set size (KB) = 786376 Test 078 control_csawmg_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/control_csawmgt_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/control_csawmgt_debug Checking test 079 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 310.736424 - 0: The maximum resident set size (KB) = 780732 + 0: The total amount of wall time = 304.013970 + 0: The maximum resident set size (KB) = 781920 Test 079 control_csawmgt_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/control_ras_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/control_ras_debug Checking test 080 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 207.195983 - 0: The maximum resident set size (KB) = 743984 + 0: The total amount of wall time = 202.470158 + 0: The maximum resident set size (KB) = 746432 Test 080 control_ras_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_diag_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/control_diag_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/control_diag_debug Checking test 081 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 262.010812 - 0: The maximum resident set size (KB) = 790988 + 0: The total amount of wall time = 216.371289 + 0: The maximum resident set size (KB) = 789804 Test 081 control_diag_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_debug_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/control_debug_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/control_debug_p8 Checking test 082 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 249.919452 - 0: The maximum resident set size (KB) = 1558140 + 0: The total amount of wall time = 233.538400 + 0: The maximum resident set size (KB) = 1554924 Test 082 control_debug_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/regional_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/regional_debug Checking test 083 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1350.757248 - 0: The maximum resident set size (KB) = 802164 + 0: The total amount of wall time = 1284.151106 + 0: The maximum resident set size (KB) = 803752 Test 083 regional_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/rap_control_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/rap_control_debug Checking test 084 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 380.245722 - 0: The maximum resident set size (KB) = 1106884 + 0: The total amount of wall time = 364.590411 + 0: The maximum resident set size (KB) = 1110928 Test 084 rap_control_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/hrrr_control_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/hrrr_control_debug Checking test 085 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 408.135378 - 0: The maximum resident set size (KB) = 1110220 + 0: The total amount of wall time = 356.175783 + 0: The maximum resident set size (KB) = 1108452 Test 085 hrrr_control_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/rap_unified_drag_suite_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/rap_unified_drag_suite_debug Checking test 086 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 401.748053 - 0: The maximum resident set size (KB) = 1115536 + 0: The total amount of wall time = 363.331998 + 0: The maximum resident set size (KB) = 1108896 Test 086 rap_unified_drag_suite_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_diag_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/rap_diag_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/rap_diag_debug Checking test 087 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 427.215326 - 0: The maximum resident set size (KB) = 1189808 + 0: The total amount of wall time = 388.923162 + 0: The maximum resident set size (KB) = 1192440 Test 087 rap_diag_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/rap_cires_ugwp_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/rap_cires_ugwp_debug Checking test 088 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 413.575567 - 0: The maximum resident set size (KB) = 1106672 + 0: The total amount of wall time = 377.626765 + 0: The maximum resident set size (KB) = 1110560 Test 088 rap_cires_ugwp_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/rap_unified_ugwp_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/rap_unified_ugwp_debug Checking test 089 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 409.554665 - 0: The maximum resident set size (KB) = 1110228 + 0: The total amount of wall time = 372.150447 + 0: The maximum resident set size (KB) = 1112924 Test 089 rap_unified_ugwp_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_lndp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/rap_lndp_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/rap_lndp_debug Checking test 090 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 391.795559 - 0: The maximum resident set size (KB) = 1108260 + 0: The total amount of wall time = 372.539880 + 0: The maximum resident set size (KB) = 1118164 Test 090 rap_lndp_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_flake_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/rap_flake_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/rap_flake_debug Checking test 091 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 385.659102 - 0: The maximum resident set size (KB) = 1111592 + 0: The total amount of wall time = 368.221767 + 0: The maximum resident set size (KB) = 1114816 Test 091 rap_flake_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_progcld_thompson_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/rap_progcld_thompson_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/rap_progcld_thompson_debug Checking test 092 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 366.598061 - 0: The maximum resident set size (KB) = 1113844 + 0: The total amount of wall time = 364.264211 + 0: The maximum resident set size (KB) = 1107924 Test 092 rap_progcld_thompson_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/rap_noah_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/rap_noah_debug Checking test 093 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 391.050762 - 0: The maximum resident set size (KB) = 1105516 + 0: The total amount of wall time = 353.915863 + 0: The maximum resident set size (KB) = 1112956 Test 093 rap_noah_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/rap_sfcdiff_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/rap_sfcdiff_debug Checking test 094 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 406.053442 - 0: The maximum resident set size (KB) = 1110164 + 0: The total amount of wall time = 362.638203 + 0: The maximum resident set size (KB) = 1110600 Test 094 rap_sfcdiff_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/rap_noah_sfcdiff_cires_ugwp_debug Checking test 095 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 628.331830 - 0: The maximum resident set size (KB) = 1103244 + 0: The total amount of wall time = 590.303167 + 0: The maximum resident set size (KB) = 1111716 Test 095 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/rrfs_v1beta_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/rrfs_v1beta_debug Checking test 096 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 389.077120 - 0: The maximum resident set size (KB) = 1106112 + 0: The total amount of wall time = 355.455419 + 0: The maximum resident set size (KB) = 1109844 Test 096 rrfs_v1beta_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/control_wam_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/control_wam_debug Checking test 097 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 404.098258 - 0: The maximum resident set size (KB) = 434736 + 0: The total amount of wall time = 367.350393 + 0: The maximum resident set size (KB) = 434076 Test 097 control_wam_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 098 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3208,14 +3208,14 @@ Checking test 098 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 408.299647 - 0: The maximum resident set size (KB) = 978876 + 0: The total amount of wall time = 385.054301 + 0: The maximum resident set size (KB) = 988240 Test 098 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/rap_control_dyn32_phy32 Checking test 099 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3262,14 +3262,14 @@ Checking test 099 rap_control_dyn32_phy32 results .... Comparing 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.096077 - 0: The maximum resident set size (KB) = 854564 + 0: The total amount of wall time = 517.557276 + 0: The maximum resident set size (KB) = 845748 Test 099 rap_control_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/hrrr_control_dyn32_phy32 Checking test 100 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3316,14 +3316,14 @@ Checking test 100 hrrr_control_dyn32_phy32 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 = 328.548851 - 0: The maximum resident set size (KB) = 826232 + 0: The total amount of wall time = 264.195298 + 0: The maximum resident set size (KB) = 834784 Test 100 hrrr_control_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/rap_2threads_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/rap_2threads_dyn32_phy32 Checking test 101 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3370,14 +3370,14 @@ Checking test 101 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 570.179948 - 0: The maximum resident set size (KB) = 890016 + 0: The total amount of wall time = 507.201627 + 0: The maximum resident set size (KB) = 882188 Test 101 rap_2threads_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/hrrr_control_2threads_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/hrrr_control_2threads_dyn32_phy32 Checking test 102 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3424,14 +3424,14 @@ Checking test 102 hrrr_control_2threads_dyn32_phy32 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 = 309.804876 - 0: The maximum resident set size (KB) = 893024 + 0: The total amount of wall time = 264.900420 + 0: The maximum resident set size (KB) = 894324 Test 102 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/hrrr_control_decomp_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/hrrr_control_decomp_dyn32_phy32 Checking test 103 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3478,14 +3478,14 @@ Checking test 103 hrrr_control_decomp_dyn32_phy32 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 = 327.630789 - 0: The maximum resident set size (KB) = 821744 + 0: The total amount of wall time = 282.441281 + 0: The maximum resident set size (KB) = 829768 Test 103 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/rap_restart_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/rap_restart_dyn32_phy32 Checking test 104 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3524,14 +3524,14 @@ Checking test 104 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 487.994076 - 0: The maximum resident set size (KB) = 833308 + 0: The total amount of wall time = 385.299264 + 0: The maximum resident set size (KB) = 811960 Test 104 rap_restart_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/hrrr_control_restart_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/hrrr_control_restart_dyn32_phy32 Checking test 105 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3570,14 +3570,14 @@ Checking test 105 hrrr_control_restart_dyn32_phy32 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 = 154.605343 - 0: The maximum resident set size (KB) = 761336 + 0: The total amount of wall time = 162.529616 + 0: The maximum resident set size (KB) = 764968 Test 105 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn64_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/rap_control_dyn64_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/rap_control_dyn64_phy32 Checking test 106 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3624,81 +3624,81 @@ Checking test 106 rap_control_dyn64_phy32 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 = 396.156160 - 0: The maximum resident set size (KB) = 867904 + 0: The total amount of wall time = 326.981172 + 0: The maximum resident set size (KB) = 872960 Test 106 rap_control_dyn64_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/rap_control_debug_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/rap_control_debug_dyn32_phy32 Checking test 107 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 364.815602 - 0: The maximum resident set size (KB) = 1002108 + 0: The total amount of wall time = 360.657844 + 0: The maximum resident set size (KB) = 996728 Test 107 rap_control_debug_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/hrrr_control_debug_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/hrrr_control_debug_dyn32_phy32 Checking test 108 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 359.969313 - 0: The maximum resident set size (KB) = 994288 + 0: The total amount of wall time = 354.399430 + 0: The maximum resident set size (KB) = 998724 Test 108 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/rap_control_dyn64_phy32_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/rap_control_dyn64_phy32_debug Checking test 109 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 378.015663 - 0: The maximum resident set size (KB) = 1033976 + 0: The total amount of wall time = 361.562321 + 0: The maximum resident set size (KB) = 1033564 Test 109 rap_control_dyn64_phy32_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/hafs_regional_atm +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/hafs_regional_atm Checking test 110 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 513.631130 - 0: The maximum resident set size (KB) = 1224248 + 0: The total amount of wall time = 356.024131 + 0: The maximum resident set size (KB) = 1222424 Test 110 hafs_regional_atm PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/hafs_regional_atm_thompson_gfdlsf Checking test 111 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 667.249302 - 0: The maximum resident set size (KB) = 1544908 + 0: The total amount of wall time = 414.875745 + 0: The maximum resident set size (KB) = 1524412 Test 111 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/hafs_regional_atm_ocn +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/hafs_regional_atm_ocn Checking test 112 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3707,14 +3707,14 @@ Checking test 112 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 789.686110 - 0: The maximum resident set size (KB) = 1300856 + 0: The total amount of wall time = 603.068066 + 0: The maximum resident set size (KB) = 1291304 Test 112 hafs_regional_atm_ocn PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_wav -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/hafs_regional_atm_wav +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/hafs_regional_atm_wav Checking test 113 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3723,14 +3723,14 @@ Checking test 113 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 1348.664422 - 0: The maximum resident set size (KB) = 1329360 + 0: The total amount of wall time = 1003.765278 + 0: The maximum resident set size (KB) = 1321304 Test 113 hafs_regional_atm_wav PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/hafs_regional_atm_ocn_wav +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/hafs_regional_atm_ocn_wav Checking test 114 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3741,14 +3741,14 @@ Checking test 114 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 1399.551503 - 0: The maximum resident set size (KB) = 1345204 + 0: The total amount of wall time = 1116.069174 + 0: The maximum resident set size (KB) = 1310220 Test 114 hafs_regional_atm_ocn_wav PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_docn -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/hafs_regional_docn +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/hafs_regional_docn Checking test 115 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3756,14 +3756,14 @@ Checking test 115 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 762.636378 - 0: The maximum resident set size (KB) = 1308524 + 0: The total amount of wall time = 547.401711 + 0: The maximum resident set size (KB) = 1313056 Test 115 hafs_regional_docn PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_docn_oisst -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/hafs_regional_docn_oisst +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/hafs_regional_docn_oisst Checking test 116 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3771,131 +3771,131 @@ Checking test 116 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 780.263397 - 0: The maximum resident set size (KB) = 1282280 + 0: The total amount of wall time = 528.233018 + 0: The maximum resident set size (KB) = 1287200 Test 116 hafs_regional_docn_oisst PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_datm_cdeps -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/hafs_regional_datm_cdeps +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/hafs_regional_datm_cdeps Checking test 117 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 1591.794826 - 0: The maximum resident set size (KB) = 976580 + 0: The total amount of wall time = 1440.546602 + 0: The maximum resident set size (KB) = 976008 -Test 117 hafs_regional_datm_cdeps PASS Tries: 2 +Test 117 hafs_regional_datm_cdeps PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/datm_cdeps_control_cfsr Checking test 118 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 297.596700 - 0: The maximum resident set size (KB) = 968384 + 0: The total amount of wall time = 214.676878 + 0: The maximum resident set size (KB) = 958168 Test 118 datm_cdeps_control_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/datm_cdeps_restart_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/datm_cdeps_restart_cfsr Checking test 119 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 163.636329 - 0: The maximum resident set size (KB) = 933332 + 0: The total amount of wall time = 130.313646 + 0: The maximum resident set size (KB) = 930240 Test 119 datm_cdeps_restart_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/datm_cdeps_control_gefs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/datm_cdeps_control_gefs Checking test 120 datm_cdeps_control_gefs 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 = 275.539442 - 0: The maximum resident set size (KB) = 863924 + 0: The total amount of wall time = 211.771435 + 0: The maximum resident set size (KB) = 854080 Test 120 datm_cdeps_control_gefs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_iau_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/datm_cdeps_iau_gefs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/datm_cdeps_iau_gefs Checking test 121 datm_cdeps_iau_gefs 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 = 293.420249 - 0: The maximum resident set size (KB) = 861556 + 0: The total amount of wall time = 233.249971 + 0: The maximum resident set size (KB) = 863740 Test 121 datm_cdeps_iau_gefs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_stochy_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/datm_cdeps_stochy_gefs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/datm_cdeps_stochy_gefs Checking test 122 datm_cdeps_stochy_gefs 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 = 279.083541 - 0: The maximum resident set size (KB) = 863488 + 0: The total amount of wall time = 232.896448 + 0: The maximum resident set size (KB) = 865516 Test 122 datm_cdeps_stochy_gefs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/datm_cdeps_ciceC_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/datm_cdeps_ciceC_cfsr Checking test 123 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 292.097605 - 0: The maximum resident set size (KB) = 962192 + 0: The total amount of wall time = 231.666736 + 0: The maximum resident set size (KB) = 966608 Test 123 datm_cdeps_ciceC_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/datm_cdeps_bulk_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/datm_cdeps_bulk_cfsr Checking test 124 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 281.716799 - 0: The maximum resident set size (KB) = 979984 + 0: The total amount of wall time = 231.828536 + 0: The maximum resident set size (KB) = 962112 Test 124 datm_cdeps_bulk_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/datm_cdeps_bulk_gefs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/datm_cdeps_bulk_gefs Checking test 125 datm_cdeps_bulk_gefs 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 = 294.978671 - 0: The maximum resident set size (KB) = 868332 + 0: The total amount of wall time = 225.570508 + 0: The maximum resident set size (KB) = 856412 Test 125 datm_cdeps_bulk_gefs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/datm_cdeps_mx025_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/datm_cdeps_mx025_cfsr Checking test 126 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -3904,14 +3904,14 @@ Checking test 126 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 703.842346 - 0: The maximum resident set size (KB) = 762148 + 0: The total amount of wall time = 584.970954 + 0: The maximum resident set size (KB) = 762208 Test 126 datm_cdeps_mx025_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/datm_cdeps_mx025_gefs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/datm_cdeps_mx025_gefs Checking test 127 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -3920,77 +3920,77 @@ Checking test 127 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 733.946139 - 0: The maximum resident set size (KB) = 737932 + 0: The total amount of wall time = 578.118884 + 0: The maximum resident set size (KB) = 736832 Test 127 datm_cdeps_mx025_gefs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/datm_cdeps_multiple_files_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/datm_cdeps_multiple_files_cfsr Checking test 128 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 281.611645 - 0: The maximum resident set size (KB) = 964296 + 0: The total amount of wall time = 225.116526 + 0: The maximum resident set size (KB) = 983764 Test 128 datm_cdeps_multiple_files_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/datm_cdeps_3072x1536_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/datm_cdeps_3072x1536_cfsr Checking test 129 datm_cdeps_3072x1536_cfsr 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 = 389.936901 - 0: The maximum resident set size (KB) = 2248384 + 0: The total amount of wall time = 304.607770 + 0: The maximum resident set size (KB) = 2259868 Test 129 datm_cdeps_3072x1536_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_gfs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/datm_cdeps_gfs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/datm_cdeps_gfs Checking test 130 datm_cdeps_gfs 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 = 363.984179 - 0: The maximum resident set size (KB) = 2267540 + 0: The total amount of wall time = 342.079188 + 0: The maximum resident set size (KB) = 2203888 Test 130 datm_cdeps_gfs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_debug_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/datm_cdeps_debug_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/datm_cdeps_debug_cfsr Checking test 131 datm_cdeps_debug_cfsr 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 = 612.317083 - 0: The maximum resident set size (KB) = 918220 + 0: The total amount of wall time = 584.007452 + 0: The maximum resident set size (KB) = 933164 Test 131 datm_cdeps_debug_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr_faster -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/datm_cdeps_control_cfsr_faster +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/datm_cdeps_control_cfsr_faster Checking test 132 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.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 = 268.315212 - 0: The maximum resident set size (KB) = 962172 + 0: The total amount of wall time = 223.209917 + 0: The maximum resident set size (KB) = 959560 Test 132 datm_cdeps_control_cfsr_faster PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/datm_cdeps_lnd_gswp3 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/datm_cdeps_lnd_gswp3 Checking test 133 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -3999,14 +3999,14 @@ Checking test 133 datm_cdeps_lnd_gswp3 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 = 41.167192 - 0: The maximum resident set size (KB) = 243848 + 0: The total amount of wall time = 11.669722 + 0: The maximum resident set size (KB) = 253484 Test 133 datm_cdeps_lnd_gswp3 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/datm_cdeps_lnd_gswp3_rst +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/datm_cdeps_lnd_gswp3_rst Checking test 134 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4015,14 +4015,14 @@ Checking test 134 datm_cdeps_lnd_gswp3_rst 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 = 26.194736 - 0: The maximum resident set size (KB) = 240564 + 0: The total amount of wall time = 21.210791 + 0: The maximum resident set size (KB) = 252084 Test 134 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_atmlnd_sbs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/control_p8_atmlnd_sbs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/control_p8_atmlnd_sbs Checking test 135 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4107,14 +4107,14 @@ Checking test 135 control_p8_atmlnd_sbs 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 = 602.427127 - 0: The maximum resident set size (KB) = 1596136 + 0: The total amount of wall time = 373.644576 + 0: The maximum resident set size (KB) = 1580140 Test 135 control_p8_atmlnd_sbs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_atmwav -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/control_atmwav +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/control_atmwav Checking test 136 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4158,14 +4158,14 @@ Checking test 136 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 266.690170 - 0: The maximum resident set size (KB) = 597396 + 0: The total amount of wall time = 151.629792 + 0: The maximum resident set size (KB) = 599544 Test 136 control_atmwav PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/atmaero_control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/atmaero_control_p8 Checking test 137 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4209,14 +4209,14 @@ Checking test 137 atmaero_control_p8 results .... Comparing 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.127807 - 0: The maximum resident set size (KB) = 1634724 + 0: The total amount of wall time = 384.998157 + 0: The maximum resident set size (KB) = 1628428 Test 137 atmaero_control_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/atmaero_control_p8_rad +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/atmaero_control_p8_rad Checking test 138 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4260,14 +4260,14 @@ Checking test 138 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 471.841350 - 0: The maximum resident set size (KB) = 1668920 + 0: The total amount of wall time = 436.309777 + 0: The maximum resident set size (KB) = 1667692 Test 138 atmaero_control_p8_rad PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/atmaero_control_p8_rad_micro +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/atmaero_control_p8_rad_micro Checking test 139 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4311,14 +4311,14 @@ Checking test 139 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 543.273883 - 0: The maximum resident set size (KB) = 1688400 + 0: The total amount of wall time = 473.693178 + 0: The maximum resident set size (KB) = 1670580 Test 139 atmaero_control_p8_rad_micro PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/regional_atmaq +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/regional_atmaq Checking test 140 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4334,14 +4334,14 @@ Checking test 140 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 1446.007259 - 0: The maximum resident set size (KB) = 1410288 + 0: The total amount of wall time = 1045.836880 + 0: The maximum resident set size (KB) = 1325100 Test 140 regional_atmaq PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq_faster -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178825/regional_atmaq_faster +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/regional_atmaq_faster Checking test 141 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4357,12 +4357,12 @@ Checking test 141 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 1145.797083 - 0: The maximum resident set size (KB) = 1407884 + 0: The total amount of wall time = 1164.159802 + 0: The maximum resident set size (KB) = 1322800 Test 141 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Sun Mar 12 22:41:47 UTC 2023 -Elapsed time: 03h:13m:29s. Have a nice day! +Tue Mar 14 06:00:27 UTC 2023 +Elapsed time: 04h:06m:12s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index 199c6862da9..50133d4e396 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,42 +1,42 @@ -Fri Mar 10 08:16:57 CST 2023 +Mon Mar 13 20:47:44 CDT 2023 Start Regression test -Compile 001 elapsed time 741 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 741 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 695 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 264 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 250 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 645 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 624 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 810 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 667 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 572 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 541 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 539 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 652 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 251 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 162 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 533 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 536 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 210 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 210 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 622 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 187 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 758 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 689 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 024 elapsed time 207 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 112 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 207 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 56 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 553 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 614 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 546 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 551 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 177 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 602 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 750 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 796 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 723 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 298 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 230 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 694 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 666 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 831 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 584 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 664 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 529 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 527 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 707 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 239 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 175 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 539 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 529 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 173 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 177 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 751 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 021 elapsed time 199 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 775 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 701 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 024 elapsed time 215 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 135 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 193 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 55 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 678 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 572 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 702 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 581 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 191 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 628 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_mixedmode -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/cpld_control_p8_mixedmode +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -101,14 +101,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 310.343685 - 0: The maximum resident set size (KB) = 3141020 + 0: The total amount of wall time = 305.852297 + 0: The maximum resident set size (KB) = 3138404 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_gfsv17 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/cpld_control_gfsv17 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -172,14 +172,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 227.055222 - 0: The maximum resident set size (KB) = 1726976 + 0: The total amount of wall time = 227.199270 + 0: The maximum resident set size (KB) = 1727932 Test 002 cpld_control_gfsv17 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/cpld_control_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -244,14 +244,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 348.624989 - 0: The maximum resident set size (KB) = 3180744 + 0: The total amount of wall time = 340.604214 + 0: The maximum resident set size (KB) = 3175396 Test 003 cpld_control_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/cpld_restart_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -304,14 +304,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 239.983003 - 0: The maximum resident set size (KB) = 3050400 + 0: The total amount of wall time = 220.071177 + 0: The maximum resident set size (KB) = 3048248 Test 004 cpld_restart_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/cpld_2threads_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -364,14 +364,14 @@ Checking test 005 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 409.346952 - 0: The maximum resident set size (KB) = 3516812 + 0: The total amount of wall time = 406.264934 + 0: The maximum resident set size (KB) = 3517268 Test 005 cpld_2threads_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/cpld_decomp_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/cpld_decomp_p8 Checking test 006 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -424,14 +424,14 @@ Checking test 006 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 344.295853 - 0: The maximum resident set size (KB) = 3169096 + 0: The total amount of wall time = 343.107221 + 0: The maximum resident set size (KB) = 3173956 Test 006 cpld_decomp_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/cpld_mpi_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/cpld_mpi_p8 Checking test 007 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -484,14 +484,14 @@ Checking test 007 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 291.444541 - 0: The maximum resident set size (KB) = 3034204 + 0: The total amount of wall time = 282.105026 + 0: The maximum resident set size (KB) = 3034496 Test 007 cpld_mpi_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_ciceC_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/cpld_control_ciceC_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/cpld_control_ciceC_p8 Checking test 008 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -556,14 +556,14 @@ Checking test 008 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 352.855824 - 0: The maximum resident set size (KB) = 3181156 + 0: The total amount of wall time = 345.828770 + 0: The maximum resident set size (KB) = 3175780 Test 008 cpld_control_ciceC_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/cpld_control_c192_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/cpld_control_c192_p8 Checking test 009 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -616,14 +616,14 @@ Checking test 009 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 658.159705 - 0: The maximum resident set size (KB) = 3268320 + 0: The total amount of wall time = 693.061831 + 0: The maximum resident set size (KB) = 3260072 Test 009 cpld_control_c192_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/cpld_restart_c192_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/cpld_restart_c192_p8 Checking test 010 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -676,14 +676,14 @@ Checking test 010 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 458.932204 - 0: The maximum resident set size (KB) = 3157644 + 0: The total amount of wall time = 451.092007 + 0: The maximum resident set size (KB) = 3156712 Test 010 cpld_restart_c192_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_bmark_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/cpld_bmark_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/cpld_bmark_p8 Checking test 011 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -731,14 +731,14 @@ Checking test 011 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 905.167511 - 0: The maximum resident set size (KB) = 4038708 + 0: The total amount of wall time = 889.347023 + 0: The maximum resident set size (KB) = 4038700 Test 011 cpld_bmark_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_bmark_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/cpld_restart_bmark_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/cpld_restart_bmark_p8 Checking test 012 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -786,14 +786,14 @@ Checking test 012 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 564.565534 - 0: The maximum resident set size (KB) = 3975400 + 0: The total amount of wall time = 544.211241 + 0: The maximum resident set size (KB) = 3954996 Test 012 cpld_restart_bmark_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/cpld_control_noaero_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/cpld_control_noaero_p8 Checking test 013 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -857,14 +857,14 @@ Checking test 013 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 258.248652 - 0: The maximum resident set size (KB) = 1712836 + 0: The total amount of wall time = 253.291156 + 0: The maximum resident set size (KB) = 1726220 Test 013 cpld_control_noaero_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c96_noaero_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/cpld_control_nowave_noaero_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/cpld_control_nowave_noaero_p8 Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -926,14 +926,14 @@ Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 263.405131 - 0: The maximum resident set size (KB) = 1771736 + 0: The total amount of wall time = 258.060473 + 0: The maximum resident set size (KB) = 1770660 Test 014 cpld_control_nowave_noaero_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_debug_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/cpld_debug_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/cpld_debug_p8 Checking test 015 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -986,14 +986,14 @@ Checking test 015 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 691.266216 - 0: The maximum resident set size (KB) = 3211568 + 0: The total amount of wall time = 686.682181 + 0: The maximum resident set size (KB) = 3245172 Test 015 cpld_debug_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_debug_noaero_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/cpld_debug_noaero_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/cpld_debug_noaero_p8 Checking test 016 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1045,14 +1045,14 @@ Checking test 016 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 426.375563 - 0: The maximum resident set size (KB) = 1739896 + 0: The total amount of wall time = 426.406442 + 0: The maximum resident set size (KB) = 1736944 Test 016 cpld_debug_noaero_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8_agrid -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/cpld_control_noaero_p8_agrid +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/cpld_control_noaero_p8_agrid Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1114,14 +1114,14 @@ Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 270.315083 - 0: The maximum resident set size (KB) = 1768852 + 0: The total amount of wall time = 264.829819 + 0: The maximum resident set size (KB) = 1770012 Test 017 cpld_control_noaero_p8_agrid PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c48 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/cpld_control_c48 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/cpld_control_c48 Checking test 018 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1171,14 +1171,14 @@ Checking test 018 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 498.049572 - 0: The maximum resident set size (KB) = 2803616 + 0: The total amount of wall time = 495.992204 + 0: The maximum resident set size (KB) = 2793716 Test 018 cpld_control_c48 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/cpld_warmstart_c48 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/cpld_warmstart_c48 Checking test 019 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1228,14 +1228,14 @@ Checking test 019 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 136.439242 - 0: The maximum resident set size (KB) = 2801568 + 0: The total amount of wall time = 135.701557 + 0: The maximum resident set size (KB) = 2798124 Test 019 cpld_warmstart_c48 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/cpld_restart_c48 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/cpld_restart_c48 Checking test 020 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1285,14 +1285,14 @@ Checking test 020 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 74.907302 - 0: The maximum resident set size (KB) = 2243404 + 0: The total amount of wall time = 79.707585 + 0: The maximum resident set size (KB) = 2246780 Test 020 cpld_restart_c48 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_faster -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/cpld_control_p8_faster +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/cpld_control_p8_faster Checking test 021 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1357,14 +1357,14 @@ Checking test 021 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 327.943615 - 0: The maximum resident set size (KB) = 3176888 + 0: The total amount of wall time = 335.350321 + 0: The maximum resident set size (KB) = 3180152 Test 021 cpld_control_p8_faster PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/control_CubedSphereGrid +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/control_CubedSphereGrid Checking test 022 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1391,28 +1391,28 @@ Checking test 022 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 130.327219 - 0: The maximum resident set size (KB) = 628488 + 0: The total amount of wall time = 132.691652 + 0: The maximum resident set size (KB) = 632064 Test 022 control_CubedSphereGrid PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid_parallel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/control_CubedSphereGrid_parallel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/control_CubedSphereGrid_parallel Checking test 023 control_CubedSphereGrid_parallel results .... 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 = 127.079648 - 0: The maximum resident set size (KB) = 633888 + 0: The total amount of wall time = 128.413286 + 0: The maximum resident set size (KB) = 629308 Test 023 control_CubedSphereGrid_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_latlon -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/control_latlon +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/control_latlon Checking test 024 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1423,32 +1423,32 @@ Checking test 024 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 133.770910 - 0: The maximum resident set size (KB) = 630284 + 0: The total amount of wall time = 135.789251 + 0: The maximum resident set size (KB) = 627924 Test 024 control_latlon PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/control_wrtGauss_netcdf_parallel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/control_wrtGauss_netcdf_parallel Checking test 025 control_wrtGauss_netcdf_parallel results .... - Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.686916 - 0: The maximum resident set size (KB) = 628096 + 0: The total amount of wall time = 136.207763 + 0: The maximum resident set size (KB) = 630708 Test 025 control_wrtGauss_netcdf_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c48 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/control_c48 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/control_c48 Checking test 026 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1487,14 +1487,14 @@ Checking test 026 control_c48 results .... Comparing 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.699370 -0: The maximum resident set size (KB) = 818520 +0: The total amount of wall time = 346.118893 +0: The maximum resident set size (KB) = 802972 Test 026 control_c48 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c192 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/control_c192 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/control_c192 Checking test 027 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1505,14 +1505,14 @@ Checking test 027 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 526.765108 - 0: The maximum resident set size (KB) = 769248 + 0: The total amount of wall time = 525.978899 + 0: The maximum resident set size (KB) = 760472 Test 027 control_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/control_c384 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/control_c384 Checking test 028 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1523,14 +1523,14 @@ Checking test 028 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 607.077061 - 0: The maximum resident set size (KB) = 1225660 + 0: The total amount of wall time = 591.702192 + 0: The maximum resident set size (KB) = 1225348 Test 028 control_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384gdas -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/control_c384gdas +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/control_c384gdas Checking test 029 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1573,14 +1573,14 @@ Checking test 029 control_c384gdas 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 = 547.628494 - 0: The maximum resident set size (KB) = 1328604 + 0: The total amount of wall time = 524.425024 + 0: The maximum resident set size (KB) = 1337152 Test 029 control_c384gdas PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/control_stochy +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/control_stochy Checking test 030 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1591,28 +1591,28 @@ Checking test 030 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 88.324385 - 0: The maximum resident set size (KB) = 632428 + 0: The total amount of wall time = 88.242472 + 0: The maximum resident set size (KB) = 628472 Test 030 control_stochy PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/control_stochy_restart +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/control_stochy_restart Checking test 031 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 47.286814 - 0: The maximum resident set size (KB) = 481208 + 0: The total amount of wall time = 46.498840 + 0: The maximum resident set size (KB) = 492536 Test 031 control_stochy_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/control_lndp +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/control_lndp Checking test 032 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1623,14 +1623,14 @@ Checking test 032 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 81.922711 - 0: The maximum resident set size (KB) = 632024 + 0: The total amount of wall time = 82.168068 + 0: The maximum resident set size (KB) = 630736 Test 032 control_lndp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr4 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/control_iovr4 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/control_iovr4 Checking test 033 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1645,14 +1645,14 @@ Checking test 033 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 138.357865 - 0: The maximum resident set size (KB) = 634248 + 0: The total amount of wall time = 135.079910 + 0: The maximum resident set size (KB) = 633048 Test 033 control_iovr4 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr5 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/control_iovr5 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/control_iovr5 Checking test 034 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1667,14 +1667,14 @@ Checking test 034 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 138.331575 - 0: The maximum resident set size (KB) = 631032 + 0: The total amount of wall time = 135.184282 + 0: The maximum resident set size (KB) = 629076 Test 034 control_iovr5 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/control_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/control_p8 Checking test 035 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1721,14 +1721,14 @@ Checking test 035 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 168.589172 - 0: The maximum resident set size (KB) = 1612952 + 0: The total amount of wall time = 166.165432 + 0: The maximum resident set size (KB) = 1599724 Test 035 control_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_lndp -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/control_p8_lndp +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/control_p8_lndp Checking test 036 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1747,14 +1747,14 @@ Checking test 036 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 313.178694 - 0: The maximum resident set size (KB) = 1605048 + 0: The total amount of wall time = 311.248014 + 0: The maximum resident set size (KB) = 1594252 Test 036 control_p8_lndp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/control_restart_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/control_restart_p8 Checking test 037 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1793,14 +1793,14 @@ Checking test 037 control_restart_p8 results .... Comparing 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.745658 - 0: The maximum resident set size (KB) = 878440 + 0: The total amount of wall time = 87.247959 + 0: The maximum resident set size (KB) = 876140 Test 037 control_restart_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/control_decomp_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/control_decomp_p8 Checking test 038 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1843,14 +1843,14 @@ Checking test 038 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 186.985556 - 0: The maximum resident set size (KB) = 1588404 + 0: The total amount of wall time = 172.990781 + 0: The maximum resident set size (KB) = 1593764 Test 038 control_decomp_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/control_2threads_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/control_2threads_p8 Checking test 039 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1893,14 +1893,14 @@ Checking test 039 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 183.326050 - 0: The maximum resident set size (KB) = 1687460 + 0: The total amount of wall time = 180.163803 + 0: The maximum resident set size (KB) = 1686264 Test 039 control_2threads_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_rrtmgp -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/control_p8_rrtmgp +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/control_p8_rrtmgp Checking test 040 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1947,14 +1947,14 @@ Checking test 040 control_p8_rrtmgp results .... Comparing 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.030659 - 0: The maximum resident set size (KB) = 1675320 + 0: The total amount of wall time = 225.223989 + 0: The maximum resident set size (KB) = 1684652 Test 040 control_p8_rrtmgp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/merra2_thompson -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/merra2_thompson +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/merra2_thompson Checking test 041 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2001,14 +2001,14 @@ Checking test 041 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 191.111056 - 0: The maximum resident set size (KB) = 1619816 + 0: The total amount of wall time = 189.178585 + 0: The maximum resident set size (KB) = 1561288 Test 041 merra2_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/regional_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/regional_control Checking test 042 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2019,28 +2019,28 @@ Checking test 042 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 297.581987 - 0: The maximum resident set size (KB) = 867340 + 0: The total amount of wall time = 295.935976 + 0: The maximum resident set size (KB) = 868624 Test 042 regional_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/regional_restart +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/regional_restart Checking test 043 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 152.970241 - 0: The maximum resident set size (KB) = 863180 + 0: The total amount of wall time = 152.392861 + 0: The maximum resident set size (KB) = 868092 Test 043 regional_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/regional_decomp +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/regional_decomp Checking test 044 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2051,14 +2051,14 @@ Checking test 044 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 332.791159 - 0: The maximum resident set size (KB) = 860260 + 0: The total amount of wall time = 313.616898 + 0: The maximum resident set size (KB) = 860024 Test 044 regional_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/regional_2threads +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/regional_2threads Checking test 045 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2069,14 +2069,14 @@ Checking test 045 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 211.811703 - 0: The maximum resident set size (KB) = 844300 + 0: The total amount of wall time = 208.256488 + 0: The maximum resident set size (KB) = 848868 Test 045 regional_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_noquilt -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/regional_noquilt +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/regional_noquilt Checking test 046 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2084,28 +2084,28 @@ Checking test 046 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 325.891773 - 0: The maximum resident set size (KB) = 858756 + 0: The total amount of wall time = 317.227471 + 0: The maximum resident set size (KB) = 859308 Test 046 regional_noquilt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_netcdf_parallel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/regional_netcdf_parallel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/regional_netcdf_parallel Checking test 047 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK - Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf000.nc .........OK Comparing phyf006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 305.542855 - 0: The maximum resident set size (KB) = 865668 + 0: The total amount of wall time = 291.972662 + 0: The maximum resident set size (KB) = 861840 Test 047 regional_netcdf_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/regional_2dwrtdecomp +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/regional_2dwrtdecomp Checking test 048 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2116,14 +2116,14 @@ Checking test 048 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 310.114756 - 0: The maximum resident set size (KB) = 869164 + 0: The total amount of wall time = 295.525900 + 0: The maximum resident set size (KB) = 865164 Test 048 regional_2dwrtdecomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/fv3_regional_wofs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/regional_wofs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/regional_wofs Checking test 049 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2134,14 +2134,14 @@ Checking test 049 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 411.815857 - 0: The maximum resident set size (KB) = 626512 + 0: The total amount of wall time = 373.932892 + 0: The maximum resident set size (KB) = 625424 Test 049 regional_wofs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/rap_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/rap_control Checking test 050 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2188,14 +2188,14 @@ Checking test 050 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 457.339748 - 0: The maximum resident set size (KB) = 1076816 + 0: The total amount of wall time = 459.342588 + 0: The maximum resident set size (KB) = 1061204 Test 050 rap_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/regional_spp_sppt_shum_skeb +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/regional_spp_sppt_shum_skeb Checking test 051 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2206,14 +2206,14 @@ Checking test 051 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 329.539614 - 0: The maximum resident set size (KB) = 1180392 + 0: The total amount of wall time = 320.589850 + 0: The maximum resident set size (KB) = 1188856 Test 051 regional_spp_sppt_shum_skeb PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/rap_decomp +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/rap_decomp Checking test 052 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2260,14 +2260,14 @@ Checking test 052 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 479.388810 - 0: The maximum resident set size (KB) = 995048 + 0: The total amount of wall time = 481.572831 + 0: The maximum resident set size (KB) = 1002988 Test 052 rap_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/rap_2threads +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/rap_2threads Checking test 053 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2314,14 +2314,14 @@ Checking test 053 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 477.546522 - 0: The maximum resident set size (KB) = 1136924 + 0: The total amount of wall time = 478.399761 + 0: The maximum resident set size (KB) = 1133764 Test 053 rap_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/rap_restart +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/rap_restart Checking test 054 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2360,14 +2360,14 @@ Checking test 054 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 233.196019 - 0: The maximum resident set size (KB) = 969904 + 0: The total amount of wall time = 243.422020 + 0: The maximum resident set size (KB) = 975864 Test 054 rap_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/rap_sfcdiff +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/rap_sfcdiff Checking test 055 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2414,14 +2414,14 @@ Checking test 055 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 449.220856 - 0: The maximum resident set size (KB) = 1069044 + 0: The total amount of wall time = 457.580454 + 0: The maximum resident set size (KB) = 1075260 Test 055 rap_sfcdiff PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/rap_sfcdiff_decomp +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/rap_sfcdiff_decomp Checking test 056 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2468,14 +2468,14 @@ Checking test 056 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 479.288103 - 0: The maximum resident set size (KB) = 1011744 + 0: The total amount of wall time = 478.781824 + 0: The maximum resident set size (KB) = 1009960 Test 056 rap_sfcdiff_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/rap_sfcdiff_restart +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/rap_sfcdiff_restart Checking test 057 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2514,14 +2514,14 @@ Checking test 057 rap_sfcdiff_restart results .... Comparing 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.572131 - 0: The maximum resident set size (KB) = 996260 + 0: The total amount of wall time = 340.269260 + 0: The maximum resident set size (KB) = 989704 Test 057 rap_sfcdiff_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/hrrr_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/hrrr_control Checking test 058 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2568,14 +2568,14 @@ Checking test 058 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 433.538278 - 0: The maximum resident set size (KB) = 1056180 + 0: The total amount of wall time = 439.688670 + 0: The maximum resident set size (KB) = 1053544 Test 058 hrrr_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/hrrr_control_decomp +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/hrrr_control_decomp Checking test 059 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2622,14 +2622,14 @@ Checking test 059 hrrr_control_decomp results .... Comparing 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.740284 - 0: The maximum resident set size (KB) = 1006356 + 0: The total amount of wall time = 461.326759 + 0: The maximum resident set size (KB) = 1005084 Test 059 hrrr_control_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/hrrr_control_2threads +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/hrrr_control_2threads Checking test 060 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2676,14 +2676,14 @@ Checking test 060 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 450.920164 - 0: The maximum resident set size (KB) = 1128984 + 0: The total amount of wall time = 459.830148 + 0: The maximum resident set size (KB) = 1142424 Test 060 hrrr_control_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/hrrr_control_restart +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/hrrr_control_restart Checking test 061 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2722,14 +2722,14 @@ Checking test 061 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 352.895924 - 0: The maximum resident set size (KB) = 986220 + 0: The total amount of wall time = 330.434917 + 0: The maximum resident set size (KB) = 988188 Test 061 hrrr_control_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/rrfs_v1beta +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/rrfs_v1beta Checking test 062 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2776,14 +2776,14 @@ Checking test 062 rrfs_v1beta results .... Comparing 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.881210 - 0: The maximum resident set size (KB) = 1058412 + 0: The total amount of wall time = 449.734482 + 0: The maximum resident set size (KB) = 1060456 Test 062 rrfs_v1beta PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/rrfs_v1nssl +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/rrfs_v1nssl Checking test 063 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2798,14 +2798,14 @@ Checking test 063 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 526.319893 - 0: The maximum resident set size (KB) = 684612 + 0: The total amount of wall time = 526.762936 + 0: The maximum resident set size (KB) = 700476 Test 063 rrfs_v1nssl PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/rrfs_v1nssl_nohailnoccn +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/rrfs_v1nssl_nohailnoccn Checking test 064 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2820,14 +2820,14 @@ Checking test 064 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 518.067749 - 0: The maximum resident set size (KB) = 753712 + 0: The total amount of wall time = 521.791376 + 0: The maximum resident set size (KB) = 753864 Test 064 rrfs_v1nssl_nohailnoccn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/rrfs_conus13km_hrrr_warm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/rrfs_conus13km_hrrr_warm Checking test 065 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2836,14 +2836,14 @@ Checking test 065 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 122.853284 - 0: The maximum resident set size (KB) = 926420 + 0: The total amount of wall time = 124.161408 + 0: The maximum resident set size (KB) = 928732 Test 065 rrfs_conus13km_hrrr_warm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/rrfs_smoke_conus13km_hrrr_warm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/rrfs_smoke_conus13km_hrrr_warm Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2852,14 +2852,14 @@ Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 139.014603 - 0: The maximum resident set size (KB) = 956172 + 0: The total amount of wall time = 138.964507 + 0: The maximum resident set size (KB) = 959364 Test 066 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/rrfs_conus13km_radar_tten_warm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/rrfs_conus13km_radar_tten_warm Checking test 067 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2868,14 +2868,14 @@ Checking test 067 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 123.634997 - 0: The maximum resident set size (KB) = 932804 + 0: The total amount of wall time = 125.205078 + 0: The maximum resident set size (KB) = 936128 Test 067 rrfs_conus13km_radar_tten_warm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/rrfs_conus13km_hrrr_warm_2threads +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/rrfs_conus13km_hrrr_warm_2threads Checking test 068 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2884,14 +2884,14 @@ Checking test 068 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 83.704508 - 0: The maximum resident set size (KB) = 843508 + 0: The total amount of wall time = 84.598631 + 0: The maximum resident set size (KB) = 888400 Test 068 rrfs_conus13km_hrrr_warm_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/rrfs_conus13km_radar_tten_warm_2threads +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/rrfs_conus13km_radar_tten_warm_2threads Checking test 069 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2900,14 +2900,14 @@ Checking test 069 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 83.625425 - 0: The maximum resident set size (KB) = 854276 + 0: The total amount of wall time = 86.136145 + 0: The maximum resident set size (KB) = 888228 Test 069 rrfs_conus13km_radar_tten_warm_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/control_csawmg +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/control_csawmg Checking test 070 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2918,14 +2918,14 @@ Checking test 070 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 349.500489 - 0: The maximum resident set size (KB) = 725340 + 0: The total amount of wall time = 347.560610 + 0: The maximum resident set size (KB) = 730800 Test 070 control_csawmg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/control_csawmgt +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/control_csawmgt Checking test 071 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2936,14 +2936,14 @@ Checking test 071 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 348.364107 - 0: The maximum resident set size (KB) = 724032 + 0: The total amount of wall time = 339.693879 + 0: The maximum resident set size (KB) = 723568 Test 071 control_csawmgt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/control_ras +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/control_ras Checking test 072 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2954,26 +2954,26 @@ Checking test 072 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 203.785297 - 0: The maximum resident set size (KB) = 723124 + 0: The total amount of wall time = 188.423770 + 0: The maximum resident set size (KB) = 719768 Test 072 control_ras PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/control_wam +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/control_wam Checking test 073 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 115.835589 - 0: The maximum resident set size (KB) = 635632 + 0: The total amount of wall time = 121.549859 + 0: The maximum resident set size (KB) = 645884 Test 073 control_wam PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_faster -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/control_p8_faster +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/control_p8_faster Checking test 074 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3020,14 +3020,14 @@ Checking test 074 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 171.773864 - 0: The maximum resident set size (KB) = 1614752 + 0: The total amount of wall time = 164.017226 + 0: The maximum resident set size (KB) = 1610500 Test 074 control_p8_faster PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control_faster -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/regional_control_faster +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/regional_control_faster Checking test 075 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3038,42 +3038,42 @@ Checking test 075 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 281.069928 - 0: The maximum resident set size (KB) = 867544 + 0: The total amount of wall time = 283.484031 + 0: The maximum resident set size (KB) = 873576 Test 075 regional_control_faster PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/rrfs_conus13km_hrrr_warm_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/rrfs_conus13km_hrrr_warm_debug Checking test 076 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 732.815440 - 0: The maximum resident set size (KB) = 958712 + 0: The total amount of wall time = 736.780715 + 0: The maximum resident set size (KB) = 962880 Test 076 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/rrfs_conus13km_radar_tten_warm_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/rrfs_conus13km_radar_tten_warm_debug Checking test 077 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 747.099938 - 0: The maximum resident set size (KB) = 966708 + 0: The total amount of wall time = 733.735844 + 0: The maximum resident set size (KB) = 970240 Test 077 rrfs_conus13km_radar_tten_warm_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/control_CubedSphereGrid_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/control_CubedSphereGrid_debug Checking test 078 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3100,334 +3100,334 @@ Checking test 078 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 172.938137 - 0: The maximum resident set size (KB) = 800620 + 0: The total amount of wall time = 171.457112 + 0: The maximum resident set size (KB) = 799188 Test 078 control_CubedSphereGrid_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/control_wrtGauss_netcdf_parallel_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/control_wrtGauss_netcdf_parallel_debug Checking test 079 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 194.310081 - 0: The maximum resident set size (KB) = 795320 + 0: The total amount of wall time = 166.244996 + 0: The maximum resident set size (KB) = 792440 Test 079 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/control_stochy_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/control_stochy_debug Checking test 080 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 199.209653 - 0: The maximum resident set size (KB) = 802084 + 0: The total amount of wall time = 181.923945 + 0: The maximum resident set size (KB) = 805376 Test 080 control_stochy_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/control_lndp_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/control_lndp_debug Checking test 081 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 207.906057 - 0: The maximum resident set size (KB) = 795968 + 0: The total amount of wall time = 169.139104 + 0: The maximum resident set size (KB) = 801056 Test 081 control_lndp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/control_csawmg_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/control_csawmg_debug Checking test 082 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 251.712462 - 0: The maximum resident set size (KB) = 850332 + 0: The total amount of wall time = 257.323963 + 0: The maximum resident set size (KB) = 843192 Test 082 control_csawmg_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/control_csawmgt_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/control_csawmgt_debug Checking test 083 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 242.935519 - 0: The maximum resident set size (KB) = 846708 + 0: The total amount of wall time = 241.177836 + 0: The maximum resident set size (KB) = 852744 Test 083 control_csawmgt_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/control_ras_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/control_ras_debug Checking test 084 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 167.625901 - 0: The maximum resident set size (KB) = 809520 + 0: The total amount of wall time = 165.210072 + 0: The maximum resident set size (KB) = 810260 Test 084 control_ras_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_diag_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/control_diag_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/control_diag_debug Checking test 085 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 167.836146 - 0: The maximum resident set size (KB) = 851260 + 0: The total amount of wall time = 170.681393 + 0: The maximum resident set size (KB) = 855852 Test 085 control_diag_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_debug_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/control_debug_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/control_debug_p8 Checking test 086 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 174.676677 - 0: The maximum resident set size (KB) = 1623820 + 0: The total amount of wall time = 179.705972 + 0: The maximum resident set size (KB) = 1619536 Test 086 control_debug_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/regional_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/regional_debug Checking test 087 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 996.217106 - 0: The maximum resident set size (KB) = 892024 + 0: The total amount of wall time = 989.879205 + 0: The maximum resident set size (KB) = 888696 Test 087 regional_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/rap_control_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/rap_control_debug Checking test 088 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 287.348460 - 0: The maximum resident set size (KB) = 1176692 + 0: The total amount of wall time = 285.041633 + 0: The maximum resident set size (KB) = 1175996 Test 088 rap_control_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/hrrr_control_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/hrrr_control_debug Checking test 089 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 283.350980 - 0: The maximum resident set size (KB) = 1174576 + 0: The total amount of wall time = 281.669146 + 0: The maximum resident set size (KB) = 1173080 Test 089 hrrr_control_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/rap_unified_drag_suite_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/rap_unified_drag_suite_debug Checking test 090 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 283.192389 - 0: The maximum resident set size (KB) = 1173656 + 0: The total amount of wall time = 281.264172 + 0: The maximum resident set size (KB) = 1173772 Test 090 rap_unified_drag_suite_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_diag_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/rap_diag_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/rap_diag_debug Checking test 091 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 312.923415 - 0: The maximum resident set size (KB) = 1258796 + 0: The total amount of wall time = 326.263413 + 0: The maximum resident set size (KB) = 1262412 Test 091 rap_diag_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/rap_cires_ugwp_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/rap_cires_ugwp_debug Checking test 092 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 292.174905 - 0: The maximum resident set size (KB) = 1177676 + 0: The total amount of wall time = 288.290571 + 0: The maximum resident set size (KB) = 1182228 Test 092 rap_cires_ugwp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/rap_unified_ugwp_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/rap_unified_ugwp_debug Checking test 093 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 292.733032 - 0: The maximum resident set size (KB) = 1170052 + 0: The total amount of wall time = 294.234313 + 0: The maximum resident set size (KB) = 1175952 Test 093 rap_unified_ugwp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_lndp_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/rap_lndp_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/rap_lndp_debug Checking test 094 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 285.695072 - 0: The maximum resident set size (KB) = 1177168 + 0: The total amount of wall time = 293.478979 + 0: The maximum resident set size (KB) = 1172640 Test 094 rap_lndp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_flake_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/rap_flake_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/rap_flake_debug Checking test 095 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 291.011794 - 0: The maximum resident set size (KB) = 1178068 + 0: The total amount of wall time = 292.621884 + 0: The maximum resident set size (KB) = 1174320 Test 095 rap_flake_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_progcld_thompson_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/rap_progcld_thompson_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/rap_progcld_thompson_debug Checking test 096 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 289.919417 - 0: The maximum resident set size (KB) = 1179192 + 0: The total amount of wall time = 297.168861 + 0: The maximum resident set size (KB) = 1183124 Test 096 rap_progcld_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/rap_noah_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/rap_noah_debug Checking test 097 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.208780 - 0: The maximum resident set size (KB) = 1174860 + 0: The total amount of wall time = 279.929574 + 0: The maximum resident set size (KB) = 1173596 Test 097 rap_noah_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/rap_sfcdiff_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/rap_sfcdiff_debug Checking test 098 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 282.524558 - 0: The maximum resident set size (KB) = 1181496 + 0: The total amount of wall time = 284.775798 + 0: The maximum resident set size (KB) = 1178264 Test 098 rap_sfcdiff_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/rap_noah_sfcdiff_cires_ugwp_debug Checking test 099 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 462.825083 - 0: The maximum resident set size (KB) = 1177104 + 0: The total amount of wall time = 453.039189 + 0: The maximum resident set size (KB) = 1176464 Test 099 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/rrfs_v1beta_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/rrfs_v1beta_debug Checking test 100 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 282.658364 - 0: The maximum resident set size (KB) = 1172700 + 0: The total amount of wall time = 282.482503 + 0: The maximum resident set size (KB) = 1167612 Test 100 rrfs_v1beta_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/control_wam_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/control_wam_debug Checking test 101 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 294.149828 - 0: The maximum resident set size (KB) = 531360 + 0: The total amount of wall time = 292.950162 + 0: The maximum resident set size (KB) = 527980 Test 101 control_wam_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 102 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3438,14 +3438,14 @@ Checking test 102 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 302.449041 - 0: The maximum resident set size (KB) = 1071248 + 0: The total amount of wall time = 302.245358 + 0: The maximum resident set size (KB) = 1075156 Test 102 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/rap_control_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/rap_control_dyn32_phy32 Checking test 103 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3492,14 +3492,14 @@ Checking test 103 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 373.058320 - 0: The maximum resident set size (KB) = 1000548 + 0: The total amount of wall time = 369.466513 + 0: The maximum resident set size (KB) = 1003104 Test 103 rap_control_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/hrrr_control_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/hrrr_control_dyn32_phy32 Checking test 104 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3546,14 +3546,14 @@ Checking test 104 hrrr_control_dyn32_phy32 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 = 194.093742 - 0: The maximum resident set size (KB) = 949928 + 0: The total amount of wall time = 194.352197 + 0: The maximum resident set size (KB) = 957776 Test 104 hrrr_control_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/rap_2threads_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/rap_2threads_dyn32_phy32 Checking test 105 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3600,14 +3600,14 @@ Checking test 105 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 393.462321 - 0: The maximum resident set size (KB) = 1025076 + 0: The total amount of wall time = 390.120107 + 0: The maximum resident set size (KB) = 1027284 Test 105 rap_2threads_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/hrrr_control_2threads_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/hrrr_control_2threads_dyn32_phy32 Checking test 106 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3654,14 +3654,14 @@ Checking test 106 hrrr_control_2threads_dyn32_phy32 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 = 209.374085 - 0: The maximum resident set size (KB) = 1012828 + 0: The total amount of wall time = 210.362572 + 0: The maximum resident set size (KB) = 1001560 Test 106 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/hrrr_control_decomp_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/hrrr_control_decomp_dyn32_phy32 Checking test 107 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3708,14 +3708,14 @@ Checking test 107 hrrr_control_decomp_dyn32_phy32 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 = 205.468156 - 0: The maximum resident set size (KB) = 911768 + 0: The total amount of wall time = 205.572599 + 0: The maximum resident set size (KB) = 899648 Test 107 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/rap_restart_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/rap_restart_dyn32_phy32 Checking test 108 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3754,14 +3754,14 @@ Checking test 108 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 281.265910 - 0: The maximum resident set size (KB) = 947560 + 0: The total amount of wall time = 278.844957 + 0: The maximum resident set size (KB) = 936680 Test 108 rap_restart_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/hrrr_control_restart_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/hrrr_control_restart_dyn32_phy32 Checking test 109 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3800,14 +3800,14 @@ Checking test 109 hrrr_control_restart_dyn32_phy32 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 = 102.342493 - 0: The maximum resident set size (KB) = 819652 + 0: The total amount of wall time = 100.994891 + 0: The maximum resident set size (KB) = 852836 Test 109 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn64_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/rap_control_dyn64_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/rap_control_dyn64_phy32 Checking test 110 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3854,81 +3854,81 @@ Checking test 110 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 241.056572 - 0: The maximum resident set size (KB) = 962108 + 0: The total amount of wall time = 241.501101 + 0: The maximum resident set size (KB) = 970924 Test 110 rap_control_dyn64_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/rap_control_debug_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/rap_control_debug_dyn32_phy32 Checking test 111 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 278.229695 - 0: The maximum resident set size (KB) = 1058940 + 0: The total amount of wall time = 281.346796 + 0: The maximum resident set size (KB) = 1062392 Test 111 rap_control_debug_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/hrrr_control_debug_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/hrrr_control_debug_dyn32_phy32 Checking test 112 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.073977 - 0: The maximum resident set size (KB) = 1062624 + 0: The total amount of wall time = 280.820186 + 0: The maximum resident set size (KB) = 1054548 Test 112 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn64_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/rap_control_dyn64_phy32_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/rap_control_dyn64_phy32_debug Checking test 113 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 298.037508 - 0: The maximum resident set size (KB) = 1107888 + 0: The total amount of wall time = 293.775793 + 0: The maximum resident set size (KB) = 1112116 Test 113 rap_control_dyn64_phy32_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/hafs_regional_atm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/hafs_regional_atm Checking test 114 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 270.623784 - 0: The maximum resident set size (KB) = 1056104 + 0: The total amount of wall time = 269.092853 + 0: The maximum resident set size (KB) = 1054292 Test 114 hafs_regional_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/hafs_regional_atm_thompson_gfdlsf +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/hafs_regional_atm_thompson_gfdlsf Checking test 115 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 431.317355 - 0: The maximum resident set size (KB) = 1423376 + 0: The total amount of wall time = 395.626237 + 0: The maximum resident set size (KB) = 1370816 Test 115 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/hafs_regional_atm_ocn +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/hafs_regional_atm_ocn Checking test 116 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3937,14 +3937,14 @@ Checking test 116 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 379.595390 - 0: The maximum resident set size (KB) = 1232136 + 0: The total amount of wall time = 376.024951 + 0: The maximum resident set size (KB) = 1227628 Test 116 hafs_regional_atm_ocn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_wav -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/hafs_regional_atm_wav +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/hafs_regional_atm_wav Checking test 117 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3953,14 +3953,14 @@ Checking test 117 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 735.660915 - 0: The maximum resident set size (KB) = 1253828 + 0: The total amount of wall time = 723.235580 + 0: The maximum resident set size (KB) = 1258136 Test 117 hafs_regional_atm_wav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn_wav -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/hafs_regional_atm_ocn_wav +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/hafs_regional_atm_ocn_wav Checking test 118 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3971,28 +3971,28 @@ Checking test 118 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 833.888551 - 0: The maximum resident set size (KB) = 1285348 + 0: The total amount of wall time = 823.653714 + 0: The maximum resident set size (KB) = 1276768 Test 118 hafs_regional_atm_ocn_wav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_1nest_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/hafs_regional_1nest_atm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/hafs_regional_1nest_atm Checking test 119 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 368.940570 - 0: The maximum resident set size (KB) = 513212 + 0: The total amount of wall time = 366.120577 + 0: The maximum resident set size (KB) = 511020 Test 119 hafs_regional_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/hafs_regional_telescopic_2nests_atm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/hafs_regional_telescopic_2nests_atm Checking test 120 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4001,28 +4001,28 @@ Checking test 120 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 420.590108 - 0: The maximum resident set size (KB) = 517436 + 0: The total amount of wall time = 418.383325 + 0: The maximum resident set size (KB) = 518720 Test 120 hafs_regional_telescopic_2nests_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_1nest_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/hafs_global_1nest_atm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/hafs_global_1nest_atm Checking test 121 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 178.199974 - 0: The maximum resident set size (KB) = 355124 + 0: The total amount of wall time = 172.919958 + 0: The maximum resident set size (KB) = 354616 Test 121 hafs_global_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_multiple_4nests_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/hafs_global_multiple_4nests_atm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/hafs_global_multiple_4nests_atm Checking test 122 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4040,14 +4040,14 @@ Checking test 122 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 474.207758 - 0: The maximum resident set size (KB) = 425852 + 0: The total amount of wall time = 469.497062 + 0: The maximum resident set size (KB) = 423636 Test 122 hafs_global_multiple_4nests_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/hafs_regional_specified_moving_1nest_atm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/hafs_regional_specified_moving_1nest_atm Checking test 123 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4056,28 +4056,28 @@ Checking test 123 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 229.865983 - 0: The maximum resident set size (KB) = 518320 + 0: The total amount of wall time = 229.979078 + 0: The maximum resident set size (KB) = 526860 Test 123 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/hafs_regional_storm_following_1nest_atm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/hafs_regional_storm_following_1nest_atm Checking test 124 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 218.774814 - 0: The maximum resident set size (KB) = 516672 + 0: The total amount of wall time = 218.443602 + 0: The maximum resident set size (KB) = 524976 Test 124 hafs_regional_storm_following_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/hafs_regional_storm_following_1nest_atm_ocn +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/hafs_regional_storm_following_1nest_atm_ocn Checking test 125 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4086,42 +4086,42 @@ Checking test 125 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 290.967009 - 0: The maximum resident set size (KB) = 552372 + 0: The total amount of wall time = 289.524563 + 0: The maximum resident set size (KB) = 553596 Test 125 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_storm_following_1nest_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/hafs_global_storm_following_1nest_atm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/hafs_global_storm_following_1nest_atm Checking test 126 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 69.041653 - 0: The maximum resident set size (KB) = 374304 + 0: The total amount of wall time = 69.077475 + 0: The maximum resident set size (KB) = 367824 Test 126 hafs_global_storm_following_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 127 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 803.185924 - 0: The maximum resident set size (KB) = 582904 + 0: The total amount of wall time = 825.711378 + 0: The maximum resident set size (KB) = 581428 Test 127 hafs_regional_storm_following_1nest_atm_ocn_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 128 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4132,14 +4132,14 @@ Checking test 128 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 580.096431 - 0: The maximum resident set size (KB) = 620688 + 0: The total amount of wall time = 581.262768 + 0: The maximum resident set size (KB) = 617680 Test 128 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_docn -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/hafs_regional_docn +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/hafs_regional_docn Checking test 129 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4147,14 +4147,14 @@ Checking test 129 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 362.668043 - 0: The maximum resident set size (KB) = 1227888 + 0: The total amount of wall time = 359.685695 + 0: The maximum resident set size (KB) = 1238284 Test 129 hafs_regional_docn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_docn_oisst -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/hafs_regional_docn_oisst +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/hafs_regional_docn_oisst Checking test 130 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4162,131 +4162,131 @@ Checking test 130 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 363.598729 - 0: The maximum resident set size (KB) = 1223992 + 0: The total amount of wall time = 355.580906 + 0: The maximum resident set size (KB) = 1217828 Test 130 hafs_regional_docn_oisst PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_datm_cdeps -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/hafs_regional_datm_cdeps +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/hafs_regional_datm_cdeps Checking test 131 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 926.312455 - 0: The maximum resident set size (KB) = 1038444 + 0: The total amount of wall time = 956.516903 + 0: The maximum resident set size (KB) = 1040240 Test 131 hafs_regional_datm_cdeps PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/datm_cdeps_control_cfsr +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/datm_cdeps_control_cfsr Checking test 132 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.532640 - 0: The maximum resident set size (KB) = 1054888 + 0: The total amount of wall time = 147.312138 + 0: The maximum resident set size (KB) = 1063884 Test 132 datm_cdeps_control_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/datm_cdeps_restart_cfsr +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/datm_cdeps_restart_cfsr Checking test 133 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.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.221768 - 0: The maximum resident set size (KB) = 1028132 + 0: The total amount of wall time = 87.913499 + 0: The maximum resident set size (KB) = 1030100 Test 133 datm_cdeps_restart_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_gefs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/datm_cdeps_control_gefs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/datm_cdeps_control_gefs Checking test 134 datm_cdeps_control_gefs 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.349514 - 0: The maximum resident set size (KB) = 970872 + 0: The total amount of wall time = 146.739529 + 0: The maximum resident set size (KB) = 964568 Test 134 datm_cdeps_control_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_iau_gefs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/datm_cdeps_iau_gefs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/datm_cdeps_iau_gefs Checking test 135 datm_cdeps_iau_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.634726 - 0: The maximum resident set size (KB) = 952916 + 0: The total amount of wall time = 145.375558 + 0: The maximum resident set size (KB) = 967100 Test 135 datm_cdeps_iau_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_stochy_gefs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/datm_cdeps_stochy_gefs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/datm_cdeps_stochy_gefs Checking test 136 datm_cdeps_stochy_gefs 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.078022 - 0: The maximum resident set size (KB) = 973420 + 0: The total amount of wall time = 145.744822 + 0: The maximum resident set size (KB) = 967184 Test 136 datm_cdeps_stochy_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_ciceC_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/datm_cdeps_ciceC_cfsr +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/datm_cdeps_ciceC_cfsr Checking test 137 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 145.556732 - 0: The maximum resident set size (KB) = 1072812 + 0: The total amount of wall time = 144.868812 + 0: The maximum resident set size (KB) = 1072708 Test 137 datm_cdeps_ciceC_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_bulk_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/datm_cdeps_bulk_cfsr +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/datm_cdeps_bulk_cfsr Checking test 138 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.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.583678 - 0: The maximum resident set size (KB) = 1060472 + 0: The total amount of wall time = 146.797521 + 0: The maximum resident set size (KB) = 1077532 Test 138 datm_cdeps_bulk_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_bulk_gefs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/datm_cdeps_bulk_gefs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/datm_cdeps_bulk_gefs Checking test 139 datm_cdeps_bulk_gefs 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.125279 - 0: The maximum resident set size (KB) = 966244 + 0: The total amount of wall time = 141.981186 + 0: The maximum resident set size (KB) = 967932 Test 139 datm_cdeps_bulk_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_mx025_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/datm_cdeps_mx025_cfsr +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/datm_cdeps_mx025_cfsr Checking test 140 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4295,14 +4295,14 @@ Checking test 140 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 440.613326 - 0: The maximum resident set size (KB) = 877336 + 0: The total amount of wall time = 442.876880 + 0: The maximum resident set size (KB) = 877180 Test 140 datm_cdeps_mx025_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_mx025_gefs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/datm_cdeps_mx025_gefs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/datm_cdeps_mx025_gefs Checking test 141 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4311,77 +4311,77 @@ Checking test 141 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 440.647431 - 0: The maximum resident set size (KB) = 935308 + 0: The total amount of wall time = 433.154740 + 0: The maximum resident set size (KB) = 934796 Test 141 datm_cdeps_mx025_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/datm_cdeps_multiple_files_cfsr +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/datm_cdeps_multiple_files_cfsr Checking test 142 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 145.980791 - 0: The maximum resident set size (KB) = 1059032 + 0: The total amount of wall time = 148.506166 + 0: The maximum resident set size (KB) = 1067944 Test 142 datm_cdeps_multiple_files_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/datm_cdeps_3072x1536_cfsr +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/datm_cdeps_3072x1536_cfsr Checking test 143 datm_cdeps_3072x1536_cfsr 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 = 195.506567 - 0: The maximum resident set size (KB) = 2359636 + 0: The total amount of wall time = 196.188680 + 0: The maximum resident set size (KB) = 2366976 Test 143 datm_cdeps_3072x1536_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_gfs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/datm_cdeps_gfs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/datm_cdeps_gfs Checking test 144 datm_cdeps_gfs 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 = 203.244309 - 0: The maximum resident set size (KB) = 2315148 + 0: The total amount of wall time = 197.343842 + 0: The maximum resident set size (KB) = 2355072 Test 144 datm_cdeps_gfs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_debug_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/datm_cdeps_debug_cfsr +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/datm_cdeps_debug_cfsr Checking test 145 datm_cdeps_debug_cfsr 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 = 440.268453 - 0: The maximum resident set size (KB) = 1005856 + 0: The total amount of wall time = 438.985209 + 0: The maximum resident set size (KB) = 1010300 Test 145 datm_cdeps_debug_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr_faster -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/datm_cdeps_control_cfsr_faster +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/datm_cdeps_control_cfsr_faster Checking test 146 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.852347 - 0: The maximum resident set size (KB) = 1062520 + 0: The total amount of wall time = 144.625218 + 0: The maximum resident set size (KB) = 1064696 Test 146 datm_cdeps_control_cfsr_faster PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_lnd_gswp3 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/datm_cdeps_lnd_gswp3 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/datm_cdeps_lnd_gswp3 Checking test 147 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4390,14 +4390,14 @@ Checking test 147 datm_cdeps_lnd_gswp3 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.455687 - 0: The maximum resident set size (KB) = 262532 + 0: The total amount of wall time = 7.241645 + 0: The maximum resident set size (KB) = 266052 Test 147 datm_cdeps_lnd_gswp3 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_lnd_gswp3 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/datm_cdeps_lnd_gswp3_rst +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/datm_cdeps_lnd_gswp3_rst Checking test 148 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4406,14 +4406,14 @@ Checking test 148 datm_cdeps_lnd_gswp3_rst 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.524351 - 0: The maximum resident set size (KB) = 264508 + 0: The total amount of wall time = 31.638528 + 0: The maximum resident set size (KB) = 247640 Test 148 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_atmlnd_sbs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/control_p8_atmlnd_sbs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/control_p8_atmlnd_sbs Checking test 149 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4498,14 +4498,14 @@ Checking test 149 control_p8_atmlnd_sbs results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 205.675384 - 0: The maximum resident set size (KB) = 1619324 + 0: The total amount of wall time = 205.688648 + 0: The maximum resident set size (KB) = 1614772 Test 149 control_p8_atmlnd_sbs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_atmwav -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/control_atmwav +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/control_atmwav Checking test 150 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4549,14 +4549,14 @@ Checking test 150 control_atmwav 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.720797 - 0: The maximum resident set size (KB) = 656444 + 0: The total amount of wall time = 87.310404 + 0: The maximum resident set size (KB) = 658488 Test 150 control_atmwav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/atmaero_control_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/atmaero_control_p8 Checking test 151 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4600,14 +4600,14 @@ Checking test 151 atmaero_control_p8 results .... Comparing 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.185173 - 0: The maximum resident set size (KB) = 2970196 + 0: The total amount of wall time = 230.569266 + 0: The maximum resident set size (KB) = 2979672 Test 151 atmaero_control_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/atmaero_control_p8_rad +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/atmaero_control_p8_rad Checking test 152 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4651,14 +4651,14 @@ Checking test 152 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 282.081174 - 0: The maximum resident set size (KB) = 3046172 + 0: The total amount of wall time = 282.307310 + 0: The maximum resident set size (KB) = 3042272 Test 152 atmaero_control_p8_rad PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad_micro -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/atmaero_control_p8_rad_micro +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/atmaero_control_p8_rad_micro Checking test 153 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4702,14 +4702,14 @@ Checking test 153 atmaero_control_p8_rad_micro results .... Comparing 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.873711 - 0: The maximum resident set size (KB) = 3056048 + 0: The total amount of wall time = 286.998405 + 0: The maximum resident set size (KB) = 3059880 Test 153 atmaero_control_p8_rad_micro PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/regional_atmaq +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/regional_atmaq Checking test 154 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4725,14 +4725,14 @@ Checking test 154 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 579.802721 - 0: The maximum resident set size (KB) = 1561524 + 0: The total amount of wall time = 612.353267 + 0: The maximum resident set size (KB) = 1567972 Test 154 regional_atmaq PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/regional_atmaq_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/regional_atmaq_debug Checking test 155 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4746,14 +4746,14 @@ Checking test 155 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1325.187042 - 0: The maximum resident set size (KB) = 1520972 + 0: The total amount of wall time = 1334.288511 + 0: The maximum resident set size (KB) = 1526104 Test 155 regional_atmaq_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq_faster -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_86438/regional_atmaq_faster +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/regional_atmaq_faster Checking test 156 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4769,12 +4769,12 @@ Checking test 156 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 556.918778 - 0: The maximum resident set size (KB) = 1537104 + 0: The total amount of wall time = 584.909085 + 0: The maximum resident set size (KB) = 1564500 Test 156 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Fri Mar 10 13:40:38 CST 2023 -Elapsed time: 05h:23m:42s. Have a nice day! +Mon Mar 13 22:04:11 CDT 2023 +Elapsed time: 01h:16m:28s. Have a nice day! diff --git a/tests/RegressionTests_wcoss2.intel.log b/tests/RegressionTests_wcoss2.intel.log index 0a40fcadbca..3c3dd9e5532 100644 --- a/tests/RegressionTests_wcoss2.intel.log +++ b/tests/RegressionTests_wcoss2.intel.log @@ -1,34 +1,34 @@ -Fri Mar 10 03:02:26 UTC 2023 +Mon Mar 13 20:07:41 UTC 2023 Start Regression test -Compile 001 elapsed time 1472 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 610 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 588 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 585 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 005 elapsed time 502 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 653 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 1623 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 008 elapsed time 1427 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 998 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 928 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 597 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 200 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 013 elapsed time 237 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 733 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 015 elapsed time 887 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 710 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 017 elapsed time 420 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 1043 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 019 elapsed time 491 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 724 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 1025 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 022 elapsed time 821 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 514 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 024 elapsed time 253 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 025 elapsed time 619 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 1273 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1033 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 1016 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 1266 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 005 elapsed time 924 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 663 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 484 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 477 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 461 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 422 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 1402 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 802 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 568 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 014 elapsed time 744 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 826 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 392 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 017 elapsed time 606 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 677 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 019 elapsed time 817 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 610 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 924 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 022 elapsed time 575 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 540 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 024 elapsed time 344 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 025 elapsed time 895 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_mixedmode -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/cpld_control_p8_mixedmode +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -93,14 +93,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 353.017283 -The maximum resident set size (KB) = 2953520 +The total amount of wall time = 342.635402 +The maximum resident set size (KB) = 2954336 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/cpld_control_p8 Checking test 002 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -165,14 +165,14 @@ Checking test 002 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 391.893450 -The maximum resident set size (KB) = 2980920 +The total amount of wall time = 391.190613 +The maximum resident set size (KB) = 2983888 Test 002 cpld_control_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/cpld_restart_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/cpld_restart_p8 Checking test 003 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -225,14 +225,14 @@ Checking test 003 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 274.567953 -The maximum resident set size (KB) = 2865964 +The total amount of wall time = 246.338490 +The maximum resident set size (KB) = 2871748 Test 003 cpld_restart_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/cpld_2threads_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/cpld_2threads_p8 Checking test 004 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -285,14 +285,14 @@ Checking test 004 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 376.395979 -The maximum resident set size (KB) = 3285764 +The total amount of wall time = 377.983179 +The maximum resident set size (KB) = 3285276 Test 004 cpld_2threads_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/cpld_decomp_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/cpld_decomp_p8 Checking test 005 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -345,14 +345,14 @@ Checking test 005 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 385.024297 -The maximum resident set size (KB) = 2978556 +The total amount of wall time = 382.621330 +The maximum resident set size (KB) = 2978984 Test 005 cpld_decomp_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/cpld_mpi_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/cpld_mpi_p8 Checking test 006 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -405,14 +405,14 @@ Checking test 006 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 325.100644 -The maximum resident set size (KB) = 2911432 +The total amount of wall time = 324.632920 +The maximum resident set size (KB) = 2911988 Test 006 cpld_mpi_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_ciceC_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/cpld_control_ciceC_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/cpld_control_ciceC_p8 Checking test 007 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -477,14 +477,14 @@ Checking test 007 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 394.784355 -The maximum resident set size (KB) = 2980304 +The total amount of wall time = 388.760605 +The maximum resident set size (KB) = 2981344 Test 007 cpld_control_ciceC_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_bmark_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/cpld_bmark_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/cpld_bmark_p8 Checking test 008 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -532,14 +532,14 @@ Checking test 008 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 958.439600 -The maximum resident set size (KB) = 3920468 +The total amount of wall time = 995.912784 +The maximum resident set size (KB) = 3914248 Test 008 cpld_bmark_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_bmark_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/cpld_restart_bmark_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/cpld_restart_bmark_p8 Checking test 009 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -587,14 +587,14 @@ Checking test 009 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 652.605866 -The maximum resident set size (KB) = 3890436 +The total amount of wall time = 653.138934 +The maximum resident set size (KB) = 3883396 Test 009 cpld_restart_bmark_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/cpld_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/cpld_control_noaero_p8 Checking test 010 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -658,14 +658,14 @@ Checking test 010 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 289.522173 -The maximum resident set size (KB) = 1577836 +The total amount of wall time = 291.481653 +The maximum resident set size (KB) = 1578928 Test 010 cpld_control_noaero_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/cpld_control_nowave_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/cpld_control_nowave_noaero_p8 Checking test 011 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -727,14 +727,14 @@ Checking test 011 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 302.130768 -The maximum resident set size (KB) = 1620940 +The total amount of wall time = 303.578046 +The maximum resident set size (KB) = 1630800 Test 011 cpld_control_nowave_noaero_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/cpld_control_noaero_p8_agrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/cpld_control_noaero_p8_agrid Checking test 012 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -796,14 +796,14 @@ Checking test 012 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 310.868755 -The maximum resident set size (KB) = 1621296 +The total amount of wall time = 311.751652 +The maximum resident set size (KB) = 1619880 Test 012 cpld_control_noaero_p8_agrid PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/cpld_control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/cpld_control_c48 Checking test 013 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -853,14 +853,14 @@ Checking test 013 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 438.064865 -The maximum resident set size (KB) = 2632292 +The total amount of wall time = 442.040208 +The maximum resident set size (KB) = 2632276 Test 013 cpld_control_c48 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/cpld_warmstart_c48 Checking test 014 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -910,14 +910,14 @@ Checking test 014 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 129.693859 -The maximum resident set size (KB) = 2648600 +The total amount of wall time = 127.354349 +The maximum resident set size (KB) = 2650820 Test 014 cpld_warmstart_c48 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/cpld_restart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/cpld_restart_c48 Checking test 015 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -967,14 +967,14 @@ Checking test 015 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 73.216754 -The maximum resident set size (KB) = 2064072 +The total amount of wall time = 71.884585 +The maximum resident set size (KB) = 2068024 Test 015 cpld_restart_c48 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/cpld_control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/cpld_control_p8_faster Checking test 016 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1039,14 +1039,14 @@ Checking test 016 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 383.542321 -The maximum resident set size (KB) = 2984144 +The total amount of wall time = 384.924624 +The maximum resident set size (KB) = 2980240 Test 016 cpld_control_p8_faster PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/control_CubedSphereGrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/control_CubedSphereGrid Checking test 017 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1073,14 +1073,14 @@ Checking test 017 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 138.900316 -The maximum resident set size (KB) = 513992 +The total amount of wall time = 137.465823 +The maximum resident set size (KB) = 518616 Test 017 control_CubedSphereGrid PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_latlon -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/control_latlon +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/control_latlon Checking test 018 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1091,14 +1091,14 @@ Checking test 018 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 144.914020 -The maximum resident set size (KB) = 519420 +The total amount of wall time = 133.811427 +The maximum resident set size (KB) = 515508 Test 018 control_latlon PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/control_wrtGauss_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/control_wrtGauss_netcdf_parallel Checking test 019 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1109,14 +1109,14 @@ Checking test 019 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 144.740795 -The maximum resident set size (KB) = 518000 +The total amount of wall time = 138.039094 +The maximum resident set size (KB) = 517164 Test 019 control_wrtGauss_netcdf_parallel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/control_c48 Checking test 020 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1155,14 +1155,14 @@ Checking test 020 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 331.200776 -The maximum resident set size (KB) = 675516 +The total amount of wall time = 329.638030 +The maximum resident set size (KB) = 673184 Test 020 control_c48 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c192 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/control_c192 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/control_c192 Checking test 021 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1173,14 +1173,14 @@ Checking test 021 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 571.412096 -The maximum resident set size (KB) = 616640 +The total amount of wall time = 531.940445 +The maximum resident set size (KB) = 616016 Test 021 control_c192 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/control_c384 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/control_c384 Checking test 022 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1191,14 +1191,14 @@ Checking test 022 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 583.419399 -The maximum resident set size (KB) = 912640 +The total amount of wall time = 576.913138 +The maximum resident set size (KB) = 912468 Test 022 control_c384 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384gdas -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/control_c384gdas +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/control_c384gdas Checking test 023 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1241,14 +1241,14 @@ Checking test 023 control_c384gdas 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 = 504.159417 -The maximum resident set size (KB) = 1044184 +The total amount of wall time = 509.370484 +The maximum resident set size (KB) = 1046240 Test 023 control_c384gdas PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/control_stochy Checking test 024 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1259,28 +1259,28 @@ Checking test 024 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 98.251320 -The maximum resident set size (KB) = 521444 +The total amount of wall time = 95.282663 +The maximum resident set size (KB) = 522384 Test 024 control_stochy PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/control_stochy_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/control_stochy_restart Checking test 025 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 48.763294 -The maximum resident set size (KB) = 288308 +The total amount of wall time = 48.395907 +The maximum resident set size (KB) = 336580 Test 025 control_stochy_restart PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/control_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/control_lndp Checking test 026 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1291,14 +1291,14 @@ Checking test 026 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 92.513012 -The maximum resident set size (KB) = 522420 +The total amount of wall time = 85.289627 +The maximum resident set size (KB) = 517728 Test 026 control_lndp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr4 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/control_iovr4 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/control_iovr4 Checking test 027 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1313,14 +1313,14 @@ Checking test 027 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 145.969101 -The maximum resident set size (KB) = 520380 +The total amount of wall time = 138.828782 +The maximum resident set size (KB) = 517096 Test 027 control_iovr4 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr5 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/control_iovr5 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/control_iovr5 Checking test 028 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1335,14 +1335,14 @@ Checking test 028 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 178.270664 -The maximum resident set size (KB) = 519640 +The total amount of wall time = 137.222160 +The maximum resident set size (KB) = 519584 Test 028 control_iovr5 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/control_p8 Checking test 029 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1389,14 +1389,14 @@ Checking test 029 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 181.920498 -The maximum resident set size (KB) = 1490108 +The total amount of wall time = 183.244080 +The maximum resident set size (KB) = 1492248 Test 029 control_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/control_p8_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/control_p8_lndp Checking test 030 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1415,14 +1415,14 @@ Checking test 030 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 341.046551 -The maximum resident set size (KB) = 1490140 +The total amount of wall time = 330.268640 +The maximum resident set size (KB) = 1487416 Test 030 control_p8_lndp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/control_restart_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/control_restart_p8 Checking test 031 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1461,14 +1461,14 @@ Checking test 031 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 101.445039 -The maximum resident set size (KB) = 657088 +The total amount of wall time = 103.044078 +The maximum resident set size (KB) = 662344 Test 031 control_restart_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/control_decomp_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/control_decomp_p8 Checking test 032 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1511,14 +1511,14 @@ Checking test 032 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 184.569183 -The maximum resident set size (KB) = 1481452 +The total amount of wall time = 191.160734 +The maximum resident set size (KB) = 1480716 Test 032 control_decomp_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/control_2threads_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/control_2threads_p8 Checking test 033 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1561,14 +1561,14 @@ Checking test 033 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 161.974463 -The maximum resident set size (KB) = 1569212 +The total amount of wall time = 166.699706 +The maximum resident set size (KB) = 1566064 Test 033 control_2threads_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_rrtmgp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/control_p8_rrtmgp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/control_p8_rrtmgp Checking test 034 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1615,14 +1615,14 @@ Checking test 034 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 236.528803 -The maximum resident set size (KB) = 1547276 +The total amount of wall time = 238.865961 +The maximum resident set size (KB) = 1553748 Test 034 control_p8_rrtmgp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/merra2_thompson -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/merra2_thompson +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/merra2_thompson Checking test 035 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1669,14 +1669,14 @@ Checking test 035 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 206.820339 -The maximum resident set size (KB) = 1493836 +The total amount of wall time = 206.649976 +The maximum resident set size (KB) = 1490664 Test 035 merra2_thompson PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/regional_control Checking test 036 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1687,28 +1687,28 @@ Checking test 036 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 291.979999 -The maximum resident set size (KB) = 656580 +The total amount of wall time = 308.699262 +The maximum resident set size (KB) = 652372 Test 036 regional_control PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/regional_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/regional_restart Checking test 037 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 160.694496 -The maximum resident set size (KB) = 653216 +The total amount of wall time = 159.111182 +The maximum resident set size (KB) = 652104 Test 037 regional_restart PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/regional_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/regional_decomp Checking test 038 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1719,14 +1719,14 @@ Checking test 038 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 311.036129 -The maximum resident set size (KB) = 654988 +The total amount of wall time = 327.551150 +The maximum resident set size (KB) = 651732 Test 038 regional_decomp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/regional_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/regional_2threads Checking test 039 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1737,14 +1737,14 @@ Checking test 039 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 181.889515 -The maximum resident set size (KB) = 703076 +The total amount of wall time = 186.941106 +The maximum resident set size (KB) = 695372 Test 039 regional_2threads PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_noquilt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/regional_noquilt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/regional_noquilt Checking test 040 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1752,28 +1752,28 @@ Checking test 040 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 321.409898 -The maximum resident set size (KB) = 648352 +The total amount of wall time = 330.286025 +The maximum resident set size (KB) = 649540 Test 040 regional_noquilt PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/regional_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/regional_netcdf_parallel Checking test 041 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK -The total amount of wall time = 291.846844 -The maximum resident set size (KB) = 651908 +The total amount of wall time = 299.695232 +The maximum resident set size (KB) = 648212 Test 041 regional_netcdf_parallel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/regional_2dwrtdecomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/regional_2dwrtdecomp Checking test 042 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1784,14 +1784,14 @@ Checking test 042 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 292.869766 -The maximum resident set size (KB) = 657540 +The total amount of wall time = 303.670698 +The maximum resident set size (KB) = 652468 Test 042 regional_2dwrtdecomp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/fv3_regional_wofs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/regional_wofs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/regional_wofs Checking test 043 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1802,14 +1802,14 @@ Checking test 043 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 366.443014 -The maximum resident set size (KB) = 342196 +The total amount of wall time = 369.075831 +The maximum resident set size (KB) = 402172 Test 043 regional_wofs PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/rap_control Checking test 044 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1856,14 +1856,14 @@ Checking test 044 rap_control results .... 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.151552 -The maximum resident set size (KB) = 894680 +The total amount of wall time = 418.626406 +The maximum resident set size (KB) = 893868 Test 044 rap_control PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/regional_spp_sppt_shum_skeb +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/regional_spp_sppt_shum_skeb Checking test 045 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -1874,14 +1874,14 @@ Checking test 045 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 287.623122 -The maximum resident set size (KB) = 993656 +The total amount of wall time = 286.961665 +The maximum resident set size (KB) = 989180 Test 045 regional_spp_sppt_shum_skeb PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/rap_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/rap_decomp Checking test 046 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1928,14 +1928,14 @@ Checking test 046 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 438.075151 -The maximum resident set size (KB) = 893852 +The total amount of wall time = 436.319475 +The maximum resident set size (KB) = 892644 Test 046 rap_decomp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/rap_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/rap_2threads Checking test 047 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1982,14 +1982,14 @@ Checking test 047 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 396.569559 -The maximum resident set size (KB) = 961032 +The total amount of wall time = 394.177795 +The maximum resident set size (KB) = 965620 Test 047 rap_2threads PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/rap_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/rap_restart Checking test 048 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2028,14 +2028,14 @@ Checking test 048 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 214.078490 -The maximum resident set size (KB) = 647392 +The total amount of wall time = 215.086595 +The maximum resident set size (KB) = 646636 Test 048 rap_restart PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/rap_sfcdiff Checking test 049 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2082,14 +2082,14 @@ Checking test 049 rap_sfcdiff results .... 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.993222 -The maximum resident set size (KB) = 893988 +The total amount of wall time = 415.963015 +The maximum resident set size (KB) = 895060 Test 049 rap_sfcdiff PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/rap_sfcdiff_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/rap_sfcdiff_decomp Checking test 050 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2136,14 +2136,14 @@ Checking test 050 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 437.198324 -The maximum resident set size (KB) = 891856 +The total amount of wall time = 436.603272 +The maximum resident set size (KB) = 891836 Test 050 rap_sfcdiff_decomp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/rap_sfcdiff_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/rap_sfcdiff_restart Checking test 051 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2182,14 +2182,14 @@ Checking test 051 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 313.609000 -The maximum resident set size (KB) = 644408 +The total amount of wall time = 312.085294 +The maximum resident set size (KB) = 638568 Test 051 rap_sfcdiff_restart PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/hrrr_control Checking test 052 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2236,14 +2236,14 @@ Checking test 052 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 402.575130 -The maximum resident set size (KB) = 892776 +The total amount of wall time = 400.535870 +The maximum resident set size (KB) = 894392 Test 052 hrrr_control PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/hrrr_control_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/hrrr_control_decomp Checking test 053 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2290,14 +2290,14 @@ Checking test 053 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 420.459190 -The maximum resident set size (KB) = 889908 +The total amount of wall time = 416.370526 +The maximum resident set size (KB) = 893676 Test 053 hrrr_control_decomp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/hrrr_control_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/hrrr_control_2threads Checking test 054 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2344,14 +2344,14 @@ Checking test 054 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 375.622048 -The maximum resident set size (KB) = 959800 +The total amount of wall time = 372.724294 +The maximum resident set size (KB) = 950836 Test 054 hrrr_control_2threads PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/hrrr_control_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/hrrr_control_restart Checking test 055 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2390,14 +2390,14 @@ Checking test 055 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 300.116727 -The maximum resident set size (KB) = 642952 +The total amount of wall time = 300.017591 +The maximum resident set size (KB) = 639680 Test 055 hrrr_control_restart PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/rrfs_v1beta +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/rrfs_v1beta Checking test 056 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2444,14 +2444,14 @@ Checking test 056 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 412.841348 -The maximum resident set size (KB) = 889812 +The total amount of wall time = 411.777848 +The maximum resident set size (KB) = 889804 Test 056 rrfs_v1beta PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/rrfs_v1nssl +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/rrfs_v1nssl Checking test 057 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2466,14 +2466,14 @@ Checking test 057 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 471.515657 -The maximum resident set size (KB) = 579060 +The total amount of wall time = 473.939163 +The maximum resident set size (KB) = 575180 Test 057 rrfs_v1nssl PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/rrfs_v1nssl_nohailnoccn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/rrfs_v1nssl_nohailnoccn Checking test 058 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2488,14 +2488,14 @@ Checking test 058 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 463.513301 -The maximum resident set size (KB) = 569060 +The total amount of wall time = 466.170340 +The maximum resident set size (KB) = 569552 Test 058 rrfs_v1nssl_nohailnoccn PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/rrfs_conus13km_hrrr_warm Checking test 059 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2504,14 +2504,14 @@ Checking test 059 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 116.968428 -The maximum resident set size (KB) = 768620 +The total amount of wall time = 122.211311 +The maximum resident set size (KB) = 762892 Test 059 rrfs_conus13km_hrrr_warm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/rrfs_smoke_conus13km_hrrr_warm Checking test 060 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2520,14 +2520,14 @@ Checking test 060 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 133.228343 -The maximum resident set size (KB) = 783348 +The total amount of wall time = 128.865023 +The maximum resident set size (KB) = 778684 Test 060 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/rrfs_conus13km_radar_tten_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/rrfs_conus13km_radar_tten_warm Checking test 061 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2536,14 +2536,14 @@ Checking test 061 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 121.072800 -The maximum resident set size (KB) = 764732 +The total amount of wall time = 123.325273 +The maximum resident set size (KB) = 764948 Test 061 rrfs_conus13km_radar_tten_warm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/rrfs_conus13km_hrrr_warm_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/rrfs_conus13km_hrrr_warm_2threads Checking test 062 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2552,14 +2552,14 @@ Checking test 062 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 88.448170 -The maximum resident set size (KB) = 763488 +The total amount of wall time = 88.945906 +The maximum resident set size (KB) = 768096 Test 062 rrfs_conus13km_hrrr_warm_2threads PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/rrfs_conus13km_radar_tten_warm_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/rrfs_conus13km_radar_tten_warm_2threads Checking test 063 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2568,14 +2568,14 @@ Checking test 063 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 91.291540 -The maximum resident set size (KB) = 764368 +The total amount of wall time = 90.748030 +The maximum resident set size (KB) = 772904 Test 063 rrfs_conus13km_radar_tten_warm_2threads PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/control_csawmg +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/control_csawmg Checking test 064 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2586,14 +2586,14 @@ Checking test 064 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 352.069657 -The maximum resident set size (KB) = 589460 +The total amount of wall time = 352.131979 +The maximum resident set size (KB) = 586276 Test 064 control_csawmg PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/control_csawmgt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/control_csawmgt Checking test 065 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2604,14 +2604,14 @@ Checking test 065 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 346.521404 -The maximum resident set size (KB) = 589264 +The total amount of wall time = 346.406042 +The maximum resident set size (KB) = 589588 Test 065 control_csawmgt PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/control_ras +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/control_ras Checking test 066 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2622,26 +2622,26 @@ Checking test 066 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 183.550477 -The maximum resident set size (KB) = 549480 +The total amount of wall time = 187.834890 +The maximum resident set size (KB) = 548996 Test 066 control_ras PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/control_wam +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/control_wam Checking test 067 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 120.208033 -The maximum resident set size (KB) = 287884 +The total amount of wall time = 125.347396 +The maximum resident set size (KB) = 272640 Test 067 control_wam PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/control_p8_faster Checking test 068 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2688,14 +2688,14 @@ Checking test 068 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 180.231270 -The maximum resident set size (KB) = 1487900 +The total amount of wall time = 181.002797 +The maximum resident set size (KB) = 1486700 Test 068 control_p8_faster PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/regional_control_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/regional_control_faster Checking test 069 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2706,42 +2706,42 @@ Checking test 069 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 290.523094 -The maximum resident set size (KB) = 654308 +The total amount of wall time = 295.458127 +The maximum resident set size (KB) = 654408 Test 069 regional_control_faster PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/rrfs_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/rrfs_conus13km_hrrr_warm_debug Checking test 070 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 784.252713 -The maximum resident set size (KB) = 799708 +The total amount of wall time = 783.868797 +The maximum resident set size (KB) = 795424 Test 070 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/rrfs_conus13km_radar_tten_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/rrfs_conus13km_radar_tten_warm_debug Checking test 071 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 789.184515 -The maximum resident set size (KB) = 795104 +The total amount of wall time = 788.925334 +The maximum resident set size (KB) = 800608 Test 071 rrfs_conus13km_radar_tten_warm_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/control_CubedSphereGrid_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/control_CubedSphereGrid_debug Checking test 072 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2768,334 +2768,334 @@ Checking test 072 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 170.572640 -The maximum resident set size (KB) = 679740 +The total amount of wall time = 171.730468 +The maximum resident set size (KB) = 680716 Test 072 control_CubedSphereGrid_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/control_wrtGauss_netcdf_parallel_debug Checking test 073 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 160.566326 -The maximum resident set size (KB) = 683204 +The total amount of wall time = 161.272251 +The maximum resident set size (KB) = 682832 Test 073 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/control_stochy_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/control_stochy_debug Checking test 074 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 181.584971 -The maximum resident set size (KB) = 689944 +The total amount of wall time = 182.824105 +The maximum resident set size (KB) = 687824 Test 074 control_stochy_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/control_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/control_lndp_debug Checking test 075 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 164.290814 -The maximum resident set size (KB) = 686428 +The total amount of wall time = 163.510181 +The maximum resident set size (KB) = 688332 Test 075 control_lndp_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/control_csawmg_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/control_csawmg_debug Checking test 076 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 257.239780 -The maximum resident set size (KB) = 719944 +The total amount of wall time = 261.819786 +The maximum resident set size (KB) = 722108 Test 076 control_csawmg_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/control_csawmgt_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/control_csawmgt_debug Checking test 077 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 255.678374 -The maximum resident set size (KB) = 723136 +The total amount of wall time = 258.804191 +The maximum resident set size (KB) = 721488 Test 077 control_csawmgt_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/control_ras_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/control_ras_debug Checking test 078 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 163.587291 -The maximum resident set size (KB) = 692800 +The total amount of wall time = 165.082849 +The maximum resident set size (KB) = 695920 Test 078 control_ras_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/control_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/control_diag_debug Checking test 079 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 166.887487 -The maximum resident set size (KB) = 740880 +The total amount of wall time = 166.777296 +The maximum resident set size (KB) = 742844 Test 079 control_diag_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_debug_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/control_debug_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/control_debug_p8 Checking test 080 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 191.343229 -The maximum resident set size (KB) = 1502576 +The total amount of wall time = 195.617418 +The maximum resident set size (KB) = 1506152 Test 080 control_debug_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/regional_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/regional_debug Checking test 081 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1054.433329 -The maximum resident set size (KB) = 680468 +The total amount of wall time = 1060.618121 +The maximum resident set size (KB) = 677224 Test 081 regional_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/rap_control_debug Checking test 082 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 303.696837 -The maximum resident set size (KB) = 1058800 +The total amount of wall time = 310.124865 +The maximum resident set size (KB) = 1058352 Test 082 rap_control_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/hrrr_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/hrrr_control_debug Checking test 083 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.188386 -The maximum resident set size (KB) = 1054648 +The total amount of wall time = 303.626241 +The maximum resident set size (KB) = 1053796 Test 083 hrrr_control_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/rap_unified_drag_suite_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/rap_unified_drag_suite_debug Checking test 084 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 301.648000 -The maximum resident set size (KB) = 1058912 +The total amount of wall time = 306.900945 +The maximum resident set size (KB) = 1056036 Test 084 rap_unified_drag_suite_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/rap_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/rap_diag_debug Checking test 085 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 313.578635 -The maximum resident set size (KB) = 1142176 +The total amount of wall time = 317.424583 +The maximum resident set size (KB) = 1139480 Test 085 rap_diag_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/rap_cires_ugwp_debug Checking test 086 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 307.813919 -The maximum resident set size (KB) = 1057364 +The total amount of wall time = 313.419578 +The maximum resident set size (KB) = 1057504 Test 086 rap_cires_ugwp_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/rap_unified_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/rap_unified_ugwp_debug Checking test 087 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 309.656195 -The maximum resident set size (KB) = 1057540 +The total amount of wall time = 312.450339 +The maximum resident set size (KB) = 1058452 Test 087 rap_unified_ugwp_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/rap_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/rap_lndp_debug Checking test 088 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 306.043805 -The maximum resident set size (KB) = 1058100 +The total amount of wall time = 309.273353 +The maximum resident set size (KB) = 1059820 Test 088 rap_lndp_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_flake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/rap_flake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/rap_flake_debug Checking test 089 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 302.740402 -The maximum resident set size (KB) = 1057048 +The total amount of wall time = 308.424318 +The maximum resident set size (KB) = 1058496 Test 089 rap_flake_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_progcld_thompson_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/rap_progcld_thompson_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/rap_progcld_thompson_debug Checking test 090 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 301.686393 -The maximum resident set size (KB) = 1058924 +The total amount of wall time = 305.182622 +The maximum resident set size (KB) = 1056604 Test 090 rap_progcld_thompson_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/rap_noah_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/rap_noah_debug Checking test 091 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.547077 -The maximum resident set size (KB) = 1056416 +The total amount of wall time = 298.486635 +The maximum resident set size (KB) = 1056476 Test 091 rap_noah_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/rap_sfcdiff_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/rap_sfcdiff_debug Checking test 092 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 301.821222 -The maximum resident set size (KB) = 1056056 +The total amount of wall time = 306.230048 +The maximum resident set size (KB) = 1059064 Test 092 rap_sfcdiff_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/rap_noah_sfcdiff_cires_ugwp_debug Checking test 093 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 492.115989 -The maximum resident set size (KB) = 1058312 +The total amount of wall time = 499.174588 +The maximum resident set size (KB) = 1054560 Test 093 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/rrfs_v1beta_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/rrfs_v1beta_debug Checking test 094 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.967392 -The maximum resident set size (KB) = 1053688 +The total amount of wall time = 304.075661 +The maximum resident set size (KB) = 1055392 Test 094 rrfs_v1beta_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/control_wam_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/control_wam_debug Checking test 095 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 303.046039 -The maximum resident set size (KB) = 487904 +The total amount of wall time = 297.312284 +The maximum resident set size (KB) = 336596 Test 095 control_wam_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 096 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3106,14 +3106,14 @@ Checking test 096 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 269.178518 -The maximum resident set size (KB) = 878096 +The total amount of wall time = 272.304571 +The maximum resident set size (KB) = 874256 Test 096 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/rap_control_dyn32_phy32 Checking test 097 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3160,14 +3160,14 @@ Checking test 097 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 342.315778 -The maximum resident set size (KB) = 779008 +The total amount of wall time = 346.731707 +The maximum resident set size (KB) = 772500 Test 097 rap_control_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/hrrr_control_dyn32_phy32 Checking test 098 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3214,14 +3214,14 @@ Checking test 098 hrrr_control_dyn32_phy32 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 = 184.167296 -The maximum resident set size (KB) = 774236 +The total amount of wall time = 192.141935 +The maximum resident set size (KB) = 770924 Test 098 hrrr_control_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/rap_2threads_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/rap_2threads_dyn32_phy32 Checking test 099 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3268,14 +3268,14 @@ Checking test 099 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 321.284086 -The maximum resident set size (KB) = 829304 +The total amount of wall time = 329.011213 +The maximum resident set size (KB) = 824388 Test 099 rap_2threads_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/hrrr_control_2threads_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/hrrr_control_2threads_dyn32_phy32 Checking test 100 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3322,14 +3322,14 @@ Checking test 100 hrrr_control_2threads_dyn32_phy32 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 = 175.059517 -The maximum resident set size (KB) = 831948 +The total amount of wall time = 183.474423 +The maximum resident set size (KB) = 830376 Test 100 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/hrrr_control_decomp_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/hrrr_control_decomp_dyn32_phy32 Checking test 101 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3376,14 +3376,14 @@ Checking test 101 hrrr_control_decomp_dyn32_phy32 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 = 201.301356 -The maximum resident set size (KB) = 773192 +The total amount of wall time = 200.346390 +The maximum resident set size (KB) = 770224 Test 101 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/rap_restart_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/rap_restart_dyn32_phy32 Checking test 102 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3422,14 +3422,14 @@ Checking test 102 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 257.503524 -The maximum resident set size (KB) = 612516 +The total amount of wall time = 264.038607 +The maximum resident set size (KB) = 611512 Test 102 rap_restart_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/hrrr_control_restart_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/hrrr_control_restart_dyn32_phy32 Checking test 103 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3468,14 +3468,14 @@ Checking test 103 hrrr_control_restart_dyn32_phy32 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 = 95.597844 -The maximum resident set size (KB) = 604768 +The total amount of wall time = 97.372038 +The maximum resident set size (KB) = 606324 Test 103 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/rap_control_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/rap_control_dyn64_phy32 Checking test 104 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3522,81 +3522,81 @@ Checking test 104 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -The total amount of wall time = 231.384622 -The maximum resident set size (KB) = 799764 +The total amount of wall time = 240.543308 +The maximum resident set size (KB) = 795896 Test 104 rap_control_dyn64_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/rap_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/rap_control_debug_dyn32_phy32 Checking test 105 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 293.223377 -The maximum resident set size (KB) = 939376 +The total amount of wall time = 300.318156 +The maximum resident set size (KB) = 940956 Test 105 rap_control_debug_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/hrrr_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/hrrr_control_debug_dyn32_phy32 Checking test 106 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 289.481213 -The maximum resident set size (KB) = 942756 +The total amount of wall time = 297.667660 +The maximum resident set size (KB) = 944552 Test 106 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/rap_control_dyn64_phy32_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/rap_control_dyn64_phy32_debug Checking test 107 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.810856 -The maximum resident set size (KB) = 955544 +The total amount of wall time = 301.978164 +The maximum resident set size (KB) = 958580 Test 107 rap_control_dyn64_phy32_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/hafs_regional_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/hafs_regional_atm Checking test 108 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 269.125757 -The maximum resident set size (KB) = 822936 +The total amount of wall time = 281.669083 +The maximum resident set size (KB) = 824664 Test 108 hafs_regional_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/hafs_regional_atm_thompson_gfdlsf Checking test 109 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 323.625734 -The maximum resident set size (KB) = 1186036 +The total amount of wall time = 363.111957 +The maximum resident set size (KB) = 1179576 Test 109 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/hafs_regional_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/hafs_regional_atm_ocn Checking test 110 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3605,14 +3605,14 @@ Checking test 110 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 395.058901 -The maximum resident set size (KB) = 853476 +The total amount of wall time = 408.578333 +The maximum resident set size (KB) = 852764 Test 110 hafs_regional_atm_ocn PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/hafs_regional_atm_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/hafs_regional_atm_wav Checking test 111 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3621,14 +3621,14 @@ Checking test 111 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 710.371090 -The maximum resident set size (KB) = 884716 +The total amount of wall time = 730.389528 +The maximum resident set size (KB) = 882792 Test 111 hafs_regional_atm_wav PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/hafs_regional_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/hafs_regional_atm_ocn_wav Checking test 112 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3639,28 +3639,28 @@ Checking test 112 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 914.394887 -The maximum resident set size (KB) = 907468 +The total amount of wall time = 914.086178 +The maximum resident set size (KB) = 909844 Test 112 hafs_regional_atm_ocn_wav PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/hafs_regional_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/hafs_regional_1nest_atm Checking test 113 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 327.795896 -The maximum resident set size (KB) = 390388 +The total amount of wall time = 338.898208 +The maximum resident set size (KB) = 391380 Test 113 hafs_regional_1nest_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/hafs_regional_telescopic_2nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/hafs_regional_telescopic_2nests_atm Checking test 114 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3669,28 +3669,28 @@ Checking test 114 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 401.515414 -The maximum resident set size (KB) = 415684 +The total amount of wall time = 419.194108 +The maximum resident set size (KB) = 419900 Test 114 hafs_regional_telescopic_2nests_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/hafs_global_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/hafs_global_1nest_atm Checking test 115 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 168.170013 -The maximum resident set size (KB) = 270904 +The total amount of wall time = 173.041281 +The maximum resident set size (KB) = 275832 Test 115 hafs_global_1nest_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_multiple_4nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/hafs_global_multiple_4nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/hafs_global_multiple_4nests_atm Checking test 116 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3708,14 +3708,14 @@ Checking test 116 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -The total amount of wall time = 505.380635 -The maximum resident set size (KB) = 338512 +The total amount of wall time = 517.812012 +The maximum resident set size (KB) = 341204 Test 116 hafs_global_multiple_4nests_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/hafs_regional_specified_moving_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/hafs_regional_specified_moving_1nest_atm Checking test 117 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3724,28 +3724,28 @@ Checking test 117 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 215.095438 -The maximum resident set size (KB) = 403684 +The total amount of wall time = 218.207270 +The maximum resident set size (KB) = 406932 Test 117 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/hafs_regional_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/hafs_regional_storm_following_1nest_atm Checking test 118 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 203.354287 -The maximum resident set size (KB) = 405768 +The total amount of wall time = 211.087468 +The maximum resident set size (KB) = 401372 Test 118 hafs_regional_storm_following_1nest_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/hafs_regional_storm_following_1nest_atm_ocn Checking test 119 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3754,42 +3754,42 @@ Checking test 119 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 243.521415 -The maximum resident set size (KB) = 453348 +The total amount of wall time = 254.166700 +The maximum resident set size (KB) = 453336 Test 119 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/hafs_global_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/hafs_global_storm_following_1nest_atm Checking test 120 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 79.584352 -The maximum resident set size (KB) = 289928 +The total amount of wall time = 82.813888 +The maximum resident set size (KB) = 283104 Test 120 hafs_global_storm_following_1nest_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 121 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 804.643106 -The maximum resident set size (KB) = 487620 +The total amount of wall time = 814.567099 +The maximum resident set size (KB) = 483448 Test 121 hafs_regional_storm_following_1nest_atm_ocn_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 122 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3800,14 +3800,14 @@ Checking test 122 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -The total amount of wall time = 525.198887 -The maximum resident set size (KB) = 525848 +The total amount of wall time = 546.704994 +The maximum resident set size (KB) = 523672 Test 122 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_atmlnd_sbs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/control_p8_atmlnd_sbs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/control_p8_atmlnd_sbs Checking test 123 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3892,14 +3892,14 @@ Checking test 123 control_p8_atmlnd_sbs 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 = 240.070621 -The maximum resident set size (KB) = 1542224 +The total amount of wall time = 272.783972 +The maximum resident set size (KB) = 1534668 Test 123 control_p8_atmlnd_sbs PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/atmaero_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/atmaero_control_p8 Checking test 124 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3943,14 +3943,14 @@ Checking test 124 atmaero_control_p8 results .... 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.403008 -The maximum resident set size (KB) = 2819712 +The total amount of wall time = 253.804375 +The maximum resident set size (KB) = 2818516 Test 124 atmaero_control_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/atmaero_control_p8_rad +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/atmaero_control_p8_rad Checking test 125 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3994,14 +3994,14 @@ Checking test 125 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 283.839798 -The maximum resident set size (KB) = 2880436 +The total amount of wall time = 292.080410 +The maximum resident set size (KB) = 2881420 Test 125 atmaero_control_p8_rad PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/atmaero_control_p8_rad_micro +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/atmaero_control_p8_rad_micro Checking test 126 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4045,14 +4045,14 @@ Checking test 126 atmaero_control_p8_rad_micro results .... 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.712189 -The maximum resident set size (KB) = 2889084 +The total amount of wall time = 297.988589 +The maximum resident set size (KB) = 2889716 Test 126 atmaero_control_p8_rad_micro PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/regional_atmaq +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/regional_atmaq Checking test 127 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4068,14 +4068,14 @@ Checking test 127 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 676.545314 -The maximum resident set size (KB) = 1408648 +The total amount of wall time = 704.332463 +The maximum resident set size (KB) = 1409272 Test 127 regional_atmaq PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/regional_atmaq_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/regional_atmaq_debug Checking test 128 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4089,14 +4089,14 @@ Checking test 128 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1453.090692 -The maximum resident set size (KB) = 1444912 +The total amount of wall time = 1447.914047 +The maximum resident set size (KB) = 1442080 Test 128 regional_atmaq_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_253640/regional_atmaq_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/regional_atmaq_faster Checking test 129 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4112,12 +4112,12 @@ Checking test 129 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 659.199598 -The maximum resident set size (KB) = 1404448 +The total amount of wall time = 718.608316 +The maximum resident set size (KB) = 1406736 Test 129 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Fri Mar 10 04:21:58 UTC 2023 -Elapsed time: 01h:19m:34s. Have a nice day! +Mon Mar 13 21:15:27 UTC 2023 +Elapsed time: 01h:07m:46s. Have a nice day! From 018e396b1bdd142faa5e0822878cb6dda4350167 Mon Sep 17 00:00:00 2001 From: Grant Firl Date: Wed, 15 Mar 2023 16:12:18 -0400 Subject: [PATCH 08/30] Combo for ccpp/physics #41 and #45 and ccpp/framework submodule pointer update for #462 (#1654) * update FV3 submodule and .gitmodules for testing of 20230313_combo * turn off cpld_control_p8_faster cheyenne --- FV3 | 2 +- tests/RegressionTests_acorn.intel.log | 948 +++++++++--------- tests/RegressionTests_cheyenne.gnu.log | 324 +++---- tests/RegressionTests_cheyenne.intel.log | 1063 ++++++++++---------- tests/RegressionTests_gaea.intel.log | 1122 +++++++++++----------- tests/RegressionTests_hera.gnu.log | 322 +++---- tests/RegressionTests_hera.intel.log | 1008 +++++++++---------- tests/RegressionTests_orion.intel.log | 1021 ++++++++++---------- tests/RegressionTests_wcoss2.intel.log | 828 ++++++++-------- tests/rt.conf | 2 +- 10 files changed, 3281 insertions(+), 3359 deletions(-) diff --git a/FV3 b/FV3 index 84184284633..da1e9b81bba 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 841842846333801890cd3166c36581a6e9c2267b +Subproject commit da1e9b81bba79466917d5c4a151225be227892ef diff --git a/tests/RegressionTests_acorn.intel.log b/tests/RegressionTests_acorn.intel.log index 74292d17528..3659122c085 100644 --- a/tests/RegressionTests_acorn.intel.log +++ b/tests/RegressionTests_acorn.intel.log @@ -1,39 +1,39 @@ -Tue Mar 14 12:19:23 UTC 2023 +Wed Mar 15 13:56:41 UTC 2023 Start Regression test -Compile 001 elapsed time 688 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 540 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 512 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 467 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 005 elapsed time 951 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 1042 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 819 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 008 elapsed time 1136 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 1438 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 417 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 787 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 929 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 013 elapsed time 418 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 910 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 015 elapsed time 485 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 424 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 017 elapsed time 360 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 731 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 019 elapsed time 836 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 753 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 758 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 022 elapsed time 226 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 023 elapsed time 165 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 024 elapsed time 83 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 025 elapsed time 449 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 026 elapsed time 508 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 027 elapsed time 829 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 949 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 605 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 030 elapsed time 864 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 1076 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 994 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 505 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 475 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 005 elapsed time 1047 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 625 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 967 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 448 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 446 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 1205 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 1098 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 1068 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 541 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 014 elapsed time 819 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 726 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 243 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 017 elapsed time 545 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 472 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 019 elapsed time 236 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 818 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 527 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 022 elapsed time 347 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 023 elapsed time 167 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 024 elapsed time 82 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 025 elapsed time 442 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 026 elapsed time 651 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 027 elapsed time 619 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 443 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 306 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 030 elapsed time 539 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_mixedmode -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/cpld_control_p8_mixedmode +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -98,14 +98,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 333.635998 -The maximum resident set size (KB) = 2950972 +The total amount of wall time = 332.856899 +The maximum resident set size (KB) = 2949860 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_gfsv17 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/cpld_control_gfsv17 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -169,14 +169,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 265.225154 -The maximum resident set size (KB) = 1579812 +The total amount of wall time = 256.063889 +The maximum resident set size (KB) = 1580344 Test 002 cpld_control_gfsv17 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -241,14 +241,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 399.741239 -The maximum resident set size (KB) = 2979864 +The total amount of wall time = 384.547029 +The maximum resident set size (KB) = 2980692 Test 003 cpld_control_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/cpld_restart_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -301,14 +301,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 231.429049 -The maximum resident set size (KB) = 2868956 +The total amount of wall time = 229.935471 +The maximum resident set size (KB) = 2864384 Test 004 cpld_restart_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/cpld_2threads_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -361,14 +361,14 @@ Checking test 005 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 383.453518 -The maximum resident set size (KB) = 3283136 +The total amount of wall time = 371.316071 +The maximum resident set size (KB) = 3282188 Test 005 cpld_2threads_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/cpld_decomp_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/cpld_decomp_p8 Checking test 006 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -421,14 +421,14 @@ Checking test 006 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 395.820563 -The maximum resident set size (KB) = 2976864 +The total amount of wall time = 379.855178 +The maximum resident set size (KB) = 2980556 Test 006 cpld_decomp_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/cpld_mpi_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/cpld_mpi_p8 Checking test 007 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -481,14 +481,14 @@ Checking test 007 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 328.971055 -The maximum resident set size (KB) = 2909652 +The total amount of wall time = 316.778993 +The maximum resident set size (KB) = 2906464 Test 007 cpld_mpi_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_ciceC_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/cpld_control_ciceC_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/cpld_control_ciceC_p8 Checking test 008 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -553,14 +553,14 @@ Checking test 008 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 399.066835 -The maximum resident set size (KB) = 2980308 +The total amount of wall time = 384.810503 +The maximum resident set size (KB) = 2982456 Test 008 cpld_control_ciceC_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/cpld_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/cpld_control_noaero_p8 Checking test 009 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -624,14 +624,14 @@ Checking test 009 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 285.976290 -The maximum resident set size (KB) = 1572080 +The total amount of wall time = 280.338727 +The maximum resident set size (KB) = 1574424 Test 009 cpld_control_noaero_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/cpld_control_nowave_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/cpld_control_nowave_noaero_p8 Checking test 010 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -693,14 +693,14 @@ Checking test 010 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 303.126432 -The maximum resident set size (KB) = 1620244 +The total amount of wall time = 299.711399 +The maximum resident set size (KB) = 1624656 Test 010 cpld_control_nowave_noaero_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/cpld_control_noaero_p8_agrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/cpld_control_noaero_p8_agrid Checking test 011 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -762,14 +762,14 @@ Checking test 011 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 309.681043 -The maximum resident set size (KB) = 1629488 +The total amount of wall time = 307.689855 +The maximum resident set size (KB) = 1624132 Test 011 cpld_control_noaero_p8_agrid PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/cpld_control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/cpld_control_c48 Checking test 012 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -819,14 +819,14 @@ Checking test 012 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 431.627035 -The maximum resident set size (KB) = 2628004 +The total amount of wall time = 431.848160 +The maximum resident set size (KB) = 2629176 Test 012 cpld_control_c48 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/cpld_warmstart_c48 Checking test 013 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -876,14 +876,14 @@ Checking test 013 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 120.211025 -The maximum resident set size (KB) = 2652076 +The total amount of wall time = 120.924095 +The maximum resident set size (KB) = 2643616 Test 013 cpld_warmstart_c48 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/cpld_restart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/cpld_restart_c48 Checking test 014 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -933,14 +933,14 @@ Checking test 014 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 69.924019 -The maximum resident set size (KB) = 2068664 +The total amount of wall time = 66.481411 +The maximum resident set size (KB) = 2065732 Test 014 cpld_restart_c48 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/cpld_control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/cpld_control_p8_faster Checking test 015 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1005,14 +1005,14 @@ Checking test 015 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 376.619745 -The maximum resident set size (KB) = 2975092 +The total amount of wall time = 377.330254 +The maximum resident set size (KB) = 2981212 Test 015 cpld_control_p8_faster PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/control_CubedSphereGrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/control_CubedSphereGrid Checking test 016 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1039,14 +1039,14 @@ Checking test 016 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 129.262366 -The maximum resident set size (KB) = 519000 +The total amount of wall time = 128.965024 +The maximum resident set size (KB) = 517804 Test 016 control_CubedSphereGrid PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_latlon -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/control_latlon +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/control_latlon Checking test 017 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1057,14 +1057,14 @@ Checking test 017 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 130.796960 -The maximum resident set size (KB) = 513436 +The total amount of wall time = 131.048187 +The maximum resident set size (KB) = 518492 Test 017 control_latlon PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/control_wrtGauss_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/control_wrtGauss_netcdf_parallel Checking test 018 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1075,14 +1075,14 @@ Checking test 018 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 133.279375 -The maximum resident set size (KB) = 519628 +The total amount of wall time = 133.041725 +The maximum resident set size (KB) = 518272 Test 018 control_wrtGauss_netcdf_parallel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/control_c48 Checking test 019 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1121,14 +1121,14 @@ Checking test 019 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 325.530008 -The maximum resident set size (KB) = 672192 +The total amount of wall time = 327.204011 +The maximum resident set size (KB) = 674012 Test 019 control_c48 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c192 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/control_c192 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/control_c192 Checking test 020 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1139,14 +1139,14 @@ Checking test 020 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 525.861504 -The maximum resident set size (KB) = 612852 +The total amount of wall time = 525.121243 +The maximum resident set size (KB) = 616972 Test 020 control_c192 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/control_c384 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/control_c384 Checking test 021 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1157,14 +1157,14 @@ Checking test 021 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 572.361619 -The maximum resident set size (KB) = 905612 +The total amount of wall time = 577.675914 +The maximum resident set size (KB) = 910448 Test 021 control_c384 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384gdas -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/control_c384gdas +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/control_c384gdas Checking test 022 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1207,14 +1207,14 @@ Checking test 022 control_c384gdas 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 = 527.544822 -The maximum resident set size (KB) = 1042232 +The total amount of wall time = 515.163679 +The maximum resident set size (KB) = 1042140 Test 022 control_c384gdas PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/control_stochy Checking test 023 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1225,28 +1225,28 @@ Checking test 023 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 89.322985 -The maximum resident set size (KB) = 521176 +The total amount of wall time = 88.614003 +The maximum resident set size (KB) = 520428 Test 023 control_stochy PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/control_stochy_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/control_stochy_restart Checking test 024 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 48.272864 -The maximum resident set size (KB) = 289608 +The total amount of wall time = 48.181650 +The maximum resident set size (KB) = 289600 Test 024 control_stochy_restart PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/control_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/control_lndp Checking test 025 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1257,14 +1257,14 @@ Checking test 025 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 82.504602 -The maximum resident set size (KB) = 520916 +The total amount of wall time = 81.799231 +The maximum resident set size (KB) = 517660 Test 025 control_lndp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr4 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/control_iovr4 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/control_iovr4 Checking test 026 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1279,14 +1279,14 @@ Checking test 026 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.473193 -The maximum resident set size (KB) = 520004 +The total amount of wall time = 134.310230 +The maximum resident set size (KB) = 516132 Test 026 control_iovr4 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr5 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/control_iovr5 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/control_iovr5 Checking test 027 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1301,14 +1301,14 @@ Checking test 027 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 134.212579 -The maximum resident set size (KB) = 518980 +The total amount of wall time = 134.061425 +The maximum resident set size (KB) = 513644 Test 027 control_iovr5 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/control_p8 Checking test 028 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1355,14 +1355,14 @@ Checking test 028 control_p8 results .... 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.156864 -The maximum resident set size (KB) = 1487580 +The total amount of wall time = 178.826137 +The maximum resident set size (KB) = 1480984 Test 028 control_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/control_p8_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/control_p8_lndp Checking test 029 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1381,14 +1381,14 @@ Checking test 029 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 318.934887 -The maximum resident set size (KB) = 1488852 +The total amount of wall time = 319.562928 +The maximum resident set size (KB) = 1487976 Test 029 control_p8_lndp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/control_restart_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/control_restart_p8 Checking test 030 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1427,14 +1427,14 @@ Checking test 030 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 97.554311 -The maximum resident set size (KB) = 650268 +The total amount of wall time = 98.535360 +The maximum resident set size (KB) = 654748 Test 030 control_restart_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/control_decomp_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/control_decomp_p8 Checking test 031 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1477,14 +1477,14 @@ Checking test 031 control_decomp_p8 results .... 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.759372 -The maximum resident set size (KB) = 1478840 +The total amount of wall time = 180.151880 +The maximum resident set size (KB) = 1479620 Test 031 control_decomp_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/control_2threads_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/control_2threads_p8 Checking test 032 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1527,14 +1527,14 @@ Checking test 032 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 160.093739 -The maximum resident set size (KB) = 1569376 +The total amount of wall time = 161.356049 +The maximum resident set size (KB) = 1567584 Test 032 control_2threads_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_rrtmgp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/control_p8_rrtmgp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/control_p8_rrtmgp Checking test 033 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1581,14 +1581,14 @@ Checking test 033 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 232.377545 -The maximum resident set size (KB) = 1543668 +The total amount of wall time = 234.648778 +The maximum resident set size (KB) = 1544728 Test 033 control_p8_rrtmgp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/merra2_thompson -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/merra2_thompson +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/merra2_thompson Checking test 034 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1635,14 +1635,14 @@ Checking test 034 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 201.764250 -The maximum resident set size (KB) = 1489588 +The total amount of wall time = 203.106594 +The maximum resident set size (KB) = 1497456 Test 034 merra2_thompson PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/regional_control Checking test 035 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1653,28 +1653,28 @@ Checking test 035 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 290.755365 -The maximum resident set size (KB) = 654568 +The total amount of wall time = 286.368246 +The maximum resident set size (KB) = 654908 Test 035 regional_control PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/regional_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/regional_restart Checking test 036 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 156.887508 -The maximum resident set size (KB) = 647880 +The total amount of wall time = 152.472438 +The maximum resident set size (KB) = 649256 Test 036 regional_restart PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/regional_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/regional_decomp Checking test 037 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1685,14 +1685,14 @@ Checking test 037 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 303.517230 -The maximum resident set size (KB) = 650548 +The total amount of wall time = 302.738786 +The maximum resident set size (KB) = 654676 Test 037 regional_decomp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/regional_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/regional_2threads Checking test 038 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1703,14 +1703,14 @@ Checking test 038 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 177.193314 -The maximum resident set size (KB) = 697700 +The total amount of wall time = 179.076494 +The maximum resident set size (KB) = 694436 Test 038 regional_2threads PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_noquilt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/regional_noquilt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/regional_noquilt Checking test 039 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1718,14 +1718,14 @@ Checking test 039 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 315.477563 -The maximum resident set size (KB) = 646004 +The total amount of wall time = 309.417507 +The maximum resident set size (KB) = 643284 Test 039 regional_noquilt PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/regional_2dwrtdecomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/regional_2dwrtdecomp Checking test 040 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1736,14 +1736,14 @@ Checking test 040 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 286.396290 -The maximum resident set size (KB) = 655316 +The total amount of wall time = 287.348291 +The maximum resident set size (KB) = 650148 Test 040 regional_2dwrtdecomp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/fv3_regional_wofs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/regional_wofs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/regional_wofs Checking test 041 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1754,14 +1754,14 @@ Checking test 041 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 361.057257 -The maximum resident set size (KB) = 338512 +The total amount of wall time = 360.385003 +The maximum resident set size (KB) = 338996 Test 041 regional_wofs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/rap_control Checking test 042 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1808,14 +1808,14 @@ Checking test 042 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 418.008690 -The maximum resident set size (KB) = 896860 +The total amount of wall time = 419.019588 +The maximum resident set size (KB) = 895140 Test 042 rap_control PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/regional_spp_sppt_shum_skeb +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/regional_spp_sppt_shum_skeb Checking test 043 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -1826,14 +1826,14 @@ Checking test 043 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 283.406901 -The maximum resident set size (KB) = 984520 +The total amount of wall time = 285.542432 +The maximum resident set size (KB) = 985404 Test 043 regional_spp_sppt_shum_skeb PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/rap_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/rap_decomp Checking test 044 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1880,14 +1880,14 @@ Checking test 044 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 432.795375 -The maximum resident set size (KB) = 890040 +The total amount of wall time = 432.939711 +The maximum resident set size (KB) = 889644 Test 044 rap_decomp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/rap_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/rap_2threads Checking test 045 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1934,14 +1934,14 @@ Checking test 045 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 391.771904 -The maximum resident set size (KB) = 961040 +The total amount of wall time = 390.993896 +The maximum resident set size (KB) = 964852 Test 045 rap_2threads PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/rap_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/rap_restart Checking test 046 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1980,14 +1980,14 @@ Checking test 046 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 212.418917 -The maximum resident set size (KB) = 647308 +The total amount of wall time = 212.507058 +The maximum resident set size (KB) = 641176 Test 046 rap_restart PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/rap_sfcdiff Checking test 047 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2034,14 +2034,14 @@ Checking test 047 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 414.082352 -The maximum resident set size (KB) = 894016 +The total amount of wall time = 414.711796 +The maximum resident set size (KB) = 894380 Test 047 rap_sfcdiff PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/rap_sfcdiff_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/rap_sfcdiff_decomp Checking test 048 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2088,14 +2088,14 @@ Checking test 048 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 433.187502 -The maximum resident set size (KB) = 890008 +The total amount of wall time = 431.885993 +The maximum resident set size (KB) = 893492 Test 048 rap_sfcdiff_decomp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/rap_sfcdiff_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/rap_sfcdiff_restart Checking test 049 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2134,14 +2134,14 @@ Checking test 049 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 308.549247 -The maximum resident set size (KB) = 639968 +The total amount of wall time = 309.936448 +The maximum resident set size (KB) = 641284 Test 049 rap_sfcdiff_restart PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/hrrr_control Checking test 050 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2188,14 +2188,14 @@ Checking test 050 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 399.139394 -The maximum resident set size (KB) = 894456 +The total amount of wall time = 399.363477 +The maximum resident set size (KB) = 889088 Test 050 hrrr_control PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/hrrr_control_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/hrrr_control_decomp Checking test 051 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2242,14 +2242,14 @@ Checking test 051 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 414.410613 -The maximum resident set size (KB) = 887420 +The total amount of wall time = 414.088090 +The maximum resident set size (KB) = 890660 Test 051 hrrr_control_decomp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/hrrr_control_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/hrrr_control_2threads Checking test 052 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2296,14 +2296,14 @@ Checking test 052 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 370.091829 -The maximum resident set size (KB) = 960560 +The total amount of wall time = 371.211427 +The maximum resident set size (KB) = 957832 Test 052 hrrr_control_2threads PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/hrrr_control_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/hrrr_control_restart Checking test 053 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2342,14 +2342,14 @@ Checking test 053 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 299.018288 -The maximum resident set size (KB) = 641600 +The total amount of wall time = 297.844382 +The maximum resident set size (KB) = 642068 Test 053 hrrr_control_restart PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/rrfs_v1beta +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/rrfs_v1beta Checking test 054 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2396,14 +2396,14 @@ Checking test 054 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 409.271129 -The maximum resident set size (KB) = 887016 +The total amount of wall time = 411.016839 +The maximum resident set size (KB) = 887520 Test 054 rrfs_v1beta PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/rrfs_v1nssl +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/rrfs_v1nssl Checking test 055 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2418,14 +2418,14 @@ Checking test 055 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 474.284356 -The maximum resident set size (KB) = 576984 +The total amount of wall time = 473.272994 +The maximum resident set size (KB) = 577156 Test 055 rrfs_v1nssl PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/rrfs_v1nssl_nohailnoccn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/rrfs_v1nssl_nohailnoccn Checking test 056 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2440,14 +2440,14 @@ Checking test 056 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 461.361742 -The maximum resident set size (KB) = 565964 +The total amount of wall time = 463.445360 +The maximum resident set size (KB) = 563832 Test 056 rrfs_v1nssl_nohailnoccn PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/rrfs_conus13km_hrrr_warm Checking test 057 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2456,14 +2456,14 @@ Checking test 057 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 115.223675 -The maximum resident set size (KB) = 761868 +The total amount of wall time = 114.364541 +The maximum resident set size (KB) = 760512 Test 057 rrfs_conus13km_hrrr_warm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/rrfs_smoke_conus13km_hrrr_warm Checking test 058 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2472,14 +2472,14 @@ Checking test 058 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 127.104179 -The maximum resident set size (KB) = 772980 +The total amount of wall time = 128.434941 +The maximum resident set size (KB) = 778732 Test 058 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/rrfs_conus13km_radar_tten_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/rrfs_conus13km_radar_tten_warm Checking test 059 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2488,14 +2488,14 @@ Checking test 059 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 114.843483 -The maximum resident set size (KB) = 763848 +The total amount of wall time = 116.339668 +The maximum resident set size (KB) = 763184 Test 059 rrfs_conus13km_radar_tten_warm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/rrfs_conus13km_hrrr_warm_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/rrfs_conus13km_hrrr_warm_2threads Checking test 060 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2504,14 +2504,14 @@ Checking test 060 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 84.579530 -The maximum resident set size (KB) = 756992 +The total amount of wall time = 85.988682 +The maximum resident set size (KB) = 759100 Test 060 rrfs_conus13km_hrrr_warm_2threads PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/rrfs_conus13km_radar_tten_warm_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/rrfs_conus13km_radar_tten_warm_2threads Checking test 061 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2520,14 +2520,14 @@ Checking test 061 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 85.407819 -The maximum resident set size (KB) = 767296 +The total amount of wall time = 85.883125 +The maximum resident set size (KB) = 760292 Test 061 rrfs_conus13km_radar_tten_warm_2threads PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/control_csawmg +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/control_csawmg Checking test 062 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2538,14 +2538,14 @@ Checking test 062 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 345.118339 -The maximum resident set size (KB) = 584980 +The total amount of wall time = 346.812828 +The maximum resident set size (KB) = 586620 Test 062 control_csawmg PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/control_csawmgt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/control_csawmgt Checking test 063 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2556,14 +2556,14 @@ Checking test 063 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 342.183742 -The maximum resident set size (KB) = 585516 +The total amount of wall time = 344.635537 +The maximum resident set size (KB) = 583288 Test 063 control_csawmgt PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/control_ras +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/control_ras Checking test 064 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2574,26 +2574,26 @@ Checking test 064 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 179.839025 -The maximum resident set size (KB) = 551004 +The total amount of wall time = 180.798644 +The maximum resident set size (KB) = 551792 Test 064 control_ras PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/control_wam +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/control_wam Checking test 065 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 117.519345 -The maximum resident set size (KB) = 270168 +The total amount of wall time = 117.625103 +The maximum resident set size (KB) = 272328 Test 065 control_wam PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/control_p8_faster Checking test 066 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2640,14 +2640,14 @@ Checking test 066 control_p8_faster results .... 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.039854 -The maximum resident set size (KB) = 1476536 +The total amount of wall time = 172.817310 +The maximum resident set size (KB) = 1476704 Test 066 control_p8_faster PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/regional_control_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/regional_control_faster Checking test 067 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2658,42 +2658,42 @@ Checking test 067 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 283.625453 -The maximum resident set size (KB) = 648428 +The total amount of wall time = 280.648910 +The maximum resident set size (KB) = 648436 Test 067 regional_control_faster PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/rrfs_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/rrfs_conus13km_hrrr_warm_debug Checking test 068 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 783.906739 -The maximum resident set size (KB) = 792840 +The total amount of wall time = 768.882018 +The maximum resident set size (KB) = 791176 Test 068 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/rrfs_conus13km_radar_tten_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/rrfs_conus13km_radar_tten_warm_debug Checking test 069 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 781.230991 -The maximum resident set size (KB) = 789016 +The total amount of wall time = 769.566582 +The maximum resident set size (KB) = 794752 Test 069 rrfs_conus13km_radar_tten_warm_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/control_CubedSphereGrid_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/control_CubedSphereGrid_debug Checking test 070 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2720,334 +2720,334 @@ Checking test 070 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 166.133401 -The maximum resident set size (KB) = 671588 +The total amount of wall time = 165.831107 +The maximum resident set size (KB) = 674076 Test 070 control_CubedSphereGrid_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/control_wrtGauss_netcdf_parallel_debug Checking test 071 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 158.330514 -The maximum resident set size (KB) = 676320 +The total amount of wall time = 157.752193 +The maximum resident set size (KB) = 677000 Test 071 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/control_stochy_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/control_stochy_debug Checking test 072 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 179.029984 -The maximum resident set size (KB) = 682860 +The total amount of wall time = 178.480646 +The maximum resident set size (KB) = 681988 Test 072 control_stochy_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/control_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/control_lndp_debug Checking test 073 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 160.953461 -The maximum resident set size (KB) = 683104 +The total amount of wall time = 159.993825 +The maximum resident set size (KB) = 682492 Test 073 control_lndp_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/control_csawmg_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/control_csawmg_debug Checking test 074 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 255.306661 -The maximum resident set size (KB) = 713520 +The total amount of wall time = 254.305326 +The maximum resident set size (KB) = 715228 Test 074 control_csawmg_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/control_csawmgt_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/control_csawmgt_debug Checking test 075 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 252.044259 -The maximum resident set size (KB) = 714212 +The total amount of wall time = 251.013870 +The maximum resident set size (KB) = 717744 Test 075 control_csawmgt_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/control_ras_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/control_ras_debug Checking test 076 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 163.314334 -The maximum resident set size (KB) = 688200 +The total amount of wall time = 161.886959 +The maximum resident set size (KB) = 687064 Test 076 control_ras_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/control_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/control_diag_debug Checking test 077 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 163.774037 -The maximum resident set size (KB) = 734740 +The total amount of wall time = 164.033875 +The maximum resident set size (KB) = 737568 Test 077 control_diag_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_debug_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/control_debug_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/control_debug_p8 Checking test 078 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 188.026996 -The maximum resident set size (KB) = 1494772 +The total amount of wall time = 185.738440 +The maximum resident set size (KB) = 1503260 Test 078 control_debug_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/regional_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/regional_debug Checking test 079 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1044.094942 -The maximum resident set size (KB) = 672972 +The total amount of wall time = 1037.020432 +The maximum resident set size (KB) = 669932 Test 079 regional_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/rap_control_debug Checking test 080 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.141416 -The maximum resident set size (KB) = 1051744 +The total amount of wall time = 297.080266 +The maximum resident set size (KB) = 1054276 Test 080 rap_control_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/hrrr_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/hrrr_control_debug Checking test 081 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 292.817387 -The maximum resident set size (KB) = 1047560 +The total amount of wall time = 292.306552 +The maximum resident set size (KB) = 1048428 Test 081 hrrr_control_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/rap_unified_drag_suite_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/rap_unified_drag_suite_debug Checking test 082 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.820274 -The maximum resident set size (KB) = 1050168 +The total amount of wall time = 299.199787 +The maximum resident set size (KB) = 1050908 Test 082 rap_unified_drag_suite_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/rap_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/rap_diag_debug Checking test 083 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 309.413940 -The maximum resident set size (KB) = 1135008 +The total amount of wall time = 309.655252 +The maximum resident set size (KB) = 1133820 Test 083 rap_diag_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/rap_cires_ugwp_debug Checking test 084 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 304.293831 -The maximum resident set size (KB) = 1048556 +The total amount of wall time = 303.728971 +The maximum resident set size (KB) = 1052336 Test 084 rap_cires_ugwp_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/rap_unified_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/rap_unified_ugwp_debug Checking test 085 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 304.016766 -The maximum resident set size (KB) = 1050484 +The total amount of wall time = 305.668911 +The maximum resident set size (KB) = 1052736 Test 085 rap_unified_ugwp_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/rap_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/rap_lndp_debug Checking test 086 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 301.439188 -The maximum resident set size (KB) = 1051316 +The total amount of wall time = 299.885232 +The maximum resident set size (KB) = 1051432 Test 086 rap_lndp_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_flake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/rap_flake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/rap_flake_debug Checking test 087 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.436238 -The maximum resident set size (KB) = 1049376 +The total amount of wall time = 299.277286 +The maximum resident set size (KB) = 1053552 Test 087 rap_flake_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_progcld_thompson_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/rap_progcld_thompson_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/rap_progcld_thompson_debug Checking test 088 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.200719 -The maximum resident set size (KB) = 1049628 +The total amount of wall time = 297.134980 +The maximum resident set size (KB) = 1053112 Test 088 rap_progcld_thompson_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/rap_noah_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/rap_noah_debug Checking test 089 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 293.506629 -The maximum resident set size (KB) = 1053380 +The total amount of wall time = 291.054781 +The maximum resident set size (KB) = 1052144 Test 089 rap_noah_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/rap_sfcdiff_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/rap_sfcdiff_debug Checking test 090 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.619333 -The maximum resident set size (KB) = 1054580 +The total amount of wall time = 301.924620 +The maximum resident set size (KB) = 1052696 Test 090 rap_sfcdiff_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/rap_noah_sfcdiff_cires_ugwp_debug Checking test 091 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 486.390071 -The maximum resident set size (KB) = 1051684 +The total amount of wall time = 487.290851 +The maximum resident set size (KB) = 1049880 Test 091 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/rrfs_v1beta_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/rrfs_v1beta_debug Checking test 092 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 293.662525 -The maximum resident set size (KB) = 1050000 +The total amount of wall time = 292.932292 +The maximum resident set size (KB) = 1049024 Test 092 rrfs_v1beta_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/control_wam_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/control_wam_debug Checking test 093 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 299.468459 -The maximum resident set size (KB) = 302352 +The total amount of wall time = 299.389314 +The maximum resident set size (KB) = 303260 Test 093 control_wam_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 094 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3058,14 +3058,14 @@ Checking test 094 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 267.552327 -The maximum resident set size (KB) = 872352 +The total amount of wall time = 266.528715 +The maximum resident set size (KB) = 882824 Test 094 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/rap_control_dyn32_phy32 Checking test 095 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3112,14 +3112,14 @@ Checking test 095 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 343.726308 -The maximum resident set size (KB) = 778176 +The total amount of wall time = 343.025482 +The maximum resident set size (KB) = 775228 Test 095 rap_control_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/hrrr_control_dyn32_phy32 Checking test 096 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3166,14 +3166,14 @@ Checking test 096 hrrr_control_dyn32_phy32 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 = 183.893143 -The maximum resident set size (KB) = 772616 +The total amount of wall time = 183.416658 +The maximum resident set size (KB) = 773380 Test 096 hrrr_control_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/rap_2threads_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/rap_2threads_dyn32_phy32 Checking test 097 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3220,14 +3220,14 @@ Checking test 097 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 321.251328 -The maximum resident set size (KB) = 829828 +The total amount of wall time = 320.721367 +The maximum resident set size (KB) = 830160 Test 097 rap_2threads_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/hrrr_control_2threads_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/hrrr_control_2threads_dyn32_phy32 Checking test 098 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3274,14 +3274,14 @@ Checking test 098 hrrr_control_2threads_dyn32_phy32 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 = 173.597534 -The maximum resident set size (KB) = 827184 +The total amount of wall time = 174.655196 +The maximum resident set size (KB) = 829868 Test 098 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/hrrr_control_decomp_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/hrrr_control_decomp_dyn32_phy32 Checking test 099 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3328,14 +3328,14 @@ Checking test 099 hrrr_control_decomp_dyn32_phy32 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 = 190.853854 -The maximum resident set size (KB) = 774664 +The total amount of wall time = 192.223216 +The maximum resident set size (KB) = 771080 Test 099 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/rap_restart_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/rap_restart_dyn32_phy32 Checking test 100 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3374,14 +3374,14 @@ Checking test 100 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 255.861415 -The maximum resident set size (KB) = 612740 +The total amount of wall time = 255.922313 +The maximum resident set size (KB) = 611040 Test 100 rap_restart_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/hrrr_control_restart_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/hrrr_control_restart_dyn32_phy32 Checking test 101 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3420,14 +3420,14 @@ Checking test 101 hrrr_control_restart_dyn32_phy32 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 = 95.217980 -The maximum resident set size (KB) = 605820 +The total amount of wall time = 94.808323 +The maximum resident set size (KB) = 608304 Test 101 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/rap_control_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/rap_control_dyn64_phy32 Checking test 102 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3474,81 +3474,81 @@ Checking test 102 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -The total amount of wall time = 230.626246 -The maximum resident set size (KB) = 796016 +The total amount of wall time = 231.559605 +The maximum resident set size (KB) = 801312 Test 102 rap_control_dyn64_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/rap_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/rap_control_debug_dyn32_phy32 Checking test 103 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 290.939417 -The maximum resident set size (KB) = 935628 +The total amount of wall time = 290.747178 +The maximum resident set size (KB) = 938484 Test 103 rap_control_debug_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/hrrr_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/hrrr_control_debug_dyn32_phy32 Checking test 104 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 285.152806 -The maximum resident set size (KB) = 934024 +The total amount of wall time = 286.570048 +The maximum resident set size (KB) = 936464 Test 104 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/rap_control_dyn64_phy32_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/rap_control_dyn64_phy32_debug Checking test 105 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 293.170246 -The maximum resident set size (KB) = 955540 +The total amount of wall time = 291.875619 +The maximum resident set size (KB) = 950460 Test 105 rap_control_dyn64_phy32_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/hafs_regional_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/hafs_regional_atm Checking test 106 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 264.127906 -The maximum resident set size (KB) = 818608 +The total amount of wall time = 264.576103 +The maximum resident set size (KB) = 821532 Test 106 hafs_regional_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/hafs_regional_atm_thompson_gfdlsf Checking test 107 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 304.607968 -The maximum resident set size (KB) = 1179340 +The total amount of wall time = 303.121739 +The maximum resident set size (KB) = 1180936 Test 107 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/hafs_regional_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/hafs_regional_atm_ocn Checking test 108 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3557,14 +3557,14 @@ Checking test 108 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 388.533879 -The maximum resident set size (KB) = 852324 +The total amount of wall time = 387.586229 +The maximum resident set size (KB) = 850748 Test 108 hafs_regional_atm_ocn PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/hafs_regional_atm_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/hafs_regional_atm_wav Checking test 109 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3573,14 +3573,14 @@ Checking test 109 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 702.554013 -The maximum resident set size (KB) = 880700 +The total amount of wall time = 700.491322 +The maximum resident set size (KB) = 882660 Test 109 hafs_regional_atm_wav PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/hafs_regional_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/hafs_regional_atm_ocn_wav Checking test 110 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3591,28 +3591,28 @@ Checking test 110 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 882.456328 -The maximum resident set size (KB) = 906280 +The total amount of wall time = 887.388381 +The maximum resident set size (KB) = 906124 Test 110 hafs_regional_atm_ocn_wav PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/hafs_regional_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/hafs_regional_1nest_atm Checking test 111 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 327.377319 -The maximum resident set size (KB) = 389300 +The total amount of wall time = 327.550868 +The maximum resident set size (KB) = 381928 Test 111 hafs_regional_1nest_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/hafs_regional_telescopic_2nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/hafs_regional_telescopic_2nests_atm Checking test 112 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3621,28 +3621,28 @@ Checking test 112 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 397.811701 -The maximum resident set size (KB) = 413140 +The total amount of wall time = 398.174026 +The maximum resident set size (KB) = 410936 Test 112 hafs_regional_telescopic_2nests_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/hafs_global_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/hafs_global_1nest_atm Checking test 113 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 165.559970 -The maximum resident set size (KB) = 262864 +The total amount of wall time = 165.102969 +The maximum resident set size (KB) = 261236 Test 113 hafs_global_1nest_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_multiple_4nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/hafs_global_multiple_4nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/hafs_global_multiple_4nests_atm Checking test 114 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3660,14 +3660,14 @@ Checking test 114 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -The total amount of wall time = 488.398583 -The maximum resident set size (KB) = 337716 +The total amount of wall time = 486.790871 +The maximum resident set size (KB) = 338324 Test 114 hafs_global_multiple_4nests_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/hafs_regional_specified_moving_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/hafs_regional_specified_moving_1nest_atm Checking test 115 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3676,28 +3676,28 @@ Checking test 115 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 211.454795 -The maximum resident set size (KB) = 406536 +The total amount of wall time = 211.872644 +The maximum resident set size (KB) = 404304 Test 115 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/hafs_regional_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/hafs_regional_storm_following_1nest_atm Checking test 116 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 200.002872 -The maximum resident set size (KB) = 404520 +The total amount of wall time = 201.028263 +The maximum resident set size (KB) = 406268 Test 116 hafs_regional_storm_following_1nest_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/hafs_regional_storm_following_1nest_atm_ocn Checking test 117 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3706,42 +3706,42 @@ Checking test 117 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 243.338624 -The maximum resident set size (KB) = 453216 +The total amount of wall time = 238.840266 +The maximum resident set size (KB) = 450600 Test 117 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/hafs_global_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/hafs_global_storm_following_1nest_atm Checking test 118 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 79.019416 -The maximum resident set size (KB) = 278984 +The total amount of wall time = 79.008509 +The maximum resident set size (KB) = 283804 Test 118 hafs_global_storm_following_1nest_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 119 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 799.548795 -The maximum resident set size (KB) = 478092 +The total amount of wall time = 801.726992 +The maximum resident set size (KB) = 477700 Test 119 hafs_regional_storm_following_1nest_atm_ocn_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 120 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3752,14 +3752,14 @@ Checking test 120 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -The total amount of wall time = 520.455276 -The maximum resident set size (KB) = 521392 +The total amount of wall time = 519.117038 +The maximum resident set size (KB) = 521432 Test 120 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_docn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/hafs_regional_docn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/hafs_regional_docn Checking test 121 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3767,14 +3767,14 @@ Checking test 121 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 369.105600 -The maximum resident set size (KB) = 856084 +The total amount of wall time = 369.585319 +The maximum resident set size (KB) = 854912 Test 121 hafs_regional_docn PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_docn_oisst -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/hafs_regional_docn_oisst +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/hafs_regional_docn_oisst Checking test 122 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3782,131 +3782,131 @@ Checking test 122 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 371.079670 -The maximum resident set size (KB) = 842864 +The total amount of wall time = 371.497562 +The maximum resident set size (KB) = 840368 Test 122 hafs_regional_docn_oisst PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_datm_cdeps -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/hafs_regional_datm_cdeps +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/hafs_regional_datm_cdeps Checking test 123 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -The total amount of wall time = 946.807260 -The maximum resident set size (KB) = 869140 +The total amount of wall time = 945.493006 +The maximum resident set size (KB) = 869152 Test 123 hafs_regional_datm_cdeps PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/datm_cdeps_control_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/datm_cdeps_control_cfsr Checking test 124 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.407940 -The maximum resident set size (KB) = 732768 +The total amount of wall time = 140.731299 +The maximum resident set size (KB) = 735240 Test 124 datm_cdeps_control_cfsr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/datm_cdeps_restart_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/datm_cdeps_restart_cfsr Checking test 125 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 85.704865 -The maximum resident set size (KB) = 721592 +The total amount of wall time = 85.543887 +The maximum resident set size (KB) = 730616 Test 125 datm_cdeps_restart_cfsr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/datm_cdeps_control_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/datm_cdeps_control_gefs Checking test 126 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 133.967595 -The maximum resident set size (KB) = 612328 +The total amount of wall time = 133.091665 +The maximum resident set size (KB) = 613000 Test 126 datm_cdeps_control_gefs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_iau_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/datm_cdeps_iau_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/datm_cdeps_iau_gefs Checking test 127 datm_cdeps_iau_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 136.475762 -The maximum resident set size (KB) = 613092 +The total amount of wall time = 136.481305 +The maximum resident set size (KB) = 613596 Test 127 datm_cdeps_iau_gefs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_stochy_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/datm_cdeps_stochy_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/datm_cdeps_stochy_gefs Checking test 128 datm_cdeps_stochy_gefs 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.363750 -The maximum resident set size (KB) = 615716 +The total amount of wall time = 138.101707 +The maximum resident set size (KB) = 617496 Test 128 datm_cdeps_stochy_gefs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/datm_cdeps_ciceC_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/datm_cdeps_ciceC_cfsr Checking test 129 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.355364 -The maximum resident set size (KB) = 732028 +The total amount of wall time = 140.654898 +The maximum resident set size (KB) = 731796 Test 129 datm_cdeps_ciceC_cfsr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/datm_cdeps_bulk_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/datm_cdeps_bulk_cfsr Checking test 130 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.864062 -The maximum resident set size (KB) = 732868 +The total amount of wall time = 141.891352 +The maximum resident set size (KB) = 720496 Test 130 datm_cdeps_bulk_cfsr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/datm_cdeps_bulk_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/datm_cdeps_bulk_gefs Checking test 131 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 134.416935 -The maximum resident set size (KB) = 615164 +The total amount of wall time = 133.533478 +The maximum resident set size (KB) = 612864 Test 131 datm_cdeps_bulk_gefs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/datm_cdeps_mx025_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/datm_cdeps_mx025_cfsr Checking test 132 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -3915,14 +3915,14 @@ Checking test 132 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 432.734118 -The maximum resident set size (KB) = 570208 +The total amount of wall time = 429.684120 +The maximum resident set size (KB) = 573220 Test 132 datm_cdeps_mx025_cfsr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/datm_cdeps_mx025_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/datm_cdeps_mx025_gefs Checking test 133 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -3931,64 +3931,64 @@ Checking test 133 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 430.563212 -The maximum resident set size (KB) = 551392 +The total amount of wall time = 429.775005 +The maximum resident set size (KB) = 553920 Test 133 datm_cdeps_mx025_gefs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/datm_cdeps_multiple_files_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/datm_cdeps_multiple_files_cfsr Checking test 134 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 140.807862 -The maximum resident set size (KB) = 731276 +The total amount of wall time = 140.574189 +The maximum resident set size (KB) = 733824 Test 134 datm_cdeps_multiple_files_cfsr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/datm_cdeps_3072x1536_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/datm_cdeps_3072x1536_cfsr Checking test 135 datm_cdeps_3072x1536_cfsr 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 = 255.839471 -The maximum resident set size (KB) = 1983936 +The total amount of wall time = 255.968688 +The maximum resident set size (KB) = 1978744 Test 135 datm_cdeps_3072x1536_cfsr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_gfs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/datm_cdeps_gfs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/datm_cdeps_gfs Checking test 136 datm_cdeps_gfs 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 = 257.273267 -The maximum resident set size (KB) = 1983132 +The total amount of wall time = 256.102751 +The maximum resident set size (KB) = 1983824 Test 136 datm_cdeps_gfs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/datm_cdeps_control_cfsr_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/datm_cdeps_control_cfsr_faster Checking test 137 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 142.312899 -The maximum resident set size (KB) = 732588 +The total amount of wall time = 140.922737 +The maximum resident set size (KB) = 731848 Test 137 datm_cdeps_control_cfsr_faster PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/datm_cdeps_lnd_gswp3 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/datm_cdeps_lnd_gswp3 Checking test 138 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -3997,14 +3997,14 @@ Checking test 138 datm_cdeps_lnd_gswp3 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.263291 -The maximum resident set size (KB) = 226460 +The total amount of wall time = 22.107137 +The maximum resident set size (KB) = 226656 Test 138 datm_cdeps_lnd_gswp3 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/datm_cdeps_lnd_gswp3_rst +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/datm_cdeps_lnd_gswp3_rst Checking test 139 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4013,14 +4013,14 @@ Checking test 139 datm_cdeps_lnd_gswp3_rst 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.149241 -The maximum resident set size (KB) = 230780 +The total amount of wall time = 27.571097 +The maximum resident set size (KB) = 227368 Test 139 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_atmlnd_sbs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/control_p8_atmlnd_sbs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/control_p8_atmlnd_sbs Checking test 140 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4105,14 +4105,14 @@ Checking test 140 control_p8_atmlnd_sbs 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.080999 -The maximum resident set size (KB) = 1532916 +The total amount of wall time = 236.803414 +The maximum resident set size (KB) = 1541176 Test 140 control_p8_atmlnd_sbs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_atmwav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/control_atmwav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/control_atmwav Checking test 141 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4156,14 +4156,14 @@ Checking test 141 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -The total amount of wall time = 90.437097 -The maximum resident set size (KB) = 542224 +The total amount of wall time = 90.463191 +The maximum resident set size (KB) = 539492 Test 141 control_atmwav PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/atmaero_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/atmaero_control_p8 Checking test 142 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4207,14 +4207,14 @@ Checking test 142 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 243.330706 -The maximum resident set size (KB) = 2813956 +The total amount of wall time = 242.918976 +The maximum resident set size (KB) = 2813600 Test 142 atmaero_control_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/atmaero_control_p8_rad +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/atmaero_control_p8_rad Checking test 143 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4258,14 +4258,14 @@ Checking test 143 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 283.059567 -The maximum resident set size (KB) = 2876552 +The total amount of wall time = 281.489083 +The maximum resident set size (KB) = 2876092 Test 143 atmaero_control_p8_rad PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/atmaero_control_p8_rad_micro +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/atmaero_control_p8_rad_micro Checking test 144 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4309,14 +4309,14 @@ Checking test 144 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 287.378544 -The maximum resident set size (KB) = 2881988 +The total amount of wall time = 287.767000 +The maximum resident set size (KB) = 2885548 Test 144 atmaero_control_p8_rad_micro PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/regional_atmaq +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/regional_atmaq Checking test 145 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4332,14 +4332,14 @@ Checking test 145 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 673.139923 -The maximum resident set size (KB) = 1406416 +The total amount of wall time = 670.313601 +The maximum resident set size (KB) = 1402672 Test 145 regional_atmaq PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/regional_atmaq_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/regional_atmaq_debug Checking test 146 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4353,14 +4353,14 @@ Checking test 146 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1439.699791 -The maximum resident set size (KB) = 1437864 +The total amount of wall time = 1459.273972 +The maximum resident set size (KB) = 1436948 Test 146 regional_atmaq_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_117743/regional_atmaq_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/regional_atmaq_faster Checking test 147 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4376,12 +4376,12 @@ Checking test 147 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 650.428329 -The maximum resident set size (KB) = 1402972 +The total amount of wall time = 653.432032 +The maximum resident set size (KB) = 1398660 Test 147 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Tue Mar 14 13:54:19 UTC 2023 -Elapsed time: 01h:34m:56s. Have a nice day! +Wed Mar 15 15:23:15 UTC 2023 +Elapsed time: 01h:26m:35s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index c617f3546a3..27576dae605 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,21 +1,21 @@ -Mon Mar 13 19:38:29 MDT 2023 +Wed Mar 15 07:49:32 MDT 2023 Start Regression test -Compile 001 elapsed time 374 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 394 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 850 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 192 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 364 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 1070 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 851 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 859 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 657 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 568 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 358 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 012 elapsed time 296 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 001 elapsed time 382 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 399 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 864 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 198 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 365 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 1084 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 860 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 863 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 632 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 572 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 370 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 012 elapsed time 306 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/control_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/control_c48 +working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/control_c48 Checking test 001 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -54,14 +54,14 @@ Checking test 001 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 820.946066 -0:The maximum resident set size (KB) = 675624 +0:The total amount of wall time = 821.314370 +0:The maximum resident set size (KB) = 675620 Test 001 control_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/control_stochy +working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/control_stochy Checking test 002 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -72,14 +72,14 @@ Checking test 002 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 177.387397 -0:The maximum resident set size (KB) = 442588 +0:The total amount of wall time = 178.430118 +0:The maximum resident set size (KB) = 442652 Test 002 control_stochy PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/control_ras -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/control_ras +working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/control_ras Checking test 003 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -90,14 +90,14 @@ Checking test 003 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 294.519597 -0:The maximum resident set size (KB) = 451980 +0:The total amount of wall time = 293.752837 +0:The maximum resident set size (KB) = 451984 Test 003 control_ras PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/control_p8 +working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/control_p8 Checking test 004 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -144,14 +144,14 @@ Checking test 004 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 310.940100 -0:The maximum resident set size (KB) = 1226032 +0:The total amount of wall time = 308.582971 +0:The maximum resident set size (KB) = 1225588 Test 004 control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/rap_control +working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/rap_control Checking test 005 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -198,14 +198,14 @@ Checking test 005 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 717.415231 -0:The maximum resident set size (KB) = 791772 +0:The total amount of wall time = 718.007939 +0:The maximum resident set size (KB) = 791788 Test 005 rap_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/rap_decomp +working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/rap_decomp Checking test 006 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -252,14 +252,14 @@ Checking test 006 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 725.033689 -0:The maximum resident set size (KB) = 791136 +0:The total amount of wall time = 724.487320 +0:The maximum resident set size (KB) = 791060 Test 006 rap_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/rap_2threads +working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/rap_2threads Checking test 007 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -306,14 +306,14 @@ Checking test 007 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 663.569880 -0:The maximum resident set size (KB) = 863960 +0:The total amount of wall time = 666.364040 +0:The maximum resident set size (KB) = 863908 Test 007 rap_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/rap_restart +working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/rap_restart Checking test 008 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -352,14 +352,14 @@ Checking test 008 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 361.017526 -0:The maximum resident set size (KB) = 538636 +0:The total amount of wall time = 356.696848 +0:The maximum resident set size (KB) = 538668 Test 008 rap_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/rap_sfcdiff Checking test 009 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -406,14 +406,14 @@ Checking test 009 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 709.789069 -0:The maximum resident set size (KB) = 791628 +0:The total amount of wall time = 709.561906 +0:The maximum resident set size (KB) = 791640 Test 009 rap_sfcdiff PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/rap_sfcdiff_decomp +working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/rap_sfcdiff_decomp Checking test 010 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -460,14 +460,14 @@ Checking test 010 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 721.229007 -0:The maximum resident set size (KB) = 790648 +0:The total amount of wall time = 715.399002 +0:The maximum resident set size (KB) = 790996 Test 010 rap_sfcdiff_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/rap_sfcdiff_restart +working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/rap_sfcdiff_restart Checking test 011 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -506,14 +506,14 @@ Checking test 011 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 530.877895 -0:The maximum resident set size (KB) = 543580 +0:The total amount of wall time = 530.958807 +0:The maximum resident set size (KB) = 543956 Test 011 rap_sfcdiff_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/hrrr_control +working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/hrrr_control Checking test 012 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -560,14 +560,14 @@ Checking test 012 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 686.668683 -0:The maximum resident set size (KB) = 788760 +0:The total amount of wall time = 686.584236 +0:The maximum resident set size (KB) = 789172 Test 012 hrrr_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/hrrr_control_2threads +working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/hrrr_control_2threads Checking test 013 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -614,14 +614,14 @@ Checking test 013 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 621.502776 -0:The maximum resident set size (KB) = 858796 +0:The total amount of wall time = 621.847633 +0:The maximum resident set size (KB) = 858672 Test 013 hrrr_control_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/hrrr_control_decomp +working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/hrrr_control_decomp Checking test 014 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -668,14 +668,14 @@ Checking test 014 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 686.051834 -0:The maximum resident set size (KB) = 788256 +0:The total amount of wall time = 689.004760 +0:The maximum resident set size (KB) = 788616 Test 014 hrrr_control_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/hrrr_control_restart +working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/hrrr_control_restart Checking test 015 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -714,14 +714,14 @@ Checking test 015 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 513.742890 -0:The maximum resident set size (KB) = 539540 +0:The total amount of wall time = 513.667652 +0:The maximum resident set size (KB) = 539876 Test 015 hrrr_control_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_v1beta -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/rrfs_v1beta +working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/rrfs_v1beta Checking test 016 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -768,14 +768,14 @@ Checking test 016 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 696.807235 -0:The maximum resident set size (KB) = 788584 +0:The total amount of wall time = 693.577998 +0:The maximum resident set size (KB) = 788536 Test 016 rrfs_v1beta PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/rrfs_conus13km_hrrr_warm Checking test 017 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -784,14 +784,14 @@ Checking test 017 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 203.340368 -0:The maximum resident set size (KB) = 607100 +0:The total amount of wall time = 203.974755 +0:The maximum resident set size (KB) = 607428 Test 017 rrfs_conus13km_hrrr_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/rrfs_smoke_conus13km_hrrr_warm Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -800,14 +800,14 @@ Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 221.794154 -0:The maximum resident set size (KB) = 621276 +0:The total amount of wall time = 221.404375 +0:The maximum resident set size (KB) = 620840 Test 018 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/rrfs_conus13km_radar_tten_warm +working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/rrfs_conus13km_radar_tten_warm Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -816,14 +816,14 @@ Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 205.489465 -0:The maximum resident set size (KB) = 610580 +0:The total amount of wall time = 205.944211 +0:The maximum resident set size (KB) = 609500 Test 019 rrfs_conus13km_radar_tten_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/rrfs_conus13km_radar_tten_warm_2threads +working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/rrfs_conus13km_radar_tten_warm_2threads Checking test 020 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -832,208 +832,208 @@ Checking test 020 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 131.715591 -0:The maximum resident set size (KB) = 627920 +0:The total amount of wall time = 130.776267 +0:The maximum resident set size (KB) = 629248 Test 020 rrfs_conus13km_radar_tten_warm_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/control_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/control_diag_debug +working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/control_diag_debug Checking test 021 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 88.868725 -0:The maximum resident set size (KB) = 495396 +0:The total amount of wall time = 88.376343 +0:The maximum resident set size (KB) = 494776 Test 021 control_diag_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/regional_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/regional_debug +working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/regional_debug Checking test 022 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 483.865923 -0:The maximum resident set size (KB) = 569864 +0:The total amount of wall time = 483.258965 +0:The maximum resident set size (KB) = 569500 Test 022 regional_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/rap_control_debug +working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/rap_control_debug Checking test 023 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 152.640141 -0:The maximum resident set size (KB) = 808892 +0:The total amount of wall time = 153.144754 +0:The maximum resident set size (KB) = 808672 Test 023 rap_control_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/hrrr_control_debug +working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/hrrr_control_debug Checking test 024 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 149.427122 -0:The maximum resident set size (KB) = 804316 +0:The total amount of wall time = 149.157562 +0:The maximum resident set size (KB) = 804292 Test 024 hrrr_control_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/rap_diag_debug +working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/rap_diag_debug Checking test 025 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 160.022731 -0:The maximum resident set size (KB) = 891780 +0:The total amount of wall time = 161.141391 +0:The maximum resident set size (KB) = 891464 Test 025 rap_diag_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/rap_noah_sfcdiff_cires_ugwp_debug Checking test 026 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 241.674947 -0:The maximum resident set size (KB) = 807060 +0:The total amount of wall time = 241.865914 +0:The maximum resident set size (KB) = 806972 Test 026 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_progcld_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/rap_progcld_thompson_debug +working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/rap_progcld_thompson_debug Checking test 027 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 152.119296 -0:The maximum resident set size (KB) = 808532 +0:The total amount of wall time = 152.661427 +0:The maximum resident set size (KB) = 808548 Test 027 rap_progcld_thompson_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_v1beta_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/rrfs_v1beta_debug +working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/rrfs_v1beta_debug Checking test 028 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 151.420197 -0:The maximum resident set size (KB) = 803684 +0:The total amount of wall time = 150.198304 +0:The maximum resident set size (KB) = 803900 Test 028 rrfs_v1beta_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/control_ras_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/control_ras_debug +working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/control_ras_debug Checking test 029 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 86.217602 -0:The maximum resident set size (KB) = 449320 +0:The total amount of wall time = 85.592472 +0:The maximum resident set size (KB) = 449180 Test 029 control_ras_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/control_stochy_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/control_stochy_debug +working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/control_stochy_debug Checking test 030 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 94.042812 -0:The maximum resident set size (KB) = 441680 +0:The total amount of wall time = 93.483466 +0:The maximum resident set size (KB) = 441244 Test 030 control_stochy_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/control_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/control_debug_p8 +working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/control_debug_p8 Checking test 031 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 96.853299 -0:The maximum resident set size (KB) = 1224796 +0:The total amount of wall time = 96.188595 +0:The maximum resident set size (KB) = 1224508 Test 031 control_debug_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/rrfs_conus13km_hrrr_warm_debug +working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/rrfs_conus13km_hrrr_warm_debug Checking test 032 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 389.661795 -0:The maximum resident set size (KB) = 614332 +0:The total amount of wall time = 390.236534 +0:The maximum resident set size (KB) = 613744 Test 032 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_conus13km_radar_tten_warm_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/rrfs_conus13km_radar_tten_warm_debug +working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/rrfs_conus13km_radar_tten_warm_debug Checking test 033 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 390.912663 -0:The maximum resident set size (KB) = 617172 +0:The total amount of wall time = 390.979015 +0:The maximum resident set size (KB) = 616992 Test 033 rrfs_conus13km_radar_tten_warm_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/control_wam_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/control_wam_debug +working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/control_wam_debug Checking test 034 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 144.627368 -0:The maximum resident set size (KB) = 184752 +0:The total amount of wall time = 144.406566 +0:The maximum resident set size (KB) = 184504 Test 034 control_wam_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/rap_control_dyn32_phy32 Checking test 035 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1080,14 +1080,14 @@ Checking test 035 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 686.444686 -0:The maximum resident set size (KB) = 672672 +0:The total amount of wall time = 686.307843 +0:The maximum resident set size (KB) = 672988 Test 035 rap_control_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/hrrr_control_dyn32_phy32 Checking test 036 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1134,14 +1134,14 @@ Checking test 036 hrrr_control_dyn32_phy32 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 = 350.316580 -0:The maximum resident set size (KB) = 671064 +0:The total amount of wall time = 350.216229 +0:The maximum resident set size (KB) = 671480 Test 036 hrrr_control_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/rap_2threads_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/rap_2threads_dyn32_phy32 Checking test 037 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1188,14 +1188,14 @@ Checking test 037 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 626.487389 -0:The maximum resident set size (KB) = 718280 +0:The total amount of wall time = 625.511662 +0:The maximum resident set size (KB) = 718328 Test 037 rap_2threads_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/hrrr_control_2threads_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/hrrr_control_2threads_dyn32_phy32 Checking test 038 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1242,14 +1242,14 @@ Checking test 038 hrrr_control_2threads_dyn32_phy32 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 = 322.240518 -0:The maximum resident set size (KB) = 715496 +0:The total amount of wall time = 321.325041 +0:The maximum resident set size (KB) = 715312 Test 038 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/hrrr_control_decomp_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/hrrr_control_decomp_dyn32_phy32 Checking test 039 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1296,14 +1296,14 @@ Checking test 039 hrrr_control_decomp_dyn32_phy32 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 = 349.646348 -0:The maximum resident set size (KB) = 669892 +0:The total amount of wall time = 347.756021 +0:The maximum resident set size (KB) = 670312 Test 039 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/rap_restart_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/rap_restart_dyn32_phy32 Checking test 040 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1342,14 +1342,14 @@ Checking test 040 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 518.941015 -0:The maximum resident set size (KB) = 510880 +0:The total amount of wall time = 515.330253 +0:The maximum resident set size (KB) = 511300 Test 040 rap_restart_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/hrrr_control_restart_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/hrrr_control_restart_dyn32_phy32 Checking test 041 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1388,14 +1388,14 @@ Checking test 041 hrrr_control_restart_dyn32_phy32 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 = 178.100635 -0:The maximum resident set size (KB) = 506328 +0:The total amount of wall time = 177.304504 +0:The maximum resident set size (KB) = 506764 Test 041 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/rap_control_dyn64_phy32 +working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/rap_control_dyn64_phy32 Checking test 042 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1442,56 +1442,56 @@ Checking test 042 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 407.897030 -0:The maximum resident set size (KB) = 692388 +0:The total amount of wall time = 407.673326 +0:The maximum resident set size (KB) = 693972 Test 042 rap_control_dyn64_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/rap_control_debug_dyn32_phy32 Checking test 043 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 148.273894 -0:The maximum resident set size (KB) = 690540 +0:The total amount of wall time = 149.687305 +0:The maximum resident set size (KB) = 690576 Test 043 rap_control_debug_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/hrrr_control_debug_dyn32_phy32 Checking test 044 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 145.355167 -0:The maximum resident set size (KB) = 687384 +0:The total amount of wall time = 145.672985 +0:The maximum resident set size (KB) = 687660 Test 044 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/rap_control_dyn64_phy32_debug +working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/rap_control_dyn64_phy32_debug Checking test 045 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 153.279923 -0:The maximum resident set size (KB) = 711012 +0:The total amount of wall time = 153.320714 +0:The maximum resident set size (KB) = 711104 Test 045 rap_control_dyn64_phy32_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/cpld_control_p8 Checking test 046 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1556,14 +1556,14 @@ Checking test 046 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 490.820072 -0:The maximum resident set size (KB) = 3159560 +0:The total amount of wall time = 498.101433 +0:The maximum resident set size (KB) = 3162348 Test 046 cpld_control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/cpld_control_nowave_noaero_p8 +working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/cpld_control_nowave_noaero_p8 Checking test 047 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1625,14 +1625,14 @@ Checking test 047 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 245.832773 -0:The maximum resident set size (KB) = 1240252 +0:The total amount of wall time = 253.914111 +0:The maximum resident set size (KB) = 1244728 Test 047 cpld_control_nowave_noaero_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/cpld_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/cpld_debug_p8 +working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/cpld_debug_p8 Checking test 048 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1685,25 +1685,25 @@ Checking test 048 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 274.841904 -0:The maximum resident set size (KB) = 3179516 +0:The total amount of wall time = 275.880704 +0:The maximum resident set size (KB) = 3179104 Test 048 cpld_debug_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18858/datm_cdeps_control_cfsr +working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/datm_cdeps_control_cfsr Checking test 049 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 173.524113 -0:The maximum resident set size (KB) = 671468 +0:The total amount of wall time = 179.407326 +0:The maximum resident set size (KB) = 674424 Test 049 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Mon Mar 13 21:05:36 MDT 2023 -Elapsed time: 01h:27m:07s. Have a nice day! +Wed Mar 15 08:21:21 MDT 2023 +Elapsed time: 00h:31m:49s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 08474abfd56..21e1e4ba2a7 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,44 +1,45 @@ -Mon Mar 13 19:23:47 MDT 2023 +Wed Mar 15 07:49:05 MDT 2023 Start Regression test Test 008 compile FAIL -Compile 001 elapsed time 1441 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 1400 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 1366 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 451 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 390 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 1062 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 1079 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 1786 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 1036 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 986 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 919 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 804 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 1279 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 398 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 264 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 830 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 826 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 269 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 273 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 1103 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 021 elapsed time 340 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 1549 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 1104 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 024 elapsed time 439 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 212 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 430 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 112 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 944 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 979 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 889 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Test 008 compile FAIL + +Compile 001 elapsed time 1466 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1416 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 1381 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 464 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 406 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 1083 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 1111 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 1052 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 992 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 928 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 798 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 1273 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 406 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 260 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 821 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 832 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 273 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 272 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 1099 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 021 elapsed time 339 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 1553 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 1114 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 024 elapsed time 434 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 208 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 432 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 108 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 948 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 986 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 885 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile 031 elapsed time 879 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 303 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 1027 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 300 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 1030 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_mixedmode -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/cpld_control_p8_mixedmode +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -103,14 +104,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 323.413478 -0:The maximum resident set size (KB) = 2698488 +0:The total amount of wall time = 320.731365 +0:The maximum resident set size (KB) = 2698524 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_gfsv17 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/cpld_control_gfsv17 +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -174,14 +175,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 285.015714 -0:The maximum resident set size (KB) = 1437748 +0:The total amount of wall time = 284.304396 +0:The maximum resident set size (KB) = 1437796 Test 002 cpld_control_gfsv17 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -246,14 +247,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 326.006083 -0:The maximum resident set size (KB) = 2716376 +0:The total amount of wall time = 321.505361 +0:The maximum resident set size (KB) = 2716668 Test 003 cpld_control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/cpld_restart_p8 +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -306,14 +307,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 186.453892 -0:The maximum resident set size (KB) = 2577368 +0:The total amount of wall time = 188.234283 +0:The maximum resident set size (KB) = 2577856 Test 004 cpld_restart_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/cpld_2threads_p8 +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -366,14 +367,14 @@ Checking test 005 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 259.120487 -0:The maximum resident set size (KB) = 3175560 +0:The total amount of wall time = 259.819494 +0:The maximum resident set size (KB) = 3176440 Test 005 cpld_2threads_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/cpld_decomp_p8 +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/cpld_decomp_p8 Checking test 006 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -426,14 +427,14 @@ Checking test 006 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 327.459168 -0:The maximum resident set size (KB) = 2721288 +0:The total amount of wall time = 321.827971 +0:The maximum resident set size (KB) = 2721144 Test 006 cpld_decomp_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/cpld_mpi_p8 +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/cpld_mpi_p8 Checking test 007 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -486,14 +487,14 @@ Checking test 007 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 282.296836 -0:The maximum resident set size (KB) = 2682508 +0:The total amount of wall time = 275.224049 +0:The maximum resident set size (KB) = 2682568 Test 007 cpld_mpi_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_ciceC_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/cpld_control_ciceC_p8 +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/cpld_control_ciceC_p8 Checking test 008 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -558,14 +559,14 @@ Checking test 008 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 325.007806 -0:The maximum resident set size (KB) = 2716468 +0:The total amount of wall time = 325.398780 +0:The maximum resident set size (KB) = 2716464 Test 008 cpld_control_ciceC_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/cpld_control_c192_p8 +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/cpld_control_c192_p8 Checking test 009 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -618,14 +619,14 @@ Checking test 009 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -0:The total amount of wall time = 644.631142 -0:The maximum resident set size (KB) = 3348848 +0:The total amount of wall time = 739.932678 +0:The maximum resident set size (KB) = 3348640 Test 009 cpld_control_c192_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/cpld_restart_c192_p8 +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/cpld_restart_c192_p8 Checking test 010 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -678,14 +679,14 @@ Checking test 010 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -0:The total amount of wall time = 405.932397 -0:The maximum resident set size (KB) = 3271188 +0:The total amount of wall time = 420.164276 +0:The maximum resident set size (KB) = 3272200 Test 010 cpld_restart_c192_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/cpld_control_noaero_p8 +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/cpld_control_noaero_p8 Checking test 011 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -749,14 +750,14 @@ Checking test 011 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 298.629733 -0:The maximum resident set size (KB) = 1436356 +0:The total amount of wall time = 296.095433 +0:The maximum resident set size (KB) = 1436352 Test 011 cpld_control_noaero_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/cpld_control_nowave_noaero_p8 +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/cpld_control_nowave_noaero_p8 Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -818,14 +819,14 @@ Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 198.565955 -0:The maximum resident set size (KB) = 1452520 +0:The total amount of wall time = 200.336760 +0:The maximum resident set size (KB) = 1452444 Test 012 cpld_control_nowave_noaero_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/cpld_debug_p8 +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/cpld_debug_p8 Checking test 013 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -878,14 +879,14 @@ Checking test 013 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 472.461692 -0:The maximum resident set size (KB) = 2788056 +0:The total amount of wall time = 476.141307 +0:The maximum resident set size (KB) = 2788020 Test 013 cpld_debug_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_debug_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/cpld_debug_noaero_p8 +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/cpld_debug_noaero_p8 Checking test 014 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -937,14 +938,14 @@ Checking test 014 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 349.572824 -0:The maximum resident set size (KB) = 1460584 +0:The total amount of wall time = 350.076230 +0:The maximum resident set size (KB) = 1460512 Test 014 cpld_debug_noaero_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8_agrid -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/cpld_control_noaero_p8_agrid +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/cpld_control_noaero_p8_agrid Checking test 015 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1006,14 +1007,14 @@ Checking test 015 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 257.001902 +0:The total amount of wall time = 268.782690 0:The maximum resident set size (KB) = 1455896 Test 015 cpld_control_noaero_p8_agrid PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/cpld_control_c48 +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/cpld_control_c48 Checking test 016 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1063,14 +1064,14 @@ Checking test 016 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 606.312258 -0:The maximum resident set size (KB) = 2580332 +0:The total amount of wall time = 605.164509 +0:The maximum resident set size (KB) = 2580808 Test 016 cpld_control_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/cpld_warmstart_c48 +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/cpld_warmstart_c48 Checking test 017 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1120,14 +1121,14 @@ Checking test 017 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -0:The total amount of wall time = 163.816238 -0:The maximum resident set size (KB) = 2598812 +0:The total amount of wall time = 161.725124 +0:The maximum resident set size (KB) = 2598844 Test 017 cpld_warmstart_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/cpld_restart_c48 +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/cpld_restart_c48 Checking test 018 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1177,86 +1178,14 @@ Checking test 018 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -0:The total amount of wall time = 85.139819 -0:The maximum resident set size (KB) = 2016124 +0:The total amount of wall time = 85.242965 +0:The maximum resident set size (KB) = 2016020 Test 018 cpld_restart_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_faster -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/cpld_control_p8_faster -Checking test 019 cpld_control_p8_faster results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -0:The total amount of wall time = 308.744539 -0:The maximum resident set size (KB) = 2716468 - -Test 019 cpld_control_p8_faster PASS - - baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/control_CubedSphereGrid +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/control_CubedSphereGrid Checking test 020 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1283,28 +1212,28 @@ Checking test 020 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -0:The total amount of wall time = 142.342516 -0:The maximum resident set size (KB) = 456764 +0:The total amount of wall time = 146.916954 +0:The maximum resident set size (KB) = 456856 Test 020 control_CubedSphereGrid PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid_parallel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/control_CubedSphereGrid_parallel +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/control_CubedSphereGrid_parallel Checking test 021 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf024.nc .........OK -0:The total amount of wall time = 140.094368 -0:The maximum resident set size (KB) = 456856 +0:The total amount of wall time = 142.515842 +0:The maximum resident set size (KB) = 456808 Test 021 control_CubedSphereGrid_parallel PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_latlon -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/control_latlon +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/control_latlon Checking test 022 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1315,16 +1244,16 @@ Checking test 022 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 145.646633 -0:The maximum resident set size (KB) = 456836 +0:The total amount of wall time = 147.012076 +0:The maximum resident set size (KB) = 456856 Test 022 control_latlon PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/control_wrtGauss_netcdf_parallel +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/control_wrtGauss_netcdf_parallel Checking test 023 control_wrtGauss_netcdf_parallel results .... - Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK @@ -1333,14 +1262,14 @@ Checking test 023 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 149.511163 -0:The maximum resident set size (KB) = 456768 +0:The total amount of wall time = 152.812229 +0:The maximum resident set size (KB) = 456904 Test 023 control_wrtGauss_netcdf_parallel PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/control_c48 +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/control_c48 Checking test 024 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1379,14 +1308,14 @@ Checking test 024 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 442.694221 -0:The maximum resident set size (KB) = 628904 +0:The total amount of wall time = 443.410717 +0:The maximum resident set size (KB) = 628940 Test 024 control_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c192 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/control_c192 +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/control_c192 Checking test 025 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1397,14 +1326,14 @@ Checking test 025 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 589.815750 -0:The maximum resident set size (KB) = 557048 +0:The total amount of wall time = 593.545429 +0:The maximum resident set size (KB) = 557156 Test 025 control_c192 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/control_c384 +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/control_c384 Checking test 026 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1415,14 +1344,14 @@ Checking test 026 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 605.021485 -0:The maximum resident set size (KB) = 889068 +0:The total amount of wall time = 604.605636 +0:The maximum resident set size (KB) = 889152 Test 026 control_c384 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384gdas -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/control_c384gdas +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/control_c384gdas Checking test 027 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1465,14 +1394,14 @@ Checking test 027 control_c384gdas 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 = 527.559092 -0:The maximum resident set size (KB) = 1015220 +0:The total amount of wall time = 536.550849 +0:The maximum resident set size (KB) = 1015272 Test 027 control_c384gdas PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/control_stochy +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/control_stochy Checking test 028 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1483,28 +1412,28 @@ Checking test 028 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 96.942629 -0:The maximum resident set size (KB) = 455060 +0:The total amount of wall time = 100.570910 +0:The maximum resident set size (KB) = 455072 Test 028 control_stochy PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/control_stochy_restart +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/control_stochy_restart Checking test 029 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 52.424550 -0:The maximum resident set size (KB) = 225696 +0:The total amount of wall time = 52.264497 +0:The maximum resident set size (KB) = 225964 Test 029 control_stochy_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/control_lndp +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/control_lndp Checking test 030 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1515,14 +1444,14 @@ Checking test 030 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 89.878536 -0:The maximum resident set size (KB) = 456496 +0:The total amount of wall time = 88.190772 +0:The maximum resident set size (KB) = 456596 Test 030 control_lndp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr4 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/control_iovr4 +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/control_iovr4 Checking test 031 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1537,14 +1466,14 @@ Checking test 031 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 149.090483 -0:The maximum resident set size (KB) = 456820 +0:The total amount of wall time = 152.076127 +0:The maximum resident set size (KB) = 456848 Test 031 control_iovr4 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr5 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/control_iovr5 +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/control_iovr5 Checking test 032 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1559,14 +1488,14 @@ Checking test 032 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 147.250690 -0:The maximum resident set size (KB) = 456868 +0:The total amount of wall time = 149.608244 +0:The maximum resident set size (KB) = 456760 Test 032 control_iovr5 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/control_p8 +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/control_p8 Checking test 033 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1613,14 +1542,14 @@ Checking test 033 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 181.200275 -0:The maximum resident set size (KB) = 1422848 +0:The total amount of wall time = 182.041721 +0:The maximum resident set size (KB) = 1422896 Test 033 control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_lndp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/control_p8_lndp +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/control_p8_lndp Checking test 034 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1639,14 +1568,14 @@ Checking test 034 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -0:The total amount of wall time = 330.265447 -0:The maximum resident set size (KB) = 1423144 +0:The total amount of wall time = 336.732002 +0:The maximum resident set size (KB) = 1423168 Test 034 control_p8_lndp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/control_restart_p8 +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/control_restart_p8 Checking test 035 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1685,14 +1614,14 @@ Checking test 035 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 96.502176 -0:The maximum resident set size (KB) = 582368 +0:The total amount of wall time = 94.478696 +0:The maximum resident set size (KB) = 582468 Test 035 control_restart_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/control_decomp_p8 +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/control_decomp_p8 Checking test 036 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1735,14 +1664,14 @@ Checking test 036 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 186.647140 -0:The maximum resident set size (KB) = 1417072 +0:The total amount of wall time = 187.492495 +0:The maximum resident set size (KB) = 1417076 Test 036 control_decomp_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/control_2threads_p8 +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/control_2threads_p8 Checking test 037 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1785,14 +1714,14 @@ Checking test 037 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 177.748814 -0:The maximum resident set size (KB) = 1507456 +0:The total amount of wall time = 176.472504 +0:The maximum resident set size (KB) = 1508092 Test 037 control_2threads_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_rrtmgp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/control_p8_rrtmgp +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/control_p8_rrtmgp Checking test 038 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1839,14 +1768,14 @@ Checking test 038 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 253.615842 -0:The maximum resident set size (KB) = 1480708 +0:The total amount of wall time = 253.918953 +0:The maximum resident set size (KB) = 1480796 Test 038 control_p8_rrtmgp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/merra2_thompson -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/merra2_thompson +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/merra2_thompson Checking test 039 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1893,14 +1822,14 @@ Checking test 039 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 208.293121 -0:The maximum resident set size (KB) = 1429740 +0:The total amount of wall time = 207.012210 +0:The maximum resident set size (KB) = 1429784 Test 039 merra2_thompson PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/regional_control +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/regional_control Checking test 040 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1911,28 +1840,28 @@ Checking test 040 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 340.980681 -0:The maximum resident set size (KB) = 603104 +0:The total amount of wall time = 345.194045 +0:The maximum resident set size (KB) = 603080 Test 040 regional_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/regional_restart +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/regional_restart Checking test 041 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 178.925197 -0:The maximum resident set size (KB) = 593516 +0:The total amount of wall time = 175.581179 +0:The maximum resident set size (KB) = 593556 Test 041 regional_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/regional_decomp +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/regional_decomp Checking test 042 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1943,14 +1872,14 @@ Checking test 042 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 354.969760 -0:The maximum resident set size (KB) = 597184 +0:The total amount of wall time = 361.390501 +0:The maximum resident set size (KB) = 597288 Test 042 regional_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/regional_2threads +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/regional_2threads Checking test 043 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1961,14 +1890,14 @@ Checking test 043 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 208.546551 -0:The maximum resident set size (KB) = 609984 +0:The total amount of wall time = 213.828290 +0:The maximum resident set size (KB) = 610048 Test 043 regional_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_noquilt -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/regional_noquilt +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/regional_noquilt Checking test 044 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1976,28 +1905,28 @@ Checking test 044 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -0:The total amount of wall time = 361.220250 -0:The maximum resident set size (KB) = 597628 +0:The total amount of wall time = 366.294189 +0:The maximum resident set size (KB) = 597624 Test 044 regional_noquilt PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_netcdf_parallel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/regional_netcdf_parallel +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/regional_netcdf_parallel Checking test 045 regional_netcdf_parallel results .... - Comparing dynf000.nc .........OK + Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK + Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf006.nc ............ALT CHECK......OK -0:The total amount of wall time = 339.089472 -0:The maximum resident set size (KB) = 595024 +0:The total amount of wall time = 341.759382 +0:The maximum resident set size (KB) = 595136 Test 045 regional_netcdf_parallel PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/regional_2dwrtdecomp +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/regional_2dwrtdecomp Checking test 046 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2008,14 +1937,14 @@ Checking test 046 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 337.684245 -0:The maximum resident set size (KB) = 603208 +0:The total amount of wall time = 342.421596 +0:The maximum resident set size (KB) = 603252 Test 046 regional_2dwrtdecomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/fv3_regional_wofs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/regional_wofs +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/regional_wofs Checking test 047 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2026,14 +1955,14 @@ Checking test 047 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 423.639149 -0:The maximum resident set size (KB) = 274560 +0:The total amount of wall time = 426.527958 +0:The maximum resident set size (KB) = 274688 Test 047 regional_wofs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/rap_control +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/rap_control Checking test 048 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2080,14 +2009,14 @@ Checking test 048 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 476.952232 -0:The maximum resident set size (KB) = 826104 +0:The total amount of wall time = 476.952440 +0:The maximum resident set size (KB) = 826080 Test 048 rap_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/regional_spp_sppt_shum_skeb +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/regional_spp_sppt_shum_skeb Checking test 049 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2098,14 +2027,14 @@ Checking test 049 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 324.223359 -0:The maximum resident set size (KB) = 949212 +0:The total amount of wall time = 318.449596 +0:The maximum resident set size (KB) = 949296 Test 049 regional_spp_sppt_shum_skeb PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/rap_decomp +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/rap_decomp Checking test 050 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2152,14 +2081,14 @@ Checking test 050 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 510.224400 -0:The maximum resident set size (KB) = 823496 +0:The total amount of wall time = 510.119726 +0:The maximum resident set size (KB) = 823704 Test 050 rap_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/rap_2threads +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/rap_2threads Checking test 051 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2206,14 +2135,14 @@ Checking test 051 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 464.642877 -0:The maximum resident set size (KB) = 892804 +0:The total amount of wall time = 467.225380 +0:The maximum resident set size (KB) = 894768 Test 051 rap_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/rap_restart +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/rap_restart Checking test 052 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2252,14 +2181,14 @@ Checking test 052 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 238.905188 -0:The maximum resident set size (KB) = 572712 +0:The total amount of wall time = 242.085286 +0:The maximum resident set size (KB) = 572764 Test 052 rap_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/rap_sfcdiff Checking test 053 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2306,14 +2235,14 @@ Checking test 053 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 475.394052 -0:The maximum resident set size (KB) = 826440 +0:The total amount of wall time = 460.263022 +0:The maximum resident set size (KB) = 826556 Test 053 rap_sfcdiff PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/rap_sfcdiff_decomp +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/rap_sfcdiff_decomp Checking test 054 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2360,14 +2289,14 @@ Checking test 054 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 502.166458 -0:The maximum resident set size (KB) = 825472 +0:The total amount of wall time = 497.791794 +0:The maximum resident set size (KB) = 825444 Test 054 rap_sfcdiff_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/rap_sfcdiff_restart +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/rap_sfcdiff_restart Checking test 055 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2406,14 +2335,14 @@ Checking test 055 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 353.842641 -0:The maximum resident set size (KB) = 570236 +0:The total amount of wall time = 354.931057 +0:The maximum resident set size (KB) = 570056 Test 055 rap_sfcdiff_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/hrrr_control +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/hrrr_control Checking test 056 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2460,14 +2389,14 @@ Checking test 056 hrrr_control results .... Comparing 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.010339 -0:The maximum resident set size (KB) = 821252 +0:The total amount of wall time = 445.475849 +0:The maximum resident set size (KB) = 821400 Test 056 hrrr_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/hrrr_control_decomp +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/hrrr_control_decomp Checking test 057 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2514,14 +2443,14 @@ Checking test 057 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 486.199370 -0:The maximum resident set size (KB) = 820440 +0:The total amount of wall time = 475.740740 +0:The maximum resident set size (KB) = 820360 Test 057 hrrr_control_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/hrrr_control_2threads +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/hrrr_control_2threads Checking test 058 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2568,14 +2497,14 @@ Checking test 058 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 432.658913 -0:The maximum resident set size (KB) = 887924 +0:The total amount of wall time = 432.582646 +0:The maximum resident set size (KB) = 887784 Test 058 hrrr_control_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/hrrr_control_restart +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/hrrr_control_restart Checking test 059 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2614,14 +2543,14 @@ Checking test 059 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 341.985969 -0:The maximum resident set size (KB) = 568756 +0:The total amount of wall time = 341.558068 +0:The maximum resident set size (KB) = 568752 Test 059 hrrr_control_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/rrfs_v1beta +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/rrfs_v1beta Checking test 060 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2668,14 +2597,14 @@ Checking test 060 rrfs_v1beta results .... Comparing 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.051703 -0:The maximum resident set size (KB) = 820004 +0:The total amount of wall time = 458.786415 +0:The maximum resident set size (KB) = 820024 Test 060 rrfs_v1beta PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/rrfs_v1nssl +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/rrfs_v1nssl Checking test 061 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2690,14 +2619,14 @@ Checking test 061 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 571.431349 -0:The maximum resident set size (KB) = 508188 +0:The total amount of wall time = 564.950662 +0:The maximum resident set size (KB) = 508340 Test 061 rrfs_v1nssl PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/rrfs_v1nssl_nohailnoccn +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/rrfs_v1nssl_nohailnoccn Checking test 062 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2712,14 +2641,14 @@ Checking test 062 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 549.802828 +0:The total amount of wall time = 555.694877 0:The maximum resident set size (KB) = 501368 Test 062 rrfs_v1nssl_nohailnoccn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/rrfs_conus13km_hrrr_warm Checking test 063 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2728,14 +2657,14 @@ Checking test 063 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 127.011710 -0:The maximum resident set size (KB) = 638940 +0:The total amount of wall time = 128.657212 +0:The maximum resident set size (KB) = 638976 Test 063 rrfs_conus13km_hrrr_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/rrfs_smoke_conus13km_hrrr_warm Checking test 064 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2744,14 +2673,14 @@ Checking test 064 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 144.151637 -0:The maximum resident set size (KB) = 653020 +0:The total amount of wall time = 143.513408 +0:The maximum resident set size (KB) = 652928 Test 064 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/rrfs_conus13km_radar_tten_warm +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/rrfs_conus13km_radar_tten_warm Checking test 065 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2760,14 +2689,14 @@ Checking test 065 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 128.706220 -0:The maximum resident set size (KB) = 641252 +0:The total amount of wall time = 129.708785 +0:The maximum resident set size (KB) = 641076 Test 065 rrfs_conus13km_radar_tten_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/rrfs_conus13km_hrrr_warm_2threads +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/rrfs_conus13km_hrrr_warm_2threads Checking test 066 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2776,14 +2705,14 @@ Checking test 066 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 84.721402 -0:The maximum resident set size (KB) = 655548 +0:The total amount of wall time = 82.668666 +0:The maximum resident set size (KB) = 656612 Test 066 rrfs_conus13km_hrrr_warm_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/rrfs_conus13km_radar_tten_warm_2threads +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/rrfs_conus13km_radar_tten_warm_2threads Checking test 067 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2792,14 +2721,14 @@ Checking test 067 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 81.259586 -0:The maximum resident set size (KB) = 658444 +0:The total amount of wall time = 84.664094 +0:The maximum resident set size (KB) = 658492 Test 067 rrfs_conus13km_radar_tten_warm_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/control_csawmg +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/control_csawmg Checking test 068 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2810,14 +2739,14 @@ Checking test 068 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 397.782300 -0:The maximum resident set size (KB) = 529056 +0:The total amount of wall time = 399.812563 +0:The maximum resident set size (KB) = 529016 Test 068 control_csawmg PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/control_csawmgt +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/control_csawmgt Checking test 069 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2828,14 +2757,14 @@ Checking test 069 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 392.492675 -0:The maximum resident set size (KB) = 529044 +0:The total amount of wall time = 394.579843 +0:The maximum resident set size (KB) = 529052 Test 069 control_csawmgt PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/control_ras +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/control_ras Checking test 070 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2846,26 +2775,26 @@ Checking test 070 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 204.018867 -0:The maximum resident set size (KB) = 487756 +0:The total amount of wall time = 204.498887 +0:The maximum resident set size (KB) = 487656 Test 070 control_ras PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/control_wam +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/control_wam Checking test 071 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -0:The total amount of wall time = 129.315951 -0:The maximum resident set size (KB) = 205676 +0:The total amount of wall time = 129.167878 +0:The maximum resident set size (KB) = 205684 Test 071 control_wam PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_faster -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/control_p8_faster +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/control_p8_faster Checking test 072 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2912,14 +2841,14 @@ Checking test 072 control_p8_faster results .... Comparing 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.031076 -0:The maximum resident set size (KB) = 1422792 +0:The total amount of wall time = 171.512479 +0:The maximum resident set size (KB) = 1422708 Test 072 control_p8_faster PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control_faster -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/regional_control_faster +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/regional_control_faster Checking test 073 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2930,42 +2859,42 @@ Checking test 073 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 327.012479 -0:The maximum resident set size (KB) = 603024 +0:The total amount of wall time = 325.143210 +0:The maximum resident set size (KB) = 602948 Test 073 regional_control_faster PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/rrfs_conus13km_hrrr_warm_debug +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/rrfs_conus13km_hrrr_warm_debug Checking test 074 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 764.661320 -0:The maximum resident set size (KB) = 672184 +0:The total amount of wall time = 764.328312 +0:The maximum resident set size (KB) = 672056 Test 074 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/rrfs_conus13km_radar_tten_warm_debug +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/rrfs_conus13km_radar_tten_warm_debug Checking test 075 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 765.606303 -0:The maximum resident set size (KB) = 673892 +0:The total amount of wall time = 765.214393 +0:The maximum resident set size (KB) = 673812 Test 075 rrfs_conus13km_radar_tten_warm_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/control_CubedSphereGrid_debug +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/control_CubedSphereGrid_debug Checking test 076 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2992,334 +2921,334 @@ Checking test 076 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -0:The total amount of wall time = 174.610088 -0:The maximum resident set size (KB) = 621504 +0:The total amount of wall time = 174.142027 +0:The maximum resident set size (KB) = 621560 Test 076 control_CubedSphereGrid_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/control_wrtGauss_netcdf_parallel_debug +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/control_wrtGauss_netcdf_parallel_debug Checking test 077 control_wrtGauss_netcdf_parallel_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc .........OK + Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 164.582888 -0:The maximum resident set size (KB) = 621336 +0:The total amount of wall time = 164.400264 +0:The maximum resident set size (KB) = 621340 Test 077 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/control_stochy_debug +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/control_stochy_debug Checking test 078 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 183.060648 -0:The maximum resident set size (KB) = 625188 +0:The total amount of wall time = 183.187312 +0:The maximum resident set size (KB) = 624968 Test 078 control_stochy_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/control_lndp_debug +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/control_lndp_debug Checking test 079 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 164.871902 +0:The total amount of wall time = 165.004726 0:The maximum resident set size (KB) = 627220 Test 079 control_lndp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/control_csawmg_debug +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/control_csawmg_debug Checking test 080 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 257.636248 -0:The maximum resident set size (KB) = 671380 +0:The total amount of wall time = 258.481074 +0:The maximum resident set size (KB) = 671340 Test 080 control_csawmg_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/control_csawmgt_debug +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/control_csawmgt_debug Checking test 081 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 252.814032 -0:The maximum resident set size (KB) = 671092 +0:The total amount of wall time = 254.432562 +0:The maximum resident set size (KB) = 671132 Test 081 control_csawmgt_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/control_ras_debug +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/control_ras_debug Checking test 082 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 166.755510 -0:The maximum resident set size (KB) = 632624 +0:The total amount of wall time = 168.060590 +0:The maximum resident set size (KB) = 632424 Test 082 control_ras_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/control_diag_debug +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/control_diag_debug Checking test 083 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 169.199318 -0:The maximum resident set size (KB) = 678052 +0:The total amount of wall time = 169.146876 +0:The maximum resident set size (KB) = 677936 Test 083 control_diag_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/control_debug_p8 +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/control_debug_p8 Checking test 084 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 184.753718 -0:The maximum resident set size (KB) = 1444204 +0:The total amount of wall time = 186.416011 +0:The maximum resident set size (KB) = 1444172 Test 084 control_debug_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/regional_debug +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/regional_debug Checking test 085 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 1036.831500 -0:The maximum resident set size (KB) = 629012 +0:The total amount of wall time = 1037.451525 +0:The maximum resident set size (KB) = 628992 Test 085 regional_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/rap_control_debug +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/rap_control_debug Checking test 086 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 295.753529 -0:The maximum resident set size (KB) = 989712 +0:The total amount of wall time = 296.423413 +0:The maximum resident set size (KB) = 989904 Test 086 rap_control_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/hrrr_control_debug +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/hrrr_control_debug Checking test 087 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 291.460689 -0:The maximum resident set size (KB) = 988852 +0:The total amount of wall time = 290.997326 +0:The maximum resident set size (KB) = 988952 Test 087 hrrr_control_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/rap_unified_drag_suite_debug +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/rap_unified_drag_suite_debug Checking test 088 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 295.634375 -0:The maximum resident set size (KB) = 989892 +0:The total amount of wall time = 296.123924 +0:The maximum resident set size (KB) = 989932 Test 088 rap_unified_drag_suite_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/rap_diag_debug +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/rap_diag_debug Checking test 089 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 309.422372 -0:The maximum resident set size (KB) = 1074392 +0:The total amount of wall time = 311.089225 +0:The maximum resident set size (KB) = 1074084 Test 089 rap_diag_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/rap_cires_ugwp_debug +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/rap_cires_ugwp_debug Checking test 090 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 301.105878 -0:The maximum resident set size (KB) = 988592 +0:The total amount of wall time = 301.338762 +0:The maximum resident set size (KB) = 988608 Test 090 rap_cires_ugwp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/rap_unified_ugwp_debug +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/rap_unified_ugwp_debug Checking test 091 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 301.888386 -0:The maximum resident set size (KB) = 991940 +0:The total amount of wall time = 300.368636 +0:The maximum resident set size (KB) = 991936 Test 091 rap_unified_ugwp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_lndp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/rap_lndp_debug +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/rap_lndp_debug Checking test 092 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 297.897647 -0:The maximum resident set size (KB) = 990612 +0:The total amount of wall time = 297.721275 +0:The maximum resident set size (KB) = 990524 Test 092 rap_lndp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_flake_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/rap_flake_debug +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/rap_flake_debug Checking test 093 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 295.669727 -0:The maximum resident set size (KB) = 990024 +0:The total amount of wall time = 295.915337 +0:The maximum resident set size (KB) = 990012 Test 093 rap_flake_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_progcld_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/rap_progcld_thompson_debug +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/rap_progcld_thompson_debug Checking test 094 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 295.909969 -0:The maximum resident set size (KB) = 989832 +0:The total amount of wall time = 294.767232 +0:The maximum resident set size (KB) = 989868 Test 094 rap_progcld_thompson_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/rap_noah_debug +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/rap_noah_debug Checking test 095 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 289.364120 -0:The maximum resident set size (KB) = 988500 +0:The total amount of wall time = 288.732595 +0:The maximum resident set size (KB) = 988516 Test 095 rap_noah_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/rap_sfcdiff_debug +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/rap_sfcdiff_debug Checking test 096 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 295.874801 -0:The maximum resident set size (KB) = 991288 +0:The total amount of wall time = 296.606840 +0:The maximum resident set size (KB) = 991228 Test 096 rap_sfcdiff_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/rap_noah_sfcdiff_cires_ugwp_debug Checking test 097 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 479.711415 -0:The maximum resident set size (KB) = 989556 +0:The total amount of wall time = 478.683063 +0:The maximum resident set size (KB) = 989316 Test 097 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/rrfs_v1beta_debug +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/rrfs_v1beta_debug Checking test 098 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 297.998381 -0:The maximum resident set size (KB) = 986428 +0:The total amount of wall time = 292.742639 +0:The maximum resident set size (KB) = 986404 Test 098 rrfs_v1beta_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/control_wam_debug +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/control_wam_debug Checking test 099 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 297.266894 -0:The maximum resident set size (KB) = 239048 +0:The total amount of wall time = 296.510905 +0:The maximum resident set size (KB) = 239184 Test 099 control_wam_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 100 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3330,14 +3259,14 @@ Checking test 100 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 302.241982 -0:The maximum resident set size (KB) = 848396 +0:The total amount of wall time = 306.255127 +0:The maximum resident set size (KB) = 848232 Test 100 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/rap_control_dyn32_phy32 Checking test 101 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3384,14 +3313,14 @@ Checking test 101 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 385.840183 -0:The maximum resident set size (KB) = 707124 +0:The total amount of wall time = 386.010257 +0:The maximum resident set size (KB) = 707140 Test 101 rap_control_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/hrrr_control_dyn32_phy32 Checking test 102 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3438,14 +3367,14 @@ Checking test 102 hrrr_control_dyn32_phy32 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 = 204.534101 -0:The maximum resident set size (KB) = 705408 +0:The total amount of wall time = 204.700327 +0:The maximum resident set size (KB) = 705588 Test 102 hrrr_control_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/rap_2threads_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/rap_2threads_dyn32_phy32 Checking test 103 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3492,14 +3421,14 @@ Checking test 103 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 375.400725 -0:The maximum resident set size (KB) = 757180 +0:The total amount of wall time = 374.886616 +0:The maximum resident set size (KB) = 757168 Test 103 rap_2threads_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/hrrr_control_2threads_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/hrrr_control_2threads_dyn32_phy32 Checking test 104 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3546,14 +3475,14 @@ Checking test 104 hrrr_control_2threads_dyn32_phy32 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 = 202.002673 -0:The maximum resident set size (KB) = 758464 +0:The total amount of wall time = 205.783009 +0:The maximum resident set size (KB) = 758392 Test 104 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/hrrr_control_decomp_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/hrrr_control_decomp_dyn32_phy32 Checking test 105 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3600,14 +3529,14 @@ Checking test 105 hrrr_control_decomp_dyn32_phy32 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 = 216.608546 -0:The maximum resident set size (KB) = 703928 +0:The total amount of wall time = 219.874684 +0:The maximum resident set size (KB) = 703964 Test 105 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/rap_restart_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/rap_restart_dyn32_phy32 Checking test 106 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3646,14 +3575,14 @@ Checking test 106 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 294.396803 -0:The maximum resident set size (KB) = 544720 +0:The total amount of wall time = 291.799087 +0:The maximum resident set size (KB) = 544636 Test 106 rap_restart_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/hrrr_control_restart_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/hrrr_control_restart_dyn32_phy32 Checking test 107 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3692,14 +3621,14 @@ Checking test 107 hrrr_control_restart_dyn32_phy32 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 = 105.385998 -0:The maximum resident set size (KB) = 536524 +0:The total amount of wall time = 104.977975 +0:The maximum resident set size (KB) = 536812 Test 107 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/rap_control_dyn64_phy32 +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/rap_control_dyn64_phy32 Checking test 108 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3746,81 +3675,81 @@ Checking test 108 rap_control_dyn64_phy32 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 = 268.118341 -0:The maximum resident set size (KB) = 726704 +0:The total amount of wall time = 270.723539 +0:The maximum resident set size (KB) = 726860 Test 108 rap_control_dyn64_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/rap_control_debug_dyn32_phy32 Checking test 109 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 291.562697 -0:The maximum resident set size (KB) = 876308 +0:The total amount of wall time = 291.954985 +0:The maximum resident set size (KB) = 876420 Test 109 rap_control_debug_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/hrrr_control_debug_dyn32_phy32 Checking test 110 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 286.252370 -0:The maximum resident set size (KB) = 874552 +0:The total amount of wall time = 287.848123 +0:The maximum resident set size (KB) = 874360 Test 110 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/rap_control_dyn64_phy32_debug +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/rap_control_dyn64_phy32_debug Checking test 111 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 295.315381 -0:The maximum resident set size (KB) = 893420 +0:The total amount of wall time = 295.275394 +0:The maximum resident set size (KB) = 893548 Test 111 rap_control_dyn64_phy32_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/hafs_regional_atm +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/hafs_regional_atm Checking test 112 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -0:The total amount of wall time = 265.754985 -0:The maximum resident set size (KB) = 740100 +0:The total amount of wall time = 265.192895 +0:The maximum resident set size (KB) = 739612 Test 112 hafs_regional_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/hafs_regional_atm_thompson_gfdlsf +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/hafs_regional_atm_thompson_gfdlsf Checking test 113 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -0:The total amount of wall time = 287.196142 -0:The maximum resident set size (KB) = 1091556 +0:The total amount of wall time = 291.696411 +0:The maximum resident set size (KB) = 1091588 Test 113 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/hafs_regional_atm_ocn +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/hafs_regional_atm_ocn Checking test 114 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3829,14 +3758,14 @@ Checking test 114 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 453.171608 -0:The maximum resident set size (KB) = 738532 +0:The total amount of wall time = 455.598642 +0:The maximum resident set size (KB) = 738408 Test 114 hafs_regional_atm_ocn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_wav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/hafs_regional_atm_wav +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/hafs_regional_atm_wav Checking test 115 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3845,14 +3774,14 @@ Checking test 115 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 1080.167043 -0:The maximum resident set size (KB) = 766764 +0:The total amount of wall time = 1070.278429 +0:The maximum resident set size (KB) = 766504 Test 115 hafs_regional_atm_wav PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn_wav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/hafs_regional_atm_ocn_wav +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/hafs_regional_atm_ocn_wav Checking test 116 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3863,28 +3792,28 @@ Checking test 116 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 1114.581313 -0:The maximum resident set size (KB) = 790016 +0:The total amount of wall time = 1066.022090 +0:The maximum resident set size (KB) = 789948 Test 116 hafs_regional_atm_ocn_wav PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/hafs_regional_1nest_atm +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/hafs_regional_1nest_atm Checking test 117 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 379.324316 -0:The maximum resident set size (KB) = 293388 +0:The total amount of wall time = 378.193817 +0:The maximum resident set size (KB) = 293348 Test 117 hafs_regional_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/hafs_regional_telescopic_2nests_atm +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/hafs_regional_telescopic_2nests_atm Checking test 118 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3893,28 +3822,28 @@ Checking test 118 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -0:The total amount of wall time = 428.413189 -0:The maximum resident set size (KB) = 309084 +0:The total amount of wall time = 427.373835 +0:The maximum resident set size (KB) = 309100 Test 118 hafs_regional_telescopic_2nests_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/hafs_global_1nest_atm +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/hafs_global_1nest_atm Checking test 119 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 170.953834 -0:The maximum resident set size (KB) = 206532 +0:The total amount of wall time = 170.434692 +0:The maximum resident set size (KB) = 206492 Test 119 hafs_global_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_multiple_4nests_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/hafs_global_multiple_4nests_atm +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/hafs_global_multiple_4nests_atm Checking test 120 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3932,14 +3861,14 @@ Checking test 120 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -0:The total amount of wall time = 489.946164 -0:The maximum resident set size (KB) = 292392 +0:The total amount of wall time = 488.895832 +0:The maximum resident set size (KB) = 292256 Test 120 hafs_global_multiple_4nests_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/hafs_regional_specified_moving_1nest_atm +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/hafs_regional_specified_moving_1nest_atm Checking test 121 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3948,28 +3877,28 @@ Checking test 121 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -0:The total amount of wall time = 241.380736 -0:The maximum resident set size (KB) = 306564 +0:The total amount of wall time = 241.146873 +0:The maximum resident set size (KB) = 306808 Test 121 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/hafs_regional_storm_following_1nest_atm +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/hafs_regional_storm_following_1nest_atm Checking test 122 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 228.449388 -0:The maximum resident set size (KB) = 306744 +0:The total amount of wall time = 228.013688 +0:The maximum resident set size (KB) = 306668 Test 122 hafs_regional_storm_following_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/hafs_regional_storm_following_1nest_atm_ocn +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/hafs_regional_storm_following_1nest_atm_ocn Checking test 123 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3978,42 +3907,42 @@ Checking test 123 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -0:The total amount of wall time = 279.067596 -0:The maximum resident set size (KB) = 353664 +0:The total amount of wall time = 279.262187 +0:The maximum resident set size (KB) = 353416 Test 123 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_storm_following_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/hafs_global_storm_following_1nest_atm +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/hafs_global_storm_following_1nest_atm Checking test 124 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 66.094372 -0:The maximum resident set size (KB) = 221724 +0:The total amount of wall time = 68.510222 +0:The maximum resident set size (KB) = 221840 Test 124 hafs_global_storm_following_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 125 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 821.211719 -0:The maximum resident set size (KB) = 386884 +0:The total amount of wall time = 823.089499 +0:The maximum resident set size (KB) = 386936 Test 125 hafs_regional_storm_following_1nest_atm_ocn_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 126 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4024,14 +3953,14 @@ Checking test 126 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -0:The total amount of wall time = 766.749296 -0:The maximum resident set size (KB) = 416968 +0:The total amount of wall time = 760.581088 +0:The maximum resident set size (KB) = 416924 Test 126 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_docn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/hafs_regional_docn +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/hafs_regional_docn Checking test 127 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4039,14 +3968,14 @@ Checking test 127 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 391.586507 -0:The maximum resident set size (KB) = 754188 +0:The total amount of wall time = 403.307213 +0:The maximum resident set size (KB) = 754296 Test 127 hafs_regional_docn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_docn_oisst -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/hafs_regional_docn_oisst +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/hafs_regional_docn_oisst Checking test 128 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4054,131 +3983,131 @@ Checking test 128 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 422.919867 -0:The maximum resident set size (KB) = 733812 +0:The total amount of wall time = 392.031309 +0:The maximum resident set size (KB) = 734084 Test 128 hafs_regional_docn_oisst PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_datm_cdeps -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/hafs_regional_datm_cdeps +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/hafs_regional_datm_cdeps Checking test 129 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -0:The total amount of wall time = 1283.737353 -0:The maximum resident set size (KB) = 887896 +0:The total amount of wall time = 1282.647263 +0:The maximum resident set size (KB) = 887876 Test 129 hafs_regional_datm_cdeps PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/datm_cdeps_control_cfsr +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/datm_cdeps_control_cfsr Checking test 130 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 169.298449 -0:The maximum resident set size (KB) = 716748 +0:The total amount of wall time = 170.006030 +0:The maximum resident set size (KB) = 716688 Test 130 datm_cdeps_control_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/datm_cdeps_restart_cfsr +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/datm_cdeps_restart_cfsr Checking test 131 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 100.681794 -0:The maximum resident set size (KB) = 715872 +0:The total amount of wall time = 100.805307 +0:The maximum resident set size (KB) = 716072 Test 131 datm_cdeps_restart_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/datm_cdeps_control_gefs +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/datm_cdeps_control_gefs Checking test 132 datm_cdeps_control_gefs 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 = 161.347413 -0:The maximum resident set size (KB) = 607484 +0:The total amount of wall time = 162.991626 +0:The maximum resident set size (KB) = 607452 Test 132 datm_cdeps_control_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_iau_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/datm_cdeps_iau_gefs +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/datm_cdeps_iau_gefs Checking test 133 datm_cdeps_iau_gefs 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 = 165.347102 -0:The maximum resident set size (KB) = 607576 +0:The total amount of wall time = 159.535912 +0:The maximum resident set size (KB) = 607500 Test 133 datm_cdeps_iau_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_stochy_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/datm_cdeps_stochy_gefs +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/datm_cdeps_stochy_gefs Checking test 134 datm_cdeps_stochy_gefs 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 = 163.686724 -0:The maximum resident set size (KB) = 607472 +0:The total amount of wall time = 163.446045 +0:The maximum resident set size (KB) = 607480 Test 134 datm_cdeps_stochy_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_ciceC_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/datm_cdeps_ciceC_cfsr +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/datm_cdeps_ciceC_cfsr Checking test 135 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 169.451489 -0:The maximum resident set size (KB) = 727872 +0:The total amount of wall time = 168.388279 +0:The maximum resident set size (KB) = 716660 Test 135 datm_cdeps_ciceC_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_bulk_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/datm_cdeps_bulk_cfsr +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/datm_cdeps_bulk_cfsr Checking test 136 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 168.915683 -0:The maximum resident set size (KB) = 716716 +0:The total amount of wall time = 168.518108 +0:The maximum resident set size (KB) = 716708 Test 136 datm_cdeps_bulk_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_bulk_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/datm_cdeps_bulk_gefs +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/datm_cdeps_bulk_gefs Checking test 137 datm_cdeps_bulk_gefs 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 = 162.248383 -0:The maximum resident set size (KB) = 607528 +0:The total amount of wall time = 157.186410 +0:The maximum resident set size (KB) = 607464 Test 137 datm_cdeps_bulk_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_mx025_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/datm_cdeps_mx025_cfsr +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/datm_cdeps_mx025_cfsr Checking test 138 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4187,14 +4116,14 @@ Checking test 138 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 688.992849 -0:The maximum resident set size (KB) = 514380 +0:The total amount of wall time = 727.345386 +0:The maximum resident set size (KB) = 514360 Test 138 datm_cdeps_mx025_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_mx025_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/datm_cdeps_mx025_gefs +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/datm_cdeps_mx025_gefs Checking test 139 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4203,77 +4132,77 @@ Checking test 139 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 691.039193 -0:The maximum resident set size (KB) = 494784 +0:The total amount of wall time = 714.858232 +0:The maximum resident set size (KB) = 494864 Test 139 datm_cdeps_mx025_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/datm_cdeps_multiple_files_cfsr +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/datm_cdeps_multiple_files_cfsr Checking test 140 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 168.445482 -0:The maximum resident set size (KB) = 716736 +0:The total amount of wall time = 167.726050 +0:The maximum resident set size (KB) = 727660 Test 140 datm_cdeps_multiple_files_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/datm_cdeps_3072x1536_cfsr +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/datm_cdeps_3072x1536_cfsr Checking test 141 datm_cdeps_3072x1536_cfsr 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 = 258.511723 -0:The maximum resident set size (KB) = 1941128 +0:The total amount of wall time = 256.730699 +0:The maximum resident set size (KB) = 1940336 Test 141 datm_cdeps_3072x1536_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_gfs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/datm_cdeps_gfs +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/datm_cdeps_gfs Checking test 142 datm_cdeps_gfs 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 = 269.968304 -0:The maximum resident set size (KB) = 1940312 +0:The total amount of wall time = 268.690768 +0:The maximum resident set size (KB) = 1942020 Test 142 datm_cdeps_gfs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_debug_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/datm_cdeps_debug_cfsr +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/datm_cdeps_debug_cfsr Checking test 143 datm_cdeps_debug_cfsr results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -0:The total amount of wall time = 459.008280 -0:The maximum resident set size (KB) = 706744 +0:The total amount of wall time = 461.083249 +0:The maximum resident set size (KB) = 706644 Test 143 datm_cdeps_debug_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr_faster -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/datm_cdeps_control_cfsr_faster +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/datm_cdeps_control_cfsr_faster Checking test 144 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.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 = 168.046948 -0:The maximum resident set size (KB) = 716796 +0:The total amount of wall time = 168.389827 +0:The maximum resident set size (KB) = 716760 Test 144 datm_cdeps_control_cfsr_faster PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/datm_cdeps_lnd_gswp3 +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/datm_cdeps_lnd_gswp3 Checking test 145 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4282,14 +4211,14 @@ Checking test 145 datm_cdeps_lnd_gswp3 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 = 10.882367 -0:The maximum resident set size (KB) = 208188 +0:The total amount of wall time = 12.295407 +0:The maximum resident set size (KB) = 208228 Test 145 datm_cdeps_lnd_gswp3 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/datm_cdeps_lnd_gswp3_rst +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/datm_cdeps_lnd_gswp3_rst Checking test 146 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4298,14 +4227,14 @@ Checking test 146 datm_cdeps_lnd_gswp3_rst 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 = 15.562871 -0:The maximum resident set size (KB) = 208196 +0:The total amount of wall time = 15.332062 +0:The maximum resident set size (KB) = 208160 Test 146 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_atmlnd_sbs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/control_p8_atmlnd_sbs +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/control_p8_atmlnd_sbs Checking test 147 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4390,14 +4319,14 @@ Checking test 147 control_p8_atmlnd_sbs 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 = 237.231218 -0:The maximum resident set size (KB) = 1461976 +0:The total amount of wall time = 237.212873 +0:The maximum resident set size (KB) = 1462048 Test 147 control_p8_atmlnd_sbs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_atmwav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/control_atmwav +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/control_atmwav Checking test 148 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4441,14 +4370,14 @@ Checking test 148 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -0:The total amount of wall time = 99.879451 -0:The maximum resident set size (KB) = 474712 +0:The total amount of wall time = 98.889533 +0:The maximum resident set size (KB) = 474688 Test 148 control_atmwav PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/atmaero_control_p8 +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/atmaero_control_p8 Checking test 149 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4492,14 +4421,14 @@ Checking test 149 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 249.544332 -0:The maximum resident set size (KB) = 2703368 +0:The total amount of wall time = 249.299389 +0:The maximum resident set size (KB) = 2703344 Test 149 atmaero_control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/atmaero_control_p8_rad +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/atmaero_control_p8_rad Checking test 150 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4543,14 +4472,14 @@ Checking test 150 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 302.855886 -0:The maximum resident set size (KB) = 2757504 +0:The total amount of wall time = 302.635933 +0:The maximum resident set size (KB) = 2757664 Test 150 atmaero_control_p8_rad PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad_micro -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/atmaero_control_p8_rad_micro +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/atmaero_control_p8_rad_micro Checking test 151 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4594,14 +4523,14 @@ Checking test 151 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 306.719502 -0:The maximum resident set size (KB) = 2763896 +0:The total amount of wall time = 306.400850 +0:The maximum resident set size (KB) = 2763932 Test 151 atmaero_control_p8_rad_micro PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/regional_atmaq +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/regional_atmaq Checking test 152 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4617,14 +4546,14 @@ Checking test 152 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -0:The total amount of wall time = 1053.465055 -0:The maximum resident set size (KB) = 1146068 +0:The total amount of wall time = 993.898230 +0:The maximum resident set size (KB) = 1146264 Test 152 regional_atmaq PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq_faster -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_35830/regional_atmaq_faster +working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/regional_atmaq_faster Checking test 153 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4640,12 +4569,14 @@ Checking test 153 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -0:The total amount of wall time = 1033.010356 -0:The maximum resident set size (KB) = 1146036 +0:The total amount of wall time = 1083.110441 +0:The maximum resident set size (KB) = 1145960 Test 153 regional_atmaq_faster PASS +FAILED TESTS: +Test compile_008 failed in run_compile failed -REGRESSION TEST WAS SUCCESSFUL -Mon Mar 13 22:44:12 MDT 2023 -Elapsed time: 03h:20m:26s. Have a nice day! +REGRESSION TEST FAILED +Wed Mar 15 09:07:07 MDT 2023 +Elapsed time: 01h:18m:02s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index fef5b07c4db..4efadad5d6d 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,42 +1,42 @@ -Mon Mar 13 21:51:57 EDT 2023 +Tue Mar 14 16:36:24 EDT 2023 Start Regression test -Compile 001 elapsed time 1006 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 1026 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 968 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 441 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 384 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 840 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 955 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 1261 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 852 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 878 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 776 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 651 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 967 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 408 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 260 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 816 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 747 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 288 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 286 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 734 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 021 elapsed time 309 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 919 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 822 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 024 elapsed time 398 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 311 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 385 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 164 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 800 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 782 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 738 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 766 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 268 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 886 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 965 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 975 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 967 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 360 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 317 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 860 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 782 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 1183 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 764 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 710 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 732 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 716 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 855 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 290 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 203 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 714 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 709 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 239 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 206 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 800 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 271 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 986 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 750 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 024 elapsed time 296 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 170 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 307 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 122 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 737 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 658 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 735 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 774 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 240 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 851 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_mixedmode -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/cpld_control_p8_mixedmode +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -101,14 +101,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 372.610475 - 0: The maximum resident set size (KB) = 1532456 + 0: The total amount of wall time = 337.629021 + 0: The maximum resident set size (KB) = 1534544 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_gfsv17 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/cpld_control_gfsv17 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -172,14 +172,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 276.061687 - 0: The maximum resident set size (KB) = 1443532 + 0: The total amount of wall time = 267.558389 + 0: The maximum resident set size (KB) = 1443640 Test 002 cpld_control_gfsv17 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/cpld_control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -244,14 +244,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 405.874841 - 0: The maximum resident set size (KB) = 1567868 + 0: The total amount of wall time = 384.744960 + 0: The maximum resident set size (KB) = 1568052 Test 003 cpld_control_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/cpld_restart_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -304,14 +304,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 219.695398 - 0: The maximum resident set size (KB) = 1018988 + 0: The total amount of wall time = 226.491456 + 0: The maximum resident set size (KB) = 1019208 Test 004 cpld_restart_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/cpld_2threads_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -364,16 +364,74 @@ Checking test 005 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 437.428839 - 0: The maximum resident set size (KB) = 1760472 + 0: The total amount of wall time = 401.201290 + 0: The maximum resident set size (KB) = 1758876 Test 005 cpld_2threads_p8 PASS -Test 006 cpld_decomp_p8 FAIL + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/cpld_decomp_p8 +Checking test 006 cpld_decomp_p8 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 389.727248 + 0: The maximum resident set size (KB) = 1559404 + +Test 006 cpld_decomp_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/cpld_mpi_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/cpld_mpi_p8 Checking test 007 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -426,14 +484,14 @@ Checking test 007 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 351.687722 - 0: The maximum resident set size (KB) = 1527008 + 0: The total amount of wall time = 323.356678 + 0: The maximum resident set size (KB) = 1526240 Test 007 cpld_mpi_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_ciceC_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/cpld_control_ciceC_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/cpld_control_ciceC_p8 Checking test 008 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -498,14 +556,14 @@ Checking test 008 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 411.813718 - 0: The maximum resident set size (KB) = 1568364 + 0: The total amount of wall time = 399.598752 + 0: The maximum resident set size (KB) = 1566176 Test 008 cpld_control_ciceC_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c192_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/cpld_control_c192_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/cpld_control_c192_p8 Checking test 009 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -558,14 +616,14 @@ Checking test 009 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 804.202562 - 0: The maximum resident set size (KB) = 1761136 + 0: The total amount of wall time = 777.462938 + 0: The maximum resident set size (KB) = 1762304 Test 009 cpld_control_c192_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c192_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/cpld_restart_c192_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/cpld_restart_c192_p8 Checking test 010 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -618,14 +676,14 @@ Checking test 010 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 584.665110 - 0: The maximum resident set size (KB) = 1924728 + 0: The total amount of wall time = 525.854997 + 0: The maximum resident set size (KB) = 1917036 Test 010 cpld_restart_c192_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_bmark_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/cpld_bmark_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/cpld_bmark_p8 Checking test 011 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -673,14 +731,14 @@ Checking test 011 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 886.713784 - 0: The maximum resident set size (KB) = 2503316 + 0: The total amount of wall time = 861.164045 + 0: The maximum resident set size (KB) = 2502572 Test 011 cpld_bmark_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_bmark_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/cpld_restart_bmark_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/cpld_restart_bmark_p8 Checking test 012 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -728,14 +786,14 @@ Checking test 012 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 636.572505 - 0: The maximum resident set size (KB) = 2330108 + 0: The total amount of wall time = 686.184641 + 0: The maximum resident set size (KB) = 2323528 Test 012 cpld_restart_bmark_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/cpld_control_noaero_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/cpld_control_noaero_p8 Checking test 013 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -799,14 +857,14 @@ Checking test 013 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 306.903283 - 0: The maximum resident set size (KB) = 1440636 + 0: The total amount of wall time = 289.067188 + 0: The maximum resident set size (KB) = 1440348 Test 013 cpld_control_noaero_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c96_noaero_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/cpld_control_nowave_noaero_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/cpld_control_nowave_noaero_p8 Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -868,8 +926,8 @@ Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 321.947809 - 0: The maximum resident set size (KB) = 1473464 + 0: The total amount of wall time = 297.572749 + 0: The maximum resident set size (KB) = 1474120 Test 014 cpld_control_nowave_noaero_p8 PASS @@ -877,7 +935,7 @@ Test 015 cpld_debug_p8 FAIL baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_debug_noaero_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/cpld_debug_noaero_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/cpld_debug_noaero_p8 Checking test 016 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -929,14 +987,14 @@ Checking test 016 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 405.298029 - 0: The maximum resident set size (KB) = 1441196 + 0: The total amount of wall time = 410.749917 + 0: The maximum resident set size (KB) = 1441932 Test 016 cpld_debug_noaero_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8_agrid -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/cpld_control_noaero_p8_agrid +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/cpld_control_noaero_p8_agrid Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -998,14 +1056,14 @@ Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 307.651844 - 0: The maximum resident set size (KB) = 1476280 + 0: The total amount of wall time = 310.307588 + 0: The maximum resident set size (KB) = 1476436 Test 017 cpld_control_noaero_p8_agrid PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c48 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/cpld_control_c48 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/cpld_control_c48 Checking test 018 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1055,14 +1113,14 @@ Checking test 018 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 628.418348 - 0: The maximum resident set size (KB) = 2568924 + 0: The total amount of wall time = 601.108983 + 0: The maximum resident set size (KB) = 2569004 Test 018 cpld_control_c48 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/cpld_warmstart_c48 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/cpld_warmstart_c48 Checking test 019 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1112,14 +1170,14 @@ Checking test 019 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 185.159808 - 0: The maximum resident set size (KB) = 2586072 + 0: The total amount of wall time = 159.849334 + 0: The maximum resident set size (KB) = 2585608 Test 019 cpld_warmstart_c48 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/cpld_restart_c48 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/cpld_restart_c48 Checking test 020 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1169,14 +1227,14 @@ Checking test 020 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 85.883854 - 0: The maximum resident set size (KB) = 1996260 + 0: The total amount of wall time = 84.255033 + 0: The maximum resident set size (KB) = 1996440 Test 020 cpld_restart_c48 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_faster -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/cpld_control_p8_faster +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/cpld_control_p8_faster Checking test 021 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1241,14 +1299,14 @@ Checking test 021 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 401.560340 - 0: The maximum resident set size (KB) = 1567416 + 0: The total amount of wall time = 381.043548 + 0: The maximum resident set size (KB) = 1568356 Test 021 cpld_control_p8_faster PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/control_CubedSphereGrid +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/control_CubedSphereGrid Checking test 022 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1275,28 +1333,28 @@ Checking test 022 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 141.992776 - 0: The maximum resident set size (KB) = 437244 + 0: The total amount of wall time = 140.921362 + 0: The maximum resident set size (KB) = 437232 Test 022 control_CubedSphereGrid PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/control_CubedSphereGrid_parallel +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/control_CubedSphereGrid_parallel Checking test 023 control_CubedSphereGrid_parallel 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 = 141.923464 - 0: The maximum resident set size (KB) = 437068 + 0: The total amount of wall time = 154.828648 + 0: The maximum resident set size (KB) = 437192 Test 023 control_CubedSphereGrid_parallel PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_latlon -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/control_latlon +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/control_latlon Checking test 024 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1307,14 +1365,14 @@ Checking test 024 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 142.445056 - 0: The maximum resident set size (KB) = 436880 + 0: The total amount of wall time = 148.747644 + 0: The maximum resident set size (KB) = 437004 Test 024 control_latlon PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/control_wrtGauss_netcdf_parallel +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/control_wrtGauss_netcdf_parallel Checking test 025 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1325,14 +1383,14 @@ Checking test 025 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 151.854444 - 0: The maximum resident set size (KB) = 437100 + 0: The total amount of wall time = 177.500715 + 0: The maximum resident set size (KB) = 436996 Test 025 control_wrtGauss_netcdf_parallel PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c48 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/control_c48 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/control_c48 Checking test 026 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1371,14 +1429,14 @@ Checking test 026 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 419.391325 -0: The maximum resident set size (KB) = 631036 +0: The total amount of wall time = 419.297261 +0: The maximum resident set size (KB) = 630456 Test 026 control_c48 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c192 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/control_c192 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/control_c192 Checking test 027 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1389,14 +1447,14 @@ Checking test 027 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 583.072977 - 0: The maximum resident set size (KB) = 540160 + 0: The total amount of wall time = 584.103619 + 0: The maximum resident set size (KB) = 540056 Test 027 control_c192 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/control_c384 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/control_c384 Checking test 028 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1407,14 +1465,14 @@ Checking test 028 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1120.984782 - 0: The maximum resident set size (KB) = 818356 + 0: The total amount of wall time = 1111.262935 + 0: The maximum resident set size (KB) = 818388 Test 028 control_c384 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384gdas -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/control_c384gdas +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/control_c384gdas Checking test 029 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1457,14 +1515,14 @@ Checking test 029 control_c384gdas 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 = 967.905421 - 0: The maximum resident set size (KB) = 948360 + 0: The total amount of wall time = 942.557505 + 0: The maximum resident set size (KB) = 948200 Test 029 control_c384gdas PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/control_stochy +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/control_stochy Checking test 030 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1475,28 +1533,28 @@ Checking test 030 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 97.587299 - 0: The maximum resident set size (KB) = 440304 + 0: The total amount of wall time = 97.462872 + 0: The maximum resident set size (KB) = 440336 Test 030 control_stochy PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/control_stochy_restart +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/control_stochy_restart Checking test 031 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 53.029362 - 0: The maximum resident set size (KB) = 194608 + 0: The total amount of wall time = 53.331820 + 0: The maximum resident set size (KB) = 194668 Test 031 control_stochy_restart PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/control_lndp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/control_lndp Checking test 032 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1507,14 +1565,14 @@ Checking test 032 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 90.846628 - 0: The maximum resident set size (KB) = 440328 + 0: The total amount of wall time = 92.594599 + 0: The maximum resident set size (KB) = 440172 Test 032 control_lndp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr4 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/control_iovr4 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/control_iovr4 Checking test 033 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1529,14 +1587,14 @@ Checking test 033 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 151.769934 - 0: The maximum resident set size (KB) = 437024 + 0: The total amount of wall time = 148.383027 + 0: The maximum resident set size (KB) = 436936 Test 033 control_iovr4 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr5 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/control_iovr5 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/control_iovr5 Checking test 034 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1551,14 +1609,14 @@ Checking test 034 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 147.067735 - 0: The maximum resident set size (KB) = 436948 + 0: The total amount of wall time = 151.143950 + 0: The maximum resident set size (KB) = 436988 Test 034 control_iovr5 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/control_p8 Checking test 035 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1605,14 +1663,14 @@ Checking test 035 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 184.249988 - 0: The maximum resident set size (KB) = 1379600 + 0: The total amount of wall time = 196.063819 + 0: The maximum resident set size (KB) = 1379628 Test 035 control_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_lndp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/control_p8_lndp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/control_p8_lndp Checking test 036 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1631,14 +1689,14 @@ Checking test 036 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 349.112876 - 0: The maximum resident set size (KB) = 1379732 + 0: The total amount of wall time = 335.627357 + 0: The maximum resident set size (KB) = 1379652 Test 036 control_p8_lndp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/control_restart_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/control_restart_p8 Checking test 037 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1677,14 +1735,14 @@ Checking test 037 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 110.535855 - 0: The maximum resident set size (KB) = 556096 + 0: The total amount of wall time = 102.447825 + 0: The maximum resident set size (KB) = 556064 Test 037 control_restart_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/control_decomp_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/control_decomp_p8 Checking test 038 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1727,14 +1785,14 @@ Checking test 038 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 184.716491 - 0: The maximum resident set size (KB) = 1374076 + 0: The total amount of wall time = 199.797134 + 0: The maximum resident set size (KB) = 1374188 Test 038 control_decomp_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/control_2threads_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/control_2threads_p8 Checking test 039 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1777,14 +1835,14 @@ Checking test 039 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 177.192269 - 0: The maximum resident set size (KB) = 1457068 + 0: The total amount of wall time = 178.919070 + 0: The maximum resident set size (KB) = 1457184 Test 039 control_2threads_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_rrtmgp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/control_p8_rrtmgp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/control_p8_rrtmgp Checking test 040 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1831,14 +1889,14 @@ Checking test 040 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 249.743105 - 0: The maximum resident set size (KB) = 1437308 + 0: The total amount of wall time = 249.555003 + 0: The maximum resident set size (KB) = 1437304 Test 040 control_p8_rrtmgp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/merra2_thompson -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/merra2_thompson +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/merra2_thompson Checking test 041 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1885,14 +1943,14 @@ Checking test 041 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 216.168249 - 0: The maximum resident set size (KB) = 1385876 + 0: The total amount of wall time = 206.789875 + 0: The maximum resident set size (KB) = 1385808 Test 041 merra2_thompson PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/regional_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/regional_control Checking test 042 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1903,28 +1961,28 @@ Checking test 042 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 345.443991 - 0: The maximum resident set size (KB) = 577728 + 0: The total amount of wall time = 335.510695 + 0: The maximum resident set size (KB) = 577564 Test 042 regional_control PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/regional_restart +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/regional_restart Checking test 043 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 195.285761 - 0: The maximum resident set size (KB) = 577464 + 0: The total amount of wall time = 177.286895 + 0: The maximum resident set size (KB) = 577384 Test 043 regional_restart PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/regional_decomp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/regional_decomp Checking test 044 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1935,14 +1993,14 @@ Checking test 044 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 364.107987 - 0: The maximum resident set size (KB) = 579364 + 0: The total amount of wall time = 356.168441 + 0: The maximum resident set size (KB) = 579220 Test 044 regional_decomp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/regional_2threads +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/regional_2threads Checking test 045 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1953,14 +2011,14 @@ Checking test 045 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 235.644226 - 0: The maximum resident set size (KB) = 585416 + 0: The total amount of wall time = 209.153891 + 0: The maximum resident set size (KB) = 585220 Test 045 regional_2threads PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_noquilt -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/regional_noquilt +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/regional_noquilt Checking test 046 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1968,28 +2026,28 @@ Checking test 046 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 382.732580 - 0: The maximum resident set size (KB) = 573056 + 0: The total amount of wall time = 370.506027 + 0: The maximum resident set size (KB) = 572832 Test 046 regional_noquilt PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_netcdf_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/regional_netcdf_parallel +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/regional_netcdf_parallel Checking test 047 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 344.533136 - 0: The maximum resident set size (KB) = 576928 + 0: The total amount of wall time = 356.195786 + 0: The maximum resident set size (KB) = 576824 Test 047 regional_netcdf_parallel PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/regional_2dwrtdecomp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/regional_2dwrtdecomp Checking test 048 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2000,14 +2058,14 @@ Checking test 048 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 352.739481 - 0: The maximum resident set size (KB) = 577872 + 0: The total amount of wall time = 344.679031 + 0: The maximum resident set size (KB) = 577652 Test 048 regional_2dwrtdecomp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/fv3_regional_wofs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/regional_wofs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/regional_wofs Checking test 049 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2018,14 +2076,14 @@ Checking test 049 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 427.855392 - 0: The maximum resident set size (KB) = 263032 + 0: The total amount of wall time = 432.832696 + 0: The maximum resident set size (KB) = 263212 Test 049 regional_wofs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/rap_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/rap_control Checking test 050 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2072,14 +2130,14 @@ Checking test 050 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 476.697797 - 0: The maximum resident set size (KB) = 807668 + 0: The total amount of wall time = 478.960518 + 0: The maximum resident set size (KB) = 807636 Test 050 rap_control PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/regional_spp_sppt_shum_skeb +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/regional_spp_sppt_shum_skeb Checking test 051 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2090,14 +2148,14 @@ Checking test 051 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 345.890412 - 0: The maximum resident set size (KB) = 897632 + 0: The total amount of wall time = 354.290658 + 0: The maximum resident set size (KB) = 898004 Test 051 regional_spp_sppt_shum_skeb PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/rap_decomp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/rap_decomp Checking test 052 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2144,14 +2202,14 @@ Checking test 052 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 505.969098 - 0: The maximum resident set size (KB) = 807168 + 0: The total amount of wall time = 515.545663 + 0: The maximum resident set size (KB) = 807236 Test 052 rap_decomp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/rap_2threads +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/rap_2threads Checking test 053 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2198,14 +2256,14 @@ Checking test 053 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 471.034644 - 0: The maximum resident set size (KB) = 875256 + 0: The total amount of wall time = 470.103306 + 0: The maximum resident set size (KB) = 877816 Test 053 rap_2threads PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/rap_restart +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/rap_restart Checking test 054 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2244,14 +2302,14 @@ Checking test 054 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 249.409988 - 0: The maximum resident set size (KB) = 554084 + 0: The total amount of wall time = 245.156944 + 0: The maximum resident set size (KB) = 553428 Test 054 rap_restart PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/rap_sfcdiff +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/rap_sfcdiff Checking test 055 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2298,14 +2356,14 @@ Checking test 055 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 502.070997 - 0: The maximum resident set size (KB) = 807520 + 0: The total amount of wall time = 477.743020 + 0: The maximum resident set size (KB) = 807548 Test 055 rap_sfcdiff PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/rap_sfcdiff_decomp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/rap_sfcdiff_decomp Checking test 056 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2352,14 +2410,14 @@ Checking test 056 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 505.732245 - 0: The maximum resident set size (KB) = 806624 + 0: The total amount of wall time = 510.454973 + 0: The maximum resident set size (KB) = 806812 Test 056 rap_sfcdiff_decomp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/rap_sfcdiff_restart +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/rap_sfcdiff_restart Checking test 057 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2398,14 +2456,14 @@ Checking test 057 rap_sfcdiff_restart results .... Comparing 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.053443 - 0: The maximum resident set size (KB) = 551420 + 0: The total amount of wall time = 358.635428 + 0: The maximum resident set size (KB) = 551516 Test 057 rap_sfcdiff_restart PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/hrrr_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/hrrr_control Checking test 058 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2452,14 +2510,14 @@ Checking test 058 hrrr_control results .... Comparing 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.746459 - 0: The maximum resident set size (KB) = 805000 + 0: The total amount of wall time = 464.066720 + 0: The maximum resident set size (KB) = 804948 Test 058 hrrr_control PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/hrrr_control_decomp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/hrrr_control_decomp Checking test 059 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2506,14 +2564,14 @@ Checking test 059 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 488.174364 - 0: The maximum resident set size (KB) = 804552 + 0: The total amount of wall time = 479.601000 + 0: The maximum resident set size (KB) = 804544 Test 059 hrrr_control_decomp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/hrrr_control_2threads +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/hrrr_control_2threads Checking test 060 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2560,14 +2618,14 @@ Checking test 060 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 454.566608 - 0: The maximum resident set size (KB) = 873088 + 0: The total amount of wall time = 438.522339 + 0: The maximum resident set size (KB) = 871296 Test 060 hrrr_control_2threads PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/hrrr_control_restart +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/hrrr_control_restart Checking test 061 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2606,14 +2664,14 @@ Checking test 061 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 356.702319 - 0: The maximum resident set size (KB) = 550208 + 0: The total amount of wall time = 351.610093 + 0: The maximum resident set size (KB) = 550128 Test 061 hrrr_control_restart PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/rrfs_v1beta +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/rrfs_v1beta Checking test 062 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2660,14 +2718,14 @@ Checking test 062 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 476.881108 - 0: The maximum resident set size (KB) = 800748 + 0: The total amount of wall time = 474.267741 + 0: The maximum resident set size (KB) = 800612 Test 062 rrfs_v1beta PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/rrfs_v1nssl +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/rrfs_v1nssl Checking test 063 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2682,14 +2740,14 @@ Checking test 063 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 579.169278 - 0: The maximum resident set size (KB) = 491824 + 0: The total amount of wall time = 575.086803 + 0: The maximum resident set size (KB) = 491708 Test 063 rrfs_v1nssl PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/rrfs_v1nssl_nohailnoccn +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/rrfs_v1nssl_nohailnoccn Checking test 064 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2704,14 +2762,14 @@ Checking test 064 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 563.373849 - 0: The maximum resident set size (KB) = 485764 + 0: The total amount of wall time = 554.908131 + 0: The maximum resident set size (KB) = 485920 Test 064 rrfs_v1nssl_nohailnoccn PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/rrfs_conus13km_hrrr_warm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/rrfs_conus13km_hrrr_warm Checking test 065 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2720,14 +2778,14 @@ Checking test 065 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 132.365781 - 0: The maximum resident set size (KB) = 617320 + 0: The total amount of wall time = 144.525913 + 0: The maximum resident set size (KB) = 617344 Test 065 rrfs_conus13km_hrrr_warm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/rrfs_smoke_conus13km_hrrr_warm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/rrfs_smoke_conus13km_hrrr_warm Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2736,14 +2794,14 @@ Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 153.952127 - 0: The maximum resident set size (KB) = 627764 + 0: The total amount of wall time = 149.199710 + 0: The maximum resident set size (KB) = 627652 Test 066 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/rrfs_conus13km_radar_tten_warm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/rrfs_conus13km_radar_tten_warm Checking test 067 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2752,14 +2810,14 @@ Checking test 067 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 135.360111 - 0: The maximum resident set size (KB) = 620912 + 0: The total amount of wall time = 143.875853 + 0: The maximum resident set size (KB) = 621164 Test 067 rrfs_conus13km_radar_tten_warm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/rrfs_conus13km_hrrr_warm_2threads +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/rrfs_conus13km_hrrr_warm_2threads Checking test 068 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2768,14 +2826,14 @@ Checking test 068 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 91.360374 - 0: The maximum resident set size (KB) = 629584 + 0: The total amount of wall time = 93.323606 + 0: The maximum resident set size (KB) = 629528 Test 068 rrfs_conus13km_hrrr_warm_2threads PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/rrfs_conus13km_radar_tten_warm_2threads +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/rrfs_conus13km_radar_tten_warm_2threads Checking test 069 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2784,14 +2842,14 @@ Checking test 069 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 95.705488 - 0: The maximum resident set size (KB) = 633044 + 0: The total amount of wall time = 95.914854 + 0: The maximum resident set size (KB) = 632476 Test 069 rrfs_conus13km_radar_tten_warm_2threads PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/control_csawmgt +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/control_csawmgt Checking test 070 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2802,14 +2860,14 @@ Checking test 070 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 380.305738 - 0: The maximum resident set size (KB) = 505600 + 0: The total amount of wall time = 384.505810 + 0: The maximum resident set size (KB) = 505508 Test 070 control_csawmgt PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/control_ras +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/control_ras Checking test 071 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2820,26 +2878,26 @@ Checking test 071 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 199.819006 - 0: The maximum resident set size (KB) = 470820 + 0: The total amount of wall time = 200.021423 + 0: The maximum resident set size (KB) = 470932 Test 071 control_ras PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/control_wam +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/control_wam Checking test 072 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 129.636620 - 0: The maximum resident set size (KB) = 188160 + 0: The total amount of wall time = 134.982467 + 0: The maximum resident set size (KB) = 188168 Test 072 control_wam PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_faster -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/control_p8_faster +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/control_p8_faster Checking test 073 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2886,14 +2944,14 @@ Checking test 073 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 173.960421 - 0: The maximum resident set size (KB) = 1379580 + 0: The total amount of wall time = 178.708654 + 0: The maximum resident set size (KB) = 1379584 Test 073 control_p8_faster PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control_faster -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/regional_control_faster +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/regional_control_faster Checking test 074 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2904,42 +2962,42 @@ Checking test 074 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 317.212514 - 0: The maximum resident set size (KB) = 577576 + 0: The total amount of wall time = 330.359109 + 0: The maximum resident set size (KB) = 577644 Test 074 regional_control_faster PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/rrfs_conus13km_hrrr_warm_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/rrfs_conus13km_hrrr_warm_debug Checking test 075 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 778.756382 - 0: The maximum resident set size (KB) = 649436 + 0: The total amount of wall time = 761.456177 + 0: The maximum resident set size (KB) = 649404 Test 075 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/rrfs_conus13km_radar_tten_warm_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/rrfs_conus13km_radar_tten_warm_debug Checking test 076 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 776.654185 - 0: The maximum resident set size (KB) = 652216 + 0: The total amount of wall time = 762.933850 + 0: The maximum resident set size (KB) = 652376 Test 076 rrfs_conus13km_radar_tten_warm_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/control_CubedSphereGrid_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/control_CubedSphereGrid_debug Checking test 077 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2966,334 +3024,334 @@ Checking test 077 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 164.653158 - 0: The maximum resident set size (KB) = 601808 + 0: The total amount of wall time = 164.064181 + 0: The maximum resident set size (KB) = 601824 Test 077 control_CubedSphereGrid_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/control_wrtGauss_netcdf_parallel_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/control_wrtGauss_netcdf_parallel_debug Checking test 078 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 158.831978 - 0: The maximum resident set size (KB) = 601008 + 0: The total amount of wall time = 164.006353 + 0: The maximum resident set size (KB) = 601132 Test 078 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/control_stochy_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/control_stochy_debug Checking test 079 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 182.251578 - 0: The maximum resident set size (KB) = 607980 + 0: The total amount of wall time = 179.216539 + 0: The maximum resident set size (KB) = 607948 Test 079 control_stochy_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/control_lndp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/control_lndp_debug Checking test 080 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 160.642363 - 0: The maximum resident set size (KB) = 605784 + 0: The total amount of wall time = 158.784408 + 0: The maximum resident set size (KB) = 605836 Test 080 control_lndp_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/control_csawmg_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/control_csawmg_debug Checking test 081 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 248.007157 - 0: The maximum resident set size (KB) = 642416 + 0: The total amount of wall time = 252.296977 + 0: The maximum resident set size (KB) = 642504 Test 081 control_csawmg_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/control_csawmgt_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/control_csawmgt_debug Checking test 082 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 244.088263 - 0: The maximum resident set size (KB) = 642564 + 0: The total amount of wall time = 249.273504 + 0: The maximum resident set size (KB) = 642624 Test 082 control_csawmgt_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/control_ras_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/control_ras_debug Checking test 083 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 173.911240 - 0: The maximum resident set size (KB) = 613696 + 0: The total amount of wall time = 160.264057 + 0: The maximum resident set size (KB) = 613692 Test 083 control_ras_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_diag_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/control_diag_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/control_diag_debug Checking test 084 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 164.372462 + 0: The total amount of wall time = 164.985226 0: The maximum resident set size (KB) = 660380 Test 084 control_diag_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_debug_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/control_debug_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/control_debug_p8 Checking test 085 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 178.368682 - 0: The maximum resident set size (KB) = 1380068 + 0: The total amount of wall time = 177.660351 + 0: The maximum resident set size (KB) = 1380220 Test 085 control_debug_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/regional_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/regional_debug Checking test 086 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1044.311699 - 0: The maximum resident set size (KB) = 606680 + 0: The total amount of wall time = 1042.746794 + 0: The maximum resident set size (KB) = 606628 Test 086 regional_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/rap_control_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/rap_control_debug Checking test 087 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 288.400526 - 0: The maximum resident set size (KB) = 972116 + 0: The total amount of wall time = 287.152577 + 0: The maximum resident set size (KB) = 972152 Test 087 rap_control_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/hrrr_control_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/hrrr_control_debug Checking test 088 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 283.041832 - 0: The maximum resident set size (KB) = 967188 + 0: The total amount of wall time = 283.772514 + 0: The maximum resident set size (KB) = 967272 Test 088 hrrr_control_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/rap_unified_drag_suite_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/rap_unified_drag_suite_debug Checking test 089 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 297.562803 - 0: The maximum resident set size (KB) = 971972 + 0: The total amount of wall time = 286.941250 + 0: The maximum resident set size (KB) = 972132 Test 089 rap_unified_drag_suite_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_diag_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/rap_diag_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/rap_diag_debug Checking test 090 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 303.286360 - 0: The maximum resident set size (KB) = 1056308 + 0: The total amount of wall time = 303.679227 + 0: The maximum resident set size (KB) = 1056204 Test 090 rap_diag_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/rap_cires_ugwp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/rap_cires_ugwp_debug Checking test 091 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 297.273628 - 0: The maximum resident set size (KB) = 971380 + 0: The total amount of wall time = 292.916660 + 0: The maximum resident set size (KB) = 971236 Test 091 rap_cires_ugwp_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/rap_unified_ugwp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/rap_unified_ugwp_debug Checking test 092 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 297.531076 - 0: The maximum resident set size (KB) = 973552 + 0: The total amount of wall time = 292.999966 + 0: The maximum resident set size (KB) = 973548 Test 092 rap_unified_ugwp_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_lndp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/rap_lndp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/rap_lndp_debug Checking test 093 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 288.897682 - 0: The maximum resident set size (KB) = 972768 + 0: The total amount of wall time = 290.760975 + 0: The maximum resident set size (KB) = 972652 Test 093 rap_lndp_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_flake_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/rap_flake_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/rap_flake_debug Checking test 094 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 288.489566 - 0: The maximum resident set size (KB) = 972100 + 0: The total amount of wall time = 287.734733 + 0: The maximum resident set size (KB) = 972144 Test 094 rap_flake_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_progcld_thompson_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/rap_progcld_thompson_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/rap_progcld_thompson_debug Checking test 095 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 287.642471 - 0: The maximum resident set size (KB) = 972068 + 0: The total amount of wall time = 317.062761 + 0: The maximum resident set size (KB) = 972044 Test 095 rap_progcld_thompson_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/rap_noah_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/rap_noah_debug Checking test 096 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.523318 - 0: The maximum resident set size (KB) = 970636 + 0: The total amount of wall time = 282.364699 + 0: The maximum resident set size (KB) = 970752 Test 096 rap_noah_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/rap_sfcdiff_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/rap_sfcdiff_debug Checking test 097 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 288.312158 - 0: The maximum resident set size (KB) = 971732 + 0: The total amount of wall time = 291.542761 + 0: The maximum resident set size (KB) = 971980 Test 097 rap_sfcdiff_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/rap_noah_sfcdiff_cires_ugwp_debug Checking test 098 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 475.519646 - 0: The maximum resident set size (KB) = 971276 + 0: The total amount of wall time = 475.906273 + 0: The maximum resident set size (KB) = 971292 Test 098 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/rrfs_v1beta_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/rrfs_v1beta_debug Checking test 099 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 284.038164 - 0: The maximum resident set size (KB) = 968044 + 0: The total amount of wall time = 282.396270 + 0: The maximum resident set size (KB) = 968088 Test 099 rrfs_v1beta_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/control_wam_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/control_wam_debug Checking test 100 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 298.464362 - 0: The maximum resident set size (KB) = 219252 + 0: The total amount of wall time = 292.395652 + 0: The maximum resident set size (KB) = 219220 Test 100 control_wam_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 101 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3304,14 +3362,14 @@ Checking test 101 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 299.704587 - 0: The maximum resident set size (KB) = 788216 + 0: The total amount of wall time = 302.350893 + 0: The maximum resident set size (KB) = 788008 Test 101 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/rap_control_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/rap_control_dyn32_phy32 Checking test 102 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3358,14 +3416,14 @@ Checking test 102 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 393.853843 - 0: The maximum resident set size (KB) = 690964 + 0: The total amount of wall time = 395.551812 + 0: The maximum resident set size (KB) = 690796 Test 102 rap_control_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/hrrr_control_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/hrrr_control_dyn32_phy32 Checking test 103 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3412,14 +3470,14 @@ Checking test 103 hrrr_control_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 217.809540 - 0: The maximum resident set size (KB) = 689384 + 0: The total amount of wall time = 207.221569 + 0: The maximum resident set size (KB) = 689224 Test 103 hrrr_control_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/rap_2threads_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/rap_2threads_dyn32_phy32 Checking test 104 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3466,14 +3524,14 @@ Checking test 104 rap_2threads_dyn32_phy32 results .... Comparing 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.121717 - 0: The maximum resident set size (KB) = 740512 + 0: The total amount of wall time = 373.279057 + 0: The maximum resident set size (KB) = 746404 Test 104 rap_2threads_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/hrrr_control_2threads_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/hrrr_control_2threads_dyn32_phy32 Checking test 105 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3520,14 +3578,14 @@ Checking test 105 hrrr_control_2threads_dyn32_phy32 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 = 200.067947 - 0: The maximum resident set size (KB) = 742880 + 0: The total amount of wall time = 207.941829 + 0: The maximum resident set size (KB) = 742544 Test 105 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/hrrr_control_decomp_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/hrrr_control_decomp_dyn32_phy32 Checking test 106 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3574,14 +3632,14 @@ Checking test 106 hrrr_control_decomp_dyn32_phy32 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 = 215.181113 - 0: The maximum resident set size (KB) = 688188 + 0: The total amount of wall time = 217.491779 + 0: The maximum resident set size (KB) = 688184 Test 106 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/rap_restart_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/rap_restart_dyn32_phy32 Checking test 107 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3620,14 +3678,14 @@ Checking test 107 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 296.371150 - 0: The maximum resident set size (KB) = 524944 + 0: The total amount of wall time = 300.279531 + 0: The maximum resident set size (KB) = 524952 Test 107 rap_restart_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/hrrr_control_restart_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/hrrr_control_restart_dyn32_phy32 Checking test 108 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3666,14 +3724,14 @@ Checking test 108 hrrr_control_restart_dyn32_phy32 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 = 111.103677 - 0: The maximum resident set size (KB) = 517200 + 0: The total amount of wall time = 110.739693 + 0: The maximum resident set size (KB) = 517616 Test 108 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn64_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/rap_control_dyn64_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/rap_control_dyn64_phy32 Checking test 109 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3720,81 +3778,81 @@ Checking test 109 rap_control_dyn64_phy32 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 = 264.392737 - 0: The maximum resident set size (KB) = 713740 + 0: The total amount of wall time = 266.319221 + 0: The maximum resident set size (KB) = 713840 Test 109 rap_control_dyn64_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/rap_control_debug_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/rap_control_debug_dyn32_phy32 Checking test 110 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 284.307573 - 0: The maximum resident set size (KB) = 856816 + 0: The total amount of wall time = 295.616031 + 0: The maximum resident set size (KB) = 856848 Test 110 rap_control_debug_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/hrrr_control_debug_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/hrrr_control_debug_dyn32_phy32 Checking test 111 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.325781 - 0: The maximum resident set size (KB) = 854804 + 0: The total amount of wall time = 281.877856 + 0: The maximum resident set size (KB) = 854776 Test 111 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/rap_control_dyn64_phy32_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/rap_control_dyn64_phy32_debug Checking test 112 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 290.056226 - 0: The maximum resident set size (KB) = 880156 + 0: The total amount of wall time = 291.495059 + 0: The maximum resident set size (KB) = 880308 Test 112 rap_control_dyn64_phy32_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/hafs_regional_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/hafs_regional_atm Checking test 113 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 276.299604 - 0: The maximum resident set size (KB) = 682044 + 0: The total amount of wall time = 273.164883 + 0: The maximum resident set size (KB) = 682884 Test 113 hafs_regional_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/hafs_regional_atm_thompson_gfdlsf +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/hafs_regional_atm_thompson_gfdlsf Checking test 114 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 319.071061 - 0: The maximum resident set size (KB) = 1037260 + 0: The total amount of wall time = 307.640436 + 0: The maximum resident set size (KB) = 1037472 Test 114 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/hafs_regional_atm_ocn +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/hafs_regional_atm_ocn Checking test 115 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3803,14 +3861,14 @@ Checking test 115 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 440.609510 - 0: The maximum resident set size (KB) = 713024 + 0: The total amount of wall time = 447.741519 + 0: The maximum resident set size (KB) = 712864 Test 115 hafs_regional_atm_ocn PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_wav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/hafs_regional_atm_wav +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/hafs_regional_atm_wav Checking test 116 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3819,14 +3877,14 @@ Checking test 116 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 941.044788 - 0: The maximum resident set size (KB) = 747316 + 0: The total amount of wall time = 939.585433 + 0: The maximum resident set size (KB) = 746192 Test 116 hafs_regional_atm_wav PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn_wav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/hafs_regional_atm_ocn_wav +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/hafs_regional_atm_ocn_wav Checking test 117 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3837,28 +3895,28 @@ Checking test 117 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 1033.805721 - 0: The maximum resident set size (KB) = 764556 + 0: The total amount of wall time = 1047.956387 + 0: The maximum resident set size (KB) = 764284 Test 117 hafs_regional_atm_ocn_wav PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/hafs_regional_1nest_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/hafs_regional_1nest_atm Checking test 118 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 382.670037 - 0: The maximum resident set size (KB) = 276584 + 0: The total amount of wall time = 394.885385 + 0: The maximum resident set size (KB) = 277352 Test 118 hafs_regional_1nest_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/hafs_regional_telescopic_2nests_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/hafs_regional_telescopic_2nests_atm Checking test 119 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3867,28 +3925,28 @@ Checking test 119 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 431.388474 - 0: The maximum resident set size (KB) = 282136 + 0: The total amount of wall time = 449.781824 + 0: The maximum resident set size (KB) = 282204 Test 119 hafs_regional_telescopic_2nests_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/hafs_global_1nest_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/hafs_global_1nest_atm Checking test 120 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 178.912138 - 0: The maximum resident set size (KB) = 177708 + 0: The total amount of wall time = 181.123888 + 0: The maximum resident set size (KB) = 178096 Test 120 hafs_global_1nest_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_multiple_4nests_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/hafs_global_multiple_4nests_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/hafs_global_multiple_4nests_atm Checking test 121 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3906,14 +3964,14 @@ Checking test 121 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 507.229358 - 0: The maximum resident set size (KB) = 227728 + 0: The total amount of wall time = 513.974385 + 0: The maximum resident set size (KB) = 227604 Test 121 hafs_global_multiple_4nests_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/hafs_regional_specified_moving_1nest_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/hafs_regional_specified_moving_1nest_atm Checking test 122 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3922,28 +3980,28 @@ Checking test 122 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 237.104442 - 0: The maximum resident set size (KB) = 288544 + 0: The total amount of wall time = 244.959783 + 0: The maximum resident set size (KB) = 288512 Test 122 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/hafs_regional_storm_following_1nest_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/hafs_regional_storm_following_1nest_atm Checking test 123 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 227.515186 - 0: The maximum resident set size (KB) = 286652 + 0: The total amount of wall time = 237.614548 + 0: The maximum resident set size (KB) = 287292 Test 123 hafs_regional_storm_following_1nest_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/hafs_regional_storm_following_1nest_atm_ocn Checking test 124 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3952,42 +4010,42 @@ Checking test 124 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 266.561638 - 0: The maximum resident set size (KB) = 324408 + 0: The total amount of wall time = 278.085261 + 0: The maximum resident set size (KB) = 324364 Test 124 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/hafs_global_storm_following_1nest_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/hafs_global_storm_following_1nest_atm Checking test 125 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 71.375345 - 0: The maximum resident set size (KB) = 193076 + 0: The total amount of wall time = 74.664892 + 0: The maximum resident set size (KB) = 193000 Test 125 hafs_global_storm_following_1nest_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 126 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 780.009648 - 0: The maximum resident set size (KB) = 353656 + 0: The total amount of wall time = 792.099778 + 0: The maximum resident set size (KB) = 353260 Test 126 hafs_regional_storm_following_1nest_atm_ocn_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 127 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3998,14 +4056,14 @@ Checking test 127 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 745.560916 - 0: The maximum resident set size (KB) = 367948 + 0: The total amount of wall time = 746.277457 + 0: The maximum resident set size (KB) = 367772 Test 127 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_docn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/hafs_regional_docn +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/hafs_regional_docn Checking test 128 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4013,14 +4071,14 @@ Checking test 128 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 400.158573 - 0: The maximum resident set size (KB) = 722844 + 0: The total amount of wall time = 399.780962 + 0: The maximum resident set size (KB) = 723228 Test 128 hafs_regional_docn PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_docn_oisst -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/hafs_regional_docn_oisst +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/hafs_regional_docn_oisst Checking test 129 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4028,131 +4086,131 @@ Checking test 129 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 396.028123 - 0: The maximum resident set size (KB) = 710144 + 0: The total amount of wall time = 405.750996 + 0: The maximum resident set size (KB) = 710284 Test 129 hafs_regional_docn_oisst PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_datm_cdeps -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/hafs_regional_datm_cdeps +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/hafs_regional_datm_cdeps Checking test 130 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 1175.741483 - 0: The maximum resident set size (KB) = 808988 + 0: The total amount of wall time = 1174.407998 + 0: The maximum resident set size (KB) = 808956 Test 130 hafs_regional_datm_cdeps PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/datm_cdeps_control_cfsr Checking test 131 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 169.944695 - 0: The maximum resident set size (KB) = 715840 + 0: The total amount of wall time = 167.887785 + 0: The maximum resident set size (KB) = 715700 Test 131 datm_cdeps_control_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/datm_cdeps_restart_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/datm_cdeps_restart_cfsr Checking test 132 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 96.791672 - 0: The maximum resident set size (KB) = 715948 + 0: The total amount of wall time = 98.367185 + 0: The maximum resident set size (KB) = 715952 Test 132 datm_cdeps_restart_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/datm_cdeps_control_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/datm_cdeps_control_gefs Checking test 133 datm_cdeps_control_gefs 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 = 162.674541 - 0: The maximum resident set size (KB) = 598128 + 0: The total amount of wall time = 161.685953 + 0: The maximum resident set size (KB) = 598996 Test 133 datm_cdeps_control_gefs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_iau_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/datm_cdeps_iau_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/datm_cdeps_iau_gefs Checking test 134 datm_cdeps_iau_gefs 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 = 165.668959 - 0: The maximum resident set size (KB) = 598476 + 0: The total amount of wall time = 164.472702 + 0: The maximum resident set size (KB) = 598028 Test 134 datm_cdeps_iau_gefs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_stochy_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/datm_cdeps_stochy_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/datm_cdeps_stochy_gefs Checking test 135 datm_cdeps_stochy_gefs 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 = 164.288827 - 0: The maximum resident set size (KB) = 598012 + 0: The total amount of wall time = 166.441411 + 0: The maximum resident set size (KB) = 602268 Test 135 datm_cdeps_stochy_gefs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/datm_cdeps_ciceC_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/datm_cdeps_ciceC_cfsr Checking test 136 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 166.585170 - 0: The maximum resident set size (KB) = 717736 + 0: The total amount of wall time = 168.686650 + 0: The maximum resident set size (KB) = 715868 Test 136 datm_cdeps_ciceC_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_bulk_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/datm_cdeps_bulk_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/datm_cdeps_bulk_cfsr Checking test 137 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 165.429009 - 0: The maximum resident set size (KB) = 715788 + 0: The total amount of wall time = 167.618758 + 0: The maximum resident set size (KB) = 715924 Test 137 datm_cdeps_bulk_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_bulk_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/datm_cdeps_bulk_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/datm_cdeps_bulk_gefs Checking test 138 datm_cdeps_bulk_gefs 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 = 160.261049 - 0: The maximum resident set size (KB) = 598136 + 0: The total amount of wall time = 161.969404 + 0: The maximum resident set size (KB) = 598080 Test 138 datm_cdeps_bulk_gefs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_mx025_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/datm_cdeps_mx025_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/datm_cdeps_mx025_cfsr Checking test 139 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4161,14 +4219,14 @@ Checking test 139 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 441.394850 - 0: The maximum resident set size (KB) = 496672 + 0: The total amount of wall time = 464.999398 + 0: The maximum resident set size (KB) = 495224 Test 139 datm_cdeps_mx025_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_mx025_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/datm_cdeps_mx025_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/datm_cdeps_mx025_gefs Checking test 140 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4177,77 +4235,77 @@ Checking test 140 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 461.997888 - 0: The maximum resident set size (KB) = 476352 + 0: The total amount of wall time = 459.245679 + 0: The maximum resident set size (KB) = 476200 Test 140 datm_cdeps_mx025_gefs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/datm_cdeps_multiple_files_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/datm_cdeps_multiple_files_cfsr Checking test 141 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 166.920929 - 0: The maximum resident set size (KB) = 721496 + 0: The total amount of wall time = 168.557866 + 0: The maximum resident set size (KB) = 715780 Test 141 datm_cdeps_multiple_files_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/datm_cdeps_3072x1536_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/datm_cdeps_3072x1536_cfsr Checking test 142 datm_cdeps_3072x1536_cfsr 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 = 254.913490 - 0: The maximum resident set size (KB) = 1947532 + 0: The total amount of wall time = 255.528942 + 0: The maximum resident set size (KB) = 1947960 Test 142 datm_cdeps_3072x1536_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_gfs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/datm_cdeps_gfs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/datm_cdeps_gfs Checking test 143 datm_cdeps_gfs 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 = 253.925699 - 0: The maximum resident set size (KB) = 1947988 + 0: The total amount of wall time = 252.977172 + 0: The maximum resident set size (KB) = 1947816 Test 143 datm_cdeps_gfs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_debug_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/datm_cdeps_debug_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/datm_cdeps_debug_cfsr Checking test 144 datm_cdeps_debug_cfsr 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 = 375.156334 - 0: The maximum resident set size (KB) = 714844 + 0: The total amount of wall time = 379.927105 + 0: The maximum resident set size (KB) = 707976 Test 144 datm_cdeps_debug_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr_faster -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/datm_cdeps_control_cfsr_faster +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/datm_cdeps_control_cfsr_faster Checking test 145 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 166.065771 - 0: The maximum resident set size (KB) = 721280 + 0: The total amount of wall time = 168.450318 + 0: The maximum resident set size (KB) = 715636 Test 145 datm_cdeps_control_cfsr_faster PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/datm_cdeps_lnd_gswp3 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/datm_cdeps_lnd_gswp3 Checking test 146 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4256,14 +4314,14 @@ Checking test 146 datm_cdeps_lnd_gswp3 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 = 14.939884 - 0: The maximum resident set size (KB) = 153852 + 0: The total amount of wall time = 13.274131 + 0: The maximum resident set size (KB) = 149716 Test 146 datm_cdeps_lnd_gswp3 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/datm_cdeps_lnd_gswp3_rst +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/datm_cdeps_lnd_gswp3_rst Checking test 147 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4272,14 +4330,14 @@ Checking test 147 datm_cdeps_lnd_gswp3_rst 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 = 22.731963 - 0: The maximum resident set size (KB) = 145644 + 0: The total amount of wall time = 20.714359 + 0: The maximum resident set size (KB) = 149848 Test 147 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_atmlnd_sbs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/control_p8_atmlnd_sbs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/control_p8_atmlnd_sbs Checking test 148 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4364,14 +4422,14 @@ Checking test 148 control_p8_atmlnd_sbs 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 = 231.458084 - 0: The maximum resident set size (KB) = 1412416 + 0: The total amount of wall time = 256.103438 + 0: The maximum resident set size (KB) = 1412596 Test 148 control_p8_atmlnd_sbs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_atmwav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/control_atmwav +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/control_atmwav Checking test 149 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4415,14 +4473,14 @@ Checking test 149 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 103.497304 - 0: The maximum resident set size (KB) = 450640 + 0: The total amount of wall time = 99.675829 + 0: The maximum resident set size (KB) = 450664 Test 149 control_atmwav PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/atmaero_control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/atmaero_control_p8 Checking test 150 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4466,14 +4524,14 @@ Checking test 150 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 255.515776 - 0: The maximum resident set size (KB) = 1447724 + 0: The total amount of wall time = 269.353176 + 0: The maximum resident set size (KB) = 1447764 Test 150 atmaero_control_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/atmaero_control_p8_rad +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/atmaero_control_p8_rad Checking test 151 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4517,14 +4575,14 @@ Checking test 151 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 299.861736 - 0: The maximum resident set size (KB) = 1468464 + 0: The total amount of wall time = 307.457340 + 0: The maximum resident set size (KB) = 1468632 Test 151 atmaero_control_p8_rad PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad_micro -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/atmaero_control_p8_rad_micro +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/atmaero_control_p8_rad_micro Checking test 152 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4568,14 +4626,14 @@ Checking test 152 atmaero_control_p8_rad_micro results .... Comparing 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.503608 - 0: The maximum resident set size (KB) = 1473052 + 0: The total amount of wall time = 320.446687 + 0: The maximum resident set size (KB) = 1473056 Test 152 atmaero_control_p8_rad_micro PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/regional_atmaq +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/regional_atmaq Checking test 153 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4591,14 +4649,14 @@ Checking test 153 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 650.737643 - 0: The maximum resident set size (KB) = 1102968 + 0: The total amount of wall time = 667.173605 + 0: The maximum resident set size (KB) = 1105924 Test 153 regional_atmaq PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq_faster -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_16348/regional_atmaq_faster +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/regional_atmaq_faster Checking test 154 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4614,87 +4672,25 @@ Checking test 154 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 679.449368 - 0: The maximum resident set size (KB) = 1084292 + 0: The total amount of wall time = 657.018414 + 0: The maximum resident set size (KB) = 1097368 Test 154 regional_atmaq_faster PASS FAILED TESTS: -Test cpld_decomp_p8 006 failed in run_test failed Test cpld_debug_p8 015 failed in run_test failed REGRESSION TEST FAILED -Tue Mar 14 00:15:26 EDT 2023 -Elapsed time: 02h:23m:54s. Have a nice day! -Tue Mar 14 08:37:21 EDT 2023 +Tue Mar 14 20:08:33 EDT 2023 +Elapsed time: 03h:32m:31s. Have a nice day! +Tue Mar 14 20:22:32 EDT 2023 Start Regression test -Compile 001 elapsed time 1078 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 501 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/Jessica.Meixner/FV3_RT/rt_5111/cpld_decomp_p8 -Checking test 001 cpld_decomp_p8 results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 379.437314 - 0: The maximum resident set size (KB) = 1575716 - -Test 001 cpld_decomp_p8 PASS - +Compile 001 elapsed time 335 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_debug_p8 -working dir = /lustre/f2/scratch/Jessica.Meixner/FV3_RT/rt_5111/cpld_debug_p8 -Checking test 002 cpld_debug_p8 results .... +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_35139/cpld_debug_p8 +Checking test 001 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -4746,12 +4742,12 @@ Checking test 002 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 591.550285 - 0: The maximum resident set size (KB) = 1595784 + 0: The total amount of wall time = 596.109147 + 0: The maximum resident set size (KB) = 1596072 -Test 002 cpld_debug_p8 PASS +Test 001 cpld_debug_p8 PASS REGRESSION TEST WAS SUCCESSFUL -Tue Mar 14 09:10:19 EDT 2023 -Elapsed time: 00h:33m:24s. Have a nice day! +Tue Mar 14 20:43:26 EDT 2023 +Elapsed time: 00h:21m:16s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 2143d4c0471..ad1e71f754f 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,21 +1,21 @@ -Tue Mar 14 01:18:38 UTC 2023 +Tue Mar 14 20:33:31 UTC 2023 Start Regression test -Compile 001 elapsed time 180 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 184 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 314 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 95 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 001 elapsed time 178 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 197 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 321 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 96 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug Compile 005 elapsed time 182 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 388 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 312 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 314 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 266 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 221 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 147 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 012 elapsed time 112 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 400 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 317 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 327 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 272 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 233 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 144 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 012 elapsed time 116 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/control_c48 Checking test 001 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -54,14 +54,14 @@ Checking test 001 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 685.871707 -0: The maximum resident set size (KB) = 702312 +0: The total amount of wall time = 686.023018 +0: The maximum resident set size (KB) = 699160 Test 001 control_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/control_stochy Checking test 002 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -72,14 +72,14 @@ Checking test 002 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 659.206878 - 0: The maximum resident set size (KB) = 479304 + 0: The total amount of wall time = 647.302280 + 0: The maximum resident set size (KB) = 479368 Test 002 control_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/control_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/control_ras Checking test 003 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -90,14 +90,14 @@ Checking test 003 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 835.205574 - 0: The maximum resident set size (KB) = 484824 + 0: The total amount of wall time = 832.047294 + 0: The maximum resident set size (KB) = 487932 Test 003 control_ras PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/control_p8 Checking test 004 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -144,14 +144,14 @@ Checking test 004 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 896.145318 - 0: The maximum resident set size (KB) = 1235076 + 0: The total amount of wall time = 901.164362 + 0: The maximum resident set size (KB) = 1232980 Test 004 control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/rap_control Checking test 005 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -198,14 +198,14 @@ Checking test 005 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1481.700860 - 0: The maximum resident set size (KB) = 828772 + 0: The total amount of wall time = 1491.023439 + 0: The maximum resident set size (KB) = 829676 Test 005 rap_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/rap_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/rap_decomp Checking test 006 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -252,14 +252,14 @@ Checking test 006 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1437.078717 - 0: The maximum resident set size (KB) = 834356 + 0: The total amount of wall time = 1466.499319 + 0: The maximum resident set size (KB) = 833536 Test 006 rap_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/rap_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/rap_2threads Checking test 007 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -306,14 +306,14 @@ Checking test 007 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1363.974420 - 0: The maximum resident set size (KB) = 899712 + 0: The total amount of wall time = 1364.605035 + 0: The maximum resident set size (KB) = 895248 Test 007 rap_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/rap_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/rap_restart Checking test 008 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -352,14 +352,14 @@ Checking test 008 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 721.878961 - 0: The maximum resident set size (KB) = 547336 + 0: The total amount of wall time = 731.653769 + 0: The maximum resident set size (KB) = 546260 Test 008 rap_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/rap_sfcdiff Checking test 009 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -406,14 +406,14 @@ Checking test 009 rap_sfcdiff results .... Comparing 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.554609 - 0: The maximum resident set size (KB) = 827048 + 0: The total amount of wall time = 1448.552454 + 0: The maximum resident set size (KB) = 829228 Test 009 rap_sfcdiff PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/rap_sfcdiff_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/rap_sfcdiff_decomp Checking test 010 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -460,14 +460,14 @@ Checking test 010 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1435.362960 - 0: The maximum resident set size (KB) = 829572 + 0: The total amount of wall time = 1441.301941 + 0: The maximum resident set size (KB) = 833136 Test 010 rap_sfcdiff_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/rap_sfcdiff_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/rap_sfcdiff_restart Checking test 011 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -506,14 +506,14 @@ Checking test 011 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1073.101195 - 0: The maximum resident set size (KB) = 553764 + 0: The total amount of wall time = 1070.223474 + 0: The maximum resident set size (KB) = 550208 Test 011 rap_sfcdiff_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/hrrr_control Checking test 012 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -560,14 +560,14 @@ Checking test 012 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1467.314960 - 0: The maximum resident set size (KB) = 826692 + 0: The total amount of wall time = 1428.860401 + 0: The maximum resident set size (KB) = 831232 Test 012 hrrr_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/hrrr_control_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/hrrr_control_2threads Checking test 013 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -614,14 +614,14 @@ Checking test 013 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1315.000444 - 0: The maximum resident set size (KB) = 893820 + 0: The total amount of wall time = 1272.008738 + 0: The maximum resident set size (KB) = 888212 Test 013 hrrr_control_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/hrrr_control_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/hrrr_control_decomp Checking test 014 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -668,14 +668,14 @@ Checking test 014 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1432.182447 - 0: The maximum resident set size (KB) = 830820 + 0: The total amount of wall time = 1409.401887 + 0: The maximum resident set size (KB) = 828812 Test 014 hrrr_control_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/hrrr_control_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/hrrr_control_restart Checking test 015 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -714,14 +714,14 @@ Checking test 015 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1041.707336 - 0: The maximum resident set size (KB) = 547088 + 0: The total amount of wall time = 1055.250170 + 0: The maximum resident set size (KB) = 551040 Test 015 hrrr_control_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/rrfs_v1beta Checking test 016 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -768,14 +768,14 @@ Checking test 016 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1451.428825 - 0: The maximum resident set size (KB) = 823780 + 0: The total amount of wall time = 1420.021203 + 0: The maximum resident set size (KB) = 830332 Test 016 rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/rrfs_conus13km_hrrr_warm Checking test 017 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -784,14 +784,14 @@ Checking test 017 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 774.380972 - 0: The maximum resident set size (KB) = 635460 + 0: The total amount of wall time = 739.667447 + 0: The maximum resident set size (KB) = 636104 Test 017 rrfs_conus13km_hrrr_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/rrfs_smoke_conus13km_hrrr_warm Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -800,14 +800,14 @@ Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 741.227633 - 0: The maximum resident set size (KB) = 650696 + 0: The total amount of wall time = 779.095894 + 0: The maximum resident set size (KB) = 651984 Test 018 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/rrfs_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/rrfs_conus13km_radar_tten_warm Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -816,14 +816,14 @@ Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 727.677854 - 0: The maximum resident set size (KB) = 638948 + 0: The total amount of wall time = 796.526705 + 0: The maximum resident set size (KB) = 639736 Test 019 rrfs_conus13km_radar_tten_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/rrfs_conus13km_radar_tten_warm_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/rrfs_conus13km_radar_tten_warm_2threads Checking test 020 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -832,208 +832,208 @@ Checking test 020 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 910.275340 - 0: The maximum resident set size (KB) = 637364 + 0: The total amount of wall time = 903.216366 + 0: The maximum resident set size (KB) = 637792 Test 020 rrfs_conus13km_radar_tten_warm_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/control_diag_debug Checking test 021 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 131.857250 - 0: The maximum resident set size (KB) = 533492 + 0: The total amount of wall time = 130.367594 + 0: The maximum resident set size (KB) = 529940 Test 021 control_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/regional_debug Checking test 022 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 570.756507 - 0: The maximum resident set size (KB) = 594108 + 0: The total amount of wall time = 617.364936 + 0: The maximum resident set size (KB) = 597352 Test 022 regional_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/rap_control_debug Checking test 023 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 181.283020 - 0: The maximum resident set size (KB) = 848856 + 0: The total amount of wall time = 174.043589 + 0: The maximum resident set size (KB) = 850396 Test 023 rap_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/hrrr_control_debug Checking test 024 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 174.037937 - 0: The maximum resident set size (KB) = 841016 + 0: The total amount of wall time = 175.448693 + 0: The maximum resident set size (KB) = 840148 Test 024 hrrr_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/rap_diag_debug Checking test 025 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 212.242713 - 0: The maximum resident set size (KB) = 928280 + 0: The total amount of wall time = 219.681105 + 0: The maximum resident set size (KB) = 931752 Test 025 rap_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/rap_noah_sfcdiff_cires_ugwp_debug Checking test 026 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.086566 - 0: The maximum resident set size (KB) = 840496 + 0: The total amount of wall time = 277.711459 + 0: The maximum resident set size (KB) = 844880 Test 026 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/rap_progcld_thompson_debug Checking test 027 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 176.635253 - 0: The maximum resident set size (KB) = 846536 + 0: The total amount of wall time = 178.167207 + 0: The maximum resident set size (KB) = 849168 Test 027 rap_progcld_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/rrfs_v1beta_debug Checking test 028 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 177.344618 - 0: The maximum resident set size (KB) = 841024 + 0: The total amount of wall time = 174.578821 + 0: The maximum resident set size (KB) = 842208 Test 028 rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/control_ras_debug Checking test 029 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 107.542396 - 0: The maximum resident set size (KB) = 484888 + 0: The total amount of wall time = 104.379743 + 0: The maximum resident set size (KB) = 487696 Test 029 control_ras_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/control_stochy_debug Checking test 030 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 122.320076 - 0: The maximum resident set size (KB) = 477064 + 0: The total amount of wall time = 117.581379 + 0: The maximum resident set size (KB) = 479128 Test 030 control_stochy_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/control_debug_p8 Checking test 031 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 118.625767 - 0: The maximum resident set size (KB) = 1234076 + 0: The total amount of wall time = 119.792186 + 0: The maximum resident set size (KB) = 1231776 Test 031 control_debug_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/rrfs_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/rrfs_conus13km_hrrr_warm_debug Checking test 032 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 581.310854 - 0: The maximum resident set size (KB) = 653940 + 0: The total amount of wall time = 584.802724 + 0: The maximum resident set size (KB) = 654012 Test 032 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_conus13km_radar_tten_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/rrfs_conus13km_radar_tten_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/rrfs_conus13km_radar_tten_warm_debug Checking test 033 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 543.172149 - 0: The maximum resident set size (KB) = 655880 + 0: The total amount of wall time = 557.425146 + 0: The maximum resident set size (KB) = 656148 Test 033 rrfs_conus13km_radar_tten_warm_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/control_wam_debug Checking test 034 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 186.697462 - 0: The maximum resident set size (KB) = 196220 + 0: The total amount of wall time = 186.475952 + 0: The maximum resident set size (KB) = 196048 Test 034 control_wam_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/rap_control_dyn32_phy32 Checking test 035 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1080,14 +1080,14 @@ Checking test 035 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1460.514614 - 0: The maximum resident set size (KB) = 684192 + 0: The total amount of wall time = 1465.520096 + 0: The maximum resident set size (KB) = 684112 Test 035 rap_control_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/hrrr_control_dyn32_phy32 Checking test 036 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1134,14 +1134,14 @@ Checking test 036 hrrr_control_dyn32_phy32 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 = 736.383454 - 0: The maximum resident set size (KB) = 685228 + 0: The total amount of wall time = 719.530932 + 0: The maximum resident set size (KB) = 686104 Test 036 hrrr_control_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/rap_2threads_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/rap_2threads_dyn32_phy32 Checking test 037 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1188,14 +1188,14 @@ Checking test 037 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1321.323483 - 0: The maximum resident set size (KB) = 732936 + 0: The total amount of wall time = 1373.110792 + 0: The maximum resident set size (KB) = 730104 Test 037 rap_2threads_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/hrrr_control_2threads_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/hrrr_control_2threads_dyn32_phy32 Checking test 038 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1242,14 +1242,14 @@ Checking test 038 hrrr_control_2threads_dyn32_phy32 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 = 677.986373 - 0: The maximum resident set size (KB) = 728960 + 0: The total amount of wall time = 690.472827 + 0: The maximum resident set size (KB) = 727244 Test 038 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/hrrr_control_decomp_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/hrrr_control_decomp_dyn32_phy32 Checking test 039 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1296,14 +1296,14 @@ Checking test 039 hrrr_control_decomp_dyn32_phy32 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 = 707.577927 - 0: The maximum resident set size (KB) = 683848 + 0: The total amount of wall time = 705.043073 + 0: The maximum resident set size (KB) = 689340 Test 039 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/rap_restart_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/rap_restart_dyn32_phy32 Checking test 040 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1342,14 +1342,14 @@ Checking test 040 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1055.917213 - 0: The maximum resident set size (KB) = 517244 + 0: The total amount of wall time = 1071.576663 + 0: The maximum resident set size (KB) = 511752 Test 040 rap_restart_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/hrrr_control_restart_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/hrrr_control_restart_dyn32_phy32 Checking test 041 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1388,14 +1388,14 @@ Checking test 041 hrrr_control_restart_dyn32_phy32 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 = 364.072439 - 0: The maximum resident set size (KB) = 508236 + 0: The total amount of wall time = 367.644482 + 0: The maximum resident set size (KB) = 512300 Test 041 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/rap_control_dyn64_phy32 Checking test 042 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1442,56 +1442,56 @@ Checking test 042 rap_control_dyn64_phy32 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 = 1059.285964 - 0: The maximum resident set size (KB) = 711788 + 0: The total amount of wall time = 1064.117859 + 0: The maximum resident set size (KB) = 711264 Test 042 rap_control_dyn64_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/rap_control_debug_dyn32_phy32 Checking test 043 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 172.517556 - 0: The maximum resident set size (KB) = 704748 + 0: The total amount of wall time = 177.298675 + 0: The maximum resident set size (KB) = 708340 Test 043 rap_control_debug_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/hrrr_control_debug_dyn32_phy32 Checking test 044 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 170.029556 - 0: The maximum resident set size (KB) = 701984 + 0: The total amount of wall time = 174.080264 + 0: The maximum resident set size (KB) = 708088 Test 044 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/rap_control_dyn64_phy32_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/rap_control_dyn64_phy32_debug Checking test 045 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 207.217954 - 0: The maximum resident set size (KB) = 724012 + 0: The total amount of wall time = 206.558611 + 0: The maximum resident set size (KB) = 725036 Test 045 rap_control_dyn64_phy32_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/cpld_control_p8 Checking test 046 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1556,14 +1556,14 @@ Checking test 046 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1687.169685 - 0: The maximum resident set size (KB) = 1429480 + 0: The total amount of wall time = 1749.757108 + 0: The maximum resident set size (KB) = 1427852 Test 046 cpld_control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/cpld_control_nowave_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/cpld_control_nowave_noaero_p8 Checking test 047 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1625,14 +1625,14 @@ Checking test 047 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 1233.193815 - 0: The maximum resident set size (KB) = 1335076 + 0: The total amount of wall time = 1256.848384 + 0: The maximum resident set size (KB) = 1333488 Test 047 cpld_control_nowave_noaero_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/cpld_debug_p8 Checking test 048 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1685,25 +1685,25 @@ Checking test 048 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 849.010083 - 0: The maximum resident set size (KB) = 1446956 + 0: The total amount of wall time = 921.718033 + 0: The maximum resident set size (KB) = 1447072 Test 048 cpld_debug_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/datm_cdeps_control_cfsr Checking test 049 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 180.715136 - 0: The maximum resident set size (KB) = 663828 + 0: The total amount of wall time = 174.148197 + 0: The maximum resident set size (KB) = 662900 Test 049 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Tue Mar 14 02:12:43 UTC 2023 -Elapsed time: 00h:54m:05s. Have a nice day! +Tue Mar 14 21:28:09 UTC 2023 +Elapsed time: 00h:54m:39s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index dfc7c7856cd..6c469bca8af 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,42 +1,42 @@ -Tue Mar 14 01:02:52 UTC 2023 +Tue Mar 14 20:18:13 UTC 2023 Start Regression test -Compile 001 elapsed time 598 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 621 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 001 elapsed time 609 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 600 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON Compile 003 elapsed time 559 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 225 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 212 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 501 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 496 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 690 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 481 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 470 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 460 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 418 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 589 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 216 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 153 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 428 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 437 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 161 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 166 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 563 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 004 elapsed time 226 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 203 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 516 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 511 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 681 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 480 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 482 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 458 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 426 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 572 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 208 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 178 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 442 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 439 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 157 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 156 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 521 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 021 elapsed time 187 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 629 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 590 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 024 elapsed time 182 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 114 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 185 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 61 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 468 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 522 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 458 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 460 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 170 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 539 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 022 elapsed time 618 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 557 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 024 elapsed time 179 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 115 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 183 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 55 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 470 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 536 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 445 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 455 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 169 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 528 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_mixedmode -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/cpld_control_p8_mixedmode +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -101,14 +101,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 307.221136 - 0: The maximum resident set size (KB) = 3140152 + 0: The total amount of wall time = 304.001357 + 0: The maximum resident set size (KB) = 3138772 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_gfsv17 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/cpld_control_gfsv17 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -172,14 +172,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 222.631996 - 0: The maximum resident set size (KB) = 1736868 + 0: The total amount of wall time = 223.000226 + 0: The maximum resident set size (KB) = 1736640 Test 002 cpld_control_gfsv17 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -244,14 +244,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 337.620589 - 0: The maximum resident set size (KB) = 3179152 + 0: The total amount of wall time = 340.840770 + 0: The maximum resident set size (KB) = 3176120 Test 003 cpld_control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/cpld_restart_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -304,14 +304,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 198.722927 - 0: The maximum resident set size (KB) = 3055096 + 0: The total amount of wall time = 193.462503 + 0: The maximum resident set size (KB) = 3052136 Test 004 cpld_restart_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/cpld_2threads_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -364,14 +364,14 @@ Checking test 005 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 349.530375 - 0: The maximum resident set size (KB) = 3508296 + 0: The total amount of wall time = 355.303402 + 0: The maximum resident set size (KB) = 3512900 Test 005 cpld_2threads_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/cpld_decomp_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/cpld_decomp_p8 Checking test 006 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -424,14 +424,14 @@ Checking test 006 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 338.450619 - 0: The maximum resident set size (KB) = 3170632 + 0: The total amount of wall time = 340.897678 + 0: The maximum resident set size (KB) = 3171676 Test 006 cpld_decomp_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/cpld_mpi_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/cpld_mpi_p8 Checking test 007 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -484,14 +484,14 @@ Checking test 007 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 277.065736 - 0: The maximum resident set size (KB) = 3019492 + 0: The total amount of wall time = 279.510807 + 0: The maximum resident set size (KB) = 3017784 Test 007 cpld_mpi_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_ciceC_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/cpld_control_ciceC_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/cpld_control_ciceC_p8 Checking test 008 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -556,14 +556,14 @@ Checking test 008 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 335.329431 - 0: The maximum resident set size (KB) = 3177816 + 0: The total amount of wall time = 337.183129 + 0: The maximum resident set size (KB) = 3178224 Test 008 cpld_control_ciceC_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/cpld_control_c192_p8 Checking test 009 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -616,14 +616,14 @@ Checking test 009 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 580.740245 - 0: The maximum resident set size (KB) = 3252580 + 0: The total amount of wall time = 579.481769 + 0: The maximum resident set size (KB) = 3255572 Test 009 cpld_control_c192_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/cpld_restart_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/cpld_restart_c192_p8 Checking test 010 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -676,14 +676,14 @@ Checking test 010 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 408.705195 - 0: The maximum resident set size (KB) = 3155504 + 0: The total amount of wall time = 403.690271 + 0: The maximum resident set size (KB) = 3150172 Test 010 cpld_restart_c192_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/cpld_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/cpld_bmark_p8 Checking test 011 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -731,14 +731,14 @@ Checking test 011 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 712.502587 - 0: The maximum resident set size (KB) = 4033108 + 0: The total amount of wall time = 707.860354 + 0: The maximum resident set size (KB) = 4029260 Test 011 cpld_bmark_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/cpld_restart_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/cpld_restart_bmark_p8 Checking test 012 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -786,14 +786,14 @@ Checking test 012 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 444.277684 - 0: The maximum resident set size (KB) = 3972408 + 0: The total amount of wall time = 441.094338 + 0: The maximum resident set size (KB) = 3964120 Test 012 cpld_restart_bmark_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/cpld_control_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/cpld_control_noaero_p8 Checking test 013 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -857,14 +857,14 @@ Checking test 013 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 262.854982 - 0: The maximum resident set size (KB) = 1726776 + 0: The total amount of wall time = 261.155135 + 0: The maximum resident set size (KB) = 1727480 Test 013 cpld_control_noaero_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/cpld_control_nowave_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/cpld_control_nowave_noaero_p8 Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -926,14 +926,14 @@ Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 257.310744 - 0: The maximum resident set size (KB) = 1766140 + 0: The total amount of wall time = 257.158917 + 0: The maximum resident set size (KB) = 1766252 Test 014 cpld_control_nowave_noaero_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/cpld_debug_p8 Checking test 015 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -986,14 +986,14 @@ Checking test 015 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 643.828486 - 0: The maximum resident set size (KB) = 3240144 + 0: The total amount of wall time = 648.811540 + 0: The maximum resident set size (KB) = 3245412 Test 015 cpld_debug_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_debug_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/cpld_debug_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/cpld_debug_noaero_p8 Checking test 016 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1045,14 +1045,14 @@ Checking test 016 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 401.601314 - 0: The maximum resident set size (KB) = 1743524 + 0: The total amount of wall time = 397.736788 + 0: The maximum resident set size (KB) = 1736880 Test 016 cpld_debug_noaero_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8_agrid -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/cpld_control_noaero_p8_agrid +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/cpld_control_noaero_p8_agrid Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1114,14 +1114,14 @@ Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 267.324618 - 0: The maximum resident set size (KB) = 1765568 + 0: The total amount of wall time = 265.161111 + 0: The maximum resident set size (KB) = 1760940 Test 017 cpld_control_noaero_p8_agrid PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/cpld_control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/cpld_control_c48 Checking test 018 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1171,14 +1171,14 @@ Checking test 018 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 583.269253 - 0: The maximum resident set size (KB) = 2798096 + 0: The total amount of wall time = 583.481121 + 0: The maximum resident set size (KB) = 2809040 Test 018 cpld_control_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/cpld_warmstart_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/cpld_warmstart_c48 Checking test 019 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1228,14 +1228,14 @@ Checking test 019 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 155.745040 - 0: The maximum resident set size (KB) = 2798644 + 0: The total amount of wall time = 152.898864 + 0: The maximum resident set size (KB) = 2797908 Test 019 cpld_warmstart_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/cpld_restart_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/cpld_restart_c48 Checking test 020 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1285,14 +1285,14 @@ Checking test 020 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 82.024750 - 0: The maximum resident set size (KB) = 2251936 + 0: The total amount of wall time = 80.926920 + 0: The maximum resident set size (KB) = 2246308 Test 020 cpld_restart_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/cpld_control_p8_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/cpld_control_p8_faster Checking test 021 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1357,14 +1357,14 @@ Checking test 021 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 319.458710 - 0: The maximum resident set size (KB) = 3183208 + 0: The total amount of wall time = 323.314419 + 0: The maximum resident set size (KB) = 3182764 Test 021 cpld_control_p8_faster PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_CubedSphereGrid +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/control_CubedSphereGrid Checking test 022 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1391,28 +1391,28 @@ Checking test 022 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 129.325733 - 0: The maximum resident set size (KB) = 628420 + 0: The total amount of wall time = 129.418351 + 0: The maximum resident set size (KB) = 627536 Test 022 control_CubedSphereGrid PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_CubedSphereGrid_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/control_CubedSphereGrid_parallel Checking test 023 control_CubedSphereGrid_parallel results .... - Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 127.150938 - 0: The maximum resident set size (KB) = 627600 + 0: The total amount of wall time = 127.637593 + 0: The maximum resident set size (KB) = 625152 Test 023 control_CubedSphereGrid_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_latlon -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_latlon +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/control_latlon Checking test 024 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1423,14 +1423,14 @@ Checking test 024 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 132.459410 - 0: The maximum resident set size (KB) = 629972 + 0: The total amount of wall time = 134.404330 + 0: The maximum resident set size (KB) = 627440 Test 024 control_latlon PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_wrtGauss_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/control_wrtGauss_netcdf_parallel Checking test 025 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1441,14 +1441,14 @@ Checking test 025 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.830957 - 0: The maximum resident set size (KB) = 628164 + 0: The total amount of wall time = 136.370683 + 0: The maximum resident set size (KB) = 626200 Test 025 control_wrtGauss_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/control_c48 Checking test 026 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1487,14 +1487,14 @@ Checking test 026 control_c48 results .... Comparing 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.575712 -0: The maximum resident set size (KB) = 814768 +0: The total amount of wall time = 369.515464 +0: The maximum resident set size (KB) = 807812 Test 026 control_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/control_c192 Checking test 027 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1505,14 +1505,14 @@ Checking test 027 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 530.567762 - 0: The maximum resident set size (KB) = 763276 + 0: The total amount of wall time = 528.706838 + 0: The maximum resident set size (KB) = 758168 Test 027 control_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_c384 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/control_c384 Checking test 028 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1523,14 +1523,14 @@ Checking test 028 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 538.565027 - 0: The maximum resident set size (KB) = 1257272 + 0: The total amount of wall time = 530.508903 + 0: The maximum resident set size (KB) = 1254264 Test 028 control_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384gdas -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_c384gdas +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/control_c384gdas Checking test 029 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1573,14 +1573,14 @@ Checking test 029 control_c384gdas 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 = 475.361934 - 0: The maximum resident set size (KB) = 1375788 + 0: The total amount of wall time = 465.677757 + 0: The maximum resident set size (KB) = 1367500 Test 029 control_c384gdas PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/control_stochy Checking test 030 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1591,28 +1591,28 @@ Checking test 030 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 87.669998 - 0: The maximum resident set size (KB) = 629512 + 0: The total amount of wall time = 86.572748 + 0: The maximum resident set size (KB) = 631920 Test 030 control_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_stochy_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/control_stochy_restart Checking test 031 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 47.275305 - 0: The maximum resident set size (KB) = 483676 + 0: The total amount of wall time = 46.567475 + 0: The maximum resident set size (KB) = 485092 Test 031 control_stochy_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_lndp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/control_lndp Checking test 032 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1623,14 +1623,14 @@ Checking test 032 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 81.046872 - 0: The maximum resident set size (KB) = 630828 + 0: The total amount of wall time = 81.645467 + 0: The maximum resident set size (KB) = 628752 Test 032 control_lndp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr4 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_iovr4 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/control_iovr4 Checking test 033 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1645,14 +1645,14 @@ Checking test 033 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.379899 - 0: The maximum resident set size (KB) = 628184 + 0: The total amount of wall time = 136.409163 + 0: The maximum resident set size (KB) = 630896 Test 033 control_iovr4 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr5 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_iovr5 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/control_iovr5 Checking test 034 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1667,14 +1667,14 @@ Checking test 034 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.569747 - 0: The maximum resident set size (KB) = 632268 + 0: The total amount of wall time = 136.126930 + 0: The maximum resident set size (KB) = 631944 Test 034 control_iovr5 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/control_p8 Checking test 035 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1721,14 +1721,14 @@ Checking test 035 control_p8 results .... Comparing 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.152452 - 0: The maximum resident set size (KB) = 1600108 + 0: The total amount of wall time = 165.802729 + 0: The maximum resident set size (KB) = 1604516 Test 035 control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_p8_lndp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/control_p8_lndp Checking test 036 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1747,14 +1747,14 @@ Checking test 036 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 316.382797 - 0: The maximum resident set size (KB) = 1598328 + 0: The total amount of wall time = 312.884003 + 0: The maximum resident set size (KB) = 1599772 Test 036 control_p8_lndp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_restart_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/control_restart_p8 Checking test 037 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1793,14 +1793,14 @@ Checking test 037 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 86.586472 - 0: The maximum resident set size (KB) = 878656 + 0: The total amount of wall time = 88.027708 + 0: The maximum resident set size (KB) = 872428 Test 037 control_restart_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_decomp_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/control_decomp_p8 Checking test 038 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1843,14 +1843,14 @@ Checking test 038 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 178.023795 - 0: The maximum resident set size (KB) = 1584536 + 0: The total amount of wall time = 172.812875 + 0: The maximum resident set size (KB) = 1590384 Test 038 control_decomp_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_2threads_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/control_2threads_p8 Checking test 039 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1893,14 +1893,14 @@ Checking test 039 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 168.625635 - 0: The maximum resident set size (KB) = 1678416 + 0: The total amount of wall time = 162.841117 + 0: The maximum resident set size (KB) = 1676928 Test 039 control_2threads_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_p8_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/control_p8_rrtmgp Checking test 040 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1947,14 +1947,14 @@ Checking test 040 control_p8_rrtmgp results .... Comparing 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.947706 - 0: The maximum resident set size (KB) = 1675140 + 0: The total amount of wall time = 223.170563 + 0: The maximum resident set size (KB) = 1670436 Test 040 control_p8_rrtmgp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/merra2_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/merra2_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/merra2_thompson Checking test 041 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2001,14 +2001,14 @@ Checking test 041 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 189.659849 - 0: The maximum resident set size (KB) = 1612768 + 0: The total amount of wall time = 188.423250 + 0: The maximum resident set size (KB) = 1608972 Test 041 merra2_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/regional_control Checking test 042 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2019,28 +2019,28 @@ Checking test 042 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 298.207262 - 0: The maximum resident set size (KB) = 869608 + 0: The total amount of wall time = 296.993364 + 0: The maximum resident set size (KB) = 866036 Test 042 regional_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/regional_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/regional_restart Checking test 043 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 151.105835 - 0: The maximum resident set size (KB) = 858480 + 0: The total amount of wall time = 151.575950 + 0: The maximum resident set size (KB) = 860064 Test 043 regional_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/regional_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/regional_decomp Checking test 044 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2051,14 +2051,14 @@ Checking test 044 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 315.113515 - 0: The maximum resident set size (KB) = 862316 + 0: The total amount of wall time = 313.822195 + 0: The maximum resident set size (KB) = 859420 Test 044 regional_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/regional_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/regional_2threads Checking test 045 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2069,14 +2069,14 @@ Checking test 045 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 183.774985 - 0: The maximum resident set size (KB) = 846352 + 0: The total amount of wall time = 183.720070 + 0: The maximum resident set size (KB) = 841748 Test 045 regional_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_noquilt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/regional_noquilt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/regional_noquilt Checking test 046 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2084,28 +2084,28 @@ Checking test 046 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 319.752331 - 0: The maximum resident set size (KB) = 858436 + 0: The total amount of wall time = 318.546456 + 0: The maximum resident set size (KB) = 856524 Test 046 regional_noquilt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/regional_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/regional_netcdf_parallel Checking test 047 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 295.265561 - 0: The maximum resident set size (KB) = 862784 + 0: The total amount of wall time = 292.230467 + 0: The maximum resident set size (KB) = 859696 Test 047 regional_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/regional_2dwrtdecomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/regional_2dwrtdecomp Checking test 048 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2116,14 +2116,14 @@ Checking test 048 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 299.883535 - 0: The maximum resident set size (KB) = 868976 + 0: The total amount of wall time = 297.249194 + 0: The maximum resident set size (KB) = 868496 Test 048 regional_2dwrtdecomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/fv3_regional_wofs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/regional_wofs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/regional_wofs Checking test 049 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2134,14 +2134,14 @@ Checking test 049 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 378.073893 - 0: The maximum resident set size (KB) = 630048 + 0: The total amount of wall time = 375.493555 + 0: The maximum resident set size (KB) = 627064 Test 049 regional_wofs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/rap_control Checking test 050 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2188,14 +2188,14 @@ Checking test 050 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 457.286327 - 0: The maximum resident set size (KB) = 1062528 + 0: The total amount of wall time = 455.946670 + 0: The maximum resident set size (KB) = 1060416 Test 050 rap_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/regional_spp_sppt_shum_skeb +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/regional_spp_sppt_shum_skeb Checking test 051 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2206,14 +2206,14 @@ Checking test 051 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 282.929494 - 0: The maximum resident set size (KB) = 1182552 + 0: The total amount of wall time = 282.232424 + 0: The maximum resident set size (KB) = 1181080 Test 051 regional_spp_sppt_shum_skeb PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rap_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/rap_decomp Checking test 052 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2260,14 +2260,14 @@ Checking test 052 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 482.377870 - 0: The maximum resident set size (KB) = 1005644 + 0: The total amount of wall time = 480.363155 + 0: The maximum resident set size (KB) = 1004604 Test 052 rap_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rap_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/rap_2threads Checking test 053 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2314,14 +2314,14 @@ Checking test 053 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 439.657649 - 0: The maximum resident set size (KB) = 1132704 + 0: The total amount of wall time = 441.396710 + 0: The maximum resident set size (KB) = 1133556 Test 053 rap_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rap_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/rap_restart Checking test 054 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2360,14 +2360,14 @@ Checking test 054 rap_restart results .... Comparing 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.274557 - 0: The maximum resident set size (KB) = 979104 + 0: The total amount of wall time = 232.198989 + 0: The maximum resident set size (KB) = 970552 Test 054 rap_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/rap_sfcdiff Checking test 055 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2414,14 +2414,14 @@ Checking test 055 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 451.046441 - 0: The maximum resident set size (KB) = 1067020 + 0: The total amount of wall time = 453.926537 + 0: The maximum resident set size (KB) = 1069196 Test 055 rap_sfcdiff PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rap_sfcdiff_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/rap_sfcdiff_decomp Checking test 056 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2468,14 +2468,14 @@ Checking test 056 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 476.904897 - 0: The maximum resident set size (KB) = 1002688 + 0: The total amount of wall time = 478.236418 + 0: The maximum resident set size (KB) = 1005336 Test 056 rap_sfcdiff_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rap_sfcdiff_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/rap_sfcdiff_restart Checking test 057 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2514,14 +2514,14 @@ Checking test 057 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 342.266838 - 0: The maximum resident set size (KB) = 979144 + 0: The total amount of wall time = 343.085484 + 0: The maximum resident set size (KB) = 986912 Test 057 rap_sfcdiff_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/hrrr_control Checking test 058 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2568,14 +2568,14 @@ Checking test 058 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 436.018687 - 0: The maximum resident set size (KB) = 1061832 + 0: The total amount of wall time = 435.895193 + 0: The maximum resident set size (KB) = 1060980 Test 058 hrrr_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hrrr_control_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/hrrr_control_decomp Checking test 059 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2622,14 +2622,14 @@ Checking test 059 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 456.666807 - 0: The maximum resident set size (KB) = 1005440 + 0: The total amount of wall time = 456.052368 + 0: The maximum resident set size (KB) = 1001592 Test 059 hrrr_control_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hrrr_control_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/hrrr_control_2threads Checking test 060 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2676,14 +2676,14 @@ Checking test 060 hrrr_control_2threads results .... Comparing 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.933550 - 0: The maximum resident set size (KB) = 1131396 + 0: The total amount of wall time = 415.723288 + 0: The maximum resident set size (KB) = 1137200 Test 060 hrrr_control_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hrrr_control_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/hrrr_control_restart Checking test 061 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2722,14 +2722,14 @@ Checking test 061 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 330.449069 - 0: The maximum resident set size (KB) = 987544 + 0: The total amount of wall time = 329.373706 + 0: The maximum resident set size (KB) = 992584 Test 061 hrrr_control_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/rrfs_v1beta Checking test 062 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2776,14 +2776,14 @@ Checking test 062 rrfs_v1beta results .... Comparing 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.646060 - 0: The maximum resident set size (KB) = 1060100 + 0: The total amount of wall time = 446.100424 + 0: The maximum resident set size (KB) = 1057936 Test 062 rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rrfs_v1nssl +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/rrfs_v1nssl Checking test 063 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2798,14 +2798,14 @@ Checking test 063 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 527.559905 - 0: The maximum resident set size (KB) = 696316 + 0: The total amount of wall time = 524.495487 + 0: The maximum resident set size (KB) = 693420 Test 063 rrfs_v1nssl PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rrfs_v1nssl_nohailnoccn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/rrfs_v1nssl_nohailnoccn Checking test 064 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2820,14 +2820,14 @@ Checking test 064 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 512.966940 - 0: The maximum resident set size (KB) = 761772 + 0: The total amount of wall time = 512.736120 + 0: The maximum resident set size (KB) = 759456 Test 064 rrfs_v1nssl_nohailnoccn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/rrfs_conus13km_hrrr_warm Checking test 065 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2836,14 +2836,14 @@ Checking test 065 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 122.916329 - 0: The maximum resident set size (KB) = 930508 + 0: The total amount of wall time = 122.709839 + 0: The maximum resident set size (KB) = 933436 Test 065 rrfs_conus13km_hrrr_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/rrfs_smoke_conus13km_hrrr_warm Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2852,14 +2852,14 @@ Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 138.588293 - 0: The maximum resident set size (KB) = 962416 + 0: The total amount of wall time = 139.528827 + 0: The maximum resident set size (KB) = 958388 Test 066 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rrfs_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/rrfs_conus13km_radar_tten_warm Checking test 067 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2868,14 +2868,14 @@ Checking test 067 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 127.041292 - 0: The maximum resident set size (KB) = 936576 + 0: The total amount of wall time = 124.052408 + 0: The maximum resident set size (KB) = 935304 Test 067 rrfs_conus13km_radar_tten_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rrfs_conus13km_hrrr_warm_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/rrfs_conus13km_hrrr_warm_2threads Checking test 068 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2884,14 +2884,14 @@ Checking test 068 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 78.431746 - 0: The maximum resident set size (KB) = 839424 + 0: The total amount of wall time = 77.941019 + 0: The maximum resident set size (KB) = 843180 Test 068 rrfs_conus13km_hrrr_warm_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rrfs_conus13km_radar_tten_warm_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/rrfs_conus13km_radar_tten_warm_2threads Checking test 069 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2900,14 +2900,14 @@ Checking test 069 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 78.258180 - 0: The maximum resident set size (KB) = 883784 + 0: The total amount of wall time = 78.339092 + 0: The maximum resident set size (KB) = 848256 Test 069 rrfs_conus13km_radar_tten_warm_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_csawmg +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/control_csawmg Checking test 070 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2918,14 +2918,14 @@ Checking test 070 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 342.585193 - 0: The maximum resident set size (KB) = 728640 + 0: The total amount of wall time = 342.447105 + 0: The maximum resident set size (KB) = 725144 Test 070 control_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_csawmgt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/control_csawmgt Checking test 071 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2936,14 +2936,14 @@ Checking test 071 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 340.893034 - 0: The maximum resident set size (KB) = 731672 + 0: The total amount of wall time = 340.902454 + 0: The maximum resident set size (KB) = 728252 Test 071 control_csawmgt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/control_ras Checking test 072 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2954,26 +2954,26 @@ Checking test 072 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 179.470427 - 0: The maximum resident set size (KB) = 718292 + 0: The total amount of wall time = 179.915059 + 0: The maximum resident set size (KB) = 718600 Test 072 control_ras PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_wam +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/control_wam Checking test 073 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 112.823326 - 0: The maximum resident set size (KB) = 647560 + 0: The total amount of wall time = 112.817498 + 0: The maximum resident set size (KB) = 646680 Test 073 control_wam PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_p8_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/control_p8_faster Checking test 074 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3020,14 +3020,14 @@ Checking test 074 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 151.900639 - 0: The maximum resident set size (KB) = 1607516 + 0: The total amount of wall time = 152.126469 + 0: The maximum resident set size (KB) = 1600388 Test 074 control_p8_faster PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/regional_control_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/regional_control_faster Checking test 075 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3038,42 +3038,42 @@ Checking test 075 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 270.437061 - 0: The maximum resident set size (KB) = 864472 + 0: The total amount of wall time = 272.299957 + 0: The maximum resident set size (KB) = 872260 Test 075 regional_control_faster PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rrfs_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/rrfs_conus13km_hrrr_warm_debug Checking test 076 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 724.459357 - 0: The maximum resident set size (KB) = 962876 + 0: The total amount of wall time = 723.866514 + 0: The maximum resident set size (KB) = 960396 Test 076 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rrfs_conus13km_radar_tten_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/rrfs_conus13km_radar_tten_warm_debug Checking test 077 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 726.871197 - 0: The maximum resident set size (KB) = 965680 + 0: The total amount of wall time = 718.584891 + 0: The maximum resident set size (KB) = 966532 Test 077 rrfs_conus13km_radar_tten_warm_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_CubedSphereGrid_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/control_CubedSphereGrid_debug Checking test 078 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3100,334 +3100,334 @@ Checking test 078 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 162.614884 - 0: The maximum resident set size (KB) = 795052 + 0: The total amount of wall time = 160.919267 + 0: The maximum resident set size (KB) = 797380 Test 078 control_CubedSphereGrid_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_wrtGauss_netcdf_parallel_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/control_wrtGauss_netcdf_parallel_debug Checking test 079 control_wrtGauss_netcdf_parallel_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 151.261332 - 0: The maximum resident set size (KB) = 791020 + 0: The total amount of wall time = 149.768882 + 0: The maximum resident set size (KB) = 796244 Test 079 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/control_stochy_debug Checking test 080 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 168.272166 - 0: The maximum resident set size (KB) = 797872 + 0: The total amount of wall time = 171.507608 + 0: The maximum resident set size (KB) = 798868 Test 080 control_stochy_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/control_lndp_debug Checking test 081 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 154.223818 - 0: The maximum resident set size (KB) = 797856 + 0: The total amount of wall time = 156.023176 + 0: The maximum resident set size (KB) = 799296 Test 081 control_lndp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_csawmg_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/control_csawmg_debug Checking test 082 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 230.571831 - 0: The maximum resident set size (KB) = 848408 + 0: The total amount of wall time = 232.161469 + 0: The maximum resident set size (KB) = 847092 Test 082 control_csawmg_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_csawmgt_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/control_csawmgt_debug Checking test 083 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 225.138000 - 0: The maximum resident set size (KB) = 840036 + 0: The total amount of wall time = 227.062910 + 0: The maximum resident set size (KB) = 844376 Test 083 control_csawmgt_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/control_ras_debug Checking test 084 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 154.972680 - 0: The maximum resident set size (KB) = 806112 + 0: The total amount of wall time = 153.561664 + 0: The maximum resident set size (KB) = 806276 Test 084 control_ras_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/control_diag_debug Checking test 085 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 161.102472 - 0: The maximum resident set size (KB) = 852712 + 0: The total amount of wall time = 157.556193 + 0: The maximum resident set size (KB) = 856148 Test 085 control_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/control_debug_p8 Checking test 086 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 169.907390 - 0: The maximum resident set size (KB) = 1628396 + 0: The total amount of wall time = 169.752491 + 0: The maximum resident set size (KB) = 1631288 Test 086 control_debug_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/regional_debug Checking test 087 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1005.893574 - 0: The maximum resident set size (KB) = 891616 + 0: The total amount of wall time = 982.945094 + 0: The maximum resident set size (KB) = 886084 Test 087 regional_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/rap_control_debug Checking test 088 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.837989 - 0: The maximum resident set size (KB) = 1176976 + 0: The total amount of wall time = 274.460171 + 0: The maximum resident set size (KB) = 1176984 Test 088 rap_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/hrrr_control_debug Checking test 089 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 268.704799 - 0: The maximum resident set size (KB) = 1179500 + 0: The total amount of wall time = 271.178532 + 0: The maximum resident set size (KB) = 1175528 Test 089 hrrr_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rap_unified_drag_suite_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/rap_unified_drag_suite_debug Checking test 090 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.182977 - 0: The maximum resident set size (KB) = 1177128 + 0: The total amount of wall time = 275.342839 + 0: The maximum resident set size (KB) = 1178112 Test 090 rap_unified_drag_suite_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/rap_diag_debug Checking test 091 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 292.112111 - 0: The maximum resident set size (KB) = 1258464 + 0: The total amount of wall time = 292.711119 + 0: The maximum resident set size (KB) = 1257556 Test 091 rap_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rap_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/rap_cires_ugwp_debug Checking test 092 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.781163 - 0: The maximum resident set size (KB) = 1175124 + 0: The total amount of wall time = 280.478719 + 0: The maximum resident set size (KB) = 1177568 Test 092 rap_cires_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rap_unified_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/rap_unified_ugwp_debug Checking test 093 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.043088 - 0: The maximum resident set size (KB) = 1178708 + 0: The total amount of wall time = 280.459335 + 0: The maximum resident set size (KB) = 1178712 Test 093 rap_unified_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rap_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/rap_lndp_debug Checking test 094 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 278.562159 - 0: The maximum resident set size (KB) = 1176952 + 0: The total amount of wall time = 281.744220 + 0: The maximum resident set size (KB) = 1175096 Test 094 rap_lndp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_flake_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rap_flake_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/rap_flake_debug Checking test 095 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 270.417117 - 0: The maximum resident set size (KB) = 1176180 + 0: The total amount of wall time = 272.304635 + 0: The maximum resident set size (KB) = 1177916 Test 095 rap_flake_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/rap_progcld_thompson_debug Checking test 096 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.241406 - 0: The maximum resident set size (KB) = 1173156 + 0: The total amount of wall time = 274.776028 + 0: The maximum resident set size (KB) = 1175876 Test 096 rap_progcld_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rap_noah_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/rap_noah_debug Checking test 097 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 270.590600 - 0: The maximum resident set size (KB) = 1180780 + 0: The total amount of wall time = 270.583806 + 0: The maximum resident set size (KB) = 1170208 Test 097 rap_noah_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rap_sfcdiff_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/rap_sfcdiff_debug Checking test 098 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.658775 - 0: The maximum resident set size (KB) = 1179596 + 0: The total amount of wall time = 275.317524 + 0: The maximum resident set size (KB) = 1176828 Test 098 rap_sfcdiff_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/rap_noah_sfcdiff_cires_ugwp_debug Checking test 099 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 442.548197 - 0: The maximum resident set size (KB) = 1173372 + 0: The total amount of wall time = 451.089113 + 0: The maximum resident set size (KB) = 1173364 Test 099 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/rrfs_v1beta_debug Checking test 100 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.801710 - 0: The maximum resident set size (KB) = 1177084 + 0: The total amount of wall time = 271.492625 + 0: The maximum resident set size (KB) = 1171208 Test 100 rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/control_wam_debug Checking test 101 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 272.949961 - 0: The maximum resident set size (KB) = 522068 + 0: The total amount of wall time = 286.007208 + 0: The maximum resident set size (KB) = 520124 Test 101 control_wam_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 102 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3438,14 +3438,14 @@ Checking test 102 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 259.694383 - 0: The maximum resident set size (KB) = 1072796 + 0: The total amount of wall time = 261.568257 + 0: The maximum resident set size (KB) = 1072068 Test 102 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/rap_control_dyn32_phy32 Checking test 103 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3492,14 +3492,14 @@ Checking test 103 rap_control_dyn32_phy32 results .... Comparing 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.589805 - 0: The maximum resident set size (KB) = 1005840 + 0: The total amount of wall time = 369.830929 + 0: The maximum resident set size (KB) = 1003732 Test 103 rap_control_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/hrrr_control_dyn32_phy32 Checking test 104 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3546,14 +3546,14 @@ Checking test 104 hrrr_control_dyn32_phy32 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 = 194.723108 - 0: The maximum resident set size (KB) = 948932 + 0: The total amount of wall time = 192.765721 + 0: The maximum resident set size (KB) = 962596 Test 104 hrrr_control_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rap_2threads_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/rap_2threads_dyn32_phy32 Checking test 105 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3600,14 +3600,14 @@ Checking test 105 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 357.554377 - 0: The maximum resident set size (KB) = 1025644 + 0: The total amount of wall time = 358.829427 + 0: The maximum resident set size (KB) = 1024344 Test 105 rap_2threads_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hrrr_control_2threads_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/hrrr_control_2threads_dyn32_phy32 Checking test 106 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3654,14 +3654,14 @@ Checking test 106 hrrr_control_2threads_dyn32_phy32 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 = 189.411512 - 0: The maximum resident set size (KB) = 1003256 + 0: The total amount of wall time = 190.926596 + 0: The maximum resident set size (KB) = 1006588 Test 106 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hrrr_control_decomp_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/hrrr_control_decomp_dyn32_phy32 Checking test 107 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3708,14 +3708,14 @@ Checking test 107 hrrr_control_decomp_dyn32_phy32 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 = 204.493453 - 0: The maximum resident set size (KB) = 896168 + 0: The total amount of wall time = 204.337130 + 0: The maximum resident set size (KB) = 896944 Test 107 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rap_restart_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/rap_restart_dyn32_phy32 Checking test 108 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3754,14 +3754,14 @@ Checking test 108 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 279.088594 - 0: The maximum resident set size (KB) = 951728 + 0: The total amount of wall time = 279.954945 + 0: The maximum resident set size (KB) = 955032 Test 108 rap_restart_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hrrr_control_restart_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/hrrr_control_restart_dyn32_phy32 Checking test 109 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3800,14 +3800,14 @@ Checking test 109 hrrr_control_restart_dyn32_phy32 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 = 100.519303 - 0: The maximum resident set size (KB) = 869872 + 0: The total amount of wall time = 101.347360 + 0: The maximum resident set size (KB) = 869296 Test 109 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/rap_control_dyn64_phy32 Checking test 110 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3854,81 +3854,81 @@ Checking test 110 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 241.503284 - 0: The maximum resident set size (KB) = 966964 + 0: The total amount of wall time = 241.481881 + 0: The maximum resident set size (KB) = 963600 Test 110 rap_control_dyn64_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/rap_control_debug_dyn32_phy32 Checking test 111 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 270.714679 - 0: The maximum resident set size (KB) = 1056556 + 0: The total amount of wall time = 277.612331 + 0: The maximum resident set size (KB) = 1059256 Test 111 rap_control_debug_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/hrrr_control_debug_dyn32_phy32 Checking test 112 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 266.297158 - 0: The maximum resident set size (KB) = 1055340 + 0: The total amount of wall time = 268.434775 + 0: The maximum resident set size (KB) = 1051764 Test 112 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rap_control_dyn64_phy32_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/rap_control_dyn64_phy32_debug Checking test 113 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.435962 - 0: The maximum resident set size (KB) = 1107896 + 0: The total amount of wall time = 277.354864 + 0: The maximum resident set size (KB) = 1103544 Test 113 rap_control_dyn64_phy32_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hafs_regional_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/hafs_regional_atm Checking test 114 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 242.955584 - 0: The maximum resident set size (KB) = 1048488 + 0: The total amount of wall time = 237.034206 + 0: The maximum resident set size (KB) = 1047164 Test 114 hafs_regional_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hafs_regional_atm_thompson_gfdlsf +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/hafs_regional_atm_thompson_gfdlsf Checking test 115 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 328.182298 - 0: The maximum resident set size (KB) = 1413356 + 0: The total amount of wall time = 312.169155 + 0: The maximum resident set size (KB) = 1424336 Test 115 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hafs_regional_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/hafs_regional_atm_ocn Checking test 116 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3937,14 +3937,14 @@ Checking test 116 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 384.993350 - 0: The maximum resident set size (KB) = 1221444 + 0: The total amount of wall time = 378.533198 + 0: The maximum resident set size (KB) = 1222064 Test 116 hafs_regional_atm_ocn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hafs_regional_atm_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/hafs_regional_atm_wav Checking test 117 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3953,14 +3953,14 @@ Checking test 117 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 770.019132 - 0: The maximum resident set size (KB) = 1247720 + 0: The total amount of wall time = 740.207083 + 0: The maximum resident set size (KB) = 1246468 Test 117 hafs_regional_atm_wav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hafs_regional_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/hafs_regional_atm_ocn_wav Checking test 118 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3971,28 +3971,28 @@ Checking test 118 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 837.503485 - 0: The maximum resident set size (KB) = 1274444 + 0: The total amount of wall time = 841.973174 + 0: The maximum resident set size (KB) = 1272096 Test 118 hafs_regional_atm_ocn_wav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hafs_regional_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/hafs_regional_1nest_atm Checking test 119 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 323.356677 - 0: The maximum resident set size (KB) = 508348 + 0: The total amount of wall time = 319.514093 + 0: The maximum resident set size (KB) = 506264 Test 119 hafs_regional_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hafs_regional_telescopic_2nests_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/hafs_regional_telescopic_2nests_atm Checking test 120 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4001,28 +4001,28 @@ Checking test 120 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 368.543455 - 0: The maximum resident set size (KB) = 513552 + 0: The total amount of wall time = 366.678283 + 0: The maximum resident set size (KB) = 507572 Test 120 hafs_regional_telescopic_2nests_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hafs_global_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/hafs_global_1nest_atm Checking test 121 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 146.081995 - 0: The maximum resident set size (KB) = 352076 + 0: The total amount of wall time = 146.281659 + 0: The maximum resident set size (KB) = 345556 Test 121 hafs_global_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_multiple_4nests_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hafs_global_multiple_4nests_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/hafs_global_multiple_4nests_atm Checking test 122 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4040,14 +4040,14 @@ Checking test 122 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 418.454535 - 0: The maximum resident set size (KB) = 452284 + 0: The total amount of wall time = 416.808062 + 0: The maximum resident set size (KB) = 421648 Test 122 hafs_global_multiple_4nests_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hafs_regional_specified_moving_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/hafs_regional_specified_moving_1nest_atm Checking test 123 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4056,28 +4056,28 @@ Checking test 123 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 201.570506 - 0: The maximum resident set size (KB) = 517180 + 0: The total amount of wall time = 202.416348 + 0: The maximum resident set size (KB) = 518624 Test 123 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hafs_regional_storm_following_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/hafs_regional_storm_following_1nest_atm Checking test 124 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 191.223663 - 0: The maximum resident set size (KB) = 512396 + 0: The total amount of wall time = 191.144529 + 0: The maximum resident set size (KB) = 516664 Test 124 hafs_regional_storm_following_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hafs_regional_storm_following_1nest_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/hafs_regional_storm_following_1nest_atm_ocn Checking test 125 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4086,42 +4086,42 @@ Checking test 125 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 221.839606 - 0: The maximum resident set size (KB) = 553232 + 0: The total amount of wall time = 221.480180 + 0: The maximum resident set size (KB) = 554400 Test 125 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hafs_global_storm_following_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/hafs_global_storm_following_1nest_atm Checking test 126 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 57.966599 - 0: The maximum resident set size (KB) = 364772 + 0: The total amount of wall time = 58.415530 + 0: The maximum resident set size (KB) = 365852 Test 126 hafs_global_storm_following_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 127 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 774.344168 - 0: The maximum resident set size (KB) = 578000 + 0: The total amount of wall time = 756.740184 + 0: The maximum resident set size (KB) = 580572 Test 127 hafs_regional_storm_following_1nest_atm_ocn_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 128 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4132,14 +4132,14 @@ Checking test 128 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 512.999576 - 0: The maximum resident set size (KB) = 613656 + 0: The total amount of wall time = 516.106418 + 0: The maximum resident set size (KB) = 611104 Test 128 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_docn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hafs_regional_docn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/hafs_regional_docn Checking test 129 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4147,14 +4147,14 @@ Checking test 129 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 355.738028 - 0: The maximum resident set size (KB) = 1224592 + 0: The total amount of wall time = 356.615016 + 0: The maximum resident set size (KB) = 1227108 Test 129 hafs_regional_docn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_docn_oisst -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hafs_regional_docn_oisst +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/hafs_regional_docn_oisst Checking test 130 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4162,131 +4162,131 @@ Checking test 130 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 354.032162 - 0: The maximum resident set size (KB) = 1213328 + 0: The total amount of wall time = 356.157917 + 0: The maximum resident set size (KB) = 1209480 Test 130 hafs_regional_docn_oisst PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_datm_cdeps -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hafs_regional_datm_cdeps +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/hafs_regional_datm_cdeps Checking test 131 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 958.972743 - 0: The maximum resident set size (KB) = 1039888 + 0: The total amount of wall time = 945.283088 + 0: The maximum resident set size (KB) = 1038456 Test 131 hafs_regional_datm_cdeps PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/datm_cdeps_control_cfsr Checking test 132 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 155.509189 - 0: The maximum resident set size (KB) = 1067200 + 0: The total amount of wall time = 159.075720 + 0: The maximum resident set size (KB) = 1063844 Test 132 datm_cdeps_control_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/datm_cdeps_restart_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/datm_cdeps_restart_cfsr Checking test 133 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 91.274729 - 0: The maximum resident set size (KB) = 1011756 + 0: The total amount of wall time = 92.026370 + 0: The maximum resident set size (KB) = 1013648 Test 133 datm_cdeps_restart_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/datm_cdeps_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/datm_cdeps_control_gefs Checking test 134 datm_cdeps_control_gefs 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.717256 - 0: The maximum resident set size (KB) = 961944 + 0: The total amount of wall time = 148.161645 + 0: The maximum resident set size (KB) = 962640 Test 134 datm_cdeps_control_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_iau_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/datm_cdeps_iau_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/datm_cdeps_iau_gefs Checking test 135 datm_cdeps_iau_gefs 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.047499 - 0: The maximum resident set size (KB) = 958916 + 0: The total amount of wall time = 153.566866 + 0: The maximum resident set size (KB) = 961848 Test 135 datm_cdeps_iau_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_stochy_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/datm_cdeps_stochy_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/datm_cdeps_stochy_gefs Checking test 136 datm_cdeps_stochy_gefs 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 = 152.018825 - 0: The maximum resident set size (KB) = 970304 + 0: The total amount of wall time = 149.605150 + 0: The maximum resident set size (KB) = 966052 Test 136 datm_cdeps_stochy_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_ciceC_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/datm_cdeps_ciceC_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/datm_cdeps_ciceC_cfsr Checking test 137 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 154.712892 - 0: The maximum resident set size (KB) = 1070416 + 0: The total amount of wall time = 156.944397 + 0: The maximum resident set size (KB) = 1067992 Test 137 datm_cdeps_ciceC_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/datm_cdeps_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/datm_cdeps_bulk_cfsr Checking test 138 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 153.370258 - 0: The maximum resident set size (KB) = 1058064 + 0: The total amount of wall time = 157.361220 + 0: The maximum resident set size (KB) = 1075940 Test 138 datm_cdeps_bulk_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/datm_cdeps_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/datm_cdeps_bulk_gefs Checking test 139 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 144.055211 - 0: The maximum resident set size (KB) = 968664 + 0: The total amount of wall time = 147.013728 + 0: The maximum resident set size (KB) = 959204 Test 139 datm_cdeps_bulk_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/datm_cdeps_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/datm_cdeps_mx025_cfsr Checking test 140 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4295,14 +4295,14 @@ Checking test 140 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 399.453884 - 0: The maximum resident set size (KB) = 877240 + 0: The total amount of wall time = 399.026962 + 0: The maximum resident set size (KB) = 874320 Test 140 datm_cdeps_mx025_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/datm_cdeps_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/datm_cdeps_mx025_gefs Checking test 141 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4311,77 +4311,77 @@ Checking test 141 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 393.169957 - 0: The maximum resident set size (KB) = 935464 + 0: The total amount of wall time = 394.745539 + 0: The maximum resident set size (KB) = 929904 Test 141 datm_cdeps_mx025_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/datm_cdeps_multiple_files_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/datm_cdeps_multiple_files_cfsr Checking test 142 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 154.922241 - 0: The maximum resident set size (KB) = 1075212 + 0: The total amount of wall time = 155.026987 + 0: The maximum resident set size (KB) = 1080712 Test 142 datm_cdeps_multiple_files_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/datm_cdeps_3072x1536_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/datm_cdeps_3072x1536_cfsr Checking test 143 datm_cdeps_3072x1536_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 217.389971 - 0: The maximum resident set size (KB) = 2374092 + 0: The total amount of wall time = 217.282111 + 0: The maximum resident set size (KB) = 2303612 Test 143 datm_cdeps_3072x1536_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_gfs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/datm_cdeps_gfs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/datm_cdeps_gfs Checking test 144 datm_cdeps_gfs results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 217.281501 - 0: The maximum resident set size (KB) = 2368220 + 0: The total amount of wall time = 217.915353 + 0: The maximum resident set size (KB) = 2357636 Test 144 datm_cdeps_gfs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/datm_cdeps_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/datm_cdeps_debug_cfsr Checking test 145 datm_cdeps_debug_cfsr 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 = 440.546373 - 0: The maximum resident set size (KB) = 983616 + 0: The total amount of wall time = 438.275976 + 0: The maximum resident set size (KB) = 989520 Test 145 datm_cdeps_debug_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/datm_cdeps_control_cfsr_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/datm_cdeps_control_cfsr_faster Checking test 146 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.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.435970 - 0: The maximum resident set size (KB) = 1057416 + 0: The total amount of wall time = 153.969542 + 0: The maximum resident set size (KB) = 1060196 Test 146 datm_cdeps_control_cfsr_faster PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/datm_cdeps_lnd_gswp3 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/datm_cdeps_lnd_gswp3 Checking test 147 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4390,14 +4390,14 @@ Checking test 147 datm_cdeps_lnd_gswp3 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 = 6.853825 - 0: The maximum resident set size (KB) = 255360 + 0: The total amount of wall time = 7.308929 + 0: The maximum resident set size (KB) = 247536 Test 147 datm_cdeps_lnd_gswp3 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/datm_cdeps_lnd_gswp3_rst +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/datm_cdeps_lnd_gswp3_rst Checking test 148 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4406,14 +4406,14 @@ Checking test 148 datm_cdeps_lnd_gswp3_rst 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.162825 - 0: The maximum resident set size (KB) = 254720 + 0: The total amount of wall time = 11.995558 + 0: The maximum resident set size (KB) = 259080 Test 148 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_atmlnd_sbs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_p8_atmlnd_sbs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/control_p8_atmlnd_sbs Checking test 149 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4498,14 +4498,14 @@ Checking test 149 control_p8_atmlnd_sbs 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.535774 - 0: The maximum resident set size (KB) = 1615160 + 0: The total amount of wall time = 200.741353 + 0: The maximum resident set size (KB) = 1601920 Test 149 control_p8_atmlnd_sbs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_atmwav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_atmwav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/control_atmwav Checking test 150 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4549,14 +4549,14 @@ Checking test 150 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 86.416940 - 0: The maximum resident set size (KB) = 664156 + 0: The total amount of wall time = 86.183938 + 0: The maximum resident set size (KB) = 664576 Test 150 control_atmwav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/atmaero_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/atmaero_control_p8 Checking test 151 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4600,14 +4600,14 @@ Checking test 151 atmaero_control_p8 results .... Comparing 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.129838 - 0: The maximum resident set size (KB) = 2974392 + 0: The total amount of wall time = 224.453314 + 0: The maximum resident set size (KB) = 2974452 Test 151 atmaero_control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/atmaero_control_p8_rad +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/atmaero_control_p8_rad Checking test 152 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4651,14 +4651,14 @@ Checking test 152 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 278.367521 - 0: The maximum resident set size (KB) = 3050176 + 0: The total amount of wall time = 276.610772 + 0: The maximum resident set size (KB) = 3044504 Test 152 atmaero_control_p8_rad PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad_micro -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/atmaero_control_p8_rad_micro +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/atmaero_control_p8_rad_micro Checking test 153 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4702,14 +4702,14 @@ Checking test 153 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 283.984874 - 0: The maximum resident set size (KB) = 3054772 + 0: The total amount of wall time = 284.299220 + 0: The maximum resident set size (KB) = 3057368 Test 153 atmaero_control_p8_rad_micro PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/regional_atmaq +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/regional_atmaq Checking test 154 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4725,14 +4725,14 @@ Checking test 154 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 603.633149 - 0: The maximum resident set size (KB) = 1567884 + 0: The total amount of wall time = 595.207238 + 0: The maximum resident set size (KB) = 1564400 Test 154 regional_atmaq PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/regional_atmaq_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/regional_atmaq_debug Checking test 155 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4746,14 +4746,14 @@ Checking test 155 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1323.205196 - 0: The maximum resident set size (KB) = 1510800 + 0: The total amount of wall time = 1322.503082 + 0: The maximum resident set size (KB) = 1515560 Test 155 regional_atmaq_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/regional_atmaq_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/regional_atmaq_faster Checking test 156 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4769,12 +4769,12 @@ Checking test 156 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 567.628965 - 0: The maximum resident set size (KB) = 1563280 + 0: The total amount of wall time = 568.194715 + 0: The maximum resident set size (KB) = 1557548 Test 156 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Tue Mar 14 02:26:40 UTC 2023 -Elapsed time: 01h:23m:49s. Have a nice day! +Tue Mar 14 21:32:26 UTC 2023 +Elapsed time: 01h:14m:14s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index 50133d4e396..7658fe1375a 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,42 +1,42 @@ -Mon Mar 13 20:47:44 CDT 2023 +Tue Mar 14 15:33:10 CDT 2023 Start Regression test Compile 001 elapsed time 750 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 796 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 723 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 298 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 230 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 694 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 666 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 831 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 584 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 664 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 529 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 527 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 707 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 239 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 175 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 539 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 529 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 173 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 177 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 751 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 021 elapsed time 199 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 775 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 701 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 024 elapsed time 215 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 135 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 193 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 55 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 678 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 572 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 702 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 581 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 191 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 628 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 736 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 706 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 292 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 252 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 645 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 651 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 814 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 593 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 620 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 810 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 841 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 972 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 501 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 497 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 755 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 768 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 308 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 307 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 700 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 216 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 726 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 606 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 024 elapsed time 213 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 130 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 201 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 91 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 843 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 922 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 883 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 766 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 169 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 742 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_mixedmode -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/cpld_control_p8_mixedmode +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -101,14 +101,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 305.852297 - 0: The maximum resident set size (KB) = 3138404 + 0: The total amount of wall time = 318.014255 + 0: The maximum resident set size (KB) = 3140396 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_gfsv17 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/cpld_control_gfsv17 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -172,14 +172,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 227.199270 - 0: The maximum resident set size (KB) = 1727932 + 0: The total amount of wall time = 233.539085 + 0: The maximum resident set size (KB) = 1741480 Test 002 cpld_control_gfsv17 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/cpld_control_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -244,14 +244,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 340.604214 - 0: The maximum resident set size (KB) = 3175396 + 0: The total amount of wall time = 352.801415 + 0: The maximum resident set size (KB) = 3177032 Test 003 cpld_control_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/cpld_restart_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -304,14 +304,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 220.071177 - 0: The maximum resident set size (KB) = 3048248 + 0: The total amount of wall time = 202.256994 + 0: The maximum resident set size (KB) = 3048784 Test 004 cpld_restart_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/cpld_2threads_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -364,14 +364,14 @@ Checking test 005 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 406.264934 - 0: The maximum resident set size (KB) = 3517268 + 0: The total amount of wall time = 413.420371 + 0: The maximum resident set size (KB) = 3508832 Test 005 cpld_2threads_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/cpld_decomp_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/cpld_decomp_p8 Checking test 006 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -424,14 +424,14 @@ Checking test 006 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 343.107221 - 0: The maximum resident set size (KB) = 3173956 + 0: The total amount of wall time = 354.401219 + 0: The maximum resident set size (KB) = 3169088 Test 006 cpld_decomp_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/cpld_mpi_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/cpld_mpi_p8 Checking test 007 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -484,14 +484,14 @@ Checking test 007 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 282.105026 - 0: The maximum resident set size (KB) = 3034496 + 0: The total amount of wall time = 285.383046 + 0: The maximum resident set size (KB) = 3025628 Test 007 cpld_mpi_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_ciceC_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/cpld_control_ciceC_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/cpld_control_ciceC_p8 Checking test 008 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -556,14 +556,14 @@ Checking test 008 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 345.828770 - 0: The maximum resident set size (KB) = 3175780 + 0: The total amount of wall time = 348.467788 + 0: The maximum resident set size (KB) = 3174152 Test 008 cpld_control_ciceC_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/cpld_control_c192_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/cpld_control_c192_p8 Checking test 009 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -616,14 +616,14 @@ Checking test 009 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 693.061831 - 0: The maximum resident set size (KB) = 3260072 + 0: The total amount of wall time = 647.228225 + 0: The maximum resident set size (KB) = 3257424 Test 009 cpld_control_c192_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/cpld_restart_c192_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/cpld_restart_c192_p8 Checking test 010 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -676,14 +676,14 @@ Checking test 010 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 451.092007 - 0: The maximum resident set size (KB) = 3156712 + 0: The total amount of wall time = 487.286846 + 0: The maximum resident set size (KB) = 3156864 Test 010 cpld_restart_c192_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_bmark_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/cpld_bmark_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/cpld_bmark_p8 Checking test 011 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -731,14 +731,14 @@ Checking test 011 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 889.347023 - 0: The maximum resident set size (KB) = 4038700 + 0: The total amount of wall time = 1194.547287 + 0: The maximum resident set size (KB) = 4041776 Test 011 cpld_bmark_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_bmark_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/cpld_restart_bmark_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/cpld_restart_bmark_p8 Checking test 012 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -786,14 +786,14 @@ Checking test 012 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 544.211241 - 0: The maximum resident set size (KB) = 3954996 + 0: The total amount of wall time = 781.997574 + 0: The maximum resident set size (KB) = 3976124 Test 012 cpld_restart_bmark_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/cpld_control_noaero_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/cpld_control_noaero_p8 Checking test 013 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -857,14 +857,14 @@ Checking test 013 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 253.291156 - 0: The maximum resident set size (KB) = 1726220 + 0: The total amount of wall time = 254.797473 + 0: The maximum resident set size (KB) = 1723868 Test 013 cpld_control_noaero_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c96_noaero_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/cpld_control_nowave_noaero_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/cpld_control_nowave_noaero_p8 Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -926,14 +926,14 @@ Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 258.060473 - 0: The maximum resident set size (KB) = 1770660 + 0: The total amount of wall time = 272.152859 + 0: The maximum resident set size (KB) = 1755640 Test 014 cpld_control_nowave_noaero_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_debug_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/cpld_debug_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/cpld_debug_p8 Checking test 015 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -986,14 +986,14 @@ Checking test 015 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 686.682181 - 0: The maximum resident set size (KB) = 3245172 + 0: The total amount of wall time = 1007.827329 + 0: The maximum resident set size (KB) = 3247732 Test 015 cpld_debug_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_debug_noaero_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/cpld_debug_noaero_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/cpld_debug_noaero_p8 Checking test 016 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1045,14 +1045,14 @@ Checking test 016 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 426.406442 - 0: The maximum resident set size (KB) = 1736944 + 0: The total amount of wall time = 763.765286 + 0: The maximum resident set size (KB) = 1744704 Test 016 cpld_debug_noaero_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8_agrid -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/cpld_control_noaero_p8_agrid +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/cpld_control_noaero_p8_agrid Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1114,14 +1114,14 @@ Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 264.829819 - 0: The maximum resident set size (KB) = 1770012 + 0: The total amount of wall time = 574.448649 + 0: The maximum resident set size (KB) = 1770212 Test 017 cpld_control_noaero_p8_agrid PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c48 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/cpld_control_c48 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/cpld_control_c48 Checking test 018 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1171,14 +1171,14 @@ Checking test 018 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 495.992204 - 0: The maximum resident set size (KB) = 2793716 + 0: The total amount of wall time = 740.279718 + 0: The maximum resident set size (KB) = 2807528 Test 018 cpld_control_c48 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/cpld_warmstart_c48 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/cpld_warmstart_c48 Checking test 019 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1228,14 +1228,14 @@ Checking test 019 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 135.701557 - 0: The maximum resident set size (KB) = 2798124 + 0: The total amount of wall time = 434.485333 + 0: The maximum resident set size (KB) = 2804348 Test 019 cpld_warmstart_c48 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/cpld_restart_c48 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/cpld_restart_c48 Checking test 020 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1285,14 +1285,14 @@ Checking test 020 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 79.707585 - 0: The maximum resident set size (KB) = 2246780 + 0: The total amount of wall time = 75.461431 + 0: The maximum resident set size (KB) = 2248912 Test 020 cpld_restart_c48 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_faster -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/cpld_control_p8_faster +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/cpld_control_p8_faster Checking test 021 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1357,14 +1357,14 @@ Checking test 021 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 335.350321 - 0: The maximum resident set size (KB) = 3180152 + 0: The total amount of wall time = 325.990741 + 0: The maximum resident set size (KB) = 3179640 Test 021 cpld_control_p8_faster PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/control_CubedSphereGrid +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/control_CubedSphereGrid Checking test 022 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1391,28 +1391,28 @@ Checking test 022 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 132.691652 - 0: The maximum resident set size (KB) = 632064 + 0: The total amount of wall time = 131.674262 + 0: The maximum resident set size (KB) = 635724 Test 022 control_CubedSphereGrid PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid_parallel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/control_CubedSphereGrid_parallel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/control_CubedSphereGrid_parallel Checking test 023 control_CubedSphereGrid_parallel results .... 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.413286 - 0: The maximum resident set size (KB) = 629308 + 0: The total amount of wall time = 408.786933 + 0: The maximum resident set size (KB) = 632976 Test 023 control_CubedSphereGrid_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_latlon -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/control_latlon +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/control_latlon Checking test 024 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1423,17 +1423,17 @@ Checking test 024 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.789251 - 0: The maximum resident set size (KB) = 627924 + 0: The total amount of wall time = 431.146773 + 0: The maximum resident set size (KB) = 633488 Test 024 control_latlon PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/control_wrtGauss_netcdf_parallel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/control_wrtGauss_netcdf_parallel Checking test 025 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK @@ -1441,14 +1441,14 @@ Checking test 025 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.207763 - 0: The maximum resident set size (KB) = 630708 + 0: The total amount of wall time = 411.786100 + 0: The maximum resident set size (KB) = 628752 Test 025 control_wrtGauss_netcdf_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c48 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/control_c48 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/control_c48 Checking test 026 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1487,14 +1487,14 @@ Checking test 026 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 346.118893 -0: The maximum resident set size (KB) = 802972 +0: The total amount of wall time = 611.849643 +0: The maximum resident set size (KB) = 815684 Test 026 control_c48 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c192 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/control_c192 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/control_c192 Checking test 027 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1505,14 +1505,14 @@ Checking test 027 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 525.978899 - 0: The maximum resident set size (KB) = 760472 + 0: The total amount of wall time = 825.219656 + 0: The maximum resident set size (KB) = 763208 Test 027 control_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/control_c384 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/control_c384 Checking test 028 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1523,14 +1523,14 @@ Checking test 028 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 591.702192 - 0: The maximum resident set size (KB) = 1225348 + 0: The total amount of wall time = 900.323554 + 0: The maximum resident set size (KB) = 1216456 Test 028 control_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384gdas -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/control_c384gdas +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/control_c384gdas Checking test 029 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1573,14 +1573,14 @@ Checking test 029 control_c384gdas 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 = 524.425024 - 0: The maximum resident set size (KB) = 1337152 + 0: The total amount of wall time = 824.053975 + 0: The maximum resident set size (KB) = 1331792 Test 029 control_c384gdas PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/control_stochy +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/control_stochy Checking test 030 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1591,28 +1591,28 @@ Checking test 030 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 88.242472 - 0: The maximum resident set size (KB) = 628472 + 0: The total amount of wall time = 86.899779 + 0: The maximum resident set size (KB) = 631644 Test 030 control_stochy PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/control_stochy_restart +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/control_stochy_restart Checking test 031 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 46.498840 - 0: The maximum resident set size (KB) = 492536 + 0: The total amount of wall time = 47.555681 + 0: The maximum resident set size (KB) = 481920 Test 031 control_stochy_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/control_lndp +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/control_lndp Checking test 032 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1623,14 +1623,14 @@ Checking test 032 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 82.168068 - 0: The maximum resident set size (KB) = 630736 + 0: The total amount of wall time = 80.853377 + 0: The maximum resident set size (KB) = 633672 Test 032 control_lndp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr4 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/control_iovr4 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/control_iovr4 Checking test 033 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1645,14 +1645,14 @@ Checking test 033 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.079910 - 0: The maximum resident set size (KB) = 633048 + 0: The total amount of wall time = 454.702933 + 0: The maximum resident set size (KB) = 630748 Test 033 control_iovr4 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr5 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/control_iovr5 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/control_iovr5 Checking test 034 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1667,14 +1667,14 @@ Checking test 034 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.184282 - 0: The maximum resident set size (KB) = 629076 + 0: The total amount of wall time = 134.723096 + 0: The maximum resident set size (KB) = 627708 Test 034 control_iovr5 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/control_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/control_p8 Checking test 035 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1721,14 +1721,14 @@ Checking test 035 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 166.165432 - 0: The maximum resident set size (KB) = 1599724 + 0: The total amount of wall time = 471.847794 + 0: The maximum resident set size (KB) = 1600804 Test 035 control_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_lndp -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/control_p8_lndp +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/control_p8_lndp Checking test 036 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1747,14 +1747,14 @@ Checking test 036 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 311.248014 - 0: The maximum resident set size (KB) = 1594252 + 0: The total amount of wall time = 603.865189 + 0: The maximum resident set size (KB) = 1608460 Test 036 control_p8_lndp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/control_restart_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/control_restart_p8 Checking test 037 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1793,14 +1793,14 @@ Checking test 037 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 87.247959 - 0: The maximum resident set size (KB) = 876140 + 0: The total amount of wall time = 87.906951 + 0: The maximum resident set size (KB) = 870204 Test 037 control_restart_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/control_decomp_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/control_decomp_p8 Checking test 038 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1843,14 +1843,14 @@ Checking test 038 control_decomp_p8 results .... Comparing 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.990781 - 0: The maximum resident set size (KB) = 1593764 + 0: The total amount of wall time = 476.513541 + 0: The maximum resident set size (KB) = 1588964 Test 038 control_decomp_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/control_2threads_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/control_2threads_p8 Checking test 039 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1893,14 +1893,14 @@ Checking test 039 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 180.163803 - 0: The maximum resident set size (KB) = 1686264 + 0: The total amount of wall time = 490.833851 + 0: The maximum resident set size (KB) = 1697760 Test 039 control_2threads_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_rrtmgp -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/control_p8_rrtmgp +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/control_p8_rrtmgp Checking test 040 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1947,14 +1947,14 @@ Checking test 040 control_p8_rrtmgp results .... Comparing 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.223989 - 0: The maximum resident set size (KB) = 1684652 + 0: The total amount of wall time = 515.358922 + 0: The maximum resident set size (KB) = 1677296 Test 040 control_p8_rrtmgp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/merra2_thompson -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/merra2_thompson +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/merra2_thompson Checking test 041 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2001,14 +2001,14 @@ Checking test 041 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 189.178585 - 0: The maximum resident set size (KB) = 1561288 + 0: The total amount of wall time = 486.286077 + 0: The maximum resident set size (KB) = 1613920 Test 041 merra2_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/regional_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/regional_control Checking test 042 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2019,28 +2019,28 @@ Checking test 042 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 295.935976 - 0: The maximum resident set size (KB) = 868624 + 0: The total amount of wall time = 584.121649 + 0: The maximum resident set size (KB) = 853592 Test 042 regional_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/regional_restart +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/regional_restart Checking test 043 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 152.392861 - 0: The maximum resident set size (KB) = 868092 + 0: The total amount of wall time = 151.569378 + 0: The maximum resident set size (KB) = 863016 Test 043 regional_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/regional_decomp +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/regional_decomp Checking test 044 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2051,14 +2051,14 @@ Checking test 044 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 313.616898 - 0: The maximum resident set size (KB) = 860024 + 0: The total amount of wall time = 610.526322 + 0: The maximum resident set size (KB) = 858952 Test 044 regional_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/regional_2threads +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/regional_2threads Checking test 045 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2069,14 +2069,14 @@ Checking test 045 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 208.256488 - 0: The maximum resident set size (KB) = 848868 + 0: The total amount of wall time = 504.239299 + 0: The maximum resident set size (KB) = 846572 Test 045 regional_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_noquilt -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/regional_noquilt +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/regional_noquilt Checking test 046 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2084,28 +2084,28 @@ Checking test 046 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 317.227471 - 0: The maximum resident set size (KB) = 859308 + 0: The total amount of wall time = 602.364514 + 0: The maximum resident set size (KB) = 860764 Test 046 regional_noquilt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_netcdf_parallel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/regional_netcdf_parallel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/regional_netcdf_parallel Checking test 047 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf006.nc .........OK - 0: The total amount of wall time = 291.972662 - 0: The maximum resident set size (KB) = 861840 + 0: The total amount of wall time = 575.600169 + 0: The maximum resident set size (KB) = 858352 Test 047 regional_netcdf_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/regional_2dwrtdecomp +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/regional_2dwrtdecomp Checking test 048 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2116,14 +2116,14 @@ Checking test 048 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 295.525900 - 0: The maximum resident set size (KB) = 865164 + 0: The total amount of wall time = 602.806528 + 0: The maximum resident set size (KB) = 856464 Test 048 regional_2dwrtdecomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/fv3_regional_wofs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/regional_wofs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/regional_wofs Checking test 049 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2134,14 +2134,14 @@ Checking test 049 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 373.932892 - 0: The maximum resident set size (KB) = 625424 + 0: The total amount of wall time = 670.589152 + 0: The maximum resident set size (KB) = 614576 Test 049 regional_wofs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/rap_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/rap_control Checking test 050 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2188,14 +2188,14 @@ Checking test 050 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 459.342588 - 0: The maximum resident set size (KB) = 1061204 + 0: The total amount of wall time = 464.846017 + 0: The maximum resident set size (KB) = 1059992 Test 050 rap_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/regional_spp_sppt_shum_skeb +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/regional_spp_sppt_shum_skeb Checking test 051 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2206,14 +2206,14 @@ Checking test 051 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 320.589850 - 0: The maximum resident set size (KB) = 1188856 + 0: The total amount of wall time = 326.357196 + 0: The maximum resident set size (KB) = 1192752 Test 051 regional_spp_sppt_shum_skeb PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/rap_decomp +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/rap_decomp Checking test 052 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2260,14 +2260,14 @@ Checking test 052 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 481.572831 - 0: The maximum resident set size (KB) = 1002988 + 0: The total amount of wall time = 480.202775 + 0: The maximum resident set size (KB) = 1006200 Test 052 rap_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/rap_2threads +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/rap_2threads Checking test 053 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2314,14 +2314,14 @@ Checking test 053 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 478.399761 - 0: The maximum resident set size (KB) = 1133764 + 0: The total amount of wall time = 478.898585 + 0: The maximum resident set size (KB) = 1139472 Test 053 rap_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/rap_restart +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/rap_restart Checking test 054 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2360,14 +2360,14 @@ Checking test 054 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 243.422020 - 0: The maximum resident set size (KB) = 975864 + 0: The total amount of wall time = 570.202275 + 0: The maximum resident set size (KB) = 964600 Test 054 rap_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/rap_sfcdiff +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/rap_sfcdiff Checking test 055 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2414,14 +2414,14 @@ Checking test 055 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 457.580454 - 0: The maximum resident set size (KB) = 1075260 + 0: The total amount of wall time = 452.104206 + 0: The maximum resident set size (KB) = 1063856 Test 055 rap_sfcdiff PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/rap_sfcdiff_decomp +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/rap_sfcdiff_decomp Checking test 056 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2468,14 +2468,14 @@ Checking test 056 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 478.781824 - 0: The maximum resident set size (KB) = 1009960 + 0: The total amount of wall time = 479.934239 + 0: The maximum resident set size (KB) = 1007208 Test 056 rap_sfcdiff_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/rap_sfcdiff_restart +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/rap_sfcdiff_restart Checking test 057 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2514,14 +2514,14 @@ Checking test 057 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 340.269260 - 0: The maximum resident set size (KB) = 989704 + 0: The total amount of wall time = 357.539713 + 0: The maximum resident set size (KB) = 998180 Test 057 rap_sfcdiff_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/hrrr_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/hrrr_control Checking test 058 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2568,14 +2568,14 @@ Checking test 058 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 439.688670 - 0: The maximum resident set size (KB) = 1053544 + 0: The total amount of wall time = 433.524343 + 0: The maximum resident set size (KB) = 1059900 Test 058 hrrr_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/hrrr_control_decomp +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/hrrr_control_decomp Checking test 059 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2622,14 +2622,14 @@ Checking test 059 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 461.326759 - 0: The maximum resident set size (KB) = 1005084 + 0: The total amount of wall time = 458.574918 + 0: The maximum resident set size (KB) = 1001292 Test 059 hrrr_control_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/hrrr_control_2threads +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/hrrr_control_2threads Checking test 060 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2676,14 +2676,14 @@ Checking test 060 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 459.830148 - 0: The maximum resident set size (KB) = 1142424 + 0: The total amount of wall time = 453.328925 + 0: The maximum resident set size (KB) = 1147184 Test 060 hrrr_control_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/hrrr_control_restart +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/hrrr_control_restart Checking test 061 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2722,14 +2722,14 @@ Checking test 061 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 330.434917 - 0: The maximum resident set size (KB) = 988188 + 0: The total amount of wall time = 333.831990 + 0: The maximum resident set size (KB) = 986336 Test 061 hrrr_control_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/rrfs_v1beta +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/rrfs_v1beta Checking test 062 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2776,14 +2776,14 @@ Checking test 062 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 449.734482 - 0: The maximum resident set size (KB) = 1060456 + 0: The total amount of wall time = 448.297210 + 0: The maximum resident set size (KB) = 1055140 Test 062 rrfs_v1beta PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/rrfs_v1nssl +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/rrfs_v1nssl Checking test 063 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2798,14 +2798,14 @@ Checking test 063 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 526.762936 - 0: The maximum resident set size (KB) = 700476 + 0: The total amount of wall time = 525.682554 + 0: The maximum resident set size (KB) = 693096 Test 063 rrfs_v1nssl PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/rrfs_v1nssl_nohailnoccn +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/rrfs_v1nssl_nohailnoccn Checking test 064 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2820,14 +2820,14 @@ Checking test 064 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 521.791376 - 0: The maximum resident set size (KB) = 753864 + 0: The total amount of wall time = 517.425482 + 0: The maximum resident set size (KB) = 774204 Test 064 rrfs_v1nssl_nohailnoccn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/rrfs_conus13km_hrrr_warm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/rrfs_conus13km_hrrr_warm Checking test 065 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2836,14 +2836,14 @@ Checking test 065 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 124.161408 - 0: The maximum resident set size (KB) = 928732 + 0: The total amount of wall time = 124.113762 + 0: The maximum resident set size (KB) = 930540 Test 065 rrfs_conus13km_hrrr_warm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/rrfs_smoke_conus13km_hrrr_warm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/rrfs_smoke_conus13km_hrrr_warm Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2852,14 +2852,14 @@ Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 138.964507 - 0: The maximum resident set size (KB) = 959364 + 0: The total amount of wall time = 140.538082 + 0: The maximum resident set size (KB) = 959852 Test 066 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/rrfs_conus13km_radar_tten_warm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/rrfs_conus13km_radar_tten_warm Checking test 067 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2868,14 +2868,14 @@ Checking test 067 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 125.205078 - 0: The maximum resident set size (KB) = 936128 + 0: The total amount of wall time = 125.424912 + 0: The maximum resident set size (KB) = 934580 Test 067 rrfs_conus13km_radar_tten_warm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/rrfs_conus13km_hrrr_warm_2threads +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/rrfs_conus13km_hrrr_warm_2threads Checking test 068 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2884,14 +2884,14 @@ Checking test 068 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 84.598631 - 0: The maximum resident set size (KB) = 888400 + 0: The total amount of wall time = 85.577351 + 0: The maximum resident set size (KB) = 845384 Test 068 rrfs_conus13km_hrrr_warm_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/rrfs_conus13km_radar_tten_warm_2threads +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/rrfs_conus13km_radar_tten_warm_2threads Checking test 069 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2900,14 +2900,14 @@ Checking test 069 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 86.136145 - 0: The maximum resident set size (KB) = 888228 + 0: The total amount of wall time = 86.659496 + 0: The maximum resident set size (KB) = 891584 Test 069 rrfs_conus13km_radar_tten_warm_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/control_csawmg +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/control_csawmg Checking test 070 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2918,14 +2918,14 @@ Checking test 070 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 347.560610 - 0: The maximum resident set size (KB) = 730800 + 0: The total amount of wall time = 344.139908 + 0: The maximum resident set size (KB) = 724648 Test 070 control_csawmg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/control_csawmgt +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/control_csawmgt Checking test 071 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2936,14 +2936,14 @@ Checking test 071 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 339.693879 - 0: The maximum resident set size (KB) = 723568 + 0: The total amount of wall time = 647.414502 + 0: The maximum resident set size (KB) = 730564 Test 071 control_csawmgt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/control_ras +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/control_ras Checking test 072 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2954,26 +2954,26 @@ Checking test 072 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 188.423770 - 0: The maximum resident set size (KB) = 719768 + 0: The total amount of wall time = 180.909572 + 0: The maximum resident set size (KB) = 713396 Test 072 control_ras PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/control_wam +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/control_wam Checking test 073 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 121.549859 - 0: The maximum resident set size (KB) = 645884 + 0: The total amount of wall time = 112.922827 + 0: The maximum resident set size (KB) = 645732 Test 073 control_wam PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_faster -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/control_p8_faster +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/control_p8_faster Checking test 074 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3020,14 +3020,14 @@ Checking test 074 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 164.017226 - 0: The maximum resident set size (KB) = 1610500 + 0: The total amount of wall time = 150.899779 + 0: The maximum resident set size (KB) = 1600536 Test 074 control_p8_faster PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control_faster -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/regional_control_faster +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/regional_control_faster Checking test 075 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3038,42 +3038,42 @@ Checking test 075 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 283.484031 - 0: The maximum resident set size (KB) = 873576 + 0: The total amount of wall time = 271.726065 + 0: The maximum resident set size (KB) = 832068 Test 075 regional_control_faster PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/rrfs_conus13km_hrrr_warm_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/rrfs_conus13km_hrrr_warm_debug Checking test 076 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 736.780715 - 0: The maximum resident set size (KB) = 962880 + 0: The total amount of wall time = 1040.608618 + 0: The maximum resident set size (KB) = 952904 Test 076 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/rrfs_conus13km_radar_tten_warm_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/rrfs_conus13km_radar_tten_warm_debug Checking test 077 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 733.735844 - 0: The maximum resident set size (KB) = 970240 + 0: The total amount of wall time = 1021.146911 + 0: The maximum resident set size (KB) = 967524 Test 077 rrfs_conus13km_radar_tten_warm_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/control_CubedSphereGrid_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/control_CubedSphereGrid_debug Checking test 078 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3100,334 +3100,334 @@ Checking test 078 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 171.457112 - 0: The maximum resident set size (KB) = 799188 + 0: The total amount of wall time = 169.802321 + 0: The maximum resident set size (KB) = 790720 Test 078 control_CubedSphereGrid_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/control_wrtGauss_netcdf_parallel_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/control_wrtGauss_netcdf_parallel_debug Checking test 079 control_wrtGauss_netcdf_parallel_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc .........OK + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 166.244996 - 0: The maximum resident set size (KB) = 792440 + 0: The total amount of wall time = 159.837391 + 0: The maximum resident set size (KB) = 795540 Test 079 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/control_stochy_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/control_stochy_debug Checking test 080 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 181.923945 - 0: The maximum resident set size (KB) = 805376 + 0: The total amount of wall time = 177.381534 + 0: The maximum resident set size (KB) = 806248 Test 080 control_stochy_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/control_lndp_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/control_lndp_debug Checking test 081 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 169.139104 - 0: The maximum resident set size (KB) = 801056 + 0: The total amount of wall time = 162.785468 + 0: The maximum resident set size (KB) = 800844 Test 081 control_lndp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/control_csawmg_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/control_csawmg_debug Checking test 082 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 257.323963 - 0: The maximum resident set size (KB) = 843192 + 0: The total amount of wall time = 563.756338 + 0: The maximum resident set size (KB) = 849620 Test 082 control_csawmg_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/control_csawmgt_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/control_csawmgt_debug Checking test 083 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 241.177836 - 0: The maximum resident set size (KB) = 852744 + 0: The total amount of wall time = 553.153365 + 0: The maximum resident set size (KB) = 845080 Test 083 control_csawmgt_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/control_ras_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/control_ras_debug Checking test 084 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 165.210072 - 0: The maximum resident set size (KB) = 810260 + 0: The total amount of wall time = 162.234038 + 0: The maximum resident set size (KB) = 808928 Test 084 control_ras_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_diag_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/control_diag_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/control_diag_debug Checking test 085 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 170.681393 - 0: The maximum resident set size (KB) = 855852 + 0: The total amount of wall time = 168.560385 + 0: The maximum resident set size (KB) = 856292 Test 085 control_diag_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_debug_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/control_debug_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/control_debug_p8 Checking test 086 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 179.705972 - 0: The maximum resident set size (KB) = 1619536 + 0: The total amount of wall time = 447.279535 + 0: The maximum resident set size (KB) = 1621080 Test 086 control_debug_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/regional_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/regional_debug Checking test 087 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 989.879205 - 0: The maximum resident set size (KB) = 888696 + 0: The total amount of wall time = 1222.705280 + 0: The maximum resident set size (KB) = 890936 Test 087 regional_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/rap_control_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/rap_control_debug Checking test 088 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 285.041633 - 0: The maximum resident set size (KB) = 1175996 + 0: The total amount of wall time = 319.584328 + 0: The maximum resident set size (KB) = 1172352 Test 088 rap_control_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/hrrr_control_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/hrrr_control_debug Checking test 089 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.669146 - 0: The maximum resident set size (KB) = 1173080 + 0: The total amount of wall time = 332.192686 + 0: The maximum resident set size (KB) = 1169420 Test 089 hrrr_control_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/rap_unified_drag_suite_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/rap_unified_drag_suite_debug Checking test 090 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.264172 - 0: The maximum resident set size (KB) = 1173772 + 0: The total amount of wall time = 293.591291 + 0: The maximum resident set size (KB) = 1175112 Test 090 rap_unified_drag_suite_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_diag_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/rap_diag_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/rap_diag_debug Checking test 091 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 326.263413 - 0: The maximum resident set size (KB) = 1262412 + 0: The total amount of wall time = 339.044371 + 0: The maximum resident set size (KB) = 1259248 Test 091 rap_diag_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/rap_cires_ugwp_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/rap_cires_ugwp_debug Checking test 092 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 288.290571 - 0: The maximum resident set size (KB) = 1182228 + 0: The total amount of wall time = 313.754636 + 0: The maximum resident set size (KB) = 1182656 Test 092 rap_cires_ugwp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/rap_unified_ugwp_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/rap_unified_ugwp_debug Checking test 093 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 294.234313 - 0: The maximum resident set size (KB) = 1175952 + 0: The total amount of wall time = 307.119284 + 0: The maximum resident set size (KB) = 1175120 Test 093 rap_unified_ugwp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_lndp_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/rap_lndp_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/rap_lndp_debug Checking test 094 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 293.478979 - 0: The maximum resident set size (KB) = 1172640 + 0: The total amount of wall time = 321.904322 + 0: The maximum resident set size (KB) = 1180344 Test 094 rap_lndp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_flake_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/rap_flake_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/rap_flake_debug Checking test 095 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 292.621884 - 0: The maximum resident set size (KB) = 1174320 + 0: The total amount of wall time = 320.978611 + 0: The maximum resident set size (KB) = 1178560 Test 095 rap_flake_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_progcld_thompson_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/rap_progcld_thompson_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/rap_progcld_thompson_debug Checking test 096 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 297.168861 - 0: The maximum resident set size (KB) = 1183124 + 0: The total amount of wall time = 307.106093 + 0: The maximum resident set size (KB) = 1179316 Test 096 rap_progcld_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/rap_noah_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/rap_noah_debug Checking test 097 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.929574 - 0: The maximum resident set size (KB) = 1173596 + 0: The total amount of wall time = 308.815678 + 0: The maximum resident set size (KB) = 1176516 Test 097 rap_noah_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/rap_sfcdiff_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/rap_sfcdiff_debug Checking test 098 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 284.775798 - 0: The maximum resident set size (KB) = 1178264 + 0: The total amount of wall time = 322.829997 + 0: The maximum resident set size (KB) = 1178012 Test 098 rap_sfcdiff_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/rap_noah_sfcdiff_cires_ugwp_debug Checking test 099 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 453.039189 - 0: The maximum resident set size (KB) = 1176464 + 0: The total amount of wall time = 497.853331 + 0: The maximum resident set size (KB) = 1176880 Test 099 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/rrfs_v1beta_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/rrfs_v1beta_debug Checking test 100 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 282.482503 - 0: The maximum resident set size (KB) = 1167612 + 0: The total amount of wall time = 288.049290 + 0: The maximum resident set size (KB) = 1169588 Test 100 rrfs_v1beta_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/control_wam_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/control_wam_debug Checking test 101 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 292.950162 - 0: The maximum resident set size (KB) = 527980 + 0: The total amount of wall time = 295.558325 + 0: The maximum resident set size (KB) = 527256 Test 101 control_wam_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 102 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3438,14 +3438,14 @@ Checking test 102 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 302.245358 - 0: The maximum resident set size (KB) = 1075156 + 0: The total amount of wall time = 309.214242 + 0: The maximum resident set size (KB) = 1081548 Test 102 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/rap_control_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/rap_control_dyn32_phy32 Checking test 103 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3492,14 +3492,14 @@ Checking test 103 rap_control_dyn32_phy32 results .... Comparing 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.466513 - 0: The maximum resident set size (KB) = 1003104 + 0: The total amount of wall time = 384.113275 + 0: The maximum resident set size (KB) = 1001604 Test 103 rap_control_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/hrrr_control_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/hrrr_control_dyn32_phy32 Checking test 104 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3546,14 +3546,14 @@ Checking test 104 hrrr_control_dyn32_phy32 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 = 194.352197 - 0: The maximum resident set size (KB) = 957776 + 0: The total amount of wall time = 212.437700 + 0: The maximum resident set size (KB) = 950880 Test 104 hrrr_control_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/rap_2threads_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/rap_2threads_dyn32_phy32 Checking test 105 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3600,14 +3600,14 @@ Checking test 105 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 390.120107 - 0: The maximum resident set size (KB) = 1027284 + 0: The total amount of wall time = 409.579470 + 0: The maximum resident set size (KB) = 1022788 Test 105 rap_2threads_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/hrrr_control_2threads_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/hrrr_control_2threads_dyn32_phy32 Checking test 106 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3654,14 +3654,14 @@ Checking test 106 hrrr_control_2threads_dyn32_phy32 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 = 210.362572 - 0: The maximum resident set size (KB) = 1001560 + 0: The total amount of wall time = 219.178477 + 0: The maximum resident set size (KB) = 1004552 Test 106 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/hrrr_control_decomp_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/hrrr_control_decomp_dyn32_phy32 Checking test 107 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3708,14 +3708,14 @@ Checking test 107 hrrr_control_decomp_dyn32_phy32 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 = 205.572599 - 0: The maximum resident set size (KB) = 899648 + 0: The total amount of wall time = 220.563684 + 0: The maximum resident set size (KB) = 896636 Test 107 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/rap_restart_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/rap_restart_dyn32_phy32 Checking test 108 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3754,14 +3754,14 @@ Checking test 108 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 278.844957 - 0: The maximum resident set size (KB) = 936680 + 0: The total amount of wall time = 280.566264 + 0: The maximum resident set size (KB) = 941192 Test 108 rap_restart_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/hrrr_control_restart_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/hrrr_control_restart_dyn32_phy32 Checking test 109 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3800,14 +3800,14 @@ Checking test 109 hrrr_control_restart_dyn32_phy32 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 = 100.994891 - 0: The maximum resident set size (KB) = 852836 + 0: The total amount of wall time = 106.206136 + 0: The maximum resident set size (KB) = 861008 Test 109 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn64_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/rap_control_dyn64_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/rap_control_dyn64_phy32 Checking test 110 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3854,81 +3854,81 @@ Checking test 110 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 241.501101 - 0: The maximum resident set size (KB) = 970924 + 0: The total amount of wall time = 259.278039 + 0: The maximum resident set size (KB) = 969900 Test 110 rap_control_dyn64_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/rap_control_debug_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/rap_control_debug_dyn32_phy32 Checking test 111 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.346796 - 0: The maximum resident set size (KB) = 1062392 + 0: The total amount of wall time = 298.457827 + 0: The maximum resident set size (KB) = 1057476 Test 111 rap_control_debug_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/hrrr_control_debug_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/hrrr_control_debug_dyn32_phy32 Checking test 112 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.820186 - 0: The maximum resident set size (KB) = 1054548 + 0: The total amount of wall time = 296.085798 + 0: The maximum resident set size (KB) = 1061284 Test 112 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn64_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/rap_control_dyn64_phy32_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/rap_control_dyn64_phy32_debug Checking test 113 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 293.775793 - 0: The maximum resident set size (KB) = 1112116 + 0: The total amount of wall time = 289.866492 + 0: The maximum resident set size (KB) = 1109804 Test 113 rap_control_dyn64_phy32_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/hafs_regional_atm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/hafs_regional_atm Checking test 114 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 269.092853 - 0: The maximum resident set size (KB) = 1054292 + 0: The total amount of wall time = 275.246803 + 0: The maximum resident set size (KB) = 1057608 Test 114 hafs_regional_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/hafs_regional_atm_thompson_gfdlsf +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/hafs_regional_atm_thompson_gfdlsf Checking test 115 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 395.626237 - 0: The maximum resident set size (KB) = 1370816 + 0: The total amount of wall time = 414.016219 + 0: The maximum resident set size (KB) = 1424368 Test 115 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/hafs_regional_atm_ocn +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/hafs_regional_atm_ocn Checking test 116 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3937,14 +3937,14 @@ Checking test 116 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 376.024951 - 0: The maximum resident set size (KB) = 1227628 + 0: The total amount of wall time = 382.231193 + 0: The maximum resident set size (KB) = 1226220 Test 116 hafs_regional_atm_ocn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_wav -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/hafs_regional_atm_wav +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/hafs_regional_atm_wav Checking test 117 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3953,14 +3953,14 @@ Checking test 117 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 723.235580 - 0: The maximum resident set size (KB) = 1258136 + 0: The total amount of wall time = 964.969047 + 0: The maximum resident set size (KB) = 1256176 Test 117 hafs_regional_atm_wav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn_wav -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/hafs_regional_atm_ocn_wav +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/hafs_regional_atm_ocn_wav Checking test 118 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3971,28 +3971,28 @@ Checking test 118 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 823.653714 - 0: The maximum resident set size (KB) = 1276768 + 0: The total amount of wall time = 1054.626093 + 0: The maximum resident set size (KB) = 1260900 Test 118 hafs_regional_atm_ocn_wav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_1nest_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/hafs_regional_1nest_atm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/hafs_regional_1nest_atm Checking test 119 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 366.120577 - 0: The maximum resident set size (KB) = 511020 + 0: The total amount of wall time = 371.094001 + 0: The maximum resident set size (KB) = 512148 Test 119 hafs_regional_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/hafs_regional_telescopic_2nests_atm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/hafs_regional_telescopic_2nests_atm Checking test 120 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4001,28 +4001,28 @@ Checking test 120 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 418.383325 - 0: The maximum resident set size (KB) = 518720 + 0: The total amount of wall time = 424.318745 + 0: The maximum resident set size (KB) = 519520 Test 120 hafs_regional_telescopic_2nests_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_1nest_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/hafs_global_1nest_atm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/hafs_global_1nest_atm Checking test 121 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 172.919958 - 0: The maximum resident set size (KB) = 354616 + 0: The total amount of wall time = 175.177976 + 0: The maximum resident set size (KB) = 354456 Test 121 hafs_global_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_multiple_4nests_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/hafs_global_multiple_4nests_atm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/hafs_global_multiple_4nests_atm Checking test 122 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4040,14 +4040,14 @@ Checking test 122 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 469.497062 - 0: The maximum resident set size (KB) = 423636 + 0: The total amount of wall time = 472.008781 + 0: The maximum resident set size (KB) = 431740 Test 122 hafs_global_multiple_4nests_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/hafs_regional_specified_moving_1nest_atm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/hafs_regional_specified_moving_1nest_atm Checking test 123 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4056,28 +4056,28 @@ Checking test 123 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 229.979078 - 0: The maximum resident set size (KB) = 526860 + 0: The total amount of wall time = 230.918778 + 0: The maximum resident set size (KB) = 526840 Test 123 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/hafs_regional_storm_following_1nest_atm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/hafs_regional_storm_following_1nest_atm Checking test 124 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 218.443602 - 0: The maximum resident set size (KB) = 524976 + 0: The total amount of wall time = 223.375132 + 0: The maximum resident set size (KB) = 524128 Test 124 hafs_regional_storm_following_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/hafs_regional_storm_following_1nest_atm_ocn +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/hafs_regional_storm_following_1nest_atm_ocn Checking test 125 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4086,42 +4086,42 @@ Checking test 125 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 289.524563 - 0: The maximum resident set size (KB) = 553596 + 0: The total amount of wall time = 289.265239 + 0: The maximum resident set size (KB) = 560628 Test 125 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_storm_following_1nest_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/hafs_global_storm_following_1nest_atm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/hafs_global_storm_following_1nest_atm Checking test 126 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 69.077475 - 0: The maximum resident set size (KB) = 367824 + 0: The total amount of wall time = 75.466035 + 0: The maximum resident set size (KB) = 371568 Test 126 hafs_global_storm_following_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 127 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 825.711378 - 0: The maximum resident set size (KB) = 581428 + 0: The total amount of wall time = 1013.472967 + 0: The maximum resident set size (KB) = 581868 Test 127 hafs_regional_storm_following_1nest_atm_ocn_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 128 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4132,14 +4132,14 @@ Checking test 128 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 581.262768 - 0: The maximum resident set size (KB) = 617680 + 0: The total amount of wall time = 758.735744 + 0: The maximum resident set size (KB) = 618876 Test 128 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_docn -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/hafs_regional_docn +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/hafs_regional_docn Checking test 129 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4147,14 +4147,14 @@ Checking test 129 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 359.685695 - 0: The maximum resident set size (KB) = 1238284 + 0: The total amount of wall time = 355.784405 + 0: The maximum resident set size (KB) = 1233972 Test 129 hafs_regional_docn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_docn_oisst -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/hafs_regional_docn_oisst +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/hafs_regional_docn_oisst Checking test 130 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4162,131 +4162,131 @@ Checking test 130 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 355.580906 - 0: The maximum resident set size (KB) = 1217828 + 0: The total amount of wall time = 359.403881 + 0: The maximum resident set size (KB) = 1219828 Test 130 hafs_regional_docn_oisst PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_datm_cdeps -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/hafs_regional_datm_cdeps +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/hafs_regional_datm_cdeps Checking test 131 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 956.516903 - 0: The maximum resident set size (KB) = 1040240 + 0: The total amount of wall time = 1162.096318 + 0: The maximum resident set size (KB) = 1037728 Test 131 hafs_regional_datm_cdeps PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/datm_cdeps_control_cfsr +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/datm_cdeps_control_cfsr Checking test 132 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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.312138 - 0: The maximum resident set size (KB) = 1063884 + 0: The total amount of wall time = 151.790593 + 0: The maximum resident set size (KB) = 1057040 Test 132 datm_cdeps_control_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/datm_cdeps_restart_cfsr +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/datm_cdeps_restart_cfsr Checking test 133 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 87.913499 - 0: The maximum resident set size (KB) = 1030100 + 0: The total amount of wall time = 92.259178 + 0: The maximum resident set size (KB) = 1012104 Test 133 datm_cdeps_restart_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_gefs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/datm_cdeps_control_gefs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/datm_cdeps_control_gefs Checking test 134 datm_cdeps_control_gefs 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.739529 - 0: The maximum resident set size (KB) = 964568 + 0: The total amount of wall time = 140.558750 + 0: The maximum resident set size (KB) = 963936 Test 134 datm_cdeps_control_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_iau_gefs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/datm_cdeps_iau_gefs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/datm_cdeps_iau_gefs Checking test 135 datm_cdeps_iau_gefs 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.375558 - 0: The maximum resident set size (KB) = 967100 + 0: The total amount of wall time = 148.867276 + 0: The maximum resident set size (KB) = 978728 Test 135 datm_cdeps_iau_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_stochy_gefs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/datm_cdeps_stochy_gefs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/datm_cdeps_stochy_gefs Checking test 136 datm_cdeps_stochy_gefs 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.744822 - 0: The maximum resident set size (KB) = 967184 + 0: The total amount of wall time = 144.878543 + 0: The maximum resident set size (KB) = 961684 Test 136 datm_cdeps_stochy_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_ciceC_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/datm_cdeps_ciceC_cfsr +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/datm_cdeps_ciceC_cfsr Checking test 137 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 144.868812 - 0: The maximum resident set size (KB) = 1072708 + 0: The total amount of wall time = 151.303313 + 0: The maximum resident set size (KB) = 1071092 Test 137 datm_cdeps_ciceC_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_bulk_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/datm_cdeps_bulk_cfsr +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/datm_cdeps_bulk_cfsr Checking test 138 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.797521 - 0: The maximum resident set size (KB) = 1077532 + 0: The total amount of wall time = 147.868721 + 0: The maximum resident set size (KB) = 1071300 Test 138 datm_cdeps_bulk_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_bulk_gefs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/datm_cdeps_bulk_gefs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/datm_cdeps_bulk_gefs Checking test 139 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 141.981186 - 0: The maximum resident set size (KB) = 967932 + 0: The total amount of wall time = 149.320840 + 0: The maximum resident set size (KB) = 936800 Test 139 datm_cdeps_bulk_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_mx025_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/datm_cdeps_mx025_cfsr +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/datm_cdeps_mx025_cfsr Checking test 140 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4295,14 +4295,14 @@ Checking test 140 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 442.876880 - 0: The maximum resident set size (KB) = 877180 + 0: The total amount of wall time = 658.564655 + 0: The maximum resident set size (KB) = 867376 Test 140 datm_cdeps_mx025_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_mx025_gefs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/datm_cdeps_mx025_gefs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/datm_cdeps_mx025_gefs Checking test 141 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4311,77 +4311,77 @@ Checking test 141 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 433.154740 - 0: The maximum resident set size (KB) = 934796 + 0: The total amount of wall time = 662.215253 + 0: The maximum resident set size (KB) = 932244 Test 141 datm_cdeps_mx025_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/datm_cdeps_multiple_files_cfsr +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/datm_cdeps_multiple_files_cfsr Checking test 142 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.506166 - 0: The maximum resident set size (KB) = 1067944 + 0: The total amount of wall time = 147.415870 + 0: The maximum resident set size (KB) = 1067500 Test 142 datm_cdeps_multiple_files_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/datm_cdeps_3072x1536_cfsr +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/datm_cdeps_3072x1536_cfsr Checking test 143 datm_cdeps_3072x1536_cfsr 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 = 196.188680 - 0: The maximum resident set size (KB) = 2366976 + 0: The total amount of wall time = 201.380752 + 0: The maximum resident set size (KB) = 2334364 Test 143 datm_cdeps_3072x1536_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_gfs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/datm_cdeps_gfs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/datm_cdeps_gfs Checking test 144 datm_cdeps_gfs 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 = 197.343842 - 0: The maximum resident set size (KB) = 2355072 + 0: The total amount of wall time = 203.158203 + 0: The maximum resident set size (KB) = 2309036 Test 144 datm_cdeps_gfs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_debug_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/datm_cdeps_debug_cfsr +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/datm_cdeps_debug_cfsr Checking test 145 datm_cdeps_debug_cfsr 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 = 438.985209 - 0: The maximum resident set size (KB) = 1010300 + 0: The total amount of wall time = 641.353706 + 0: The maximum resident set size (KB) = 1013268 Test 145 datm_cdeps_debug_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr_faster -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/datm_cdeps_control_cfsr_faster +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/datm_cdeps_control_cfsr_faster Checking test 146 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.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 = 144.625218 - 0: The maximum resident set size (KB) = 1064696 + 0: The total amount of wall time = 148.389318 + 0: The maximum resident set size (KB) = 1059344 Test 146 datm_cdeps_control_cfsr_faster PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_lnd_gswp3 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/datm_cdeps_lnd_gswp3 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/datm_cdeps_lnd_gswp3 Checking test 147 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4390,14 +4390,14 @@ Checking test 147 datm_cdeps_lnd_gswp3 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.241645 - 0: The maximum resident set size (KB) = 266052 + 0: The total amount of wall time = 7.991731 + 0: The maximum resident set size (KB) = 257408 Test 147 datm_cdeps_lnd_gswp3 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_lnd_gswp3 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/datm_cdeps_lnd_gswp3_rst +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/datm_cdeps_lnd_gswp3_rst Checking test 148 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4406,14 +4406,14 @@ Checking test 148 datm_cdeps_lnd_gswp3_rst 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 = 31.638528 - 0: The maximum resident set size (KB) = 247640 + 0: The total amount of wall time = 14.882550 + 0: The maximum resident set size (KB) = 227812 Test 148 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_atmlnd_sbs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/control_p8_atmlnd_sbs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/control_p8_atmlnd_sbs Checking test 149 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4498,14 +4498,14 @@ Checking test 149 control_p8_atmlnd_sbs results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 205.688648 - 0: The maximum resident set size (KB) = 1614772 + 0: The total amount of wall time = 442.709073 + 0: The maximum resident set size (KB) = 1606680 Test 149 control_p8_atmlnd_sbs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_atmwav -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/control_atmwav +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/control_atmwav Checking test 150 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4549,14 +4549,14 @@ Checking test 150 control_atmwav 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.310404 - 0: The maximum resident set size (KB) = 658488 + 0: The total amount of wall time = 90.520558 + 0: The maximum resident set size (KB) = 665852 Test 150 control_atmwav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/atmaero_control_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/atmaero_control_p8 Checking test 151 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4600,14 +4600,14 @@ Checking test 151 atmaero_control_p8 results .... Comparing 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.569266 - 0: The maximum resident set size (KB) = 2979672 + 0: The total amount of wall time = 444.514228 + 0: The maximum resident set size (KB) = 2975896 Test 151 atmaero_control_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/atmaero_control_p8_rad +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/atmaero_control_p8_rad Checking test 152 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4651,14 +4651,14 @@ Checking test 152 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 282.307310 - 0: The maximum resident set size (KB) = 3042272 + 0: The total amount of wall time = 508.629408 + 0: The maximum resident set size (KB) = 3048428 Test 152 atmaero_control_p8_rad PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad_micro -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/atmaero_control_p8_rad_micro +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/atmaero_control_p8_rad_micro Checking test 153 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4702,14 +4702,14 @@ Checking test 153 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 286.998405 - 0: The maximum resident set size (KB) = 3059880 + 0: The total amount of wall time = 517.107981 + 0: The maximum resident set size (KB) = 3055148 Test 153 atmaero_control_p8_rad_micro PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/regional_atmaq +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/regional_atmaq Checking test 154 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4725,14 +4725,14 @@ Checking test 154 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 612.353267 - 0: The maximum resident set size (KB) = 1567972 + 0: The total amount of wall time = 644.052693 + 0: The maximum resident set size (KB) = 1385364 Test 154 regional_atmaq PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/regional_atmaq_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/regional_atmaq_debug Checking test 155 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4746,14 +4746,14 @@ Checking test 155 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1334.288511 - 0: The maximum resident set size (KB) = 1526104 + 0: The total amount of wall time = 1509.741810 + 0: The maximum resident set size (KB) = 1517904 -Test 155 regional_atmaq_debug PASS +Test 155 regional_atmaq_debug PASS Tries: 2 baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq_faster -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_6119/regional_atmaq_faster +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/regional_atmaq_faster Checking test 156 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4769,12 +4769,7 @@ Checking test 156 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 584.909085 - 0: The maximum resident set size (KB) = 1564500 + 0: The total amount of wall time = 585.715134 + 0: The maximum resident set size (KB) = 1574784 Test 156 regional_atmaq_faster PASS - - -REGRESSION TEST WAS SUCCESSFUL -Mon Mar 13 22:04:11 CDT 2023 -Elapsed time: 01h:16m:28s. Have a nice day! diff --git a/tests/RegressionTests_wcoss2.intel.log b/tests/RegressionTests_wcoss2.intel.log index 3c3dd9e5532..73f8b11105f 100644 --- a/tests/RegressionTests_wcoss2.intel.log +++ b/tests/RegressionTests_wcoss2.intel.log @@ -1,34 +1,34 @@ -Mon Mar 13 20:07:41 UTC 2023 +Wed Mar 15 13:57:34 UTC 2023 Start Regression test -Compile 001 elapsed time 1273 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 1033 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 1016 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 1266 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 005 elapsed time 924 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 001 elapsed time 1668 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 645 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 1058 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 1488 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 005 elapsed time 504 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON Compile 006 elapsed time 663 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 484 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 008 elapsed time 477 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 461 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 422 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 1402 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 802 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 013 elapsed time 568 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 744 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 015 elapsed time 826 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 392 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 017 elapsed time 606 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 677 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 019 elapsed time 817 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 610 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 924 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 022 elapsed time 575 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 540 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 024 elapsed time 344 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 025 elapsed time 895 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 995 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 1106 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 494 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 488 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 1229 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 465 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 254 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 014 elapsed time 1121 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 545 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 271 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 017 elapsed time 304 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 609 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 019 elapsed time 395 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 1467 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 1081 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 022 elapsed time 882 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 783 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 024 elapsed time 706 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 025 elapsed time 670 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_mixedmode -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/cpld_control_p8_mixedmode +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -93,14 +93,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 342.635402 -The maximum resident set size (KB) = 2954336 +The total amount of wall time = 355.827465 +The maximum resident set size (KB) = 2953336 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/cpld_control_p8 Checking test 002 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -165,14 +165,14 @@ Checking test 002 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 391.190613 -The maximum resident set size (KB) = 2983888 +The total amount of wall time = 395.771644 +The maximum resident set size (KB) = 2983200 Test 002 cpld_control_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/cpld_restart_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/cpld_restart_p8 Checking test 003 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -225,14 +225,14 @@ Checking test 003 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 246.338490 -The maximum resident set size (KB) = 2871748 +The total amount of wall time = 236.638573 +The maximum resident set size (KB) = 2869448 Test 003 cpld_restart_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/cpld_2threads_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/cpld_2threads_p8 Checking test 004 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -285,14 +285,14 @@ Checking test 004 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 377.983179 -The maximum resident set size (KB) = 3285276 +The total amount of wall time = 378.492892 +The maximum resident set size (KB) = 3283672 Test 004 cpld_2threads_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/cpld_decomp_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/cpld_decomp_p8 Checking test 005 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -345,14 +345,14 @@ Checking test 005 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 382.621330 -The maximum resident set size (KB) = 2978984 +The total amount of wall time = 390.406951 +The maximum resident set size (KB) = 2978952 Test 005 cpld_decomp_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/cpld_mpi_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/cpld_mpi_p8 Checking test 006 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -405,14 +405,14 @@ Checking test 006 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 324.632920 -The maximum resident set size (KB) = 2911988 +The total amount of wall time = 333.670401 +The maximum resident set size (KB) = 2910908 Test 006 cpld_mpi_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_ciceC_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/cpld_control_ciceC_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/cpld_control_ciceC_p8 Checking test 007 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -477,14 +477,14 @@ Checking test 007 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 388.760605 -The maximum resident set size (KB) = 2981344 +The total amount of wall time = 396.067862 +The maximum resident set size (KB) = 2986836 Test 007 cpld_control_ciceC_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_bmark_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/cpld_bmark_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/cpld_bmark_p8 Checking test 008 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -532,14 +532,14 @@ Checking test 008 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 995.912784 -The maximum resident set size (KB) = 3914248 +The total amount of wall time = 991.840962 +The maximum resident set size (KB) = 3920556 Test 008 cpld_bmark_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_bmark_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/cpld_restart_bmark_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/cpld_restart_bmark_p8 Checking test 009 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -587,14 +587,14 @@ Checking test 009 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 653.138934 -The maximum resident set size (KB) = 3883396 +The total amount of wall time = 662.639365 +The maximum resident set size (KB) = 3892200 Test 009 cpld_restart_bmark_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/cpld_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/cpld_control_noaero_p8 Checking test 010 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -658,14 +658,14 @@ Checking test 010 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 291.481653 -The maximum resident set size (KB) = 1578928 +The total amount of wall time = 289.736445 +The maximum resident set size (KB) = 1573672 Test 010 cpld_control_noaero_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/cpld_control_nowave_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/cpld_control_nowave_noaero_p8 Checking test 011 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -727,14 +727,14 @@ Checking test 011 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 303.578046 -The maximum resident set size (KB) = 1630800 +The total amount of wall time = 303.612113 +The maximum resident set size (KB) = 1617920 Test 011 cpld_control_nowave_noaero_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/cpld_control_noaero_p8_agrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/cpld_control_noaero_p8_agrid Checking test 012 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -796,14 +796,14 @@ Checking test 012 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 311.751652 -The maximum resident set size (KB) = 1619880 +The total amount of wall time = 313.895528 +The maximum resident set size (KB) = 1626340 Test 012 cpld_control_noaero_p8_agrid PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/cpld_control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/cpld_control_c48 Checking test 013 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -853,14 +853,14 @@ Checking test 013 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 442.040208 -The maximum resident set size (KB) = 2632276 +The total amount of wall time = 438.284593 +The maximum resident set size (KB) = 2632380 Test 013 cpld_control_c48 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/cpld_warmstart_c48 Checking test 014 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -910,14 +910,14 @@ Checking test 014 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 127.354349 -The maximum resident set size (KB) = 2650820 +The total amount of wall time = 128.794484 +The maximum resident set size (KB) = 2649872 Test 014 cpld_warmstart_c48 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/cpld_restart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/cpld_restart_c48 Checking test 015 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -967,14 +967,14 @@ Checking test 015 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 71.884585 -The maximum resident set size (KB) = 2068024 +The total amount of wall time = 74.127090 +The maximum resident set size (KB) = 2070812 Test 015 cpld_restart_c48 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/cpld_control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/cpld_control_p8_faster Checking test 016 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1039,14 +1039,14 @@ Checking test 016 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 384.924624 -The maximum resident set size (KB) = 2980240 +The total amount of wall time = 395.887832 +The maximum resident set size (KB) = 2977464 Test 016 cpld_control_p8_faster PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/control_CubedSphereGrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/control_CubedSphereGrid Checking test 017 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1073,14 +1073,14 @@ Checking test 017 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 137.465823 -The maximum resident set size (KB) = 518616 +The total amount of wall time = 131.705668 +The maximum resident set size (KB) = 518108 Test 017 control_CubedSphereGrid PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_latlon -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/control_latlon +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/control_latlon Checking test 018 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1091,14 +1091,14 @@ Checking test 018 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 133.811427 -The maximum resident set size (KB) = 515508 +The total amount of wall time = 133.190960 +The maximum resident set size (KB) = 516556 Test 018 control_latlon PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/control_wrtGauss_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/control_wrtGauss_netcdf_parallel Checking test 019 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1109,14 +1109,14 @@ Checking test 019 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 138.039094 -The maximum resident set size (KB) = 517164 +The total amount of wall time = 134.704671 +The maximum resident set size (KB) = 520592 Test 019 control_wrtGauss_netcdf_parallel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/control_c48 Checking test 020 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1155,14 +1155,14 @@ Checking test 020 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 329.638030 -The maximum resident set size (KB) = 673184 +The total amount of wall time = 329.275589 +The maximum resident set size (KB) = 673784 Test 020 control_c48 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c192 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/control_c192 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/control_c192 Checking test 021 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1173,14 +1173,14 @@ Checking test 021 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 531.940445 -The maximum resident set size (KB) = 616016 +The total amount of wall time = 533.646748 +The maximum resident set size (KB) = 615740 Test 021 control_c192 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/control_c384 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/control_c384 Checking test 022 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1191,14 +1191,14 @@ Checking test 022 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 576.913138 -The maximum resident set size (KB) = 912468 +The total amount of wall time = 580.490805 +The maximum resident set size (KB) = 910736 Test 022 control_c384 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384gdas -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/control_c384gdas +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/control_c384gdas Checking test 023 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1241,14 +1241,14 @@ Checking test 023 control_c384gdas 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 = 509.370484 -The maximum resident set size (KB) = 1046240 +The total amount of wall time = 511.557999 +The maximum resident set size (KB) = 1044032 Test 023 control_c384gdas PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/control_stochy Checking test 024 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1259,28 +1259,28 @@ Checking test 024 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 95.282663 -The maximum resident set size (KB) = 522384 +The total amount of wall time = 89.688479 +The maximum resident set size (KB) = 521476 Test 024 control_stochy PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/control_stochy_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/control_stochy_restart Checking test 025 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 48.395907 -The maximum resident set size (KB) = 336580 +The total amount of wall time = 53.485194 +The maximum resident set size (KB) = 299696 Test 025 control_stochy_restart PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/control_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/control_lndp Checking test 026 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1291,14 +1291,14 @@ Checking test 026 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 85.289627 -The maximum resident set size (KB) = 517728 +The total amount of wall time = 84.718976 +The maximum resident set size (KB) = 519844 Test 026 control_lndp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr4 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/control_iovr4 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/control_iovr4 Checking test 027 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1313,14 +1313,14 @@ Checking test 027 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 138.828782 -The maximum resident set size (KB) = 517096 +The total amount of wall time = 135.946951 +The maximum resident set size (KB) = 523008 Test 027 control_iovr4 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr5 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/control_iovr5 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/control_iovr5 Checking test 028 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1335,14 +1335,14 @@ Checking test 028 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 137.222160 -The maximum resident set size (KB) = 519584 +The total amount of wall time = 136.161120 +The maximum resident set size (KB) = 516164 Test 028 control_iovr5 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/control_p8 Checking test 029 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1389,14 +1389,14 @@ Checking test 029 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 183.244080 -The maximum resident set size (KB) = 1492248 +The total amount of wall time = 185.236239 +The maximum resident set size (KB) = 1492788 Test 029 control_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/control_p8_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/control_p8_lndp Checking test 030 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1415,14 +1415,14 @@ Checking test 030 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 330.268640 -The maximum resident set size (KB) = 1487416 +The total amount of wall time = 324.098172 +The maximum resident set size (KB) = 1487236 Test 030 control_p8_lndp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/control_restart_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/control_restart_p8 Checking test 031 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1461,14 +1461,14 @@ Checking test 031 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 103.044078 -The maximum resident set size (KB) = 662344 +The total amount of wall time = 114.606402 +The maximum resident set size (KB) = 657884 Test 031 control_restart_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/control_decomp_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/control_decomp_p8 Checking test 032 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1511,14 +1511,14 @@ Checking test 032 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 191.160734 -The maximum resident set size (KB) = 1480716 +The total amount of wall time = 185.339313 +The maximum resident set size (KB) = 1482888 Test 032 control_decomp_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/control_2threads_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/control_2threads_p8 Checking test 033 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1561,14 +1561,14 @@ Checking test 033 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 166.699706 -The maximum resident set size (KB) = 1566064 +The total amount of wall time = 165.717902 +The maximum resident set size (KB) = 1565040 Test 033 control_2threads_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_rrtmgp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/control_p8_rrtmgp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/control_p8_rrtmgp Checking test 034 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1615,14 +1615,14 @@ Checking test 034 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 238.865961 -The maximum resident set size (KB) = 1553748 +The total amount of wall time = 239.288333 +The maximum resident set size (KB) = 1551308 Test 034 control_p8_rrtmgp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/merra2_thompson -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/merra2_thompson +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/merra2_thompson Checking test 035 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1669,14 +1669,14 @@ Checking test 035 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 206.649976 -The maximum resident set size (KB) = 1490664 +The total amount of wall time = 209.627673 +The maximum resident set size (KB) = 1490784 Test 035 merra2_thompson PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/regional_control Checking test 036 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1687,28 +1687,28 @@ Checking test 036 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 308.699262 -The maximum resident set size (KB) = 652372 +The total amount of wall time = 299.816644 +The maximum resident set size (KB) = 652592 Test 036 regional_control PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/regional_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/regional_restart Checking test 037 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 159.111182 -The maximum resident set size (KB) = 652104 +The total amount of wall time = 172.628552 +The maximum resident set size (KB) = 652784 Test 037 regional_restart PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/regional_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/regional_decomp Checking test 038 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1719,14 +1719,14 @@ Checking test 038 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 327.551150 -The maximum resident set size (KB) = 651732 +The total amount of wall time = 308.245389 +The maximum resident set size (KB) = 651072 Test 038 regional_decomp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/regional_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/regional_2threads Checking test 039 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1737,14 +1737,14 @@ Checking test 039 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 186.941106 -The maximum resident set size (KB) = 695372 +The total amount of wall time = 185.403282 +The maximum resident set size (KB) = 698520 Test 039 regional_2threads PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_noquilt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/regional_noquilt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/regional_noquilt Checking test 040 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1752,28 +1752,28 @@ Checking test 040 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 330.286025 -The maximum resident set size (KB) = 649540 +The total amount of wall time = 320.706723 +The maximum resident set size (KB) = 645812 Test 040 regional_noquilt PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/regional_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/regional_netcdf_parallel Checking test 041 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK -The total amount of wall time = 299.695232 -The maximum resident set size (KB) = 648212 +The total amount of wall time = 287.792054 +The maximum resident set size (KB) = 648792 Test 041 regional_netcdf_parallel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/regional_2dwrtdecomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/regional_2dwrtdecomp Checking test 042 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1784,14 +1784,14 @@ Checking test 042 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 303.670698 -The maximum resident set size (KB) = 652468 +The total amount of wall time = 299.254906 +The maximum resident set size (KB) = 656808 Test 042 regional_2dwrtdecomp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/fv3_regional_wofs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/regional_wofs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/regional_wofs Checking test 043 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1802,14 +1802,14 @@ Checking test 043 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 369.075831 -The maximum resident set size (KB) = 402172 +The total amount of wall time = 366.146682 +The maximum resident set size (KB) = 342740 Test 043 regional_wofs PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/rap_control Checking test 044 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1856,14 +1856,14 @@ Checking test 044 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 418.626406 -The maximum resident set size (KB) = 893868 +The total amount of wall time = 421.799397 +The maximum resident set size (KB) = 893388 Test 044 rap_control PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/regional_spp_sppt_shum_skeb +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/regional_spp_sppt_shum_skeb Checking test 045 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -1874,14 +1874,14 @@ Checking test 045 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 286.961665 -The maximum resident set size (KB) = 989180 +The total amount of wall time = 290.735454 +The maximum resident set size (KB) = 985912 Test 045 regional_spp_sppt_shum_skeb PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/rap_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/rap_decomp Checking test 046 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1928,14 +1928,14 @@ Checking test 046 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 436.319475 -The maximum resident set size (KB) = 892644 +The total amount of wall time = 435.090518 +The maximum resident set size (KB) = 892604 Test 046 rap_decomp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/rap_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/rap_2threads Checking test 047 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1982,14 +1982,14 @@ Checking test 047 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 394.177795 -The maximum resident set size (KB) = 965620 +The total amount of wall time = 394.068731 +The maximum resident set size (KB) = 961856 Test 047 rap_2threads PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/rap_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/rap_restart Checking test 048 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2028,14 +2028,14 @@ Checking test 048 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 215.086595 -The maximum resident set size (KB) = 646636 +The total amount of wall time = 217.692279 +The maximum resident set size (KB) = 646280 Test 048 rap_restart PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/rap_sfcdiff Checking test 049 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2082,14 +2082,14 @@ Checking test 049 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 415.963015 -The maximum resident set size (KB) = 895060 +The total amount of wall time = 417.469486 +The maximum resident set size (KB) = 895800 Test 049 rap_sfcdiff PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/rap_sfcdiff_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/rap_sfcdiff_decomp Checking test 050 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2136,14 +2136,14 @@ Checking test 050 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 436.603272 -The maximum resident set size (KB) = 891836 +The total amount of wall time = 433.653725 +The maximum resident set size (KB) = 896376 Test 050 rap_sfcdiff_decomp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/rap_sfcdiff_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/rap_sfcdiff_restart Checking test 051 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2182,14 +2182,14 @@ Checking test 051 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 312.085294 -The maximum resident set size (KB) = 638568 +The total amount of wall time = 323.102544 +The maximum resident set size (KB) = 642324 Test 051 rap_sfcdiff_restart PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/hrrr_control Checking test 052 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2236,14 +2236,14 @@ Checking test 052 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 400.535870 -The maximum resident set size (KB) = 894392 +The total amount of wall time = 400.522080 +The maximum resident set size (KB) = 896908 Test 052 hrrr_control PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/hrrr_control_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/hrrr_control_decomp Checking test 053 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2290,14 +2290,14 @@ Checking test 053 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 416.370526 -The maximum resident set size (KB) = 893676 +The total amount of wall time = 420.660018 +The maximum resident set size (KB) = 890692 Test 053 hrrr_control_decomp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/hrrr_control_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/hrrr_control_2threads Checking test 054 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2344,14 +2344,14 @@ Checking test 054 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 372.724294 -The maximum resident set size (KB) = 950836 +The total amount of wall time = 378.072418 +The maximum resident set size (KB) = 954652 Test 054 hrrr_control_2threads PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/hrrr_control_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/hrrr_control_restart Checking test 055 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2390,14 +2390,14 @@ Checking test 055 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 300.017591 -The maximum resident set size (KB) = 639680 +The total amount of wall time = 301.997395 +The maximum resident set size (KB) = 642212 Test 055 hrrr_control_restart PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/rrfs_v1beta +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/rrfs_v1beta Checking test 056 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2444,14 +2444,14 @@ Checking test 056 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 411.777848 -The maximum resident set size (KB) = 889804 +The total amount of wall time = 414.941496 +The maximum resident set size (KB) = 884548 Test 056 rrfs_v1beta PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/rrfs_v1nssl +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/rrfs_v1nssl Checking test 057 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2466,14 +2466,14 @@ Checking test 057 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 473.939163 -The maximum resident set size (KB) = 575180 +The total amount of wall time = 476.035557 +The maximum resident set size (KB) = 575344 Test 057 rrfs_v1nssl PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/rrfs_v1nssl_nohailnoccn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/rrfs_v1nssl_nohailnoccn Checking test 058 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2488,14 +2488,14 @@ Checking test 058 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 466.170340 -The maximum resident set size (KB) = 569552 +The total amount of wall time = 466.085905 +The maximum resident set size (KB) = 567932 Test 058 rrfs_v1nssl_nohailnoccn PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/rrfs_conus13km_hrrr_warm Checking test 059 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2504,14 +2504,14 @@ Checking test 059 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 122.211311 -The maximum resident set size (KB) = 762892 +The total amount of wall time = 127.803152 +The maximum resident set size (KB) = 767184 Test 059 rrfs_conus13km_hrrr_warm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/rrfs_smoke_conus13km_hrrr_warm Checking test 060 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2520,14 +2520,14 @@ Checking test 060 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 128.865023 -The maximum resident set size (KB) = 778684 +The total amount of wall time = 139.332499 +The maximum resident set size (KB) = 775344 Test 060 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/rrfs_conus13km_radar_tten_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/rrfs_conus13km_radar_tten_warm Checking test 061 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2536,14 +2536,14 @@ Checking test 061 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 123.325273 -The maximum resident set size (KB) = 764948 +The total amount of wall time = 126.550901 +The maximum resident set size (KB) = 765788 Test 061 rrfs_conus13km_radar_tten_warm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/rrfs_conus13km_hrrr_warm_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/rrfs_conus13km_hrrr_warm_2threads Checking test 062 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2552,14 +2552,14 @@ Checking test 062 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 88.945906 -The maximum resident set size (KB) = 768096 +The total amount of wall time = 92.678364 +The maximum resident set size (KB) = 760304 Test 062 rrfs_conus13km_hrrr_warm_2threads PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/rrfs_conus13km_radar_tten_warm_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/rrfs_conus13km_radar_tten_warm_2threads Checking test 063 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2568,14 +2568,14 @@ Checking test 063 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 90.748030 -The maximum resident set size (KB) = 772904 +The total amount of wall time = 93.271837 +The maximum resident set size (KB) = 768764 Test 063 rrfs_conus13km_radar_tten_warm_2threads PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/control_csawmg +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/control_csawmg Checking test 064 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2586,14 +2586,14 @@ Checking test 064 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 352.131979 -The maximum resident set size (KB) = 586276 +The total amount of wall time = 354.133699 +The maximum resident set size (KB) = 589512 Test 064 control_csawmg PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/control_csawmgt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/control_csawmgt Checking test 065 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2604,14 +2604,14 @@ Checking test 065 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 346.406042 -The maximum resident set size (KB) = 589588 +The total amount of wall time = 350.171551 +The maximum resident set size (KB) = 585928 Test 065 control_csawmgt PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/control_ras +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/control_ras Checking test 066 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2622,26 +2622,26 @@ Checking test 066 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 187.834890 -The maximum resident set size (KB) = 548996 +The total amount of wall time = 182.605200 +The maximum resident set size (KB) = 550808 Test 066 control_ras PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/control_wam +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/control_wam Checking test 067 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 125.347396 -The maximum resident set size (KB) = 272640 +The total amount of wall time = 118.903751 +The maximum resident set size (KB) = 269964 Test 067 control_wam PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/control_p8_faster Checking test 068 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2688,14 +2688,14 @@ Checking test 068 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 181.002797 -The maximum resident set size (KB) = 1486700 +The total amount of wall time = 183.529678 +The maximum resident set size (KB) = 1486696 Test 068 control_p8_faster PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/regional_control_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/regional_control_faster Checking test 069 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2706,42 +2706,42 @@ Checking test 069 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 295.458127 -The maximum resident set size (KB) = 654408 +The total amount of wall time = 302.090535 +The maximum resident set size (KB) = 654976 Test 069 regional_control_faster PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/rrfs_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/rrfs_conus13km_hrrr_warm_debug Checking test 070 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 783.868797 -The maximum resident set size (KB) = 795424 +The total amount of wall time = 785.871574 +The maximum resident set size (KB) = 795032 Test 070 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/rrfs_conus13km_radar_tten_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/rrfs_conus13km_radar_tten_warm_debug Checking test 071 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 788.925334 -The maximum resident set size (KB) = 800608 +The total amount of wall time = 781.364697 +The maximum resident set size (KB) = 799744 Test 071 rrfs_conus13km_radar_tten_warm_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/control_CubedSphereGrid_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/control_CubedSphereGrid_debug Checking test 072 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2768,334 +2768,334 @@ Checking test 072 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 171.730468 -The maximum resident set size (KB) = 680716 +The total amount of wall time = 173.288352 +The maximum resident set size (KB) = 679120 Test 072 control_CubedSphereGrid_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/control_wrtGauss_netcdf_parallel_debug Checking test 073 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 161.272251 -The maximum resident set size (KB) = 682832 +The total amount of wall time = 163.728732 +The maximum resident set size (KB) = 682424 Test 073 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/control_stochy_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/control_stochy_debug Checking test 074 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 182.824105 -The maximum resident set size (KB) = 687824 +The total amount of wall time = 182.735424 +The maximum resident set size (KB) = 690040 Test 074 control_stochy_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/control_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/control_lndp_debug Checking test 075 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 163.510181 -The maximum resident set size (KB) = 688332 +The total amount of wall time = 164.753305 +The maximum resident set size (KB) = 684268 Test 075 control_lndp_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/control_csawmg_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/control_csawmg_debug Checking test 076 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 261.819786 -The maximum resident set size (KB) = 722108 +The total amount of wall time = 260.103545 +The maximum resident set size (KB) = 720176 Test 076 control_csawmg_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/control_csawmgt_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/control_csawmgt_debug Checking test 077 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 258.804191 -The maximum resident set size (KB) = 721488 +The total amount of wall time = 258.611564 +The maximum resident set size (KB) = 723252 Test 077 control_csawmgt_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/control_ras_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/control_ras_debug Checking test 078 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 165.082849 -The maximum resident set size (KB) = 695920 +The total amount of wall time = 166.043331 +The maximum resident set size (KB) = 696276 Test 078 control_ras_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/control_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/control_diag_debug Checking test 079 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 166.777296 -The maximum resident set size (KB) = 742844 +The total amount of wall time = 168.738743 +The maximum resident set size (KB) = 742172 Test 079 control_diag_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_debug_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/control_debug_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/control_debug_p8 Checking test 080 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 195.617418 -The maximum resident set size (KB) = 1506152 +The total amount of wall time = 190.074156 +The maximum resident set size (KB) = 1504348 Test 080 control_debug_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/regional_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/regional_debug Checking test 081 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1060.618121 -The maximum resident set size (KB) = 677224 +The total amount of wall time = 1055.454577 +The maximum resident set size (KB) = 680728 Test 081 regional_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/rap_control_debug Checking test 082 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 310.124865 -The maximum resident set size (KB) = 1058352 +The total amount of wall time = 303.246496 +The maximum resident set size (KB) = 1058792 Test 082 rap_control_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/hrrr_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/hrrr_control_debug Checking test 083 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 303.626241 -The maximum resident set size (KB) = 1053796 +The total amount of wall time = 305.875278 +The maximum resident set size (KB) = 1054504 Test 083 hrrr_control_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/rap_unified_drag_suite_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/rap_unified_drag_suite_debug Checking test 084 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 306.900945 -The maximum resident set size (KB) = 1056036 +The total amount of wall time = 305.529682 +The maximum resident set size (KB) = 1057172 Test 084 rap_unified_drag_suite_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/rap_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/rap_diag_debug Checking test 085 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 317.424583 -The maximum resident set size (KB) = 1139480 +The total amount of wall time = 314.035178 +The maximum resident set size (KB) = 1140480 Test 085 rap_diag_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/rap_cires_ugwp_debug Checking test 086 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 313.419578 -The maximum resident set size (KB) = 1057504 +The total amount of wall time = 309.335472 +The maximum resident set size (KB) = 1053700 Test 086 rap_cires_ugwp_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/rap_unified_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/rap_unified_ugwp_debug Checking test 087 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 312.450339 -The maximum resident set size (KB) = 1058452 +The total amount of wall time = 314.579768 +The maximum resident set size (KB) = 1058680 Test 087 rap_unified_ugwp_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/rap_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/rap_lndp_debug Checking test 088 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 309.273353 -The maximum resident set size (KB) = 1059820 +The total amount of wall time = 308.475542 +The maximum resident set size (KB) = 1057100 Test 088 rap_lndp_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_flake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/rap_flake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/rap_flake_debug Checking test 089 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 308.424318 -The maximum resident set size (KB) = 1058496 +The total amount of wall time = 303.900672 +The maximum resident set size (KB) = 1060296 Test 089 rap_flake_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_progcld_thompson_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/rap_progcld_thompson_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/rap_progcld_thompson_debug Checking test 090 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 305.182622 -The maximum resident set size (KB) = 1056604 +The total amount of wall time = 305.033479 +The maximum resident set size (KB) = 1055728 Test 090 rap_progcld_thompson_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/rap_noah_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/rap_noah_debug Checking test 091 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.486635 -The maximum resident set size (KB) = 1056476 +The total amount of wall time = 294.901904 +The maximum resident set size (KB) = 1052276 Test 091 rap_noah_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/rap_sfcdiff_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/rap_sfcdiff_debug Checking test 092 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 306.230048 -The maximum resident set size (KB) = 1059064 +The total amount of wall time = 302.992194 +The maximum resident set size (KB) = 1058636 Test 092 rap_sfcdiff_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/rap_noah_sfcdiff_cires_ugwp_debug Checking test 093 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 499.174588 -The maximum resident set size (KB) = 1054560 +The total amount of wall time = 493.122179 +The maximum resident set size (KB) = 1056104 Test 093 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/rrfs_v1beta_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/rrfs_v1beta_debug Checking test 094 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 304.075661 -The maximum resident set size (KB) = 1055392 +The total amount of wall time = 296.987271 +The maximum resident set size (KB) = 1051888 Test 094 rrfs_v1beta_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/control_wam_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/control_wam_debug Checking test 095 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 297.312284 -The maximum resident set size (KB) = 336596 +The total amount of wall time = 299.510899 +The maximum resident set size (KB) = 305972 Test 095 control_wam_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 096 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3106,14 +3106,14 @@ Checking test 096 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 272.304571 -The maximum resident set size (KB) = 874256 +The total amount of wall time = 279.911748 +The maximum resident set size (KB) = 879300 Test 096 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/rap_control_dyn32_phy32 Checking test 097 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3160,14 +3160,14 @@ Checking test 097 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 346.731707 -The maximum resident set size (KB) = 772500 +The total amount of wall time = 379.438981 +The maximum resident set size (KB) = 776900 Test 097 rap_control_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/hrrr_control_dyn32_phy32 Checking test 098 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3214,14 +3214,14 @@ Checking test 098 hrrr_control_dyn32_phy32 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 = 192.141935 -The maximum resident set size (KB) = 770924 +The total amount of wall time = 196.997970 +The maximum resident set size (KB) = 771800 Test 098 hrrr_control_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/rap_2threads_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/rap_2threads_dyn32_phy32 Checking test 099 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3268,14 +3268,14 @@ Checking test 099 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 329.011213 -The maximum resident set size (KB) = 824388 +The total amount of wall time = 336.792546 +The maximum resident set size (KB) = 828748 Test 099 rap_2threads_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/hrrr_control_2threads_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/hrrr_control_2threads_dyn32_phy32 Checking test 100 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3322,14 +3322,14 @@ Checking test 100 hrrr_control_2threads_dyn32_phy32 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 = 183.474423 -The maximum resident set size (KB) = 830376 +The total amount of wall time = 181.621024 +The maximum resident set size (KB) = 829668 Test 100 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/hrrr_control_decomp_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/hrrr_control_decomp_dyn32_phy32 Checking test 101 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3376,14 +3376,14 @@ Checking test 101 hrrr_control_decomp_dyn32_phy32 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 = 200.346390 -The maximum resident set size (KB) = 770224 +The total amount of wall time = 198.201347 +The maximum resident set size (KB) = 775408 Test 101 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/rap_restart_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/rap_restart_dyn32_phy32 Checking test 102 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3422,14 +3422,14 @@ Checking test 102 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 264.038607 -The maximum resident set size (KB) = 611512 +The total amount of wall time = 259.051782 +The maximum resident set size (KB) = 614196 Test 102 rap_restart_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/hrrr_control_restart_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/hrrr_control_restart_dyn32_phy32 Checking test 103 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3468,14 +3468,14 @@ Checking test 103 hrrr_control_restart_dyn32_phy32 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 = 97.372038 -The maximum resident set size (KB) = 606324 +The total amount of wall time = 96.491510 +The maximum resident set size (KB) = 606504 Test 103 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/rap_control_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/rap_control_dyn64_phy32 Checking test 104 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3522,81 +3522,81 @@ Checking test 104 rap_control_dyn64_phy32 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 = 240.543308 -The maximum resident set size (KB) = 795896 +The total amount of wall time = 244.902840 +The maximum resident set size (KB) = 797052 Test 104 rap_control_dyn64_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/rap_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/rap_control_debug_dyn32_phy32 Checking test 105 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.318156 -The maximum resident set size (KB) = 940956 +The total amount of wall time = 294.474492 +The maximum resident set size (KB) = 942688 Test 105 rap_control_debug_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/hrrr_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/hrrr_control_debug_dyn32_phy32 Checking test 106 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.667660 -The maximum resident set size (KB) = 944552 +The total amount of wall time = 290.716546 +The maximum resident set size (KB) = 941596 Test 106 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/rap_control_dyn64_phy32_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/rap_control_dyn64_phy32_debug Checking test 107 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 301.978164 -The maximum resident set size (KB) = 958580 +The total amount of wall time = 299.324008 +The maximum resident set size (KB) = 965052 Test 107 rap_control_dyn64_phy32_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/hafs_regional_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/hafs_regional_atm Checking test 108 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 281.669083 -The maximum resident set size (KB) = 824664 +The total amount of wall time = 270.182752 +The maximum resident set size (KB) = 825192 Test 108 hafs_regional_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/hafs_regional_atm_thompson_gfdlsf Checking test 109 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 363.111957 -The maximum resident set size (KB) = 1179576 +The total amount of wall time = 337.353780 +The maximum resident set size (KB) = 1179304 Test 109 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/hafs_regional_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/hafs_regional_atm_ocn Checking test 110 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3605,14 +3605,14 @@ Checking test 110 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 408.578333 -The maximum resident set size (KB) = 852764 +The total amount of wall time = 392.713019 +The maximum resident set size (KB) = 852192 Test 110 hafs_regional_atm_ocn PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/hafs_regional_atm_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/hafs_regional_atm_wav Checking test 111 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3621,14 +3621,14 @@ Checking test 111 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 730.389528 -The maximum resident set size (KB) = 882792 +The total amount of wall time = 711.277746 +The maximum resident set size (KB) = 884660 Test 111 hafs_regional_atm_wav PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/hafs_regional_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/hafs_regional_atm_ocn_wav Checking test 112 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3639,28 +3639,28 @@ Checking test 112 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 914.086178 -The maximum resident set size (KB) = 909844 +The total amount of wall time = 895.143019 +The maximum resident set size (KB) = 913244 Test 112 hafs_regional_atm_ocn_wav PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/hafs_regional_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/hafs_regional_1nest_atm Checking test 113 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 338.898208 -The maximum resident set size (KB) = 391380 +The total amount of wall time = 332.150271 +The maximum resident set size (KB) = 390060 Test 113 hafs_regional_1nest_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/hafs_regional_telescopic_2nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/hafs_regional_telescopic_2nests_atm Checking test 114 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3669,28 +3669,28 @@ Checking test 114 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 419.194108 -The maximum resident set size (KB) = 419900 +The total amount of wall time = 404.736992 +The maximum resident set size (KB) = 413492 Test 114 hafs_regional_telescopic_2nests_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/hafs_global_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/hafs_global_1nest_atm Checking test 115 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 173.041281 -The maximum resident set size (KB) = 275832 +The total amount of wall time = 168.872479 +The maximum resident set size (KB) = 292668 Test 115 hafs_global_1nest_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_multiple_4nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/hafs_global_multiple_4nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/hafs_global_multiple_4nests_atm Checking test 116 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3708,14 +3708,14 @@ Checking test 116 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -The total amount of wall time = 517.812012 -The maximum resident set size (KB) = 341204 +The total amount of wall time = 493.166882 +The maximum resident set size (KB) = 336688 Test 116 hafs_global_multiple_4nests_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/hafs_regional_specified_moving_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/hafs_regional_specified_moving_1nest_atm Checking test 117 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3724,28 +3724,28 @@ Checking test 117 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 218.207270 -The maximum resident set size (KB) = 406932 +The total amount of wall time = 215.035243 +The maximum resident set size (KB) = 402204 Test 117 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/hafs_regional_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/hafs_regional_storm_following_1nest_atm Checking test 118 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 211.087468 -The maximum resident set size (KB) = 401372 +The total amount of wall time = 203.388143 +The maximum resident set size (KB) = 402492 Test 118 hafs_regional_storm_following_1nest_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/hafs_regional_storm_following_1nest_atm_ocn Checking test 119 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3754,42 +3754,42 @@ Checking test 119 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 254.166700 -The maximum resident set size (KB) = 453336 +The total amount of wall time = 249.142874 +The maximum resident set size (KB) = 453672 Test 119 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/hafs_global_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/hafs_global_storm_following_1nest_atm Checking test 120 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 82.813888 -The maximum resident set size (KB) = 283104 +The total amount of wall time = 79.969347 +The maximum resident set size (KB) = 296844 Test 120 hafs_global_storm_following_1nest_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 121 hafs_regional_storm_following_1nest_atm_ocn_debug results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK -The total amount of wall time = 814.567099 -The maximum resident set size (KB) = 483448 +The total amount of wall time = 807.913915 +The maximum resident set size (KB) = 484136 Test 121 hafs_regional_storm_following_1nest_atm_ocn_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 122 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3800,14 +3800,14 @@ Checking test 122 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -The total amount of wall time = 546.704994 -The maximum resident set size (KB) = 523672 +The total amount of wall time = 525.583488 +The maximum resident set size (KB) = 523908 Test 122 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_atmlnd_sbs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/control_p8_atmlnd_sbs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/control_p8_atmlnd_sbs Checking test 123 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3892,14 +3892,14 @@ Checking test 123 control_p8_atmlnd_sbs results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 272.783972 -The maximum resident set size (KB) = 1534668 +The total amount of wall time = 244.720695 +The maximum resident set size (KB) = 1542836 Test 123 control_p8_atmlnd_sbs PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/atmaero_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/atmaero_control_p8 Checking test 124 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3943,14 +3943,14 @@ Checking test 124 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 253.804375 -The maximum resident set size (KB) = 2818516 +The total amount of wall time = 253.638406 +The maximum resident set size (KB) = 2813948 Test 124 atmaero_control_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/atmaero_control_p8_rad +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/atmaero_control_p8_rad Checking test 125 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3994,14 +3994,14 @@ Checking test 125 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 292.080410 -The maximum resident set size (KB) = 2881420 +The total amount of wall time = 288.690902 +The maximum resident set size (KB) = 2880596 Test 125 atmaero_control_p8_rad PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/atmaero_control_p8_rad_micro +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/atmaero_control_p8_rad_micro Checking test 126 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4045,14 +4045,14 @@ Checking test 126 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 297.988589 -The maximum resident set size (KB) = 2889716 +The total amount of wall time = 294.967125 +The maximum resident set size (KB) = 2889916 Test 126 atmaero_control_p8_rad_micro PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/regional_atmaq +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/regional_atmaq Checking test 127 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4068,14 +4068,14 @@ Checking test 127 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 704.332463 -The maximum resident set size (KB) = 1409272 +The total amount of wall time = 670.465941 +The maximum resident set size (KB) = 1408108 Test 127 regional_atmaq PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/regional_atmaq_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/regional_atmaq_debug Checking test 128 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4089,14 +4089,14 @@ Checking test 128 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1447.914047 -The maximum resident set size (KB) = 1442080 +The total amount of wall time = 1438.455042 +The maximum resident set size (KB) = 1442420 Test 128 regional_atmaq_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_250593/regional_atmaq_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/regional_atmaq_faster Checking test 129 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4112,12 +4112,12 @@ Checking test 129 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 718.608316 -The maximum resident set size (KB) = 1406736 +The total amount of wall time = 663.175202 +The maximum resident set size (KB) = 1403456 Test 129 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Mon Mar 13 21:15:27 UTC 2023 -Elapsed time: 01h:07m:46s. Have a nice day! +Wed Mar 15 15:06:09 UTC 2023 +Elapsed time: 01h:08m:35s. Have a nice day! diff --git a/tests/rt.conf b/tests/rt.conf index dce308f1cad..22315c2a821 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -40,7 +40,7 @@ RUN | cpld_warmstart_c48 RUN | cpld_restart_c48 | | | cpld_warmstart_c48 COMPILE | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON | | fv3 | -RUN | cpld_control_p8_faster | | fv3 | +RUN | cpld_control_p8_faster | - cheyenne.intel | fv3 | ################################################################################################################################################################################### # ATM tests # From 10ceadd20a2dd67e8e805284f656cc4a18f538d4 Mon Sep 17 00:00:00 2001 From: Brian Curtis <64433609+BrianCurtis-NOAA@users.noreply.github.com> Date: Tue, 21 Mar 2023 09:42:09 -0400 Subject: [PATCH 09/30] Bring in changes from production/AQM.v7 (#1656) * aqm init_concentrations=false * ATMAQ tests are 32BIT --- AQM | 2 +- tests/RegressionTests_acorn.intel.log | 1256 +++++++-------- tests/RegressionTests_cheyenne.gnu.log | 424 ++--- tests/RegressionTests_cheyenne.intel.log | 1835 +++++++++++----------- tests/RegressionTests_hera.gnu.log | 426 ++--- tests/RegressionTests_hera.intel.log | 1320 ++++++++-------- tests/RegressionTests_jet.intel.log | 1202 +++++++------- tests/RegressionTests_orion.intel.log | 1333 ++++++++-------- tests/RegressionTests_wcoss2.intel.log | 1090 ++++++------- tests/parm/aqm/aqm.rc | 2 +- tests/rt.conf | 6 +- tests/rt.sh | 2 +- 12 files changed, 4455 insertions(+), 4443 deletions(-) diff --git a/AQM b/AQM index 572f3cc2727..37cbb7d6840 160000 --- a/AQM +++ b/AQM @@ -1 +1 @@ -Subproject commit 572f3cc2727916d8805aae162b656566874bb88a +Subproject commit 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 diff --git a/tests/RegressionTests_acorn.intel.log b/tests/RegressionTests_acorn.intel.log index 3659122c085..3d92ff9a973 100644 --- a/tests/RegressionTests_acorn.intel.log +++ b/tests/RegressionTests_acorn.intel.log @@ -1,39 +1,51 @@ -Wed Mar 15 13:56:41 UTC 2023 +Mon Mar 20 23:28:15 UTC 2023 Start Regression test -Compile 001 elapsed time 1076 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 994 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 505 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 475 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 005 elapsed time 1047 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 625 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 967 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 008 elapsed time 448 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 446 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 1205 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 1098 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 1068 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 013 elapsed time 541 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 819 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 015 elapsed time 726 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 243 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 017 elapsed time 545 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 472 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 019 elapsed time 236 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 818 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 527 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 022 elapsed time 347 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 023 elapsed time 167 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 024 elapsed time 82 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 025 elapsed time 442 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 026 elapsed time 651 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 027 elapsed time 619 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 443 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 306 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 030 elapsed time 539 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_mixedmode -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/cpld_control_p8_mixedmode +Test 008 compile FAIL +Test 003 compile FAIL +Test 005 compile FAIL +Test 007 compile FAIL + + + + +Test 002 compile FAIL + +Test 011 compile FAIL + +Compile 001 elapsed time 1407 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1592 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 1198 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 660 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 005 elapsed time 1579 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 1397 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 1871 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 937 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 1767 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 986 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 843 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 879 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 416 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 014 elapsed time 1469 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 1001 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 1109 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 017 elapsed time 482 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 1150 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 019 elapsed time 384 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 1353 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 809 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 022 elapsed time 1089 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 023 elapsed time 497 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 024 elapsed time 926 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 025 elapsed time 820 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 026 elapsed time 792 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 027 elapsed time 562 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 863 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 368 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 030 elapsed time 623 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8_mixedmode +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -98,14 +110,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 332.856899 -The maximum resident set size (KB) = 2949860 +The total amount of wall time = 336.776732 +The maximum resident set size (KB) = 2951236 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_gfsv17 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/cpld_control_gfsv17 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_gfsv17 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -169,14 +181,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 256.063889 -The maximum resident set size (KB) = 1580344 +The total amount of wall time = 257.694425 +The maximum resident set size (KB) = 1580288 Test 002 cpld_control_gfsv17 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/cpld_control_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -241,14 +253,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 384.547029 -The maximum resident set size (KB) = 2980692 +The total amount of wall time = 388.361127 +The maximum resident set size (KB) = 2978864 Test 003 cpld_control_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/cpld_restart_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -301,14 +313,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 229.935471 -The maximum resident set size (KB) = 2864384 +The total amount of wall time = 229.531476 +The maximum resident set size (KB) = 2869764 Test 004 cpld_restart_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/cpld_2threads_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -361,14 +373,14 @@ Checking test 005 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 371.316071 -The maximum resident set size (KB) = 3282188 +The total amount of wall time = 372.909955 +The maximum resident set size (KB) = 3284020 Test 005 cpld_2threads_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/cpld_decomp_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/cpld_decomp_p8 Checking test 006 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -421,14 +433,14 @@ Checking test 006 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 379.855178 -The maximum resident set size (KB) = 2980556 +The total amount of wall time = 380.920988 +The maximum resident set size (KB) = 2979372 Test 006 cpld_decomp_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/cpld_mpi_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/cpld_mpi_p8 Checking test 007 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -481,14 +493,14 @@ Checking test 007 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 316.778993 -The maximum resident set size (KB) = 2906464 +The total amount of wall time = 317.487007 +The maximum resident set size (KB) = 2908540 Test 007 cpld_mpi_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_ciceC_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/cpld_control_ciceC_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_ciceC_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/cpld_control_ciceC_p8 Checking test 008 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -553,14 +565,14 @@ Checking test 008 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 384.810503 -The maximum resident set size (KB) = 2982456 +The total amount of wall time = 385.519032 +The maximum resident set size (KB) = 2982072 Test 008 cpld_control_ciceC_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/cpld_control_noaero_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/cpld_control_noaero_p8 Checking test 009 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -624,14 +636,14 @@ Checking test 009 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 280.338727 -The maximum resident set size (KB) = 1574424 +The total amount of wall time = 284.494412 +The maximum resident set size (KB) = 1570624 Test 009 cpld_control_noaero_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/cpld_control_nowave_noaero_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_c96_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/cpld_control_nowave_noaero_p8 Checking test 010 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -693,14 +705,14 @@ Checking test 010 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 299.711399 -The maximum resident set size (KB) = 1624656 +The total amount of wall time = 302.082666 +The maximum resident set size (KB) = 1621868 Test 010 cpld_control_nowave_noaero_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/cpld_control_noaero_p8_agrid +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_noaero_p8_agrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/cpld_control_noaero_p8_agrid Checking test 011 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -762,14 +774,14 @@ Checking test 011 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 307.689855 -The maximum resident set size (KB) = 1624132 +The total amount of wall time = 308.506256 +The maximum resident set size (KB) = 1630936 Test 011 cpld_control_noaero_p8_agrid PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/cpld_control_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/cpld_control_c48 Checking test 012 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -819,14 +831,14 @@ Checking test 012 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 431.848160 -The maximum resident set size (KB) = 2629176 +The total amount of wall time = 433.707875 +The maximum resident set size (KB) = 2625460 Test 012 cpld_control_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/cpld_warmstart_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/cpld_warmstart_c48 Checking test 013 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -876,14 +888,14 @@ Checking test 013 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 120.924095 -The maximum resident set size (KB) = 2643616 +The total amount of wall time = 121.028350 +The maximum resident set size (KB) = 2645184 Test 013 cpld_warmstart_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/cpld_restart_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/cpld_restart_c48 Checking test 014 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -933,14 +945,14 @@ Checking test 014 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 66.481411 -The maximum resident set size (KB) = 2065732 +The total amount of wall time = 67.983535 +The maximum resident set size (KB) = 2067708 Test 014 cpld_restart_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/cpld_control_p8_faster +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/cpld_control_p8_faster Checking test 015 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1005,14 +1017,14 @@ Checking test 015 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 377.330254 -The maximum resident set size (KB) = 2981212 +The total amount of wall time = 379.922045 +The maximum resident set size (KB) = 2974984 Test 015 cpld_control_p8_faster PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/control_CubedSphereGrid +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_CubedSphereGrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/control_CubedSphereGrid Checking test 016 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1039,14 +1051,14 @@ Checking test 016 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 128.965024 -The maximum resident set size (KB) = 517804 +The total amount of wall time = 129.311819 +The maximum resident set size (KB) = 517772 Test 016 control_CubedSphereGrid PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_latlon -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/control_latlon +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_latlon +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/control_latlon Checking test 017 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1057,14 +1069,14 @@ Checking test 017 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 131.048187 -The maximum resident set size (KB) = 518492 +The total amount of wall time = 131.421261 +The maximum resident set size (KB) = 513332 Test 017 control_latlon PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/control_wrtGauss_netcdf_parallel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/control_wrtGauss_netcdf_parallel Checking test 018 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1075,14 +1087,14 @@ Checking test 018 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 133.041725 -The maximum resident set size (KB) = 518272 +The total amount of wall time = 133.142225 +The maximum resident set size (KB) = 518500 Test 018 control_wrtGauss_netcdf_parallel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/control_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/control_c48 Checking test 019 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1121,14 +1133,14 @@ Checking test 019 control_c48 results .... 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.204011 -The maximum resident set size (KB) = 674012 +The total amount of wall time = 327.942048 +The maximum resident set size (KB) = 672732 Test 019 control_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c192 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/control_c192 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_c192 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/control_c192 Checking test 020 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1139,14 +1151,14 @@ Checking test 020 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 525.121243 -The maximum resident set size (KB) = 616972 +The total amount of wall time = 527.269778 +The maximum resident set size (KB) = 614988 Test 020 control_c192 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/control_c384 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_c384 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/control_c384 Checking test 021 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1157,14 +1169,14 @@ Checking test 021 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 577.675914 -The maximum resident set size (KB) = 910448 +The total amount of wall time = 573.408721 +The maximum resident set size (KB) = 913136 Test 021 control_c384 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384gdas -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/control_c384gdas +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_c384gdas +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/control_c384gdas Checking test 022 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1207,14 +1219,14 @@ Checking test 022 control_c384gdas results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 515.163679 -The maximum resident set size (KB) = 1042140 +The total amount of wall time = 502.349146 +The maximum resident set size (KB) = 1044192 Test 022 control_c384gdas PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/control_stochy +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/control_stochy Checking test 023 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1225,28 +1237,28 @@ Checking test 023 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 88.614003 -The maximum resident set size (KB) = 520428 +The total amount of wall time = 88.649396 +The maximum resident set size (KB) = 518796 Test 023 control_stochy PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/control_stochy_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/control_stochy_restart Checking test 024 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 48.181650 -The maximum resident set size (KB) = 289600 +The total amount of wall time = 48.613864 +The maximum resident set size (KB) = 287112 Test 024 control_stochy_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/control_lndp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/control_lndp Checking test 025 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1257,14 +1269,14 @@ Checking test 025 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 81.799231 -The maximum resident set size (KB) = 517660 +The total amount of wall time = 82.176612 +The maximum resident set size (KB) = 518036 Test 025 control_lndp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr4 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/control_iovr4 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_iovr4 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/control_iovr4 Checking test 026 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1279,14 +1291,14 @@ Checking test 026 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 134.310230 -The maximum resident set size (KB) = 516132 +The total amount of wall time = 133.963788 +The maximum resident set size (KB) = 513572 Test 026 control_iovr4 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr5 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/control_iovr5 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_iovr5 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/control_iovr5 Checking test 027 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1301,14 +1313,14 @@ Checking test 027 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 134.061425 -The maximum resident set size (KB) = 513644 +The total amount of wall time = 134.296719 +The maximum resident set size (KB) = 519912 Test 027 control_iovr5 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/control_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/control_p8 Checking test 028 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1355,14 +1367,14 @@ Checking test 028 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 178.826137 -The maximum resident set size (KB) = 1480984 +The total amount of wall time = 177.372138 +The maximum resident set size (KB) = 1483824 Test 028 control_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/control_p8_lndp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/control_p8_lndp Checking test 029 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1381,14 +1393,14 @@ Checking test 029 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 319.562928 -The maximum resident set size (KB) = 1487976 +The total amount of wall time = 320.337788 +The maximum resident set size (KB) = 1489032 Test 029 control_p8_lndp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/control_restart_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/control_restart_p8 Checking test 030 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1427,14 +1439,14 @@ Checking test 030 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 98.535360 -The maximum resident set size (KB) = 654748 +The total amount of wall time = 99.679121 +The maximum resident set size (KB) = 654388 Test 030 control_restart_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/control_decomp_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/control_decomp_p8 Checking test 031 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1477,14 +1489,14 @@ Checking test 031 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 180.151880 -The maximum resident set size (KB) = 1479620 +The total amount of wall time = 181.044883 +The maximum resident set size (KB) = 1478760 Test 031 control_decomp_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/control_2threads_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/control_2threads_p8 Checking test 032 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1527,14 +1539,14 @@ Checking test 032 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 161.356049 -The maximum resident set size (KB) = 1567584 +The total amount of wall time = 159.673171 +The maximum resident set size (KB) = 1565212 Test 032 control_2threads_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_rrtmgp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/control_p8_rrtmgp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8_rrtmgp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/control_p8_rrtmgp Checking test 033 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1581,14 +1593,14 @@ Checking test 033 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 234.648778 -The maximum resident set size (KB) = 1544728 +The total amount of wall time = 233.316498 +The maximum resident set size (KB) = 1550788 Test 033 control_p8_rrtmgp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/merra2_thompson -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/merra2_thompson +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/merra2_thompson +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/merra2_thompson Checking test 034 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1635,14 +1647,14 @@ Checking test 034 merra2_thompson results .... 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.106594 -The maximum resident set size (KB) = 1497456 +The total amount of wall time = 203.712884 +The maximum resident set size (KB) = 1496556 Test 034 merra2_thompson PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/regional_control +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/regional_control Checking test 035 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1653,28 +1665,28 @@ Checking test 035 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 286.368246 -The maximum resident set size (KB) = 654908 +The total amount of wall time = 290.636125 +The maximum resident set size (KB) = 654524 Test 035 regional_control PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/regional_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/regional_restart Checking test 036 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 152.472438 -The maximum resident set size (KB) = 649256 +The total amount of wall time = 154.851472 +The maximum resident set size (KB) = 650216 Test 036 regional_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/regional_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/regional_decomp Checking test 037 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1685,14 +1697,14 @@ Checking test 037 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 302.738786 -The maximum resident set size (KB) = 654676 +The total amount of wall time = 303.241388 +The maximum resident set size (KB) = 650448 Test 037 regional_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/regional_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/regional_2threads Checking test 038 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1703,14 +1715,14 @@ Checking test 038 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 179.076494 -The maximum resident set size (KB) = 694436 +The total amount of wall time = 177.099125 +The maximum resident set size (KB) = 696988 Test 038 regional_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_noquilt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/regional_noquilt +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_noquilt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/regional_noquilt Checking test 039 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1718,14 +1730,14 @@ Checking test 039 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 309.417507 -The maximum resident set size (KB) = 643284 +The total amount of wall time = 312.503050 +The maximum resident set size (KB) = 646036 Test 039 regional_noquilt PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/regional_2dwrtdecomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/regional_2dwrtdecomp Checking test 040 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1736,14 +1748,14 @@ Checking test 040 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 287.348291 -The maximum resident set size (KB) = 650148 +The total amount of wall time = 288.953405 +The maximum resident set size (KB) = 653452 Test 040 regional_2dwrtdecomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/fv3_regional_wofs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/regional_wofs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/fv3_regional_wofs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/regional_wofs Checking test 041 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1754,14 +1766,14 @@ Checking test 041 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 360.385003 -The maximum resident set size (KB) = 338996 +The total amount of wall time = 365.193952 +The maximum resident set size (KB) = 339160 Test 041 regional_wofs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/rap_control +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/rap_control Checking test 042 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1808,14 +1820,14 @@ Checking test 042 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 419.019588 -The maximum resident set size (KB) = 895140 +The total amount of wall time = 417.947760 +The maximum resident set size (KB) = 893144 Test 042 rap_control PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/regional_spp_sppt_shum_skeb +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_spp_sppt_shum_skeb +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/regional_spp_sppt_shum_skeb Checking test 043 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -1826,14 +1838,14 @@ Checking test 043 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 285.542432 -The maximum resident set size (KB) = 985404 +The total amount of wall time = 283.324774 +The maximum resident set size (KB) = 986612 Test 043 regional_spp_sppt_shum_skeb PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/rap_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/rap_decomp Checking test 044 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1880,14 +1892,14 @@ Checking test 044 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 432.939711 -The maximum resident set size (KB) = 889644 +The total amount of wall time = 434.936983 +The maximum resident set size (KB) = 892972 Test 044 rap_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/rap_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/rap_2threads Checking test 045 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1934,14 +1946,14 @@ Checking test 045 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 390.993896 -The maximum resident set size (KB) = 964852 +The total amount of wall time = 391.909088 +The maximum resident set size (KB) = 963436 Test 045 rap_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/rap_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/rap_restart Checking test 046 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1980,14 +1992,14 @@ Checking test 046 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 212.507058 -The maximum resident set size (KB) = 641176 +The total amount of wall time = 213.270457 +The maximum resident set size (KB) = 643724 Test 046 rap_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/rap_sfcdiff +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/rap_sfcdiff Checking test 047 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2034,14 +2046,14 @@ Checking test 047 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 414.711796 -The maximum resident set size (KB) = 894380 +The total amount of wall time = 416.683036 +The maximum resident set size (KB) = 891360 Test 047 rap_sfcdiff PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/rap_sfcdiff_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/rap_sfcdiff_decomp Checking test 048 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2088,14 +2100,14 @@ Checking test 048 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 431.885993 -The maximum resident set size (KB) = 893492 +The total amount of wall time = 435.288544 +The maximum resident set size (KB) = 892752 Test 048 rap_sfcdiff_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/rap_sfcdiff_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/rap_sfcdiff_restart Checking test 049 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2134,14 +2146,14 @@ Checking test 049 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 309.936448 -The maximum resident set size (KB) = 641284 +The total amount of wall time = 310.126181 +The maximum resident set size (KB) = 640496 Test 049 rap_sfcdiff_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/hrrr_control +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/hrrr_control Checking test 050 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2188,14 +2200,14 @@ Checking test 050 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 399.363477 -The maximum resident set size (KB) = 889088 +The total amount of wall time = 399.534369 +The maximum resident set size (KB) = 890160 Test 050 hrrr_control PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/hrrr_control_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/hrrr_control_decomp Checking test 051 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2242,14 +2254,14 @@ Checking test 051 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 414.088090 -The maximum resident set size (KB) = 890660 +The total amount of wall time = 414.387322 +The maximum resident set size (KB) = 888004 Test 051 hrrr_control_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/hrrr_control_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/hrrr_control_2threads Checking test 052 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2296,14 +2308,14 @@ Checking test 052 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 371.211427 -The maximum resident set size (KB) = 957832 +The total amount of wall time = 371.982787 +The maximum resident set size (KB) = 955280 Test 052 hrrr_control_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/hrrr_control_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/hrrr_control_restart Checking test 053 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2342,14 +2354,14 @@ Checking test 053 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 297.844382 -The maximum resident set size (KB) = 642068 +The total amount of wall time = 298.957876 +The maximum resident set size (KB) = 640388 Test 053 hrrr_control_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/rrfs_v1beta +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_v1beta +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/rrfs_v1beta Checking test 054 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2396,14 +2408,14 @@ Checking test 054 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 411.016839 -The maximum resident set size (KB) = 887520 +The total amount of wall time = 410.500777 +The maximum resident set size (KB) = 886788 Test 054 rrfs_v1beta PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/rrfs_v1nssl +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_v1nssl +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/rrfs_v1nssl Checking test 055 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2418,14 +2430,14 @@ Checking test 055 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 473.272994 -The maximum resident set size (KB) = 577156 +The total amount of wall time = 473.047504 +The maximum resident set size (KB) = 577792 Test 055 rrfs_v1nssl PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/rrfs_v1nssl_nohailnoccn +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/rrfs_v1nssl_nohailnoccn Checking test 056 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2440,14 +2452,14 @@ Checking test 056 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 463.445360 -The maximum resident set size (KB) = 563832 +The total amount of wall time = 463.494419 +The maximum resident set size (KB) = 566256 Test 056 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/rrfs_conus13km_hrrr_warm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/rrfs_conus13km_hrrr_warm Checking test 057 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2456,14 +2468,14 @@ Checking test 057 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 114.364541 -The maximum resident set size (KB) = 760512 +The total amount of wall time = 115.401010 +The maximum resident set size (KB) = 762492 Test 057 rrfs_conus13km_hrrr_warm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/rrfs_smoke_conus13km_hrrr_warm Checking test 058 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2472,14 +2484,14 @@ Checking test 058 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 128.434941 -The maximum resident set size (KB) = 778732 +The total amount of wall time = 127.033813 +The maximum resident set size (KB) = 769704 Test 058 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/rrfs_conus13km_radar_tten_warm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/rrfs_conus13km_radar_tten_warm Checking test 059 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2488,14 +2500,14 @@ Checking test 059 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 116.339668 -The maximum resident set size (KB) = 763184 +The total amount of wall time = 116.906327 +The maximum resident set size (KB) = 765424 Test 059 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/rrfs_conus13km_hrrr_warm_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/rrfs_conus13km_hrrr_warm_2threads Checking test 060 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2504,14 +2516,14 @@ Checking test 060 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 85.988682 -The maximum resident set size (KB) = 759100 +The total amount of wall time = 83.952863 +The maximum resident set size (KB) = 759268 Test 060 rrfs_conus13km_hrrr_warm_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/rrfs_conus13km_radar_tten_warm_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/rrfs_conus13km_radar_tten_warm_2threads Checking test 061 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2520,14 +2532,14 @@ Checking test 061 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 85.883125 -The maximum resident set size (KB) = 760292 +The total amount of wall time = 85.723153 +The maximum resident set size (KB) = 760224 Test 061 rrfs_conus13km_radar_tten_warm_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/control_csawmg +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_csawmg +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/control_csawmg Checking test 062 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2538,14 +2550,14 @@ Checking test 062 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 346.812828 -The maximum resident set size (KB) = 586620 +The total amount of wall time = 351.443287 +The maximum resident set size (KB) = 585132 Test 062 control_csawmg PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/control_csawmgt +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_csawmgt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/control_csawmgt Checking test 063 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2556,14 +2568,14 @@ Checking test 063 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 344.635537 -The maximum resident set size (KB) = 583288 +The total amount of wall time = 347.171585 +The maximum resident set size (KB) = 584552 Test 063 control_csawmgt PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/control_ras +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_ras +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/control_ras Checking test 064 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2574,26 +2586,26 @@ Checking test 064 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 180.798644 -The maximum resident set size (KB) = 551792 +The total amount of wall time = 180.902537 +The maximum resident set size (KB) = 551420 Test 064 control_ras PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/control_wam +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_wam +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/control_wam Checking test 065 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 117.625103 -The maximum resident set size (KB) = 272328 +The total amount of wall time = 117.650267 +The maximum resident set size (KB) = 271224 Test 065 control_wam PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/control_p8_faster +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/control_p8_faster Checking test 066 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2640,14 +2652,14 @@ Checking test 066 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 172.817310 -The maximum resident set size (KB) = 1476704 +The total amount of wall time = 172.954965 +The maximum resident set size (KB) = 1484164 Test 066 control_p8_faster PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/regional_control_faster +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_control_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/regional_control_faster Checking test 067 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2658,42 +2670,42 @@ Checking test 067 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 280.648910 -The maximum resident set size (KB) = 648436 +The total amount of wall time = 281.566286 +The maximum resident set size (KB) = 652816 Test 067 regional_control_faster PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/rrfs_conus13km_hrrr_warm_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/rrfs_conus13km_hrrr_warm_debug Checking test 068 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 768.882018 -The maximum resident set size (KB) = 791176 +The total amount of wall time = 785.885212 +The maximum resident set size (KB) = 782700 Test 068 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/rrfs_conus13km_radar_tten_warm_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_conus13km_radar_tten_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/rrfs_conus13km_radar_tten_warm_debug Checking test 069 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 769.566582 -The maximum resident set size (KB) = 794752 +The total amount of wall time = 769.717908 +The maximum resident set size (KB) = 795760 Test 069 rrfs_conus13km_radar_tten_warm_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/control_CubedSphereGrid_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_CubedSphereGrid_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/control_CubedSphereGrid_debug Checking test 070 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2720,334 +2732,334 @@ Checking test 070 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 165.831107 -The maximum resident set size (KB) = 674076 +The total amount of wall time = 167.197487 +The maximum resident set size (KB) = 676460 Test 070 control_CubedSphereGrid_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/control_wrtGauss_netcdf_parallel_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/control_wrtGauss_netcdf_parallel_debug Checking test 071 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 157.752193 -The maximum resident set size (KB) = 677000 +The total amount of wall time = 159.669025 +The maximum resident set size (KB) = 676872 Test 071 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/control_stochy_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_stochy_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/control_stochy_debug Checking test 072 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 178.480646 -The maximum resident set size (KB) = 681988 +The total amount of wall time = 178.802307 +The maximum resident set size (KB) = 683752 Test 072 control_stochy_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/control_lndp_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/control_lndp_debug Checking test 073 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 159.993825 -The maximum resident set size (KB) = 682492 +The total amount of wall time = 162.226467 +The maximum resident set size (KB) = 679268 Test 073 control_lndp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/control_csawmg_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_csawmg_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/control_csawmg_debug Checking test 074 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 254.305326 -The maximum resident set size (KB) = 715228 +The total amount of wall time = 257.045782 +The maximum resident set size (KB) = 716224 Test 074 control_csawmg_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/control_csawmgt_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_csawmgt_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/control_csawmgt_debug Checking test 075 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 251.013870 -The maximum resident set size (KB) = 717744 +The total amount of wall time = 252.945424 +The maximum resident set size (KB) = 715880 Test 075 control_csawmgt_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/control_ras_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_ras_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/control_ras_debug Checking test 076 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 161.886959 -The maximum resident set size (KB) = 687064 +The total amount of wall time = 162.633197 +The maximum resident set size (KB) = 685988 Test 076 control_ras_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/control_diag_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/control_diag_debug Checking test 077 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 164.033875 -The maximum resident set size (KB) = 737568 +The total amount of wall time = 164.507138 +The maximum resident set size (KB) = 735060 Test 077 control_diag_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_debug_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/control_debug_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_debug_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/control_debug_p8 Checking test 078 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 185.738440 -The maximum resident set size (KB) = 1503260 +The total amount of wall time = 188.383089 +The maximum resident set size (KB) = 1500012 Test 078 control_debug_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/regional_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/regional_debug Checking test 079 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1037.020432 -The maximum resident set size (KB) = 669932 +The total amount of wall time = 1034.661701 +The maximum resident set size (KB) = 681148 Test 079 regional_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/rap_control_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/rap_control_debug Checking test 080 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.080266 -The maximum resident set size (KB) = 1054276 +The total amount of wall time = 299.426846 +The maximum resident set size (KB) = 1051168 Test 080 rap_control_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/hrrr_control_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/hrrr_control_debug Checking test 081 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 292.306552 -The maximum resident set size (KB) = 1048428 +The total amount of wall time = 292.071693 +The maximum resident set size (KB) = 1052840 Test 081 hrrr_control_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/rap_unified_drag_suite_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/rap_unified_drag_suite_debug Checking test 082 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 299.199787 -The maximum resident set size (KB) = 1050908 +The total amount of wall time = 296.948959 +The maximum resident set size (KB) = 1050624 Test 082 rap_unified_drag_suite_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/rap_diag_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/rap_diag_debug Checking test 083 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 309.655252 -The maximum resident set size (KB) = 1133820 +The total amount of wall time = 308.235165 +The maximum resident set size (KB) = 1132572 Test 083 rap_diag_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/rap_cires_ugwp_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/rap_cires_ugwp_debug Checking test 084 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 303.728971 -The maximum resident set size (KB) = 1052336 +The total amount of wall time = 303.500928 +The maximum resident set size (KB) = 1047384 Test 084 rap_cires_ugwp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/rap_unified_ugwp_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/rap_unified_ugwp_debug Checking test 085 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 305.668911 -The maximum resident set size (KB) = 1052736 +The total amount of wall time = 305.837903 +The maximum resident set size (KB) = 1052300 Test 085 rap_unified_ugwp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/rap_lndp_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/rap_lndp_debug Checking test 086 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 299.885232 -The maximum resident set size (KB) = 1051432 +The total amount of wall time = 299.955583 +The maximum resident set size (KB) = 1050572 Test 086 rap_lndp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_flake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/rap_flake_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_flake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/rap_flake_debug Checking test 087 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 299.277286 -The maximum resident set size (KB) = 1053552 +The total amount of wall time = 298.105647 +The maximum resident set size (KB) = 1053220 Test 087 rap_flake_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_progcld_thompson_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/rap_progcld_thompson_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_progcld_thompson_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/rap_progcld_thompson_debug Checking test 088 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.134980 -The maximum resident set size (KB) = 1053112 +The total amount of wall time = 297.301469 +The maximum resident set size (KB) = 1051472 Test 088 rap_progcld_thompson_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/rap_noah_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_noah_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/rap_noah_debug Checking test 089 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 291.054781 -The maximum resident set size (KB) = 1052144 +The total amount of wall time = 291.143260 +The maximum resident set size (KB) = 1051268 Test 089 rap_noah_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/rap_sfcdiff_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_sfcdiff_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/rap_sfcdiff_debug Checking test 090 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 301.924620 -The maximum resident set size (KB) = 1052696 +The total amount of wall time = 296.860215 +The maximum resident set size (KB) = 1048476 Test 090 rap_sfcdiff_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/rap_noah_sfcdiff_cires_ugwp_debug Checking test 091 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 487.290851 -The maximum resident set size (KB) = 1049880 +The total amount of wall time = 486.091563 +The maximum resident set size (KB) = 1049508 Test 091 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/rrfs_v1beta_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_v1beta_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/rrfs_v1beta_debug Checking test 092 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 292.932292 -The maximum resident set size (KB) = 1049024 +The total amount of wall time = 292.159890 +The maximum resident set size (KB) = 1045392 Test 092 rrfs_v1beta_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/control_wam_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_wam_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/control_wam_debug Checking test 093 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 299.389314 -The maximum resident set size (KB) = 303260 +The total amount of wall time = 299.726056 +The maximum resident set size (KB) = 302172 Test 093 control_wam_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 094 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3058,14 +3070,14 @@ Checking test 094 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 266.528715 -The maximum resident set size (KB) = 882824 +The total amount of wall time = 267.732357 +The maximum resident set size (KB) = 881144 Test 094 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/rap_control_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/rap_control_dyn32_phy32 Checking test 095 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3112,14 +3124,14 @@ Checking test 095 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 343.025482 -The maximum resident set size (KB) = 775228 +The total amount of wall time = 342.877945 +The maximum resident set size (KB) = 776740 Test 095 rap_control_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/hrrr_control_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/hrrr_control_dyn32_phy32 Checking test 096 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3166,14 +3178,14 @@ Checking test 096 hrrr_control_dyn32_phy32 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 = 183.416658 -The maximum resident set size (KB) = 773380 +The total amount of wall time = 184.779883 +The maximum resident set size (KB) = 774876 Test 096 hrrr_control_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/rap_2threads_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/rap_2threads_dyn32_phy32 Checking test 097 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3220,14 +3232,14 @@ Checking test 097 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 320.721367 -The maximum resident set size (KB) = 830160 +The total amount of wall time = 322.488453 +The maximum resident set size (KB) = 828020 Test 097 rap_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/hrrr_control_2threads_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/hrrr_control_2threads_dyn32_phy32 Checking test 098 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3274,14 +3286,14 @@ Checking test 098 hrrr_control_2threads_dyn32_phy32 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 = 174.655196 -The maximum resident set size (KB) = 829868 +The total amount of wall time = 174.690146 +The maximum resident set size (KB) = 829372 Test 098 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/hrrr_control_decomp_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/hrrr_control_decomp_dyn32_phy32 Checking test 099 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3328,14 +3340,14 @@ Checking test 099 hrrr_control_decomp_dyn32_phy32 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 = 192.223216 -The maximum resident set size (KB) = 771080 +The total amount of wall time = 192.410341 +The maximum resident set size (KB) = 774600 Test 099 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/rap_restart_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/rap_restart_dyn32_phy32 Checking test 100 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3374,14 +3386,14 @@ Checking test 100 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 255.922313 -The maximum resident set size (KB) = 611040 +The total amount of wall time = 254.716696 +The maximum resident set size (KB) = 612548 Test 100 rap_restart_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/hrrr_control_restart_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/hrrr_control_restart_dyn32_phy32 Checking test 101 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3420,14 +3432,14 @@ Checking test 101 hrrr_control_restart_dyn32_phy32 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 = 94.808323 -The maximum resident set size (KB) = 608304 +The total amount of wall time = 94.179201 +The maximum resident set size (KB) = 608336 Test 101 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/rap_control_dyn64_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/rap_control_dyn64_phy32 Checking test 102 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3474,81 +3486,81 @@ Checking test 102 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -The total amount of wall time = 231.559605 -The maximum resident set size (KB) = 801312 +The total amount of wall time = 230.703586 +The maximum resident set size (KB) = 795488 Test 102 rap_control_dyn64_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/rap_control_debug_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/rap_control_debug_dyn32_phy32 Checking test 103 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 290.747178 -The maximum resident set size (KB) = 938484 +The total amount of wall time = 292.223105 +The maximum resident set size (KB) = 935212 Test 103 rap_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/hrrr_control_debug_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/hrrr_control_debug_dyn32_phy32 Checking test 104 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 286.570048 -The maximum resident set size (KB) = 936464 +The total amount of wall time = 286.334076 +The maximum resident set size (KB) = 939192 Test 104 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/rap_control_dyn64_phy32_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/rap_control_dyn64_phy32_debug Checking test 105 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 291.875619 -The maximum resident set size (KB) = 950460 +The total amount of wall time = 293.114984 +The maximum resident set size (KB) = 959632 Test 105 rap_control_dyn64_phy32_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/hafs_regional_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/hafs_regional_atm Checking test 106 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 264.576103 -The maximum resident set size (KB) = 821532 +The total amount of wall time = 266.181556 +The maximum resident set size (KB) = 816688 Test 106 hafs_regional_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/hafs_regional_atm_thompson_gfdlsf +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/hafs_regional_atm_thompson_gfdlsf Checking test 107 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 303.121739 -The maximum resident set size (KB) = 1180936 +The total amount of wall time = 308.228519 +The maximum resident set size (KB) = 1181448 Test 107 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/hafs_regional_atm_ocn +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/hafs_regional_atm_ocn Checking test 108 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3557,14 +3569,14 @@ Checking test 108 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 387.586229 -The maximum resident set size (KB) = 850748 +The total amount of wall time = 388.620194 +The maximum resident set size (KB) = 851136 Test 108 hafs_regional_atm_ocn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/hafs_regional_atm_wav +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_atm_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/hafs_regional_atm_wav Checking test 109 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3573,14 +3585,14 @@ Checking test 109 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 700.491322 -The maximum resident set size (KB) = 882660 +The total amount of wall time = 704.959607 +The maximum resident set size (KB) = 882116 Test 109 hafs_regional_atm_wav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/hafs_regional_atm_ocn_wav +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/hafs_regional_atm_ocn_wav Checking test 110 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3591,28 +3603,28 @@ Checking test 110 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 887.388381 -The maximum resident set size (KB) = 906124 +The total amount of wall time = 888.467022 +The maximum resident set size (KB) = 906908 Test 110 hafs_regional_atm_ocn_wav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/hafs_regional_1nest_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/hafs_regional_1nest_atm Checking test 111 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 327.550868 -The maximum resident set size (KB) = 381928 +The total amount of wall time = 326.881340 +The maximum resident set size (KB) = 388140 Test 111 hafs_regional_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/hafs_regional_telescopic_2nests_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/hafs_regional_telescopic_2nests_atm Checking test 112 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3621,28 +3633,28 @@ Checking test 112 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 398.174026 -The maximum resident set size (KB) = 410936 +The total amount of wall time = 398.664555 +The maximum resident set size (KB) = 407016 Test 112 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/hafs_global_1nest_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_global_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/hafs_global_1nest_atm Checking test 113 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 165.102969 -The maximum resident set size (KB) = 261236 +The total amount of wall time = 165.894586 +The maximum resident set size (KB) = 265284 Test 113 hafs_global_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_multiple_4nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/hafs_global_multiple_4nests_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_global_multiple_4nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/hafs_global_multiple_4nests_atm Checking test 114 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3660,14 +3672,14 @@ Checking test 114 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -The total amount of wall time = 486.790871 -The maximum resident set size (KB) = 338324 +The total amount of wall time = 488.463274 +The maximum resident set size (KB) = 337664 Test 114 hafs_global_multiple_4nests_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/hafs_regional_specified_moving_1nest_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/hafs_regional_specified_moving_1nest_atm Checking test 115 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3676,28 +3688,28 @@ Checking test 115 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 211.872644 -The maximum resident set size (KB) = 404304 +The total amount of wall time = 212.332714 +The maximum resident set size (KB) = 400716 Test 115 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/hafs_regional_storm_following_1nest_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/hafs_regional_storm_following_1nest_atm Checking test 116 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 201.028263 -The maximum resident set size (KB) = 406268 +The total amount of wall time = 200.764722 +The maximum resident set size (KB) = 400856 Test 116 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/hafs_regional_storm_following_1nest_atm_ocn Checking test 117 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3706,42 +3718,42 @@ Checking test 117 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 238.840266 -The maximum resident set size (KB) = 450600 +The total amount of wall time = 240.526596 +The maximum resident set size (KB) = 451000 Test 117 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/hafs_global_storm_following_1nest_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_global_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/hafs_global_storm_following_1nest_atm Checking test 118 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 79.008509 -The maximum resident set size (KB) = 283804 +The total amount of wall time = 78.322747 +The maximum resident set size (KB) = 274696 Test 118 hafs_global_storm_following_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 119 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 801.726992 -The maximum resident set size (KB) = 477700 +The total amount of wall time = 804.934897 +The maximum resident set size (KB) = 477248 Test 119 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 120 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3752,14 +3764,14 @@ Checking test 120 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -The total amount of wall time = 519.117038 -The maximum resident set size (KB) = 521432 +The total amount of wall time = 520.056888 +The maximum resident set size (KB) = 523308 Test 120 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_docn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/hafs_regional_docn +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_docn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/hafs_regional_docn Checking test 121 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3767,14 +3779,14 @@ Checking test 121 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 369.585319 -The maximum resident set size (KB) = 854912 +The total amount of wall time = 369.062854 +The maximum resident set size (KB) = 854164 Test 121 hafs_regional_docn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_docn_oisst -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/hafs_regional_docn_oisst +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_docn_oisst +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/hafs_regional_docn_oisst Checking test 122 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3782,131 +3794,131 @@ Checking test 122 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 371.497562 -The maximum resident set size (KB) = 840368 +The total amount of wall time = 371.751604 +The maximum resident set size (KB) = 839244 Test 122 hafs_regional_docn_oisst PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_datm_cdeps -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/hafs_regional_datm_cdeps +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_datm_cdeps +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/hafs_regional_datm_cdeps Checking test 123 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -The total amount of wall time = 945.493006 -The maximum resident set size (KB) = 869152 +The total amount of wall time = 945.934951 +The maximum resident set size (KB) = 832512 Test 123 hafs_regional_datm_cdeps PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/datm_cdeps_control_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_control_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/datm_cdeps_control_cfsr Checking test 124 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 140.731299 -The maximum resident set size (KB) = 735240 +The total amount of wall time = 141.304950 +The maximum resident set size (KB) = 719964 Test 124 datm_cdeps_control_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/datm_cdeps_restart_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_control_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/datm_cdeps_restart_cfsr Checking test 125 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 85.543887 -The maximum resident set size (KB) = 730616 +The total amount of wall time = 86.179557 +The maximum resident set size (KB) = 728380 Test 125 datm_cdeps_restart_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/datm_cdeps_control_gefs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_control_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/datm_cdeps_control_gefs Checking test 126 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 133.091665 -The maximum resident set size (KB) = 613000 +The total amount of wall time = 133.777455 +The maximum resident set size (KB) = 612660 Test 126 datm_cdeps_control_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_iau_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/datm_cdeps_iau_gefs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_iau_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/datm_cdeps_iau_gefs Checking test 127 datm_cdeps_iau_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 136.481305 -The maximum resident set size (KB) = 613596 +The total amount of wall time = 136.705984 +The maximum resident set size (KB) = 610720 Test 127 datm_cdeps_iau_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_stochy_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/datm_cdeps_stochy_gefs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_stochy_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/datm_cdeps_stochy_gefs Checking test 128 datm_cdeps_stochy_gefs 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.101707 -The maximum resident set size (KB) = 617496 +The total amount of wall time = 137.765775 +The maximum resident set size (KB) = 616584 Test 128 datm_cdeps_stochy_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/datm_cdeps_ciceC_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_ciceC_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/datm_cdeps_ciceC_cfsr Checking test 129 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 140.654898 -The maximum resident set size (KB) = 731796 +The total amount of wall time = 141.137256 +The maximum resident set size (KB) = 723476 Test 129 datm_cdeps_ciceC_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/datm_cdeps_bulk_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_bulk_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/datm_cdeps_bulk_cfsr Checking test 130 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.891352 -The maximum resident set size (KB) = 720496 +The total amount of wall time = 141.587270 +The maximum resident set size (KB) = 733388 Test 130 datm_cdeps_bulk_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/datm_cdeps_bulk_gefs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_bulk_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/datm_cdeps_bulk_gefs Checking test 131 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 133.533478 -The maximum resident set size (KB) = 612864 +The total amount of wall time = 133.895841 +The maximum resident set size (KB) = 614320 Test 131 datm_cdeps_bulk_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/datm_cdeps_mx025_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_mx025_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/datm_cdeps_mx025_cfsr Checking test 132 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -3915,14 +3927,14 @@ Checking test 132 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 429.684120 -The maximum resident set size (KB) = 573220 +The total amount of wall time = 430.011626 +The maximum resident set size (KB) = 572156 Test 132 datm_cdeps_mx025_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/datm_cdeps_mx025_gefs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_mx025_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/datm_cdeps_mx025_gefs Checking test 133 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -3931,64 +3943,64 @@ Checking test 133 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 429.775005 -The maximum resident set size (KB) = 553920 +The total amount of wall time = 427.333554 +The maximum resident set size (KB) = 549488 Test 133 datm_cdeps_mx025_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/datm_cdeps_multiple_files_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_control_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/datm_cdeps_multiple_files_cfsr Checking test 134 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 140.574189 -The maximum resident set size (KB) = 733824 +The total amount of wall time = 141.055922 +The maximum resident set size (KB) = 735312 Test 134 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/datm_cdeps_3072x1536_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/datm_cdeps_3072x1536_cfsr Checking test 135 datm_cdeps_3072x1536_cfsr 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 = 255.968688 -The maximum resident set size (KB) = 1978744 +The total amount of wall time = 257.840833 +The maximum resident set size (KB) = 1979168 Test 135 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_gfs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/datm_cdeps_gfs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_gfs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/datm_cdeps_gfs Checking test 136 datm_cdeps_gfs 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 = 256.102751 -The maximum resident set size (KB) = 1983824 +The total amount of wall time = 256.809276 +The maximum resident set size (KB) = 1980412 Test 136 datm_cdeps_gfs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/datm_cdeps_control_cfsr_faster +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_control_cfsr_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/datm_cdeps_control_cfsr_faster Checking test 137 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 140.922737 -The maximum resident set size (KB) = 731848 +The total amount of wall time = 141.706590 +The maximum resident set size (KB) = 734880 Test 137 datm_cdeps_control_cfsr_faster PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/datm_cdeps_lnd_gswp3 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/datm_cdeps_lnd_gswp3 Checking test 138 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -3997,14 +4009,14 @@ Checking test 138 datm_cdeps_lnd_gswp3 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.107137 -The maximum resident set size (KB) = 226656 +The total amount of wall time = 22.095345 +The maximum resident set size (KB) = 227284 Test 138 datm_cdeps_lnd_gswp3 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/datm_cdeps_lnd_gswp3_rst +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/datm_cdeps_lnd_gswp3_rst Checking test 139 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4013,14 +4025,14 @@ Checking test 139 datm_cdeps_lnd_gswp3_rst 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.571097 -The maximum resident set size (KB) = 227368 +The total amount of wall time = 27.560058 +The maximum resident set size (KB) = 229088 Test 139 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_atmlnd_sbs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/control_p8_atmlnd_sbs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8_atmlnd_sbs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/control_p8_atmlnd_sbs Checking test 140 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4105,14 +4117,14 @@ Checking test 140 control_p8_atmlnd_sbs 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 = 236.803414 -The maximum resident set size (KB) = 1541176 +The total amount of wall time = 234.353301 +The maximum resident set size (KB) = 1539928 Test 140 control_p8_atmlnd_sbs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_atmwav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/control_atmwav +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_atmwav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/control_atmwav Checking test 141 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4156,14 +4168,14 @@ Checking test 141 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -The total amount of wall time = 90.463191 -The maximum resident set size (KB) = 539492 +The total amount of wall time = 91.215109 +The maximum resident set size (KB) = 542260 Test 141 control_atmwav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/atmaero_control_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/atmaero_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/atmaero_control_p8 Checking test 142 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4207,14 +4219,14 @@ Checking test 142 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 242.918976 -The maximum resident set size (KB) = 2813600 +The total amount of wall time = 245.610761 +The maximum resident set size (KB) = 2812588 Test 142 atmaero_control_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/atmaero_control_p8_rad +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/atmaero_control_p8_rad +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/atmaero_control_p8_rad Checking test 143 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4258,14 +4270,14 @@ Checking test 143 atmaero_control_p8_rad results .... 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.489083 -The maximum resident set size (KB) = 2876092 +The total amount of wall time = 281.382961 +The maximum resident set size (KB) = 2873576 Test 143 atmaero_control_p8_rad PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/atmaero_control_p8_rad_micro +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/atmaero_control_p8_rad_micro +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/atmaero_control_p8_rad_micro Checking test 144 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4309,14 +4321,14 @@ Checking test 144 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 287.767000 -The maximum resident set size (KB) = 2885548 +The total amount of wall time = 287.510168 +The maximum resident set size (KB) = 2883188 Test 144 atmaero_control_p8_rad_micro PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/regional_atmaq +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_atmaq +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/regional_atmaq Checking test 145 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4332,14 +4344,14 @@ Checking test 145 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 670.313601 -The maximum resident set size (KB) = 1402672 +The total amount of wall time = 681.393310 +The maximum resident set size (KB) = 1260560 Test 145 regional_atmaq PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/regional_atmaq_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_atmaq_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/regional_atmaq_debug Checking test 146 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4353,14 +4365,14 @@ Checking test 146 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1459.273972 -The maximum resident set size (KB) = 1436948 +The total amount of wall time = 1355.605468 +The maximum resident set size (KB) = 1294228 Test 146 regional_atmaq_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148986/regional_atmaq_faster +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_atmaq_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/regional_atmaq_faster Checking test 147 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4376,12 +4388,12 @@ Checking test 147 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 653.432032 -The maximum resident set size (KB) = 1398660 +The total amount of wall time = 633.249787 +The maximum resident set size (KB) = 1249624 Test 147 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Wed Mar 15 15:23:15 UTC 2023 -Elapsed time: 01h:26m:35s. Have a nice day! +Tue Mar 21 01:27:04 UTC 2023 +Elapsed time: 01h:58m:49s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index 27576dae605..b1055aa8b77 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,21 +1,21 @@ -Wed Mar 15 07:49:32 MDT 2023 +Mon Mar 20 17:53:20 MDT 2023 Start Regression test -Compile 001 elapsed time 382 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 399 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 864 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 198 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 365 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 1084 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 860 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 863 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 632 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 572 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 370 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 012 elapsed time 306 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/control_c48 -working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/control_c48 +Compile 001 elapsed time 377 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 397 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 852 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 189 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 360 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 1069 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 844 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 841 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 615 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 564 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 354 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 012 elapsed time 297 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/control_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/control_c48 Checking test 001 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -54,14 +54,14 @@ Checking test 001 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 821.314370 -0:The maximum resident set size (KB) = 675620 +0:The total amount of wall time = 820.709843 +0:The maximum resident set size (KB) = 675588 Test 001 control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/control_stochy -working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/control_stochy +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/control_stochy +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/control_stochy Checking test 002 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -72,14 +72,14 @@ Checking test 002 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 178.430118 -0:The maximum resident set size (KB) = 442652 +0:The total amount of wall time = 177.723963 +0:The maximum resident set size (KB) = 442572 Test 002 control_stochy PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/control_ras -working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/control_ras +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/control_ras +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/control_ras Checking test 003 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -90,14 +90,14 @@ Checking test 003 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 293.752837 -0:The maximum resident set size (KB) = 451984 +0:The total amount of wall time = 293.682169 +0:The maximum resident set size (KB) = 451944 Test 003 control_ras PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/control_p8 -working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/control_p8 Checking test 004 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -144,14 +144,14 @@ Checking test 004 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 308.582971 -0:The maximum resident set size (KB) = 1225588 +0:The total amount of wall time = 310.985702 +0:The maximum resident set size (KB) = 1225968 Test 004 control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control -working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/rap_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/rap_control Checking test 005 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -198,14 +198,14 @@ Checking test 005 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 718.007939 -0:The maximum resident set size (KB) = 791788 +0:The total amount of wall time = 719.407855 +0:The maximum resident set size (KB) = 791408 Test 005 rap_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control -working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/rap_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/rap_decomp Checking test 006 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -252,14 +252,14 @@ Checking test 006 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 724.487320 -0:The maximum resident set size (KB) = 791060 +0:The total amount of wall time = 725.032948 +0:The maximum resident set size (KB) = 791592 Test 006 rap_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control -working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/rap_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/rap_2threads Checking test 007 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -306,14 +306,14 @@ Checking test 007 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 666.364040 -0:The maximum resident set size (KB) = 863908 +0:The total amount of wall time = 663.917571 +0:The maximum resident set size (KB) = 864092 Test 007 rap_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control -working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/rap_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/rap_restart Checking test 008 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -352,14 +352,14 @@ Checking test 008 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 356.696848 -0:The maximum resident set size (KB) = 538668 +0:The total amount of wall time = 360.191018 +0:The maximum resident set size (KB) = 538516 Test 008 rap_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/rap_sfcdiff +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/rap_sfcdiff Checking test 009 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -406,14 +406,14 @@ Checking test 009 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 709.561906 -0:The maximum resident set size (KB) = 791640 +0:The total amount of wall time = 710.621628 +0:The maximum resident set size (KB) = 791732 Test 009 rap_sfcdiff PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/rap_sfcdiff_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/rap_sfcdiff_decomp Checking test 010 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -460,14 +460,14 @@ Checking test 010 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 715.399002 -0:The maximum resident set size (KB) = 790996 +0:The total amount of wall time = 721.497299 +0:The maximum resident set size (KB) = 790628 Test 010 rap_sfcdiff_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/rap_sfcdiff_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/rap_sfcdiff_restart Checking test 011 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -506,14 +506,14 @@ Checking test 011 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 530.958807 -0:The maximum resident set size (KB) = 543956 +0:The total amount of wall time = 564.829648 +0:The maximum resident set size (KB) = 543904 Test 011 rap_sfcdiff_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control -working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/hrrr_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/hrrr_control Checking test 012 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -560,14 +560,14 @@ Checking test 012 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 686.584236 -0:The maximum resident set size (KB) = 789172 +0:The total amount of wall time = 686.898183 +0:The maximum resident set size (KB) = 789220 Test 012 hrrr_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control -working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/hrrr_control_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/hrrr_control_2threads Checking test 013 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -614,14 +614,14 @@ Checking test 013 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 621.847633 -0:The maximum resident set size (KB) = 858672 +0:The total amount of wall time = 622.582119 +0:The maximum resident set size (KB) = 858796 Test 013 hrrr_control_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control -working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/hrrr_control_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/hrrr_control_decomp Checking test 014 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -668,14 +668,14 @@ Checking test 014 hrrr_control_decomp results .... Comparing 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.004760 -0:The maximum resident set size (KB) = 788616 +0:The total amount of wall time = 684.589979 +0:The maximum resident set size (KB) = 788292 Test 014 hrrr_control_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control -working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/hrrr_control_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/hrrr_control_restart Checking test 015 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -714,14 +714,14 @@ Checking test 015 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 513.667652 -0:The maximum resident set size (KB) = 539876 +0:The total amount of wall time = 513.482884 +0:The maximum resident set size (KB) = 539528 Test 015 hrrr_control_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_v1beta -working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/rrfs_v1beta +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/rrfs_v1beta +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/rrfs_v1beta Checking test 016 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -768,14 +768,14 @@ Checking test 016 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 693.577998 -0:The maximum resident set size (KB) = 788536 +0:The total amount of wall time = 697.887967 +0:The maximum resident set size (KB) = 788284 Test 016 rrfs_v1beta PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/rrfs_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/rrfs_conus13km_hrrr_warm Checking test 017 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -784,14 +784,14 @@ Checking test 017 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 203.974755 -0:The maximum resident set size (KB) = 607428 +0:The total amount of wall time = 202.964164 +0:The maximum resident set size (KB) = 607244 Test 017 rrfs_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/rrfs_smoke_conus13km_hrrr_warm Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -800,14 +800,14 @@ Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 221.404375 -0:The maximum resident set size (KB) = 620840 +0:The total amount of wall time = 220.949622 +0:The maximum resident set size (KB) = 621116 Test 018 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/rrfs_conus13km_radar_tten_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/rrfs_conus13km_radar_tten_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/rrfs_conus13km_radar_tten_warm Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -816,14 +816,14 @@ Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 205.944211 -0:The maximum resident set size (KB) = 609500 +0:The total amount of wall time = 203.762445 +0:The maximum resident set size (KB) = 610068 Test 019 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/rrfs_conus13km_radar_tten_warm_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/rrfs_conus13km_radar_tten_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/rrfs_conus13km_radar_tten_warm_2threads Checking test 020 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -832,208 +832,208 @@ Checking test 020 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 130.776267 -0:The maximum resident set size (KB) = 629248 +0:The total amount of wall time = 130.793791 +0:The maximum resident set size (KB) = 628200 Test 020 rrfs_conus13km_radar_tten_warm_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/control_diag_debug -working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/control_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/control_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/control_diag_debug Checking test 021 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 88.376343 -0:The maximum resident set size (KB) = 494776 +0:The total amount of wall time = 88.965342 +0:The maximum resident set size (KB) = 495488 Test 021 control_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/regional_debug -working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/regional_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/regional_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/regional_debug Checking test 022 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 483.258965 -0:The maximum resident set size (KB) = 569500 +0:The total amount of wall time = 478.196121 +0:The maximum resident set size (KB) = 569236 Test 022 regional_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_debug -working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/rap_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/rap_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/rap_control_debug Checking test 023 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 153.144754 -0:The maximum resident set size (KB) = 808672 +0:The total amount of wall time = 150.800369 +0:The maximum resident set size (KB) = 808352 Test 023 rap_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_debug -working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/hrrr_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/hrrr_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/hrrr_control_debug Checking test 024 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 149.157562 -0:The maximum resident set size (KB) = 804292 +0:The total amount of wall time = 148.816873 +0:The maximum resident set size (KB) = 804536 Test 024 hrrr_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_diag_debug -working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/rap_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/rap_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/rap_diag_debug Checking test 025 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 161.141391 -0:The maximum resident set size (KB) = 891464 +0:The total amount of wall time = 158.601800 +0:The maximum resident set size (KB) = 891404 Test 025 rap_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/rap_noah_sfcdiff_cires_ugwp_debug Checking test 026 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 241.865914 -0:The maximum resident set size (KB) = 806972 +0:The total amount of wall time = 239.439825 +0:The maximum resident set size (KB) = 806752 Test 026 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_progcld_thompson_debug -working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/rap_progcld_thompson_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/rap_progcld_thompson_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/rap_progcld_thompson_debug Checking test 027 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 152.661427 -0:The maximum resident set size (KB) = 808548 +0:The total amount of wall time = 151.301017 +0:The maximum resident set size (KB) = 808892 Test 027 rap_progcld_thompson_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_v1beta_debug -working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/rrfs_v1beta_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/rrfs_v1beta_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/rrfs_v1beta_debug Checking test 028 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 150.198304 -0:The maximum resident set size (KB) = 803900 +0:The total amount of wall time = 149.584444 +0:The maximum resident set size (KB) = 803700 Test 028 rrfs_v1beta_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/control_ras_debug -working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/control_ras_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/control_ras_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/control_ras_debug Checking test 029 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 85.592472 -0:The maximum resident set size (KB) = 449180 +0:The total amount of wall time = 85.982489 +0:The maximum resident set size (KB) = 449676 Test 029 control_ras_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/control_stochy_debug -working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/control_stochy_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/control_stochy_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/control_stochy_debug Checking test 030 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 93.483466 -0:The maximum resident set size (KB) = 441244 +0:The total amount of wall time = 94.142701 +0:The maximum resident set size (KB) = 441968 Test 030 control_stochy_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/control_debug_p8 -working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/control_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/control_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/control_debug_p8 Checking test 031 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 96.188595 -0:The maximum resident set size (KB) = 1224508 +0:The total amount of wall time = 95.978547 +0:The maximum resident set size (KB) = 1224780 Test 031 control_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/rrfs_conus13km_hrrr_warm_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/rrfs_conus13km_hrrr_warm_debugs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/rrfs_conus13km_hrrr_warm_debug Checking test 032 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 390.236534 -0:The maximum resident set size (KB) = 613744 +0:The total amount of wall time = 388.062280 +0:The maximum resident set size (KB) = 614232 Test 032 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_conus13km_radar_tten_warm_debug -working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/rrfs_conus13km_radar_tten_warm_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/rrfs_conus13km_radar_tten_warm_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/rrfs_conus13km_radar_tten_warm_debug Checking test 033 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 390.979015 -0:The maximum resident set size (KB) = 616992 +0:The total amount of wall time = 388.744855 +0:The maximum resident set size (KB) = 617096 Test 033 rrfs_conus13km_radar_tten_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/control_wam_debug -working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/control_wam_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/control_wam_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/control_wam_debug Checking test 034 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 144.406566 -0:The maximum resident set size (KB) = 184504 +0:The total amount of wall time = 145.494216 +0:The maximum resident set size (KB) = 185076 Test 034 control_wam_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/rap_control_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/rap_control_dyn32_phy32 Checking test 035 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1080,14 +1080,14 @@ Checking test 035 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 686.307843 -0:The maximum resident set size (KB) = 672988 +0:The total amount of wall time = 686.280342 +0:The maximum resident set size (KB) = 672604 Test 035 rap_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/hrrr_control_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/hrrr_control_dyn32_phy32 Checking test 036 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1134,14 +1134,14 @@ Checking test 036 hrrr_control_dyn32_phy32 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 = 350.216229 -0:The maximum resident set size (KB) = 671480 +0:The total amount of wall time = 350.306078 +0:The maximum resident set size (KB) = 671092 Test 036 hrrr_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/rap_2threads_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/rap_2threads_dyn32_phy32 Checking test 037 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1188,14 +1188,14 @@ Checking test 037 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 625.511662 -0:The maximum resident set size (KB) = 718328 +0:The total amount of wall time = 630.607094 +0:The maximum resident set size (KB) = 718928 Test 037 rap_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/hrrr_control_2threads_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/hrrr_control_2threads_dyn32_phy32 Checking test 038 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1242,14 +1242,14 @@ Checking test 038 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 321.325041 -0:The maximum resident set size (KB) = 715312 +0:The total amount of wall time = 321.734896 +0:The maximum resident set size (KB) = 715408 Test 038 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/hrrr_control_decomp_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/hrrr_control_decomp_dyn32_phy32 Checking test 039 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1296,14 +1296,14 @@ Checking test 039 hrrr_control_decomp_dyn32_phy32 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 = 347.756021 -0:The maximum resident set size (KB) = 670312 +0:The total amount of wall time = 350.345257 +0:The maximum resident set size (KB) = 670040 Test 039 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/rap_restart_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/rap_restart_dyn32_phy32 Checking test 040 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1342,14 +1342,14 @@ Checking test 040 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 515.330253 -0:The maximum resident set size (KB) = 511300 +0:The total amount of wall time = 516.190492 +0:The maximum resident set size (KB) = 510884 Test 040 rap_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/hrrr_control_restart_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/hrrr_control_restart_dyn32_phy32 Checking test 041 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1388,14 +1388,14 @@ Checking test 041 hrrr_control_restart_dyn32_phy32 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 = 177.304504 -0:The maximum resident set size (KB) = 506764 +0:The total amount of wall time = 178.023635 +0:The maximum resident set size (KB) = 506296 Test 041 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_dyn64_phy32 -working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/rap_control_dyn64_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/rap_control_dyn64_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/rap_control_dyn64_phy32 Checking test 042 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1442,56 +1442,56 @@ Checking test 042 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 407.673326 -0:The maximum resident set size (KB) = 693972 +0:The total amount of wall time = 407.841483 +0:The maximum resident set size (KB) = 693548 Test 042 rap_control_dyn64_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/rap_control_debug_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/rap_control_debug_dyn32_phy32 Checking test 043 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 149.687305 -0:The maximum resident set size (KB) = 690576 +0:The total amount of wall time = 148.305139 +0:The maximum resident set size (KB) = 690504 Test 043 rap_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/hrrr_control_debug_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/hrrr_control_debug_dyn32_phy32 Checking test 044 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 145.672985 -0:The maximum resident set size (KB) = 687660 +0:The total amount of wall time = 146.447386 +0:The maximum resident set size (KB) = 687356 Test 044 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/rap_control_dyn64_phy32_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/rap_control_debug_dyn64_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/rap_control_dyn64_phy32_debug Checking test 045 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 153.320714 -0:The maximum resident set size (KB) = 711104 +0:The total amount of wall time = 154.139085 +0:The maximum resident set size (KB) = 711052 Test 045 rap_control_dyn64_phy32_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/cpld_control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/cpld_control_p8 Checking test 046 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1556,14 +1556,14 @@ Checking test 046 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 498.101433 -0:The maximum resident set size (KB) = 3162348 +0:The total amount of wall time = 515.074732 +0:The maximum resident set size (KB) = 3160932 Test 046 cpld_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/cpld_control_nowave_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/cpld_control_c96_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/cpld_control_nowave_noaero_p8 Checking test 047 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1625,14 +1625,14 @@ Checking test 047 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 253.914111 -0:The maximum resident set size (KB) = 1244728 +0:The total amount of wall time = 246.097652 +0:The maximum resident set size (KB) = 1240428 Test 047 cpld_control_nowave_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/cpld_debug_p8 -working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/cpld_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/cpld_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/cpld_debug_p8 Checking test 048 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1685,25 +1685,25 @@ Checking test 048 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 275.880704 -0:The maximum resident set size (KB) = 3179104 +0:The total amount of wall time = 273.508857 +0:The maximum resident set size (KB) = 3178004 Test 048 cpld_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/GNU/datm_cdeps_control_cfsr -working dir = /glade/scratch/jongkim/rt-1654-gnu/jongkim/FV3_RT/rt_23029/datm_cdeps_control_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/datm_cdeps_control_cfsr Checking test 049 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 179.407326 -0:The maximum resident set size (KB) = 674424 +0:The total amount of wall time = 179.686314 +0:The maximum resident set size (KB) = 672480 Test 049 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Wed Mar 15 08:21:21 MDT 2023 -Elapsed time: 00h:31m:49s. Have a nice day! +Mon Mar 20 18:29:10 MDT 2023 +Elapsed time: 00h:35m:50s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 21e1e4ba2a7..06a3a21aba4 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,45 +1,42 @@ -Wed Mar 15 07:49:05 MDT 2023 +Mon Mar 20 17:38:19 MDT 2023 Start Regression test -Test 008 compile FAIL - -Test 008 compile FAIL - -Compile 001 elapsed time 1466 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 1416 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 1381 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 464 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 406 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 1083 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 1111 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 1052 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 992 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 928 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 798 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 1273 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 406 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 260 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 821 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 832 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 273 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 272 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 1099 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 021 elapsed time 339 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 1553 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 1114 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 024 elapsed time 434 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 208 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 432 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 108 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 948 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 986 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 885 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 879 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 300 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 1030 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_mixedmode -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/cpld_control_p8_mixedmode +Compile 001 elapsed time 1347 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1478 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 1349 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 461 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 384 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 1077 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 1089 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 1787 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 1019 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 989 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 919 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 787 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 1265 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 403 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 265 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 832 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 821 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 275 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 271 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 1112 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 021 elapsed time 335 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 1551 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 1099 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 024 elapsed time 427 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 207 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 431 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 106 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 914 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 988 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 863 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 860 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 293 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 1024 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8_mixedmode +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -104,14 +101,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 320.731365 -0:The maximum resident set size (KB) = 2698524 +0:The total amount of wall time = 320.930562 +0:The maximum resident set size (KB) = 2699064 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_gfsv17 -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/cpld_control_gfsv17 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_gfsv17 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -175,14 +172,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 284.304396 -0:The maximum resident set size (KB) = 1437796 +0:The total amount of wall time = 283.295501 +0:The maximum resident set size (KB) = 1437668 Test 002 cpld_control_gfsv17 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/cpld_control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -247,14 +244,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 321.505361 -0:The maximum resident set size (KB) = 2716668 +0:The total amount of wall time = 324.169391 +0:The maximum resident set size (KB) = 2716472 Test 003 cpld_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/cpld_restart_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -307,14 +304,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 188.234283 -0:The maximum resident set size (KB) = 2577856 +0:The total amount of wall time = 188.980396 +0:The maximum resident set size (KB) = 2577732 Test 004 cpld_restart_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/cpld_2threads_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -367,14 +364,14 @@ Checking test 005 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 259.819494 -0:The maximum resident set size (KB) = 3176440 +0:The total amount of wall time = 255.047091 +0:The maximum resident set size (KB) = 3175740 Test 005 cpld_2threads_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/cpld_decomp_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/cpld_decomp_p8 Checking test 006 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -427,14 +424,14 @@ Checking test 006 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 321.827971 -0:The maximum resident set size (KB) = 2721144 +0:The total amount of wall time = 323.965316 +0:The maximum resident set size (KB) = 2723644 Test 006 cpld_decomp_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/cpld_mpi_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/cpld_mpi_p8 Checking test 007 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -487,14 +484,14 @@ Checking test 007 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 275.224049 -0:The maximum resident set size (KB) = 2682568 +0:The total amount of wall time = 279.192014 +0:The maximum resident set size (KB) = 2682684 Test 007 cpld_mpi_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_ciceC_p8 -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/cpld_control_ciceC_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_ciceC_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/cpld_control_ciceC_p8 Checking test 008 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -559,14 +556,14 @@ Checking test 008 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 325.398780 +0:The total amount of wall time = 324.017125 0:The maximum resident set size (KB) = 2716464 Test 008 cpld_control_ciceC_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/cpld_control_c192_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_c192_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/cpld_control_c192_p8 Checking test 009 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -619,14 +616,14 @@ Checking test 009 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -0:The total amount of wall time = 739.932678 +0:The total amount of wall time = 639.932123 0:The maximum resident set size (KB) = 3348640 Test 009 cpld_control_c192_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/cpld_restart_c192_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_c192_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/cpld_restart_c192_p8 Checking test 010 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -679,14 +676,14 @@ Checking test 010 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -0:The total amount of wall time = 420.164276 -0:The maximum resident set size (KB) = 3272200 +0:The total amount of wall time = 401.219728 +0:The maximum resident set size (KB) = 3274344 Test 010 cpld_restart_c192_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8 -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/cpld_control_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/cpld_control_noaero_p8 Checking test 011 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -750,14 +747,14 @@ Checking test 011 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 296.095433 -0:The maximum resident set size (KB) = 1436352 +0:The total amount of wall time = 295.410531 +0:The maximum resident set size (KB) = 1436400 Test 011 cpld_control_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/cpld_control_nowave_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_c96_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/cpld_control_nowave_noaero_p8 Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -819,14 +816,14 @@ Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 200.336760 -0:The maximum resident set size (KB) = 1452444 +0:The total amount of wall time = 195.043240 +0:The maximum resident set size (KB) = 1452344 Test 012 cpld_control_nowave_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_debug_p8 -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/cpld_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/cpld_debug_p8 Checking test 013 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -879,14 +876,14 @@ Checking test 013 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 476.141307 -0:The maximum resident set size (KB) = 2788020 +0:The total amount of wall time = 498.666557 +0:The maximum resident set size (KB) = 2788416 Test 013 cpld_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_debug_noaero_p8 -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/cpld_debug_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_debug_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/cpld_debug_noaero_p8 Checking test 014 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -938,14 +935,14 @@ Checking test 014 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 350.076230 -0:The maximum resident set size (KB) = 1460512 +0:The total amount of wall time = 347.640047 +0:The maximum resident set size (KB) = 1460416 Test 014 cpld_debug_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8_agrid -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/cpld_control_noaero_p8_agrid +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_noaero_p8_agrid +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/cpld_control_noaero_p8_agrid Checking test 015 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1007,14 +1004,14 @@ Checking test 015 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 268.782690 -0:The maximum resident set size (KB) = 1455896 +0:The total amount of wall time = 253.387937 +0:The maximum resident set size (KB) = 1455816 Test 015 cpld_control_noaero_p8_agrid PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c48 -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/cpld_control_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/cpld_control_c48 Checking test 016 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1064,14 +1061,14 @@ Checking test 016 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 605.164509 -0:The maximum resident set size (KB) = 2580808 +0:The total amount of wall time = 608.936480 +0:The maximum resident set size (KB) = 2580344 Test 016 cpld_control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/cpld_warmstart_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_warmstart_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/cpld_warmstart_c48 Checking test 017 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1121,14 +1118,14 @@ Checking test 017 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -0:The total amount of wall time = 161.725124 -0:The maximum resident set size (KB) = 2598844 +0:The total amount of wall time = 162.666560 +0:The maximum resident set size (KB) = 2599072 Test 017 cpld_warmstart_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/cpld_restart_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_warmstart_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/cpld_restart_c48 Checking test 018 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1178,15 +1175,15 @@ Checking test 018 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -0:The total amount of wall time = 85.242965 -0:The maximum resident set size (KB) = 2016020 +0:The total amount of wall time = 85.691501 +0:The maximum resident set size (KB) = 2016120 Test 018 cpld_restart_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/control_CubedSphereGrid -Checking test 020 control_CubedSphereGrid results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/control_CubedSphereGrid +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/control_CubedSphereGrid +Checking test 019 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1212,29 +1209,29 @@ Checking test 020 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -0:The total amount of wall time = 146.916954 -0:The maximum resident set size (KB) = 456856 +0:The total amount of wall time = 142.912327 +0:The maximum resident set size (KB) = 456764 -Test 020 control_CubedSphereGrid PASS +Test 019 control_CubedSphereGrid PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid_parallel -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/control_CubedSphereGrid_parallel -Checking test 021 control_CubedSphereGrid_parallel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/control_CubedSphereGrid_parallel +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/control_CubedSphereGrid_parallel +Checking test 020 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc .........OK + Comparing atmf024.nc ............ALT CHECK......OK -0:The total amount of wall time = 142.515842 -0:The maximum resident set size (KB) = 456808 +0:The total amount of wall time = 142.195976 +0:The maximum resident set size (KB) = 457148 -Test 021 control_CubedSphereGrid_parallel PASS +Test 020 control_CubedSphereGrid_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_latlon -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/control_latlon -Checking test 022 control_latlon results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/control_latlon +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/control_latlon +Checking test 021 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1244,15 +1241,15 @@ Checking test 022 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 147.012076 -0:The maximum resident set size (KB) = 456856 +0:The total amount of wall time = 147.244763 +0:The maximum resident set size (KB) = 456836 -Test 022 control_latlon PASS +Test 021 control_latlon PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/control_wrtGauss_netcdf_parallel -Checking test 023 control_wrtGauss_netcdf_parallel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/control_wrtGauss_netcdf_parallel +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/control_wrtGauss_netcdf_parallel +Checking test 022 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK @@ -1262,15 +1259,15 @@ Checking test 023 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 152.812229 -0:The maximum resident set size (KB) = 456904 +0:The total amount of wall time = 149.620959 +0:The maximum resident set size (KB) = 456776 -Test 023 control_wrtGauss_netcdf_parallel PASS +Test 022 control_wrtGauss_netcdf_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c48 -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/control_c48 -Checking test 024 control_c48 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/control_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/control_c48 +Checking test 023 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1308,15 +1305,15 @@ Checking test 024 control_c48 results .... Comparing 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.410717 -0:The maximum resident set size (KB) = 628940 +0:The total amount of wall time = 442.781345 +0:The maximum resident set size (KB) = 628920 -Test 024 control_c48 PASS +Test 023 control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c192 -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/control_c192 -Checking test 025 control_c192 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/control_c192 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/control_c192 +Checking test 024 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1326,15 +1323,15 @@ Checking test 025 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 593.545429 -0:The maximum resident set size (KB) = 557156 +0:The total amount of wall time = 591.563967 +0:The maximum resident set size (KB) = 557024 -Test 025 control_c192 PASS +Test 024 control_c192 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384 -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/control_c384 -Checking test 026 control_c384 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/control_c384 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/control_c384 +Checking test 025 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1344,15 +1341,15 @@ Checking test 026 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 604.605636 -0:The maximum resident set size (KB) = 889152 +0:The total amount of wall time = 608.000727 +0:The maximum resident set size (KB) = 889116 -Test 026 control_c384 PASS +Test 025 control_c384 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384gdas -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/control_c384gdas -Checking test 027 control_c384gdas results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/control_c384gdas +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/control_c384gdas +Checking test 026 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -1394,15 +1391,15 @@ Checking test 027 control_c384gdas 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 = 536.550849 -0:The maximum resident set size (KB) = 1015272 +0:The total amount of wall time = 530.729300 +0:The maximum resident set size (KB) = 1015708 -Test 027 control_c384gdas PASS +Test 026 control_c384gdas PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/control_stochy -Checking test 028 control_stochy results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/control_stochy +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/control_stochy +Checking test 027 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1412,29 +1409,29 @@ Checking test 028 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 100.570910 -0:The maximum resident set size (KB) = 455072 +0:The total amount of wall time = 98.643224 +0:The maximum resident set size (KB) = 454868 -Test 028 control_stochy PASS +Test 027 control_stochy PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/control_stochy_restart -Checking test 029 control_stochy_restart results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/control_stochy +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/control_stochy_restart +Checking test 028 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 52.264497 -0:The maximum resident set size (KB) = 225964 +0:The total amount of wall time = 53.011496 +0:The maximum resident set size (KB) = 225896 -Test 029 control_stochy_restart PASS +Test 028 control_stochy_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/control_lndp -Checking test 030 control_lndp results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/control_lndp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/control_lndp +Checking test 029 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1444,15 +1441,15 @@ Checking test 030 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 88.190772 -0:The maximum resident set size (KB) = 456596 +0:The total amount of wall time = 116.280713 +0:The maximum resident set size (KB) = 456468 -Test 030 control_lndp PASS +Test 029 control_lndp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr4 -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/control_iovr4 -Checking test 031 control_iovr4 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/control_iovr4 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/control_iovr4 +Checking test 030 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1466,15 +1463,15 @@ Checking test 031 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 152.076127 -0:The maximum resident set size (KB) = 456848 +0:The total amount of wall time = 147.448865 +0:The maximum resident set size (KB) = 456932 -Test 031 control_iovr4 PASS +Test 030 control_iovr4 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr5 -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/control_iovr5 -Checking test 032 control_iovr5 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/control_iovr5 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/control_iovr5 +Checking test 031 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1488,15 +1485,15 @@ Checking test 032 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 149.608244 -0:The maximum resident set size (KB) = 456760 +0:The total amount of wall time = 148.766703 +0:The maximum resident set size (KB) = 456684 -Test 032 control_iovr5 PASS +Test 031 control_iovr5 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/control_p8 -Checking test 033 control_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/control_p8 +Checking test 032 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1542,15 +1539,15 @@ Checking test 033 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 182.041721 -0:The maximum resident set size (KB) = 1422896 +0:The total amount of wall time = 181.401988 +0:The maximum resident set size (KB) = 1422860 -Test 033 control_p8 PASS +Test 032 control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_lndp -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/control_p8_lndp -Checking test 034 control_p8_lndp results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8_lndp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/control_p8_lndp +Checking test 033 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1568,15 +1565,15 @@ Checking test 034 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -0:The total amount of wall time = 336.732002 -0:The maximum resident set size (KB) = 1423168 +0:The total amount of wall time = 335.220527 +0:The maximum resident set size (KB) = 1423136 -Test 034 control_p8_lndp PASS +Test 033 control_p8_lndp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/control_restart_p8 -Checking test 035 control_restart_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/control_restart_p8 +Checking test 034 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1614,15 +1611,15 @@ Checking test 035 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 94.478696 -0:The maximum resident set size (KB) = 582468 +0:The total amount of wall time = 96.272750 +0:The maximum resident set size (KB) = 582384 -Test 035 control_restart_p8 PASS +Test 034 control_restart_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/control_decomp_p8 -Checking test 036 control_decomp_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/control_decomp_p8 +Checking test 035 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1664,15 +1661,15 @@ Checking test 036 control_decomp_p8 results .... Comparing 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.492495 -0:The maximum resident set size (KB) = 1417076 +0:The total amount of wall time = 190.034243 +0:The maximum resident set size (KB) = 1417084 -Test 036 control_decomp_p8 PASS +Test 035 control_decomp_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/control_2threads_p8 -Checking test 037 control_2threads_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/control_2threads_p8 +Checking test 036 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1714,15 +1711,15 @@ Checking test 037 control_2threads_p8 results .... Comparing 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.472504 -0:The maximum resident set size (KB) = 1508092 +0:The total amount of wall time = 176.045869 +0:The maximum resident set size (KB) = 1506460 -Test 037 control_2threads_p8 PASS +Test 036 control_2threads_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_rrtmgp -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/control_p8_rrtmgp -Checking test 038 control_p8_rrtmgp results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8_rrtmgp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/control_p8_rrtmgp +Checking test 037 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1768,15 +1765,15 @@ Checking test 038 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 253.918953 -0:The maximum resident set size (KB) = 1480796 +0:The total amount of wall time = 254.422218 +0:The maximum resident set size (KB) = 1481176 -Test 038 control_p8_rrtmgp PASS +Test 037 control_p8_rrtmgp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/merra2_thompson -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/merra2_thompson -Checking test 039 merra2_thompson results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/merra2_thompson +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/merra2_thompson +Checking test 038 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1822,15 +1819,15 @@ Checking test 039 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 207.012210 -0:The maximum resident set size (KB) = 1429784 +0:The total amount of wall time = 201.716178 +0:The maximum resident set size (KB) = 1429788 -Test 039 merra2_thompson PASS +Test 038 merra2_thompson PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/regional_control -Checking test 040 regional_control results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/regional_control +Checking test 039 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1840,29 +1837,29 @@ Checking test 040 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 345.194045 -0:The maximum resident set size (KB) = 603080 +0:The total amount of wall time = 341.347208 +0:The maximum resident set size (KB) = 603188 -Test 040 regional_control PASS +Test 039 regional_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/regional_restart -Checking test 041 regional_restart results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/regional_restart +Checking test 040 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 175.581179 -0:The maximum resident set size (KB) = 593556 +0:The total amount of wall time = 174.363405 +0:The maximum resident set size (KB) = 593604 -Test 041 regional_restart PASS +Test 040 regional_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/regional_decomp -Checking test 042 regional_decomp results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/regional_decomp +Checking test 041 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1872,15 +1869,15 @@ Checking test 042 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 361.390501 -0:The maximum resident set size (KB) = 597288 +0:The total amount of wall time = 356.089458 +0:The maximum resident set size (KB) = 597264 -Test 042 regional_decomp PASS +Test 041 regional_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/regional_2threads -Checking test 043 regional_2threads results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/regional_2threads +Checking test 042 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1890,44 +1887,44 @@ Checking test 043 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 213.828290 -0:The maximum resident set size (KB) = 610048 +0:The total amount of wall time = 204.429740 +0:The maximum resident set size (KB) = 610056 -Test 043 regional_2threads PASS +Test 042 regional_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_noquilt -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/regional_noquilt -Checking test 044 regional_noquilt results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_noquilt +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/regional_noquilt +Checking test 043 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -0:The total amount of wall time = 366.294189 -0:The maximum resident set size (KB) = 597624 +0:The total amount of wall time = 361.924992 +0:The maximum resident set size (KB) = 597676 -Test 044 regional_noquilt PASS +Test 043 regional_noquilt PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_netcdf_parallel -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/regional_netcdf_parallel -Checking test 045 regional_netcdf_parallel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_netcdf_parallel +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/regional_netcdf_parallel +Checking test 044 regional_netcdf_parallel results .... Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc ............ALT CHECK......OK + Comparing dynf006.nc ............ALT CHECK......OK + Comparing phyf000.nc .........OK Comparing phyf006.nc ............ALT CHECK......OK -0:The total amount of wall time = 341.759382 -0:The maximum resident set size (KB) = 595136 +0:The total amount of wall time = 335.784727 +0:The maximum resident set size (KB) = 595196 -Test 045 regional_netcdf_parallel PASS +Test 044 regional_netcdf_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/regional_2dwrtdecomp -Checking test 046 regional_2dwrtdecomp results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/regional_2dwrtdecomp +Checking test 045 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1937,15 +1934,15 @@ Checking test 046 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 342.421596 -0:The maximum resident set size (KB) = 603252 +0:The total amount of wall time = 340.452498 +0:The maximum resident set size (KB) = 603152 -Test 046 regional_2dwrtdecomp PASS +Test 045 regional_2dwrtdecomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/fv3_regional_wofs -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/regional_wofs -Checking test 047 regional_wofs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/fv3_regional_wofs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/regional_wofs +Checking test 046 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1955,15 +1952,15 @@ Checking test 047 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 426.527958 -0:The maximum resident set size (KB) = 274688 +0:The total amount of wall time = 424.596514 +0:The maximum resident set size (KB) = 274588 -Test 047 regional_wofs PASS +Test 046 regional_wofs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/rap_control -Checking test 048 rap_control results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/rap_control +Checking test 047 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2009,15 +2006,15 @@ Checking test 048 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 476.952440 -0:The maximum resident set size (KB) = 826080 +0:The total amount of wall time = 478.109621 +0:The maximum resident set size (KB) = 826632 -Test 048 rap_control PASS +Test 047 rap_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/regional_spp_sppt_shum_skeb -Checking test 049 regional_spp_sppt_shum_skeb results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_spp_sppt_shum_skeb +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/regional_spp_sppt_shum_skeb +Checking test 048 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -2027,15 +2024,15 @@ Checking test 049 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 318.449596 -0:The maximum resident set size (KB) = 949296 +0:The total amount of wall time = 324.445693 +0:The maximum resident set size (KB) = 949280 -Test 049 regional_spp_sppt_shum_skeb PASS +Test 048 regional_spp_sppt_shum_skeb PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/rap_decomp -Checking test 050 rap_decomp results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/rap_decomp +Checking test 049 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2081,15 +2078,15 @@ Checking test 050 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 510.119726 -0:The maximum resident set size (KB) = 823704 +0:The total amount of wall time = 503.037245 +0:The maximum resident set size (KB) = 823484 -Test 050 rap_decomp PASS +Test 049 rap_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/rap_2threads -Checking test 051 rap_2threads results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/rap_2threads +Checking test 050 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2135,15 +2132,15 @@ Checking test 051 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 467.225380 -0:The maximum resident set size (KB) = 894768 +0:The total amount of wall time = 466.448616 +0:The maximum resident set size (KB) = 894624 -Test 051 rap_2threads PASS +Test 050 rap_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/rap_restart -Checking test 052 rap_restart results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/rap_restart +Checking test 051 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2181,15 +2178,15 @@ Checking test 052 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 242.085286 -0:The maximum resident set size (KB) = 572764 +0:The total amount of wall time = 241.304442 +0:The maximum resident set size (KB) = 572752 -Test 052 rap_restart PASS +Test 051 rap_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/rap_sfcdiff -Checking test 053 rap_sfcdiff results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/rap_sfcdiff +Checking test 052 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2235,15 +2232,15 @@ Checking test 053 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 460.263022 -0:The maximum resident set size (KB) = 826556 +0:The total amount of wall time = 471.463778 +0:The maximum resident set size (KB) = 826392 -Test 053 rap_sfcdiff PASS +Test 052 rap_sfcdiff PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/rap_sfcdiff_decomp -Checking test 054 rap_sfcdiff_decomp results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/rap_sfcdiff_decomp +Checking test 053 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2289,15 +2286,15 @@ Checking test 054 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 497.791794 -0:The maximum resident set size (KB) = 825444 +0:The total amount of wall time = 495.400729 +0:The maximum resident set size (KB) = 825420 -Test 054 rap_sfcdiff_decomp PASS +Test 053 rap_sfcdiff_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/rap_sfcdiff_restart -Checking test 055 rap_sfcdiff_restart results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/rap_sfcdiff_restart +Checking test 054 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2335,15 +2332,15 @@ Checking test 055 rap_sfcdiff_restart results .... Comparing 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.931057 -0:The maximum resident set size (KB) = 570056 +0:The total amount of wall time = 355.252125 +0:The maximum resident set size (KB) = 570128 -Test 055 rap_sfcdiff_restart PASS +Test 054 rap_sfcdiff_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/hrrr_control -Checking test 056 hrrr_control results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/hrrr_control +Checking test 055 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2389,15 +2386,15 @@ Checking test 056 hrrr_control results .... Comparing 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.475849 -0:The maximum resident set size (KB) = 821400 +0:The total amount of wall time = 455.376261 +0:The maximum resident set size (KB) = 821336 -Test 056 hrrr_control PASS +Test 055 hrrr_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/hrrr_control_decomp -Checking test 057 hrrr_control_decomp results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/hrrr_control_decomp +Checking test 056 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2443,15 +2440,15 @@ Checking test 057 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 475.740740 -0:The maximum resident set size (KB) = 820360 +0:The total amount of wall time = 478.933718 +0:The maximum resident set size (KB) = 820276 -Test 057 hrrr_control_decomp PASS +Test 056 hrrr_control_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/hrrr_control_2threads -Checking test 058 hrrr_control_2threads results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/hrrr_control_2threads +Checking test 057 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2497,15 +2494,15 @@ Checking test 058 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 432.582646 -0:The maximum resident set size (KB) = 887784 +0:The total amount of wall time = 437.190241 +0:The maximum resident set size (KB) = 887608 -Test 058 hrrr_control_2threads PASS +Test 057 hrrr_control_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/hrrr_control_restart -Checking test 059 hrrr_control_restart results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/hrrr_control_restart +Checking test 058 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2543,15 +2540,15 @@ Checking test 059 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 341.558068 -0:The maximum resident set size (KB) = 568752 +0:The total amount of wall time = 345.984230 +0:The maximum resident set size (KB) = 568764 -Test 059 hrrr_control_restart PASS +Test 058 hrrr_control_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/rrfs_v1beta -Checking test 060 rrfs_v1beta results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_v1beta +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/rrfs_v1beta +Checking test 059 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2597,15 +2594,15 @@ Checking test 060 rrfs_v1beta results .... Comparing 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.786415 -0:The maximum resident set size (KB) = 820024 +0:The total amount of wall time = 464.785675 +0:The maximum resident set size (KB) = 820396 -Test 060 rrfs_v1beta PASS +Test 059 rrfs_v1beta PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/rrfs_v1nssl -Checking test 061 rrfs_v1nssl results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_v1nssl +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/rrfs_v1nssl +Checking test 060 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2619,15 +2616,15 @@ Checking test 061 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 564.950662 -0:The maximum resident set size (KB) = 508340 +0:The total amount of wall time = 602.332092 +0:The maximum resident set size (KB) = 508356 -Test 061 rrfs_v1nssl PASS +Test 060 rrfs_v1nssl PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/rrfs_v1nssl_nohailnoccn -Checking test 062 rrfs_v1nssl_nohailnoccn results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/rrfs_v1nssl_nohailnoccn +Checking test 061 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2641,15 +2638,15 @@ Checking test 062 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 555.694877 +0:The total amount of wall time = 554.546958 0:The maximum resident set size (KB) = 501368 -Test 062 rrfs_v1nssl_nohailnoccn PASS +Test 061 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/rrfs_conus13km_hrrr_warm -Checking test 063 rrfs_conus13km_hrrr_warm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/rrfs_conus13km_hrrr_warm +Checking test 062 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2657,15 +2654,15 @@ Checking test 063 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 128.657212 -0:The maximum resident set size (KB) = 638976 +0:The total amount of wall time = 127.778676 +0:The maximum resident set size (KB) = 639028 -Test 063 rrfs_conus13km_hrrr_warm PASS +Test 062 rrfs_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/rrfs_smoke_conus13km_hrrr_warm -Checking test 064 rrfs_smoke_conus13km_hrrr_warm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/rrfs_smoke_conus13km_hrrr_warm +Checking test 063 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2673,15 +2670,15 @@ Checking test 064 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 143.513408 -0:The maximum resident set size (KB) = 652928 +0:The total amount of wall time = 143.556124 +0:The maximum resident set size (KB) = 652952 -Test 064 rrfs_smoke_conus13km_hrrr_warm PASS +Test 063 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/rrfs_conus13km_radar_tten_warm -Checking test 065 rrfs_conus13km_radar_tten_warm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/rrfs_conus13km_radar_tten_warm +Checking test 064 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2689,15 +2686,15 @@ Checking test 065 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 129.708785 -0:The maximum resident set size (KB) = 641076 +0:The total amount of wall time = 130.101493 +0:The maximum resident set size (KB) = 641264 -Test 065 rrfs_conus13km_radar_tten_warm PASS +Test 064 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/rrfs_conus13km_hrrr_warm_2threads -Checking test 066 rrfs_conus13km_hrrr_warm_2threads results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/rrfs_conus13km_hrrr_warm_2threads +Checking test 065 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2705,15 +2702,15 @@ Checking test 066 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 82.668666 -0:The maximum resident set size (KB) = 656612 +0:The total amount of wall time = 81.387559 +0:The maximum resident set size (KB) = 655524 -Test 066 rrfs_conus13km_hrrr_warm_2threads PASS +Test 065 rrfs_conus13km_hrrr_warm_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/rrfs_conus13km_radar_tten_warm_2threads -Checking test 067 rrfs_conus13km_radar_tten_warm_2threads results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/rrfs_conus13km_radar_tten_warm_2threads +Checking test 066 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2721,15 +2718,15 @@ Checking test 067 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 84.664094 -0:The maximum resident set size (KB) = 658492 +0:The total amount of wall time = 81.608424 +0:The maximum resident set size (KB) = 658988 -Test 067 rrfs_conus13km_radar_tten_warm_2threads PASS +Test 066 rrfs_conus13km_radar_tten_warm_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/control_csawmg -Checking test 068 control_csawmg results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/control_csawmg +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/control_csawmg +Checking test 067 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2739,15 +2736,15 @@ Checking test 068 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 399.812563 -0:The maximum resident set size (KB) = 529016 +0:The total amount of wall time = 397.423898 +0:The maximum resident set size (KB) = 529044 -Test 068 control_csawmg PASS +Test 067 control_csawmg PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/control_csawmgt -Checking test 069 control_csawmgt results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/control_csawmgt +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/control_csawmgt +Checking test 068 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2757,15 +2754,15 @@ Checking test 069 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 394.579843 -0:The maximum resident set size (KB) = 529052 +0:The total amount of wall time = 391.844007 +0:The maximum resident set size (KB) = 528980 -Test 069 control_csawmgt PASS +Test 068 control_csawmgt PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/control_ras -Checking test 070 control_ras results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/control_ras +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/control_ras +Checking test 069 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2775,27 +2772,27 @@ Checking test 070 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 204.498887 -0:The maximum resident set size (KB) = 487656 +0:The total amount of wall time = 205.746796 +0:The maximum resident set size (KB) = 487680 -Test 070 control_ras PASS +Test 069 control_ras PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/control_wam -Checking test 071 control_wam results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/control_wam +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/control_wam +Checking test 070 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -0:The total amount of wall time = 129.167878 -0:The maximum resident set size (KB) = 205684 +0:The total amount of wall time = 129.184479 +0:The maximum resident set size (KB) = 205612 -Test 071 control_wam PASS +Test 070 control_wam PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_faster -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/control_p8_faster -Checking test 072 control_p8_faster results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8_faster +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/control_p8_faster +Checking test 071 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2841,15 +2838,15 @@ Checking test 072 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 171.512479 -0:The maximum resident set size (KB) = 1422708 +0:The total amount of wall time = 172.490718 +0:The maximum resident set size (KB) = 1422680 -Test 072 control_p8_faster PASS +Test 071 control_p8_faster PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control_faster -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/regional_control_faster -Checking test 073 regional_control_faster results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_control_faster +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/regional_control_faster +Checking test 072 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2859,43 +2856,43 @@ Checking test 073 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 325.143210 -0:The maximum resident set size (KB) = 602948 +0:The total amount of wall time = 322.918461 +0:The maximum resident set size (KB) = 603028 -Test 073 regional_control_faster PASS +Test 072 regional_control_faster PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/rrfs_conus13km_hrrr_warm_debug -Checking test 074 rrfs_conus13km_hrrr_warm_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/rrfs_conus13km_hrrr_warm_debug +Checking test 073 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 764.328312 -0:The maximum resident set size (KB) = 672056 +0:The total amount of wall time = 797.582837 +0:The maximum resident set size (KB) = 672116 -Test 074 rrfs_conus13km_hrrr_warm_debug PASS +Test 073 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/rrfs_conus13km_radar_tten_warm_debug -Checking test 075 rrfs_conus13km_radar_tten_warm_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_conus13km_radar_tten_warm_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/rrfs_conus13km_radar_tten_warm_debug +Checking test 074 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 765.214393 -0:The maximum resident set size (KB) = 673812 +0:The total amount of wall time = 764.286643 +0:The maximum resident set size (KB) = 673868 -Test 075 rrfs_conus13km_radar_tten_warm_debug PASS +Test 074 rrfs_conus13km_radar_tten_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid_debug -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/control_CubedSphereGrid_debug -Checking test 076 control_CubedSphereGrid_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/control_CubedSphereGrid_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/control_CubedSphereGrid_debug +Checking test 075 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -2921,335 +2918,335 @@ Checking test 076 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -0:The total amount of wall time = 174.142027 -0:The maximum resident set size (KB) = 621560 +0:The total amount of wall time = 174.272072 +0:The maximum resident set size (KB) = 621508 -Test 076 control_CubedSphereGrid_debug PASS +Test 075 control_CubedSphereGrid_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/control_wrtGauss_netcdf_parallel_debug -Checking test 077 control_wrtGauss_netcdf_parallel_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/control_wrtGauss_netcdf_parallel_debug +Checking test 076 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 164.400264 +0:The total amount of wall time = 163.015616 0:The maximum resident set size (KB) = 621340 -Test 077 control_wrtGauss_netcdf_parallel_debug PASS +Test 076 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy_debug -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/control_stochy_debug -Checking test 078 control_stochy_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/control_stochy_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/control_stochy_debug +Checking test 077 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 183.187312 -0:The maximum resident set size (KB) = 624968 +0:The total amount of wall time = 183.075720 +0:The maximum resident set size (KB) = 624956 -Test 078 control_stochy_debug PASS +Test 077 control_stochy_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp_debug -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/control_lndp_debug -Checking test 079 control_lndp_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/control_lndp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/control_lndp_debug +Checking test 078 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 165.004726 -0:The maximum resident set size (KB) = 627220 +0:The total amount of wall time = 165.113195 +0:The maximum resident set size (KB) = 627004 -Test 079 control_lndp_debug PASS +Test 078 control_lndp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg_debug -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/control_csawmg_debug -Checking test 080 control_csawmg_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/control_csawmg_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/control_csawmg_debug +Checking test 079 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 258.481074 -0:The maximum resident set size (KB) = 671340 +0:The total amount of wall time = 255.990397 +0:The maximum resident set size (KB) = 671324 -Test 080 control_csawmg_debug PASS +Test 079 control_csawmg_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt_debug -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/control_csawmgt_debug -Checking test 081 control_csawmgt_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/control_csawmgt_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/control_csawmgt_debug +Checking test 080 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 254.432562 -0:The maximum resident set size (KB) = 671132 +0:The total amount of wall time = 252.549496 +0:The maximum resident set size (KB) = 671140 -Test 081 control_csawmgt_debug PASS +Test 080 control_csawmgt_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras_debug -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/control_ras_debug -Checking test 082 control_ras_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/control_ras_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/control_ras_debug +Checking test 081 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 168.060590 -0:The maximum resident set size (KB) = 632424 +0:The total amount of wall time = 167.664666 +0:The maximum resident set size (KB) = 632584 -Test 082 control_ras_debug PASS +Test 081 control_ras_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_diag_debug -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/control_diag_debug -Checking test 083 control_diag_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/control_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/control_diag_debug +Checking test 082 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 169.146876 -0:The maximum resident set size (KB) = 677936 +0:The total amount of wall time = 169.065938 +0:The maximum resident set size (KB) = 677932 -Test 083 control_diag_debug PASS +Test 082 control_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_debug_p8 -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/control_debug_p8 -Checking test 084 control_debug_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/control_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/control_debug_p8 +Checking test 083 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 186.416011 -0:The maximum resident set size (KB) = 1444172 +0:The total amount of wall time = 186.399972 +0:The maximum resident set size (KB) = 1444184 -Test 084 control_debug_p8 PASS +Test 083 control_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_debug -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/regional_debug -Checking test 085 regional_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/regional_debug +Checking test 084 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 1037.451525 -0:The maximum resident set size (KB) = 628992 +0:The total amount of wall time = 1039.439163 +0:The maximum resident set size (KB) = 628924 -Test 085 regional_debug PASS +Test 084 regional_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/rap_control_debug -Checking test 086 rap_control_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/rap_control_debug +Checking test 085 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 296.423413 -0:The maximum resident set size (KB) = 989904 +0:The total amount of wall time = 295.283578 +0:The maximum resident set size (KB) = 989956 -Test 086 rap_control_debug PASS +Test 085 rap_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/hrrr_control_debug -Checking test 087 hrrr_control_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/hrrr_control_debug +Checking test 086 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 290.997326 -0:The maximum resident set size (KB) = 988952 +0:The total amount of wall time = 290.511035 +0:The maximum resident set size (KB) = 988668 -Test 087 hrrr_control_debug PASS +Test 086 hrrr_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/rap_unified_drag_suite_debug -Checking test 088 rap_unified_drag_suite_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/rap_unified_drag_suite_debug +Checking test 087 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 296.123924 -0:The maximum resident set size (KB) = 989932 +0:The total amount of wall time = 296.468412 +0:The maximum resident set size (KB) = 990008 -Test 088 rap_unified_drag_suite_debug PASS +Test 087 rap_unified_drag_suite_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_diag_debug -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/rap_diag_debug -Checking test 089 rap_diag_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/rap_diag_debug +Checking test 088 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 311.089225 -0:The maximum resident set size (KB) = 1074084 +0:The total amount of wall time = 309.859483 +0:The maximum resident set size (KB) = 1074212 -Test 089 rap_diag_debug PASS +Test 088 rap_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/rap_cires_ugwp_debug -Checking test 090 rap_cires_ugwp_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/rap_cires_ugwp_debug +Checking test 089 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 301.338762 -0:The maximum resident set size (KB) = 988608 +0:The total amount of wall time = 302.186390 +0:The maximum resident set size (KB) = 988664 -Test 090 rap_cires_ugwp_debug PASS +Test 089 rap_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/rap_unified_ugwp_debug -Checking test 091 rap_unified_ugwp_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/rap_unified_ugwp_debug +Checking test 090 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 300.368636 -0:The maximum resident set size (KB) = 991936 +0:The total amount of wall time = 301.392857 +0:The maximum resident set size (KB) = 991996 -Test 091 rap_unified_ugwp_debug PASS +Test 090 rap_unified_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_lndp_debug -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/rap_lndp_debug -Checking test 092 rap_lndp_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_lndp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/rap_lndp_debug +Checking test 091 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 297.721275 -0:The maximum resident set size (KB) = 990524 +0:The total amount of wall time = 300.749926 +0:The maximum resident set size (KB) = 991112 -Test 092 rap_lndp_debug PASS +Test 091 rap_lndp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_flake_debug -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/rap_flake_debug -Checking test 093 rap_flake_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_flake_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/rap_flake_debug +Checking test 092 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 295.915337 -0:The maximum resident set size (KB) = 990012 +0:The total amount of wall time = 295.549558 +0:The maximum resident set size (KB) = 989976 -Test 093 rap_flake_debug PASS +Test 092 rap_flake_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_progcld_thompson_debug -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/rap_progcld_thompson_debug -Checking test 094 rap_progcld_thompson_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_progcld_thompson_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/rap_progcld_thompson_debug +Checking test 093 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 294.767232 -0:The maximum resident set size (KB) = 989868 +0:The total amount of wall time = 297.204455 +0:The maximum resident set size (KB) = 989908 -Test 094 rap_progcld_thompson_debug PASS +Test 093 rap_progcld_thompson_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_debug -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/rap_noah_debug -Checking test 095 rap_noah_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_noah_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/rap_noah_debug +Checking test 094 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 288.732595 -0:The maximum resident set size (KB) = 988516 +0:The total amount of wall time = 290.233912 +0:The maximum resident set size (KB) = 988420 -Test 095 rap_noah_debug PASS +Test 094 rap_noah_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff_debug -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/rap_sfcdiff_debug -Checking test 096 rap_sfcdiff_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_sfcdiff_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/rap_sfcdiff_debug +Checking test 095 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 296.606840 -0:The maximum resident set size (KB) = 991228 +0:The total amount of wall time = 296.498663 +0:The maximum resident set size (KB) = 991456 -Test 096 rap_sfcdiff_debug PASS +Test 095 rap_sfcdiff_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 097 rap_noah_sfcdiff_cires_ugwp_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 096 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 478.683063 -0:The maximum resident set size (KB) = 989316 +0:The total amount of wall time = 480.853123 +0:The maximum resident set size (KB) = 989380 -Test 097 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 096 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta_debug -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/rrfs_v1beta_debug -Checking test 098 rrfs_v1beta_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_v1beta_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/rrfs_v1beta_debug +Checking test 097 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 292.742639 -0:The maximum resident set size (KB) = 986404 +0:The total amount of wall time = 291.313736 +0:The maximum resident set size (KB) = 986376 -Test 098 rrfs_v1beta_debug PASS +Test 097 rrfs_v1beta_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam_debug -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/control_wam_debug -Checking test 099 control_wam_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/control_wam_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/control_wam_debug +Checking test 098 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 296.510905 -0:The maximum resident set size (KB) = 239184 +0:The total amount of wall time = 326.915901 +0:The maximum resident set size (KB) = 239168 -Test 099 control_wam_debug PASS +Test 098 control_wam_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/regional_spp_sppt_shum_skeb_dyn32_phy32 -Checking test 100 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 099 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -3259,15 +3256,15 @@ Checking test 100 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 306.255127 -0:The maximum resident set size (KB) = 848232 +0:The total amount of wall time = 300.447297 +0:The maximum resident set size (KB) = 848360 -Test 100 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS +Test 099 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/rap_control_dyn32_phy32 -Checking test 101 rap_control_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/rap_control_dyn32_phy32 +Checking test 100 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3313,15 +3310,15 @@ Checking test 101 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 386.010257 -0:The maximum resident set size (KB) = 707140 +0:The total amount of wall time = 418.469140 +0:The maximum resident set size (KB) = 707188 -Test 101 rap_control_dyn32_phy32 PASS +Test 100 rap_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/hrrr_control_dyn32_phy32 -Checking test 102 hrrr_control_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/hrrr_control_dyn32_phy32 +Checking test 101 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3367,15 +3364,15 @@ Checking test 102 hrrr_control_dyn32_phy32 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 = 204.700327 -0:The maximum resident set size (KB) = 705588 +0:The total amount of wall time = 205.074232 +0:The maximum resident set size (KB) = 705768 -Test 102 hrrr_control_dyn32_phy32 PASS +Test 101 hrrr_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/rap_2threads_dyn32_phy32 -Checking test 103 rap_2threads_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/rap_2threads_dyn32_phy32 +Checking test 102 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3421,15 +3418,15 @@ Checking test 103 rap_2threads_dyn32_phy32 results .... Comparing 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.886616 -0:The maximum resident set size (KB) = 757168 +0:The total amount of wall time = 369.727534 +0:The maximum resident set size (KB) = 756964 -Test 103 rap_2threads_dyn32_phy32 PASS +Test 102 rap_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/hrrr_control_2threads_dyn32_phy32 -Checking test 104 hrrr_control_2threads_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/hrrr_control_2threads_dyn32_phy32 +Checking test 103 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3475,15 +3472,15 @@ Checking test 104 hrrr_control_2threads_dyn32_phy32 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 = 205.783009 -0:The maximum resident set size (KB) = 758392 +0:The total amount of wall time = 201.583833 +0:The maximum resident set size (KB) = 758892 -Test 104 hrrr_control_2threads_dyn32_phy32 PASS +Test 103 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/hrrr_control_decomp_dyn32_phy32 -Checking test 105 hrrr_control_decomp_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/hrrr_control_decomp_dyn32_phy32 +Checking test 104 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3529,15 +3526,15 @@ Checking test 105 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 219.874684 -0:The maximum resident set size (KB) = 703964 +0:The total amount of wall time = 215.265515 +0:The maximum resident set size (KB) = 704544 -Test 105 hrrr_control_decomp_dyn32_phy32 PASS +Test 104 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/rap_restart_dyn32_phy32 -Checking test 106 rap_restart_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/rap_restart_dyn32_phy32 +Checking test 105 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3575,15 +3572,15 @@ Checking test 106 rap_restart_dyn32_phy32 results .... Comparing 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.799087 -0:The maximum resident set size (KB) = 544636 +0:The total amount of wall time = 292.486972 +0:The maximum resident set size (KB) = 544724 -Test 106 rap_restart_dyn32_phy32 PASS +Test 105 rap_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/hrrr_control_restart_dyn32_phy32 -Checking test 107 hrrr_control_restart_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/hrrr_control_restart_dyn32_phy32 +Checking test 106 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3621,15 +3618,15 @@ Checking test 107 hrrr_control_restart_dyn32_phy32 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 = 104.977975 -0:The maximum resident set size (KB) = 536812 +0:The total amount of wall time = 105.748078 +0:The maximum resident set size (KB) = 536516 -Test 107 hrrr_control_restart_dyn32_phy32 PASS +Test 106 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn64_phy32 -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/rap_control_dyn64_phy32 -Checking test 108 rap_control_dyn64_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_dyn64_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/rap_control_dyn64_phy32 +Checking test 107 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3675,82 +3672,82 @@ Checking test 108 rap_control_dyn64_phy32 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 = 270.723539 -0:The maximum resident set size (KB) = 726860 +0:The total amount of wall time = 258.481473 +0:The maximum resident set size (KB) = 726836 -Test 108 rap_control_dyn64_phy32 PASS +Test 107 rap_control_dyn64_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/rap_control_debug_dyn32_phy32 -Checking test 109 rap_control_debug_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/rap_control_debug_dyn32_phy32 +Checking test 108 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 291.954985 -0:The maximum resident set size (KB) = 876420 +0:The total amount of wall time = 291.053638 +0:The maximum resident set size (KB) = 876168 -Test 109 rap_control_debug_dyn32_phy32 PASS +Test 108 rap_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/hrrr_control_debug_dyn32_phy32 -Checking test 110 hrrr_control_debug_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/hrrr_control_debug_dyn32_phy32 +Checking test 109 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 287.848123 -0:The maximum resident set size (KB) = 874360 +0:The total amount of wall time = 286.505002 +0:The maximum resident set size (KB) = 874448 -Test 110 hrrr_control_debug_dyn32_phy32 PASS +Test 109 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/rap_control_dyn64_phy32_debug -Checking test 111 rap_control_dyn64_phy32_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_debug_dyn64_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/rap_control_dyn64_phy32_debug +Checking test 110 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 295.275394 -0:The maximum resident set size (KB) = 893548 +0:The total amount of wall time = 295.174078 +0:The maximum resident set size (KB) = 893380 -Test 111 rap_control_dyn64_phy32_debug PASS +Test 110 rap_control_dyn64_phy32_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/hafs_regional_atm -Checking test 112 hafs_regional_atm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/hafs_regional_atm +Checking test 111 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -0:The total amount of wall time = 265.192895 -0:The maximum resident set size (KB) = 739612 +0:The total amount of wall time = 260.998214 +0:The maximum resident set size (KB) = 739132 -Test 112 hafs_regional_atm PASS +Test 111 hafs_regional_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/hafs_regional_atm_thompson_gfdlsf -Checking test 113 hafs_regional_atm_thompson_gfdlsf results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/hafs_regional_atm_thompson_gfdlsf +Checking test 112 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -0:The total amount of wall time = 291.696411 -0:The maximum resident set size (KB) = 1091588 +0:The total amount of wall time = 295.257733 +0:The maximum resident set size (KB) = 1091716 -Test 113 hafs_regional_atm_thompson_gfdlsf PASS +Test 112 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/hafs_regional_atm_ocn -Checking test 114 hafs_regional_atm_ocn results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_atm_ocn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/hafs_regional_atm_ocn +Checking test 113 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -3758,15 +3755,15 @@ Checking test 114 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 455.598642 -0:The maximum resident set size (KB) = 738408 +0:The total amount of wall time = 454.032831 +0:The maximum resident set size (KB) = 738400 -Test 114 hafs_regional_atm_ocn PASS +Test 113 hafs_regional_atm_ocn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_wav -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/hafs_regional_atm_wav -Checking test 115 hafs_regional_atm_wav results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_atm_wav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/hafs_regional_atm_wav +Checking test 114 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK @@ -3774,15 +3771,15 @@ Checking test 115 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 1070.278429 -0:The maximum resident set size (KB) = 766504 +0:The total amount of wall time = 1024.333971 +0:The maximum resident set size (KB) = 766116 -Test 115 hafs_regional_atm_wav PASS +Test 114 hafs_regional_atm_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn_wav -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/hafs_regional_atm_ocn_wav -Checking test 116 hafs_regional_atm_ocn_wav results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_atm_ocn_wav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/hafs_regional_atm_ocn_wav +Checking test 115 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -3792,29 +3789,29 @@ Checking test 116 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 1066.022090 -0:The maximum resident set size (KB) = 789948 +0:The total amount of wall time = 1161.584170 +0:The maximum resident set size (KB) = 790472 -Test 116 hafs_regional_atm_ocn_wav PASS +Test 115 hafs_regional_atm_ocn_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_1nest_atm -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/hafs_regional_1nest_atm -Checking test 117 hafs_regional_1nest_atm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/hafs_regional_1nest_atm +Checking test 116 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 378.193817 -0:The maximum resident set size (KB) = 293348 +0:The total amount of wall time = 384.291335 +0:The maximum resident set size (KB) = 293440 -Test 117 hafs_regional_1nest_atm PASS +Test 116 hafs_regional_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/hafs_regional_telescopic_2nests_atm -Checking test 118 hafs_regional_telescopic_2nests_atm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/hafs_regional_telescopic_2nests_atm +Checking test 117 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -3822,29 +3819,29 @@ Checking test 118 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -0:The total amount of wall time = 427.373835 -0:The maximum resident set size (KB) = 309100 +0:The total amount of wall time = 426.511333 +0:The maximum resident set size (KB) = 309012 -Test 118 hafs_regional_telescopic_2nests_atm PASS +Test 117 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_1nest_atm -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/hafs_global_1nest_atm -Checking test 119 hafs_global_1nest_atm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_global_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/hafs_global_1nest_atm +Checking test 118 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 170.434692 -0:The maximum resident set size (KB) = 206492 +0:The total amount of wall time = 170.322877 +0:The maximum resident set size (KB) = 206120 -Test 119 hafs_global_1nest_atm PASS +Test 118 hafs_global_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_multiple_4nests_atm -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/hafs_global_multiple_4nests_atm -Checking test 120 hafs_global_multiple_4nests_atm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_global_multiple_4nests_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/hafs_global_multiple_4nests_atm +Checking test 119 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -3861,15 +3858,15 @@ Checking test 120 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -0:The total amount of wall time = 488.895832 -0:The maximum resident set size (KB) = 292256 +0:The total amount of wall time = 513.716535 +0:The maximum resident set size (KB) = 294516 -Test 120 hafs_global_multiple_4nests_atm PASS +Test 119 hafs_global_multiple_4nests_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/hafs_regional_specified_moving_1nest_atm -Checking test 121 hafs_regional_specified_moving_1nest_atm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/hafs_regional_specified_moving_1nest_atm +Checking test 120 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -3877,29 +3874,29 @@ Checking test 121 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -0:The total amount of wall time = 241.146873 -0:The maximum resident set size (KB) = 306808 +0:The total amount of wall time = 242.084797 +0:The maximum resident set size (KB) = 307652 -Test 121 hafs_regional_specified_moving_1nest_atm PASS +Test 120 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/hafs_regional_storm_following_1nest_atm -Checking test 122 hafs_regional_storm_following_1nest_atm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/hafs_regional_storm_following_1nest_atm +Checking test 121 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 228.013688 -0:The maximum resident set size (KB) = 306668 +0:The total amount of wall time = 228.123461 +0:The maximum resident set size (KB) = 306728 -Test 122 hafs_regional_storm_following_1nest_atm PASS +Test 121 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/hafs_regional_storm_following_1nest_atm_ocn -Checking test 123 hafs_regional_storm_following_1nest_atm_ocn results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/hafs_regional_storm_following_1nest_atm_ocn +Checking test 122 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -3907,43 +3904,43 @@ Checking test 123 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -0:The total amount of wall time = 279.262187 -0:The maximum resident set size (KB) = 353416 +0:The total amount of wall time = 281.294322 +0:The maximum resident set size (KB) = 353492 -Test 123 hafs_regional_storm_following_1nest_atm_ocn PASS +Test 122 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_storm_following_1nest_atm -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/hafs_global_storm_following_1nest_atm -Checking test 124 hafs_global_storm_following_1nest_atm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_global_storm_following_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/hafs_global_storm_following_1nest_atm +Checking test 123 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 68.510222 -0:The maximum resident set size (KB) = 221840 +0:The total amount of wall time = 66.617328 +0:The maximum resident set size (KB) = 221664 -Test 124 hafs_global_storm_following_1nest_atm PASS +Test 123 hafs_global_storm_following_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/hafs_regional_storm_following_1nest_atm_ocn_debug -Checking test 125 hafs_regional_storm_following_1nest_atm_ocn_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/hafs_regional_storm_following_1nest_atm_ocn_debug +Checking test 124 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 823.089499 -0:The maximum resident set size (KB) = 386936 +0:The total amount of wall time = 820.949846 +0:The maximum resident set size (KB) = 386992 -Test 125 hafs_regional_storm_following_1nest_atm_ocn_debug PASS +Test 124 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/hafs_regional_storm_following_1nest_atm_ocn_wav -Checking test 126 hafs_regional_storm_following_1nest_atm_ocn_wav results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 125 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -3953,162 +3950,162 @@ Checking test 126 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -0:The total amount of wall time = 760.581088 -0:The maximum resident set size (KB) = 416924 +0:The total amount of wall time = 766.863893 +0:The maximum resident set size (KB) = 417312 -Test 126 hafs_regional_storm_following_1nest_atm_ocn_wav PASS +Test 125 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_docn -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/hafs_regional_docn -Checking test 127 hafs_regional_docn results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_docn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/hafs_regional_docn +Checking test 126 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 403.307213 -0:The maximum resident set size (KB) = 754296 +0:The total amount of wall time = 390.967045 +0:The maximum resident set size (KB) = 754676 -Test 127 hafs_regional_docn PASS +Test 126 hafs_regional_docn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_docn_oisst -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/hafs_regional_docn_oisst -Checking test 128 hafs_regional_docn_oisst results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_docn_oisst +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/hafs_regional_docn_oisst +Checking test 127 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 392.031309 -0:The maximum resident set size (KB) = 734084 +0:The total amount of wall time = 392.349371 +0:The maximum resident set size (KB) = 733684 -Test 128 hafs_regional_docn_oisst PASS +Test 127 hafs_regional_docn_oisst PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_datm_cdeps -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/hafs_regional_datm_cdeps -Checking test 129 hafs_regional_datm_cdeps results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_datm_cdeps +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/hafs_regional_datm_cdeps +Checking test 128 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -0:The total amount of wall time = 1282.647263 -0:The maximum resident set size (KB) = 887876 +0:The total amount of wall time = 1279.561855 +0:The maximum resident set size (KB) = 887888 -Test 129 hafs_regional_datm_cdeps PASS +Test 128 hafs_regional_datm_cdeps PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/datm_cdeps_control_cfsr -Checking test 130 datm_cdeps_control_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/datm_cdeps_control_cfsr +Checking test 129 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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.006030 -0:The maximum resident set size (KB) = 716688 +0:The total amount of wall time = 168.531328 +0:The maximum resident set size (KB) = 716676 -Test 130 datm_cdeps_control_cfsr PASS +Test 129 datm_cdeps_control_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/datm_cdeps_restart_cfsr -Checking test 131 datm_cdeps_restart_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/datm_cdeps_restart_cfsr +Checking test 130 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 100.805307 -0:The maximum resident set size (KB) = 716072 +0:The total amount of wall time = 100.561924 +0:The maximum resident set size (KB) = 704944 -Test 131 datm_cdeps_restart_cfsr PASS +Test 130 datm_cdeps_restart_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_gefs -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/datm_cdeps_control_gefs -Checking test 132 datm_cdeps_control_gefs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_control_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/datm_cdeps_control_gefs +Checking test 131 datm_cdeps_control_gefs 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 = 162.991626 -0:The maximum resident set size (KB) = 607452 +0:The total amount of wall time = 160.997513 +0:The maximum resident set size (KB) = 607468 -Test 132 datm_cdeps_control_gefs PASS +Test 131 datm_cdeps_control_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_iau_gefs -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/datm_cdeps_iau_gefs -Checking test 133 datm_cdeps_iau_gefs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_iau_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/datm_cdeps_iau_gefs +Checking test 132 datm_cdeps_iau_gefs 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 = 159.535912 -0:The maximum resident set size (KB) = 607500 +0:The total amount of wall time = 163.837386 +0:The maximum resident set size (KB) = 607508 -Test 133 datm_cdeps_iau_gefs PASS +Test 132 datm_cdeps_iau_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_stochy_gefs -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/datm_cdeps_stochy_gefs -Checking test 134 datm_cdeps_stochy_gefs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_stochy_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/datm_cdeps_stochy_gefs +Checking test 133 datm_cdeps_stochy_gefs 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 = 163.446045 -0:The maximum resident set size (KB) = 607480 +0:The total amount of wall time = 159.560961 +0:The maximum resident set size (KB) = 608444 -Test 134 datm_cdeps_stochy_gefs PASS +Test 133 datm_cdeps_stochy_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_ciceC_cfsr -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/datm_cdeps_ciceC_cfsr -Checking test 135 datm_cdeps_ciceC_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_ciceC_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/datm_cdeps_ciceC_cfsr +Checking test 134 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 168.388279 -0:The maximum resident set size (KB) = 716660 +0:The total amount of wall time = 163.972490 +0:The maximum resident set size (KB) = 716692 -Test 135 datm_cdeps_ciceC_cfsr PASS +Test 134 datm_cdeps_ciceC_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_bulk_cfsr -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/datm_cdeps_bulk_cfsr -Checking test 136 datm_cdeps_bulk_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_bulk_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/datm_cdeps_bulk_cfsr +Checking test 135 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 168.518108 -0:The maximum resident set size (KB) = 716708 +0:The total amount of wall time = 169.143350 +0:The maximum resident set size (KB) = 716712 -Test 136 datm_cdeps_bulk_cfsr PASS +Test 135 datm_cdeps_bulk_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_bulk_gefs -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/datm_cdeps_bulk_gefs -Checking test 137 datm_cdeps_bulk_gefs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_bulk_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/datm_cdeps_bulk_gefs +Checking test 136 datm_cdeps_bulk_gefs 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 = 157.186410 -0:The maximum resident set size (KB) = 607464 +0:The total amount of wall time = 162.064744 +0:The maximum resident set size (KB) = 607472 -Test 137 datm_cdeps_bulk_gefs PASS +Test 136 datm_cdeps_bulk_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_mx025_cfsr -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/datm_cdeps_mx025_cfsr -Checking test 138 datm_cdeps_mx025_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_mx025_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/datm_cdeps_mx025_cfsr +Checking test 137 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4116,15 +4113,15 @@ Checking test 138 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 727.345386 -0:The maximum resident set size (KB) = 514360 +0:The total amount of wall time = 431.477205 +0:The maximum resident set size (KB) = 514600 -Test 138 datm_cdeps_mx025_cfsr PASS +Test 137 datm_cdeps_mx025_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_mx025_gefs -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/datm_cdeps_mx025_gefs -Checking test 139 datm_cdeps_mx025_gefs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_mx025_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/datm_cdeps_mx025_gefs +Checking test 138 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4132,78 +4129,78 @@ Checking test 139 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 714.858232 -0:The maximum resident set size (KB) = 494864 +0:The total amount of wall time = 429.673934 +0:The maximum resident set size (KB) = 494720 -Test 139 datm_cdeps_mx025_gefs PASS +Test 138 datm_cdeps_mx025_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/datm_cdeps_multiple_files_cfsr -Checking test 140 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/datm_cdeps_multiple_files_cfsr +Checking test 139 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 167.726050 -0:The maximum resident set size (KB) = 727660 +0:The total amount of wall time = 167.716414 +0:The maximum resident set size (KB) = 716696 -Test 140 datm_cdeps_multiple_files_cfsr PASS +Test 139 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/datm_cdeps_3072x1536_cfsr -Checking test 141 datm_cdeps_3072x1536_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/datm_cdeps_3072x1536_cfsr +Checking test 140 datm_cdeps_3072x1536_cfsr 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 = 256.730699 -0:The maximum resident set size (KB) = 1940336 +0:The total amount of wall time = 267.105369 +0:The maximum resident set size (KB) = 1941552 -Test 141 datm_cdeps_3072x1536_cfsr PASS +Test 140 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_gfs -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/datm_cdeps_gfs -Checking test 142 datm_cdeps_gfs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_gfs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/datm_cdeps_gfs +Checking test 141 datm_cdeps_gfs 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 = 268.690768 -0:The maximum resident set size (KB) = 1942020 +0:The total amount of wall time = 239.751148 +0:The maximum resident set size (KB) = 1940288 -Test 142 datm_cdeps_gfs PASS +Test 141 datm_cdeps_gfs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_debug_cfsr -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/datm_cdeps_debug_cfsr -Checking test 143 datm_cdeps_debug_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_debug_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/datm_cdeps_debug_cfsr +Checking test 142 datm_cdeps_debug_cfsr 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 = 461.083249 -0:The maximum resident set size (KB) = 706644 +0:The total amount of wall time = 459.291654 +0:The maximum resident set size (KB) = 717868 -Test 143 datm_cdeps_debug_cfsr PASS +Test 142 datm_cdeps_debug_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr_faster -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/datm_cdeps_control_cfsr_faster -Checking test 144 datm_cdeps_control_cfsr_faster results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_control_cfsr_faster +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/datm_cdeps_control_cfsr_faster +Checking test 143 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.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 = 168.389827 -0:The maximum resident set size (KB) = 716760 +0:The total amount of wall time = 168.189828 +0:The maximum resident set size (KB) = 717336 -Test 144 datm_cdeps_control_cfsr_faster PASS +Test 143 datm_cdeps_control_cfsr_faster PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/datm_cdeps_lnd_gswp3 -Checking test 145 datm_cdeps_lnd_gswp3 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_lnd_gswp3 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/datm_cdeps_lnd_gswp3 +Checking test 144 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4211,15 +4208,15 @@ Checking test 145 datm_cdeps_lnd_gswp3 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.295407 -0:The maximum resident set size (KB) = 208228 +0:The total amount of wall time = 11.417982 +0:The maximum resident set size (KB) = 216400 -Test 145 datm_cdeps_lnd_gswp3 PASS +Test 144 datm_cdeps_lnd_gswp3 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/datm_cdeps_lnd_gswp3_rst -Checking test 146 datm_cdeps_lnd_gswp3_rst results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_lnd_gswp3 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/datm_cdeps_lnd_gswp3_rst +Checking test 145 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4227,15 +4224,15 @@ Checking test 146 datm_cdeps_lnd_gswp3_rst 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 = 15.332062 -0:The maximum resident set size (KB) = 208160 +0:The total amount of wall time = 16.011054 +0:The maximum resident set size (KB) = 208224 -Test 146 datm_cdeps_lnd_gswp3_rst PASS +Test 145 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_atmlnd_sbs -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/control_p8_atmlnd_sbs -Checking test 147 control_p8_atmlnd_sbs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8_atmlnd_sbs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/control_p8_atmlnd_sbs +Checking test 146 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -4319,15 +4316,15 @@ Checking test 147 control_p8_atmlnd_sbs 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 = 237.212873 -0:The maximum resident set size (KB) = 1462048 +0:The total amount of wall time = 235.080244 +0:The maximum resident set size (KB) = 1461996 -Test 147 control_p8_atmlnd_sbs PASS +Test 146 control_p8_atmlnd_sbs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/control_atmwav -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/control_atmwav -Checking test 148 control_atmwav results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/control_atmwav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/control_atmwav +Checking test 147 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -4370,15 +4367,15 @@ Checking test 148 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -0:The total amount of wall time = 98.889533 -0:The maximum resident set size (KB) = 474688 +0:The total amount of wall time = 99.645574 +0:The maximum resident set size (KB) = 475264 -Test 148 control_atmwav PASS +Test 147 control_atmwav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8 -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/atmaero_control_p8 -Checking test 149 atmaero_control_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/atmaero_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/atmaero_control_p8 +Checking test 148 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4421,15 +4418,15 @@ Checking test 149 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 249.299389 -0:The maximum resident set size (KB) = 2703344 +0:The total amount of wall time = 251.736859 +0:The maximum resident set size (KB) = 2703812 -Test 149 atmaero_control_p8 PASS +Test 148 atmaero_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/atmaero_control_p8_rad -Checking test 150 atmaero_control_p8_rad results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/atmaero_control_p8_rad +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/atmaero_control_p8_rad +Checking test 149 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4472,15 +4469,15 @@ Checking test 150 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 302.635933 -0:The maximum resident set size (KB) = 2757664 +0:The total amount of wall time = 298.958621 +0:The maximum resident set size (KB) = 2758404 -Test 150 atmaero_control_p8_rad PASS +Test 149 atmaero_control_p8_rad PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad_micro -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/atmaero_control_p8_rad_micro -Checking test 151 atmaero_control_p8_rad_micro results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/atmaero_control_p8_rad_micro +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/atmaero_control_p8_rad_micro +Checking test 150 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4523,15 +4520,15 @@ Checking test 151 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 306.400850 -0:The maximum resident set size (KB) = 2763932 +0:The total amount of wall time = 309.207329 +0:The maximum resident set size (KB) = 2764268 -Test 151 atmaero_control_p8_rad_micro PASS +Test 150 atmaero_control_p8_rad_micro PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/regional_atmaq -Checking test 152 regional_atmaq results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_atmaq +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/regional_atmaq +Checking test 151 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -4546,15 +4543,15 @@ Checking test 152 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -0:The total amount of wall time = 993.898230 -0:The maximum resident set size (KB) = 1146264 +0:The total amount of wall time = 747.773372 +0:The maximum resident set size (KB) = 999620 -Test 152 regional_atmaq PASS +Test 151 regional_atmaq PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq_faster -working dir = /glade/scratch/jongkim/rt-1654-intel/jongkim/FV3_RT/rt_31629/regional_atmaq_faster -Checking test 153 regional_atmaq_faster results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_atmaq_faster +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/regional_atmaq_faster +Checking test 152 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -4569,14 +4566,12 @@ Checking test 153 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -0:The total amount of wall time = 1083.110441 -0:The maximum resident set size (KB) = 1145960 +0:The total amount of wall time = 702.496957 +0:The maximum resident set size (KB) = 998652 -Test 153 regional_atmaq_faster PASS +Test 152 regional_atmaq_faster PASS -FAILED TESTS: -Test compile_008 failed in run_compile failed -REGRESSION TEST FAILED -Wed Mar 15 09:07:07 MDT 2023 -Elapsed time: 01h:18m:02s. Have a nice day! +REGRESSION TEST WAS SUCCESSFUL +Mon Mar 20 18:51:44 MDT 2023 +Elapsed time: 01h:13m:25s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index ad1e71f754f..82dc47c7b82 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,21 +1,21 @@ -Tue Mar 14 20:33:31 UTC 2023 +Mon Mar 20 23:47:45 UTC 2023 Start Regression test -Compile 001 elapsed time 178 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 197 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 321 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 96 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 182 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 400 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 317 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 327 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 272 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 233 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 144 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 012 elapsed time 116 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/control_c48 +Compile 001 elapsed time 180 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 184 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 313 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 97 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 180 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 386 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 313 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 312 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 259 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 222 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 147 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 012 elapsed time 112 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/control_c48 Checking test 001 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -54,14 +54,14 @@ Checking test 001 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 686.023018 -0: The maximum resident set size (KB) = 699160 +0: The total amount of wall time = 682.759238 +0: The maximum resident set size (KB) = 700720 Test 001 control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/control_stochy +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/control_stochy Checking test 002 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -72,14 +72,14 @@ Checking test 002 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 647.302280 - 0: The maximum resident set size (KB) = 479368 + 0: The total amount of wall time = 659.007618 + 0: The maximum resident set size (KB) = 478772 Test 002 control_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/control_ras +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/control_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/control_ras Checking test 003 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -90,14 +90,14 @@ Checking test 003 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 832.047294 - 0: The maximum resident set size (KB) = 487932 + 0: The total amount of wall time = 845.834921 + 0: The maximum resident set size (KB) = 487744 Test 003 control_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/control_p8 Checking test 004 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -144,14 +144,14 @@ Checking test 004 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 901.164362 - 0: The maximum resident set size (KB) = 1232980 + 0: The total amount of wall time = 903.084092 + 0: The maximum resident set size (KB) = 1234864 Test 004 control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/rap_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/rap_control Checking test 005 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -198,14 +198,14 @@ Checking test 005 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1491.023439 - 0: The maximum resident set size (KB) = 829676 + 0: The total amount of wall time = 1447.960190 + 0: The maximum resident set size (KB) = 836752 Test 005 rap_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/rap_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/rap_decomp Checking test 006 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -252,14 +252,14 @@ Checking test 006 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1466.499319 - 0: The maximum resident set size (KB) = 833536 + 0: The total amount of wall time = 1467.154768 + 0: The maximum resident set size (KB) = 830748 Test 006 rap_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/rap_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/rap_2threads Checking test 007 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -306,14 +306,14 @@ Checking test 007 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1364.605035 - 0: The maximum resident set size (KB) = 895248 + 0: The total amount of wall time = 1315.771882 + 0: The maximum resident set size (KB) = 898924 Test 007 rap_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/rap_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/rap_restart Checking test 008 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -352,14 +352,14 @@ Checking test 008 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 731.653769 - 0: The maximum resident set size (KB) = 546260 + 0: The total amount of wall time = 746.238005 + 0: The maximum resident set size (KB) = 545212 Test 008 rap_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/rap_sfcdiff +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/rap_sfcdiff Checking test 009 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -406,14 +406,14 @@ Checking test 009 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1448.552454 - 0: The maximum resident set size (KB) = 829228 + 0: The total amount of wall time = 1470.613232 + 0: The maximum resident set size (KB) = 829076 Test 009 rap_sfcdiff PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/rap_sfcdiff_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/rap_sfcdiff_decomp Checking test 010 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -460,14 +460,14 @@ Checking test 010 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1441.301941 - 0: The maximum resident set size (KB) = 833136 + 0: The total amount of wall time = 1444.826408 + 0: The maximum resident set size (KB) = 836504 Test 010 rap_sfcdiff_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/rap_sfcdiff_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/rap_sfcdiff_restart Checking test 011 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -506,14 +506,14 @@ Checking test 011 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1070.223474 - 0: The maximum resident set size (KB) = 550208 + 0: The total amount of wall time = 1074.633852 + 0: The maximum resident set size (KB) = 550088 Test 011 rap_sfcdiff_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/hrrr_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/hrrr_control Checking test 012 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -560,14 +560,14 @@ Checking test 012 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1428.860401 - 0: The maximum resident set size (KB) = 831232 + 0: The total amount of wall time = 1415.634655 + 0: The maximum resident set size (KB) = 827108 Test 012 hrrr_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/hrrr_control_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/hrrr_control_2threads Checking test 013 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -614,14 +614,14 @@ Checking test 013 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1272.008738 - 0: The maximum resident set size (KB) = 888212 + 0: The total amount of wall time = 1303.496885 + 0: The maximum resident set size (KB) = 890864 Test 013 hrrr_control_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/hrrr_control_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/hrrr_control_decomp Checking test 014 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -668,14 +668,14 @@ Checking test 014 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1409.401887 - 0: The maximum resident set size (KB) = 828812 + 0: The total amount of wall time = 1418.596977 + 0: The maximum resident set size (KB) = 829828 Test 014 hrrr_control_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/hrrr_control_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/hrrr_control_restart Checking test 015 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -714,14 +714,14 @@ Checking test 015 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1055.250170 - 0: The maximum resident set size (KB) = 551040 + 0: The total amount of wall time = 1055.447939 + 0: The maximum resident set size (KB) = 548632 Test 015 hrrr_control_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/rrfs_v1beta +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/rrfs_v1beta Checking test 016 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -768,14 +768,14 @@ Checking test 016 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1420.021203 - 0: The maximum resident set size (KB) = 830332 + 0: The total amount of wall time = 1470.064148 + 0: The maximum resident set size (KB) = 830720 Test 016 rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/rrfs_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/rrfs_conus13km_hrrr_warm Checking test 017 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -784,14 +784,14 @@ Checking test 017 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 739.667447 - 0: The maximum resident set size (KB) = 636104 + 0: The total amount of wall time = 743.108140 + 0: The maximum resident set size (KB) = 635592 Test 017 rrfs_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/rrfs_smoke_conus13km_hrrr_warm Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -800,14 +800,14 @@ Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 779.095894 - 0: The maximum resident set size (KB) = 651984 + 0: The total amount of wall time = 790.246094 + 0: The maximum resident set size (KB) = 649548 Test 018 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/rrfs_conus13km_radar_tten_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/rrfs_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/rrfs_conus13km_radar_tten_warm Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -816,14 +816,14 @@ Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 796.526705 - 0: The maximum resident set size (KB) = 639736 + 0: The total amount of wall time = 793.936088 + 0: The maximum resident set size (KB) = 638988 Test 019 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/rrfs_conus13km_radar_tten_warm_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/rrfs_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/rrfs_conus13km_radar_tten_warm_2threads Checking test 020 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -832,208 +832,208 @@ Checking test 020 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 903.216366 - 0: The maximum resident set size (KB) = 637792 + 0: The total amount of wall time = 942.471313 + 0: The maximum resident set size (KB) = 636760 Test 020 rrfs_conus13km_radar_tten_warm_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/control_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/control_diag_debug Checking test 021 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 130.367594 - 0: The maximum resident set size (KB) = 529940 + 0: The total amount of wall time = 125.668595 + 0: The maximum resident set size (KB) = 532028 Test 021 control_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/regional_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/regional_debug Checking test 022 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 617.364936 - 0: The maximum resident set size (KB) = 597352 + 0: The total amount of wall time = 711.703910 + 0: The maximum resident set size (KB) = 595956 Test 022 regional_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/rap_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/rap_control_debug Checking test 023 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 174.043589 - 0: The maximum resident set size (KB) = 850396 + 0: The total amount of wall time = 176.089048 + 0: The maximum resident set size (KB) = 849904 Test 023 rap_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/hrrr_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/hrrr_control_debug Checking test 024 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 175.448693 - 0: The maximum resident set size (KB) = 840148 + 0: The total amount of wall time = 175.079032 + 0: The maximum resident set size (KB) = 839924 Test 024 hrrr_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/rap_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/rap_diag_debug Checking test 025 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 219.681105 - 0: The maximum resident set size (KB) = 931752 + 0: The total amount of wall time = 212.075108 + 0: The maximum resident set size (KB) = 930672 Test 025 rap_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/rap_noah_sfcdiff_cires_ugwp_debug Checking test 026 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.711459 - 0: The maximum resident set size (KB) = 844880 + 0: The total amount of wall time = 281.535447 + 0: The maximum resident set size (KB) = 851412 Test 026 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/rap_progcld_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/rap_progcld_thompson_debug Checking test 027 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 178.167207 - 0: The maximum resident set size (KB) = 849168 + 0: The total amount of wall time = 177.102479 + 0: The maximum resident set size (KB) = 852692 Test 027 rap_progcld_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/rrfs_v1beta_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/rrfs_v1beta_debug Checking test 028 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 174.578821 - 0: The maximum resident set size (KB) = 842208 + 0: The total amount of wall time = 177.921164 + 0: The maximum resident set size (KB) = 838488 Test 028 rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/control_ras_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/control_ras_debug Checking test 029 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 104.379743 - 0: The maximum resident set size (KB) = 487696 + 0: The total amount of wall time = 105.197091 + 0: The maximum resident set size (KB) = 481840 Test 029 control_ras_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/control_stochy_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/control_stochy_debug Checking test 030 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 117.581379 - 0: The maximum resident set size (KB) = 479128 + 0: The total amount of wall time = 119.952356 + 0: The maximum resident set size (KB) = 478304 Test 030 control_stochy_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/control_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/control_debug_p8 Checking test 031 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 119.792186 - 0: The maximum resident set size (KB) = 1231776 + 0: The total amount of wall time = 118.928042 + 0: The maximum resident set size (KB) = 1233484 Test 031 control_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/rrfs_conus13km_hrrr_warm_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/rrfs_conus13km_hrrr_warm_debugs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/rrfs_conus13km_hrrr_warm_debug Checking test 032 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 584.802724 - 0: The maximum resident set size (KB) = 654012 + 0: The total amount of wall time = 549.737335 + 0: The maximum resident set size (KB) = 653652 Test 032 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_conus13km_radar_tten_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/rrfs_conus13km_radar_tten_warm_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/rrfs_conus13km_radar_tten_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/rrfs_conus13km_radar_tten_warm_debug Checking test 033 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 557.425146 - 0: The maximum resident set size (KB) = 656148 + 0: The total amount of wall time = 556.352658 + 0: The maximum resident set size (KB) = 657524 Test 033 rrfs_conus13km_radar_tten_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/control_wam_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/control_wam_debug Checking test 034 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 186.475952 - 0: The maximum resident set size (KB) = 196048 + 0: The total amount of wall time = 186.949514 + 0: The maximum resident set size (KB) = 192728 Test 034 control_wam_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/rap_control_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/rap_control_dyn32_phy32 Checking test 035 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1080,14 +1080,14 @@ Checking test 035 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1465.520096 - 0: The maximum resident set size (KB) = 684112 + 0: The total amount of wall time = 1422.769246 + 0: The maximum resident set size (KB) = 686944 Test 035 rap_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/hrrr_control_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/hrrr_control_dyn32_phy32 Checking test 036 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1134,14 +1134,14 @@ Checking test 036 hrrr_control_dyn32_phy32 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 = 719.530932 - 0: The maximum resident set size (KB) = 686104 + 0: The total amount of wall time = 730.926566 + 0: The maximum resident set size (KB) = 683672 Test 036 hrrr_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/rap_2threads_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/rap_2threads_dyn32_phy32 Checking test 037 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1188,14 +1188,14 @@ Checking test 037 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1373.110792 - 0: The maximum resident set size (KB) = 730104 + 0: The total amount of wall time = 1346.377640 + 0: The maximum resident set size (KB) = 732624 Test 037 rap_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/hrrr_control_2threads_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/hrrr_control_2threads_dyn32_phy32 Checking test 038 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1242,14 +1242,14 @@ Checking test 038 hrrr_control_2threads_dyn32_phy32 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 = 690.472827 - 0: The maximum resident set size (KB) = 727244 + 0: The total amount of wall time = 675.102974 + 0: The maximum resident set size (KB) = 728768 Test 038 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/hrrr_control_decomp_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/hrrr_control_decomp_dyn32_phy32 Checking test 039 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1296,14 +1296,14 @@ Checking test 039 hrrr_control_decomp_dyn32_phy32 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 = 705.043073 - 0: The maximum resident set size (KB) = 689340 + 0: The total amount of wall time = 713.209472 + 0: The maximum resident set size (KB) = 685196 Test 039 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/rap_restart_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/rap_restart_dyn32_phy32 Checking test 040 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1342,14 +1342,14 @@ Checking test 040 rap_restart_dyn32_phy32 results .... Comparing 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.576663 - 0: The maximum resident set size (KB) = 511752 + 0: The total amount of wall time = 1057.431272 + 0: The maximum resident set size (KB) = 511532 Test 040 rap_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/hrrr_control_restart_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/hrrr_control_restart_dyn32_phy32 Checking test 041 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1388,14 +1388,14 @@ Checking test 041 hrrr_control_restart_dyn32_phy32 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 = 367.644482 - 0: The maximum resident set size (KB) = 512300 + 0: The total amount of wall time = 369.382828 + 0: The maximum resident set size (KB) = 508332 Test 041 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/rap_control_dyn64_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/rap_control_dyn64_phy32 Checking test 042 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1442,56 +1442,56 @@ Checking test 042 rap_control_dyn64_phy32 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 = 1064.117859 - 0: The maximum resident set size (KB) = 711264 + 0: The total amount of wall time = 1077.388122 + 0: The maximum resident set size (KB) = 708820 Test 042 rap_control_dyn64_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/rap_control_debug_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/rap_control_debug_dyn32_phy32 Checking test 043 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 177.298675 - 0: The maximum resident set size (KB) = 708340 + 0: The total amount of wall time = 173.737022 + 0: The maximum resident set size (KB) = 705632 Test 043 rap_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/hrrr_control_debug_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/hrrr_control_debug_dyn32_phy32 Checking test 044 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 174.080264 - 0: The maximum resident set size (KB) = 708088 + 0: The total amount of wall time = 170.438927 + 0: The maximum resident set size (KB) = 700084 Test 044 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/rap_control_dyn64_phy32_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/rap_control_debug_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/rap_control_dyn64_phy32_debug Checking test 045 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 206.558611 - 0: The maximum resident set size (KB) = 725036 + 0: The total amount of wall time = 204.851615 + 0: The maximum resident set size (KB) = 719860 Test 045 rap_control_dyn64_phy32_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/cpld_control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/cpld_control_p8 Checking test 046 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1556,14 +1556,14 @@ Checking test 046 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1749.757108 - 0: The maximum resident set size (KB) = 1427852 + 0: The total amount of wall time = 1695.063376 + 0: The maximum resident set size (KB) = 1429464 -Test 046 cpld_control_p8 PASS +Test 046 cpld_control_p8 PASS Tries: 2 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/cpld_control_nowave_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/cpld_control_c96_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/cpld_control_nowave_noaero_p8 Checking test 047 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1625,14 +1625,14 @@ Checking test 047 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 1256.848384 - 0: The maximum resident set size (KB) = 1333488 + 0: The total amount of wall time = 1208.209463 + 0: The maximum resident set size (KB) = 1332764 Test 047 cpld_control_nowave_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/cpld_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/cpld_debug_p8 Checking test 048 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1685,25 +1685,25 @@ Checking test 048 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 921.718033 - 0: The maximum resident set size (KB) = 1447072 + 0: The total amount of wall time = 1564.397770 + 0: The maximum resident set size (KB) = 1445540 Test 048 cpld_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31071/datm_cdeps_control_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/datm_cdeps_control_cfsr Checking test 049 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 174.148197 - 0: The maximum resident set size (KB) = 662900 + 0: The total amount of wall time = 172.980317 + 0: The maximum resident set size (KB) = 665368 Test 049 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Tue Mar 14 21:28:09 UTC 2023 -Elapsed time: 00h:54m:39s. Have a nice day! +Tue Mar 21 01:01:22 UTC 2023 +Elapsed time: 01h:13m:37s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 6c469bca8af..8d3d740f4b6 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,42 +1,42 @@ -Tue Mar 14 20:18:13 UTC 2023 +Mon Mar 20 23:32:42 UTC 2023 Start Regression test -Compile 001 elapsed time 609 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 600 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 559 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 226 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 203 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 516 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 511 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 681 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 480 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 597 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 592 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 560 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 206 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 200 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 509 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 498 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 692 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 484 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile 010 elapsed time 482 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 458 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 426 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 572 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 208 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 178 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 442 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 439 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 157 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 156 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 521 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 021 elapsed time 187 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 618 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 557 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 024 elapsed time 179 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 115 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 183 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 55 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 470 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 536 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 445 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 455 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 169 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 528 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_mixedmode -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/cpld_control_p8_mixedmode +Compile 011 elapsed time 453 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 433 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 578 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 205 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 176 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 443 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 443 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 173 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 161 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 545 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 021 elapsed time 190 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 617 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 589 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 024 elapsed time 186 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 118 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 179 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 53 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 481 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 548 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 457 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 452 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 180 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 554 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8_mixedmode +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -101,14 +101,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 304.001357 - 0: The maximum resident set size (KB) = 3138772 + 0: The total amount of wall time = 306.222025 + 0: The maximum resident set size (KB) = 3136904 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_gfsv17 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/cpld_control_gfsv17 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_gfsv17 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -172,14 +172,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 223.000226 - 0: The maximum resident set size (KB) = 1736640 + 0: The total amount of wall time = 222.221558 + 0: The maximum resident set size (KB) = 1737584 Test 002 cpld_control_gfsv17 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/cpld_control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -244,14 +244,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 340.840770 - 0: The maximum resident set size (KB) = 3176120 + 0: The total amount of wall time = 336.976641 + 0: The maximum resident set size (KB) = 3176404 Test 003 cpld_control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/cpld_restart_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -304,14 +304,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 193.462503 - 0: The maximum resident set size (KB) = 3052136 + 0: The total amount of wall time = 193.656109 + 0: The maximum resident set size (KB) = 3054608 Test 004 cpld_restart_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/cpld_2threads_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -364,14 +364,14 @@ Checking test 005 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 355.303402 - 0: The maximum resident set size (KB) = 3512900 + 0: The total amount of wall time = 349.227093 + 0: The maximum resident set size (KB) = 3515228 Test 005 cpld_2threads_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/cpld_decomp_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/cpld_decomp_p8 Checking test 006 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -424,14 +424,14 @@ Checking test 006 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 340.897678 - 0: The maximum resident set size (KB) = 3171676 + 0: The total amount of wall time = 336.340270 + 0: The maximum resident set size (KB) = 3168248 Test 006 cpld_decomp_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/cpld_mpi_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/cpld_mpi_p8 Checking test 007 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -484,14 +484,14 @@ Checking test 007 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 279.510807 - 0: The maximum resident set size (KB) = 3017784 + 0: The total amount of wall time = 276.897292 + 0: The maximum resident set size (KB) = 3024720 Test 007 cpld_mpi_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_ciceC_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/cpld_control_ciceC_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_ciceC_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/cpld_control_ciceC_p8 Checking test 008 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -556,14 +556,14 @@ Checking test 008 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 337.183129 - 0: The maximum resident set size (KB) = 3178224 + 0: The total amount of wall time = 336.889369 + 0: The maximum resident set size (KB) = 3179616 Test 008 cpld_control_ciceC_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/cpld_control_c192_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/cpld_control_c192_p8 Checking test 009 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -616,14 +616,14 @@ Checking test 009 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 579.481769 - 0: The maximum resident set size (KB) = 3255572 + 0: The total amount of wall time = 581.651403 + 0: The maximum resident set size (KB) = 3251972 Test 009 cpld_control_c192_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/cpld_restart_c192_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/cpld_restart_c192_p8 Checking test 010 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -676,14 +676,14 @@ Checking test 010 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 403.690271 - 0: The maximum resident set size (KB) = 3150172 + 0: The total amount of wall time = 405.059624 + 0: The maximum resident set size (KB) = 3152880 Test 010 cpld_restart_c192_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/cpld_bmark_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/cpld_bmark_p8 Checking test 011 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -731,14 +731,14 @@ Checking test 011 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 707.860354 - 0: The maximum resident set size (KB) = 4029260 + 0: The total amount of wall time = 701.097783 + 0: The maximum resident set size (KB) = 4028464 Test 011 cpld_bmark_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/cpld_restart_bmark_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/cpld_restart_bmark_p8 Checking test 012 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -786,14 +786,14 @@ Checking test 012 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 441.094338 - 0: The maximum resident set size (KB) = 3964120 + 0: The total amount of wall time = 439.805363 + 0: The maximum resident set size (KB) = 3970836 Test 012 cpld_restart_bmark_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/cpld_control_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/cpld_control_noaero_p8 Checking test 013 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -857,14 +857,14 @@ Checking test 013 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 261.155135 - 0: The maximum resident set size (KB) = 1727480 + 0: The total amount of wall time = 260.181064 + 0: The maximum resident set size (KB) = 1724048 Test 013 cpld_control_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/cpld_control_nowave_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_c96_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/cpld_control_nowave_noaero_p8 Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -926,14 +926,14 @@ Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 257.158917 - 0: The maximum resident set size (KB) = 1766252 + 0: The total amount of wall time = 256.283301 + 0: The maximum resident set size (KB) = 1762872 Test 014 cpld_control_nowave_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/cpld_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/cpld_debug_p8 Checking test 015 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -986,14 +986,14 @@ Checking test 015 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 648.811540 - 0: The maximum resident set size (KB) = 3245412 + 0: The total amount of wall time = 650.158444 + 0: The maximum resident set size (KB) = 3245444 Test 015 cpld_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_debug_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/cpld_debug_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_debug_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/cpld_debug_noaero_p8 Checking test 016 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1045,14 +1045,14 @@ Checking test 016 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 397.736788 - 0: The maximum resident set size (KB) = 1736880 + 0: The total amount of wall time = 402.210444 + 0: The maximum resident set size (KB) = 1735216 Test 016 cpld_debug_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8_agrid -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/cpld_control_noaero_p8_agrid +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_noaero_p8_agrid +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/cpld_control_noaero_p8_agrid Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1114,14 +1114,14 @@ Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 265.161111 - 0: The maximum resident set size (KB) = 1760940 + 0: The total amount of wall time = 268.574438 + 0: The maximum resident set size (KB) = 1767384 Test 017 cpld_control_noaero_p8_agrid PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/cpld_control_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/cpld_control_c48 Checking test 018 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1171,14 +1171,14 @@ Checking test 018 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 583.481121 - 0: The maximum resident set size (KB) = 2809040 + 0: The total amount of wall time = 580.199312 + 0: The maximum resident set size (KB) = 2803364 Test 018 cpld_control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/cpld_warmstart_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_warmstart_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/cpld_warmstart_c48 Checking test 019 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1228,14 +1228,14 @@ Checking test 019 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 152.898864 - 0: The maximum resident set size (KB) = 2797908 + 0: The total amount of wall time = 152.754671 + 0: The maximum resident set size (KB) = 2798812 Test 019 cpld_warmstart_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/cpld_restart_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_warmstart_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/cpld_restart_c48 Checking test 020 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1285,14 +1285,14 @@ Checking test 020 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 80.926920 - 0: The maximum resident set size (KB) = 2246308 + 0: The total amount of wall time = 80.716165 + 0: The maximum resident set size (KB) = 2245620 Test 020 cpld_restart_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/cpld_control_p8_faster +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/cpld_control_p8_faster Checking test 021 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1357,14 +1357,14 @@ Checking test 021 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 323.314419 - 0: The maximum resident set size (KB) = 3182764 + 0: The total amount of wall time = 314.641890 + 0: The maximum resident set size (KB) = 3180904 Test 021 cpld_control_p8_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/control_CubedSphereGrid +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_CubedSphereGrid +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/control_CubedSphereGrid Checking test 022 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1391,28 +1391,28 @@ Checking test 022 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 129.418351 - 0: The maximum resident set size (KB) = 627536 + 0: The total amount of wall time = 130.456554 + 0: The maximum resident set size (KB) = 620280 Test 022 control_CubedSphereGrid PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/control_CubedSphereGrid_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_CubedSphereGrid_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/control_CubedSphereGrid_parallel Checking test 023 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 127.637593 - 0: The maximum resident set size (KB) = 625152 + 0: The total amount of wall time = 127.227113 + 0: The maximum resident set size (KB) = 625860 Test 023 control_CubedSphereGrid_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_latlon -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/control_latlon +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_latlon +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/control_latlon Checking test 024 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1423,14 +1423,14 @@ Checking test 024 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.404330 - 0: The maximum resident set size (KB) = 627440 + 0: The total amount of wall time = 133.098829 + 0: The maximum resident set size (KB) = 628584 Test 024 control_latlon PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/control_wrtGauss_netcdf_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_wrtGauss_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/control_wrtGauss_netcdf_parallel Checking test 025 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1441,14 +1441,14 @@ Checking test 025 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.370683 - 0: The maximum resident set size (KB) = 626200 + 0: The total amount of wall time = 134.894053 + 0: The maximum resident set size (KB) = 622644 Test 025 control_wrtGauss_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/control_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/control_c48 Checking test 026 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1487,14 +1487,14 @@ Checking test 026 control_c48 results .... Comparing 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.515464 -0: The maximum resident set size (KB) = 807812 +0: The total amount of wall time = 370.192377 +0: The maximum resident set size (KB) = 818912 Test 026 control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/control_c192 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/control_c192 Checking test 027 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1505,14 +1505,14 @@ Checking test 027 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 528.706838 - 0: The maximum resident set size (KB) = 758168 + 0: The total amount of wall time = 522.378024 + 0: The maximum resident set size (KB) = 761520 Test 027 control_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/control_c384 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_c384 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/control_c384 Checking test 028 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1523,14 +1523,14 @@ Checking test 028 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 530.508903 - 0: The maximum resident set size (KB) = 1254264 + 0: The total amount of wall time = 538.344071 + 0: The maximum resident set size (KB) = 1269920 Test 028 control_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384gdas -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/control_c384gdas +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_c384gdas +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/control_c384gdas Checking test 029 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1573,14 +1573,14 @@ Checking test 029 control_c384gdas 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 = 465.677757 - 0: The maximum resident set size (KB) = 1367500 + 0: The total amount of wall time = 459.278607 + 0: The maximum resident set size (KB) = 1378188 Test 029 control_c384gdas PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/control_stochy +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/control_stochy Checking test 030 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1591,28 +1591,28 @@ Checking test 030 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 86.572748 - 0: The maximum resident set size (KB) = 631920 + 0: The total amount of wall time = 85.850039 + 0: The maximum resident set size (KB) = 633380 Test 030 control_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/control_stochy_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/control_stochy_restart Checking test 031 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 46.567475 - 0: The maximum resident set size (KB) = 485092 + 0: The total amount of wall time = 47.493568 + 0: The maximum resident set size (KB) = 481632 Test 031 control_stochy_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/control_lndp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_lndp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/control_lndp Checking test 032 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1623,14 +1623,14 @@ Checking test 032 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 81.645467 - 0: The maximum resident set size (KB) = 628752 + 0: The total amount of wall time = 80.638493 + 0: The maximum resident set size (KB) = 629224 Test 032 control_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr4 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/control_iovr4 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_iovr4 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/control_iovr4 Checking test 033 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1645,14 +1645,14 @@ Checking test 033 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.409163 - 0: The maximum resident set size (KB) = 630896 + 0: The total amount of wall time = 133.605675 + 0: The maximum resident set size (KB) = 627052 Test 033 control_iovr4 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr5 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/control_iovr5 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_iovr5 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/control_iovr5 Checking test 034 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1667,14 +1667,14 @@ Checking test 034 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.126930 - 0: The maximum resident set size (KB) = 631944 + 0: The total amount of wall time = 134.326456 + 0: The maximum resident set size (KB) = 629728 Test 034 control_iovr5 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/control_p8 Checking test 035 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1721,14 +1721,14 @@ Checking test 035 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 165.802729 - 0: The maximum resident set size (KB) = 1604516 + 0: The total amount of wall time = 166.652921 + 0: The maximum resident set size (KB) = 1605756 Test 035 control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/control_p8_lndp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8_lndp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/control_p8_lndp Checking test 036 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1747,14 +1747,14 @@ Checking test 036 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 312.884003 - 0: The maximum resident set size (KB) = 1599772 + 0: The total amount of wall time = 310.733739 + 0: The maximum resident set size (KB) = 1599160 Test 036 control_p8_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/control_restart_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/control_restart_p8 Checking test 037 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1793,14 +1793,14 @@ Checking test 037 control_restart_p8 results .... Comparing 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.027708 - 0: The maximum resident set size (KB) = 872428 + 0: The total amount of wall time = 87.111729 + 0: The maximum resident set size (KB) = 881256 Test 037 control_restart_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/control_decomp_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/control_decomp_p8 Checking test 038 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1843,14 +1843,14 @@ Checking test 038 control_decomp_p8 results .... Comparing 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.812875 - 0: The maximum resident set size (KB) = 1590384 + 0: The total amount of wall time = 173.048779 + 0: The maximum resident set size (KB) = 1585132 Test 038 control_decomp_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/control_2threads_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/control_2threads_p8 Checking test 039 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1893,14 +1893,14 @@ Checking test 039 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 162.841117 - 0: The maximum resident set size (KB) = 1676928 + 0: The total amount of wall time = 163.315755 + 0: The maximum resident set size (KB) = 1682240 Test 039 control_2threads_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/control_p8_rrtmgp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/control_p8_rrtmgp Checking test 040 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1947,14 +1947,14 @@ Checking test 040 control_p8_rrtmgp results .... Comparing 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.170563 - 0: The maximum resident set size (KB) = 1670436 + 0: The total amount of wall time = 222.825539 + 0: The maximum resident set size (KB) = 1672492 Test 040 control_p8_rrtmgp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/merra2_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/merra2_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/merra2_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/merra2_thompson Checking test 041 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2001,14 +2001,14 @@ Checking test 041 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 188.423250 - 0: The maximum resident set size (KB) = 1608972 + 0: The total amount of wall time = 189.004902 + 0: The maximum resident set size (KB) = 1605764 Test 041 merra2_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/regional_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/regional_control Checking test 042 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2019,28 +2019,28 @@ Checking test 042 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 296.993364 - 0: The maximum resident set size (KB) = 866036 + 0: The total amount of wall time = 298.913527 + 0: The maximum resident set size (KB) = 869040 Test 042 regional_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/regional_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/regional_restart Checking test 043 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 151.575950 - 0: The maximum resident set size (KB) = 860064 + 0: The total amount of wall time = 151.753292 + 0: The maximum resident set size (KB) = 859632 Test 043 regional_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/regional_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/regional_decomp Checking test 044 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2051,14 +2051,14 @@ Checking test 044 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 313.822195 - 0: The maximum resident set size (KB) = 859420 + 0: The total amount of wall time = 315.384788 + 0: The maximum resident set size (KB) = 859252 Test 044 regional_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/regional_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/regional_2threads Checking test 045 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2069,14 +2069,14 @@ Checking test 045 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 183.720070 - 0: The maximum resident set size (KB) = 841748 + 0: The total amount of wall time = 183.209900 + 0: The maximum resident set size (KB) = 843324 Test 045 regional_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_noquilt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/regional_noquilt +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_noquilt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/regional_noquilt Checking test 046 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2084,28 +2084,28 @@ Checking test 046 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 318.546456 - 0: The maximum resident set size (KB) = 856524 + 0: The total amount of wall time = 321.478147 + 0: The maximum resident set size (KB) = 857716 Test 046 regional_noquilt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/regional_netcdf_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/regional_netcdf_parallel Checking test 047 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 292.230467 - 0: The maximum resident set size (KB) = 859696 + 0: The total amount of wall time = 295.359992 + 0: The maximum resident set size (KB) = 863864 Test 047 regional_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/regional_2dwrtdecomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/regional_2dwrtdecomp Checking test 048 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2116,14 +2116,14 @@ Checking test 048 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 297.249194 - 0: The maximum resident set size (KB) = 868496 + 0: The total amount of wall time = 297.681435 + 0: The maximum resident set size (KB) = 866420 Test 048 regional_2dwrtdecomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/fv3_regional_wofs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/regional_wofs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/fv3_regional_wofs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/regional_wofs Checking test 049 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2134,14 +2134,14 @@ Checking test 049 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 375.493555 - 0: The maximum resident set size (KB) = 627064 + 0: The total amount of wall time = 375.149324 + 0: The maximum resident set size (KB) = 626352 Test 049 regional_wofs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/rap_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/rap_control Checking test 050 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2188,14 +2188,14 @@ Checking test 050 rap_control results .... Comparing 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.946670 - 0: The maximum resident set size (KB) = 1060416 + 0: The total amount of wall time = 458.026082 + 0: The maximum resident set size (KB) = 1064324 Test 050 rap_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/regional_spp_sppt_shum_skeb +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_spp_sppt_shum_skeb +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/regional_spp_sppt_shum_skeb Checking test 051 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2206,14 +2206,14 @@ Checking test 051 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 282.232424 - 0: The maximum resident set size (KB) = 1181080 + 0: The total amount of wall time = 283.996619 + 0: The maximum resident set size (KB) = 1176780 Test 051 regional_spp_sppt_shum_skeb PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/rap_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/rap_decomp Checking test 052 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2260,14 +2260,14 @@ Checking test 052 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 480.363155 - 0: The maximum resident set size (KB) = 1004604 + 0: The total amount of wall time = 483.841209 + 0: The maximum resident set size (KB) = 1002536 Test 052 rap_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/rap_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/rap_2threads Checking test 053 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2314,14 +2314,14 @@ Checking test 053 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 441.396710 - 0: The maximum resident set size (KB) = 1133556 + 0: The total amount of wall time = 441.770811 + 0: The maximum resident set size (KB) = 1140124 Test 053 rap_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/rap_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/rap_restart Checking test 054 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2360,14 +2360,14 @@ Checking test 054 rap_restart results .... Comparing 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.198989 - 0: The maximum resident set size (KB) = 970552 + 0: The total amount of wall time = 232.726714 + 0: The maximum resident set size (KB) = 964160 Test 054 rap_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/rap_sfcdiff +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/rap_sfcdiff Checking test 055 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2414,14 +2414,14 @@ Checking test 055 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 453.926537 - 0: The maximum resident set size (KB) = 1069196 + 0: The total amount of wall time = 451.290640 + 0: The maximum resident set size (KB) = 1066768 Test 055 rap_sfcdiff PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/rap_sfcdiff_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/rap_sfcdiff_decomp Checking test 056 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2468,14 +2468,14 @@ Checking test 056 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 478.236418 - 0: The maximum resident set size (KB) = 1005336 + 0: The total amount of wall time = 477.283465 + 0: The maximum resident set size (KB) = 1004380 Test 056 rap_sfcdiff_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/rap_sfcdiff_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/rap_sfcdiff_restart Checking test 057 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2514,14 +2514,14 @@ Checking test 057 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 343.085484 - 0: The maximum resident set size (KB) = 986912 + 0: The total amount of wall time = 340.266848 + 0: The maximum resident set size (KB) = 987788 Test 057 rap_sfcdiff_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/hrrr_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/hrrr_control Checking test 058 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2568,14 +2568,14 @@ Checking test 058 hrrr_control results .... Comparing 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.895193 - 0: The maximum resident set size (KB) = 1060980 + 0: The total amount of wall time = 435.676678 + 0: The maximum resident set size (KB) = 1063396 Test 058 hrrr_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/hrrr_control_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/hrrr_control_decomp Checking test 059 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2622,14 +2622,14 @@ Checking test 059 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 456.052368 - 0: The maximum resident set size (KB) = 1001592 + 0: The total amount of wall time = 455.501739 + 0: The maximum resident set size (KB) = 1001912 Test 059 hrrr_control_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/hrrr_control_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/hrrr_control_2threads Checking test 060 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2676,14 +2676,14 @@ Checking test 060 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 415.723288 - 0: The maximum resident set size (KB) = 1137200 + 0: The total amount of wall time = 413.933822 + 0: The maximum resident set size (KB) = 1142516 Test 060 hrrr_control_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/hrrr_control_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/hrrr_control_restart Checking test 061 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2722,14 +2722,14 @@ Checking test 061 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 329.373706 - 0: The maximum resident set size (KB) = 992584 + 0: The total amount of wall time = 327.701255 + 0: The maximum resident set size (KB) = 993548 Test 061 hrrr_control_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/rrfs_v1beta +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/rrfs_v1beta Checking test 062 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2776,14 +2776,14 @@ Checking test 062 rrfs_v1beta results .... Comparing 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.100424 - 0: The maximum resident set size (KB) = 1057936 + 0: The total amount of wall time = 444.970404 + 0: The maximum resident set size (KB) = 1063484 Test 062 rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/rrfs_v1nssl +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_v1nssl +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/rrfs_v1nssl Checking test 063 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2798,14 +2798,14 @@ Checking test 063 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 524.495487 - 0: The maximum resident set size (KB) = 693420 + 0: The total amount of wall time = 523.198182 + 0: The maximum resident set size (KB) = 689424 Test 063 rrfs_v1nssl PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/rrfs_v1nssl_nohailnoccn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/rrfs_v1nssl_nohailnoccn Checking test 064 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2820,14 +2820,14 @@ Checking test 064 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 512.736120 - 0: The maximum resident set size (KB) = 759456 + 0: The total amount of wall time = 510.973457 + 0: The maximum resident set size (KB) = 758504 Test 064 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/rrfs_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/rrfs_conus13km_hrrr_warm Checking test 065 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2836,14 +2836,14 @@ Checking test 065 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 122.709839 - 0: The maximum resident set size (KB) = 933436 + 0: The total amount of wall time = 123.524944 + 0: The maximum resident set size (KB) = 926664 Test 065 rrfs_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/rrfs_smoke_conus13km_hrrr_warm Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2852,14 +2852,14 @@ Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 139.528827 - 0: The maximum resident set size (KB) = 958388 + 0: The total amount of wall time = 138.273657 + 0: The maximum resident set size (KB) = 955324 Test 066 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/rrfs_conus13km_radar_tten_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/rrfs_conus13km_radar_tten_warm Checking test 067 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2868,14 +2868,14 @@ Checking test 067 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 124.052408 - 0: The maximum resident set size (KB) = 935304 + 0: The total amount of wall time = 123.777012 + 0: The maximum resident set size (KB) = 932436 Test 067 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/rrfs_conus13km_hrrr_warm_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/rrfs_conus13km_hrrr_warm_2threads Checking test 068 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2884,14 +2884,14 @@ Checking test 068 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 77.941019 - 0: The maximum resident set size (KB) = 843180 + 0: The total amount of wall time = 78.029113 + 0: The maximum resident set size (KB) = 880288 Test 068 rrfs_conus13km_hrrr_warm_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/rrfs_conus13km_radar_tten_warm_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/rrfs_conus13km_radar_tten_warm_2threads Checking test 069 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2900,14 +2900,14 @@ Checking test 069 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 78.339092 - 0: The maximum resident set size (KB) = 848256 + 0: The total amount of wall time = 77.763719 + 0: The maximum resident set size (KB) = 882900 Test 069 rrfs_conus13km_radar_tten_warm_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/control_csawmg +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_csawmg +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/control_csawmg Checking test 070 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2918,14 +2918,14 @@ Checking test 070 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 342.447105 - 0: The maximum resident set size (KB) = 725144 + 0: The total amount of wall time = 340.216227 + 0: The maximum resident set size (KB) = 728132 Test 070 control_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/control_csawmgt +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_csawmgt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/control_csawmgt Checking test 071 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2936,14 +2936,14 @@ Checking test 071 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 340.902454 - 0: The maximum resident set size (KB) = 728252 + 0: The total amount of wall time = 335.260785 + 0: The maximum resident set size (KB) = 724436 Test 071 control_csawmgt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/control_ras +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/control_ras Checking test 072 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2954,26 +2954,26 @@ Checking test 072 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 179.915059 - 0: The maximum resident set size (KB) = 718600 + 0: The total amount of wall time = 179.502872 + 0: The maximum resident set size (KB) = 715200 Test 072 control_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/control_wam +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_wam +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/control_wam Checking test 073 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 112.817498 - 0: The maximum resident set size (KB) = 646680 + 0: The total amount of wall time = 112.222903 + 0: The maximum resident set size (KB) = 636492 Test 073 control_wam PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/control_p8_faster +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/control_p8_faster Checking test 074 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3020,14 +3020,14 @@ Checking test 074 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 152.126469 - 0: The maximum resident set size (KB) = 1600388 + 0: The total amount of wall time = 150.711024 + 0: The maximum resident set size (KB) = 1612012 Test 074 control_p8_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/regional_control_faster +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_control_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/regional_control_faster Checking test 075 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3038,42 +3038,42 @@ Checking test 075 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 272.299957 - 0: The maximum resident set size (KB) = 872260 + 0: The total amount of wall time = 273.545754 + 0: The maximum resident set size (KB) = 871728 Test 075 regional_control_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/rrfs_conus13km_hrrr_warm_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/rrfs_conus13km_hrrr_warm_debug Checking test 076 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 723.866514 - 0: The maximum resident set size (KB) = 960396 + 0: The total amount of wall time = 725.534974 + 0: The maximum resident set size (KB) = 959504 Test 076 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/rrfs_conus13km_radar_tten_warm_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_conus13km_radar_tten_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/rrfs_conus13km_radar_tten_warm_debug Checking test 077 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 718.584891 - 0: The maximum resident set size (KB) = 966532 + 0: The total amount of wall time = 722.118281 + 0: The maximum resident set size (KB) = 970448 Test 077 rrfs_conus13km_radar_tten_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/control_CubedSphereGrid_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_CubedSphereGrid_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/control_CubedSphereGrid_debug Checking test 078 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3100,334 +3100,334 @@ Checking test 078 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 160.919267 - 0: The maximum resident set size (KB) = 797380 + 0: The total amount of wall time = 160.685852 + 0: The maximum resident set size (KB) = 793496 Test 078 control_CubedSphereGrid_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/control_wrtGauss_netcdf_parallel_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/control_wrtGauss_netcdf_parallel_debug Checking test 079 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 149.768882 - 0: The maximum resident set size (KB) = 796244 + 0: The total amount of wall time = 148.306791 + 0: The maximum resident set size (KB) = 794580 Test 079 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/control_stochy_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/control_stochy_debug Checking test 080 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 171.507608 - 0: The maximum resident set size (KB) = 798868 + 0: The total amount of wall time = 172.403391 + 0: The maximum resident set size (KB) = 803216 Test 080 control_stochy_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/control_lndp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/control_lndp_debug Checking test 081 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 156.023176 - 0: The maximum resident set size (KB) = 799296 + 0: The total amount of wall time = 152.270614 + 0: The maximum resident set size (KB) = 794556 Test 081 control_lndp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/control_csawmg_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_csawmg_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/control_csawmg_debug Checking test 082 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 232.161469 - 0: The maximum resident set size (KB) = 847092 + 0: The total amount of wall time = 231.269033 + 0: The maximum resident set size (KB) = 842508 Test 082 control_csawmg_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/control_csawmgt_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_csawmgt_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/control_csawmgt_debug Checking test 083 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 227.062910 - 0: The maximum resident set size (KB) = 844376 + 0: The total amount of wall time = 232.210885 + 0: The maximum resident set size (KB) = 844512 Test 083 control_csawmgt_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/control_ras_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/control_ras_debug Checking test 084 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 153.561664 - 0: The maximum resident set size (KB) = 806276 + 0: The total amount of wall time = 153.421062 + 0: The maximum resident set size (KB) = 805476 Test 084 control_ras_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/control_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/control_diag_debug Checking test 085 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 157.556193 - 0: The maximum resident set size (KB) = 856148 + 0: The total amount of wall time = 160.437818 + 0: The maximum resident set size (KB) = 851100 Test 085 control_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/control_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/control_debug_p8 Checking test 086 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 169.752491 - 0: The maximum resident set size (KB) = 1631288 + 0: The total amount of wall time = 170.128225 + 0: The maximum resident set size (KB) = 1624124 Test 086 control_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/regional_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/regional_debug Checking test 087 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 982.945094 - 0: The maximum resident set size (KB) = 886084 + 0: The total amount of wall time = 983.446813 + 0: The maximum resident set size (KB) = 884856 Test 087 regional_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/rap_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/rap_control_debug Checking test 088 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.460171 - 0: The maximum resident set size (KB) = 1176984 + 0: The total amount of wall time = 275.581574 + 0: The maximum resident set size (KB) = 1179972 Test 088 rap_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/hrrr_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/hrrr_control_debug Checking test 089 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.178532 - 0: The maximum resident set size (KB) = 1175528 + 0: The total amount of wall time = 274.362205 + 0: The maximum resident set size (KB) = 1176816 Test 089 hrrr_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/rap_unified_drag_suite_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/rap_unified_drag_suite_debug Checking test 090 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.342839 - 0: The maximum resident set size (KB) = 1178112 + 0: The total amount of wall time = 272.254566 + 0: The maximum resident set size (KB) = 1179688 Test 090 rap_unified_drag_suite_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/rap_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/rap_diag_debug Checking test 091 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 292.711119 - 0: The maximum resident set size (KB) = 1257556 + 0: The total amount of wall time = 294.559113 + 0: The maximum resident set size (KB) = 1256472 Test 091 rap_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/rap_cires_ugwp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/rap_cires_ugwp_debug Checking test 092 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.478719 - 0: The maximum resident set size (KB) = 1177568 + 0: The total amount of wall time = 278.646060 + 0: The maximum resident set size (KB) = 1182104 Test 092 rap_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/rap_unified_ugwp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/rap_unified_ugwp_debug Checking test 093 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.459335 - 0: The maximum resident set size (KB) = 1178712 + 0: The total amount of wall time = 276.847762 + 0: The maximum resident set size (KB) = 1178592 Test 093 rap_unified_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/rap_lndp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/rap_lndp_debug Checking test 094 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.744220 - 0: The maximum resident set size (KB) = 1175096 + 0: The total amount of wall time = 277.538097 + 0: The maximum resident set size (KB) = 1176300 Test 094 rap_lndp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_flake_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/rap_flake_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_flake_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/rap_flake_debug Checking test 095 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 272.304635 - 0: The maximum resident set size (KB) = 1177916 + 0: The total amount of wall time = 276.486450 + 0: The maximum resident set size (KB) = 1172412 Test 095 rap_flake_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/rap_progcld_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/rap_progcld_thompson_debug Checking test 096 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.776028 - 0: The maximum resident set size (KB) = 1175876 + 0: The total amount of wall time = 274.760788 + 0: The maximum resident set size (KB) = 1178616 Test 096 rap_progcld_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/rap_noah_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_noah_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/rap_noah_debug Checking test 097 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 270.583806 - 0: The maximum resident set size (KB) = 1170208 + 0: The total amount of wall time = 270.993722 + 0: The maximum resident set size (KB) = 1172212 Test 097 rap_noah_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/rap_sfcdiff_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_sfcdiff_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/rap_sfcdiff_debug Checking test 098 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.317524 - 0: The maximum resident set size (KB) = 1176828 + 0: The total amount of wall time = 274.691670 + 0: The maximum resident set size (KB) = 1180624 Test 098 rap_sfcdiff_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/rap_noah_sfcdiff_cires_ugwp_debug Checking test 099 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 451.089113 - 0: The maximum resident set size (KB) = 1173364 + 0: The total amount of wall time = 447.774468 + 0: The maximum resident set size (KB) = 1171460 Test 099 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/rrfs_v1beta_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/rrfs_v1beta_debug Checking test 100 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.492625 - 0: The maximum resident set size (KB) = 1171208 + 0: The total amount of wall time = 267.176063 + 0: The maximum resident set size (KB) = 1174576 Test 100 rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/control_wam_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/control_wam_debug Checking test 101 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 286.007208 - 0: The maximum resident set size (KB) = 520124 + 0: The total amount of wall time = 287.231836 + 0: The maximum resident set size (KB) = 521672 Test 101 control_wam_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 102 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3438,14 +3438,14 @@ Checking test 102 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 261.568257 - 0: The maximum resident set size (KB) = 1072068 + 0: The total amount of wall time = 259.723748 + 0: The maximum resident set size (KB) = 1069108 Test 102 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/rap_control_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/rap_control_dyn32_phy32 Checking test 103 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3492,14 +3492,14 @@ Checking test 103 rap_control_dyn32_phy32 results .... Comparing 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.830929 - 0: The maximum resident set size (KB) = 1003732 + 0: The total amount of wall time = 370.559021 + 0: The maximum resident set size (KB) = 1008704 Test 103 rap_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/hrrr_control_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/hrrr_control_dyn32_phy32 Checking test 104 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3546,14 +3546,14 @@ Checking test 104 hrrr_control_dyn32_phy32 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 = 192.765721 - 0: The maximum resident set size (KB) = 962596 + 0: The total amount of wall time = 193.106329 + 0: The maximum resident set size (KB) = 955060 Test 104 hrrr_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/rap_2threads_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/rap_2threads_dyn32_phy32 Checking test 105 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3600,14 +3600,14 @@ Checking test 105 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 358.829427 - 0: The maximum resident set size (KB) = 1024344 + 0: The total amount of wall time = 357.546678 + 0: The maximum resident set size (KB) = 1022356 Test 105 rap_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/hrrr_control_2threads_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/hrrr_control_2threads_dyn32_phy32 Checking test 106 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3654,14 +3654,14 @@ Checking test 106 hrrr_control_2threads_dyn32_phy32 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 = 190.926596 - 0: The maximum resident set size (KB) = 1006588 + 0: The total amount of wall time = 189.837923 + 0: The maximum resident set size (KB) = 1004984 Test 106 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/hrrr_control_decomp_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/hrrr_control_decomp_dyn32_phy32 Checking test 107 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3708,14 +3708,14 @@ Checking test 107 hrrr_control_decomp_dyn32_phy32 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 = 204.337130 - 0: The maximum resident set size (KB) = 896944 + 0: The total amount of wall time = 203.030203 + 0: The maximum resident set size (KB) = 897416 Test 107 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/rap_restart_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/rap_restart_dyn32_phy32 Checking test 108 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3754,14 +3754,14 @@ Checking test 108 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 279.954945 - 0: The maximum resident set size (KB) = 955032 + 0: The total amount of wall time = 281.293916 + 0: The maximum resident set size (KB) = 955444 Test 108 rap_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/hrrr_control_restart_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/hrrr_control_restart_dyn32_phy32 Checking test 109 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3800,14 +3800,14 @@ Checking test 109 hrrr_control_restart_dyn32_phy32 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 = 101.347360 - 0: The maximum resident set size (KB) = 869296 + 0: The total amount of wall time = 100.001241 + 0: The maximum resident set size (KB) = 856756 Test 109 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/rap_control_dyn64_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/rap_control_dyn64_phy32 Checking test 110 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3854,81 +3854,81 @@ Checking test 110 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 241.481881 - 0: The maximum resident set size (KB) = 963600 + 0: The total amount of wall time = 239.897631 + 0: The maximum resident set size (KB) = 967760 Test 110 rap_control_dyn64_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/rap_control_debug_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/rap_control_debug_dyn32_phy32 Checking test 111 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.612331 - 0: The maximum resident set size (KB) = 1059256 + 0: The total amount of wall time = 269.756862 + 0: The maximum resident set size (KB) = 1062088 Test 111 rap_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/hrrr_control_debug_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/hrrr_control_debug_dyn32_phy32 Checking test 112 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 268.434775 - 0: The maximum resident set size (KB) = 1051764 + 0: The total amount of wall time = 263.854217 + 0: The maximum resident set size (KB) = 1056236 Test 112 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/rap_control_dyn64_phy32_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_debug_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/rap_control_dyn64_phy32_debug Checking test 113 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.354864 - 0: The maximum resident set size (KB) = 1103544 + 0: The total amount of wall time = 285.509946 + 0: The maximum resident set size (KB) = 1099344 Test 113 rap_control_dyn64_phy32_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/hafs_regional_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/hafs_regional_atm Checking test 114 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 237.034206 - 0: The maximum resident set size (KB) = 1047164 + 0: The total amount of wall time = 239.183736 + 0: The maximum resident set size (KB) = 1046524 Test 114 hafs_regional_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/hafs_regional_atm_thompson_gfdlsf +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/hafs_regional_atm_thompson_gfdlsf Checking test 115 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 312.169155 - 0: The maximum resident set size (KB) = 1424336 + 0: The total amount of wall time = 304.209433 + 0: The maximum resident set size (KB) = 1418352 Test 115 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/hafs_regional_atm_ocn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/hafs_regional_atm_ocn Checking test 116 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3937,14 +3937,14 @@ Checking test 116 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 378.533198 - 0: The maximum resident set size (KB) = 1222064 + 0: The total amount of wall time = 377.477904 + 0: The maximum resident set size (KB) = 1214984 Test 116 hafs_regional_atm_ocn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/hafs_regional_atm_wav +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_atm_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/hafs_regional_atm_wav Checking test 117 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3953,14 +3953,14 @@ Checking test 117 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 740.207083 - 0: The maximum resident set size (KB) = 1246468 + 0: The total amount of wall time = 738.307000 + 0: The maximum resident set size (KB) = 1250340 Test 117 hafs_regional_atm_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/hafs_regional_atm_ocn_wav +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/hafs_regional_atm_ocn_wav Checking test 118 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3971,28 +3971,28 @@ Checking test 118 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 841.973174 - 0: The maximum resident set size (KB) = 1272096 + 0: The total amount of wall time = 840.400531 + 0: The maximum resident set size (KB) = 1270036 Test 118 hafs_regional_atm_ocn_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/hafs_regional_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/hafs_regional_1nest_atm Checking test 119 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 319.514093 - 0: The maximum resident set size (KB) = 506264 + 0: The total amount of wall time = 318.987023 + 0: The maximum resident set size (KB) = 509520 Test 119 hafs_regional_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/hafs_regional_telescopic_2nests_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/hafs_regional_telescopic_2nests_atm Checking test 120 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4001,28 +4001,28 @@ Checking test 120 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 366.678283 - 0: The maximum resident set size (KB) = 507572 + 0: The total amount of wall time = 363.451143 + 0: The maximum resident set size (KB) = 511972 Test 120 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/hafs_global_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_global_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/hafs_global_1nest_atm Checking test 121 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 146.281659 - 0: The maximum resident set size (KB) = 345556 + 0: The total amount of wall time = 147.505229 + 0: The maximum resident set size (KB) = 348736 Test 121 hafs_global_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_multiple_4nests_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/hafs_global_multiple_4nests_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_global_multiple_4nests_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/hafs_global_multiple_4nests_atm Checking test 122 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4040,14 +4040,14 @@ Checking test 122 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 416.808062 - 0: The maximum resident set size (KB) = 421648 + 0: The total amount of wall time = 415.302029 + 0: The maximum resident set size (KB) = 421880 Test 122 hafs_global_multiple_4nests_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/hafs_regional_specified_moving_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/hafs_regional_specified_moving_1nest_atm Checking test 123 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4056,28 +4056,28 @@ Checking test 123 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 202.416348 - 0: The maximum resident set size (KB) = 518624 + 0: The total amount of wall time = 203.053840 + 0: The maximum resident set size (KB) = 516704 Test 123 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/hafs_regional_storm_following_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/hafs_regional_storm_following_1nest_atm Checking test 124 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 191.144529 - 0: The maximum resident set size (KB) = 516664 + 0: The total amount of wall time = 190.337143 + 0: The maximum resident set size (KB) = 515856 Test 124 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/hafs_regional_storm_following_1nest_atm_ocn Checking test 125 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4086,42 +4086,42 @@ Checking test 125 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 221.480180 - 0: The maximum resident set size (KB) = 554400 + 0: The total amount of wall time = 219.948921 + 0: The maximum resident set size (KB) = 549108 Test 125 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/hafs_global_storm_following_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_global_storm_following_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/hafs_global_storm_following_1nest_atm Checking test 126 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 58.415530 - 0: The maximum resident set size (KB) = 365852 + 0: The total amount of wall time = 58.339314 + 0: The maximum resident set size (KB) = 370024 Test 126 hafs_global_storm_following_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 127 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 756.740184 - 0: The maximum resident set size (KB) = 580572 + 0: The total amount of wall time = 760.654007 + 0: The maximum resident set size (KB) = 579444 Test 127 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 128 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4132,14 +4132,14 @@ Checking test 128 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 516.106418 - 0: The maximum resident set size (KB) = 611104 + 0: The total amount of wall time = 515.063755 + 0: The maximum resident set size (KB) = 612700 Test 128 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_docn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/hafs_regional_docn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_docn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/hafs_regional_docn Checking test 129 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4147,14 +4147,14 @@ Checking test 129 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 356.615016 - 0: The maximum resident set size (KB) = 1227108 + 0: The total amount of wall time = 351.136766 + 0: The maximum resident set size (KB) = 1224732 Test 129 hafs_regional_docn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_docn_oisst -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/hafs_regional_docn_oisst +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_docn_oisst +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/hafs_regional_docn_oisst Checking test 130 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4162,131 +4162,131 @@ Checking test 130 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 356.157917 - 0: The maximum resident set size (KB) = 1209480 + 0: The total amount of wall time = 354.742069 + 0: The maximum resident set size (KB) = 1214232 Test 130 hafs_regional_docn_oisst PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_datm_cdeps -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/hafs_regional_datm_cdeps +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_datm_cdeps +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/hafs_regional_datm_cdeps Checking test 131 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 945.283088 - 0: The maximum resident set size (KB) = 1038456 + 0: The total amount of wall time = 952.084793 + 0: The maximum resident set size (KB) = 1037504 Test 131 hafs_regional_datm_cdeps PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/datm_cdeps_control_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/datm_cdeps_control_cfsr Checking test 132 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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.075720 - 0: The maximum resident set size (KB) = 1063844 + 0: The total amount of wall time = 155.097746 + 0: The maximum resident set size (KB) = 1070204 Test 132 datm_cdeps_control_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/datm_cdeps_restart_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/datm_cdeps_restart_cfsr Checking test 133 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 92.026370 - 0: The maximum resident set size (KB) = 1013648 + 0: The total amount of wall time = 91.923086 + 0: The maximum resident set size (KB) = 1016220 Test 133 datm_cdeps_restart_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/datm_cdeps_control_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/datm_cdeps_control_gefs Checking test 134 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.161645 - 0: The maximum resident set size (KB) = 962640 + 0: The total amount of wall time = 147.726822 + 0: The maximum resident set size (KB) = 971532 Test 134 datm_cdeps_control_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_iau_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/datm_cdeps_iau_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_iau_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/datm_cdeps_iau_gefs Checking test 135 datm_cdeps_iau_gefs 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.566866 - 0: The maximum resident set size (KB) = 961848 + 0: The total amount of wall time = 150.525647 + 0: The maximum resident set size (KB) = 967488 Test 135 datm_cdeps_iau_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_stochy_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/datm_cdeps_stochy_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_stochy_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/datm_cdeps_stochy_gefs Checking test 136 datm_cdeps_stochy_gefs 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.605150 - 0: The maximum resident set size (KB) = 966052 + 0: The total amount of wall time = 149.232743 + 0: The maximum resident set size (KB) = 962512 Test 136 datm_cdeps_stochy_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_ciceC_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/datm_cdeps_ciceC_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_ciceC_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/datm_cdeps_ciceC_cfsr Checking test 137 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 156.944397 - 0: The maximum resident set size (KB) = 1067992 + 0: The total amount of wall time = 154.109657 + 0: The maximum resident set size (KB) = 1063688 Test 137 datm_cdeps_ciceC_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/datm_cdeps_bulk_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/datm_cdeps_bulk_cfsr Checking test 138 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 157.361220 - 0: The maximum resident set size (KB) = 1075940 + 0: The total amount of wall time = 153.554768 + 0: The maximum resident set size (KB) = 1059704 Test 138 datm_cdeps_bulk_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/datm_cdeps_bulk_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/datm_cdeps_bulk_gefs Checking test 139 datm_cdeps_bulk_gefs 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.013728 - 0: The maximum resident set size (KB) = 959204 + 0: The total amount of wall time = 146.791809 + 0: The maximum resident set size (KB) = 957660 Test 139 datm_cdeps_bulk_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/datm_cdeps_mx025_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/datm_cdeps_mx025_cfsr Checking test 140 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4295,14 +4295,14 @@ Checking test 140 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 399.026962 - 0: The maximum resident set size (KB) = 874320 + 0: The total amount of wall time = 394.382797 + 0: The maximum resident set size (KB) = 878072 Test 140 datm_cdeps_mx025_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/datm_cdeps_mx025_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/datm_cdeps_mx025_gefs Checking test 141 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4311,77 +4311,77 @@ Checking test 141 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 394.745539 - 0: The maximum resident set size (KB) = 929904 + 0: The total amount of wall time = 387.812851 + 0: The maximum resident set size (KB) = 934828 Test 141 datm_cdeps_mx025_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/datm_cdeps_multiple_files_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/datm_cdeps_multiple_files_cfsr Checking test 142 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 155.026987 - 0: The maximum resident set size (KB) = 1080712 + 0: The total amount of wall time = 153.302450 + 0: The maximum resident set size (KB) = 1058344 Test 142 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/datm_cdeps_3072x1536_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/datm_cdeps_3072x1536_cfsr Checking test 143 datm_cdeps_3072x1536_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 217.282111 - 0: The maximum resident set size (KB) = 2303612 + 0: The total amount of wall time = 213.831663 + 0: The maximum resident set size (KB) = 2360136 Test 143 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_gfs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/datm_cdeps_gfs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_gfs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/datm_cdeps_gfs Checking test 144 datm_cdeps_gfs results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 217.915353 - 0: The maximum resident set size (KB) = 2357636 + 0: The total amount of wall time = 216.281671 + 0: The maximum resident set size (KB) = 2371524 Test 144 datm_cdeps_gfs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/datm_cdeps_debug_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/datm_cdeps_debug_cfsr Checking test 145 datm_cdeps_debug_cfsr 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 = 438.275976 - 0: The maximum resident set size (KB) = 989520 + 0: The total amount of wall time = 444.943238 + 0: The maximum resident set size (KB) = 1002172 Test 145 datm_cdeps_debug_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/datm_cdeps_control_cfsr_faster +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_control_cfsr_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/datm_cdeps_control_cfsr_faster Checking test 146 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 153.969542 - 0: The maximum resident set size (KB) = 1060196 + 0: The total amount of wall time = 151.906209 + 0: The maximum resident set size (KB) = 1055080 Test 146 datm_cdeps_control_cfsr_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/datm_cdeps_lnd_gswp3 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_lnd_gswp3 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/datm_cdeps_lnd_gswp3 Checking test 147 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4390,14 +4390,14 @@ Checking test 147 datm_cdeps_lnd_gswp3 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.308929 - 0: The maximum resident set size (KB) = 247536 + 0: The total amount of wall time = 6.167653 + 0: The maximum resident set size (KB) = 259560 Test 147 datm_cdeps_lnd_gswp3 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/datm_cdeps_lnd_gswp3_rst +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_lnd_gswp3 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/datm_cdeps_lnd_gswp3_rst Checking test 148 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4406,14 +4406,14 @@ Checking test 148 datm_cdeps_lnd_gswp3_rst 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 = 11.995558 - 0: The maximum resident set size (KB) = 259080 + 0: The total amount of wall time = 12.423336 + 0: The maximum resident set size (KB) = 256276 Test 148 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_atmlnd_sbs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/control_p8_atmlnd_sbs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8_atmlnd_sbs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/control_p8_atmlnd_sbs Checking test 149 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4498,14 +4498,14 @@ Checking test 149 control_p8_atmlnd_sbs 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 = 200.741353 - 0: The maximum resident set size (KB) = 1601920 + 0: The total amount of wall time = 202.643425 + 0: The maximum resident set size (KB) = 1610272 Test 149 control_p8_atmlnd_sbs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_atmwav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/control_atmwav +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_atmwav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/control_atmwav Checking test 150 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4549,14 +4549,14 @@ Checking test 150 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 86.183938 - 0: The maximum resident set size (KB) = 664576 + 0: The total amount of wall time = 87.117612 + 0: The maximum resident set size (KB) = 662896 Test 150 control_atmwav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/atmaero_control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/atmaero_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/atmaero_control_p8 Checking test 151 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4600,14 +4600,14 @@ Checking test 151 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 224.453314 - 0: The maximum resident set size (KB) = 2974452 + 0: The total amount of wall time = 229.312689 + 0: The maximum resident set size (KB) = 2975284 Test 151 atmaero_control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/atmaero_control_p8_rad +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/atmaero_control_p8_rad +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/atmaero_control_p8_rad Checking test 152 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4651,14 +4651,14 @@ Checking test 152 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 276.610772 - 0: The maximum resident set size (KB) = 3044504 + 0: The total amount of wall time = 277.332159 + 0: The maximum resident set size (KB) = 3046860 Test 152 atmaero_control_p8_rad PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad_micro -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/atmaero_control_p8_rad_micro +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/atmaero_control_p8_rad_micro +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/atmaero_control_p8_rad_micro Checking test 153 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4702,14 +4702,14 @@ Checking test 153 atmaero_control_p8_rad_micro results .... Comparing 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.299220 - 0: The maximum resident set size (KB) = 3057368 + 0: The total amount of wall time = 281.714861 + 0: The maximum resident set size (KB) = 3051148 Test 153 atmaero_control_p8_rad_micro PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/regional_atmaq +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_atmaq +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/regional_atmaq Checking test 154 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4725,14 +4725,14 @@ Checking test 154 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 595.207238 - 0: The maximum resident set size (KB) = 1564400 + 0: The total amount of wall time = 630.251511 + 0: The maximum resident set size (KB) = 1470988 Test 154 regional_atmaq PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/regional_atmaq_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_atmaq_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/regional_atmaq_debug Checking test 155 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4746,14 +4746,14 @@ Checking test 155 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1322.503082 - 0: The maximum resident set size (KB) = 1515560 + 0: The total amount of wall time = 1222.844860 + 0: The maximum resident set size (KB) = 1405448 Test 155 regional_atmaq_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14967/regional_atmaq_faster +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_atmaq_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/regional_atmaq_faster Checking test 156 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4769,12 +4769,12 @@ Checking test 156 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 568.194715 - 0: The maximum resident set size (KB) = 1557548 + 0: The total amount of wall time = 549.148413 + 0: The maximum resident set size (KB) = 1473476 Test 156 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Tue Mar 14 21:32:26 UTC 2023 -Elapsed time: 01h:14m:14s. Have a nice day! +Tue Mar 21 00:49:34 UTC 2023 +Elapsed time: 01h:16m:52s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index 5b5c6de5b28..27b480b2f33 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,42 +1,42 @@ -Tue Mar 14 01:54:15 UTC 2023 +Tue Mar 21 01:39:10 UTC 2023 Start Regression test -Compile 001 elapsed time 1819 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 002 elapsed time 1985 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 003 elapsed time 1768 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 004 elapsed time 318 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 292 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 1495 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 007 elapsed time 1520 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 001 elapsed time 2004 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 002 elapsed time 1842 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 003 elapsed time 1690 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 004 elapsed time 328 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 288 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 1481 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 007 elapsed time 1475 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON Compile 008 elapsed time 3348 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 009 elapsed time 1554 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 010 elapsed time 1560 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 011 elapsed time 1452 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 012 elapsed time 1375 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 013 elapsed time 1965 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 014 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 387 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 1544 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 017 elapsed time 1498 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 018 elapsed time 482 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 237 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 1664 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 021 elapsed time 293 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 2091 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 023 elapsed time 1658 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 024 elapsed time 301 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 025 elapsed time 177 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 270 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 027 elapsed time 104 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 028 elapsed time 1461 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 029 elapsed time 1622 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 030 elapsed time 1448 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 031 elapsed time 1428 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 032 elapsed time 266 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 1887 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_mixedmode -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/cpld_control_p8_mixedmode +Compile 009 elapsed time 1555 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 010 elapsed time 1523 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 011 elapsed time 1484 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 012 elapsed time 1378 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 013 elapsed time 1983 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 014 elapsed time 304 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 263 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 1432 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 017 elapsed time 1465 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 018 elapsed time 281 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 206 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 1642 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 021 elapsed time 300 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 2108 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 023 elapsed time 1618 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 024 elapsed time 285 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 025 elapsed time 170 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 280 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 027 elapsed time 103 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 028 elapsed time 1460 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 029 elapsed time 1582 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 030 elapsed time 1428 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 031 elapsed time 1380 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 032 elapsed time 260 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 1813 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8_mixedmode +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -101,14 +101,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 434.391510 - 0: The maximum resident set size (KB) = 1729632 + 0: The total amount of wall time = 428.874410 + 0: The maximum resident set size (KB) = 1744912 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_gfsv17 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/cpld_control_gfsv17 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_gfsv17 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -172,14 +172,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 314.282697 - 0: The maximum resident set size (KB) = 1625892 + 0: The total amount of wall time = 304.807288 + 0: The maximum resident set size (KB) = 1626064 Test 002 cpld_control_gfsv17 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/cpld_control_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -244,14 +244,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 496.491849 - 0: The maximum resident set size (KB) = 1766948 + 0: The total amount of wall time = 468.114857 + 0: The maximum resident set size (KB) = 1795260 Test 003 cpld_control_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/cpld_restart_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -304,14 +304,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 267.710806 - 0: The maximum resident set size (KB) = 1489664 + 0: The total amount of wall time = 280.253089 + 0: The maximum resident set size (KB) = 1497368 Test 004 cpld_restart_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/cpld_2threads_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -364,14 +364,14 @@ Checking test 005 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 523.366084 - 0: The maximum resident set size (KB) = 1958556 + 0: The total amount of wall time = 504.716934 + 0: The maximum resident set size (KB) = 1968676 Test 005 cpld_2threads_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/cpld_decomp_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/cpld_decomp_p8 Checking test 006 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -424,14 +424,14 @@ Checking test 006 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 497.839644 - 0: The maximum resident set size (KB) = 1771116 + 0: The total amount of wall time = 475.084880 + 0: The maximum resident set size (KB) = 1782784 Test 006 cpld_decomp_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/cpld_mpi_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/cpld_mpi_p8 Checking test 007 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -484,14 +484,14 @@ Checking test 007 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 432.137711 - 0: The maximum resident set size (KB) = 1726988 + 0: The total amount of wall time = 398.116558 + 0: The maximum resident set size (KB) = 1740436 Test 007 cpld_mpi_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_ciceC_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/cpld_control_ciceC_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_ciceC_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/cpld_control_ciceC_p8 Checking test 008 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -556,14 +556,14 @@ Checking test 008 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 505.036732 - 0: The maximum resident set size (KB) = 1776716 + 0: The total amount of wall time = 468.113708 + 0: The maximum resident set size (KB) = 1791456 Test 008 cpld_control_ciceC_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/cpld_control_noaero_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_noaero_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/cpld_control_noaero_p8 Checking test 009 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -627,14 +627,14 @@ Checking test 009 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 369.955852 - 0: The maximum resident set size (KB) = 1602292 + 0: The total amount of wall time = 351.157459 + 0: The maximum resident set size (KB) = 1632164 Test 009 cpld_control_noaero_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/cpld_control_nowave_noaero_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_c96_noaero_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/cpld_control_nowave_noaero_p8 Checking test 010 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -696,14 +696,14 @@ Checking test 010 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 369.917209 - 0: The maximum resident set size (KB) = 1669032 + 0: The total amount of wall time = 352.095462 + 0: The maximum resident set size (KB) = 1685536 Test 010 cpld_control_nowave_noaero_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_debug_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/cpld_debug_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_debug_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/cpld_debug_p8 Checking test 011 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -756,14 +756,14 @@ Checking test 011 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 875.272117 - 0: The maximum resident set size (KB) = 1819848 + 0: The total amount of wall time = 864.632307 + 0: The maximum resident set size (KB) = 1839868 Test 011 cpld_debug_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_debug_noaero_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/cpld_debug_noaero_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_debug_noaero_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/cpld_debug_noaero_p8 Checking test 012 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -815,14 +815,14 @@ Checking test 012 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 553.612532 - 0: The maximum resident set size (KB) = 1597044 + 0: The total amount of wall time = 539.770340 + 0: The maximum resident set size (KB) = 1642064 Test 012 cpld_debug_noaero_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/cpld_control_noaero_p8_agrid +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_noaero_p8_agrid +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/cpld_control_noaero_p8_agrid Checking test 013 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -884,14 +884,14 @@ Checking test 013 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 389.106775 - 0: The maximum resident set size (KB) = 1671448 + 0: The total amount of wall time = 387.347108 + 0: The maximum resident set size (KB) = 1682156 Test 013 cpld_control_noaero_p8_agrid PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c48 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/cpld_control_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_c48 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/cpld_control_c48 Checking test 014 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -941,14 +941,14 @@ Checking test 014 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 811.091535 - 0: The maximum resident set size (KB) = 2773636 + 0: The total amount of wall time = 802.526177 + 0: The maximum resident set size (KB) = 2775884 Test 014 cpld_control_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/cpld_warmstart_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_warmstart_c48 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/cpld_warmstart_c48 Checking test 015 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -998,14 +998,14 @@ Checking test 015 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 214.924335 - 0: The maximum resident set size (KB) = 2768248 + 0: The total amount of wall time = 218.234733 + 0: The maximum resident set size (KB) = 2762712 Test 015 cpld_warmstart_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/cpld_restart_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_warmstart_c48 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/cpld_restart_c48 Checking test 016 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1055,14 +1055,14 @@ Checking test 016 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 115.082700 - 0: The maximum resident set size (KB) = 2208936 + 0: The total amount of wall time = 113.124055 + 0: The maximum resident set size (KB) = 2212836 Test 016 cpld_restart_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_faster -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/cpld_control_p8_faster +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8_faster +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/cpld_control_p8_faster Checking test 017 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1127,14 +1127,14 @@ Checking test 017 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 486.258667 - 0: The maximum resident set size (KB) = 1774160 + 0: The total amount of wall time = 451.549880 + 0: The maximum resident set size (KB) = 1778416 Test 017 cpld_control_p8_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/control_CubedSphereGrid +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/control_CubedSphereGrid +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/control_CubedSphereGrid Checking test 018 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1161,28 +1161,28 @@ Checking test 018 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 202.703771 - 0: The maximum resident set size (KB) = 578224 + 0: The total amount of wall time = 186.644407 + 0: The maximum resident set size (KB) = 575180 Test 018 control_CubedSphereGrid PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid_parallel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/control_CubedSphereGrid_parallel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/control_CubedSphereGrid_parallel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/control_CubedSphereGrid_parallel Checking test 019 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 203.945375 - 0: The maximum resident set size (KB) = 574220 + 0: The total amount of wall time = 199.937473 + 0: The maximum resident set size (KB) = 573120 Test 019 control_CubedSphereGrid_parallel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_latlon -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/control_latlon +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/control_latlon +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/control_latlon Checking test 020 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1193,32 +1193,32 @@ Checking test 020 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 210.532694 - 0: The maximum resident set size (KB) = 571456 + 0: The total amount of wall time = 192.714933 + 0: The maximum resident set size (KB) = 573940 Test 020 control_latlon PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/control_wrtGauss_netcdf_parallel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/control_wrtGauss_netcdf_parallel Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK - Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 209.958543 - 0: The maximum resident set size (KB) = 575544 + 0: The total amount of wall time = 189.595813 + 0: The maximum resident set size (KB) = 574224 Test 021 control_wrtGauss_netcdf_parallel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c48 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/control_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/control_c48 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/control_c48 Checking test 022 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1257,14 +1257,14 @@ Checking test 022 control_c48 results .... Comparing 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.682390 -0: The maximum resident set size (KB) = 788336 +0: The total amount of wall time = 600.844547 +0: The maximum resident set size (KB) = 792800 Test 022 control_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c192 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/control_c192 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/control_c192 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/control_c192 Checking test 023 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1275,14 +1275,14 @@ Checking test 023 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 813.780540 - 0: The maximum resident set size (KB) = 682324 + 0: The total amount of wall time = 740.928772 + 0: The maximum resident set size (KB) = 697268 Test 023 control_c192 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/control_c384 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/control_c384 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/control_c384 Checking test 024 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1293,14 +1293,14 @@ Checking test 024 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1027.025545 - 0: The maximum resident set size (KB) = 1047848 + 0: The total amount of wall time = 966.923253 + 0: The maximum resident set size (KB) = 1051496 Test 024 control_c384 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384gdas -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/control_c384gdas +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/control_c384gdas +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/control_c384gdas Checking test 025 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1343,14 +1343,14 @@ Checking test 025 control_c384gdas 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 = 873.696945 - 0: The maximum resident set size (KB) = 1177584 + 0: The total amount of wall time = 844.075570 + 0: The maximum resident set size (KB) = 1179888 Test 025 control_c384gdas PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/control_stochy +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/control_stochy +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/control_stochy Checking test 026 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1361,28 +1361,28 @@ Checking test 026 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 133.837270 - 0: The maximum resident set size (KB) = 580168 + 0: The total amount of wall time = 125.468631 + 0: The maximum resident set size (KB) = 580020 Test 026 control_stochy PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/control_stochy_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/control_stochy +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/control_stochy_restart Checking test 027 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 78.164298 - 0: The maximum resident set size (KB) = 393392 + 0: The total amount of wall time = 67.506173 + 0: The maximum resident set size (KB) = 394372 Test 027 control_stochy_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/control_lndp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/control_lndp +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/control_lndp Checking test 028 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1393,14 +1393,14 @@ Checking test 028 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 133.422226 - 0: The maximum resident set size (KB) = 578244 + 0: The total amount of wall time = 117.119696 + 0: The maximum resident set size (KB) = 575320 Test 028 control_lndp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr4 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/control_iovr4 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/control_iovr4 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/control_iovr4 Checking test 029 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1415,14 +1415,14 @@ Checking test 029 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 216.628292 - 0: The maximum resident set size (KB) = 572916 + 0: The total amount of wall time = 195.558569 + 0: The maximum resident set size (KB) = 575040 Test 029 control_iovr4 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr5 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/control_iovr5 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/control_iovr5 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/control_iovr5 Checking test 030 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1437,14 +1437,14 @@ Checking test 030 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 211.271142 - 0: The maximum resident set size (KB) = 578168 + 0: The total amount of wall time = 191.928736 + 0: The maximum resident set size (KB) = 576920 Test 030 control_iovr5 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/control_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/control_p8 Checking test 031 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1491,14 +1491,14 @@ Checking test 031 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 265.045913 - 0: The maximum resident set size (KB) = 1537588 + 0: The total amount of wall time = 238.288005 + 0: The maximum resident set size (KB) = 1540032 Test 031 control_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_lndp -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/control_p8_lndp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8_lndp +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/control_p8_lndp Checking test 032 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1517,14 +1517,14 @@ Checking test 032 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 473.947670 - 0: The maximum resident set size (KB) = 1543256 + 0: The total amount of wall time = 447.706078 + 0: The maximum resident set size (KB) = 1535676 Test 032 control_p8_lndp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/control_restart_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/control_restart_p8 Checking test 033 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1563,14 +1563,14 @@ Checking test 033 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 143.976820 - 0: The maximum resident set size (KB) = 791232 + 0: The total amount of wall time = 123.488249 + 0: The maximum resident set size (KB) = 781236 Test 033 control_restart_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/control_decomp_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/control_decomp_p8 Checking test 034 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1613,14 +1613,14 @@ Checking test 034 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 257.795729 - 0: The maximum resident set size (KB) = 1520424 + 0: The total amount of wall time = 263.100025 + 0: The maximum resident set size (KB) = 1543204 Test 034 control_decomp_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/control_2threads_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/control_2threads_p8 Checking test 035 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1663,14 +1663,14 @@ Checking test 035 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 252.869477 - 0: The maximum resident set size (KB) = 1626108 + 0: The total amount of wall time = 243.244362 + 0: The maximum resident set size (KB) = 1616032 Test 035 control_2threads_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_rrtmgp -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/control_p8_rrtmgp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8_rrtmgp +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/control_p8_rrtmgp Checking test 036 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1717,14 +1717,14 @@ Checking test 036 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 340.598350 - 0: The maximum resident set size (KB) = 1602840 + 0: The total amount of wall time = 307.571398 + 0: The maximum resident set size (KB) = 1618536 Test 036 control_p8_rrtmgp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/merra2_thompson -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/merra2_thompson +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/merra2_thompson +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/merra2_thompson Checking test 037 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1771,14 +1771,14 @@ Checking test 037 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 290.889556 - 0: The maximum resident set size (KB) = 1546512 + 0: The total amount of wall time = 289.739832 + 0: The maximum resident set size (KB) = 1546064 Test 037 merra2_thompson PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/regional_control +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/regional_control Checking test 038 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1789,28 +1789,28 @@ Checking test 038 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 465.722523 - 0: The maximum resident set size (KB) = 788248 + 0: The total amount of wall time = 415.833285 + 0: The maximum resident set size (KB) = 784008 Test 038 regional_control PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/regional_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/regional_restart Checking test 039 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 224.274169 - 0: The maximum resident set size (KB) = 779920 + 0: The total amount of wall time = 213.082616 + 0: The maximum resident set size (KB) = 780324 Test 039 regional_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/regional_decomp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/regional_decomp Checking test 040 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1821,14 +1821,14 @@ Checking test 040 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 454.568753 - 0: The maximum resident set size (KB) = 783856 + 0: The total amount of wall time = 444.604640 + 0: The maximum resident set size (KB) = 784892 Test 040 regional_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/regional_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/regional_2threads Checking test 041 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1839,14 +1839,14 @@ Checking test 041 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 298.808976 - 0: The maximum resident set size (KB) = 768848 + 0: The total amount of wall time = 285.904652 + 0: The maximum resident set size (KB) = 770244 Test 041 regional_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_noquilt -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/regional_noquilt +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_noquilt +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/regional_noquilt Checking test 042 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1854,28 +1854,28 @@ Checking test 042 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 511.000636 - 0: The maximum resident set size (KB) = 773280 + 0: The total amount of wall time = 461.647919 + 0: The maximum resident set size (KB) = 772408 Test 042 regional_noquilt PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_netcdf_parallel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/regional_netcdf_parallel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_netcdf_parallel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/regional_netcdf_parallel Checking test 043 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 452.509155 - 0: The maximum resident set size (KB) = 781700 + 0: The total amount of wall time = 453.882308 + 0: The maximum resident set size (KB) = 783736 Test 043 regional_netcdf_parallel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/regional_2dwrtdecomp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/regional_2dwrtdecomp Checking test 044 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1886,14 +1886,14 @@ Checking test 044 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 451.521203 - 0: The maximum resident set size (KB) = 783944 + 0: The total amount of wall time = 433.535272 + 0: The maximum resident set size (KB) = 784452 Test 044 regional_2dwrtdecomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/fv3_regional_wofs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/regional_wofs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/fv3_regional_wofs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/regional_wofs Checking test 045 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1904,14 +1904,14 @@ Checking test 045 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 534.091905 - 0: The maximum resident set size (KB) = 518032 + 0: The total amount of wall time = 533.432429 + 0: The maximum resident set size (KB) = 518616 Test 045 regional_wofs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/rap_control +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/rap_control Checking test 046 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1958,14 +1958,14 @@ Checking test 046 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 655.281213 - 0: The maximum resident set size (KB) = 958416 + 0: The total amount of wall time = 633.506581 + 0: The maximum resident set size (KB) = 961664 Test 046 rap_control PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/regional_spp_sppt_shum_skeb +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_spp_sppt_shum_skeb +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/regional_spp_sppt_shum_skeb Checking test 047 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -1976,14 +1976,14 @@ Checking test 047 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 418.284020 - 0: The maximum resident set size (KB) = 1080016 + 0: The total amount of wall time = 424.772412 + 0: The maximum resident set size (KB) = 1087460 Test 047 regional_spp_sppt_shum_skeb PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/rap_decomp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/rap_decomp Checking test 048 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2030,14 +2030,14 @@ Checking test 048 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 707.324933 - 0: The maximum resident set size (KB) = 941196 + 0: The total amount of wall time = 668.877727 + 0: The maximum resident set size (KB) = 939288 Test 048 rap_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/rap_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/rap_2threads Checking test 049 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2084,14 +2084,14 @@ Checking test 049 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 635.227201 - 0: The maximum resident set size (KB) = 1020984 + 0: The total amount of wall time = 598.953445 + 0: The maximum resident set size (KB) = 1030564 Test 049 rap_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/rap_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/rap_restart Checking test 050 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2130,14 +2130,14 @@ Checking test 050 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 327.780612 - 0: The maximum resident set size (KB) = 831372 + 0: The total amount of wall time = 325.285829 + 0: The maximum resident set size (KB) = 838964 Test 050 rap_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/rap_sfcdiff +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/rap_sfcdiff Checking test 051 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2184,14 +2184,14 @@ Checking test 051 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 655.466804 - 0: The maximum resident set size (KB) = 945164 + 0: The total amount of wall time = 618.240117 + 0: The maximum resident set size (KB) = 946160 Test 051 rap_sfcdiff PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/rap_sfcdiff_decomp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/rap_sfcdiff_decomp Checking test 052 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2238,14 +2238,14 @@ Checking test 052 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 701.601495 - 0: The maximum resident set size (KB) = 949784 + 0: The total amount of wall time = 655.324582 + 0: The maximum resident set size (KB) = 937496 Test 052 rap_sfcdiff_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/rap_sfcdiff_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/rap_sfcdiff_restart Checking test 053 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2284,14 +2284,14 @@ Checking test 053 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 464.756098 - 0: The maximum resident set size (KB) = 840124 + 0: The total amount of wall time = 457.116872 + 0: The maximum resident set size (KB) = 833720 Test 053 rap_sfcdiff_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/hrrr_control +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/hrrr_control Checking test 054 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2338,14 +2338,14 @@ Checking test 054 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 643.106928 - 0: The maximum resident set size (KB) = 945056 + 0: The total amount of wall time = 592.591679 + 0: The maximum resident set size (KB) = 960336 Test 054 hrrr_control PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/hrrr_control_decomp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/hrrr_control_decomp Checking test 055 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2392,14 +2392,14 @@ Checking test 055 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 696.257487 - 0: The maximum resident set size (KB) = 943440 + 0: The total amount of wall time = 616.040446 + 0: The maximum resident set size (KB) = 938148 Test 055 hrrr_control_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/hrrr_control_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/hrrr_control_2threads Checking test 056 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2446,14 +2446,14 @@ Checking test 056 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 627.581104 - 0: The maximum resident set size (KB) = 1025380 + 0: The total amount of wall time = 574.044770 + 0: The maximum resident set size (KB) = 1023184 Test 056 hrrr_control_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/hrrr_control_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/hrrr_control_restart Checking test 057 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2492,14 +2492,14 @@ Checking test 057 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 448.327715 - 0: The maximum resident set size (KB) = 844248 + 0: The total amount of wall time = 436.933014 + 0: The maximum resident set size (KB) = 843840 Test 057 hrrr_control_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/rrfs_v1beta +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_v1beta +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/rrfs_v1beta Checking test 058 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2546,14 +2546,14 @@ Checking test 058 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 666.634415 - 0: The maximum resident set size (KB) = 956388 + 0: The total amount of wall time = 609.278148 + 0: The maximum resident set size (KB) = 948032 Test 058 rrfs_v1beta PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/rrfs_v1nssl +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_v1nssl +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/rrfs_v1nssl Checking test 059 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2568,14 +2568,14 @@ Checking test 059 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 781.823867 - 0: The maximum resident set size (KB) = 638484 + 0: The total amount of wall time = 717.848764 + 0: The maximum resident set size (KB) = 633572 Test 059 rrfs_v1nssl PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/rrfs_v1nssl_nohailnoccn +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/rrfs_v1nssl_nohailnoccn Checking test 060 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2590,14 +2590,14 @@ Checking test 060 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 775.809277 - 0: The maximum resident set size (KB) = 634240 + 0: The total amount of wall time = 716.258907 + 0: The maximum resident set size (KB) = 639296 Test 060 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/rrfs_conus13km_hrrr_warm +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/rrfs_conus13km_hrrr_warm Checking test 061 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2606,14 +2606,14 @@ Checking test 061 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 185.439462 - 0: The maximum resident set size (KB) = 853560 + 0: The total amount of wall time = 175.533283 + 0: The maximum resident set size (KB) = 848268 Test 061 rrfs_conus13km_hrrr_warm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/rrfs_smoke_conus13km_hrrr_warm Checking test 062 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2622,14 +2622,14 @@ Checking test 062 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 220.592849 - 0: The maximum resident set size (KB) = 869708 + 0: The total amount of wall time = 195.459363 + 0: The maximum resident set size (KB) = 876660 Test 062 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/rrfs_conus13km_radar_tten_warm +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/rrfs_conus13km_radar_tten_warm Checking test 063 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2638,14 +2638,14 @@ Checking test 063 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 174.768913 - 0: The maximum resident set size (KB) = 854672 + 0: The total amount of wall time = 177.702194 + 0: The maximum resident set size (KB) = 863076 Test 063 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/rrfs_conus13km_hrrr_warm_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/rrfs_conus13km_hrrr_warm_2threads Checking test 064 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2654,14 +2654,14 @@ Checking test 064 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 114.799986 - 0: The maximum resident set size (KB) = 821672 + 0: The total amount of wall time = 112.182157 + 0: The maximum resident set size (KB) = 823788 Test 064 rrfs_conus13km_hrrr_warm_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/rrfs_conus13km_radar_tten_warm_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/rrfs_conus13km_radar_tten_warm_2threads Checking test 065 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2670,14 +2670,14 @@ Checking test 065 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 128.342045 - 0: The maximum resident set size (KB) = 820748 + 0: The total amount of wall time = 122.437812 + 0: The maximum resident set size (KB) = 826656 Test 065 rrfs_conus13km_radar_tten_warm_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/control_csawmg +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/control_csawmg +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/control_csawmg Checking test 066 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2688,14 +2688,14 @@ Checking test 066 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 499.136571 - 0: The maximum resident set size (KB) = 666196 + 0: The total amount of wall time = 479.495233 + 0: The maximum resident set size (KB) = 669856 Test 066 control_csawmg PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/control_csawmgt +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/control_csawmgt +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/control_csawmgt Checking test 067 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2706,14 +2706,14 @@ Checking test 067 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 487.096029 - 0: The maximum resident set size (KB) = 667092 + 0: The total amount of wall time = 471.118830 + 0: The maximum resident set size (KB) = 658628 Test 067 control_csawmgt PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/control_ras +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/control_ras +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/control_ras Checking test 068 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2724,26 +2724,26 @@ Checking test 068 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 260.070974 - 0: The maximum resident set size (KB) = 637140 + 0: The total amount of wall time = 257.025821 + 0: The maximum resident set size (KB) = 636712 Test 068 control_ras PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/control_wam +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/control_wam +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/control_wam Checking test 069 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 173.390693 - 0: The maximum resident set size (KB) = 476500 + 0: The total amount of wall time = 153.674405 + 0: The maximum resident set size (KB) = 485560 Test 069 control_wam PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_faster -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/control_p8_faster +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8_faster +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/control_p8_faster Checking test 070 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2790,14 +2790,14 @@ Checking test 070 control_p8_faster results .... Comparing 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.662294 - 0: The maximum resident set size (KB) = 1530512 + 0: The total amount of wall time = 227.453908 + 0: The maximum resident set size (KB) = 1531544 Test 070 control_p8_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control_faster -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/regional_control_faster +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_control_faster +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/regional_control_faster Checking test 071 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2808,42 +2808,42 @@ Checking test 071 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 428.313668 - 0: The maximum resident set size (KB) = 784548 + 0: The total amount of wall time = 393.945777 + 0: The maximum resident set size (KB) = 783076 Test 071 regional_control_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/rrfs_conus13km_hrrr_warm_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/rrfs_conus13km_hrrr_warm_debug Checking test 072 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 952.285709 - 0: The maximum resident set size (KB) = 877952 + 0: The total amount of wall time = 959.991034 + 0: The maximum resident set size (KB) = 884644 Test 072 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/rrfs_conus13km_radar_tten_warm_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_conus13km_radar_tten_warm_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/rrfs_conus13km_radar_tten_warm_debug Checking test 073 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 960.405163 - 0: The maximum resident set size (KB) = 883292 + 0: The total amount of wall time = 960.264147 + 0: The maximum resident set size (KB) = 878920 Test 073 rrfs_conus13km_radar_tten_warm_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/control_CubedSphereGrid_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/control_CubedSphereGrid_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/control_CubedSphereGrid_debug Checking test 074 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2870,334 +2870,334 @@ Checking test 074 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 216.278901 - 0: The maximum resident set size (KB) = 731904 + 0: The total amount of wall time = 216.750985 + 0: The maximum resident set size (KB) = 736496 Test 074 control_CubedSphereGrid_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/control_wrtGauss_netcdf_parallel_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/control_wrtGauss_netcdf_parallel_debug Checking test 075 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 204.587332 - 0: The maximum resident set size (KB) = 731172 + 0: The total amount of wall time = 200.608201 + 0: The maximum resident set size (KB) = 736616 Test 075 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/control_stochy_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/control_stochy_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/control_stochy_debug Checking test 076 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 231.054749 - 0: The maximum resident set size (KB) = 742460 + 0: The total amount of wall time = 225.518707 + 0: The maximum resident set size (KB) = 736160 Test 076 control_stochy_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/control_lndp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/control_lndp_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/control_lndp_debug Checking test 077 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 201.806559 - 0: The maximum resident set size (KB) = 738352 + 0: The total amount of wall time = 206.237264 + 0: The maximum resident set size (KB) = 739796 Test 077 control_lndp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/control_csawmg_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/control_csawmg_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/control_csawmg_debug Checking test 078 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 309.399864 - 0: The maximum resident set size (KB) = 786376 + 0: The total amount of wall time = 317.474731 + 0: The maximum resident set size (KB) = 783516 Test 078 control_csawmg_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/control_csawmgt_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/control_csawmgt_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/control_csawmgt_debug Checking test 079 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 304.013970 - 0: The maximum resident set size (KB) = 781920 + 0: The total amount of wall time = 313.049740 + 0: The maximum resident set size (KB) = 781984 Test 079 control_csawmgt_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/control_ras_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/control_ras_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/control_ras_debug Checking test 080 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 202.470158 - 0: The maximum resident set size (KB) = 746432 + 0: The total amount of wall time = 204.292338 + 0: The maximum resident set size (KB) = 749188 Test 080 control_ras_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_diag_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/control_diag_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/control_diag_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/control_diag_debug Checking test 081 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 216.371289 - 0: The maximum resident set size (KB) = 789804 + 0: The total amount of wall time = 209.365026 + 0: The maximum resident set size (KB) = 791496 Test 081 control_diag_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_debug_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/control_debug_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/control_debug_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/control_debug_p8 Checking test 082 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 233.538400 - 0: The maximum resident set size (KB) = 1554924 + 0: The total amount of wall time = 228.733393 + 0: The maximum resident set size (KB) = 1554872 Test 082 control_debug_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/regional_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/regional_debug Checking test 083 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1284.151106 - 0: The maximum resident set size (KB) = 803752 + 0: The total amount of wall time = 1284.770599 + 0: The maximum resident set size (KB) = 800752 Test 083 regional_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/rap_control_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/rap_control_debug Checking test 084 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 364.590411 - 0: The maximum resident set size (KB) = 1110928 + 0: The total amount of wall time = 360.962062 + 0: The maximum resident set size (KB) = 1112368 Test 084 rap_control_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/hrrr_control_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/hrrr_control_debug Checking test 085 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 356.175783 - 0: The maximum resident set size (KB) = 1108452 + 0: The total amount of wall time = 360.466001 + 0: The maximum resident set size (KB) = 1108544 Test 085 hrrr_control_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/rap_unified_drag_suite_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/rap_unified_drag_suite_debug Checking test 086 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 363.331998 - 0: The maximum resident set size (KB) = 1108896 + 0: The total amount of wall time = 360.962610 + 0: The maximum resident set size (KB) = 1112652 Test 086 rap_unified_drag_suite_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_diag_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/rap_diag_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_diag_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/rap_diag_debug Checking test 087 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 388.923162 - 0: The maximum resident set size (KB) = 1192440 + 0: The total amount of wall time = 387.847843 + 0: The maximum resident set size (KB) = 1197672 Test 087 rap_diag_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/rap_cires_ugwp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_cires_ugwp_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/rap_cires_ugwp_debug Checking test 088 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 377.626765 - 0: The maximum resident set size (KB) = 1110560 + 0: The total amount of wall time = 367.240216 + 0: The maximum resident set size (KB) = 1108268 Test 088 rap_cires_ugwp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/rap_unified_ugwp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_cires_ugwp_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/rap_unified_ugwp_debug Checking test 089 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 372.150447 - 0: The maximum resident set size (KB) = 1112924 + 0: The total amount of wall time = 371.956105 + 0: The maximum resident set size (KB) = 1111940 Test 089 rap_unified_ugwp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_lndp_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/rap_lndp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_lndp_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/rap_lndp_debug Checking test 090 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 372.539880 - 0: The maximum resident set size (KB) = 1118164 + 0: The total amount of wall time = 362.008521 + 0: The maximum resident set size (KB) = 1120620 Test 090 rap_lndp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_flake_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/rap_flake_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_flake_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/rap_flake_debug Checking test 091 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 368.221767 - 0: The maximum resident set size (KB) = 1114816 + 0: The total amount of wall time = 372.101165 + 0: The maximum resident set size (KB) = 1106636 Test 091 rap_flake_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_progcld_thompson_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/rap_progcld_thompson_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_progcld_thompson_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/rap_progcld_thompson_debug Checking test 092 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 364.264211 - 0: The maximum resident set size (KB) = 1107924 + 0: The total amount of wall time = 364.283007 + 0: The maximum resident set size (KB) = 1111944 Test 092 rap_progcld_thompson_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/rap_noah_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_noah_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/rap_noah_debug Checking test 093 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 353.915863 - 0: The maximum resident set size (KB) = 1112956 + 0: The total amount of wall time = 356.515594 + 0: The maximum resident set size (KB) = 1115916 Test 093 rap_noah_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/rap_sfcdiff_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_sfcdiff_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/rap_sfcdiff_debug Checking test 094 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 362.638203 - 0: The maximum resident set size (KB) = 1110600 + 0: The total amount of wall time = 361.839127 + 0: The maximum resident set size (KB) = 1107976 Test 094 rap_sfcdiff_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/rap_noah_sfcdiff_cires_ugwp_debug Checking test 095 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 590.303167 - 0: The maximum resident set size (KB) = 1111716 + 0: The total amount of wall time = 595.045716 + 0: The maximum resident set size (KB) = 1107992 Test 095 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/rrfs_v1beta_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_v1beta_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/rrfs_v1beta_debug Checking test 096 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 355.455419 - 0: The maximum resident set size (KB) = 1109844 + 0: The total amount of wall time = 362.845892 + 0: The maximum resident set size (KB) = 1107220 Test 096 rrfs_v1beta_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/control_wam_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/control_wam_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/control_wam_debug Checking test 097 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 367.350393 - 0: The maximum resident set size (KB) = 434076 + 0: The total amount of wall time = 368.386635 + 0: The maximum resident set size (KB) = 436248 Test 097 control_wam_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 098 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3208,14 +3208,14 @@ Checking test 098 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 385.054301 - 0: The maximum resident set size (KB) = 988240 + 0: The total amount of wall time = 380.904604 + 0: The maximum resident set size (KB) = 981692 Test 098 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/rap_control_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/rap_control_dyn32_phy32 Checking test 099 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3262,14 +3262,14 @@ Checking test 099 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 517.557276 - 0: The maximum resident set size (KB) = 845748 + 0: The total amount of wall time = 500.211505 + 0: The maximum resident set size (KB) = 848752 Test 099 rap_control_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/hrrr_control_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/hrrr_control_dyn32_phy32 Checking test 100 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3316,14 +3316,14 @@ Checking test 100 hrrr_control_dyn32_phy32 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 = 264.195298 - 0: The maximum resident set size (KB) = 834784 + 0: The total amount of wall time = 263.670846 + 0: The maximum resident set size (KB) = 823232 Test 100 hrrr_control_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/rap_2threads_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/rap_2threads_dyn32_phy32 Checking test 101 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3370,14 +3370,14 @@ Checking test 101 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 507.201627 - 0: The maximum resident set size (KB) = 882188 + 0: The total amount of wall time = 490.701243 + 0: The maximum resident set size (KB) = 891300 Test 101 rap_2threads_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/hrrr_control_2threads_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/hrrr_control_2threads_dyn32_phy32 Checking test 102 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3424,14 +3424,14 @@ Checking test 102 hrrr_control_2threads_dyn32_phy32 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 = 264.900420 - 0: The maximum resident set size (KB) = 894324 + 0: The total amount of wall time = 270.333756 + 0: The maximum resident set size (KB) = 888296 Test 102 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/hrrr_control_decomp_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/hrrr_control_decomp_dyn32_phy32 Checking test 103 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3478,14 +3478,14 @@ Checking test 103 hrrr_control_decomp_dyn32_phy32 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 = 282.441281 - 0: The maximum resident set size (KB) = 829768 + 0: The total amount of wall time = 278.355628 + 0: The maximum resident set size (KB) = 821776 Test 103 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/rap_restart_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/rap_restart_dyn32_phy32 Checking test 104 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3524,14 +3524,14 @@ Checking test 104 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 385.299264 - 0: The maximum resident set size (KB) = 811960 + 0: The total amount of wall time = 386.993303 + 0: The maximum resident set size (KB) = 810336 Test 104 rap_restart_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/hrrr_control_restart_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/hrrr_control_restart_dyn32_phy32 Checking test 105 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3570,14 +3570,14 @@ Checking test 105 hrrr_control_restart_dyn32_phy32 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 = 162.529616 - 0: The maximum resident set size (KB) = 764968 + 0: The total amount of wall time = 141.366455 + 0: The maximum resident set size (KB) = 767212 Test 105 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn64_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/rap_control_dyn64_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_dyn64_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/rap_control_dyn64_phy32 Checking test 106 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3624,81 +3624,81 @@ Checking test 106 rap_control_dyn64_phy32 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 = 326.981172 - 0: The maximum resident set size (KB) = 872960 + 0: The total amount of wall time = 343.162267 + 0: The maximum resident set size (KB) = 875856 Test 106 rap_control_dyn64_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/rap_control_debug_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/rap_control_debug_dyn32_phy32 Checking test 107 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 360.657844 - 0: The maximum resident set size (KB) = 996728 + 0: The total amount of wall time = 357.254989 + 0: The maximum resident set size (KB) = 1002264 Test 107 rap_control_debug_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/hrrr_control_debug_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/hrrr_control_debug_dyn32_phy32 Checking test 108 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 354.399430 - 0: The maximum resident set size (KB) = 998724 + 0: The total amount of wall time = 356.462361 + 0: The maximum resident set size (KB) = 992612 Test 108 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/rap_control_dyn64_phy32_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/rap_control_dyn64_phy32_debug Checking test 109 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 361.562321 - 0: The maximum resident set size (KB) = 1033564 + 0: The total amount of wall time = 365.914502 + 0: The maximum resident set size (KB) = 1035452 Test 109 rap_control_dyn64_phy32_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/hafs_regional_atm +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_atm +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/hafs_regional_atm Checking test 110 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 356.024131 - 0: The maximum resident set size (KB) = 1222424 + 0: The total amount of wall time = 368.585543 + 0: The maximum resident set size (KB) = 1222940 Test 110 hafs_regional_atm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/hafs_regional_atm_thompson_gfdlsf +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/hafs_regional_atm_thompson_gfdlsf Checking test 111 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 414.875745 - 0: The maximum resident set size (KB) = 1524412 + 0: The total amount of wall time = 433.421757 + 0: The maximum resident set size (KB) = 1584076 Test 111 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/hafs_regional_atm_ocn +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_atm_ocn +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/hafs_regional_atm_ocn Checking test 112 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3707,14 +3707,14 @@ Checking test 112 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 603.068066 - 0: The maximum resident set size (KB) = 1291304 + 0: The total amount of wall time = 544.365247 + 0: The maximum resident set size (KB) = 1293448 Test 112 hafs_regional_atm_ocn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_wav -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/hafs_regional_atm_wav +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_atm_wav +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/hafs_regional_atm_wav Checking test 113 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3723,14 +3723,14 @@ Checking test 113 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 1003.765278 - 0: The maximum resident set size (KB) = 1321304 + 0: The total amount of wall time = 945.754384 + 0: The maximum resident set size (KB) = 1316752 Test 113 hafs_regional_atm_wav PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/hafs_regional_atm_ocn_wav +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_atm_ocn_wav +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/hafs_regional_atm_ocn_wav Checking test 114 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3741,14 +3741,14 @@ Checking test 114 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 1116.069174 - 0: The maximum resident set size (KB) = 1310220 + 0: The total amount of wall time = 1053.222569 + 0: The maximum resident set size (KB) = 1346944 Test 114 hafs_regional_atm_ocn_wav PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_docn -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/hafs_regional_docn +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_docn +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/hafs_regional_docn Checking test 115 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3756,14 +3756,14 @@ Checking test 115 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 547.401711 - 0: The maximum resident set size (KB) = 1313056 + 0: The total amount of wall time = 516.529586 + 0: The maximum resident set size (KB) = 1308132 Test 115 hafs_regional_docn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_docn_oisst -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/hafs_regional_docn_oisst +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_docn_oisst +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/hafs_regional_docn_oisst Checking test 116 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3771,131 +3771,131 @@ Checking test 116 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 528.233018 - 0: The maximum resident set size (KB) = 1287200 + 0: The total amount of wall time = 516.888894 + 0: The maximum resident set size (KB) = 1293524 Test 116 hafs_regional_docn_oisst PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_datm_cdeps -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/hafs_regional_datm_cdeps +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_datm_cdeps +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/hafs_regional_datm_cdeps Checking test 117 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 1440.546602 - 0: The maximum resident set size (KB) = 976008 + 0: The total amount of wall time = 1274.230931 + 0: The maximum resident set size (KB) = 976116 Test 117 hafs_regional_datm_cdeps PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/datm_cdeps_control_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/datm_cdeps_control_cfsr Checking test 118 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 214.676878 - 0: The maximum resident set size (KB) = 958168 + 0: The total amount of wall time = 221.074037 + 0: The maximum resident set size (KB) = 964652 Test 118 datm_cdeps_control_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/datm_cdeps_restart_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/datm_cdeps_restart_cfsr Checking test 119 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 130.313646 - 0: The maximum resident set size (KB) = 930240 + 0: The total amount of wall time = 129.044592 + 0: The maximum resident set size (KB) = 931368 Test 119 datm_cdeps_restart_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_gefs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/datm_cdeps_control_gefs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_control_gefs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/datm_cdeps_control_gefs Checking test 120 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 211.771435 - 0: The maximum resident set size (KB) = 854080 + 0: The total amount of wall time = 216.949267 + 0: The maximum resident set size (KB) = 860552 Test 120 datm_cdeps_control_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_iau_gefs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/datm_cdeps_iau_gefs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_iau_gefs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/datm_cdeps_iau_gefs Checking test 121 datm_cdeps_iau_gefs 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 = 233.249971 - 0: The maximum resident set size (KB) = 863740 + 0: The total amount of wall time = 214.686273 + 0: The maximum resident set size (KB) = 869572 Test 121 datm_cdeps_iau_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_stochy_gefs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/datm_cdeps_stochy_gefs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_stochy_gefs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/datm_cdeps_stochy_gefs Checking test 122 datm_cdeps_stochy_gefs 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 = 232.896448 - 0: The maximum resident set size (KB) = 865516 + 0: The total amount of wall time = 219.381606 + 0: The maximum resident set size (KB) = 865488 Test 122 datm_cdeps_stochy_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/datm_cdeps_ciceC_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_ciceC_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/datm_cdeps_ciceC_cfsr Checking test 123 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 231.666736 - 0: The maximum resident set size (KB) = 966608 + 0: The total amount of wall time = 213.949277 + 0: The maximum resident set size (KB) = 962892 Test 123 datm_cdeps_ciceC_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/datm_cdeps_bulk_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_bulk_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/datm_cdeps_bulk_cfsr Checking test 124 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 231.828536 - 0: The maximum resident set size (KB) = 962112 + 0: The total amount of wall time = 216.959630 + 0: The maximum resident set size (KB) = 961844 Test 124 datm_cdeps_bulk_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/datm_cdeps_bulk_gefs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_bulk_gefs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/datm_cdeps_bulk_gefs Checking test 125 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 225.570508 - 0: The maximum resident set size (KB) = 856412 + 0: The total amount of wall time = 215.851099 + 0: The maximum resident set size (KB) = 863416 Test 125 datm_cdeps_bulk_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/datm_cdeps_mx025_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_mx025_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/datm_cdeps_mx025_cfsr Checking test 126 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -3904,14 +3904,14 @@ Checking test 126 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 584.970954 - 0: The maximum resident set size (KB) = 762208 + 0: The total amount of wall time = 580.133504 + 0: The maximum resident set size (KB) = 767812 Test 126 datm_cdeps_mx025_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/datm_cdeps_mx025_gefs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_mx025_gefs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/datm_cdeps_mx025_gefs Checking test 127 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -3920,77 +3920,77 @@ Checking test 127 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 578.118884 - 0: The maximum resident set size (KB) = 736832 + 0: The total amount of wall time = 574.254150 + 0: The maximum resident set size (KB) = 734684 Test 127 datm_cdeps_mx025_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/datm_cdeps_multiple_files_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/datm_cdeps_multiple_files_cfsr Checking test 128 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 225.116526 - 0: The maximum resident set size (KB) = 983764 + 0: The total amount of wall time = 218.746112 + 0: The maximum resident set size (KB) = 961980 Test 128 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/datm_cdeps_3072x1536_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/datm_cdeps_3072x1536_cfsr Checking test 129 datm_cdeps_3072x1536_cfsr 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 = 304.607770 - 0: The maximum resident set size (KB) = 2259868 + 0: The total amount of wall time = 324.788673 + 0: The maximum resident set size (KB) = 2192868 Test 129 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_gfs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/datm_cdeps_gfs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_gfs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/datm_cdeps_gfs Checking test 130 datm_cdeps_gfs 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 = 342.079188 - 0: The maximum resident set size (KB) = 2203888 + 0: The total amount of wall time = 299.949047 + 0: The maximum resident set size (KB) = 2263428 Test 130 datm_cdeps_gfs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_debug_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/datm_cdeps_debug_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_debug_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/datm_cdeps_debug_cfsr Checking test 131 datm_cdeps_debug_cfsr 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 = 584.007452 - 0: The maximum resident set size (KB) = 933164 + 0: The total amount of wall time = 580.468199 + 0: The maximum resident set size (KB) = 939224 Test 131 datm_cdeps_debug_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr_faster -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/datm_cdeps_control_cfsr_faster +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_control_cfsr_faster +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/datm_cdeps_control_cfsr_faster Checking test 132 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.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 = 223.209917 - 0: The maximum resident set size (KB) = 959560 + 0: The total amount of wall time = 222.706834 + 0: The maximum resident set size (KB) = 965412 Test 132 datm_cdeps_control_cfsr_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/datm_cdeps_lnd_gswp3 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/datm_cdeps_lnd_gswp3 Checking test 133 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -3999,14 +3999,14 @@ Checking test 133 datm_cdeps_lnd_gswp3 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 = 11.669722 - 0: The maximum resident set size (KB) = 253484 + 0: The total amount of wall time = 14.210039 + 0: The maximum resident set size (KB) = 249396 Test 133 datm_cdeps_lnd_gswp3 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/datm_cdeps_lnd_gswp3_rst +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/datm_cdeps_lnd_gswp3_rst Checking test 134 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4015,14 +4015,14 @@ Checking test 134 datm_cdeps_lnd_gswp3_rst 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 = 21.210791 - 0: The maximum resident set size (KB) = 252084 + 0: The total amount of wall time = 24.175618 + 0: The maximum resident set size (KB) = 249208 Test 134 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_atmlnd_sbs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/control_p8_atmlnd_sbs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8_atmlnd_sbs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/control_p8_atmlnd_sbs Checking test 135 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4107,14 +4107,14 @@ Checking test 135 control_p8_atmlnd_sbs 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 = 373.644576 - 0: The maximum resident set size (KB) = 1580140 + 0: The total amount of wall time = 289.540332 + 0: The maximum resident set size (KB) = 1590852 Test 135 control_p8_atmlnd_sbs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/control_atmwav -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/control_atmwav +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/control_atmwav +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/control_atmwav Checking test 136 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4158,14 +4158,14 @@ Checking test 136 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 151.629792 - 0: The maximum resident set size (KB) = 599544 + 0: The total amount of wall time = 124.498307 + 0: The maximum resident set size (KB) = 596652 Test 136 control_atmwav PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/atmaero_control_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/atmaero_control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/atmaero_control_p8 Checking test 137 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4209,14 +4209,14 @@ Checking test 137 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 384.998157 - 0: The maximum resident set size (KB) = 1628428 + 0: The total amount of wall time = 319.452413 + 0: The maximum resident set size (KB) = 1633200 Test 137 atmaero_control_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/atmaero_control_p8_rad +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/atmaero_control_p8_rad +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/atmaero_control_p8_rad Checking test 138 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4260,14 +4260,14 @@ Checking test 138 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 436.309777 - 0: The maximum resident set size (KB) = 1667692 + 0: The total amount of wall time = 381.146278 + 0: The maximum resident set size (KB) = 1672384 Test 138 atmaero_control_p8_rad PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/atmaero_control_p8_rad_micro +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/atmaero_control_p8_rad_micro +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/atmaero_control_p8_rad_micro Checking test 139 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4311,14 +4311,14 @@ Checking test 139 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 473.693178 - 0: The maximum resident set size (KB) = 1670580 + 0: The total amount of wall time = 383.246973 + 0: The maximum resident set size (KB) = 1681932 Test 139 atmaero_control_p8_rad_micro PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/regional_atmaq +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_atmaq +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/regional_atmaq Checking test 140 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4334,14 +4334,14 @@ Checking test 140 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 1045.836880 - 0: The maximum resident set size (KB) = 1325100 + 0: The total amount of wall time = 929.752877 + 0: The maximum resident set size (KB) = 1269436 Test 140 regional_atmaq PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq_faster -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_108084/regional_atmaq_faster +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_atmaq_faster +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/regional_atmaq_faster Checking test 141 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4357,12 +4357,12 @@ Checking test 141 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 1164.159802 - 0: The maximum resident set size (KB) = 1322800 + 0: The total amount of wall time = 843.391545 + 0: The maximum resident set size (KB) = 1248212 Test 141 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Tue Mar 14 06:00:27 UTC 2023 -Elapsed time: 04h:06m:12s. Have a nice day! +Tue Mar 21 04:55:31 UTC 2023 +Elapsed time: 03h:16m:21s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index 7658fe1375a..70ed0616a31 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,42 +1,42 @@ -Tue Mar 14 15:33:10 CDT 2023 +Mon Mar 20 20:32:18 CDT 2023 Start Regression test -Compile 001 elapsed time 750 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 736 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 706 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 292 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 252 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 645 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 651 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 814 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 593 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 620 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 810 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 841 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 972 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 501 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 497 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 755 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 768 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 308 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 307 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 700 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 216 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 726 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 606 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 024 elapsed time 213 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 130 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 201 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 91 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 843 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 922 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 883 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 766 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 169 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 742 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_mixedmode -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/cpld_control_p8_mixedmode +Compile 001 elapsed time 816 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 740 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 652 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 272 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 251 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 601 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 599 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 787 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 615 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 598 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 615 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 497 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 749 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 204 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 160 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 545 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 554 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 264 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 229 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 623 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 021 elapsed time 224 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 777 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 594 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 024 elapsed time 236 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 146 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 200 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 96 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 525 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 673 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 603 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 550 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 227 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 613 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8_mixedmode +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -101,14 +101,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 318.014255 - 0: The maximum resident set size (KB) = 3140396 + 0: The total amount of wall time = 319.855939 + 0: The maximum resident set size (KB) = 3137096 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_gfsv17 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/cpld_control_gfsv17 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_gfsv17 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -172,14 +172,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 233.539085 - 0: The maximum resident set size (KB) = 1741480 + 0: The total amount of wall time = 244.547852 + 0: The maximum resident set size (KB) = 1727740 Test 002 cpld_control_gfsv17 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/cpld_control_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -244,14 +244,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 352.801415 - 0: The maximum resident set size (KB) = 3177032 + 0: The total amount of wall time = 361.417160 + 0: The maximum resident set size (KB) = 3180800 Test 003 cpld_control_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/cpld_restart_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -304,14 +304,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 202.256994 - 0: The maximum resident set size (KB) = 3048784 + 0: The total amount of wall time = 202.589004 + 0: The maximum resident set size (KB) = 3052092 Test 004 cpld_restart_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/cpld_2threads_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -364,14 +364,14 @@ Checking test 005 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 413.420371 - 0: The maximum resident set size (KB) = 3508832 + 0: The total amount of wall time = 421.187433 + 0: The maximum resident set size (KB) = 3519944 Test 005 cpld_2threads_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/cpld_decomp_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/cpld_decomp_p8 Checking test 006 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -424,14 +424,14 @@ Checking test 006 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 354.401219 - 0: The maximum resident set size (KB) = 3169088 + 0: The total amount of wall time = 361.958999 + 0: The maximum resident set size (KB) = 3160804 Test 006 cpld_decomp_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/cpld_mpi_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/cpld_mpi_p8 Checking test 007 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -484,14 +484,14 @@ Checking test 007 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 285.383046 - 0: The maximum resident set size (KB) = 3025628 + 0: The total amount of wall time = 306.515149 + 0: The maximum resident set size (KB) = 3026268 Test 007 cpld_mpi_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_ciceC_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/cpld_control_ciceC_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_ciceC_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/cpld_control_ciceC_p8 Checking test 008 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -556,14 +556,14 @@ Checking test 008 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 348.467788 - 0: The maximum resident set size (KB) = 3174152 + 0: The total amount of wall time = 365.741000 + 0: The maximum resident set size (KB) = 3174492 Test 008 cpld_control_ciceC_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/cpld_control_c192_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_c192_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/cpld_control_c192_p8 Checking test 009 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -616,14 +616,14 @@ Checking test 009 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 647.228225 - 0: The maximum resident set size (KB) = 3257424 + 0: The total amount of wall time = 674.367997 + 0: The maximum resident set size (KB) = 3178892 Test 009 cpld_control_c192_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/cpld_restart_c192_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_c192_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/cpld_restart_c192_p8 Checking test 010 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -676,14 +676,14 @@ Checking test 010 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 487.286846 - 0: The maximum resident set size (KB) = 3156864 + 0: The total amount of wall time = 461.727173 + 0: The maximum resident set size (KB) = 3159524 Test 010 cpld_restart_c192_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_bmark_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/cpld_bmark_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_bmark_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/cpld_bmark_p8 Checking test 011 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -731,14 +731,14 @@ Checking test 011 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1194.547287 - 0: The maximum resident set size (KB) = 4041776 + 0: The total amount of wall time = 866.129192 + 0: The maximum resident set size (KB) = 4038972 Test 011 cpld_bmark_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_bmark_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/cpld_restart_bmark_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_bmark_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/cpld_restart_bmark_p8 Checking test 012 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -786,14 +786,14 @@ Checking test 012 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 781.997574 - 0: The maximum resident set size (KB) = 3976124 + 0: The total amount of wall time = 551.743860 + 0: The maximum resident set size (KB) = 3970412 Test 012 cpld_restart_bmark_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/cpld_control_noaero_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_noaero_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/cpld_control_noaero_p8 Checking test 013 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -857,14 +857,14 @@ Checking test 013 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 254.797473 - 0: The maximum resident set size (KB) = 1723868 + 0: The total amount of wall time = 255.396024 + 0: The maximum resident set size (KB) = 1715592 Test 013 cpld_control_noaero_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c96_noaero_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/cpld_control_nowave_noaero_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_c96_noaero_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/cpld_control_nowave_noaero_p8 Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -926,14 +926,14 @@ Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 272.152859 - 0: The maximum resident set size (KB) = 1755640 + 0: The total amount of wall time = 274.054717 + 0: The maximum resident set size (KB) = 1760448 Test 014 cpld_control_nowave_noaero_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_debug_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/cpld_debug_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_debug_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/cpld_debug_p8 Checking test 015 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -986,14 +986,14 @@ Checking test 015 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1007.827329 - 0: The maximum resident set size (KB) = 3247732 + 0: The total amount of wall time = 700.629007 + 0: The maximum resident set size (KB) = 3249684 Test 015 cpld_debug_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_debug_noaero_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/cpld_debug_noaero_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_debug_noaero_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/cpld_debug_noaero_p8 Checking test 016 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1045,14 +1045,14 @@ Checking test 016 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 763.765286 - 0: The maximum resident set size (KB) = 1744704 + 0: The total amount of wall time = 431.892072 + 0: The maximum resident set size (KB) = 1744740 Test 016 cpld_debug_noaero_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8_agrid -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/cpld_control_noaero_p8_agrid +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_noaero_p8_agrid +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/cpld_control_noaero_p8_agrid Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1114,14 +1114,14 @@ Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 574.448649 - 0: The maximum resident set size (KB) = 1770212 + 0: The total amount of wall time = 270.731096 + 0: The maximum resident set size (KB) = 1765212 Test 017 cpld_control_noaero_p8_agrid PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c48 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/cpld_control_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_c48 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/cpld_control_c48 Checking test 018 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1171,14 +1171,14 @@ Checking test 018 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 740.279718 - 0: The maximum resident set size (KB) = 2807528 + 0: The total amount of wall time = 498.790459 + 0: The maximum resident set size (KB) = 2808528 Test 018 cpld_control_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/cpld_warmstart_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_warmstart_c48 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/cpld_warmstart_c48 Checking test 019 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1228,14 +1228,14 @@ Checking test 019 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 434.485333 - 0: The maximum resident set size (KB) = 2804348 + 0: The total amount of wall time = 137.551631 + 0: The maximum resident set size (KB) = 2789064 Test 019 cpld_warmstart_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/cpld_restart_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_warmstart_c48 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/cpld_restart_c48 Checking test 020 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1285,14 +1285,14 @@ Checking test 020 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 75.461431 - 0: The maximum resident set size (KB) = 2248912 + 0: The total amount of wall time = 79.763115 + 0: The maximum resident set size (KB) = 2246828 Test 020 cpld_restart_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_faster -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/cpld_control_p8_faster +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8_faster +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/cpld_control_p8_faster Checking test 021 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1357,14 +1357,14 @@ Checking test 021 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 325.990741 - 0: The maximum resident set size (KB) = 3179640 + 0: The total amount of wall time = 338.425941 + 0: The maximum resident set size (KB) = 3180484 Test 021 cpld_control_p8_faster PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/control_CubedSphereGrid +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_CubedSphereGrid +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/control_CubedSphereGrid Checking test 022 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1391,28 +1391,28 @@ Checking test 022 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 131.674262 - 0: The maximum resident set size (KB) = 635724 + 0: The total amount of wall time = 131.259652 + 0: The maximum resident set size (KB) = 632824 Test 022 control_CubedSphereGrid PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid_parallel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/control_CubedSphereGrid_parallel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_CubedSphereGrid_parallel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/control_CubedSphereGrid_parallel Checking test 023 control_CubedSphereGrid_parallel results .... 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 = 408.786933 - 0: The maximum resident set size (KB) = 632976 + 0: The total amount of wall time = 127.487491 + 0: The maximum resident set size (KB) = 629584 Test 023 control_CubedSphereGrid_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_latlon -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/control_latlon +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_latlon +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/control_latlon Checking test 024 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1423,32 +1423,32 @@ Checking test 024 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 431.146773 - 0: The maximum resident set size (KB) = 633488 + 0: The total amount of wall time = 134.011394 + 0: The maximum resident set size (KB) = 630748 Test 024 control_latlon PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/control_wrtGauss_netcdf_parallel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_wrtGauss_netcdf_parallel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/control_wrtGauss_netcdf_parallel Checking test 025 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 411.786100 - 0: The maximum resident set size (KB) = 628752 + 0: The total amount of wall time = 138.122874 + 0: The maximum resident set size (KB) = 633072 Test 025 control_wrtGauss_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c48 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/control_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_c48 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/control_c48 Checking test 026 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1487,14 +1487,14 @@ Checking test 026 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 611.849643 -0: The maximum resident set size (KB) = 815684 +0: The total amount of wall time = 350.062739 +0: The maximum resident set size (KB) = 819584 Test 026 control_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c192 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/control_c192 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_c192 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/control_c192 Checking test 027 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1505,14 +1505,14 @@ Checking test 027 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 825.219656 - 0: The maximum resident set size (KB) = 763208 + 0: The total amount of wall time = 531.877821 + 0: The maximum resident set size (KB) = 763992 Test 027 control_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/control_c384 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_c384 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/control_c384 Checking test 028 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1523,14 +1523,14 @@ Checking test 028 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 900.323554 - 0: The maximum resident set size (KB) = 1216456 + 0: The total amount of wall time = 594.353328 + 0: The maximum resident set size (KB) = 1223984 Test 028 control_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384gdas -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/control_c384gdas +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_c384gdas +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/control_c384gdas Checking test 029 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1573,14 +1573,14 @@ Checking test 029 control_c384gdas 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 = 824.053975 - 0: The maximum resident set size (KB) = 1331792 + 0: The total amount of wall time = 526.678599 + 0: The maximum resident set size (KB) = 1339064 Test 029 control_c384gdas PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/control_stochy +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_stochy +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/control_stochy Checking test 030 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1591,28 +1591,28 @@ Checking test 030 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 86.899779 - 0: The maximum resident set size (KB) = 631644 + 0: The total amount of wall time = 87.206975 + 0: The maximum resident set size (KB) = 639532 Test 030 control_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/control_stochy_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_stochy +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/control_stochy_restart Checking test 031 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 47.555681 - 0: The maximum resident set size (KB) = 481920 + 0: The total amount of wall time = 47.650448 + 0: The maximum resident set size (KB) = 485628 Test 031 control_stochy_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/control_lndp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_lndp +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/control_lndp Checking test 032 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1623,14 +1623,14 @@ Checking test 032 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 80.853377 - 0: The maximum resident set size (KB) = 633672 + 0: The total amount of wall time = 81.683881 + 0: The maximum resident set size (KB) = 639596 Test 032 control_lndp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr4 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/control_iovr4 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_iovr4 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/control_iovr4 Checking test 033 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1645,14 +1645,14 @@ Checking test 033 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 454.702933 - 0: The maximum resident set size (KB) = 630748 + 0: The total amount of wall time = 135.624308 + 0: The maximum resident set size (KB) = 631228 Test 033 control_iovr4 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr5 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/control_iovr5 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_iovr5 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/control_iovr5 Checking test 034 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1667,14 +1667,14 @@ Checking test 034 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.723096 - 0: The maximum resident set size (KB) = 627708 + 0: The total amount of wall time = 136.646374 + 0: The maximum resident set size (KB) = 629568 Test 034 control_iovr5 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/control_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/control_p8 Checking test 035 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1721,14 +1721,14 @@ Checking test 035 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 471.847794 - 0: The maximum resident set size (KB) = 1600804 + 0: The total amount of wall time = 167.035693 + 0: The maximum resident set size (KB) = 1614188 Test 035 control_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_lndp -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/control_p8_lndp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8_lndp +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/control_p8_lndp Checking test 036 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1747,14 +1747,14 @@ Checking test 036 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 603.865189 - 0: The maximum resident set size (KB) = 1608460 + 0: The total amount of wall time = 310.904044 + 0: The maximum resident set size (KB) = 1594920 Test 036 control_p8_lndp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/control_restart_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/control_restart_p8 Checking test 037 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1793,14 +1793,14 @@ Checking test 037 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 87.906951 - 0: The maximum resident set size (KB) = 870204 + 0: The total amount of wall time = 88.495632 + 0: The maximum resident set size (KB) = 878184 Test 037 control_restart_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/control_decomp_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/control_decomp_p8 Checking test 038 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1843,14 +1843,14 @@ Checking test 038 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 476.513541 - 0: The maximum resident set size (KB) = 1588964 + 0: The total amount of wall time = 173.352828 + 0: The maximum resident set size (KB) = 1598136 Test 038 control_decomp_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/control_2threads_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/control_2threads_p8 Checking test 039 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1893,14 +1893,14 @@ Checking test 039 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 490.833851 - 0: The maximum resident set size (KB) = 1697760 + 0: The total amount of wall time = 181.576334 + 0: The maximum resident set size (KB) = 1680960 Test 039 control_2threads_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_rrtmgp -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/control_p8_rrtmgp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8_rrtmgp +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/control_p8_rrtmgp Checking test 040 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1947,14 +1947,14 @@ Checking test 040 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 515.358922 - 0: The maximum resident set size (KB) = 1677296 + 0: The total amount of wall time = 226.508146 + 0: The maximum resident set size (KB) = 1676936 Test 040 control_p8_rrtmgp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/merra2_thompson -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/merra2_thompson +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/merra2_thompson +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/merra2_thompson Checking test 041 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2001,14 +2001,14 @@ Checking test 041 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 486.286077 - 0: The maximum resident set size (KB) = 1613920 + 0: The total amount of wall time = 188.847531 + 0: The maximum resident set size (KB) = 1610980 Test 041 merra2_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/regional_control +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/regional_control Checking test 042 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2019,28 +2019,28 @@ Checking test 042 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 584.121649 - 0: The maximum resident set size (KB) = 853592 + 0: The total amount of wall time = 294.862531 + 0: The maximum resident set size (KB) = 871212 Test 042 regional_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/regional_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/regional_restart Checking test 043 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 151.569378 - 0: The maximum resident set size (KB) = 863016 + 0: The total amount of wall time = 155.122644 + 0: The maximum resident set size (KB) = 862112 Test 043 regional_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/regional_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/regional_decomp Checking test 044 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2051,14 +2051,14 @@ Checking test 044 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 610.526322 - 0: The maximum resident set size (KB) = 858952 + 0: The total amount of wall time = 315.030280 + 0: The maximum resident set size (KB) = 859388 Test 044 regional_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/regional_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/regional_2threads Checking test 045 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2069,14 +2069,14 @@ Checking test 045 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 504.239299 - 0: The maximum resident set size (KB) = 846572 + 0: The total amount of wall time = 210.308058 + 0: The maximum resident set size (KB) = 840308 Test 045 regional_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_noquilt -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/regional_noquilt +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_noquilt +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/regional_noquilt Checking test 046 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2084,28 +2084,28 @@ Checking test 046 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 602.364514 - 0: The maximum resident set size (KB) = 860764 + 0: The total amount of wall time = 319.253972 + 0: The maximum resident set size (KB) = 861396 Test 046 regional_noquilt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_netcdf_parallel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/regional_netcdf_parallel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_netcdf_parallel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/regional_netcdf_parallel Checking test 047 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 575.600169 - 0: The maximum resident set size (KB) = 858352 + 0: The total amount of wall time = 293.317260 + 0: The maximum resident set size (KB) = 863308 Test 047 regional_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/regional_2dwrtdecomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/regional_2dwrtdecomp Checking test 048 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2116,14 +2116,14 @@ Checking test 048 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 602.806528 - 0: The maximum resident set size (KB) = 856464 + 0: The total amount of wall time = 297.722317 + 0: The maximum resident set size (KB) = 862432 Test 048 regional_2dwrtdecomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/fv3_regional_wofs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/regional_wofs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/fv3_regional_wofs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/regional_wofs Checking test 049 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2134,14 +2134,14 @@ Checking test 049 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 670.589152 - 0: The maximum resident set size (KB) = 614576 + 0: The total amount of wall time = 375.210174 + 0: The maximum resident set size (KB) = 626908 Test 049 regional_wofs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/rap_control +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/rap_control Checking test 050 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2188,14 +2188,14 @@ Checking test 050 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 464.846017 - 0: The maximum resident set size (KB) = 1059992 + 0: The total amount of wall time = 465.678053 + 0: The maximum resident set size (KB) = 1060816 Test 050 rap_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/regional_spp_sppt_shum_skeb +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_spp_sppt_shum_skeb +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/regional_spp_sppt_shum_skeb Checking test 051 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2206,14 +2206,14 @@ Checking test 051 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 326.357196 - 0: The maximum resident set size (KB) = 1192752 + 0: The total amount of wall time = 332.224530 + 0: The maximum resident set size (KB) = 1185912 Test 051 regional_spp_sppt_shum_skeb PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/rap_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/rap_decomp Checking test 052 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2260,14 +2260,14 @@ Checking test 052 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 480.202775 - 0: The maximum resident set size (KB) = 1006200 + 0: The total amount of wall time = 484.691353 + 0: The maximum resident set size (KB) = 1006516 Test 052 rap_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/rap_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/rap_2threads Checking test 053 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2314,14 +2314,14 @@ Checking test 053 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 478.898585 - 0: The maximum resident set size (KB) = 1139472 + 0: The total amount of wall time = 484.911306 + 0: The maximum resident set size (KB) = 1148608 Test 053 rap_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/rap_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/rap_restart Checking test 054 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2360,14 +2360,14 @@ Checking test 054 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 570.202275 - 0: The maximum resident set size (KB) = 964600 + 0: The total amount of wall time = 232.303912 + 0: The maximum resident set size (KB) = 971348 Test 054 rap_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/rap_sfcdiff +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_sfcdiff +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/rap_sfcdiff Checking test 055 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2414,14 +2414,14 @@ Checking test 055 rap_sfcdiff results .... Comparing 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.104206 - 0: The maximum resident set size (KB) = 1063856 + 0: The total amount of wall time = 464.075998 + 0: The maximum resident set size (KB) = 1065156 Test 055 rap_sfcdiff PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/rap_sfcdiff_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_sfcdiff +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/rap_sfcdiff_decomp Checking test 056 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2468,14 +2468,14 @@ Checking test 056 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 479.934239 - 0: The maximum resident set size (KB) = 1007208 + 0: The total amount of wall time = 485.342782 + 0: The maximum resident set size (KB) = 1012480 Test 056 rap_sfcdiff_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/rap_sfcdiff_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_sfcdiff +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/rap_sfcdiff_restart Checking test 057 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2514,14 +2514,14 @@ Checking test 057 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 357.539713 - 0: The maximum resident set size (KB) = 998180 + 0: The total amount of wall time = 343.566783 + 0: The maximum resident set size (KB) = 989708 Test 057 rap_sfcdiff_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/hrrr_control +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/hrrr_control Checking test 058 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2568,14 +2568,14 @@ Checking test 058 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 433.524343 - 0: The maximum resident set size (KB) = 1059900 + 0: The total amount of wall time = 445.439904 + 0: The maximum resident set size (KB) = 1060880 Test 058 hrrr_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/hrrr_control_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/hrrr_control_decomp Checking test 059 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2622,14 +2622,14 @@ Checking test 059 hrrr_control_decomp results .... Comparing 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.574918 - 0: The maximum resident set size (KB) = 1001292 + 0: The total amount of wall time = 465.844448 + 0: The maximum resident set size (KB) = 1003668 Test 059 hrrr_control_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/hrrr_control_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/hrrr_control_2threads Checking test 060 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2676,14 +2676,14 @@ Checking test 060 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 453.328925 - 0: The maximum resident set size (KB) = 1147184 + 0: The total amount of wall time = 463.769097 + 0: The maximum resident set size (KB) = 1133784 Test 060 hrrr_control_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/hrrr_control_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/hrrr_control_restart Checking test 061 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2722,14 +2722,14 @@ Checking test 061 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 333.831990 - 0: The maximum resident set size (KB) = 986336 + 0: The total amount of wall time = 332.387744 + 0: The maximum resident set size (KB) = 984944 Test 061 hrrr_control_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/rrfs_v1beta +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_v1beta +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/rrfs_v1beta Checking test 062 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2776,14 +2776,14 @@ Checking test 062 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 448.297210 - 0: The maximum resident set size (KB) = 1055140 + 0: The total amount of wall time = 450.853832 + 0: The maximum resident set size (KB) = 1058356 Test 062 rrfs_v1beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/rrfs_v1nssl +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_v1nssl +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/rrfs_v1nssl Checking test 063 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2798,14 +2798,14 @@ Checking test 063 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 525.682554 - 0: The maximum resident set size (KB) = 693096 + 0: The total amount of wall time = 539.312560 + 0: The maximum resident set size (KB) = 692828 Test 063 rrfs_v1nssl PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/rrfs_v1nssl_nohailnoccn +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/rrfs_v1nssl_nohailnoccn Checking test 064 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2820,14 +2820,14 @@ Checking test 064 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 517.425482 - 0: The maximum resident set size (KB) = 774204 + 0: The total amount of wall time = 521.948326 + 0: The maximum resident set size (KB) = 758556 Test 064 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/rrfs_conus13km_hrrr_warm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_conus13km_hrrr_warm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/rrfs_conus13km_hrrr_warm Checking test 065 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2836,14 +2836,14 @@ Checking test 065 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 124.113762 - 0: The maximum resident set size (KB) = 930540 + 0: The total amount of wall time = 123.988699 + 0: The maximum resident set size (KB) = 928896 Test 065 rrfs_conus13km_hrrr_warm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/rrfs_smoke_conus13km_hrrr_warm Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2852,14 +2852,14 @@ Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 140.538082 - 0: The maximum resident set size (KB) = 959852 + 0: The total amount of wall time = 139.346178 + 0: The maximum resident set size (KB) = 957716 Test 066 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/rrfs_conus13km_radar_tten_warm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/rrfs_conus13km_radar_tten_warm Checking test 067 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2868,14 +2868,14 @@ Checking test 067 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 125.424912 - 0: The maximum resident set size (KB) = 934580 + 0: The total amount of wall time = 124.024825 + 0: The maximum resident set size (KB) = 936848 Test 067 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/rrfs_conus13km_hrrr_warm_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_conus13km_hrrr_warm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/rrfs_conus13km_hrrr_warm_2threads Checking test 068 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2884,14 +2884,14 @@ Checking test 068 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 85.577351 - 0: The maximum resident set size (KB) = 845384 + 0: The total amount of wall time = 84.515441 + 0: The maximum resident set size (KB) = 885544 Test 068 rrfs_conus13km_hrrr_warm_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/rrfs_conus13km_radar_tten_warm_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/rrfs_conus13km_radar_tten_warm_2threads Checking test 069 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2900,14 +2900,14 @@ Checking test 069 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 86.659496 - 0: The maximum resident set size (KB) = 891584 + 0: The total amount of wall time = 84.626056 + 0: The maximum resident set size (KB) = 853312 Test 069 rrfs_conus13km_radar_tten_warm_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/control_csawmg +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_csawmg +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/control_csawmg Checking test 070 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2918,14 +2918,14 @@ Checking test 070 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 344.139908 - 0: The maximum resident set size (KB) = 724648 + 0: The total amount of wall time = 341.746662 + 0: The maximum resident set size (KB) = 727200 Test 070 control_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/control_csawmgt +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_csawmgt +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/control_csawmgt Checking test 071 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2936,14 +2936,14 @@ Checking test 071 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 647.414502 - 0: The maximum resident set size (KB) = 730564 + 0: The total amount of wall time = 341.806155 + 0: The maximum resident set size (KB) = 732604 Test 071 control_csawmgt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/control_ras +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_ras +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/control_ras Checking test 072 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2954,26 +2954,26 @@ Checking test 072 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 180.909572 - 0: The maximum resident set size (KB) = 713396 + 0: The total amount of wall time = 182.220714 + 0: The maximum resident set size (KB) = 724020 Test 072 control_ras PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/control_wam +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_wam +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/control_wam Checking test 073 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 112.922827 - 0: The maximum resident set size (KB) = 645732 + 0: The total amount of wall time = 112.303751 + 0: The maximum resident set size (KB) = 638644 Test 073 control_wam PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_faster -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/control_p8_faster +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8_faster +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/control_p8_faster Checking test 074 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3020,14 +3020,14 @@ Checking test 074 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 150.899779 - 0: The maximum resident set size (KB) = 1600536 + 0: The total amount of wall time = 155.237801 + 0: The maximum resident set size (KB) = 1610820 Test 074 control_p8_faster PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control_faster -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/regional_control_faster +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_control_faster +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/regional_control_faster Checking test 075 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3038,42 +3038,42 @@ Checking test 075 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 271.726065 - 0: The maximum resident set size (KB) = 832068 + 0: The total amount of wall time = 272.385181 + 0: The maximum resident set size (KB) = 871496 Test 075 regional_control_faster PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/rrfs_conus13km_hrrr_warm_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/rrfs_conus13km_hrrr_warm_debug Checking test 076 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 1040.608618 - 0: The maximum resident set size (KB) = 952904 + 0: The total amount of wall time = 754.793767 + 0: The maximum resident set size (KB) = 958200 Test 076 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/rrfs_conus13km_radar_tten_warm_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_conus13km_radar_tten_warm_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/rrfs_conus13km_radar_tten_warm_debug Checking test 077 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 1021.146911 - 0: The maximum resident set size (KB) = 967524 + 0: The total amount of wall time = 738.674992 + 0: The maximum resident set size (KB) = 970124 Test 077 rrfs_conus13km_radar_tten_warm_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/control_CubedSphereGrid_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_CubedSphereGrid_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/control_CubedSphereGrid_debug Checking test 078 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3100,334 +3100,334 @@ Checking test 078 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 169.802321 - 0: The maximum resident set size (KB) = 790720 + 0: The total amount of wall time = 169.653752 + 0: The maximum resident set size (KB) = 796116 Test 078 control_CubedSphereGrid_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/control_wrtGauss_netcdf_parallel_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/control_wrtGauss_netcdf_parallel_debug Checking test 079 control_wrtGauss_netcdf_parallel_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc ............ALT CHECK......OK + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 159.837391 - 0: The maximum resident set size (KB) = 795540 + 0: The total amount of wall time = 156.627527 + 0: The maximum resident set size (KB) = 792612 Test 079 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/control_stochy_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_stochy_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/control_stochy_debug Checking test 080 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 177.381534 - 0: The maximum resident set size (KB) = 806248 + 0: The total amount of wall time = 180.793511 + 0: The maximum resident set size (KB) = 798468 Test 080 control_stochy_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/control_lndp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_lndp_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/control_lndp_debug Checking test 081 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 162.785468 - 0: The maximum resident set size (KB) = 800844 + 0: The total amount of wall time = 165.861968 + 0: The maximum resident set size (KB) = 800588 Test 081 control_lndp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/control_csawmg_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_csawmg_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/control_csawmg_debug Checking test 082 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 563.756338 - 0: The maximum resident set size (KB) = 849620 + 0: The total amount of wall time = 245.710229 + 0: The maximum resident set size (KB) = 848140 Test 082 control_csawmg_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/control_csawmgt_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_csawmgt_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/control_csawmgt_debug Checking test 083 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 553.153365 - 0: The maximum resident set size (KB) = 845080 + 0: The total amount of wall time = 243.953229 + 0: The maximum resident set size (KB) = 846476 Test 083 control_csawmgt_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/control_ras_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_ras_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/control_ras_debug Checking test 084 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 162.234038 - 0: The maximum resident set size (KB) = 808928 + 0: The total amount of wall time = 164.997008 + 0: The maximum resident set size (KB) = 804320 Test 084 control_ras_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_diag_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/control_diag_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_diag_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/control_diag_debug Checking test 085 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 168.560385 - 0: The maximum resident set size (KB) = 856292 + 0: The total amount of wall time = 167.275747 + 0: The maximum resident set size (KB) = 851716 Test 085 control_diag_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_debug_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/control_debug_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_debug_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/control_debug_p8 Checking test 086 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 447.279535 - 0: The maximum resident set size (KB) = 1621080 + 0: The total amount of wall time = 176.452572 + 0: The maximum resident set size (KB) = 1621144 Test 086 control_debug_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/regional_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/regional_debug Checking test 087 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1222.705280 - 0: The maximum resident set size (KB) = 890936 + 0: The total amount of wall time = 985.240902 + 0: The maximum resident set size (KB) = 891364 Test 087 regional_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/rap_control_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/rap_control_debug Checking test 088 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 319.584328 - 0: The maximum resident set size (KB) = 1172352 + 0: The total amount of wall time = 293.941455 + 0: The maximum resident set size (KB) = 1174864 Test 088 rap_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/hrrr_control_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/hrrr_control_debug Checking test 089 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 332.192686 - 0: The maximum resident set size (KB) = 1169420 + 0: The total amount of wall time = 282.386815 + 0: The maximum resident set size (KB) = 1174540 Test 089 hrrr_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/rap_unified_drag_suite_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/rap_unified_drag_suite_debug Checking test 090 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 293.591291 - 0: The maximum resident set size (KB) = 1175112 + 0: The total amount of wall time = 290.073830 + 0: The maximum resident set size (KB) = 1175380 Test 090 rap_unified_drag_suite_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_diag_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/rap_diag_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_diag_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/rap_diag_debug Checking test 091 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 339.044371 - 0: The maximum resident set size (KB) = 1259248 + 0: The total amount of wall time = 300.352081 + 0: The maximum resident set size (KB) = 1259496 Test 091 rap_diag_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/rap_cires_ugwp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_cires_ugwp_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/rap_cires_ugwp_debug Checking test 092 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 313.754636 - 0: The maximum resident set size (KB) = 1182656 + 0: The total amount of wall time = 292.041364 + 0: The maximum resident set size (KB) = 1185184 Test 092 rap_cires_ugwp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/rap_unified_ugwp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_cires_ugwp_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/rap_unified_ugwp_debug Checking test 093 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 307.119284 - 0: The maximum resident set size (KB) = 1175120 + 0: The total amount of wall time = 294.407681 + 0: The maximum resident set size (KB) = 1173328 Test 093 rap_unified_ugwp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_lndp_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/rap_lndp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_lndp_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/rap_lndp_debug Checking test 094 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 321.904322 - 0: The maximum resident set size (KB) = 1180344 + 0: The total amount of wall time = 307.355846 + 0: The maximum resident set size (KB) = 1176652 Test 094 rap_lndp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_flake_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/rap_flake_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_flake_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/rap_flake_debug Checking test 095 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 320.978611 - 0: The maximum resident set size (KB) = 1178560 + 0: The total amount of wall time = 288.646894 + 0: The maximum resident set size (KB) = 1177060 Test 095 rap_flake_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_progcld_thompson_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/rap_progcld_thompson_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_progcld_thompson_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/rap_progcld_thompson_debug Checking test 096 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 307.106093 - 0: The maximum resident set size (KB) = 1179316 + 0: The total amount of wall time = 286.290998 + 0: The maximum resident set size (KB) = 1174492 Test 096 rap_progcld_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/rap_noah_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_noah_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/rap_noah_debug Checking test 097 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 308.815678 - 0: The maximum resident set size (KB) = 1176516 + 0: The total amount of wall time = 282.840916 + 0: The maximum resident set size (KB) = 1177028 Test 097 rap_noah_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/rap_sfcdiff_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_sfcdiff_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/rap_sfcdiff_debug Checking test 098 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 322.829997 - 0: The maximum resident set size (KB) = 1178012 + 0: The total amount of wall time = 281.513958 + 0: The maximum resident set size (KB) = 1177872 Test 098 rap_sfcdiff_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/rap_noah_sfcdiff_cires_ugwp_debug Checking test 099 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 497.853331 - 0: The maximum resident set size (KB) = 1176880 + 0: The total amount of wall time = 469.382781 + 0: The maximum resident set size (KB) = 1168632 Test 099 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/rrfs_v1beta_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_v1beta_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/rrfs_v1beta_debug Checking test 100 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 288.049290 - 0: The maximum resident set size (KB) = 1169588 + 0: The total amount of wall time = 284.314012 + 0: The maximum resident set size (KB) = 1176244 Test 100 rrfs_v1beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/control_wam_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_wam_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/control_wam_debug Checking test 101 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 295.558325 - 0: The maximum resident set size (KB) = 527256 + 0: The total amount of wall time = 292.906480 + 0: The maximum resident set size (KB) = 530868 Test 101 control_wam_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 102 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3438,14 +3438,14 @@ Checking test 102 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 309.214242 - 0: The maximum resident set size (KB) = 1081548 + 0: The total amount of wall time = 307.777878 + 0: The maximum resident set size (KB) = 1078952 Test 102 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/rap_control_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/rap_control_dyn32_phy32 Checking test 103 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3492,14 +3492,14 @@ Checking test 103 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 384.113275 - 0: The maximum resident set size (KB) = 1001604 + 0: The total amount of wall time = 367.990790 + 0: The maximum resident set size (KB) = 1001176 Test 103 rap_control_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/hrrr_control_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/hrrr_control_dyn32_phy32 Checking test 104 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3546,14 +3546,14 @@ Checking test 104 hrrr_control_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 212.437700 - 0: The maximum resident set size (KB) = 950880 + 0: The total amount of wall time = 196.205707 + 0: The maximum resident set size (KB) = 965116 Test 104 hrrr_control_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/rap_2threads_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/rap_2threads_dyn32_phy32 Checking test 105 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3600,14 +3600,14 @@ Checking test 105 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 409.579470 - 0: The maximum resident set size (KB) = 1022788 + 0: The total amount of wall time = 391.783410 + 0: The maximum resident set size (KB) = 1019896 Test 105 rap_2threads_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/hrrr_control_2threads_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/hrrr_control_2threads_dyn32_phy32 Checking test 106 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3654,14 +3654,14 @@ Checking test 106 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 219.178477 - 0: The maximum resident set size (KB) = 1004552 + 0: The total amount of wall time = 208.273007 + 0: The maximum resident set size (KB) = 1012780 Test 106 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/hrrr_control_decomp_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/hrrr_control_decomp_dyn32_phy32 Checking test 107 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3708,14 +3708,14 @@ Checking test 107 hrrr_control_decomp_dyn32_phy32 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 = 220.563684 - 0: The maximum resident set size (KB) = 896636 + 0: The total amount of wall time = 207.652751 + 0: The maximum resident set size (KB) = 899564 Test 107 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/rap_restart_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/rap_restart_dyn32_phy32 Checking test 108 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3754,14 +3754,14 @@ Checking test 108 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 280.566264 - 0: The maximum resident set size (KB) = 941192 + 0: The total amount of wall time = 280.144149 + 0: The maximum resident set size (KB) = 947940 Test 108 rap_restart_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/hrrr_control_restart_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/hrrr_control_restart_dyn32_phy32 Checking test 109 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3800,14 +3800,14 @@ Checking test 109 hrrr_control_restart_dyn32_phy32 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 = 106.206136 - 0: The maximum resident set size (KB) = 861008 + 0: The total amount of wall time = 103.723023 + 0: The maximum resident set size (KB) = 854208 Test 109 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn64_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/rap_control_dyn64_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_dyn64_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/rap_control_dyn64_phy32 Checking test 110 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3854,81 +3854,81 @@ Checking test 110 rap_control_dyn64_phy32 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 = 259.278039 - 0: The maximum resident set size (KB) = 969900 + 0: The total amount of wall time = 240.046127 + 0: The maximum resident set size (KB) = 965580 Test 110 rap_control_dyn64_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/rap_control_debug_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_debug_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/rap_control_debug_dyn32_phy32 Checking test 111 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 298.457827 - 0: The maximum resident set size (KB) = 1057476 + 0: The total amount of wall time = 287.058119 + 0: The maximum resident set size (KB) = 1065328 Test 111 rap_control_debug_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/hrrr_control_debug_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/hrrr_control_debug_dyn32_phy32 Checking test 112 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 296.085798 - 0: The maximum resident set size (KB) = 1061284 + 0: The total amount of wall time = 284.661294 + 0: The maximum resident set size (KB) = 1061660 Test 112 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn64_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/rap_control_dyn64_phy32_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_debug_dyn64_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/rap_control_dyn64_phy32_debug Checking test 113 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 289.866492 - 0: The maximum resident set size (KB) = 1109804 + 0: The total amount of wall time = 296.261488 + 0: The maximum resident set size (KB) = 1104016 Test 113 rap_control_dyn64_phy32_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/hafs_regional_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_atm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/hafs_regional_atm Checking test 114 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 275.246803 - 0: The maximum resident set size (KB) = 1057608 + 0: The total amount of wall time = 267.718781 + 0: The maximum resident set size (KB) = 1053968 Test 114 hafs_regional_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/hafs_regional_atm_thompson_gfdlsf +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/hafs_regional_atm_thompson_gfdlsf Checking test 115 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 414.016219 - 0: The maximum resident set size (KB) = 1424368 + 0: The total amount of wall time = 440.306895 + 0: The maximum resident set size (KB) = 1424236 Test 115 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/hafs_regional_atm_ocn +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_atm_ocn +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/hafs_regional_atm_ocn Checking test 116 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3937,14 +3937,14 @@ Checking test 116 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 382.231193 - 0: The maximum resident set size (KB) = 1226220 + 0: The total amount of wall time = 376.743364 + 0: The maximum resident set size (KB) = 1228076 Test 116 hafs_regional_atm_ocn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_wav -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/hafs_regional_atm_wav +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_atm_wav +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/hafs_regional_atm_wav Checking test 117 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3953,14 +3953,14 @@ Checking test 117 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 964.969047 - 0: The maximum resident set size (KB) = 1256176 + 0: The total amount of wall time = 724.520241 + 0: The maximum resident set size (KB) = 1253452 Test 117 hafs_regional_atm_wav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn_wav -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/hafs_regional_atm_ocn_wav +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_atm_ocn_wav +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/hafs_regional_atm_ocn_wav Checking test 118 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3971,28 +3971,28 @@ Checking test 118 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 1054.626093 - 0: The maximum resident set size (KB) = 1260900 + 0: The total amount of wall time = 829.605744 + 0: The maximum resident set size (KB) = 1276740 Test 118 hafs_regional_atm_ocn_wav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_1nest_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/hafs_regional_1nest_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_1nest_atm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/hafs_regional_1nest_atm Checking test 119 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 371.094001 - 0: The maximum resident set size (KB) = 512148 + 0: The total amount of wall time = 366.711550 + 0: The maximum resident set size (KB) = 513072 Test 119 hafs_regional_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/hafs_regional_telescopic_2nests_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/hafs_regional_telescopic_2nests_atm Checking test 120 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4001,28 +4001,28 @@ Checking test 120 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 424.318745 - 0: The maximum resident set size (KB) = 519520 + 0: The total amount of wall time = 424.103560 + 0: The maximum resident set size (KB) = 513808 Test 120 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_1nest_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/hafs_global_1nest_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_global_1nest_atm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/hafs_global_1nest_atm Checking test 121 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 175.177976 - 0: The maximum resident set size (KB) = 354456 + 0: The total amount of wall time = 174.276508 + 0: The maximum resident set size (KB) = 351008 Test 121 hafs_global_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_multiple_4nests_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/hafs_global_multiple_4nests_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_global_multiple_4nests_atm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/hafs_global_multiple_4nests_atm Checking test 122 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4040,14 +4040,14 @@ Checking test 122 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 472.008781 - 0: The maximum resident set size (KB) = 431740 + 0: The total amount of wall time = 484.121401 + 0: The maximum resident set size (KB) = 428372 Test 122 hafs_global_multiple_4nests_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/hafs_regional_specified_moving_1nest_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/hafs_regional_specified_moving_1nest_atm Checking test 123 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4056,28 +4056,28 @@ Checking test 123 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 230.918778 - 0: The maximum resident set size (KB) = 526840 + 0: The total amount of wall time = 230.625710 + 0: The maximum resident set size (KB) = 521272 Test 123 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/hafs_regional_storm_following_1nest_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/hafs_regional_storm_following_1nest_atm Checking test 124 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 223.375132 - 0: The maximum resident set size (KB) = 524128 + 0: The total amount of wall time = 219.429458 + 0: The maximum resident set size (KB) = 522484 Test 124 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/hafs_regional_storm_following_1nest_atm_ocn Checking test 125 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4086,42 +4086,42 @@ Checking test 125 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 289.265239 - 0: The maximum resident set size (KB) = 560628 + 0: The total amount of wall time = 289.240458 + 0: The maximum resident set size (KB) = 556668 Test 125 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_storm_following_1nest_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/hafs_global_storm_following_1nest_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_global_storm_following_1nest_atm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/hafs_global_storm_following_1nest_atm Checking test 126 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 75.466035 - 0: The maximum resident set size (KB) = 371568 + 0: The total amount of wall time = 68.810691 + 0: The maximum resident set size (KB) = 369560 Test 126 hafs_global_storm_following_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 127 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 1013.472967 - 0: The maximum resident set size (KB) = 581868 + 0: The total amount of wall time = 802.268897 + 0: The maximum resident set size (KB) = 584976 Test 127 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 128 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4132,14 +4132,14 @@ Checking test 128 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 758.735744 - 0: The maximum resident set size (KB) = 618876 + 0: The total amount of wall time = 584.879091 + 0: The maximum resident set size (KB) = 619968 Test 128 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_docn -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/hafs_regional_docn +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_docn +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/hafs_regional_docn Checking test 129 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4147,14 +4147,14 @@ Checking test 129 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 355.784405 - 0: The maximum resident set size (KB) = 1233972 + 0: The total amount of wall time = 365.142869 + 0: The maximum resident set size (KB) = 1236396 Test 129 hafs_regional_docn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_docn_oisst -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/hafs_regional_docn_oisst +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_docn_oisst +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/hafs_regional_docn_oisst Checking test 130 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4162,131 +4162,131 @@ Checking test 130 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 359.403881 - 0: The maximum resident set size (KB) = 1219828 + 0: The total amount of wall time = 360.089610 + 0: The maximum resident set size (KB) = 1215492 Test 130 hafs_regional_docn_oisst PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_datm_cdeps -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/hafs_regional_datm_cdeps +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_datm_cdeps +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/hafs_regional_datm_cdeps Checking test 131 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 1162.096318 - 0: The maximum resident set size (KB) = 1037728 + 0: The total amount of wall time = 934.359213 + 0: The maximum resident set size (KB) = 1038496 Test 131 hafs_regional_datm_cdeps PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/datm_cdeps_control_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/datm_cdeps_control_cfsr Checking test 132 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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.790593 - 0: The maximum resident set size (KB) = 1057040 + 0: The total amount of wall time = 151.800773 + 0: The maximum resident set size (KB) = 1065188 Test 132 datm_cdeps_control_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/datm_cdeps_restart_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/datm_cdeps_restart_cfsr Checking test 133 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 92.259178 - 0: The maximum resident set size (KB) = 1012104 + 0: The total amount of wall time = 120.141635 + 0: The maximum resident set size (KB) = 1023140 Test 133 datm_cdeps_restart_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_gefs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/datm_cdeps_control_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_control_gefs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/datm_cdeps_control_gefs Checking test 134 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 140.558750 - 0: The maximum resident set size (KB) = 963936 + 0: The total amount of wall time = 142.077504 + 0: The maximum resident set size (KB) = 964212 Test 134 datm_cdeps_control_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_iau_gefs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/datm_cdeps_iau_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_iau_gefs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/datm_cdeps_iau_gefs Checking test 135 datm_cdeps_iau_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.867276 - 0: The maximum resident set size (KB) = 978728 + 0: The total amount of wall time = 153.551770 + 0: The maximum resident set size (KB) = 964868 Test 135 datm_cdeps_iau_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_stochy_gefs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/datm_cdeps_stochy_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_stochy_gefs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/datm_cdeps_stochy_gefs Checking test 136 datm_cdeps_stochy_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 144.878543 - 0: The maximum resident set size (KB) = 961684 + 0: The total amount of wall time = 150.152743 + 0: The maximum resident set size (KB) = 969500 Test 136 datm_cdeps_stochy_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_ciceC_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/datm_cdeps_ciceC_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_ciceC_cfsr +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/datm_cdeps_ciceC_cfsr Checking test 137 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.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.303313 - 0: The maximum resident set size (KB) = 1071092 + 0: The total amount of wall time = 151.488525 + 0: The maximum resident set size (KB) = 1063084 Test 137 datm_cdeps_ciceC_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_bulk_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/datm_cdeps_bulk_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_bulk_cfsr +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/datm_cdeps_bulk_cfsr Checking test 138 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.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.868721 - 0: The maximum resident set size (KB) = 1071300 + 0: The total amount of wall time = 165.047412 + 0: The maximum resident set size (KB) = 1067188 Test 138 datm_cdeps_bulk_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_bulk_gefs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/datm_cdeps_bulk_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_bulk_gefs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/datm_cdeps_bulk_gefs Checking test 139 datm_cdeps_bulk_gefs 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.320840 - 0: The maximum resident set size (KB) = 936800 + 0: The total amount of wall time = 155.801203 + 0: The maximum resident set size (KB) = 964232 Test 139 datm_cdeps_bulk_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_mx025_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/datm_cdeps_mx025_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_mx025_cfsr +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/datm_cdeps_mx025_cfsr Checking test 140 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4295,14 +4295,14 @@ Checking test 140 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 658.564655 - 0: The maximum resident set size (KB) = 867376 + 0: The total amount of wall time = 475.270001 + 0: The maximum resident set size (KB) = 879280 Test 140 datm_cdeps_mx025_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_mx025_gefs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/datm_cdeps_mx025_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_mx025_gefs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/datm_cdeps_mx025_gefs Checking test 141 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4311,77 +4311,77 @@ Checking test 141 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 662.215253 - 0: The maximum resident set size (KB) = 932244 + 0: The total amount of wall time = 438.130921 + 0: The maximum resident set size (KB) = 926340 Test 141 datm_cdeps_mx025_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/datm_cdeps_multiple_files_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/datm_cdeps_multiple_files_cfsr Checking test 142 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 147.415870 - 0: The maximum resident set size (KB) = 1067500 + 0: The total amount of wall time = 152.688194 + 0: The maximum resident set size (KB) = 1051824 Test 142 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/datm_cdeps_3072x1536_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/datm_cdeps_3072x1536_cfsr Checking test 143 datm_cdeps_3072x1536_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 201.380752 - 0: The maximum resident set size (KB) = 2334364 + 0: The total amount of wall time = 206.620337 + 0: The maximum resident set size (KB) = 2309712 Test 143 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_gfs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/datm_cdeps_gfs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_gfs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/datm_cdeps_gfs Checking test 144 datm_cdeps_gfs 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 = 203.158203 - 0: The maximum resident set size (KB) = 2309036 + 0: The total amount of wall time = 205.970956 + 0: The maximum resident set size (KB) = 2301096 Test 144 datm_cdeps_gfs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_debug_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/datm_cdeps_debug_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_debug_cfsr +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/datm_cdeps_debug_cfsr Checking test 145 datm_cdeps_debug_cfsr 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 = 641.353706 - 0: The maximum resident set size (KB) = 1013268 + 0: The total amount of wall time = 447.175223 + 0: The maximum resident set size (KB) = 1014164 Test 145 datm_cdeps_debug_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr_faster -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/datm_cdeps_control_cfsr_faster +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_control_cfsr_faster +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/datm_cdeps_control_cfsr_faster Checking test 146 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.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.389318 - 0: The maximum resident set size (KB) = 1059344 + 0: The total amount of wall time = 151.724785 + 0: The maximum resident set size (KB) = 1082356 Test 146 datm_cdeps_control_cfsr_faster PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_lnd_gswp3 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/datm_cdeps_lnd_gswp3 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_lnd_gswp3 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/datm_cdeps_lnd_gswp3 Checking test 147 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4390,14 +4390,14 @@ Checking test 147 datm_cdeps_lnd_gswp3 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.991731 - 0: The maximum resident set size (KB) = 257408 + 0: The total amount of wall time = 15.342885 + 0: The maximum resident set size (KB) = 263744 Test 147 datm_cdeps_lnd_gswp3 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_lnd_gswp3 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/datm_cdeps_lnd_gswp3_rst +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_lnd_gswp3 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/datm_cdeps_lnd_gswp3_rst Checking test 148 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4406,14 +4406,14 @@ Checking test 148 datm_cdeps_lnd_gswp3_rst 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 = 14.882550 - 0: The maximum resident set size (KB) = 227812 + 0: The total amount of wall time = 13.891944 + 0: The maximum resident set size (KB) = 290872 Test 148 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_atmlnd_sbs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/control_p8_atmlnd_sbs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8_atmlnd_sbs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/control_p8_atmlnd_sbs Checking test 149 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4498,14 +4498,14 @@ Checking test 149 control_p8_atmlnd_sbs 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 = 442.709073 - 0: The maximum resident set size (KB) = 1606680 + 0: The total amount of wall time = 210.789822 + 0: The maximum resident set size (KB) = 1620340 Test 149 control_p8_atmlnd_sbs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_atmwav -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/control_atmwav +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_atmwav +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/control_atmwav Checking test 150 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4549,14 +4549,14 @@ Checking test 150 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 90.520558 - 0: The maximum resident set size (KB) = 665852 + 0: The total amount of wall time = 94.547879 + 0: The maximum resident set size (KB) = 658564 Test 150 control_atmwav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/atmaero_control_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/atmaero_control_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/atmaero_control_p8 Checking test 151 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4600,14 +4600,14 @@ Checking test 151 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 444.514228 - 0: The maximum resident set size (KB) = 2975896 + 0: The total amount of wall time = 230.235326 + 0: The maximum resident set size (KB) = 2972924 Test 151 atmaero_control_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/atmaero_control_p8_rad +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/atmaero_control_p8_rad +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/atmaero_control_p8_rad Checking test 152 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4651,14 +4651,14 @@ Checking test 152 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 508.629408 - 0: The maximum resident set size (KB) = 3048428 + 0: The total amount of wall time = 281.236645 + 0: The maximum resident set size (KB) = 3044204 Test 152 atmaero_control_p8_rad PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad_micro -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/atmaero_control_p8_rad_micro +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/atmaero_control_p8_rad_micro +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/atmaero_control_p8_rad_micro Checking test 153 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4702,14 +4702,14 @@ Checking test 153 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 517.107981 - 0: The maximum resident set size (KB) = 3055148 + 0: The total amount of wall time = 288.623619 + 0: The maximum resident set size (KB) = 3055124 Test 153 atmaero_control_p8_rad_micro PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/regional_atmaq +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_atmaq +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/regional_atmaq Checking test 154 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4725,14 +4725,14 @@ Checking test 154 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 644.052693 - 0: The maximum resident set size (KB) = 1385364 + 0: The total amount of wall time = 625.635444 + 0: The maximum resident set size (KB) = 1481036 Test 154 regional_atmaq PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/regional_atmaq_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_atmaq_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/regional_atmaq_debug Checking test 155 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4746,14 +4746,14 @@ Checking test 155 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1509.741810 - 0: The maximum resident set size (KB) = 1517904 + 0: The total amount of wall time = 1263.847090 + 0: The maximum resident set size (KB) = 1433408 -Test 155 regional_atmaq_debug PASS Tries: 2 +Test 155 regional_atmaq_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq_faster -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_283687/regional_atmaq_faster +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_atmaq_faster +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/regional_atmaq_faster Checking test 156 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4769,7 +4769,12 @@ Checking test 156 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 585.715134 - 0: The maximum resident set size (KB) = 1574784 + 0: The total amount of wall time = 543.705939 + 0: The maximum resident set size (KB) = 1485048 Test 156 regional_atmaq_faster PASS + + +REGRESSION TEST WAS SUCCESSFUL +Mon Mar 20 21:47:07 CDT 2023 +Elapsed time: 01h:14m:50s. Have a nice day! diff --git a/tests/RegressionTests_wcoss2.intel.log b/tests/RegressionTests_wcoss2.intel.log index 73f8b11105f..aaf03e8c17b 100644 --- a/tests/RegressionTests_wcoss2.intel.log +++ b/tests/RegressionTests_wcoss2.intel.log @@ -1,34 +1,34 @@ -Wed Mar 15 13:57:34 UTC 2023 +Tue Mar 21 01:22:34 UTC 2023 Start Regression test -Compile 001 elapsed time 1668 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 645 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 1058 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 1488 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 005 elapsed time 504 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 663 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 995 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 008 elapsed time 1106 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 494 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 488 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 1229 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 465 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 013 elapsed time 254 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 1121 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 015 elapsed time 545 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 271 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 017 elapsed time 304 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 609 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 019 elapsed time 395 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 1467 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 1081 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 022 elapsed time 882 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 783 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 024 elapsed time 706 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 025 elapsed time 670 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_mixedmode -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/cpld_control_p8_mixedmode +Compile 001 elapsed time 729 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1357 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 1134 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 738 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 005 elapsed time 497 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 660 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 1383 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 715 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 967 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 1259 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 1713 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 310 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 361 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 014 elapsed time 831 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 586 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 367 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 017 elapsed time 829 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 703 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 019 elapsed time 558 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 898 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 504 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 022 elapsed time 695 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 988 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 024 elapsed time 478 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 025 elapsed time 578 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8_mixedmode +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -93,14 +93,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 355.827465 -The maximum resident set size (KB) = 2953336 +The total amount of wall time = 375.013087 +The maximum resident set size (KB) = 2952660 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/cpld_control_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/cpld_control_p8 Checking test 002 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -165,14 +165,14 @@ Checking test 002 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 395.771644 -The maximum resident set size (KB) = 2983200 +The total amount of wall time = 400.958166 +The maximum resident set size (KB) = 2982100 Test 002 cpld_control_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/cpld_restart_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/cpld_restart_p8 Checking test 003 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -225,14 +225,14 @@ Checking test 003 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 236.638573 -The maximum resident set size (KB) = 2869448 +The total amount of wall time = 245.692816 +The maximum resident set size (KB) = 2866704 Test 003 cpld_restart_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/cpld_2threads_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/cpld_2threads_p8 Checking test 004 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -285,14 +285,14 @@ Checking test 004 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 378.492892 -The maximum resident set size (KB) = 3283672 +The total amount of wall time = 389.421159 +The maximum resident set size (KB) = 3284872 Test 004 cpld_2threads_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/cpld_decomp_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/cpld_decomp_p8 Checking test 005 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -345,14 +345,14 @@ Checking test 005 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 390.406951 -The maximum resident set size (KB) = 2978952 +The total amount of wall time = 395.965297 +The maximum resident set size (KB) = 2979460 Test 005 cpld_decomp_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/cpld_mpi_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/cpld_mpi_p8 Checking test 006 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -405,14 +405,14 @@ Checking test 006 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 333.670401 -The maximum resident set size (KB) = 2910908 +The total amount of wall time = 337.604785 +The maximum resident set size (KB) = 2908564 Test 006 cpld_mpi_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_ciceC_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/cpld_control_ciceC_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_ciceC_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/cpld_control_ciceC_p8 Checking test 007 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -477,14 +477,14 @@ Checking test 007 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 396.067862 -The maximum resident set size (KB) = 2986836 +The total amount of wall time = 407.055360 +The maximum resident set size (KB) = 2980488 Test 007 cpld_control_ciceC_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_bmark_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/cpld_bmark_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_bmark_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/cpld_bmark_p8 Checking test 008 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -532,14 +532,14 @@ Checking test 008 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 991.840962 -The maximum resident set size (KB) = 3920556 +The total amount of wall time = 964.790523 +The maximum resident set size (KB) = 3913560 Test 008 cpld_bmark_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_bmark_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/cpld_restart_bmark_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_bmark_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/cpld_restart_bmark_p8 Checking test 009 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -587,14 +587,14 @@ Checking test 009 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 662.639365 -The maximum resident set size (KB) = 3892200 +The total amount of wall time = 685.902177 +The maximum resident set size (KB) = 3890912 Test 009 cpld_restart_bmark_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/cpld_control_noaero_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/cpld_control_noaero_p8 Checking test 010 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -658,14 +658,14 @@ Checking test 010 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 289.736445 -The maximum resident set size (KB) = 1573672 +The total amount of wall time = 305.329785 +The maximum resident set size (KB) = 1578900 Test 010 cpld_control_noaero_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/cpld_control_nowave_noaero_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_c96_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/cpld_control_nowave_noaero_p8 Checking test 011 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -727,14 +727,14 @@ Checking test 011 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 303.612113 -The maximum resident set size (KB) = 1617920 +The total amount of wall time = 318.924167 +The maximum resident set size (KB) = 1631132 Test 011 cpld_control_nowave_noaero_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/cpld_control_noaero_p8_agrid +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_noaero_p8_agrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/cpld_control_noaero_p8_agrid Checking test 012 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -796,14 +796,14 @@ Checking test 012 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 313.895528 -The maximum resident set size (KB) = 1626340 +The total amount of wall time = 338.834932 +The maximum resident set size (KB) = 1632588 Test 012 cpld_control_noaero_p8_agrid PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/cpld_control_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/cpld_control_c48 Checking test 013 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -853,14 +853,14 @@ Checking test 013 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 438.284593 -The maximum resident set size (KB) = 2632380 +The total amount of wall time = 444.829953 +The maximum resident set size (KB) = 2629616 Test 013 cpld_control_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/cpld_warmstart_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/cpld_warmstart_c48 Checking test 014 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -910,14 +910,14 @@ Checking test 014 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 128.794484 -The maximum resident set size (KB) = 2649872 +The total amount of wall time = 134.259991 +The maximum resident set size (KB) = 2651176 Test 014 cpld_warmstart_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/cpld_restart_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/cpld_restart_c48 Checking test 015 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -967,14 +967,14 @@ Checking test 015 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 74.127090 -The maximum resident set size (KB) = 2070812 +The total amount of wall time = 90.387735 +The maximum resident set size (KB) = 2069552 Test 015 cpld_restart_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/cpld_control_p8_faster +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/cpld_control_p8_faster Checking test 016 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1039,14 +1039,14 @@ Checking test 016 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 395.887832 -The maximum resident set size (KB) = 2977464 +The total amount of wall time = 393.344380 +The maximum resident set size (KB) = 2979584 Test 016 cpld_control_p8_faster PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/control_CubedSphereGrid +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_CubedSphereGrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/control_CubedSphereGrid Checking test 017 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1073,14 +1073,14 @@ Checking test 017 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 131.705668 -The maximum resident set size (KB) = 518108 +The total amount of wall time = 130.595602 +The maximum resident set size (KB) = 515792 Test 017 control_CubedSphereGrid PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_latlon -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/control_latlon +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_latlon +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/control_latlon Checking test 018 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1091,14 +1091,14 @@ Checking test 018 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 133.190960 -The maximum resident set size (KB) = 516556 +The total amount of wall time = 133.493886 +The maximum resident set size (KB) = 520752 Test 018 control_latlon PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/control_wrtGauss_netcdf_parallel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/control_wrtGauss_netcdf_parallel Checking test 019 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1109,14 +1109,14 @@ Checking test 019 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 134.704671 -The maximum resident set size (KB) = 520592 +The total amount of wall time = 136.883395 +The maximum resident set size (KB) = 516936 Test 019 control_wrtGauss_netcdf_parallel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/control_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/control_c48 Checking test 020 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1155,14 +1155,14 @@ Checking test 020 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 329.275589 -The maximum resident set size (KB) = 673784 +The total amount of wall time = 328.824094 +The maximum resident set size (KB) = 672692 Test 020 control_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c192 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/control_c192 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_c192 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/control_c192 Checking test 021 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1173,14 +1173,14 @@ Checking test 021 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 533.646748 -The maximum resident set size (KB) = 615740 +The total amount of wall time = 530.687155 +The maximum resident set size (KB) = 617200 Test 021 control_c192 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/control_c384 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_c384 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/control_c384 Checking test 022 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1191,14 +1191,14 @@ Checking test 022 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 580.490805 -The maximum resident set size (KB) = 910736 +The total amount of wall time = 592.985250 +The maximum resident set size (KB) = 911584 Test 022 control_c384 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384gdas -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/control_c384gdas +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_c384gdas +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/control_c384gdas Checking test 023 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1241,14 +1241,14 @@ Checking test 023 control_c384gdas results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 511.557999 -The maximum resident set size (KB) = 1044032 +The total amount of wall time = 510.845300 +The maximum resident set size (KB) = 1043676 Test 023 control_c384gdas PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/control_stochy +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/control_stochy Checking test 024 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1259,28 +1259,28 @@ Checking test 024 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 89.688479 -The maximum resident set size (KB) = 521476 +The total amount of wall time = 91.218955 +The maximum resident set size (KB) = 522740 Test 024 control_stochy PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/control_stochy_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/control_stochy_restart Checking test 025 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 53.485194 -The maximum resident set size (KB) = 299696 +The total amount of wall time = 50.018320 +The maximum resident set size (KB) = 295088 Test 025 control_stochy_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/control_lndp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/control_lndp Checking test 026 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1291,14 +1291,14 @@ Checking test 026 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 84.718976 -The maximum resident set size (KB) = 519844 +The total amount of wall time = 84.559148 +The maximum resident set size (KB) = 521300 Test 026 control_lndp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr4 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/control_iovr4 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_iovr4 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/control_iovr4 Checking test 027 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1313,14 +1313,14 @@ Checking test 027 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.946951 -The maximum resident set size (KB) = 523008 +The total amount of wall time = 136.971471 +The maximum resident set size (KB) = 519632 Test 027 control_iovr4 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr5 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/control_iovr5 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_iovr5 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/control_iovr5 Checking test 028 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1335,14 +1335,14 @@ Checking test 028 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 136.161120 -The maximum resident set size (KB) = 516164 +The total amount of wall time = 136.381664 +The maximum resident set size (KB) = 518968 Test 028 control_iovr5 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/control_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/control_p8 Checking test 029 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1389,14 +1389,14 @@ Checking test 029 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 185.236239 -The maximum resident set size (KB) = 1492788 +The total amount of wall time = 185.800970 +The maximum resident set size (KB) = 1488844 Test 029 control_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/control_p8_lndp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/control_p8_lndp Checking test 030 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1415,14 +1415,14 @@ Checking test 030 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 324.098172 -The maximum resident set size (KB) = 1487236 +The total amount of wall time = 331.163264 +The maximum resident set size (KB) = 1493400 Test 030 control_p8_lndp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/control_restart_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/control_restart_p8 Checking test 031 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1461,14 +1461,14 @@ Checking test 031 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 114.606402 -The maximum resident set size (KB) = 657884 +The total amount of wall time = 106.184008 +The maximum resident set size (KB) = 662048 Test 031 control_restart_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/control_decomp_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/control_decomp_p8 Checking test 032 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1511,14 +1511,14 @@ Checking test 032 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 185.339313 -The maximum resident set size (KB) = 1482888 +The total amount of wall time = 187.958185 +The maximum resident set size (KB) = 1485628 Test 032 control_decomp_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/control_2threads_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/control_2threads_p8 Checking test 033 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1561,14 +1561,14 @@ Checking test 033 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 165.717902 -The maximum resident set size (KB) = 1565040 +The total amount of wall time = 163.839547 +The maximum resident set size (KB) = 1567332 Test 033 control_2threads_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_rrtmgp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/control_p8_rrtmgp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8_rrtmgp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/control_p8_rrtmgp Checking test 034 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1615,14 +1615,14 @@ Checking test 034 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 239.288333 -The maximum resident set size (KB) = 1551308 +The total amount of wall time = 241.971082 +The maximum resident set size (KB) = 1558924 Test 034 control_p8_rrtmgp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/merra2_thompson -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/merra2_thompson +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/merra2_thompson +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/merra2_thompson Checking test 035 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1669,14 +1669,14 @@ Checking test 035 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 209.627673 -The maximum resident set size (KB) = 1490784 +The total amount of wall time = 212.079673 +The maximum resident set size (KB) = 1498772 Test 035 merra2_thompson PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/regional_control +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/regional_control Checking test 036 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1687,28 +1687,28 @@ Checking test 036 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 299.816644 -The maximum resident set size (KB) = 652592 +The total amount of wall time = 301.971609 +The maximum resident set size (KB) = 656532 Test 036 regional_control PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/regional_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/regional_restart Checking test 037 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 172.628552 -The maximum resident set size (KB) = 652784 +The total amount of wall time = 181.221607 +The maximum resident set size (KB) = 652416 Test 037 regional_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/regional_decomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/regional_decomp Checking test 038 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1719,14 +1719,14 @@ Checking test 038 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 308.245389 -The maximum resident set size (KB) = 651072 +The total amount of wall time = 316.012020 +The maximum resident set size (KB) = 657840 Test 038 regional_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/regional_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/regional_2threads Checking test 039 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1737,14 +1737,14 @@ Checking test 039 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 185.403282 -The maximum resident set size (KB) = 698520 +The total amount of wall time = 189.416741 +The maximum resident set size (KB) = 694340 Test 039 regional_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_noquilt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/regional_noquilt +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_noquilt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/regional_noquilt Checking test 040 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1752,28 +1752,28 @@ Checking test 040 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 320.706723 -The maximum resident set size (KB) = 645812 +The total amount of wall time = 326.151430 +The maximum resident set size (KB) = 648572 Test 040 regional_noquilt PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/regional_netcdf_parallel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/regional_netcdf_parallel Checking test 041 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK -The total amount of wall time = 287.792054 -The maximum resident set size (KB) = 648792 +The total amount of wall time = 297.237199 +The maximum resident set size (KB) = 652292 Test 041 regional_netcdf_parallel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/regional_2dwrtdecomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/regional_2dwrtdecomp Checking test 042 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1784,14 +1784,14 @@ Checking test 042 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 299.254906 -The maximum resident set size (KB) = 656808 +The total amount of wall time = 300.641715 +The maximum resident set size (KB) = 658392 Test 042 regional_2dwrtdecomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/fv3_regional_wofs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/regional_wofs +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/fv3_regional_wofs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/regional_wofs Checking test 043 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1802,14 +1802,14 @@ Checking test 043 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 366.146682 -The maximum resident set size (KB) = 342740 +The total amount of wall time = 372.223366 +The maximum resident set size (KB) = 343944 Test 043 regional_wofs PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/rap_control +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/rap_control Checking test 044 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1856,14 +1856,14 @@ Checking test 044 rap_control results .... 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.799397 -The maximum resident set size (KB) = 893388 +The total amount of wall time = 432.388213 +The maximum resident set size (KB) = 891928 Test 044 rap_control PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/regional_spp_sppt_shum_skeb +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_spp_sppt_shum_skeb +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/regional_spp_sppt_shum_skeb Checking test 045 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -1874,14 +1874,14 @@ Checking test 045 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 290.735454 -The maximum resident set size (KB) = 985912 +The total amount of wall time = 296.436899 +The maximum resident set size (KB) = 987368 Test 045 regional_spp_sppt_shum_skeb PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/rap_decomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/rap_decomp Checking test 046 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1928,14 +1928,14 @@ Checking test 046 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 435.090518 -The maximum resident set size (KB) = 892604 +The total amount of wall time = 444.456014 +The maximum resident set size (KB) = 894032 Test 046 rap_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/rap_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/rap_2threads Checking test 047 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1982,14 +1982,14 @@ Checking test 047 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 394.068731 -The maximum resident set size (KB) = 961856 +The total amount of wall time = 399.693271 +The maximum resident set size (KB) = 968984 Test 047 rap_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/rap_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/rap_restart Checking test 048 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2028,14 +2028,14 @@ Checking test 048 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 217.692279 -The maximum resident set size (KB) = 646280 +The total amount of wall time = 223.002444 +The maximum resident set size (KB) = 644484 Test 048 rap_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/rap_sfcdiff +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/rap_sfcdiff Checking test 049 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2082,14 +2082,14 @@ Checking test 049 rap_sfcdiff results .... 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.469486 -The maximum resident set size (KB) = 895800 +The total amount of wall time = 425.627841 +The maximum resident set size (KB) = 895640 Test 049 rap_sfcdiff PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/rap_sfcdiff_decomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/rap_sfcdiff_decomp Checking test 050 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2136,14 +2136,14 @@ Checking test 050 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 433.653725 -The maximum resident set size (KB) = 896376 +The total amount of wall time = 443.932587 +The maximum resident set size (KB) = 891500 Test 050 rap_sfcdiff_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/rap_sfcdiff_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/rap_sfcdiff_restart Checking test 051 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2182,14 +2182,14 @@ Checking test 051 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 323.102544 -The maximum resident set size (KB) = 642324 +The total amount of wall time = 312.810261 +The maximum resident set size (KB) = 642128 Test 051 rap_sfcdiff_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/hrrr_control +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/hrrr_control Checking test 052 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2236,14 +2236,14 @@ Checking test 052 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 400.522080 -The maximum resident set size (KB) = 896908 +The total amount of wall time = 414.984330 +The maximum resident set size (KB) = 892556 Test 052 hrrr_control PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/hrrr_control_decomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/hrrr_control_decomp Checking test 053 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2290,14 +2290,14 @@ Checking test 053 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 420.660018 -The maximum resident set size (KB) = 890692 +The total amount of wall time = 427.669421 +The maximum resident set size (KB) = 891736 Test 053 hrrr_control_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/hrrr_control_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/hrrr_control_2threads Checking test 054 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2344,14 +2344,14 @@ Checking test 054 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 378.072418 -The maximum resident set size (KB) = 954652 +The total amount of wall time = 379.996243 +The maximum resident set size (KB) = 953400 Test 054 hrrr_control_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/hrrr_control_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/hrrr_control_restart Checking test 055 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2390,14 +2390,14 @@ Checking test 055 hrrr_control_restart results .... 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.997395 -The maximum resident set size (KB) = 642212 +The total amount of wall time = 307.607760 +The maximum resident set size (KB) = 640996 Test 055 hrrr_control_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/rrfs_v1beta +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_v1beta +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/rrfs_v1beta Checking test 056 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2444,14 +2444,14 @@ Checking test 056 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 414.941496 -The maximum resident set size (KB) = 884548 +The total amount of wall time = 429.459253 +The maximum resident set size (KB) = 892500 Test 056 rrfs_v1beta PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/rrfs_v1nssl +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_v1nssl +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/rrfs_v1nssl Checking test 057 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2466,14 +2466,14 @@ Checking test 057 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 476.035557 -The maximum resident set size (KB) = 575344 +The total amount of wall time = 489.472597 +The maximum resident set size (KB) = 579392 Test 057 rrfs_v1nssl PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/rrfs_v1nssl_nohailnoccn +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/rrfs_v1nssl_nohailnoccn Checking test 058 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2488,14 +2488,14 @@ Checking test 058 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 466.085905 -The maximum resident set size (KB) = 567932 +The total amount of wall time = 477.603661 +The maximum resident set size (KB) = 569988 Test 058 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/rrfs_conus13km_hrrr_warm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/rrfs_conus13km_hrrr_warm Checking test 059 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2504,14 +2504,14 @@ Checking test 059 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 127.803152 -The maximum resident set size (KB) = 767184 +The total amount of wall time = 124.852372 +The maximum resident set size (KB) = 763736 Test 059 rrfs_conus13km_hrrr_warm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/rrfs_smoke_conus13km_hrrr_warm Checking test 060 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2520,14 +2520,14 @@ Checking test 060 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 139.332499 -The maximum resident set size (KB) = 775344 +The total amount of wall time = 138.350386 +The maximum resident set size (KB) = 775484 Test 060 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/rrfs_conus13km_radar_tten_warm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/rrfs_conus13km_radar_tten_warm Checking test 061 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2536,14 +2536,14 @@ Checking test 061 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 126.550901 -The maximum resident set size (KB) = 765788 +The total amount of wall time = 128.365533 +The maximum resident set size (KB) = 766288 Test 061 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/rrfs_conus13km_hrrr_warm_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/rrfs_conus13km_hrrr_warm_2threads Checking test 062 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2552,14 +2552,14 @@ Checking test 062 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 92.678364 -The maximum resident set size (KB) = 760304 +The total amount of wall time = 97.866678 +The maximum resident set size (KB) = 762200 Test 062 rrfs_conus13km_hrrr_warm_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/rrfs_conus13km_radar_tten_warm_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/rrfs_conus13km_radar_tten_warm_2threads Checking test 063 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2568,14 +2568,14 @@ Checking test 063 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 93.271837 -The maximum resident set size (KB) = 768764 +The total amount of wall time = 94.595909 +The maximum resident set size (KB) = 765404 Test 063 rrfs_conus13km_radar_tten_warm_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/control_csawmg +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_csawmg +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/control_csawmg Checking test 064 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2586,14 +2586,14 @@ Checking test 064 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 354.133699 -The maximum resident set size (KB) = 589512 +The total amount of wall time = 356.234134 +The maximum resident set size (KB) = 591280 Test 064 control_csawmg PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/control_csawmgt +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_csawmgt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/control_csawmgt Checking test 065 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2604,14 +2604,14 @@ Checking test 065 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 350.171551 -The maximum resident set size (KB) = 585928 +The total amount of wall time = 351.259804 +The maximum resident set size (KB) = 587440 Test 065 control_csawmgt PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/control_ras +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_ras +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/control_ras Checking test 066 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2622,26 +2622,26 @@ Checking test 066 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 182.605200 -The maximum resident set size (KB) = 550808 +The total amount of wall time = 183.212458 +The maximum resident set size (KB) = 551056 Test 066 control_ras PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/control_wam +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_wam +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/control_wam Checking test 067 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 118.903751 -The maximum resident set size (KB) = 269964 +The total amount of wall time = 118.803948 +The maximum resident set size (KB) = 270392 Test 067 control_wam PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/control_p8_faster +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/control_p8_faster Checking test 068 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2688,14 +2688,14 @@ Checking test 068 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 183.529678 -The maximum resident set size (KB) = 1486696 +The total amount of wall time = 184.610333 +The maximum resident set size (KB) = 1485904 Test 068 control_p8_faster PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/regional_control_faster +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_control_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/regional_control_faster Checking test 069 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2706,42 +2706,42 @@ Checking test 069 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 302.090535 -The maximum resident set size (KB) = 654976 +The total amount of wall time = 293.457988 +The maximum resident set size (KB) = 654796 Test 069 regional_control_faster PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/rrfs_conus13km_hrrr_warm_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/rrfs_conus13km_hrrr_warm_debug Checking test 070 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 785.871574 -The maximum resident set size (KB) = 795032 +The total amount of wall time = 783.926743 +The maximum resident set size (KB) = 798784 Test 070 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/rrfs_conus13km_radar_tten_warm_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_conus13km_radar_tten_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/rrfs_conus13km_radar_tten_warm_debug Checking test 071 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 781.364697 -The maximum resident set size (KB) = 799744 +The total amount of wall time = 784.685046 +The maximum resident set size (KB) = 796972 Test 071 rrfs_conus13km_radar_tten_warm_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/control_CubedSphereGrid_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_CubedSphereGrid_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/control_CubedSphereGrid_debug Checking test 072 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2768,334 +2768,334 @@ Checking test 072 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 173.288352 -The maximum resident set size (KB) = 679120 +The total amount of wall time = 175.843435 +The maximum resident set size (KB) = 681624 Test 072 control_CubedSphereGrid_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/control_wrtGauss_netcdf_parallel_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/control_wrtGauss_netcdf_parallel_debug Checking test 073 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 163.728732 -The maximum resident set size (KB) = 682424 +The total amount of wall time = 163.384671 +The maximum resident set size (KB) = 682364 Test 073 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/control_stochy_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_stochy_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/control_stochy_debug Checking test 074 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 182.735424 -The maximum resident set size (KB) = 690040 +The total amount of wall time = 184.415892 +The maximum resident set size (KB) = 687168 Test 074 control_stochy_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/control_lndp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/control_lndp_debug Checking test 075 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 164.753305 -The maximum resident set size (KB) = 684268 +The total amount of wall time = 166.023320 +The maximum resident set size (KB) = 686196 Test 075 control_lndp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/control_csawmg_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_csawmg_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/control_csawmg_debug Checking test 076 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 260.103545 -The maximum resident set size (KB) = 720176 +The total amount of wall time = 270.706203 +The maximum resident set size (KB) = 723596 Test 076 control_csawmg_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/control_csawmgt_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_csawmgt_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/control_csawmgt_debug Checking test 077 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 258.611564 -The maximum resident set size (KB) = 723252 +The total amount of wall time = 264.580098 +The maximum resident set size (KB) = 724068 Test 077 control_csawmgt_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/control_ras_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_ras_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/control_ras_debug Checking test 078 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 166.043331 -The maximum resident set size (KB) = 696276 +The total amount of wall time = 167.562996 +The maximum resident set size (KB) = 695500 Test 078 control_ras_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/control_diag_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/control_diag_debug Checking test 079 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 168.738743 -The maximum resident set size (KB) = 742172 +The total amount of wall time = 171.450545 +The maximum resident set size (KB) = 742116 Test 079 control_diag_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_debug_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/control_debug_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_debug_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/control_debug_p8 Checking test 080 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 190.074156 -The maximum resident set size (KB) = 1504348 +The total amount of wall time = 201.149347 +The maximum resident set size (KB) = 1512380 Test 080 control_debug_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/regional_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/regional_debug Checking test 081 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1055.454577 -The maximum resident set size (KB) = 680728 +The total amount of wall time = 1073.027805 +The maximum resident set size (KB) = 677292 Test 081 regional_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/rap_control_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/rap_control_debug Checking test 082 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 303.246496 -The maximum resident set size (KB) = 1058792 +The total amount of wall time = 309.845007 +The maximum resident set size (KB) = 1059028 Test 082 rap_control_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/hrrr_control_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/hrrr_control_debug Checking test 083 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 305.875278 -The maximum resident set size (KB) = 1054504 +The total amount of wall time = 298.857778 +The maximum resident set size (KB) = 1052928 Test 083 hrrr_control_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/rap_unified_drag_suite_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/rap_unified_drag_suite_debug Checking test 084 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 305.529682 -The maximum resident set size (KB) = 1057172 +The total amount of wall time = 310.274632 +The maximum resident set size (KB) = 1055224 Test 084 rap_unified_drag_suite_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/rap_diag_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/rap_diag_debug Checking test 085 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 314.035178 -The maximum resident set size (KB) = 1140480 +The total amount of wall time = 318.457606 +The maximum resident set size (KB) = 1138644 Test 085 rap_diag_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/rap_cires_ugwp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/rap_cires_ugwp_debug Checking test 086 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 309.335472 -The maximum resident set size (KB) = 1053700 +The total amount of wall time = 312.615861 +The maximum resident set size (KB) = 1055460 Test 086 rap_cires_ugwp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/rap_unified_ugwp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/rap_unified_ugwp_debug Checking test 087 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 314.579768 -The maximum resident set size (KB) = 1058680 +The total amount of wall time = 314.347359 +The maximum resident set size (KB) = 1056952 Test 087 rap_unified_ugwp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/rap_lndp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/rap_lndp_debug Checking test 088 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 308.475542 -The maximum resident set size (KB) = 1057100 +The total amount of wall time = 313.680489 +The maximum resident set size (KB) = 1057816 Test 088 rap_lndp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_flake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/rap_flake_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_flake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/rap_flake_debug Checking test 089 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 303.900672 -The maximum resident set size (KB) = 1060296 +The total amount of wall time = 307.516146 +The maximum resident set size (KB) = 1060264 Test 089 rap_flake_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_progcld_thompson_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/rap_progcld_thompson_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_progcld_thompson_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/rap_progcld_thompson_debug Checking test 090 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 305.033479 -The maximum resident set size (KB) = 1055728 +The total amount of wall time = 306.287383 +The maximum resident set size (KB) = 1055300 Test 090 rap_progcld_thompson_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/rap_noah_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_noah_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/rap_noah_debug Checking test 091 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 294.901904 -The maximum resident set size (KB) = 1052276 +The total amount of wall time = 300.532663 +The maximum resident set size (KB) = 1056752 Test 091 rap_noah_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/rap_sfcdiff_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_sfcdiff_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/rap_sfcdiff_debug Checking test 092 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 302.992194 -The maximum resident set size (KB) = 1058636 +The total amount of wall time = 310.339032 +The maximum resident set size (KB) = 1057656 Test 092 rap_sfcdiff_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/rap_noah_sfcdiff_cires_ugwp_debug Checking test 093 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 493.122179 -The maximum resident set size (KB) = 1056104 +The total amount of wall time = 499.812112 +The maximum resident set size (KB) = 1054640 Test 093 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/rrfs_v1beta_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_v1beta_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/rrfs_v1beta_debug Checking test 094 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 296.987271 -The maximum resident set size (KB) = 1051888 +The total amount of wall time = 302.272336 +The maximum resident set size (KB) = 1056344 Test 094 rrfs_v1beta_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/control_wam_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_wam_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/control_wam_debug Checking test 095 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 299.510899 -The maximum resident set size (KB) = 305972 +The total amount of wall time = 299.069100 +The maximum resident set size (KB) = 304592 Test 095 control_wam_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 096 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3106,14 +3106,14 @@ Checking test 096 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 279.911748 -The maximum resident set size (KB) = 879300 +The total amount of wall time = 273.774323 +The maximum resident set size (KB) = 884520 Test 096 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/rap_control_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/rap_control_dyn32_phy32 Checking test 097 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3160,14 +3160,14 @@ Checking test 097 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 379.438981 -The maximum resident set size (KB) = 776900 +The total amount of wall time = 347.028956 +The maximum resident set size (KB) = 775120 Test 097 rap_control_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/hrrr_control_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/hrrr_control_dyn32_phy32 Checking test 098 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3214,14 +3214,14 @@ Checking test 098 hrrr_control_dyn32_phy32 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 = 196.997970 -The maximum resident set size (KB) = 771800 +The total amount of wall time = 187.915432 +The maximum resident set size (KB) = 772652 Test 098 hrrr_control_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/rap_2threads_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/rap_2threads_dyn32_phy32 Checking test 099 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3268,14 +3268,14 @@ Checking test 099 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 336.792546 -The maximum resident set size (KB) = 828748 +The total amount of wall time = 323.501293 +The maximum resident set size (KB) = 824292 Test 099 rap_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/hrrr_control_2threads_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/hrrr_control_2threads_dyn32_phy32 Checking test 100 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3322,14 +3322,14 @@ Checking test 100 hrrr_control_2threads_dyn32_phy32 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 = 181.621024 -The maximum resident set size (KB) = 829668 +The total amount of wall time = 176.618184 +The maximum resident set size (KB) = 829712 Test 100 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/hrrr_control_decomp_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/hrrr_control_decomp_dyn32_phy32 Checking test 101 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3376,14 +3376,14 @@ Checking test 101 hrrr_control_decomp_dyn32_phy32 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 = 198.201347 -The maximum resident set size (KB) = 775408 +The total amount of wall time = 195.062366 +The maximum resident set size (KB) = 770188 Test 101 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/rap_restart_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/rap_restart_dyn32_phy32 Checking test 102 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3422,14 +3422,14 @@ Checking test 102 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 259.051782 -The maximum resident set size (KB) = 614196 +The total amount of wall time = 262.907767 +The maximum resident set size (KB) = 609928 Test 102 rap_restart_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/hrrr_control_restart_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/hrrr_control_restart_dyn32_phy32 Checking test 103 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3468,14 +3468,14 @@ Checking test 103 hrrr_control_restart_dyn32_phy32 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 = 96.491510 -The maximum resident set size (KB) = 606504 +The total amount of wall time = 109.340417 +The maximum resident set size (KB) = 604748 Test 103 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/rap_control_dyn64_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/rap_control_dyn64_phy32 Checking test 104 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3522,81 +3522,81 @@ Checking test 104 rap_control_dyn64_phy32 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 = 244.902840 -The maximum resident set size (KB) = 797052 +The total amount of wall time = 238.383225 +The maximum resident set size (KB) = 796680 Test 104 rap_control_dyn64_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/rap_control_debug_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/rap_control_debug_dyn32_phy32 Checking test 105 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 294.474492 -The maximum resident set size (KB) = 942688 +The total amount of wall time = 299.832173 +The maximum resident set size (KB) = 942624 Test 105 rap_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/hrrr_control_debug_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/hrrr_control_debug_dyn32_phy32 Checking test 106 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 290.716546 -The maximum resident set size (KB) = 941596 +The total amount of wall time = 295.967034 +The maximum resident set size (KB) = 945164 Test 106 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/rap_control_dyn64_phy32_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/rap_control_dyn64_phy32_debug Checking test 107 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 299.324008 -The maximum resident set size (KB) = 965052 +The total amount of wall time = 298.695973 +The maximum resident set size (KB) = 961180 Test 107 rap_control_dyn64_phy32_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/hafs_regional_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/hafs_regional_atm Checking test 108 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 270.182752 -The maximum resident set size (KB) = 825192 +The total amount of wall time = 272.003915 +The maximum resident set size (KB) = 823436 Test 108 hafs_regional_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/hafs_regional_atm_thompson_gfdlsf +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/hafs_regional_atm_thompson_gfdlsf Checking test 109 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 337.353780 -The maximum resident set size (KB) = 1179304 +The total amount of wall time = 390.769822 +The maximum resident set size (KB) = 1182504 Test 109 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/hafs_regional_atm_ocn +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/hafs_regional_atm_ocn Checking test 110 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3605,14 +3605,14 @@ Checking test 110 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 392.713019 -The maximum resident set size (KB) = 852192 +The total amount of wall time = 415.208727 +The maximum resident set size (KB) = 852560 Test 110 hafs_regional_atm_ocn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/hafs_regional_atm_wav +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_atm_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/hafs_regional_atm_wav Checking test 111 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3621,14 +3621,14 @@ Checking test 111 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 711.277746 -The maximum resident set size (KB) = 884660 +The total amount of wall time = 713.372197 +The maximum resident set size (KB) = 889552 Test 111 hafs_regional_atm_wav PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/hafs_regional_atm_ocn_wav +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/hafs_regional_atm_ocn_wav Checking test 112 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3639,28 +3639,28 @@ Checking test 112 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 895.143019 -The maximum resident set size (KB) = 913244 +The total amount of wall time = 905.751852 +The maximum resident set size (KB) = 909696 Test 112 hafs_regional_atm_ocn_wav PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/hafs_regional_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/hafs_regional_1nest_atm Checking test 113 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 332.150271 -The maximum resident set size (KB) = 390060 +The total amount of wall time = 330.744460 +The maximum resident set size (KB) = 389800 Test 113 hafs_regional_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/hafs_regional_telescopic_2nests_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/hafs_regional_telescopic_2nests_atm Checking test 114 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3669,28 +3669,28 @@ Checking test 114 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 404.736992 -The maximum resident set size (KB) = 413492 +The total amount of wall time = 411.845106 +The maximum resident set size (KB) = 411616 Test 114 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/hafs_global_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_global_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/hafs_global_1nest_atm Checking test 115 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 168.872479 -The maximum resident set size (KB) = 292668 +The total amount of wall time = 183.524207 +The maximum resident set size (KB) = 273268 Test 115 hafs_global_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_multiple_4nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/hafs_global_multiple_4nests_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_global_multiple_4nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/hafs_global_multiple_4nests_atm Checking test 116 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3708,14 +3708,14 @@ Checking test 116 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -The total amount of wall time = 493.166882 -The maximum resident set size (KB) = 336688 +The total amount of wall time = 505.090514 +The maximum resident set size (KB) = 338636 Test 116 hafs_global_multiple_4nests_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/hafs_regional_specified_moving_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/hafs_regional_specified_moving_1nest_atm Checking test 117 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3724,28 +3724,28 @@ Checking test 117 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 215.035243 -The maximum resident set size (KB) = 402204 +The total amount of wall time = 224.351655 +The maximum resident set size (KB) = 403744 Test 117 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/hafs_regional_storm_following_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/hafs_regional_storm_following_1nest_atm Checking test 118 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 203.388143 -The maximum resident set size (KB) = 402492 +The total amount of wall time = 211.142914 +The maximum resident set size (KB) = 404872 Test 118 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/hafs_regional_storm_following_1nest_atm_ocn Checking test 119 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3754,42 +3754,42 @@ Checking test 119 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 249.142874 -The maximum resident set size (KB) = 453672 +The total amount of wall time = 253.047548 +The maximum resident set size (KB) = 452780 Test 119 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/hafs_global_storm_following_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_global_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/hafs_global_storm_following_1nest_atm Checking test 120 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 79.969347 -The maximum resident set size (KB) = 296844 +The total amount of wall time = 96.262390 +The maximum resident set size (KB) = 286240 Test 120 hafs_global_storm_following_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 121 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 807.913915 -The maximum resident set size (KB) = 484136 +The total amount of wall time = 823.325752 +The maximum resident set size (KB) = 483240 Test 121 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 122 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3800,14 +3800,14 @@ Checking test 122 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -The total amount of wall time = 525.583488 -The maximum resident set size (KB) = 523908 +The total amount of wall time = 535.676050 +The maximum resident set size (KB) = 524492 Test 122 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_atmlnd_sbs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/control_p8_atmlnd_sbs +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8_atmlnd_sbs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/control_p8_atmlnd_sbs Checking test 123 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3892,14 +3892,14 @@ Checking test 123 control_p8_atmlnd_sbs 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 = 244.720695 -The maximum resident set size (KB) = 1542836 +The total amount of wall time = 244.214304 +The maximum resident set size (KB) = 1540936 Test 123 control_p8_atmlnd_sbs PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/atmaero_control_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/atmaero_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/atmaero_control_p8 Checking test 124 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3943,14 +3943,14 @@ Checking test 124 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 253.638406 -The maximum resident set size (KB) = 2813948 +The total amount of wall time = 254.981418 +The maximum resident set size (KB) = 2818512 Test 124 atmaero_control_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/atmaero_control_p8_rad +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/atmaero_control_p8_rad +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/atmaero_control_p8_rad Checking test 125 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3994,14 +3994,14 @@ Checking test 125 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 288.690902 -The maximum resident set size (KB) = 2880596 +The total amount of wall time = 285.762602 +The maximum resident set size (KB) = 2880716 Test 125 atmaero_control_p8_rad PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/atmaero_control_p8_rad_micro +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/atmaero_control_p8_rad_micro +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/atmaero_control_p8_rad_micro Checking test 126 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4045,14 +4045,14 @@ Checking test 126 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 294.967125 -The maximum resident set size (KB) = 2889916 +The total amount of wall time = 293.692430 +The maximum resident set size (KB) = 2889328 Test 126 atmaero_control_p8_rad_micro PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/regional_atmaq +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_atmaq +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/regional_atmaq Checking test 127 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4068,14 +4068,14 @@ Checking test 127 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 670.465941 -The maximum resident set size (KB) = 1408108 +The total amount of wall time = 716.307484 +The maximum resident set size (KB) = 1256188 Test 127 regional_atmaq PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/regional_atmaq_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_atmaq_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/regional_atmaq_debug Checking test 128 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4089,14 +4089,14 @@ Checking test 128 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1438.455042 -The maximum resident set size (KB) = 1442420 +The total amount of wall time = 1354.227376 +The maximum resident set size (KB) = 1294912 Test 128 regional_atmaq_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_228873/regional_atmaq_faster +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_atmaq_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/regional_atmaq_faster Checking test 129 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4112,12 +4112,12 @@ Checking test 129 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 663.175202 -The maximum resident set size (KB) = 1403456 +The total amount of wall time = 664.221210 +The maximum resident set size (KB) = 1255420 Test 129 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Wed Mar 15 15:06:09 UTC 2023 -Elapsed time: 01h:08m:35s. Have a nice day! +Tue Mar 21 02:35:05 UTC 2023 +Elapsed time: 01h:12m:31s. Have a nice day! diff --git a/tests/parm/aqm/aqm.rc b/tests/parm/aqm/aqm.rc index 94454f96c37..20a2288d181 100644 --- a/tests/parm/aqm/aqm.rc +++ b/tests/parm/aqm/aqm.rc @@ -16,7 +16,7 @@ csqy_data: CSQY_DATA_cb6r3_ae6_aq optics_data: PHOT_OPTICS.dat omi_data: omi_cmaq_2015_361X179.dat -init_concentrations: true +init_concentrations: false run_aerosol: true diff --git a/tests/rt.conf b/tests/rt.conf index 22315c2a821..1c06beb8d59 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -282,10 +282,10 @@ RUN | atmaero_control_p8_rad_micro # ATM-CMAQ tests ################################################################################################################################################################################### -COMPILE | -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 | | fv3 | +COMPILE | -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON | | fv3 | RUN | regional_atmaq | | fv3 | -COMPILE | -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON | | fv3 | +COMPILE | -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON | | fv3 | RUN | regional_atmaq_debug | - jet.intel gaea.intel cheyenne.intel | fv3 | -COMPILE | -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON | | fv3 | +COMPILE | -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON | | fv3 | RUN | regional_atmaq_faster | | fv3 | diff --git a/tests/rt.sh b/tests/rt.sh index 1fb074df5f8..57a3ae56aac 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -446,7 +446,7 @@ if [[ $TESTS_FILE =~ '35d' ]] || [[ $TESTS_FILE =~ 'weekly' ]]; then fi -BL_DATE=20230308 +BL_DATE=20230320 RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-${BL_DATE}/${RT_COMPILER^^}} From 36d6e16d51501e244305ca947b0cb9194c2fcb47 Mon Sep 17 00:00:00 2001 From: "Samuel Trahan (NOAA contractor)" <39415369+SamuelTrahanNOAA@users.noreply.github.com> Date: Fri, 24 Mar 2023 08:35:39 -0400 Subject: [PATCH 10/30] Lightning threat indexes (#1642) * use the latest postxconfig-NT-fv3lam.txt to run ifi * rename postxconfig-NT-fv3lam-ifi.txt to postxconfig-NT-fv3lam-new.txt since it is, in fact, the new postxconfig-NT-fv3lam.txt * add lightning threat indexes to rrfs 13km tests * pass w to model & fixes to ccpp/physics changes * FV3: turn off lightning_threat by default since it allocates wgrs and passes w * do not output ltg*_max variables since they're all zeroes anyway because the 13km run cannot make enough graupel * FV3: missing `active = (lightning_threat_indices_enabled)` for wgrd * enable ltg*_max variables in diag_table_hrrr * alternative POSTAPP for C96 versions of regional configurations * rap & hrrr variants use POSTAPP=fv3lam_global * new tests for ifi on acorn * fix out-of-bounds access in upp calslr_roebbr * fix another out-of-bounds access and move a message to stdout --- CMakeLists.txt | 23 + FV3 | 2 +- modulefiles/ufs_acorn.intel.lua | 3 + modulefiles/ufs_acorn.intel_debug.lua | 3 + modulefiles/ufs_hera.intel.lua | 3 + modulefiles/ufs_hera.intel_debug.lua | 3 + modulefiles/ufs_jet.intel.lua | 3 + modulefiles/ufs_jet.intel_debug.lua | 3 + tests/RegressionTests_acorn.intel.log | 1735 +++++++++++----------- tests/RegressionTests_cheyenne.gnu.log | 418 +++--- tests/RegressionTests_cheyenne.intel.log | 1302 ++++++++-------- tests/RegressionTests_hera.gnu.log | 422 +++--- tests/RegressionTests_hera.intel.log | 1326 ++++++++--------- tests/RegressionTests_jet.intel.log | 1212 +++++++-------- tests/RegressionTests_orion.intel.log | 1326 ++++++++--------- tests/RegressionTests_wcoss2.intel.log | 1231 +++++++-------- tests/fv3_conf/rrfs_warm_run.IN | 2 + tests/parm/diag_table/diag_table_hrrr | 6 + tests/parm/postxconfig-NT-fv3lam.txt | 263 +++- tests/parm/rrfs_conus13km_hrrr.nml.IN | 1 + tests/rt.conf | 6 + tests/rt.sh | 2 +- tests/tests/regional_ifi_2threads | 45 + tests/tests/regional_ifi_control | 45 + tests/tests/regional_ifi_decomp | 45 + 25 files changed, 4930 insertions(+), 4500 deletions(-) create mode 100644 tests/tests/regional_ifi_2threads create mode 100644 tests/tests/regional_ifi_control create mode 100644 tests/tests/regional_ifi_decomp diff --git a/CMakeLists.txt b/CMakeLists.txt index 48dbbf9a7f0..ea8664a18a5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -83,6 +83,28 @@ if(CMAKE_Platform) endif() endif() +option(BUILD_WITH_IFI "Build NCEPpost with In-Flight Icing (IFI) library if present" OFF) +option(REQUIRE_IFI "Abort if libIFI is not found ; enables BUILD_WITH_IFI=ON" OFF) +option(INTERNAL_IFI "Compile with IFI inside the executable, instead of a library" OFF) + +if(INTERNAL_IFI) + message("Building with libIFI inside executable. Do not distribute executable outside of WCOSS2.") + set(BUILD_WITH_IFI OFF) + set(REQUIRE_IFI OFF) +endif() + +if(REQUIRE_IFI) + set(BUILD_WITH_IFI ON) +endif() + +if(BUILD_WITH_IFI) + if(REQUIRE_IFI) + find_package(IFI CONFIG REQUIRED) + else() + find_package(IFI CONFIG) + endif() +endif() + message("") message("32BIT ............ ${32BIT}") message("CCPP_32BIT ....... ${CCPP_32BIT}") @@ -316,6 +338,7 @@ target_link_libraries(ufs PUBLIC "${_ufs_libs_public}") add_executable(ufs_model driver/UFS.F90) add_dependencies(ufs_model ufs) target_link_libraries(ufs_model ufs esmf w3emc::w3emc_d) +set_target_properties(ufs_model PROPERTIES LINKER_LANGUAGE Fortran) ############################################################################### ### Install diff --git a/FV3 b/FV3 index da1e9b81bba..f3eeba0ef7e 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit da1e9b81bba79466917d5c4a151225be227892ef +Subproject commit f3eeba0ef7ecff65ebcc253094f8e1ce0cb41b66 diff --git a/modulefiles/ufs_acorn.intel.lua b/modulefiles/ufs_acorn.intel.lua index 8432bb9462c..b1ab064d253 100644 --- a/modulefiles/ufs_acorn.intel.lua +++ b/modulefiles/ufs_acorn.intel.lua @@ -28,6 +28,9 @@ load(pathJoin("hpc-cray-mpich", hpc_cray_mpich_ver)) load("ufs_common") +prepend_path("MODULEPATH", "/lfs/h1/emc/nceplibs/noscrub/UPP_IFI/modulefiles") +load("ifi/20230118-intel-19.1.3.304") + setenv("CC", "cc") setenv("CXX", "CC") setenv("FC", "ftn") diff --git a/modulefiles/ufs_acorn.intel_debug.lua b/modulefiles/ufs_acorn.intel_debug.lua index b9ba3794ba0..c2c24709d99 100644 --- a/modulefiles/ufs_acorn.intel_debug.lua +++ b/modulefiles/ufs_acorn.intel_debug.lua @@ -28,6 +28,9 @@ load(pathJoin("hpc-cray-mpich", hpc_cray_mpich_ver)) load("ufs_common_debug") +prepend_path("MODULEPATH", "/lfs/h1/emc/nceplibs/noscrub/UPP_IFI/modulefiles") +load("ifi/20230118-intel-19.1.3.304") + setenv("CC", "cc") setenv("CXX", "CC") setenv("FC", "ftn") diff --git a/modulefiles/ufs_hera.intel.lua b/modulefiles/ufs_hera.intel.lua index 5209333988c..2bc37225983 100644 --- a/modulefiles/ufs_hera.intel.lua +++ b/modulefiles/ufs_hera.intel.lua @@ -36,4 +36,7 @@ setenv("CXX", "mpiicpc") setenv("FC", "mpiifort") setenv("CMAKE_Platform", "hera.intel") +prepend_path("MODULEPATH", "/scratch2/BMC/ifi/modulefiles") +try_load("ifi/20230118-intel-2022.1.2") + whatis("Description: UFS build environment") diff --git a/modulefiles/ufs_hera.intel_debug.lua b/modulefiles/ufs_hera.intel_debug.lua index 4c50ac2caba..cc4ae9e9839 100644 --- a/modulefiles/ufs_hera.intel_debug.lua +++ b/modulefiles/ufs_hera.intel_debug.lua @@ -36,4 +36,7 @@ setenv("CXX", "mpiicpc") setenv("FC", "mpiifort") setenv("CMAKE_Platform", "hera.intel") +prepend_path("MODULEPATH", "/scratch2/BMC/ifi/modulefiles") +try_load("ifi/20230118-intel-2022.1.2") + whatis("Description: UFS build environment") diff --git a/modulefiles/ufs_jet.intel.lua b/modulefiles/ufs_jet.intel.lua index c2d048bd2d4..6ca3c691bce 100644 --- a/modulefiles/ufs_jet.intel.lua +++ b/modulefiles/ufs_jet.intel.lua @@ -31,4 +31,7 @@ setenv("CXX", "mpiicpc") setenv("FC", "mpiifort") setenv("CMAKE_Platform", "jet.intel") +prepend_path("MODULEPATH", "/lfs4/BMC/ifi/modulefiles") +try_load("ifi/20230118-intel-2022.1.2") + whatis("Description: UFS build environment") diff --git a/modulefiles/ufs_jet.intel_debug.lua b/modulefiles/ufs_jet.intel_debug.lua index 8fd81d58f81..4b07640c795 100644 --- a/modulefiles/ufs_jet.intel_debug.lua +++ b/modulefiles/ufs_jet.intel_debug.lua @@ -31,4 +31,7 @@ setenv("CXX", "mpiicpc") setenv("FC", "mpiifort") setenv("CMAKE_Platform", "jet.intel") +prepend_path("MODULEPATH", "/lfs4/BMC/ifi/modulefiles") +try_load("ifi/20230118-intel-2022.1.2") + whatis("Description: UFS build environment") diff --git a/tests/RegressionTests_acorn.intel.log b/tests/RegressionTests_acorn.intel.log index 3d92ff9a973..6fcc6ead5aa 100644 --- a/tests/RegressionTests_acorn.intel.log +++ b/tests/RegressionTests_acorn.intel.log @@ -1,51 +1,40 @@ -Mon Mar 20 23:28:15 UTC 2023 +Thu Mar 23 15:06:29 UTC 2023 Start Regression test -Test 008 compile FAIL -Test 003 compile FAIL -Test 005 compile FAIL -Test 007 compile FAIL - - - - -Test 002 compile FAIL - -Test 011 compile FAIL - -Compile 001 elapsed time 1407 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 1592 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 1198 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 660 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 005 elapsed time 1579 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 1397 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 1871 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 008 elapsed time 937 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 1767 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 986 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 843 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 879 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 013 elapsed time 416 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 1469 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 015 elapsed time 1001 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 1109 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 017 elapsed time 482 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 1150 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 019 elapsed time 384 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 1353 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 809 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 022 elapsed time 1089 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 023 elapsed time 497 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 024 elapsed time 926 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 025 elapsed time 820 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 026 elapsed time 792 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 027 elapsed time 562 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 863 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 368 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 030 elapsed time 623 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8_mixedmode -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/cpld_control_p8_mixedmode +Compile 001 elapsed time 749 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 992 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 1318 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 1587 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 005 elapsed time 473 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 622 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 947 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 463 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 930 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 442 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 989 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 788 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 922 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 014 elapsed time 451 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 904 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 446 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 153 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 602 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 804 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 020 elapsed time 746 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 021 elapsed time 613 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 022 elapsed time 561 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 023 elapsed time 376 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 024 elapsed time 347 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 144 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 026 elapsed time 600 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 027 elapsed time 461 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 495 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 506 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 578 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 031 elapsed time 509 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8_mixedmode +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -110,14 +99,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 336.776732 -The maximum resident set size (KB) = 2951236 +The total amount of wall time = 334.519795 +The maximum resident set size (KB) = 2950928 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_gfsv17 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/cpld_control_gfsv17 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_gfsv17 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -181,14 +170,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 257.694425 -The maximum resident set size (KB) = 1580288 +The total amount of wall time = 257.913462 +The maximum resident set size (KB) = 1584100 Test 002 cpld_control_gfsv17 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/cpld_control_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -253,14 +242,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 388.361127 -The maximum resident set size (KB) = 2978864 +The total amount of wall time = 385.723922 +The maximum resident set size (KB) = 2978876 Test 003 cpld_control_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/cpld_restart_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -313,14 +302,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 229.531476 -The maximum resident set size (KB) = 2869764 +The total amount of wall time = 229.676081 +The maximum resident set size (KB) = 2866168 Test 004 cpld_restart_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/cpld_2threads_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -373,14 +362,14 @@ Checking test 005 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 372.909955 -The maximum resident set size (KB) = 3284020 +The total amount of wall time = 370.405964 +The maximum resident set size (KB) = 3281936 Test 005 cpld_2threads_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/cpld_decomp_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/cpld_decomp_p8 Checking test 006 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -433,14 +422,14 @@ Checking test 006 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 380.920988 -The maximum resident set size (KB) = 2979372 +The total amount of wall time = 378.977724 +The maximum resident set size (KB) = 2975988 Test 006 cpld_decomp_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/cpld_mpi_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/cpld_mpi_p8 Checking test 007 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -493,14 +482,14 @@ Checking test 007 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 317.487007 -The maximum resident set size (KB) = 2908540 +The total amount of wall time = 317.820619 +The maximum resident set size (KB) = 2913436 Test 007 cpld_mpi_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_ciceC_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/cpld_control_ciceC_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_ciceC_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/cpld_control_ciceC_p8 Checking test 008 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -565,14 +554,14 @@ Checking test 008 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 385.519032 -The maximum resident set size (KB) = 2982072 +The total amount of wall time = 385.454230 +The maximum resident set size (KB) = 2978008 Test 008 cpld_control_ciceC_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/cpld_control_noaero_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/cpld_control_noaero_p8 Checking test 009 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -636,14 +625,14 @@ Checking test 009 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 284.494412 -The maximum resident set size (KB) = 1570624 +The total amount of wall time = 282.437091 +The maximum resident set size (KB) = 1572904 Test 009 cpld_control_noaero_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/cpld_control_nowave_noaero_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_c96_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/cpld_control_nowave_noaero_p8 Checking test 010 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -705,14 +694,14 @@ Checking test 010 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 302.082666 -The maximum resident set size (KB) = 1621868 +The total amount of wall time = 297.651049 +The maximum resident set size (KB) = 1618008 Test 010 cpld_control_nowave_noaero_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/cpld_control_noaero_p8_agrid +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_noaero_p8_agrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/cpld_control_noaero_p8_agrid Checking test 011 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -774,14 +763,14 @@ Checking test 011 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 308.506256 -The maximum resident set size (KB) = 1630936 +The total amount of wall time = 306.725125 +The maximum resident set size (KB) = 1619092 Test 011 cpld_control_noaero_p8_agrid PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/cpld_control_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/cpld_control_c48 Checking test 012 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -831,14 +820,14 @@ Checking test 012 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 433.707875 -The maximum resident set size (KB) = 2625460 +The total amount of wall time = 437.271957 +The maximum resident set size (KB) = 2629684 Test 012 cpld_control_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/cpld_warmstart_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/cpld_warmstart_c48 Checking test 013 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -888,14 +877,14 @@ Checking test 013 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 121.028350 -The maximum resident set size (KB) = 2645184 +The total amount of wall time = 122.531434 +The maximum resident set size (KB) = 2647048 Test 013 cpld_warmstart_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/cpld_restart_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/cpld_restart_c48 Checking test 014 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -945,14 +934,14 @@ Checking test 014 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 67.983535 -The maximum resident set size (KB) = 2067708 +The total amount of wall time = 69.595251 +The maximum resident set size (KB) = 2061648 Test 014 cpld_restart_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/cpld_control_p8_faster +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/cpld_control_p8_faster Checking test 015 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1017,14 +1006,14 @@ Checking test 015 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 379.922045 -The maximum resident set size (KB) = 2974984 +The total amount of wall time = 377.221208 +The maximum resident set size (KB) = 2974656 Test 015 cpld_control_p8_faster PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_CubedSphereGrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/control_CubedSphereGrid +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_CubedSphereGrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/control_CubedSphereGrid Checking test 016 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1051,14 +1040,14 @@ Checking test 016 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 129.311819 -The maximum resident set size (KB) = 517772 +The total amount of wall time = 129.186968 +The maximum resident set size (KB) = 514688 Test 016 control_CubedSphereGrid PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_latlon -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/control_latlon +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_latlon +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/control_latlon Checking test 017 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1069,14 +1058,14 @@ Checking test 017 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 131.421261 -The maximum resident set size (KB) = 513332 +The total amount of wall time = 132.018091 +The maximum resident set size (KB) = 519020 Test 017 control_latlon PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/control_wrtGauss_netcdf_parallel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/control_wrtGauss_netcdf_parallel Checking test 018 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1087,14 +1076,14 @@ Checking test 018 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 133.142225 -The maximum resident set size (KB) = 518500 +The total amount of wall time = 134.523503 +The maximum resident set size (KB) = 511980 Test 018 control_wrtGauss_netcdf_parallel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/control_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/control_c48 Checking test 019 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1133,14 +1122,14 @@ Checking test 019 control_c48 results .... 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.942048 -The maximum resident set size (KB) = 672732 +The total amount of wall time = 326.933506 +The maximum resident set size (KB) = 672976 Test 019 control_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_c192 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/control_c192 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_c192 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/control_c192 Checking test 020 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1151,14 +1140,14 @@ Checking test 020 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 527.269778 -The maximum resident set size (KB) = 614988 +The total amount of wall time = 529.296238 +The maximum resident set size (KB) = 612568 Test 020 control_c192 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_c384 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/control_c384 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_c384 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/control_c384 Checking test 021 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1169,14 +1158,14 @@ Checking test 021 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 573.408721 -The maximum resident set size (KB) = 913136 +The total amount of wall time = 574.657144 +The maximum resident set size (KB) = 908956 Test 021 control_c384 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_c384gdas -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/control_c384gdas +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_c384gdas +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/control_c384gdas Checking test 022 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1219,14 +1208,14 @@ Checking test 022 control_c384gdas 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 = 502.349146 -The maximum resident set size (KB) = 1044192 +The total amount of wall time = 502.832793 +The maximum resident set size (KB) = 1042308 Test 022 control_c384gdas PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/control_stochy +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/control_stochy Checking test 023 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1237,28 +1226,28 @@ Checking test 023 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 88.649396 -The maximum resident set size (KB) = 518796 +The total amount of wall time = 89.214648 +The maximum resident set size (KB) = 520480 Test 023 control_stochy PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/control_stochy_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/control_stochy_restart Checking test 024 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 48.613864 -The maximum resident set size (KB) = 287112 +The total amount of wall time = 48.541662 +The maximum resident set size (KB) = 290668 Test 024 control_stochy_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/control_lndp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/control_lndp Checking test 025 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1269,14 +1258,14 @@ Checking test 025 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 82.176612 -The maximum resident set size (KB) = 518036 +The total amount of wall time = 82.934561 +The maximum resident set size (KB) = 519316 Test 025 control_lndp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_iovr4 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/control_iovr4 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_iovr4 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/control_iovr4 Checking test 026 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1291,14 +1280,14 @@ Checking test 026 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 133.963788 -The maximum resident set size (KB) = 513572 +The total amount of wall time = 135.384609 +The maximum resident set size (KB) = 513684 Test 026 control_iovr4 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_iovr5 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/control_iovr5 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_iovr5 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/control_iovr5 Checking test 027 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1313,14 +1302,14 @@ Checking test 027 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 134.296719 -The maximum resident set size (KB) = 519912 +The total amount of wall time = 136.869483 +The maximum resident set size (KB) = 511232 Test 027 control_iovr5 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/control_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/control_p8 Checking test 028 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1367,14 +1356,14 @@ Checking test 028 control_p8 results .... 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.372138 -The maximum resident set size (KB) = 1483824 +The total amount of wall time = 179.130907 +The maximum resident set size (KB) = 1483932 Test 028 control_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/control_p8_lndp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/control_p8_lndp Checking test 029 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1393,14 +1382,14 @@ Checking test 029 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 320.337788 -The maximum resident set size (KB) = 1489032 +The total amount of wall time = 321.739942 +The maximum resident set size (KB) = 1483188 Test 029 control_p8_lndp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/control_restart_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/control_restart_p8 Checking test 030 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1439,14 +1428,14 @@ Checking test 030 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 99.679121 -The maximum resident set size (KB) = 654388 +The total amount of wall time = 99.125535 +The maximum resident set size (KB) = 653428 Test 030 control_restart_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/control_decomp_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/control_decomp_p8 Checking test 031 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1489,14 +1478,14 @@ Checking test 031 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 181.044883 -The maximum resident set size (KB) = 1478760 +The total amount of wall time = 179.979783 +The maximum resident set size (KB) = 1483164 Test 031 control_decomp_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/control_2threads_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/control_2threads_p8 Checking test 032 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1539,14 +1528,14 @@ Checking test 032 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 159.673171 -The maximum resident set size (KB) = 1565212 +The total amount of wall time = 159.200135 +The maximum resident set size (KB) = 1566964 Test 032 control_2threads_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8_rrtmgp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/control_p8_rrtmgp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8_rrtmgp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/control_p8_rrtmgp Checking test 033 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1593,14 +1582,14 @@ Checking test 033 control_p8_rrtmgp results .... 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.316498 -The maximum resident set size (KB) = 1550788 +The total amount of wall time = 233.633606 +The maximum resident set size (KB) = 1543584 Test 033 control_p8_rrtmgp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/merra2_thompson -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/merra2_thompson +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/merra2_thompson +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/merra2_thompson Checking test 034 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1647,14 +1636,14 @@ Checking test 034 merra2_thompson results .... 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.712884 -The maximum resident set size (KB) = 1496556 +The total amount of wall time = 203.986630 +The maximum resident set size (KB) = 1489684 Test 034 merra2_thompson PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/regional_control +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/regional_control Checking test 035 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1665,28 +1654,28 @@ Checking test 035 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 290.636125 -The maximum resident set size (KB) = 654524 +The total amount of wall time = 289.450629 +The maximum resident set size (KB) = 651600 Test 035 regional_control PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/regional_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/regional_restart Checking test 036 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 154.851472 -The maximum resident set size (KB) = 650216 +The total amount of wall time = 152.196396 +The maximum resident set size (KB) = 650100 Test 036 regional_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/regional_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/regional_decomp Checking test 037 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1697,14 +1686,14 @@ Checking test 037 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 303.241388 -The maximum resident set size (KB) = 650448 +The total amount of wall time = 304.650926 +The maximum resident set size (KB) = 653804 Test 037 regional_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/regional_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/regional_2threads Checking test 038 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1715,14 +1704,14 @@ Checking test 038 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 177.099125 -The maximum resident set size (KB) = 696988 +The total amount of wall time = 181.484209 +The maximum resident set size (KB) = 696288 Test 038 regional_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_noquilt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/regional_noquilt +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_noquilt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/regional_noquilt Checking test 039 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1730,14 +1719,14 @@ Checking test 039 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 312.503050 -The maximum resident set size (KB) = 646036 +The total amount of wall time = 312.377638 +The maximum resident set size (KB) = 641780 Test 039 regional_noquilt PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/regional_2dwrtdecomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/regional_2dwrtdecomp Checking test 040 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1748,14 +1737,14 @@ Checking test 040 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 288.953405 -The maximum resident set size (KB) = 653452 +The total amount of wall time = 286.710518 +The maximum resident set size (KB) = 653132 Test 040 regional_2dwrtdecomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/fv3_regional_wofs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/regional_wofs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/fv3_regional_wofs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/regional_wofs Checking test 041 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1766,15 +1755,69 @@ Checking test 041 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 365.193952 -The maximum resident set size (KB) = 339160 +The total amount of wall time = 364.611601 +The maximum resident set size (KB) = 338860 Test 041 regional_wofs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/rap_control -Checking test 042 rap_control results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_ifi_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/regional_ifi_control +Checking test 042 regional_ifi_control results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK + +The total amount of wall time = 323.813023 +The maximum resident set size (KB) = 648780 + +Test 042 regional_ifi_control PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_ifi_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/regional_ifi_decomp +Checking test 043 regional_ifi_decomp results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK + +The total amount of wall time = 341.129341 +The maximum resident set size (KB) = 653952 + +Test 043 regional_ifi_decomp PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_ifi_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/regional_ifi_2threads +Checking test 044 regional_ifi_2threads results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK + +The total amount of wall time = 223.678981 +The maximum resident set size (KB) = 695052 + +Test 044 regional_ifi_2threads PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/rap_control +Checking test 045 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1820,15 +1863,15 @@ Checking test 042 rap_control results .... 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.947760 -The maximum resident set size (KB) = 893144 +The total amount of wall time = 419.216210 +The maximum resident set size (KB) = 893740 -Test 042 rap_control PASS +Test 045 rap_control PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/regional_spp_sppt_shum_skeb -Checking test 043 regional_spp_sppt_shum_skeb results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_spp_sppt_shum_skeb +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/regional_spp_sppt_shum_skeb +Checking test 046 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -1838,15 +1881,15 @@ Checking test 043 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 283.324774 -The maximum resident set size (KB) = 986612 +The total amount of wall time = 288.108730 +The maximum resident set size (KB) = 983076 -Test 043 regional_spp_sppt_shum_skeb PASS +Test 046 regional_spp_sppt_shum_skeb PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/rap_decomp -Checking test 044 rap_decomp results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/rap_decomp +Checking test 047 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1892,15 +1935,15 @@ Checking test 044 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 434.936983 -The maximum resident set size (KB) = 892972 +The total amount of wall time = 433.927928 +The maximum resident set size (KB) = 892700 -Test 044 rap_decomp PASS +Test 047 rap_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/rap_2threads -Checking test 045 rap_2threads results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/rap_2threads +Checking test 048 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1946,15 +1989,15 @@ Checking test 045 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 391.909088 -The maximum resident set size (KB) = 963436 +The total amount of wall time = 391.709036 +The maximum resident set size (KB) = 967932 -Test 045 rap_2threads PASS +Test 048 rap_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/rap_restart -Checking test 046 rap_restart results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/rap_restart +Checking test 049 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1992,15 +2035,15 @@ Checking test 046 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 213.270457 -The maximum resident set size (KB) = 643724 +The total amount of wall time = 213.480958 +The maximum resident set size (KB) = 646088 -Test 046 rap_restart PASS +Test 049 rap_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/rap_sfcdiff -Checking test 047 rap_sfcdiff results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/rap_sfcdiff +Checking test 050 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2046,15 +2089,15 @@ Checking test 047 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 416.683036 -The maximum resident set size (KB) = 891360 +The total amount of wall time = 415.319430 +The maximum resident set size (KB) = 893300 -Test 047 rap_sfcdiff PASS +Test 050 rap_sfcdiff PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/rap_sfcdiff_decomp -Checking test 048 rap_sfcdiff_decomp results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/rap_sfcdiff_decomp +Checking test 051 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2100,15 +2143,15 @@ Checking test 048 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 435.288544 -The maximum resident set size (KB) = 892752 +The total amount of wall time = 433.117429 +The maximum resident set size (KB) = 890388 -Test 048 rap_sfcdiff_decomp PASS +Test 051 rap_sfcdiff_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/rap_sfcdiff_restart -Checking test 049 rap_sfcdiff_restart results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/rap_sfcdiff_restart +Checking test 052 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2146,15 +2189,15 @@ Checking test 049 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 310.126181 -The maximum resident set size (KB) = 640496 +The total amount of wall time = 310.594842 +The maximum resident set size (KB) = 641356 -Test 049 rap_sfcdiff_restart PASS +Test 052 rap_sfcdiff_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/hrrr_control -Checking test 050 hrrr_control results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/hrrr_control +Checking test 053 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2200,15 +2243,15 @@ Checking test 050 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 399.534369 -The maximum resident set size (KB) = 890160 +The total amount of wall time = 399.598896 +The maximum resident set size (KB) = 889628 -Test 050 hrrr_control PASS +Test 053 hrrr_control PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/hrrr_control_decomp -Checking test 051 hrrr_control_decomp results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/hrrr_control_decomp +Checking test 054 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2254,15 +2297,15 @@ Checking test 051 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 414.387322 -The maximum resident set size (KB) = 888004 +The total amount of wall time = 414.883512 +The maximum resident set size (KB) = 888804 -Test 051 hrrr_control_decomp PASS +Test 054 hrrr_control_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/hrrr_control_2threads -Checking test 052 hrrr_control_2threads results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/hrrr_control_2threads +Checking test 055 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2308,15 +2351,15 @@ Checking test 052 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 371.982787 -The maximum resident set size (KB) = 955280 +The total amount of wall time = 372.301101 +The maximum resident set size (KB) = 959696 -Test 052 hrrr_control_2threads PASS +Test 055 hrrr_control_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/hrrr_control_restart -Checking test 053 hrrr_control_restart results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/hrrr_control_restart +Checking test 056 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2354,15 +2397,15 @@ Checking test 053 hrrr_control_restart results .... 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.957876 -The maximum resident set size (KB) = 640388 +The total amount of wall time = 298.796514 +The maximum resident set size (KB) = 643128 -Test 053 hrrr_control_restart PASS +Test 056 hrrr_control_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_v1beta -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/rrfs_v1beta -Checking test 054 rrfs_v1beta results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_v1beta +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/rrfs_v1beta +Checking test 057 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2408,15 +2451,15 @@ Checking test 054 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 410.500777 -The maximum resident set size (KB) = 886788 +The total amount of wall time = 410.200293 +The maximum resident set size (KB) = 883548 -Test 054 rrfs_v1beta PASS +Test 057 rrfs_v1beta PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_v1nssl -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/rrfs_v1nssl -Checking test 055 rrfs_v1nssl results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_v1nssl +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/rrfs_v1nssl +Checking test 058 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2430,15 +2473,15 @@ Checking test 055 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 473.047504 -The maximum resident set size (KB) = 577792 +The total amount of wall time = 471.995623 +The maximum resident set size (KB) = 574464 -Test 055 rrfs_v1nssl PASS +Test 058 rrfs_v1nssl PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/rrfs_v1nssl_nohailnoccn -Checking test 056 rrfs_v1nssl_nohailnoccn results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/rrfs_v1nssl_nohailnoccn +Checking test 059 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2452,15 +2495,15 @@ Checking test 056 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 463.494419 -The maximum resident set size (KB) = 566256 +The total amount of wall time = 462.271003 +The maximum resident set size (KB) = 565268 -Test 056 rrfs_v1nssl_nohailnoccn PASS +Test 059 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/rrfs_conus13km_hrrr_warm -Checking test 057 rrfs_conus13km_hrrr_warm results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/rrfs_conus13km_hrrr_warm +Checking test 060 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2468,15 +2511,15 @@ Checking test 057 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 115.401010 -The maximum resident set size (KB) = 762492 +The total amount of wall time = 114.836438 +The maximum resident set size (KB) = 758484 -Test 057 rrfs_conus13km_hrrr_warm PASS +Test 060 rrfs_conus13km_hrrr_warm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/rrfs_smoke_conus13km_hrrr_warm -Checking test 058 rrfs_smoke_conus13km_hrrr_warm results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/rrfs_smoke_conus13km_hrrr_warm +Checking test 061 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2484,15 +2527,15 @@ Checking test 058 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 127.033813 -The maximum resident set size (KB) = 769704 +The total amount of wall time = 126.856673 +The maximum resident set size (KB) = 774360 -Test 058 rrfs_smoke_conus13km_hrrr_warm PASS +Test 061 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/rrfs_conus13km_radar_tten_warm -Checking test 059 rrfs_conus13km_radar_tten_warm results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/rrfs_conus13km_radar_tten_warm +Checking test 062 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2500,15 +2543,15 @@ Checking test 059 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 116.906327 -The maximum resident set size (KB) = 765424 +The total amount of wall time = 114.595876 +The maximum resident set size (KB) = 763424 -Test 059 rrfs_conus13km_radar_tten_warm PASS +Test 062 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/rrfs_conus13km_hrrr_warm_2threads -Checking test 060 rrfs_conus13km_hrrr_warm_2threads results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/rrfs_conus13km_hrrr_warm_2threads +Checking test 063 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2516,15 +2559,15 @@ Checking test 060 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 83.952863 -The maximum resident set size (KB) = 759268 +The total amount of wall time = 83.795698 +The maximum resident set size (KB) = 762576 -Test 060 rrfs_conus13km_hrrr_warm_2threads PASS +Test 063 rrfs_conus13km_hrrr_warm_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/rrfs_conus13km_radar_tten_warm_2threads -Checking test 061 rrfs_conus13km_radar_tten_warm_2threads results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/rrfs_conus13km_radar_tten_warm_2threads +Checking test 064 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2532,15 +2575,15 @@ Checking test 061 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 85.723153 -The maximum resident set size (KB) = 760224 +The total amount of wall time = 84.637876 +The maximum resident set size (KB) = 764604 -Test 061 rrfs_conus13km_radar_tten_warm_2threads PASS +Test 064 rrfs_conus13km_radar_tten_warm_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_csawmg -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/control_csawmg -Checking test 062 control_csawmg results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_csawmg +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/control_csawmg +Checking test 065 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2550,15 +2593,15 @@ Checking test 062 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 351.443287 -The maximum resident set size (KB) = 585132 +The total amount of wall time = 352.886635 +The maximum resident set size (KB) = 583244 -Test 062 control_csawmg PASS +Test 065 control_csawmg PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_csawmgt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/control_csawmgt -Checking test 063 control_csawmgt results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_csawmgt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/control_csawmgt +Checking test 066 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2568,15 +2611,15 @@ Checking test 063 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 347.171585 -The maximum resident set size (KB) = 584552 +The total amount of wall time = 348.315742 +The maximum resident set size (KB) = 590848 -Test 063 control_csawmgt PASS +Test 066 control_csawmgt PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_ras -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/control_ras -Checking test 064 control_ras results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_ras +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/control_ras +Checking test 067 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2586,27 +2629,27 @@ Checking test 064 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 180.902537 -The maximum resident set size (KB) = 551420 +The total amount of wall time = 181.938031 +The maximum resident set size (KB) = 550200 -Test 064 control_ras PASS +Test 067 control_ras PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_wam -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/control_wam -Checking test 065 control_wam results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_wam +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/control_wam +Checking test 068 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 117.650267 -The maximum resident set size (KB) = 271224 +The total amount of wall time = 117.039141 +The maximum resident set size (KB) = 268896 -Test 065 control_wam PASS +Test 068 control_wam PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/control_p8_faster -Checking test 066 control_p8_faster results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/control_p8_faster +Checking test 069 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2652,15 +2695,15 @@ Checking test 066 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 172.954965 -The maximum resident set size (KB) = 1484164 +The total amount of wall time = 173.426291 +The maximum resident set size (KB) = 1480712 -Test 066 control_p8_faster PASS +Test 069 control_p8_faster PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_control_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/regional_control_faster -Checking test 067 regional_control_faster results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_control_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/regional_control_faster +Checking test 070 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2670,43 +2713,43 @@ Checking test 067 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 281.566286 -The maximum resident set size (KB) = 652816 +The total amount of wall time = 281.606805 +The maximum resident set size (KB) = 653448 -Test 067 regional_control_faster PASS +Test 070 regional_control_faster PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/rrfs_conus13km_hrrr_warm_debug -Checking test 068 rrfs_conus13km_hrrr_warm_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/rrfs_conus13km_hrrr_warm_debug +Checking test 071 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 785.885212 -The maximum resident set size (KB) = 782700 +The total amount of wall time = 782.641414 +The maximum resident set size (KB) = 789492 -Test 068 rrfs_conus13km_hrrr_warm_debug PASS +Test 071 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/rrfs_conus13km_radar_tten_warm_debug -Checking test 069 rrfs_conus13km_radar_tten_warm_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_conus13km_radar_tten_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/rrfs_conus13km_radar_tten_warm_debug +Checking test 072 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 769.717908 -The maximum resident set size (KB) = 795760 +The total amount of wall time = 779.096403 +The maximum resident set size (KB) = 795008 -Test 069 rrfs_conus13km_radar_tten_warm_debug PASS +Test 072 rrfs_conus13km_radar_tten_warm_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_CubedSphereGrid_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/control_CubedSphereGrid_debug -Checking test 070 control_CubedSphereGrid_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_CubedSphereGrid_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/control_CubedSphereGrid_debug +Checking test 073 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -2732,335 +2775,335 @@ Checking test 070 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 167.197487 -The maximum resident set size (KB) = 676460 +The total amount of wall time = 167.673383 +The maximum resident set size (KB) = 672980 -Test 070 control_CubedSphereGrid_debug PASS +Test 073 control_CubedSphereGrid_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/control_wrtGauss_netcdf_parallel_debug -Checking test 071 control_wrtGauss_netcdf_parallel_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/control_wrtGauss_netcdf_parallel_debug +Checking test 074 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 159.669025 -The maximum resident set size (KB) = 676872 +The total amount of wall time = 160.188574 +The maximum resident set size (KB) = 676340 -Test 071 control_wrtGauss_netcdf_parallel_debug PASS +Test 074 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_stochy_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/control_stochy_debug -Checking test 072 control_stochy_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_stochy_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/control_stochy_debug +Checking test 075 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 178.802307 -The maximum resident set size (KB) = 683752 +The total amount of wall time = 180.681464 +The maximum resident set size (KB) = 680564 -Test 072 control_stochy_debug PASS +Test 075 control_stochy_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/control_lndp_debug -Checking test 073 control_lndp_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/control_lndp_debug +Checking test 076 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 162.226467 -The maximum resident set size (KB) = 679268 +The total amount of wall time = 162.002099 +The maximum resident set size (KB) = 681880 -Test 073 control_lndp_debug PASS +Test 076 control_lndp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_csawmg_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/control_csawmg_debug -Checking test 074 control_csawmg_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_csawmg_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/control_csawmg_debug +Checking test 077 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 257.045782 -The maximum resident set size (KB) = 716224 +The total amount of wall time = 259.390450 +The maximum resident set size (KB) = 721084 -Test 074 control_csawmg_debug PASS +Test 077 control_csawmg_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_csawmgt_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/control_csawmgt_debug -Checking test 075 control_csawmgt_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_csawmgt_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/control_csawmgt_debug +Checking test 078 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 252.945424 -The maximum resident set size (KB) = 715880 +The total amount of wall time = 253.383096 +The maximum resident set size (KB) = 717852 -Test 075 control_csawmgt_debug PASS +Test 078 control_csawmgt_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_ras_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/control_ras_debug -Checking test 076 control_ras_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_ras_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/control_ras_debug +Checking test 079 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 162.633197 -The maximum resident set size (KB) = 685988 +The total amount of wall time = 162.896394 +The maximum resident set size (KB) = 689120 -Test 076 control_ras_debug PASS +Test 079 control_ras_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/control_diag_debug -Checking test 077 control_diag_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/control_diag_debug +Checking test 080 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 164.507138 -The maximum resident set size (KB) = 735060 +The total amount of wall time = 165.166534 +The maximum resident set size (KB) = 738116 -Test 077 control_diag_debug PASS +Test 080 control_diag_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_debug_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/control_debug_p8 -Checking test 078 control_debug_p8 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_debug_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/control_debug_p8 +Checking test 081 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 188.383089 -The maximum resident set size (KB) = 1500012 +The total amount of wall time = 186.214458 +The maximum resident set size (KB) = 1503016 -Test 078 control_debug_p8 PASS +Test 081 control_debug_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/regional_debug -Checking test 079 regional_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/regional_debug +Checking test 082 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1034.661701 -The maximum resident set size (KB) = 681148 +The total amount of wall time = 1048.685534 +The maximum resident set size (KB) = 677292 -Test 079 regional_debug PASS +Test 082 regional_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/rap_control_debug -Checking test 080 rap_control_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/rap_control_debug +Checking test 083 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 299.426846 -The maximum resident set size (KB) = 1051168 +The total amount of wall time = 301.190251 +The maximum resident set size (KB) = 1057436 -Test 080 rap_control_debug PASS +Test 083 rap_control_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/hrrr_control_debug -Checking test 081 hrrr_control_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/hrrr_control_debug +Checking test 084 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 292.071693 -The maximum resident set size (KB) = 1052840 +The total amount of wall time = 294.523007 +The maximum resident set size (KB) = 1048852 -Test 081 hrrr_control_debug PASS +Test 084 hrrr_control_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/rap_unified_drag_suite_debug -Checking test 082 rap_unified_drag_suite_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/rap_unified_drag_suite_debug +Checking test 085 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 296.948959 -The maximum resident set size (KB) = 1050624 +The total amount of wall time = 300.953307 +The maximum resident set size (KB) = 1054564 -Test 082 rap_unified_drag_suite_debug PASS +Test 085 rap_unified_drag_suite_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/rap_diag_debug -Checking test 083 rap_diag_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/rap_diag_debug +Checking test 086 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 308.235165 -The maximum resident set size (KB) = 1132572 +The total amount of wall time = 311.505485 +The maximum resident set size (KB) = 1137600 -Test 083 rap_diag_debug PASS +Test 086 rap_diag_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/rap_cires_ugwp_debug -Checking test 084 rap_cires_ugwp_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/rap_cires_ugwp_debug +Checking test 087 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 303.500928 -The maximum resident set size (KB) = 1047384 +The total amount of wall time = 306.903844 +The maximum resident set size (KB) = 1055652 -Test 084 rap_cires_ugwp_debug PASS +Test 087 rap_cires_ugwp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/rap_unified_ugwp_debug -Checking test 085 rap_unified_ugwp_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/rap_unified_ugwp_debug +Checking test 088 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 305.837903 -The maximum resident set size (KB) = 1052300 +The total amount of wall time = 306.709626 +The maximum resident set size (KB) = 1058152 -Test 085 rap_unified_ugwp_debug PASS +Test 088 rap_unified_ugwp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/rap_lndp_debug -Checking test 086 rap_lndp_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/rap_lndp_debug +Checking test 089 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 299.955583 -The maximum resident set size (KB) = 1050572 +The total amount of wall time = 303.399194 +The maximum resident set size (KB) = 1056908 -Test 086 rap_lndp_debug PASS +Test 089 rap_lndp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_flake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/rap_flake_debug -Checking test 087 rap_flake_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_flake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/rap_flake_debug +Checking test 090 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.105647 -The maximum resident set size (KB) = 1053220 +The total amount of wall time = 301.059964 +The maximum resident set size (KB) = 1054540 -Test 087 rap_flake_debug PASS +Test 090 rap_flake_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_progcld_thompson_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/rap_progcld_thompson_debug -Checking test 088 rap_progcld_thompson_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_progcld_thompson_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/rap_progcld_thompson_debug +Checking test 091 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.301469 -The maximum resident set size (KB) = 1051472 +The total amount of wall time = 300.578319 +The maximum resident set size (KB) = 1054224 -Test 088 rap_progcld_thompson_debug PASS +Test 091 rap_progcld_thompson_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_noah_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/rap_noah_debug -Checking test 089 rap_noah_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_noah_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/rap_noah_debug +Checking test 092 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 291.143260 -The maximum resident set size (KB) = 1051268 +The total amount of wall time = 294.318083 +The maximum resident set size (KB) = 1051504 -Test 089 rap_noah_debug PASS +Test 092 rap_noah_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_sfcdiff_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/rap_sfcdiff_debug -Checking test 090 rap_sfcdiff_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_sfcdiff_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/rap_sfcdiff_debug +Checking test 093 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 296.860215 -The maximum resident set size (KB) = 1048476 +The total amount of wall time = 301.281189 +The maximum resident set size (KB) = 1053576 -Test 090 rap_sfcdiff_debug PASS +Test 093 rap_sfcdiff_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 091 rap_noah_sfcdiff_cires_ugwp_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 094 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 486.091563 -The maximum resident set size (KB) = 1049508 +The total amount of wall time = 494.499347 +The maximum resident set size (KB) = 1051312 -Test 091 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 094 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_v1beta_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/rrfs_v1beta_debug -Checking test 092 rrfs_v1beta_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_v1beta_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/rrfs_v1beta_debug +Checking test 095 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 292.159890 -The maximum resident set size (KB) = 1045392 +The total amount of wall time = 294.948689 +The maximum resident set size (KB) = 1053404 -Test 092 rrfs_v1beta_debug PASS +Test 095 rrfs_v1beta_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_wam_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/control_wam_debug -Checking test 093 control_wam_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_wam_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/control_wam_debug +Checking test 096 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 299.726056 -The maximum resident set size (KB) = 302172 +The total amount of wall time = 298.727206 +The maximum resident set size (KB) = 300704 -Test 093 control_wam_debug PASS +Test 096 control_wam_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/regional_spp_sppt_shum_skeb_dyn32_phy32 -Checking test 094 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 097 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -3070,15 +3113,15 @@ Checking test 094 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 267.732357 -The maximum resident set size (KB) = 881144 +The total amount of wall time = 271.636452 +The maximum resident set size (KB) = 876520 -Test 094 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS +Test 097 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/rap_control_dyn32_phy32 -Checking test 095 rap_control_dyn32_phy32 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/rap_control_dyn32_phy32 +Checking test 098 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3124,15 +3167,15 @@ Checking test 095 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 342.877945 -The maximum resident set size (KB) = 776740 +The total amount of wall time = 343.328650 +The maximum resident set size (KB) = 774540 -Test 095 rap_control_dyn32_phy32 PASS +Test 098 rap_control_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/hrrr_control_dyn32_phy32 -Checking test 096 hrrr_control_dyn32_phy32 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/hrrr_control_dyn32_phy32 +Checking test 099 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3178,15 +3221,15 @@ Checking test 096 hrrr_control_dyn32_phy32 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 = 184.779883 -The maximum resident set size (KB) = 774876 +The total amount of wall time = 184.531887 +The maximum resident set size (KB) = 771268 -Test 096 hrrr_control_dyn32_phy32 PASS +Test 099 hrrr_control_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/rap_2threads_dyn32_phy32 -Checking test 097 rap_2threads_dyn32_phy32 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/rap_2threads_dyn32_phy32 +Checking test 100 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3232,15 +3275,15 @@ Checking test 097 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 322.488453 -The maximum resident set size (KB) = 828020 +The total amount of wall time = 319.721165 +The maximum resident set size (KB) = 830612 -Test 097 rap_2threads_dyn32_phy32 PASS +Test 100 rap_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/hrrr_control_2threads_dyn32_phy32 -Checking test 098 hrrr_control_2threads_dyn32_phy32 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/hrrr_control_2threads_dyn32_phy32 +Checking test 101 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3286,15 +3329,15 @@ Checking test 098 hrrr_control_2threads_dyn32_phy32 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 = 174.690146 -The maximum resident set size (KB) = 829372 +The total amount of wall time = 173.913977 +The maximum resident set size (KB) = 828292 -Test 098 hrrr_control_2threads_dyn32_phy32 PASS +Test 101 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/hrrr_control_decomp_dyn32_phy32 -Checking test 099 hrrr_control_decomp_dyn32_phy32 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/hrrr_control_decomp_dyn32_phy32 +Checking test 102 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3340,15 +3383,15 @@ Checking test 099 hrrr_control_decomp_dyn32_phy32 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 = 192.410341 -The maximum resident set size (KB) = 774600 +The total amount of wall time = 191.703348 +The maximum resident set size (KB) = 773652 -Test 099 hrrr_control_decomp_dyn32_phy32 PASS +Test 102 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/rap_restart_dyn32_phy32 -Checking test 100 rap_restart_dyn32_phy32 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/rap_restart_dyn32_phy32 +Checking test 103 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3386,15 +3429,15 @@ Checking test 100 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 254.716696 -The maximum resident set size (KB) = 612548 +The total amount of wall time = 255.837439 +The maximum resident set size (KB) = 614160 -Test 100 rap_restart_dyn32_phy32 PASS +Test 103 rap_restart_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/hrrr_control_restart_dyn32_phy32 -Checking test 101 hrrr_control_restart_dyn32_phy32 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/hrrr_control_restart_dyn32_phy32 +Checking test 104 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3432,15 +3475,15 @@ Checking test 101 hrrr_control_restart_dyn32_phy32 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 = 94.179201 -The maximum resident set size (KB) = 608336 +The total amount of wall time = 95.697356 +The maximum resident set size (KB) = 606020 -Test 101 hrrr_control_restart_dyn32_phy32 PASS +Test 104 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/rap_control_dyn64_phy32 -Checking test 102 rap_control_dyn64_phy32 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/rap_control_dyn64_phy32 +Checking test 105 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3486,82 +3529,82 @@ Checking test 102 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -The total amount of wall time = 230.703586 -The maximum resident set size (KB) = 795488 +The total amount of wall time = 232.193414 +The maximum resident set size (KB) = 798516 -Test 102 rap_control_dyn64_phy32 PASS +Test 105 rap_control_dyn64_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/rap_control_debug_dyn32_phy32 -Checking test 103 rap_control_debug_dyn32_phy32 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/rap_control_debug_dyn32_phy32 +Checking test 106 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 292.223105 -The maximum resident set size (KB) = 935212 +The total amount of wall time = 292.161417 +The maximum resident set size (KB) = 939048 -Test 103 rap_control_debug_dyn32_phy32 PASS +Test 106 rap_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/hrrr_control_debug_dyn32_phy32 -Checking test 104 hrrr_control_debug_dyn32_phy32 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/hrrr_control_debug_dyn32_phy32 +Checking test 107 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 286.334076 -The maximum resident set size (KB) = 939192 +The total amount of wall time = 288.649605 +The maximum resident set size (KB) = 935720 -Test 104 hrrr_control_debug_dyn32_phy32 PASS +Test 107 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/rap_control_dyn64_phy32_debug -Checking test 105 rap_control_dyn64_phy32_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/rap_control_dyn64_phy32_debug +Checking test 108 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 293.114984 -The maximum resident set size (KB) = 959632 +The total amount of wall time = 294.256089 +The maximum resident set size (KB) = 951552 -Test 105 rap_control_dyn64_phy32_debug PASS +Test 108 rap_control_dyn64_phy32_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/hafs_regional_atm -Checking test 106 hafs_regional_atm results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/hafs_regional_atm +Checking test 109 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 266.181556 -The maximum resident set size (KB) = 816688 +The total amount of wall time = 266.055450 +The maximum resident set size (KB) = 822240 -Test 106 hafs_regional_atm PASS +Test 109 hafs_regional_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/hafs_regional_atm_thompson_gfdlsf -Checking test 107 hafs_regional_atm_thompson_gfdlsf results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/hafs_regional_atm_thompson_gfdlsf +Checking test 110 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 308.228519 -The maximum resident set size (KB) = 1181448 +The total amount of wall time = 306.669425 +The maximum resident set size (KB) = 1178184 -Test 107 hafs_regional_atm_thompson_gfdlsf PASS +Test 110 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/hafs_regional_atm_ocn -Checking test 108 hafs_regional_atm_ocn results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/hafs_regional_atm_ocn +Checking test 111 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -3569,15 +3612,15 @@ Checking test 108 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 388.620194 -The maximum resident set size (KB) = 851136 +The total amount of wall time = 387.844582 +The maximum resident set size (KB) = 851236 -Test 108 hafs_regional_atm_ocn PASS +Test 111 hafs_regional_atm_ocn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_atm_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/hafs_regional_atm_wav -Checking test 109 hafs_regional_atm_wav results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_atm_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/hafs_regional_atm_wav +Checking test 112 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK @@ -3585,15 +3628,15 @@ Checking test 109 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 704.959607 -The maximum resident set size (KB) = 882116 +The total amount of wall time = 702.379242 +The maximum resident set size (KB) = 883380 -Test 109 hafs_regional_atm_wav PASS +Test 112 hafs_regional_atm_wav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/hafs_regional_atm_ocn_wav -Checking test 110 hafs_regional_atm_ocn_wav results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/hafs_regional_atm_ocn_wav +Checking test 113 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -3603,29 +3646,29 @@ Checking test 110 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 888.467022 -The maximum resident set size (KB) = 906908 +The total amount of wall time = 889.298106 +The maximum resident set size (KB) = 906928 -Test 110 hafs_regional_atm_ocn_wav PASS +Test 113 hafs_regional_atm_ocn_wav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/hafs_regional_1nest_atm -Checking test 111 hafs_regional_1nest_atm results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/hafs_regional_1nest_atm +Checking test 114 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 326.881340 -The maximum resident set size (KB) = 388140 +The total amount of wall time = 325.476663 +The maximum resident set size (KB) = 387276 -Test 111 hafs_regional_1nest_atm PASS +Test 114 hafs_regional_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/hafs_regional_telescopic_2nests_atm -Checking test 112 hafs_regional_telescopic_2nests_atm results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/hafs_regional_telescopic_2nests_atm +Checking test 115 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -3633,29 +3676,29 @@ Checking test 112 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 398.664555 -The maximum resident set size (KB) = 407016 +The total amount of wall time = 397.908669 +The maximum resident set size (KB) = 413472 -Test 112 hafs_regional_telescopic_2nests_atm PASS +Test 115 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_global_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/hafs_global_1nest_atm -Checking test 113 hafs_global_1nest_atm results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_global_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/hafs_global_1nest_atm +Checking test 116 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 165.894586 -The maximum resident set size (KB) = 265284 +The total amount of wall time = 165.393401 +The maximum resident set size (KB) = 263528 -Test 113 hafs_global_1nest_atm PASS +Test 116 hafs_global_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_global_multiple_4nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/hafs_global_multiple_4nests_atm -Checking test 114 hafs_global_multiple_4nests_atm results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_global_multiple_4nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/hafs_global_multiple_4nests_atm +Checking test 117 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -3672,15 +3715,15 @@ Checking test 114 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -The total amount of wall time = 488.463274 -The maximum resident set size (KB) = 337664 +The total amount of wall time = 489.392898 +The maximum resident set size (KB) = 337980 -Test 114 hafs_global_multiple_4nests_atm PASS +Test 117 hafs_global_multiple_4nests_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/hafs_regional_specified_moving_1nest_atm -Checking test 115 hafs_regional_specified_moving_1nest_atm results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/hafs_regional_specified_moving_1nest_atm +Checking test 118 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -3688,29 +3731,29 @@ Checking test 115 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 212.332714 -The maximum resident set size (KB) = 400716 +The total amount of wall time = 211.856241 +The maximum resident set size (KB) = 402812 -Test 115 hafs_regional_specified_moving_1nest_atm PASS +Test 118 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/hafs_regional_storm_following_1nest_atm -Checking test 116 hafs_regional_storm_following_1nest_atm results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/hafs_regional_storm_following_1nest_atm +Checking test 119 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 200.764722 -The maximum resident set size (KB) = 400856 +The total amount of wall time = 199.888508 +The maximum resident set size (KB) = 399332 -Test 116 hafs_regional_storm_following_1nest_atm PASS +Test 119 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/hafs_regional_storm_following_1nest_atm_ocn -Checking test 117 hafs_regional_storm_following_1nest_atm_ocn results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/hafs_regional_storm_following_1nest_atm_ocn +Checking test 120 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -3718,43 +3761,43 @@ Checking test 117 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 240.526596 -The maximum resident set size (KB) = 451000 +The total amount of wall time = 240.002963 +The maximum resident set size (KB) = 451844 -Test 117 hafs_regional_storm_following_1nest_atm_ocn PASS +Test 120 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/hafs_global_storm_following_1nest_atm -Checking test 118 hafs_global_storm_following_1nest_atm results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_global_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/hafs_global_storm_following_1nest_atm +Checking test 121 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 78.322747 -The maximum resident set size (KB) = 274696 +The total amount of wall time = 78.611661 +The maximum resident set size (KB) = 281300 -Test 118 hafs_global_storm_following_1nest_atm PASS +Test 121 hafs_global_storm_following_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/hafs_regional_storm_following_1nest_atm_ocn_debug -Checking test 119 hafs_regional_storm_following_1nest_atm_ocn_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/hafs_regional_storm_following_1nest_atm_ocn_debug +Checking test 122 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 804.934897 -The maximum resident set size (KB) = 477248 +The total amount of wall time = 795.926282 +The maximum resident set size (KB) = 478808 -Test 119 hafs_regional_storm_following_1nest_atm_ocn_debug PASS +Test 122 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/hafs_regional_storm_following_1nest_atm_ocn_wav -Checking test 120 hafs_regional_storm_following_1nest_atm_ocn_wav results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 123 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -3764,162 +3807,162 @@ Checking test 120 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -The total amount of wall time = 520.056888 -The maximum resident set size (KB) = 523308 +The total amount of wall time = 516.160088 +The maximum resident set size (KB) = 517844 -Test 120 hafs_regional_storm_following_1nest_atm_ocn_wav PASS +Test 123 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_docn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/hafs_regional_docn -Checking test 121 hafs_regional_docn results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_docn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/hafs_regional_docn +Checking test 124 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 369.062854 -The maximum resident set size (KB) = 854164 +The total amount of wall time = 367.207102 +The maximum resident set size (KB) = 852700 -Test 121 hafs_regional_docn PASS +Test 124 hafs_regional_docn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_docn_oisst -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/hafs_regional_docn_oisst -Checking test 122 hafs_regional_docn_oisst results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_docn_oisst +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/hafs_regional_docn_oisst +Checking test 125 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 371.751604 -The maximum resident set size (KB) = 839244 +The total amount of wall time = 371.422840 +The maximum resident set size (KB) = 841896 -Test 122 hafs_regional_docn_oisst PASS +Test 125 hafs_regional_docn_oisst PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_datm_cdeps -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/hafs_regional_datm_cdeps -Checking test 123 hafs_regional_datm_cdeps results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_datm_cdeps +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/hafs_regional_datm_cdeps +Checking test 126 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -The total amount of wall time = 945.934951 -The maximum resident set size (KB) = 832512 +The total amount of wall time = 947.163735 +The maximum resident set size (KB) = 836580 -Test 123 hafs_regional_datm_cdeps PASS +Test 126 hafs_regional_datm_cdeps PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/datm_cdeps_control_cfsr -Checking test 124 datm_cdeps_control_cfsr results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_control_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/datm_cdeps_control_cfsr +Checking test 127 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.304950 -The maximum resident set size (KB) = 719964 +The total amount of wall time = 140.994937 +The maximum resident set size (KB) = 734840 -Test 124 datm_cdeps_control_cfsr PASS +Test 127 datm_cdeps_control_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/datm_cdeps_restart_cfsr -Checking test 125 datm_cdeps_restart_cfsr results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_control_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/datm_cdeps_restart_cfsr +Checking test 128 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 86.179557 -The maximum resident set size (KB) = 728380 +The total amount of wall time = 85.773234 +The maximum resident set size (KB) = 730380 -Test 125 datm_cdeps_restart_cfsr PASS +Test 128 datm_cdeps_restart_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_control_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/datm_cdeps_control_gefs -Checking test 126 datm_cdeps_control_gefs results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_control_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/datm_cdeps_control_gefs +Checking test 129 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 133.777455 -The maximum resident set size (KB) = 612660 +The total amount of wall time = 133.323421 +The maximum resident set size (KB) = 612740 -Test 126 datm_cdeps_control_gefs PASS +Test 129 datm_cdeps_control_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_iau_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/datm_cdeps_iau_gefs -Checking test 127 datm_cdeps_iau_gefs results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_iau_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/datm_cdeps_iau_gefs +Checking test 130 datm_cdeps_iau_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 136.705984 -The maximum resident set size (KB) = 610720 +The total amount of wall time = 135.786052 +The maximum resident set size (KB) = 613024 -Test 127 datm_cdeps_iau_gefs PASS +Test 130 datm_cdeps_iau_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_stochy_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/datm_cdeps_stochy_gefs -Checking test 128 datm_cdeps_stochy_gefs results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_stochy_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/datm_cdeps_stochy_gefs +Checking test 131 datm_cdeps_stochy_gefs 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.765775 -The maximum resident set size (KB) = 616584 +The total amount of wall time = 138.993854 +The maximum resident set size (KB) = 616896 -Test 128 datm_cdeps_stochy_gefs PASS +Test 131 datm_cdeps_stochy_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/datm_cdeps_ciceC_cfsr -Checking test 129 datm_cdeps_ciceC_cfsr results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_ciceC_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/datm_cdeps_ciceC_cfsr +Checking test 132 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.137256 -The maximum resident set size (KB) = 723476 +The total amount of wall time = 141.458523 +The maximum resident set size (KB) = 733372 -Test 129 datm_cdeps_ciceC_cfsr PASS +Test 132 datm_cdeps_ciceC_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/datm_cdeps_bulk_cfsr -Checking test 130 datm_cdeps_bulk_cfsr results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_bulk_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/datm_cdeps_bulk_cfsr +Checking test 133 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.587270 -The maximum resident set size (KB) = 733388 +The total amount of wall time = 141.245153 +The maximum resident set size (KB) = 732172 -Test 130 datm_cdeps_bulk_cfsr PASS +Test 133 datm_cdeps_bulk_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/datm_cdeps_bulk_gefs -Checking test 131 datm_cdeps_bulk_gefs results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_bulk_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/datm_cdeps_bulk_gefs +Checking test 134 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 133.895841 -The maximum resident set size (KB) = 614320 +The total amount of wall time = 133.871109 +The maximum resident set size (KB) = 621744 -Test 131 datm_cdeps_bulk_gefs PASS +Test 134 datm_cdeps_bulk_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/datm_cdeps_mx025_cfsr -Checking test 132 datm_cdeps_mx025_cfsr results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_mx025_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/datm_cdeps_mx025_cfsr +Checking test 135 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -3927,15 +3970,15 @@ Checking test 132 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 430.011626 -The maximum resident set size (KB) = 572156 +The total amount of wall time = 432.400216 +The maximum resident set size (KB) = 571820 -Test 132 datm_cdeps_mx025_cfsr PASS +Test 135 datm_cdeps_mx025_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/datm_cdeps_mx025_gefs -Checking test 133 datm_cdeps_mx025_gefs results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_mx025_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/datm_cdeps_mx025_gefs +Checking test 136 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -3943,65 +3986,65 @@ Checking test 133 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 427.333554 -The maximum resident set size (KB) = 549488 +The total amount of wall time = 429.300592 +The maximum resident set size (KB) = 547060 -Test 133 datm_cdeps_mx025_gefs PASS +Test 136 datm_cdeps_mx025_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/datm_cdeps_multiple_files_cfsr -Checking test 134 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_control_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/datm_cdeps_multiple_files_cfsr +Checking test 137 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.055922 -The maximum resident set size (KB) = 735312 +The total amount of wall time = 140.746361 +The maximum resident set size (KB) = 731244 -Test 134 datm_cdeps_multiple_files_cfsr PASS +Test 137 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/datm_cdeps_3072x1536_cfsr -Checking test 135 datm_cdeps_3072x1536_cfsr results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/datm_cdeps_3072x1536_cfsr +Checking test 138 datm_cdeps_3072x1536_cfsr 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 = 257.840833 -The maximum resident set size (KB) = 1979168 +The total amount of wall time = 256.382546 +The maximum resident set size (KB) = 1980804 -Test 135 datm_cdeps_3072x1536_cfsr PASS +Test 138 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_gfs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/datm_cdeps_gfs -Checking test 136 datm_cdeps_gfs results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_gfs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/datm_cdeps_gfs +Checking test 139 datm_cdeps_gfs 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 = 256.809276 -The maximum resident set size (KB) = 1980412 +The total amount of wall time = 257.056736 +The maximum resident set size (KB) = 1980596 -Test 136 datm_cdeps_gfs PASS +Test 139 datm_cdeps_gfs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_control_cfsr_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/datm_cdeps_control_cfsr_faster -Checking test 137 datm_cdeps_control_cfsr_faster results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_control_cfsr_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/datm_cdeps_control_cfsr_faster +Checking test 140 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.706590 -The maximum resident set size (KB) = 734880 +The total amount of wall time = 141.194100 +The maximum resident set size (KB) = 732520 -Test 137 datm_cdeps_control_cfsr_faster PASS +Test 140 datm_cdeps_control_cfsr_faster PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/datm_cdeps_lnd_gswp3 -Checking test 138 datm_cdeps_lnd_gswp3 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/datm_cdeps_lnd_gswp3 +Checking test 141 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4009,15 +4052,15 @@ Checking test 138 datm_cdeps_lnd_gswp3 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.095345 -The maximum resident set size (KB) = 227284 +The total amount of wall time = 21.969593 +The maximum resident set size (KB) = 226748 -Test 138 datm_cdeps_lnd_gswp3 PASS +Test 141 datm_cdeps_lnd_gswp3 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/datm_cdeps_lnd_gswp3_rst -Checking test 139 datm_cdeps_lnd_gswp3_rst results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/datm_cdeps_lnd_gswp3_rst +Checking test 142 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4025,15 +4068,15 @@ Checking test 139 datm_cdeps_lnd_gswp3_rst 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.560058 -The maximum resident set size (KB) = 229088 +The total amount of wall time = 27.532237 +The maximum resident set size (KB) = 227900 -Test 139 datm_cdeps_lnd_gswp3_rst PASS +Test 142 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8_atmlnd_sbs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/control_p8_atmlnd_sbs -Checking test 140 control_p8_atmlnd_sbs results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8_atmlnd_sbs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/control_p8_atmlnd_sbs +Checking test 143 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -4117,15 +4160,15 @@ Checking test 140 control_p8_atmlnd_sbs 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 = 234.353301 -The maximum resident set size (KB) = 1539928 +The total amount of wall time = 232.502816 +The maximum resident set size (KB) = 1540544 -Test 140 control_p8_atmlnd_sbs PASS +Test 143 control_p8_atmlnd_sbs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_atmwav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/control_atmwav -Checking test 141 control_atmwav results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_atmwav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/control_atmwav +Checking test 144 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -4168,15 +4211,15 @@ Checking test 141 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -The total amount of wall time = 91.215109 -The maximum resident set size (KB) = 542260 +The total amount of wall time = 91.491844 +The maximum resident set size (KB) = 538492 -Test 141 control_atmwav PASS +Test 144 control_atmwav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/atmaero_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/atmaero_control_p8 -Checking test 142 atmaero_control_p8 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/atmaero_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/atmaero_control_p8 +Checking test 145 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4219,15 +4262,15 @@ Checking test 142 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 245.610761 -The maximum resident set size (KB) = 2812588 +The total amount of wall time = 243.176325 +The maximum resident set size (KB) = 2812664 -Test 142 atmaero_control_p8 PASS +Test 145 atmaero_control_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/atmaero_control_p8_rad -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/atmaero_control_p8_rad -Checking test 143 atmaero_control_p8_rad results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/atmaero_control_p8_rad +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/atmaero_control_p8_rad +Checking test 146 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4270,15 +4313,15 @@ Checking test 143 atmaero_control_p8_rad results .... 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.382961 -The maximum resident set size (KB) = 2873576 +The total amount of wall time = 282.340050 +The maximum resident set size (KB) = 2873472 -Test 143 atmaero_control_p8_rad PASS +Test 146 atmaero_control_p8_rad PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/atmaero_control_p8_rad_micro -Checking test 144 atmaero_control_p8_rad_micro results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/atmaero_control_p8_rad_micro +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/atmaero_control_p8_rad_micro +Checking test 147 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4321,15 +4364,15 @@ Checking test 144 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 287.510168 -The maximum resident set size (KB) = 2883188 +The total amount of wall time = 288.370796 +The maximum resident set size (KB) = 2882472 -Test 144 atmaero_control_p8_rad_micro PASS +Test 147 atmaero_control_p8_rad_micro PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_atmaq -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/regional_atmaq -Checking test 145 regional_atmaq results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_atmaq +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/regional_atmaq +Checking test 148 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -4344,15 +4387,15 @@ Checking test 145 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 681.393310 -The maximum resident set size (KB) = 1260560 +The total amount of wall time = 683.429800 +The maximum resident set size (KB) = 1260532 -Test 145 regional_atmaq PASS +Test 148 regional_atmaq PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_atmaq_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/regional_atmaq_debug -Checking test 146 regional_atmaq_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_atmaq_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/regional_atmaq_debug +Checking test 149 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -4365,15 +4408,15 @@ Checking test 146 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1355.605468 -The maximum resident set size (KB) = 1294228 +The total amount of wall time = 1388.402861 +The maximum resident set size (KB) = 1299244 -Test 146 regional_atmaq_debug PASS +Test 149 regional_atmaq_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_atmaq_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24979/regional_atmaq_faster -Checking test 147 regional_atmaq_faster results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_atmaq_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/regional_atmaq_faster +Checking test 150 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -4388,12 +4431,12 @@ Checking test 147 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 633.249787 -The maximum resident set size (KB) = 1249624 +The total amount of wall time = 632.713667 +The maximum resident set size (KB) = 1259452 -Test 147 regional_atmaq_faster PASS +Test 150 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Tue Mar 21 01:27:04 UTC 2023 -Elapsed time: 01h:58m:49s. Have a nice day! +Thu Mar 23 16:37:34 UTC 2023 +Elapsed time: 01h:31m:06s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index b1055aa8b77..5e2192a1bf1 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,21 +1,21 @@ -Mon Mar 20 17:53:20 MDT 2023 +Wed Mar 22 20:56:32 MDT 2023 Start Regression test Compile 001 elapsed time 377 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 397 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 852 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 189 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 360 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 1069 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 844 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 841 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 615 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 564 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 354 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 002 elapsed time 395 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 857 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 194 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 364 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 1083 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 846 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 848 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 658 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 561 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 346 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON Compile 012 elapsed time 297 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/control_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/control_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/control_c48 +working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/control_c48 Checking test 001 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -54,14 +54,14 @@ Checking test 001 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 820.709843 -0:The maximum resident set size (KB) = 675588 +0:The total amount of wall time = 816.618885 +0:The maximum resident set size (KB) = 675656 Test 001 control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/control_stochy +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/control_stochy +working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/control_stochy Checking test 002 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -72,14 +72,14 @@ Checking test 002 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 177.723963 -0:The maximum resident set size (KB) = 442572 +0:The total amount of wall time = 177.905373 +0:The maximum resident set size (KB) = 442484 Test 002 control_stochy PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/control_ras -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/control_ras +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/control_ras +working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/control_ras Checking test 003 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -90,14 +90,14 @@ Checking test 003 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 293.682169 -0:The maximum resident set size (KB) = 451944 +0:The total amount of wall time = 293.740918 +0:The maximum resident set size (KB) = 451976 Test 003 control_ras PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/control_p8 +working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/control_p8 Checking test 004 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -144,14 +144,14 @@ Checking test 004 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 310.985702 -0:The maximum resident set size (KB) = 1225968 +0:The total amount of wall time = 307.276605 +0:The maximum resident set size (KB) = 1225352 Test 004 control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/rap_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/rap_control +working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/rap_control Checking test 005 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -198,14 +198,14 @@ Checking test 005 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 719.407855 -0:The maximum resident set size (KB) = 791408 +0:The total amount of wall time = 719.602188 +0:The maximum resident set size (KB) = 791852 Test 005 rap_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/rap_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/rap_control +working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/rap_decomp Checking test 006 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -252,14 +252,14 @@ Checking test 006 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 725.032948 -0:The maximum resident set size (KB) = 791592 +0:The total amount of wall time = 727.132436 +0:The maximum resident set size (KB) = 791164 Test 006 rap_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/rap_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/rap_control +working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/rap_2threads Checking test 007 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -306,14 +306,14 @@ Checking test 007 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 663.917571 -0:The maximum resident set size (KB) = 864092 +0:The total amount of wall time = 665.955689 +0:The maximum resident set size (KB) = 863888 Test 007 rap_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/rap_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/rap_control +working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/rap_restart Checking test 008 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -352,14 +352,14 @@ Checking test 008 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 360.191018 -0:The maximum resident set size (KB) = 538516 +0:The total amount of wall time = 359.935330 +0:The maximum resident set size (KB) = 538520 Test 008 rap_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/rap_sfcdiff +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/rap_sfcdiff Checking test 009 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -406,14 +406,14 @@ Checking test 009 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 710.621628 -0:The maximum resident set size (KB) = 791732 +0:The total amount of wall time = 708.350499 +0:The maximum resident set size (KB) = 791712 Test 009 rap_sfcdiff PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/rap_sfcdiff_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/rap_sfcdiff_decomp Checking test 010 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -460,14 +460,14 @@ Checking test 010 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 721.497299 -0:The maximum resident set size (KB) = 790628 +0:The total amount of wall time = 724.788878 +0:The maximum resident set size (KB) = 791064 Test 010 rap_sfcdiff_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/rap_sfcdiff_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/rap_sfcdiff_restart Checking test 011 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -506,14 +506,14 @@ Checking test 011 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 564.829648 -0:The maximum resident set size (KB) = 543904 +0:The total amount of wall time = 530.949794 +0:The maximum resident set size (KB) = 544104 Test 011 rap_sfcdiff_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/hrrr_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/hrrr_control +working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/hrrr_control Checking test 012 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -560,14 +560,14 @@ Checking test 012 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 686.898183 -0:The maximum resident set size (KB) = 789220 +0:The total amount of wall time = 684.805809 +0:The maximum resident set size (KB) = 789184 Test 012 hrrr_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/hrrr_control_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/hrrr_control +working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/hrrr_control_2threads Checking test 013 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -614,14 +614,14 @@ Checking test 013 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 622.582119 -0:The maximum resident set size (KB) = 858796 +0:The total amount of wall time = 626.048502 +0:The maximum resident set size (KB) = 858848 Test 013 hrrr_control_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/hrrr_control_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/hrrr_control +working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/hrrr_control_decomp Checking test 014 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -668,14 +668,14 @@ Checking test 014 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 684.589979 -0:The maximum resident set size (KB) = 788292 +0:The total amount of wall time = 685.192298 +0:The maximum resident set size (KB) = 788656 Test 014 hrrr_control_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/hrrr_control_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/hrrr_control +working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/hrrr_control_restart Checking test 015 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -714,14 +714,14 @@ Checking test 015 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 513.482884 -0:The maximum resident set size (KB) = 539528 +0:The total amount of wall time = 518.778786 +0:The maximum resident set size (KB) = 540116 Test 015 hrrr_control_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/rrfs_v1beta -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/rrfs_v1beta +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/rrfs_v1beta +working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/rrfs_v1beta Checking test 016 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -768,14 +768,14 @@ Checking test 016 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 697.887967 -0:The maximum resident set size (KB) = 788284 +0:The total amount of wall time = 694.745950 +0:The maximum resident set size (KB) = 788616 Test 016 rrfs_v1beta PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/rrfs_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/rrfs_conus13km_hrrr_warm Checking test 017 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -784,14 +784,14 @@ Checking test 017 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 202.964164 -0:The maximum resident set size (KB) = 607244 +0:The total amount of wall time = 203.750286 +0:The maximum resident set size (KB) = 607252 Test 017 rrfs_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/rrfs_smoke_conus13km_hrrr_warm Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -800,14 +800,14 @@ Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 220.949622 -0:The maximum resident set size (KB) = 621116 +0:The total amount of wall time = 222.351565 +0:The maximum resident set size (KB) = 621272 Test 018 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/rrfs_conus13km_radar_tten_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/rrfs_conus13km_radar_tten_warm +working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/rrfs_conus13km_radar_tten_warm Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -816,14 +816,14 @@ Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 203.762445 -0:The maximum resident set size (KB) = 610068 +0:The total amount of wall time = 204.053309 +0:The maximum resident set size (KB) = 609992 Test 019 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/rrfs_conus13km_radar_tten_warm_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/rrfs_conus13km_radar_tten_warm +working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/rrfs_conus13km_radar_tten_warm_2threads Checking test 020 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -832,208 +832,208 @@ Checking test 020 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 130.793791 -0:The maximum resident set size (KB) = 628200 +0:The total amount of wall time = 130.428128 +0:The maximum resident set size (KB) = 628432 Test 020 rrfs_conus13km_radar_tten_warm_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/control_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/control_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/control_diag_debug +working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/control_diag_debug Checking test 021 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 88.965342 -0:The maximum resident set size (KB) = 495488 +0:The total amount of wall time = 88.601405 +0:The maximum resident set size (KB) = 494740 Test 021 control_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/regional_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/regional_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/regional_debug +working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/regional_debug Checking test 022 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 478.196121 -0:The maximum resident set size (KB) = 569236 +0:The total amount of wall time = 474.588948 +0:The maximum resident set size (KB) = 569584 Test 022 regional_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/rap_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/rap_control_debug +working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/rap_control_debug Checking test 023 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 150.800369 -0:The maximum resident set size (KB) = 808352 +0:The total amount of wall time = 149.948891 +0:The maximum resident set size (KB) = 808616 Test 023 rap_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/hrrr_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/hrrr_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/hrrr_control_debug +working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/hrrr_control_debug Checking test 024 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 148.816873 -0:The maximum resident set size (KB) = 804536 +0:The total amount of wall time = 147.784559 +0:The maximum resident set size (KB) = 804440 Test 024 hrrr_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/rap_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/rap_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/rap_diag_debug +working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/rap_diag_debug Checking test 025 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 158.601800 -0:The maximum resident set size (KB) = 891404 +0:The total amount of wall time = 157.917757 +0:The maximum resident set size (KB) = 891624 Test 025 rap_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/rap_noah_sfcdiff_cires_ugwp_debug Checking test 026 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 239.439825 -0:The maximum resident set size (KB) = 806752 +0:The total amount of wall time = 239.521258 +0:The maximum resident set size (KB) = 806900 Test 026 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/rap_progcld_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/rap_progcld_thompson_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/rap_progcld_thompson_debug +working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/rap_progcld_thompson_debug Checking test 027 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 151.301017 -0:The maximum resident set size (KB) = 808892 +0:The total amount of wall time = 149.183587 +0:The maximum resident set size (KB) = 808720 Test 027 rap_progcld_thompson_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/rrfs_v1beta_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/rrfs_v1beta_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/rrfs_v1beta_debug +working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/rrfs_v1beta_debug Checking test 028 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 149.584444 -0:The maximum resident set size (KB) = 803700 +0:The total amount of wall time = 148.908267 +0:The maximum resident set size (KB) = 803856 Test 028 rrfs_v1beta_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/control_ras_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/control_ras_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/control_ras_debug +working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/control_ras_debug Checking test 029 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 85.982489 -0:The maximum resident set size (KB) = 449676 +0:The total amount of wall time = 85.139968 +0:The maximum resident set size (KB) = 449160 Test 029 control_ras_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/control_stochy_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/control_stochy_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/control_stochy_debug +working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/control_stochy_debug Checking test 030 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 94.142701 -0:The maximum resident set size (KB) = 441968 +0:The total amount of wall time = 93.964994 +0:The maximum resident set size (KB) = 441400 Test 030 control_stochy_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/control_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/control_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/control_debug_p8 +working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/control_debug_p8 Checking test 031 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 95.978547 -0:The maximum resident set size (KB) = 1224780 +0:The total amount of wall time = 96.979351 +0:The maximum resident set size (KB) = 1224264 Test 031 control_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/rrfs_conus13km_hrrr_warm_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/rrfs_conus13km_hrrr_warm_debugs +working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/rrfs_conus13km_hrrr_warm_debug Checking test 032 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 388.062280 -0:The maximum resident set size (KB) = 614232 +0:The total amount of wall time = 388.316739 +0:The maximum resident set size (KB) = 614252 Test 032 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/rrfs_conus13km_radar_tten_warm_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/rrfs_conus13km_radar_tten_warm_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/rrfs_conus13km_radar_tten_warm_debug +working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/rrfs_conus13km_radar_tten_warm_debug Checking test 033 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 388.744855 -0:The maximum resident set size (KB) = 617096 +0:The total amount of wall time = 386.076362 +0:The maximum resident set size (KB) = 616892 Test 033 rrfs_conus13km_radar_tten_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/control_wam_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/control_wam_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/control_wam_debug +working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/control_wam_debug Checking test 034 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 145.494216 -0:The maximum resident set size (KB) = 185076 +0:The total amount of wall time = 145.854673 +0:The maximum resident set size (KB) = 185708 Test 034 control_wam_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/rap_control_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/rap_control_dyn32_phy32 Checking test 035 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1080,14 +1080,14 @@ Checking test 035 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 686.280342 -0:The maximum resident set size (KB) = 672604 +0:The total amount of wall time = 686.298656 +0:The maximum resident set size (KB) = 673124 Test 035 rap_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/hrrr_control_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/hrrr_control_dyn32_phy32 Checking test 036 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1134,14 +1134,14 @@ Checking test 036 hrrr_control_dyn32_phy32 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 = 350.306078 -0:The maximum resident set size (KB) = 671092 +0:The total amount of wall time = 349.942631 +0:The maximum resident set size (KB) = 671548 Test 036 hrrr_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/rap_2threads_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/rap_2threads_dyn32_phy32 Checking test 037 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1188,14 +1188,14 @@ Checking test 037 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 630.607094 -0:The maximum resident set size (KB) = 718928 +0:The total amount of wall time = 621.366707 +0:The maximum resident set size (KB) = 718392 Test 037 rap_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/hrrr_control_2threads_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/hrrr_control_2threads_dyn32_phy32 Checking test 038 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1242,14 +1242,14 @@ Checking test 038 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 321.734896 -0:The maximum resident set size (KB) = 715408 +0:The total amount of wall time = 321.085893 +0:The maximum resident set size (KB) = 715548 Test 038 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/hrrr_control_decomp_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/hrrr_control_decomp_dyn32_phy32 Checking test 039 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1296,14 +1296,14 @@ Checking test 039 hrrr_control_decomp_dyn32_phy32 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 = 350.345257 -0:The maximum resident set size (KB) = 670040 +0:The total amount of wall time = 349.830198 +0:The maximum resident set size (KB) = 670164 Test 039 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/rap_restart_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/rap_restart_dyn32_phy32 Checking test 040 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1342,14 +1342,14 @@ Checking test 040 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 516.190492 -0:The maximum resident set size (KB) = 510884 +0:The total amount of wall time = 515.591701 +0:The maximum resident set size (KB) = 511128 Test 040 rap_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/hrrr_control_restart_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/hrrr_control_restart_dyn32_phy32 Checking test 041 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1388,14 +1388,14 @@ Checking test 041 hrrr_control_restart_dyn32_phy32 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 = 178.023635 -0:The maximum resident set size (KB) = 506296 +0:The total amount of wall time = 175.848226 +0:The maximum resident set size (KB) = 507008 Test 041 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/rap_control_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/rap_control_dyn64_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/rap_control_dyn64_phy32 +working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/rap_control_dyn64_phy32 Checking test 042 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1442,56 +1442,56 @@ Checking test 042 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 407.841483 -0:The maximum resident set size (KB) = 693548 +0:The total amount of wall time = 409.313361 +0:The maximum resident set size (KB) = 693828 Test 042 rap_control_dyn64_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/rap_control_debug_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/rap_control_debug_dyn32_phy32 Checking test 043 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 148.305139 -0:The maximum resident set size (KB) = 690504 +0:The total amount of wall time = 148.636778 +0:The maximum resident set size (KB) = 690768 Test 043 rap_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/hrrr_control_debug_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/hrrr_control_debug_dyn32_phy32 Checking test 044 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 146.447386 -0:The maximum resident set size (KB) = 687356 +0:The total amount of wall time = 146.585699 +0:The maximum resident set size (KB) = 687600 Test 044 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/rap_control_dyn64_phy32_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/rap_control_debug_dyn64_phy32 +working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/rap_control_dyn64_phy32_debug Checking test 045 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 154.139085 -0:The maximum resident set size (KB) = 711052 +0:The total amount of wall time = 152.833835 +0:The maximum resident set size (KB) = 710796 Test 045 rap_control_dyn64_phy32_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/cpld_control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/cpld_control_p8 Checking test 046 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1556,14 +1556,14 @@ Checking test 046 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 515.074732 -0:The maximum resident set size (KB) = 3160932 +0:The total amount of wall time = 502.668034 +0:The maximum resident set size (KB) = 3159408 Test 046 cpld_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/cpld_control_nowave_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/cpld_control_c96_noaero_p8 +working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/cpld_control_nowave_noaero_p8 Checking test 047 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1625,14 +1625,14 @@ Checking test 047 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 246.097652 -0:The maximum resident set size (KB) = 1240428 +0:The total amount of wall time = 243.653719 +0:The maximum resident set size (KB) = 1241516 Test 047 cpld_control_nowave_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/cpld_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/cpld_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/cpld_debug_p8 +working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/cpld_debug_p8 Checking test 048 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1685,25 +1685,25 @@ Checking test 048 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 273.508857 -0:The maximum resident set size (KB) = 3178004 +0:The total amount of wall time = 275.755519 +0:The maximum resident set size (KB) = 3179496 Test 048 cpld_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/GNU/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_558/datm_cdeps_control_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/datm_cdeps_control_cfsr +working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/datm_cdeps_control_cfsr Checking test 049 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 179.686314 -0:The maximum resident set size (KB) = 672480 +0:The total amount of wall time = 178.817367 +0:The maximum resident set size (KB) = 671580 Test 049 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Mon Mar 20 18:29:10 MDT 2023 -Elapsed time: 00h:35m:50s. Have a nice day! +Wed Mar 22 21:31:25 MDT 2023 +Elapsed time: 00h:34m:54s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 06a3a21aba4..fd565fae2c4 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,42 +1,42 @@ -Mon Mar 20 17:38:19 MDT 2023 +Thu Mar 23 05:48:26 MDT 2023 Start Regression test -Compile 001 elapsed time 1347 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 1478 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 1349 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 461 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 384 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 1077 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 1089 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 1787 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 1019 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 989 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 919 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 787 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 1265 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 403 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 265 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 832 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 821 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 275 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 271 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 1112 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 021 elapsed time 335 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 1551 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 1099 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 024 elapsed time 427 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 207 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 431 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 106 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 914 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 988 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 863 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 860 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 293 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 1024 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8_mixedmode -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/cpld_control_p8_mixedmode +Compile 001 elapsed time 1373 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1394 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 1357 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 448 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 391 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 1060 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 1081 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 1809 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 1026 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 982 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 924 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 799 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 1293 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 404 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 266 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 834 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 831 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 269 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 274 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 1124 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 021 elapsed time 359 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 1555 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 1092 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 024 elapsed time 438 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 203 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 425 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 107 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 952 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 987 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 894 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 874 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 306 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 1032 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8_mixedmode +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -101,14 +101,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 320.930562 -0:The maximum resident set size (KB) = 2699064 +0:The total amount of wall time = 322.356505 +0:The maximum resident set size (KB) = 2698432 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_gfsv17 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/cpld_control_gfsv17 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_gfsv17 +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -172,14 +172,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 283.295501 -0:The maximum resident set size (KB) = 1437668 +0:The total amount of wall time = 283.029993 +0:The maximum resident set size (KB) = 1437460 Test 002 cpld_control_gfsv17 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/cpld_control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -244,14 +244,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 324.169391 -0:The maximum resident set size (KB) = 2716472 +0:The total amount of wall time = 325.879293 +0:The maximum resident set size (KB) = 2716456 Test 003 cpld_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/cpld_restart_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -304,14 +304,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 188.980396 -0:The maximum resident set size (KB) = 2577732 +0:The total amount of wall time = 186.841952 +0:The maximum resident set size (KB) = 2577548 Test 004 cpld_restart_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/cpld_2threads_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -364,14 +364,14 @@ Checking test 005 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 255.047091 -0:The maximum resident set size (KB) = 3175740 +0:The total amount of wall time = 256.746420 +0:The maximum resident set size (KB) = 3175492 Test 005 cpld_2threads_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/cpld_decomp_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/cpld_decomp_p8 Checking test 006 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -424,14 +424,14 @@ Checking test 006 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 323.965316 -0:The maximum resident set size (KB) = 2723644 +0:The total amount of wall time = 324.334157 +0:The maximum resident set size (KB) = 2721384 Test 006 cpld_decomp_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/cpld_mpi_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/cpld_mpi_p8 Checking test 007 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -484,14 +484,14 @@ Checking test 007 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 279.192014 -0:The maximum resident set size (KB) = 2682684 +0:The total amount of wall time = 278.205755 +0:The maximum resident set size (KB) = 2682692 Test 007 cpld_mpi_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_ciceC_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/cpld_control_ciceC_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_ciceC_p8 +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/cpld_control_ciceC_p8 Checking test 008 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -556,14 +556,14 @@ Checking test 008 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 324.017125 -0:The maximum resident set size (KB) = 2716464 +0:The total amount of wall time = 322.898916 +0:The maximum resident set size (KB) = 2716468 Test 008 cpld_control_ciceC_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/cpld_control_c192_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_c192_p8 +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/cpld_control_c192_p8 Checking test 009 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -616,14 +616,14 @@ Checking test 009 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -0:The total amount of wall time = 639.932123 -0:The maximum resident set size (KB) = 3348640 +0:The total amount of wall time = 637.290139 +0:The maximum resident set size (KB) = 3347624 Test 009 cpld_control_c192_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/cpld_restart_c192_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_c192_p8 +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/cpld_restart_c192_p8 Checking test 010 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -676,14 +676,14 @@ Checking test 010 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -0:The total amount of wall time = 401.219728 -0:The maximum resident set size (KB) = 3274344 +0:The total amount of wall time = 402.732805 +0:The maximum resident set size (KB) = 3271672 Test 010 cpld_restart_c192_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/cpld_control_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_noaero_p8 +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/cpld_control_noaero_p8 Checking test 011 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -747,14 +747,14 @@ Checking test 011 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 295.410531 -0:The maximum resident set size (KB) = 1436400 +0:The total amount of wall time = 285.308961 +0:The maximum resident set size (KB) = 1436204 Test 011 cpld_control_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/cpld_control_nowave_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_c96_noaero_p8 +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/cpld_control_nowave_noaero_p8 Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -816,14 +816,14 @@ Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 195.043240 -0:The maximum resident set size (KB) = 1452344 +0:The total amount of wall time = 193.957873 +0:The maximum resident set size (KB) = 1452364 Test 012 cpld_control_nowave_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/cpld_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_debug_p8 +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/cpld_debug_p8 Checking test 013 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -876,14 +876,14 @@ Checking test 013 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 498.666557 -0:The maximum resident set size (KB) = 2788416 +0:The total amount of wall time = 478.005356 +0:The maximum resident set size (KB) = 2787996 Test 013 cpld_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_debug_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/cpld_debug_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_debug_noaero_p8 +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/cpld_debug_noaero_p8 Checking test 014 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -935,14 +935,14 @@ Checking test 014 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 347.640047 -0:The maximum resident set size (KB) = 1460416 +0:The total amount of wall time = 350.201697 +0:The maximum resident set size (KB) = 1460660 Test 014 cpld_debug_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_noaero_p8_agrid -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/cpld_control_noaero_p8_agrid +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_noaero_p8_agrid +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/cpld_control_noaero_p8_agrid Checking test 015 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1004,14 +1004,14 @@ Checking test 015 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 253.387937 -0:The maximum resident set size (KB) = 1455816 +0:The total amount of wall time = 251.995254 +0:The maximum resident set size (KB) = 1455812 Test 015 cpld_control_noaero_p8_agrid PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/cpld_control_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_c48 +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/cpld_control_c48 Checking test 016 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1061,14 +1061,14 @@ Checking test 016 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 608.936480 -0:The maximum resident set size (KB) = 2580344 +0:The total amount of wall time = 608.094988 +0:The maximum resident set size (KB) = 2580652 Test 016 cpld_control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/cpld_warmstart_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_warmstart_c48 +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/cpld_warmstart_c48 Checking test 017 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1118,14 +1118,14 @@ Checking test 017 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -0:The total amount of wall time = 162.666560 -0:The maximum resident set size (KB) = 2599072 +0:The total amount of wall time = 162.718947 +0:The maximum resident set size (KB) = 2598852 Test 017 cpld_warmstart_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/cpld_restart_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_warmstart_c48 +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/cpld_restart_c48 Checking test 018 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1175,14 +1175,14 @@ Checking test 018 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -0:The total amount of wall time = 85.691501 -0:The maximum resident set size (KB) = 2016120 +0:The total amount of wall time = 84.626187 +0:The maximum resident set size (KB) = 2016112 Test 018 cpld_restart_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/control_CubedSphereGrid -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/control_CubedSphereGrid +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/control_CubedSphereGrid +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/control_CubedSphereGrid Checking test 019 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1209,28 +1209,28 @@ Checking test 019 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -0:The total amount of wall time = 142.912327 -0:The maximum resident set size (KB) = 456764 +0:The total amount of wall time = 142.463637 +0:The maximum resident set size (KB) = 456796 Test 019 control_CubedSphereGrid PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/control_CubedSphereGrid_parallel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/control_CubedSphereGrid_parallel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/control_CubedSphereGrid_parallel +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/control_CubedSphereGrid_parallel Checking test 020 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing atmf024.nc .........OK -0:The total amount of wall time = 142.195976 -0:The maximum resident set size (KB) = 457148 +0:The total amount of wall time = 139.844583 +0:The maximum resident set size (KB) = 456820 Test 020 control_CubedSphereGrid_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/control_latlon -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/control_latlon +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/control_latlon +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/control_latlon Checking test 021 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1241,32 +1241,32 @@ Checking test 021 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 147.244763 -0:The maximum resident set size (KB) = 456836 +0:The total amount of wall time = 146.663874 +0:The maximum resident set size (KB) = 456876 Test 021 control_latlon PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/control_wrtGauss_netcdf_parallel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/control_wrtGauss_netcdf_parallel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/control_wrtGauss_netcdf_parallel +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/control_wrtGauss_netcdf_parallel Checking test 022 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 149.620959 -0:The maximum resident set size (KB) = 456776 +0:The total amount of wall time = 147.192270 +0:The maximum resident set size (KB) = 456668 Test 022 control_wrtGauss_netcdf_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/control_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/control_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/control_c48 +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/control_c48 Checking test 023 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1305,14 +1305,14 @@ Checking test 023 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 442.781345 -0:The maximum resident set size (KB) = 628920 +0:The total amount of wall time = 444.494229 +0:The maximum resident set size (KB) = 628916 Test 023 control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/control_c192 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/control_c192 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/control_c192 +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/control_c192 Checking test 024 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1323,14 +1323,14 @@ Checking test 024 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 591.563967 -0:The maximum resident set size (KB) = 557024 +0:The total amount of wall time = 593.699285 +0:The maximum resident set size (KB) = 557076 Test 024 control_c192 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/control_c384 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/control_c384 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/control_c384 +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/control_c384 Checking test 025 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1341,14 +1341,14 @@ Checking test 025 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 608.000727 -0:The maximum resident set size (KB) = 889116 +0:The total amount of wall time = 599.624087 +0:The maximum resident set size (KB) = 889512 Test 025 control_c384 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/control_c384gdas -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/control_c384gdas +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/control_c384gdas +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/control_c384gdas Checking test 026 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1391,14 +1391,14 @@ Checking test 026 control_c384gdas 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 = 530.729300 -0:The maximum resident set size (KB) = 1015708 +0:The total amount of wall time = 531.865357 +0:The maximum resident set size (KB) = 1016096 Test 026 control_c384gdas PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/control_stochy +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/control_stochy +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/control_stochy Checking test 027 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1409,28 +1409,28 @@ Checking test 027 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 98.643224 -0:The maximum resident set size (KB) = 454868 +0:The total amount of wall time = 95.677619 +0:The maximum resident set size (KB) = 454896 Test 027 control_stochy PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/control_stochy_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/control_stochy +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/control_stochy_restart Checking test 028 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 53.011496 -0:The maximum resident set size (KB) = 225896 +0:The total amount of wall time = 52.707246 +0:The maximum resident set size (KB) = 225804 Test 028 control_stochy_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/control_lndp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/control_lndp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/control_lndp +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/control_lndp Checking test 029 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1441,14 +1441,14 @@ Checking test 029 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 116.280713 -0:The maximum resident set size (KB) = 456468 +0:The total amount of wall time = 90.338825 +0:The maximum resident set size (KB) = 456504 Test 029 control_lndp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/control_iovr4 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/control_iovr4 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/control_iovr4 +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/control_iovr4 Checking test 030 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1463,14 +1463,14 @@ Checking test 030 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 147.448865 -0:The maximum resident set size (KB) = 456932 +0:The total amount of wall time = 147.625071 +0:The maximum resident set size (KB) = 456804 Test 030 control_iovr4 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/control_iovr5 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/control_iovr5 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/control_iovr5 +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/control_iovr5 Checking test 031 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1485,14 +1485,14 @@ Checking test 031 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 148.766703 -0:The maximum resident set size (KB) = 456684 +0:The total amount of wall time = 147.713183 +0:The maximum resident set size (KB) = 456772 Test 031 control_iovr5 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8 +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/control_p8 Checking test 032 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1539,14 +1539,14 @@ Checking test 032 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 181.401988 -0:The maximum resident set size (KB) = 1422860 +0:The total amount of wall time = 179.907959 +0:The maximum resident set size (KB) = 1422824 Test 032 control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8_lndp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/control_p8_lndp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8_lndp +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/control_p8_lndp Checking test 033 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1565,14 +1565,14 @@ Checking test 033 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -0:The total amount of wall time = 335.220527 -0:The maximum resident set size (KB) = 1423136 +0:The total amount of wall time = 334.094798 +0:The maximum resident set size (KB) = 1423120 Test 033 control_p8_lndp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/control_restart_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8 +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/control_restart_p8 Checking test 034 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1611,14 +1611,14 @@ Checking test 034 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 96.272750 -0:The maximum resident set size (KB) = 582384 +0:The total amount of wall time = 95.650717 +0:The maximum resident set size (KB) = 582332 Test 034 control_restart_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/control_decomp_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8 +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/control_decomp_p8 Checking test 035 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1661,14 +1661,14 @@ Checking test 035 control_decomp_p8 results .... Comparing 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.034243 -0:The maximum resident set size (KB) = 1417084 +0:The total amount of wall time = 187.764253 +0:The maximum resident set size (KB) = 1417080 Test 035 control_decomp_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/control_2threads_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8 +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/control_2threads_p8 Checking test 036 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1711,14 +1711,14 @@ Checking test 036 control_2threads_p8 results .... Comparing 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.045869 -0:The maximum resident set size (KB) = 1506460 +0:The total amount of wall time = 176.977916 +0:The maximum resident set size (KB) = 1506472 Test 036 control_2threads_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8_rrtmgp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/control_p8_rrtmgp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8_rrtmgp +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/control_p8_rrtmgp Checking test 037 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1765,14 +1765,14 @@ Checking test 037 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 254.422218 -0:The maximum resident set size (KB) = 1481176 +0:The total amount of wall time = 254.575815 +0:The maximum resident set size (KB) = 1480728 Test 037 control_p8_rrtmgp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/merra2_thompson -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/merra2_thompson +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/merra2_thompson +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/merra2_thompson Checking test 038 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1819,14 +1819,14 @@ Checking test 038 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 201.716178 -0:The maximum resident set size (KB) = 1429788 +0:The total amount of wall time = 208.414232 +0:The maximum resident set size (KB) = 1429740 Test 038 merra2_thompson PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/regional_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_control +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/regional_control Checking test 039 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1837,28 +1837,28 @@ Checking test 039 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 341.347208 -0:The maximum resident set size (KB) = 603188 +0:The total amount of wall time = 343.238514 +0:The maximum resident set size (KB) = 603256 Test 039 regional_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/regional_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_control +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/regional_restart Checking test 040 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 174.363405 -0:The maximum resident set size (KB) = 593604 +0:The total amount of wall time = 174.656363 +0:The maximum resident set size (KB) = 593552 Test 040 regional_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/regional_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_control +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/regional_decomp Checking test 041 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1869,14 +1869,14 @@ Checking test 041 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 356.089458 -0:The maximum resident set size (KB) = 597264 +0:The total amount of wall time = 357.085428 +0:The maximum resident set size (KB) = 597184 Test 041 regional_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/regional_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_control +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/regional_2threads Checking test 042 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1887,14 +1887,14 @@ Checking test 042 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 204.429740 -0:The maximum resident set size (KB) = 610056 +0:The total amount of wall time = 205.300925 +0:The maximum resident set size (KB) = 610280 Test 042 regional_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_noquilt -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/regional_noquilt +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_noquilt +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/regional_noquilt Checking test 043 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1902,28 +1902,28 @@ Checking test 043 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -0:The total amount of wall time = 361.924992 -0:The maximum resident set size (KB) = 597676 +0:The total amount of wall time = 362.006502 +0:The maximum resident set size (KB) = 597660 Test 043 regional_noquilt PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_netcdf_parallel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/regional_netcdf_parallel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_netcdf_parallel +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/regional_netcdf_parallel Checking test 044 regional_netcdf_parallel results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf006.nc ............ALT CHECK......OK -0:The total amount of wall time = 335.784727 -0:The maximum resident set size (KB) = 595196 +0:The total amount of wall time = 331.051903 +0:The maximum resident set size (KB) = 595124 Test 044 regional_netcdf_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/regional_2dwrtdecomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_control +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/regional_2dwrtdecomp Checking test 045 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1934,14 +1934,14 @@ Checking test 045 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 340.452498 -0:The maximum resident set size (KB) = 603152 +0:The total amount of wall time = 339.744953 +0:The maximum resident set size (KB) = 603236 Test 045 regional_2dwrtdecomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/fv3_regional_wofs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/regional_wofs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/fv3_regional_wofs +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/regional_wofs Checking test 046 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1952,14 +1952,14 @@ Checking test 046 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 424.596514 -0:The maximum resident set size (KB) = 274588 +0:The total amount of wall time = 426.969877 +0:The maximum resident set size (KB) = 274564 Test 046 regional_wofs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/rap_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/rap_control Checking test 047 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2006,14 +2006,14 @@ Checking test 047 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 478.109621 -0:The maximum resident set size (KB) = 826632 +0:The total amount of wall time = 477.469839 +0:The maximum resident set size (KB) = 826332 Test 047 rap_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_spp_sppt_shum_skeb -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/regional_spp_sppt_shum_skeb +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_spp_sppt_shum_skeb +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/regional_spp_sppt_shum_skeb Checking test 048 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2024,14 +2024,14 @@ Checking test 048 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 324.445693 -0:The maximum resident set size (KB) = 949280 +0:The total amount of wall time = 327.859982 +0:The maximum resident set size (KB) = 949116 Test 048 regional_spp_sppt_shum_skeb PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/rap_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/rap_decomp Checking test 049 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2078,14 +2078,14 @@ Checking test 049 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 503.037245 -0:The maximum resident set size (KB) = 823484 +0:The total amount of wall time = 508.118386 +0:The maximum resident set size (KB) = 823568 Test 049 rap_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/rap_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/rap_2threads Checking test 050 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2132,14 +2132,14 @@ Checking test 050 rap_2threads results .... Comparing 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.448616 -0:The maximum resident set size (KB) = 894624 +0:The total amount of wall time = 465.994503 +0:The maximum resident set size (KB) = 892632 Test 050 rap_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/rap_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/rap_restart Checking test 051 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2178,14 +2178,14 @@ Checking test 051 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 241.304442 -0:The maximum resident set size (KB) = 572752 +0:The total amount of wall time = 241.915039 +0:The maximum resident set size (KB) = 572664 Test 051 rap_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/rap_sfcdiff +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/rap_sfcdiff Checking test 052 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2232,14 +2232,14 @@ Checking test 052 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 471.463778 -0:The maximum resident set size (KB) = 826392 +0:The total amount of wall time = 462.349194 +0:The maximum resident set size (KB) = 826428 Test 052 rap_sfcdiff PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/rap_sfcdiff_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/rap_sfcdiff_decomp Checking test 053 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2286,14 +2286,14 @@ Checking test 053 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 495.400729 -0:The maximum resident set size (KB) = 825420 +0:The total amount of wall time = 504.918191 +0:The maximum resident set size (KB) = 825204 Test 053 rap_sfcdiff_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/rap_sfcdiff_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/rap_sfcdiff_restart Checking test 054 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2332,14 +2332,14 @@ Checking test 054 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 355.252125 -0:The maximum resident set size (KB) = 570128 +0:The total amount of wall time = 355.378495 +0:The maximum resident set size (KB) = 570040 Test 054 rap_sfcdiff_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/hrrr_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/hrrr_control Checking test 055 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2386,14 +2386,14 @@ Checking test 055 hrrr_control results .... Comparing 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.376261 -0:The maximum resident set size (KB) = 821336 +0:The total amount of wall time = 452.487518 +0:The maximum resident set size (KB) = 821384 Test 055 hrrr_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/hrrr_control_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/hrrr_control_decomp Checking test 056 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2440,14 +2440,14 @@ Checking test 056 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 478.933718 +0:The total amount of wall time = 473.019941 0:The maximum resident set size (KB) = 820276 Test 056 hrrr_control_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/hrrr_control_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/hrrr_control_2threads Checking test 057 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2494,14 +2494,14 @@ Checking test 057 hrrr_control_2threads results .... Comparing 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.190241 -0:The maximum resident set size (KB) = 887608 +0:The total amount of wall time = 428.603243 +0:The maximum resident set size (KB) = 887876 Test 057 hrrr_control_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/hrrr_control_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/hrrr_control_restart Checking test 058 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2540,14 +2540,14 @@ Checking test 058 hrrr_control_restart results .... Comparing 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.984230 -0:The maximum resident set size (KB) = 568764 +0:The total amount of wall time = 341.651386 +0:The maximum resident set size (KB) = 568796 Test 058 hrrr_control_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_v1beta -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/rrfs_v1beta +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_v1beta +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/rrfs_v1beta Checking test 059 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2594,14 +2594,14 @@ Checking test 059 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 464.785675 -0:The maximum resident set size (KB) = 820396 +0:The total amount of wall time = 464.652266 +0:The maximum resident set size (KB) = 819864 Test 059 rrfs_v1beta PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_v1nssl -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/rrfs_v1nssl +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_v1nssl +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/rrfs_v1nssl Checking test 060 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2616,14 +2616,14 @@ Checking test 060 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 602.332092 -0:The maximum resident set size (KB) = 508356 +0:The total amount of wall time = 573.444784 +0:The maximum resident set size (KB) = 508168 Test 060 rrfs_v1nssl PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/rrfs_v1nssl_nohailnoccn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/rrfs_v1nssl_nohailnoccn Checking test 061 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2638,14 +2638,14 @@ Checking test 061 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 554.546958 -0:The maximum resident set size (KB) = 501368 +0:The total amount of wall time = 553.853271 +0:The maximum resident set size (KB) = 501176 Test 061 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/rrfs_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/rrfs_conus13km_hrrr_warm Checking test 062 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2654,14 +2654,14 @@ Checking test 062 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 127.778676 -0:The maximum resident set size (KB) = 639028 +0:The total amount of wall time = 126.114233 +0:The maximum resident set size (KB) = 638724 Test 062 rrfs_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/rrfs_smoke_conus13km_hrrr_warm Checking test 063 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2670,14 +2670,14 @@ Checking test 063 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 143.556124 -0:The maximum resident set size (KB) = 652952 +0:The total amount of wall time = 144.039830 +0:The maximum resident set size (KB) = 654716 Test 063 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/rrfs_conus13km_radar_tten_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/rrfs_conus13km_radar_tten_warm Checking test 064 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2686,14 +2686,14 @@ Checking test 064 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 130.101493 -0:The maximum resident set size (KB) = 641264 +0:The total amount of wall time = 126.707686 +0:The maximum resident set size (KB) = 640708 Test 064 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/rrfs_conus13km_hrrr_warm_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/rrfs_conus13km_hrrr_warm_2threads Checking test 065 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2702,14 +2702,14 @@ Checking test 065 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 81.387559 -0:The maximum resident set size (KB) = 655524 +0:The total amount of wall time = 80.848763 +0:The maximum resident set size (KB) = 656900 Test 065 rrfs_conus13km_hrrr_warm_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/rrfs_conus13km_radar_tten_warm_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/rrfs_conus13km_radar_tten_warm_2threads Checking test 066 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2718,14 +2718,14 @@ Checking test 066 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 81.608424 -0:The maximum resident set size (KB) = 658988 +0:The total amount of wall time = 81.916349 +0:The maximum resident set size (KB) = 658220 Test 066 rrfs_conus13km_radar_tten_warm_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/control_csawmg -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/control_csawmg +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/control_csawmg +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/control_csawmg Checking test 067 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2736,14 +2736,14 @@ Checking test 067 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 397.423898 -0:The maximum resident set size (KB) = 529044 +0:The total amount of wall time = 397.270030 +0:The maximum resident set size (KB) = 529040 Test 067 control_csawmg PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/control_csawmgt -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/control_csawmgt +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/control_csawmgt +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/control_csawmgt Checking test 068 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2754,14 +2754,14 @@ Checking test 068 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 391.844007 -0:The maximum resident set size (KB) = 528980 +0:The total amount of wall time = 392.834394 +0:The maximum resident set size (KB) = 529008 Test 068 control_csawmgt PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/control_ras -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/control_ras +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/control_ras +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/control_ras Checking test 069 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2772,26 +2772,26 @@ Checking test 069 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 205.746796 -0:The maximum resident set size (KB) = 487680 +0:The total amount of wall time = 205.665113 +0:The maximum resident set size (KB) = 487840 Test 069 control_ras PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/control_wam -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/control_wam +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/control_wam +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/control_wam Checking test 070 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -0:The total amount of wall time = 129.184479 -0:The maximum resident set size (KB) = 205612 +0:The total amount of wall time = 124.548089 +0:The maximum resident set size (KB) = 205644 Test 070 control_wam PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8_faster -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/control_p8_faster +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8_faster +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/control_p8_faster Checking test 071 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2838,14 +2838,14 @@ Checking test 071 control_p8_faster results .... Comparing 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.490718 -0:The maximum resident set size (KB) = 1422680 +0:The total amount of wall time = 174.298585 +0:The maximum resident set size (KB) = 1422800 Test 071 control_p8_faster PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_control_faster -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/regional_control_faster +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_control_faster +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/regional_control_faster Checking test 072 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2856,42 +2856,42 @@ Checking test 072 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 322.918461 -0:The maximum resident set size (KB) = 603028 +0:The total amount of wall time = 314.084062 +0:The maximum resident set size (KB) = 603008 Test 072 regional_control_faster PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/rrfs_conus13km_hrrr_warm_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/rrfs_conus13km_hrrr_warm_debug Checking test 073 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 797.582837 -0:The maximum resident set size (KB) = 672116 +0:The total amount of wall time = 765.376674 +0:The maximum resident set size (KB) = 671436 Test 073 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/rrfs_conus13km_radar_tten_warm_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_conus13km_radar_tten_warm_debug +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/rrfs_conus13km_radar_tten_warm_debug Checking test 074 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 764.286643 -0:The maximum resident set size (KB) = 673868 +0:The total amount of wall time = 766.440717 +0:The maximum resident set size (KB) = 674248 Test 074 rrfs_conus13km_radar_tten_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/control_CubedSphereGrid_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/control_CubedSphereGrid_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/control_CubedSphereGrid_debug +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/control_CubedSphereGrid_debug Checking test 075 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2918,334 +2918,334 @@ Checking test 075 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -0:The total amount of wall time = 174.272072 -0:The maximum resident set size (KB) = 621508 +0:The total amount of wall time = 175.445100 +0:The maximum resident set size (KB) = 621484 Test 075 control_CubedSphereGrid_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/control_wrtGauss_netcdf_parallel_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/control_wrtGauss_netcdf_parallel_debug Checking test 076 control_wrtGauss_netcdf_parallel_debug 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 = 163.015616 -0:The maximum resident set size (KB) = 621340 +0:The total amount of wall time = 163.762671 +0:The maximum resident set size (KB) = 621276 Test 076 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/control_stochy_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/control_stochy_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/control_stochy_debug +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/control_stochy_debug Checking test 077 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 183.075720 -0:The maximum resident set size (KB) = 624956 +0:The total amount of wall time = 184.592683 +0:The maximum resident set size (KB) = 624908 Test 077 control_stochy_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/control_lndp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/control_lndp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/control_lndp_debug +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/control_lndp_debug Checking test 078 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 165.113195 -0:The maximum resident set size (KB) = 627004 +0:The total amount of wall time = 166.192279 +0:The maximum resident set size (KB) = 627180 Test 078 control_lndp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/control_csawmg_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/control_csawmg_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/control_csawmg_debug +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/control_csawmg_debug Checking test 079 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 255.990397 -0:The maximum resident set size (KB) = 671324 +0:The total amount of wall time = 257.063241 +0:The maximum resident set size (KB) = 671284 Test 079 control_csawmg_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/control_csawmgt_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/control_csawmgt_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/control_csawmgt_debug +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/control_csawmgt_debug Checking test 080 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 252.549496 -0:The maximum resident set size (KB) = 671140 +0:The total amount of wall time = 252.193815 +0:The maximum resident set size (KB) = 671056 Test 080 control_csawmgt_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/control_ras_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/control_ras_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/control_ras_debug +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/control_ras_debug Checking test 081 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 167.664666 -0:The maximum resident set size (KB) = 632584 +0:The total amount of wall time = 167.941056 +0:The maximum resident set size (KB) = 632596 Test 081 control_ras_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/control_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/control_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/control_diag_debug +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/control_diag_debug Checking test 082 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 169.065938 -0:The maximum resident set size (KB) = 677932 +0:The total amount of wall time = 169.819599 +0:The maximum resident set size (KB) = 677844 Test 082 control_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/control_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/control_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/control_debug_p8 +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/control_debug_p8 Checking test 083 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 186.399972 -0:The maximum resident set size (KB) = 1444184 +0:The total amount of wall time = 186.346940 +0:The maximum resident set size (KB) = 1444192 Test 083 control_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/regional_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_debug +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/regional_debug Checking test 084 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 1039.439163 -0:The maximum resident set size (KB) = 628924 +0:The total amount of wall time = 1044.296517 +0:The maximum resident set size (KB) = 629048 Test 084 regional_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/rap_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_debug +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/rap_control_debug Checking test 085 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 295.283578 -0:The maximum resident set size (KB) = 989956 +0:The total amount of wall time = 296.745911 +0:The maximum resident set size (KB) = 989868 Test 085 rap_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/hrrr_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control_debug +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/hrrr_control_debug Checking test 086 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 290.511035 -0:The maximum resident set size (KB) = 988668 +0:The total amount of wall time = 292.525081 +0:The maximum resident set size (KB) = 988780 Test 086 hrrr_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/rap_unified_drag_suite_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_debug +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/rap_unified_drag_suite_debug Checking test 087 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 296.468412 -0:The maximum resident set size (KB) = 990008 +0:The total amount of wall time = 298.356979 +0:The maximum resident set size (KB) = 989872 Test 087 rap_unified_drag_suite_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/rap_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_diag_debug +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/rap_diag_debug Checking test 088 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 309.859483 -0:The maximum resident set size (KB) = 1074212 +0:The total amount of wall time = 310.620963 +0:The maximum resident set size (KB) = 1074056 Test 088 rap_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/rap_cires_ugwp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_cires_ugwp_debug +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/rap_cires_ugwp_debug Checking test 089 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 302.186390 -0:The maximum resident set size (KB) = 988664 +0:The total amount of wall time = 302.738816 +0:The maximum resident set size (KB) = 988636 Test 089 rap_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/rap_unified_ugwp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_cires_ugwp_debug +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/rap_unified_ugwp_debug Checking test 090 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 301.392857 -0:The maximum resident set size (KB) = 991996 +0:The total amount of wall time = 302.839104 +0:The maximum resident set size (KB) = 991916 Test 090 rap_unified_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_lndp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/rap_lndp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_lndp_debug +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/rap_lndp_debug Checking test 091 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 300.749926 -0:The maximum resident set size (KB) = 991112 +0:The total amount of wall time = 298.983809 +0:The maximum resident set size (KB) = 990552 Test 091 rap_lndp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_flake_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/rap_flake_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_flake_debug +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/rap_flake_debug Checking test 092 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 295.549558 -0:The maximum resident set size (KB) = 989976 +0:The total amount of wall time = 301.096863 +0:The maximum resident set size (KB) = 990004 Test 092 rap_flake_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_progcld_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/rap_progcld_thompson_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_progcld_thompson_debug +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/rap_progcld_thompson_debug Checking test 093 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 297.204455 -0:The maximum resident set size (KB) = 989908 +0:The total amount of wall time = 298.355618 +0:The maximum resident set size (KB) = 989932 Test 093 rap_progcld_thompson_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_noah_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/rap_noah_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_noah_debug +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/rap_noah_debug Checking test 094 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 290.233912 -0:The maximum resident set size (KB) = 988420 +0:The total amount of wall time = 292.993269 +0:The maximum resident set size (KB) = 988472 Test 094 rap_noah_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_sfcdiff_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/rap_sfcdiff_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_sfcdiff_debug +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/rap_sfcdiff_debug Checking test 095 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 296.498663 -0:The maximum resident set size (KB) = 991456 +0:The total amount of wall time = 297.747022 +0:The maximum resident set size (KB) = 991272 Test 095 rap_sfcdiff_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/rap_noah_sfcdiff_cires_ugwp_debug Checking test 096 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 480.853123 -0:The maximum resident set size (KB) = 989380 +0:The total amount of wall time = 483.577912 +0:The maximum resident set size (KB) = 989540 Test 096 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_v1beta_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/rrfs_v1beta_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_v1beta_debug +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/rrfs_v1beta_debug Checking test 097 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 291.313736 -0:The maximum resident set size (KB) = 986376 +0:The total amount of wall time = 292.448898 +0:The maximum resident set size (KB) = 986408 Test 097 rrfs_v1beta_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/control_wam_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/control_wam_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/control_wam_debug +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/control_wam_debug Checking test 098 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 326.915901 -0:The maximum resident set size (KB) = 239168 +0:The total amount of wall time = 299.489006 +0:The maximum resident set size (KB) = 239080 Test 098 control_wam_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 099 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3256,14 +3256,14 @@ Checking test 099 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 300.447297 -0:The maximum resident set size (KB) = 848360 +0:The total amount of wall time = 303.509617 +0:The maximum resident set size (KB) = 848440 Test 099 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/rap_control_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/rap_control_dyn32_phy32 Checking test 100 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3310,14 +3310,14 @@ Checking test 100 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 418.469140 -0:The maximum resident set size (KB) = 707188 +0:The total amount of wall time = 386.835982 +0:The maximum resident set size (KB) = 707072 Test 100 rap_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/hrrr_control_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/hrrr_control_dyn32_phy32 Checking test 101 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3364,14 +3364,14 @@ Checking test 101 hrrr_control_dyn32_phy32 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 = 205.074232 -0:The maximum resident set size (KB) = 705768 +0:The total amount of wall time = 210.619000 +0:The maximum resident set size (KB) = 705492 Test 101 hrrr_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/rap_2threads_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/rap_2threads_dyn32_phy32 Checking test 102 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3418,14 +3418,14 @@ Checking test 102 rap_2threads_dyn32_phy32 results .... Comparing 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.727534 -0:The maximum resident set size (KB) = 756964 +0:The total amount of wall time = 374.607804 +0:The maximum resident set size (KB) = 757440 Test 102 rap_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/hrrr_control_2threads_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/hrrr_control_2threads_dyn32_phy32 Checking test 103 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3472,14 +3472,14 @@ Checking test 103 hrrr_control_2threads_dyn32_phy32 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 = 201.583833 -0:The maximum resident set size (KB) = 758892 +0:The total amount of wall time = 203.618337 +0:The maximum resident set size (KB) = 758184 Test 103 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/hrrr_control_decomp_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/hrrr_control_decomp_dyn32_phy32 Checking test 104 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3526,14 +3526,14 @@ Checking test 104 hrrr_control_decomp_dyn32_phy32 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 = 215.265515 -0:The maximum resident set size (KB) = 704544 +0:The total amount of wall time = 218.306637 +0:The maximum resident set size (KB) = 703940 Test 104 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/rap_restart_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/rap_restart_dyn32_phy32 Checking test 105 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3572,14 +3572,14 @@ Checking test 105 rap_restart_dyn32_phy32 results .... Comparing 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.486972 -0:The maximum resident set size (KB) = 544724 +0:The total amount of wall time = 291.564996 +0:The maximum resident set size (KB) = 544648 Test 105 rap_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/hrrr_control_restart_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/hrrr_control_restart_dyn32_phy32 Checking test 106 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3618,14 +3618,14 @@ Checking test 106 hrrr_control_restart_dyn32_phy32 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 = 105.748078 -0:The maximum resident set size (KB) = 536516 +0:The total amount of wall time = 106.286337 +0:The maximum resident set size (KB) = 536796 Test 106 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/rap_control_dyn64_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_dyn64_phy32 +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/rap_control_dyn64_phy32 Checking test 107 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3672,81 +3672,81 @@ Checking test 107 rap_control_dyn64_phy32 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 = 258.481473 -0:The maximum resident set size (KB) = 726836 +0:The total amount of wall time = 272.360535 +0:The maximum resident set size (KB) = 726844 Test 107 rap_control_dyn64_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/rap_control_debug_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/rap_control_debug_dyn32_phy32 Checking test 108 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 291.053638 -0:The maximum resident set size (KB) = 876168 +0:The total amount of wall time = 292.036134 +0:The maximum resident set size (KB) = 876028 Test 108 rap_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/hrrr_control_debug_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/hrrr_control_debug_dyn32_phy32 Checking test 109 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 286.505002 -0:The maximum resident set size (KB) = 874448 +0:The total amount of wall time = 289.765373 +0:The maximum resident set size (KB) = 874476 Test 109 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/rap_control_dyn64_phy32_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_debug_dyn64_phy32 +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/rap_control_dyn64_phy32_debug Checking test 110 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 295.174078 -0:The maximum resident set size (KB) = 893380 +0:The total amount of wall time = 294.861219 +0:The maximum resident set size (KB) = 893432 Test 110 rap_control_dyn64_phy32_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/hafs_regional_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_atm +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/hafs_regional_atm Checking test 111 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -0:The total amount of wall time = 260.998214 -0:The maximum resident set size (KB) = 739132 +0:The total amount of wall time = 257.642416 +0:The maximum resident set size (KB) = 738916 Test 111 hafs_regional_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/hafs_regional_atm_thompson_gfdlsf +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/hafs_regional_atm_thompson_gfdlsf Checking test 112 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -0:The total amount of wall time = 295.257733 -0:The maximum resident set size (KB) = 1091716 +0:The total amount of wall time = 295.013775 +0:The maximum resident set size (KB) = 1090464 Test 112 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_atm_ocn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/hafs_regional_atm_ocn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_atm_ocn +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/hafs_regional_atm_ocn Checking test 113 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3755,14 +3755,14 @@ Checking test 113 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 454.032831 -0:The maximum resident set size (KB) = 738400 +0:The total amount of wall time = 453.741862 +0:The maximum resident set size (KB) = 738612 Test 113 hafs_regional_atm_ocn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_atm_wav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/hafs_regional_atm_wav +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_atm_wav +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/hafs_regional_atm_wav Checking test 114 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3771,14 +3771,14 @@ Checking test 114 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 1024.333971 -0:The maximum resident set size (KB) = 766116 +0:The total amount of wall time = 1018.822084 +0:The maximum resident set size (KB) = 765884 Test 114 hafs_regional_atm_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_atm_ocn_wav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/hafs_regional_atm_ocn_wav +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_atm_ocn_wav +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/hafs_regional_atm_ocn_wav Checking test 115 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3789,28 +3789,28 @@ Checking test 115 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 1161.584170 -0:The maximum resident set size (KB) = 790472 +0:The total amount of wall time = 1160.568457 +0:The maximum resident set size (KB) = 790432 Test 115 hafs_regional_atm_ocn_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/hafs_regional_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_1nest_atm +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/hafs_regional_1nest_atm Checking test 116 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 384.291335 -0:The maximum resident set size (KB) = 293440 +0:The total amount of wall time = 380.184082 +0:The maximum resident set size (KB) = 293484 Test 116 hafs_regional_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/hafs_regional_telescopic_2nests_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/hafs_regional_telescopic_2nests_atm Checking test 117 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3819,28 +3819,28 @@ Checking test 117 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -0:The total amount of wall time = 426.511333 -0:The maximum resident set size (KB) = 309012 +0:The total amount of wall time = 420.579007 +0:The maximum resident set size (KB) = 308080 Test 117 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_global_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/hafs_global_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_global_1nest_atm +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/hafs_global_1nest_atm Checking test 118 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 170.322877 -0:The maximum resident set size (KB) = 206120 +0:The total amount of wall time = 171.656211 +0:The maximum resident set size (KB) = 206396 Test 118 hafs_global_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_global_multiple_4nests_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/hafs_global_multiple_4nests_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_global_multiple_4nests_atm +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/hafs_global_multiple_4nests_atm Checking test 119 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3858,14 +3858,14 @@ Checking test 119 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -0:The total amount of wall time = 513.716535 -0:The maximum resident set size (KB) = 294516 +0:The total amount of wall time = 491.527972 +0:The maximum resident set size (KB) = 292484 Test 119 hafs_global_multiple_4nests_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/hafs_regional_specified_moving_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/hafs_regional_specified_moving_1nest_atm Checking test 120 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3874,28 +3874,28 @@ Checking test 120 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -0:The total amount of wall time = 242.084797 -0:The maximum resident set size (KB) = 307652 +0:The total amount of wall time = 242.180753 +0:The maximum resident set size (KB) = 306528 Test 120 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/hafs_regional_storm_following_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/hafs_regional_storm_following_1nest_atm Checking test 121 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 228.123461 -0:The maximum resident set size (KB) = 306728 +0:The total amount of wall time = 229.528735 +0:The maximum resident set size (KB) = 306460 Test 121 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/hafs_regional_storm_following_1nest_atm_ocn Checking test 122 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3904,42 +3904,42 @@ Checking test 122 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -0:The total amount of wall time = 281.294322 -0:The maximum resident set size (KB) = 353492 +0:The total amount of wall time = 280.438267 +0:The maximum resident set size (KB) = 354120 Test 122 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_global_storm_following_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/hafs_global_storm_following_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_global_storm_following_1nest_atm +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/hafs_global_storm_following_1nest_atm Checking test 123 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 66.617328 -0:The maximum resident set size (KB) = 221664 +0:The total amount of wall time = 66.405494 +0:The maximum resident set size (KB) = 221776 Test 123 hafs_global_storm_following_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 124 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 820.949846 -0:The maximum resident set size (KB) = 386992 +0:The total amount of wall time = 825.031012 +0:The maximum resident set size (KB) = 386856 Test 124 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 125 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3950,14 +3950,14 @@ Checking test 125 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -0:The total amount of wall time = 766.863893 -0:The maximum resident set size (KB) = 417312 +0:The total amount of wall time = 754.822406 +0:The maximum resident set size (KB) = 415456 Test 125 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_docn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/hafs_regional_docn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_docn +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/hafs_regional_docn Checking test 126 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3965,14 +3965,14 @@ Checking test 126 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 390.967045 -0:The maximum resident set size (KB) = 754676 +0:The total amount of wall time = 390.343081 +0:The maximum resident set size (KB) = 754312 Test 126 hafs_regional_docn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_docn_oisst -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/hafs_regional_docn_oisst +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_docn_oisst +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/hafs_regional_docn_oisst Checking test 127 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3980,131 +3980,131 @@ Checking test 127 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 392.349371 -0:The maximum resident set size (KB) = 733684 +0:The total amount of wall time = 392.919020 +0:The maximum resident set size (KB) = 733588 Test 127 hafs_regional_docn_oisst PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_datm_cdeps -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/hafs_regional_datm_cdeps +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_datm_cdeps +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/hafs_regional_datm_cdeps Checking test 128 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -0:The total amount of wall time = 1279.561855 -0:The maximum resident set size (KB) = 887888 +0:The total amount of wall time = 1158.497122 +0:The maximum resident set size (KB) = 887880 Test 128 hafs_regional_datm_cdeps PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/datm_cdeps_control_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/datm_cdeps_control_cfsr Checking test 129 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 168.531328 -0:The maximum resident set size (KB) = 716676 +0:The total amount of wall time = 167.890666 +0:The maximum resident set size (KB) = 727760 Test 129 datm_cdeps_control_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/datm_cdeps_restart_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/datm_cdeps_restart_cfsr Checking test 130 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 100.561924 -0:The maximum resident set size (KB) = 704944 +0:The total amount of wall time = 100.146966 +0:The maximum resident set size (KB) = 715928 Test 130 datm_cdeps_restart_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_control_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/datm_cdeps_control_gefs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_control_gefs +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/datm_cdeps_control_gefs Checking test 131 datm_cdeps_control_gefs 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 = 160.997513 -0:The maximum resident set size (KB) = 607468 +0:The total amount of wall time = 161.645911 +0:The maximum resident set size (KB) = 607476 Test 131 datm_cdeps_control_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_iau_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/datm_cdeps_iau_gefs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_iau_gefs +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/datm_cdeps_iau_gefs Checking test 132 datm_cdeps_iau_gefs 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 = 163.837386 -0:The maximum resident set size (KB) = 607508 +0:The total amount of wall time = 164.573655 +0:The maximum resident set size (KB) = 607504 Test 132 datm_cdeps_iau_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_stochy_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/datm_cdeps_stochy_gefs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_stochy_gefs +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/datm_cdeps_stochy_gefs Checking test 133 datm_cdeps_stochy_gefs 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 = 159.560961 -0:The maximum resident set size (KB) = 608444 +0:The total amount of wall time = 160.148051 +0:The maximum resident set size (KB) = 607520 Test 133 datm_cdeps_stochy_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_ciceC_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/datm_cdeps_ciceC_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_ciceC_cfsr +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/datm_cdeps_ciceC_cfsr Checking test 134 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 163.972490 -0:The maximum resident set size (KB) = 716692 +0:The total amount of wall time = 169.069549 +0:The maximum resident set size (KB) = 716700 Test 134 datm_cdeps_ciceC_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_bulk_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/datm_cdeps_bulk_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_bulk_cfsr +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/datm_cdeps_bulk_cfsr Checking test 135 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 169.143350 -0:The maximum resident set size (KB) = 716712 +0:The total amount of wall time = 163.532014 +0:The maximum resident set size (KB) = 716684 Test 135 datm_cdeps_bulk_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_bulk_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/datm_cdeps_bulk_gefs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_bulk_gefs +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/datm_cdeps_bulk_gefs Checking test 136 datm_cdeps_bulk_gefs 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 = 162.064744 -0:The maximum resident set size (KB) = 607472 +0:The total amount of wall time = 157.122935 +0:The maximum resident set size (KB) = 607500 Test 136 datm_cdeps_bulk_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_mx025_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/datm_cdeps_mx025_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_mx025_cfsr +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/datm_cdeps_mx025_cfsr Checking test 137 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4113,14 +4113,14 @@ Checking test 137 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 431.477205 -0:The maximum resident set size (KB) = 514600 +0:The total amount of wall time = 426.886045 +0:The maximum resident set size (KB) = 515768 Test 137 datm_cdeps_mx025_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_mx025_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/datm_cdeps_mx025_gefs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_mx025_gefs +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/datm_cdeps_mx025_gefs Checking test 138 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4129,77 +4129,77 @@ Checking test 138 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 429.673934 -0:The maximum resident set size (KB) = 494720 +0:The total amount of wall time = 423.528567 +0:The maximum resident set size (KB) = 494784 Test 138 datm_cdeps_mx025_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/datm_cdeps_multiple_files_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/datm_cdeps_multiple_files_cfsr Checking test 139 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 167.716414 -0:The maximum resident set size (KB) = 716696 +0:The total amount of wall time = 167.569305 +0:The maximum resident set size (KB) = 716692 Test 139 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/datm_cdeps_3072x1536_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/datm_cdeps_3072x1536_cfsr Checking test 140 datm_cdeps_3072x1536_cfsr 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 = 267.105369 -0:The maximum resident set size (KB) = 1941552 +0:The total amount of wall time = 267.102407 +0:The maximum resident set size (KB) = 1940288 Test 140 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_gfs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/datm_cdeps_gfs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_gfs +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/datm_cdeps_gfs Checking test 141 datm_cdeps_gfs 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 = 239.751148 -0:The maximum resident set size (KB) = 1940288 +0:The total amount of wall time = 268.408924 +0:The maximum resident set size (KB) = 1940316 Test 141 datm_cdeps_gfs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_debug_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/datm_cdeps_debug_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_debug_cfsr +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/datm_cdeps_debug_cfsr Checking test 142 datm_cdeps_debug_cfsr results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -0:The total amount of wall time = 459.291654 -0:The maximum resident set size (KB) = 717868 +0:The total amount of wall time = 459.036428 +0:The maximum resident set size (KB) = 706656 Test 142 datm_cdeps_debug_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_control_cfsr_faster -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/datm_cdeps_control_cfsr_faster +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_control_cfsr_faster +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/datm_cdeps_control_cfsr_faster Checking test 143 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.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 = 168.189828 -0:The maximum resident set size (KB) = 717336 +0:The total amount of wall time = 166.608985 +0:The maximum resident set size (KB) = 728000 Test 143 datm_cdeps_control_cfsr_faster PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/datm_cdeps_lnd_gswp3 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_lnd_gswp3 +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/datm_cdeps_lnd_gswp3 Checking test 144 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4208,14 +4208,14 @@ Checking test 144 datm_cdeps_lnd_gswp3 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 = 11.417982 -0:The maximum resident set size (KB) = 216400 +0:The total amount of wall time = 10.714668 +0:The maximum resident set size (KB) = 208268 Test 144 datm_cdeps_lnd_gswp3 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/datm_cdeps_lnd_gswp3_rst +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_lnd_gswp3 +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/datm_cdeps_lnd_gswp3_rst Checking test 145 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4224,14 +4224,14 @@ Checking test 145 datm_cdeps_lnd_gswp3_rst 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 = 16.011054 -0:The maximum resident set size (KB) = 208224 +0:The total amount of wall time = 16.099605 +0:The maximum resident set size (KB) = 208248 Test 145 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8_atmlnd_sbs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/control_p8_atmlnd_sbs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8_atmlnd_sbs +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/control_p8_atmlnd_sbs Checking test 146 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4316,14 +4316,14 @@ Checking test 146 control_p8_atmlnd_sbs 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 = 235.080244 -0:The maximum resident set size (KB) = 1461996 +0:The total amount of wall time = 234.429787 +0:The maximum resident set size (KB) = 1462096 Test 146 control_p8_atmlnd_sbs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/control_atmwav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/control_atmwav +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/control_atmwav +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/control_atmwav Checking test 147 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4367,14 +4367,14 @@ Checking test 147 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -0:The total amount of wall time = 99.645574 -0:The maximum resident set size (KB) = 475264 +0:The total amount of wall time = 99.749425 +0:The maximum resident set size (KB) = 474728 Test 147 control_atmwav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/atmaero_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/atmaero_control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/atmaero_control_p8 +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/atmaero_control_p8 Checking test 148 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4418,14 +4418,14 @@ Checking test 148 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 251.736859 -0:The maximum resident set size (KB) = 2703812 +0:The total amount of wall time = 253.139265 +0:The maximum resident set size (KB) = 2703384 Test 148 atmaero_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/atmaero_control_p8_rad -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/atmaero_control_p8_rad +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/atmaero_control_p8_rad +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/atmaero_control_p8_rad Checking test 149 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4469,14 +4469,14 @@ Checking test 149 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 298.958621 -0:The maximum resident set size (KB) = 2758404 +0:The total amount of wall time = 303.139635 +0:The maximum resident set size (KB) = 2757688 Test 149 atmaero_control_p8_rad PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/atmaero_control_p8_rad_micro -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/atmaero_control_p8_rad_micro +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/atmaero_control_p8_rad_micro +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/atmaero_control_p8_rad_micro Checking test 150 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4520,14 +4520,14 @@ Checking test 150 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 309.207329 -0:The maximum resident set size (KB) = 2764268 +0:The total amount of wall time = 305.437065 +0:The maximum resident set size (KB) = 2764076 Test 150 atmaero_control_p8_rad_micro PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_atmaq -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/regional_atmaq +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_atmaq +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/regional_atmaq Checking test 151 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4543,14 +4543,14 @@ Checking test 151 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -0:The total amount of wall time = 747.773372 -0:The maximum resident set size (KB) = 999620 +0:The total amount of wall time = 744.493523 +0:The maximum resident set size (KB) = 998968 Test 151 regional_atmaq PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_atmaq_faster -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_11891/regional_atmaq_faster +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_atmaq_faster +working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/regional_atmaq_faster Checking test 152 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4566,12 +4566,12 @@ Checking test 152 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -0:The total amount of wall time = 702.496957 -0:The maximum resident set size (KB) = 998652 +0:The total amount of wall time = 698.582061 +0:The maximum resident set size (KB) = 998712 Test 152 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Mon Mar 20 18:51:44 MDT 2023 -Elapsed time: 01h:13m:25s. Have a nice day! +Thu Mar 23 07:00:21 MDT 2023 +Elapsed time: 01h:11m:55s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 82dc47c7b82..9135334a5dc 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,21 +1,21 @@ -Mon Mar 20 23:47:45 UTC 2023 +Wed Mar 22 18:38:44 UTC 2023 Start Regression test -Compile 001 elapsed time 180 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 184 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile 002 elapsed time 184 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 313 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 97 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 180 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 386 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 314 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 96 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 181 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 388 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile 007 elapsed time 313 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 312 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 259 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 222 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 147 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 012 elapsed time 112 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/control_c48 +Compile 008 elapsed time 314 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 261 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 223 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 143 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 012 elapsed time 113 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/control_c48 Checking test 001 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -54,14 +54,14 @@ Checking test 001 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 682.759238 -0: The maximum resident set size (KB) = 700720 +0: The total amount of wall time = 687.310902 +0: The maximum resident set size (KB) = 699680 Test 001 control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/control_stochy +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/control_stochy Checking test 002 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -72,14 +72,14 @@ Checking test 002 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 659.007618 - 0: The maximum resident set size (KB) = 478772 + 0: The total amount of wall time = 658.487609 + 0: The maximum resident set size (KB) = 479712 Test 002 control_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/control_ras +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/control_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/control_ras Checking test 003 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -90,14 +90,14 @@ Checking test 003 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 845.834921 - 0: The maximum resident set size (KB) = 487744 + 0: The total amount of wall time = 857.355910 + 0: The maximum resident set size (KB) = 486896 Test 003 control_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/control_p8 Checking test 004 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -144,14 +144,14 @@ Checking test 004 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 903.084092 - 0: The maximum resident set size (KB) = 1234864 + 0: The total amount of wall time = 899.103201 + 0: The maximum resident set size (KB) = 1234268 Test 004 control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/rap_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/rap_control Checking test 005 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -198,14 +198,14 @@ Checking test 005 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1447.960190 - 0: The maximum resident set size (KB) = 836752 + 0: The total amount of wall time = 1484.665613 + 0: The maximum resident set size (KB) = 832340 Test 005 rap_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/rap_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/rap_decomp Checking test 006 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -252,14 +252,14 @@ Checking test 006 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1467.154768 - 0: The maximum resident set size (KB) = 830748 + 0: The total amount of wall time = 1454.018537 + 0: The maximum resident set size (KB) = 830036 Test 006 rap_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/rap_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/rap_2threads Checking test 007 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -306,14 +306,14 @@ Checking test 007 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1315.771882 - 0: The maximum resident set size (KB) = 898924 + 0: The total amount of wall time = 1338.704290 + 0: The maximum resident set size (KB) = 896512 Test 007 rap_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/rap_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/rap_restart Checking test 008 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -352,14 +352,14 @@ Checking test 008 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 746.238005 - 0: The maximum resident set size (KB) = 545212 + 0: The total amount of wall time = 728.869955 + 0: The maximum resident set size (KB) = 549876 Test 008 rap_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/rap_sfcdiff +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/rap_sfcdiff Checking test 009 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -406,14 +406,14 @@ Checking test 009 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1470.613232 - 0: The maximum resident set size (KB) = 829076 + 0: The total amount of wall time = 1467.410041 + 0: The maximum resident set size (KB) = 825872 Test 009 rap_sfcdiff PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/rap_sfcdiff_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/rap_sfcdiff_decomp Checking test 010 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -460,14 +460,14 @@ Checking test 010 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1444.826408 - 0: The maximum resident set size (KB) = 836504 + 0: The total amount of wall time = 1439.745402 + 0: The maximum resident set size (KB) = 832328 Test 010 rap_sfcdiff_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/rap_sfcdiff_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/rap_sfcdiff_restart Checking test 011 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -506,14 +506,14 @@ Checking test 011 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1074.633852 - 0: The maximum resident set size (KB) = 550088 + 0: The total amount of wall time = 1082.139359 + 0: The maximum resident set size (KB) = 554520 Test 011 rap_sfcdiff_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/hrrr_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/hrrr_control Checking test 012 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -560,14 +560,14 @@ Checking test 012 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1415.634655 - 0: The maximum resident set size (KB) = 827108 + 0: The total amount of wall time = 1444.570788 + 0: The maximum resident set size (KB) = 827176 Test 012 hrrr_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/hrrr_control_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/hrrr_control_2threads Checking test 013 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -614,14 +614,14 @@ Checking test 013 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1303.496885 - 0: The maximum resident set size (KB) = 890864 + 0: The total amount of wall time = 1324.273179 + 0: The maximum resident set size (KB) = 890988 Test 013 hrrr_control_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/hrrr_control_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/hrrr_control_decomp Checking test 014 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -668,14 +668,14 @@ Checking test 014 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1418.596977 - 0: The maximum resident set size (KB) = 829828 + 0: The total amount of wall time = 1430.568705 + 0: The maximum resident set size (KB) = 824116 Test 014 hrrr_control_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/hrrr_control_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/hrrr_control_restart Checking test 015 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -714,14 +714,14 @@ Checking test 015 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1055.447939 - 0: The maximum resident set size (KB) = 548632 + 0: The total amount of wall time = 1054.839660 + 0: The maximum resident set size (KB) = 547748 Test 015 hrrr_control_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/rrfs_v1beta +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/rrfs_v1beta Checking test 016 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -768,14 +768,14 @@ Checking test 016 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1470.064148 - 0: The maximum resident set size (KB) = 830720 + 0: The total amount of wall time = 1429.358337 + 0: The maximum resident set size (KB) = 830272 Test 016 rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/rrfs_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/rrfs_conus13km_hrrr_warm Checking test 017 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -784,14 +784,14 @@ Checking test 017 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 743.108140 - 0: The maximum resident set size (KB) = 635592 + 0: The total amount of wall time = 765.556406 + 0: The maximum resident set size (KB) = 637880 Test 017 rrfs_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/rrfs_smoke_conus13km_hrrr_warm Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -800,14 +800,14 @@ Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 790.246094 - 0: The maximum resident set size (KB) = 649548 + 0: The total amount of wall time = 797.414377 + 0: The maximum resident set size (KB) = 650756 Test 018 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/rrfs_conus13km_radar_tten_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/rrfs_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/rrfs_conus13km_radar_tten_warm Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -816,14 +816,14 @@ Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 793.936088 - 0: The maximum resident set size (KB) = 638988 + 0: The total amount of wall time = 716.776874 + 0: The maximum resident set size (KB) = 642192 Test 019 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/rrfs_conus13km_radar_tten_warm_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/rrfs_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/rrfs_conus13km_radar_tten_warm_2threads Checking test 020 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -832,208 +832,208 @@ Checking test 020 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 942.471313 - 0: The maximum resident set size (KB) = 636760 + 0: The total amount of wall time = 869.667851 + 0: The maximum resident set size (KB) = 636232 Test 020 rrfs_conus13km_radar_tten_warm_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/control_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/control_diag_debug Checking test 021 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 125.668595 - 0: The maximum resident set size (KB) = 532028 + 0: The total amount of wall time = 128.271888 + 0: The maximum resident set size (KB) = 536480 Test 021 control_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/regional_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/regional_debug Checking test 022 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 711.703910 - 0: The maximum resident set size (KB) = 595956 + 0: The total amount of wall time = 643.487203 + 0: The maximum resident set size (KB) = 596896 Test 022 regional_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/rap_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/rap_control_debug Checking test 023 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 176.089048 - 0: The maximum resident set size (KB) = 849904 + 0: The total amount of wall time = 175.163064 + 0: The maximum resident set size (KB) = 852564 Test 023 rap_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/hrrr_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/hrrr_control_debug Checking test 024 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 175.079032 - 0: The maximum resident set size (KB) = 839924 + 0: The total amount of wall time = 170.784012 + 0: The maximum resident set size (KB) = 851824 Test 024 hrrr_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/rap_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/rap_diag_debug Checking test 025 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 212.075108 - 0: The maximum resident set size (KB) = 930672 + 0: The total amount of wall time = 216.718210 + 0: The maximum resident set size (KB) = 935408 Test 025 rap_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/rap_noah_sfcdiff_cires_ugwp_debug Checking test 026 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.535447 - 0: The maximum resident set size (KB) = 851412 + 0: The total amount of wall time = 275.086409 + 0: The maximum resident set size (KB) = 852364 Test 026 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/rap_progcld_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/rap_progcld_thompson_debug Checking test 027 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 177.102479 - 0: The maximum resident set size (KB) = 852692 + 0: The total amount of wall time = 179.772049 + 0: The maximum resident set size (KB) = 852500 Test 027 rap_progcld_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/rrfs_v1beta_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/rrfs_v1beta_debug Checking test 028 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 177.921164 - 0: The maximum resident set size (KB) = 838488 + 0: The total amount of wall time = 174.920824 + 0: The maximum resident set size (KB) = 849084 Test 028 rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/control_ras_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/control_ras_debug Checking test 029 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 105.197091 - 0: The maximum resident set size (KB) = 481840 + 0: The total amount of wall time = 106.093764 + 0: The maximum resident set size (KB) = 489532 Test 029 control_ras_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/control_stochy_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/control_stochy_debug Checking test 030 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 119.952356 - 0: The maximum resident set size (KB) = 478304 + 0: The total amount of wall time = 119.891494 + 0: The maximum resident set size (KB) = 483280 Test 030 control_stochy_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/control_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/control_debug_p8 Checking test 031 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 118.928042 - 0: The maximum resident set size (KB) = 1233484 + 0: The total amount of wall time = 120.940629 + 0: The maximum resident set size (KB) = 1237804 Test 031 control_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/rrfs_conus13km_hrrr_warm_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/rrfs_conus13km_hrrr_warm_debugs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/rrfs_conus13km_hrrr_warm_debug Checking test 032 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 549.737335 - 0: The maximum resident set size (KB) = 653652 + 0: The total amount of wall time = 557.066052 + 0: The maximum resident set size (KB) = 654624 Test 032 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/rrfs_conus13km_radar_tten_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/rrfs_conus13km_radar_tten_warm_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/rrfs_conus13km_radar_tten_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/rrfs_conus13km_radar_tten_warm_debug Checking test 033 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 556.352658 - 0: The maximum resident set size (KB) = 657524 + 0: The total amount of wall time = 588.873637 + 0: The maximum resident set size (KB) = 659808 Test 033 rrfs_conus13km_radar_tten_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/control_wam_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/control_wam_debug Checking test 034 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 186.949514 - 0: The maximum resident set size (KB) = 192728 + 0: The total amount of wall time = 187.196830 + 0: The maximum resident set size (KB) = 190976 Test 034 control_wam_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/rap_control_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/rap_control_dyn32_phy32 Checking test 035 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1080,14 +1080,14 @@ Checking test 035 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1422.769246 - 0: The maximum resident set size (KB) = 686944 + 0: The total amount of wall time = 1470.055726 + 0: The maximum resident set size (KB) = 688624 Test 035 rap_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/hrrr_control_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/hrrr_control_dyn32_phy32 Checking test 036 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1134,14 +1134,14 @@ Checking test 036 hrrr_control_dyn32_phy32 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 = 730.926566 - 0: The maximum resident set size (KB) = 683672 + 0: The total amount of wall time = 730.010232 + 0: The maximum resident set size (KB) = 682208 Test 036 hrrr_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/rap_2threads_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/rap_2threads_dyn32_phy32 Checking test 037 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1188,14 +1188,14 @@ Checking test 037 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1346.377640 - 0: The maximum resident set size (KB) = 732624 + 0: The total amount of wall time = 1322.996621 + 0: The maximum resident set size (KB) = 728648 Test 037 rap_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/hrrr_control_2threads_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/hrrr_control_2threads_dyn32_phy32 Checking test 038 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1242,14 +1242,14 @@ Checking test 038 hrrr_control_2threads_dyn32_phy32 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 = 675.102974 - 0: The maximum resident set size (KB) = 728768 + 0: The total amount of wall time = 671.239619 + 0: The maximum resident set size (KB) = 728456 Test 038 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/hrrr_control_decomp_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/hrrr_control_decomp_dyn32_phy32 Checking test 039 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1296,14 +1296,14 @@ Checking test 039 hrrr_control_decomp_dyn32_phy32 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 = 713.209472 - 0: The maximum resident set size (KB) = 685196 + 0: The total amount of wall time = 728.203907 + 0: The maximum resident set size (KB) = 683760 Test 039 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/rap_restart_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/rap_restart_dyn32_phy32 Checking test 040 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1342,14 +1342,14 @@ Checking test 040 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1057.431272 - 0: The maximum resident set size (KB) = 511532 + 0: The total amount of wall time = 1080.881472 + 0: The maximum resident set size (KB) = 510760 Test 040 rap_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/hrrr_control_restart_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/hrrr_control_restart_dyn32_phy32 Checking test 041 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1388,14 +1388,14 @@ Checking test 041 hrrr_control_restart_dyn32_phy32 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 = 369.382828 - 0: The maximum resident set size (KB) = 508332 + 0: The total amount of wall time = 362.869061 + 0: The maximum resident set size (KB) = 512152 Test 041 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/rap_control_dyn64_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/rap_control_dyn64_phy32 Checking test 042 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1442,56 +1442,56 @@ Checking test 042 rap_control_dyn64_phy32 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 = 1077.388122 - 0: The maximum resident set size (KB) = 708820 + 0: The total amount of wall time = 1062.848382 + 0: The maximum resident set size (KB) = 714016 Test 042 rap_control_dyn64_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/rap_control_debug_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/rap_control_debug_dyn32_phy32 Checking test 043 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 173.737022 - 0: The maximum resident set size (KB) = 705632 + 0: The total amount of wall time = 179.022262 + 0: The maximum resident set size (KB) = 707552 Test 043 rap_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/hrrr_control_debug_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/hrrr_control_debug_dyn32_phy32 Checking test 044 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 170.438927 - 0: The maximum resident set size (KB) = 700084 + 0: The total amount of wall time = 173.173872 + 0: The maximum resident set size (KB) = 707600 Test 044 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/rap_control_dyn64_phy32_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/rap_control_debug_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/rap_control_dyn64_phy32_debug Checking test 045 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 204.851615 - 0: The maximum resident set size (KB) = 719860 + 0: The total amount of wall time = 204.501241 + 0: The maximum resident set size (KB) = 722480 Test 045 rap_control_dyn64_phy32_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/cpld_control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/cpld_control_p8 Checking test 046 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1556,14 +1556,14 @@ Checking test 046 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1695.063376 - 0: The maximum resident set size (KB) = 1429464 + 0: The total amount of wall time = 1746.815948 + 0: The maximum resident set size (KB) = 1429964 -Test 046 cpld_control_p8 PASS Tries: 2 +Test 046 cpld_control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/cpld_control_nowave_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/cpld_control_c96_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/cpld_control_nowave_noaero_p8 Checking test 047 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1625,14 +1625,14 @@ Checking test 047 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 1208.209463 - 0: The maximum resident set size (KB) = 1332764 + 0: The total amount of wall time = 1208.926387 + 0: The maximum resident set size (KB) = 1330992 Test 047 cpld_control_nowave_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/cpld_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/cpld_debug_p8 Checking test 048 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1685,25 +1685,25 @@ Checking test 048 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1564.397770 - 0: The maximum resident set size (KB) = 1445540 + 0: The total amount of wall time = 1348.043525 + 0: The maximum resident set size (KB) = 1449372 Test 048 cpld_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/GNU/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7989/datm_cdeps_control_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/datm_cdeps_control_cfsr Checking test 049 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 172.980317 - 0: The maximum resident set size (KB) = 665368 + 0: The total amount of wall time = 173.963509 + 0: The maximum resident set size (KB) = 663004 Test 049 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Tue Mar 21 01:01:22 UTC 2023 -Elapsed time: 01h:13m:37s. Have a nice day! +Wed Mar 22 19:32:24 UTC 2023 +Elapsed time: 00h:53m:41s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 8d3d740f4b6..6630423d216 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,42 +1,42 @@ -Mon Mar 20 23:32:42 UTC 2023 +Wed Mar 22 18:57:29 UTC 2023 Start Regression test -Compile 001 elapsed time 597 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 592 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 560 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 206 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 200 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 509 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 498 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 692 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 484 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 482 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 453 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 433 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 578 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 205 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 176 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 443 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 443 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 173 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 161 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 545 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 021 elapsed time 190 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 617 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 589 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 024 elapsed time 186 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 118 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 179 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 53 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 481 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 548 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 457 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 452 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 180 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 554 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8_mixedmode -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/cpld_control_p8_mixedmode +Compile 001 elapsed time 604 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 607 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 580 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 215 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 193 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 512 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 501 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 689 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 489 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 483 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 452 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 435 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 582 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 206 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 179 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 460 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 436 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 161 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 158 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 591 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 021 elapsed time 184 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 624 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 559 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 024 elapsed time 179 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 109 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 178 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 56 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 478 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 520 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 483 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 455 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 164 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 536 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8_mixedmode +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -101,14 +101,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 306.222025 - 0: The maximum resident set size (KB) = 3136904 + 0: The total amount of wall time = 308.631611 + 0: The maximum resident set size (KB) = 3142428 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_gfsv17 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/cpld_control_gfsv17 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_gfsv17 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -172,14 +172,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 222.221558 - 0: The maximum resident set size (KB) = 1737584 + 0: The total amount of wall time = 224.627854 + 0: The maximum resident set size (KB) = 1723288 Test 002 cpld_control_gfsv17 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/cpld_control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -244,14 +244,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 336.976641 - 0: The maximum resident set size (KB) = 3176404 + 0: The total amount of wall time = 338.058923 + 0: The maximum resident set size (KB) = 3180344 Test 003 cpld_control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/cpld_restart_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -304,14 +304,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 193.656109 - 0: The maximum resident set size (KB) = 3054608 + 0: The total amount of wall time = 194.631490 + 0: The maximum resident set size (KB) = 3050412 Test 004 cpld_restart_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/cpld_2threads_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -364,14 +364,14 @@ Checking test 005 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 349.227093 - 0: The maximum resident set size (KB) = 3515228 + 0: The total amount of wall time = 350.549331 + 0: The maximum resident set size (KB) = 3514900 Test 005 cpld_2threads_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/cpld_decomp_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/cpld_decomp_p8 Checking test 006 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -424,14 +424,14 @@ Checking test 006 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 336.340270 - 0: The maximum resident set size (KB) = 3168248 + 0: The total amount of wall time = 339.243654 + 0: The maximum resident set size (KB) = 3173884 Test 006 cpld_decomp_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/cpld_mpi_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/cpld_mpi_p8 Checking test 007 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -484,14 +484,14 @@ Checking test 007 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 276.897292 - 0: The maximum resident set size (KB) = 3024720 + 0: The total amount of wall time = 283.620644 + 0: The maximum resident set size (KB) = 3021792 Test 007 cpld_mpi_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_ciceC_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/cpld_control_ciceC_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_ciceC_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/cpld_control_ciceC_p8 Checking test 008 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -556,14 +556,14 @@ Checking test 008 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 336.889369 - 0: The maximum resident set size (KB) = 3179616 + 0: The total amount of wall time = 337.186502 + 0: The maximum resident set size (KB) = 3182616 Test 008 cpld_control_ciceC_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/cpld_control_c192_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/cpld_control_c192_p8 Checking test 009 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -616,14 +616,14 @@ Checking test 009 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 581.651403 - 0: The maximum resident set size (KB) = 3251972 + 0: The total amount of wall time = 581.750433 + 0: The maximum resident set size (KB) = 3252408 Test 009 cpld_control_c192_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/cpld_restart_c192_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/cpld_restart_c192_p8 Checking test 010 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -676,14 +676,14 @@ Checking test 010 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 405.059624 - 0: The maximum resident set size (KB) = 3152880 + 0: The total amount of wall time = 407.227643 + 0: The maximum resident set size (KB) = 3154608 Test 010 cpld_restart_c192_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/cpld_bmark_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/cpld_bmark_p8 Checking test 011 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -731,14 +731,14 @@ Checking test 011 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 701.097783 - 0: The maximum resident set size (KB) = 4028464 + 0: The total amount of wall time = 707.063717 + 0: The maximum resident set size (KB) = 4031588 Test 011 cpld_bmark_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/cpld_restart_bmark_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/cpld_restart_bmark_p8 Checking test 012 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -786,14 +786,14 @@ Checking test 012 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 439.805363 - 0: The maximum resident set size (KB) = 3970836 + 0: The total amount of wall time = 445.324769 + 0: The maximum resident set size (KB) = 3972424 Test 012 cpld_restart_bmark_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/cpld_control_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/cpld_control_noaero_p8 Checking test 013 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -857,14 +857,14 @@ Checking test 013 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 260.181064 - 0: The maximum resident set size (KB) = 1724048 + 0: The total amount of wall time = 269.104772 + 0: The maximum resident set size (KB) = 1725500 Test 013 cpld_control_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/cpld_control_nowave_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_c96_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/cpld_control_nowave_noaero_p8 Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -926,14 +926,14 @@ Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 256.283301 - 0: The maximum resident set size (KB) = 1762872 + 0: The total amount of wall time = 256.838013 + 0: The maximum resident set size (KB) = 1764268 Test 014 cpld_control_nowave_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/cpld_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/cpld_debug_p8 Checking test 015 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -986,14 +986,14 @@ Checking test 015 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 650.158444 - 0: The maximum resident set size (KB) = 3245444 + 0: The total amount of wall time = 643.229690 + 0: The maximum resident set size (KB) = 3243716 Test 015 cpld_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_debug_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/cpld_debug_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_debug_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/cpld_debug_noaero_p8 Checking test 016 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1045,14 +1045,14 @@ Checking test 016 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 402.210444 - 0: The maximum resident set size (KB) = 1735216 + 0: The total amount of wall time = 394.677363 + 0: The maximum resident set size (KB) = 1730460 Test 016 cpld_debug_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_noaero_p8_agrid -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/cpld_control_noaero_p8_agrid +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_noaero_p8_agrid +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/cpld_control_noaero_p8_agrid Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1114,14 +1114,14 @@ Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 268.574438 - 0: The maximum resident set size (KB) = 1767384 + 0: The total amount of wall time = 266.240404 + 0: The maximum resident set size (KB) = 1768444 Test 017 cpld_control_noaero_p8_agrid PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/cpld_control_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/cpld_control_c48 Checking test 018 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1171,14 +1171,14 @@ Checking test 018 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 580.199312 - 0: The maximum resident set size (KB) = 2803364 + 0: The total amount of wall time = 579.711541 + 0: The maximum resident set size (KB) = 2802972 Test 018 cpld_control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/cpld_warmstart_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_warmstart_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/cpld_warmstart_c48 Checking test 019 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1228,14 +1228,14 @@ Checking test 019 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 152.754671 - 0: The maximum resident set size (KB) = 2798812 + 0: The total amount of wall time = 154.007671 + 0: The maximum resident set size (KB) = 2800868 Test 019 cpld_warmstart_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/cpld_restart_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_warmstart_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/cpld_restart_c48 Checking test 020 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1285,14 +1285,14 @@ Checking test 020 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 80.716165 - 0: The maximum resident set size (KB) = 2245620 + 0: The total amount of wall time = 81.303414 + 0: The maximum resident set size (KB) = 2239596 Test 020 cpld_restart_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/cpld_control_p8_faster +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/cpld_control_p8_faster Checking test 021 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1357,14 +1357,14 @@ Checking test 021 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 314.641890 - 0: The maximum resident set size (KB) = 3180904 + 0: The total amount of wall time = 319.647345 + 0: The maximum resident set size (KB) = 3181860 Test 021 cpld_control_p8_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_CubedSphereGrid -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/control_CubedSphereGrid +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_CubedSphereGrid +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/control_CubedSphereGrid Checking test 022 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1391,28 +1391,28 @@ Checking test 022 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 130.456554 - 0: The maximum resident set size (KB) = 620280 + 0: The total amount of wall time = 130.705698 + 0: The maximum resident set size (KB) = 628584 Test 022 control_CubedSphereGrid PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_CubedSphereGrid_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/control_CubedSphereGrid_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_CubedSphereGrid_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/control_CubedSphereGrid_parallel Checking test 023 control_CubedSphereGrid_parallel results .... - Comparing sfcf000.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 127.227113 - 0: The maximum resident set size (KB) = 625860 + 0: The total amount of wall time = 129.158118 + 0: The maximum resident set size (KB) = 625516 Test 023 control_CubedSphereGrid_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_latlon -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/control_latlon +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_latlon +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/control_latlon Checking test 024 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1423,14 +1423,14 @@ Checking test 024 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 133.098829 - 0: The maximum resident set size (KB) = 628584 + 0: The total amount of wall time = 132.457925 + 0: The maximum resident set size (KB) = 630704 Test 024 control_latlon PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_wrtGauss_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/control_wrtGauss_netcdf_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_wrtGauss_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/control_wrtGauss_netcdf_parallel Checking test 025 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1441,14 +1441,14 @@ Checking test 025 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.894053 - 0: The maximum resident set size (KB) = 622644 + 0: The total amount of wall time = 135.659615 + 0: The maximum resident set size (KB) = 625740 Test 025 control_wrtGauss_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/control_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/control_c48 Checking test 026 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1487,14 +1487,14 @@ Checking test 026 control_c48 results .... Comparing 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.192377 -0: The maximum resident set size (KB) = 818912 +0: The total amount of wall time = 373.315259 +0: The maximum resident set size (KB) = 815008 Test 026 control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/control_c192 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/control_c192 Checking test 027 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1505,14 +1505,14 @@ Checking test 027 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 522.378024 - 0: The maximum resident set size (KB) = 761520 + 0: The total amount of wall time = 526.431779 + 0: The maximum resident set size (KB) = 758876 Test 027 control_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/control_c384 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_c384 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/control_c384 Checking test 028 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1523,14 +1523,14 @@ Checking test 028 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 538.344071 - 0: The maximum resident set size (KB) = 1269920 + 0: The total amount of wall time = 535.862653 + 0: The maximum resident set size (KB) = 1264036 Test 028 control_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_c384gdas -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/control_c384gdas +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_c384gdas +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/control_c384gdas Checking test 029 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1573,14 +1573,14 @@ Checking test 029 control_c384gdas 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 = 459.278607 - 0: The maximum resident set size (KB) = 1378188 + 0: The total amount of wall time = 475.334233 + 0: The maximum resident set size (KB) = 1374616 Test 029 control_c384gdas PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/control_stochy +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/control_stochy Checking test 030 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1591,28 +1591,28 @@ Checking test 030 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 85.850039 - 0: The maximum resident set size (KB) = 633380 + 0: The total amount of wall time = 87.485532 + 0: The maximum resident set size (KB) = 628960 Test 030 control_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/control_stochy_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/control_stochy_restart Checking test 031 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 47.493568 - 0: The maximum resident set size (KB) = 481632 + 0: The total amount of wall time = 48.043152 + 0: The maximum resident set size (KB) = 481596 Test 031 control_stochy_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/control_lndp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_lndp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/control_lndp Checking test 032 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1623,14 +1623,14 @@ Checking test 032 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 80.638493 - 0: The maximum resident set size (KB) = 629224 + 0: The total amount of wall time = 82.001630 + 0: The maximum resident set size (KB) = 634304 Test 032 control_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_iovr4 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/control_iovr4 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_iovr4 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/control_iovr4 Checking test 033 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1645,14 +1645,14 @@ Checking test 033 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 133.605675 - 0: The maximum resident set size (KB) = 627052 + 0: The total amount of wall time = 138.409728 + 0: The maximum resident set size (KB) = 623428 Test 033 control_iovr4 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_iovr5 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/control_iovr5 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_iovr5 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/control_iovr5 Checking test 034 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1667,14 +1667,14 @@ Checking test 034 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.326456 - 0: The maximum resident set size (KB) = 629728 + 0: The total amount of wall time = 137.914234 + 0: The maximum resident set size (KB) = 629216 Test 034 control_iovr5 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/control_p8 Checking test 035 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1721,14 +1721,14 @@ Checking test 035 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 166.652921 - 0: The maximum resident set size (KB) = 1605756 + 0: The total amount of wall time = 165.572114 + 0: The maximum resident set size (KB) = 1607740 Test 035 control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/control_p8_lndp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8_lndp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/control_p8_lndp Checking test 036 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1747,14 +1747,14 @@ Checking test 036 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 310.733739 - 0: The maximum resident set size (KB) = 1599160 + 0: The total amount of wall time = 309.484274 + 0: The maximum resident set size (KB) = 1608588 Test 036 control_p8_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/control_restart_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/control_restart_p8 Checking test 037 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1793,14 +1793,14 @@ Checking test 037 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 87.111729 - 0: The maximum resident set size (KB) = 881256 + 0: The total amount of wall time = 88.828534 + 0: The maximum resident set size (KB) = 875820 Test 037 control_restart_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/control_decomp_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/control_decomp_p8 Checking test 038 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1843,14 +1843,14 @@ Checking test 038 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 173.048779 - 0: The maximum resident set size (KB) = 1585132 + 0: The total amount of wall time = 171.805621 + 0: The maximum resident set size (KB) = 1586568 Test 038 control_decomp_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/control_2threads_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/control_2threads_p8 Checking test 039 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1893,14 +1893,14 @@ Checking test 039 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 163.315755 - 0: The maximum resident set size (KB) = 1682240 + 0: The total amount of wall time = 161.627369 + 0: The maximum resident set size (KB) = 1684044 Test 039 control_2threads_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/control_p8_rrtmgp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/control_p8_rrtmgp Checking test 040 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1947,14 +1947,14 @@ Checking test 040 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 222.825539 - 0: The maximum resident set size (KB) = 1672492 + 0: The total amount of wall time = 221.853434 + 0: The maximum resident set size (KB) = 1673432 Test 040 control_p8_rrtmgp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/merra2_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/merra2_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/merra2_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/merra2_thompson Checking test 041 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2001,14 +2001,14 @@ Checking test 041 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 189.004902 - 0: The maximum resident set size (KB) = 1605764 + 0: The total amount of wall time = 187.310165 + 0: The maximum resident set size (KB) = 1612676 Test 041 merra2_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/regional_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/regional_control Checking test 042 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2019,28 +2019,28 @@ Checking test 042 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 298.913527 - 0: The maximum resident set size (KB) = 869040 + 0: The total amount of wall time = 298.673057 + 0: The maximum resident set size (KB) = 864652 Test 042 regional_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/regional_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/regional_restart Checking test 043 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 151.753292 - 0: The maximum resident set size (KB) = 859632 + 0: The total amount of wall time = 151.716190 + 0: The maximum resident set size (KB) = 860764 Test 043 regional_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/regional_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/regional_decomp Checking test 044 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2051,14 +2051,14 @@ Checking test 044 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 315.384788 - 0: The maximum resident set size (KB) = 859252 + 0: The total amount of wall time = 313.813943 + 0: The maximum resident set size (KB) = 858112 Test 044 regional_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/regional_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/regional_2threads Checking test 045 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2069,14 +2069,14 @@ Checking test 045 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 183.209900 - 0: The maximum resident set size (KB) = 843324 + 0: The total amount of wall time = 183.719062 + 0: The maximum resident set size (KB) = 841868 Test 045 regional_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_noquilt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/regional_noquilt +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_noquilt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/regional_noquilt Checking test 046 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2084,28 +2084,28 @@ Checking test 046 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 321.478147 - 0: The maximum resident set size (KB) = 857716 + 0: The total amount of wall time = 318.712977 + 0: The maximum resident set size (KB) = 858876 Test 046 regional_noquilt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/regional_netcdf_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/regional_netcdf_parallel Checking test 047 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 295.359992 - 0: The maximum resident set size (KB) = 863864 + 0: The total amount of wall time = 292.200306 + 0: The maximum resident set size (KB) = 864176 Test 047 regional_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/regional_2dwrtdecomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/regional_2dwrtdecomp Checking test 048 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2116,14 +2116,14 @@ Checking test 048 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 297.681435 - 0: The maximum resident set size (KB) = 866420 + 0: The total amount of wall time = 297.809496 + 0: The maximum resident set size (KB) = 871832 Test 048 regional_2dwrtdecomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/fv3_regional_wofs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/regional_wofs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/fv3_regional_wofs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/regional_wofs Checking test 049 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2134,14 +2134,14 @@ Checking test 049 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 375.149324 - 0: The maximum resident set size (KB) = 626352 + 0: The total amount of wall time = 376.327957 + 0: The maximum resident set size (KB) = 626788 Test 049 regional_wofs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/rap_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/rap_control Checking test 050 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2188,14 +2188,14 @@ Checking test 050 rap_control results .... Comparing 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.026082 - 0: The maximum resident set size (KB) = 1064324 + 0: The total amount of wall time = 459.998013 + 0: The maximum resident set size (KB) = 1055124 Test 050 rap_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_spp_sppt_shum_skeb -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/regional_spp_sppt_shum_skeb +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_spp_sppt_shum_skeb +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/regional_spp_sppt_shum_skeb Checking test 051 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2206,14 +2206,14 @@ Checking test 051 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 283.996619 - 0: The maximum resident set size (KB) = 1176780 + 0: The total amount of wall time = 286.799817 + 0: The maximum resident set size (KB) = 1175748 Test 051 regional_spp_sppt_shum_skeb PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/rap_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/rap_decomp Checking test 052 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2260,14 +2260,14 @@ Checking test 052 rap_decomp results .... Comparing 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.841209 - 0: The maximum resident set size (KB) = 1002536 + 0: The total amount of wall time = 481.725120 + 0: The maximum resident set size (KB) = 1006824 Test 052 rap_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/rap_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/rap_2threads Checking test 053 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2314,14 +2314,14 @@ Checking test 053 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 441.770811 - 0: The maximum resident set size (KB) = 1140124 + 0: The total amount of wall time = 440.650614 + 0: The maximum resident set size (KB) = 1134432 Test 053 rap_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/rap_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/rap_restart Checking test 054 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2360,14 +2360,14 @@ Checking test 054 rap_restart results .... Comparing 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.726714 - 0: The maximum resident set size (KB) = 964160 + 0: The total amount of wall time = 232.721307 + 0: The maximum resident set size (KB) = 973568 Test 054 rap_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/rap_sfcdiff +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/rap_sfcdiff Checking test 055 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2414,14 +2414,14 @@ Checking test 055 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 451.290640 - 0: The maximum resident set size (KB) = 1066768 + 0: The total amount of wall time = 453.778605 + 0: The maximum resident set size (KB) = 1059524 Test 055 rap_sfcdiff PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/rap_sfcdiff_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/rap_sfcdiff_decomp Checking test 056 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2468,14 +2468,14 @@ Checking test 056 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 477.283465 - 0: The maximum resident set size (KB) = 1004380 + 0: The total amount of wall time = 479.218313 + 0: The maximum resident set size (KB) = 1002896 Test 056 rap_sfcdiff_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/rap_sfcdiff_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/rap_sfcdiff_restart Checking test 057 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2514,14 +2514,14 @@ Checking test 057 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 340.266848 - 0: The maximum resident set size (KB) = 987788 + 0: The total amount of wall time = 340.964058 + 0: The maximum resident set size (KB) = 984880 Test 057 rap_sfcdiff_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/hrrr_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/hrrr_control Checking test 058 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2568,14 +2568,14 @@ Checking test 058 hrrr_control results .... Comparing 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.676678 - 0: The maximum resident set size (KB) = 1063396 + 0: The total amount of wall time = 435.190642 + 0: The maximum resident set size (KB) = 1057312 Test 058 hrrr_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/hrrr_control_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/hrrr_control_decomp Checking test 059 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2622,14 +2622,14 @@ Checking test 059 hrrr_control_decomp results .... Comparing 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.501739 - 0: The maximum resident set size (KB) = 1001912 + 0: The total amount of wall time = 456.783149 + 0: The maximum resident set size (KB) = 1002696 Test 059 hrrr_control_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/hrrr_control_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/hrrr_control_2threads Checking test 060 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2676,14 +2676,14 @@ Checking test 060 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 413.933822 - 0: The maximum resident set size (KB) = 1142516 + 0: The total amount of wall time = 416.030862 + 0: The maximum resident set size (KB) = 1136648 Test 060 hrrr_control_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/hrrr_control_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/hrrr_control_restart Checking test 061 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2722,14 +2722,14 @@ Checking test 061 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 327.701255 - 0: The maximum resident set size (KB) = 993548 + 0: The total amount of wall time = 332.283703 + 0: The maximum resident set size (KB) = 986932 Test 061 hrrr_control_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/rrfs_v1beta +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/rrfs_v1beta Checking test 062 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2776,14 +2776,14 @@ Checking test 062 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 444.970404 - 0: The maximum resident set size (KB) = 1063484 + 0: The total amount of wall time = 446.850452 + 0: The maximum resident set size (KB) = 1060020 Test 062 rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_v1nssl -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/rrfs_v1nssl +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_v1nssl +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/rrfs_v1nssl Checking test 063 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2798,14 +2798,14 @@ Checking test 063 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 523.198182 - 0: The maximum resident set size (KB) = 689424 + 0: The total amount of wall time = 524.699573 + 0: The maximum resident set size (KB) = 690996 Test 063 rrfs_v1nssl PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/rrfs_v1nssl_nohailnoccn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/rrfs_v1nssl_nohailnoccn Checking test 064 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2820,14 +2820,14 @@ Checking test 064 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 510.973457 - 0: The maximum resident set size (KB) = 758504 + 0: The total amount of wall time = 514.774479 + 0: The maximum resident set size (KB) = 760900 Test 064 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/rrfs_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/rrfs_conus13km_hrrr_warm Checking test 065 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2836,14 +2836,14 @@ Checking test 065 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 123.524944 - 0: The maximum resident set size (KB) = 926664 + 0: The total amount of wall time = 122.604428 + 0: The maximum resident set size (KB) = 933160 Test 065 rrfs_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/rrfs_smoke_conus13km_hrrr_warm Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2852,14 +2852,14 @@ Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 138.273657 - 0: The maximum resident set size (KB) = 955324 + 0: The total amount of wall time = 139.123235 + 0: The maximum resident set size (KB) = 965128 Test 066 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/rrfs_conus13km_radar_tten_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/rrfs_conus13km_radar_tten_warm Checking test 067 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2868,14 +2868,14 @@ Checking test 067 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 123.777012 - 0: The maximum resident set size (KB) = 932436 + 0: The total amount of wall time = 123.940184 + 0: The maximum resident set size (KB) = 936288 Test 067 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/rrfs_conus13km_hrrr_warm_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/rrfs_conus13km_hrrr_warm_2threads Checking test 068 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2884,14 +2884,14 @@ Checking test 068 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 78.029113 - 0: The maximum resident set size (KB) = 880288 + 0: The total amount of wall time = 77.783847 + 0: The maximum resident set size (KB) = 841304 Test 068 rrfs_conus13km_hrrr_warm_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/rrfs_conus13km_radar_tten_warm_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/rrfs_conus13km_radar_tten_warm_2threads Checking test 069 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2900,14 +2900,14 @@ Checking test 069 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 77.763719 - 0: The maximum resident set size (KB) = 882900 + 0: The total amount of wall time = 79.415203 + 0: The maximum resident set size (KB) = 845136 Test 069 rrfs_conus13km_radar_tten_warm_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_csawmg -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/control_csawmg +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_csawmg +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/control_csawmg Checking test 070 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2918,14 +2918,14 @@ Checking test 070 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 340.216227 - 0: The maximum resident set size (KB) = 728132 + 0: The total amount of wall time = 346.424945 + 0: The maximum resident set size (KB) = 728216 Test 070 control_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_csawmgt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/control_csawmgt +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_csawmgt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/control_csawmgt Checking test 071 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2936,14 +2936,14 @@ Checking test 071 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 335.260785 - 0: The maximum resident set size (KB) = 724436 + 0: The total amount of wall time = 340.683824 + 0: The maximum resident set size (KB) = 734032 Test 071 control_csawmgt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/control_ras +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/control_ras Checking test 072 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2954,26 +2954,26 @@ Checking test 072 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 179.502872 - 0: The maximum resident set size (KB) = 715200 + 0: The total amount of wall time = 182.477727 + 0: The maximum resident set size (KB) = 709888 Test 072 control_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_wam -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/control_wam +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_wam +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/control_wam Checking test 073 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 112.222903 - 0: The maximum resident set size (KB) = 636492 + 0: The total amount of wall time = 112.892759 + 0: The maximum resident set size (KB) = 636964 Test 073 control_wam PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/control_p8_faster +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/control_p8_faster Checking test 074 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3020,14 +3020,14 @@ Checking test 074 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 150.711024 - 0: The maximum resident set size (KB) = 1612012 + 0: The total amount of wall time = 157.141688 + 0: The maximum resident set size (KB) = 1602284 Test 074 control_p8_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_control_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/regional_control_faster +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_control_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/regional_control_faster Checking test 075 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3038,42 +3038,42 @@ Checking test 075 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 273.545754 - 0: The maximum resident set size (KB) = 871728 + 0: The total amount of wall time = 273.668330 + 0: The maximum resident set size (KB) = 871396 Test 075 regional_control_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/rrfs_conus13km_hrrr_warm_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/rrfs_conus13km_hrrr_warm_debug Checking test 076 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 725.534974 - 0: The maximum resident set size (KB) = 959504 + 0: The total amount of wall time = 722.850661 + 0: The maximum resident set size (KB) = 960908 Test 076 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/rrfs_conus13km_radar_tten_warm_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_conus13km_radar_tten_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/rrfs_conus13km_radar_tten_warm_debug Checking test 077 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 722.118281 - 0: The maximum resident set size (KB) = 970448 + 0: The total amount of wall time = 717.151378 + 0: The maximum resident set size (KB) = 958180 Test 077 rrfs_conus13km_radar_tten_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_CubedSphereGrid_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/control_CubedSphereGrid_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_CubedSphereGrid_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/control_CubedSphereGrid_debug Checking test 078 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3100,334 +3100,334 @@ Checking test 078 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 160.685852 - 0: The maximum resident set size (KB) = 793496 + 0: The total amount of wall time = 160.230378 + 0: The maximum resident set size (KB) = 797372 Test 078 control_CubedSphereGrid_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/control_wrtGauss_netcdf_parallel_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/control_wrtGauss_netcdf_parallel_debug Checking test 079 control_wrtGauss_netcdf_parallel_debug 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 = 148.306791 - 0: The maximum resident set size (KB) = 794580 + 0: The total amount of wall time = 155.271596 + 0: The maximum resident set size (KB) = 796388 Test 079 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/control_stochy_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/control_stochy_debug Checking test 080 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 172.403391 - 0: The maximum resident set size (KB) = 803216 + 0: The total amount of wall time = 168.212455 + 0: The maximum resident set size (KB) = 800328 Test 080 control_stochy_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/control_lndp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/control_lndp_debug Checking test 081 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 152.270614 - 0: The maximum resident set size (KB) = 794556 + 0: The total amount of wall time = 152.982501 + 0: The maximum resident set size (KB) = 797204 Test 081 control_lndp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_csawmg_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/control_csawmg_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_csawmg_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/control_csawmg_debug Checking test 082 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 231.269033 - 0: The maximum resident set size (KB) = 842508 + 0: The total amount of wall time = 231.342386 + 0: The maximum resident set size (KB) = 843096 Test 082 control_csawmg_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_csawmgt_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/control_csawmgt_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_csawmgt_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/control_csawmgt_debug Checking test 083 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 232.210885 - 0: The maximum resident set size (KB) = 844512 + 0: The total amount of wall time = 231.142377 + 0: The maximum resident set size (KB) = 846676 Test 083 control_csawmgt_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/control_ras_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/control_ras_debug Checking test 084 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 153.421062 - 0: The maximum resident set size (KB) = 805476 + 0: The total amount of wall time = 153.967538 + 0: The maximum resident set size (KB) = 805324 Test 084 control_ras_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/control_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/control_diag_debug Checking test 085 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 160.437818 - 0: The maximum resident set size (KB) = 851100 + 0: The total amount of wall time = 162.067894 + 0: The maximum resident set size (KB) = 856592 Test 085 control_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/control_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/control_debug_p8 Checking test 086 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 170.128225 - 0: The maximum resident set size (KB) = 1624124 + 0: The total amount of wall time = 169.762216 + 0: The maximum resident set size (KB) = 1619792 Test 086 control_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/regional_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/regional_debug Checking test 087 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 983.446813 - 0: The maximum resident set size (KB) = 884856 + 0: The total amount of wall time = 985.797591 + 0: The maximum resident set size (KB) = 887500 Test 087 regional_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/rap_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/rap_control_debug Checking test 088 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.581574 - 0: The maximum resident set size (KB) = 1179972 + 0: The total amount of wall time = 276.078882 + 0: The maximum resident set size (KB) = 1172248 Test 088 rap_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/hrrr_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/hrrr_control_debug Checking test 089 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.362205 - 0: The maximum resident set size (KB) = 1176816 + 0: The total amount of wall time = 267.824961 + 0: The maximum resident set size (KB) = 1171392 Test 089 hrrr_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/rap_unified_drag_suite_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/rap_unified_drag_suite_debug Checking test 090 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 272.254566 - 0: The maximum resident set size (KB) = 1179688 + 0: The total amount of wall time = 274.173332 + 0: The maximum resident set size (KB) = 1170352 Test 090 rap_unified_drag_suite_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/rap_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/rap_diag_debug Checking test 091 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 294.559113 - 0: The maximum resident set size (KB) = 1256472 + 0: The total amount of wall time = 294.747283 + 0: The maximum resident set size (KB) = 1252444 Test 091 rap_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/rap_cires_ugwp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/rap_cires_ugwp_debug Checking test 092 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 278.646060 - 0: The maximum resident set size (KB) = 1182104 + 0: The total amount of wall time = 283.691192 + 0: The maximum resident set size (KB) = 1171800 Test 092 rap_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/rap_unified_ugwp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/rap_unified_ugwp_debug Checking test 093 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.847762 - 0: The maximum resident set size (KB) = 1178592 + 0: The total amount of wall time = 279.511020 + 0: The maximum resident set size (KB) = 1176908 Test 093 rap_unified_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/rap_lndp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/rap_lndp_debug Checking test 094 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.538097 - 0: The maximum resident set size (KB) = 1176300 + 0: The total amount of wall time = 278.825947 + 0: The maximum resident set size (KB) = 1174740 Test 094 rap_lndp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_flake_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/rap_flake_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_flake_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/rap_flake_debug Checking test 095 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.486450 - 0: The maximum resident set size (KB) = 1172412 + 0: The total amount of wall time = 275.325449 + 0: The maximum resident set size (KB) = 1170960 Test 095 rap_flake_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/rap_progcld_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/rap_progcld_thompson_debug Checking test 096 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.760788 - 0: The maximum resident set size (KB) = 1178616 + 0: The total amount of wall time = 273.825533 + 0: The maximum resident set size (KB) = 1172460 Test 096 rap_progcld_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_noah_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/rap_noah_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_noah_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/rap_noah_debug Checking test 097 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 270.993722 - 0: The maximum resident set size (KB) = 1172212 + 0: The total amount of wall time = 277.212473 + 0: The maximum resident set size (KB) = 1170140 Test 097 rap_noah_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_sfcdiff_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/rap_sfcdiff_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_sfcdiff_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/rap_sfcdiff_debug Checking test 098 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.691670 - 0: The maximum resident set size (KB) = 1180624 + 0: The total amount of wall time = 276.011275 + 0: The maximum resident set size (KB) = 1173332 Test 098 rap_sfcdiff_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/rap_noah_sfcdiff_cires_ugwp_debug Checking test 099 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 447.774468 - 0: The maximum resident set size (KB) = 1171460 + 0: The total amount of wall time = 451.248462 + 0: The maximum resident set size (KB) = 1170408 Test 099 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/rrfs_v1beta_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/rrfs_v1beta_debug Checking test 100 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 267.176063 - 0: The maximum resident set size (KB) = 1174576 + 0: The total amount of wall time = 276.172973 + 0: The maximum resident set size (KB) = 1167480 Test 100 rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/control_wam_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/control_wam_debug Checking test 101 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 287.231836 - 0: The maximum resident set size (KB) = 521672 + 0: The total amount of wall time = 283.141620 + 0: The maximum resident set size (KB) = 522284 Test 101 control_wam_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 102 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3438,14 +3438,14 @@ Checking test 102 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 259.723748 - 0: The maximum resident set size (KB) = 1069108 + 0: The total amount of wall time = 267.615629 + 0: The maximum resident set size (KB) = 1072288 Test 102 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/rap_control_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/rap_control_dyn32_phy32 Checking test 103 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3492,14 +3492,14 @@ Checking test 103 rap_control_dyn32_phy32 results .... Comparing 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.559021 - 0: The maximum resident set size (KB) = 1008704 + 0: The total amount of wall time = 371.107848 + 0: The maximum resident set size (KB) = 997820 Test 103 rap_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/hrrr_control_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/hrrr_control_dyn32_phy32 Checking test 104 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3546,14 +3546,14 @@ Checking test 104 hrrr_control_dyn32_phy32 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 = 193.106329 - 0: The maximum resident set size (KB) = 955060 + 0: The total amount of wall time = 195.770898 + 0: The maximum resident set size (KB) = 955548 Test 104 hrrr_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/rap_2threads_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/rap_2threads_dyn32_phy32 Checking test 105 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3600,14 +3600,14 @@ Checking test 105 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 357.546678 - 0: The maximum resident set size (KB) = 1022356 + 0: The total amount of wall time = 359.654429 + 0: The maximum resident set size (KB) = 1020508 Test 105 rap_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/hrrr_control_2threads_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/hrrr_control_2threads_dyn32_phy32 Checking test 106 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3654,14 +3654,14 @@ Checking test 106 hrrr_control_2threads_dyn32_phy32 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 = 189.837923 - 0: The maximum resident set size (KB) = 1004984 + 0: The total amount of wall time = 190.877735 + 0: The maximum resident set size (KB) = 1003840 Test 106 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/hrrr_control_decomp_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/hrrr_control_decomp_dyn32_phy32 Checking test 107 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3708,14 +3708,14 @@ Checking test 107 hrrr_control_decomp_dyn32_phy32 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 = 203.030203 - 0: The maximum resident set size (KB) = 897416 + 0: The total amount of wall time = 206.838153 + 0: The maximum resident set size (KB) = 891040 Test 107 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/rap_restart_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/rap_restart_dyn32_phy32 Checking test 108 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3754,14 +3754,14 @@ Checking test 108 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 281.293916 - 0: The maximum resident set size (KB) = 955444 + 0: The total amount of wall time = 281.215757 + 0: The maximum resident set size (KB) = 950332 Test 108 rap_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/hrrr_control_restart_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/hrrr_control_restart_dyn32_phy32 Checking test 109 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3800,14 +3800,14 @@ Checking test 109 hrrr_control_restart_dyn32_phy32 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 = 100.001241 - 0: The maximum resident set size (KB) = 856756 + 0: The total amount of wall time = 101.356436 + 0: The maximum resident set size (KB) = 866140 Test 109 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/rap_control_dyn64_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/rap_control_dyn64_phy32 Checking test 110 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3854,81 +3854,81 @@ Checking test 110 rap_control_dyn64_phy32 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.897631 - 0: The maximum resident set size (KB) = 967760 + 0: The total amount of wall time = 243.553792 + 0: The maximum resident set size (KB) = 967372 Test 110 rap_control_dyn64_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/rap_control_debug_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/rap_control_debug_dyn32_phy32 Checking test 111 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 269.756862 - 0: The maximum resident set size (KB) = 1062088 + 0: The total amount of wall time = 275.285836 + 0: The maximum resident set size (KB) = 1060100 Test 111 rap_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/hrrr_control_debug_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/hrrr_control_debug_dyn32_phy32 Checking test 112 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 263.854217 - 0: The maximum resident set size (KB) = 1056236 + 0: The total amount of wall time = 265.285669 + 0: The maximum resident set size (KB) = 1058316 Test 112 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/rap_control_dyn64_phy32_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_debug_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/rap_control_dyn64_phy32_debug Checking test 113 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 285.509946 - 0: The maximum resident set size (KB) = 1099344 + 0: The total amount of wall time = 275.112037 + 0: The maximum resident set size (KB) = 1104304 Test 113 rap_control_dyn64_phy32_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/hafs_regional_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/hafs_regional_atm Checking test 114 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 239.183736 - 0: The maximum resident set size (KB) = 1046524 + 0: The total amount of wall time = 238.808434 + 0: The maximum resident set size (KB) = 1049284 Test 114 hafs_regional_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/hafs_regional_atm_thompson_gfdlsf +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/hafs_regional_atm_thompson_gfdlsf Checking test 115 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 304.209433 - 0: The maximum resident set size (KB) = 1418352 + 0: The total amount of wall time = 315.192722 + 0: The maximum resident set size (KB) = 1417852 Test 115 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/hafs_regional_atm_ocn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/hafs_regional_atm_ocn Checking test 116 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3937,14 +3937,14 @@ Checking test 116 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 377.477904 - 0: The maximum resident set size (KB) = 1214984 + 0: The total amount of wall time = 379.860809 + 0: The maximum resident set size (KB) = 1223184 Test 116 hafs_regional_atm_ocn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_atm_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/hafs_regional_atm_wav +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_atm_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/hafs_regional_atm_wav Checking test 117 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3953,14 +3953,14 @@ Checking test 117 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 738.307000 - 0: The maximum resident set size (KB) = 1250340 + 0: The total amount of wall time = 735.206189 + 0: The maximum resident set size (KB) = 1251216 Test 117 hafs_regional_atm_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/hafs_regional_atm_ocn_wav +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/hafs_regional_atm_ocn_wav Checking test 118 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3971,28 +3971,28 @@ Checking test 118 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 840.400531 - 0: The maximum resident set size (KB) = 1270036 + 0: The total amount of wall time = 840.521646 + 0: The maximum resident set size (KB) = 1271064 Test 118 hafs_regional_atm_ocn_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/hafs_regional_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/hafs_regional_1nest_atm Checking test 119 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 318.987023 - 0: The maximum resident set size (KB) = 509520 + 0: The total amount of wall time = 320.941203 + 0: The maximum resident set size (KB) = 505604 Test 119 hafs_regional_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/hafs_regional_telescopic_2nests_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/hafs_regional_telescopic_2nests_atm Checking test 120 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4001,28 +4001,28 @@ Checking test 120 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 363.451143 - 0: The maximum resident set size (KB) = 511972 + 0: The total amount of wall time = 362.748465 + 0: The maximum resident set size (KB) = 512280 Test 120 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_global_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/hafs_global_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_global_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/hafs_global_1nest_atm Checking test 121 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 147.505229 - 0: The maximum resident set size (KB) = 348736 + 0: The total amount of wall time = 145.823139 + 0: The maximum resident set size (KB) = 349476 Test 121 hafs_global_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_global_multiple_4nests_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/hafs_global_multiple_4nests_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_global_multiple_4nests_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/hafs_global_multiple_4nests_atm Checking test 122 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4040,14 +4040,14 @@ Checking test 122 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 415.302029 - 0: The maximum resident set size (KB) = 421880 + 0: The total amount of wall time = 418.943373 + 0: The maximum resident set size (KB) = 422620 Test 122 hafs_global_multiple_4nests_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/hafs_regional_specified_moving_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/hafs_regional_specified_moving_1nest_atm Checking test 123 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4056,28 +4056,28 @@ Checking test 123 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 203.053840 - 0: The maximum resident set size (KB) = 516704 + 0: The total amount of wall time = 201.631721 + 0: The maximum resident set size (KB) = 511508 Test 123 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/hafs_regional_storm_following_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/hafs_regional_storm_following_1nest_atm Checking test 124 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 190.337143 - 0: The maximum resident set size (KB) = 515856 + 0: The total amount of wall time = 191.086922 + 0: The maximum resident set size (KB) = 515408 Test 124 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/hafs_regional_storm_following_1nest_atm_ocn Checking test 125 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4086,42 +4086,42 @@ Checking test 125 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 219.948921 - 0: The maximum resident set size (KB) = 549108 + 0: The total amount of wall time = 219.841893 + 0: The maximum resident set size (KB) = 558316 Test 125 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_global_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/hafs_global_storm_following_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_global_storm_following_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/hafs_global_storm_following_1nest_atm Checking test 126 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 58.339314 - 0: The maximum resident set size (KB) = 370024 + 0: The total amount of wall time = 58.044355 + 0: The maximum resident set size (KB) = 365732 Test 126 hafs_global_storm_following_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 127 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 760.654007 - 0: The maximum resident set size (KB) = 579444 + 0: The total amount of wall time = 758.337857 + 0: The maximum resident set size (KB) = 577316 Test 127 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 128 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4132,14 +4132,14 @@ Checking test 128 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 515.063755 - 0: The maximum resident set size (KB) = 612700 + 0: The total amount of wall time = 517.992676 + 0: The maximum resident set size (KB) = 610344 Test 128 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_docn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/hafs_regional_docn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_docn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/hafs_regional_docn Checking test 129 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4147,14 +4147,14 @@ Checking test 129 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 351.136766 - 0: The maximum resident set size (KB) = 1224732 + 0: The total amount of wall time = 356.422181 + 0: The maximum resident set size (KB) = 1227968 Test 129 hafs_regional_docn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_docn_oisst -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/hafs_regional_docn_oisst +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_docn_oisst +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/hafs_regional_docn_oisst Checking test 130 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4162,131 +4162,131 @@ Checking test 130 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 354.742069 - 0: The maximum resident set size (KB) = 1214232 + 0: The total amount of wall time = 357.617156 + 0: The maximum resident set size (KB) = 1221140 Test 130 hafs_regional_docn_oisst PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_datm_cdeps -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/hafs_regional_datm_cdeps +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_datm_cdeps +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/hafs_regional_datm_cdeps Checking test 131 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 952.084793 - 0: The maximum resident set size (KB) = 1037504 + 0: The total amount of wall time = 1023.937376 + 0: The maximum resident set size (KB) = 1038924 Test 131 hafs_regional_datm_cdeps PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/datm_cdeps_control_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/datm_cdeps_control_cfsr Checking test 132 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 155.097746 - 0: The maximum resident set size (KB) = 1070204 + 0: The total amount of wall time = 154.906645 + 0: The maximum resident set size (KB) = 1074880 Test 132 datm_cdeps_control_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/datm_cdeps_restart_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/datm_cdeps_restart_cfsr Checking test 133 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 91.923086 - 0: The maximum resident set size (KB) = 1016220 + 0: The total amount of wall time = 89.981322 + 0: The maximum resident set size (KB) = 1028800 Test 133 datm_cdeps_restart_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/datm_cdeps_control_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/datm_cdeps_control_gefs Checking test 134 datm_cdeps_control_gefs 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.726822 - 0: The maximum resident set size (KB) = 971532 + 0: The total amount of wall time = 151.167897 + 0: The maximum resident set size (KB) = 966292 Test 134 datm_cdeps_control_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_iau_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/datm_cdeps_iau_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_iau_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/datm_cdeps_iau_gefs Checking test 135 datm_cdeps_iau_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.525647 - 0: The maximum resident set size (KB) = 967488 + 0: The total amount of wall time = 151.381412 + 0: The maximum resident set size (KB) = 961776 Test 135 datm_cdeps_iau_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_stochy_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/datm_cdeps_stochy_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_stochy_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/datm_cdeps_stochy_gefs Checking test 136 datm_cdeps_stochy_gefs 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.232743 - 0: The maximum resident set size (KB) = 962512 + 0: The total amount of wall time = 152.640340 + 0: The maximum resident set size (KB) = 958052 Test 136 datm_cdeps_stochy_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_ciceC_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/datm_cdeps_ciceC_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_ciceC_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/datm_cdeps_ciceC_cfsr Checking test 137 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 154.109657 - 0: The maximum resident set size (KB) = 1063688 + 0: The total amount of wall time = 152.735742 + 0: The maximum resident set size (KB) = 1066672 Test 137 datm_cdeps_ciceC_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/datm_cdeps_bulk_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/datm_cdeps_bulk_cfsr Checking test 138 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 153.554768 - 0: The maximum resident set size (KB) = 1059704 + 0: The total amount of wall time = 154.150821 + 0: The maximum resident set size (KB) = 1058412 Test 138 datm_cdeps_bulk_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/datm_cdeps_bulk_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/datm_cdeps_bulk_gefs Checking test 139 datm_cdeps_bulk_gefs 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.791809 - 0: The maximum resident set size (KB) = 957660 + 0: The total amount of wall time = 148.032099 + 0: The maximum resident set size (KB) = 954096 Test 139 datm_cdeps_bulk_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/datm_cdeps_mx025_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/datm_cdeps_mx025_cfsr Checking test 140 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4295,14 +4295,14 @@ Checking test 140 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 394.382797 - 0: The maximum resident set size (KB) = 878072 + 0: The total amount of wall time = 397.231418 + 0: The maximum resident set size (KB) = 877744 Test 140 datm_cdeps_mx025_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/datm_cdeps_mx025_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/datm_cdeps_mx025_gefs Checking test 141 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4311,77 +4311,77 @@ Checking test 141 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 387.812851 - 0: The maximum resident set size (KB) = 934828 + 0: The total amount of wall time = 391.937038 + 0: The maximum resident set size (KB) = 932780 Test 141 datm_cdeps_mx025_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/datm_cdeps_multiple_files_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/datm_cdeps_multiple_files_cfsr Checking test 142 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 153.302450 - 0: The maximum resident set size (KB) = 1058344 + 0: The total amount of wall time = 154.417023 + 0: The maximum resident set size (KB) = 1075256 Test 142 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/datm_cdeps_3072x1536_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/datm_cdeps_3072x1536_cfsr Checking test 143 datm_cdeps_3072x1536_cfsr 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 = 213.831663 - 0: The maximum resident set size (KB) = 2360136 + 0: The total amount of wall time = 212.330224 + 0: The maximum resident set size (KB) = 2359432 Test 143 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_gfs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/datm_cdeps_gfs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_gfs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/datm_cdeps_gfs Checking test 144 datm_cdeps_gfs 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 = 216.281671 - 0: The maximum resident set size (KB) = 2371524 + 0: The total amount of wall time = 214.403839 + 0: The maximum resident set size (KB) = 2357576 Test 144 datm_cdeps_gfs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/datm_cdeps_debug_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/datm_cdeps_debug_cfsr Checking test 145 datm_cdeps_debug_cfsr 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 = 444.943238 - 0: The maximum resident set size (KB) = 1002172 + 0: The total amount of wall time = 442.412513 + 0: The maximum resident set size (KB) = 1006920 Test 145 datm_cdeps_debug_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_control_cfsr_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/datm_cdeps_control_cfsr_faster +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_control_cfsr_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/datm_cdeps_control_cfsr_faster Checking test 146 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.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.906209 - 0: The maximum resident set size (KB) = 1055080 + 0: The total amount of wall time = 154.650855 + 0: The maximum resident set size (KB) = 1070628 Test 146 datm_cdeps_control_cfsr_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/datm_cdeps_lnd_gswp3 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_lnd_gswp3 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/datm_cdeps_lnd_gswp3 Checking test 147 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4390,14 +4390,14 @@ Checking test 147 datm_cdeps_lnd_gswp3 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 = 6.167653 - 0: The maximum resident set size (KB) = 259560 + 0: The total amount of wall time = 6.515411 + 0: The maximum resident set size (KB) = 261024 Test 147 datm_cdeps_lnd_gswp3 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/datm_cdeps_lnd_gswp3_rst +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_lnd_gswp3 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/datm_cdeps_lnd_gswp3_rst Checking test 148 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4406,14 +4406,14 @@ Checking test 148 datm_cdeps_lnd_gswp3_rst 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.423336 - 0: The maximum resident set size (KB) = 256276 + 0: The total amount of wall time = 11.959424 + 0: The maximum resident set size (KB) = 258856 Test 148 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8_atmlnd_sbs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/control_p8_atmlnd_sbs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8_atmlnd_sbs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/control_p8_atmlnd_sbs Checking test 149 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4498,14 +4498,14 @@ Checking test 149 control_p8_atmlnd_sbs 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 = 202.643425 - 0: The maximum resident set size (KB) = 1610272 + 0: The total amount of wall time = 200.066952 + 0: The maximum resident set size (KB) = 1609248 Test 149 control_p8_atmlnd_sbs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_atmwav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/control_atmwav +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_atmwav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/control_atmwav Checking test 150 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4549,14 +4549,14 @@ Checking test 150 control_atmwav 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.117612 - 0: The maximum resident set size (KB) = 662896 + 0: The total amount of wall time = 86.691504 + 0: The maximum resident set size (KB) = 657132 Test 150 control_atmwav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/atmaero_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/atmaero_control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/atmaero_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/atmaero_control_p8 Checking test 151 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4600,14 +4600,14 @@ Checking test 151 atmaero_control_p8 results .... Comparing 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.312689 - 0: The maximum resident set size (KB) = 2975284 + 0: The total amount of wall time = 225.648540 + 0: The maximum resident set size (KB) = 2967852 Test 151 atmaero_control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/atmaero_control_p8_rad -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/atmaero_control_p8_rad +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/atmaero_control_p8_rad +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/atmaero_control_p8_rad Checking test 152 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4651,14 +4651,14 @@ Checking test 152 atmaero_control_p8_rad results .... Comparing 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.332159 - 0: The maximum resident set size (KB) = 3046860 + 0: The total amount of wall time = 278.365733 + 0: The maximum resident set size (KB) = 3049272 Test 152 atmaero_control_p8_rad PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/atmaero_control_p8_rad_micro -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/atmaero_control_p8_rad_micro +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/atmaero_control_p8_rad_micro +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/atmaero_control_p8_rad_micro Checking test 153 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4702,14 +4702,14 @@ Checking test 153 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 281.714861 - 0: The maximum resident set size (KB) = 3051148 + 0: The total amount of wall time = 285.281069 + 0: The maximum resident set size (KB) = 3057556 Test 153 atmaero_control_p8_rad_micro PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_atmaq -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/regional_atmaq +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_atmaq +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/regional_atmaq Checking test 154 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4725,14 +4725,14 @@ Checking test 154 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 630.251511 - 0: The maximum resident set size (KB) = 1470988 + 0: The total amount of wall time = 631.460161 + 0: The maximum resident set size (KB) = 1474692 Test 154 regional_atmaq PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_atmaq_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/regional_atmaq_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_atmaq_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/regional_atmaq_debug Checking test 155 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4746,14 +4746,14 @@ Checking test 155 regional_atmaq_debug 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.844860 - 0: The maximum resident set size (KB) = 1405448 + 0: The total amount of wall time = 1217.781227 + 0: The maximum resident set size (KB) = 1399032 Test 155 regional_atmaq_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_atmaq_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25045/regional_atmaq_faster +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_atmaq_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/regional_atmaq_faster Checking test 156 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4769,12 +4769,12 @@ Checking test 156 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 549.148413 - 0: The maximum resident set size (KB) = 1473476 + 0: The total amount of wall time = 553.204760 + 0: The maximum resident set size (KB) = 1459036 Test 156 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Tue Mar 21 00:49:34 UTC 2023 -Elapsed time: 01h:16m:52s. Have a nice day! +Wed Mar 22 20:07:15 UTC 2023 +Elapsed time: 01h:09m:46s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index 27b480b2f33..e481878861b 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,42 +1,42 @@ -Tue Mar 21 01:39:10 UTC 2023 +Wed Mar 22 22:07:01 UTC 2023 Start Regression test -Compile 001 elapsed time 2004 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 002 elapsed time 1842 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 003 elapsed time 1690 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 004 elapsed time 328 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 288 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 1481 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 007 elapsed time 1475 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 008 elapsed time 3348 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 009 elapsed time 1555 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 010 elapsed time 1523 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 011 elapsed time 1484 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 012 elapsed time 1378 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 013 elapsed time 1983 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 014 elapsed time 304 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 263 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 1432 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 017 elapsed time 1465 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 018 elapsed time 281 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 206 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 1642 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 021 elapsed time 300 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 2108 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 023 elapsed time 1618 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 024 elapsed time 285 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 025 elapsed time 170 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 280 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 027 elapsed time 103 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 001 elapsed time 1969 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 002 elapsed time 1810 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 003 elapsed time 1661 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 004 elapsed time 317 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 276 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 1476 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 007 elapsed time 1511 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 008 elapsed time 3352 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 009 elapsed time 1593 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 010 elapsed time 1569 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 011 elapsed time 1540 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 012 elapsed time 1409 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 013 elapsed time 1953 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 014 elapsed time 291 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 229 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 1398 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 017 elapsed time 1446 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 018 elapsed time 262 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 204 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 1662 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 021 elapsed time 278 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 2060 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 023 elapsed time 1608 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 024 elapsed time 277 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 025 elapsed time 162 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 268 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 027 elapsed time 107 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON Compile 028 elapsed time 1460 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 029 elapsed time 1582 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 030 elapsed time 1428 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 031 elapsed time 1380 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 032 elapsed time 260 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 029 elapsed time 1597 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 030 elapsed time 1442 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 031 elapsed time 1425 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 032 elapsed time 247 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug Compile 033 elapsed time 1813 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8_mixedmode -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/cpld_control_p8_mixedmode +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8_mixedmode +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -101,14 +101,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 428.874410 - 0: The maximum resident set size (KB) = 1744912 + 0: The total amount of wall time = 452.456038 + 0: The maximum resident set size (KB) = 1744164 -Test 001 cpld_control_p8_mixedmode PASS +Test 001 cpld_control_p8_mixedmode PASS Tries: 2 -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_gfsv17 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/cpld_control_gfsv17 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_gfsv17 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -172,14 +172,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 304.807288 - 0: The maximum resident set size (KB) = 1626064 + 0: The total amount of wall time = 339.493023 + 0: The maximum resident set size (KB) = 1644752 Test 002 cpld_control_gfsv17 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/cpld_control_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -244,14 +244,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 468.114857 - 0: The maximum resident set size (KB) = 1795260 + 0: The total amount of wall time = 502.501979 + 0: The maximum resident set size (KB) = 1779160 -Test 003 cpld_control_p8 PASS +Test 003 cpld_control_p8 PASS Tries: 2 -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/cpld_restart_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -304,14 +304,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 280.253089 - 0: The maximum resident set size (KB) = 1497368 + 0: The total amount of wall time = 263.865626 + 0: The maximum resident set size (KB) = 1504948 Test 004 cpld_restart_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/cpld_2threads_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -364,14 +364,14 @@ Checking test 005 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 504.716934 - 0: The maximum resident set size (KB) = 1968676 + 0: The total amount of wall time = 552.184022 + 0: The maximum resident set size (KB) = 1972012 Test 005 cpld_2threads_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/cpld_decomp_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/cpld_decomp_p8 Checking test 006 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -424,14 +424,14 @@ Checking test 006 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 475.084880 - 0: The maximum resident set size (KB) = 1782784 + 0: The total amount of wall time = 536.833776 + 0: The maximum resident set size (KB) = 1780896 Test 006 cpld_decomp_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/cpld_mpi_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/cpld_mpi_p8 Checking test 007 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -484,14 +484,14 @@ Checking test 007 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 398.116558 - 0: The maximum resident set size (KB) = 1740436 + 0: The total amount of wall time = 458.080386 + 0: The maximum resident set size (KB) = 1729924 Test 007 cpld_mpi_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_ciceC_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/cpld_control_ciceC_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_ciceC_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/cpld_control_ciceC_p8 Checking test 008 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -556,14 +556,14 @@ Checking test 008 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 468.113708 - 0: The maximum resident set size (KB) = 1791456 + 0: The total amount of wall time = 525.598303 + 0: The maximum resident set size (KB) = 1778012 Test 008 cpld_control_ciceC_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_noaero_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/cpld_control_noaero_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_noaero_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/cpld_control_noaero_p8 Checking test 009 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -627,14 +627,14 @@ Checking test 009 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 351.157459 - 0: The maximum resident set size (KB) = 1632164 + 0: The total amount of wall time = 526.436220 + 0: The maximum resident set size (KB) = 1634348 Test 009 cpld_control_noaero_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/cpld_control_nowave_noaero_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_c96_noaero_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/cpld_control_nowave_noaero_p8 Checking test 010 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -696,14 +696,14 @@ Checking test 010 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 352.095462 - 0: The maximum resident set size (KB) = 1685536 + 0: The total amount of wall time = 513.991014 + 0: The maximum resident set size (KB) = 1656760 Test 010 cpld_control_nowave_noaero_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_debug_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/cpld_debug_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_debug_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/cpld_debug_p8 Checking test 011 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -756,14 +756,14 @@ Checking test 011 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 864.632307 - 0: The maximum resident set size (KB) = 1839868 + 0: The total amount of wall time = 858.291260 + 0: The maximum resident set size (KB) = 1829096 -Test 011 cpld_debug_p8 PASS +Test 011 cpld_debug_p8 PASS Tries: 2 -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_debug_noaero_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/cpld_debug_noaero_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_debug_noaero_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/cpld_debug_noaero_p8 Checking test 012 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -815,14 +815,14 @@ Checking test 012 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 539.770340 - 0: The maximum resident set size (KB) = 1642064 + 0: The total amount of wall time = 535.746825 + 0: The maximum resident set size (KB) = 1650604 Test 012 cpld_debug_noaero_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/cpld_control_noaero_p8_agrid +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_noaero_p8_agrid +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/cpld_control_noaero_p8_agrid Checking test 013 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -884,14 +884,14 @@ Checking test 013 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 387.347108 - 0: The maximum resident set size (KB) = 1682156 + 0: The total amount of wall time = 423.625914 + 0: The maximum resident set size (KB) = 1673680 Test 013 cpld_control_noaero_p8_agrid PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_c48 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/cpld_control_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_c48 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/cpld_control_c48 Checking test 014 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -941,14 +941,14 @@ Checking test 014 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 802.526177 - 0: The maximum resident set size (KB) = 2775884 + 0: The total amount of wall time = 808.588526 + 0: The maximum resident set size (KB) = 2777540 Test 014 cpld_control_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_warmstart_c48 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/cpld_warmstart_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_warmstart_c48 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/cpld_warmstart_c48 Checking test 015 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -998,14 +998,14 @@ Checking test 015 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 218.234733 - 0: The maximum resident set size (KB) = 2762712 + 0: The total amount of wall time = 238.469672 + 0: The maximum resident set size (KB) = 2768688 Test 015 cpld_warmstart_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_warmstart_c48 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/cpld_restart_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_warmstart_c48 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/cpld_restart_c48 Checking test 016 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1055,14 +1055,14 @@ Checking test 016 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 113.124055 - 0: The maximum resident set size (KB) = 2212836 + 0: The total amount of wall time = 113.976659 + 0: The maximum resident set size (KB) = 2215148 Test 016 cpld_restart_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8_faster -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/cpld_control_p8_faster +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8_faster +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/cpld_control_p8_faster Checking test 017 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1127,14 +1127,14 @@ Checking test 017 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 451.549880 - 0: The maximum resident set size (KB) = 1778416 + 0: The total amount of wall time = 452.772466 + 0: The maximum resident set size (KB) = 1770684 Test 017 cpld_control_p8_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/control_CubedSphereGrid -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/control_CubedSphereGrid +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/control_CubedSphereGrid +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/control_CubedSphereGrid Checking test 018 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1161,28 +1161,28 @@ Checking test 018 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 186.644407 - 0: The maximum resident set size (KB) = 575180 + 0: The total amount of wall time = 190.396158 + 0: The maximum resident set size (KB) = 574164 Test 018 control_CubedSphereGrid PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/control_CubedSphereGrid_parallel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/control_CubedSphereGrid_parallel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/control_CubedSphereGrid_parallel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/control_CubedSphereGrid_parallel Checking test 019 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 199.937473 - 0: The maximum resident set size (KB) = 573120 + 0: The total amount of wall time = 181.837635 + 0: The maximum resident set size (KB) = 576568 Test 019 control_CubedSphereGrid_parallel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/control_latlon -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/control_latlon +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/control_latlon +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/control_latlon Checking test 020 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1193,14 +1193,14 @@ Checking test 020 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 192.714933 - 0: The maximum resident set size (KB) = 573940 + 0: The total amount of wall time = 188.603160 + 0: The maximum resident set size (KB) = 578384 Test 020 control_latlon PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/control_wrtGauss_netcdf_parallel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/control_wrtGauss_netcdf_parallel Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1211,14 +1211,14 @@ Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 189.595813 - 0: The maximum resident set size (KB) = 574224 + 0: The total amount of wall time = 190.445304 + 0: The maximum resident set size (KB) = 572972 Test 021 control_wrtGauss_netcdf_parallel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/control_c48 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/control_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/control_c48 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/control_c48 Checking test 022 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1257,14 +1257,14 @@ Checking test 022 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 600.844547 -0: The maximum resident set size (KB) = 792800 +0: The total amount of wall time = 597.385150 +0: The maximum resident set size (KB) = 795624 Test 022 control_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/control_c192 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/control_c192 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/control_c192 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/control_c192 Checking test 023 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1275,14 +1275,14 @@ Checking test 023 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 740.928772 - 0: The maximum resident set size (KB) = 697268 + 0: The total amount of wall time = 742.637164 + 0: The maximum resident set size (KB) = 695704 Test 023 control_c192 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/control_c384 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/control_c384 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/control_c384 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/control_c384 Checking test 024 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1293,14 +1293,14 @@ Checking test 024 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 966.923253 - 0: The maximum resident set size (KB) = 1051496 + 0: The total amount of wall time = 959.504308 + 0: The maximum resident set size (KB) = 1058096 Test 024 control_c384 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/control_c384gdas -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/control_c384gdas +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/control_c384gdas +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/control_c384gdas Checking test 025 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1343,14 +1343,14 @@ Checking test 025 control_c384gdas 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 = 844.075570 - 0: The maximum resident set size (KB) = 1179888 + 0: The total amount of wall time = 836.593422 + 0: The maximum resident set size (KB) = 1196892 -Test 025 control_c384gdas PASS +Test 025 control_c384gdas PASS Tries: 2 -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/control_stochy -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/control_stochy +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/control_stochy +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/control_stochy Checking test 026 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1361,28 +1361,28 @@ Checking test 026 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 125.468631 - 0: The maximum resident set size (KB) = 580020 + 0: The total amount of wall time = 126.943843 + 0: The maximum resident set size (KB) = 581616 Test 026 control_stochy PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/control_stochy -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/control_stochy_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/control_stochy +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/control_stochy_restart Checking test 027 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 67.506173 - 0: The maximum resident set size (KB) = 394372 + 0: The total amount of wall time = 67.348269 + 0: The maximum resident set size (KB) = 401324 Test 027 control_stochy_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/control_lndp -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/control_lndp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/control_lndp +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/control_lndp Checking test 028 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1393,14 +1393,14 @@ Checking test 028 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 117.119696 - 0: The maximum resident set size (KB) = 575320 + 0: The total amount of wall time = 122.654286 + 0: The maximum resident set size (KB) = 578384 Test 028 control_lndp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/control_iovr4 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/control_iovr4 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/control_iovr4 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/control_iovr4 Checking test 029 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1415,14 +1415,14 @@ Checking test 029 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 195.558569 - 0: The maximum resident set size (KB) = 575040 + 0: The total amount of wall time = 193.521772 + 0: The maximum resident set size (KB) = 575236 Test 029 control_iovr4 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/control_iovr5 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/control_iovr5 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/control_iovr5 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/control_iovr5 Checking test 030 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1437,14 +1437,14 @@ Checking test 030 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 191.928736 - 0: The maximum resident set size (KB) = 576920 + 0: The total amount of wall time = 196.825368 + 0: The maximum resident set size (KB) = 575712 Test 030 control_iovr5 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/control_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/control_p8 Checking test 031 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1491,14 +1491,14 @@ Checking test 031 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 238.288005 - 0: The maximum resident set size (KB) = 1540032 + 0: The total amount of wall time = 245.721506 + 0: The maximum resident set size (KB) = 1542416 Test 031 control_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8_lndp -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/control_p8_lndp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8_lndp +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/control_p8_lndp Checking test 032 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1517,14 +1517,14 @@ Checking test 032 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 447.706078 - 0: The maximum resident set size (KB) = 1535676 + 0: The total amount of wall time = 435.014318 + 0: The maximum resident set size (KB) = 1536364 Test 032 control_p8_lndp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/control_restart_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/control_restart_p8 Checking test 033 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1563,14 +1563,14 @@ Checking test 033 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 123.488249 - 0: The maximum resident set size (KB) = 781236 + 0: The total amount of wall time = 122.062669 + 0: The maximum resident set size (KB) = 779856 Test 033 control_restart_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/control_decomp_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/control_decomp_p8 Checking test 034 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1613,14 +1613,14 @@ Checking test 034 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 263.100025 - 0: The maximum resident set size (KB) = 1543204 + 0: The total amount of wall time = 251.809139 + 0: The maximum resident set size (KB) = 1525188 Test 034 control_decomp_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/control_2threads_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/control_2threads_p8 Checking test 035 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1663,14 +1663,14 @@ Checking test 035 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 243.244362 - 0: The maximum resident set size (KB) = 1616032 + 0: The total amount of wall time = 235.313162 + 0: The maximum resident set size (KB) = 1632204 Test 035 control_2threads_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8_rrtmgp -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/control_p8_rrtmgp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8_rrtmgp +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/control_p8_rrtmgp Checking test 036 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1717,14 +1717,14 @@ Checking test 036 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 307.571398 - 0: The maximum resident set size (KB) = 1618536 + 0: The total amount of wall time = 309.915909 + 0: The maximum resident set size (KB) = 1617192 Test 036 control_p8_rrtmgp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/merra2_thompson -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/merra2_thompson +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/merra2_thompson +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/merra2_thompson Checking test 037 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1771,14 +1771,14 @@ Checking test 037 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 289.739832 - 0: The maximum resident set size (KB) = 1546064 + 0: The total amount of wall time = 279.842931 + 0: The maximum resident set size (KB) = 1557396 Test 037 merra2_thompson PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/regional_control +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/regional_control Checking test 038 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1789,28 +1789,28 @@ Checking test 038 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 415.833285 - 0: The maximum resident set size (KB) = 784008 + 0: The total amount of wall time = 419.882273 + 0: The maximum resident set size (KB) = 790196 Test 038 regional_control PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/regional_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/regional_restart Checking test 039 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 213.082616 - 0: The maximum resident set size (KB) = 780324 + 0: The total amount of wall time = 209.569887 + 0: The maximum resident set size (KB) = 781660 Test 039 regional_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/regional_decomp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/regional_decomp Checking test 040 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1821,14 +1821,14 @@ Checking test 040 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 444.604640 - 0: The maximum resident set size (KB) = 784892 + 0: The total amount of wall time = 437.551871 + 0: The maximum resident set size (KB) = 782148 Test 040 regional_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/regional_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/regional_2threads Checking test 041 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1839,14 +1839,14 @@ Checking test 041 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 285.904652 - 0: The maximum resident set size (KB) = 770244 + 0: The total amount of wall time = 265.673342 + 0: The maximum resident set size (KB) = 773688 Test 041 regional_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_noquilt -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/regional_noquilt +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_noquilt +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/regional_noquilt Checking test 042 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1854,28 +1854,28 @@ Checking test 042 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 461.647919 - 0: The maximum resident set size (KB) = 772408 + 0: The total amount of wall time = 452.431646 + 0: The maximum resident set size (KB) = 774640 Test 042 regional_noquilt PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_netcdf_parallel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/regional_netcdf_parallel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_netcdf_parallel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/regional_netcdf_parallel Checking test 043 regional_netcdf_parallel results .... - Comparing dynf000.nc .........OK + Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 453.882308 - 0: The maximum resident set size (KB) = 783736 + 0: The total amount of wall time = 411.600897 + 0: The maximum resident set size (KB) = 785392 Test 043 regional_netcdf_parallel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/regional_2dwrtdecomp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/regional_2dwrtdecomp Checking test 044 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1886,14 +1886,14 @@ Checking test 044 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 433.535272 - 0: The maximum resident set size (KB) = 784452 + 0: The total amount of wall time = 434.336406 + 0: The maximum resident set size (KB) = 785636 Test 044 regional_2dwrtdecomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/fv3_regional_wofs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/regional_wofs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/fv3_regional_wofs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/regional_wofs Checking test 045 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1904,14 +1904,14 @@ Checking test 045 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 533.432429 - 0: The maximum resident set size (KB) = 518616 + 0: The total amount of wall time = 540.456612 + 0: The maximum resident set size (KB) = 520172 Test 045 regional_wofs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/rap_control +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/rap_control Checking test 046 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1958,14 +1958,14 @@ Checking test 046 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 633.506581 - 0: The maximum resident set size (KB) = 961664 + 0: The total amount of wall time = 654.436765 + 0: The maximum resident set size (KB) = 961352 Test 046 rap_control PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/regional_spp_sppt_shum_skeb +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_spp_sppt_shum_skeb +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/regional_spp_sppt_shum_skeb Checking test 047 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -1976,14 +1976,14 @@ Checking test 047 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 424.772412 - 0: The maximum resident set size (KB) = 1087460 + 0: The total amount of wall time = 416.515882 + 0: The maximum resident set size (KB) = 1087604 Test 047 regional_spp_sppt_shum_skeb PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/rap_decomp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/rap_decomp Checking test 048 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2030,14 +2030,14 @@ Checking test 048 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 668.877727 - 0: The maximum resident set size (KB) = 939288 + 0: The total amount of wall time = 676.098385 + 0: The maximum resident set size (KB) = 948636 Test 048 rap_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/rap_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/rap_2threads Checking test 049 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2084,14 +2084,14 @@ Checking test 049 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 598.953445 - 0: The maximum resident set size (KB) = 1030564 + 0: The total amount of wall time = 630.539878 + 0: The maximum resident set size (KB) = 1031972 Test 049 rap_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/rap_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/rap_restart Checking test 050 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2130,14 +2130,14 @@ Checking test 050 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 325.285829 - 0: The maximum resident set size (KB) = 838964 + 0: The total amount of wall time = 312.604618 + 0: The maximum resident set size (KB) = 831576 Test 050 rap_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/rap_sfcdiff +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/rap_sfcdiff Checking test 051 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2184,14 +2184,14 @@ Checking test 051 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 618.240117 - 0: The maximum resident set size (KB) = 946160 + 0: The total amount of wall time = 670.708668 + 0: The maximum resident set size (KB) = 945916 Test 051 rap_sfcdiff PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/rap_sfcdiff_decomp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/rap_sfcdiff_decomp Checking test 052 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2238,14 +2238,14 @@ Checking test 052 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 655.324582 - 0: The maximum resident set size (KB) = 937496 + 0: The total amount of wall time = 691.360258 + 0: The maximum resident set size (KB) = 959708 Test 052 rap_sfcdiff_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/rap_sfcdiff_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/rap_sfcdiff_restart Checking test 053 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2284,14 +2284,14 @@ Checking test 053 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 457.116872 - 0: The maximum resident set size (KB) = 833720 + 0: The total amount of wall time = 479.413208 + 0: The maximum resident set size (KB) = 848812 Test 053 rap_sfcdiff_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/hrrr_control +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/hrrr_control Checking test 054 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2338,14 +2338,14 @@ Checking test 054 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 592.591679 - 0: The maximum resident set size (KB) = 960336 + 0: The total amount of wall time = 625.485540 + 0: The maximum resident set size (KB) = 957336 Test 054 hrrr_control PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/hrrr_control_decomp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/hrrr_control_decomp Checking test 055 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2392,14 +2392,14 @@ Checking test 055 hrrr_control_decomp results .... Comparing 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.040446 - 0: The maximum resident set size (KB) = 938148 + 0: The total amount of wall time = 630.718140 + 0: The maximum resident set size (KB) = 942596 Test 055 hrrr_control_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/hrrr_control_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/hrrr_control_2threads Checking test 056 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2446,14 +2446,14 @@ Checking test 056 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 574.044770 - 0: The maximum resident set size (KB) = 1023184 + 0: The total amount of wall time = 612.376134 + 0: The maximum resident set size (KB) = 1018188 Test 056 hrrr_control_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/hrrr_control_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/hrrr_control_restart Checking test 057 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2492,14 +2492,14 @@ Checking test 057 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 436.933014 - 0: The maximum resident set size (KB) = 843840 + 0: The total amount of wall time = 468.171108 + 0: The maximum resident set size (KB) = 843704 Test 057 hrrr_control_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_v1beta -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/rrfs_v1beta +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_v1beta +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/rrfs_v1beta Checking test 058 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2546,14 +2546,14 @@ Checking test 058 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 609.278148 - 0: The maximum resident set size (KB) = 948032 + 0: The total amount of wall time = 621.244721 + 0: The maximum resident set size (KB) = 951680 Test 058 rrfs_v1beta PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_v1nssl -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/rrfs_v1nssl +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_v1nssl +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/rrfs_v1nssl Checking test 059 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2568,14 +2568,14 @@ Checking test 059 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 717.848764 - 0: The maximum resident set size (KB) = 633572 + 0: The total amount of wall time = 721.010759 + 0: The maximum resident set size (KB) = 639268 Test 059 rrfs_v1nssl PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/rrfs_v1nssl_nohailnoccn +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/rrfs_v1nssl_nohailnoccn Checking test 060 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2590,14 +2590,14 @@ Checking test 060 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 716.258907 - 0: The maximum resident set size (KB) = 639296 + 0: The total amount of wall time = 722.581218 + 0: The maximum resident set size (KB) = 636068 Test 060 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/rrfs_conus13km_hrrr_warm +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/rrfs_conus13km_hrrr_warm Checking test 061 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2606,14 +2606,14 @@ Checking test 061 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 175.533283 - 0: The maximum resident set size (KB) = 848268 + 0: The total amount of wall time = 186.842895 + 0: The maximum resident set size (KB) = 849696 Test 061 rrfs_conus13km_hrrr_warm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/rrfs_smoke_conus13km_hrrr_warm Checking test 062 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2622,14 +2622,14 @@ Checking test 062 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 195.459363 - 0: The maximum resident set size (KB) = 876660 + 0: The total amount of wall time = 214.088107 + 0: The maximum resident set size (KB) = 879812 Test 062 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/rrfs_conus13km_radar_tten_warm +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/rrfs_conus13km_radar_tten_warm Checking test 063 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2638,14 +2638,14 @@ Checking test 063 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 177.702194 - 0: The maximum resident set size (KB) = 863076 + 0: The total amount of wall time = 171.256456 + 0: The maximum resident set size (KB) = 862316 Test 063 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/rrfs_conus13km_hrrr_warm_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/rrfs_conus13km_hrrr_warm_2threads Checking test 064 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2654,14 +2654,14 @@ Checking test 064 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 112.182157 - 0: The maximum resident set size (KB) = 823788 + 0: The total amount of wall time = 115.399966 + 0: The maximum resident set size (KB) = 824776 Test 064 rrfs_conus13km_hrrr_warm_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/rrfs_conus13km_radar_tten_warm_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/rrfs_conus13km_radar_tten_warm_2threads Checking test 065 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2670,14 +2670,14 @@ Checking test 065 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 122.437812 - 0: The maximum resident set size (KB) = 826656 + 0: The total amount of wall time = 123.839115 + 0: The maximum resident set size (KB) = 833340 Test 065 rrfs_conus13km_radar_tten_warm_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/control_csawmg -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/control_csawmg +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/control_csawmg +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/control_csawmg Checking test 066 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2688,14 +2688,14 @@ Checking test 066 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 479.495233 - 0: The maximum resident set size (KB) = 669856 + 0: The total amount of wall time = 475.777533 + 0: The maximum resident set size (KB) = 669036 Test 066 control_csawmg PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/control_csawmgt -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/control_csawmgt +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/control_csawmgt +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/control_csawmgt Checking test 067 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2706,14 +2706,14 @@ Checking test 067 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 471.118830 - 0: The maximum resident set size (KB) = 658628 + 0: The total amount of wall time = 489.061786 + 0: The maximum resident set size (KB) = 668060 Test 067 control_csawmgt PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/control_ras -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/control_ras +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/control_ras +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/control_ras Checking test 068 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2724,26 +2724,26 @@ Checking test 068 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 257.025821 - 0: The maximum resident set size (KB) = 636712 + 0: The total amount of wall time = 286.090217 + 0: The maximum resident set size (KB) = 632492 Test 068 control_ras PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/control_wam -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/control_wam +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/control_wam +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/control_wam Checking test 069 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 153.674405 - 0: The maximum resident set size (KB) = 485560 + 0: The total amount of wall time = 157.713933 + 0: The maximum resident set size (KB) = 483540 Test 069 control_wam PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8_faster -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/control_p8_faster +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8_faster +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/control_p8_faster Checking test 070 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2790,14 +2790,14 @@ Checking test 070 control_p8_faster results .... Comparing 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.453908 - 0: The maximum resident set size (KB) = 1531544 + 0: The total amount of wall time = 217.050264 + 0: The maximum resident set size (KB) = 1531320 Test 070 control_p8_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_control_faster -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/regional_control_faster +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_control_faster +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/regional_control_faster Checking test 071 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2808,42 +2808,42 @@ Checking test 071 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 393.945777 - 0: The maximum resident set size (KB) = 783076 + 0: The total amount of wall time = 388.206401 + 0: The maximum resident set size (KB) = 782940 Test 071 regional_control_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/rrfs_conus13km_hrrr_warm_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/rrfs_conus13km_hrrr_warm_debug Checking test 072 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 959.991034 - 0: The maximum resident set size (KB) = 884644 + 0: The total amount of wall time = 947.700826 + 0: The maximum resident set size (KB) = 882876 Test 072 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/rrfs_conus13km_radar_tten_warm_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_conus13km_radar_tten_warm_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/rrfs_conus13km_radar_tten_warm_debug Checking test 073 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 960.264147 - 0: The maximum resident set size (KB) = 878920 + 0: The total amount of wall time = 949.774875 + 0: The maximum resident set size (KB) = 887212 Test 073 rrfs_conus13km_radar_tten_warm_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/control_CubedSphereGrid_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/control_CubedSphereGrid_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/control_CubedSphereGrid_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/control_CubedSphereGrid_debug Checking test 074 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2870,334 +2870,334 @@ Checking test 074 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 216.750985 - 0: The maximum resident set size (KB) = 736496 + 0: The total amount of wall time = 214.703082 + 0: The maximum resident set size (KB) = 737308 Test 074 control_CubedSphereGrid_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/control_wrtGauss_netcdf_parallel_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/control_wrtGauss_netcdf_parallel_debug Checking test 075 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 200.608201 - 0: The maximum resident set size (KB) = 736616 + 0: The total amount of wall time = 201.744157 + 0: The maximum resident set size (KB) = 736884 Test 075 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/control_stochy_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/control_stochy_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/control_stochy_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/control_stochy_debug Checking test 076 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 225.518707 - 0: The maximum resident set size (KB) = 736160 + 0: The total amount of wall time = 227.451218 + 0: The maximum resident set size (KB) = 742864 Test 076 control_stochy_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/control_lndp_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/control_lndp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/control_lndp_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/control_lndp_debug Checking test 077 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 206.237264 - 0: The maximum resident set size (KB) = 739796 + 0: The total amount of wall time = 202.071652 + 0: The maximum resident set size (KB) = 744468 Test 077 control_lndp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/control_csawmg_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/control_csawmg_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/control_csawmg_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/control_csawmg_debug Checking test 078 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 317.474731 - 0: The maximum resident set size (KB) = 783516 + 0: The total amount of wall time = 311.826048 + 0: The maximum resident set size (KB) = 788200 Test 078 control_csawmg_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/control_csawmgt_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/control_csawmgt_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/control_csawmgt_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/control_csawmgt_debug Checking test 079 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 313.049740 - 0: The maximum resident set size (KB) = 781984 + 0: The total amount of wall time = 307.014777 + 0: The maximum resident set size (KB) = 781876 Test 079 control_csawmgt_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/control_ras_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/control_ras_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/control_ras_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/control_ras_debug Checking test 080 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 204.292338 - 0: The maximum resident set size (KB) = 749188 + 0: The total amount of wall time = 203.640882 + 0: The maximum resident set size (KB) = 751124 Test 080 control_ras_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/control_diag_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/control_diag_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/control_diag_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/control_diag_debug Checking test 081 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 209.365026 - 0: The maximum resident set size (KB) = 791496 + 0: The total amount of wall time = 206.859978 + 0: The maximum resident set size (KB) = 792172 Test 081 control_diag_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/control_debug_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/control_debug_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/control_debug_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/control_debug_p8 Checking test 082 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 228.733393 - 0: The maximum resident set size (KB) = 1554872 + 0: The total amount of wall time = 223.159347 + 0: The maximum resident set size (KB) = 1559940 Test 082 control_debug_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/regional_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/regional_debug Checking test 083 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1284.770599 - 0: The maximum resident set size (KB) = 800752 + 0: The total amount of wall time = 1292.639365 + 0: The maximum resident set size (KB) = 809080 Test 083 regional_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/rap_control_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/rap_control_debug Checking test 084 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 360.962062 - 0: The maximum resident set size (KB) = 1112368 + 0: The total amount of wall time = 361.250007 + 0: The maximum resident set size (KB) = 1112056 Test 084 rap_control_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/hrrr_control_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/hrrr_control_debug Checking test 085 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 360.466001 - 0: The maximum resident set size (KB) = 1108544 + 0: The total amount of wall time = 353.637907 + 0: The maximum resident set size (KB) = 1105016 Test 085 hrrr_control_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/rap_unified_drag_suite_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/rap_unified_drag_suite_debug Checking test 086 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 360.962610 - 0: The maximum resident set size (KB) = 1112652 + 0: The total amount of wall time = 357.957026 + 0: The maximum resident set size (KB) = 1116376 Test 086 rap_unified_drag_suite_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_diag_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/rap_diag_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_diag_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/rap_diag_debug Checking test 087 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 387.847843 - 0: The maximum resident set size (KB) = 1197672 + 0: The total amount of wall time = 381.994170 + 0: The maximum resident set size (KB) = 1197888 Test 087 rap_diag_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/rap_cires_ugwp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_cires_ugwp_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/rap_cires_ugwp_debug Checking test 088 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 367.240216 - 0: The maximum resident set size (KB) = 1108268 + 0: The total amount of wall time = 365.796283 + 0: The maximum resident set size (KB) = 1117456 Test 088 rap_cires_ugwp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/rap_unified_ugwp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_cires_ugwp_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/rap_unified_ugwp_debug Checking test 089 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 371.956105 - 0: The maximum resident set size (KB) = 1111940 + 0: The total amount of wall time = 365.713914 + 0: The maximum resident set size (KB) = 1118600 Test 089 rap_unified_ugwp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_lndp_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/rap_lndp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_lndp_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/rap_lndp_debug Checking test 090 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 362.008521 - 0: The maximum resident set size (KB) = 1120620 + 0: The total amount of wall time = 367.142663 + 0: The maximum resident set size (KB) = 1112212 Test 090 rap_lndp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_flake_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/rap_flake_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_flake_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/rap_flake_debug Checking test 091 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 372.101165 - 0: The maximum resident set size (KB) = 1106636 + 0: The total amount of wall time = 359.569471 + 0: The maximum resident set size (KB) = 1119848 Test 091 rap_flake_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_progcld_thompson_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/rap_progcld_thompson_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_progcld_thompson_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/rap_progcld_thompson_debug Checking test 092 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 364.283007 - 0: The maximum resident set size (KB) = 1111944 + 0: The total amount of wall time = 363.979498 + 0: The maximum resident set size (KB) = 1116432 Test 092 rap_progcld_thompson_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_noah_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/rap_noah_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_noah_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/rap_noah_debug Checking test 093 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 356.515594 - 0: The maximum resident set size (KB) = 1115916 + 0: The total amount of wall time = 354.243125 + 0: The maximum resident set size (KB) = 1114092 Test 093 rap_noah_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_sfcdiff_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/rap_sfcdiff_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_sfcdiff_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/rap_sfcdiff_debug Checking test 094 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 361.839127 - 0: The maximum resident set size (KB) = 1107976 + 0: The total amount of wall time = 357.815788 + 0: The maximum resident set size (KB) = 1117988 Test 094 rap_sfcdiff_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/rap_noah_sfcdiff_cires_ugwp_debug Checking test 095 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 595.045716 - 0: The maximum resident set size (KB) = 1107992 + 0: The total amount of wall time = 587.963660 + 0: The maximum resident set size (KB) = 1115668 Test 095 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_v1beta_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/rrfs_v1beta_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_v1beta_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/rrfs_v1beta_debug Checking test 096 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 362.845892 - 0: The maximum resident set size (KB) = 1107220 + 0: The total amount of wall time = 355.233307 + 0: The maximum resident set size (KB) = 1113068 Test 096 rrfs_v1beta_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/control_wam_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/control_wam_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/control_wam_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/control_wam_debug Checking test 097 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 368.386635 - 0: The maximum resident set size (KB) = 436248 + 0: The total amount of wall time = 367.387059 + 0: The maximum resident set size (KB) = 438996 Test 097 control_wam_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 098 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3208,14 +3208,14 @@ Checking test 098 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 380.904604 - 0: The maximum resident set size (KB) = 981692 + 0: The total amount of wall time = 384.032816 + 0: The maximum resident set size (KB) = 995664 Test 098 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/rap_control_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/rap_control_dyn32_phy32 Checking test 099 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3262,14 +3262,14 @@ Checking test 099 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 500.211505 - 0: The maximum resident set size (KB) = 848752 + 0: The total amount of wall time = 490.445865 + 0: The maximum resident set size (KB) = 849848 Test 099 rap_control_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/hrrr_control_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/hrrr_control_dyn32_phy32 Checking test 100 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3316,14 +3316,14 @@ Checking test 100 hrrr_control_dyn32_phy32 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 = 263.670846 - 0: The maximum resident set size (KB) = 823232 + 0: The total amount of wall time = 262.960115 + 0: The maximum resident set size (KB) = 840144 Test 100 hrrr_control_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/rap_2threads_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/rap_2threads_dyn32_phy32 Checking test 101 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3370,14 +3370,14 @@ Checking test 101 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 490.701243 - 0: The maximum resident set size (KB) = 891300 + 0: The total amount of wall time = 483.508209 + 0: The maximum resident set size (KB) = 883496 Test 101 rap_2threads_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/hrrr_control_2threads_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/hrrr_control_2threads_dyn32_phy32 Checking test 102 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3424,14 +3424,14 @@ Checking test 102 hrrr_control_2threads_dyn32_phy32 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 = 270.333756 - 0: The maximum resident set size (KB) = 888296 + 0: The total amount of wall time = 257.261112 + 0: The maximum resident set size (KB) = 885388 Test 102 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/hrrr_control_decomp_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/hrrr_control_decomp_dyn32_phy32 Checking test 103 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3478,14 +3478,14 @@ Checking test 103 hrrr_control_decomp_dyn32_phy32 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 = 278.355628 - 0: The maximum resident set size (KB) = 821776 + 0: The total amount of wall time = 282.347899 + 0: The maximum resident set size (KB) = 826320 Test 103 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/rap_restart_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/rap_restart_dyn32_phy32 Checking test 104 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3524,14 +3524,14 @@ Checking test 104 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 386.993303 - 0: The maximum resident set size (KB) = 810336 + 0: The total amount of wall time = 369.275322 + 0: The maximum resident set size (KB) = 813032 Test 104 rap_restart_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/hrrr_control_restart_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/hrrr_control_restart_dyn32_phy32 Checking test 105 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3570,14 +3570,14 @@ Checking test 105 hrrr_control_restart_dyn32_phy32 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 = 141.366455 - 0: The maximum resident set size (KB) = 767212 + 0: The total amount of wall time = 134.275788 + 0: The maximum resident set size (KB) = 764968 Test 105 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_dyn64_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/rap_control_dyn64_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_dyn64_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/rap_control_dyn64_phy32 Checking test 106 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3624,81 +3624,81 @@ Checking test 106 rap_control_dyn64_phy32 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 = 343.162267 - 0: The maximum resident set size (KB) = 875856 + 0: The total amount of wall time = 322.491634 + 0: The maximum resident set size (KB) = 863260 Test 106 rap_control_dyn64_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/rap_control_debug_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/rap_control_debug_dyn32_phy32 Checking test 107 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 357.254989 - 0: The maximum resident set size (KB) = 1002264 + 0: The total amount of wall time = 354.757826 + 0: The maximum resident set size (KB) = 999892 Test 107 rap_control_debug_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/hrrr_control_debug_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/hrrr_control_debug_dyn32_phy32 Checking test 108 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 356.462361 - 0: The maximum resident set size (KB) = 992612 + 0: The total amount of wall time = 351.055659 + 0: The maximum resident set size (KB) = 1003904 Test 108 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/rap_control_dyn64_phy32_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/rap_control_dyn64_phy32_debug Checking test 109 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 365.914502 - 0: The maximum resident set size (KB) = 1035452 + 0: The total amount of wall time = 362.779591 + 0: The maximum resident set size (KB) = 1033984 Test 109 rap_control_dyn64_phy32_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_atm -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/hafs_regional_atm +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_atm +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/hafs_regional_atm Checking test 110 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 368.585543 - 0: The maximum resident set size (KB) = 1222940 + 0: The total amount of wall time = 346.577734 + 0: The maximum resident set size (KB) = 1217368 Test 110 hafs_regional_atm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/hafs_regional_atm_thompson_gfdlsf +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/hafs_regional_atm_thompson_gfdlsf Checking test 111 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 433.421757 - 0: The maximum resident set size (KB) = 1584076 + 0: The total amount of wall time = 419.318849 + 0: The maximum resident set size (KB) = 1582968 Test 111 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_atm_ocn -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/hafs_regional_atm_ocn +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_atm_ocn +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/hafs_regional_atm_ocn Checking test 112 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3707,14 +3707,14 @@ Checking test 112 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 544.365247 - 0: The maximum resident set size (KB) = 1293448 + 0: The total amount of wall time = 533.474309 + 0: The maximum resident set size (KB) = 1288508 Test 112 hafs_regional_atm_ocn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_atm_wav -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/hafs_regional_atm_wav +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_atm_wav +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/hafs_regional_atm_wav Checking test 113 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3723,14 +3723,14 @@ Checking test 113 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 945.754384 - 0: The maximum resident set size (KB) = 1316752 + 0: The total amount of wall time = 947.640985 + 0: The maximum resident set size (KB) = 1320352 Test 113 hafs_regional_atm_wav PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/hafs_regional_atm_ocn_wav +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_atm_ocn_wav +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/hafs_regional_atm_ocn_wav Checking test 114 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3741,14 +3741,14 @@ Checking test 114 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 1053.222569 - 0: The maximum resident set size (KB) = 1346944 + 0: The total amount of wall time = 1055.072802 + 0: The maximum resident set size (KB) = 1338704 Test 114 hafs_regional_atm_ocn_wav PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_docn -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/hafs_regional_docn +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_docn +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/hafs_regional_docn Checking test 115 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3756,14 +3756,14 @@ Checking test 115 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 516.529586 - 0: The maximum resident set size (KB) = 1308132 + 0: The total amount of wall time = 530.540681 + 0: The maximum resident set size (KB) = 1307124 Test 115 hafs_regional_docn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_docn_oisst -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/hafs_regional_docn_oisst +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_docn_oisst +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/hafs_regional_docn_oisst Checking test 116 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3771,131 +3771,131 @@ Checking test 116 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 516.888894 - 0: The maximum resident set size (KB) = 1293524 + 0: The total amount of wall time = 523.910318 + 0: The maximum resident set size (KB) = 1292428 Test 116 hafs_regional_docn_oisst PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_datm_cdeps -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/hafs_regional_datm_cdeps +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_datm_cdeps +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/hafs_regional_datm_cdeps Checking test 117 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 1274.230931 - 0: The maximum resident set size (KB) = 976116 + 0: The total amount of wall time = 1254.618264 + 0: The maximum resident set size (KB) = 975260 Test 117 hafs_regional_datm_cdeps PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/datm_cdeps_control_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/datm_cdeps_control_cfsr Checking test 118 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 221.074037 - 0: The maximum resident set size (KB) = 964652 + 0: The total amount of wall time = 218.121850 + 0: The maximum resident set size (KB) = 979888 Test 118 datm_cdeps_control_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/datm_cdeps_restart_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/datm_cdeps_restart_cfsr Checking test 119 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 129.044592 - 0: The maximum resident set size (KB) = 931368 + 0: The total amount of wall time = 128.703850 + 0: The maximum resident set size (KB) = 926292 Test 119 datm_cdeps_restart_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_control_gefs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/datm_cdeps_control_gefs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_control_gefs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/datm_cdeps_control_gefs Checking test 120 datm_cdeps_control_gefs 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 = 216.949267 - 0: The maximum resident set size (KB) = 860552 + 0: The total amount of wall time = 216.348555 + 0: The maximum resident set size (KB) = 874956 Test 120 datm_cdeps_control_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_iau_gefs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/datm_cdeps_iau_gefs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_iau_gefs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/datm_cdeps_iau_gefs Checking test 121 datm_cdeps_iau_gefs 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 = 214.686273 - 0: The maximum resident set size (KB) = 869572 + 0: The total amount of wall time = 219.448951 + 0: The maximum resident set size (KB) = 865172 Test 121 datm_cdeps_iau_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_stochy_gefs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/datm_cdeps_stochy_gefs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_stochy_gefs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/datm_cdeps_stochy_gefs Checking test 122 datm_cdeps_stochy_gefs 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 = 219.381606 - 0: The maximum resident set size (KB) = 865488 + 0: The total amount of wall time = 225.702315 + 0: The maximum resident set size (KB) = 861988 Test 122 datm_cdeps_stochy_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/datm_cdeps_ciceC_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_ciceC_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/datm_cdeps_ciceC_cfsr Checking test 123 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 213.949277 - 0: The maximum resident set size (KB) = 962892 + 0: The total amount of wall time = 217.991459 + 0: The maximum resident set size (KB) = 963744 Test 123 datm_cdeps_ciceC_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/datm_cdeps_bulk_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_bulk_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/datm_cdeps_bulk_cfsr Checking test 124 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 216.959630 - 0: The maximum resident set size (KB) = 961844 + 0: The total amount of wall time = 223.813994 + 0: The maximum resident set size (KB) = 974416 Test 124 datm_cdeps_bulk_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/datm_cdeps_bulk_gefs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_bulk_gefs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/datm_cdeps_bulk_gefs Checking test 125 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 215.851099 - 0: The maximum resident set size (KB) = 863416 + 0: The total amount of wall time = 218.143100 + 0: The maximum resident set size (KB) = 863988 Test 125 datm_cdeps_bulk_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/datm_cdeps_mx025_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_mx025_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/datm_cdeps_mx025_cfsr Checking test 126 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -3904,14 +3904,14 @@ Checking test 126 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 580.133504 - 0: The maximum resident set size (KB) = 767812 + 0: The total amount of wall time = 582.203346 + 0: The maximum resident set size (KB) = 764692 Test 126 datm_cdeps_mx025_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/datm_cdeps_mx025_gefs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_mx025_gefs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/datm_cdeps_mx025_gefs Checking test 127 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -3920,77 +3920,77 @@ Checking test 127 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 574.254150 - 0: The maximum resident set size (KB) = 734684 + 0: The total amount of wall time = 573.809055 + 0: The maximum resident set size (KB) = 738052 Test 127 datm_cdeps_mx025_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/datm_cdeps_multiple_files_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/datm_cdeps_multiple_files_cfsr Checking test 128 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 218.746112 - 0: The maximum resident set size (KB) = 961980 + 0: The total amount of wall time = 220.736567 + 0: The maximum resident set size (KB) = 962048 Test 128 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/datm_cdeps_3072x1536_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/datm_cdeps_3072x1536_cfsr Checking test 129 datm_cdeps_3072x1536_cfsr 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 = 324.788673 - 0: The maximum resident set size (KB) = 2192868 + 0: The total amount of wall time = 314.971624 + 0: The maximum resident set size (KB) = 2201212 Test 129 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_gfs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/datm_cdeps_gfs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_gfs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/datm_cdeps_gfs Checking test 130 datm_cdeps_gfs 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 = 299.949047 - 0: The maximum resident set size (KB) = 2263428 + 0: The total amount of wall time = 320.773949 + 0: The maximum resident set size (KB) = 2248628 Test 130 datm_cdeps_gfs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_debug_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/datm_cdeps_debug_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_debug_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/datm_cdeps_debug_cfsr Checking test 131 datm_cdeps_debug_cfsr 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 = 580.468199 - 0: The maximum resident set size (KB) = 939224 + 0: The total amount of wall time = 578.971884 + 0: The maximum resident set size (KB) = 921164 Test 131 datm_cdeps_debug_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_control_cfsr_faster -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/datm_cdeps_control_cfsr_faster +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_control_cfsr_faster +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/datm_cdeps_control_cfsr_faster Checking test 132 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.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 = 222.706834 - 0: The maximum resident set size (KB) = 965412 + 0: The total amount of wall time = 213.789646 + 0: The maximum resident set size (KB) = 969664 Test 132 datm_cdeps_control_cfsr_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/datm_cdeps_lnd_gswp3 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/datm_cdeps_lnd_gswp3 Checking test 133 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -3999,14 +3999,14 @@ Checking test 133 datm_cdeps_lnd_gswp3 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 = 14.210039 - 0: The maximum resident set size (KB) = 249396 + 0: The total amount of wall time = 22.746846 + 0: The maximum resident set size (KB) = 250568 Test 133 datm_cdeps_lnd_gswp3 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/datm_cdeps_lnd_gswp3_rst +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/datm_cdeps_lnd_gswp3_rst Checking test 134 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4015,14 +4015,14 @@ Checking test 134 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 24.175618 - 0: The maximum resident set size (KB) = 249208 + 0: The total amount of wall time = 19.652435 + 0: The maximum resident set size (KB) = 249616 Test 134 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8_atmlnd_sbs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/control_p8_atmlnd_sbs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8_atmlnd_sbs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/control_p8_atmlnd_sbs Checking test 135 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4107,14 +4107,14 @@ Checking test 135 control_p8_atmlnd_sbs 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 = 289.540332 - 0: The maximum resident set size (KB) = 1590852 + 0: The total amount of wall time = 284.558404 + 0: The maximum resident set size (KB) = 1585576 Test 135 control_p8_atmlnd_sbs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/control_atmwav -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/control_atmwav +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/control_atmwav +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/control_atmwav Checking test 136 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4158,14 +4158,14 @@ Checking test 136 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 124.498307 - 0: The maximum resident set size (KB) = 596652 + 0: The total amount of wall time = 121.261245 + 0: The maximum resident set size (KB) = 597376 Test 136 control_atmwav PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/atmaero_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/atmaero_control_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/atmaero_control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/atmaero_control_p8 Checking test 137 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4209,14 +4209,14 @@ Checking test 137 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 319.452413 - 0: The maximum resident set size (KB) = 1633200 + 0: The total amount of wall time = 311.393019 + 0: The maximum resident set size (KB) = 1647036 Test 137 atmaero_control_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/atmaero_control_p8_rad -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/atmaero_control_p8_rad +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/atmaero_control_p8_rad +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/atmaero_control_p8_rad Checking test 138 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4260,14 +4260,14 @@ Checking test 138 atmaero_control_p8_rad results .... Comparing 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.146278 - 0: The maximum resident set size (KB) = 1672384 + 0: The total amount of wall time = 378.211226 + 0: The maximum resident set size (KB) = 1681504 Test 138 atmaero_control_p8_rad PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/atmaero_control_p8_rad_micro +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/atmaero_control_p8_rad_micro +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/atmaero_control_p8_rad_micro Checking test 139 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4311,14 +4311,14 @@ Checking test 139 atmaero_control_p8_rad_micro results .... Comparing 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.246973 - 0: The maximum resident set size (KB) = 1681932 + 0: The total amount of wall time = 384.640050 + 0: The maximum resident set size (KB) = 1672564 Test 139 atmaero_control_p8_rad_micro PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_atmaq -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/regional_atmaq +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_atmaq +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/regional_atmaq Checking test 140 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4334,14 +4334,14 @@ Checking test 140 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 929.752877 - 0: The maximum resident set size (KB) = 1269436 + 0: The total amount of wall time = 968.339960 + 0: The maximum resident set size (KB) = 1263700 Test 140 regional_atmaq PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_atmaq_faster -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_256608/regional_atmaq_faster +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_atmaq_faster +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/regional_atmaq_faster Checking test 141 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4357,12 +4357,12 @@ Checking test 141 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 843.391545 - 0: The maximum resident set size (KB) = 1248212 + 0: The total amount of wall time = 840.112728 + 0: The maximum resident set size (KB) = 1281232 Test 141 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Tue Mar 21 04:55:31 UTC 2023 -Elapsed time: 03h:16m:21s. Have a nice day! +Thu Mar 23 01:17:09 UTC 2023 +Elapsed time: 03h:10m:08s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index 70ed0616a31..e0bf161174a 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,42 +1,42 @@ -Mon Mar 20 20:32:18 CDT 2023 +Wed Mar 22 14:41:47 CDT 2023 Start Regression test -Compile 001 elapsed time 816 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 001 elapsed time 727 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON Compile 002 elapsed time 740 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 652 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 272 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 251 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 601 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 599 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 787 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 615 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 598 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 615 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 497 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 749 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 204 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 160 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 545 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 554 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 264 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 229 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 623 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 021 elapsed time 224 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 777 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 594 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 024 elapsed time 236 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 146 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 200 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 96 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 525 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 673 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 603 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 550 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 227 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 613 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8_mixedmode -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/cpld_control_p8_mixedmode +Compile 003 elapsed time 695 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 256 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 242 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 616 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 589 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 842 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 637 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 573 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 533 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 490 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 677 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 281 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 220 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 531 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 506 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 180 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 240 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 670 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 021 elapsed time 242 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 764 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 689 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 024 elapsed time 204 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 110 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 204 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 54 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 565 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 530 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 528 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 508 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 184 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 639 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8_mixedmode +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -101,14 +101,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 319.855939 - 0: The maximum resident set size (KB) = 3137096 + 0: The total amount of wall time = 304.297220 + 0: The maximum resident set size (KB) = 3145504 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_gfsv17 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/cpld_control_gfsv17 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_gfsv17 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -172,14 +172,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 244.547852 - 0: The maximum resident set size (KB) = 1727740 + 0: The total amount of wall time = 232.674099 + 0: The maximum resident set size (KB) = 1737036 Test 002 cpld_control_gfsv17 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/cpld_control_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -244,14 +244,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 361.417160 - 0: The maximum resident set size (KB) = 3180800 + 0: The total amount of wall time = 345.186410 + 0: The maximum resident set size (KB) = 3176088 Test 003 cpld_control_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/cpld_restart_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -304,14 +304,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 202.589004 - 0: The maximum resident set size (KB) = 3052092 + 0: The total amount of wall time = 204.536662 + 0: The maximum resident set size (KB) = 3050296 Test 004 cpld_restart_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/cpld_2threads_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -364,14 +364,14 @@ Checking test 005 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 421.187433 - 0: The maximum resident set size (KB) = 3519944 + 0: The total amount of wall time = 410.153526 + 0: The maximum resident set size (KB) = 3516180 Test 005 cpld_2threads_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/cpld_decomp_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/cpld_decomp_p8 Checking test 006 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -424,14 +424,14 @@ Checking test 006 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 361.958999 - 0: The maximum resident set size (KB) = 3160804 + 0: The total amount of wall time = 344.641117 + 0: The maximum resident set size (KB) = 3170964 Test 006 cpld_decomp_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/cpld_mpi_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/cpld_mpi_p8 Checking test 007 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -484,14 +484,14 @@ Checking test 007 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 306.515149 - 0: The maximum resident set size (KB) = 3026268 + 0: The total amount of wall time = 286.984347 + 0: The maximum resident set size (KB) = 3032860 Test 007 cpld_mpi_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_ciceC_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/cpld_control_ciceC_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_ciceC_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/cpld_control_ciceC_p8 Checking test 008 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -556,14 +556,14 @@ Checking test 008 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 365.741000 - 0: The maximum resident set size (KB) = 3174492 + 0: The total amount of wall time = 345.005927 + 0: The maximum resident set size (KB) = 3182316 Test 008 cpld_control_ciceC_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/cpld_control_c192_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_c192_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/cpld_control_c192_p8 Checking test 009 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -616,14 +616,14 @@ Checking test 009 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 674.367997 - 0: The maximum resident set size (KB) = 3178892 + 0: The total amount of wall time = 654.652263 + 0: The maximum resident set size (KB) = 3180928 Test 009 cpld_control_c192_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/cpld_restart_c192_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_c192_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/cpld_restart_c192_p8 Checking test 010 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -676,14 +676,14 @@ Checking test 010 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 461.727173 - 0: The maximum resident set size (KB) = 3159524 + 0: The total amount of wall time = 447.415652 + 0: The maximum resident set size (KB) = 3162392 Test 010 cpld_restart_c192_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_bmark_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/cpld_bmark_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_bmark_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/cpld_bmark_p8 Checking test 011 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -731,14 +731,14 @@ Checking test 011 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 866.129192 - 0: The maximum resident set size (KB) = 4038972 + 0: The total amount of wall time = 882.889051 + 0: The maximum resident set size (KB) = 4040904 Test 011 cpld_bmark_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_bmark_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/cpld_restart_bmark_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_bmark_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/cpld_restart_bmark_p8 Checking test 012 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -786,14 +786,14 @@ Checking test 012 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 551.743860 - 0: The maximum resident set size (KB) = 3970412 + 0: The total amount of wall time = 539.611089 + 0: The maximum resident set size (KB) = 3969996 Test 012 cpld_restart_bmark_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_noaero_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/cpld_control_noaero_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_noaero_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/cpld_control_noaero_p8 Checking test 013 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -857,14 +857,14 @@ Checking test 013 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 255.396024 - 0: The maximum resident set size (KB) = 1715592 + 0: The total amount of wall time = 252.930580 + 0: The maximum resident set size (KB) = 1727052 Test 013 cpld_control_noaero_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_c96_noaero_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/cpld_control_nowave_noaero_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_c96_noaero_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/cpld_control_nowave_noaero_p8 Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -926,14 +926,14 @@ Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 274.054717 - 0: The maximum resident set size (KB) = 1760448 + 0: The total amount of wall time = 259.603417 + 0: The maximum resident set size (KB) = 1763932 Test 014 cpld_control_nowave_noaero_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_debug_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/cpld_debug_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_debug_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/cpld_debug_p8 Checking test 015 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -986,14 +986,14 @@ Checking test 015 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 700.629007 - 0: The maximum resident set size (KB) = 3249684 + 0: The total amount of wall time = 692.848583 + 0: The maximum resident set size (KB) = 3238136 Test 015 cpld_debug_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_debug_noaero_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/cpld_debug_noaero_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_debug_noaero_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/cpld_debug_noaero_p8 Checking test 016 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1045,14 +1045,14 @@ Checking test 016 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 431.892072 - 0: The maximum resident set size (KB) = 1744740 + 0: The total amount of wall time = 421.468469 + 0: The maximum resident set size (KB) = 1750980 Test 016 cpld_debug_noaero_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_noaero_p8_agrid -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/cpld_control_noaero_p8_agrid +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_noaero_p8_agrid +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/cpld_control_noaero_p8_agrid Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1114,14 +1114,14 @@ Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 270.731096 - 0: The maximum resident set size (KB) = 1765212 + 0: The total amount of wall time = 265.989869 + 0: The maximum resident set size (KB) = 1758000 Test 017 cpld_control_noaero_p8_agrid PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_c48 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/cpld_control_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_c48 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/cpld_control_c48 Checking test 018 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1171,14 +1171,14 @@ Checking test 018 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 498.790459 - 0: The maximum resident set size (KB) = 2808528 + 0: The total amount of wall time = 509.006285 + 0: The maximum resident set size (KB) = 2766468 Test 018 cpld_control_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_warmstart_c48 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/cpld_warmstart_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_warmstart_c48 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/cpld_warmstart_c48 Checking test 019 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1228,14 +1228,14 @@ Checking test 019 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 137.551631 - 0: The maximum resident set size (KB) = 2789064 + 0: The total amount of wall time = 138.639623 + 0: The maximum resident set size (KB) = 2801700 Test 019 cpld_warmstart_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_warmstart_c48 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/cpld_restart_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_warmstart_c48 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/cpld_restart_c48 Checking test 020 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1285,14 +1285,14 @@ Checking test 020 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 79.763115 - 0: The maximum resident set size (KB) = 2246828 + 0: The total amount of wall time = 74.666006 + 0: The maximum resident set size (KB) = 2244400 Test 020 cpld_restart_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8_faster -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/cpld_control_p8_faster +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8_faster +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/cpld_control_p8_faster Checking test 021 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1357,14 +1357,14 @@ Checking test 021 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 338.425941 - 0: The maximum resident set size (KB) = 3180484 + 0: The total amount of wall time = 323.298258 + 0: The maximum resident set size (KB) = 3175936 Test 021 cpld_control_p8_faster PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_CubedSphereGrid -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/control_CubedSphereGrid +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_CubedSphereGrid +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/control_CubedSphereGrid Checking test 022 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1391,28 +1391,28 @@ Checking test 022 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 131.259652 - 0: The maximum resident set size (KB) = 632824 + 0: The total amount of wall time = 130.725285 + 0: The maximum resident set size (KB) = 630004 Test 022 control_CubedSphereGrid PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_CubedSphereGrid_parallel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/control_CubedSphereGrid_parallel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_CubedSphereGrid_parallel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/control_CubedSphereGrid_parallel Checking test 023 control_CubedSphereGrid_parallel results .... 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 = 127.487491 - 0: The maximum resident set size (KB) = 629584 + 0: The total amount of wall time = 127.460432 + 0: The maximum resident set size (KB) = 631540 Test 023 control_CubedSphereGrid_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_latlon -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/control_latlon +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_latlon +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/control_latlon Checking test 024 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1423,17 +1423,17 @@ Checking test 024 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.011394 - 0: The maximum resident set size (KB) = 630748 + 0: The total amount of wall time = 132.519883 + 0: The maximum resident set size (KB) = 633544 Test 024 control_latlon PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_wrtGauss_netcdf_parallel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/control_wrtGauss_netcdf_parallel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_wrtGauss_netcdf_parallel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/control_wrtGauss_netcdf_parallel Checking test 025 control_wrtGauss_netcdf_parallel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK @@ -1441,14 +1441,14 @@ Checking test 025 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 138.122874 - 0: The maximum resident set size (KB) = 633072 + 0: The total amount of wall time = 136.228186 + 0: The maximum resident set size (KB) = 631624 Test 025 control_wrtGauss_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_c48 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/control_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_c48 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/control_c48 Checking test 026 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1487,14 +1487,14 @@ Checking test 026 control_c48 results .... Comparing 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.062739 -0: The maximum resident set size (KB) = 819584 +0: The total amount of wall time = 346.695500 +0: The maximum resident set size (KB) = 812396 Test 026 control_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_c192 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/control_c192 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_c192 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/control_c192 Checking test 027 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1505,14 +1505,14 @@ Checking test 027 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 531.877821 - 0: The maximum resident set size (KB) = 763992 + 0: The total amount of wall time = 526.282283 + 0: The maximum resident set size (KB) = 768488 Test 027 control_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_c384 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/control_c384 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_c384 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/control_c384 Checking test 028 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1523,14 +1523,14 @@ Checking test 028 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 594.353328 - 0: The maximum resident set size (KB) = 1223984 + 0: The total amount of wall time = 593.563985 + 0: The maximum resident set size (KB) = 1173428 Test 028 control_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_c384gdas -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/control_c384gdas +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_c384gdas +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/control_c384gdas Checking test 029 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1573,14 +1573,14 @@ Checking test 029 control_c384gdas 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 = 526.678599 - 0: The maximum resident set size (KB) = 1339064 + 0: The total amount of wall time = 527.811075 + 0: The maximum resident set size (KB) = 1332472 Test 029 control_c384gdas PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_stochy -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/control_stochy +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_stochy +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/control_stochy Checking test 030 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1591,28 +1591,28 @@ Checking test 030 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 87.206975 - 0: The maximum resident set size (KB) = 639532 + 0: The total amount of wall time = 87.677655 + 0: The maximum resident set size (KB) = 630688 Test 030 control_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_stochy -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/control_stochy_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_stochy +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/control_stochy_restart Checking test 031 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 47.650448 - 0: The maximum resident set size (KB) = 485628 + 0: The total amount of wall time = 47.557394 + 0: The maximum resident set size (KB) = 488556 Test 031 control_stochy_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_lndp -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/control_lndp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_lndp +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/control_lndp Checking test 032 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1623,14 +1623,14 @@ Checking test 032 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 81.683881 - 0: The maximum resident set size (KB) = 639596 + 0: The total amount of wall time = 80.717982 + 0: The maximum resident set size (KB) = 627968 Test 032 control_lndp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_iovr4 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/control_iovr4 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_iovr4 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/control_iovr4 Checking test 033 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1645,14 +1645,14 @@ Checking test 033 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.624308 - 0: The maximum resident set size (KB) = 631228 + 0: The total amount of wall time = 134.988249 + 0: The maximum resident set size (KB) = 629728 Test 033 control_iovr4 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_iovr5 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/control_iovr5 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_iovr5 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/control_iovr5 Checking test 034 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1667,14 +1667,14 @@ Checking test 034 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.646374 - 0: The maximum resident set size (KB) = 629568 + 0: The total amount of wall time = 135.018848 + 0: The maximum resident set size (KB) = 631392 Test 034 control_iovr5 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/control_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/control_p8 Checking test 035 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1721,14 +1721,14 @@ Checking test 035 control_p8 results .... Comparing 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.035693 - 0: The maximum resident set size (KB) = 1614188 + 0: The total amount of wall time = 166.765760 + 0: The maximum resident set size (KB) = 1616036 Test 035 control_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8_lndp -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/control_p8_lndp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8_lndp +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/control_p8_lndp Checking test 036 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1747,14 +1747,14 @@ Checking test 036 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 310.904044 - 0: The maximum resident set size (KB) = 1594920 + 0: The total amount of wall time = 310.764328 + 0: The maximum resident set size (KB) = 1615324 Test 036 control_p8_lndp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/control_restart_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/control_restart_p8 Checking test 037 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1793,14 +1793,14 @@ Checking test 037 control_restart_p8 results .... Comparing 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.495632 - 0: The maximum resident set size (KB) = 878184 + 0: The total amount of wall time = 87.724285 + 0: The maximum resident set size (KB) = 870872 Test 037 control_restart_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/control_decomp_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/control_decomp_p8 Checking test 038 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1843,14 +1843,14 @@ Checking test 038 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 173.352828 - 0: The maximum resident set size (KB) = 1598136 + 0: The total amount of wall time = 174.233978 + 0: The maximum resident set size (KB) = 1593636 Test 038 control_decomp_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/control_2threads_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/control_2threads_p8 Checking test 039 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1893,14 +1893,14 @@ Checking test 039 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 181.576334 - 0: The maximum resident set size (KB) = 1680960 + 0: The total amount of wall time = 181.883737 + 0: The maximum resident set size (KB) = 1683992 Test 039 control_2threads_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8_rrtmgp -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/control_p8_rrtmgp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8_rrtmgp +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/control_p8_rrtmgp Checking test 040 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1947,14 +1947,14 @@ Checking test 040 control_p8_rrtmgp results .... Comparing 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.508146 - 0: The maximum resident set size (KB) = 1676936 + 0: The total amount of wall time = 226.055752 + 0: The maximum resident set size (KB) = 1667084 Test 040 control_p8_rrtmgp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/merra2_thompson -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/merra2_thompson +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/merra2_thompson +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/merra2_thompson Checking test 041 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2001,14 +2001,14 @@ Checking test 041 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 188.847531 - 0: The maximum resident set size (KB) = 1610980 + 0: The total amount of wall time = 190.418993 + 0: The maximum resident set size (KB) = 1611024 Test 041 merra2_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/regional_control +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/regional_control Checking test 042 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2019,28 +2019,28 @@ Checking test 042 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 294.862531 - 0: The maximum resident set size (KB) = 871212 + 0: The total amount of wall time = 296.427713 + 0: The maximum resident set size (KB) = 873800 Test 042 regional_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/regional_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/regional_restart Checking test 043 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 155.122644 - 0: The maximum resident set size (KB) = 862112 + 0: The total amount of wall time = 150.556017 + 0: The maximum resident set size (KB) = 864488 Test 043 regional_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/regional_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/regional_decomp Checking test 044 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2051,14 +2051,14 @@ Checking test 044 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 315.030280 - 0: The maximum resident set size (KB) = 859388 + 0: The total amount of wall time = 314.124494 + 0: The maximum resident set size (KB) = 863296 Test 044 regional_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/regional_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/regional_2threads Checking test 045 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2069,14 +2069,14 @@ Checking test 045 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 210.308058 - 0: The maximum resident set size (KB) = 840308 + 0: The total amount of wall time = 209.201499 + 0: The maximum resident set size (KB) = 844784 Test 045 regional_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_noquilt -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/regional_noquilt +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_noquilt +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/regional_noquilt Checking test 046 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2084,28 +2084,28 @@ Checking test 046 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 319.253972 - 0: The maximum resident set size (KB) = 861396 + 0: The total amount of wall time = 317.749586 + 0: The maximum resident set size (KB) = 853956 Test 046 regional_noquilt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_netcdf_parallel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/regional_netcdf_parallel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_netcdf_parallel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/regional_netcdf_parallel Checking test 047 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 293.317260 - 0: The maximum resident set size (KB) = 863308 + 0: The total amount of wall time = 291.858706 + 0: The maximum resident set size (KB) = 858600 Test 047 regional_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/regional_2dwrtdecomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/regional_2dwrtdecomp Checking test 048 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2116,14 +2116,14 @@ Checking test 048 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 297.722317 - 0: The maximum resident set size (KB) = 862432 + 0: The total amount of wall time = 295.567871 + 0: The maximum resident set size (KB) = 865236 Test 048 regional_2dwrtdecomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/fv3_regional_wofs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/regional_wofs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/fv3_regional_wofs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/regional_wofs Checking test 049 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2134,14 +2134,14 @@ Checking test 049 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 375.210174 - 0: The maximum resident set size (KB) = 626908 + 0: The total amount of wall time = 375.585048 + 0: The maximum resident set size (KB) = 626212 Test 049 regional_wofs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/rap_control +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/rap_control Checking test 050 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2188,14 +2188,14 @@ Checking test 050 rap_control results .... Comparing 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.678053 - 0: The maximum resident set size (KB) = 1060816 + 0: The total amount of wall time = 457.573561 + 0: The maximum resident set size (KB) = 1058156 Test 050 rap_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_spp_sppt_shum_skeb -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/regional_spp_sppt_shum_skeb +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_spp_sppt_shum_skeb +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/regional_spp_sppt_shum_skeb Checking test 051 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2206,14 +2206,14 @@ Checking test 051 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 332.224530 - 0: The maximum resident set size (KB) = 1185912 + 0: The total amount of wall time = 329.664011 + 0: The maximum resident set size (KB) = 1188812 Test 051 regional_spp_sppt_shum_skeb PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/rap_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/rap_decomp Checking test 052 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2260,14 +2260,14 @@ Checking test 052 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 484.691353 - 0: The maximum resident set size (KB) = 1006516 + 0: The total amount of wall time = 480.610411 + 0: The maximum resident set size (KB) = 1009196 Test 052 rap_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/rap_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/rap_2threads Checking test 053 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2314,14 +2314,14 @@ Checking test 053 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 484.911306 - 0: The maximum resident set size (KB) = 1148608 + 0: The total amount of wall time = 478.593743 + 0: The maximum resident set size (KB) = 1145604 Test 053 rap_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/rap_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/rap_restart Checking test 054 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2360,14 +2360,14 @@ Checking test 054 rap_restart results .... Comparing 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.303912 - 0: The maximum resident set size (KB) = 971348 + 0: The total amount of wall time = 233.238808 + 0: The maximum resident set size (KB) = 974388 Test 054 rap_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_sfcdiff -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/rap_sfcdiff +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_sfcdiff +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/rap_sfcdiff Checking test 055 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2414,14 +2414,14 @@ Checking test 055 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 464.075998 - 0: The maximum resident set size (KB) = 1065156 + 0: The total amount of wall time = 451.807050 + 0: The maximum resident set size (KB) = 1062552 Test 055 rap_sfcdiff PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_sfcdiff -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/rap_sfcdiff_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_sfcdiff +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/rap_sfcdiff_decomp Checking test 056 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2468,14 +2468,14 @@ Checking test 056 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 485.342782 - 0: The maximum resident set size (KB) = 1012480 + 0: The total amount of wall time = 476.796625 + 0: The maximum resident set size (KB) = 1003588 Test 056 rap_sfcdiff_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_sfcdiff -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/rap_sfcdiff_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_sfcdiff +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/rap_sfcdiff_restart Checking test 057 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2514,14 +2514,14 @@ Checking test 057 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 343.566783 - 0: The maximum resident set size (KB) = 989708 + 0: The total amount of wall time = 343.276182 + 0: The maximum resident set size (KB) = 988936 Test 057 rap_sfcdiff_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/hrrr_control +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/hrrr_control Checking test 058 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2568,14 +2568,14 @@ Checking test 058 hrrr_control results .... Comparing 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.439904 - 0: The maximum resident set size (KB) = 1060880 + 0: The total amount of wall time = 435.572053 + 0: The maximum resident set size (KB) = 1065320 Test 058 hrrr_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/hrrr_control_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/hrrr_control_decomp Checking test 059 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2622,14 +2622,14 @@ Checking test 059 hrrr_control_decomp results .... Comparing 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.844448 - 0: The maximum resident set size (KB) = 1003668 + 0: The total amount of wall time = 455.182846 + 0: The maximum resident set size (KB) = 1006088 Test 059 hrrr_control_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/hrrr_control_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/hrrr_control_2threads Checking test 060 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2676,14 +2676,14 @@ Checking test 060 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 463.769097 - 0: The maximum resident set size (KB) = 1133784 + 0: The total amount of wall time = 449.810652 + 0: The maximum resident set size (KB) = 1140876 Test 060 hrrr_control_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/hrrr_control_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/hrrr_control_restart Checking test 061 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2722,14 +2722,14 @@ Checking test 061 hrrr_control_restart results .... Comparing 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.387744 - 0: The maximum resident set size (KB) = 984944 + 0: The total amount of wall time = 330.081654 + 0: The maximum resident set size (KB) = 979004 Test 061 hrrr_control_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_v1beta -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/rrfs_v1beta +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_v1beta +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/rrfs_v1beta Checking test 062 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2776,14 +2776,14 @@ Checking test 062 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 450.853832 - 0: The maximum resident set size (KB) = 1058356 + 0: The total amount of wall time = 446.191659 + 0: The maximum resident set size (KB) = 1058576 Test 062 rrfs_v1beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_v1nssl -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/rrfs_v1nssl +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_v1nssl +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/rrfs_v1nssl Checking test 063 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2798,14 +2798,14 @@ Checking test 063 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 539.312560 - 0: The maximum resident set size (KB) = 692828 + 0: The total amount of wall time = 529.237230 + 0: The maximum resident set size (KB) = 694004 Test 063 rrfs_v1nssl PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/rrfs_v1nssl_nohailnoccn +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/rrfs_v1nssl_nohailnoccn Checking test 064 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2820,14 +2820,14 @@ Checking test 064 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 521.948326 - 0: The maximum resident set size (KB) = 758556 + 0: The total amount of wall time = 514.314937 + 0: The maximum resident set size (KB) = 758316 Test 064 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_conus13km_hrrr_warm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/rrfs_conus13km_hrrr_warm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_conus13km_hrrr_warm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/rrfs_conus13km_hrrr_warm Checking test 065 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2836,14 +2836,14 @@ Checking test 065 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 123.988699 - 0: The maximum resident set size (KB) = 928896 + 0: The total amount of wall time = 124.483516 + 0: The maximum resident set size (KB) = 928708 Test 065 rrfs_conus13km_hrrr_warm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/rrfs_smoke_conus13km_hrrr_warm Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2852,14 +2852,14 @@ Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 139.346178 - 0: The maximum resident set size (KB) = 957716 + 0: The total amount of wall time = 139.294848 + 0: The maximum resident set size (KB) = 961412 Test 066 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/rrfs_conus13km_radar_tten_warm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/rrfs_conus13km_radar_tten_warm Checking test 067 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2868,14 +2868,14 @@ Checking test 067 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 124.024825 - 0: The maximum resident set size (KB) = 936848 + 0: The total amount of wall time = 122.642521 + 0: The maximum resident set size (KB) = 935184 Test 067 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_conus13km_hrrr_warm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/rrfs_conus13km_hrrr_warm_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_conus13km_hrrr_warm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/rrfs_conus13km_hrrr_warm_2threads Checking test 068 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2884,14 +2884,14 @@ Checking test 068 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 84.515441 - 0: The maximum resident set size (KB) = 885544 + 0: The total amount of wall time = 83.607260 + 0: The maximum resident set size (KB) = 800668 Test 068 rrfs_conus13km_hrrr_warm_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/rrfs_conus13km_radar_tten_warm_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/rrfs_conus13km_radar_tten_warm_2threads Checking test 069 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2900,14 +2900,14 @@ Checking test 069 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 84.626056 - 0: The maximum resident set size (KB) = 853312 + 0: The total amount of wall time = 83.275174 + 0: The maximum resident set size (KB) = 851140 Test 069 rrfs_conus13km_radar_tten_warm_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_csawmg -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/control_csawmg +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_csawmg +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/control_csawmg Checking test 070 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2918,14 +2918,14 @@ Checking test 070 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 341.746662 - 0: The maximum resident set size (KB) = 727200 + 0: The total amount of wall time = 343.083112 + 0: The maximum resident set size (KB) = 687872 Test 070 control_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_csawmgt -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/control_csawmgt +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_csawmgt +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/control_csawmgt Checking test 071 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2936,14 +2936,14 @@ Checking test 071 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 341.806155 - 0: The maximum resident set size (KB) = 732604 + 0: The total amount of wall time = 338.282853 + 0: The maximum resident set size (KB) = 735440 Test 071 control_csawmgt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_ras -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/control_ras +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_ras +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/control_ras Checking test 072 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2954,26 +2954,26 @@ Checking test 072 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 182.220714 - 0: The maximum resident set size (KB) = 724020 + 0: The total amount of wall time = 180.621957 + 0: The maximum resident set size (KB) = 717868 Test 072 control_ras PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_wam -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/control_wam +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_wam +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/control_wam Checking test 073 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 112.303751 - 0: The maximum resident set size (KB) = 638644 + 0: The total amount of wall time = 112.072235 + 0: The maximum resident set size (KB) = 643724 Test 073 control_wam PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8_faster -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/control_p8_faster +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8_faster +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/control_p8_faster Checking test 074 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3020,14 +3020,14 @@ Checking test 074 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 155.237801 - 0: The maximum resident set size (KB) = 1610820 + 0: The total amount of wall time = 151.691298 + 0: The maximum resident set size (KB) = 1599372 Test 074 control_p8_faster PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_control_faster -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/regional_control_faster +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_control_faster +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/regional_control_faster Checking test 075 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3038,42 +3038,42 @@ Checking test 075 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 272.385181 - 0: The maximum resident set size (KB) = 871496 + 0: The total amount of wall time = 270.590436 + 0: The maximum resident set size (KB) = 862680 Test 075 regional_control_faster PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/rrfs_conus13km_hrrr_warm_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/rrfs_conus13km_hrrr_warm_debug Checking test 076 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 754.793767 - 0: The maximum resident set size (KB) = 958200 + 0: The total amount of wall time = 745.700610 + 0: The maximum resident set size (KB) = 961900 Test 076 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/rrfs_conus13km_radar_tten_warm_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_conus13km_radar_tten_warm_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/rrfs_conus13km_radar_tten_warm_debug Checking test 077 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 738.674992 - 0: The maximum resident set size (KB) = 970124 + 0: The total amount of wall time = 738.374578 + 0: The maximum resident set size (KB) = 947868 Test 077 rrfs_conus13km_radar_tten_warm_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_CubedSphereGrid_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/control_CubedSphereGrid_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_CubedSphereGrid_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/control_CubedSphereGrid_debug Checking test 078 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3100,334 +3100,334 @@ Checking test 078 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 169.653752 - 0: The maximum resident set size (KB) = 796116 + 0: The total amount of wall time = 170.190671 + 0: The maximum resident set size (KB) = 797404 Test 078 control_CubedSphereGrid_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/control_wrtGauss_netcdf_parallel_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/control_wrtGauss_netcdf_parallel_debug Checking test 079 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK + Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 156.627527 - 0: The maximum resident set size (KB) = 792612 + 0: The total amount of wall time = 159.808753 + 0: The maximum resident set size (KB) = 793368 Test 079 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_stochy_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/control_stochy_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_stochy_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/control_stochy_debug Checking test 080 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 180.793511 - 0: The maximum resident set size (KB) = 798468 + 0: The total amount of wall time = 178.666084 + 0: The maximum resident set size (KB) = 803368 Test 080 control_stochy_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_lndp_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/control_lndp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_lndp_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/control_lndp_debug Checking test 081 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 165.861968 - 0: The maximum resident set size (KB) = 800588 + 0: The total amount of wall time = 162.632614 + 0: The maximum resident set size (KB) = 803556 Test 081 control_lndp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_csawmg_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/control_csawmg_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_csawmg_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/control_csawmg_debug Checking test 082 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 245.710229 - 0: The maximum resident set size (KB) = 848140 + 0: The total amount of wall time = 243.456257 + 0: The maximum resident set size (KB) = 847660 Test 082 control_csawmg_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_csawmgt_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/control_csawmgt_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_csawmgt_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/control_csawmgt_debug Checking test 083 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 243.953229 - 0: The maximum resident set size (KB) = 846476 + 0: The total amount of wall time = 234.702630 + 0: The maximum resident set size (KB) = 845788 Test 083 control_csawmgt_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_ras_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/control_ras_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_ras_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/control_ras_debug Checking test 084 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 164.997008 - 0: The maximum resident set size (KB) = 804320 + 0: The total amount of wall time = 164.482506 + 0: The maximum resident set size (KB) = 809412 Test 084 control_ras_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_diag_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/control_diag_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_diag_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/control_diag_debug Checking test 085 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 167.275747 - 0: The maximum resident set size (KB) = 851716 + 0: The total amount of wall time = 166.974190 + 0: The maximum resident set size (KB) = 852492 Test 085 control_diag_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_debug_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/control_debug_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_debug_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/control_debug_p8 Checking test 086 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 176.452572 - 0: The maximum resident set size (KB) = 1621144 + 0: The total amount of wall time = 177.761419 + 0: The maximum resident set size (KB) = 1625836 Test 086 control_debug_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/regional_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/regional_debug Checking test 087 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 985.240902 - 0: The maximum resident set size (KB) = 891364 + 0: The total amount of wall time = 1017.385826 + 0: The maximum resident set size (KB) = 886468 Test 087 regional_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/rap_control_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/rap_control_debug Checking test 088 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 293.941455 - 0: The maximum resident set size (KB) = 1174864 + 0: The total amount of wall time = 285.128108 + 0: The maximum resident set size (KB) = 1178432 Test 088 rap_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/hrrr_control_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/hrrr_control_debug Checking test 089 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 282.386815 - 0: The maximum resident set size (KB) = 1174540 + 0: The total amount of wall time = 284.051255 + 0: The maximum resident set size (KB) = 1171756 Test 089 hrrr_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/rap_unified_drag_suite_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/rap_unified_drag_suite_debug Checking test 090 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 290.073830 - 0: The maximum resident set size (KB) = 1175380 + 0: The total amount of wall time = 288.254818 + 0: The maximum resident set size (KB) = 1177272 Test 090 rap_unified_drag_suite_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_diag_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/rap_diag_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_diag_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/rap_diag_debug Checking test 091 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 300.352081 - 0: The maximum resident set size (KB) = 1259496 + 0: The total amount of wall time = 296.429051 + 0: The maximum resident set size (KB) = 1259232 Test 091 rap_diag_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/rap_cires_ugwp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_cires_ugwp_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/rap_cires_ugwp_debug Checking test 092 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 292.041364 - 0: The maximum resident set size (KB) = 1185184 + 0: The total amount of wall time = 291.181219 + 0: The maximum resident set size (KB) = 1176028 Test 092 rap_cires_ugwp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/rap_unified_ugwp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_cires_ugwp_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/rap_unified_ugwp_debug Checking test 093 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 294.407681 - 0: The maximum resident set size (KB) = 1173328 + 0: The total amount of wall time = 288.741775 + 0: The maximum resident set size (KB) = 1177272 Test 093 rap_unified_ugwp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_lndp_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/rap_lndp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_lndp_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/rap_lndp_debug Checking test 094 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 307.355846 - 0: The maximum resident set size (KB) = 1176652 + 0: The total amount of wall time = 290.115806 + 0: The maximum resident set size (KB) = 1179804 Test 094 rap_lndp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_flake_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/rap_flake_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_flake_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/rap_flake_debug Checking test 095 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 288.646894 - 0: The maximum resident set size (KB) = 1177060 + 0: The total amount of wall time = 288.173194 + 0: The maximum resident set size (KB) = 1177764 Test 095 rap_flake_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_progcld_thompson_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/rap_progcld_thompson_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_progcld_thompson_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/rap_progcld_thompson_debug Checking test 096 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 286.290998 - 0: The maximum resident set size (KB) = 1174492 + 0: The total amount of wall time = 292.520675 + 0: The maximum resident set size (KB) = 1178924 Test 096 rap_progcld_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_noah_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/rap_noah_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_noah_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/rap_noah_debug Checking test 097 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 282.840916 - 0: The maximum resident set size (KB) = 1177028 + 0: The total amount of wall time = 281.911954 + 0: The maximum resident set size (KB) = 1169868 Test 097 rap_noah_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_sfcdiff_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/rap_sfcdiff_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_sfcdiff_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/rap_sfcdiff_debug Checking test 098 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.513958 - 0: The maximum resident set size (KB) = 1177872 + 0: The total amount of wall time = 286.697144 + 0: The maximum resident set size (KB) = 1172888 Test 098 rap_sfcdiff_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/rap_noah_sfcdiff_cires_ugwp_debug Checking test 099 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 469.382781 - 0: The maximum resident set size (KB) = 1168632 + 0: The total amount of wall time = 472.816733 + 0: The maximum resident set size (KB) = 1170920 Test 099 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_v1beta_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/rrfs_v1beta_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_v1beta_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/rrfs_v1beta_debug Checking test 100 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 284.314012 - 0: The maximum resident set size (KB) = 1176244 + 0: The total amount of wall time = 287.931562 + 0: The maximum resident set size (KB) = 1166164 Test 100 rrfs_v1beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_wam_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/control_wam_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_wam_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/control_wam_debug Checking test 101 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 292.906480 - 0: The maximum resident set size (KB) = 530868 + 0: The total amount of wall time = 293.559737 + 0: The maximum resident set size (KB) = 531496 Test 101 control_wam_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 102 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3438,14 +3438,14 @@ Checking test 102 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 307.777878 - 0: The maximum resident set size (KB) = 1078952 + 0: The total amount of wall time = 316.318491 + 0: The maximum resident set size (KB) = 1076604 Test 102 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/rap_control_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/rap_control_dyn32_phy32 Checking test 103 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3492,14 +3492,14 @@ Checking test 103 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 367.990790 - 0: The maximum resident set size (KB) = 1001176 + 0: The total amount of wall time = 370.362037 + 0: The maximum resident set size (KB) = 1009972 Test 103 rap_control_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/hrrr_control_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/hrrr_control_dyn32_phy32 Checking test 104 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3546,14 +3546,14 @@ Checking test 104 hrrr_control_dyn32_phy32 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 = 196.205707 - 0: The maximum resident set size (KB) = 965116 + 0: The total amount of wall time = 198.966129 + 0: The maximum resident set size (KB) = 963052 Test 104 hrrr_control_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/rap_2threads_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/rap_2threads_dyn32_phy32 Checking test 105 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3600,14 +3600,14 @@ Checking test 105 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 391.783410 - 0: The maximum resident set size (KB) = 1019896 + 0: The total amount of wall time = 389.744388 + 0: The maximum resident set size (KB) = 1030128 Test 105 rap_2threads_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/hrrr_control_2threads_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/hrrr_control_2threads_dyn32_phy32 Checking test 106 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3654,14 +3654,14 @@ Checking test 106 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 208.273007 - 0: The maximum resident set size (KB) = 1012780 + 0: The total amount of wall time = 209.113267 + 0: The maximum resident set size (KB) = 1017104 Test 106 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/hrrr_control_decomp_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/hrrr_control_decomp_dyn32_phy32 Checking test 107 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3708,14 +3708,14 @@ Checking test 107 hrrr_control_decomp_dyn32_phy32 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 = 207.652751 - 0: The maximum resident set size (KB) = 899564 + 0: The total amount of wall time = 206.369100 + 0: The maximum resident set size (KB) = 896872 Test 107 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/rap_restart_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/rap_restart_dyn32_phy32 Checking test 108 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3754,14 +3754,14 @@ Checking test 108 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 280.144149 - 0: The maximum resident set size (KB) = 947940 + 0: The total amount of wall time = 280.661015 + 0: The maximum resident set size (KB) = 947096 Test 108 rap_restart_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/hrrr_control_restart_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/hrrr_control_restart_dyn32_phy32 Checking test 109 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3800,14 +3800,14 @@ Checking test 109 hrrr_control_restart_dyn32_phy32 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 = 103.723023 - 0: The maximum resident set size (KB) = 854208 + 0: The total amount of wall time = 100.467845 + 0: The maximum resident set size (KB) = 856720 Test 109 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_dyn64_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/rap_control_dyn64_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_dyn64_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/rap_control_dyn64_phy32 Checking test 110 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3854,81 +3854,81 @@ Checking test 110 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 240.046127 - 0: The maximum resident set size (KB) = 965580 + 0: The total amount of wall time = 242.529586 + 0: The maximum resident set size (KB) = 968236 Test 110 rap_control_dyn64_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_debug_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/rap_control_debug_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_debug_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/rap_control_debug_dyn32_phy32 Checking test 111 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 287.058119 - 0: The maximum resident set size (KB) = 1065328 + 0: The total amount of wall time = 285.962428 + 0: The maximum resident set size (KB) = 1061672 Test 111 rap_control_debug_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/hrrr_control_debug_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/hrrr_control_debug_dyn32_phy32 Checking test 112 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 284.661294 - 0: The maximum resident set size (KB) = 1061660 + 0: The total amount of wall time = 282.339710 + 0: The maximum resident set size (KB) = 1052544 Test 112 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_debug_dyn64_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/rap_control_dyn64_phy32_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_debug_dyn64_phy32 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/rap_control_dyn64_phy32_debug Checking test 113 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 296.261488 - 0: The maximum resident set size (KB) = 1104016 + 0: The total amount of wall time = 291.325044 + 0: The maximum resident set size (KB) = 1108236 Test 113 rap_control_dyn64_phy32_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/hafs_regional_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_atm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/hafs_regional_atm Checking test 114 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 267.718781 - 0: The maximum resident set size (KB) = 1053968 + 0: The total amount of wall time = 272.752183 + 0: The maximum resident set size (KB) = 1065848 Test 114 hafs_regional_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/hafs_regional_atm_thompson_gfdlsf +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/hafs_regional_atm_thompson_gfdlsf Checking test 115 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 440.306895 - 0: The maximum resident set size (KB) = 1424236 + 0: The total amount of wall time = 415.880521 + 0: The maximum resident set size (KB) = 1409532 Test 115 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_atm_ocn -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/hafs_regional_atm_ocn +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_atm_ocn +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/hafs_regional_atm_ocn Checking test 116 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3937,14 +3937,14 @@ Checking test 116 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 376.743364 - 0: The maximum resident set size (KB) = 1228076 + 0: The total amount of wall time = 381.918229 + 0: The maximum resident set size (KB) = 1223608 Test 116 hafs_regional_atm_ocn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_atm_wav -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/hafs_regional_atm_wav +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_atm_wav +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/hafs_regional_atm_wav Checking test 117 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3953,14 +3953,14 @@ Checking test 117 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 724.520241 - 0: The maximum resident set size (KB) = 1253452 + 0: The total amount of wall time = 731.666127 + 0: The maximum resident set size (KB) = 1257336 Test 117 hafs_regional_atm_wav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_atm_ocn_wav -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/hafs_regional_atm_ocn_wav +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_atm_ocn_wav +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/hafs_regional_atm_ocn_wav Checking test 118 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3971,28 +3971,28 @@ Checking test 118 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 829.605744 - 0: The maximum resident set size (KB) = 1276740 + 0: The total amount of wall time = 823.852544 + 0: The maximum resident set size (KB) = 1277840 Test 118 hafs_regional_atm_ocn_wav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_1nest_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/hafs_regional_1nest_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_1nest_atm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/hafs_regional_1nest_atm Checking test 119 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 366.711550 - 0: The maximum resident set size (KB) = 513072 + 0: The total amount of wall time = 369.443601 + 0: The maximum resident set size (KB) = 513608 Test 119 hafs_regional_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/hafs_regional_telescopic_2nests_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/hafs_regional_telescopic_2nests_atm Checking test 120 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4001,28 +4001,28 @@ Checking test 120 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 424.103560 - 0: The maximum resident set size (KB) = 513808 + 0: The total amount of wall time = 416.945566 + 0: The maximum resident set size (KB) = 518712 Test 120 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_global_1nest_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/hafs_global_1nest_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_global_1nest_atm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/hafs_global_1nest_atm Checking test 121 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 174.276508 - 0: The maximum resident set size (KB) = 351008 + 0: The total amount of wall time = 175.426560 + 0: The maximum resident set size (KB) = 351568 Test 121 hafs_global_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_global_multiple_4nests_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/hafs_global_multiple_4nests_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_global_multiple_4nests_atm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/hafs_global_multiple_4nests_atm Checking test 122 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4040,14 +4040,14 @@ Checking test 122 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 484.121401 - 0: The maximum resident set size (KB) = 428372 + 0: The total amount of wall time = 475.379854 + 0: The maximum resident set size (KB) = 427860 Test 122 hafs_global_multiple_4nests_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/hafs_regional_specified_moving_1nest_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/hafs_regional_specified_moving_1nest_atm Checking test 123 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4056,28 +4056,28 @@ Checking test 123 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 230.625710 - 0: The maximum resident set size (KB) = 521272 + 0: The total amount of wall time = 227.566425 + 0: The maximum resident set size (KB) = 517256 Test 123 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/hafs_regional_storm_following_1nest_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/hafs_regional_storm_following_1nest_atm Checking test 124 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 219.429458 - 0: The maximum resident set size (KB) = 522484 + 0: The total amount of wall time = 215.958639 + 0: The maximum resident set size (KB) = 519144 Test 124 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/hafs_regional_storm_following_1nest_atm_ocn Checking test 125 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4086,42 +4086,42 @@ Checking test 125 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 289.240458 - 0: The maximum resident set size (KB) = 556668 + 0: The total amount of wall time = 287.851400 + 0: The maximum resident set size (KB) = 556912 Test 125 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_global_storm_following_1nest_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/hafs_global_storm_following_1nest_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_global_storm_following_1nest_atm +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/hafs_global_storm_following_1nest_atm Checking test 126 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 68.810691 - 0: The maximum resident set size (KB) = 369560 + 0: The total amount of wall time = 67.910766 + 0: The maximum resident set size (KB) = 367332 Test 126 hafs_global_storm_following_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 127 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 802.268897 - 0: The maximum resident set size (KB) = 584976 + 0: The total amount of wall time = 812.013945 + 0: The maximum resident set size (KB) = 579248 Test 127 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 128 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4132,14 +4132,14 @@ Checking test 128 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 584.879091 - 0: The maximum resident set size (KB) = 619968 + 0: The total amount of wall time = 579.992464 + 0: The maximum resident set size (KB) = 622596 Test 128 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_docn -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/hafs_regional_docn +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_docn +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/hafs_regional_docn Checking test 129 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4147,14 +4147,14 @@ Checking test 129 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 365.142869 - 0: The maximum resident set size (KB) = 1236396 + 0: The total amount of wall time = 361.027574 + 0: The maximum resident set size (KB) = 1234576 Test 129 hafs_regional_docn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_docn_oisst -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/hafs_regional_docn_oisst +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_docn_oisst +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/hafs_regional_docn_oisst Checking test 130 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4162,131 +4162,131 @@ Checking test 130 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 360.089610 - 0: The maximum resident set size (KB) = 1215492 + 0: The total amount of wall time = 357.684094 + 0: The maximum resident set size (KB) = 1223332 Test 130 hafs_regional_docn_oisst PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_datm_cdeps -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/hafs_regional_datm_cdeps +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_datm_cdeps +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/hafs_regional_datm_cdeps Checking test 131 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 934.359213 - 0: The maximum resident set size (KB) = 1038496 + 0: The total amount of wall time = 936.652064 + 0: The maximum resident set size (KB) = 1039356 Test 131 hafs_regional_datm_cdeps PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/datm_cdeps_control_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/datm_cdeps_control_cfsr Checking test 132 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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.800773 - 0: The maximum resident set size (KB) = 1065188 + 0: The total amount of wall time = 148.434629 + 0: The maximum resident set size (KB) = 1072776 Test 132 datm_cdeps_control_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/datm_cdeps_restart_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/datm_cdeps_restart_cfsr Checking test 133 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 120.141635 - 0: The maximum resident set size (KB) = 1023140 + 0: The total amount of wall time = 93.020979 + 0: The maximum resident set size (KB) = 1039276 Test 133 datm_cdeps_restart_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_control_gefs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/datm_cdeps_control_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_control_gefs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/datm_cdeps_control_gefs Checking test 134 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 142.077504 - 0: The maximum resident set size (KB) = 964212 + 0: The total amount of wall time = 142.235232 + 0: The maximum resident set size (KB) = 956156 Test 134 datm_cdeps_control_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_iau_gefs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/datm_cdeps_iau_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_iau_gefs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/datm_cdeps_iau_gefs Checking test 135 datm_cdeps_iau_gefs 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.551770 - 0: The maximum resident set size (KB) = 964868 + 0: The total amount of wall time = 143.961659 + 0: The maximum resident set size (KB) = 965272 Test 135 datm_cdeps_iau_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_stochy_gefs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/datm_cdeps_stochy_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_stochy_gefs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/datm_cdeps_stochy_gefs Checking test 136 datm_cdeps_stochy_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.152743 - 0: The maximum resident set size (KB) = 969500 + 0: The total amount of wall time = 148.076000 + 0: The maximum resident set size (KB) = 967784 Test 136 datm_cdeps_stochy_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_ciceC_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/datm_cdeps_ciceC_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_ciceC_cfsr +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/datm_cdeps_ciceC_cfsr Checking test 137 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.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.488525 - 0: The maximum resident set size (KB) = 1063084 + 0: The total amount of wall time = 144.832524 + 0: The maximum resident set size (KB) = 1060312 Test 137 datm_cdeps_ciceC_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_bulk_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/datm_cdeps_bulk_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_bulk_cfsr +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/datm_cdeps_bulk_cfsr Checking test 138 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 165.047412 - 0: The maximum resident set size (KB) = 1067188 + 0: The total amount of wall time = 147.353088 + 0: The maximum resident set size (KB) = 1057888 Test 138 datm_cdeps_bulk_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_bulk_gefs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/datm_cdeps_bulk_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_bulk_gefs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/datm_cdeps_bulk_gefs Checking test 139 datm_cdeps_bulk_gefs 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.801203 - 0: The maximum resident set size (KB) = 964232 + 0: The total amount of wall time = 139.897000 + 0: The maximum resident set size (KB) = 963336 Test 139 datm_cdeps_bulk_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_mx025_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/datm_cdeps_mx025_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_mx025_cfsr +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/datm_cdeps_mx025_cfsr Checking test 140 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4295,14 +4295,14 @@ Checking test 140 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 475.270001 - 0: The maximum resident set size (KB) = 879280 + 0: The total amount of wall time = 441.303227 + 0: The maximum resident set size (KB) = 877620 Test 140 datm_cdeps_mx025_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_mx025_gefs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/datm_cdeps_mx025_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_mx025_gefs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/datm_cdeps_mx025_gefs Checking test 141 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4311,77 +4311,77 @@ Checking test 141 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 438.130921 - 0: The maximum resident set size (KB) = 926340 + 0: The total amount of wall time = 444.406635 + 0: The maximum resident set size (KB) = 930804 Test 141 datm_cdeps_mx025_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/datm_cdeps_multiple_files_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/datm_cdeps_multiple_files_cfsr Checking test 142 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 152.688194 - 0: The maximum resident set size (KB) = 1051824 + 0: The total amount of wall time = 150.313074 + 0: The maximum resident set size (KB) = 1054708 Test 142 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/datm_cdeps_3072x1536_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/datm_cdeps_3072x1536_cfsr Checking test 143 datm_cdeps_3072x1536_cfsr 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 = 206.620337 - 0: The maximum resident set size (KB) = 2309712 + 0: The total amount of wall time = 194.416697 + 0: The maximum resident set size (KB) = 2305668 Test 143 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_gfs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/datm_cdeps_gfs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_gfs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/datm_cdeps_gfs Checking test 144 datm_cdeps_gfs 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 = 205.970956 - 0: The maximum resident set size (KB) = 2301096 + 0: The total amount of wall time = 204.628791 + 0: The maximum resident set size (KB) = 2360416 Test 144 datm_cdeps_gfs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_debug_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/datm_cdeps_debug_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_debug_cfsr +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/datm_cdeps_debug_cfsr Checking test 145 datm_cdeps_debug_cfsr 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 = 447.175223 - 0: The maximum resident set size (KB) = 1014164 + 0: The total amount of wall time = 437.398953 + 0: The maximum resident set size (KB) = 993276 Test 145 datm_cdeps_debug_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_control_cfsr_faster -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/datm_cdeps_control_cfsr_faster +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_control_cfsr_faster +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/datm_cdeps_control_cfsr_faster Checking test 146 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.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.724785 - 0: The maximum resident set size (KB) = 1082356 + 0: The total amount of wall time = 146.486329 + 0: The maximum resident set size (KB) = 1063156 Test 146 datm_cdeps_control_cfsr_faster PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_lnd_gswp3 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/datm_cdeps_lnd_gswp3 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_lnd_gswp3 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/datm_cdeps_lnd_gswp3 Checking test 147 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4390,14 +4390,14 @@ Checking test 147 datm_cdeps_lnd_gswp3 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 = 15.342885 - 0: The maximum resident set size (KB) = 263744 + 0: The total amount of wall time = 7.063950 + 0: The maximum resident set size (KB) = 259400 Test 147 datm_cdeps_lnd_gswp3 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/datm_cdeps_lnd_gswp3 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/datm_cdeps_lnd_gswp3_rst +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_lnd_gswp3 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/datm_cdeps_lnd_gswp3_rst Checking test 148 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4406,14 +4406,14 @@ Checking test 148 datm_cdeps_lnd_gswp3_rst 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.891944 - 0: The maximum resident set size (KB) = 290872 + 0: The total amount of wall time = 12.997339 + 0: The maximum resident set size (KB) = 274752 Test 148 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8_atmlnd_sbs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/control_p8_atmlnd_sbs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8_atmlnd_sbs +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/control_p8_atmlnd_sbs Checking test 149 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4498,14 +4498,14 @@ Checking test 149 control_p8_atmlnd_sbs 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 = 210.789822 - 0: The maximum resident set size (KB) = 1620340 + 0: The total amount of wall time = 203.655393 + 0: The maximum resident set size (KB) = 1622820 Test 149 control_p8_atmlnd_sbs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/control_atmwav -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/control_atmwav +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_atmwav +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/control_atmwav Checking test 150 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4549,14 +4549,14 @@ Checking test 150 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 94.547879 - 0: The maximum resident set size (KB) = 658564 + 0: The total amount of wall time = 86.845617 + 0: The maximum resident set size (KB) = 660920 Test 150 control_atmwav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/atmaero_control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/atmaero_control_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/atmaero_control_p8 +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/atmaero_control_p8 Checking test 151 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4600,14 +4600,14 @@ Checking test 151 atmaero_control_p8 results .... Comparing 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.235326 - 0: The maximum resident set size (KB) = 2972924 + 0: The total amount of wall time = 233.304339 + 0: The maximum resident set size (KB) = 2977308 Test 151 atmaero_control_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/atmaero_control_p8_rad -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/atmaero_control_p8_rad +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/atmaero_control_p8_rad +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/atmaero_control_p8_rad Checking test 152 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4651,14 +4651,14 @@ Checking test 152 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 281.236645 - 0: The maximum resident set size (KB) = 3044204 + 0: The total amount of wall time = 280.359579 + 0: The maximum resident set size (KB) = 3043052 Test 152 atmaero_control_p8_rad PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/atmaero_control_p8_rad_micro -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/atmaero_control_p8_rad_micro +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/atmaero_control_p8_rad_micro +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/atmaero_control_p8_rad_micro Checking test 153 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4702,14 +4702,14 @@ Checking test 153 atmaero_control_p8_rad_micro results .... Comparing 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.623619 - 0: The maximum resident set size (KB) = 3055124 + 0: The total amount of wall time = 291.926110 + 0: The maximum resident set size (KB) = 3059864 Test 153 atmaero_control_p8_rad_micro PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_atmaq -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/regional_atmaq +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_atmaq +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/regional_atmaq Checking test 154 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4725,14 +4725,14 @@ Checking test 154 regional_atmaq 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.635444 - 0: The maximum resident set size (KB) = 1481036 + 0: The total amount of wall time = 621.783572 + 0: The maximum resident set size (KB) = 1475232 Test 154 regional_atmaq PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_atmaq_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/regional_atmaq_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_atmaq_debug +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/regional_atmaq_debug Checking test 155 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4746,14 +4746,14 @@ Checking test 155 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1263.847090 - 0: The maximum resident set size (KB) = 1433408 + 0: The total amount of wall time = 1255.762462 + 0: The maximum resident set size (KB) = 1409956 Test 155 regional_atmaq_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_atmaq_faster -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_149696/regional_atmaq_faster +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_atmaq_faster +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/regional_atmaq_faster Checking test 156 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4769,12 +4769,12 @@ Checking test 156 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 543.705939 - 0: The maximum resident set size (KB) = 1485048 + 0: The total amount of wall time = 541.978283 + 0: The maximum resident set size (KB) = 1476900 Test 156 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Mon Mar 20 21:47:07 CDT 2023 -Elapsed time: 01h:14m:50s. Have a nice day! +Wed Mar 22 16:08:47 CDT 2023 +Elapsed time: 01h:27m:00s. Have a nice day! diff --git a/tests/RegressionTests_wcoss2.intel.log b/tests/RegressionTests_wcoss2.intel.log index aaf03e8c17b..9b2b169f0ab 100644 --- a/tests/RegressionTests_wcoss2.intel.log +++ b/tests/RegressionTests_wcoss2.intel.log @@ -1,34 +1,35 @@ -Tue Mar 21 01:22:34 UTC 2023 +Thu Mar 23 17:33:10 UTC 2023 Start Regression test -Compile 001 elapsed time 729 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 1357 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 1134 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 738 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 005 elapsed time 497 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 660 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 1383 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 008 elapsed time 715 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 967 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 1259 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 1713 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 310 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 013 elapsed time 361 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 831 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 015 elapsed time 586 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 367 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 017 elapsed time 829 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 703 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 019 elapsed time 558 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 898 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 504 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 022 elapsed time 695 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 988 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 024 elapsed time 478 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 025 elapsed time 578 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8_mixedmode -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/cpld_control_p8_mixedmode +Test 004 compile FAIL + +Compile 001 elapsed time 1002 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1102 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 1230 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 005 elapsed time 925 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 665 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 518 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 484 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 939 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 436 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 617 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 708 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 699 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 014 elapsed time 1248 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 590 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 555 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 017 elapsed time 397 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 600 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 019 elapsed time 401 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 728 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 1174 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 022 elapsed time 724 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 787 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 024 elapsed time 393 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 025 elapsed time 639 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8_mixedmode +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -93,14 +94,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 375.013087 -The maximum resident set size (KB) = 2952660 +The total amount of wall time = 365.410254 +The maximum resident set size (KB) = 2950692 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/cpld_control_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/cpld_control_p8 Checking test 002 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -165,14 +166,14 @@ Checking test 002 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 400.958166 -The maximum resident set size (KB) = 2982100 +The total amount of wall time = 386.087882 +The maximum resident set size (KB) = 2979280 Test 002 cpld_control_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/cpld_restart_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/cpld_restart_p8 Checking test 003 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -225,14 +226,14 @@ Checking test 003 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 245.692816 -The maximum resident set size (KB) = 2866704 +The total amount of wall time = 236.652137 +The maximum resident set size (KB) = 2867928 Test 003 cpld_restart_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/cpld_2threads_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/cpld_2threads_p8 Checking test 004 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -285,14 +286,14 @@ Checking test 004 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 389.421159 -The maximum resident set size (KB) = 3284872 +The total amount of wall time = 369.938484 +The maximum resident set size (KB) = 3281156 Test 004 cpld_2threads_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/cpld_decomp_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/cpld_decomp_p8 Checking test 005 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -345,14 +346,14 @@ Checking test 005 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 395.965297 -The maximum resident set size (KB) = 2979460 +The total amount of wall time = 379.672705 +The maximum resident set size (KB) = 2977824 Test 005 cpld_decomp_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/cpld_mpi_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/cpld_mpi_p8 Checking test 006 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -405,14 +406,14 @@ Checking test 006 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 337.604785 -The maximum resident set size (KB) = 2908564 +The total amount of wall time = 318.121711 +The maximum resident set size (KB) = 2912924 Test 006 cpld_mpi_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_ciceC_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/cpld_control_ciceC_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_ciceC_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/cpld_control_ciceC_p8 Checking test 007 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -477,14 +478,14 @@ Checking test 007 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 407.055360 -The maximum resident set size (KB) = 2980488 +The total amount of wall time = 383.257301 +The maximum resident set size (KB) = 2978524 Test 007 cpld_control_ciceC_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_bmark_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/cpld_bmark_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_bmark_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/cpld_bmark_p8 Checking test 008 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -532,14 +533,14 @@ Checking test 008 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 964.790523 -The maximum resident set size (KB) = 3913560 +The total amount of wall time = 946.674619 +The maximum resident set size (KB) = 3921116 Test 008 cpld_bmark_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_bmark_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/cpld_restart_bmark_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_bmark_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/cpld_restart_bmark_p8 Checking test 009 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -587,14 +588,14 @@ Checking test 009 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 685.902177 -The maximum resident set size (KB) = 3890912 +The total amount of wall time = 645.238670 +The maximum resident set size (KB) = 3885608 Test 009 cpld_restart_bmark_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/cpld_control_noaero_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/cpld_control_noaero_p8 Checking test 010 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -658,14 +659,14 @@ Checking test 010 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 305.329785 -The maximum resident set size (KB) = 1578900 +The total amount of wall time = 286.035420 +The maximum resident set size (KB) = 1581520 Test 010 cpld_control_noaero_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/cpld_control_nowave_noaero_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_c96_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/cpld_control_nowave_noaero_p8 Checking test 011 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -727,83 +728,14 @@ Checking test 011 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 318.924167 -The maximum resident set size (KB) = 1631132 +The total amount of wall time = 305.748980 +The maximum resident set size (KB) = 1627332 Test 011 cpld_control_nowave_noaero_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/cpld_control_noaero_p8_agrid -Checking test 012 cpld_control_noaero_p8_agrid results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - -The total amount of wall time = 338.834932 -The maximum resident set size (KB) = 1632588 - -Test 012 cpld_control_noaero_p8_agrid PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/cpld_control_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/cpld_control_c48 Checking test 013 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -853,14 +785,14 @@ Checking test 013 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 444.829953 -The maximum resident set size (KB) = 2629616 +The total amount of wall time = 437.181430 +The maximum resident set size (KB) = 2630688 Test 013 cpld_control_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/cpld_warmstart_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/cpld_warmstart_c48 Checking test 014 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -910,14 +842,14 @@ Checking test 014 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 134.259991 -The maximum resident set size (KB) = 2651176 +The total amount of wall time = 132.575150 +The maximum resident set size (KB) = 2650672 Test 014 cpld_warmstart_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/cpld_restart_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/cpld_restart_c48 Checking test 015 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -967,14 +899,14 @@ Checking test 015 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 90.387735 -The maximum resident set size (KB) = 2069552 +The total amount of wall time = 67.895665 +The maximum resident set size (KB) = 2069036 Test 015 cpld_restart_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/cpld_control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/cpld_control_p8_faster +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/cpld_control_p8_faster Checking test 016 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1039,14 +971,14 @@ Checking test 016 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 393.344380 -The maximum resident set size (KB) = 2979584 +The total amount of wall time = 386.661243 +The maximum resident set size (KB) = 2981376 Test 016 cpld_control_p8_faster PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_CubedSphereGrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/control_CubedSphereGrid +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_CubedSphereGrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/control_CubedSphereGrid Checking test 017 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1073,14 +1005,14 @@ Checking test 017 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 130.595602 -The maximum resident set size (KB) = 515792 +The total amount of wall time = 130.692146 +The maximum resident set size (KB) = 520388 Test 017 control_CubedSphereGrid PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_latlon -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/control_latlon +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_latlon +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/control_latlon Checking test 018 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1091,14 +1023,14 @@ Checking test 018 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 133.493886 -The maximum resident set size (KB) = 520752 +The total amount of wall time = 133.821637 +The maximum resident set size (KB) = 515852 Test 018 control_latlon PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/control_wrtGauss_netcdf_parallel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/control_wrtGauss_netcdf_parallel Checking test 019 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1109,14 +1041,14 @@ Checking test 019 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 136.883395 -The maximum resident set size (KB) = 516936 +The total amount of wall time = 135.157050 +The maximum resident set size (KB) = 515484 Test 019 control_wrtGauss_netcdf_parallel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/control_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/control_c48 Checking test 020 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1155,14 +1087,14 @@ Checking test 020 control_c48 results .... 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.824094 -The maximum resident set size (KB) = 672692 +The total amount of wall time = 326.950815 +The maximum resident set size (KB) = 677648 Test 020 control_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_c192 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/control_c192 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_c192 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/control_c192 Checking test 021 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1173,14 +1105,14 @@ Checking test 021 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 530.687155 -The maximum resident set size (KB) = 617200 +The total amount of wall time = 531.258359 +The maximum resident set size (KB) = 617160 Test 021 control_c192 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_c384 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/control_c384 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_c384 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/control_c384 Checking test 022 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1191,14 +1123,14 @@ Checking test 022 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 592.985250 -The maximum resident set size (KB) = 911584 +The total amount of wall time = 588.140258 +The maximum resident set size (KB) = 911196 Test 022 control_c384 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_c384gdas -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/control_c384gdas +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_c384gdas +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/control_c384gdas Checking test 023 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1241,14 +1173,14 @@ Checking test 023 control_c384gdas 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 = 510.845300 -The maximum resident set size (KB) = 1043676 +The total amount of wall time = 508.639931 +The maximum resident set size (KB) = 1043644 Test 023 control_c384gdas PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/control_stochy +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/control_stochy Checking test 024 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1259,28 +1191,28 @@ Checking test 024 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 91.218955 -The maximum resident set size (KB) = 522740 +The total amount of wall time = 90.408834 +The maximum resident set size (KB) = 521936 Test 024 control_stochy PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/control_stochy_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/control_stochy_restart Checking test 025 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 50.018320 -The maximum resident set size (KB) = 295088 +The total amount of wall time = 49.032811 +The maximum resident set size (KB) = 290312 Test 025 control_stochy_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/control_lndp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/control_lndp Checking test 026 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1291,14 +1223,14 @@ Checking test 026 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 84.559148 -The maximum resident set size (KB) = 521300 +The total amount of wall time = 83.927082 +The maximum resident set size (KB) = 519168 Test 026 control_lndp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_iovr4 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/control_iovr4 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_iovr4 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/control_iovr4 Checking test 027 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1313,14 +1245,14 @@ Checking test 027 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 136.971471 -The maximum resident set size (KB) = 519632 +The total amount of wall time = 136.456574 +The maximum resident set size (KB) = 515884 Test 027 control_iovr4 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_iovr5 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/control_iovr5 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_iovr5 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/control_iovr5 Checking test 028 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1335,14 +1267,14 @@ Checking test 028 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 136.381664 -The maximum resident set size (KB) = 518968 +The total amount of wall time = 136.974369 +The maximum resident set size (KB) = 518560 Test 028 control_iovr5 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/control_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/control_p8 Checking test 029 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1389,14 +1321,14 @@ Checking test 029 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 185.800970 -The maximum resident set size (KB) = 1488844 +The total amount of wall time = 179.734743 +The maximum resident set size (KB) = 1487960 Test 029 control_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/control_p8_lndp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/control_p8_lndp Checking test 030 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1415,14 +1347,14 @@ Checking test 030 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 331.163264 -The maximum resident set size (KB) = 1493400 +The total amount of wall time = 323.220733 +The maximum resident set size (KB) = 1488152 Test 030 control_p8_lndp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/control_restart_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/control_restart_p8 Checking test 031 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1461,14 +1393,14 @@ Checking test 031 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 106.184008 -The maximum resident set size (KB) = 662048 +The total amount of wall time = 99.680960 +The maximum resident set size (KB) = 657844 Test 031 control_restart_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/control_decomp_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/control_decomp_p8 Checking test 032 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1511,14 +1443,14 @@ Checking test 032 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 187.958185 -The maximum resident set size (KB) = 1485628 +The total amount of wall time = 183.203767 +The maximum resident set size (KB) = 1479788 Test 032 control_decomp_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/control_2threads_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/control_2threads_p8 Checking test 033 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1561,14 +1493,14 @@ Checking test 033 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 163.839547 -The maximum resident set size (KB) = 1567332 +The total amount of wall time = 160.157102 +The maximum resident set size (KB) = 1570804 Test 033 control_2threads_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8_rrtmgp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/control_p8_rrtmgp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8_rrtmgp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/control_p8_rrtmgp Checking test 034 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1615,14 +1547,14 @@ Checking test 034 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 241.971082 -The maximum resident set size (KB) = 1558924 +The total amount of wall time = 235.812874 +The maximum resident set size (KB) = 1548064 Test 034 control_p8_rrtmgp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/merra2_thompson -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/merra2_thompson +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/merra2_thompson +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/merra2_thompson Checking test 035 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1669,14 +1601,14 @@ Checking test 035 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 212.079673 -The maximum resident set size (KB) = 1498772 +The total amount of wall time = 204.836562 +The maximum resident set size (KB) = 1492192 Test 035 merra2_thompson PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/regional_control +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/regional_control Checking test 036 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1687,28 +1619,28 @@ Checking test 036 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 301.971609 -The maximum resident set size (KB) = 656532 +The total amount of wall time = 286.900414 +The maximum resident set size (KB) = 655056 Test 036 regional_control PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/regional_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/regional_restart Checking test 037 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 181.221607 -The maximum resident set size (KB) = 652416 +The total amount of wall time = 166.186780 +The maximum resident set size (KB) = 650160 Test 037 regional_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/regional_decomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/regional_decomp Checking test 038 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1719,14 +1651,14 @@ Checking test 038 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 316.012020 -The maximum resident set size (KB) = 657840 +The total amount of wall time = 306.331874 +The maximum resident set size (KB) = 649816 Test 038 regional_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/regional_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/regional_2threads Checking test 039 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1737,14 +1669,14 @@ Checking test 039 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 189.416741 -The maximum resident set size (KB) = 694340 +The total amount of wall time = 178.319189 +The maximum resident set size (KB) = 699544 Test 039 regional_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_noquilt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/regional_noquilt +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_noquilt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/regional_noquilt Checking test 040 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1752,28 +1684,28 @@ Checking test 040 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 326.151430 -The maximum resident set size (KB) = 648572 +The total amount of wall time = 314.367126 +The maximum resident set size (KB) = 645584 Test 040 regional_noquilt PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/regional_netcdf_parallel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/regional_netcdf_parallel Checking test 041 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK -The total amount of wall time = 297.237199 -The maximum resident set size (KB) = 652292 +The total amount of wall time = 285.745496 +The maximum resident set size (KB) = 646580 Test 041 regional_netcdf_parallel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/regional_2dwrtdecomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/regional_2dwrtdecomp Checking test 042 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1784,14 +1716,14 @@ Checking test 042 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 300.641715 -The maximum resident set size (KB) = 658392 +The total amount of wall time = 288.780523 +The maximum resident set size (KB) = 654596 Test 042 regional_2dwrtdecomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/fv3_regional_wofs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/regional_wofs +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/fv3_regional_wofs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/regional_wofs Checking test 043 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1802,14 +1734,14 @@ Checking test 043 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 372.223366 -The maximum resident set size (KB) = 343944 +The total amount of wall time = 373.195416 +The maximum resident set size (KB) = 342036 Test 043 regional_wofs PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/rap_control +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/rap_control Checking test 044 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1856,14 +1788,14 @@ Checking test 044 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 432.388213 -The maximum resident set size (KB) = 891928 +The total amount of wall time = 419.275711 +The maximum resident set size (KB) = 899256 Test 044 rap_control PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/regional_spp_sppt_shum_skeb +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_spp_sppt_shum_skeb +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/regional_spp_sppt_shum_skeb Checking test 045 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -1874,14 +1806,14 @@ Checking test 045 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 296.436899 -The maximum resident set size (KB) = 987368 +The total amount of wall time = 288.825150 +The maximum resident set size (KB) = 992568 Test 045 regional_spp_sppt_shum_skeb PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/rap_decomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/rap_decomp Checking test 046 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1928,14 +1860,14 @@ Checking test 046 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 444.456014 -The maximum resident set size (KB) = 894032 +The total amount of wall time = 435.660754 +The maximum resident set size (KB) = 894192 Test 046 rap_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/rap_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/rap_2threads Checking test 047 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1982,14 +1914,14 @@ Checking test 047 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 399.693271 -The maximum resident set size (KB) = 968984 +The total amount of wall time = 393.443323 +The maximum resident set size (KB) = 973200 Test 047 rap_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/rap_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/rap_restart Checking test 048 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2028,14 +1960,14 @@ Checking test 048 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 223.002444 -The maximum resident set size (KB) = 644484 +The total amount of wall time = 230.697906 +The maximum resident set size (KB) = 648676 Test 048 rap_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/rap_sfcdiff +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/rap_sfcdiff Checking test 049 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2082,14 +2014,14 @@ Checking test 049 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 425.627841 -The maximum resident set size (KB) = 895640 +The total amount of wall time = 415.470920 +The maximum resident set size (KB) = 897436 Test 049 rap_sfcdiff PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/rap_sfcdiff_decomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/rap_sfcdiff_decomp Checking test 050 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2136,14 +2068,14 @@ Checking test 050 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 443.932587 -The maximum resident set size (KB) = 891500 +The total amount of wall time = 435.458438 +The maximum resident set size (KB) = 895212 Test 050 rap_sfcdiff_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/rap_sfcdiff_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/rap_sfcdiff_restart Checking test 051 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2182,14 +2114,14 @@ Checking test 051 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 312.810261 -The maximum resident set size (KB) = 642128 +The total amount of wall time = 326.718721 +The maximum resident set size (KB) = 646956 Test 051 rap_sfcdiff_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/hrrr_control +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/hrrr_control Checking test 052 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2236,14 +2168,14 @@ Checking test 052 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 414.984330 -The maximum resident set size (KB) = 892556 +The total amount of wall time = 416.386728 +The maximum resident set size (KB) = 896600 Test 052 hrrr_control PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/hrrr_control_decomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/hrrr_control_decomp Checking test 053 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2290,14 +2222,14 @@ Checking test 053 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 427.669421 -The maximum resident set size (KB) = 891736 +The total amount of wall time = 417.396440 +The maximum resident set size (KB) = 889488 Test 053 hrrr_control_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/hrrr_control_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/hrrr_control_2threads Checking test 054 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2344,14 +2276,14 @@ Checking test 054 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 379.996243 -The maximum resident set size (KB) = 953400 +The total amount of wall time = 374.962680 +The maximum resident set size (KB) = 963288 Test 054 hrrr_control_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/hrrr_control_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/hrrr_control_restart Checking test 055 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2390,14 +2322,14 @@ Checking test 055 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 307.607760 -The maximum resident set size (KB) = 640996 +The total amount of wall time = 302.025419 +The maximum resident set size (KB) = 644312 Test 055 hrrr_control_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_v1beta -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/rrfs_v1beta +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_v1beta +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/rrfs_v1beta Checking test 056 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2444,14 +2376,14 @@ Checking test 056 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 429.459253 -The maximum resident set size (KB) = 892500 +The total amount of wall time = 419.499655 +The maximum resident set size (KB) = 890336 Test 056 rrfs_v1beta PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_v1nssl -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/rrfs_v1nssl +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_v1nssl +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/rrfs_v1nssl Checking test 057 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2466,14 +2398,14 @@ Checking test 057 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 489.472597 -The maximum resident set size (KB) = 579392 +The total amount of wall time = 474.589752 +The maximum resident set size (KB) = 575972 Test 057 rrfs_v1nssl PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/rrfs_v1nssl_nohailnoccn +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/rrfs_v1nssl_nohailnoccn Checking test 058 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2488,14 +2420,14 @@ Checking test 058 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 477.603661 -The maximum resident set size (KB) = 569988 +The total amount of wall time = 467.588815 +The maximum resident set size (KB) = 571864 Test 058 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/rrfs_conus13km_hrrr_warm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/rrfs_conus13km_hrrr_warm Checking test 059 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2504,14 +2436,14 @@ Checking test 059 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 124.852372 -The maximum resident set size (KB) = 763736 +The total amount of wall time = 115.701815 +The maximum resident set size (KB) = 762956 Test 059 rrfs_conus13km_hrrr_warm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/rrfs_smoke_conus13km_hrrr_warm Checking test 060 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2520,14 +2452,14 @@ Checking test 060 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 138.350386 -The maximum resident set size (KB) = 775484 +The total amount of wall time = 128.845778 +The maximum resident set size (KB) = 780968 Test 060 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/rrfs_conus13km_radar_tten_warm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/rrfs_conus13km_radar_tten_warm Checking test 061 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2536,14 +2468,14 @@ Checking test 061 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 128.365533 -The maximum resident set size (KB) = 766288 +The total amount of wall time = 116.235787 +The maximum resident set size (KB) = 766792 Test 061 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/rrfs_conus13km_hrrr_warm_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/rrfs_conus13km_hrrr_warm_2threads Checking test 062 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2552,14 +2484,14 @@ Checking test 062 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 97.866678 -The maximum resident set size (KB) = 762200 +The total amount of wall time = 85.693832 +The maximum resident set size (KB) = 766616 Test 062 rrfs_conus13km_hrrr_warm_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/rrfs_conus13km_radar_tten_warm_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/rrfs_conus13km_radar_tten_warm_2threads Checking test 063 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2568,14 +2500,14 @@ Checking test 063 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 94.595909 -The maximum resident set size (KB) = 765404 +The total amount of wall time = 84.611485 +The maximum resident set size (KB) = 764124 Test 063 rrfs_conus13km_radar_tten_warm_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_csawmg -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/control_csawmg +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_csawmg +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/control_csawmg Checking test 064 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2586,14 +2518,14 @@ Checking test 064 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 356.234134 -The maximum resident set size (KB) = 591280 +The total amount of wall time = 349.776542 +The maximum resident set size (KB) = 592712 Test 064 control_csawmg PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_csawmgt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/control_csawmgt +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_csawmgt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/control_csawmgt Checking test 065 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2604,14 +2536,14 @@ Checking test 065 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 351.259804 -The maximum resident set size (KB) = 587440 +The total amount of wall time = 350.311053 +The maximum resident set size (KB) = 586656 Test 065 control_csawmgt PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_ras -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/control_ras +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_ras +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/control_ras Checking test 066 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2622,26 +2554,26 @@ Checking test 066 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 183.212458 -The maximum resident set size (KB) = 551056 +The total amount of wall time = 182.978631 +The maximum resident set size (KB) = 550316 Test 066 control_ras PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_wam -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/control_wam +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_wam +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/control_wam Checking test 067 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 118.803948 -The maximum resident set size (KB) = 270392 +The total amount of wall time = 118.343242 +The maximum resident set size (KB) = 271876 Test 067 control_wam PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/control_p8_faster +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/control_p8_faster Checking test 068 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2688,14 +2620,14 @@ Checking test 068 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 184.610333 -The maximum resident set size (KB) = 1485904 +The total amount of wall time = 174.823621 +The maximum resident set size (KB) = 1482340 Test 068 control_p8_faster PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_control_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/regional_control_faster +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_control_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/regional_control_faster Checking test 069 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2706,42 +2638,42 @@ Checking test 069 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 293.457988 -The maximum resident set size (KB) = 654796 +The total amount of wall time = 282.578698 +The maximum resident set size (KB) = 655408 Test 069 regional_control_faster PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/rrfs_conus13km_hrrr_warm_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/rrfs_conus13km_hrrr_warm_debug Checking test 070 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 783.926743 -The maximum resident set size (KB) = 798784 +The total amount of wall time = 779.389356 +The maximum resident set size (KB) = 794436 Test 070 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/rrfs_conus13km_radar_tten_warm_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_conus13km_radar_tten_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/rrfs_conus13km_radar_tten_warm_debug Checking test 071 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 784.685046 -The maximum resident set size (KB) = 796972 +The total amount of wall time = 778.011234 +The maximum resident set size (KB) = 792428 Test 071 rrfs_conus13km_radar_tten_warm_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_CubedSphereGrid_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/control_CubedSphereGrid_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_CubedSphereGrid_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/control_CubedSphereGrid_debug Checking test 072 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2768,334 +2700,334 @@ Checking test 072 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 175.843435 -The maximum resident set size (KB) = 681624 +The total amount of wall time = 170.622529 +The maximum resident set size (KB) = 677292 Test 072 control_CubedSphereGrid_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/control_wrtGauss_netcdf_parallel_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/control_wrtGauss_netcdf_parallel_debug Checking test 073 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 163.384671 -The maximum resident set size (KB) = 682364 +The total amount of wall time = 161.827376 +The maximum resident set size (KB) = 680404 Test 073 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_stochy_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/control_stochy_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_stochy_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/control_stochy_debug Checking test 074 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 184.415892 -The maximum resident set size (KB) = 687168 +The total amount of wall time = 180.882856 +The maximum resident set size (KB) = 683908 Test 074 control_stochy_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/control_lndp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/control_lndp_debug Checking test 075 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 166.023320 -The maximum resident set size (KB) = 686196 +The total amount of wall time = 162.624483 +The maximum resident set size (KB) = 683416 Test 075 control_lndp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_csawmg_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/control_csawmg_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_csawmg_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/control_csawmg_debug Checking test 076 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 270.706203 -The maximum resident set size (KB) = 723596 +The total amount of wall time = 255.208147 +The maximum resident set size (KB) = 720556 Test 076 control_csawmg_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_csawmgt_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/control_csawmgt_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_csawmgt_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/control_csawmgt_debug Checking test 077 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 264.580098 -The maximum resident set size (KB) = 724068 +The total amount of wall time = 251.560393 +The maximum resident set size (KB) = 722148 Test 077 control_csawmgt_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_ras_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/control_ras_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_ras_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/control_ras_debug Checking test 078 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 167.562996 -The maximum resident set size (KB) = 695500 +The total amount of wall time = 164.267896 +The maximum resident set size (KB) = 690276 Test 078 control_ras_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/control_diag_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/control_diag_debug Checking test 079 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 171.450545 -The maximum resident set size (KB) = 742116 +The total amount of wall time = 165.056869 +The maximum resident set size (KB) = 737728 Test 079 control_diag_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_debug_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/control_debug_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_debug_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/control_debug_p8 Checking test 080 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 201.149347 -The maximum resident set size (KB) = 1512380 +The total amount of wall time = 187.381011 +The maximum resident set size (KB) = 1501308 Test 080 control_debug_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/regional_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/regional_debug Checking test 081 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1073.027805 -The maximum resident set size (KB) = 677292 +The total amount of wall time = 1050.359991 +The maximum resident set size (KB) = 677364 Test 081 regional_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/rap_control_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/rap_control_debug Checking test 082 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 309.845007 -The maximum resident set size (KB) = 1059028 +The total amount of wall time = 298.820212 +The maximum resident set size (KB) = 1054624 Test 082 rap_control_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/hrrr_control_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/hrrr_control_debug Checking test 083 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.857778 -The maximum resident set size (KB) = 1052928 +The total amount of wall time = 293.218020 +The maximum resident set size (KB) = 1052768 Test 083 hrrr_control_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/rap_unified_drag_suite_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/rap_unified_drag_suite_debug Checking test 084 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 310.274632 -The maximum resident set size (KB) = 1055224 +The total amount of wall time = 299.293237 +The maximum resident set size (KB) = 1054308 Test 084 rap_unified_drag_suite_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/rap_diag_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/rap_diag_debug Checking test 085 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 318.457606 -The maximum resident set size (KB) = 1138644 +The total amount of wall time = 311.583587 +The maximum resident set size (KB) = 1139820 Test 085 rap_diag_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/rap_cires_ugwp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/rap_cires_ugwp_debug Checking test 086 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 312.615861 -The maximum resident set size (KB) = 1055460 +The total amount of wall time = 306.595533 +The maximum resident set size (KB) = 1058868 Test 086 rap_cires_ugwp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/rap_unified_ugwp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/rap_unified_ugwp_debug Checking test 087 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 314.347359 -The maximum resident set size (KB) = 1056952 +The total amount of wall time = 306.198964 +The maximum resident set size (KB) = 1052896 Test 087 rap_unified_ugwp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/rap_lndp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/rap_lndp_debug Checking test 088 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 313.680489 -The maximum resident set size (KB) = 1057816 +The total amount of wall time = 300.787369 +The maximum resident set size (KB) = 1058424 Test 088 rap_lndp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_flake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/rap_flake_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_flake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/rap_flake_debug Checking test 089 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 307.516146 -The maximum resident set size (KB) = 1060264 +The total amount of wall time = 298.564293 +The maximum resident set size (KB) = 1057912 Test 089 rap_flake_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_progcld_thompson_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/rap_progcld_thompson_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_progcld_thompson_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/rap_progcld_thompson_debug Checking test 090 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 306.287383 -The maximum resident set size (KB) = 1055300 +The total amount of wall time = 299.661142 +The maximum resident set size (KB) = 1056828 Test 090 rap_progcld_thompson_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_noah_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/rap_noah_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_noah_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/rap_noah_debug Checking test 091 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.532663 -The maximum resident set size (KB) = 1056752 +The total amount of wall time = 292.850484 +The maximum resident set size (KB) = 1053004 Test 091 rap_noah_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_sfcdiff_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/rap_sfcdiff_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_sfcdiff_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/rap_sfcdiff_debug Checking test 092 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 310.339032 -The maximum resident set size (KB) = 1057656 +The total amount of wall time = 300.375191 +The maximum resident set size (KB) = 1056856 Test 092 rap_sfcdiff_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/rap_noah_sfcdiff_cires_ugwp_debug Checking test 093 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 499.812112 -The maximum resident set size (KB) = 1054640 +The total amount of wall time = 487.965762 +The maximum resident set size (KB) = 1054068 Test 093 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rrfs_v1beta_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/rrfs_v1beta_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_v1beta_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/rrfs_v1beta_debug Checking test 094 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 302.272336 -The maximum resident set size (KB) = 1056344 +The total amount of wall time = 294.638550 +The maximum resident set size (KB) = 1053464 Test 094 rrfs_v1beta_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_wam_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/control_wam_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_wam_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/control_wam_debug Checking test 095 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 299.069100 -The maximum resident set size (KB) = 304592 +The total amount of wall time = 302.061754 +The maximum resident set size (KB) = 304840 Test 095 control_wam_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 096 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3106,14 +3038,14 @@ Checking test 096 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 273.774323 -The maximum resident set size (KB) = 884520 +The total amount of wall time = 272.895470 +The maximum resident set size (KB) = 877048 Test 096 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/rap_control_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/rap_control_dyn32_phy32 Checking test 097 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3160,14 +3092,14 @@ Checking test 097 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 347.028956 -The maximum resident set size (KB) = 775120 +The total amount of wall time = 342.034660 +The maximum resident set size (KB) = 775612 Test 097 rap_control_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/hrrr_control_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/hrrr_control_dyn32_phy32 Checking test 098 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3214,14 +3146,14 @@ Checking test 098 hrrr_control_dyn32_phy32 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 = 187.915432 -The maximum resident set size (KB) = 772652 +The total amount of wall time = 184.326409 +The maximum resident set size (KB) = 770924 Test 098 hrrr_control_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/rap_2threads_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/rap_2threads_dyn32_phy32 Checking test 099 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3268,14 +3200,14 @@ Checking test 099 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 323.501293 -The maximum resident set size (KB) = 824292 +The total amount of wall time = 320.619707 +The maximum resident set size (KB) = 828128 Test 099 rap_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/hrrr_control_2threads_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/hrrr_control_2threads_dyn32_phy32 Checking test 100 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3322,14 +3254,14 @@ Checking test 100 hrrr_control_2threads_dyn32_phy32 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 = 176.618184 -The maximum resident set size (KB) = 829712 +The total amount of wall time = 174.555155 +The maximum resident set size (KB) = 828888 Test 100 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/hrrr_control_decomp_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/hrrr_control_decomp_dyn32_phy32 Checking test 101 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3376,14 +3308,14 @@ Checking test 101 hrrr_control_decomp_dyn32_phy32 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 = 195.062366 -The maximum resident set size (KB) = 770188 +The total amount of wall time = 192.112082 +The maximum resident set size (KB) = 774088 Test 101 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/rap_restart_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/rap_restart_dyn32_phy32 Checking test 102 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3422,14 +3354,14 @@ Checking test 102 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 262.907767 -The maximum resident set size (KB) = 609928 +The total amount of wall time = 257.212687 +The maximum resident set size (KB) = 613576 Test 102 rap_restart_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/hrrr_control_restart_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/hrrr_control_restart_dyn32_phy32 Checking test 103 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3468,14 +3400,14 @@ Checking test 103 hrrr_control_restart_dyn32_phy32 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 = 109.340417 -The maximum resident set size (KB) = 604748 +The total amount of wall time = 97.247481 +The maximum resident set size (KB) = 606704 Test 103 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/rap_control_dyn64_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/rap_control_dyn64_phy32 Checking test 104 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3522,81 +3454,81 @@ Checking test 104 rap_control_dyn64_phy32 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 = 238.383225 -The maximum resident set size (KB) = 796680 +The total amount of wall time = 234.067790 +The maximum resident set size (KB) = 796744 Test 104 rap_control_dyn64_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/rap_control_debug_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/rap_control_debug_dyn32_phy32 Checking test 105 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 299.832173 -The maximum resident set size (KB) = 942624 +The total amount of wall time = 296.426884 +The maximum resident set size (KB) = 940436 Test 105 rap_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/hrrr_control_debug_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/hrrr_control_debug_dyn32_phy32 Checking test 106 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 295.967034 -The maximum resident set size (KB) = 945164 +The total amount of wall time = 290.453789 +The maximum resident set size (KB) = 940824 Test 106 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/rap_control_dyn64_phy32_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/rap_control_dyn64_phy32_debug Checking test 107 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.695973 -The maximum resident set size (KB) = 961180 +The total amount of wall time = 294.045912 +The maximum resident set size (KB) = 958036 Test 107 rap_control_dyn64_phy32_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/hafs_regional_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/hafs_regional_atm Checking test 108 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 272.003915 -The maximum resident set size (KB) = 823436 +The total amount of wall time = 267.320309 +The maximum resident set size (KB) = 821924 Test 108 hafs_regional_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/hafs_regional_atm_thompson_gfdlsf +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/hafs_regional_atm_thompson_gfdlsf Checking test 109 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 390.769822 -The maximum resident set size (KB) = 1182504 +The total amount of wall time = 319.824944 +The maximum resident set size (KB) = 1186600 Test 109 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/hafs_regional_atm_ocn +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/hafs_regional_atm_ocn Checking test 110 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3605,14 +3537,14 @@ Checking test 110 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 415.208727 -The maximum resident set size (KB) = 852560 +The total amount of wall time = 390.933712 +The maximum resident set size (KB) = 854716 Test 110 hafs_regional_atm_ocn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_atm_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/hafs_regional_atm_wav +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_atm_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/hafs_regional_atm_wav Checking test 111 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3621,14 +3553,14 @@ Checking test 111 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 713.372197 -The maximum resident set size (KB) = 889552 +The total amount of wall time = 703.631462 +The maximum resident set size (KB) = 887464 Test 111 hafs_regional_atm_wav PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/hafs_regional_atm_ocn_wav +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/hafs_regional_atm_ocn_wav Checking test 112 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3639,28 +3571,28 @@ Checking test 112 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 905.751852 -The maximum resident set size (KB) = 909696 +The total amount of wall time = 886.794430 +The maximum resident set size (KB) = 911912 Test 112 hafs_regional_atm_ocn_wav PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/hafs_regional_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/hafs_regional_1nest_atm Checking test 113 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 330.744460 -The maximum resident set size (KB) = 389800 +The total amount of wall time = 329.721198 +The maximum resident set size (KB) = 390272 Test 113 hafs_regional_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/hafs_regional_telescopic_2nests_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/hafs_regional_telescopic_2nests_atm Checking test 114 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3669,28 +3601,28 @@ Checking test 114 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 411.845106 -The maximum resident set size (KB) = 411616 +The total amount of wall time = 397.631275 +The maximum resident set size (KB) = 411412 Test 114 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_global_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/hafs_global_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_global_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/hafs_global_1nest_atm Checking test 115 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 183.524207 -The maximum resident set size (KB) = 273268 +The total amount of wall time = 166.851870 +The maximum resident set size (KB) = 287644 Test 115 hafs_global_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_global_multiple_4nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/hafs_global_multiple_4nests_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_global_multiple_4nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/hafs_global_multiple_4nests_atm Checking test 116 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3708,14 +3640,14 @@ Checking test 116 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -The total amount of wall time = 505.090514 -The maximum resident set size (KB) = 338636 +The total amount of wall time = 485.720854 +The maximum resident set size (KB) = 341172 Test 116 hafs_global_multiple_4nests_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/hafs_regional_specified_moving_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/hafs_regional_specified_moving_1nest_atm Checking test 117 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3724,28 +3656,28 @@ Checking test 117 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 224.351655 -The maximum resident set size (KB) = 403744 +The total amount of wall time = 213.117344 +The maximum resident set size (KB) = 408312 Test 117 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/hafs_regional_storm_following_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/hafs_regional_storm_following_1nest_atm Checking test 118 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 211.142914 -The maximum resident set size (KB) = 404872 +The total amount of wall time = 200.604306 +The maximum resident set size (KB) = 405568 Test 118 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/hafs_regional_storm_following_1nest_atm_ocn Checking test 119 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3754,42 +3686,42 @@ Checking test 119 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 253.047548 -The maximum resident set size (KB) = 452780 +The total amount of wall time = 242.614113 +The maximum resident set size (KB) = 455260 Test 119 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/hafs_global_storm_following_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_global_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/hafs_global_storm_following_1nest_atm Checking test 120 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 96.262390 -The maximum resident set size (KB) = 286240 +The total amount of wall time = 80.247349 +The maximum resident set size (KB) = 281120 Test 120 hafs_global_storm_following_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 121 hafs_regional_storm_following_1nest_atm_ocn_debug results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK -The total amount of wall time = 823.325752 -The maximum resident set size (KB) = 483240 +The total amount of wall time = 803.930232 +The maximum resident set size (KB) = 481632 Test 121 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 122 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3800,14 +3732,14 @@ Checking test 122 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -The total amount of wall time = 535.676050 -The maximum resident set size (KB) = 524492 +The total amount of wall time = 525.960825 +The maximum resident set size (KB) = 523712 Test 122 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/control_p8_atmlnd_sbs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/control_p8_atmlnd_sbs +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8_atmlnd_sbs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/control_p8_atmlnd_sbs Checking test 123 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3892,14 +3824,14 @@ Checking test 123 control_p8_atmlnd_sbs 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 = 244.214304 -The maximum resident set size (KB) = 1540936 +The total amount of wall time = 236.180594 +The maximum resident set size (KB) = 1538712 Test 123 control_p8_atmlnd_sbs PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/atmaero_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/atmaero_control_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/atmaero_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/atmaero_control_p8 Checking test 124 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3943,14 +3875,14 @@ Checking test 124 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 254.981418 -The maximum resident set size (KB) = 2818512 +The total amount of wall time = 250.448915 +The maximum resident set size (KB) = 2816016 Test 124 atmaero_control_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/atmaero_control_p8_rad -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/atmaero_control_p8_rad +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/atmaero_control_p8_rad +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/atmaero_control_p8_rad Checking test 125 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3994,14 +3926,14 @@ Checking test 125 atmaero_control_p8_rad results .... 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.762602 -The maximum resident set size (KB) = 2880716 +The total amount of wall time = 289.526541 +The maximum resident set size (KB) = 2880424 Test 125 atmaero_control_p8_rad PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/atmaero_control_p8_rad_micro +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/atmaero_control_p8_rad_micro +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/atmaero_control_p8_rad_micro Checking test 126 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4045,14 +3977,14 @@ Checking test 126 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 293.692430 -The maximum resident set size (KB) = 2889328 +The total amount of wall time = 294.417589 +The maximum resident set size (KB) = 2889216 Test 126 atmaero_control_p8_rad_micro PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_atmaq -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/regional_atmaq +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_atmaq +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/regional_atmaq Checking test 127 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4068,14 +4000,14 @@ Checking test 127 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 716.307484 -The maximum resident set size (KB) = 1256188 +The total amount of wall time = 691.355768 +The maximum resident set size (KB) = 1256048 Test 127 regional_atmaq PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_atmaq_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/regional_atmaq_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_atmaq_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/regional_atmaq_debug Checking test 128 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4089,14 +4021,14 @@ Checking test 128 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1354.227376 -The maximum resident set size (KB) = 1294912 +The total amount of wall time = 1335.775221 +The maximum resident set size (KB) = 1302324 Test 128 regional_atmaq_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230320/INTEL/regional_atmaq_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_116603/regional_atmaq_faster +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_atmaq_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/regional_atmaq_faster Checking test 129 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4112,12 +4044,91 @@ Checking test 129 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 664.221210 -The maximum resident set size (KB) = 1255420 +The total amount of wall time = 635.716364 +The maximum resident set size (KB) = 1255156 Test 129 regional_atmaq_faster PASS +FAILED TESTS: +Test compile_004 failed in run_compile failed + +REGRESSION TEST FAILED +Thu Mar 23 18:33:01 UTC 2023 +Elapsed time: 00h:59m:52s. Have a nice day! +Thu Mar 23 18:51:23 UTC 2023 +Start Regression test + +Compile 001 elapsed time 566 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_noaero_p8_agrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112870/cpld_control_noaero_p8_agrid +Checking test 001 cpld_control_noaero_p8_agrid results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + +The total amount of wall time = 304.630525 +The maximum resident set size (KB) = 1620096 + +Test 001 cpld_control_noaero_p8_agrid PASS + REGRESSION TEST WAS SUCCESSFUL -Tue Mar 21 02:35:05 UTC 2023 -Elapsed time: 01h:12m:31s. Have a nice day! +Thu Mar 23 19:09:52 UTC 2023 +Elapsed time: 00h:18m:29s. Have a nice day! diff --git a/tests/fv3_conf/rrfs_warm_run.IN b/tests/fv3_conf/rrfs_warm_run.IN index ddfbeba4a85..966f17dfa61 100644 --- a/tests/fv3_conf/rrfs_warm_run.IN +++ b/tests/fv3_conf/rrfs_warm_run.IN @@ -48,6 +48,8 @@ if [ $IMP_PHYSICS = 8 ]; then cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/CCN_ACTIVATE.BIN . fi +cp ${PATHRT}/parm/postxconfig-NT-fv3lam.txt postxconfig-NT.txt + if [ $DO_RRTMGP = .true. ]; then cp @[INPUTDATA_ROOT]/FV3_input_data_RRTMGP/* . fi diff --git a/tests/parm/diag_table/diag_table_hrrr b/tests/parm/diag_table/diag_table_hrrr index ec67502b399..2a7edd84c9c 100644 --- a/tests/parm/diag_table/diag_table_hrrr +++ b/tests/parm/diag_table/diag_table_hrrr @@ -332,6 +332,12 @@ "gfs_phys", "skebv_wts", "skebv_wts", "fv3_history", "all", .false., "none", 2 "gfs_phys", "shum_wts", "shum_wts", "fv3_history", "all", .false., "none", 2 + +# Lightning threat indexes +"gfs_sfc", "ltg1_max", "ltg1_max", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "ltg2_max", "ltg2_max", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "ltg3_max", "ltg3_max", "fv3_history2d", "all", .false., "none", 2 + #============================================================================================= # #====> This file can be used with diag_manager/v2.0a (or higher) <==== diff --git a/tests/parm/postxconfig-NT-fv3lam.txt b/tests/parm/postxconfig-NT-fv3lam.txt index db3ccdde663..83972b3ed38 100644 --- a/tests/parm/postxconfig-NT-fv3lam.txt +++ b/tests/parm/postxconfig-NT-fv3lam.txt @@ -1,6 +1,6 @@ 2 -219 -264 +225 +263 PRSLEV 32769 ncep_nco @@ -9341,43 +9341,6 @@ surface ? ? ? -444 -LTNG_ON_SURFACE -lightning -1 -tmpl4_0 -LTNG -NCEP -? -surface -0 -? -0 -? -? -0 -? -0 -? -? -? -0 -0.0 -0 -0.0 -? -0 -0.0 -0 -0.0 -1 -1.0 -0 -0 -0 -? -? -? 581 VIL_ON_ENTIRE_ATMOS entire atmosphere Vertically Integrated Liquid (kg/m-2) @@ -17904,3 +17867,225 @@ surface ? ? ? +704 +GSD_MAX_LTG_THREAT3_ON_ENTIRE_ATMOS +? +1 +tmpl4_8 +LTNG +NCEP +MAX +entire_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +1006 +SDEN_ON_SURFACE +? +1 +tmpl4_0 +SDEN +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +1007 +ICE_PROB_IFI_FLIGHT_LEVEL +? +1 +tmpl4_0 +ICPRB +NCEP +? +spec_alt_above_mean_sea_lvl +1 +1 +60 +5000. 10000. 15000. 20000. 25000. 30000. 35000. 40000. 45000. 50000. 55000. 60000. 65000. 70000. 75000. 80000. 85000. 90000. 95000. 100000. 105000. 110000. 115000. 120000. 125000. 130000. 135000. 140000. 145000. 150000. 155000. 160000. 165000. 170000. 175000. 180000. 185000. 190000. 195000. 200000. 205000. 210000. 215000. 220000. 225000. 230000. 235000. 240000. 245000. 250000. 255000. 260000. 265000. 270000. 275000. 280000. 285000. 290000. 295000. 300000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +1008 +SLD_IFI_FLIGHT_LEVEL +? +1 +tmpl4_0 +SIPD +NCEP +? +spec_alt_above_mean_sea_lvl +1 +1 +60 +5000. 10000. 15000. 20000. 25000. 30000. 35000. 40000. 45000. 50000. 55000. 60000. 65000. 70000. 75000. 80000. 85000. 90000. 95000. 100000. 105000. 110000. 115000. 120000. 125000. 130000. 135000. 140000. 145000. 150000. 155000. 160000. 165000. 170000. 175000. 180000. 185000. 190000. 195000. 200000. 205000. 210000. 215000. 220000. 225000. 230000. 235000. 240000. 245000. 250000. 255000. 260000. 265000. 270000. 275000. 280000. 285000. 290000. 295000. 300000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +1009 +ICE_SEV_CAT_IFI_FLIGHT_LEVEL +? +1 +tmpl4_0 +ICSEV +NCEP +? +spec_alt_above_mean_sea_lvl +1 +1 +60 +5000. 10000. 15000. 20000. 25000. 30000. 35000. 40000. 45000. 50000. 55000. 60000. 65000. 70000. 75000. 80000. 85000. 90000. 95000. 100000. 105000. 110000. 115000. 120000. 125000. 130000. 135000. 140000. 145000. 150000. 155000. 160000. 165000. 170000. 175000. 180000. 185000. 190000. 195000. 200000. 205000. 210000. 215000. 220000. 225000. 230000. 235000. 240000. 245000. 250000. 255000. 260000. 265000. 270000. 275000. 280000. 285000. 290000. 295000. 300000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +1010 +WMO_ICE_SEV_CAT_IFI_FLIGHT_LEVEL +? +1 +tmpl4_0 +ICESEV +? +? +spec_alt_above_mean_sea_lvl +1 +1 +60 +5000. 10000. 15000. 20000. 25000. 30000. 35000. 40000. 45000. 50000. 55000. 60000. 65000. 70000. 75000. 80000. 85000. 90000. 95000. 100000. 105000. 110000. 115000. 120000. 125000. 130000. 135000. 140000. 145000. 150000. 155000. 160000. 165000. 170000. 175000. 180000. 185000. 190000. 195000. 200000. 205000. 210000. 215000. 220000. 225000. 230000. 235000. 240000. 245000. 250000. 255000. 260000. 265000. 270000. 275000. 280000. 285000. 290000. 295000. 300000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? diff --git a/tests/parm/rrfs_conus13km_hrrr.nml.IN b/tests/parm/rrfs_conus13km_hrrr.nml.IN index d8f951573c8..53892406120 100644 --- a/tests/parm/rrfs_conus13km_hrrr.nml.IN +++ b/tests/parm/rrfs_conus13km_hrrr.nml.IN @@ -138,6 +138,7 @@ &gfs_physics_nml sfclay_compute_flux = @[SFCLAY_COMPUTE_FLUX] + lightning_threat = .true. fh_dfi_radar = @[FH_DFI_RADAR] bl_mynn_edmf = 1 bl_mynn_edmf_mom = 1 diff --git a/tests/rt.conf b/tests/rt.conf index 1c06beb8d59..48e3c569aa4 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -80,6 +80,12 @@ RUN | regional_netcdf_parallel RUN | regional_2dwrtdecomp | | | RUN | regional_wofs | | fv3 | +COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DREQUIRE_IFI=ON | + acorn.intel | fv3 | +RUN | regional_ifi_control | + acorn.intel | fv3 | +RUN | regional_ifi_decomp | + acorn.intel | | +RUN | regional_ifi_2threads | + acorn.intel | | + + COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON | | fv3 | RUN | rap_control | | fv3 | diff --git a/tests/rt.sh b/tests/rt.sh index 57a3ae56aac..5a8babff546 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -446,7 +446,7 @@ if [[ $TESTS_FILE =~ '35d' ]] || [[ $TESTS_FILE =~ 'weekly' ]]; then fi -BL_DATE=20230320 +BL_DATE=20230321 RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-${BL_DATE}/${RT_COMPILER^^}} diff --git a/tests/tests/regional_ifi_2threads b/tests/tests/regional_ifi_2threads new file mode 100644 index 00000000000..743707a55c8 --- /dev/null +++ b/tests/tests/regional_ifi_2threads @@ -0,0 +1,45 @@ +############################################################################### +# +# FV3 regional threading test +# +############################################################################### + +export TEST_DESCR="Compare FV3 regional threading results with previous trunk version" + +export CNTL_DIR=regional_ifi_control + +export LIST_FILES="dynf000.nc \ + dynf006.nc \ + phyf000.nc \ + phyf006.nc \ + PRSLEV.GrbF00 \ + PRSLEV.GrbF06 \ + NATLEV.GrbF00 \ + NATLEV.GrbF06" + +export_fv3 + +export FV3_RUN=regional_run.IN + +export OZ_PHYS_OLD=.false. +export OZ_PHYS_NEW=.true. +export H2O_PHYS=.true. +export HYBEDMF=.false. +export WRITE_DOPOST=.true. +export POSTAPP='lam' + +export CCPP_SUITE=FV3_GFS_v15_thompson_mynn_lam3km +export INPUT_NML=regional.nml.IN +export MODEL_CONFIGURE=model_configure_regional.IN +export DIAG_TABLE=diag_table_lam +export FIELD_TABLE=field_table_regional + +export WLCLK=15 +export FHMAX=6 +export INPES=10 +export JNPES=11 +export atm_omp_num_threads=2 +export OUTPUT_FH="3 -1" +WRITE_GROUP=1 +WRTTASK_PER_GROUP=10 +NTILES=1 diff --git a/tests/tests/regional_ifi_control b/tests/tests/regional_ifi_control new file mode 100644 index 00000000000..85ab5ae6a9f --- /dev/null +++ b/tests/tests/regional_ifi_control @@ -0,0 +1,45 @@ +############################################################################### +# +# FV3 regional control with IFI (hi-res 3km, small domain) test +# +############################################################################### + +export TEST_DESCR="Compare FV3 regional control results with IFI against previous trunk version" + +export CNTL_DIR=regional_ifi_control + +export LIST_FILES="dynf000.nc \ + dynf006.nc \ + phyf000.nc \ + phyf006.nc \ + PRSLEV.GrbF00 \ + PRSLEV.GrbF06 \ + NATLEV.GrbF00 \ + NATLEV.GrbF06" + +export_fv3 + +export FV3_RUN=regional_run.IN + +export OZ_PHYS_OLD=.false. +export OZ_PHYS_NEW=.true. +export H2O_PHYS=.true. +export HYBEDMF=.false. +export RESTART_INTERVAL="3 -1" +export WRITE_DOPOST=.true. +export POSTAPP='lam' + +export CCPP_SUITE=FV3_GFS_v15_thompson_mynn_lam3km +export INPUT_NML=regional.nml.IN +export MODEL_CONFIGURE=model_configure_regional.IN +export DIAG_TABLE=diag_table_lam +export FIELD_TABLE=field_table_regional + +export WLCLK=15 +export FHMAX=6 +export INPES=10 +export JNPES=11 +export OUTPUT_FH="3 -1" +WRITE_GROUP=1 +WRTTASK_PER_GROUP=10 +NTILES=1 diff --git a/tests/tests/regional_ifi_decomp b/tests/tests/regional_ifi_decomp new file mode 100644 index 00000000000..4513f4618ce --- /dev/null +++ b/tests/tests/regional_ifi_decomp @@ -0,0 +1,45 @@ +############################################################################### +# +# FV3 regional + IFI with different MPI decomposition (hi-res 3km, small domain) test +# +############################################################################### + +export TEST_DESCR="Compare FV3 regional with IFI; different decomposition results with previous trunk version" + +export CNTL_DIR=regional_ifi_control + +export LIST_FILES="dynf000.nc \ + dynf006.nc \ + phyf000.nc \ + phyf006.nc \ + PRSLEV.GrbF00 \ + PRSLEV.GrbF06 \ + NATLEV.GrbF00 \ + NATLEV.GrbF06" + +export_fv3 + +export FV3_RUN=regional_run.IN + +export OZ_PHYS_OLD=.false. +export OZ_PHYS_NEW=.true. +export H2O_PHYS=.true. +export HYBEDMF=.false. +export RESTART_INTERVAL="0" +export WRITE_DOPOST=.true. +export POSTAPP='lam' + +export CCPP_SUITE=FV3_GFS_v15_thompson_mynn_lam3km +export INPUT_NML=regional.nml.IN +export MODEL_CONFIGURE=model_configure_regional.IN +export DIAG_TABLE=diag_table_lam +export FIELD_TABLE=field_table_regional + +export WLCLK=15 +export FHMAX=6 +export INPES=11 +export JNPES=10 +export OUTPUT_FH="3 -1" +WRITE_GROUP=1 +WRTTASK_PER_GROUP=10 +NTILES=1 From 889254a63e38b5318cefb6d07a75ea99837f7bf4 Mon Sep 17 00:00:00 2001 From: "Samuel Trahan (NOAA contractor)" <39415369+SamuelTrahanNOAA@users.noreply.github.com> Date: Mon, 27 Mar 2023 11:32:10 -0400 Subject: [PATCH 11/30] Smoke, dust, and MYNN updates (#1658) * "merge RRFS-SD to the community repository" * "include the MYNN-EDMF update PR #1636" * add new control_p8_mynn test to exercise the FV3_GFS_v17_p8_mynn suite * change some variables to environment-controlled in cpld_control.nml.IN; add satmedmf=T for export_cpl() in default_vars.sh; add satmedmf=T for tests that use cpld_control.nml.IN, but not export_cpl * add new smoke_dir_fdb_coef to rrfs test namelist Co-authored-by: joeolson42 Co-authored-by: Haiqin.Li Co-authored-by: Grant Firl --- FV3 | 2 +- tests/RegressionTests_acorn.intel.log | 1782 +++++++-------- tests/RegressionTests_cheyenne.gnu.log | 526 ++--- tests/RegressionTests_cheyenne.intel.log | 1872 ++++++++-------- tests/RegressionTests_gaea.intel.log | 1932 +++++++++-------- tests/RegressionTests_hera.gnu.log | 524 ++--- tests/RegressionTests_hera.intel.log | 1826 ++++++++-------- tests/RegressionTests_jet.intel.log | 1678 +++++++------- tests/RegressionTests_orion.intel.log | 1848 ++++++++-------- tests/RegressionTests_wcoss2.intel.log | 1655 +++++++------- tests/default_vars.sh | 2 + tests/fv3_conf/rrfs_warm_run.IN | 33 +- tests/parm/cpld_control.nml.IN | 6 +- .../diag_table/diag_additional_rrfs_smoke | 2 + .../field_table_thompson_aero_tke_smoke | 5 + tests/parm/rrfs_conus13km_hrrr.nml.IN | 12 +- tests/rt.conf | 29 +- tests/rt.sh | 2 +- tests/rt_gnu.conf | 24 +- tests/tests/atmaero_control_p8 | 2 + tests/tests/atmaero_control_p8_rad | 2 + tests/tests/control_2threads_p8 | 2 + 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 | 177 ++ tests/tests/control_p8_rrtmgp | 2 + tests/tests/control_restart_p8 | 2 + tests/tests/rrfs_conus13km_hrrr_warm | 2 +- tests/tests/rrfs_conus13km_hrrr_warm_2threads | 2 +- tests/tests/rrfs_conus13km_hrrr_warm_debug | 2 +- tests/tests/rrfs_conus13km_hrrr_warm_decomp | 2 +- tests/tests/rrfs_conus13km_hrrr_warm_restart | 2 +- tests/tests/rrfs_conus13km_radar_tten_warm | 2 +- .../rrfs_conus13km_radar_tten_warm_2threads | 2 +- .../rrfs_conus13km_radar_tten_warm_debug | 2 +- .../rrfs_conus13km_radar_tten_warm_decomp | 2 +- .../rrfs_conus13km_radar_tten_warm_restart | 2 +- tests/tests/rrfs_smoke_conus13km_hrrr_warm | 4 +- .../rrfs_smoke_conus13km_hrrr_warm_2threads | 116 + .../rrfs_smoke_conus13km_hrrr_warm_debug | 109 + ...s_smoke_conus13km_hrrr_warm_debug_2threads | 114 + ...rfs_smoke_conus13km_hrrr_warm_debug_decomp | 110 + .../rrfs_smoke_conus13km_hrrr_warm_decomp | 112 + .../rrfs_smoke_conus13km_hrrr_warm_restart | 110 + .../rrfs_smoke_conus13km_radar_tten_warm | 113 + 49 files changed, 8088 insertions(+), 6679 deletions(-) create mode 100644 tests/tests/control_p8_mynn create mode 100644 tests/tests/rrfs_smoke_conus13km_hrrr_warm_2threads create mode 100644 tests/tests/rrfs_smoke_conus13km_hrrr_warm_debug create mode 100644 tests/tests/rrfs_smoke_conus13km_hrrr_warm_debug_2threads create mode 100644 tests/tests/rrfs_smoke_conus13km_hrrr_warm_debug_decomp create mode 100644 tests/tests/rrfs_smoke_conus13km_hrrr_warm_decomp create mode 100644 tests/tests/rrfs_smoke_conus13km_hrrr_warm_restart create mode 100644 tests/tests/rrfs_smoke_conus13km_radar_tten_warm diff --git a/FV3 b/FV3 index f3eeba0ef7e..29085aa5c9e 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit f3eeba0ef7ecff65ebcc253094f8e1ce0cb41b66 +Subproject commit 29085aa5c9e93caca392fabe7cbb2efca785ea05 diff --git a/tests/RegressionTests_acorn.intel.log b/tests/RegressionTests_acorn.intel.log index 6fcc6ead5aa..c70962a6b55 100644 --- a/tests/RegressionTests_acorn.intel.log +++ b/tests/RegressionTests_acorn.intel.log @@ -1,40 +1,40 @@ -Thu Mar 23 15:06:29 UTC 2023 +Sun Mar 26 20:03:00 UTC 2023 Start Regression test -Compile 001 elapsed time 749 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 992 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 1318 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 1587 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 005 elapsed time 473 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 622 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 947 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 008 elapsed time 463 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 930 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 442 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 989 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 788 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 922 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 451 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 904 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 446 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 153 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 602 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 804 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 020 elapsed time 746 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 021 elapsed time 613 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 022 elapsed time 561 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 023 elapsed time 376 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 024 elapsed time 347 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 144 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 026 elapsed time 600 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 027 elapsed time 461 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 495 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 506 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 578 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 031 elapsed time 509 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8_mixedmode -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/cpld_control_p8_mixedmode +Compile 001 elapsed time 539 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 542 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 728 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 472 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 005 elapsed time 1519 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 848 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 1185 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 948 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 1356 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 010 elapsed time 955 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 457 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 1000 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 885 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 014 elapsed time 150 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 456 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 880 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 1145 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 482 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 562 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 020 elapsed time 384 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 021 elapsed time 646 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 022 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 023 elapsed time 226 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 024 elapsed time 408 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 55 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 026 elapsed time 457 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 027 elapsed time 452 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 803 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 865 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 369 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 031 elapsed time 626 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8_mixedmode +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -99,14 +99,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 334.519795 -The maximum resident set size (KB) = 2950928 +The total amount of wall time = 340.110038 +The maximum resident set size (KB) = 2956132 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_gfsv17 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/cpld_control_gfsv17 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_gfsv17 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -170,14 +170,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 257.913462 -The maximum resident set size (KB) = 1584100 +The total amount of wall time = 263.358988 +The maximum resident set size (KB) = 1577248 Test 002 cpld_control_gfsv17 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/cpld_control_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -242,14 +242,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 385.723922 -The maximum resident set size (KB) = 2978876 +The total amount of wall time = 396.922318 +The maximum resident set size (KB) = 2983704 Test 003 cpld_control_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/cpld_restart_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -302,14 +302,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 229.676081 -The maximum resident set size (KB) = 2866168 +The total amount of wall time = 234.675511 +The maximum resident set size (KB) = 2863948 Test 004 cpld_restart_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/cpld_2threads_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -362,14 +362,14 @@ Checking test 005 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 370.405964 -The maximum resident set size (KB) = 3281936 +The total amount of wall time = 381.313009 +The maximum resident set size (KB) = 3290572 Test 005 cpld_2threads_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/cpld_decomp_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/cpld_decomp_p8 Checking test 006 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -422,14 +422,14 @@ Checking test 006 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 378.977724 -The maximum resident set size (KB) = 2975988 +The total amount of wall time = 389.760154 +The maximum resident set size (KB) = 2974588 Test 006 cpld_decomp_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/cpld_mpi_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/cpld_mpi_p8 Checking test 007 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -482,14 +482,14 @@ Checking test 007 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 317.820619 -The maximum resident set size (KB) = 2913436 +The total amount of wall time = 326.472614 +The maximum resident set size (KB) = 2906676 Test 007 cpld_mpi_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_ciceC_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/cpld_control_ciceC_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_ciceC_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/cpld_control_ciceC_p8 Checking test 008 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -554,14 +554,14 @@ Checking test 008 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 385.454230 -The maximum resident set size (KB) = 2978008 +The total amount of wall time = 399.029827 +The maximum resident set size (KB) = 2982056 Test 008 cpld_control_ciceC_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/cpld_control_noaero_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/cpld_control_noaero_p8 Checking test 009 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -625,14 +625,14 @@ Checking test 009 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 282.437091 -The maximum resident set size (KB) = 1572904 +The total amount of wall time = 282.666748 +The maximum resident set size (KB) = 1582244 Test 009 cpld_control_noaero_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/cpld_control_nowave_noaero_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c96_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/cpld_control_nowave_noaero_p8 Checking test 010 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -694,14 +694,14 @@ Checking test 010 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 297.651049 -The maximum resident set size (KB) = 1618008 +The total amount of wall time = 301.831387 +The maximum resident set size (KB) = 1633232 Test 010 cpld_control_nowave_noaero_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/cpld_control_noaero_p8_agrid +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_noaero_p8_agrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/cpld_control_noaero_p8_agrid Checking test 011 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -763,14 +763,14 @@ Checking test 011 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 306.725125 -The maximum resident set size (KB) = 1619092 +The total amount of wall time = 310.515637 +The maximum resident set size (KB) = 1628380 Test 011 cpld_control_noaero_p8_agrid PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/cpld_control_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/cpld_control_c48 Checking test 012 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -820,14 +820,14 @@ Checking test 012 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 437.271957 -The maximum resident set size (KB) = 2629684 +The total amount of wall time = 434.753556 +The maximum resident set size (KB) = 2633480 Test 012 cpld_control_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/cpld_warmstart_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/cpld_warmstart_c48 Checking test 013 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -877,14 +877,14 @@ Checking test 013 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 122.531434 -The maximum resident set size (KB) = 2647048 +The total amount of wall time = 121.551386 +The maximum resident set size (KB) = 2644860 Test 013 cpld_warmstart_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/cpld_restart_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/cpld_restart_c48 Checking test 014 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -934,14 +934,14 @@ Checking test 014 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 69.595251 -The maximum resident set size (KB) = 2061648 +The total amount of wall time = 68.605278 +The maximum resident set size (KB) = 2065268 Test 014 cpld_restart_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/cpld_control_p8_faster +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/cpld_control_p8_faster Checking test 015 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1006,14 +1006,14 @@ Checking test 015 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 377.221208 -The maximum resident set size (KB) = 2974656 +The total amount of wall time = 382.811188 +The maximum resident set size (KB) = 2976776 Test 015 cpld_control_p8_faster PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_CubedSphereGrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/control_CubedSphereGrid +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/control_CubedSphereGrid Checking test 016 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1040,14 +1040,14 @@ Checking test 016 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 129.186968 -The maximum resident set size (KB) = 514688 +The total amount of wall time = 129.736639 +The maximum resident set size (KB) = 512992 Test 016 control_CubedSphereGrid PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_latlon -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/control_latlon +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_latlon +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/control_latlon Checking test 017 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1058,14 +1058,14 @@ Checking test 017 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 132.018091 -The maximum resident set size (KB) = 519020 +The total amount of wall time = 132.681069 +The maximum resident set size (KB) = 511140 Test 017 control_latlon PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/control_wrtGauss_netcdf_parallel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/control_wrtGauss_netcdf_parallel Checking test 018 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1076,14 +1076,14 @@ Checking test 018 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 134.523503 -The maximum resident set size (KB) = 511980 +The total amount of wall time = 135.127602 +The maximum resident set size (KB) = 512124 Test 018 control_wrtGauss_netcdf_parallel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/control_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/control_c48 Checking test 019 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1122,14 +1122,14 @@ Checking test 019 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 326.933506 -The maximum resident set size (KB) = 672976 +The total amount of wall time = 326.706800 +The maximum resident set size (KB) = 670340 Test 019 control_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_c192 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/control_c192 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c192 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/control_c192 Checking test 020 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1140,14 +1140,14 @@ Checking test 020 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 529.296238 -The maximum resident set size (KB) = 612568 +The total amount of wall time = 528.017078 +The maximum resident set size (KB) = 613888 Test 020 control_c192 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_c384 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/control_c384 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c384 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/control_c384 Checking test 021 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1158,14 +1158,14 @@ Checking test 021 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 574.657144 -The maximum resident set size (KB) = 908956 +The total amount of wall time = 576.277586 +The maximum resident set size (KB) = 909892 Test 021 control_c384 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_c384gdas -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/control_c384gdas +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c384gdas +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/control_c384gdas Checking test 022 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1208,14 +1208,14 @@ Checking test 022 control_c384gdas 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 = 502.832793 -The maximum resident set size (KB) = 1042308 +The total amount of wall time = 519.102328 +The maximum resident set size (KB) = 1042704 Test 022 control_c384gdas PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/control_stochy +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/control_stochy Checking test 023 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1226,28 +1226,28 @@ Checking test 023 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 89.214648 -The maximum resident set size (KB) = 520480 +The total amount of wall time = 89.281528 +The maximum resident set size (KB) = 516788 Test 023 control_stochy PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/control_stochy_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/control_stochy_restart Checking test 024 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 48.541662 -The maximum resident set size (KB) = 290668 +The total amount of wall time = 48.856146 +The maximum resident set size (KB) = 286316 Test 024 control_stochy_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/control_lndp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/control_lndp Checking test 025 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1258,14 +1258,14 @@ Checking test 025 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 82.934561 -The maximum resident set size (KB) = 519316 +The total amount of wall time = 83.215578 +The maximum resident set size (KB) = 517276 Test 025 control_lndp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_iovr4 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/control_iovr4 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_iovr4 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/control_iovr4 Checking test 026 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1280,14 +1280,14 @@ Checking test 026 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.384609 -The maximum resident set size (KB) = 513684 +The total amount of wall time = 135.379496 +The maximum resident set size (KB) = 514060 Test 026 control_iovr4 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_iovr5 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/control_iovr5 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_iovr5 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/control_iovr5 Checking test 027 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1302,14 +1302,14 @@ Checking test 027 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 136.869483 -The maximum resident set size (KB) = 511232 +The total amount of wall time = 134.947678 +The maximum resident set size (KB) = 512576 Test 027 control_iovr5 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/control_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/control_p8 Checking test 028 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1356,14 +1356,14 @@ Checking test 028 control_p8 results .... 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.130907 -The maximum resident set size (KB) = 1483932 +The total amount of wall time = 179.169195 +The maximum resident set size (KB) = 1482532 Test 028 control_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/control_p8_lndp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/control_p8_lndp Checking test 029 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1382,14 +1382,14 @@ Checking test 029 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 321.739942 -The maximum resident set size (KB) = 1483188 +The total amount of wall time = 320.835284 +The maximum resident set size (KB) = 1486976 Test 029 control_p8_lndp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/control_restart_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/control_restart_p8 Checking test 030 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1428,14 +1428,14 @@ Checking test 030 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 99.125535 -The maximum resident set size (KB) = 653428 +The total amount of wall time = 99.585583 +The maximum resident set size (KB) = 650456 Test 030 control_restart_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/control_decomp_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/control_decomp_p8 Checking test 031 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1478,14 +1478,14 @@ Checking test 031 control_decomp_p8 results .... 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.979783 -The maximum resident set size (KB) = 1483164 +The total amount of wall time = 180.458126 +The maximum resident set size (KB) = 1485632 Test 031 control_decomp_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/control_2threads_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/control_2threads_p8 Checking test 032 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1528,14 +1528,14 @@ Checking test 032 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 159.200135 -The maximum resident set size (KB) = 1566964 +The total amount of wall time = 161.684253 +The maximum resident set size (KB) = 1562484 Test 032 control_2threads_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8_rrtmgp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/control_p8_rrtmgp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_rrtmgp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/control_p8_rrtmgp Checking test 033 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1582,15 +1582,15 @@ Checking test 033 control_p8_rrtmgp results .... 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.633606 -The maximum resident set size (KB) = 1543584 +The total amount of wall time = 235.550320 +The maximum resident set size (KB) = 1546076 Test 033 control_p8_rrtmgp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/merra2_thompson -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/merra2_thompson -Checking test 034 merra2_thompson results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_mynn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/control_p8_mynn +Checking test 034 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1636,15 +1636,69 @@ Checking test 034 merra2_thompson results .... 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.986630 -The maximum resident set size (KB) = 1489684 +The total amount of wall time = 180.643668 +The maximum resident set size (KB) = 1484056 -Test 034 merra2_thompson PASS +Test 034 control_p8_mynn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/regional_control -Checking test 035 regional_control results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/merra2_thompson +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/merra2_thompson +Checking test 035 merra2_thompson results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 204.149271 +The maximum resident set size (KB) = 1492528 + +Test 035 merra2_thompson PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/regional_control +Checking test 036 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1654,29 +1708,29 @@ Checking test 035 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 289.450629 -The maximum resident set size (KB) = 651600 +The total amount of wall time = 287.496752 +The maximum resident set size (KB) = 652608 -Test 035 regional_control PASS +Test 036 regional_control PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/regional_restart -Checking test 036 regional_restart results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/regional_restart +Checking test 037 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 152.196396 -The maximum resident set size (KB) = 650100 +The total amount of wall time = 153.302921 +The maximum resident set size (KB) = 649632 -Test 036 regional_restart PASS +Test 037 regional_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/regional_decomp -Checking test 037 regional_decomp results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/regional_decomp +Checking test 038 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1686,15 +1740,15 @@ Checking test 037 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 304.650926 -The maximum resident set size (KB) = 653804 +The total amount of wall time = 302.274233 +The maximum resident set size (KB) = 647760 -Test 037 regional_decomp PASS +Test 038 regional_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/regional_2threads -Checking test 038 regional_2threads results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/regional_2threads +Checking test 039 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1704,30 +1758,30 @@ Checking test 038 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 181.484209 -The maximum resident set size (KB) = 696288 +The total amount of wall time = 178.370607 +The maximum resident set size (KB) = 694896 -Test 038 regional_2threads PASS +Test 039 regional_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_noquilt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/regional_noquilt -Checking test 039 regional_noquilt results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_noquilt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/regional_noquilt +Checking test 040 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 312.377638 -The maximum resident set size (KB) = 641780 +The total amount of wall time = 310.384790 +The maximum resident set size (KB) = 642368 -Test 039 regional_noquilt PASS +Test 040 regional_noquilt PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/regional_2dwrtdecomp -Checking test 040 regional_2dwrtdecomp results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/regional_2dwrtdecomp +Checking test 041 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1737,15 +1791,15 @@ Checking test 040 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 286.710518 -The maximum resident set size (KB) = 653132 +The total amount of wall time = 287.588562 +The maximum resident set size (KB) = 647320 -Test 040 regional_2dwrtdecomp PASS +Test 041 regional_2dwrtdecomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/fv3_regional_wofs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/regional_wofs -Checking test 041 regional_wofs results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/fv3_regional_wofs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/regional_wofs +Checking test 042 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1755,15 +1809,15 @@ Checking test 041 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 364.611601 -The maximum resident set size (KB) = 338860 +The total amount of wall time = 364.710994 +The maximum resident set size (KB) = 333164 -Test 041 regional_wofs PASS +Test 042 regional_wofs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_ifi_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/regional_ifi_control -Checking test 042 regional_ifi_control results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_ifi_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/regional_ifi_control +Checking test 043 regional_ifi_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1773,15 +1827,15 @@ Checking test 042 regional_ifi_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 323.813023 -The maximum resident set size (KB) = 648780 +The total amount of wall time = 321.451441 +The maximum resident set size (KB) = 648508 -Test 042 regional_ifi_control PASS +Test 043 regional_ifi_control PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_ifi_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/regional_ifi_decomp -Checking test 043 regional_ifi_decomp results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_ifi_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/regional_ifi_decomp +Checking test 044 regional_ifi_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1791,15 +1845,15 @@ Checking test 043 regional_ifi_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 341.129341 -The maximum resident set size (KB) = 653952 +The total amount of wall time = 338.279342 +The maximum resident set size (KB) = 649648 -Test 043 regional_ifi_decomp PASS +Test 044 regional_ifi_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_ifi_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/regional_ifi_2threads -Checking test 044 regional_ifi_2threads results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_ifi_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/regional_ifi_2threads +Checking test 045 regional_ifi_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1809,15 +1863,15 @@ Checking test 044 regional_ifi_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 223.678981 -The maximum resident set size (KB) = 695052 +The total amount of wall time = 221.619945 +The maximum resident set size (KB) = 697608 -Test 044 regional_ifi_2threads PASS +Test 045 regional_ifi_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/rap_control -Checking test 045 rap_control results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/rap_control +Checking test 046 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1863,15 +1917,15 @@ Checking test 045 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 419.216210 -The maximum resident set size (KB) = 893740 +The total amount of wall time = 416.199088 +The maximum resident set size (KB) = 894132 -Test 045 rap_control PASS +Test 046 rap_control PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/regional_spp_sppt_shum_skeb -Checking test 046 regional_spp_sppt_shum_skeb results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_spp_sppt_shum_skeb +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/regional_spp_sppt_shum_skeb +Checking test 047 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -1881,15 +1935,15 @@ Checking test 046 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 288.108730 -The maximum resident set size (KB) = 983076 +The total amount of wall time = 287.138318 +The maximum resident set size (KB) = 978140 -Test 046 regional_spp_sppt_shum_skeb PASS +Test 047 regional_spp_sppt_shum_skeb PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/rap_decomp -Checking test 047 rap_decomp results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/rap_decomp +Checking test 048 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1935,15 +1989,15 @@ Checking test 047 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 433.927928 -The maximum resident set size (KB) = 892700 +The total amount of wall time = 432.416083 +The maximum resident set size (KB) = 894620 -Test 047 rap_decomp PASS +Test 048 rap_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/rap_2threads -Checking test 048 rap_2threads results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/rap_2threads +Checking test 049 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1989,15 +2043,15 @@ Checking test 048 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 391.709036 -The maximum resident set size (KB) = 967932 +The total amount of wall time = 390.983018 +The maximum resident set size (KB) = 964608 -Test 048 rap_2threads PASS +Test 049 rap_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/rap_restart -Checking test 049 rap_restart results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/rap_restart +Checking test 050 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2035,15 +2089,15 @@ Checking test 049 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 213.480958 -The maximum resident set size (KB) = 646088 +The total amount of wall time = 212.282269 +The maximum resident set size (KB) = 641804 -Test 049 rap_restart PASS +Test 050 rap_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/rap_sfcdiff -Checking test 050 rap_sfcdiff results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/rap_sfcdiff +Checking test 051 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2089,15 +2143,15 @@ Checking test 050 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 415.319430 -The maximum resident set size (KB) = 893300 +The total amount of wall time = 414.440435 +The maximum resident set size (KB) = 897116 -Test 050 rap_sfcdiff PASS +Test 051 rap_sfcdiff PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/rap_sfcdiff_decomp -Checking test 051 rap_sfcdiff_decomp results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/rap_sfcdiff_decomp +Checking test 052 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2143,15 +2197,15 @@ Checking test 051 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 433.117429 -The maximum resident set size (KB) = 890388 +The total amount of wall time = 430.217494 +The maximum resident set size (KB) = 894200 -Test 051 rap_sfcdiff_decomp PASS +Test 052 rap_sfcdiff_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/rap_sfcdiff_restart -Checking test 052 rap_sfcdiff_restart results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/rap_sfcdiff_restart +Checking test 053 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2189,15 +2243,15 @@ Checking test 052 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 310.594842 -The maximum resident set size (KB) = 641356 +The total amount of wall time = 309.135325 +The maximum resident set size (KB) = 639260 -Test 052 rap_sfcdiff_restart PASS +Test 053 rap_sfcdiff_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/hrrr_control -Checking test 053 hrrr_control results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/hrrr_control +Checking test 054 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2243,15 +2297,15 @@ Checking test 053 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 399.598896 -The maximum resident set size (KB) = 889628 +The total amount of wall time = 396.141970 +The maximum resident set size (KB) = 887904 -Test 053 hrrr_control PASS +Test 054 hrrr_control PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/hrrr_control_decomp -Checking test 054 hrrr_control_decomp results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/hrrr_control_decomp +Checking test 055 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2297,15 +2351,15 @@ Checking test 054 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 414.883512 -The maximum resident set size (KB) = 888804 +The total amount of wall time = 414.671971 +The maximum resident set size (KB) = 888124 -Test 054 hrrr_control_decomp PASS +Test 055 hrrr_control_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/hrrr_control_2threads -Checking test 055 hrrr_control_2threads results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/hrrr_control_2threads +Checking test 056 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2351,15 +2405,15 @@ Checking test 055 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 372.301101 -The maximum resident set size (KB) = 959696 +The total amount of wall time = 368.678789 +The maximum resident set size (KB) = 956404 -Test 055 hrrr_control_2threads PASS +Test 056 hrrr_control_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/hrrr_control_restart -Checking test 056 hrrr_control_restart results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/hrrr_control_restart +Checking test 057 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2397,15 +2451,15 @@ Checking test 056 hrrr_control_restart results .... 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.796514 -The maximum resident set size (KB) = 643128 +The total amount of wall time = 297.820308 +The maximum resident set size (KB) = 632784 -Test 056 hrrr_control_restart PASS +Test 057 hrrr_control_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_v1beta -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/rrfs_v1beta -Checking test 057 rrfs_v1beta results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1beta +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/rrfs_v1beta +Checking test 058 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2451,15 +2505,15 @@ Checking test 057 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 410.200293 -The maximum resident set size (KB) = 883548 +The total amount of wall time = 410.293094 +The maximum resident set size (KB) = 890668 -Test 057 rrfs_v1beta PASS +Test 058 rrfs_v1beta PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_v1nssl -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/rrfs_v1nssl -Checking test 058 rrfs_v1nssl results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1nssl +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/rrfs_v1nssl +Checking test 059 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2473,15 +2527,15 @@ Checking test 058 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 471.995623 -The maximum resident set size (KB) = 574464 +The total amount of wall time = 474.192315 +The maximum resident set size (KB) = 573040 -Test 058 rrfs_v1nssl PASS +Test 059 rrfs_v1nssl PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/rrfs_v1nssl_nohailnoccn -Checking test 059 rrfs_v1nssl_nohailnoccn results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/rrfs_v1nssl_nohailnoccn +Checking test 060 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2495,30 +2549,14 @@ Checking test 059 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 462.271003 -The maximum resident set size (KB) = 565268 +The total amount of wall time = 464.305457 +The maximum resident set size (KB) = 564768 -Test 059 rrfs_v1nssl_nohailnoccn PASS +Test 060 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/rrfs_conus13km_hrrr_warm -Checking test 060 rrfs_conus13km_hrrr_warm 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 = 114.836438 -The maximum resident set size (KB) = 758484 - -Test 060 rrfs_conus13km_hrrr_warm PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/rrfs_smoke_conus13km_hrrr_warm Checking test 061 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2527,15 +2565,15 @@ Checking test 061 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 126.856673 -The maximum resident set size (KB) = 774360 +The total amount of wall time = 143.622376 +The maximum resident set size (KB) = 790732 Test 061 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/rrfs_conus13km_radar_tten_warm -Checking test 062 rrfs_conus13km_radar_tten_warm results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/rrfs_smoke_conus13km_hrrr_warm_2threads +Checking test 062 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2543,15 +2581,15 @@ Checking test 062 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 114.595876 -The maximum resident set size (KB) = 763424 +The total amount of wall time = 103.548448 +The maximum resident set size (KB) = 802044 -Test 062 rrfs_conus13km_radar_tten_warm PASS +Test 062 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/rrfs_conus13km_hrrr_warm_2threads -Checking test 063 rrfs_conus13km_hrrr_warm_2threads results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/rrfs_conus13km_hrrr_warm +Checking test 063 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2559,15 +2597,15 @@ Checking test 063 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 83.795698 -The maximum resident set size (KB) = 762576 +The total amount of wall time = 130.297259 +The maximum resident set size (KB) = 774692 -Test 063 rrfs_conus13km_hrrr_warm_2threads PASS +Test 063 rrfs_conus13km_hrrr_warm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/rrfs_conus13km_radar_tten_warm_2threads -Checking test 064 rrfs_conus13km_radar_tten_warm_2threads results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/rrfs_smoke_conus13km_radar_tten_warm +Checking test 064 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2575,14 +2613,14 @@ Checking test 064 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 84.637876 -The maximum resident set size (KB) = 764604 +The total amount of wall time = 145.000526 +The maximum resident set size (KB) = 798928 -Test 064 rrfs_conus13km_radar_tten_warm_2threads PASS +Test 064 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_csawmg -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/control_csawmg +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmg +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/control_csawmg Checking test 065 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2593,14 +2631,14 @@ Checking test 065 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 352.886635 -The maximum resident set size (KB) = 583244 +The total amount of wall time = 348.213092 +The maximum resident set size (KB) = 584780 Test 065 control_csawmg PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_csawmgt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/control_csawmgt +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmgt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/control_csawmgt Checking test 066 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2611,14 +2649,14 @@ Checking test 066 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 348.315742 -The maximum resident set size (KB) = 590848 +The total amount of wall time = 344.565625 +The maximum resident set size (KB) = 585196 Test 066 control_csawmgt PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_ras -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/control_ras +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_ras +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/control_ras Checking test 067 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2629,26 +2667,26 @@ Checking test 067 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 181.938031 -The maximum resident set size (KB) = 550200 +The total amount of wall time = 181.622794 +The maximum resident set size (KB) = 551820 Test 067 control_ras PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_wam -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/control_wam +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wam +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/control_wam Checking test 068 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 117.039141 -The maximum resident set size (KB) = 268896 +The total amount of wall time = 117.140290 +The maximum resident set size (KB) = 269656 Test 068 control_wam PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/control_p8_faster +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/control_p8_faster Checking test 069 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2695,14 +2733,14 @@ Checking test 069 control_p8_faster results .... 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.426291 -The maximum resident set size (KB) = 1480712 +The total amount of wall time = 172.278630 +The maximum resident set size (KB) = 1488544 Test 069 control_p8_faster PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_control_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/regional_control_faster +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/regional_control_faster Checking test 070 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2713,43 +2751,57 @@ Checking test 070 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 281.606805 -The maximum resident set size (KB) = 653448 +The total amount of wall time = 279.048748 +The maximum resident set size (KB) = 646320 Test 070 regional_control_faster PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/rrfs_conus13km_hrrr_warm_debug -Checking test 071 rrfs_conus13km_hrrr_warm_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/rrfs_smoke_conus13km_hrrr_warm_debug +Checking test 071 rrfs_smoke_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 901.133140 +The maximum resident set size (KB) = 830264 + +Test 071 rrfs_smoke_conus13km_hrrr_warm_debug PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +Checking test 072 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 782.641414 -The maximum resident set size (KB) = 789492 +The total amount of wall time = 525.594259 +The maximum resident set size (KB) = 835832 -Test 071 rrfs_conus13km_hrrr_warm_debug PASS +Test 072 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/rrfs_conus13km_radar_tten_warm_debug -Checking test 072 rrfs_conus13km_radar_tten_warm_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/rrfs_conus13km_hrrr_warm_debug +Checking test 073 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 779.096403 -The maximum resident set size (KB) = 795008 +The total amount of wall time = 812.196847 +The maximum resident set size (KB) = 804500 -Test 072 rrfs_conus13km_radar_tten_warm_debug PASS +Test 073 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_CubedSphereGrid_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/control_CubedSphereGrid_debug -Checking test 073 control_CubedSphereGrid_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/control_CubedSphereGrid_debug +Checking test 074 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -2775,335 +2827,335 @@ Checking test 073 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 167.673383 -The maximum resident set size (KB) = 672980 +The total amount of wall time = 166.451561 +The maximum resident set size (KB) = 674648 -Test 073 control_CubedSphereGrid_debug PASS +Test 074 control_CubedSphereGrid_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/control_wrtGauss_netcdf_parallel_debug -Checking test 074 control_wrtGauss_netcdf_parallel_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/control_wrtGauss_netcdf_parallel_debug +Checking test 075 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 160.188574 -The maximum resident set size (KB) = 676340 +The total amount of wall time = 158.379935 +The maximum resident set size (KB) = 677996 -Test 074 control_wrtGauss_netcdf_parallel_debug PASS +Test 075 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_stochy_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/control_stochy_debug -Checking test 075 control_stochy_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/control_stochy_debug +Checking test 076 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 180.681464 -The maximum resident set size (KB) = 680564 +The total amount of wall time = 179.566328 +The maximum resident set size (KB) = 682612 -Test 075 control_stochy_debug PASS +Test 076 control_stochy_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/control_lndp_debug -Checking test 076 control_lndp_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/control_lndp_debug +Checking test 077 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 162.002099 -The maximum resident set size (KB) = 681880 +The total amount of wall time = 161.339038 +The maximum resident set size (KB) = 684296 -Test 076 control_lndp_debug PASS +Test 077 control_lndp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_csawmg_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/control_csawmg_debug -Checking test 077 control_csawmg_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmg_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/control_csawmg_debug +Checking test 078 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 259.390450 -The maximum resident set size (KB) = 721084 +The total amount of wall time = 256.203816 +The maximum resident set size (KB) = 721212 -Test 077 control_csawmg_debug PASS +Test 078 control_csawmg_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_csawmgt_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/control_csawmgt_debug -Checking test 078 control_csawmgt_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmgt_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/control_csawmgt_debug +Checking test 079 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 253.383096 -The maximum resident set size (KB) = 717852 +The total amount of wall time = 253.269627 +The maximum resident set size (KB) = 718664 -Test 078 control_csawmgt_debug PASS +Test 079 control_csawmgt_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_ras_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/control_ras_debug -Checking test 079 control_ras_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_ras_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/control_ras_debug +Checking test 080 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 162.896394 -The maximum resident set size (KB) = 689120 +The total amount of wall time = 165.124102 +The maximum resident set size (KB) = 695640 -Test 079 control_ras_debug PASS +Test 080 control_ras_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/control_diag_debug -Checking test 080 control_diag_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/control_diag_debug +Checking test 081 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 165.166534 -The maximum resident set size (KB) = 738116 +The total amount of wall time = 164.687524 +The maximum resident set size (KB) = 736408 -Test 080 control_diag_debug PASS +Test 081 control_diag_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_debug_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/control_debug_p8 -Checking test 081 control_debug_p8 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_debug_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/control_debug_p8 +Checking test 082 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 186.214458 -The maximum resident set size (KB) = 1503016 +The total amount of wall time = 189.901765 +The maximum resident set size (KB) = 1505172 -Test 081 control_debug_p8 PASS +Test 082 control_debug_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/regional_debug -Checking test 082 regional_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/regional_debug +Checking test 083 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1048.685534 -The maximum resident set size (KB) = 677292 +The total amount of wall time = 1043.404478 +The maximum resident set size (KB) = 677088 -Test 082 regional_debug PASS +Test 083 regional_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/rap_control_debug -Checking test 083 rap_control_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/rap_control_debug +Checking test 084 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 301.190251 -The maximum resident set size (KB) = 1057436 +The total amount of wall time = 300.024660 +The maximum resident set size (KB) = 1054676 -Test 083 rap_control_debug PASS +Test 084 rap_control_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/hrrr_control_debug -Checking test 084 hrrr_control_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/hrrr_control_debug +Checking test 085 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 294.523007 -The maximum resident set size (KB) = 1048852 +The total amount of wall time = 292.651285 +The maximum resident set size (KB) = 1054836 -Test 084 hrrr_control_debug PASS +Test 085 hrrr_control_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/rap_unified_drag_suite_debug -Checking test 085 rap_unified_drag_suite_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/rap_unified_drag_suite_debug +Checking test 086 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.953307 -The maximum resident set size (KB) = 1054564 +The total amount of wall time = 298.740551 +The maximum resident set size (KB) = 1058788 -Test 085 rap_unified_drag_suite_debug PASS +Test 086 rap_unified_drag_suite_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/rap_diag_debug -Checking test 086 rap_diag_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/rap_diag_debug +Checking test 087 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 311.505485 -The maximum resident set size (KB) = 1137600 +The total amount of wall time = 310.382175 +The maximum resident set size (KB) = 1137192 -Test 086 rap_diag_debug PASS +Test 087 rap_diag_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/rap_cires_ugwp_debug -Checking test 087 rap_cires_ugwp_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/rap_cires_ugwp_debug +Checking test 088 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 306.903844 -The maximum resident set size (KB) = 1055652 +The total amount of wall time = 305.596621 +The maximum resident set size (KB) = 1053100 -Test 087 rap_cires_ugwp_debug PASS +Test 088 rap_cires_ugwp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/rap_unified_ugwp_debug -Checking test 088 rap_unified_ugwp_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/rap_unified_ugwp_debug +Checking test 089 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 306.709626 -The maximum resident set size (KB) = 1058152 +The total amount of wall time = 307.190048 +The maximum resident set size (KB) = 1054808 -Test 088 rap_unified_ugwp_debug PASS +Test 089 rap_unified_ugwp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/rap_lndp_debug -Checking test 089 rap_lndp_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/rap_lndp_debug +Checking test 090 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 303.399194 -The maximum resident set size (KB) = 1056908 +The total amount of wall time = 302.172087 +The maximum resident set size (KB) = 1058796 -Test 089 rap_lndp_debug PASS +Test 090 rap_lndp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_flake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/rap_flake_debug -Checking test 090 rap_flake_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_flake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/rap_flake_debug +Checking test 091 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 301.059964 -The maximum resident set size (KB) = 1054540 +The total amount of wall time = 299.718348 +The maximum resident set size (KB) = 1053364 -Test 090 rap_flake_debug PASS +Test 091 rap_flake_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_progcld_thompson_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/rap_progcld_thompson_debug -Checking test 091 rap_progcld_thompson_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_progcld_thompson_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/rap_progcld_thompson_debug +Checking test 092 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.578319 -The maximum resident set size (KB) = 1054224 +The total amount of wall time = 299.071728 +The maximum resident set size (KB) = 1057064 -Test 091 rap_progcld_thompson_debug PASS +Test 092 rap_progcld_thompson_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_noah_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/rap_noah_debug -Checking test 092 rap_noah_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_noah_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/rap_noah_debug +Checking test 093 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 294.318083 -The maximum resident set size (KB) = 1051504 +The total amount of wall time = 292.228567 +The maximum resident set size (KB) = 1055648 -Test 092 rap_noah_debug PASS +Test 093 rap_noah_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_sfcdiff_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/rap_sfcdiff_debug -Checking test 093 rap_sfcdiff_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/rap_sfcdiff_debug +Checking test 094 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 301.281189 -The maximum resident set size (KB) = 1053576 +The total amount of wall time = 299.278145 +The maximum resident set size (KB) = 1053108 -Test 093 rap_sfcdiff_debug PASS +Test 094 rap_sfcdiff_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 094 rap_noah_sfcdiff_cires_ugwp_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 095 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 494.499347 -The maximum resident set size (KB) = 1051312 +The total amount of wall time = 488.849448 +The maximum resident set size (KB) = 1052312 -Test 094 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 095 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_v1beta_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/rrfs_v1beta_debug -Checking test 095 rrfs_v1beta_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1beta_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/rrfs_v1beta_debug +Checking test 096 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 294.948689 -The maximum resident set size (KB) = 1053404 +The total amount of wall time = 292.940337 +The maximum resident set size (KB) = 1050788 -Test 095 rrfs_v1beta_debug PASS +Test 096 rrfs_v1beta_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_wam_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/control_wam_debug -Checking test 096 control_wam_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wam_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/control_wam_debug +Checking test 097 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 298.727206 -The maximum resident set size (KB) = 300704 +The total amount of wall time = 299.228467 +The maximum resident set size (KB) = 301692 -Test 096 control_wam_debug PASS +Test 097 control_wam_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/regional_spp_sppt_shum_skeb_dyn32_phy32 -Checking test 097 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 098 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -3113,15 +3165,15 @@ Checking test 097 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 271.636452 -The maximum resident set size (KB) = 876520 +The total amount of wall time = 270.012573 +The maximum resident set size (KB) = 884332 -Test 097 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS +Test 098 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/rap_control_dyn32_phy32 -Checking test 098 rap_control_dyn32_phy32 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/rap_control_dyn32_phy32 +Checking test 099 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3167,15 +3219,15 @@ Checking test 098 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 343.328650 -The maximum resident set size (KB) = 774540 +The total amount of wall time = 342.065945 +The maximum resident set size (KB) = 776008 -Test 098 rap_control_dyn32_phy32 PASS +Test 099 rap_control_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/hrrr_control_dyn32_phy32 -Checking test 099 hrrr_control_dyn32_phy32 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/hrrr_control_dyn32_phy32 +Checking test 100 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3221,15 +3273,15 @@ Checking test 099 hrrr_control_dyn32_phy32 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 = 184.531887 -The maximum resident set size (KB) = 771268 +The total amount of wall time = 184.079281 +The maximum resident set size (KB) = 771556 -Test 099 hrrr_control_dyn32_phy32 PASS +Test 100 hrrr_control_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/rap_2threads_dyn32_phy32 -Checking test 100 rap_2threads_dyn32_phy32 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/rap_2threads_dyn32_phy32 +Checking test 101 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3275,15 +3327,15 @@ Checking test 100 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 319.721165 -The maximum resident set size (KB) = 830612 +The total amount of wall time = 319.260165 +The maximum resident set size (KB) = 832656 -Test 100 rap_2threads_dyn32_phy32 PASS +Test 101 rap_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/hrrr_control_2threads_dyn32_phy32 -Checking test 101 hrrr_control_2threads_dyn32_phy32 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/hrrr_control_2threads_dyn32_phy32 +Checking test 102 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3329,15 +3381,15 @@ Checking test 101 hrrr_control_2threads_dyn32_phy32 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 = 173.913977 -The maximum resident set size (KB) = 828292 +The total amount of wall time = 175.058804 +The maximum resident set size (KB) = 827064 -Test 101 hrrr_control_2threads_dyn32_phy32 PASS +Test 102 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/hrrr_control_decomp_dyn32_phy32 -Checking test 102 hrrr_control_decomp_dyn32_phy32 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/hrrr_control_decomp_dyn32_phy32 +Checking test 103 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3383,15 +3435,15 @@ Checking test 102 hrrr_control_decomp_dyn32_phy32 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 = 191.703348 -The maximum resident set size (KB) = 773652 +The total amount of wall time = 192.115303 +The maximum resident set size (KB) = 773744 -Test 102 hrrr_control_decomp_dyn32_phy32 PASS +Test 103 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/rap_restart_dyn32_phy32 -Checking test 103 rap_restart_dyn32_phy32 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/rap_restart_dyn32_phy32 +Checking test 104 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3429,15 +3481,15 @@ Checking test 103 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 255.837439 -The maximum resident set size (KB) = 614160 +The total amount of wall time = 255.159582 +The maximum resident set size (KB) = 610148 -Test 103 rap_restart_dyn32_phy32 PASS +Test 104 rap_restart_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/hrrr_control_restart_dyn32_phy32 -Checking test 104 hrrr_control_restart_dyn32_phy32 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/hrrr_control_restart_dyn32_phy32 +Checking test 105 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3475,15 +3527,15 @@ Checking test 104 hrrr_control_restart_dyn32_phy32 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 = 95.697356 -The maximum resident set size (KB) = 606020 +The total amount of wall time = 95.188834 +The maximum resident set size (KB) = 604600 -Test 104 hrrr_control_restart_dyn32_phy32 PASS +Test 105 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/rap_control_dyn64_phy32 -Checking test 105 rap_control_dyn64_phy32 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/rap_control_dyn64_phy32 +Checking test 106 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3529,82 +3581,82 @@ Checking test 105 rap_control_dyn64_phy32 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 = 232.193414 -The maximum resident set size (KB) = 798516 +The total amount of wall time = 232.151845 +The maximum resident set size (KB) = 797360 -Test 105 rap_control_dyn64_phy32 PASS +Test 106 rap_control_dyn64_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/rap_control_debug_dyn32_phy32 -Checking test 106 rap_control_debug_dyn32_phy32 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/rap_control_debug_dyn32_phy32 +Checking test 107 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 292.161417 -The maximum resident set size (KB) = 939048 +The total amount of wall time = 290.313345 +The maximum resident set size (KB) = 941232 -Test 106 rap_control_debug_dyn32_phy32 PASS +Test 107 rap_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/hrrr_control_debug_dyn32_phy32 -Checking test 107 hrrr_control_debug_dyn32_phy32 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/hrrr_control_debug_dyn32_phy32 +Checking test 108 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 288.649605 -The maximum resident set size (KB) = 935720 +The total amount of wall time = 286.483750 +The maximum resident set size (KB) = 937876 -Test 107 hrrr_control_debug_dyn32_phy32 PASS +Test 108 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/rap_control_dyn64_phy32_debug -Checking test 108 rap_control_dyn64_phy32_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/rap_control_dyn64_phy32_debug +Checking test 109 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 294.256089 -The maximum resident set size (KB) = 951552 +The total amount of wall time = 292.247645 +The maximum resident set size (KB) = 960128 -Test 108 rap_control_dyn64_phy32_debug PASS +Test 109 rap_control_dyn64_phy32_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/hafs_regional_atm -Checking test 109 hafs_regional_atm results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/hafs_regional_atm +Checking test 110 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 266.055450 -The maximum resident set size (KB) = 822240 +The total amount of wall time = 264.690863 +The maximum resident set size (KB) = 822044 -Test 109 hafs_regional_atm PASS +Test 110 hafs_regional_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/hafs_regional_atm_thompson_gfdlsf -Checking test 110 hafs_regional_atm_thompson_gfdlsf results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/hafs_regional_atm_thompson_gfdlsf +Checking test 111 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 306.669425 -The maximum resident set size (KB) = 1178184 +The total amount of wall time = 303.619000 +The maximum resident set size (KB) = 1180872 -Test 110 hafs_regional_atm_thompson_gfdlsf PASS +Test 111 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/hafs_regional_atm_ocn -Checking test 111 hafs_regional_atm_ocn results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/hafs_regional_atm_ocn +Checking test 112 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -3612,15 +3664,15 @@ Checking test 111 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 387.844582 -The maximum resident set size (KB) = 851236 +The total amount of wall time = 386.969659 +The maximum resident set size (KB) = 854640 -Test 111 hafs_regional_atm_ocn PASS +Test 112 hafs_regional_atm_ocn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_atm_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/hafs_regional_atm_wav -Checking test 112 hafs_regional_atm_wav results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/hafs_regional_atm_wav +Checking test 113 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK @@ -3628,15 +3680,15 @@ Checking test 112 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 702.379242 -The maximum resident set size (KB) = 883380 +The total amount of wall time = 703.178677 +The maximum resident set size (KB) = 882804 -Test 112 hafs_regional_atm_wav PASS +Test 113 hafs_regional_atm_wav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/hafs_regional_atm_ocn_wav -Checking test 113 hafs_regional_atm_ocn_wav results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/hafs_regional_atm_ocn_wav +Checking test 114 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -3646,29 +3698,29 @@ Checking test 113 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 889.298106 -The maximum resident set size (KB) = 906928 +The total amount of wall time = 890.117684 +The maximum resident set size (KB) = 909008 -Test 113 hafs_regional_atm_ocn_wav PASS +Test 114 hafs_regional_atm_ocn_wav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/hafs_regional_1nest_atm -Checking test 114 hafs_regional_1nest_atm results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/hafs_regional_1nest_atm +Checking test 115 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 325.476663 -The maximum resident set size (KB) = 387276 +The total amount of wall time = 327.256689 +The maximum resident set size (KB) = 388744 -Test 114 hafs_regional_1nest_atm PASS +Test 115 hafs_regional_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/hafs_regional_telescopic_2nests_atm -Checking test 115 hafs_regional_telescopic_2nests_atm results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/hafs_regional_telescopic_2nests_atm +Checking test 116 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -3676,29 +3728,29 @@ Checking test 115 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 397.908669 -The maximum resident set size (KB) = 413472 +The total amount of wall time = 398.615447 +The maximum resident set size (KB) = 410088 -Test 115 hafs_regional_telescopic_2nests_atm PASS +Test 116 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_global_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/hafs_global_1nest_atm -Checking test 116 hafs_global_1nest_atm results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/hafs_global_1nest_atm +Checking test 117 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 165.393401 -The maximum resident set size (KB) = 263528 +The total amount of wall time = 166.912228 +The maximum resident set size (KB) = 260312 -Test 116 hafs_global_1nest_atm PASS +Test 117 hafs_global_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_global_multiple_4nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/hafs_global_multiple_4nests_atm -Checking test 117 hafs_global_multiple_4nests_atm results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_multiple_4nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/hafs_global_multiple_4nests_atm +Checking test 118 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -3715,15 +3767,15 @@ Checking test 117 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -The total amount of wall time = 489.392898 -The maximum resident set size (KB) = 337980 +The total amount of wall time = 490.843634 +The maximum resident set size (KB) = 339216 -Test 117 hafs_global_multiple_4nests_atm PASS +Test 118 hafs_global_multiple_4nests_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/hafs_regional_specified_moving_1nest_atm -Checking test 118 hafs_regional_specified_moving_1nest_atm results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/hafs_regional_specified_moving_1nest_atm +Checking test 119 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -3731,29 +3783,29 @@ Checking test 118 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 211.856241 -The maximum resident set size (KB) = 402812 +The total amount of wall time = 212.447259 +The maximum resident set size (KB) = 406520 -Test 118 hafs_regional_specified_moving_1nest_atm PASS +Test 119 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/hafs_regional_storm_following_1nest_atm -Checking test 119 hafs_regional_storm_following_1nest_atm results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/hafs_regional_storm_following_1nest_atm +Checking test 120 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 199.888508 -The maximum resident set size (KB) = 399332 +The total amount of wall time = 199.946760 +The maximum resident set size (KB) = 402996 -Test 119 hafs_regional_storm_following_1nest_atm PASS +Test 120 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/hafs_regional_storm_following_1nest_atm_ocn -Checking test 120 hafs_regional_storm_following_1nest_atm_ocn results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/hafs_regional_storm_following_1nest_atm_ocn +Checking test 121 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -3761,43 +3813,43 @@ Checking test 120 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 240.002963 -The maximum resident set size (KB) = 451844 +The total amount of wall time = 240.712425 +The maximum resident set size (KB) = 452108 -Test 120 hafs_regional_storm_following_1nest_atm_ocn PASS +Test 121 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/hafs_global_storm_following_1nest_atm -Checking test 121 hafs_global_storm_following_1nest_atm results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/hafs_global_storm_following_1nest_atm +Checking test 122 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 78.611661 -The maximum resident set size (KB) = 281300 +The total amount of wall time = 78.539063 +The maximum resident set size (KB) = 276948 -Test 121 hafs_global_storm_following_1nest_atm PASS +Test 122 hafs_global_storm_following_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/hafs_regional_storm_following_1nest_atm_ocn_debug -Checking test 122 hafs_regional_storm_following_1nest_atm_ocn_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/hafs_regional_storm_following_1nest_atm_ocn_debug +Checking test 123 hafs_regional_storm_following_1nest_atm_ocn_debug 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.926282 -The maximum resident set size (KB) = 478808 +The total amount of wall time = 803.779841 +The maximum resident set size (KB) = 477836 -Test 122 hafs_regional_storm_following_1nest_atm_ocn_debug PASS +Test 123 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/hafs_regional_storm_following_1nest_atm_ocn_wav -Checking test 123 hafs_regional_storm_following_1nest_atm_ocn_wav results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 124 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -3807,162 +3859,162 @@ Checking test 123 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -The total amount of wall time = 516.160088 -The maximum resident set size (KB) = 517844 +The total amount of wall time = 519.471668 +The maximum resident set size (KB) = 524272 -Test 123 hafs_regional_storm_following_1nest_atm_ocn_wav PASS +Test 124 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_docn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/hafs_regional_docn -Checking test 124 hafs_regional_docn results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_docn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/hafs_regional_docn +Checking test 125 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 367.207102 -The maximum resident set size (KB) = 852700 +The total amount of wall time = 368.530978 +The maximum resident set size (KB) = 857332 -Test 124 hafs_regional_docn PASS +Test 125 hafs_regional_docn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_docn_oisst -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/hafs_regional_docn_oisst -Checking test 125 hafs_regional_docn_oisst results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_docn_oisst +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/hafs_regional_docn_oisst +Checking test 126 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 371.422840 -The maximum resident set size (KB) = 841896 +The total amount of wall time = 370.375724 +The maximum resident set size (KB) = 843268 -Test 125 hafs_regional_docn_oisst PASS +Test 126 hafs_regional_docn_oisst PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_datm_cdeps -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/hafs_regional_datm_cdeps -Checking test 126 hafs_regional_datm_cdeps results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_datm_cdeps +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/hafs_regional_datm_cdeps +Checking test 127 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -The total amount of wall time = 947.163735 -The maximum resident set size (KB) = 836580 +The total amount of wall time = 946.570529 +The maximum resident set size (KB) = 866908 -Test 126 hafs_regional_datm_cdeps PASS +Test 127 hafs_regional_datm_cdeps PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/datm_cdeps_control_cfsr -Checking test 127 datm_cdeps_control_cfsr results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/datm_cdeps_control_cfsr +Checking test 128 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 140.994937 -The maximum resident set size (KB) = 734840 +The total amount of wall time = 141.090379 +The maximum resident set size (KB) = 731936 -Test 127 datm_cdeps_control_cfsr PASS +Test 128 datm_cdeps_control_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/datm_cdeps_restart_cfsr -Checking test 128 datm_cdeps_restart_cfsr results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/datm_cdeps_restart_cfsr +Checking test 129 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 85.773234 -The maximum resident set size (KB) = 730380 +The total amount of wall time = 85.601647 +The maximum resident set size (KB) = 728220 -Test 128 datm_cdeps_restart_cfsr PASS +Test 129 datm_cdeps_restart_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_control_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/datm_cdeps_control_gefs -Checking test 129 datm_cdeps_control_gefs results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/datm_cdeps_control_gefs +Checking test 130 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 133.323421 -The maximum resident set size (KB) = 612740 +The total amount of wall time = 133.463506 +The maximum resident set size (KB) = 616052 -Test 129 datm_cdeps_control_gefs PASS +Test 130 datm_cdeps_control_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_iau_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/datm_cdeps_iau_gefs -Checking test 130 datm_cdeps_iau_gefs results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_iau_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/datm_cdeps_iau_gefs +Checking test 131 datm_cdeps_iau_gefs 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.786052 -The maximum resident set size (KB) = 613024 +The total amount of wall time = 136.501450 +The maximum resident set size (KB) = 615224 -Test 130 datm_cdeps_iau_gefs PASS +Test 131 datm_cdeps_iau_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_stochy_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/datm_cdeps_stochy_gefs -Checking test 131 datm_cdeps_stochy_gefs results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_stochy_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/datm_cdeps_stochy_gefs +Checking test 132 datm_cdeps_stochy_gefs 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.993854 -The maximum resident set size (KB) = 616896 +The total amount of wall time = 138.378145 +The maximum resident set size (KB) = 616996 -Test 131 datm_cdeps_stochy_gefs PASS +Test 132 datm_cdeps_stochy_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/datm_cdeps_ciceC_cfsr -Checking test 132 datm_cdeps_ciceC_cfsr results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_ciceC_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/datm_cdeps_ciceC_cfsr +Checking test 133 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.458523 -The maximum resident set size (KB) = 733372 +The total amount of wall time = 141.267516 +The maximum resident set size (KB) = 733072 -Test 132 datm_cdeps_ciceC_cfsr PASS +Test 133 datm_cdeps_ciceC_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/datm_cdeps_bulk_cfsr -Checking test 133 datm_cdeps_bulk_cfsr results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_bulk_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/datm_cdeps_bulk_cfsr +Checking test 134 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.245153 -The maximum resident set size (KB) = 732172 +The total amount of wall time = 142.166077 +The maximum resident set size (KB) = 732756 -Test 133 datm_cdeps_bulk_cfsr PASS +Test 134 datm_cdeps_bulk_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/datm_cdeps_bulk_gefs -Checking test 134 datm_cdeps_bulk_gefs results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_bulk_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/datm_cdeps_bulk_gefs +Checking test 135 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 133.871109 -The maximum resident set size (KB) = 621744 +The total amount of wall time = 134.277567 +The maximum resident set size (KB) = 620156 -Test 134 datm_cdeps_bulk_gefs PASS +Test 135 datm_cdeps_bulk_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/datm_cdeps_mx025_cfsr -Checking test 135 datm_cdeps_mx025_cfsr results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_mx025_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/datm_cdeps_mx025_cfsr +Checking test 136 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -3970,15 +4022,15 @@ Checking test 135 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 432.400216 -The maximum resident set size (KB) = 571820 +The total amount of wall time = 429.189469 +The maximum resident set size (KB) = 572400 -Test 135 datm_cdeps_mx025_cfsr PASS +Test 136 datm_cdeps_mx025_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/datm_cdeps_mx025_gefs -Checking test 136 datm_cdeps_mx025_gefs results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_mx025_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/datm_cdeps_mx025_gefs +Checking test 137 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -3986,65 +4038,65 @@ Checking test 136 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 429.300592 -The maximum resident set size (KB) = 547060 +The total amount of wall time = 427.417307 +The maximum resident set size (KB) = 550644 -Test 136 datm_cdeps_mx025_gefs PASS +Test 137 datm_cdeps_mx025_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/datm_cdeps_multiple_files_cfsr -Checking test 137 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/datm_cdeps_multiple_files_cfsr +Checking test 138 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 140.746361 -The maximum resident set size (KB) = 731244 +The total amount of wall time = 141.582651 +The maximum resident set size (KB) = 733168 -Test 137 datm_cdeps_multiple_files_cfsr PASS +Test 138 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/datm_cdeps_3072x1536_cfsr -Checking test 138 datm_cdeps_3072x1536_cfsr results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/datm_cdeps_3072x1536_cfsr +Checking test 139 datm_cdeps_3072x1536_cfsr 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 = 256.382546 -The maximum resident set size (KB) = 1980804 +The total amount of wall time = 256.025895 +The maximum resident set size (KB) = 1980052 -Test 138 datm_cdeps_3072x1536_cfsr PASS +Test 139 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_gfs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/datm_cdeps_gfs -Checking test 139 datm_cdeps_gfs results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_gfs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/datm_cdeps_gfs +Checking test 140 datm_cdeps_gfs 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 = 257.056736 -The maximum resident set size (KB) = 1980596 +The total amount of wall time = 255.747850 +The maximum resident set size (KB) = 1978128 -Test 139 datm_cdeps_gfs PASS +Test 140 datm_cdeps_gfs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_control_cfsr_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/datm_cdeps_control_cfsr_faster -Checking test 140 datm_cdeps_control_cfsr_faster results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/datm_cdeps_control_cfsr_faster +Checking test 141 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.194100 -The maximum resident set size (KB) = 732520 +The total amount of wall time = 141.563288 +The maximum resident set size (KB) = 731984 -Test 140 datm_cdeps_control_cfsr_faster PASS +Test 141 datm_cdeps_control_cfsr_faster PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/datm_cdeps_lnd_gswp3 -Checking test 141 datm_cdeps_lnd_gswp3 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/datm_cdeps_lnd_gswp3 +Checking test 142 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4052,15 +4104,15 @@ Checking test 141 datm_cdeps_lnd_gswp3 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 = 21.969593 -The maximum resident set size (KB) = 226748 +The total amount of wall time = 21.880115 +The maximum resident set size (KB) = 228612 -Test 141 datm_cdeps_lnd_gswp3 PASS +Test 142 datm_cdeps_lnd_gswp3 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/datm_cdeps_lnd_gswp3_rst -Checking test 142 datm_cdeps_lnd_gswp3_rst results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/datm_cdeps_lnd_gswp3_rst +Checking test 143 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4068,15 +4120,15 @@ Checking test 142 datm_cdeps_lnd_gswp3_rst 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.532237 -The maximum resident set size (KB) = 227900 +The total amount of wall time = 27.399086 +The maximum resident set size (KB) = 224204 -Test 142 datm_cdeps_lnd_gswp3_rst PASS +Test 143 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8_atmlnd_sbs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/control_p8_atmlnd_sbs -Checking test 143 control_p8_atmlnd_sbs results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_atmlnd_sbs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/control_p8_atmlnd_sbs +Checking test 144 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -4160,15 +4212,15 @@ Checking test 143 control_p8_atmlnd_sbs 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 = 232.502816 -The maximum resident set size (KB) = 1540544 +The total amount of wall time = 234.706705 +The maximum resident set size (KB) = 1538884 -Test 143 control_p8_atmlnd_sbs PASS +Test 144 control_p8_atmlnd_sbs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_atmwav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/control_atmwav -Checking test 144 control_atmwav results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_atmwav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/control_atmwav +Checking test 145 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -4211,15 +4263,15 @@ Checking test 144 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -The total amount of wall time = 91.491844 -The maximum resident set size (KB) = 538492 +The total amount of wall time = 90.801574 +The maximum resident set size (KB) = 539392 -Test 144 control_atmwav PASS +Test 145 control_atmwav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/atmaero_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/atmaero_control_p8 -Checking test 145 atmaero_control_p8 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/atmaero_control_p8 +Checking test 146 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4262,15 +4314,15 @@ Checking test 145 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 243.176325 -The maximum resident set size (KB) = 2812664 +The total amount of wall time = 243.460433 +The maximum resident set size (KB) = 2815884 -Test 145 atmaero_control_p8 PASS +Test 146 atmaero_control_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/atmaero_control_p8_rad -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/atmaero_control_p8_rad -Checking test 146 atmaero_control_p8_rad results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8_rad +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/atmaero_control_p8_rad +Checking test 147 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4313,15 +4365,15 @@ Checking test 146 atmaero_control_p8_rad results .... 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.340050 -The maximum resident set size (KB) = 2873472 +The total amount of wall time = 283.602843 +The maximum resident set size (KB) = 2875980 -Test 146 atmaero_control_p8_rad PASS +Test 147 atmaero_control_p8_rad PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/atmaero_control_p8_rad_micro -Checking test 147 atmaero_control_p8_rad_micro results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8_rad_micro +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/atmaero_control_p8_rad_micro +Checking test 148 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4364,15 +4416,15 @@ Checking test 147 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 288.370796 -The maximum resident set size (KB) = 2882472 +The total amount of wall time = 286.202731 +The maximum resident set size (KB) = 2884276 -Test 147 atmaero_control_p8_rad_micro PASS +Test 148 atmaero_control_p8_rad_micro PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_atmaq -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/regional_atmaq -Checking test 148 regional_atmaq results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/regional_atmaq +Checking test 149 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -4387,15 +4439,15 @@ Checking test 148 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 683.429800 -The maximum resident set size (KB) = 1260532 +The total amount of wall time = 678.446368 +The maximum resident set size (KB) = 1257128 -Test 148 regional_atmaq PASS +Test 149 regional_atmaq PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_atmaq_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/regional_atmaq_debug -Checking test 149 regional_atmaq_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/regional_atmaq_debug +Checking test 150 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -4408,15 +4460,15 @@ Checking test 149 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1388.402861 -The maximum resident set size (KB) = 1299244 +The total amount of wall time = 1355.572356 +The maximum resident set size (KB) = 1291888 -Test 149 regional_atmaq_debug PASS +Test 150 regional_atmaq_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_atmaq_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_244443/regional_atmaq_faster -Checking test 150 regional_atmaq_faster results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/regional_atmaq_faster +Checking test 151 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -4431,12 +4483,12 @@ Checking test 150 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 632.713667 -The maximum resident set size (KB) = 1259452 +The total amount of wall time = 640.144825 +The maximum resident set size (KB) = 1254752 -Test 150 regional_atmaq_faster PASS +Test 151 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Thu Mar 23 16:37:34 UTC 2023 -Elapsed time: 01h:31m:06s. Have a nice day! +Sun Mar 26 21:43:00 UTC 2023 +Elapsed time: 01h:40m:01s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index 5e2192a1bf1..0a8662d7cbf 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,21 +1,21 @@ -Wed Mar 22 20:56:32 MDT 2023 +Sat Mar 25 08:30:08 MDT 2023 Start Regression test -Compile 001 elapsed time 377 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 395 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 857 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 194 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 364 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 1083 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 846 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 848 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 658 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 561 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 346 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 012 elapsed time 297 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/control_c48 -working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/control_c48 +Compile 001 elapsed time 365 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 388 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 854 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 200 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 365 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 1069 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 844 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 849 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 655 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 560 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 344 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 012 elapsed time 294 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/control_c48 +working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/control_c48 Checking test 001 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -54,14 +54,14 @@ Checking test 001 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 816.618885 -0:The maximum resident set size (KB) = 675656 +0:The total amount of wall time = 821.234337 +0:The maximum resident set size (KB) = 677876 Test 001 control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/control_stochy -working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/control_stochy +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/control_stochy +working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/control_stochy Checking test 002 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -72,14 +72,14 @@ Checking test 002 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 177.905373 -0:The maximum resident set size (KB) = 442484 +0:The total amount of wall time = 177.736103 +0:The maximum resident set size (KB) = 443012 Test 002 control_stochy PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/control_ras -working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/control_ras +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/control_ras +working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/control_ras Checking test 003 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -90,14 +90,14 @@ Checking test 003 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 293.740918 -0:The maximum resident set size (KB) = 451976 +0:The total amount of wall time = 292.952829 +0:The maximum resident set size (KB) = 452268 Test 003 control_ras PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/control_p8 -working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/control_p8 +working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/control_p8 Checking test 004 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -144,14 +144,14 @@ Checking test 004 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 307.276605 -0:The maximum resident set size (KB) = 1225352 +0:The total amount of wall time = 310.367027 +0:The maximum resident set size (KB) = 1225944 Test 004 control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/rap_control -working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/rap_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control +working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/rap_control Checking test 005 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -198,14 +198,14 @@ Checking test 005 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 719.602188 -0:The maximum resident set size (KB) = 791852 +0:The total amount of wall time = 714.368340 +0:The maximum resident set size (KB) = 792036 Test 005 rap_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/rap_control -working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/rap_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control +working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/rap_decomp Checking test 006 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -252,14 +252,14 @@ Checking test 006 rap_decomp results .... Comparing 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.132436 -0:The maximum resident set size (KB) = 791164 +0:The total amount of wall time = 717.736693 +0:The maximum resident set size (KB) = 791640 Test 006 rap_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/rap_control -working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/rap_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control +working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/rap_2threads Checking test 007 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -306,14 +306,14 @@ Checking test 007 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 665.955689 -0:The maximum resident set size (KB) = 863888 +0:The total amount of wall time = 659.846731 +0:The maximum resident set size (KB) = 864344 Test 007 rap_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/rap_control -working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/rap_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control +working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/rap_restart Checking test 008 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -352,14 +352,14 @@ Checking test 008 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 359.935330 -0:The maximum resident set size (KB) = 538520 +0:The total amount of wall time = 353.551569 +0:The maximum resident set size (KB) = 538708 Test 008 rap_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/rap_sfcdiff +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/rap_sfcdiff Checking test 009 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -406,14 +406,14 @@ Checking test 009 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 708.350499 -0:The maximum resident set size (KB) = 791712 +0:The total amount of wall time = 700.452087 +0:The maximum resident set size (KB) = 791828 Test 009 rap_sfcdiff PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/rap_sfcdiff_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/rap_sfcdiff_decomp Checking test 010 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -460,14 +460,14 @@ Checking test 010 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 724.788878 -0:The maximum resident set size (KB) = 791064 +0:The total amount of wall time = 716.620572 +0:The maximum resident set size (KB) = 791232 Test 010 rap_sfcdiff_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/rap_sfcdiff_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/rap_sfcdiff_restart Checking test 011 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -506,14 +506,14 @@ Checking test 011 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 530.949794 -0:The maximum resident set size (KB) = 544104 +0:The total amount of wall time = 525.362388 +0:The maximum resident set size (KB) = 545096 Test 011 rap_sfcdiff_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/hrrr_control -working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/hrrr_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control +working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/hrrr_control Checking test 012 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -560,14 +560,14 @@ Checking test 012 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 684.805809 -0:The maximum resident set size (KB) = 789184 +0:The total amount of wall time = 683.993570 +0:The maximum resident set size (KB) = 789468 Test 012 hrrr_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/hrrr_control -working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/hrrr_control_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control +working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/hrrr_control_2threads Checking test 013 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -614,14 +614,14 @@ Checking test 013 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 626.048502 -0:The maximum resident set size (KB) = 858848 +0:The total amount of wall time = 618.593245 +0:The maximum resident set size (KB) = 859308 Test 013 hrrr_control_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/hrrr_control -working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/hrrr_control_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control +working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/hrrr_control_decomp Checking test 014 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -668,14 +668,14 @@ Checking test 014 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 685.192298 -0:The maximum resident set size (KB) = 788656 +0:The total amount of wall time = 680.375006 +0:The maximum resident set size (KB) = 788792 Test 014 hrrr_control_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/hrrr_control -working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/hrrr_control_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control +working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/hrrr_control_restart Checking test 015 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -714,14 +714,14 @@ Checking test 015 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 518.778786 -0:The maximum resident set size (KB) = 540116 +0:The total amount of wall time = 510.605678 +0:The maximum resident set size (KB) = 540180 Test 015 hrrr_control_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/rrfs_v1beta -working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/rrfs_v1beta +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_v1beta +working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/rrfs_v1beta Checking test 016 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -768,15 +768,15 @@ Checking test 016 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 694.745950 -0:The maximum resident set size (KB) = 788616 +0:The total amount of wall time = 695.550069 +0:The maximum resident set size (KB) = 788704 Test 016 rrfs_v1beta PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/rrfs_conus13km_hrrr_warm -Checking test 017 rrfs_conus13km_hrrr_warm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/rrfs_smoke_conus13km_hrrr_warm +Checking test 017 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -784,15 +784,15 @@ Checking test 017 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 203.750286 -0:The maximum resident set size (KB) = 607252 +0:The total amount of wall time = 232.163570 +0:The maximum resident set size (KB) = 635772 -Test 017 rrfs_conus13km_hrrr_warm PASS +Test 017 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/rrfs_smoke_conus13km_hrrr_warm -Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/rrfs_smoke_conus13km_hrrr_warm_2threads +Checking test 018 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -800,15 +800,15 @@ Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 222.351565 -0:The maximum resident set size (KB) = 621272 +0:The total amount of wall time = 147.965507 +0:The maximum resident set size (KB) = 660132 -Test 018 rrfs_smoke_conus13km_hrrr_warm PASS +Test 018 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/rrfs_conus13km_radar_tten_warm -Checking test 019 rrfs_conus13km_radar_tten_warm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/rrfs_conus13km_hrrr_warm +Checking test 019 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -816,15 +816,15 @@ Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 204.053309 -0:The maximum resident set size (KB) = 609992 +0:The total amount of wall time = 211.774899 +0:The maximum resident set size (KB) = 614924 -Test 019 rrfs_conus13km_radar_tten_warm PASS +Test 019 rrfs_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/rrfs_conus13km_radar_tten_warm_2threads -Checking test 020 rrfs_conus13km_radar_tten_warm_2threads results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/rrfs_smoke_conus13km_radar_tten_warm +Checking test 020 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -832,209 +832,223 @@ Checking test 020 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 130.428128 -0:The maximum resident set size (KB) = 628432 +0:The total amount of wall time = 232.316705 +0:The maximum resident set size (KB) = 638552 -Test 020 rrfs_conus13km_radar_tten_warm_2threads PASS +Test 020 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/control_diag_debug -working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/control_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/control_diag_debug +working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/control_diag_debug Checking test 021 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 88.601405 -0:The maximum resident set size (KB) = 494740 +0:The total amount of wall time = 88.887682 +0:The maximum resident set size (KB) = 495044 Test 021 control_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/regional_debug -working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/regional_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/regional_debug +working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/regional_debug Checking test 022 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 474.588948 -0:The maximum resident set size (KB) = 569584 +0:The total amount of wall time = 476.870408 +0:The maximum resident set size (KB) = 569780 Test 022 regional_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/rap_control_debug -working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/rap_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control_debug +working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/rap_control_debug Checking test 023 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 149.948891 -0:The maximum resident set size (KB) = 808616 +0:The total amount of wall time = 150.121119 +0:The maximum resident set size (KB) = 809028 Test 023 rap_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/hrrr_control_debug -working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/hrrr_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control_debug +working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/hrrr_control_debug Checking test 024 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 147.784559 -0:The maximum resident set size (KB) = 804440 +0:The total amount of wall time = 147.281812 +0:The maximum resident set size (KB) = 804896 Test 024 hrrr_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/rap_diag_debug -working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/rap_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_diag_debug +working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/rap_diag_debug Checking test 025 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 157.917757 -0:The maximum resident set size (KB) = 891624 +0:The total amount of wall time = 158.431556 +0:The maximum resident set size (KB) = 892016 Test 025 rap_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/rap_noah_sfcdiff_cires_ugwp_debug Checking test 026 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 239.521258 -0:The maximum resident set size (KB) = 806900 +0:The total amount of wall time = 239.436560 +0:The maximum resident set size (KB) = 807272 Test 026 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/rap_progcld_thompson_debug -working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/rap_progcld_thompson_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_progcld_thompson_debug +working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/rap_progcld_thompson_debug Checking test 027 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 149.183587 -0:The maximum resident set size (KB) = 808720 +0:The total amount of wall time = 150.363660 +0:The maximum resident set size (KB) = 808912 Test 027 rap_progcld_thompson_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/rrfs_v1beta_debug -working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/rrfs_v1beta_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_v1beta_debug +working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/rrfs_v1beta_debug Checking test 028 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 148.908267 -0:The maximum resident set size (KB) = 803856 +0:The total amount of wall time = 149.107111 +0:The maximum resident set size (KB) = 804120 Test 028 rrfs_v1beta_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/control_ras_debug -working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/control_ras_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/control_ras_debug +working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/control_ras_debug Checking test 029 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 85.139968 -0:The maximum resident set size (KB) = 449160 +0:The total amount of wall time = 85.544441 +0:The maximum resident set size (KB) = 449244 Test 029 control_ras_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/control_stochy_debug -working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/control_stochy_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/control_stochy_debug +working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/control_stochy_debug Checking test 030 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 93.964994 -0:The maximum resident set size (KB) = 441400 +0:The total amount of wall time = 93.375627 +0:The maximum resident set size (KB) = 441648 Test 030 control_stochy_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/control_debug_p8 -working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/control_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/control_debug_p8 +working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/control_debug_p8 Checking test 031 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 96.979351 -0:The maximum resident set size (KB) = 1224264 +0:The total amount of wall time = 95.818736 +0:The maximum resident set size (KB) = 1224928 Test 031 control_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/rrfs_conus13km_hrrr_warm_debug -Checking test 032 rrfs_conus13km_hrrr_warm_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/rrfs_smoke_conus13km_hrrr_warm_debug +Checking test 032 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 388.316739 -0:The maximum resident set size (KB) = 614252 +0:The total amount of wall time = 441.887519 +0:The maximum resident set size (KB) = 644392 -Test 032 rrfs_conus13km_hrrr_warm_debug PASS +Test 032 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/rrfs_conus13km_radar_tten_warm_debug -working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/rrfs_conus13km_radar_tten_warm_debug -Checking test 033 rrfs_conus13km_radar_tten_warm_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +Checking test 033 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 386.076362 -0:The maximum resident set size (KB) = 616892 +0:The total amount of wall time = 272.188852 +0:The maximum resident set size (KB) = 662928 -Test 033 rrfs_conus13km_radar_tten_warm_debug PASS +Test 033 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/control_wam_debug -working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/control_wam_debug -Checking test 034 control_wam_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_conus13km_hrrr_warm_debugs +working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/rrfs_conus13km_hrrr_warm_debug +Checking test 034 rrfs_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +0:The total amount of wall time = 400.151276 +0:The maximum resident set size (KB) = 622404 + +Test 034 rrfs_conus13km_hrrr_warm_debug PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/control_wam_debug +working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/control_wam_debug +Checking test 035 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 145.854673 -0:The maximum resident set size (KB) = 185708 +0:The total amount of wall time = 144.444960 +0:The maximum resident set size (KB) = 184912 -Test 034 control_wam_debug PASS +Test 035 control_wam_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/rap_control_dyn32_phy32 -Checking test 035 rap_control_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/rap_control_dyn32_phy32 +Checking test 036 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -1080,15 +1094,15 @@ Checking test 035 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 686.298656 -0:The maximum resident set size (KB) = 673124 +0:The total amount of wall time = 678.918568 +0:The maximum resident set size (KB) = 673264 -Test 035 rap_control_dyn32_phy32 PASS +Test 036 rap_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/hrrr_control_dyn32_phy32 -Checking test 036 hrrr_control_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/hrrr_control_dyn32_phy32 +Checking test 037 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -1134,15 +1148,15 @@ Checking test 036 hrrr_control_dyn32_phy32 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 = 349.942631 -0:The maximum resident set size (KB) = 671548 +0:The total amount of wall time = 348.938987 +0:The maximum resident set size (KB) = 671772 -Test 036 hrrr_control_dyn32_phy32 PASS +Test 037 hrrr_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/rap_2threads_dyn32_phy32 -Checking test 037 rap_2threads_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/rap_2threads_dyn32_phy32 +Checking test 038 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -1188,15 +1202,15 @@ Checking test 037 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 621.366707 -0:The maximum resident set size (KB) = 718392 +0:The total amount of wall time = 622.171882 +0:The maximum resident set size (KB) = 719328 -Test 037 rap_2threads_dyn32_phy32 PASS +Test 038 rap_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/hrrr_control_2threads_dyn32_phy32 -Checking test 038 hrrr_control_2threads_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/hrrr_control_2threads_dyn32_phy32 +Checking test 039 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -1242,15 +1256,15 @@ Checking test 038 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 321.085893 -0:The maximum resident set size (KB) = 715548 +0:The total amount of wall time = 320.562182 +0:The maximum resident set size (KB) = 715984 -Test 038 hrrr_control_2threads_dyn32_phy32 PASS +Test 039 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/hrrr_control_decomp_dyn32_phy32 -Checking test 039 hrrr_control_decomp_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/hrrr_control_decomp_dyn32_phy32 +Checking test 040 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -1296,15 +1310,15 @@ Checking test 039 hrrr_control_decomp_dyn32_phy32 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 = 349.830198 -0:The maximum resident set size (KB) = 670164 +0:The total amount of wall time = 347.243701 +0:The maximum resident set size (KB) = 670564 -Test 039 hrrr_control_decomp_dyn32_phy32 PASS +Test 040 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/rap_restart_dyn32_phy32 -Checking test 040 rap_restart_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/rap_restart_dyn32_phy32 +Checking test 041 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -1342,15 +1356,15 @@ Checking test 040 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 515.591701 -0:The maximum resident set size (KB) = 511128 +0:The total amount of wall time = 511.565190 +0:The maximum resident set size (KB) = 511700 -Test 040 rap_restart_dyn32_phy32 PASS +Test 041 rap_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/hrrr_control_restart_dyn32_phy32 -Checking test 041 hrrr_control_restart_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/hrrr_control_restart_dyn32_phy32 +Checking test 042 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -1388,15 +1402,15 @@ Checking test 041 hrrr_control_restart_dyn32_phy32 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 = 175.848226 -0:The maximum resident set size (KB) = 507008 +0:The total amount of wall time = 176.294301 +0:The maximum resident set size (KB) = 507068 -Test 041 hrrr_control_restart_dyn32_phy32 PASS +Test 042 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/rap_control_dyn64_phy32 -working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/rap_control_dyn64_phy32 -Checking test 042 rap_control_dyn64_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control_dyn64_phy32 +working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/rap_control_dyn64_phy32 +Checking test 043 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -1442,57 +1456,57 @@ Checking test 042 rap_control_dyn64_phy32 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 = 409.313361 -0:The maximum resident set size (KB) = 693828 +0:The total amount of wall time = 405.362674 +0:The maximum resident set size (KB) = 692896 -Test 042 rap_control_dyn64_phy32 PASS +Test 043 rap_control_dyn64_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/rap_control_debug_dyn32_phy32 -Checking test 043 rap_control_debug_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/rap_control_debug_dyn32_phy32 +Checking test 044 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 148.636778 -0:The maximum resident set size (KB) = 690768 +0:The total amount of wall time = 147.284249 +0:The maximum resident set size (KB) = 691128 -Test 043 rap_control_debug_dyn32_phy32 PASS +Test 044 rap_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/hrrr_control_debug_dyn32_phy32 -Checking test 044 hrrr_control_debug_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/hrrr_control_debug_dyn32_phy32 +Checking test 045 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 146.585699 -0:The maximum resident set size (KB) = 687600 +0:The total amount of wall time = 144.891540 +0:The maximum resident set size (KB) = 688176 -Test 044 hrrr_control_debug_dyn32_phy32 PASS +Test 045 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/rap_control_dyn64_phy32_debug -Checking test 045 rap_control_dyn64_phy32_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control_debug_dyn64_phy32 +working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/rap_control_dyn64_phy32_debug +Checking test 046 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 152.833835 -0:The maximum resident set size (KB) = 710796 +0:The total amount of wall time = 153.708313 +0:The maximum resident set size (KB) = 710904 -Test 045 rap_control_dyn64_phy32_debug PASS +Test 046 rap_control_dyn64_phy32_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/cpld_control_p8 -Checking test 046 cpld_control_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/cpld_control_p8 +Checking test 047 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1556,15 +1570,15 @@ Checking test 046 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 502.668034 -0:The maximum resident set size (KB) = 3159408 +0:The total amount of wall time = 499.349138 +0:The maximum resident set size (KB) = 3159712 -Test 046 cpld_control_p8 PASS +Test 047 cpld_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/cpld_control_nowave_noaero_p8 -Checking test 047 cpld_control_nowave_noaero_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/cpld_control_c96_noaero_p8 +working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/cpld_control_nowave_noaero_p8 +Checking test 048 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1625,15 +1639,15 @@ Checking test 047 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 243.653719 -0:The maximum resident set size (KB) = 1241516 +0:The total amount of wall time = 248.294053 +0:The maximum resident set size (KB) = 1241788 -Test 047 cpld_control_nowave_noaero_p8 PASS +Test 048 cpld_control_nowave_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/cpld_debug_p8 -working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/cpld_debug_p8 -Checking test 048 cpld_debug_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/cpld_debug_p8 +working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/cpld_debug_p8 +Checking test 049 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -1685,25 +1699,25 @@ Checking test 048 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 275.755519 -0:The maximum resident set size (KB) = 3179496 +0:The total amount of wall time = 274.189646 +0:The maximum resident set size (KB) = 3177672 -Test 048 cpld_debug_p8 PASS +Test 049 cpld_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/GNU/datm_cdeps_control_cfsr -working dir = /glade/scratch/jongkim/rt-1642-gnu/jongkim/FV3_RT/rt_34979/datm_cdeps_control_cfsr -Checking test 049 datm_cdeps_control_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/datm_cdeps_control_cfsr +working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/datm_cdeps_control_cfsr +Checking test 050 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 178.817367 -0:The maximum resident set size (KB) = 671580 +0:The total amount of wall time = 180.246535 +0:The maximum resident set size (KB) = 673716 -Test 049 datm_cdeps_control_cfsr PASS +Test 050 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Wed Mar 22 21:31:25 MDT 2023 -Elapsed time: 00h:34m:54s. Have a nice day! +Sat Mar 25 09:01:05 MDT 2023 +Elapsed time: 00h:30m:58s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index fd565fae2c4..69f5a2e9f54 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,42 +1,42 @@ -Thu Mar 23 05:48:26 MDT 2023 +Sat Mar 25 10:02:50 MDT 2023 Start Regression test -Compile 001 elapsed time 1373 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 1394 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 1357 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 448 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 391 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 1060 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 1081 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 1809 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 1026 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 982 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 924 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 799 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 1293 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 404 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 266 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 834 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 831 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 269 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 274 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 1124 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 021 elapsed time 359 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 1555 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 1092 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 024 elapsed time 438 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 203 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 425 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 107 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 952 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 987 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 894 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 874 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 306 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 1032 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8_mixedmode -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/cpld_control_p8_mixedmode +Compile 001 elapsed time 1346 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1406 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 1370 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 445 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 382 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 1071 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 1071 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 1691 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 1070 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 956 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 011 elapsed time 930 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 806 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 1304 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 406 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 262 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 825 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 844 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 277 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 272 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 1116 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 021 elapsed time 339 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 1580 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 1106 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 024 elapsed time 431 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 206 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 428 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 106 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 948 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 981 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 888 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 860 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 292 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 1046 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8_mixedmode +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -101,14 +101,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 322.356505 -0:The maximum resident set size (KB) = 2698432 +0:The total amount of wall time = 320.335937 +0:The maximum resident set size (KB) = 2699500 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_gfsv17 -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/cpld_control_gfsv17 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_gfsv17 +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -172,14 +172,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 283.029993 -0:The maximum resident set size (KB) = 1437460 +0:The total amount of wall time = 282.973304 +0:The maximum resident set size (KB) = 1438532 Test 002 cpld_control_gfsv17 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/cpld_control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -244,14 +244,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 325.879293 -0:The maximum resident set size (KB) = 2716456 +0:The total amount of wall time = 325.427692 +0:The maximum resident set size (KB) = 2716828 Test 003 cpld_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/cpld_restart_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -304,14 +304,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 186.841952 -0:The maximum resident set size (KB) = 2577548 +0:The total amount of wall time = 187.347370 +0:The maximum resident set size (KB) = 2577408 Test 004 cpld_restart_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/cpld_2threads_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -364,14 +364,14 @@ Checking test 005 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 256.746420 -0:The maximum resident set size (KB) = 3175492 +0:The total amount of wall time = 257.597334 +0:The maximum resident set size (KB) = 3177080 Test 005 cpld_2threads_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/cpld_decomp_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/cpld_decomp_p8 Checking test 006 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -424,14 +424,14 @@ Checking test 006 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 324.334157 -0:The maximum resident set size (KB) = 2721384 +0:The total amount of wall time = 322.960421 +0:The maximum resident set size (KB) = 2721100 Test 006 cpld_decomp_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/cpld_mpi_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/cpld_mpi_p8 Checking test 007 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -484,14 +484,14 @@ Checking test 007 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 278.205755 -0:The maximum resident set size (KB) = 2682692 +0:The total amount of wall time = 278.033762 +0:The maximum resident set size (KB) = 2681416 Test 007 cpld_mpi_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_ciceC_p8 -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/cpld_control_ciceC_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_ciceC_p8 +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/cpld_control_ciceC_p8 Checking test 008 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -556,14 +556,14 @@ Checking test 008 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 322.898916 -0:The maximum resident set size (KB) = 2716468 +0:The total amount of wall time = 321.948890 +0:The maximum resident set size (KB) = 2716584 Test 008 cpld_control_ciceC_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/cpld_control_c192_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c192_p8 +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/cpld_control_c192_p8 Checking test 009 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -616,14 +616,14 @@ Checking test 009 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -0:The total amount of wall time = 637.290139 -0:The maximum resident set size (KB) = 3347624 +0:The total amount of wall time = 632.332322 +0:The maximum resident set size (KB) = 3350080 Test 009 cpld_control_c192_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/cpld_restart_c192_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c192_p8 +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/cpld_restart_c192_p8 Checking test 010 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -676,14 +676,14 @@ Checking test 010 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -0:The total amount of wall time = 402.732805 -0:The maximum resident set size (KB) = 3271672 +0:The total amount of wall time = 393.730309 +0:The maximum resident set size (KB) = 3277764 Test 010 cpld_restart_c192_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_noaero_p8 -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/cpld_control_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_noaero_p8 +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/cpld_control_noaero_p8 Checking test 011 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -747,14 +747,14 @@ Checking test 011 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 285.308961 -0:The maximum resident set size (KB) = 1436204 +0:The total amount of wall time = 283.903383 +0:The maximum resident set size (KB) = 1436228 Test 011 cpld_control_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/cpld_control_nowave_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c96_noaero_p8 +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/cpld_control_nowave_noaero_p8 Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -816,14 +816,14 @@ Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 193.957873 -0:The maximum resident set size (KB) = 1452364 +0:The total amount of wall time = 195.024244 +0:The maximum resident set size (KB) = 1452444 Test 012 cpld_control_nowave_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_debug_p8 -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/cpld_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_debug_p8 +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/cpld_debug_p8 Checking test 013 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -876,14 +876,14 @@ Checking test 013 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 478.005356 -0:The maximum resident set size (KB) = 2787996 +0:The total amount of wall time = 472.539349 +0:The maximum resident set size (KB) = 2787728 Test 013 cpld_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_debug_noaero_p8 -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/cpld_debug_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_debug_noaero_p8 +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/cpld_debug_noaero_p8 Checking test 014 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -935,14 +935,14 @@ Checking test 014 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 350.201697 -0:The maximum resident set size (KB) = 1460660 +0:The total amount of wall time = 348.692283 +0:The maximum resident set size (KB) = 1460576 Test 014 cpld_debug_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_noaero_p8_agrid -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/cpld_control_noaero_p8_agrid +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_noaero_p8_agrid +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/cpld_control_noaero_p8_agrid Checking test 015 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1004,14 +1004,14 @@ Checking test 015 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 251.995254 -0:The maximum resident set size (KB) = 1455812 +0:The total amount of wall time = 250.534744 +0:The maximum resident set size (KB) = 1456068 Test 015 cpld_control_noaero_p8_agrid PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_c48 -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/cpld_control_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c48 +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/cpld_control_c48 Checking test 016 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1061,14 +1061,14 @@ Checking test 016 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 608.094988 -0:The maximum resident set size (KB) = 2580652 +0:The total amount of wall time = 607.005118 +0:The maximum resident set size (KB) = 2583976 Test 016 cpld_control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/cpld_warmstart_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_warmstart_c48 +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/cpld_warmstart_c48 Checking test 017 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1118,14 +1118,14 @@ Checking test 017 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -0:The total amount of wall time = 162.718947 -0:The maximum resident set size (KB) = 2598852 +0:The total amount of wall time = 161.913272 +0:The maximum resident set size (KB) = 2600748 Test 017 cpld_warmstart_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/cpld_restart_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_warmstart_c48 +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/cpld_restart_c48 Checking test 018 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1175,14 +1175,14 @@ Checking test 018 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -0:The total amount of wall time = 84.626187 -0:The maximum resident set size (KB) = 2016112 +0:The total amount of wall time = 83.529599 +0:The maximum resident set size (KB) = 2018176 Test 018 cpld_restart_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/control_CubedSphereGrid -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/control_CubedSphereGrid +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/control_CubedSphereGrid Checking test 019 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1209,28 +1209,28 @@ Checking test 019 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -0:The total amount of wall time = 142.463637 -0:The maximum resident set size (KB) = 456796 +0:The total amount of wall time = 141.975321 +0:The maximum resident set size (KB) = 453496 Test 019 control_CubedSphereGrid PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/control_CubedSphereGrid_parallel -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/control_CubedSphereGrid_parallel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid_parallel +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/control_CubedSphereGrid_parallel Checking test 020 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc ............ALT CHECK......OK -0:The total amount of wall time = 139.844583 -0:The maximum resident set size (KB) = 456820 +0:The total amount of wall time = 139.967774 +0:The maximum resident set size (KB) = 453560 Test 020 control_CubedSphereGrid_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/control_latlon -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/control_latlon +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_latlon +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/control_latlon Checking test 021 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1241,32 +1241,32 @@ Checking test 021 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 146.663874 -0:The maximum resident set size (KB) = 456876 +0:The total amount of wall time = 146.058953 +0:The maximum resident set size (KB) = 453912 Test 021 control_latlon PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/control_wrtGauss_netcdf_parallel -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/control_wrtGauss_netcdf_parallel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wrtGauss_netcdf_parallel +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/control_wrtGauss_netcdf_parallel Checking test 022 control_wrtGauss_netcdf_parallel results .... - Comparing sfcf000.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc .........OK Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc .........OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 147.192270 -0:The maximum resident set size (KB) = 456668 +0:The total amount of wall time = 149.403093 +0:The maximum resident set size (KB) = 453956 Test 022 control_wrtGauss_netcdf_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/control_c48 -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/control_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c48 +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/control_c48 Checking test 023 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1305,14 +1305,14 @@ Checking test 023 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 444.494229 -0:The maximum resident set size (KB) = 628916 +0:The total amount of wall time = 443.954020 +0:The maximum resident set size (KB) = 627836 Test 023 control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/control_c192 -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/control_c192 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c192 +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/control_c192 Checking test 024 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1323,14 +1323,14 @@ Checking test 024 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 593.699285 -0:The maximum resident set size (KB) = 557076 +0:The total amount of wall time = 591.762860 +0:The maximum resident set size (KB) = 557600 Test 024 control_c192 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/control_c384 -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/control_c384 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c384 +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/control_c384 Checking test 025 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1341,14 +1341,14 @@ Checking test 025 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 599.624087 -0:The maximum resident set size (KB) = 889512 +0:The total amount of wall time = 602.144804 +0:The maximum resident set size (KB) = 892056 Test 025 control_c384 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/control_c384gdas -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/control_c384gdas +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c384gdas +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/control_c384gdas Checking test 026 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1391,14 +1391,14 @@ Checking test 026 control_c384gdas 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 = 531.865357 -0:The maximum resident set size (KB) = 1016096 +0:The total amount of wall time = 528.944726 +0:The maximum resident set size (KB) = 1018352 Test 026 control_c384gdas PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/control_stochy -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/control_stochy +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/control_stochy Checking test 027 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1409,28 +1409,28 @@ Checking test 027 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 95.677619 -0:The maximum resident set size (KB) = 454896 +0:The total amount of wall time = 97.955559 +0:The maximum resident set size (KB) = 455564 Test 027 control_stochy PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/control_stochy -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/control_stochy_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/control_stochy_restart Checking test 028 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 52.707246 -0:The maximum resident set size (KB) = 225804 +0:The total amount of wall time = 52.397136 +0:The maximum resident set size (KB) = 226156 Test 028 control_stochy_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/control_lndp -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/control_lndp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_lndp +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/control_lndp Checking test 029 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1441,14 +1441,14 @@ Checking test 029 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 90.338825 -0:The maximum resident set size (KB) = 456504 +0:The total amount of wall time = 90.529454 +0:The maximum resident set size (KB) = 456628 Test 029 control_lndp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/control_iovr4 -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/control_iovr4 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_iovr4 +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/control_iovr4 Checking test 030 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1463,14 +1463,14 @@ Checking test 030 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 147.625071 -0:The maximum resident set size (KB) = 456804 +0:The total amount of wall time = 147.482513 +0:The maximum resident set size (KB) = 453800 Test 030 control_iovr4 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/control_iovr5 -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/control_iovr5 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_iovr5 +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/control_iovr5 Checking test 031 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1485,14 +1485,14 @@ Checking test 031 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 147.713183 -0:The maximum resident set size (KB) = 456772 +0:The total amount of wall time = 148.086704 +0:The maximum resident set size (KB) = 453736 Test 031 control_iovr5 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/control_p8 Checking test 032 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1539,14 +1539,14 @@ Checking test 032 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 179.907959 -0:The maximum resident set size (KB) = 1422824 +0:The total amount of wall time = 180.823686 +0:The maximum resident set size (KB) = 1423204 Test 032 control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8_lndp -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/control_p8_lndp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_lndp +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/control_p8_lndp Checking test 033 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1565,14 +1565,14 @@ Checking test 033 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -0:The total amount of wall time = 334.094798 -0:The maximum resident set size (KB) = 1423120 +0:The total amount of wall time = 332.409044 +0:The maximum resident set size (KB) = 1423380 Test 033 control_p8_lndp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/control_restart_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/control_restart_p8 Checking test 034 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1611,14 +1611,14 @@ Checking test 034 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 95.650717 -0:The maximum resident set size (KB) = 582332 +0:The total amount of wall time = 95.332426 +0:The maximum resident set size (KB) = 582544 Test 034 control_restart_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/control_decomp_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/control_decomp_p8 Checking test 035 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1661,14 +1661,14 @@ Checking test 035 control_decomp_p8 results .... Comparing 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.764253 -0:The maximum resident set size (KB) = 1417080 +0:The total amount of wall time = 186.579134 +0:The maximum resident set size (KB) = 1417968 Test 035 control_decomp_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/control_2threads_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/control_2threads_p8 Checking test 036 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1711,14 +1711,14 @@ Checking test 036 control_2threads_p8 results .... Comparing 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.977916 -0:The maximum resident set size (KB) = 1506472 +0:The total amount of wall time = 173.136670 +0:The maximum resident set size (KB) = 1508828 Test 036 control_2threads_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8_rrtmgp -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/control_p8_rrtmgp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_rrtmgp +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/control_p8_rrtmgp Checking test 037 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1765,15 +1765,69 @@ Checking test 037 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 254.575815 -0:The maximum resident set size (KB) = 1480728 +0:The total amount of wall time = 251.737860 +0:The maximum resident set size (KB) = 1481688 Test 037 control_p8_rrtmgp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/merra2_thompson -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/merra2_thompson -Checking test 038 merra2_thompson results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_mynn +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/control_p8_mynn +Checking test 038 control_p8_mynn results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 185.822071 +0:The maximum resident set size (KB) = 1428140 + +Test 038 control_p8_mynn PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/merra2_thompson +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/merra2_thompson +Checking test 039 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1819,15 +1873,15 @@ Checking test 038 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 208.414232 -0:The maximum resident set size (KB) = 1429740 +0:The total amount of wall time = 205.776635 +0:The maximum resident set size (KB) = 1429312 -Test 038 merra2_thompson PASS +Test 039 merra2_thompson PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/regional_control -Checking test 039 regional_control results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/regional_control +Checking test 040 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1837,29 +1891,29 @@ Checking test 039 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 343.238514 -0:The maximum resident set size (KB) = 603256 +0:The total amount of wall time = 340.383828 +0:The maximum resident set size (KB) = 604120 -Test 039 regional_control PASS +Test 040 regional_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/regional_restart -Checking test 040 regional_restart results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/regional_restart +Checking test 041 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 174.656363 -0:The maximum resident set size (KB) = 593552 +0:The total amount of wall time = 176.858008 +0:The maximum resident set size (KB) = 593652 -Test 040 regional_restart PASS +Test 041 regional_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/regional_decomp -Checking test 041 regional_decomp results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/regional_decomp +Checking test 042 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1869,15 +1923,15 @@ Checking test 041 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 357.085428 -0:The maximum resident set size (KB) = 597184 +0:The total amount of wall time = 355.900439 +0:The maximum resident set size (KB) = 597284 -Test 041 regional_decomp PASS +Test 042 regional_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/regional_2threads -Checking test 042 regional_2threads results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/regional_2threads +Checking test 043 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1887,44 +1941,44 @@ Checking test 042 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 205.300925 -0:The maximum resident set size (KB) = 610280 +0:The total amount of wall time = 204.030917 +0:The maximum resident set size (KB) = 610148 -Test 042 regional_2threads PASS +Test 043 regional_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_noquilt -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/regional_noquilt -Checking test 043 regional_noquilt results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_noquilt +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/regional_noquilt +Checking test 044 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -0:The total amount of wall time = 362.006502 -0:The maximum resident set size (KB) = 597660 +0:The total amount of wall time = 363.196506 +0:The maximum resident set size (KB) = 598436 -Test 043 regional_noquilt PASS +Test 044 regional_noquilt PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_netcdf_parallel -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/regional_netcdf_parallel -Checking test 044 regional_netcdf_parallel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_netcdf_parallel +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/regional_netcdf_parallel +Checking test 045 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK + Comparing dynf006.nc ............ALT CHECK......OK Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf006.nc ............ALT CHECK......OK -0:The total amount of wall time = 331.051903 -0:The maximum resident set size (KB) = 595124 +0:The total amount of wall time = 336.304196 +0:The maximum resident set size (KB) = 596016 -Test 044 regional_netcdf_parallel PASS +Test 045 regional_netcdf_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/regional_2dwrtdecomp -Checking test 045 regional_2dwrtdecomp results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/regional_2dwrtdecomp +Checking test 046 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1934,15 +1988,15 @@ Checking test 045 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 339.744953 -0:The maximum resident set size (KB) = 603236 +0:The total amount of wall time = 329.732101 +0:The maximum resident set size (KB) = 604140 -Test 045 regional_2dwrtdecomp PASS +Test 046 regional_2dwrtdecomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/fv3_regional_wofs -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/regional_wofs -Checking test 046 regional_wofs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/fv3_regional_wofs +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/regional_wofs +Checking test 047 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1952,15 +2006,15 @@ Checking test 046 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 426.969877 -0:The maximum resident set size (KB) = 274564 +0:The total amount of wall time = 416.109625 +0:The maximum resident set size (KB) = 275264 -Test 046 regional_wofs PASS +Test 047 regional_wofs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/rap_control -Checking test 047 rap_control results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/rap_control +Checking test 048 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2006,15 +2060,15 @@ Checking test 047 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 477.469839 -0:The maximum resident set size (KB) = 826332 +0:The total amount of wall time = 470.071915 +0:The maximum resident set size (KB) = 824548 -Test 047 rap_control PASS +Test 048 rap_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_spp_sppt_shum_skeb -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/regional_spp_sppt_shum_skeb -Checking test 048 regional_spp_sppt_shum_skeb results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_spp_sppt_shum_skeb +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/regional_spp_sppt_shum_skeb +Checking test 049 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -2024,15 +2078,15 @@ Checking test 048 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 327.859982 -0:The maximum resident set size (KB) = 949116 +0:The total amount of wall time = 327.743058 +0:The maximum resident set size (KB) = 951392 -Test 048 regional_spp_sppt_shum_skeb PASS +Test 049 regional_spp_sppt_shum_skeb PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/rap_decomp -Checking test 049 rap_decomp results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/rap_decomp +Checking test 050 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2078,15 +2132,15 @@ Checking test 049 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 508.118386 -0:The maximum resident set size (KB) = 823568 +0:The total amount of wall time = 501.040312 +0:The maximum resident set size (KB) = 823072 -Test 049 rap_decomp PASS +Test 050 rap_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/rap_2threads -Checking test 050 rap_2threads results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/rap_2threads +Checking test 051 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2132,15 +2186,15 @@ Checking test 050 rap_2threads results .... Comparing 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.994503 -0:The maximum resident set size (KB) = 892632 +0:The total amount of wall time = 458.287778 +0:The maximum resident set size (KB) = 893804 -Test 050 rap_2threads PASS +Test 051 rap_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/rap_restart -Checking test 051 rap_restart results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/rap_restart +Checking test 052 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2178,15 +2232,15 @@ Checking test 051 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 241.915039 -0:The maximum resident set size (KB) = 572664 +0:The total amount of wall time = 241.095621 +0:The maximum resident set size (KB) = 572704 -Test 051 rap_restart PASS +Test 052 rap_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/rap_sfcdiff -Checking test 052 rap_sfcdiff results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/rap_sfcdiff +Checking test 053 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2232,15 +2286,15 @@ Checking test 052 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 462.349194 -0:The maximum resident set size (KB) = 826428 +0:The total amount of wall time = 471.506236 +0:The maximum resident set size (KB) = 824660 -Test 052 rap_sfcdiff PASS +Test 053 rap_sfcdiff PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/rap_sfcdiff_decomp -Checking test 053 rap_sfcdiff_decomp results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/rap_sfcdiff_decomp +Checking test 054 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2286,15 +2340,15 @@ Checking test 053 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 504.918191 -0:The maximum resident set size (KB) = 825204 +0:The total amount of wall time = 488.106344 +0:The maximum resident set size (KB) = 825872 -Test 053 rap_sfcdiff_decomp PASS +Test 054 rap_sfcdiff_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/rap_sfcdiff_restart -Checking test 054 rap_sfcdiff_restart results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/rap_sfcdiff_restart +Checking test 055 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2332,15 +2386,15 @@ Checking test 054 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 355.378495 -0:The maximum resident set size (KB) = 570040 +0:The total amount of wall time = 355.139243 +0:The maximum resident set size (KB) = 570732 -Test 054 rap_sfcdiff_restart PASS +Test 055 rap_sfcdiff_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/hrrr_control -Checking test 055 hrrr_control results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/hrrr_control +Checking test 056 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2386,15 +2440,15 @@ Checking test 055 hrrr_control results .... Comparing 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.487518 -0:The maximum resident set size (KB) = 821384 +0:The total amount of wall time = 451.292615 +0:The maximum resident set size (KB) = 821416 -Test 055 hrrr_control PASS +Test 056 hrrr_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/hrrr_control_decomp -Checking test 056 hrrr_control_decomp results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/hrrr_control_decomp +Checking test 057 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2440,15 +2494,15 @@ Checking test 056 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 473.019941 -0:The maximum resident set size (KB) = 820276 +0:The total amount of wall time = 469.047275 +0:The maximum resident set size (KB) = 821420 -Test 056 hrrr_control_decomp PASS +Test 057 hrrr_control_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/hrrr_control_2threads -Checking test 057 hrrr_control_2threads results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/hrrr_control_2threads +Checking test 058 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2494,15 +2548,15 @@ Checking test 057 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 428.603243 -0:The maximum resident set size (KB) = 887876 +0:The total amount of wall time = 430.476336 +0:The maximum resident set size (KB) = 884536 -Test 057 hrrr_control_2threads PASS +Test 058 hrrr_control_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/hrrr_control_restart -Checking test 058 hrrr_control_restart results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/hrrr_control_restart +Checking test 059 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2540,15 +2594,15 @@ Checking test 058 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 341.651386 -0:The maximum resident set size (KB) = 568796 +0:The total amount of wall time = 340.210177 +0:The maximum resident set size (KB) = 567696 -Test 058 hrrr_control_restart PASS +Test 059 hrrr_control_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_v1beta -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/rrfs_v1beta -Checking test 059 rrfs_v1beta results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1beta +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/rrfs_v1beta +Checking test 060 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2594,15 +2648,15 @@ Checking test 059 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 464.652266 -0:The maximum resident set size (KB) = 819864 +0:The total amount of wall time = 465.836612 +0:The maximum resident set size (KB) = 820152 -Test 059 rrfs_v1beta PASS +Test 060 rrfs_v1beta PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_v1nssl -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/rrfs_v1nssl -Checking test 060 rrfs_v1nssl results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1nssl +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/rrfs_v1nssl +Checking test 061 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2616,15 +2670,15 @@ Checking test 060 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 573.444784 -0:The maximum resident set size (KB) = 508168 +0:The total amount of wall time = 572.414620 +0:The maximum resident set size (KB) = 508468 -Test 060 rrfs_v1nssl PASS +Test 061 rrfs_v1nssl PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/rrfs_v1nssl_nohailnoccn -Checking test 061 rrfs_v1nssl_nohailnoccn results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/rrfs_v1nssl_nohailnoccn +Checking test 062 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2638,30 +2692,14 @@ Checking test 061 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 553.853271 -0:The maximum resident set size (KB) = 501176 +0:The total amount of wall time = 558.603993 +0:The maximum resident set size (KB) = 502560 -Test 061 rrfs_v1nssl_nohailnoccn PASS +Test 062 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/rrfs_conus13km_hrrr_warm -Checking test 062 rrfs_conus13km_hrrr_warm 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 - -0:The total amount of wall time = 126.114233 -0:The maximum resident set size (KB) = 638724 - -Test 062 rrfs_conus13km_hrrr_warm PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/rrfs_smoke_conus13km_hrrr_warm Checking test 063 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2670,15 +2708,15 @@ Checking test 063 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 144.039830 -0:The maximum resident set size (KB) = 654716 +0:The total amount of wall time = 152.548432 +0:The maximum resident set size (KB) = 672424 Test 063 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/rrfs_conus13km_radar_tten_warm -Checking test 064 rrfs_conus13km_radar_tten_warm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/rrfs_smoke_conus13km_hrrr_warm_2threads +Checking test 064 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2686,15 +2724,15 @@ Checking test 064 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 126.707686 -0:The maximum resident set size (KB) = 640708 +0:The total amount of wall time = 95.219357 +0:The maximum resident set size (KB) = 690344 -Test 064 rrfs_conus13km_radar_tten_warm PASS +Test 064 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/rrfs_conus13km_hrrr_warm_2threads -Checking test 065 rrfs_conus13km_hrrr_warm_2threads results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/rrfs_conus13km_hrrr_warm +Checking test 065 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2702,15 +2740,15 @@ Checking test 065 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 80.848763 -0:The maximum resident set size (KB) = 656900 +0:The total amount of wall time = 136.538369 +0:The maximum resident set size (KB) = 653472 -Test 065 rrfs_conus13km_hrrr_warm_2threads PASS +Test 065 rrfs_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/rrfs_conus13km_radar_tten_warm_2threads -Checking test 066 rrfs_conus13km_radar_tten_warm_2threads results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/rrfs_smoke_conus13km_radar_tten_warm +Checking test 066 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2718,14 +2756,14 @@ Checking test 066 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 81.916349 -0:The maximum resident set size (KB) = 658220 +0:The total amount of wall time = 152.552945 +0:The maximum resident set size (KB) = 674436 -Test 066 rrfs_conus13km_radar_tten_warm_2threads PASS +Test 066 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/control_csawmg -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/control_csawmg +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmg +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/control_csawmg Checking test 067 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2736,14 +2774,14 @@ Checking test 067 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 397.270030 -0:The maximum resident set size (KB) = 529040 +0:The total amount of wall time = 381.152306 +0:The maximum resident set size (KB) = 525856 Test 067 control_csawmg PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/control_csawmgt -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/control_csawmgt +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmgt +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/control_csawmgt Checking test 068 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2754,14 +2792,14 @@ Checking test 068 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 392.834394 -0:The maximum resident set size (KB) = 529008 +0:The total amount of wall time = 375.839732 +0:The maximum resident set size (KB) = 529972 Test 068 control_csawmgt PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/control_ras -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/control_ras +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_ras +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/control_ras Checking test 069 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2772,26 +2810,26 @@ Checking test 069 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 205.665113 -0:The maximum resident set size (KB) = 487840 +0:The total amount of wall time = 197.794560 +0:The maximum resident set size (KB) = 487136 Test 069 control_ras PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/control_wam -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/control_wam +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wam +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/control_wam Checking test 070 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -0:The total amount of wall time = 124.548089 -0:The maximum resident set size (KB) = 205644 +0:The total amount of wall time = 129.137335 +0:The maximum resident set size (KB) = 206172 Test 070 control_wam PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8_faster -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/control_p8_faster +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_faster +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/control_p8_faster Checking test 071 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2838,14 +2876,14 @@ Checking test 071 control_p8_faster results .... Comparing 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.298585 -0:The maximum resident set size (KB) = 1422800 +0:The total amount of wall time = 165.484471 +0:The maximum resident set size (KB) = 1423056 Test 071 control_p8_faster PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_control_faster -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/regional_control_faster +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control_faster +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/regional_control_faster Checking test 072 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2856,43 +2894,57 @@ Checking test 072 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 314.084062 -0:The maximum resident set size (KB) = 603008 +0:The total amount of wall time = 307.770992 +0:The maximum resident set size (KB) = 603832 Test 072 regional_control_faster PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/rrfs_conus13km_hrrr_warm_debug -Checking test 073 rrfs_conus13km_hrrr_warm_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/rrfs_smoke_conus13km_hrrr_warm_debug +Checking test 073 rrfs_smoke_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +0:The total amount of wall time = 880.301128 +0:The maximum resident set size (KB) = 709308 + +Test 073 rrfs_smoke_conus13km_hrrr_warm_debug PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +Checking test 074 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 765.376674 -0:The maximum resident set size (KB) = 671436 +0:The total amount of wall time = 525.067605 +0:The maximum resident set size (KB) = 727316 -Test 073 rrfs_conus13km_hrrr_warm_debug PASS +Test 074 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/rrfs_conus13km_radar_tten_warm_debug -Checking test 074 rrfs_conus13km_radar_tten_warm_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/rrfs_conus13km_hrrr_warm_debug +Checking test 075 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 766.440717 -0:The maximum resident set size (KB) = 674248 +0:The total amount of wall time = 787.780070 +0:The maximum resident set size (KB) = 687516 -Test 074 rrfs_conus13km_radar_tten_warm_debug PASS +Test 075 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/control_CubedSphereGrid_debug -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/control_CubedSphereGrid_debug -Checking test 075 control_CubedSphereGrid_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid_debug +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/control_CubedSphereGrid_debug +Checking test 076 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -2918,335 +2970,335 @@ Checking test 075 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -0:The total amount of wall time = 175.445100 -0:The maximum resident set size (KB) = 621484 +0:The total amount of wall time = 174.364821 +0:The maximum resident set size (KB) = 619376 -Test 075 control_CubedSphereGrid_debug PASS +Test 076 control_CubedSphereGrid_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/control_wrtGauss_netcdf_parallel_debug -Checking test 076 control_wrtGauss_netcdf_parallel_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc .........OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/control_wrtGauss_netcdf_parallel_debug +Checking test 077 control_wrtGauss_netcdf_parallel_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 163.762671 -0:The maximum resident set size (KB) = 621276 +0:The total amount of wall time = 162.704063 +0:The maximum resident set size (KB) = 620092 -Test 076 control_wrtGauss_netcdf_parallel_debug PASS +Test 077 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/control_stochy_debug -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/control_stochy_debug -Checking test 077 control_stochy_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy_debug +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/control_stochy_debug +Checking test 078 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 184.592683 -0:The maximum resident set size (KB) = 624908 +0:The total amount of wall time = 183.356559 +0:The maximum resident set size (KB) = 627132 -Test 077 control_stochy_debug PASS +Test 078 control_stochy_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/control_lndp_debug -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/control_lndp_debug -Checking test 078 control_lndp_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_lndp_debug +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/control_lndp_debug +Checking test 079 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 166.192279 -0:The maximum resident set size (KB) = 627180 +0:The total amount of wall time = 165.293496 +0:The maximum resident set size (KB) = 624532 -Test 078 control_lndp_debug PASS +Test 079 control_lndp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/control_csawmg_debug -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/control_csawmg_debug -Checking test 079 control_csawmg_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmg_debug +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/control_csawmg_debug +Checking test 080 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 257.063241 -0:The maximum resident set size (KB) = 671284 +0:The total amount of wall time = 256.434985 +0:The maximum resident set size (KB) = 670728 -Test 079 control_csawmg_debug PASS +Test 080 control_csawmg_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/control_csawmgt_debug -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/control_csawmgt_debug -Checking test 080 control_csawmgt_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmgt_debug +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/control_csawmgt_debug +Checking test 081 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 252.193815 -0:The maximum resident set size (KB) = 671056 +0:The total amount of wall time = 253.121606 +0:The maximum resident set size (KB) = 671268 -Test 080 control_csawmgt_debug PASS +Test 081 control_csawmgt_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/control_ras_debug -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/control_ras_debug -Checking test 081 control_ras_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_ras_debug +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/control_ras_debug +Checking test 082 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 167.941056 -0:The maximum resident set size (KB) = 632596 +0:The total amount of wall time = 166.488887 +0:The maximum resident set size (KB) = 634536 -Test 081 control_ras_debug PASS +Test 082 control_ras_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/control_diag_debug -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/control_diag_debug -Checking test 082 control_diag_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_diag_debug +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/control_diag_debug +Checking test 083 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 169.819599 -0:The maximum resident set size (KB) = 677844 +0:The total amount of wall time = 169.091632 +0:The maximum resident set size (KB) = 678380 -Test 082 control_diag_debug PASS +Test 083 control_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/control_debug_p8 -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/control_debug_p8 -Checking test 083 control_debug_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_debug_p8 +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/control_debug_p8 +Checking test 084 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 186.346940 -0:The maximum resident set size (KB) = 1444192 +0:The total amount of wall time = 184.025508 +0:The maximum resident set size (KB) = 1445136 -Test 083 control_debug_p8 PASS +Test 084 control_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_debug -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/regional_debug -Checking test 084 regional_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_debug +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/regional_debug +Checking test 085 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 1044.296517 -0:The maximum resident set size (KB) = 629048 +0:The total amount of wall time = 1037.392474 +0:The maximum resident set size (KB) = 630056 -Test 084 regional_debug PASS +Test 085 regional_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_debug -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/rap_control_debug -Checking test 085 rap_control_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/rap_control_debug +Checking test 086 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 296.745911 -0:The maximum resident set size (KB) = 989868 +0:The total amount of wall time = 295.313938 +0:The maximum resident set size (KB) = 991976 -Test 085 rap_control_debug PASS +Test 086 rap_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control_debug -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/hrrr_control_debug -Checking test 086 hrrr_control_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_debug +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/hrrr_control_debug +Checking test 087 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 292.525081 -0:The maximum resident set size (KB) = 988780 +0:The total amount of wall time = 290.269255 +0:The maximum resident set size (KB) = 988488 -Test 086 hrrr_control_debug PASS +Test 087 hrrr_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_debug -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/rap_unified_drag_suite_debug -Checking test 087 rap_unified_drag_suite_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/rap_unified_drag_suite_debug +Checking test 088 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 298.356979 -0:The maximum resident set size (KB) = 989872 +0:The total amount of wall time = 295.088143 +0:The maximum resident set size (KB) = 992216 -Test 087 rap_unified_drag_suite_debug PASS +Test 088 rap_unified_drag_suite_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_diag_debug -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/rap_diag_debug -Checking test 088 rap_diag_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_diag_debug +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/rap_diag_debug +Checking test 089 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 310.620963 -0:The maximum resident set size (KB) = 1074056 +0:The total amount of wall time = 309.141616 +0:The maximum resident set size (KB) = 1074240 -Test 088 rap_diag_debug PASS +Test 089 rap_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/rap_cires_ugwp_debug -Checking test 089 rap_cires_ugwp_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_cires_ugwp_debug +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/rap_cires_ugwp_debug +Checking test 090 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 302.738816 -0:The maximum resident set size (KB) = 988636 +0:The total amount of wall time = 300.374753 +0:The maximum resident set size (KB) = 990160 -Test 089 rap_cires_ugwp_debug PASS +Test 090 rap_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/rap_unified_ugwp_debug -Checking test 090 rap_unified_ugwp_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_cires_ugwp_debug +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/rap_unified_ugwp_debug +Checking test 091 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 302.839104 -0:The maximum resident set size (KB) = 991916 +0:The total amount of wall time = 300.601704 +0:The maximum resident set size (KB) = 991116 -Test 090 rap_unified_ugwp_debug PASS +Test 091 rap_unified_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_lndp_debug -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/rap_lndp_debug -Checking test 091 rap_lndp_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_lndp_debug +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/rap_lndp_debug +Checking test 092 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 298.983809 -0:The maximum resident set size (KB) = 990552 +0:The total amount of wall time = 298.507224 +0:The maximum resident set size (KB) = 992676 -Test 091 rap_lndp_debug PASS +Test 092 rap_lndp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_flake_debug -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/rap_flake_debug -Checking test 092 rap_flake_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_flake_debug +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/rap_flake_debug +Checking test 093 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 301.096863 -0:The maximum resident set size (KB) = 990004 +0:The total amount of wall time = 295.668798 +0:The maximum resident set size (KB) = 991952 -Test 092 rap_flake_debug PASS +Test 093 rap_flake_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_progcld_thompson_debug -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/rap_progcld_thompson_debug -Checking test 093 rap_progcld_thompson_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_progcld_thompson_debug +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/rap_progcld_thompson_debug +Checking test 094 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 298.355618 -0:The maximum resident set size (KB) = 989932 +0:The total amount of wall time = 295.959104 +0:The maximum resident set size (KB) = 992004 -Test 093 rap_progcld_thompson_debug PASS +Test 094 rap_progcld_thompson_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_noah_debug -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/rap_noah_debug -Checking test 094 rap_noah_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_noah_debug +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/rap_noah_debug +Checking test 095 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 292.993269 -0:The maximum resident set size (KB) = 988472 +0:The total amount of wall time = 289.595622 +0:The maximum resident set size (KB) = 990616 -Test 094 rap_noah_debug PASS +Test 095 rap_noah_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_sfcdiff_debug -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/rap_sfcdiff_debug -Checking test 095 rap_sfcdiff_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff_debug +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/rap_sfcdiff_debug +Checking test 096 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 297.747022 -0:The maximum resident set size (KB) = 991272 +0:The total amount of wall time = 296.051929 +0:The maximum resident set size (KB) = 991824 -Test 095 rap_sfcdiff_debug PASS +Test 096 rap_sfcdiff_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 096 rap_noah_sfcdiff_cires_ugwp_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 097 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 483.577912 -0:The maximum resident set size (KB) = 989540 +0:The total amount of wall time = 479.954606 +0:The maximum resident set size (KB) = 989140 -Test 096 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 097 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_v1beta_debug -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/rrfs_v1beta_debug -Checking test 097 rrfs_v1beta_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1beta_debug +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/rrfs_v1beta_debug +Checking test 098 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 292.448898 -0:The maximum resident set size (KB) = 986408 +0:The total amount of wall time = 290.450653 +0:The maximum resident set size (KB) = 986252 -Test 097 rrfs_v1beta_debug PASS +Test 098 rrfs_v1beta_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/control_wam_debug -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/control_wam_debug -Checking test 098 control_wam_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wam_debug +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/control_wam_debug +Checking test 099 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 299.489006 -0:The maximum resident set size (KB) = 239080 +0:The total amount of wall time = 297.844023 +0:The maximum resident set size (KB) = 239468 -Test 098 control_wam_debug PASS +Test 099 control_wam_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/regional_spp_sppt_shum_skeb_dyn32_phy32 -Checking test 099 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 100 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -3256,15 +3308,15 @@ Checking test 099 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 303.509617 -0:The maximum resident set size (KB) = 848440 +0:The total amount of wall time = 306.479029 +0:The maximum resident set size (KB) = 849016 -Test 099 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS +Test 100 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/rap_control_dyn32_phy32 -Checking test 100 rap_control_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/rap_control_dyn32_phy32 +Checking test 101 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3310,15 +3362,15 @@ Checking test 100 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 386.835982 -0:The maximum resident set size (KB) = 707072 +0:The total amount of wall time = 386.112380 +0:The maximum resident set size (KB) = 707524 -Test 100 rap_control_dyn32_phy32 PASS +Test 101 rap_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/hrrr_control_dyn32_phy32 -Checking test 101 hrrr_control_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/hrrr_control_dyn32_phy32 +Checking test 102 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3364,15 +3416,15 @@ Checking test 101 hrrr_control_dyn32_phy32 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 = 210.619000 -0:The maximum resident set size (KB) = 705492 +0:The total amount of wall time = 204.207384 +0:The maximum resident set size (KB) = 705852 -Test 101 hrrr_control_dyn32_phy32 PASS +Test 102 hrrr_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/rap_2threads_dyn32_phy32 -Checking test 102 rap_2threads_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/rap_2threads_dyn32_phy32 +Checking test 103 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3418,15 +3470,15 @@ Checking test 102 rap_2threads_dyn32_phy32 results .... Comparing 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.607804 -0:The maximum resident set size (KB) = 757440 +0:The total amount of wall time = 368.296159 +0:The maximum resident set size (KB) = 756748 -Test 102 rap_2threads_dyn32_phy32 PASS +Test 103 rap_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/hrrr_control_2threads_dyn32_phy32 -Checking test 103 hrrr_control_2threads_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/hrrr_control_2threads_dyn32_phy32 +Checking test 104 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3472,15 +3524,15 @@ Checking test 103 hrrr_control_2threads_dyn32_phy32 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 = 203.618337 -0:The maximum resident set size (KB) = 758184 +0:The total amount of wall time = 202.661084 +0:The maximum resident set size (KB) = 759028 -Test 103 hrrr_control_2threads_dyn32_phy32 PASS +Test 104 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/hrrr_control_decomp_dyn32_phy32 -Checking test 104 hrrr_control_decomp_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/hrrr_control_decomp_dyn32_phy32 +Checking test 105 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3526,15 +3578,15 @@ Checking test 104 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 218.306637 -0:The maximum resident set size (KB) = 703940 +0:The total amount of wall time = 217.512238 +0:The maximum resident set size (KB) = 704072 -Test 104 hrrr_control_decomp_dyn32_phy32 PASS +Test 105 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/rap_restart_dyn32_phy32 -Checking test 105 rap_restart_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/rap_restart_dyn32_phy32 +Checking test 106 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3572,15 +3624,15 @@ Checking test 105 rap_restart_dyn32_phy32 results .... Comparing 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.564996 -0:The maximum resident set size (KB) = 544648 +0:The total amount of wall time = 285.802706 +0:The maximum resident set size (KB) = 544280 -Test 105 rap_restart_dyn32_phy32 PASS +Test 106 rap_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/hrrr_control_restart_dyn32_phy32 -Checking test 106 hrrr_control_restart_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/hrrr_control_restart_dyn32_phy32 +Checking test 107 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3618,15 +3670,15 @@ Checking test 106 hrrr_control_restart_dyn32_phy32 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 = 106.286337 -0:The maximum resident set size (KB) = 536796 +0:The total amount of wall time = 105.886440 +0:The maximum resident set size (KB) = 536844 -Test 106 hrrr_control_restart_dyn32_phy32 PASS +Test 107 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_dyn64_phy32 -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/rap_control_dyn64_phy32 -Checking test 107 rap_control_dyn64_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn64_phy32 +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/rap_control_dyn64_phy32 +Checking test 108 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3672,82 +3724,82 @@ Checking test 107 rap_control_dyn64_phy32 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 = 272.360535 -0:The maximum resident set size (KB) = 726844 +0:The total amount of wall time = 269.427860 +0:The maximum resident set size (KB) = 730060 -Test 107 rap_control_dyn64_phy32 PASS +Test 108 rap_control_dyn64_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/rap_control_debug_dyn32_phy32 -Checking test 108 rap_control_debug_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/rap_control_debug_dyn32_phy32 +Checking test 109 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 292.036134 -0:The maximum resident set size (KB) = 876028 +0:The total amount of wall time = 290.840392 +0:The maximum resident set size (KB) = 876164 -Test 108 rap_control_debug_dyn32_phy32 PASS +Test 109 rap_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/hrrr_control_debug_dyn32_phy32 -Checking test 109 hrrr_control_debug_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/hrrr_control_debug_dyn32_phy32 +Checking test 110 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 289.765373 -0:The maximum resident set size (KB) = 874476 +0:The total amount of wall time = 291.246296 +0:The maximum resident set size (KB) = 875372 -Test 109 hrrr_control_debug_dyn32_phy32 PASS +Test 110 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/rap_control_dyn64_phy32_debug -Checking test 110 rap_control_dyn64_phy32_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug_dyn64_phy32 +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/rap_control_dyn64_phy32_debug +Checking test 111 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 294.861219 -0:The maximum resident set size (KB) = 893432 +0:The total amount of wall time = 295.374712 +0:The maximum resident set size (KB) = 894308 -Test 110 rap_control_dyn64_phy32_debug PASS +Test 111 rap_control_dyn64_phy32_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_atm -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/hafs_regional_atm -Checking test 111 hafs_regional_atm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/hafs_regional_atm +Checking test 112 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -0:The total amount of wall time = 257.642416 -0:The maximum resident set size (KB) = 738916 +0:The total amount of wall time = 261.570048 +0:The maximum resident set size (KB) = 738748 -Test 111 hafs_regional_atm PASS +Test 112 hafs_regional_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/hafs_regional_atm_thompson_gfdlsf -Checking test 112 hafs_regional_atm_thompson_gfdlsf results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/hafs_regional_atm_thompson_gfdlsf +Checking test 113 hafs_regional_atm_thompson_gfdlsf results .... + Comparing atmf006.nc ............ALT CHECK......NOT OK + Comparing sfcf006.nc ............ALT CHECK......NOT OK -0:The total amount of wall time = 295.013775 -0:The maximum resident set size (KB) = 1090464 +0:The total amount of wall time = 288.608479 +0:The maximum resident set size (KB) = 1094680 -Test 112 hafs_regional_atm_thompson_gfdlsf PASS +Test 113 hafs_regional_atm_thompson_gfdlsf FAIL Tries: 2 -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_atm_ocn -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/hafs_regional_atm_ocn -Checking test 113 hafs_regional_atm_ocn results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_ocn +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/hafs_regional_atm_ocn +Checking test 114 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -3755,15 +3807,15 @@ Checking test 113 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 453.741862 -0:The maximum resident set size (KB) = 738612 +0:The total amount of wall time = 452.623927 +0:The maximum resident set size (KB) = 739856 -Test 113 hafs_regional_atm_ocn PASS +Test 114 hafs_regional_atm_ocn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_atm_wav -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/hafs_regional_atm_wav -Checking test 114 hafs_regional_atm_wav results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_wav +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/hafs_regional_atm_wav +Checking test 115 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK @@ -3771,15 +3823,15 @@ Checking test 114 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 1018.822084 -0:The maximum resident set size (KB) = 765884 +0:The total amount of wall time = 1081.166773 +0:The maximum resident set size (KB) = 768392 -Test 114 hafs_regional_atm_wav PASS +Test 115 hafs_regional_atm_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_atm_ocn_wav -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/hafs_regional_atm_ocn_wav -Checking test 115 hafs_regional_atm_ocn_wav results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_ocn_wav +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/hafs_regional_atm_ocn_wav +Checking test 116 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -3789,29 +3841,29 @@ Checking test 115 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 1160.568457 -0:The maximum resident set size (KB) = 790432 +0:The total amount of wall time = 1137.986466 +0:The maximum resident set size (KB) = 792788 -Test 115 hafs_regional_atm_ocn_wav PASS +Test 116 hafs_regional_atm_ocn_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_1nest_atm -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/hafs_regional_1nest_atm -Checking test 116 hafs_regional_1nest_atm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_1nest_atm +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/hafs_regional_1nest_atm +Checking test 117 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 380.184082 -0:The maximum resident set size (KB) = 293484 +0:The total amount of wall time = 375.906636 +0:The maximum resident set size (KB) = 295056 -Test 116 hafs_regional_1nest_atm PASS +Test 117 hafs_regional_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/hafs_regional_telescopic_2nests_atm -Checking test 117 hafs_regional_telescopic_2nests_atm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/hafs_regional_telescopic_2nests_atm +Checking test 118 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -3819,29 +3871,29 @@ Checking test 117 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -0:The total amount of wall time = 420.579007 -0:The maximum resident set size (KB) = 308080 +0:The total amount of wall time = 429.326113 +0:The maximum resident set size (KB) = 309904 -Test 117 hafs_regional_telescopic_2nests_atm PASS +Test 118 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_global_1nest_atm -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/hafs_global_1nest_atm -Checking test 118 hafs_global_1nest_atm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_1nest_atm +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/hafs_global_1nest_atm +Checking test 119 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 171.656211 -0:The maximum resident set size (KB) = 206396 +0:The total amount of wall time = 171.975933 +0:The maximum resident set size (KB) = 206788 -Test 118 hafs_global_1nest_atm PASS +Test 119 hafs_global_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_global_multiple_4nests_atm -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/hafs_global_multiple_4nests_atm -Checking test 119 hafs_global_multiple_4nests_atm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_multiple_4nests_atm +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/hafs_global_multiple_4nests_atm +Checking test 120 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -3858,15 +3910,15 @@ Checking test 119 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -0:The total amount of wall time = 491.527972 -0:The maximum resident set size (KB) = 292484 +0:The total amount of wall time = 492.000370 +0:The maximum resident set size (KB) = 291564 -Test 119 hafs_global_multiple_4nests_atm PASS +Test 120 hafs_global_multiple_4nests_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/hafs_regional_specified_moving_1nest_atm -Checking test 120 hafs_regional_specified_moving_1nest_atm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/hafs_regional_specified_moving_1nest_atm +Checking test 121 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -3874,29 +3926,29 @@ Checking test 120 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -0:The total amount of wall time = 242.180753 -0:The maximum resident set size (KB) = 306528 +0:The total amount of wall time = 239.969130 +0:The maximum resident set size (KB) = 307132 -Test 120 hafs_regional_specified_moving_1nest_atm PASS +Test 121 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/hafs_regional_storm_following_1nest_atm -Checking test 121 hafs_regional_storm_following_1nest_atm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/hafs_regional_storm_following_1nest_atm +Checking test 122 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 229.528735 -0:The maximum resident set size (KB) = 306460 +0:The total amount of wall time = 227.620474 +0:The maximum resident set size (KB) = 307300 -Test 121 hafs_regional_storm_following_1nest_atm PASS +Test 122 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/hafs_regional_storm_following_1nest_atm_ocn -Checking test 122 hafs_regional_storm_following_1nest_atm_ocn results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/hafs_regional_storm_following_1nest_atm_ocn +Checking test 123 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -3904,208 +3956,208 @@ Checking test 122 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -0:The total amount of wall time = 280.438267 -0:The maximum resident set size (KB) = 354120 +0:The total amount of wall time = 276.737373 +0:The maximum resident set size (KB) = 354688 -Test 122 hafs_regional_storm_following_1nest_atm_ocn PASS +Test 123 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_global_storm_following_1nest_atm -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/hafs_global_storm_following_1nest_atm -Checking test 123 hafs_global_storm_following_1nest_atm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_storm_following_1nest_atm +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/hafs_global_storm_following_1nest_atm +Checking test 124 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 66.405494 -0:The maximum resident set size (KB) = 221776 +0:The total amount of wall time = 66.524592 +0:The maximum resident set size (KB) = 223096 -Test 123 hafs_global_storm_following_1nest_atm PASS +Test 124 hafs_global_storm_following_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/hafs_regional_storm_following_1nest_atm_ocn_debug -Checking test 124 hafs_regional_storm_following_1nest_atm_ocn_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/hafs_regional_storm_following_1nest_atm_ocn_debug +Checking test 125 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 825.031012 -0:The maximum resident set size (KB) = 386856 +0:The total amount of wall time = 822.349991 +0:The maximum resident set size (KB) = 387440 -Test 124 hafs_regional_storm_following_1nest_atm_ocn_debug PASS +Test 125 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/hafs_regional_storm_following_1nest_atm_ocn_wav -Checking test 125 hafs_regional_storm_following_1nest_atm_ocn_wav results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing archv.2020_238_18.a .........OK - Comparing archs.2020_238_18.a .........OK - Comparing out_grd.ww3 .........OK - Comparing out_pnt.ww3 .........OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 126 hafs_regional_storm_following_1nest_atm_ocn_wav results .... + Comparing atmf006.nc ............ALT CHECK......NOT OK + Comparing sfcf006.nc ............ALT CHECK......NOT OK + Comparing atm.nest02.f006.nc ............ALT CHECK......NOT OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......NOT OK + Comparing archv.2020_238_18.a .........NOT OK + Comparing archs.2020_238_18.a .........NOT OK + Comparing out_grd.ww3 .........NOT OK + Comparing out_pnt.ww3 .........NOT OK -0:The total amount of wall time = 754.822406 -0:The maximum resident set size (KB) = 415456 +0:The total amount of wall time = 771.967761 +0:The maximum resident set size (KB) = 415992 -Test 125 hafs_regional_storm_following_1nest_atm_ocn_wav PASS +Test 126 hafs_regional_storm_following_1nest_atm_ocn_wav FAIL Tries: 2 -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_docn -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/hafs_regional_docn -Checking test 126 hafs_regional_docn results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_docn +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/hafs_regional_docn +Checking test 127 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 390.343081 -0:The maximum resident set size (KB) = 754312 +0:The total amount of wall time = 377.052162 +0:The maximum resident set size (KB) = 754328 -Test 126 hafs_regional_docn PASS +Test 127 hafs_regional_docn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_docn_oisst -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/hafs_regional_docn_oisst -Checking test 127 hafs_regional_docn_oisst results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_docn_oisst +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/hafs_regional_docn_oisst +Checking test 128 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 392.919020 -0:The maximum resident set size (KB) = 733588 +0:The total amount of wall time = 378.590454 +0:The maximum resident set size (KB) = 736972 -Test 127 hafs_regional_docn_oisst PASS +Test 128 hafs_regional_docn_oisst PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_datm_cdeps -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/hafs_regional_datm_cdeps -Checking test 128 hafs_regional_datm_cdeps results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_datm_cdeps +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/hafs_regional_datm_cdeps +Checking test 129 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -0:The total amount of wall time = 1158.497122 -0:The maximum resident set size (KB) = 887880 +0:The total amount of wall time = 1270.646344 +0:The maximum resident set size (KB) = 887852 -Test 128 hafs_regional_datm_cdeps PASS +Test 129 hafs_regional_datm_cdeps PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/datm_cdeps_control_cfsr -Checking test 129 datm_cdeps_control_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/datm_cdeps_control_cfsr +Checking test 130 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 167.890666 -0:The maximum resident set size (KB) = 727760 +0:The total amount of wall time = 168.212975 +0:The maximum resident set size (KB) = 727692 -Test 129 datm_cdeps_control_cfsr PASS +Test 130 datm_cdeps_control_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/datm_cdeps_restart_cfsr -Checking test 130 datm_cdeps_restart_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/datm_cdeps_restart_cfsr +Checking test 131 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 100.146966 -0:The maximum resident set size (KB) = 715928 +0:The total amount of wall time = 101.023626 +0:The maximum resident set size (KB) = 704836 -Test 130 datm_cdeps_restart_cfsr PASS +Test 131 datm_cdeps_restart_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_control_gefs -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/datm_cdeps_control_gefs -Checking test 131 datm_cdeps_control_gefs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_gefs +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/datm_cdeps_control_gefs +Checking test 132 datm_cdeps_control_gefs 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 = 161.645911 -0:The maximum resident set size (KB) = 607476 +0:The total amount of wall time = 161.348075 +0:The maximum resident set size (KB) = 607484 -Test 131 datm_cdeps_control_gefs PASS +Test 132 datm_cdeps_control_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_iau_gefs -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/datm_cdeps_iau_gefs -Checking test 132 datm_cdeps_iau_gefs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_iau_gefs +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/datm_cdeps_iau_gefs +Checking test 133 datm_cdeps_iau_gefs 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 = 164.573655 -0:The maximum resident set size (KB) = 607504 +0:The total amount of wall time = 164.727425 +0:The maximum resident set size (KB) = 607456 -Test 132 datm_cdeps_iau_gefs PASS +Test 133 datm_cdeps_iau_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_stochy_gefs -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/datm_cdeps_stochy_gefs -Checking test 133 datm_cdeps_stochy_gefs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_stochy_gefs +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/datm_cdeps_stochy_gefs +Checking test 134 datm_cdeps_stochy_gefs 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 = 160.148051 -0:The maximum resident set size (KB) = 607520 +0:The total amount of wall time = 166.662248 +0:The maximum resident set size (KB) = 607456 -Test 133 datm_cdeps_stochy_gefs PASS +Test 134 datm_cdeps_stochy_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_ciceC_cfsr -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/datm_cdeps_ciceC_cfsr -Checking test 134 datm_cdeps_ciceC_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_ciceC_cfsr +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/datm_cdeps_ciceC_cfsr +Checking test 135 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 169.069549 -0:The maximum resident set size (KB) = 716700 +0:The total amount of wall time = 169.033308 +0:The maximum resident set size (KB) = 716692 -Test 134 datm_cdeps_ciceC_cfsr PASS +Test 135 datm_cdeps_ciceC_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_bulk_cfsr -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/datm_cdeps_bulk_cfsr -Checking test 135 datm_cdeps_bulk_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_bulk_cfsr +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/datm_cdeps_bulk_cfsr +Checking test 136 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 163.532014 -0:The maximum resident set size (KB) = 716684 +0:The total amount of wall time = 162.733790 +0:The maximum resident set size (KB) = 716716 -Test 135 datm_cdeps_bulk_cfsr PASS +Test 136 datm_cdeps_bulk_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_bulk_gefs -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/datm_cdeps_bulk_gefs -Checking test 136 datm_cdeps_bulk_gefs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_bulk_gefs +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/datm_cdeps_bulk_gefs +Checking test 137 datm_cdeps_bulk_gefs 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 = 157.122935 -0:The maximum resident set size (KB) = 607500 +0:The total amount of wall time = 156.653378 +0:The maximum resident set size (KB) = 607452 -Test 136 datm_cdeps_bulk_gefs PASS +Test 137 datm_cdeps_bulk_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_mx025_cfsr -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/datm_cdeps_mx025_cfsr -Checking test 137 datm_cdeps_mx025_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_mx025_cfsr +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/datm_cdeps_mx025_cfsr +Checking test 138 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4113,15 +4165,15 @@ Checking test 137 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 426.886045 -0:The maximum resident set size (KB) = 515768 +0:The total amount of wall time = 413.543369 +0:The maximum resident set size (KB) = 514324 -Test 137 datm_cdeps_mx025_cfsr PASS +Test 138 datm_cdeps_mx025_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_mx025_gefs -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/datm_cdeps_mx025_gefs -Checking test 138 datm_cdeps_mx025_gefs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_mx025_gefs +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/datm_cdeps_mx025_gefs +Checking test 139 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4129,78 +4181,78 @@ Checking test 138 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 423.528567 -0:The maximum resident set size (KB) = 494784 +0:The total amount of wall time = 417.233788 +0:The maximum resident set size (KB) = 494800 -Test 138 datm_cdeps_mx025_gefs PASS +Test 139 datm_cdeps_mx025_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/datm_cdeps_multiple_files_cfsr -Checking test 139 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/datm_cdeps_multiple_files_cfsr +Checking test 140 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 167.569305 -0:The maximum resident set size (KB) = 716692 +0:The total amount of wall time = 168.226254 +0:The maximum resident set size (KB) = 728712 -Test 139 datm_cdeps_multiple_files_cfsr PASS +Test 140 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/datm_cdeps_3072x1536_cfsr -Checking test 140 datm_cdeps_3072x1536_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/datm_cdeps_3072x1536_cfsr +Checking test 141 datm_cdeps_3072x1536_cfsr 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 = 267.102407 -0:The maximum resident set size (KB) = 1940288 +0:The total amount of wall time = 266.822199 +0:The maximum resident set size (KB) = 1940296 -Test 140 datm_cdeps_3072x1536_cfsr PASS +Test 141 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_gfs -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/datm_cdeps_gfs -Checking test 141 datm_cdeps_gfs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_gfs +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/datm_cdeps_gfs +Checking test 142 datm_cdeps_gfs 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 = 268.408924 -0:The maximum resident set size (KB) = 1940316 +0:The total amount of wall time = 254.308672 +0:The maximum resident set size (KB) = 1941464 -Test 141 datm_cdeps_gfs PASS +Test 142 datm_cdeps_gfs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_debug_cfsr -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/datm_cdeps_debug_cfsr -Checking test 142 datm_cdeps_debug_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_debug_cfsr +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/datm_cdeps_debug_cfsr +Checking test 143 datm_cdeps_debug_cfsr results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -0:The total amount of wall time = 459.036428 -0:The maximum resident set size (KB) = 706656 +0:The total amount of wall time = 460.337107 +0:The maximum resident set size (KB) = 706660 -Test 142 datm_cdeps_debug_cfsr PASS +Test 143 datm_cdeps_debug_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_control_cfsr_faster -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/datm_cdeps_control_cfsr_faster -Checking test 143 datm_cdeps_control_cfsr_faster results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr_faster +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/datm_cdeps_control_cfsr_faster +Checking test 144 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 166.608985 -0:The maximum resident set size (KB) = 728000 +0:The total amount of wall time = 167.923025 +0:The maximum resident set size (KB) = 727948 -Test 143 datm_cdeps_control_cfsr_faster PASS +Test 144 datm_cdeps_control_cfsr_faster PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/datm_cdeps_lnd_gswp3 -Checking test 144 datm_cdeps_lnd_gswp3 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_lnd_gswp3 +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/datm_cdeps_lnd_gswp3 +Checking test 145 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4208,15 +4260,15 @@ Checking test 144 datm_cdeps_lnd_gswp3 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 = 10.714668 -0:The maximum resident set size (KB) = 208268 +0:The total amount of wall time = 10.281123 +0:The maximum resident set size (KB) = 208248 -Test 144 datm_cdeps_lnd_gswp3 PASS +Test 145 datm_cdeps_lnd_gswp3 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/datm_cdeps_lnd_gswp3_rst -Checking test 145 datm_cdeps_lnd_gswp3_rst results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_lnd_gswp3 +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/datm_cdeps_lnd_gswp3_rst +Checking test 146 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4224,15 +4276,15 @@ Checking test 145 datm_cdeps_lnd_gswp3_rst 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 = 16.099605 -0:The maximum resident set size (KB) = 208248 +0:The total amount of wall time = 15.522035 +0:The maximum resident set size (KB) = 208236 -Test 145 datm_cdeps_lnd_gswp3_rst PASS +Test 146 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8_atmlnd_sbs -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/control_p8_atmlnd_sbs -Checking test 146 control_p8_atmlnd_sbs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_atmlnd_sbs +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/control_p8_atmlnd_sbs +Checking test 147 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -4316,15 +4368,15 @@ Checking test 146 control_p8_atmlnd_sbs 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 = 234.429787 -0:The maximum resident set size (KB) = 1462096 +0:The total amount of wall time = 233.246748 +0:The maximum resident set size (KB) = 1463388 -Test 146 control_p8_atmlnd_sbs PASS +Test 147 control_p8_atmlnd_sbs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/control_atmwav -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/control_atmwav -Checking test 147 control_atmwav results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_atmwav +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/control_atmwav +Checking test 148 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -4367,15 +4419,15 @@ Checking test 147 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -0:The total amount of wall time = 99.749425 -0:The maximum resident set size (KB) = 474728 +0:The total amount of wall time = 99.920775 +0:The maximum resident set size (KB) = 474476 -Test 147 control_atmwav PASS +Test 148 control_atmwav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/atmaero_control_p8 -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/atmaero_control_p8 -Checking test 148 atmaero_control_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8 +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/atmaero_control_p8 +Checking test 149 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4418,15 +4470,15 @@ Checking test 148 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 253.139265 -0:The maximum resident set size (KB) = 2703384 +0:The total amount of wall time = 249.594339 +0:The maximum resident set size (KB) = 2703576 -Test 148 atmaero_control_p8 PASS +Test 149 atmaero_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/atmaero_control_p8_rad -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/atmaero_control_p8_rad -Checking test 149 atmaero_control_p8_rad results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8_rad +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/atmaero_control_p8_rad +Checking test 150 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4469,15 +4521,15 @@ Checking test 149 atmaero_control_p8_rad results .... Comparing 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.139635 -0:The maximum resident set size (KB) = 2757688 +0:The total amount of wall time = 304.411869 +0:The maximum resident set size (KB) = 2758284 -Test 149 atmaero_control_p8_rad PASS +Test 150 atmaero_control_p8_rad PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/atmaero_control_p8_rad_micro -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/atmaero_control_p8_rad_micro -Checking test 150 atmaero_control_p8_rad_micro results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8_rad_micro +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/atmaero_control_p8_rad_micro +Checking test 151 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4520,15 +4572,15 @@ Checking test 150 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 305.437065 -0:The maximum resident set size (KB) = 2764076 +0:The total amount of wall time = 311.454294 +0:The maximum resident set size (KB) = 2764276 -Test 150 atmaero_control_p8_rad_micro PASS +Test 151 atmaero_control_p8_rad_micro PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_atmaq -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/regional_atmaq -Checking test 151 regional_atmaq results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/regional_atmaq +Checking test 152 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -4543,15 +4595,15 @@ Checking test 151 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -0:The total amount of wall time = 744.493523 -0:The maximum resident set size (KB) = 998968 +0:The total amount of wall time = 746.481283 +0:The maximum resident set size (KB) = 999036 -Test 151 regional_atmaq PASS +Test 152 regional_atmaq PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_atmaq_faster -working dir = /glade/scratch/jongkim/rt-1642-intel/jongkim/FV3_RT/rt_56816/regional_atmaq_faster -Checking test 152 regional_atmaq_faster results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq_faster +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/regional_atmaq_faster +Checking test 153 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -4566,12 +4618,56 @@ Checking test 152 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -0:The total amount of wall time = 698.582061 -0:The maximum resident set size (KB) = 998712 +0:The total amount of wall time = 693.262882 +0:The maximum resident set size (KB) = 998732 + +Test 153 regional_atmaq_faster PASS + +FAILED TESTS: +Test hafs_regional_atm_thompson_gfdlsf 113 failed in check_result failed +Test hafs_regional_atm_thompson_gfdlsf 113 failed in run_test failed +Test hafs_regional_storm_following_1nest_atm_ocn_wav 126 failed in check_result failed +Test hafs_regional_storm_following_1nest_atm_ocn_wav 126 failed in run_test failed + +REGRESSION TEST FAILED +Sat Mar 25 11:23:18 MDT 2023 +Elapsed time: 01h:20m:29s. Have a nice day! +Sun Mar 26 18:35:44 MDT 2023 +Start Regression test + +Compile 001 elapsed time 1105 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 002 elapsed time 1567 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_73657/hafs_regional_atm_thompson_gfdlsf +Checking test 001 hafs_regional_atm_thompson_gfdlsf results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + +0:The total amount of wall time = 291.316796 +0:The maximum resident set size (KB) = 1094492 + +Test 001 hafs_regional_atm_thompson_gfdlsf PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_73657/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 002 hafs_regional_storm_following_1nest_atm_ocn_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing archv.2020_238_18.a .........OK + Comparing archs.2020_238_18.a .........OK + Comparing out_grd.ww3 .........OK + Comparing out_pnt.ww3 .........OK + +0:The total amount of wall time = 762.241838 +0:The maximum resident set size (KB) = 416064 -Test 152 regional_atmaq_faster PASS +Test 002 hafs_regional_storm_following_1nest_atm_ocn_wav PASS REGRESSION TEST WAS SUCCESSFUL -Thu Mar 23 07:00:21 MDT 2023 -Elapsed time: 01h:11m:55s. Have a nice day! +Sun Mar 26 19:28:54 MDT 2023 +Elapsed time: 00h:53m:11s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index 4efadad5d6d..d374c1ce014 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,42 +1,42 @@ -Tue Mar 14 16:36:24 EDT 2023 +Fri Mar 24 22:25:39 EDT 2023 Start Regression test -Compile 001 elapsed time 965 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 975 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 967 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 360 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 317 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 860 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 782 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 1183 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 764 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 710 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 732 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 716 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 855 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 290 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 203 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 714 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 709 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 239 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 206 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 800 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 271 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 986 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 750 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 024 elapsed time 296 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 170 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 307 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 122 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 737 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 658 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 735 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 774 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 240 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 851 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_mixedmode -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/cpld_control_p8_mixedmode +Compile 001 elapsed time 820 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 826 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 759 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 281 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 270 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 708 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 733 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 1020 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 746 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 719 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 643 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 599 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 807 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 243 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 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 016 elapsed time 648 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 634 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 190 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 204 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 670 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 021 elapsed time 223 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 855 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 689 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 024 elapsed time 266 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 171 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 303 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 97 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 677 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 660 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 724 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 658 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 230 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 813 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8_mixedmode +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -101,14 +101,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 337.629021 - 0: The maximum resident set size (KB) = 1534544 + 0: The total amount of wall time = 345.876011 + 0: The maximum resident set size (KB) = 1535004 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_gfsv17 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/cpld_control_gfsv17 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_gfsv17 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -172,14 +172,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 267.558389 - 0: The maximum resident set size (KB) = 1443640 + 0: The total amount of wall time = 258.051466 + 0: The maximum resident set size (KB) = 1444588 Test 002 cpld_control_gfsv17 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/cpld_control_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -244,14 +244,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 384.744960 - 0: The maximum resident set size (KB) = 1568052 + 0: The total amount of wall time = 391.631961 + 0: The maximum resident set size (KB) = 1568564 Test 003 cpld_control_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/cpld_restart_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -304,14 +304,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 226.491456 - 0: The maximum resident set size (KB) = 1019208 + 0: The total amount of wall time = 239.073289 + 0: The maximum resident set size (KB) = 1018908 Test 004 cpld_restart_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/cpld_2threads_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -364,14 +364,14 @@ Checking test 005 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 401.201290 - 0: The maximum resident set size (KB) = 1758876 + 0: The total amount of wall time = 411.797254 + 0: The maximum resident set size (KB) = 1758356 Test 005 cpld_2threads_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/cpld_decomp_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/cpld_decomp_p8 Checking test 006 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -424,14 +424,14 @@ Checking test 006 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 389.727248 - 0: The maximum resident set size (KB) = 1559404 + 0: The total amount of wall time = 393.031347 + 0: The maximum resident set size (KB) = 1561364 Test 006 cpld_decomp_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/cpld_mpi_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/cpld_mpi_p8 Checking test 007 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -484,14 +484,14 @@ Checking test 007 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 323.356678 - 0: The maximum resident set size (KB) = 1526240 + 0: The total amount of wall time = 341.608813 + 0: The maximum resident set size (KB) = 1526088 Test 007 cpld_mpi_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_ciceC_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/cpld_control_ciceC_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_ciceC_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/cpld_control_ciceC_p8 Checking test 008 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -556,14 +556,14 @@ Checking test 008 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 399.598752 - 0: The maximum resident set size (KB) = 1566176 + 0: The total amount of wall time = 403.103621 + 0: The maximum resident set size (KB) = 1568552 Test 008 cpld_control_ciceC_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c192_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/cpld_control_c192_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c192_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/cpld_control_c192_p8 Checking test 009 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -616,14 +616,14 @@ Checking test 009 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 777.462938 - 0: The maximum resident set size (KB) = 1762304 + 0: The total amount of wall time = 770.649630 + 0: The maximum resident set size (KB) = 1759628 Test 009 cpld_control_c192_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c192_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/cpld_restart_c192_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c192_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/cpld_restart_c192_p8 Checking test 010 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -676,14 +676,14 @@ Checking test 010 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 525.854997 - 0: The maximum resident set size (KB) = 1917036 + 0: The total amount of wall time = 527.960936 + 0: The maximum resident set size (KB) = 1923592 Test 010 cpld_restart_c192_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_bmark_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/cpld_bmark_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_bmark_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/cpld_bmark_p8 Checking test 011 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -731,14 +731,14 @@ Checking test 011 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 861.164045 - 0: The maximum resident set size (KB) = 2502572 + 0: The total amount of wall time = 837.247592 + 0: The maximum resident set size (KB) = 2505096 Test 011 cpld_bmark_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_bmark_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/cpld_restart_bmark_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_bmark_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/cpld_restart_bmark_p8 Checking test 012 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -786,14 +786,14 @@ Checking test 012 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 686.184641 - 0: The maximum resident set size (KB) = 2323528 + 0: The total amount of wall time = 604.473663 + 0: The maximum resident set size (KB) = 2330224 Test 012 cpld_restart_bmark_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/cpld_control_noaero_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_noaero_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/cpld_control_noaero_p8 Checking test 013 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -857,14 +857,14 @@ Checking test 013 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 289.067188 - 0: The maximum resident set size (KB) = 1440348 + 0: The total amount of wall time = 297.333817 + 0: The maximum resident set size (KB) = 1441884 Test 013 cpld_control_noaero_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c96_noaero_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/cpld_control_nowave_noaero_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c96_noaero_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/cpld_control_nowave_noaero_p8 Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -926,16 +926,74 @@ Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 297.572749 - 0: The maximum resident set size (KB) = 1474120 + 0: The total amount of wall time = 305.190526 + 0: The maximum resident set size (KB) = 1474860 Test 014 cpld_control_nowave_noaero_p8 PASS -Test 015 cpld_debug_p8 FAIL +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_debug_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/cpld_debug_p8 +Checking test 015 cpld_debug_p8 results .... + Comparing sfcf003.tile1.nc .........OK + Comparing sfcf003.tile2.nc .........OK + Comparing sfcf003.tile3.nc .........OK + Comparing sfcf003.tile4.nc .........OK + Comparing sfcf003.tile5.nc .........OK + Comparing sfcf003.tile6.nc .........OK + Comparing atmf003.tile1.nc .........OK + Comparing atmf003.tile2.nc .........OK + Comparing atmf003.tile3.nc .........OK + Comparing atmf003.tile4.nc .........OK + Comparing atmf003.tile5.nc .........OK + Comparing atmf003.tile6.nc .........OK + Comparing gocart.inst_aod.20210322_0900z.nc4 .........OK + Comparing RESTART/20210322.090000.coupler.res .........OK + Comparing RESTART/20210322.090000.fv_core.res.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-22-32400.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK + Comparing 20210322.090000.out_pnt.ww3 .........OK + Comparing 20210322.090000.out_grd.ww3 .........OK -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_debug_noaero_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/cpld_debug_noaero_p8 + 0: The total amount of wall time = 586.418268 + 0: The maximum resident set size (KB) = 1595236 + +Test 015 cpld_debug_p8 PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_debug_noaero_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/cpld_debug_noaero_p8 Checking test 016 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -987,14 +1045,14 @@ Checking test 016 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 410.749917 - 0: The maximum resident set size (KB) = 1441932 + 0: The total amount of wall time = 402.409190 + 0: The maximum resident set size (KB) = 1442200 Test 016 cpld_debug_noaero_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8_agrid -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/cpld_control_noaero_p8_agrid +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_noaero_p8_agrid +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/cpld_control_noaero_p8_agrid Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1056,14 +1114,14 @@ Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 310.307588 - 0: The maximum resident set size (KB) = 1476436 + 0: The total amount of wall time = 319.490705 + 0: The maximum resident set size (KB) = 1478044 Test 017 cpld_control_noaero_p8_agrid PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c48 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/cpld_control_c48 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c48 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/cpld_control_c48 Checking test 018 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1113,14 +1171,14 @@ Checking test 018 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 601.108983 - 0: The maximum resident set size (KB) = 2569004 + 0: The total amount of wall time = 599.000323 + 0: The maximum resident set size (KB) = 2572272 Test 018 cpld_control_c48 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/cpld_warmstart_c48 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_warmstart_c48 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/cpld_warmstart_c48 Checking test 019 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1170,14 +1228,14 @@ Checking test 019 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 159.849334 - 0: The maximum resident set size (KB) = 2585608 + 0: The total amount of wall time = 159.424770 + 0: The maximum resident set size (KB) = 2574728 Test 019 cpld_warmstart_c48 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/cpld_restart_c48 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_warmstart_c48 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/cpld_restart_c48 Checking test 020 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1227,14 +1285,14 @@ Checking test 020 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 84.255033 - 0: The maximum resident set size (KB) = 1996440 + 0: The total amount of wall time = 84.229879 + 0: The maximum resident set size (KB) = 1998228 Test 020 cpld_restart_c48 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_faster -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/cpld_control_p8_faster +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8_faster +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/cpld_control_p8_faster Checking test 021 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1299,14 +1357,14 @@ Checking test 021 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 381.043548 - 0: The maximum resident set size (KB) = 1568356 + 0: The total amount of wall time = 380.645176 + 0: The maximum resident set size (KB) = 1568284 Test 021 cpld_control_p8_faster PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/control_CubedSphereGrid +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/control_CubedSphereGrid Checking test 022 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1333,28 +1391,28 @@ Checking test 022 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 140.921362 - 0: The maximum resident set size (KB) = 437232 + 0: The total amount of wall time = 142.991201 + 0: The maximum resident set size (KB) = 437396 Test 022 control_CubedSphereGrid PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/control_CubedSphereGrid_parallel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid_parallel +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/control_CubedSphereGrid_parallel Checking test 023 control_CubedSphereGrid_parallel 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 = 154.828648 - 0: The maximum resident set size (KB) = 437192 + 0: The total amount of wall time = 147.282237 + 0: The maximum resident set size (KB) = 437512 Test 023 control_CubedSphereGrid_parallel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_latlon -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/control_latlon +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_latlon +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/control_latlon Checking test 024 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1365,14 +1423,14 @@ Checking test 024 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 148.747644 - 0: The maximum resident set size (KB) = 437004 + 0: The total amount of wall time = 153.566475 + 0: The maximum resident set size (KB) = 437152 Test 024 control_latlon PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/control_wrtGauss_netcdf_parallel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/control_wrtGauss_netcdf_parallel Checking test 025 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1383,14 +1441,14 @@ Checking test 025 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 177.500715 - 0: The maximum resident set size (KB) = 436996 + 0: The total amount of wall time = 168.095389 + 0: The maximum resident set size (KB) = 437288 Test 025 control_wrtGauss_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c48 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/control_c48 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c48 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/control_c48 Checking test 026 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1429,14 +1487,14 @@ Checking test 026 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 419.297261 -0: The maximum resident set size (KB) = 630456 +0: The total amount of wall time = 418.293783 +0: The maximum resident set size (KB) = 633808 Test 026 control_c48 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c192 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/control_c192 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c192 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/control_c192 Checking test 027 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1447,14 +1505,14 @@ Checking test 027 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 584.103619 - 0: The maximum resident set size (KB) = 540056 + 0: The total amount of wall time = 584.357373 + 0: The maximum resident set size (KB) = 542068 Test 027 control_c192 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/control_c384 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c384 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/control_c384 Checking test 028 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1465,14 +1523,14 @@ Checking test 028 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1111.262935 - 0: The maximum resident set size (KB) = 818388 + 0: The total amount of wall time = 1105.254999 + 0: The maximum resident set size (KB) = 820432 Test 028 control_c384 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384gdas -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/control_c384gdas +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c384gdas +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/control_c384gdas Checking test 029 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1515,14 +1573,14 @@ Checking test 029 control_c384gdas 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 = 942.557505 - 0: The maximum resident set size (KB) = 948200 + 0: The total amount of wall time = 935.009396 + 0: The maximum resident set size (KB) = 953072 Test 029 control_c384gdas PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/control_stochy +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/control_stochy Checking test 030 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1533,28 +1591,28 @@ Checking test 030 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 97.462872 - 0: The maximum resident set size (KB) = 440336 + 0: The total amount of wall time = 97.493188 + 0: The maximum resident set size (KB) = 440800 Test 030 control_stochy PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/control_stochy_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/control_stochy_restart Checking test 031 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 53.331820 - 0: The maximum resident set size (KB) = 194668 + 0: The total amount of wall time = 51.731526 + 0: The maximum resident set size (KB) = 194752 Test 031 control_stochy_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/control_lndp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_lndp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/control_lndp Checking test 032 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1565,14 +1623,14 @@ Checking test 032 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 92.594599 - 0: The maximum resident set size (KB) = 440172 + 0: The total amount of wall time = 91.199950 + 0: The maximum resident set size (KB) = 440452 Test 032 control_lndp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr4 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/control_iovr4 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_iovr4 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/control_iovr4 Checking test 033 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1587,14 +1645,14 @@ Checking test 033 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 148.383027 - 0: The maximum resident set size (KB) = 436936 + 0: The total amount of wall time = 146.091350 + 0: The maximum resident set size (KB) = 437304 Test 033 control_iovr4 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr5 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/control_iovr5 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_iovr5 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/control_iovr5 Checking test 034 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1609,14 +1667,14 @@ Checking test 034 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 151.143950 - 0: The maximum resident set size (KB) = 436988 + 0: The total amount of wall time = 146.788685 + 0: The maximum resident set size (KB) = 437172 Test 034 control_iovr5 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/control_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/control_p8 Checking test 035 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1663,14 +1721,14 @@ Checking test 035 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 196.063819 - 0: The maximum resident set size (KB) = 1379628 + 0: The total amount of wall time = 195.231566 + 0: The maximum resident set size (KB) = 1379260 Test 035 control_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_lndp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/control_p8_lndp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_lndp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/control_p8_lndp Checking test 036 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1689,14 +1747,14 @@ Checking test 036 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 335.627357 - 0: The maximum resident set size (KB) = 1379652 + 0: The total amount of wall time = 345.483752 + 0: The maximum resident set size (KB) = 1379832 Test 036 control_p8_lndp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/control_restart_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/control_restart_p8 Checking test 037 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1735,14 +1793,14 @@ Checking test 037 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 102.447825 - 0: The maximum resident set size (KB) = 556064 + 0: The total amount of wall time = 108.164569 + 0: The maximum resident set size (KB) = 556436 Test 037 control_restart_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/control_decomp_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/control_decomp_p8 Checking test 038 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1785,14 +1843,14 @@ Checking test 038 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 199.797134 - 0: The maximum resident set size (KB) = 1374188 + 0: The total amount of wall time = 197.097755 + 0: The maximum resident set size (KB) = 1374236 Test 038 control_decomp_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/control_2threads_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/control_2threads_p8 Checking test 039 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1835,14 +1893,14 @@ Checking test 039 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 178.919070 - 0: The maximum resident set size (KB) = 1457184 + 0: The total amount of wall time = 186.590455 + 0: The maximum resident set size (KB) = 1459916 Test 039 control_2threads_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_rrtmgp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/control_p8_rrtmgp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_rrtmgp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/control_p8_rrtmgp Checking test 040 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1889,15 +1947,69 @@ Checking test 040 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 249.555003 - 0: The maximum resident set size (KB) = 1437304 + 0: The total amount of wall time = 258.368397 + 0: The maximum resident set size (KB) = 1437144 Test 040 control_p8_rrtmgp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/merra2_thompson -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/merra2_thompson -Checking test 041 merra2_thompson results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_mynn +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/control_p8_mynn +Checking test 041 control_p8_mynn results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 196.899302 + 0: The maximum resident set size (KB) = 1383608 + +Test 041 control_p8_mynn PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/merra2_thompson +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/merra2_thompson +Checking test 042 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1943,15 +2055,15 @@ Checking test 041 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 206.789875 - 0: The maximum resident set size (KB) = 1385808 + 0: The total amount of wall time = 219.904238 + 0: The maximum resident set size (KB) = 1385208 -Test 041 merra2_thompson PASS +Test 042 merra2_thompson PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/regional_control -Checking test 042 regional_control results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/regional_control +Checking test 043 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1961,29 +2073,29 @@ Checking test 042 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 335.510695 - 0: The maximum resident set size (KB) = 577564 + 0: The total amount of wall time = 330.950566 + 0: The maximum resident set size (KB) = 578136 -Test 042 regional_control PASS +Test 043 regional_control PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/regional_restart -Checking test 043 regional_restart results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/regional_restart +Checking test 044 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 177.286895 - 0: The maximum resident set size (KB) = 577384 + 0: The total amount of wall time = 168.360278 + 0: The maximum resident set size (KB) = 577592 -Test 043 regional_restart PASS +Test 044 regional_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/regional_decomp -Checking test 044 regional_decomp results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/regional_decomp +Checking test 045 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1993,15 +2105,15 @@ Checking test 044 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 356.168441 - 0: The maximum resident set size (KB) = 579220 + 0: The total amount of wall time = 349.384917 + 0: The maximum resident set size (KB) = 581004 -Test 044 regional_decomp PASS +Test 045 regional_decomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/regional_2threads -Checking test 045 regional_2threads results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/regional_2threads +Checking test 046 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2011,44 +2123,44 @@ Checking test 045 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 209.153891 - 0: The maximum resident set size (KB) = 585220 + 0: The total amount of wall time = 205.040508 + 0: The maximum resident set size (KB) = 585616 -Test 045 regional_2threads PASS +Test 046 regional_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_noquilt -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/regional_noquilt -Checking test 046 regional_noquilt results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_noquilt +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/regional_noquilt +Checking test 047 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 370.506027 - 0: The maximum resident set size (KB) = 572832 + 0: The total amount of wall time = 354.707033 + 0: The maximum resident set size (KB) = 573860 -Test 046 regional_noquilt PASS +Test 047 regional_noquilt PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_netcdf_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/regional_netcdf_parallel -Checking test 047 regional_netcdf_parallel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_netcdf_parallel +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/regional_netcdf_parallel +Checking test 048 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 356.195786 - 0: The maximum resident set size (KB) = 576824 + 0: The total amount of wall time = 329.455688 + 0: The maximum resident set size (KB) = 577992 -Test 047 regional_netcdf_parallel PASS +Test 048 regional_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/regional_2dwrtdecomp -Checking test 048 regional_2dwrtdecomp results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/regional_2dwrtdecomp +Checking test 049 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2058,15 +2170,15 @@ Checking test 048 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 344.679031 - 0: The maximum resident set size (KB) = 577652 + 0: The total amount of wall time = 329.992765 + 0: The maximum resident set size (KB) = 578128 -Test 048 regional_2dwrtdecomp PASS +Test 049 regional_2dwrtdecomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/fv3_regional_wofs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/regional_wofs -Checking test 049 regional_wofs results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/fv3_regional_wofs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/regional_wofs +Checking test 050 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2076,15 +2188,15 @@ Checking test 049 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 432.832696 - 0: The maximum resident set size (KB) = 263212 + 0: The total amount of wall time = 419.160137 + 0: The maximum resident set size (KB) = 264092 -Test 049 regional_wofs PASS +Test 050 regional_wofs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/rap_control -Checking test 050 rap_control results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/rap_control +Checking test 051 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2130,15 +2242,15 @@ Checking test 050 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 478.960518 - 0: The maximum resident set size (KB) = 807636 + 0: The total amount of wall time = 473.424425 + 0: The maximum resident set size (KB) = 810580 -Test 050 rap_control PASS +Test 051 rap_control PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/regional_spp_sppt_shum_skeb -Checking test 051 regional_spp_sppt_shum_skeb results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_spp_sppt_shum_skeb +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/regional_spp_sppt_shum_skeb +Checking test 052 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -2148,15 +2260,15 @@ Checking test 051 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 354.290658 - 0: The maximum resident set size (KB) = 898004 + 0: The total amount of wall time = 338.996434 + 0: The maximum resident set size (KB) = 890780 -Test 051 regional_spp_sppt_shum_skeb PASS +Test 052 regional_spp_sppt_shum_skeb PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/rap_decomp -Checking test 052 rap_decomp results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/rap_decomp +Checking test 053 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2202,15 +2314,15 @@ Checking test 052 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 515.545663 - 0: The maximum resident set size (KB) = 807236 + 0: The total amount of wall time = 493.185269 + 0: The maximum resident set size (KB) = 807320 -Test 052 rap_decomp PASS +Test 053 rap_decomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/rap_2threads -Checking test 053 rap_2threads results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/rap_2threads +Checking test 054 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2256,15 +2368,15 @@ Checking test 053 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 470.103306 - 0: The maximum resident set size (KB) = 877816 + 0: The total amount of wall time = 464.664153 + 0: The maximum resident set size (KB) = 877712 -Test 053 rap_2threads PASS +Test 054 rap_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/rap_restart -Checking test 054 rap_restart results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/rap_restart +Checking test 055 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2302,15 +2414,15 @@ Checking test 054 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 245.156944 - 0: The maximum resident set size (KB) = 553428 + 0: The total amount of wall time = 245.108278 + 0: The maximum resident set size (KB) = 553432 -Test 054 rap_restart PASS +Test 055 rap_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/rap_sfcdiff -Checking test 055 rap_sfcdiff results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/rap_sfcdiff +Checking test 056 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2356,15 +2468,15 @@ Checking test 055 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 477.743020 - 0: The maximum resident set size (KB) = 807548 + 0: The total amount of wall time = 466.810370 + 0: The maximum resident set size (KB) = 810672 -Test 055 rap_sfcdiff PASS +Test 056 rap_sfcdiff PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/rap_sfcdiff_decomp -Checking test 056 rap_sfcdiff_decomp results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/rap_sfcdiff_decomp +Checking test 057 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2410,15 +2522,15 @@ Checking test 056 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 510.454973 - 0: The maximum resident set size (KB) = 806812 + 0: The total amount of wall time = 486.096313 + 0: The maximum resident set size (KB) = 807264 -Test 056 rap_sfcdiff_decomp PASS +Test 057 rap_sfcdiff_decomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/rap_sfcdiff_restart -Checking test 057 rap_sfcdiff_restart results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/rap_sfcdiff_restart +Checking test 058 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2456,15 +2568,15 @@ Checking test 057 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 358.635428 - 0: The maximum resident set size (KB) = 551516 + 0: The total amount of wall time = 353.670707 + 0: The maximum resident set size (KB) = 551896 -Test 057 rap_sfcdiff_restart PASS +Test 058 rap_sfcdiff_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/hrrr_control -Checking test 058 hrrr_control results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/hrrr_control +Checking test 059 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2510,15 +2622,15 @@ Checking test 058 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 464.066720 - 0: The maximum resident set size (KB) = 804948 + 0: The total amount of wall time = 445.736294 + 0: The maximum resident set size (KB) = 806752 -Test 058 hrrr_control PASS +Test 059 hrrr_control PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/hrrr_control_decomp -Checking test 059 hrrr_control_decomp results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/hrrr_control_decomp +Checking test 060 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2564,15 +2676,15 @@ Checking test 059 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 479.601000 - 0: The maximum resident set size (KB) = 804544 + 0: The total amount of wall time = 466.709740 + 0: The maximum resident set size (KB) = 804472 -Test 059 hrrr_control_decomp PASS +Test 060 hrrr_control_decomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/hrrr_control_2threads -Checking test 060 hrrr_control_2threads results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/hrrr_control_2threads +Checking test 061 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2618,15 +2730,15 @@ Checking test 060 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 438.522339 - 0: The maximum resident set size (KB) = 871296 + 0: The total amount of wall time = 426.448099 + 0: The maximum resident set size (KB) = 872260 -Test 060 hrrr_control_2threads PASS +Test 061 hrrr_control_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/hrrr_control_restart -Checking test 061 hrrr_control_restart results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/hrrr_control_restart +Checking test 062 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2664,15 +2776,15 @@ Checking test 061 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 351.610093 - 0: The maximum resident set size (KB) = 550128 + 0: The total amount of wall time = 340.254198 + 0: The maximum resident set size (KB) = 550284 -Test 061 hrrr_control_restart PASS +Test 062 hrrr_control_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/rrfs_v1beta -Checking test 062 rrfs_v1beta results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1beta +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/rrfs_v1beta +Checking test 063 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2718,15 +2830,15 @@ Checking test 062 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 474.267741 - 0: The maximum resident set size (KB) = 800612 + 0: The total amount of wall time = 458.032621 + 0: The maximum resident set size (KB) = 802952 -Test 062 rrfs_v1beta PASS +Test 063 rrfs_v1beta PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/rrfs_v1nssl -Checking test 063 rrfs_v1nssl results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1nssl +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/rrfs_v1nssl +Checking test 064 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2740,15 +2852,15 @@ Checking test 063 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 575.086803 - 0: The maximum resident set size (KB) = 491708 + 0: The total amount of wall time = 566.154929 + 0: The maximum resident set size (KB) = 494416 -Test 063 rrfs_v1nssl PASS +Test 064 rrfs_v1nssl PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/rrfs_v1nssl_nohailnoccn -Checking test 064 rrfs_v1nssl_nohailnoccn results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/rrfs_v1nssl_nohailnoccn +Checking test 065 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2762,30 +2874,14 @@ Checking test 064 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 554.908131 - 0: The maximum resident set size (KB) = 485920 - -Test 064 rrfs_v1nssl_nohailnoccn PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/rrfs_conus13km_hrrr_warm -Checking test 065 rrfs_conus13km_hrrr_warm 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 - - 0: The total amount of wall time = 144.525913 - 0: The maximum resident set size (KB) = 617344 + 0: The total amount of wall time = 552.707628 + 0: The maximum resident set size (KB) = 486208 -Test 065 rrfs_conus13km_hrrr_warm PASS +Test 065 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/rrfs_smoke_conus13km_hrrr_warm Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2794,15 +2890,15 @@ Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 149.199710 - 0: The maximum resident set size (KB) = 627652 + 0: The total amount of wall time = 173.280798 + 0: The maximum resident set size (KB) = 654076 Test 066 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/rrfs_conus13km_radar_tten_warm -Checking test 067 rrfs_conus13km_radar_tten_warm results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/rrfs_smoke_conus13km_hrrr_warm_2threads +Checking test 067 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2810,15 +2906,15 @@ Checking test 067 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 143.875853 - 0: The maximum resident set size (KB) = 621164 + 0: The total amount of wall time = 117.686617 + 0: The maximum resident set size (KB) = 667904 -Test 067 rrfs_conus13km_radar_tten_warm PASS +Test 067 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/rrfs_conus13km_hrrr_warm_2threads -Checking test 068 rrfs_conus13km_hrrr_warm_2threads results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/rrfs_conus13km_hrrr_warm +Checking test 068 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2826,15 +2922,15 @@ Checking test 068 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 93.323606 - 0: The maximum resident set size (KB) = 629528 + 0: The total amount of wall time = 164.574384 + 0: The maximum resident set size (KB) = 633164 -Test 068 rrfs_conus13km_hrrr_warm_2threads PASS +Test 068 rrfs_conus13km_hrrr_warm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/rrfs_conus13km_radar_tten_warm_2threads -Checking test 069 rrfs_conus13km_radar_tten_warm_2threads results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/rrfs_smoke_conus13km_radar_tten_warm +Checking test 069 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2842,14 +2938,14 @@ Checking test 069 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 95.914854 - 0: The maximum resident set size (KB) = 632476 + 0: The total amount of wall time = 174.828216 + 0: The maximum resident set size (KB) = 657732 -Test 069 rrfs_conus13km_radar_tten_warm_2threads PASS +Test 069 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/control_csawmgt +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmgt +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/control_csawmgt Checking test 070 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2860,14 +2956,14 @@ Checking test 070 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 384.505810 - 0: The maximum resident set size (KB) = 505508 + 0: The total amount of wall time = 396.978813 + 0: The maximum resident set size (KB) = 504652 Test 070 control_csawmgt PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/control_ras +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_ras +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/control_ras Checking test 071 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2878,26 +2974,26 @@ Checking test 071 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 200.021423 - 0: The maximum resident set size (KB) = 470932 + 0: The total amount of wall time = 200.102105 + 0: The maximum resident set size (KB) = 472708 Test 071 control_ras PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/control_wam +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wam +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/control_wam Checking test 072 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 134.982467 - 0: The maximum resident set size (KB) = 188168 + 0: The total amount of wall time = 126.512632 + 0: The maximum resident set size (KB) = 188344 Test 072 control_wam PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_faster -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/control_p8_faster +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_faster +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/control_p8_faster Checking test 073 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2944,14 +3040,14 @@ Checking test 073 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 178.708654 - 0: The maximum resident set size (KB) = 1379584 + 0: The total amount of wall time = 183.336338 + 0: The maximum resident set size (KB) = 1379268 Test 073 control_p8_faster PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control_faster -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/regional_control_faster +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control_faster +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/regional_control_faster Checking test 074 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2962,43 +3058,57 @@ Checking test 074 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 330.359109 - 0: The maximum resident set size (KB) = 577644 + 0: The total amount of wall time = 312.301334 + 0: The maximum resident set size (KB) = 577884 Test 074 regional_control_faster PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/rrfs_conus13km_hrrr_warm_debug -Checking test 075 rrfs_conus13km_hrrr_warm_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/rrfs_smoke_conus13km_hrrr_warm_debug +Checking test 075 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 761.456177 - 0: The maximum resident set size (KB) = 649404 + 0: The total amount of wall time = 899.127726 + 0: The maximum resident set size (KB) = 691668 -Test 075 rrfs_conus13km_hrrr_warm_debug PASS +Test 075 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/rrfs_conus13km_radar_tten_warm_debug -Checking test 076 rrfs_conus13km_radar_tten_warm_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +Checking test 076 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 762.933850 - 0: The maximum resident set size (KB) = 652376 + 0: The total amount of wall time = 531.571451 + 0: The maximum resident set size (KB) = 705392 + +Test 076 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -Test 076 rrfs_conus13km_radar_tten_warm_debug PASS +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/rrfs_conus13km_hrrr_warm_debug +Checking test 077 rrfs_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/control_CubedSphereGrid_debug -Checking test 077 control_CubedSphereGrid_debug results .... + 0: The total amount of wall time = 807.616373 + 0: The maximum resident set size (KB) = 666324 + +Test 077 rrfs_conus13km_hrrr_warm_debug PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/control_CubedSphereGrid_debug +Checking test 078 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3024,335 +3134,335 @@ Checking test 077 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 164.064181 - 0: The maximum resident set size (KB) = 601824 + 0: The total amount of wall time = 166.232873 + 0: The maximum resident set size (KB) = 601760 -Test 077 control_CubedSphereGrid_debug PASS +Test 078 control_CubedSphereGrid_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/control_wrtGauss_netcdf_parallel_debug -Checking test 078 control_wrtGauss_netcdf_parallel_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/control_wrtGauss_netcdf_parallel_debug +Checking test 079 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 164.006353 - 0: The maximum resident set size (KB) = 601132 + 0: The total amount of wall time = 166.879325 + 0: The maximum resident set size (KB) = 601616 -Test 078 control_wrtGauss_netcdf_parallel_debug PASS +Test 079 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/control_stochy_debug -Checking test 079 control_stochy_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/control_stochy_debug +Checking test 080 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 179.216539 - 0: The maximum resident set size (KB) = 607948 + 0: The total amount of wall time = 179.339754 + 0: The maximum resident set size (KB) = 608168 -Test 079 control_stochy_debug PASS +Test 080 control_stochy_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/control_lndp_debug -Checking test 080 control_lndp_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_lndp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/control_lndp_debug +Checking test 081 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 158.784408 - 0: The maximum resident set size (KB) = 605836 + 0: The total amount of wall time = 165.581582 + 0: The maximum resident set size (KB) = 606372 -Test 080 control_lndp_debug PASS +Test 081 control_lndp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/control_csawmg_debug -Checking test 081 control_csawmg_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmg_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/control_csawmg_debug +Checking test 082 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 252.296977 - 0: The maximum resident set size (KB) = 642504 + 0: The total amount of wall time = 259.507005 + 0: The maximum resident set size (KB) = 643588 -Test 081 control_csawmg_debug PASS +Test 082 control_csawmg_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/control_csawmgt_debug -Checking test 082 control_csawmgt_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmgt_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/control_csawmgt_debug +Checking test 083 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 249.273504 - 0: The maximum resident set size (KB) = 642624 + 0: The total amount of wall time = 251.966215 + 0: The maximum resident set size (KB) = 643012 -Test 082 control_csawmgt_debug PASS +Test 083 control_csawmgt_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/control_ras_debug -Checking test 083 control_ras_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_ras_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/control_ras_debug +Checking test 084 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 160.264057 - 0: The maximum resident set size (KB) = 613692 + 0: The total amount of wall time = 163.255101 + 0: The maximum resident set size (KB) = 615104 -Test 083 control_ras_debug PASS +Test 084 control_ras_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_diag_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/control_diag_debug -Checking test 084 control_diag_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_diag_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/control_diag_debug +Checking test 085 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 164.985226 - 0: The maximum resident set size (KB) = 660380 + 0: The total amount of wall time = 168.458246 + 0: The maximum resident set size (KB) = 661144 -Test 084 control_diag_debug PASS +Test 085 control_diag_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_debug_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/control_debug_p8 -Checking test 085 control_debug_p8 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_debug_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/control_debug_p8 +Checking test 086 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 177.660351 - 0: The maximum resident set size (KB) = 1380220 + 0: The total amount of wall time = 188.202766 + 0: The maximum resident set size (KB) = 1379492 -Test 085 control_debug_p8 PASS +Test 086 control_debug_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/regional_debug -Checking test 086 regional_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/regional_debug +Checking test 087 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1042.746794 - 0: The maximum resident set size (KB) = 606628 + 0: The total amount of wall time = 1049.287567 + 0: The maximum resident set size (KB) = 607332 -Test 086 regional_debug PASS +Test 087 regional_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/rap_control_debug -Checking test 087 rap_control_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/rap_control_debug +Checking test 088 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 287.152577 - 0: The maximum resident set size (KB) = 972152 + 0: The total amount of wall time = 291.239639 + 0: The maximum resident set size (KB) = 973200 -Test 087 rap_control_debug PASS +Test 088 rap_control_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/hrrr_control_debug -Checking test 088 hrrr_control_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/hrrr_control_debug +Checking test 089 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 283.772514 - 0: The maximum resident set size (KB) = 967272 + 0: The total amount of wall time = 287.067706 + 0: The maximum resident set size (KB) = 970692 -Test 088 hrrr_control_debug PASS +Test 089 hrrr_control_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/rap_unified_drag_suite_debug -Checking test 089 rap_unified_drag_suite_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/rap_unified_drag_suite_debug +Checking test 090 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 286.941250 - 0: The maximum resident set size (KB) = 972132 + 0: The total amount of wall time = 291.960973 + 0: The maximum resident set size (KB) = 973308 -Test 089 rap_unified_drag_suite_debug PASS +Test 090 rap_unified_drag_suite_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_diag_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/rap_diag_debug -Checking test 090 rap_diag_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_diag_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/rap_diag_debug +Checking test 091 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 303.679227 - 0: The maximum resident set size (KB) = 1056204 + 0: The total amount of wall time = 306.271213 + 0: The maximum resident set size (KB) = 1056268 -Test 090 rap_diag_debug PASS +Test 091 rap_diag_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/rap_cires_ugwp_debug -Checking test 091 rap_cires_ugwp_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_cires_ugwp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/rap_cires_ugwp_debug +Checking test 092 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 292.916660 - 0: The maximum resident set size (KB) = 971236 + 0: The total amount of wall time = 298.387692 + 0: The maximum resident set size (KB) = 971948 -Test 091 rap_cires_ugwp_debug PASS +Test 092 rap_cires_ugwp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/rap_unified_ugwp_debug -Checking test 092 rap_unified_ugwp_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_cires_ugwp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/rap_unified_ugwp_debug +Checking test 093 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 292.999966 - 0: The maximum resident set size (KB) = 973548 + 0: The total amount of wall time = 297.635529 + 0: The maximum resident set size (KB) = 972876 -Test 092 rap_unified_ugwp_debug PASS +Test 093 rap_unified_ugwp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_lndp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/rap_lndp_debug -Checking test 093 rap_lndp_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_lndp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/rap_lndp_debug +Checking test 094 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 290.760975 - 0: The maximum resident set size (KB) = 972652 + 0: The total amount of wall time = 295.810635 + 0: The maximum resident set size (KB) = 974128 -Test 093 rap_lndp_debug PASS +Test 094 rap_lndp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_flake_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/rap_flake_debug -Checking test 094 rap_flake_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_flake_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/rap_flake_debug +Checking test 095 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 287.734733 - 0: The maximum resident set size (KB) = 972144 + 0: The total amount of wall time = 291.473185 + 0: The maximum resident set size (KB) = 973268 -Test 094 rap_flake_debug PASS +Test 095 rap_flake_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_progcld_thompson_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/rap_progcld_thompson_debug -Checking test 095 rap_progcld_thompson_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_progcld_thompson_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/rap_progcld_thompson_debug +Checking test 096 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 317.062761 - 0: The maximum resident set size (KB) = 972044 + 0: The total amount of wall time = 289.560412 + 0: The maximum resident set size (KB) = 973284 -Test 095 rap_progcld_thompson_debug PASS +Test 096 rap_progcld_thompson_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/rap_noah_debug -Checking test 096 rap_noah_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_noah_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/rap_noah_debug +Checking test 097 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 282.364699 - 0: The maximum resident set size (KB) = 970752 + 0: The total amount of wall time = 279.922417 + 0: The maximum resident set size (KB) = 971272 -Test 096 rap_noah_debug PASS +Test 097 rap_noah_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/rap_sfcdiff_debug -Checking test 097 rap_sfcdiff_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/rap_sfcdiff_debug +Checking test 098 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 291.542761 - 0: The maximum resident set size (KB) = 971980 + 0: The total amount of wall time = 288.365594 + 0: The maximum resident set size (KB) = 972932 -Test 097 rap_sfcdiff_debug PASS +Test 098 rap_sfcdiff_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 098 rap_noah_sfcdiff_cires_ugwp_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 099 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 475.906273 - 0: The maximum resident set size (KB) = 971292 + 0: The total amount of wall time = 471.327927 + 0: The maximum resident set size (KB) = 971320 -Test 098 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 099 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/rrfs_v1beta_debug -Checking test 099 rrfs_v1beta_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1beta_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/rrfs_v1beta_debug +Checking test 100 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 282.396270 - 0: The maximum resident set size (KB) = 968088 + 0: The total amount of wall time = 285.499159 + 0: The maximum resident set size (KB) = 968960 -Test 099 rrfs_v1beta_debug PASS +Test 100 rrfs_v1beta_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/control_wam_debug -Checking test 100 control_wam_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wam_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/control_wam_debug +Checking test 101 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 292.395652 - 0: The maximum resident set size (KB) = 219220 + 0: The total amount of wall time = 292.851091 + 0: The maximum resident set size (KB) = 219732 -Test 100 control_wam_debug PASS +Test 101 control_wam_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/regional_spp_sppt_shum_skeb_dyn32_phy32 -Checking test 101 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 102 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -3362,15 +3472,15 @@ Checking test 101 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 302.350893 - 0: The maximum resident set size (KB) = 788008 + 0: The total amount of wall time = 317.695582 + 0: The maximum resident set size (KB) = 801472 -Test 101 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS +Test 102 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/rap_control_dyn32_phy32 -Checking test 102 rap_control_dyn32_phy32 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/rap_control_dyn32_phy32 +Checking test 103 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3416,15 +3526,15 @@ Checking test 102 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 395.551812 - 0: The maximum resident set size (KB) = 690796 + 0: The total amount of wall time = 380.526635 + 0: The maximum resident set size (KB) = 690932 -Test 102 rap_control_dyn32_phy32 PASS +Test 103 rap_control_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/hrrr_control_dyn32_phy32 -Checking test 103 hrrr_control_dyn32_phy32 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/hrrr_control_dyn32_phy32 +Checking test 104 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3470,15 +3580,15 @@ Checking test 103 hrrr_control_dyn32_phy32 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 = 207.221569 - 0: The maximum resident set size (KB) = 689224 + 0: The total amount of wall time = 201.839604 + 0: The maximum resident set size (KB) = 689280 -Test 103 hrrr_control_dyn32_phy32 PASS +Test 104 hrrr_control_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/rap_2threads_dyn32_phy32 -Checking test 104 rap_2threads_dyn32_phy32 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/rap_2threads_dyn32_phy32 +Checking test 105 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3524,15 +3634,15 @@ Checking test 104 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 373.279057 - 0: The maximum resident set size (KB) = 746404 + 0: The total amount of wall time = 367.213574 + 0: The maximum resident set size (KB) = 747232 -Test 104 rap_2threads_dyn32_phy32 PASS +Test 105 rap_2threads_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/hrrr_control_2threads_dyn32_phy32 -Checking test 105 hrrr_control_2threads_dyn32_phy32 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/hrrr_control_2threads_dyn32_phy32 +Checking test 106 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3578,15 +3688,15 @@ Checking test 105 hrrr_control_2threads_dyn32_phy32 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 = 207.941829 - 0: The maximum resident set size (KB) = 742544 + 0: The total amount of wall time = 201.660835 + 0: The maximum resident set size (KB) = 742448 -Test 105 hrrr_control_2threads_dyn32_phy32 PASS +Test 106 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/hrrr_control_decomp_dyn32_phy32 -Checking test 106 hrrr_control_decomp_dyn32_phy32 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/hrrr_control_decomp_dyn32_phy32 +Checking test 107 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3632,15 +3742,15 @@ Checking test 106 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 217.491779 - 0: The maximum resident set size (KB) = 688184 + 0: The total amount of wall time = 218.694678 + 0: The maximum resident set size (KB) = 688768 -Test 106 hrrr_control_decomp_dyn32_phy32 PASS +Test 107 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/rap_restart_dyn32_phy32 -Checking test 107 rap_restart_dyn32_phy32 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/rap_restart_dyn32_phy32 +Checking test 108 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3678,15 +3788,15 @@ Checking test 107 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 300.279531 - 0: The maximum resident set size (KB) = 524952 + 0: The total amount of wall time = 290.147208 + 0: The maximum resident set size (KB) = 525420 -Test 107 rap_restart_dyn32_phy32 PASS +Test 108 rap_restart_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/hrrr_control_restart_dyn32_phy32 -Checking test 108 hrrr_control_restart_dyn32_phy32 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/hrrr_control_restart_dyn32_phy32 +Checking test 109 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3724,15 +3834,15 @@ Checking test 108 hrrr_control_restart_dyn32_phy32 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 = 110.739693 - 0: The maximum resident set size (KB) = 517616 + 0: The total amount of wall time = 107.403461 + 0: The maximum resident set size (KB) = 517228 -Test 108 hrrr_control_restart_dyn32_phy32 PASS +Test 109 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn64_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/rap_control_dyn64_phy32 -Checking test 109 rap_control_dyn64_phy32 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn64_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/rap_control_dyn64_phy32 +Checking test 110 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3778,82 +3888,82 @@ Checking test 109 rap_control_dyn64_phy32 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 = 266.319221 - 0: The maximum resident set size (KB) = 713840 + 0: The total amount of wall time = 270.372852 + 0: The maximum resident set size (KB) = 708740 -Test 109 rap_control_dyn64_phy32 PASS +Test 110 rap_control_dyn64_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/rap_control_debug_dyn32_phy32 -Checking test 110 rap_control_debug_dyn32_phy32 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/rap_control_debug_dyn32_phy32 +Checking test 111 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 295.616031 - 0: The maximum resident set size (KB) = 856848 + 0: The total amount of wall time = 292.611352 + 0: The maximum resident set size (KB) = 858272 -Test 110 rap_control_debug_dyn32_phy32 PASS +Test 111 rap_control_debug_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/hrrr_control_debug_dyn32_phy32 -Checking test 111 hrrr_control_debug_dyn32_phy32 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/hrrr_control_debug_dyn32_phy32 +Checking test 112 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.877856 - 0: The maximum resident set size (KB) = 854776 + 0: The total amount of wall time = 283.230263 + 0: The maximum resident set size (KB) = 855208 -Test 111 hrrr_control_debug_dyn32_phy32 PASS +Test 112 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/rap_control_dyn64_phy32_debug -Checking test 112 rap_control_dyn64_phy32_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/rap_control_dyn64_phy32_debug +Checking test 113 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 291.495059 - 0: The maximum resident set size (KB) = 880308 + 0: The total amount of wall time = 292.017272 + 0: The maximum resident set size (KB) = 874520 -Test 112 rap_control_dyn64_phy32_debug PASS +Test 113 rap_control_dyn64_phy32_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/hafs_regional_atm -Checking test 113 hafs_regional_atm results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/hafs_regional_atm +Checking test 114 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 273.164883 - 0: The maximum resident set size (KB) = 682884 + 0: The total amount of wall time = 265.651729 + 0: The maximum resident set size (KB) = 684908 -Test 113 hafs_regional_atm PASS +Test 114 hafs_regional_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/hafs_regional_atm_thompson_gfdlsf -Checking test 114 hafs_regional_atm_thompson_gfdlsf results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/hafs_regional_atm_thompson_gfdlsf +Checking test 115 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 307.640436 - 0: The maximum resident set size (KB) = 1037472 + 0: The total amount of wall time = 309.472660 + 0: The maximum resident set size (KB) = 1038052 -Test 114 hafs_regional_atm_thompson_gfdlsf PASS +Test 115 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/hafs_regional_atm_ocn -Checking test 115 hafs_regional_atm_ocn results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_ocn +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/hafs_regional_atm_ocn +Checking test 116 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -3861,15 +3971,15 @@ Checking test 115 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 447.741519 - 0: The maximum resident set size (KB) = 712864 + 0: The total amount of wall time = 444.934167 + 0: The maximum resident set size (KB) = 713876 -Test 115 hafs_regional_atm_ocn PASS +Test 116 hafs_regional_atm_ocn PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_wav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/hafs_regional_atm_wav -Checking test 116 hafs_regional_atm_wav results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_wav +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/hafs_regional_atm_wav +Checking test 117 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK @@ -3877,15 +3987,15 @@ Checking test 116 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 939.585433 - 0: The maximum resident set size (KB) = 746192 + 0: The total amount of wall time = 947.083587 + 0: The maximum resident set size (KB) = 748112 -Test 116 hafs_regional_atm_wav PASS +Test 117 hafs_regional_atm_wav PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn_wav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/hafs_regional_atm_ocn_wav -Checking test 117 hafs_regional_atm_ocn_wav results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_ocn_wav +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/hafs_regional_atm_ocn_wav +Checking test 118 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -3895,29 +4005,29 @@ Checking test 117 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 1047.956387 - 0: The maximum resident set size (KB) = 764284 + 0: The total amount of wall time = 1044.378617 + 0: The maximum resident set size (KB) = 766804 -Test 117 hafs_regional_atm_ocn_wav PASS +Test 118 hafs_regional_atm_ocn_wav PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/hafs_regional_1nest_atm -Checking test 118 hafs_regional_1nest_atm results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_1nest_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/hafs_regional_1nest_atm +Checking test 119 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 394.885385 - 0: The maximum resident set size (KB) = 277352 + 0: The total amount of wall time = 378.955626 + 0: The maximum resident set size (KB) = 276652 -Test 118 hafs_regional_1nest_atm PASS +Test 119 hafs_regional_1nest_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/hafs_regional_telescopic_2nests_atm -Checking test 119 hafs_regional_telescopic_2nests_atm results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/hafs_regional_telescopic_2nests_atm +Checking test 120 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -3925,29 +4035,29 @@ Checking test 119 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 449.781824 - 0: The maximum resident set size (KB) = 282204 + 0: The total amount of wall time = 430.613213 + 0: The maximum resident set size (KB) = 282916 -Test 119 hafs_regional_telescopic_2nests_atm PASS +Test 120 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/hafs_global_1nest_atm -Checking test 120 hafs_global_1nest_atm results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_1nest_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/hafs_global_1nest_atm +Checking test 121 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 181.123888 - 0: The maximum resident set size (KB) = 178096 + 0: The total amount of wall time = 169.836887 + 0: The maximum resident set size (KB) = 179256 -Test 120 hafs_global_1nest_atm PASS +Test 121 hafs_global_1nest_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_multiple_4nests_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/hafs_global_multiple_4nests_atm -Checking test 121 hafs_global_multiple_4nests_atm results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_multiple_4nests_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/hafs_global_multiple_4nests_atm +Checking test 122 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -3964,15 +4074,15 @@ Checking test 121 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 513.974385 - 0: The maximum resident set size (KB) = 227604 + 0: The total amount of wall time = 498.073259 + 0: The maximum resident set size (KB) = 210332 -Test 121 hafs_global_multiple_4nests_atm PASS +Test 122 hafs_global_multiple_4nests_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/hafs_regional_specified_moving_1nest_atm -Checking test 122 hafs_regional_specified_moving_1nest_atm results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/hafs_regional_specified_moving_1nest_atm +Checking test 123 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -3980,29 +4090,29 @@ Checking test 122 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 244.959783 - 0: The maximum resident set size (KB) = 288512 + 0: The total amount of wall time = 239.068216 + 0: The maximum resident set size (KB) = 287032 -Test 122 hafs_regional_specified_moving_1nest_atm PASS +Test 123 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/hafs_regional_storm_following_1nest_atm -Checking test 123 hafs_regional_storm_following_1nest_atm results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/hafs_regional_storm_following_1nest_atm +Checking test 124 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 237.614548 - 0: The maximum resident set size (KB) = 287292 + 0: The total amount of wall time = 228.592372 + 0: The maximum resident set size (KB) = 287636 -Test 123 hafs_regional_storm_following_1nest_atm PASS +Test 124 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/hafs_regional_storm_following_1nest_atm_ocn -Checking test 124 hafs_regional_storm_following_1nest_atm_ocn results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/hafs_regional_storm_following_1nest_atm_ocn +Checking test 125 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4010,43 +4120,43 @@ Checking test 124 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 278.085261 - 0: The maximum resident set size (KB) = 324364 + 0: The total amount of wall time = 267.357734 + 0: The maximum resident set size (KB) = 324480 -Test 124 hafs_regional_storm_following_1nest_atm_ocn PASS +Test 125 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/hafs_global_storm_following_1nest_atm -Checking test 125 hafs_global_storm_following_1nest_atm results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_storm_following_1nest_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/hafs_global_storm_following_1nest_atm +Checking test 126 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 74.664892 - 0: The maximum resident set size (KB) = 193000 + 0: The total amount of wall time = 69.256167 + 0: The maximum resident set size (KB) = 193600 -Test 125 hafs_global_storm_following_1nest_atm PASS +Test 126 hafs_global_storm_following_1nest_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/hafs_regional_storm_following_1nest_atm_ocn_debug -Checking test 126 hafs_regional_storm_following_1nest_atm_ocn_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/hafs_regional_storm_following_1nest_atm_ocn_debug +Checking test 127 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 792.099778 - 0: The maximum resident set size (KB) = 353260 + 0: The total amount of wall time = 781.617164 + 0: The maximum resident set size (KB) = 354248 -Test 126 hafs_regional_storm_following_1nest_atm_ocn_debug PASS +Test 127 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/hafs_regional_storm_following_1nest_atm_ocn_wav -Checking test 127 hafs_regional_storm_following_1nest_atm_ocn_wav results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 128 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4056,162 +4166,162 @@ Checking test 127 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 746.277457 - 0: The maximum resident set size (KB) = 367772 + 0: The total amount of wall time = 738.401426 + 0: The maximum resident set size (KB) = 367036 -Test 127 hafs_regional_storm_following_1nest_atm_ocn_wav PASS +Test 128 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_docn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/hafs_regional_docn -Checking test 128 hafs_regional_docn results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_docn +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/hafs_regional_docn +Checking test 129 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 399.780962 - 0: The maximum resident set size (KB) = 723228 + 0: The total amount of wall time = 395.994516 + 0: The maximum resident set size (KB) = 724952 -Test 128 hafs_regional_docn PASS +Test 129 hafs_regional_docn PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_docn_oisst -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/hafs_regional_docn_oisst -Checking test 129 hafs_regional_docn_oisst results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_docn_oisst +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/hafs_regional_docn_oisst +Checking test 130 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 405.750996 - 0: The maximum resident set size (KB) = 710284 + 0: The total amount of wall time = 399.928176 + 0: The maximum resident set size (KB) = 709996 -Test 129 hafs_regional_docn_oisst PASS +Test 130 hafs_regional_docn_oisst PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_datm_cdeps -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/hafs_regional_datm_cdeps -Checking test 130 hafs_regional_datm_cdeps results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_datm_cdeps +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/hafs_regional_datm_cdeps +Checking test 131 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 1174.407998 - 0: The maximum resident set size (KB) = 808956 + 0: The total amount of wall time = 1169.476989 + 0: The maximum resident set size (KB) = 808880 -Test 130 hafs_regional_datm_cdeps PASS +Test 131 hafs_regional_datm_cdeps PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/datm_cdeps_control_cfsr -Checking test 131 datm_cdeps_control_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/datm_cdeps_control_cfsr +Checking test 132 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 167.887785 - 0: The maximum resident set size (KB) = 715700 + 0: The total amount of wall time = 167.835287 + 0: The maximum resident set size (KB) = 715884 -Test 131 datm_cdeps_control_cfsr PASS +Test 132 datm_cdeps_control_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/datm_cdeps_restart_cfsr -Checking test 132 datm_cdeps_restart_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/datm_cdeps_restart_cfsr +Checking test 133 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 98.367185 - 0: The maximum resident set size (KB) = 715952 + 0: The total amount of wall time = 102.832053 + 0: The maximum resident set size (KB) = 715920 -Test 132 datm_cdeps_restart_cfsr PASS +Test 133 datm_cdeps_restart_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/datm_cdeps_control_gefs -Checking test 133 datm_cdeps_control_gefs results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/datm_cdeps_control_gefs +Checking test 134 datm_cdeps_control_gefs 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 = 161.685953 - 0: The maximum resident set size (KB) = 598996 + 0: The total amount of wall time = 170.516642 + 0: The maximum resident set size (KB) = 598076 -Test 133 datm_cdeps_control_gefs PASS +Test 134 datm_cdeps_control_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_iau_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/datm_cdeps_iau_gefs -Checking test 134 datm_cdeps_iau_gefs results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_iau_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/datm_cdeps_iau_gefs +Checking test 135 datm_cdeps_iau_gefs 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 = 164.472702 - 0: The maximum resident set size (KB) = 598028 + 0: The total amount of wall time = 162.599885 + 0: The maximum resident set size (KB) = 597972 -Test 134 datm_cdeps_iau_gefs PASS +Test 135 datm_cdeps_iau_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_stochy_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/datm_cdeps_stochy_gefs -Checking test 135 datm_cdeps_stochy_gefs results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_stochy_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/datm_cdeps_stochy_gefs +Checking test 136 datm_cdeps_stochy_gefs 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 = 166.441411 - 0: The maximum resident set size (KB) = 602268 + 0: The total amount of wall time = 164.422546 + 0: The maximum resident set size (KB) = 600160 -Test 135 datm_cdeps_stochy_gefs PASS +Test 136 datm_cdeps_stochy_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/datm_cdeps_ciceC_cfsr -Checking test 136 datm_cdeps_ciceC_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_ciceC_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/datm_cdeps_ciceC_cfsr +Checking test 137 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 168.686650 - 0: The maximum resident set size (KB) = 715868 + 0: The total amount of wall time = 166.297243 + 0: The maximum resident set size (KB) = 715736 -Test 136 datm_cdeps_ciceC_cfsr PASS +Test 137 datm_cdeps_ciceC_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_bulk_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/datm_cdeps_bulk_cfsr -Checking test 137 datm_cdeps_bulk_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_bulk_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/datm_cdeps_bulk_cfsr +Checking test 138 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 167.618758 - 0: The maximum resident set size (KB) = 715924 + 0: The total amount of wall time = 167.119671 + 0: The maximum resident set size (KB) = 717608 -Test 137 datm_cdeps_bulk_cfsr PASS +Test 138 datm_cdeps_bulk_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_bulk_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/datm_cdeps_bulk_gefs -Checking test 138 datm_cdeps_bulk_gefs results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_bulk_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/datm_cdeps_bulk_gefs +Checking test 139 datm_cdeps_bulk_gefs 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 = 161.969404 - 0: The maximum resident set size (KB) = 598080 + 0: The total amount of wall time = 163.166799 + 0: The maximum resident set size (KB) = 600092 -Test 138 datm_cdeps_bulk_gefs PASS +Test 139 datm_cdeps_bulk_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_mx025_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/datm_cdeps_mx025_cfsr -Checking test 139 datm_cdeps_mx025_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_mx025_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/datm_cdeps_mx025_cfsr +Checking test 140 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4219,15 +4329,15 @@ Checking test 139 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 464.999398 - 0: The maximum resident set size (KB) = 495224 + 0: The total amount of wall time = 433.739192 + 0: The maximum resident set size (KB) = 494328 -Test 139 datm_cdeps_mx025_cfsr PASS +Test 140 datm_cdeps_mx025_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_mx025_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/datm_cdeps_mx025_gefs -Checking test 140 datm_cdeps_mx025_gefs results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_mx025_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/datm_cdeps_mx025_gefs +Checking test 141 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4235,78 +4345,78 @@ Checking test 140 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 459.245679 - 0: The maximum resident set size (KB) = 476200 + 0: The total amount of wall time = 426.476138 + 0: The maximum resident set size (KB) = 476468 -Test 140 datm_cdeps_mx025_gefs PASS +Test 141 datm_cdeps_mx025_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/datm_cdeps_multiple_files_cfsr -Checking test 141 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/datm_cdeps_multiple_files_cfsr +Checking test 142 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 168.557866 - 0: The maximum resident set size (KB) = 715780 + 0: The total amount of wall time = 167.332859 + 0: The maximum resident set size (KB) = 715828 -Test 141 datm_cdeps_multiple_files_cfsr PASS +Test 142 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/datm_cdeps_3072x1536_cfsr -Checking test 142 datm_cdeps_3072x1536_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/datm_cdeps_3072x1536_cfsr +Checking test 143 datm_cdeps_3072x1536_cfsr 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 = 255.528942 - 0: The maximum resident set size (KB) = 1947960 + 0: The total amount of wall time = 255.293979 + 0: The maximum resident set size (KB) = 1952144 -Test 142 datm_cdeps_3072x1536_cfsr PASS +Test 143 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_gfs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/datm_cdeps_gfs -Checking test 143 datm_cdeps_gfs results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_gfs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/datm_cdeps_gfs +Checking test 144 datm_cdeps_gfs 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 = 252.977172 - 0: The maximum resident set size (KB) = 1947816 + 0: The total amount of wall time = 253.274013 + 0: The maximum resident set size (KB) = 1947784 -Test 143 datm_cdeps_gfs PASS +Test 144 datm_cdeps_gfs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_debug_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/datm_cdeps_debug_cfsr -Checking test 144 datm_cdeps_debug_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_debug_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/datm_cdeps_debug_cfsr +Checking test 145 datm_cdeps_debug_cfsr 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 = 379.927105 - 0: The maximum resident set size (KB) = 707976 + 0: The total amount of wall time = 375.683653 + 0: The maximum resident set size (KB) = 708032 -Test 144 datm_cdeps_debug_cfsr PASS +Test 145 datm_cdeps_debug_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr_faster -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/datm_cdeps_control_cfsr_faster -Checking test 145 datm_cdeps_control_cfsr_faster results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr_faster +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/datm_cdeps_control_cfsr_faster +Checking test 146 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.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 = 168.450318 - 0: The maximum resident set size (KB) = 715636 + 0: The total amount of wall time = 168.161814 + 0: The maximum resident set size (KB) = 715672 -Test 145 datm_cdeps_control_cfsr_faster PASS +Test 146 datm_cdeps_control_cfsr_faster PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/datm_cdeps_lnd_gswp3 -Checking test 146 datm_cdeps_lnd_gswp3 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/datm_cdeps_lnd_gswp3 +Checking test 147 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4314,15 +4424,15 @@ Checking test 146 datm_cdeps_lnd_gswp3 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.274131 - 0: The maximum resident set size (KB) = 149716 + 0: The total amount of wall time = 13.647036 + 0: The maximum resident set size (KB) = 149792 -Test 146 datm_cdeps_lnd_gswp3 PASS +Test 147 datm_cdeps_lnd_gswp3 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/datm_cdeps_lnd_gswp3_rst -Checking test 147 datm_cdeps_lnd_gswp3_rst results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/datm_cdeps_lnd_gswp3_rst +Checking test 148 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4330,15 +4440,15 @@ Checking test 147 datm_cdeps_lnd_gswp3_rst 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 = 20.714359 - 0: The maximum resident set size (KB) = 149848 + 0: The total amount of wall time = 21.706298 + 0: The maximum resident set size (KB) = 153868 -Test 147 datm_cdeps_lnd_gswp3_rst PASS +Test 148 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_atmlnd_sbs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/control_p8_atmlnd_sbs -Checking test 148 control_p8_atmlnd_sbs results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_atmlnd_sbs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/control_p8_atmlnd_sbs +Checking test 149 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -4422,15 +4532,15 @@ Checking test 148 control_p8_atmlnd_sbs 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 = 256.103438 - 0: The maximum resident set size (KB) = 1412596 + 0: The total amount of wall time = 240.305184 + 0: The maximum resident set size (KB) = 1414060 -Test 148 control_p8_atmlnd_sbs PASS +Test 149 control_p8_atmlnd_sbs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_atmwav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/control_atmwav -Checking test 149 control_atmwav results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_atmwav +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/control_atmwav +Checking test 150 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -4473,15 +4583,15 @@ Checking test 149 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 99.675829 - 0: The maximum resident set size (KB) = 450664 + 0: The total amount of wall time = 97.882979 + 0: The maximum resident set size (KB) = 451416 -Test 149 control_atmwav PASS +Test 150 control_atmwav PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/atmaero_control_p8 -Checking test 150 atmaero_control_p8 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/atmaero_control_p8 +Checking test 151 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4524,15 +4634,15 @@ Checking test 150 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 269.353176 - 0: The maximum resident set size (KB) = 1447764 + 0: The total amount of wall time = 258.578097 + 0: The maximum resident set size (KB) = 1447904 -Test 150 atmaero_control_p8 PASS +Test 151 atmaero_control_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/atmaero_control_p8_rad -Checking test 151 atmaero_control_p8_rad results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8_rad +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/atmaero_control_p8_rad +Checking test 152 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4575,15 +4685,15 @@ Checking test 151 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 307.457340 - 0: The maximum resident set size (KB) = 1468632 + 0: The total amount of wall time = 306.308286 + 0: The maximum resident set size (KB) = 1469572 -Test 151 atmaero_control_p8_rad PASS +Test 152 atmaero_control_p8_rad PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad_micro -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/atmaero_control_p8_rad_micro -Checking test 152 atmaero_control_p8_rad_micro results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8_rad_micro +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/atmaero_control_p8_rad_micro +Checking test 153 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4626,15 +4736,15 @@ Checking test 152 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 320.446687 - 0: The maximum resident set size (KB) = 1473056 + 0: The total amount of wall time = 304.539532 + 0: The maximum resident set size (KB) = 1473624 -Test 152 atmaero_control_p8_rad_micro PASS +Test 153 atmaero_control_p8_rad_micro PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/regional_atmaq -Checking test 153 regional_atmaq results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/regional_atmaq +Checking test 154 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -4649,15 +4759,15 @@ Checking test 153 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 667.173605 - 0: The maximum resident set size (KB) = 1105924 + 0: The total amount of wall time = 671.408218 + 0: The maximum resident set size (KB) = 965028 -Test 153 regional_atmaq PASS +Test 154 regional_atmaq PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq_faster -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36859/regional_atmaq_faster -Checking test 154 regional_atmaq_faster results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq_faster +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/regional_atmaq_faster +Checking test 155 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -4672,82 +4782,12 @@ Checking test 154 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 657.018414 - 0: The maximum resident set size (KB) = 1097368 - -Test 154 regional_atmaq_faster PASS - -FAILED TESTS: -Test cpld_debug_p8 015 failed in run_test failed - -REGRESSION TEST FAILED -Tue Mar 14 20:08:33 EDT 2023 -Elapsed time: 03h:32m:31s. Have a nice day! -Tue Mar 14 20:22:32 EDT 2023 -Start Regression test - -Compile 001 elapsed time 335 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_debug_p8 -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_35139/cpld_debug_p8 -Checking test 001 cpld_debug_p8 results .... - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing gocart.inst_aod.20210322_0900z.nc4 .........OK - Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-32400.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK - Comparing 20210322.090000.out_pnt.ww3 .........OK - Comparing 20210322.090000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 596.109147 - 0: The maximum resident set size (KB) = 1596072 + 0: The total amount of wall time = 614.581590 + 0: The maximum resident set size (KB) = 968144 -Test 001 cpld_debug_p8 PASS +Test 155 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Tue Mar 14 20:43:26 EDT 2023 -Elapsed time: 00h:21m:16s. Have a nice day! +Sat Mar 25 02:57:12 EDT 2023 +Elapsed time: 04h:31m:49s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 9135334a5dc..a97d078e872 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,21 +1,21 @@ -Wed Mar 22 18:38:44 UTC 2023 +Fri Mar 24 23:08:25 UTC 2023 Start Regression test -Compile 001 elapsed time 184 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 184 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 178 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 184 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile 003 elapsed time 314 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 96 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 181 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 388 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 313 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 314 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 261 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 223 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 143 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 012 elapsed time 113 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/control_c48 +Compile 004 elapsed time 94 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 179 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 386 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 314 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 312 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 258 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 222 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 146 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 012 elapsed time 115 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/control_c48 Checking test 001 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -54,14 +54,14 @@ Checking test 001 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 687.310902 -0: The maximum resident set size (KB) = 699680 +0: The total amount of wall time = 685.311973 +0: The maximum resident set size (KB) = 703652 Test 001 control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/control_stochy +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/control_stochy Checking test 002 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -72,14 +72,14 @@ Checking test 002 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 658.487609 - 0: The maximum resident set size (KB) = 479712 + 0: The total amount of wall time = 640.503805 + 0: The maximum resident set size (KB) = 479296 Test 002 control_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/control_ras +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/control_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/control_ras Checking test 003 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -90,14 +90,14 @@ Checking test 003 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 857.355910 - 0: The maximum resident set size (KB) = 486896 + 0: The total amount of wall time = 853.998495 + 0: The maximum resident set size (KB) = 485136 Test 003 control_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/control_p8 Checking test 004 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -144,14 +144,14 @@ Checking test 004 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 899.103201 - 0: The maximum resident set size (KB) = 1234268 + 0: The total amount of wall time = 904.485676 + 0: The maximum resident set size (KB) = 1235064 Test 004 control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/rap_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/rap_control Checking test 005 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -198,14 +198,14 @@ Checking test 005 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1484.665613 - 0: The maximum resident set size (KB) = 832340 + 0: The total amount of wall time = 1487.984421 + 0: The maximum resident set size (KB) = 830496 Test 005 rap_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/rap_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/rap_decomp Checking test 006 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -252,14 +252,14 @@ Checking test 006 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1454.018537 - 0: The maximum resident set size (KB) = 830036 + 0: The total amount of wall time = 1472.154322 + 0: The maximum resident set size (KB) = 836176 Test 006 rap_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/rap_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/rap_2threads Checking test 007 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -306,14 +306,14 @@ Checking test 007 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1338.704290 - 0: The maximum resident set size (KB) = 896512 + 0: The total amount of wall time = 1383.301635 + 0: The maximum resident set size (KB) = 898196 Test 007 rap_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/rap_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/rap_restart Checking test 008 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -352,14 +352,14 @@ Checking test 008 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 728.869955 - 0: The maximum resident set size (KB) = 549876 + 0: The total amount of wall time = 751.931250 + 0: The maximum resident set size (KB) = 547960 Test 008 rap_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/rap_sfcdiff +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/rap_sfcdiff Checking test 009 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -406,14 +406,14 @@ Checking test 009 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1467.410041 - 0: The maximum resident set size (KB) = 825872 + 0: The total amount of wall time = 1477.695938 + 0: The maximum resident set size (KB) = 834816 Test 009 rap_sfcdiff PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/rap_sfcdiff_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/rap_sfcdiff_decomp Checking test 010 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -460,14 +460,14 @@ Checking test 010 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1439.745402 - 0: The maximum resident set size (KB) = 832328 + 0: The total amount of wall time = 1418.264814 + 0: The maximum resident set size (KB) = 833360 Test 010 rap_sfcdiff_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/rap_sfcdiff_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/rap_sfcdiff_restart Checking test 011 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -506,14 +506,14 @@ Checking test 011 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1082.139359 - 0: The maximum resident set size (KB) = 554520 + 0: The total amount of wall time = 1123.059995 + 0: The maximum resident set size (KB) = 550588 Test 011 rap_sfcdiff_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/hrrr_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/hrrr_control Checking test 012 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -560,14 +560,14 @@ Checking test 012 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1444.570788 - 0: The maximum resident set size (KB) = 827176 + 0: The total amount of wall time = 1445.944439 + 0: The maximum resident set size (KB) = 826516 Test 012 hrrr_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/hrrr_control_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/hrrr_control_2threads Checking test 013 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -614,14 +614,14 @@ Checking test 013 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1324.273179 - 0: The maximum resident set size (KB) = 890988 + 0: The total amount of wall time = 1334.721545 + 0: The maximum resident set size (KB) = 895120 Test 013 hrrr_control_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/hrrr_control_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/hrrr_control_decomp Checking test 014 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -668,14 +668,14 @@ Checking test 014 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1430.568705 - 0: The maximum resident set size (KB) = 824116 + 0: The total amount of wall time = 1438.852378 + 0: The maximum resident set size (KB) = 829072 Test 014 hrrr_control_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/hrrr_control_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/hrrr_control_restart Checking test 015 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -714,14 +714,14 @@ Checking test 015 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1054.839660 - 0: The maximum resident set size (KB) = 547748 + 0: The total amount of wall time = 1107.287633 + 0: The maximum resident set size (KB) = 548908 Test 015 hrrr_control_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/rrfs_v1beta +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/rrfs_v1beta Checking test 016 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -768,15 +768,15 @@ Checking test 016 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1429.358337 - 0: The maximum resident set size (KB) = 830272 + 0: The total amount of wall time = 1464.689105 + 0: The maximum resident set size (KB) = 832856 Test 016 rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/rrfs_conus13km_hrrr_warm -Checking test 017 rrfs_conus13km_hrrr_warm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/rrfs_smoke_conus13km_hrrr_warm +Checking test 017 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -784,15 +784,15 @@ Checking test 017 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 765.556406 - 0: The maximum resident set size (KB) = 637880 + 0: The total amount of wall time = 787.495339 + 0: The maximum resident set size (KB) = 666008 -Test 017 rrfs_conus13km_hrrr_warm PASS +Test 017 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/rrfs_smoke_conus13km_hrrr_warm -Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/rrfs_smoke_conus13km_hrrr_warm_2threads +Checking test 018 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -800,15 +800,15 @@ Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 797.414377 - 0: The maximum resident set size (KB) = 650756 + 0: The total amount of wall time = 924.484977 + 0: The maximum resident set size (KB) = 665392 -Test 018 rrfs_smoke_conus13km_hrrr_warm PASS +Test 018 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/rrfs_conus13km_radar_tten_warm -Checking test 019 rrfs_conus13km_radar_tten_warm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/rrfs_conus13km_hrrr_warm +Checking test 019 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -816,15 +816,15 @@ Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 716.776874 - 0: The maximum resident set size (KB) = 642192 + 0: The total amount of wall time = 758.990281 + 0: The maximum resident set size (KB) = 644380 -Test 019 rrfs_conus13km_radar_tten_warm PASS +Test 019 rrfs_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/rrfs_conus13km_radar_tten_warm_2threads -Checking test 020 rrfs_conus13km_radar_tten_warm_2threads results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/rrfs_smoke_conus13km_radar_tten_warm +Checking test 020 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -832,209 +832,223 @@ Checking test 020 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 869.667851 - 0: The maximum resident set size (KB) = 636232 + 0: The total amount of wall time = 789.759142 + 0: The maximum resident set size (KB) = 672176 -Test 020 rrfs_conus13km_radar_tten_warm_2threads PASS +Test 020 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/control_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/control_diag_debug Checking test 021 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 128.271888 - 0: The maximum resident set size (KB) = 536480 + 0: The total amount of wall time = 132.067718 + 0: The maximum resident set size (KB) = 530776 Test 021 control_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/regional_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/regional_debug Checking test 022 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 643.487203 - 0: The maximum resident set size (KB) = 596896 + 0: The total amount of wall time = 668.718668 + 0: The maximum resident set size (KB) = 593596 Test 022 regional_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/rap_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/rap_control_debug Checking test 023 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 175.163064 - 0: The maximum resident set size (KB) = 852564 + 0: The total amount of wall time = 176.463574 + 0: The maximum resident set size (KB) = 839628 Test 023 rap_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/hrrr_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/hrrr_control_debug Checking test 024 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 170.784012 - 0: The maximum resident set size (KB) = 851824 + 0: The total amount of wall time = 176.726445 + 0: The maximum resident set size (KB) = 840572 Test 024 hrrr_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/rap_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/rap_diag_debug Checking test 025 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 216.718210 - 0: The maximum resident set size (KB) = 935408 + 0: The total amount of wall time = 221.959848 + 0: The maximum resident set size (KB) = 929352 Test 025 rap_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/rap_noah_sfcdiff_cires_ugwp_debug Checking test 026 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.086409 - 0: The maximum resident set size (KB) = 852364 + 0: The total amount of wall time = 277.293619 + 0: The maximum resident set size (KB) = 838564 Test 026 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/rap_progcld_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/rap_progcld_thompson_debug Checking test 027 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 179.772049 - 0: The maximum resident set size (KB) = 852500 + 0: The total amount of wall time = 183.369307 + 0: The maximum resident set size (KB) = 839888 Test 027 rap_progcld_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/rrfs_v1beta_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/rrfs_v1beta_debug Checking test 028 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 174.920824 - 0: The maximum resident set size (KB) = 849084 + 0: The total amount of wall time = 184.582705 + 0: The maximum resident set size (KB) = 838980 Test 028 rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/control_ras_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/control_ras_debug Checking test 029 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 106.093764 - 0: The maximum resident set size (KB) = 489532 + 0: The total amount of wall time = 104.959847 + 0: The maximum resident set size (KB) = 483452 Test 029 control_ras_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/control_stochy_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/control_stochy_debug Checking test 030 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 119.891494 - 0: The maximum resident set size (KB) = 483280 + 0: The total amount of wall time = 127.766346 + 0: The maximum resident set size (KB) = 478500 Test 030 control_stochy_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/control_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/control_debug_p8 Checking test 031 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 120.940629 - 0: The maximum resident set size (KB) = 1237804 + 0: The total amount of wall time = 152.130624 + 0: The maximum resident set size (KB) = 1230908 Test 031 control_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/rrfs_conus13km_hrrr_warm_debug -Checking test 032 rrfs_conus13km_hrrr_warm_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/rrfs_smoke_conus13km_hrrr_warm_debug +Checking test 032 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 557.066052 - 0: The maximum resident set size (KB) = 654624 + 0: The total amount of wall time = 624.114263 + 0: The maximum resident set size (KB) = 684424 -Test 032 rrfs_conus13km_hrrr_warm_debug PASS +Test 032 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/rrfs_conus13km_radar_tten_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/rrfs_conus13km_radar_tten_warm_debug -Checking test 033 rrfs_conus13km_radar_tten_warm_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +Checking test 033 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 588.873637 - 0: The maximum resident set size (KB) = 659808 + 0: The total amount of wall time = 694.017085 + 0: The maximum resident set size (KB) = 682296 -Test 033 rrfs_conus13km_radar_tten_warm_debug PASS +Test 033 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/control_wam_debug -Checking test 034 control_wam_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_conus13km_hrrr_warm_debugs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/rrfs_conus13km_hrrr_warm_debug +Checking test 034 rrfs_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 603.442040 + 0: The maximum resident set size (KB) = 659464 + +Test 034 rrfs_conus13km_hrrr_warm_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/control_wam_debug +Checking test 035 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 187.196830 - 0: The maximum resident set size (KB) = 190976 + 0: The total amount of wall time = 187.484813 + 0: The maximum resident set size (KB) = 193960 -Test 034 control_wam_debug PASS +Test 035 control_wam_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/rap_control_dyn32_phy32 -Checking test 035 rap_control_dyn32_phy32 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/rap_control_dyn32_phy32 +Checking test 036 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -1080,15 +1094,15 @@ Checking test 035 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1470.055726 - 0: The maximum resident set size (KB) = 688624 + 0: The total amount of wall time = 1482.043207 + 0: The maximum resident set size (KB) = 684128 -Test 035 rap_control_dyn32_phy32 PASS +Test 036 rap_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/hrrr_control_dyn32_phy32 -Checking test 036 hrrr_control_dyn32_phy32 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/hrrr_control_dyn32_phy32 +Checking test 037 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -1134,15 +1148,15 @@ Checking test 036 hrrr_control_dyn32_phy32 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 = 730.010232 - 0: The maximum resident set size (KB) = 682208 + 0: The total amount of wall time = 748.231629 + 0: The maximum resident set size (KB) = 688264 -Test 036 hrrr_control_dyn32_phy32 PASS +Test 037 hrrr_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/rap_2threads_dyn32_phy32 -Checking test 037 rap_2threads_dyn32_phy32 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/rap_2threads_dyn32_phy32 +Checking test 038 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -1188,15 +1202,15 @@ Checking test 037 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1322.996621 - 0: The maximum resident set size (KB) = 728648 + 0: The total amount of wall time = 1326.983352 + 0: The maximum resident set size (KB) = 730112 -Test 037 rap_2threads_dyn32_phy32 PASS +Test 038 rap_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/hrrr_control_2threads_dyn32_phy32 -Checking test 038 hrrr_control_2threads_dyn32_phy32 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/hrrr_control_2threads_dyn32_phy32 +Checking test 039 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -1242,15 +1256,15 @@ Checking test 038 hrrr_control_2threads_dyn32_phy32 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 = 671.239619 - 0: The maximum resident set size (KB) = 728456 + 0: The total amount of wall time = 674.956148 + 0: The maximum resident set size (KB) = 727296 -Test 038 hrrr_control_2threads_dyn32_phy32 PASS +Test 039 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/hrrr_control_decomp_dyn32_phy32 -Checking test 039 hrrr_control_decomp_dyn32_phy32 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/hrrr_control_decomp_dyn32_phy32 +Checking test 040 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -1296,15 +1310,15 @@ Checking test 039 hrrr_control_decomp_dyn32_phy32 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 = 728.203907 - 0: The maximum resident set size (KB) = 683760 + 0: The total amount of wall time = 733.529282 + 0: The maximum resident set size (KB) = 683728 -Test 039 hrrr_control_decomp_dyn32_phy32 PASS +Test 040 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/rap_restart_dyn32_phy32 -Checking test 040 rap_restart_dyn32_phy32 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/rap_restart_dyn32_phy32 +Checking test 041 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -1342,15 +1356,15 @@ Checking test 040 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1080.881472 - 0: The maximum resident set size (KB) = 510760 + 0: The total amount of wall time = 1130.347800 + 0: The maximum resident set size (KB) = 516476 -Test 040 rap_restart_dyn32_phy32 PASS +Test 041 rap_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/hrrr_control_restart_dyn32_phy32 -Checking test 041 hrrr_control_restart_dyn32_phy32 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/hrrr_control_restart_dyn32_phy32 +Checking test 042 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -1388,15 +1402,15 @@ Checking test 041 hrrr_control_restart_dyn32_phy32 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 = 362.869061 - 0: The maximum resident set size (KB) = 512152 + 0: The total amount of wall time = 367.779231 + 0: The maximum resident set size (KB) = 508088 -Test 041 hrrr_control_restart_dyn32_phy32 PASS +Test 042 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/rap_control_dyn64_phy32 -Checking test 042 rap_control_dyn64_phy32 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/rap_control_dyn64_phy32 +Checking test 043 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -1442,57 +1456,57 @@ Checking test 042 rap_control_dyn64_phy32 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 = 1062.848382 - 0: The maximum resident set size (KB) = 714016 + 0: The total amount of wall time = 1103.311895 + 0: The maximum resident set size (KB) = 708184 -Test 042 rap_control_dyn64_phy32 PASS +Test 043 rap_control_dyn64_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/rap_control_debug_dyn32_phy32 -Checking test 043 rap_control_debug_dyn32_phy32 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/rap_control_debug_dyn32_phy32 +Checking test 044 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 179.022262 - 0: The maximum resident set size (KB) = 707552 + 0: The total amount of wall time = 206.262744 + 0: The maximum resident set size (KB) = 704160 -Test 043 rap_control_debug_dyn32_phy32 PASS +Test 044 rap_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/hrrr_control_debug_dyn32_phy32 -Checking test 044 hrrr_control_debug_dyn32_phy32 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/hrrr_control_debug_dyn32_phy32 +Checking test 045 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 173.173872 - 0: The maximum resident set size (KB) = 707600 + 0: The total amount of wall time = 195.884664 + 0: The maximum resident set size (KB) = 701984 -Test 044 hrrr_control_debug_dyn32_phy32 PASS +Test 045 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/rap_control_dyn64_phy32_debug -Checking test 045 rap_control_dyn64_phy32_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control_debug_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/rap_control_dyn64_phy32_debug +Checking test 046 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 204.501241 - 0: The maximum resident set size (KB) = 722480 + 0: The total amount of wall time = 222.861246 + 0: The maximum resident set size (KB) = 720000 -Test 045 rap_control_dyn64_phy32_debug PASS +Test 046 rap_control_dyn64_phy32_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/cpld_control_p8 -Checking test 046 cpld_control_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/cpld_control_p8 +Checking test 047 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1556,15 +1570,15 @@ Checking test 046 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1746.815948 - 0: The maximum resident set size (KB) = 1429964 + 0: The total amount of wall time = 1779.198522 + 0: The maximum resident set size (KB) = 1429248 -Test 046 cpld_control_p8 PASS +Test 047 cpld_control_p8 PASS Tries: 2 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/cpld_control_nowave_noaero_p8 -Checking test 047 cpld_control_nowave_noaero_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/cpld_control_c96_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/cpld_control_nowave_noaero_p8 +Checking test 048 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1625,15 +1639,15 @@ Checking test 047 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 1208.926387 - 0: The maximum resident set size (KB) = 1330992 + 0: The total amount of wall time = 1266.974921 + 0: The maximum resident set size (KB) = 1334964 -Test 047 cpld_control_nowave_noaero_p8 PASS +Test 048 cpld_control_nowave_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/cpld_debug_p8 -Checking test 048 cpld_debug_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/cpld_debug_p8 +Checking test 049 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -1685,25 +1699,25 @@ Checking test 048 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1348.043525 - 0: The maximum resident set size (KB) = 1449372 + 0: The total amount of wall time = 981.240533 + 0: The maximum resident set size (KB) = 1447588 -Test 048 cpld_debug_p8 PASS +Test 049 cpld_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/GNU/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30734/datm_cdeps_control_cfsr -Checking test 049 datm_cdeps_control_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/datm_cdeps_control_cfsr +Checking test 050 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 173.963509 - 0: The maximum resident set size (KB) = 663004 + 0: The total amount of wall time = 213.144389 + 0: The maximum resident set size (KB) = 656344 -Test 049 datm_cdeps_control_cfsr PASS +Test 050 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Wed Mar 22 19:32:24 UTC 2023 -Elapsed time: 00h:53m:41s. Have a nice day! +Sat Mar 25 00:19:32 UTC 2023 +Elapsed time: 01h:11m:07s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 6630423d216..436792ed49c 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,42 +1,42 @@ -Wed Mar 22 18:57:29 UTC 2023 +Sat Mar 25 00:09:40 UTC 2023 Start Regression test -Compile 001 elapsed time 604 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 607 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 580 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 215 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 193 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 512 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 501 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 689 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 489 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 483 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 452 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 435 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 605 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 606 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 560 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 221 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 204 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 515 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 508 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 699 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 535 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 496 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 011 elapsed time 470 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 433 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile 013 elapsed time 582 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 206 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 179 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 460 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 436 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 161 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 158 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 591 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 021 elapsed time 184 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 014 elapsed time 208 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 178 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 462 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 449 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 171 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 171 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 529 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 021 elapsed time 194 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug Compile 022 elapsed time 624 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 559 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 024 elapsed time 179 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 109 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 178 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 023 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 024 elapsed time 186 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 116 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 191 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON Compile 027 elapsed time 56 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 478 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 520 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 483 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 455 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 164 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 536 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8_mixedmode -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/cpld_control_p8_mixedmode +Compile 028 elapsed time 473 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 536 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 482 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 459 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 194 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 542 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8_mixedmode +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -101,14 +101,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 308.631611 - 0: The maximum resident set size (KB) = 3142428 + 0: The total amount of wall time = 313.786215 + 0: The maximum resident set size (KB) = 3141036 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_gfsv17 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/cpld_control_gfsv17 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_gfsv17 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -172,14 +172,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 224.627854 - 0: The maximum resident set size (KB) = 1723288 + 0: The total amount of wall time = 227.376864 + 0: The maximum resident set size (KB) = 1727244 Test 002 cpld_control_gfsv17 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/cpld_control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -244,14 +244,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 338.058923 - 0: The maximum resident set size (KB) = 3180344 + 0: The total amount of wall time = 345.028305 + 0: The maximum resident set size (KB) = 3186560 Test 003 cpld_control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/cpld_restart_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -304,14 +304,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 194.631490 - 0: The maximum resident set size (KB) = 3050412 + 0: The total amount of wall time = 197.525826 + 0: The maximum resident set size (KB) = 3052176 Test 004 cpld_restart_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/cpld_2threads_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -364,14 +364,14 @@ Checking test 005 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 350.549331 - 0: The maximum resident set size (KB) = 3514900 + 0: The total amount of wall time = 356.233390 + 0: The maximum resident set size (KB) = 3516784 Test 005 cpld_2threads_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/cpld_decomp_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/cpld_decomp_p8 Checking test 006 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -424,14 +424,14 @@ Checking test 006 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 339.243654 - 0: The maximum resident set size (KB) = 3173884 + 0: The total amount of wall time = 342.874675 + 0: The maximum resident set size (KB) = 3172716 Test 006 cpld_decomp_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/cpld_mpi_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/cpld_mpi_p8 Checking test 007 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -484,14 +484,14 @@ Checking test 007 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 283.620644 - 0: The maximum resident set size (KB) = 3021792 + 0: The total amount of wall time = 283.189696 + 0: The maximum resident set size (KB) = 3023244 Test 007 cpld_mpi_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_ciceC_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/cpld_control_ciceC_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_ciceC_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/cpld_control_ciceC_p8 Checking test 008 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -556,14 +556,14 @@ Checking test 008 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 337.186502 - 0: The maximum resident set size (KB) = 3182616 + 0: The total amount of wall time = 351.394061 + 0: The maximum resident set size (KB) = 3177888 Test 008 cpld_control_ciceC_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/cpld_control_c192_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/cpld_control_c192_p8 Checking test 009 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -616,14 +616,14 @@ Checking test 009 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 581.750433 - 0: The maximum resident set size (KB) = 3252408 + 0: The total amount of wall time = 590.943103 + 0: The maximum resident set size (KB) = 3261108 Test 009 cpld_control_c192_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/cpld_restart_c192_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/cpld_restart_c192_p8 Checking test 010 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -676,14 +676,14 @@ Checking test 010 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 407.227643 - 0: The maximum resident set size (KB) = 3154608 + 0: The total amount of wall time = 408.816151 + 0: The maximum resident set size (KB) = 3158660 Test 010 cpld_restart_c192_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/cpld_bmark_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/cpld_bmark_p8 Checking test 011 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -731,14 +731,14 @@ Checking test 011 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 707.063717 - 0: The maximum resident set size (KB) = 4031588 + 0: The total amount of wall time = 719.020407 + 0: The maximum resident set size (KB) = 4047676 Test 011 cpld_bmark_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/cpld_restart_bmark_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/cpld_restart_bmark_p8 Checking test 012 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -786,14 +786,14 @@ Checking test 012 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 445.324769 - 0: The maximum resident set size (KB) = 3972424 + 0: The total amount of wall time = 443.384494 + 0: The maximum resident set size (KB) = 3984092 Test 012 cpld_restart_bmark_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/cpld_control_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/cpld_control_noaero_p8 Checking test 013 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -857,14 +857,14 @@ Checking test 013 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 269.104772 - 0: The maximum resident set size (KB) = 1725500 + 0: The total amount of wall time = 265.619749 + 0: The maximum resident set size (KB) = 1723924 Test 013 cpld_control_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/cpld_control_nowave_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c96_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/cpld_control_nowave_noaero_p8 Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -926,14 +926,14 @@ Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 256.838013 - 0: The maximum resident set size (KB) = 1764268 + 0: The total amount of wall time = 263.578710 + 0: The maximum resident set size (KB) = 1760216 Test 014 cpld_control_nowave_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/cpld_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/cpld_debug_p8 Checking test 015 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -986,14 +986,14 @@ Checking test 015 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 643.229690 - 0: The maximum resident set size (KB) = 3243716 + 0: The total amount of wall time = 649.401149 + 0: The maximum resident set size (KB) = 3243372 Test 015 cpld_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_debug_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/cpld_debug_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_debug_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/cpld_debug_noaero_p8 Checking test 016 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1045,14 +1045,14 @@ Checking test 016 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 394.677363 - 0: The maximum resident set size (KB) = 1730460 + 0: The total amount of wall time = 403.665335 + 0: The maximum resident set size (KB) = 1752716 Test 016 cpld_debug_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_noaero_p8_agrid -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/cpld_control_noaero_p8_agrid +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_noaero_p8_agrid +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/cpld_control_noaero_p8_agrid Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1114,14 +1114,14 @@ Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 266.240404 - 0: The maximum resident set size (KB) = 1768444 + 0: The total amount of wall time = 269.424913 + 0: The maximum resident set size (KB) = 1768148 Test 017 cpld_control_noaero_p8_agrid PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/cpld_control_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/cpld_control_c48 Checking test 018 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1171,14 +1171,14 @@ Checking test 018 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 579.711541 - 0: The maximum resident set size (KB) = 2802972 + 0: The total amount of wall time = 578.940306 + 0: The maximum resident set size (KB) = 2803040 Test 018 cpld_control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/cpld_warmstart_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_warmstart_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/cpld_warmstart_c48 Checking test 019 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1228,14 +1228,14 @@ Checking test 019 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 154.007671 - 0: The maximum resident set size (KB) = 2800868 + 0: The total amount of wall time = 154.041301 + 0: The maximum resident set size (KB) = 2796776 Test 019 cpld_warmstart_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/cpld_restart_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_warmstart_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/cpld_restart_c48 Checking test 020 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1285,14 +1285,14 @@ Checking test 020 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 81.303414 - 0: The maximum resident set size (KB) = 2239596 + 0: The total amount of wall time = 81.895067 + 0: The maximum resident set size (KB) = 2244544 Test 020 cpld_restart_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/cpld_control_p8_faster +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/cpld_control_p8_faster Checking test 021 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1357,14 +1357,14 @@ Checking test 021 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 319.647345 - 0: The maximum resident set size (KB) = 3181860 + 0: The total amount of wall time = 322.791252 + 0: The maximum resident set size (KB) = 3181712 Test 021 cpld_control_p8_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_CubedSphereGrid -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/control_CubedSphereGrid +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/control_CubedSphereGrid Checking test 022 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1391,28 +1391,28 @@ Checking test 022 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 130.705698 - 0: The maximum resident set size (KB) = 628584 + 0: The total amount of wall time = 130.405176 + 0: The maximum resident set size (KB) = 629680 Test 022 control_CubedSphereGrid PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_CubedSphereGrid_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/control_CubedSphereGrid_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/control_CubedSphereGrid_parallel Checking test 023 control_CubedSphereGrid_parallel results .... - Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 129.158118 - 0: The maximum resident set size (KB) = 625516 + 0: The total amount of wall time = 129.257395 + 0: The maximum resident set size (KB) = 633408 Test 023 control_CubedSphereGrid_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_latlon -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/control_latlon +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_latlon +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/control_latlon Checking test 024 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1423,14 +1423,14 @@ Checking test 024 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 132.457925 - 0: The maximum resident set size (KB) = 630704 + 0: The total amount of wall time = 133.451384 + 0: The maximum resident set size (KB) = 628708 Test 024 control_latlon PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_wrtGauss_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/control_wrtGauss_netcdf_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wrtGauss_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/control_wrtGauss_netcdf_parallel Checking test 025 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1441,14 +1441,14 @@ Checking test 025 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.659615 - 0: The maximum resident set size (KB) = 625740 + 0: The total amount of wall time = 138.699023 + 0: The maximum resident set size (KB) = 636860 Test 025 control_wrtGauss_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/control_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/control_c48 Checking test 026 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1487,14 +1487,14 @@ Checking test 026 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 373.315259 -0: The maximum resident set size (KB) = 815008 +0: The total amount of wall time = 365.870682 +0: The maximum resident set size (KB) = 822956 Test 026 control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/control_c192 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/control_c192 Checking test 027 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1505,14 +1505,14 @@ Checking test 027 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 526.431779 - 0: The maximum resident set size (KB) = 758876 + 0: The total amount of wall time = 526.774512 + 0: The maximum resident set size (KB) = 772316 Test 027 control_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/control_c384 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c384 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/control_c384 Checking test 028 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1523,14 +1523,14 @@ Checking test 028 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 535.862653 - 0: The maximum resident set size (KB) = 1264036 + 0: The total amount of wall time = 534.090646 + 0: The maximum resident set size (KB) = 1272432 Test 028 control_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_c384gdas -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/control_c384gdas +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c384gdas +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/control_c384gdas Checking test 029 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1573,14 +1573,14 @@ Checking test 029 control_c384gdas 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 = 475.334233 - 0: The maximum resident set size (KB) = 1374616 + 0: The total amount of wall time = 470.908317 + 0: The maximum resident set size (KB) = 1373328 Test 029 control_c384gdas PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/control_stochy +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/control_stochy Checking test 030 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1591,28 +1591,28 @@ Checking test 030 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 87.485532 - 0: The maximum resident set size (KB) = 628960 + 0: The total amount of wall time = 88.830470 + 0: The maximum resident set size (KB) = 633608 Test 030 control_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/control_stochy_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/control_stochy_restart Checking test 031 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 48.043152 - 0: The maximum resident set size (KB) = 481596 + 0: The total amount of wall time = 49.623716 + 0: The maximum resident set size (KB) = 490076 Test 031 control_stochy_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/control_lndp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_lndp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/control_lndp Checking test 032 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1623,14 +1623,14 @@ Checking test 032 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 82.001630 - 0: The maximum resident set size (KB) = 634304 + 0: The total amount of wall time = 81.734728 + 0: The maximum resident set size (KB) = 633412 Test 032 control_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_iovr4 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/control_iovr4 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_iovr4 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/control_iovr4 Checking test 033 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1645,14 +1645,14 @@ Checking test 033 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 138.409728 - 0: The maximum resident set size (KB) = 623428 + 0: The total amount of wall time = 135.623653 + 0: The maximum resident set size (KB) = 631848 Test 033 control_iovr4 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_iovr5 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/control_iovr5 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_iovr5 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/control_iovr5 Checking test 034 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1667,14 +1667,14 @@ Checking test 034 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 137.914234 - 0: The maximum resident set size (KB) = 629216 + 0: The total amount of wall time = 135.858572 + 0: The maximum resident set size (KB) = 630228 Test 034 control_iovr5 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/control_p8 Checking test 035 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1721,14 +1721,14 @@ Checking test 035 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 165.572114 - 0: The maximum resident set size (KB) = 1607740 + 0: The total amount of wall time = 169.097269 + 0: The maximum resident set size (KB) = 1596032 Test 035 control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/control_p8_lndp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_lndp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/control_p8_lndp Checking test 036 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1747,14 +1747,14 @@ Checking test 036 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 309.484274 - 0: The maximum resident set size (KB) = 1608588 + 0: The total amount of wall time = 312.704964 + 0: The maximum resident set size (KB) = 1613496 Test 036 control_p8_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/control_restart_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/control_restart_p8 Checking test 037 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1793,14 +1793,14 @@ Checking test 037 control_restart_p8 results .... Comparing 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.828534 - 0: The maximum resident set size (KB) = 875820 + 0: The total amount of wall time = 87.210811 + 0: The maximum resident set size (KB) = 881408 Test 037 control_restart_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/control_decomp_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/control_decomp_p8 Checking test 038 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1843,14 +1843,14 @@ Checking test 038 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 171.805621 - 0: The maximum resident set size (KB) = 1586568 + 0: The total amount of wall time = 174.312094 + 0: The maximum resident set size (KB) = 1590984 Test 038 control_decomp_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/control_2threads_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/control_2threads_p8 Checking test 039 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1893,14 +1893,14 @@ Checking test 039 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 161.627369 - 0: The maximum resident set size (KB) = 1684044 + 0: The total amount of wall time = 165.868663 + 0: The maximum resident set size (KB) = 1686320 Test 039 control_2threads_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/control_p8_rrtmgp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/control_p8_rrtmgp Checking test 040 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1947,15 +1947,69 @@ Checking test 040 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 221.853434 - 0: The maximum resident set size (KB) = 1673432 + 0: The total amount of wall time = 226.302844 + 0: The maximum resident set size (KB) = 1674636 Test 040 control_p8_rrtmgp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/merra2_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/merra2_thompson -Checking test 041 merra2_thompson results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_mynn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/control_p8_mynn +Checking test 041 control_p8_mynn results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 172.106795 + 0: The maximum resident set size (KB) = 1610984 + +Test 041 control_p8_mynn PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/merra2_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/merra2_thompson +Checking test 042 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2001,15 +2055,15 @@ Checking test 041 merra2_thompson results .... Comparing 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.310165 - 0: The maximum resident set size (KB) = 1612676 + 0: The total amount of wall time = 195.263466 + 0: The maximum resident set size (KB) = 1611368 -Test 041 merra2_thompson PASS +Test 042 merra2_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/regional_control -Checking test 042 regional_control results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/regional_control +Checking test 043 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2019,29 +2073,29 @@ Checking test 042 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 298.673057 - 0: The maximum resident set size (KB) = 864652 + 0: The total amount of wall time = 300.541256 + 0: The maximum resident set size (KB) = 868208 -Test 042 regional_control PASS +Test 043 regional_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/regional_restart -Checking test 043 regional_restart results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/regional_restart +Checking test 044 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 151.716190 - 0: The maximum resident set size (KB) = 860764 + 0: The total amount of wall time = 152.020408 + 0: The maximum resident set size (KB) = 866064 -Test 043 regional_restart PASS +Test 044 regional_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/regional_decomp -Checking test 044 regional_decomp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/regional_decomp +Checking test 045 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2051,15 +2105,15 @@ Checking test 044 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 313.813943 - 0: The maximum resident set size (KB) = 858112 + 0: The total amount of wall time = 315.151301 + 0: The maximum resident set size (KB) = 863200 -Test 044 regional_decomp PASS +Test 045 regional_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/regional_2threads -Checking test 045 regional_2threads results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/regional_2threads +Checking test 046 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2069,44 +2123,44 @@ Checking test 045 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 183.719062 - 0: The maximum resident set size (KB) = 841868 + 0: The total amount of wall time = 185.637252 + 0: The maximum resident set size (KB) = 844640 -Test 045 regional_2threads PASS +Test 046 regional_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_noquilt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/regional_noquilt -Checking test 046 regional_noquilt results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_noquilt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/regional_noquilt +Checking test 047 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 318.712977 - 0: The maximum resident set size (KB) = 858876 + 0: The total amount of wall time = 321.281916 + 0: The maximum resident set size (KB) = 859148 -Test 046 regional_noquilt PASS +Test 047 regional_noquilt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/regional_netcdf_parallel -Checking test 047 regional_netcdf_parallel results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/regional_netcdf_parallel +Checking test 048 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 292.200306 - 0: The maximum resident set size (KB) = 864176 + 0: The total amount of wall time = 297.363323 + 0: The maximum resident set size (KB) = 862856 -Test 047 regional_netcdf_parallel PASS +Test 048 regional_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/regional_2dwrtdecomp -Checking test 048 regional_2dwrtdecomp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/regional_2dwrtdecomp +Checking test 049 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2116,15 +2170,15 @@ Checking test 048 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 297.809496 - 0: The maximum resident set size (KB) = 871832 + 0: The total amount of wall time = 298.526813 + 0: The maximum resident set size (KB) = 869264 -Test 048 regional_2dwrtdecomp PASS +Test 049 regional_2dwrtdecomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/fv3_regional_wofs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/regional_wofs -Checking test 049 regional_wofs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/fv3_regional_wofs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/regional_wofs +Checking test 050 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2134,15 +2188,15 @@ Checking test 049 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 376.327957 - 0: The maximum resident set size (KB) = 626788 + 0: The total amount of wall time = 376.327145 + 0: The maximum resident set size (KB) = 629508 -Test 049 regional_wofs PASS +Test 050 regional_wofs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/rap_control -Checking test 050 rap_control results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/rap_control +Checking test 051 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2188,15 +2242,15 @@ Checking test 050 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 459.998013 - 0: The maximum resident set size (KB) = 1055124 + 0: The total amount of wall time = 459.832324 + 0: The maximum resident set size (KB) = 1073268 -Test 050 rap_control PASS +Test 051 rap_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_spp_sppt_shum_skeb -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/regional_spp_sppt_shum_skeb -Checking test 051 regional_spp_sppt_shum_skeb results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_spp_sppt_shum_skeb +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/regional_spp_sppt_shum_skeb +Checking test 052 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -2206,15 +2260,15 @@ Checking test 051 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 286.799817 - 0: The maximum resident set size (KB) = 1175748 + 0: The total amount of wall time = 286.377750 + 0: The maximum resident set size (KB) = 1171452 -Test 051 regional_spp_sppt_shum_skeb PASS +Test 052 regional_spp_sppt_shum_skeb PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/rap_decomp -Checking test 052 rap_decomp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/rap_decomp +Checking test 053 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2260,15 +2314,15 @@ Checking test 052 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 481.725120 - 0: The maximum resident set size (KB) = 1006824 + 0: The total amount of wall time = 479.865502 + 0: The maximum resident set size (KB) = 998304 -Test 052 rap_decomp PASS +Test 053 rap_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/rap_2threads -Checking test 053 rap_2threads results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/rap_2threads +Checking test 054 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2314,15 +2368,15 @@ Checking test 053 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 440.650614 - 0: The maximum resident set size (KB) = 1134432 + 0: The total amount of wall time = 440.452084 + 0: The maximum resident set size (KB) = 1124024 -Test 053 rap_2threads PASS +Test 054 rap_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/rap_restart -Checking test 054 rap_restart results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/rap_restart +Checking test 055 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2360,15 +2414,15 @@ Checking test 054 rap_restart results .... Comparing 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.721307 - 0: The maximum resident set size (KB) = 973568 + 0: The total amount of wall time = 231.392374 + 0: The maximum resident set size (KB) = 976068 -Test 054 rap_restart PASS +Test 055 rap_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/rap_sfcdiff -Checking test 055 rap_sfcdiff results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/rap_sfcdiff +Checking test 056 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2414,15 +2468,15 @@ Checking test 055 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 453.778605 - 0: The maximum resident set size (KB) = 1059524 + 0: The total amount of wall time = 450.673787 + 0: The maximum resident set size (KB) = 1059016 -Test 055 rap_sfcdiff PASS +Test 056 rap_sfcdiff PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/rap_sfcdiff_decomp -Checking test 056 rap_sfcdiff_decomp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/rap_sfcdiff_decomp +Checking test 057 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2468,15 +2522,15 @@ Checking test 056 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 479.218313 - 0: The maximum resident set size (KB) = 1002896 + 0: The total amount of wall time = 477.218550 + 0: The maximum resident set size (KB) = 1003932 -Test 056 rap_sfcdiff_decomp PASS +Test 057 rap_sfcdiff_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/rap_sfcdiff_restart -Checking test 057 rap_sfcdiff_restart results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/rap_sfcdiff_restart +Checking test 058 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2514,15 +2568,15 @@ Checking test 057 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 340.964058 - 0: The maximum resident set size (KB) = 984880 + 0: The total amount of wall time = 341.009593 + 0: The maximum resident set size (KB) = 983348 -Test 057 rap_sfcdiff_restart PASS +Test 058 rap_sfcdiff_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/hrrr_control -Checking test 058 hrrr_control results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/hrrr_control +Checking test 059 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2568,15 +2622,15 @@ Checking test 058 hrrr_control results .... Comparing 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.190642 - 0: The maximum resident set size (KB) = 1057312 + 0: The total amount of wall time = 435.171222 + 0: The maximum resident set size (KB) = 1055584 -Test 058 hrrr_control PASS +Test 059 hrrr_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/hrrr_control_decomp -Checking test 059 hrrr_control_decomp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/hrrr_control_decomp +Checking test 060 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2622,15 +2676,15 @@ Checking test 059 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 456.783149 - 0: The maximum resident set size (KB) = 1002696 + 0: The total amount of wall time = 459.763339 + 0: The maximum resident set size (KB) = 1000596 -Test 059 hrrr_control_decomp PASS +Test 060 hrrr_control_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/hrrr_control_2threads -Checking test 060 hrrr_control_2threads results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/hrrr_control_2threads +Checking test 061 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2676,15 +2730,15 @@ Checking test 060 hrrr_control_2threads results .... Comparing 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.030862 - 0: The maximum resident set size (KB) = 1136648 + 0: The total amount of wall time = 419.628185 + 0: The maximum resident set size (KB) = 1133064 -Test 060 hrrr_control_2threads PASS +Test 061 hrrr_control_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/hrrr_control_restart -Checking test 061 hrrr_control_restart results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/hrrr_control_restart +Checking test 062 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2722,15 +2776,15 @@ Checking test 061 hrrr_control_restart results .... Comparing 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.283703 - 0: The maximum resident set size (KB) = 986932 + 0: The total amount of wall time = 328.042251 + 0: The maximum resident set size (KB) = 984736 -Test 061 hrrr_control_restart PASS +Test 062 hrrr_control_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/rrfs_v1beta -Checking test 062 rrfs_v1beta results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/rrfs_v1beta +Checking test 063 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2776,15 +2830,15 @@ Checking test 062 rrfs_v1beta results .... Comparing 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.850452 - 0: The maximum resident set size (KB) = 1060020 + 0: The total amount of wall time = 453.002185 + 0: The maximum resident set size (KB) = 1049472 -Test 062 rrfs_v1beta PASS +Test 063 rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_v1nssl -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/rrfs_v1nssl -Checking test 063 rrfs_v1nssl results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1nssl +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/rrfs_v1nssl +Checking test 064 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2798,15 +2852,15 @@ Checking test 063 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 524.699573 - 0: The maximum resident set size (KB) = 690996 + 0: The total amount of wall time = 542.548042 + 0: The maximum resident set size (KB) = 693948 -Test 063 rrfs_v1nssl PASS +Test 064 rrfs_v1nssl PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/rrfs_v1nssl_nohailnoccn -Checking test 064 rrfs_v1nssl_nohailnoccn results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/rrfs_v1nssl_nohailnoccn +Checking test 065 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2820,30 +2874,14 @@ Checking test 064 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 514.774479 - 0: The maximum resident set size (KB) = 760900 - -Test 064 rrfs_v1nssl_nohailnoccn PASS + 0: The total amount of wall time = 522.768214 + 0: The maximum resident set size (KB) = 756428 - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/rrfs_conus13km_hrrr_warm -Checking test 065 rrfs_conus13km_hrrr_warm 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 - - 0: The total amount of wall time = 122.604428 - 0: The maximum resident set size (KB) = 933160 - -Test 065 rrfs_conus13km_hrrr_warm PASS +Test 065 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/rrfs_smoke_conus13km_hrrr_warm Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2852,15 +2890,15 @@ Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 139.123235 - 0: The maximum resident set size (KB) = 965128 + 0: The total amount of wall time = 144.885677 + 0: The maximum resident set size (KB) = 1028664 Test 066 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/rrfs_conus13km_radar_tten_warm -Checking test 067 rrfs_conus13km_radar_tten_warm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/rrfs_smoke_conus13km_hrrr_warm_2threads +Checking test 067 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2868,15 +2906,15 @@ Checking test 067 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 123.940184 - 0: The maximum resident set size (KB) = 936288 + 0: The total amount of wall time = 91.228500 + 0: The maximum resident set size (KB) = 895844 -Test 067 rrfs_conus13km_radar_tten_warm PASS +Test 067 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/rrfs_conus13km_hrrr_warm_2threads -Checking test 068 rrfs_conus13km_hrrr_warm_2threads results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/rrfs_conus13km_hrrr_warm +Checking test 068 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2884,15 +2922,15 @@ Checking test 068 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 77.783847 - 0: The maximum resident set size (KB) = 841304 + 0: The total amount of wall time = 128.717941 + 0: The maximum resident set size (KB) = 947132 -Test 068 rrfs_conus13km_hrrr_warm_2threads PASS +Test 068 rrfs_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/rrfs_conus13km_radar_tten_warm_2threads -Checking test 069 rrfs_conus13km_radar_tten_warm_2threads results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/rrfs_smoke_conus13km_radar_tten_warm +Checking test 069 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2900,14 +2938,14 @@ Checking test 069 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 79.415203 - 0: The maximum resident set size (KB) = 845136 + 0: The total amount of wall time = 146.366819 + 0: The maximum resident set size (KB) = 993652 -Test 069 rrfs_conus13km_radar_tten_warm_2threads PASS +Test 069 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_csawmg -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/control_csawmg +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmg +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/control_csawmg Checking test 070 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2918,14 +2956,14 @@ Checking test 070 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 346.424945 - 0: The maximum resident set size (KB) = 728216 + 0: The total amount of wall time = 342.654545 + 0: The maximum resident set size (KB) = 730516 Test 070 control_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_csawmgt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/control_csawmgt +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmgt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/control_csawmgt Checking test 071 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2936,14 +2974,14 @@ Checking test 071 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 340.683824 - 0: The maximum resident set size (KB) = 734032 + 0: The total amount of wall time = 336.974004 + 0: The maximum resident set size (KB) = 727200 Test 071 control_csawmgt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/control_ras +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/control_ras Checking test 072 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2954,26 +2992,26 @@ Checking test 072 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 182.477727 - 0: The maximum resident set size (KB) = 709888 + 0: The total amount of wall time = 181.265690 + 0: The maximum resident set size (KB) = 721360 Test 072 control_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_wam -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/control_wam +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wam +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/control_wam Checking test 073 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 112.892759 - 0: The maximum resident set size (KB) = 636964 + 0: The total amount of wall time = 113.615306 + 0: The maximum resident set size (KB) = 634892 Test 073 control_wam PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/control_p8_faster +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/control_p8_faster Checking test 074 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3020,14 +3058,14 @@ Checking test 074 control_p8_faster results .... Comparing 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.141688 - 0: The maximum resident set size (KB) = 1602284 + 0: The total amount of wall time = 154.181662 + 0: The maximum resident set size (KB) = 1600156 Test 074 control_p8_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_control_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/regional_control_faster +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/regional_control_faster Checking test 075 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3038,43 +3076,57 @@ Checking test 075 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 273.668330 - 0: The maximum resident set size (KB) = 871396 + 0: The total amount of wall time = 271.284848 + 0: The maximum resident set size (KB) = 870212 Test 075 regional_control_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/rrfs_conus13km_hrrr_warm_debug -Checking test 076 rrfs_conus13km_hrrr_warm_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/rrfs_smoke_conus13km_hrrr_warm_debug +Checking test 076 rrfs_smoke_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 827.042179 + 0: The maximum resident set size (KB) = 1062400 + +Test 076 rrfs_smoke_conus13km_hrrr_warm_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +Checking test 077 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 722.850661 - 0: The maximum resident set size (KB) = 960908 + 0: The total amount of wall time = 488.177944 + 0: The maximum resident set size (KB) = 975320 -Test 076 rrfs_conus13km_hrrr_warm_debug PASS +Test 077 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/rrfs_conus13km_radar_tten_warm_debug -Checking test 077 rrfs_conus13km_radar_tten_warm_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/rrfs_conus13km_hrrr_warm_debug +Checking test 078 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 717.151378 - 0: The maximum resident set size (KB) = 958180 + 0: The total amount of wall time = 743.690676 + 0: The maximum resident set size (KB) = 971556 -Test 077 rrfs_conus13km_radar_tten_warm_debug PASS +Test 078 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_CubedSphereGrid_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/control_CubedSphereGrid_debug -Checking test 078 control_CubedSphereGrid_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/control_CubedSphereGrid_debug +Checking test 079 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3100,335 +3152,335 @@ Checking test 078 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 160.230378 - 0: The maximum resident set size (KB) = 797372 + 0: The total amount of wall time = 160.753690 + 0: The maximum resident set size (KB) = 793148 -Test 078 control_CubedSphereGrid_debug PASS +Test 079 control_CubedSphereGrid_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/control_wrtGauss_netcdf_parallel_debug -Checking test 079 control_wrtGauss_netcdf_parallel_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/control_wrtGauss_netcdf_parallel_debug +Checking test 080 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 155.271596 - 0: The maximum resident set size (KB) = 796388 + 0: The total amount of wall time = 151.871270 + 0: The maximum resident set size (KB) = 793640 -Test 079 control_wrtGauss_netcdf_parallel_debug PASS +Test 080 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/control_stochy_debug -Checking test 080 control_stochy_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/control_stochy_debug +Checking test 081 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 168.212455 - 0: The maximum resident set size (KB) = 800328 + 0: The total amount of wall time = 168.321895 + 0: The maximum resident set size (KB) = 804596 -Test 080 control_stochy_debug PASS +Test 081 control_stochy_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/control_lndp_debug -Checking test 081 control_lndp_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/control_lndp_debug +Checking test 082 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 152.982501 - 0: The maximum resident set size (KB) = 797204 + 0: The total amount of wall time = 154.261004 + 0: The maximum resident set size (KB) = 795116 -Test 081 control_lndp_debug PASS +Test 082 control_lndp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_csawmg_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/control_csawmg_debug -Checking test 082 control_csawmg_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmg_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/control_csawmg_debug +Checking test 083 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 231.342386 - 0: The maximum resident set size (KB) = 843096 + 0: The total amount of wall time = 233.738376 + 0: The maximum resident set size (KB) = 845204 -Test 082 control_csawmg_debug PASS +Test 083 control_csawmg_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_csawmgt_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/control_csawmgt_debug -Checking test 083 control_csawmgt_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmgt_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/control_csawmgt_debug +Checking test 084 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 231.142377 - 0: The maximum resident set size (KB) = 846676 + 0: The total amount of wall time = 230.232167 + 0: The maximum resident set size (KB) = 840152 -Test 083 control_csawmgt_debug PASS +Test 084 control_csawmgt_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/control_ras_debug -Checking test 084 control_ras_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/control_ras_debug +Checking test 085 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 153.967538 - 0: The maximum resident set size (KB) = 805324 + 0: The total amount of wall time = 153.721596 + 0: The maximum resident set size (KB) = 804676 -Test 084 control_ras_debug PASS +Test 085 control_ras_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/control_diag_debug -Checking test 085 control_diag_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/control_diag_debug +Checking test 086 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 162.067894 - 0: The maximum resident set size (KB) = 856592 + 0: The total amount of wall time = 160.221209 + 0: The maximum resident set size (KB) = 850672 -Test 085 control_diag_debug PASS +Test 086 control_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/control_debug_p8 -Checking test 086 control_debug_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/control_debug_p8 +Checking test 087 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 169.762216 - 0: The maximum resident set size (KB) = 1619792 + 0: The total amount of wall time = 170.799814 + 0: The maximum resident set size (KB) = 1620816 -Test 086 control_debug_p8 PASS +Test 087 control_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/regional_debug -Checking test 087 regional_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/regional_debug +Checking test 088 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 985.797591 - 0: The maximum resident set size (KB) = 887500 + 0: The total amount of wall time = 955.399320 + 0: The maximum resident set size (KB) = 881936 -Test 087 regional_debug PASS +Test 088 regional_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/rap_control_debug -Checking test 088 rap_control_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/rap_control_debug +Checking test 089 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.078882 - 0: The maximum resident set size (KB) = 1172248 + 0: The total amount of wall time = 272.918430 + 0: The maximum resident set size (KB) = 1174432 -Test 088 rap_control_debug PASS +Test 089 rap_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/hrrr_control_debug -Checking test 089 hrrr_control_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/hrrr_control_debug +Checking test 090 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 267.824961 - 0: The maximum resident set size (KB) = 1171392 + 0: The total amount of wall time = 272.909810 + 0: The maximum resident set size (KB) = 1172884 -Test 089 hrrr_control_debug PASS +Test 090 hrrr_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/rap_unified_drag_suite_debug -Checking test 090 rap_unified_drag_suite_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/rap_unified_drag_suite_debug +Checking test 091 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.173332 - 0: The maximum resident set size (KB) = 1170352 + 0: The total amount of wall time = 276.295864 + 0: The maximum resident set size (KB) = 1176620 -Test 090 rap_unified_drag_suite_debug PASS +Test 091 rap_unified_drag_suite_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/rap_diag_debug -Checking test 091 rap_diag_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/rap_diag_debug +Checking test 092 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 294.747283 - 0: The maximum resident set size (KB) = 1252444 + 0: The total amount of wall time = 290.250846 + 0: The maximum resident set size (KB) = 1261596 -Test 091 rap_diag_debug PASS +Test 092 rap_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/rap_cires_ugwp_debug -Checking test 092 rap_cires_ugwp_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/rap_cires_ugwp_debug +Checking test 093 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 283.691192 - 0: The maximum resident set size (KB) = 1171800 + 0: The total amount of wall time = 280.491429 + 0: The maximum resident set size (KB) = 1175120 -Test 092 rap_cires_ugwp_debug PASS +Test 093 rap_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/rap_unified_ugwp_debug -Checking test 093 rap_unified_ugwp_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/rap_unified_ugwp_debug +Checking test 094 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.511020 - 0: The maximum resident set size (KB) = 1176908 + 0: The total amount of wall time = 278.297201 + 0: The maximum resident set size (KB) = 1176592 -Test 093 rap_unified_ugwp_debug PASS +Test 094 rap_unified_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/rap_lndp_debug -Checking test 094 rap_lndp_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/rap_lndp_debug +Checking test 095 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 278.825947 - 0: The maximum resident set size (KB) = 1174740 + 0: The total amount of wall time = 274.642425 + 0: The maximum resident set size (KB) = 1174760 -Test 094 rap_lndp_debug PASS +Test 095 rap_lndp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_flake_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/rap_flake_debug -Checking test 095 rap_flake_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_flake_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/rap_flake_debug +Checking test 096 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.325449 - 0: The maximum resident set size (KB) = 1170960 + 0: The total amount of wall time = 273.861653 + 0: The maximum resident set size (KB) = 1174400 -Test 095 rap_flake_debug PASS +Test 096 rap_flake_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/rap_progcld_thompson_debug -Checking test 096 rap_progcld_thompson_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/rap_progcld_thompson_debug +Checking test 097 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.825533 - 0: The maximum resident set size (KB) = 1172460 + 0: The total amount of wall time = 274.641306 + 0: The maximum resident set size (KB) = 1178104 -Test 096 rap_progcld_thompson_debug PASS +Test 097 rap_progcld_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_noah_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/rap_noah_debug -Checking test 097 rap_noah_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_noah_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/rap_noah_debug +Checking test 098 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.212473 - 0: The maximum resident set size (KB) = 1170140 + 0: The total amount of wall time = 270.016401 + 0: The maximum resident set size (KB) = 1172388 -Test 097 rap_noah_debug PASS +Test 098 rap_noah_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_sfcdiff_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/rap_sfcdiff_debug -Checking test 098 rap_sfcdiff_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/rap_sfcdiff_debug +Checking test 099 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.011275 - 0: The maximum resident set size (KB) = 1173332 + 0: The total amount of wall time = 275.171357 + 0: The maximum resident set size (KB) = 1174516 -Test 098 rap_sfcdiff_debug PASS +Test 099 rap_sfcdiff_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 099 rap_noah_sfcdiff_cires_ugwp_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 100 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 451.248462 - 0: The maximum resident set size (KB) = 1170408 + 0: The total amount of wall time = 450.744543 + 0: The maximum resident set size (KB) = 1174968 -Test 099 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 100 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/rrfs_v1beta_debug -Checking test 100 rrfs_v1beta_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/rrfs_v1beta_debug +Checking test 101 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.172973 - 0: The maximum resident set size (KB) = 1167480 + 0: The total amount of wall time = 271.891884 + 0: The maximum resident set size (KB) = 1166864 -Test 100 rrfs_v1beta_debug PASS +Test 101 rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/control_wam_debug -Checking test 101 control_wam_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/control_wam_debug +Checking test 102 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 283.141620 - 0: The maximum resident set size (KB) = 522284 + 0: The total amount of wall time = 279.862464 + 0: The maximum resident set size (KB) = 524116 -Test 101 control_wam_debug PASS +Test 102 control_wam_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/regional_spp_sppt_shum_skeb_dyn32_phy32 -Checking test 102 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 103 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -3438,15 +3490,15 @@ Checking test 102 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 267.615629 - 0: The maximum resident set size (KB) = 1072288 + 0: The total amount of wall time = 265.653753 + 0: The maximum resident set size (KB) = 1070452 -Test 102 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS +Test 103 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/rap_control_dyn32_phy32 -Checking test 103 rap_control_dyn32_phy32 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/rap_control_dyn32_phy32 +Checking test 104 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3492,15 +3544,15 @@ Checking test 103 rap_control_dyn32_phy32 results .... Comparing 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.107848 - 0: The maximum resident set size (KB) = 997820 + 0: The total amount of wall time = 368.475564 + 0: The maximum resident set size (KB) = 1004664 -Test 103 rap_control_dyn32_phy32 PASS +Test 104 rap_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/hrrr_control_dyn32_phy32 -Checking test 104 hrrr_control_dyn32_phy32 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/hrrr_control_dyn32_phy32 +Checking test 105 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3546,15 +3598,15 @@ Checking test 104 hrrr_control_dyn32_phy32 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 = 195.770898 - 0: The maximum resident set size (KB) = 955548 + 0: The total amount of wall time = 194.023042 + 0: The maximum resident set size (KB) = 954788 -Test 104 hrrr_control_dyn32_phy32 PASS +Test 105 hrrr_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/rap_2threads_dyn32_phy32 -Checking test 105 rap_2threads_dyn32_phy32 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/rap_2threads_dyn32_phy32 +Checking test 106 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3600,15 +3652,15 @@ Checking test 105 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 359.654429 - 0: The maximum resident set size (KB) = 1020508 + 0: The total amount of wall time = 357.390716 + 0: The maximum resident set size (KB) = 1030580 -Test 105 rap_2threads_dyn32_phy32 PASS +Test 106 rap_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/hrrr_control_2threads_dyn32_phy32 -Checking test 106 hrrr_control_2threads_dyn32_phy32 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/hrrr_control_2threads_dyn32_phy32 +Checking test 107 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3654,15 +3706,15 @@ Checking test 106 hrrr_control_2threads_dyn32_phy32 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 = 190.877735 - 0: The maximum resident set size (KB) = 1003840 + 0: The total amount of wall time = 191.844741 + 0: The maximum resident set size (KB) = 1003264 -Test 106 hrrr_control_2threads_dyn32_phy32 PASS +Test 107 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/hrrr_control_decomp_dyn32_phy32 -Checking test 107 hrrr_control_decomp_dyn32_phy32 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/hrrr_control_decomp_dyn32_phy32 +Checking test 108 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3708,15 +3760,15 @@ Checking test 107 hrrr_control_decomp_dyn32_phy32 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 = 206.838153 - 0: The maximum resident set size (KB) = 891040 + 0: The total amount of wall time = 204.962032 + 0: The maximum resident set size (KB) = 890440 -Test 107 hrrr_control_decomp_dyn32_phy32 PASS +Test 108 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/rap_restart_dyn32_phy32 -Checking test 108 rap_restart_dyn32_phy32 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/rap_restart_dyn32_phy32 +Checking test 109 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3754,15 +3806,15 @@ Checking test 108 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 281.215757 - 0: The maximum resident set size (KB) = 950332 + 0: The total amount of wall time = 277.927313 + 0: The maximum resident set size (KB) = 942360 -Test 108 rap_restart_dyn32_phy32 PASS +Test 109 rap_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/hrrr_control_restart_dyn32_phy32 -Checking test 109 hrrr_control_restart_dyn32_phy32 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/hrrr_control_restart_dyn32_phy32 +Checking test 110 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3800,15 +3852,15 @@ Checking test 109 hrrr_control_restart_dyn32_phy32 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 = 101.356436 - 0: The maximum resident set size (KB) = 866140 + 0: The total amount of wall time = 101.944525 + 0: The maximum resident set size (KB) = 861128 -Test 109 hrrr_control_restart_dyn32_phy32 PASS +Test 110 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/rap_control_dyn64_phy32 -Checking test 110 rap_control_dyn64_phy32 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/rap_control_dyn64_phy32 +Checking test 111 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3854,82 +3906,82 @@ Checking test 110 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 243.553792 - 0: The maximum resident set size (KB) = 967372 + 0: The total amount of wall time = 242.775632 + 0: The maximum resident set size (KB) = 964200 -Test 110 rap_control_dyn64_phy32 PASS +Test 111 rap_control_dyn64_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/rap_control_debug_dyn32_phy32 -Checking test 111 rap_control_debug_dyn32_phy32 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/rap_control_debug_dyn32_phy32 +Checking test 112 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.285836 - 0: The maximum resident set size (KB) = 1060100 + 0: The total amount of wall time = 272.479385 + 0: The maximum resident set size (KB) = 1059468 -Test 111 rap_control_debug_dyn32_phy32 PASS +Test 112 rap_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/hrrr_control_debug_dyn32_phy32 -Checking test 112 hrrr_control_debug_dyn32_phy32 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/hrrr_control_debug_dyn32_phy32 +Checking test 113 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 265.285669 - 0: The maximum resident set size (KB) = 1058316 + 0: The total amount of wall time = 268.929086 + 0: The maximum resident set size (KB) = 1057496 -Test 112 hrrr_control_debug_dyn32_phy32 PASS +Test 113 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/rap_control_dyn64_phy32_debug -Checking test 113 rap_control_dyn64_phy32_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/rap_control_dyn64_phy32_debug +Checking test 114 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.112037 - 0: The maximum resident set size (KB) = 1104304 + 0: The total amount of wall time = 276.953909 + 0: The maximum resident set size (KB) = 1095864 -Test 113 rap_control_dyn64_phy32_debug PASS +Test 114 rap_control_dyn64_phy32_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/hafs_regional_atm -Checking test 114 hafs_regional_atm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/hafs_regional_atm +Checking test 115 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 238.808434 - 0: The maximum resident set size (KB) = 1049284 + 0: The total amount of wall time = 238.276092 + 0: The maximum resident set size (KB) = 1048848 -Test 114 hafs_regional_atm PASS +Test 115 hafs_regional_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/hafs_regional_atm_thompson_gfdlsf -Checking test 115 hafs_regional_atm_thompson_gfdlsf results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/hafs_regional_atm_thompson_gfdlsf +Checking test 116 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 315.192722 - 0: The maximum resident set size (KB) = 1417852 + 0: The total amount of wall time = 325.459546 + 0: The maximum resident set size (KB) = 1420508 -Test 115 hafs_regional_atm_thompson_gfdlsf PASS +Test 116 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/hafs_regional_atm_ocn -Checking test 116 hafs_regional_atm_ocn results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/hafs_regional_atm_ocn +Checking test 117 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -3937,15 +3989,15 @@ Checking test 116 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 379.860809 - 0: The maximum resident set size (KB) = 1223184 + 0: The total amount of wall time = 378.519468 + 0: The maximum resident set size (KB) = 1216624 -Test 116 hafs_regional_atm_ocn PASS +Test 117 hafs_regional_atm_ocn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_atm_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/hafs_regional_atm_wav -Checking test 117 hafs_regional_atm_wav results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/hafs_regional_atm_wav +Checking test 118 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK @@ -3953,15 +4005,15 @@ Checking test 117 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 735.206189 - 0: The maximum resident set size (KB) = 1251216 + 0: The total amount of wall time = 738.518474 + 0: The maximum resident set size (KB) = 1251772 -Test 117 hafs_regional_atm_wav PASS +Test 118 hafs_regional_atm_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/hafs_regional_atm_ocn_wav -Checking test 118 hafs_regional_atm_ocn_wav results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/hafs_regional_atm_ocn_wav +Checking test 119 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -3971,29 +4023,29 @@ Checking test 118 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 840.521646 - 0: The maximum resident set size (KB) = 1271064 + 0: The total amount of wall time = 838.909020 + 0: The maximum resident set size (KB) = 1271160 -Test 118 hafs_regional_atm_ocn_wav PASS +Test 119 hafs_regional_atm_ocn_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/hafs_regional_1nest_atm -Checking test 119 hafs_regional_1nest_atm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/hafs_regional_1nest_atm +Checking test 120 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 320.941203 - 0: The maximum resident set size (KB) = 505604 + 0: The total amount of wall time = 322.293171 + 0: The maximum resident set size (KB) = 508308 -Test 119 hafs_regional_1nest_atm PASS +Test 120 hafs_regional_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/hafs_regional_telescopic_2nests_atm -Checking test 120 hafs_regional_telescopic_2nests_atm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/hafs_regional_telescopic_2nests_atm +Checking test 121 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4001,29 +4053,29 @@ Checking test 120 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 362.748465 - 0: The maximum resident set size (KB) = 512280 + 0: The total amount of wall time = 365.959403 + 0: The maximum resident set size (KB) = 512592 -Test 120 hafs_regional_telescopic_2nests_atm PASS +Test 121 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_global_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/hafs_global_1nest_atm -Checking test 121 hafs_global_1nest_atm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/hafs_global_1nest_atm +Checking test 122 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 145.823139 - 0: The maximum resident set size (KB) = 349476 + 0: The total amount of wall time = 147.280345 + 0: The maximum resident set size (KB) = 347824 -Test 121 hafs_global_1nest_atm PASS +Test 122 hafs_global_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_global_multiple_4nests_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/hafs_global_multiple_4nests_atm -Checking test 122 hafs_global_multiple_4nests_atm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_multiple_4nests_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/hafs_global_multiple_4nests_atm +Checking test 123 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4040,15 +4092,15 @@ Checking test 122 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 418.943373 - 0: The maximum resident set size (KB) = 422620 + 0: The total amount of wall time = 423.123601 + 0: The maximum resident set size (KB) = 422412 -Test 122 hafs_global_multiple_4nests_atm PASS +Test 123 hafs_global_multiple_4nests_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/hafs_regional_specified_moving_1nest_atm -Checking test 123 hafs_regional_specified_moving_1nest_atm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/hafs_regional_specified_moving_1nest_atm +Checking test 124 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4056,29 +4108,29 @@ Checking test 123 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 201.631721 - 0: The maximum resident set size (KB) = 511508 + 0: The total amount of wall time = 204.298763 + 0: The maximum resident set size (KB) = 516480 -Test 123 hafs_regional_specified_moving_1nest_atm PASS +Test 124 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/hafs_regional_storm_following_1nest_atm -Checking test 124 hafs_regional_storm_following_1nest_atm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/hafs_regional_storm_following_1nest_atm +Checking test 125 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 191.086922 - 0: The maximum resident set size (KB) = 515408 + 0: The total amount of wall time = 190.889916 + 0: The maximum resident set size (KB) = 512276 -Test 124 hafs_regional_storm_following_1nest_atm PASS +Test 125 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/hafs_regional_storm_following_1nest_atm_ocn -Checking test 125 hafs_regional_storm_following_1nest_atm_ocn results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/hafs_regional_storm_following_1nest_atm_ocn +Checking test 126 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4086,43 +4138,43 @@ Checking test 125 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 219.841893 - 0: The maximum resident set size (KB) = 558316 + 0: The total amount of wall time = 221.489291 + 0: The maximum resident set size (KB) = 550372 -Test 125 hafs_regional_storm_following_1nest_atm_ocn PASS +Test 126 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_global_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/hafs_global_storm_following_1nest_atm -Checking test 126 hafs_global_storm_following_1nest_atm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_storm_following_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/hafs_global_storm_following_1nest_atm +Checking test 127 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 58.044355 - 0: The maximum resident set size (KB) = 365732 + 0: The total amount of wall time = 61.100151 + 0: The maximum resident set size (KB) = 363004 -Test 126 hafs_global_storm_following_1nest_atm PASS +Test 127 hafs_global_storm_following_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/hafs_regional_storm_following_1nest_atm_ocn_debug -Checking test 127 hafs_regional_storm_following_1nest_atm_ocn_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/hafs_regional_storm_following_1nest_atm_ocn_debug +Checking test 128 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 758.337857 - 0: The maximum resident set size (KB) = 577316 + 0: The total amount of wall time = 761.502970 + 0: The maximum resident set size (KB) = 581144 -Test 127 hafs_regional_storm_following_1nest_atm_ocn_debug PASS +Test 128 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/hafs_regional_storm_following_1nest_atm_ocn_wav -Checking test 128 hafs_regional_storm_following_1nest_atm_ocn_wav results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 129 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4132,162 +4184,162 @@ Checking test 128 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 517.992676 - 0: The maximum resident set size (KB) = 610344 + 0: The total amount of wall time = 515.214866 + 0: The maximum resident set size (KB) = 615080 -Test 128 hafs_regional_storm_following_1nest_atm_ocn_wav PASS +Test 129 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_docn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/hafs_regional_docn -Checking test 129 hafs_regional_docn results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_docn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/hafs_regional_docn +Checking test 130 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 356.422181 - 0: The maximum resident set size (KB) = 1227968 + 0: The total amount of wall time = 360.561885 + 0: The maximum resident set size (KB) = 1223448 -Test 129 hafs_regional_docn PASS +Test 130 hafs_regional_docn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_docn_oisst -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/hafs_regional_docn_oisst -Checking test 130 hafs_regional_docn_oisst results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_docn_oisst +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/hafs_regional_docn_oisst +Checking test 131 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 357.617156 - 0: The maximum resident set size (KB) = 1221140 + 0: The total amount of wall time = 356.364913 + 0: The maximum resident set size (KB) = 1215640 -Test 130 hafs_regional_docn_oisst PASS +Test 131 hafs_regional_docn_oisst PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_datm_cdeps -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/hafs_regional_datm_cdeps -Checking test 131 hafs_regional_datm_cdeps results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_datm_cdeps +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/hafs_regional_datm_cdeps +Checking test 132 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 1023.937376 - 0: The maximum resident set size (KB) = 1038924 + 0: The total amount of wall time = 949.992069 + 0: The maximum resident set size (KB) = 1038188 -Test 131 hafs_regional_datm_cdeps PASS +Test 132 hafs_regional_datm_cdeps PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/datm_cdeps_control_cfsr -Checking test 132 datm_cdeps_control_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/datm_cdeps_control_cfsr +Checking test 133 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 154.906645 - 0: The maximum resident set size (KB) = 1074880 + 0: The total amount of wall time = 156.444527 + 0: The maximum resident set size (KB) = 1062620 -Test 132 datm_cdeps_control_cfsr PASS +Test 133 datm_cdeps_control_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/datm_cdeps_restart_cfsr -Checking test 133 datm_cdeps_restart_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/datm_cdeps_restart_cfsr +Checking test 134 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.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.981322 - 0: The maximum resident set size (KB) = 1028800 + 0: The total amount of wall time = 93.387666 + 0: The maximum resident set size (KB) = 1015544 -Test 133 datm_cdeps_restart_cfsr PASS +Test 134 datm_cdeps_restart_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/datm_cdeps_control_gefs -Checking test 134 datm_cdeps_control_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/datm_cdeps_control_gefs +Checking test 135 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 151.167897 - 0: The maximum resident set size (KB) = 966292 + 0: The total amount of wall time = 151.346577 + 0: The maximum resident set size (KB) = 960392 -Test 134 datm_cdeps_control_gefs PASS +Test 135 datm_cdeps_control_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_iau_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/datm_cdeps_iau_gefs -Checking test 135 datm_cdeps_iau_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_iau_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/datm_cdeps_iau_gefs +Checking test 136 datm_cdeps_iau_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 151.381412 - 0: The maximum resident set size (KB) = 961776 + 0: The total amount of wall time = 154.734386 + 0: The maximum resident set size (KB) = 961232 -Test 135 datm_cdeps_iau_gefs PASS +Test 136 datm_cdeps_iau_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_stochy_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/datm_cdeps_stochy_gefs -Checking test 136 datm_cdeps_stochy_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_stochy_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/datm_cdeps_stochy_gefs +Checking test 137 datm_cdeps_stochy_gefs 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 = 152.640340 - 0: The maximum resident set size (KB) = 958052 + 0: The total amount of wall time = 150.532389 + 0: The maximum resident set size (KB) = 961252 -Test 136 datm_cdeps_stochy_gefs PASS +Test 137 datm_cdeps_stochy_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_ciceC_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/datm_cdeps_ciceC_cfsr -Checking test 137 datm_cdeps_ciceC_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_ciceC_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/datm_cdeps_ciceC_cfsr +Checking test 138 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 152.735742 - 0: The maximum resident set size (KB) = 1066672 + 0: The total amount of wall time = 152.858349 + 0: The maximum resident set size (KB) = 1071308 -Test 137 datm_cdeps_ciceC_cfsr PASS +Test 138 datm_cdeps_ciceC_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/datm_cdeps_bulk_cfsr -Checking test 138 datm_cdeps_bulk_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/datm_cdeps_bulk_cfsr +Checking test 139 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 154.150821 - 0: The maximum resident set size (KB) = 1058412 + 0: The total amount of wall time = 156.314130 + 0: The maximum resident set size (KB) = 1075724 -Test 138 datm_cdeps_bulk_cfsr PASS +Test 139 datm_cdeps_bulk_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/datm_cdeps_bulk_gefs -Checking test 139 datm_cdeps_bulk_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/datm_cdeps_bulk_gefs +Checking test 140 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.032099 - 0: The maximum resident set size (KB) = 954096 + 0: The total amount of wall time = 146.829141 + 0: The maximum resident set size (KB) = 966252 -Test 139 datm_cdeps_bulk_gefs PASS +Test 140 datm_cdeps_bulk_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/datm_cdeps_mx025_cfsr -Checking test 140 datm_cdeps_mx025_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/datm_cdeps_mx025_cfsr +Checking test 141 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4295,15 +4347,15 @@ Checking test 140 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 397.231418 - 0: The maximum resident set size (KB) = 877744 + 0: The total amount of wall time = 402.139621 + 0: The maximum resident set size (KB) = 878536 -Test 140 datm_cdeps_mx025_cfsr PASS +Test 141 datm_cdeps_mx025_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/datm_cdeps_mx025_gefs -Checking test 141 datm_cdeps_mx025_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/datm_cdeps_mx025_gefs +Checking test 142 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4311,78 +4363,78 @@ Checking test 141 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 391.937038 - 0: The maximum resident set size (KB) = 932780 + 0: The total amount of wall time = 396.724445 + 0: The maximum resident set size (KB) = 937088 -Test 141 datm_cdeps_mx025_gefs PASS +Test 142 datm_cdeps_mx025_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/datm_cdeps_multiple_files_cfsr -Checking test 142 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/datm_cdeps_multiple_files_cfsr +Checking test 143 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 154.417023 - 0: The maximum resident set size (KB) = 1075256 + 0: The total amount of wall time = 158.782420 + 0: The maximum resident set size (KB) = 1072112 -Test 142 datm_cdeps_multiple_files_cfsr PASS +Test 143 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/datm_cdeps_3072x1536_cfsr -Checking test 143 datm_cdeps_3072x1536_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/datm_cdeps_3072x1536_cfsr +Checking test 144 datm_cdeps_3072x1536_cfsr 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 = 212.330224 - 0: The maximum resident set size (KB) = 2359432 + 0: The total amount of wall time = 220.044054 + 0: The maximum resident set size (KB) = 2296124 -Test 143 datm_cdeps_3072x1536_cfsr PASS +Test 144 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_gfs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/datm_cdeps_gfs -Checking test 144 datm_cdeps_gfs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_gfs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/datm_cdeps_gfs +Checking test 145 datm_cdeps_gfs results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 214.403839 - 0: The maximum resident set size (KB) = 2357576 + 0: The total amount of wall time = 217.274964 + 0: The maximum resident set size (KB) = 2370352 -Test 144 datm_cdeps_gfs PASS +Test 145 datm_cdeps_gfs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/datm_cdeps_debug_cfsr -Checking test 145 datm_cdeps_debug_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/datm_cdeps_debug_cfsr +Checking test 146 datm_cdeps_debug_cfsr 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 = 442.412513 - 0: The maximum resident set size (KB) = 1006920 + 0: The total amount of wall time = 448.345513 + 0: The maximum resident set size (KB) = 991276 -Test 145 datm_cdeps_debug_cfsr PASS +Test 146 datm_cdeps_debug_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_control_cfsr_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/datm_cdeps_control_cfsr_faster -Checking test 146 datm_cdeps_control_cfsr_faster results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/datm_cdeps_control_cfsr_faster +Checking test 147 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 154.650855 - 0: The maximum resident set size (KB) = 1070628 + 0: The total amount of wall time = 153.094826 + 0: The maximum resident set size (KB) = 1054344 -Test 146 datm_cdeps_control_cfsr_faster PASS +Test 147 datm_cdeps_control_cfsr_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/datm_cdeps_lnd_gswp3 -Checking test 147 datm_cdeps_lnd_gswp3 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_lnd_gswp3 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/datm_cdeps_lnd_gswp3 +Checking test 148 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4390,15 +4442,15 @@ Checking test 147 datm_cdeps_lnd_gswp3 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 = 6.515411 - 0: The maximum resident set size (KB) = 261024 + 0: The total amount of wall time = 6.971406 + 0: The maximum resident set size (KB) = 264400 -Test 147 datm_cdeps_lnd_gswp3 PASS +Test 148 datm_cdeps_lnd_gswp3 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/datm_cdeps_lnd_gswp3_rst -Checking test 148 datm_cdeps_lnd_gswp3_rst results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_lnd_gswp3 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/datm_cdeps_lnd_gswp3_rst +Checking test 149 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4406,15 +4458,15 @@ Checking test 148 datm_cdeps_lnd_gswp3_rst 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 = 11.959424 - 0: The maximum resident set size (KB) = 258856 + 0: The total amount of wall time = 13.052118 + 0: The maximum resident set size (KB) = 262196 -Test 148 datm_cdeps_lnd_gswp3_rst PASS +Test 149 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8_atmlnd_sbs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/control_p8_atmlnd_sbs -Checking test 149 control_p8_atmlnd_sbs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_atmlnd_sbs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/control_p8_atmlnd_sbs +Checking test 150 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -4498,15 +4550,15 @@ Checking test 149 control_p8_atmlnd_sbs 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 = 200.066952 - 0: The maximum resident set size (KB) = 1609248 + 0: The total amount of wall time = 203.514267 + 0: The maximum resident set size (KB) = 1614968 -Test 149 control_p8_atmlnd_sbs PASS +Test 150 control_p8_atmlnd_sbs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_atmwav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/control_atmwav -Checking test 150 control_atmwav results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_atmwav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/control_atmwav +Checking test 151 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -4549,15 +4601,15 @@ Checking test 150 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 86.691504 - 0: The maximum resident set size (KB) = 657132 + 0: The total amount of wall time = 90.157104 + 0: The maximum resident set size (KB) = 658596 -Test 150 control_atmwav PASS +Test 151 control_atmwav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/atmaero_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/atmaero_control_p8 -Checking test 151 atmaero_control_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/atmaero_control_p8 +Checking test 152 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4600,15 +4652,15 @@ Checking test 151 atmaero_control_p8 results .... Comparing 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.648540 - 0: The maximum resident set size (KB) = 2967852 + 0: The total amount of wall time = 228.572798 + 0: The maximum resident set size (KB) = 2972272 -Test 151 atmaero_control_p8 PASS +Test 152 atmaero_control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/atmaero_control_p8_rad -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/atmaero_control_p8_rad -Checking test 152 atmaero_control_p8_rad results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8_rad +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/atmaero_control_p8_rad +Checking test 153 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4651,15 +4703,15 @@ Checking test 152 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 278.365733 - 0: The maximum resident set size (KB) = 3049272 + 0: The total amount of wall time = 279.590807 + 0: The maximum resident set size (KB) = 3050004 -Test 152 atmaero_control_p8_rad PASS +Test 153 atmaero_control_p8_rad PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/atmaero_control_p8_rad_micro -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/atmaero_control_p8_rad_micro -Checking test 153 atmaero_control_p8_rad_micro results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8_rad_micro +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/atmaero_control_p8_rad_micro +Checking test 154 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4702,15 +4754,15 @@ Checking test 153 atmaero_control_p8_rad_micro results .... Comparing 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.281069 - 0: The maximum resident set size (KB) = 3057556 + 0: The total amount of wall time = 286.240111 + 0: The maximum resident set size (KB) = 3056624 -Test 153 atmaero_control_p8_rad_micro PASS +Test 154 atmaero_control_p8_rad_micro PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_atmaq -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/regional_atmaq -Checking test 154 regional_atmaq results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/regional_atmaq +Checking test 155 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -4725,15 +4777,15 @@ Checking test 154 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 631.460161 - 0: The maximum resident set size (KB) = 1474692 + 0: The total amount of wall time = 631.235288 + 0: The maximum resident set size (KB) = 1466408 -Test 154 regional_atmaq PASS +Test 155 regional_atmaq PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_atmaq_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/regional_atmaq_debug -Checking test 155 regional_atmaq_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/regional_atmaq_debug +Checking test 156 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -4746,15 +4798,15 @@ Checking test 155 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1217.781227 - 0: The maximum resident set size (KB) = 1399032 + 0: The total amount of wall time = 1222.629222 + 0: The maximum resident set size (KB) = 1406332 -Test 155 regional_atmaq_debug PASS +Test 156 regional_atmaq_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_atmaq_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14805/regional_atmaq_faster -Checking test 156 regional_atmaq_faster results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/regional_atmaq_faster +Checking test 157 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -4769,12 +4821,12 @@ Checking test 156 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 553.204760 - 0: The maximum resident set size (KB) = 1459036 + 0: The total amount of wall time = 550.849434 + 0: The maximum resident set size (KB) = 1471716 -Test 156 regional_atmaq_faster PASS +Test 157 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Wed Mar 22 20:07:15 UTC 2023 -Elapsed time: 01h:09m:46s. Have a nice day! +Sat Mar 25 01:20:59 UTC 2023 +Elapsed time: 01h:11m:19s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index e481878861b..bbc973f05ba 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,42 +1,42 @@ -Wed Mar 22 22:07:01 UTC 2023 +Sun Mar 26 14:26:15 UTC 2023 Start Regression test -Compile 001 elapsed time 1969 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 002 elapsed time 1810 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 003 elapsed time 1661 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 004 elapsed time 317 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 276 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 1476 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 007 elapsed time 1511 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 008 elapsed time 3352 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 009 elapsed time 1593 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 010 elapsed time 1569 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 011 elapsed time 1540 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 012 elapsed time 1409 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 013 elapsed time 1953 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 014 elapsed time 291 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 229 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 1398 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 017 elapsed time 1446 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 018 elapsed time 262 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 204 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 1662 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 021 elapsed time 278 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 2060 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 023 elapsed time 1608 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 024 elapsed time 277 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 025 elapsed time 162 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 268 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 027 elapsed time 107 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 028 elapsed time 1460 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 029 elapsed time 1597 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 030 elapsed time 1442 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 031 elapsed time 1425 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 032 elapsed time 247 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 1813 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8_mixedmode -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/cpld_control_p8_mixedmode +Compile 001 elapsed time 1843 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 002 elapsed time 1975 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 003 elapsed time 1887 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 004 elapsed time 332 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 320 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 1484 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 007 elapsed time 1499 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 008 elapsed time 3329 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 009 elapsed time 1670 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 010 elapsed time 1573 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 011 elapsed time 1484 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 012 elapsed time 1421 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 013 elapsed time 2020 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 014 elapsed time 435 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 277 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 1460 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 017 elapsed time 1439 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 018 elapsed time 257 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 276 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 1676 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 021 elapsed time 338 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 2144 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 023 elapsed time 1609 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 024 elapsed time 294 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 025 elapsed time 190 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 291 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 027 elapsed time 121 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 028 elapsed time 1513 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 029 elapsed time 1575 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 030 elapsed time 1473 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 031 elapsed time 1390 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 032 elapsed time 301 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 1836 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8_mixedmode +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -101,14 +101,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 452.456038 - 0: The maximum resident set size (KB) = 1744164 + 0: The total amount of wall time = 584.357900 + 0: The maximum resident set size (KB) = 1736216 -Test 001 cpld_control_p8_mixedmode PASS Tries: 2 +Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_gfsv17 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/cpld_control_gfsv17 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_gfsv17 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -172,14 +172,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 339.493023 - 0: The maximum resident set size (KB) = 1644752 + 0: The total amount of wall time = 500.496750 + 0: The maximum resident set size (KB) = 1639136 Test 002 cpld_control_gfsv17 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/cpld_control_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -244,14 +244,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 502.501979 - 0: The maximum resident set size (KB) = 1779160 + 0: The total amount of wall time = 661.240716 + 0: The maximum resident set size (KB) = 1791232 -Test 003 cpld_control_p8 PASS Tries: 2 +Test 003 cpld_control_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/cpld_restart_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -304,14 +304,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 263.865626 - 0: The maximum resident set size (KB) = 1504948 + 0: The total amount of wall time = 318.802334 + 0: The maximum resident set size (KB) = 1495368 Test 004 cpld_restart_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/cpld_2threads_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -364,14 +364,14 @@ Checking test 005 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 552.184022 - 0: The maximum resident set size (KB) = 1972012 + 0: The total amount of wall time = 683.069646 + 0: The maximum resident set size (KB) = 1996584 Test 005 cpld_2threads_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/cpld_decomp_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/cpld_decomp_p8 Checking test 006 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -424,14 +424,14 @@ Checking test 006 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 536.833776 - 0: The maximum resident set size (KB) = 1780896 + 0: The total amount of wall time = 626.903950 + 0: The maximum resident set size (KB) = 1775436 Test 006 cpld_decomp_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/cpld_mpi_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/cpld_mpi_p8 Checking test 007 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -484,14 +484,14 @@ Checking test 007 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 458.080386 - 0: The maximum resident set size (KB) = 1729924 + 0: The total amount of wall time = 594.176626 + 0: The maximum resident set size (KB) = 1734760 Test 007 cpld_mpi_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_ciceC_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/cpld_control_ciceC_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_ciceC_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/cpld_control_ciceC_p8 Checking test 008 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -556,14 +556,14 @@ Checking test 008 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 525.598303 - 0: The maximum resident set size (KB) = 1778012 + 0: The total amount of wall time = 642.387489 + 0: The maximum resident set size (KB) = 1780596 Test 008 cpld_control_ciceC_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_noaero_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/cpld_control_noaero_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_noaero_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/cpld_control_noaero_p8 Checking test 009 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -627,14 +627,14 @@ Checking test 009 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 526.436220 - 0: The maximum resident set size (KB) = 1634348 + 0: The total amount of wall time = 473.672343 + 0: The maximum resident set size (KB) = 1623732 Test 009 cpld_control_noaero_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/cpld_control_nowave_noaero_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c96_noaero_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/cpld_control_nowave_noaero_p8 Checking test 010 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -696,14 +696,14 @@ Checking test 010 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 513.991014 - 0: The maximum resident set size (KB) = 1656760 + 0: The total amount of wall time = 506.075507 + 0: The maximum resident set size (KB) = 1671104 Test 010 cpld_control_nowave_noaero_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_debug_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/cpld_debug_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_debug_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/cpld_debug_p8 Checking test 011 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -756,14 +756,14 @@ Checking test 011 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 858.291260 - 0: The maximum resident set size (KB) = 1829096 + 0: The total amount of wall time = 931.783155 + 0: The maximum resident set size (KB) = 1821472 -Test 011 cpld_debug_p8 PASS Tries: 2 +Test 011 cpld_debug_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_debug_noaero_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/cpld_debug_noaero_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_debug_noaero_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/cpld_debug_noaero_p8 Checking test 012 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -815,14 +815,14 @@ Checking test 012 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 535.746825 - 0: The maximum resident set size (KB) = 1650604 + 0: The total amount of wall time = 597.815103 + 0: The maximum resident set size (KB) = 1650264 Test 012 cpld_debug_noaero_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/cpld_control_noaero_p8_agrid +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_noaero_p8_agrid +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/cpld_control_noaero_p8_agrid Checking test 013 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -884,14 +884,14 @@ Checking test 013 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 423.625914 - 0: The maximum resident set size (KB) = 1673680 + 0: The total amount of wall time = 534.132921 + 0: The maximum resident set size (KB) = 1693084 Test 013 cpld_control_noaero_p8_agrid PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_c48 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/cpld_control_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c48 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/cpld_control_c48 Checking test 014 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -941,14 +941,14 @@ Checking test 014 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 808.588526 - 0: The maximum resident set size (KB) = 2777540 + 0: The total amount of wall time = 813.439416 + 0: The maximum resident set size (KB) = 2772824 Test 014 cpld_control_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_warmstart_c48 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/cpld_warmstart_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_warmstart_c48 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/cpld_warmstart_c48 Checking test 015 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -998,14 +998,14 @@ Checking test 015 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 238.469672 - 0: The maximum resident set size (KB) = 2768688 + 0: The total amount of wall time = 256.779953 + 0: The maximum resident set size (KB) = 2782560 Test 015 cpld_warmstart_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_warmstart_c48 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/cpld_restart_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_warmstart_c48 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/cpld_restart_c48 Checking test 016 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1055,14 +1055,14 @@ Checking test 016 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 113.976659 - 0: The maximum resident set size (KB) = 2215148 + 0: The total amount of wall time = 150.387844 + 0: The maximum resident set size (KB) = 2217948 Test 016 cpld_restart_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8_faster -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/cpld_control_p8_faster +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8_faster +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/cpld_control_p8_faster Checking test 017 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1127,14 +1127,14 @@ Checking test 017 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 452.772466 - 0: The maximum resident set size (KB) = 1770684 + 0: The total amount of wall time = 531.536607 + 0: The maximum resident set size (KB) = 1771644 Test 017 cpld_control_p8_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/control_CubedSphereGrid -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/control_CubedSphereGrid +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/control_CubedSphereGrid Checking test 018 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1161,28 +1161,28 @@ Checking test 018 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 190.396158 - 0: The maximum resident set size (KB) = 574164 + 0: The total amount of wall time = 291.453498 + 0: The maximum resident set size (KB) = 572924 Test 018 control_CubedSphereGrid PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/control_CubedSphereGrid_parallel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/control_CubedSphereGrid_parallel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid_parallel +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/control_CubedSphereGrid_parallel Checking test 019 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc .........OK - Comparing sfcf024.nc ............ALT CHECK......OK + Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 181.837635 - 0: The maximum resident set size (KB) = 576568 + 0: The total amount of wall time = 288.408721 + 0: The maximum resident set size (KB) = 575580 Test 019 control_CubedSphereGrid_parallel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/control_latlon -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/control_latlon +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_latlon +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/control_latlon Checking test 020 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1193,14 +1193,14 @@ Checking test 020 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 188.603160 - 0: The maximum resident set size (KB) = 578384 + 0: The total amount of wall time = 301.940090 + 0: The maximum resident set size (KB) = 570804 Test 020 control_latlon PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/control_wrtGauss_netcdf_parallel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/control_wrtGauss_netcdf_parallel Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1211,14 +1211,14 @@ Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 190.445304 - 0: The maximum resident set size (KB) = 572972 + 0: The total amount of wall time = 305.215124 + 0: The maximum resident set size (KB) = 575020 Test 021 control_wrtGauss_netcdf_parallel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/control_c48 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/control_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c48 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/control_c48 Checking test 022 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1257,14 +1257,14 @@ Checking test 022 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 597.385150 -0: The maximum resident set size (KB) = 795624 +0: The total amount of wall time = 615.429011 +0: The maximum resident set size (KB) = 797512 Test 022 control_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/control_c192 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/control_c192 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c192 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/control_c192 Checking test 023 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1275,14 +1275,14 @@ Checking test 023 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 742.637164 - 0: The maximum resident set size (KB) = 695704 + 0: The total amount of wall time = 935.050975 + 0: The maximum resident set size (KB) = 698836 Test 023 control_c192 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/control_c384 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/control_c384 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c384 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/control_c384 Checking test 024 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1293,14 +1293,14 @@ Checking test 024 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 959.504308 - 0: The maximum resident set size (KB) = 1058096 + 0: The total amount of wall time = 1247.245703 + 0: The maximum resident set size (KB) = 1058112 Test 024 control_c384 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/control_c384gdas -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/control_c384gdas +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c384gdas +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/control_c384gdas Checking test 025 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1343,14 +1343,14 @@ Checking test 025 control_c384gdas 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 = 836.593422 - 0: The maximum resident set size (KB) = 1196892 + 0: The total amount of wall time = 1051.998859 + 0: The maximum resident set size (KB) = 1195888 -Test 025 control_c384gdas PASS Tries: 2 +Test 025 control_c384gdas PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/control_stochy -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/control_stochy +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/control_stochy Checking test 026 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1361,28 +1361,28 @@ Checking test 026 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 126.943843 - 0: The maximum resident set size (KB) = 581616 + 0: The total amount of wall time = 162.657569 + 0: The maximum resident set size (KB) = 580556 Test 026 control_stochy PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/control_stochy -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/control_stochy_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/control_stochy_restart Checking test 027 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 67.348269 - 0: The maximum resident set size (KB) = 401324 + 0: The total amount of wall time = 84.012790 + 0: The maximum resident set size (KB) = 395364 Test 027 control_stochy_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/control_lndp -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/control_lndp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_lndp +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/control_lndp Checking test 028 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1393,14 +1393,14 @@ Checking test 028 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 122.654286 - 0: The maximum resident set size (KB) = 578384 + 0: The total amount of wall time = 155.369973 + 0: The maximum resident set size (KB) = 571500 Test 028 control_lndp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/control_iovr4 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/control_iovr4 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_iovr4 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/control_iovr4 Checking test 029 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1415,14 +1415,14 @@ Checking test 029 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 193.521772 - 0: The maximum resident set size (KB) = 575236 + 0: The total amount of wall time = 273.353971 + 0: The maximum resident set size (KB) = 571832 Test 029 control_iovr4 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/control_iovr5 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/control_iovr5 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_iovr5 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/control_iovr5 Checking test 030 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1437,14 +1437,14 @@ Checking test 030 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 196.825368 - 0: The maximum resident set size (KB) = 575712 + 0: The total amount of wall time = 228.296933 + 0: The maximum resident set size (KB) = 574344 Test 030 control_iovr5 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/control_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/control_p8 Checking test 031 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1491,14 +1491,14 @@ Checking test 031 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 245.721506 - 0: The maximum resident set size (KB) = 1542416 + 0: The total amount of wall time = 249.504646 + 0: The maximum resident set size (KB) = 1544768 Test 031 control_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8_lndp -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/control_p8_lndp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_lndp +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/control_p8_lndp Checking test 032 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1517,14 +1517,14 @@ Checking test 032 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 435.014318 - 0: The maximum resident set size (KB) = 1536364 + 0: The total amount of wall time = 644.327546 + 0: The maximum resident set size (KB) = 1555844 Test 032 control_p8_lndp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/control_restart_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/control_restart_p8 Checking test 033 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1563,14 +1563,14 @@ Checking test 033 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 122.062669 - 0: The maximum resident set size (KB) = 779856 + 0: The total amount of wall time = 194.448927 + 0: The maximum resident set size (KB) = 787232 Test 033 control_restart_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/control_decomp_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/control_decomp_p8 Checking test 034 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1613,14 +1613,14 @@ Checking test 034 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 251.809139 - 0: The maximum resident set size (KB) = 1525188 + 0: The total amount of wall time = 313.212162 + 0: The maximum resident set size (KB) = 1529108 Test 034 control_decomp_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/control_2threads_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/control_2threads_p8 Checking test 035 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1663,14 +1663,14 @@ Checking test 035 control_2threads_p8 results .... Comparing 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.313162 - 0: The maximum resident set size (KB) = 1632204 + 0: The total amount of wall time = 274.978298 + 0: The maximum resident set size (KB) = 1627440 Test 035 control_2threads_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8_rrtmgp -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/control_p8_rrtmgp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_rrtmgp +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/control_p8_rrtmgp Checking test 036 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1717,15 +1717,69 @@ Checking test 036 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 309.915909 - 0: The maximum resident set size (KB) = 1617192 + 0: The total amount of wall time = 444.272559 + 0: The maximum resident set size (KB) = 1602372 Test 036 control_p8_rrtmgp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/merra2_thompson -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/merra2_thompson -Checking test 037 merra2_thompson results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_mynn +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/control_p8_mynn +Checking test 037 control_p8_mynn results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 322.516624 + 0: The maximum resident set size (KB) = 1551144 + +Test 037 control_p8_mynn PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/merra2_thompson +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/merra2_thompson +Checking test 038 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1771,15 +1825,15 @@ Checking test 037 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 279.842931 - 0: The maximum resident set size (KB) = 1557396 + 0: The total amount of wall time = 413.843763 + 0: The maximum resident set size (KB) = 1557228 -Test 037 merra2_thompson PASS +Test 038 merra2_thompson PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/regional_control -Checking test 038 regional_control results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/regional_control +Checking test 039 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1789,29 +1843,29 @@ Checking test 038 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 419.882273 - 0: The maximum resident set size (KB) = 790196 + 0: The total amount of wall time = 627.913608 + 0: The maximum resident set size (KB) = 792192 -Test 038 regional_control PASS +Test 039 regional_control PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/regional_restart -Checking test 039 regional_restart results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/regional_restart +Checking test 040 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 209.569887 - 0: The maximum resident set size (KB) = 781660 + 0: The total amount of wall time = 252.187900 + 0: The maximum resident set size (KB) = 780412 -Test 039 regional_restart PASS +Test 040 regional_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/regional_decomp -Checking test 040 regional_decomp results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/regional_decomp +Checking test 041 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1821,15 +1875,15 @@ Checking test 040 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 437.551871 - 0: The maximum resident set size (KB) = 782148 + 0: The total amount of wall time = 633.639694 + 0: The maximum resident set size (KB) = 781892 -Test 040 regional_decomp PASS +Test 041 regional_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/regional_2threads -Checking test 041 regional_2threads results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/regional_2threads +Checking test 042 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1839,44 +1893,44 @@ Checking test 041 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 265.673342 - 0: The maximum resident set size (KB) = 773688 + 0: The total amount of wall time = 463.511256 + 0: The maximum resident set size (KB) = 772800 -Test 041 regional_2threads PASS +Test 042 regional_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_noquilt -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/regional_noquilt -Checking test 042 regional_noquilt results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_noquilt +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/regional_noquilt +Checking test 043 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 452.431646 - 0: The maximum resident set size (KB) = 774640 + 0: The total amount of wall time = 704.140507 + 0: The maximum resident set size (KB) = 773952 -Test 042 regional_noquilt PASS +Test 043 regional_noquilt PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_netcdf_parallel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/regional_netcdf_parallel -Checking test 043 regional_netcdf_parallel results .... - Comparing dynf000.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_netcdf_parallel +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/regional_netcdf_parallel +Checking test 044 regional_netcdf_parallel results .... + Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 411.600897 - 0: The maximum resident set size (KB) = 785392 + 0: The total amount of wall time = 645.377935 + 0: The maximum resident set size (KB) = 781464 -Test 043 regional_netcdf_parallel PASS +Test 044 regional_netcdf_parallel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/regional_2dwrtdecomp -Checking test 044 regional_2dwrtdecomp results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/regional_2dwrtdecomp +Checking test 045 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1886,15 +1940,15 @@ Checking test 044 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 434.336406 - 0: The maximum resident set size (KB) = 785636 + 0: The total amount of wall time = 630.245061 + 0: The maximum resident set size (KB) = 785584 -Test 044 regional_2dwrtdecomp PASS +Test 045 regional_2dwrtdecomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/fv3_regional_wofs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/regional_wofs -Checking test 045 regional_wofs results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/fv3_regional_wofs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/regional_wofs +Checking test 046 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1904,15 +1958,15 @@ Checking test 045 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 540.456612 - 0: The maximum resident set size (KB) = 520172 + 0: The total amount of wall time = 769.838525 + 0: The maximum resident set size (KB) = 521572 -Test 045 regional_wofs PASS +Test 046 regional_wofs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/rap_control -Checking test 046 rap_control results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/rap_control +Checking test 047 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1958,15 +2012,15 @@ Checking test 046 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 654.436765 - 0: The maximum resident set size (KB) = 961352 + 0: The total amount of wall time = 768.661121 + 0: The maximum resident set size (KB) = 949460 -Test 046 rap_control PASS +Test 047 rap_control PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/regional_spp_sppt_shum_skeb -Checking test 047 regional_spp_sppt_shum_skeb results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_spp_sppt_shum_skeb +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/regional_spp_sppt_shum_skeb +Checking test 048 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -1976,15 +2030,15 @@ Checking test 047 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 416.515882 - 0: The maximum resident set size (KB) = 1087604 + 0: The total amount of wall time = 520.242329 + 0: The maximum resident set size (KB) = 1085880 -Test 047 regional_spp_sppt_shum_skeb PASS +Test 048 regional_spp_sppt_shum_skeb PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/rap_decomp -Checking test 048 rap_decomp results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/rap_decomp +Checking test 049 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2030,15 +2084,15 @@ Checking test 048 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 676.098385 - 0: The maximum resident set size (KB) = 948636 + 0: The total amount of wall time = 864.845092 + 0: The maximum resident set size (KB) = 941208 -Test 048 rap_decomp PASS +Test 049 rap_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/rap_2threads -Checking test 049 rap_2threads results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/rap_2threads +Checking test 050 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2084,15 +2138,15 @@ Checking test 049 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 630.539878 - 0: The maximum resident set size (KB) = 1031972 + 0: The total amount of wall time = 769.926686 + 0: The maximum resident set size (KB) = 1032344 -Test 049 rap_2threads PASS +Test 050 rap_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/rap_restart -Checking test 050 rap_restart results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/rap_restart +Checking test 051 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2130,15 +2184,15 @@ Checking test 050 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 312.604618 - 0: The maximum resident set size (KB) = 831576 + 0: The total amount of wall time = 424.498442 + 0: The maximum resident set size (KB) = 833640 -Test 050 rap_restart PASS +Test 051 rap_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/rap_sfcdiff -Checking test 051 rap_sfcdiff results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/rap_sfcdiff +Checking test 052 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2184,15 +2238,15 @@ Checking test 051 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 670.708668 - 0: The maximum resident set size (KB) = 945916 + 0: The total amount of wall time = 840.694742 + 0: The maximum resident set size (KB) = 960472 -Test 051 rap_sfcdiff PASS +Test 052 rap_sfcdiff PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/rap_sfcdiff_decomp -Checking test 052 rap_sfcdiff_decomp results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/rap_sfcdiff_decomp +Checking test 053 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2238,15 +2292,15 @@ Checking test 052 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 691.360258 - 0: The maximum resident set size (KB) = 959708 + 0: The total amount of wall time = 854.017515 + 0: The maximum resident set size (KB) = 952148 -Test 052 rap_sfcdiff_decomp PASS +Test 053 rap_sfcdiff_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/rap_sfcdiff_restart -Checking test 053 rap_sfcdiff_restart results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/rap_sfcdiff_restart +Checking test 054 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2284,15 +2338,15 @@ Checking test 053 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 479.413208 - 0: The maximum resident set size (KB) = 848812 + 0: The total amount of wall time = 588.222988 + 0: The maximum resident set size (KB) = 838488 -Test 053 rap_sfcdiff_restart PASS +Test 054 rap_sfcdiff_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/hrrr_control -Checking test 054 hrrr_control results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/hrrr_control +Checking test 055 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2338,15 +2392,15 @@ Checking test 054 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 625.485540 - 0: The maximum resident set size (KB) = 957336 + 0: The total amount of wall time = 838.188518 + 0: The maximum resident set size (KB) = 959044 -Test 054 hrrr_control PASS +Test 055 hrrr_control PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/hrrr_control_decomp -Checking test 055 hrrr_control_decomp results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/hrrr_control_decomp +Checking test 056 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2392,15 +2446,15 @@ Checking test 055 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 630.718140 - 0: The maximum resident set size (KB) = 942596 + 0: The total amount of wall time = 847.718416 + 0: The maximum resident set size (KB) = 949932 -Test 055 hrrr_control_decomp PASS +Test 056 hrrr_control_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/hrrr_control_2threads -Checking test 056 hrrr_control_2threads results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/hrrr_control_2threads +Checking test 057 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2446,15 +2500,15 @@ Checking test 056 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 612.376134 - 0: The maximum resident set size (KB) = 1018188 + 0: The total amount of wall time = 758.962620 + 0: The maximum resident set size (KB) = 1022356 -Test 056 hrrr_control_2threads PASS +Test 057 hrrr_control_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/hrrr_control_restart -Checking test 057 hrrr_control_restart results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/hrrr_control_restart +Checking test 058 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2492,15 +2546,15 @@ Checking test 057 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 468.171108 - 0: The maximum resident set size (KB) = 843704 + 0: The total amount of wall time = 558.793259 + 0: The maximum resident set size (KB) = 838052 -Test 057 hrrr_control_restart PASS +Test 058 hrrr_control_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_v1beta -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/rrfs_v1beta -Checking test 058 rrfs_v1beta results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1beta +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/rrfs_v1beta +Checking test 059 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2546,15 +2600,15 @@ Checking test 058 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 621.244721 - 0: The maximum resident set size (KB) = 951680 + 0: The total amount of wall time = 767.192457 + 0: The maximum resident set size (KB) = 940072 -Test 058 rrfs_v1beta PASS +Test 059 rrfs_v1beta PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_v1nssl -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/rrfs_v1nssl -Checking test 059 rrfs_v1nssl results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1nssl +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/rrfs_v1nssl +Checking test 060 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2568,15 +2622,15 @@ Checking test 059 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 721.010759 - 0: The maximum resident set size (KB) = 639268 + 0: The total amount of wall time = 957.194370 + 0: The maximum resident set size (KB) = 630824 -Test 059 rrfs_v1nssl PASS +Test 060 rrfs_v1nssl PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/rrfs_v1nssl_nohailnoccn -Checking test 060 rrfs_v1nssl_nohailnoccn results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/rrfs_v1nssl_nohailnoccn +Checking test 061 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2590,30 +2644,14 @@ Checking test 060 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 722.581218 - 0: The maximum resident set size (KB) = 636068 - -Test 060 rrfs_v1nssl_nohailnoccn PASS + 0: The total amount of wall time = 981.379816 + 0: The maximum resident set size (KB) = 634332 - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/rrfs_conus13km_hrrr_warm -Checking test 061 rrfs_conus13km_hrrr_warm 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 - - 0: The total amount of wall time = 186.842895 - 0: The maximum resident set size (KB) = 849696 - -Test 061 rrfs_conus13km_hrrr_warm PASS +Test 061 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/rrfs_smoke_conus13km_hrrr_warm Checking test 062 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2622,15 +2660,15 @@ Checking test 062 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 214.088107 - 0: The maximum resident set size (KB) = 879812 + 0: The total amount of wall time = 294.932879 + 0: The maximum resident set size (KB) = 904916 Test 062 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/rrfs_conus13km_radar_tten_warm -Checking test 063 rrfs_conus13km_radar_tten_warm results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/rrfs_smoke_conus13km_hrrr_warm_2threads +Checking test 063 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2638,15 +2676,15 @@ Checking test 063 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 171.256456 - 0: The maximum resident set size (KB) = 862316 + 0: The total amount of wall time = 244.060213 + 0: The maximum resident set size (KB) = 861984 -Test 063 rrfs_conus13km_radar_tten_warm PASS +Test 063 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/rrfs_conus13km_hrrr_warm_2threads -Checking test 064 rrfs_conus13km_hrrr_warm_2threads results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/rrfs_conus13km_hrrr_warm +Checking test 064 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2654,15 +2692,15 @@ Checking test 064 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 115.399966 - 0: The maximum resident set size (KB) = 824776 + 0: The total amount of wall time = 253.553616 + 0: The maximum resident set size (KB) = 868036 -Test 064 rrfs_conus13km_hrrr_warm_2threads PASS +Test 064 rrfs_conus13km_hrrr_warm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/rrfs_conus13km_radar_tten_warm_2threads -Checking test 065 rrfs_conus13km_radar_tten_warm_2threads results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/rrfs_smoke_conus13km_radar_tten_warm +Checking test 065 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2670,14 +2708,14 @@ Checking test 065 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 123.839115 - 0: The maximum resident set size (KB) = 833340 + 0: The total amount of wall time = 315.348898 + 0: The maximum resident set size (KB) = 907368 -Test 065 rrfs_conus13km_radar_tten_warm_2threads PASS +Test 065 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/control_csawmg -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/control_csawmg +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmg +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/control_csawmg Checking test 066 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2688,14 +2726,14 @@ Checking test 066 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 475.777533 - 0: The maximum resident set size (KB) = 669036 + 0: The total amount of wall time = 596.576528 + 0: The maximum resident set size (KB) = 666084 Test 066 control_csawmg PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/control_csawmgt -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/control_csawmgt +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmgt +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/control_csawmgt Checking test 067 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2706,14 +2744,14 @@ Checking test 067 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 489.061786 - 0: The maximum resident set size (KB) = 668060 + 0: The total amount of wall time = 612.602983 + 0: The maximum resident set size (KB) = 668784 Test 067 control_csawmgt PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/control_ras -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/control_ras +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_ras +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/control_ras Checking test 068 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2724,26 +2762,26 @@ Checking test 068 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 286.090217 - 0: The maximum resident set size (KB) = 632492 + 0: The total amount of wall time = 345.638483 + 0: The maximum resident set size (KB) = 635236 Test 068 control_ras PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/control_wam -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/control_wam +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wam +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/control_wam Checking test 069 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 157.713933 - 0: The maximum resident set size (KB) = 483540 + 0: The total amount of wall time = 186.596999 + 0: The maximum resident set size (KB) = 483916 Test 069 control_wam PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8_faster -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/control_p8_faster +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_faster +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/control_p8_faster Checking test 070 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2790,14 +2828,14 @@ Checking test 070 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 217.050264 - 0: The maximum resident set size (KB) = 1531320 + 0: The total amount of wall time = 228.465717 + 0: The maximum resident set size (KB) = 1536964 Test 070 control_p8_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_control_faster -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/regional_control_faster +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control_faster +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/regional_control_faster Checking test 071 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2808,43 +2846,57 @@ Checking test 071 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 388.206401 - 0: The maximum resident set size (KB) = 782940 + 0: The total amount of wall time = 527.864383 + 0: The maximum resident set size (KB) = 786228 Test 071 regional_control_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/rrfs_conus13km_hrrr_warm_debug -Checking test 072 rrfs_conus13km_hrrr_warm_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/rrfs_smoke_conus13km_hrrr_warm_debug +Checking test 072 rrfs_smoke_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 1114.012834 + 0: The maximum resident set size (KB) = 944896 + +Test 072 rrfs_smoke_conus13km_hrrr_warm_debug PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +Checking test 073 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 947.700826 - 0: The maximum resident set size (KB) = 882876 + 0: The total amount of wall time = 679.836760 + 0: The maximum resident set size (KB) = 912796 -Test 072 rrfs_conus13km_hrrr_warm_debug PASS +Test 073 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/rrfs_conus13km_radar_tten_warm_debug -Checking test 073 rrfs_conus13km_radar_tten_warm_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/rrfs_conus13km_hrrr_warm_debug +Checking test 074 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 949.774875 - 0: The maximum resident set size (KB) = 887212 + 0: The total amount of wall time = 990.106552 + 0: The maximum resident set size (KB) = 901520 -Test 073 rrfs_conus13km_radar_tten_warm_debug PASS +Test 074 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/control_CubedSphereGrid_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/control_CubedSphereGrid_debug -Checking test 074 control_CubedSphereGrid_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/control_CubedSphereGrid_debug +Checking test 075 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -2870,335 +2922,335 @@ Checking test 074 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 214.703082 - 0: The maximum resident set size (KB) = 737308 + 0: The total amount of wall time = 241.892967 + 0: The maximum resident set size (KB) = 738464 -Test 074 control_CubedSphereGrid_debug PASS +Test 075 control_CubedSphereGrid_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/control_wrtGauss_netcdf_parallel_debug -Checking test 075 control_wrtGauss_netcdf_parallel_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/control_wrtGauss_netcdf_parallel_debug +Checking test 076 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 201.744157 - 0: The maximum resident set size (KB) = 736884 + 0: The total amount of wall time = 222.373258 + 0: The maximum resident set size (KB) = 738308 -Test 075 control_wrtGauss_netcdf_parallel_debug PASS +Test 076 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/control_stochy_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/control_stochy_debug -Checking test 076 control_stochy_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/control_stochy_debug +Checking test 077 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 227.451218 - 0: The maximum resident set size (KB) = 742864 + 0: The total amount of wall time = 235.983985 + 0: The maximum resident set size (KB) = 741532 -Test 076 control_stochy_debug PASS +Test 077 control_stochy_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/control_lndp_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/control_lndp_debug -Checking test 077 control_lndp_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_lndp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/control_lndp_debug +Checking test 078 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 202.071652 - 0: The maximum resident set size (KB) = 744468 + 0: The total amount of wall time = 212.519482 + 0: The maximum resident set size (KB) = 740428 -Test 077 control_lndp_debug PASS +Test 078 control_lndp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/control_csawmg_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/control_csawmg_debug -Checking test 078 control_csawmg_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmg_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/control_csawmg_debug +Checking test 079 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 311.826048 - 0: The maximum resident set size (KB) = 788200 + 0: The total amount of wall time = 319.907389 + 0: The maximum resident set size (KB) = 790480 -Test 078 control_csawmg_debug PASS +Test 079 control_csawmg_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/control_csawmgt_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/control_csawmgt_debug -Checking test 079 control_csawmgt_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmgt_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/control_csawmgt_debug +Checking test 080 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 307.014777 - 0: The maximum resident set size (KB) = 781876 + 0: The total amount of wall time = 351.716748 + 0: The maximum resident set size (KB) = 786876 -Test 079 control_csawmgt_debug PASS +Test 080 control_csawmgt_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/control_ras_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/control_ras_debug -Checking test 080 control_ras_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_ras_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/control_ras_debug +Checking test 081 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 203.640882 - 0: The maximum resident set size (KB) = 751124 + 0: The total amount of wall time = 207.018005 + 0: The maximum resident set size (KB) = 752280 -Test 080 control_ras_debug PASS +Test 081 control_ras_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/control_diag_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/control_diag_debug -Checking test 081 control_diag_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_diag_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/control_diag_debug +Checking test 082 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 206.859978 - 0: The maximum resident set size (KB) = 792172 + 0: The total amount of wall time = 225.899778 + 0: The maximum resident set size (KB) = 796932 -Test 081 control_diag_debug PASS +Test 082 control_diag_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/control_debug_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/control_debug_p8 -Checking test 082 control_debug_p8 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_debug_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/control_debug_p8 +Checking test 083 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 223.159347 - 0: The maximum resident set size (KB) = 1559940 + 0: The total amount of wall time = 228.538951 + 0: The maximum resident set size (KB) = 1559652 -Test 082 control_debug_p8 PASS +Test 083 control_debug_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/regional_debug -Checking test 083 regional_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/regional_debug +Checking test 084 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1292.639365 - 0: The maximum resident set size (KB) = 809080 + 0: The total amount of wall time = 1315.967660 + 0: The maximum resident set size (KB) = 802896 -Test 083 regional_debug PASS +Test 084 regional_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/rap_control_debug -Checking test 084 rap_control_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/rap_control_debug +Checking test 085 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 361.250007 - 0: The maximum resident set size (KB) = 1112056 + 0: The total amount of wall time = 372.295099 + 0: The maximum resident set size (KB) = 1120708 -Test 084 rap_control_debug PASS +Test 085 rap_control_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/hrrr_control_debug -Checking test 085 hrrr_control_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/hrrr_control_debug +Checking test 086 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 353.637907 - 0: The maximum resident set size (KB) = 1105016 + 0: The total amount of wall time = 357.791290 + 0: The maximum resident set size (KB) = 1120236 -Test 085 hrrr_control_debug PASS +Test 086 hrrr_control_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/rap_unified_drag_suite_debug -Checking test 086 rap_unified_drag_suite_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/rap_unified_drag_suite_debug +Checking test 087 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 357.957026 - 0: The maximum resident set size (KB) = 1116376 + 0: The total amount of wall time = 383.198690 + 0: The maximum resident set size (KB) = 1122436 -Test 086 rap_unified_drag_suite_debug PASS +Test 087 rap_unified_drag_suite_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_diag_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/rap_diag_debug -Checking test 087 rap_diag_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_diag_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/rap_diag_debug +Checking test 088 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 381.994170 - 0: The maximum resident set size (KB) = 1197888 + 0: The total amount of wall time = 390.582552 + 0: The maximum resident set size (KB) = 1199572 -Test 087 rap_diag_debug PASS +Test 088 rap_diag_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/rap_cires_ugwp_debug -Checking test 088 rap_cires_ugwp_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/rap_cires_ugwp_debug +Checking test 089 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 365.796283 - 0: The maximum resident set size (KB) = 1117456 + 0: The total amount of wall time = 403.489267 + 0: The maximum resident set size (KB) = 1112496 -Test 088 rap_cires_ugwp_debug PASS +Test 089 rap_cires_ugwp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/rap_unified_ugwp_debug -Checking test 089 rap_unified_ugwp_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/rap_unified_ugwp_debug +Checking test 090 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 365.713914 - 0: The maximum resident set size (KB) = 1118600 + 0: The total amount of wall time = 370.651001 + 0: The maximum resident set size (KB) = 1120080 -Test 089 rap_unified_ugwp_debug PASS +Test 090 rap_unified_ugwp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_lndp_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/rap_lndp_debug -Checking test 090 rap_lndp_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_lndp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/rap_lndp_debug +Checking test 091 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 367.142663 - 0: The maximum resident set size (KB) = 1112212 + 0: The total amount of wall time = 380.057900 + 0: The maximum resident set size (KB) = 1117860 -Test 090 rap_lndp_debug PASS +Test 091 rap_lndp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_flake_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/rap_flake_debug -Checking test 091 rap_flake_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_flake_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/rap_flake_debug +Checking test 092 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 359.569471 - 0: The maximum resident set size (KB) = 1119848 + 0: The total amount of wall time = 372.006598 + 0: The maximum resident set size (KB) = 1122460 -Test 091 rap_flake_debug PASS +Test 092 rap_flake_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_progcld_thompson_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/rap_progcld_thompson_debug -Checking test 092 rap_progcld_thompson_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_progcld_thompson_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/rap_progcld_thompson_debug +Checking test 093 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 363.979498 - 0: The maximum resident set size (KB) = 1116432 + 0: The total amount of wall time = 375.147406 + 0: The maximum resident set size (KB) = 1110024 -Test 092 rap_progcld_thompson_debug PASS +Test 093 rap_progcld_thompson_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_noah_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/rap_noah_debug -Checking test 093 rap_noah_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_noah_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/rap_noah_debug +Checking test 094 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 354.243125 - 0: The maximum resident set size (KB) = 1114092 + 0: The total amount of wall time = 370.141047 + 0: The maximum resident set size (KB) = 1112896 -Test 093 rap_noah_debug PASS +Test 094 rap_noah_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_sfcdiff_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/rap_sfcdiff_debug -Checking test 094 rap_sfcdiff_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/rap_sfcdiff_debug +Checking test 095 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 357.815788 - 0: The maximum resident set size (KB) = 1117988 + 0: The total amount of wall time = 373.156478 + 0: The maximum resident set size (KB) = 1116600 -Test 094 rap_sfcdiff_debug PASS +Test 095 rap_sfcdiff_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 095 rap_noah_sfcdiff_cires_ugwp_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 096 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 587.963660 - 0: The maximum resident set size (KB) = 1115668 + 0: The total amount of wall time = 595.863240 + 0: The maximum resident set size (KB) = 1110964 -Test 095 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 096 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_v1beta_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/rrfs_v1beta_debug -Checking test 096 rrfs_v1beta_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1beta_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/rrfs_v1beta_debug +Checking test 097 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 355.233307 - 0: The maximum resident set size (KB) = 1113068 + 0: The total amount of wall time = 369.529254 + 0: The maximum resident set size (KB) = 1114824 -Test 096 rrfs_v1beta_debug PASS +Test 097 rrfs_v1beta_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/control_wam_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/control_wam_debug -Checking test 097 control_wam_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wam_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/control_wam_debug +Checking test 098 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 367.387059 - 0: The maximum resident set size (KB) = 438996 + 0: The total amount of wall time = 368.773873 + 0: The maximum resident set size (KB) = 445332 -Test 097 control_wam_debug PASS +Test 098 control_wam_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/regional_spp_sppt_shum_skeb_dyn32_phy32 -Checking test 098 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 099 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -3208,15 +3260,15 @@ Checking test 098 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 384.032816 - 0: The maximum resident set size (KB) = 995664 + 0: The total amount of wall time = 443.885188 + 0: The maximum resident set size (KB) = 986604 -Test 098 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS +Test 099 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/rap_control_dyn32_phy32 -Checking test 099 rap_control_dyn32_phy32 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/rap_control_dyn32_phy32 +Checking test 100 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3262,15 +3314,15 @@ Checking test 099 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 490.445865 - 0: The maximum resident set size (KB) = 849848 + 0: The total amount of wall time = 567.539406 + 0: The maximum resident set size (KB) = 851608 -Test 099 rap_control_dyn32_phy32 PASS +Test 100 rap_control_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/hrrr_control_dyn32_phy32 -Checking test 100 hrrr_control_dyn32_phy32 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/hrrr_control_dyn32_phy32 +Checking test 101 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3316,15 +3368,15 @@ Checking test 100 hrrr_control_dyn32_phy32 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 = 262.960115 - 0: The maximum resident set size (KB) = 840144 + 0: The total amount of wall time = 328.832504 + 0: The maximum resident set size (KB) = 832620 -Test 100 hrrr_control_dyn32_phy32 PASS +Test 101 hrrr_control_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/rap_2threads_dyn32_phy32 -Checking test 101 rap_2threads_dyn32_phy32 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/rap_2threads_dyn32_phy32 +Checking test 102 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3370,15 +3422,15 @@ Checking test 101 rap_2threads_dyn32_phy32 results .... Comparing 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.508209 - 0: The maximum resident set size (KB) = 883496 + 0: The total amount of wall time = 561.020097 + 0: The maximum resident set size (KB) = 901116 -Test 101 rap_2threads_dyn32_phy32 PASS +Test 102 rap_2threads_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/hrrr_control_2threads_dyn32_phy32 -Checking test 102 hrrr_control_2threads_dyn32_phy32 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/hrrr_control_2threads_dyn32_phy32 +Checking test 103 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3424,15 +3476,15 @@ Checking test 102 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 257.261112 - 0: The maximum resident set size (KB) = 885388 + 0: The total amount of wall time = 326.157548 + 0: The maximum resident set size (KB) = 889140 -Test 102 hrrr_control_2threads_dyn32_phy32 PASS +Test 103 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/hrrr_control_decomp_dyn32_phy32 -Checking test 103 hrrr_control_decomp_dyn32_phy32 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/hrrr_control_decomp_dyn32_phy32 +Checking test 104 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3478,15 +3530,15 @@ Checking test 103 hrrr_control_decomp_dyn32_phy32 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 = 282.347899 - 0: The maximum resident set size (KB) = 826320 + 0: The total amount of wall time = 336.771888 + 0: The maximum resident set size (KB) = 826888 -Test 103 hrrr_control_decomp_dyn32_phy32 PASS +Test 104 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/rap_restart_dyn32_phy32 -Checking test 104 rap_restart_dyn32_phy32 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/rap_restart_dyn32_phy32 +Checking test 105 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3524,15 +3576,15 @@ Checking test 104 rap_restart_dyn32_phy32 results .... Comparing 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.275322 - 0: The maximum resident set size (KB) = 813032 + 0: The total amount of wall time = 476.116076 + 0: The maximum resident set size (KB) = 815760 -Test 104 rap_restart_dyn32_phy32 PASS +Test 105 rap_restart_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/hrrr_control_restart_dyn32_phy32 -Checking test 105 hrrr_control_restart_dyn32_phy32 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/hrrr_control_restart_dyn32_phy32 +Checking test 106 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3570,15 +3622,15 @@ Checking test 105 hrrr_control_restart_dyn32_phy32 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 = 134.275788 - 0: The maximum resident set size (KB) = 764968 + 0: The total amount of wall time = 144.021968 + 0: The maximum resident set size (KB) = 761616 -Test 105 hrrr_control_restart_dyn32_phy32 PASS +Test 106 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_dyn64_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/rap_control_dyn64_phy32 -Checking test 106 rap_control_dyn64_phy32 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn64_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/rap_control_dyn64_phy32 +Checking test 107 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3624,82 +3676,82 @@ Checking test 106 rap_control_dyn64_phy32 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 = 322.491634 - 0: The maximum resident set size (KB) = 863260 + 0: The total amount of wall time = 360.004062 + 0: The maximum resident set size (KB) = 867216 -Test 106 rap_control_dyn64_phy32 PASS +Test 107 rap_control_dyn64_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/rap_control_debug_dyn32_phy32 -Checking test 107 rap_control_debug_dyn32_phy32 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/rap_control_debug_dyn32_phy32 +Checking test 108 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 354.757826 - 0: The maximum resident set size (KB) = 999892 + 0: The total amount of wall time = 373.572061 + 0: The maximum resident set size (KB) = 1003624 -Test 107 rap_control_debug_dyn32_phy32 PASS +Test 108 rap_control_debug_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/hrrr_control_debug_dyn32_phy32 -Checking test 108 hrrr_control_debug_dyn32_phy32 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/hrrr_control_debug_dyn32_phy32 +Checking test 109 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 351.055659 - 0: The maximum resident set size (KB) = 1003904 + 0: The total amount of wall time = 372.125920 + 0: The maximum resident set size (KB) = 1001296 -Test 108 hrrr_control_debug_dyn32_phy32 PASS +Test 109 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/rap_control_dyn64_phy32_debug -Checking test 109 rap_control_dyn64_phy32_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/rap_control_dyn64_phy32_debug +Checking test 110 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 362.779591 - 0: The maximum resident set size (KB) = 1033984 + 0: The total amount of wall time = 369.383182 + 0: The maximum resident set size (KB) = 1040124 -Test 109 rap_control_dyn64_phy32_debug PASS +Test 110 rap_control_dyn64_phy32_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_atm -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/hafs_regional_atm -Checking test 110 hafs_regional_atm results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/hafs_regional_atm +Checking test 111 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 346.577734 - 0: The maximum resident set size (KB) = 1217368 + 0: The total amount of wall time = 425.900817 + 0: The maximum resident set size (KB) = 1214904 -Test 110 hafs_regional_atm PASS +Test 111 hafs_regional_atm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/hafs_regional_atm_thompson_gfdlsf -Checking test 111 hafs_regional_atm_thompson_gfdlsf results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/hafs_regional_atm_thompson_gfdlsf +Checking test 112 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 419.318849 - 0: The maximum resident set size (KB) = 1582968 + 0: The total amount of wall time = 601.018123 + 0: The maximum resident set size (KB) = 1588548 -Test 111 hafs_regional_atm_thompson_gfdlsf PASS +Test 112 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_atm_ocn -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/hafs_regional_atm_ocn -Checking test 112 hafs_regional_atm_ocn results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_ocn +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/hafs_regional_atm_ocn +Checking test 113 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -3707,15 +3759,15 @@ Checking test 112 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 533.474309 - 0: The maximum resident set size (KB) = 1288508 + 0: The total amount of wall time = 652.825057 + 0: The maximum resident set size (KB) = 1295928 -Test 112 hafs_regional_atm_ocn PASS +Test 113 hafs_regional_atm_ocn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_atm_wav -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/hafs_regional_atm_wav -Checking test 113 hafs_regional_atm_wav results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_wav +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/hafs_regional_atm_wav +Checking test 114 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK @@ -3723,15 +3775,15 @@ Checking test 113 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 947.640985 - 0: The maximum resident set size (KB) = 1320352 + 0: The total amount of wall time = 1014.672650 + 0: The maximum resident set size (KB) = 1265552 -Test 113 hafs_regional_atm_wav PASS +Test 114 hafs_regional_atm_wav PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/hafs_regional_atm_ocn_wav -Checking test 114 hafs_regional_atm_ocn_wav results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_ocn_wav +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/hafs_regional_atm_ocn_wav +Checking test 115 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -3741,162 +3793,162 @@ Checking test 114 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 1055.072802 - 0: The maximum resident set size (KB) = 1338704 + 0: The total amount of wall time = 1136.477211 + 0: The maximum resident set size (KB) = 1339284 -Test 114 hafs_regional_atm_ocn_wav PASS +Test 115 hafs_regional_atm_ocn_wav PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_docn -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/hafs_regional_docn -Checking test 115 hafs_regional_docn results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_docn +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/hafs_regional_docn +Checking test 116 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 530.540681 - 0: The maximum resident set size (KB) = 1307124 + 0: The total amount of wall time = 592.998266 + 0: The maximum resident set size (KB) = 1303276 -Test 115 hafs_regional_docn PASS +Test 116 hafs_regional_docn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_docn_oisst -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/hafs_regional_docn_oisst -Checking test 116 hafs_regional_docn_oisst results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_docn_oisst +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/hafs_regional_docn_oisst +Checking test 117 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 523.910318 - 0: The maximum resident set size (KB) = 1292428 + 0: The total amount of wall time = 590.849058 + 0: The maximum resident set size (KB) = 1284292 -Test 116 hafs_regional_docn_oisst PASS +Test 117 hafs_regional_docn_oisst PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_datm_cdeps -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/hafs_regional_datm_cdeps -Checking test 117 hafs_regional_datm_cdeps results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_datm_cdeps +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/hafs_regional_datm_cdeps +Checking test 118 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 1254.618264 - 0: The maximum resident set size (KB) = 975260 + 0: The total amount of wall time = 1435.457922 + 0: The maximum resident set size (KB) = 976984 -Test 117 hafs_regional_datm_cdeps PASS +Test 118 hafs_regional_datm_cdeps PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/datm_cdeps_control_cfsr -Checking test 118 datm_cdeps_control_cfsr results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/datm_cdeps_control_cfsr +Checking test 119 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 218.121850 - 0: The maximum resident set size (KB) = 979888 + 0: The total amount of wall time = 277.736313 + 0: The maximum resident set size (KB) = 961392 -Test 118 datm_cdeps_control_cfsr PASS +Test 119 datm_cdeps_control_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/datm_cdeps_restart_cfsr -Checking test 119 datm_cdeps_restart_cfsr results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/datm_cdeps_restart_cfsr +Checking test 120 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 128.703850 - 0: The maximum resident set size (KB) = 926292 + 0: The total amount of wall time = 168.308067 + 0: The maximum resident set size (KB) = 940384 -Test 119 datm_cdeps_restart_cfsr PASS +Test 120 datm_cdeps_restart_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_control_gefs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/datm_cdeps_control_gefs -Checking test 120 datm_cdeps_control_gefs results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/datm_cdeps_control_gefs +Checking test 121 datm_cdeps_control_gefs 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 = 216.348555 - 0: The maximum resident set size (KB) = 874956 + 0: The total amount of wall time = 259.524122 + 0: The maximum resident set size (KB) = 864064 -Test 120 datm_cdeps_control_gefs PASS +Test 121 datm_cdeps_control_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_iau_gefs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/datm_cdeps_iau_gefs -Checking test 121 datm_cdeps_iau_gefs results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_iau_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/datm_cdeps_iau_gefs +Checking test 122 datm_cdeps_iau_gefs 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 = 219.448951 - 0: The maximum resident set size (KB) = 865172 + 0: The total amount of wall time = 259.139644 + 0: The maximum resident set size (KB) = 861596 -Test 121 datm_cdeps_iau_gefs PASS +Test 122 datm_cdeps_iau_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_stochy_gefs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/datm_cdeps_stochy_gefs -Checking test 122 datm_cdeps_stochy_gefs results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_stochy_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/datm_cdeps_stochy_gefs +Checking test 123 datm_cdeps_stochy_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 225.702315 - 0: The maximum resident set size (KB) = 861988 + 0: The total amount of wall time = 261.172310 + 0: The maximum resident set size (KB) = 859976 -Test 122 datm_cdeps_stochy_gefs PASS +Test 123 datm_cdeps_stochy_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/datm_cdeps_ciceC_cfsr -Checking test 123 datm_cdeps_ciceC_cfsr results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_ciceC_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/datm_cdeps_ciceC_cfsr +Checking test 124 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 217.991459 - 0: The maximum resident set size (KB) = 963744 + 0: The total amount of wall time = 262.791035 + 0: The maximum resident set size (KB) = 966636 -Test 123 datm_cdeps_ciceC_cfsr PASS +Test 124 datm_cdeps_ciceC_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/datm_cdeps_bulk_cfsr -Checking test 124 datm_cdeps_bulk_cfsr results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_bulk_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/datm_cdeps_bulk_cfsr +Checking test 125 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 223.813994 - 0: The maximum resident set size (KB) = 974416 + 0: The total amount of wall time = 251.994788 + 0: The maximum resident set size (KB) = 970412 -Test 124 datm_cdeps_bulk_cfsr PASS +Test 125 datm_cdeps_bulk_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/datm_cdeps_bulk_gefs -Checking test 125 datm_cdeps_bulk_gefs results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_bulk_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/datm_cdeps_bulk_gefs +Checking test 126 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 218.143100 - 0: The maximum resident set size (KB) = 863988 + 0: The total amount of wall time = 279.571745 + 0: The maximum resident set size (KB) = 858288 -Test 125 datm_cdeps_bulk_gefs PASS +Test 126 datm_cdeps_bulk_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/datm_cdeps_mx025_cfsr -Checking test 126 datm_cdeps_mx025_cfsr results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_mx025_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/datm_cdeps_mx025_cfsr +Checking test 127 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -3904,15 +3956,15 @@ Checking test 126 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 582.203346 - 0: The maximum resident set size (KB) = 764692 + 0: The total amount of wall time = 625.520317 + 0: The maximum resident set size (KB) = 760640 -Test 126 datm_cdeps_mx025_cfsr PASS +Test 127 datm_cdeps_mx025_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/datm_cdeps_mx025_gefs -Checking test 127 datm_cdeps_mx025_gefs results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_mx025_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/datm_cdeps_mx025_gefs +Checking test 128 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -3920,78 +3972,78 @@ Checking test 127 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 573.809055 - 0: The maximum resident set size (KB) = 738052 + 0: The total amount of wall time = 606.993460 + 0: The maximum resident set size (KB) = 736560 -Test 127 datm_cdeps_mx025_gefs PASS +Test 128 datm_cdeps_mx025_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/datm_cdeps_multiple_files_cfsr -Checking test 128 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/datm_cdeps_multiple_files_cfsr +Checking test 129 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 220.736567 - 0: The maximum resident set size (KB) = 962048 + 0: The total amount of wall time = 258.009238 + 0: The maximum resident set size (KB) = 964472 -Test 128 datm_cdeps_multiple_files_cfsr PASS +Test 129 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/datm_cdeps_3072x1536_cfsr -Checking test 129 datm_cdeps_3072x1536_cfsr results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/datm_cdeps_3072x1536_cfsr +Checking test 130 datm_cdeps_3072x1536_cfsr 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 = 314.971624 - 0: The maximum resident set size (KB) = 2201212 + 0: The total amount of wall time = 385.353845 + 0: The maximum resident set size (KB) = 2258720 -Test 129 datm_cdeps_3072x1536_cfsr PASS +Test 130 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_gfs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/datm_cdeps_gfs -Checking test 130 datm_cdeps_gfs results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_gfs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/datm_cdeps_gfs +Checking test 131 datm_cdeps_gfs 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 = 320.773949 - 0: The maximum resident set size (KB) = 2248628 + 0: The total amount of wall time = 356.968961 + 0: The maximum resident set size (KB) = 2261944 -Test 130 datm_cdeps_gfs PASS +Test 131 datm_cdeps_gfs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_debug_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/datm_cdeps_debug_cfsr -Checking test 131 datm_cdeps_debug_cfsr results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_debug_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/datm_cdeps_debug_cfsr +Checking test 132 datm_cdeps_debug_cfsr 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 = 578.971884 - 0: The maximum resident set size (KB) = 921164 + 0: The total amount of wall time = 593.911048 + 0: The maximum resident set size (KB) = 916092 -Test 131 datm_cdeps_debug_cfsr PASS +Test 132 datm_cdeps_debug_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_control_cfsr_faster -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/datm_cdeps_control_cfsr_faster -Checking test 132 datm_cdeps_control_cfsr_faster results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr_faster +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/datm_cdeps_control_cfsr_faster +Checking test 133 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.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 = 213.789646 - 0: The maximum resident set size (KB) = 969664 + 0: The total amount of wall time = 265.367391 + 0: The maximum resident set size (KB) = 964948 -Test 132 datm_cdeps_control_cfsr_faster PASS +Test 133 datm_cdeps_control_cfsr_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/datm_cdeps_lnd_gswp3 -Checking test 133 datm_cdeps_lnd_gswp3 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/datm_cdeps_lnd_gswp3 +Checking test 134 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -3999,15 +4051,15 @@ Checking test 133 datm_cdeps_lnd_gswp3 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 = 22.746846 - 0: The maximum resident set size (KB) = 250568 + 0: The total amount of wall time = 67.794747 + 0: The maximum resident set size (KB) = 253832 -Test 133 datm_cdeps_lnd_gswp3 PASS +Test 134 datm_cdeps_lnd_gswp3 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/datm_cdeps_lnd_gswp3_rst -Checking test 134 datm_cdeps_lnd_gswp3_rst results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/datm_cdeps_lnd_gswp3_rst +Checking test 135 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4015,15 +4067,15 @@ Checking test 134 datm_cdeps_lnd_gswp3_rst 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 = 19.652435 - 0: The maximum resident set size (KB) = 249616 + 0: The total amount of wall time = 25.062960 + 0: The maximum resident set size (KB) = 247044 -Test 134 datm_cdeps_lnd_gswp3_rst PASS +Test 135 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8_atmlnd_sbs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/control_p8_atmlnd_sbs -Checking test 135 control_p8_atmlnd_sbs results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_atmlnd_sbs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/control_p8_atmlnd_sbs +Checking test 136 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -4107,15 +4159,15 @@ Checking test 135 control_p8_atmlnd_sbs 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 = 284.558404 - 0: The maximum resident set size (KB) = 1585576 + 0: The total amount of wall time = 348.632207 + 0: The maximum resident set size (KB) = 1584304 -Test 135 control_p8_atmlnd_sbs PASS +Test 136 control_p8_atmlnd_sbs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/control_atmwav -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/control_atmwav -Checking test 136 control_atmwav results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_atmwav +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/control_atmwav +Checking test 137 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -4158,15 +4210,15 @@ Checking test 136 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 121.261245 - 0: The maximum resident set size (KB) = 597376 + 0: The total amount of wall time = 140.113237 + 0: The maximum resident set size (KB) = 595044 -Test 136 control_atmwav PASS +Test 137 control_atmwav PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/atmaero_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/atmaero_control_p8 -Checking test 137 atmaero_control_p8 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/atmaero_control_p8 +Checking test 138 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4209,15 +4261,15 @@ Checking test 137 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 311.393019 - 0: The maximum resident set size (KB) = 1647036 + 0: The total amount of wall time = 409.604949 + 0: The maximum resident set size (KB) = 1632128 -Test 137 atmaero_control_p8 PASS +Test 138 atmaero_control_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/atmaero_control_p8_rad -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/atmaero_control_p8_rad -Checking test 138 atmaero_control_p8_rad results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8_rad +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/atmaero_control_p8_rad +Checking test 139 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4260,15 +4312,15 @@ Checking test 138 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 378.211226 - 0: The maximum resident set size (KB) = 1681504 + 0: The total amount of wall time = 421.516242 + 0: The maximum resident set size (KB) = 1679016 -Test 138 atmaero_control_p8_rad PASS +Test 139 atmaero_control_p8_rad PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/atmaero_control_p8_rad_micro -Checking test 139 atmaero_control_p8_rad_micro results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8_rad_micro +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/atmaero_control_p8_rad_micro +Checking test 140 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4311,15 +4363,15 @@ Checking test 139 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 384.640050 - 0: The maximum resident set size (KB) = 1672564 + 0: The total amount of wall time = 458.335661 + 0: The maximum resident set size (KB) = 1668648 -Test 139 atmaero_control_p8_rad_micro PASS +Test 140 atmaero_control_p8_rad_micro PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_atmaq -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/regional_atmaq -Checking test 140 regional_atmaq results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/regional_atmaq +Checking test 141 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -4334,15 +4386,15 @@ Checking test 140 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 968.339960 - 0: The maximum resident set size (KB) = 1263700 + 0: The total amount of wall time = 1637.269158 + 0: The maximum resident set size (KB) = 1167836 -Test 140 regional_atmaq PASS +Test 141 regional_atmaq PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_atmaq_faster -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_169488/regional_atmaq_faster -Checking test 141 regional_atmaq_faster results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq_faster +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/regional_atmaq_faster +Checking test 142 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -4357,12 +4409,12 @@ Checking test 141 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 840.112728 - 0: The maximum resident set size (KB) = 1281232 + 0: The total amount of wall time = 1605.986692 + 0: The maximum resident set size (KB) = 1239728 -Test 141 regional_atmaq_faster PASS +Test 142 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Thu Mar 23 01:17:09 UTC 2023 -Elapsed time: 03h:10m:08s. Have a nice day! +Sun Mar 26 17:45:30 UTC 2023 +Elapsed time: 03h:19m:16s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index e0bf161174a..13530396746 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,42 +1,42 @@ -Wed Mar 22 14:41:47 CDT 2023 +Sat Mar 25 19:30:46 CDT 2023 Start Regression test -Compile 001 elapsed time 727 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 740 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 695 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 256 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 242 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 616 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 589 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 842 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 637 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 573 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 533 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 490 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 677 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 281 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 220 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 531 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 506 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 180 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 240 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 670 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 021 elapsed time 242 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 764 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 689 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 024 elapsed time 204 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 110 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 204 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 54 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 565 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 530 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 528 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 508 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 184 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 639 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8_mixedmode -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/cpld_control_p8_mixedmode +Compile 001 elapsed time 744 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 736 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 630 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 268 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 261 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 648 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 632 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 820 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 640 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 569 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 011 elapsed time 501 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 503 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 702 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 241 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 239 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 541 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 543 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 161 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 164 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 653 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 021 elapsed time 210 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 722 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 614 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 024 elapsed time 207 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 131 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 185 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 53 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 570 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 571 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 569 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 546 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 174 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 627 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8_mixedmode +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -101,14 +101,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 304.297220 - 0: The maximum resident set size (KB) = 3145504 + 0: The total amount of wall time = 312.672657 + 0: The maximum resident set size (KB) = 3144384 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_gfsv17 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/cpld_control_gfsv17 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_gfsv17 +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -172,14 +172,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 232.674099 - 0: The maximum resident set size (KB) = 1737036 + 0: The total amount of wall time = 235.367867 + 0: The maximum resident set size (KB) = 1732552 Test 002 cpld_control_gfsv17 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/cpld_control_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -244,14 +244,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 345.186410 - 0: The maximum resident set size (KB) = 3176088 + 0: The total amount of wall time = 346.942342 + 0: The maximum resident set size (KB) = 3182940 Test 003 cpld_control_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/cpld_restart_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -304,14 +304,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 204.536662 - 0: The maximum resident set size (KB) = 3050296 + 0: The total amount of wall time = 233.706184 + 0: The maximum resident set size (KB) = 3050812 Test 004 cpld_restart_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/cpld_2threads_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -364,14 +364,14 @@ Checking test 005 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 410.153526 - 0: The maximum resident set size (KB) = 3516180 + 0: The total amount of wall time = 410.687451 + 0: The maximum resident set size (KB) = 3521624 Test 005 cpld_2threads_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/cpld_decomp_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/cpld_decomp_p8 Checking test 006 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -424,14 +424,14 @@ Checking test 006 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 344.641117 - 0: The maximum resident set size (KB) = 3170964 + 0: The total amount of wall time = 353.776001 + 0: The maximum resident set size (KB) = 3179892 Test 006 cpld_decomp_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/cpld_mpi_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/cpld_mpi_p8 Checking test 007 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -484,14 +484,14 @@ Checking test 007 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 286.984347 - 0: The maximum resident set size (KB) = 3032860 + 0: The total amount of wall time = 287.590585 + 0: The maximum resident set size (KB) = 3035304 Test 007 cpld_mpi_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_ciceC_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/cpld_control_ciceC_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_ciceC_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/cpld_control_ciceC_p8 Checking test 008 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -556,14 +556,14 @@ Checking test 008 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 345.005927 - 0: The maximum resident set size (KB) = 3182316 + 0: The total amount of wall time = 345.992887 + 0: The maximum resident set size (KB) = 3196412 Test 008 cpld_control_ciceC_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/cpld_control_c192_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c192_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/cpld_control_c192_p8 Checking test 009 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -616,14 +616,14 @@ Checking test 009 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 654.652263 - 0: The maximum resident set size (KB) = 3180928 + 0: The total amount of wall time = 683.706698 + 0: The maximum resident set size (KB) = 3258764 Test 009 cpld_control_c192_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/cpld_restart_c192_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c192_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/cpld_restart_c192_p8 Checking test 010 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -676,14 +676,14 @@ Checking test 010 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 447.415652 - 0: The maximum resident set size (KB) = 3162392 + 0: The total amount of wall time = 446.348973 + 0: The maximum resident set size (KB) = 3160100 Test 010 cpld_restart_c192_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_bmark_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/cpld_bmark_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_bmark_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/cpld_bmark_p8 Checking test 011 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -731,14 +731,14 @@ Checking test 011 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 882.889051 - 0: The maximum resident set size (KB) = 4040904 + 0: The total amount of wall time = 896.060735 + 0: The maximum resident set size (KB) = 4040552 Test 011 cpld_bmark_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_bmark_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/cpld_restart_bmark_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_bmark_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/cpld_restart_bmark_p8 Checking test 012 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -786,14 +786,14 @@ Checking test 012 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 539.611089 - 0: The maximum resident set size (KB) = 3969996 + 0: The total amount of wall time = 535.689749 + 0: The maximum resident set size (KB) = 3988908 Test 012 cpld_restart_bmark_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_noaero_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/cpld_control_noaero_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_noaero_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/cpld_control_noaero_p8 Checking test 013 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -857,14 +857,14 @@ Checking test 013 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 252.930580 - 0: The maximum resident set size (KB) = 1727052 + 0: The total amount of wall time = 254.761842 + 0: The maximum resident set size (KB) = 1723308 Test 013 cpld_control_noaero_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_c96_noaero_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/cpld_control_nowave_noaero_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c96_noaero_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/cpld_control_nowave_noaero_p8 Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -926,14 +926,14 @@ Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 259.603417 - 0: The maximum resident set size (KB) = 1763932 + 0: The total amount of wall time = 259.541652 + 0: The maximum resident set size (KB) = 1761028 Test 014 cpld_control_nowave_noaero_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_debug_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/cpld_debug_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_debug_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/cpld_debug_p8 Checking test 015 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -986,14 +986,14 @@ Checking test 015 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 692.848583 - 0: The maximum resident set size (KB) = 3238136 + 0: The total amount of wall time = 682.912847 + 0: The maximum resident set size (KB) = 3245464 Test 015 cpld_debug_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_debug_noaero_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/cpld_debug_noaero_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_debug_noaero_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/cpld_debug_noaero_p8 Checking test 016 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1045,14 +1045,14 @@ Checking test 016 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 421.468469 - 0: The maximum resident set size (KB) = 1750980 + 0: The total amount of wall time = 431.620839 + 0: The maximum resident set size (KB) = 1752936 Test 016 cpld_debug_noaero_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_noaero_p8_agrid -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/cpld_control_noaero_p8_agrid +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_noaero_p8_agrid +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/cpld_control_noaero_p8_agrid Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1114,14 +1114,14 @@ Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 265.989869 - 0: The maximum resident set size (KB) = 1758000 + 0: The total amount of wall time = 267.644773 + 0: The maximum resident set size (KB) = 1762012 Test 017 cpld_control_noaero_p8_agrid PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_c48 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/cpld_control_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/cpld_control_c48 Checking test 018 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1171,14 +1171,14 @@ Checking test 018 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 509.006285 - 0: The maximum resident set size (KB) = 2766468 + 0: The total amount of wall time = 499.684630 + 0: The maximum resident set size (KB) = 2804320 Test 018 cpld_control_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_warmstart_c48 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/cpld_warmstart_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_warmstart_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/cpld_warmstart_c48 Checking test 019 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1228,14 +1228,14 @@ Checking test 019 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 138.639623 - 0: The maximum resident set size (KB) = 2801700 + 0: The total amount of wall time = 140.839788 + 0: The maximum resident set size (KB) = 2801892 Test 019 cpld_warmstart_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_warmstart_c48 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/cpld_restart_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_warmstart_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/cpld_restart_c48 Checking test 020 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1285,14 +1285,14 @@ Checking test 020 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 74.666006 - 0: The maximum resident set size (KB) = 2244400 + 0: The total amount of wall time = 76.600407 + 0: The maximum resident set size (KB) = 2199880 Test 020 cpld_restart_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8_faster -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/cpld_control_p8_faster +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/cpld_control_p8_faster Checking test 021 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1357,14 +1357,14 @@ Checking test 021 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 323.298258 - 0: The maximum resident set size (KB) = 3175936 + 0: The total amount of wall time = 327.149169 + 0: The maximum resident set size (KB) = 3177988 Test 021 cpld_control_p8_faster PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_CubedSphereGrid -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/control_CubedSphereGrid +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/control_CubedSphereGrid Checking test 022 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1391,28 +1391,28 @@ Checking test 022 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 130.725285 - 0: The maximum resident set size (KB) = 630004 + 0: The total amount of wall time = 133.230011 + 0: The maximum resident set size (KB) = 633016 Test 022 control_CubedSphereGrid PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_CubedSphereGrid_parallel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/control_CubedSphereGrid_parallel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid_parallel +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/control_CubedSphereGrid_parallel Checking test 023 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc .........OK + Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK + Comparing atmf024.nc ............ALT CHECK......OK - 0: The total amount of wall time = 127.460432 - 0: The maximum resident set size (KB) = 631540 + 0: The total amount of wall time = 128.344333 + 0: The maximum resident set size (KB) = 628536 Test 023 control_CubedSphereGrid_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_latlon -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/control_latlon +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_latlon +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/control_latlon Checking test 024 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1423,32 +1423,32 @@ Checking test 024 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 132.519883 - 0: The maximum resident set size (KB) = 633544 + 0: The total amount of wall time = 137.185463 + 0: The maximum resident set size (KB) = 632592 Test 024 control_latlon PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_wrtGauss_netcdf_parallel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/control_wrtGauss_netcdf_parallel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wrtGauss_netcdf_parallel +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/control_wrtGauss_netcdf_parallel Checking test 025 control_wrtGauss_netcdf_parallel 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.228186 - 0: The maximum resident set size (KB) = 631624 + 0: The total amount of wall time = 148.019717 + 0: The maximum resident set size (KB) = 624280 Test 025 control_wrtGauss_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_c48 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/control_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/control_c48 Checking test 026 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1487,14 +1487,14 @@ Checking test 026 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 346.695500 -0: The maximum resident set size (KB) = 812396 +0: The total amount of wall time = 348.028154 +0: The maximum resident set size (KB) = 786996 Test 026 control_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_c192 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/control_c192 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c192 +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/control_c192 Checking test 027 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1505,14 +1505,14 @@ Checking test 027 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 526.282283 - 0: The maximum resident set size (KB) = 768488 + 0: The total amount of wall time = 537.882108 + 0: The maximum resident set size (KB) = 765684 Test 027 control_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_c384 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/control_c384 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c384 +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/control_c384 Checking test 028 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1523,14 +1523,14 @@ Checking test 028 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 593.563985 - 0: The maximum resident set size (KB) = 1173428 + 0: The total amount of wall time = 596.166751 + 0: The maximum resident set size (KB) = 1224188 Test 028 control_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_c384gdas -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/control_c384gdas +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c384gdas +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/control_c384gdas Checking test 029 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1573,14 +1573,14 @@ Checking test 029 control_c384gdas 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 = 527.811075 - 0: The maximum resident set size (KB) = 1332472 + 0: The total amount of wall time = 556.614590 + 0: The maximum resident set size (KB) = 1340448 Test 029 control_c384gdas PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_stochy -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/control_stochy +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/control_stochy Checking test 030 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1591,28 +1591,28 @@ Checking test 030 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 87.677655 - 0: The maximum resident set size (KB) = 630688 + 0: The total amount of wall time = 90.851384 + 0: The maximum resident set size (KB) = 632840 Test 030 control_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_stochy -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/control_stochy_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/control_stochy_restart Checking test 031 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 47.557394 - 0: The maximum resident set size (KB) = 488556 + 0: The total amount of wall time = 47.846960 + 0: The maximum resident set size (KB) = 485512 Test 031 control_stochy_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_lndp -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/control_lndp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_lndp +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/control_lndp Checking test 032 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1623,14 +1623,14 @@ Checking test 032 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 80.717982 - 0: The maximum resident set size (KB) = 627968 + 0: The total amount of wall time = 83.616798 + 0: The maximum resident set size (KB) = 630996 Test 032 control_lndp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_iovr4 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/control_iovr4 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_iovr4 +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/control_iovr4 Checking test 033 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1645,14 +1645,14 @@ Checking test 033 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.988249 - 0: The maximum resident set size (KB) = 629728 + 0: The total amount of wall time = 137.589088 + 0: The maximum resident set size (KB) = 627300 Test 033 control_iovr4 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_iovr5 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/control_iovr5 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_iovr5 +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/control_iovr5 Checking test 034 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1667,14 +1667,14 @@ Checking test 034 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.018848 - 0: The maximum resident set size (KB) = 631392 + 0: The total amount of wall time = 135.026292 + 0: The maximum resident set size (KB) = 631176 Test 034 control_iovr5 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/control_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/control_p8 Checking test 035 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1721,14 +1721,14 @@ Checking test 035 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 166.765760 - 0: The maximum resident set size (KB) = 1616036 + 0: The total amount of wall time = 167.371004 + 0: The maximum resident set size (KB) = 1607700 Test 035 control_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8_lndp -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/control_p8_lndp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_lndp +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/control_p8_lndp Checking test 036 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1747,14 +1747,14 @@ Checking test 036 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 310.764328 - 0: The maximum resident set size (KB) = 1615324 + 0: The total amount of wall time = 315.843735 + 0: The maximum resident set size (KB) = 1604132 Test 036 control_p8_lndp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/control_restart_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/control_restart_p8 Checking test 037 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1793,14 +1793,14 @@ Checking test 037 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 87.724285 - 0: The maximum resident set size (KB) = 870872 + 0: The total amount of wall time = 108.901846 + 0: The maximum resident set size (KB) = 875016 Test 037 control_restart_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/control_decomp_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/control_decomp_p8 Checking test 038 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1843,14 +1843,14 @@ Checking test 038 control_decomp_p8 results .... Comparing 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.233978 - 0: The maximum resident set size (KB) = 1593636 + 0: The total amount of wall time = 174.165509 + 0: The maximum resident set size (KB) = 1589500 Test 038 control_decomp_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/control_2threads_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/control_2threads_p8 Checking test 039 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1893,14 +1893,14 @@ Checking test 039 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 181.883737 - 0: The maximum resident set size (KB) = 1683992 + 0: The total amount of wall time = 182.583054 + 0: The maximum resident set size (KB) = 1688080 Test 039 control_2threads_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8_rrtmgp -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/control_p8_rrtmgp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_rrtmgp +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/control_p8_rrtmgp Checking test 040 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1947,15 +1947,69 @@ Checking test 040 control_p8_rrtmgp results .... Comparing 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.055752 - 0: The maximum resident set size (KB) = 1667084 + 0: The total amount of wall time = 228.301503 + 0: The maximum resident set size (KB) = 1674060 Test 040 control_p8_rrtmgp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/merra2_thompson -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/merra2_thompson -Checking test 041 merra2_thompson results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_mynn +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/control_p8_mynn +Checking test 041 control_p8_mynn results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 169.249052 + 0: The maximum resident set size (KB) = 1615000 + +Test 041 control_p8_mynn PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/merra2_thompson +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/merra2_thompson +Checking test 042 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2001,15 +2055,15 @@ Checking test 041 merra2_thompson results .... Comparing 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.418993 - 0: The maximum resident set size (KB) = 1611024 + 0: The total amount of wall time = 192.545934 + 0: The maximum resident set size (KB) = 1608328 -Test 041 merra2_thompson PASS +Test 042 merra2_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/regional_control -Checking test 042 regional_control results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/regional_control +Checking test 043 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2019,29 +2073,29 @@ Checking test 042 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 296.427713 - 0: The maximum resident set size (KB) = 873800 + 0: The total amount of wall time = 315.847250 + 0: The maximum resident set size (KB) = 869156 -Test 042 regional_control PASS +Test 043 regional_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/regional_restart -Checking test 043 regional_restart results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/regional_restart +Checking test 044 regional_restart 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.556017 - 0: The maximum resident set size (KB) = 864488 + 0: The total amount of wall time = 153.096542 + 0: The maximum resident set size (KB) = 864668 -Test 043 regional_restart PASS +Test 044 regional_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/regional_decomp -Checking test 044 regional_decomp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/regional_decomp +Checking test 045 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2051,15 +2105,15 @@ Checking test 044 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 314.124494 - 0: The maximum resident set size (KB) = 863296 + 0: The total amount of wall time = 325.461936 + 0: The maximum resident set size (KB) = 858784 -Test 044 regional_decomp PASS +Test 045 regional_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/regional_2threads -Checking test 045 regional_2threads results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/regional_2threads +Checking test 046 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2069,44 +2123,44 @@ Checking test 045 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 209.201499 - 0: The maximum resident set size (KB) = 844784 + 0: The total amount of wall time = 210.201249 + 0: The maximum resident set size (KB) = 841464 -Test 045 regional_2threads PASS +Test 046 regional_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_noquilt -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/regional_noquilt -Checking test 046 regional_noquilt results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_noquilt +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/regional_noquilt +Checking test 047 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 317.749586 - 0: The maximum resident set size (KB) = 853956 + 0: The total amount of wall time = 332.946097 + 0: The maximum resident set size (KB) = 853896 -Test 046 regional_noquilt PASS +Test 047 regional_noquilt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_netcdf_parallel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/regional_netcdf_parallel -Checking test 047 regional_netcdf_parallel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_netcdf_parallel +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/regional_netcdf_parallel +Checking test 048 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 291.858706 - 0: The maximum resident set size (KB) = 858600 + 0: The total amount of wall time = 318.564562 + 0: The maximum resident set size (KB) = 815516 -Test 047 regional_netcdf_parallel PASS +Test 048 regional_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/regional_2dwrtdecomp -Checking test 048 regional_2dwrtdecomp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/regional_2dwrtdecomp +Checking test 049 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2116,15 +2170,15 @@ Checking test 048 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 295.567871 - 0: The maximum resident set size (KB) = 865236 + 0: The total amount of wall time = 317.801239 + 0: The maximum resident set size (KB) = 869672 -Test 048 regional_2dwrtdecomp PASS +Test 049 regional_2dwrtdecomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/fv3_regional_wofs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/regional_wofs -Checking test 049 regional_wofs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/fv3_regional_wofs +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/regional_wofs +Checking test 050 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2134,15 +2188,15 @@ Checking test 049 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 375.585048 - 0: The maximum resident set size (KB) = 626212 + 0: The total amount of wall time = 405.553235 + 0: The maximum resident set size (KB) = 592120 -Test 049 regional_wofs PASS +Test 050 regional_wofs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/rap_control -Checking test 050 rap_control results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/rap_control +Checking test 051 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2188,15 +2242,15 @@ Checking test 050 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 457.573561 - 0: The maximum resident set size (KB) = 1058156 + 0: The total amount of wall time = 460.429682 + 0: The maximum resident set size (KB) = 1067240 -Test 050 rap_control PASS +Test 051 rap_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_spp_sppt_shum_skeb -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/regional_spp_sppt_shum_skeb -Checking test 051 regional_spp_sppt_shum_skeb results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_spp_sppt_shum_skeb +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/regional_spp_sppt_shum_skeb +Checking test 052 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -2206,15 +2260,15 @@ Checking test 051 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 329.664011 - 0: The maximum resident set size (KB) = 1188812 + 0: The total amount of wall time = 336.603868 + 0: The maximum resident set size (KB) = 1184028 -Test 051 regional_spp_sppt_shum_skeb PASS +Test 052 regional_spp_sppt_shum_skeb PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/rap_decomp -Checking test 052 rap_decomp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/rap_decomp +Checking test 053 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2260,15 +2314,15 @@ Checking test 052 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 480.610411 - 0: The maximum resident set size (KB) = 1009196 + 0: The total amount of wall time = 485.557697 + 0: The maximum resident set size (KB) = 1009628 -Test 052 rap_decomp PASS +Test 053 rap_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/rap_2threads -Checking test 053 rap_2threads results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/rap_2threads +Checking test 054 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2314,15 +2368,15 @@ Checking test 053 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 478.593743 - 0: The maximum resident set size (KB) = 1145604 + 0: The total amount of wall time = 479.489531 + 0: The maximum resident set size (KB) = 1141768 -Test 053 rap_2threads PASS +Test 054 rap_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/rap_restart -Checking test 054 rap_restart results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/rap_restart +Checking test 055 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2360,15 +2414,15 @@ Checking test 054 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 233.238808 - 0: The maximum resident set size (KB) = 974388 + 0: The total amount of wall time = 230.940132 + 0: The maximum resident set size (KB) = 973212 -Test 054 rap_restart PASS +Test 055 rap_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_sfcdiff -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/rap_sfcdiff -Checking test 055 rap_sfcdiff results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/rap_sfcdiff +Checking test 056 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2414,15 +2468,15 @@ Checking test 055 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 451.807050 - 0: The maximum resident set size (KB) = 1062552 + 0: The total amount of wall time = 449.866688 + 0: The maximum resident set size (KB) = 1051468 -Test 055 rap_sfcdiff PASS +Test 056 rap_sfcdiff PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_sfcdiff -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/rap_sfcdiff_decomp -Checking test 056 rap_sfcdiff_decomp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/rap_sfcdiff_decomp +Checking test 057 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2468,15 +2522,15 @@ Checking test 056 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 476.796625 - 0: The maximum resident set size (KB) = 1003588 + 0: The total amount of wall time = 479.005191 + 0: The maximum resident set size (KB) = 1005496 -Test 056 rap_sfcdiff_decomp PASS +Test 057 rap_sfcdiff_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_sfcdiff -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/rap_sfcdiff_restart -Checking test 057 rap_sfcdiff_restart results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/rap_sfcdiff_restart +Checking test 058 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2514,15 +2568,15 @@ Checking test 057 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 343.276182 - 0: The maximum resident set size (KB) = 988936 + 0: The total amount of wall time = 357.476720 + 0: The maximum resident set size (KB) = 984620 -Test 057 rap_sfcdiff_restart PASS +Test 058 rap_sfcdiff_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/hrrr_control -Checking test 058 hrrr_control results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/hrrr_control +Checking test 059 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2568,15 +2622,15 @@ Checking test 058 hrrr_control results .... Comparing 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.572053 - 0: The maximum resident set size (KB) = 1065320 + 0: The total amount of wall time = 436.469951 + 0: The maximum resident set size (KB) = 1060224 -Test 058 hrrr_control PASS +Test 059 hrrr_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/hrrr_control_decomp -Checking test 059 hrrr_control_decomp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/hrrr_control_decomp +Checking test 060 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2622,15 +2676,15 @@ Checking test 059 hrrr_control_decomp results .... Comparing 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.182846 - 0: The maximum resident set size (KB) = 1006088 + 0: The total amount of wall time = 456.342525 + 0: The maximum resident set size (KB) = 1005752 -Test 059 hrrr_control_decomp PASS +Test 060 hrrr_control_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/hrrr_control_2threads -Checking test 060 hrrr_control_2threads results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/hrrr_control_2threads +Checking test 061 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2676,15 +2730,15 @@ Checking test 060 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 449.810652 - 0: The maximum resident set size (KB) = 1140876 + 0: The total amount of wall time = 457.299983 + 0: The maximum resident set size (KB) = 1136580 -Test 060 hrrr_control_2threads PASS +Test 061 hrrr_control_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/hrrr_control_restart -Checking test 061 hrrr_control_restart results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/hrrr_control_restart +Checking test 062 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2722,15 +2776,15 @@ Checking test 061 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 330.081654 - 0: The maximum resident set size (KB) = 979004 + 0: The total amount of wall time = 344.963146 + 0: The maximum resident set size (KB) = 980168 -Test 061 hrrr_control_restart PASS +Test 062 hrrr_control_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_v1beta -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/rrfs_v1beta -Checking test 062 rrfs_v1beta results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1beta +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/rrfs_v1beta +Checking test 063 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2776,15 +2830,15 @@ Checking test 062 rrfs_v1beta results .... Comparing 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.191659 - 0: The maximum resident set size (KB) = 1058576 + 0: The total amount of wall time = 449.521069 + 0: The maximum resident set size (KB) = 1057056 -Test 062 rrfs_v1beta PASS +Test 063 rrfs_v1beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_v1nssl -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/rrfs_v1nssl -Checking test 063 rrfs_v1nssl results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1nssl +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/rrfs_v1nssl +Checking test 064 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2798,15 +2852,15 @@ Checking test 063 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 529.237230 - 0: The maximum resident set size (KB) = 694004 + 0: The total amount of wall time = 527.948179 + 0: The maximum resident set size (KB) = 691188 -Test 063 rrfs_v1nssl PASS +Test 064 rrfs_v1nssl PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/rrfs_v1nssl_nohailnoccn -Checking test 064 rrfs_v1nssl_nohailnoccn results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/rrfs_v1nssl_nohailnoccn +Checking test 065 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2820,30 +2874,14 @@ Checking test 064 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 514.314937 - 0: The maximum resident set size (KB) = 758316 + 0: The total amount of wall time = 524.871014 + 0: The maximum resident set size (KB) = 753424 -Test 064 rrfs_v1nssl_nohailnoccn PASS +Test 065 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_conus13km_hrrr_warm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/rrfs_conus13km_hrrr_warm -Checking test 065 rrfs_conus13km_hrrr_warm 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 - - 0: The total amount of wall time = 124.483516 - 0: The maximum resident set size (KB) = 928708 - -Test 065 rrfs_conus13km_hrrr_warm PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/rrfs_smoke_conus13km_hrrr_warm Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2852,15 +2890,15 @@ Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 139.294848 - 0: The maximum resident set size (KB) = 961412 + 0: The total amount of wall time = 149.194684 + 0: The maximum resident set size (KB) = 1032944 Test 066 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/rrfs_conus13km_radar_tten_warm -Checking test 067 rrfs_conus13km_radar_tten_warm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/rrfs_smoke_conus13km_hrrr_warm_2threads +Checking test 067 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2868,15 +2906,15 @@ Checking test 067 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 122.642521 - 0: The maximum resident set size (KB) = 935184 + 0: The total amount of wall time = 101.894787 + 0: The maximum resident set size (KB) = 934816 -Test 067 rrfs_conus13km_radar_tten_warm PASS +Test 067 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_conus13km_hrrr_warm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/rrfs_conus13km_hrrr_warm_2threads -Checking test 068 rrfs_conus13km_hrrr_warm_2threads results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_conus13km_hrrr_warm +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/rrfs_conus13km_hrrr_warm +Checking test 068 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2884,15 +2922,15 @@ Checking test 068 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 83.607260 - 0: The maximum resident set size (KB) = 800668 + 0: The total amount of wall time = 132.254186 + 0: The maximum resident set size (KB) = 944056 -Test 068 rrfs_conus13km_hrrr_warm_2threads PASS +Test 068 rrfs_conus13km_hrrr_warm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/rrfs_conus13km_radar_tten_warm_2threads -Checking test 069 rrfs_conus13km_radar_tten_warm_2threads results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/rrfs_smoke_conus13km_radar_tten_warm +Checking test 069 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2900,14 +2938,14 @@ Checking test 069 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 83.275174 - 0: The maximum resident set size (KB) = 851140 + 0: The total amount of wall time = 150.199174 + 0: The maximum resident set size (KB) = 993920 -Test 069 rrfs_conus13km_radar_tten_warm_2threads PASS +Test 069 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_csawmg -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/control_csawmg +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmg +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/control_csawmg Checking test 070 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2918,14 +2956,14 @@ Checking test 070 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 343.083112 - 0: The maximum resident set size (KB) = 687872 + 0: The total amount of wall time = 366.460197 + 0: The maximum resident set size (KB) = 723828 Test 070 control_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_csawmgt -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/control_csawmgt +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmgt +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/control_csawmgt Checking test 071 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2936,14 +2974,14 @@ Checking test 071 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 338.282853 - 0: The maximum resident set size (KB) = 735440 + 0: The total amount of wall time = 354.162292 + 0: The maximum resident set size (KB) = 729792 Test 071 control_csawmgt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_ras -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/control_ras +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_ras +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/control_ras Checking test 072 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2954,26 +2992,26 @@ Checking test 072 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 180.621957 - 0: The maximum resident set size (KB) = 717868 + 0: The total amount of wall time = 201.941886 + 0: The maximum resident set size (KB) = 714336 Test 072 control_ras PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_wam -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/control_wam +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wam +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/control_wam Checking test 073 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 112.072235 - 0: The maximum resident set size (KB) = 643724 + 0: The total amount of wall time = 113.677948 + 0: The maximum resident set size (KB) = 641356 Test 073 control_wam PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8_faster -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/control_p8_faster +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/control_p8_faster Checking test 074 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3020,14 +3058,14 @@ Checking test 074 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 151.691298 - 0: The maximum resident set size (KB) = 1599372 + 0: The total amount of wall time = 166.049249 + 0: The maximum resident set size (KB) = 1602304 Test 074 control_p8_faster PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_control_faster -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/regional_control_faster +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/regional_control_faster Checking test 075 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3038,43 +3076,57 @@ Checking test 075 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 270.590436 - 0: The maximum resident set size (KB) = 862680 + 0: The total amount of wall time = 290.329234 + 0: The maximum resident set size (KB) = 873216 Test 075 regional_control_faster PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/rrfs_conus13km_hrrr_warm_debug -Checking test 076 rrfs_conus13km_hrrr_warm_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/rrfs_smoke_conus13km_hrrr_warm_debug +Checking test 076 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 745.700610 - 0: The maximum resident set size (KB) = 961900 + 0: The total amount of wall time = 839.968652 + 0: The maximum resident set size (KB) = 1061152 -Test 076 rrfs_conus13km_hrrr_warm_debug PASS +Test 076 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/rrfs_conus13km_radar_tten_warm_debug -Checking test 077 rrfs_conus13km_radar_tten_warm_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +Checking test 077 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 738.374578 - 0: The maximum resident set size (KB) = 947868 + 0: The total amount of wall time = 520.634408 + 0: The maximum resident set size (KB) = 982860 -Test 077 rrfs_conus13km_radar_tten_warm_debug PASS +Test 077 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_CubedSphereGrid_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/control_CubedSphereGrid_debug -Checking test 078 control_CubedSphereGrid_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/rrfs_conus13km_hrrr_warm_debug +Checking test 078 rrfs_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 786.748716 + 0: The maximum resident set size (KB) = 977628 + +Test 078 rrfs_conus13km_hrrr_warm_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/control_CubedSphereGrid_debug +Checking test 079 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3100,335 +3152,335 @@ Checking test 078 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 170.190671 - 0: The maximum resident set size (KB) = 797404 + 0: The total amount of wall time = 181.434556 + 0: The maximum resident set size (KB) = 793508 -Test 078 control_CubedSphereGrid_debug PASS +Test 079 control_CubedSphereGrid_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/control_wrtGauss_netcdf_parallel_debug -Checking test 079 control_wrtGauss_netcdf_parallel_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/control_wrtGauss_netcdf_parallel_debug +Checking test 080 control_wrtGauss_netcdf_parallel_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 159.808753 - 0: The maximum resident set size (KB) = 793368 + 0: The total amount of wall time = 166.982265 + 0: The maximum resident set size (KB) = 801604 -Test 079 control_wrtGauss_netcdf_parallel_debug PASS +Test 080 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_stochy_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/control_stochy_debug -Checking test 080 control_stochy_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/control_stochy_debug +Checking test 081 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 178.666084 - 0: The maximum resident set size (KB) = 803368 + 0: The total amount of wall time = 193.572089 + 0: The maximum resident set size (KB) = 800900 -Test 080 control_stochy_debug PASS +Test 081 control_stochy_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_lndp_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/control_lndp_debug -Checking test 081 control_lndp_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_lndp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/control_lndp_debug +Checking test 082 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 162.632614 - 0: The maximum resident set size (KB) = 803556 + 0: The total amount of wall time = 183.392736 + 0: The maximum resident set size (KB) = 797080 -Test 081 control_lndp_debug PASS +Test 082 control_lndp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_csawmg_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/control_csawmg_debug -Checking test 082 control_csawmg_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmg_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/control_csawmg_debug +Checking test 083 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 243.456257 - 0: The maximum resident set size (KB) = 847660 + 0: The total amount of wall time = 248.975232 + 0: The maximum resident set size (KB) = 841540 -Test 082 control_csawmg_debug PASS +Test 083 control_csawmg_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_csawmgt_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/control_csawmgt_debug -Checking test 083 control_csawmgt_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmgt_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/control_csawmgt_debug +Checking test 084 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 234.702630 - 0: The maximum resident set size (KB) = 845788 + 0: The total amount of wall time = 251.811733 + 0: The maximum resident set size (KB) = 848484 -Test 083 control_csawmgt_debug PASS +Test 084 control_csawmgt_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_ras_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/control_ras_debug -Checking test 084 control_ras_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_ras_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/control_ras_debug +Checking test 085 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 164.482506 - 0: The maximum resident set size (KB) = 809412 + 0: The total amount of wall time = 176.552288 + 0: The maximum resident set size (KB) = 803864 -Test 084 control_ras_debug PASS +Test 085 control_ras_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_diag_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/control_diag_debug -Checking test 085 control_diag_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_diag_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/control_diag_debug +Checking test 086 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 166.974190 - 0: The maximum resident set size (KB) = 852492 + 0: The total amount of wall time = 169.751342 + 0: The maximum resident set size (KB) = 854548 -Test 085 control_diag_debug PASS +Test 086 control_diag_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_debug_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/control_debug_p8 -Checking test 086 control_debug_p8 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_debug_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/control_debug_p8 +Checking test 087 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 177.761419 - 0: The maximum resident set size (KB) = 1625836 + 0: The total amount of wall time = 193.857171 + 0: The maximum resident set size (KB) = 1621652 -Test 086 control_debug_p8 PASS +Test 087 control_debug_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/regional_debug -Checking test 087 regional_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/regional_debug +Checking test 088 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1017.385826 - 0: The maximum resident set size (KB) = 886468 + 0: The total amount of wall time = 1011.208382 + 0: The maximum resident set size (KB) = 888000 -Test 087 regional_debug PASS +Test 088 regional_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/rap_control_debug -Checking test 088 rap_control_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/rap_control_debug +Checking test 089 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 285.128108 - 0: The maximum resident set size (KB) = 1178432 + 0: The total amount of wall time = 288.399039 + 0: The maximum resident set size (KB) = 1181844 -Test 088 rap_control_debug PASS +Test 089 rap_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/hrrr_control_debug -Checking test 089 hrrr_control_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/hrrr_control_debug +Checking test 090 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 284.051255 - 0: The maximum resident set size (KB) = 1171756 + 0: The total amount of wall time = 286.947539 + 0: The maximum resident set size (KB) = 1174936 -Test 089 hrrr_control_debug PASS +Test 090 hrrr_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/rap_unified_drag_suite_debug -Checking test 090 rap_unified_drag_suite_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/rap_unified_drag_suite_debug +Checking test 091 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 288.254818 - 0: The maximum resident set size (KB) = 1177272 + 0: The total amount of wall time = 283.934874 + 0: The maximum resident set size (KB) = 1172068 -Test 090 rap_unified_drag_suite_debug PASS +Test 091 rap_unified_drag_suite_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_diag_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/rap_diag_debug -Checking test 091 rap_diag_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_diag_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/rap_diag_debug +Checking test 092 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 296.429051 - 0: The maximum resident set size (KB) = 1259232 + 0: The total amount of wall time = 300.132423 + 0: The maximum resident set size (KB) = 1258828 -Test 091 rap_diag_debug PASS +Test 092 rap_diag_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/rap_cires_ugwp_debug -Checking test 092 rap_cires_ugwp_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_cires_ugwp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/rap_cires_ugwp_debug +Checking test 093 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 291.181219 - 0: The maximum resident set size (KB) = 1176028 + 0: The total amount of wall time = 291.789592 + 0: The maximum resident set size (KB) = 1173660 -Test 092 rap_cires_ugwp_debug PASS +Test 093 rap_cires_ugwp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/rap_unified_ugwp_debug -Checking test 093 rap_unified_ugwp_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_cires_ugwp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/rap_unified_ugwp_debug +Checking test 094 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 288.741775 - 0: The maximum resident set size (KB) = 1177272 + 0: The total amount of wall time = 297.863204 + 0: The maximum resident set size (KB) = 1176824 -Test 093 rap_unified_ugwp_debug PASS +Test 094 rap_unified_ugwp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_lndp_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/rap_lndp_debug -Checking test 094 rap_lndp_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_lndp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/rap_lndp_debug +Checking test 095 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 290.115806 - 0: The maximum resident set size (KB) = 1179804 + 0: The total amount of wall time = 293.940416 + 0: The maximum resident set size (KB) = 1174236 -Test 094 rap_lndp_debug PASS +Test 095 rap_lndp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_flake_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/rap_flake_debug -Checking test 095 rap_flake_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_flake_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/rap_flake_debug +Checking test 096 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 288.173194 - 0: The maximum resident set size (KB) = 1177764 + 0: The total amount of wall time = 288.100864 + 0: The maximum resident set size (KB) = 1176972 -Test 095 rap_flake_debug PASS +Test 096 rap_flake_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_progcld_thompson_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/rap_progcld_thompson_debug -Checking test 096 rap_progcld_thompson_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_progcld_thompson_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/rap_progcld_thompson_debug +Checking test 097 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 292.520675 - 0: The maximum resident set size (KB) = 1178924 + 0: The total amount of wall time = 282.523556 + 0: The maximum resident set size (KB) = 1182772 -Test 096 rap_progcld_thompson_debug PASS +Test 097 rap_progcld_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_noah_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/rap_noah_debug -Checking test 097 rap_noah_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_noah_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/rap_noah_debug +Checking test 098 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.911954 - 0: The maximum resident set size (KB) = 1169868 + 0: The total amount of wall time = 279.216155 + 0: The maximum resident set size (KB) = 1170692 -Test 097 rap_noah_debug PASS +Test 098 rap_noah_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_sfcdiff_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/rap_sfcdiff_debug -Checking test 098 rap_sfcdiff_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/rap_sfcdiff_debug +Checking test 099 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 286.697144 - 0: The maximum resident set size (KB) = 1172888 + 0: The total amount of wall time = 287.730332 + 0: The maximum resident set size (KB) = 1176648 -Test 098 rap_sfcdiff_debug PASS +Test 099 rap_sfcdiff_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 099 rap_noah_sfcdiff_cires_ugwp_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 100 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 472.816733 - 0: The maximum resident set size (KB) = 1170920 + 0: The total amount of wall time = 471.021737 + 0: The maximum resident set size (KB) = 1176056 -Test 099 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 100 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_v1beta_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/rrfs_v1beta_debug -Checking test 100 rrfs_v1beta_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1beta_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/rrfs_v1beta_debug +Checking test 101 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 287.931562 - 0: The maximum resident set size (KB) = 1166164 + 0: The total amount of wall time = 288.125194 + 0: The maximum resident set size (KB) = 1163648 -Test 100 rrfs_v1beta_debug PASS +Test 101 rrfs_v1beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_wam_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/control_wam_debug -Checking test 101 control_wam_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wam_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/control_wam_debug +Checking test 102 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 293.559737 - 0: The maximum resident set size (KB) = 531496 + 0: The total amount of wall time = 292.914665 + 0: The maximum resident set size (KB) = 526892 -Test 101 control_wam_debug PASS +Test 102 control_wam_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/regional_spp_sppt_shum_skeb_dyn32_phy32 -Checking test 102 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 103 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -3438,15 +3490,15 @@ Checking test 102 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 316.318491 - 0: The maximum resident set size (KB) = 1076604 + 0: The total amount of wall time = 308.559179 + 0: The maximum resident set size (KB) = 1080000 -Test 102 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS +Test 103 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/rap_control_dyn32_phy32 -Checking test 103 rap_control_dyn32_phy32 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/rap_control_dyn32_phy32 +Checking test 104 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3492,15 +3544,15 @@ Checking test 103 rap_control_dyn32_phy32 results .... Comparing 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.362037 - 0: The maximum resident set size (KB) = 1009972 + 0: The total amount of wall time = 368.374753 + 0: The maximum resident set size (KB) = 961404 -Test 103 rap_control_dyn32_phy32 PASS +Test 104 rap_control_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/hrrr_control_dyn32_phy32 -Checking test 104 hrrr_control_dyn32_phy32 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/hrrr_control_dyn32_phy32 +Checking test 105 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3546,15 +3598,15 @@ Checking test 104 hrrr_control_dyn32_phy32 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 = 198.966129 - 0: The maximum resident set size (KB) = 963052 + 0: The total amount of wall time = 193.463863 + 0: The maximum resident set size (KB) = 954852 -Test 104 hrrr_control_dyn32_phy32 PASS +Test 105 hrrr_control_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/rap_2threads_dyn32_phy32 -Checking test 105 rap_2threads_dyn32_phy32 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/rap_2threads_dyn32_phy32 +Checking test 106 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3600,15 +3652,15 @@ Checking test 105 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 389.744388 - 0: The maximum resident set size (KB) = 1030128 + 0: The total amount of wall time = 427.491793 + 0: The maximum resident set size (KB) = 1023200 -Test 105 rap_2threads_dyn32_phy32 PASS +Test 106 rap_2threads_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/hrrr_control_2threads_dyn32_phy32 -Checking test 106 hrrr_control_2threads_dyn32_phy32 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/hrrr_control_2threads_dyn32_phy32 +Checking test 107 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3654,15 +3706,15 @@ Checking test 106 hrrr_control_2threads_dyn32_phy32 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 = 209.113267 - 0: The maximum resident set size (KB) = 1017104 + 0: The total amount of wall time = 208.287510 + 0: The maximum resident set size (KB) = 1005528 -Test 106 hrrr_control_2threads_dyn32_phy32 PASS +Test 107 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/hrrr_control_decomp_dyn32_phy32 -Checking test 107 hrrr_control_decomp_dyn32_phy32 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/hrrr_control_decomp_dyn32_phy32 +Checking test 108 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3708,15 +3760,15 @@ Checking test 107 hrrr_control_decomp_dyn32_phy32 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 = 206.369100 - 0: The maximum resident set size (KB) = 896872 + 0: The total amount of wall time = 206.067752 + 0: The maximum resident set size (KB) = 912724 -Test 107 hrrr_control_decomp_dyn32_phy32 PASS +Test 108 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/rap_restart_dyn32_phy32 -Checking test 108 rap_restart_dyn32_phy32 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/rap_restart_dyn32_phy32 +Checking test 109 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3754,15 +3806,15 @@ Checking test 108 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 280.661015 - 0: The maximum resident set size (KB) = 947096 + 0: The total amount of wall time = 280.205683 + 0: The maximum resident set size (KB) = 944428 -Test 108 rap_restart_dyn32_phy32 PASS +Test 109 rap_restart_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/hrrr_control_restart_dyn32_phy32 -Checking test 109 hrrr_control_restart_dyn32_phy32 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/hrrr_control_restart_dyn32_phy32 +Checking test 110 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3800,15 +3852,15 @@ Checking test 109 hrrr_control_restart_dyn32_phy32 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 = 100.467845 - 0: The maximum resident set size (KB) = 856720 + 0: The total amount of wall time = 100.233104 + 0: The maximum resident set size (KB) = 869512 -Test 109 hrrr_control_restart_dyn32_phy32 PASS +Test 110 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_dyn64_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/rap_control_dyn64_phy32 -Checking test 110 rap_control_dyn64_phy32 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn64_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/rap_control_dyn64_phy32 +Checking test 111 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3854,82 +3906,82 @@ Checking test 110 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 242.529586 - 0: The maximum resident set size (KB) = 968236 + 0: The total amount of wall time = 238.345520 + 0: The maximum resident set size (KB) = 967352 -Test 110 rap_control_dyn64_phy32 PASS +Test 111 rap_control_dyn64_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_debug_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/rap_control_debug_dyn32_phy32 -Checking test 111 rap_control_debug_dyn32_phy32 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/rap_control_debug_dyn32_phy32 +Checking test 112 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 285.962428 - 0: The maximum resident set size (KB) = 1061672 + 0: The total amount of wall time = 278.892252 + 0: The maximum resident set size (KB) = 1065064 -Test 111 rap_control_debug_dyn32_phy32 PASS +Test 112 rap_control_debug_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/hrrr_control_debug_dyn32_phy32 -Checking test 112 hrrr_control_debug_dyn32_phy32 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/hrrr_control_debug_dyn32_phy32 +Checking test 113 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 282.339710 - 0: The maximum resident set size (KB) = 1052544 + 0: The total amount of wall time = 277.996020 + 0: The maximum resident set size (KB) = 1062596 -Test 112 hrrr_control_debug_dyn32_phy32 PASS +Test 113 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_debug_dyn64_phy32 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/rap_control_dyn64_phy32_debug -Checking test 113 rap_control_dyn64_phy32_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug_dyn64_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/rap_control_dyn64_phy32_debug +Checking test 114 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 291.325044 - 0: The maximum resident set size (KB) = 1108236 + 0: The total amount of wall time = 286.942900 + 0: The maximum resident set size (KB) = 1107188 -Test 113 rap_control_dyn64_phy32_debug PASS +Test 114 rap_control_dyn64_phy32_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/hafs_regional_atm -Checking test 114 hafs_regional_atm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/hafs_regional_atm +Checking test 115 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 272.752183 - 0: The maximum resident set size (KB) = 1065848 + 0: The total amount of wall time = 271.610836 + 0: The maximum resident set size (KB) = 1049752 -Test 114 hafs_regional_atm PASS +Test 115 hafs_regional_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/hafs_regional_atm_thompson_gfdlsf -Checking test 115 hafs_regional_atm_thompson_gfdlsf results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/hafs_regional_atm_thompson_gfdlsf +Checking test 116 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 415.880521 - 0: The maximum resident set size (KB) = 1409532 + 0: The total amount of wall time = 428.013640 + 0: The maximum resident set size (KB) = 1425588 -Test 115 hafs_regional_atm_thompson_gfdlsf PASS +Test 116 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_atm_ocn -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/hafs_regional_atm_ocn -Checking test 116 hafs_regional_atm_ocn results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_ocn +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/hafs_regional_atm_ocn +Checking test 117 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -3937,15 +3989,15 @@ Checking test 116 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 381.918229 - 0: The maximum resident set size (KB) = 1223608 + 0: The total amount of wall time = 379.790292 + 0: The maximum resident set size (KB) = 1230828 -Test 116 hafs_regional_atm_ocn PASS +Test 117 hafs_regional_atm_ocn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_atm_wav -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/hafs_regional_atm_wav -Checking test 117 hafs_regional_atm_wav results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_wav +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/hafs_regional_atm_wav +Checking test 118 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK @@ -3953,15 +4005,15 @@ Checking test 117 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 731.666127 - 0: The maximum resident set size (KB) = 1257336 + 0: The total amount of wall time = 730.511523 + 0: The maximum resident set size (KB) = 1259684 -Test 117 hafs_regional_atm_wav PASS +Test 118 hafs_regional_atm_wav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_atm_ocn_wav -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/hafs_regional_atm_ocn_wav -Checking test 118 hafs_regional_atm_ocn_wav results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_ocn_wav +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/hafs_regional_atm_ocn_wav +Checking test 119 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -3971,29 +4023,29 @@ Checking test 118 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 823.852544 - 0: The maximum resident set size (KB) = 1277840 + 0: The total amount of wall time = 840.271892 + 0: The maximum resident set size (KB) = 1275492 -Test 118 hafs_regional_atm_ocn_wav PASS +Test 119 hafs_regional_atm_ocn_wav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_1nest_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/hafs_regional_1nest_atm -Checking test 119 hafs_regional_1nest_atm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/hafs_regional_1nest_atm +Checking test 120 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 369.443601 - 0: The maximum resident set size (KB) = 513608 + 0: The total amount of wall time = 364.367951 + 0: The maximum resident set size (KB) = 510888 -Test 119 hafs_regional_1nest_atm PASS +Test 120 hafs_regional_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/hafs_regional_telescopic_2nests_atm -Checking test 120 hafs_regional_telescopic_2nests_atm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/hafs_regional_telescopic_2nests_atm +Checking test 121 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4001,29 +4053,29 @@ Checking test 120 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 416.945566 - 0: The maximum resident set size (KB) = 518712 + 0: The total amount of wall time = 420.069926 + 0: The maximum resident set size (KB) = 520172 -Test 120 hafs_regional_telescopic_2nests_atm PASS +Test 121 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_global_1nest_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/hafs_global_1nest_atm -Checking test 121 hafs_global_1nest_atm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/hafs_global_1nest_atm +Checking test 122 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 175.426560 - 0: The maximum resident set size (KB) = 351568 + 0: The total amount of wall time = 173.432375 + 0: The maximum resident set size (KB) = 351688 -Test 121 hafs_global_1nest_atm PASS +Test 122 hafs_global_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_global_multiple_4nests_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/hafs_global_multiple_4nests_atm -Checking test 122 hafs_global_multiple_4nests_atm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_multiple_4nests_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/hafs_global_multiple_4nests_atm +Checking test 123 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4040,15 +4092,15 @@ Checking test 122 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 475.379854 - 0: The maximum resident set size (KB) = 427860 + 0: The total amount of wall time = 473.008228 + 0: The maximum resident set size (KB) = 398588 -Test 122 hafs_global_multiple_4nests_atm PASS +Test 123 hafs_global_multiple_4nests_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/hafs_regional_specified_moving_1nest_atm -Checking test 123 hafs_regional_specified_moving_1nest_atm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/hafs_regional_specified_moving_1nest_atm +Checking test 124 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4056,29 +4108,29 @@ Checking test 123 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 227.566425 - 0: The maximum resident set size (KB) = 517256 + 0: The total amount of wall time = 228.701729 + 0: The maximum resident set size (KB) = 517832 -Test 123 hafs_regional_specified_moving_1nest_atm PASS +Test 124 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/hafs_regional_storm_following_1nest_atm -Checking test 124 hafs_regional_storm_following_1nest_atm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/hafs_regional_storm_following_1nest_atm +Checking test 125 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 215.958639 - 0: The maximum resident set size (KB) = 519144 + 0: The total amount of wall time = 216.903532 + 0: The maximum resident set size (KB) = 516592 -Test 124 hafs_regional_storm_following_1nest_atm PASS +Test 125 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/hafs_regional_storm_following_1nest_atm_ocn -Checking test 125 hafs_regional_storm_following_1nest_atm_ocn results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/hafs_regional_storm_following_1nest_atm_ocn +Checking test 126 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4086,43 +4138,43 @@ Checking test 125 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 287.851400 - 0: The maximum resident set size (KB) = 556912 + 0: The total amount of wall time = 289.750915 + 0: The maximum resident set size (KB) = 553144 -Test 125 hafs_regional_storm_following_1nest_atm_ocn PASS +Test 126 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_global_storm_following_1nest_atm -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/hafs_global_storm_following_1nest_atm -Checking test 126 hafs_global_storm_following_1nest_atm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_storm_following_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/hafs_global_storm_following_1nest_atm +Checking test 127 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 67.910766 - 0: The maximum resident set size (KB) = 367332 + 0: The total amount of wall time = 68.575201 + 0: The maximum resident set size (KB) = 368072 -Test 126 hafs_global_storm_following_1nest_atm PASS +Test 127 hafs_global_storm_following_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/hafs_regional_storm_following_1nest_atm_ocn_debug -Checking test 127 hafs_regional_storm_following_1nest_atm_ocn_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/hafs_regional_storm_following_1nest_atm_ocn_debug +Checking test 128 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 812.013945 - 0: The maximum resident set size (KB) = 579248 + 0: The total amount of wall time = 783.682270 + 0: The maximum resident set size (KB) = 587732 -Test 127 hafs_regional_storm_following_1nest_atm_ocn_debug PASS +Test 128 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/hafs_regional_storm_following_1nest_atm_ocn_wav -Checking test 128 hafs_regional_storm_following_1nest_atm_ocn_wav results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 129 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4132,162 +4184,162 @@ Checking test 128 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 579.992464 - 0: The maximum resident set size (KB) = 622596 + 0: The total amount of wall time = 584.514738 + 0: The maximum resident set size (KB) = 577720 -Test 128 hafs_regional_storm_following_1nest_atm_ocn_wav PASS +Test 129 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_docn -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/hafs_regional_docn -Checking test 129 hafs_regional_docn results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_docn +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/hafs_regional_docn +Checking test 130 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 361.027574 - 0: The maximum resident set size (KB) = 1234576 + 0: The total amount of wall time = 360.223588 + 0: The maximum resident set size (KB) = 1224688 -Test 129 hafs_regional_docn PASS +Test 130 hafs_regional_docn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_docn_oisst -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/hafs_regional_docn_oisst -Checking test 130 hafs_regional_docn_oisst results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_docn_oisst +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/hafs_regional_docn_oisst +Checking test 131 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 357.684094 - 0: The maximum resident set size (KB) = 1223332 + 0: The total amount of wall time = 359.923877 + 0: The maximum resident set size (KB) = 1218924 -Test 130 hafs_regional_docn_oisst PASS +Test 131 hafs_regional_docn_oisst PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_datm_cdeps -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/hafs_regional_datm_cdeps -Checking test 131 hafs_regional_datm_cdeps results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_datm_cdeps +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/hafs_regional_datm_cdeps +Checking test 132 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 936.652064 - 0: The maximum resident set size (KB) = 1039356 + 0: The total amount of wall time = 934.159519 + 0: The maximum resident set size (KB) = 1040588 -Test 131 hafs_regional_datm_cdeps PASS +Test 132 hafs_regional_datm_cdeps PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/datm_cdeps_control_cfsr -Checking test 132 datm_cdeps_control_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/datm_cdeps_control_cfsr +Checking test 133 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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.434629 - 0: The maximum resident set size (KB) = 1072776 + 0: The total amount of wall time = 144.605089 + 0: The maximum resident set size (KB) = 1074280 -Test 132 datm_cdeps_control_cfsr PASS +Test 133 datm_cdeps_control_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/datm_cdeps_restart_cfsr -Checking test 133 datm_cdeps_restart_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/datm_cdeps_restart_cfsr +Checking test 134 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.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.020979 - 0: The maximum resident set size (KB) = 1039276 + 0: The total amount of wall time = 90.677393 + 0: The maximum resident set size (KB) = 1021092 -Test 133 datm_cdeps_restart_cfsr PASS +Test 134 datm_cdeps_restart_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_control_gefs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/datm_cdeps_control_gefs -Checking test 134 datm_cdeps_control_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/datm_cdeps_control_gefs +Checking test 135 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 142.235232 - 0: The maximum resident set size (KB) = 956156 + 0: The total amount of wall time = 141.272503 + 0: The maximum resident set size (KB) = 968080 -Test 134 datm_cdeps_control_gefs PASS +Test 135 datm_cdeps_control_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_iau_gefs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/datm_cdeps_iau_gefs -Checking test 135 datm_cdeps_iau_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_iau_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/datm_cdeps_iau_gefs +Checking test 136 datm_cdeps_iau_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 143.961659 - 0: The maximum resident set size (KB) = 965272 + 0: The total amount of wall time = 148.203188 + 0: The maximum resident set size (KB) = 965128 -Test 135 datm_cdeps_iau_gefs PASS +Test 136 datm_cdeps_iau_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_stochy_gefs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/datm_cdeps_stochy_gefs -Checking test 136 datm_cdeps_stochy_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_stochy_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/datm_cdeps_stochy_gefs +Checking test 137 datm_cdeps_stochy_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.076000 - 0: The maximum resident set size (KB) = 967784 + 0: The total amount of wall time = 147.729092 + 0: The maximum resident set size (KB) = 961556 -Test 136 datm_cdeps_stochy_gefs PASS +Test 137 datm_cdeps_stochy_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_ciceC_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/datm_cdeps_ciceC_cfsr -Checking test 137 datm_cdeps_ciceC_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_ciceC_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/datm_cdeps_ciceC_cfsr +Checking test 138 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 144.832524 - 0: The maximum resident set size (KB) = 1060312 + 0: The total amount of wall time = 145.118750 + 0: The maximum resident set size (KB) = 1052228 -Test 137 datm_cdeps_ciceC_cfsr PASS +Test 138 datm_cdeps_ciceC_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_bulk_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/datm_cdeps_bulk_cfsr -Checking test 138 datm_cdeps_bulk_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_bulk_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/datm_cdeps_bulk_cfsr +Checking test 139 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.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.353088 - 0: The maximum resident set size (KB) = 1057888 + 0: The total amount of wall time = 145.751614 + 0: The maximum resident set size (KB) = 1059568 -Test 138 datm_cdeps_bulk_cfsr PASS +Test 139 datm_cdeps_bulk_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_bulk_gefs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/datm_cdeps_bulk_gefs -Checking test 139 datm_cdeps_bulk_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_bulk_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/datm_cdeps_bulk_gefs +Checking test 140 datm_cdeps_bulk_gefs 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 = 139.897000 - 0: The maximum resident set size (KB) = 963336 + 0: The total amount of wall time = 143.832995 + 0: The maximum resident set size (KB) = 970912 -Test 139 datm_cdeps_bulk_gefs PASS +Test 140 datm_cdeps_bulk_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_mx025_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/datm_cdeps_mx025_cfsr -Checking test 140 datm_cdeps_mx025_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_mx025_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/datm_cdeps_mx025_cfsr +Checking test 141 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4295,15 +4347,15 @@ Checking test 140 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 441.303227 - 0: The maximum resident set size (KB) = 877620 + 0: The total amount of wall time = 451.133503 + 0: The maximum resident set size (KB) = 878628 -Test 140 datm_cdeps_mx025_cfsr PASS +Test 141 datm_cdeps_mx025_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_mx025_gefs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/datm_cdeps_mx025_gefs -Checking test 141 datm_cdeps_mx025_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_mx025_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/datm_cdeps_mx025_gefs +Checking test 142 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4311,78 +4363,78 @@ Checking test 141 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 444.406635 - 0: The maximum resident set size (KB) = 930804 + 0: The total amount of wall time = 438.269374 + 0: The maximum resident set size (KB) = 935636 -Test 141 datm_cdeps_mx025_gefs PASS +Test 142 datm_cdeps_mx025_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/datm_cdeps_multiple_files_cfsr -Checking test 142 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/datm_cdeps_multiple_files_cfsr +Checking test 143 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.313074 - 0: The maximum resident set size (KB) = 1054708 + 0: The total amount of wall time = 145.662896 + 0: The maximum resident set size (KB) = 1055684 -Test 142 datm_cdeps_multiple_files_cfsr PASS +Test 143 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/datm_cdeps_3072x1536_cfsr -Checking test 143 datm_cdeps_3072x1536_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/datm_cdeps_3072x1536_cfsr +Checking test 144 datm_cdeps_3072x1536_cfsr 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 = 194.416697 - 0: The maximum resident set size (KB) = 2305668 + 0: The total amount of wall time = 200.736917 + 0: The maximum resident set size (KB) = 2362692 -Test 143 datm_cdeps_3072x1536_cfsr PASS +Test 144 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_gfs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/datm_cdeps_gfs -Checking test 144 datm_cdeps_gfs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_gfs +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/datm_cdeps_gfs +Checking test 145 datm_cdeps_gfs 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 = 204.628791 - 0: The maximum resident set size (KB) = 2360416 + 0: The total amount of wall time = 201.384296 + 0: The maximum resident set size (KB) = 2369316 -Test 144 datm_cdeps_gfs PASS +Test 145 datm_cdeps_gfs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_debug_cfsr -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/datm_cdeps_debug_cfsr -Checking test 145 datm_cdeps_debug_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_debug_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/datm_cdeps_debug_cfsr +Checking test 146 datm_cdeps_debug_cfsr 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 = 437.398953 - 0: The maximum resident set size (KB) = 993276 + 0: The total amount of wall time = 435.246186 + 0: The maximum resident set size (KB) = 998772 -Test 145 datm_cdeps_debug_cfsr PASS +Test 146 datm_cdeps_debug_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_control_cfsr_faster -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/datm_cdeps_control_cfsr_faster -Checking test 146 datm_cdeps_control_cfsr_faster results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/datm_cdeps_control_cfsr_faster +Checking test 147 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.486329 - 0: The maximum resident set size (KB) = 1063156 + 0: The total amount of wall time = 150.077472 + 0: The maximum resident set size (KB) = 1069604 -Test 146 datm_cdeps_control_cfsr_faster PASS +Test 147 datm_cdeps_control_cfsr_faster PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_lnd_gswp3 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/datm_cdeps_lnd_gswp3 -Checking test 147 datm_cdeps_lnd_gswp3 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_lnd_gswp3 +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/datm_cdeps_lnd_gswp3 +Checking test 148 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4390,15 +4442,15 @@ Checking test 147 datm_cdeps_lnd_gswp3 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.063950 - 0: The maximum resident set size (KB) = 259400 + 0: The total amount of wall time = 8.721288 + 0: The maximum resident set size (KB) = 250604 -Test 147 datm_cdeps_lnd_gswp3 PASS +Test 148 datm_cdeps_lnd_gswp3 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/datm_cdeps_lnd_gswp3 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/datm_cdeps_lnd_gswp3_rst -Checking test 148 datm_cdeps_lnd_gswp3_rst results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_lnd_gswp3 +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/datm_cdeps_lnd_gswp3_rst +Checking test 149 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4406,15 +4458,15 @@ Checking test 148 datm_cdeps_lnd_gswp3_rst 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.997339 - 0: The maximum resident set size (KB) = 274752 + 0: The total amount of wall time = 12.920256 + 0: The maximum resident set size (KB) = 266756 -Test 148 datm_cdeps_lnd_gswp3_rst PASS +Test 149 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8_atmlnd_sbs -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/control_p8_atmlnd_sbs -Checking test 149 control_p8_atmlnd_sbs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_atmlnd_sbs +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/control_p8_atmlnd_sbs +Checking test 150 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -4498,15 +4550,15 @@ Checking test 149 control_p8_atmlnd_sbs 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.655393 - 0: The maximum resident set size (KB) = 1622820 + 0: The total amount of wall time = 204.418248 + 0: The maximum resident set size (KB) = 1582916 -Test 149 control_p8_atmlnd_sbs PASS +Test 150 control_p8_atmlnd_sbs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/control_atmwav -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/control_atmwav -Checking test 150 control_atmwav results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_atmwav +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/control_atmwav +Checking test 151 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -4549,15 +4601,15 @@ Checking test 150 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 86.845617 - 0: The maximum resident set size (KB) = 660920 + 0: The total amount of wall time = 88.332807 + 0: The maximum resident set size (KB) = 663276 -Test 150 control_atmwav PASS +Test 151 control_atmwav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/atmaero_control_p8 -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/atmaero_control_p8 -Checking test 151 atmaero_control_p8 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/atmaero_control_p8 +Checking test 152 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4600,15 +4652,15 @@ Checking test 151 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 233.304339 - 0: The maximum resident set size (KB) = 2977308 + 0: The total amount of wall time = 227.696693 + 0: The maximum resident set size (KB) = 2979612 -Test 151 atmaero_control_p8 PASS +Test 152 atmaero_control_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/atmaero_control_p8_rad -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/atmaero_control_p8_rad -Checking test 152 atmaero_control_p8_rad results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8_rad +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/atmaero_control_p8_rad +Checking test 153 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4651,15 +4703,15 @@ Checking test 152 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 280.359579 - 0: The maximum resident set size (KB) = 3043052 + 0: The total amount of wall time = 278.821803 + 0: The maximum resident set size (KB) = 3049196 -Test 152 atmaero_control_p8_rad PASS +Test 153 atmaero_control_p8_rad PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/atmaero_control_p8_rad_micro -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/atmaero_control_p8_rad_micro -Checking test 153 atmaero_control_p8_rad_micro results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8_rad_micro +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/atmaero_control_p8_rad_micro +Checking test 154 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4702,15 +4754,15 @@ Checking test 153 atmaero_control_p8_rad_micro results .... Comparing 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.926110 - 0: The maximum resident set size (KB) = 3059864 + 0: The total amount of wall time = 284.442704 + 0: The maximum resident set size (KB) = 3054120 -Test 153 atmaero_control_p8_rad_micro PASS +Test 154 atmaero_control_p8_rad_micro PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_atmaq -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/regional_atmaq -Checking test 154 regional_atmaq results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/regional_atmaq +Checking test 155 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -4725,15 +4777,15 @@ Checking test 154 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 621.783572 - 0: The maximum resident set size (KB) = 1475232 + 0: The total amount of wall time = 615.308830 + 0: The maximum resident set size (KB) = 1499228 -Test 154 regional_atmaq PASS +Test 155 regional_atmaq PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_atmaq_debug -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/regional_atmaq_debug -Checking test 155 regional_atmaq_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/regional_atmaq_debug +Checking test 156 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -4746,15 +4798,15 @@ Checking test 155 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1255.762462 - 0: The maximum resident set size (KB) = 1409956 + 0: The total amount of wall time = 1246.200449 + 0: The maximum resident set size (KB) = 1411548 -Test 155 regional_atmaq_debug PASS +Test 156 regional_atmaq_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_atmaq_faster -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_38199/regional_atmaq_faster -Checking test 156 regional_atmaq_faster results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/regional_atmaq_faster +Checking test 157 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -4769,12 +4821,12 @@ Checking test 156 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 541.978283 - 0: The maximum resident set size (KB) = 1476900 + 0: The total amount of wall time = 543.426768 + 0: The maximum resident set size (KB) = 1481680 -Test 156 regional_atmaq_faster PASS +Test 157 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Wed Mar 22 16:08:47 CDT 2023 -Elapsed time: 01h:27m:00s. Have a nice day! +Sat Mar 25 20:43:43 CDT 2023 +Elapsed time: 01h:12m:58s. Have a nice day! diff --git a/tests/RegressionTests_wcoss2.intel.log b/tests/RegressionTests_wcoss2.intel.log index 9b2b169f0ab..c4cdba615cf 100644 --- a/tests/RegressionTests_wcoss2.intel.log +++ b/tests/RegressionTests_wcoss2.intel.log @@ -1,35 +1,34 @@ -Thu Mar 23 17:33:10 UTC 2023 +Sun Mar 26 20:02:46 UTC 2023 Start Regression test -Test 004 compile FAIL - -Compile 001 elapsed time 1002 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 1102 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 1230 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 005 elapsed time 925 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 665 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 518 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 008 elapsed time 484 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 939 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 436 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 617 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 708 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 013 elapsed time 699 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 1248 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 015 elapsed time 590 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 555 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 017 elapsed time 397 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 600 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 019 elapsed time 401 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 728 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 1174 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 022 elapsed time 724 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 787 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 024 elapsed time 393 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 025 elapsed time 639 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8_mixedmode -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/cpld_control_p8_mixedmode +Compile 001 elapsed time 579 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1100 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 1512 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 502 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 005 elapsed time 1435 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 662 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 1197 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 474 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 009 elapsed time 496 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 876 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 651 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 657 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 382 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 014 elapsed time 1078 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 1139 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 573 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 017 elapsed time 260 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 1098 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 019 elapsed time 303 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 1246 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 590 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 022 elapsed time 635 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 487 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 024 elapsed time 450 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 025 elapsed time 798 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8_mixedmode +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -94,14 +93,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 365.410254 -The maximum resident set size (KB) = 2950692 +The total amount of wall time = 346.272533 +The maximum resident set size (KB) = 2953468 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/cpld_control_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/cpld_control_p8 Checking test 002 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -166,14 +165,14 @@ Checking test 002 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 386.087882 -The maximum resident set size (KB) = 2979280 +The total amount of wall time = 391.083016 +The maximum resident set size (KB) = 2982540 Test 002 cpld_control_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/cpld_restart_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/cpld_restart_p8 Checking test 003 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -226,14 +225,14 @@ Checking test 003 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 236.652137 -The maximum resident set size (KB) = 2867928 +The total amount of wall time = 242.803981 +The maximum resident set size (KB) = 2868612 Test 003 cpld_restart_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/cpld_2threads_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/cpld_2threads_p8 Checking test 004 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -286,14 +285,14 @@ Checking test 004 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 369.938484 -The maximum resident set size (KB) = 3281156 +The total amount of wall time = 374.375770 +The maximum resident set size (KB) = 3282912 Test 004 cpld_2threads_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/cpld_decomp_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/cpld_decomp_p8 Checking test 005 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -346,14 +345,14 @@ Checking test 005 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 379.672705 -The maximum resident set size (KB) = 2977824 +The total amount of wall time = 383.885229 +The maximum resident set size (KB) = 2974248 Test 005 cpld_decomp_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/cpld_mpi_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/cpld_mpi_p8 Checking test 006 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -406,14 +405,14 @@ Checking test 006 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 318.121711 -The maximum resident set size (KB) = 2912924 +The total amount of wall time = 322.374822 +The maximum resident set size (KB) = 2907468 Test 006 cpld_mpi_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_ciceC_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/cpld_control_ciceC_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_ciceC_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/cpld_control_ciceC_p8 Checking test 007 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -478,14 +477,14 @@ Checking test 007 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 383.257301 -The maximum resident set size (KB) = 2978524 +The total amount of wall time = 387.751952 +The maximum resident set size (KB) = 2983856 Test 007 cpld_control_ciceC_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_bmark_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/cpld_bmark_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_bmark_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/cpld_bmark_p8 Checking test 008 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -533,14 +532,14 @@ Checking test 008 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 946.674619 -The maximum resident set size (KB) = 3921116 +The total amount of wall time = 945.097586 +The maximum resident set size (KB) = 3915752 Test 008 cpld_bmark_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_bmark_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/cpld_restart_bmark_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_bmark_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/cpld_restart_bmark_p8 Checking test 009 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -588,14 +587,14 @@ Checking test 009 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 645.238670 -The maximum resident set size (KB) = 3885608 +The total amount of wall time = 669.345509 +The maximum resident set size (KB) = 3884352 Test 009 cpld_restart_bmark_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/cpld_control_noaero_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/cpld_control_noaero_p8 Checking test 010 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -659,14 +658,14 @@ Checking test 010 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 286.035420 -The maximum resident set size (KB) = 1581520 +The total amount of wall time = 289.031567 +The maximum resident set size (KB) = 1575216 Test 010 cpld_control_noaero_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/cpld_control_nowave_noaero_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c96_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/cpld_control_nowave_noaero_p8 Checking test 011 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -728,14 +727,83 @@ Checking test 011 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 305.748980 -The maximum resident set size (KB) = 1627332 +The total amount of wall time = 304.522271 +The maximum resident set size (KB) = 1629044 Test 011 cpld_control_nowave_noaero_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/cpld_control_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_noaero_p8_agrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/cpld_control_noaero_p8_agrid +Checking test 012 cpld_control_noaero_p8_agrid results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + +The total amount of wall time = 337.234352 +The maximum resident set size (KB) = 1625468 + +Test 012 cpld_control_noaero_p8_agrid PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/cpld_control_c48 Checking test 013 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -785,14 +853,14 @@ Checking test 013 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 437.181430 -The maximum resident set size (KB) = 2630688 +The total amount of wall time = 454.364395 +The maximum resident set size (KB) = 2635388 Test 013 cpld_control_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/cpld_warmstart_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/cpld_warmstart_c48 Checking test 014 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -842,14 +910,14 @@ Checking test 014 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 132.575150 -The maximum resident set size (KB) = 2650672 +The total amount of wall time = 141.201269 +The maximum resident set size (KB) = 2653868 Test 014 cpld_warmstart_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/cpld_restart_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/cpld_restart_c48 Checking test 015 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -899,14 +967,14 @@ Checking test 015 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 67.895665 -The maximum resident set size (KB) = 2069036 +The total amount of wall time = 79.502383 +The maximum resident set size (KB) = 2065792 Test 015 cpld_restart_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/cpld_control_p8_faster +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/cpld_control_p8_faster Checking test 016 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -971,14 +1039,14 @@ Checking test 016 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 386.661243 -The maximum resident set size (KB) = 2981376 +The total amount of wall time = 396.925232 +The maximum resident set size (KB) = 2980636 Test 016 cpld_control_p8_faster PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_CubedSphereGrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/control_CubedSphereGrid +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/control_CubedSphereGrid Checking test 017 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1005,14 +1073,14 @@ Checking test 017 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 130.692146 -The maximum resident set size (KB) = 520388 +The total amount of wall time = 132.520138 +The maximum resident set size (KB) = 515440 Test 017 control_CubedSphereGrid PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_latlon -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/control_latlon +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_latlon +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/control_latlon Checking test 018 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1023,14 +1091,14 @@ Checking test 018 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 133.821637 -The maximum resident set size (KB) = 515852 +The total amount of wall time = 134.423708 +The maximum resident set size (KB) = 518168 Test 018 control_latlon PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/control_wrtGauss_netcdf_parallel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/control_wrtGauss_netcdf_parallel Checking test 019 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1041,14 +1109,14 @@ Checking test 019 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.157050 -The maximum resident set size (KB) = 515484 +The total amount of wall time = 135.602792 +The maximum resident set size (KB) = 515452 Test 019 control_wrtGauss_netcdf_parallel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/control_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/control_c48 Checking test 020 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1087,14 +1155,14 @@ Checking test 020 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 326.950815 -The maximum resident set size (KB) = 677648 +The total amount of wall time = 327.408429 +The maximum resident set size (KB) = 672764 Test 020 control_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_c192 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/control_c192 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c192 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/control_c192 Checking test 021 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1105,14 +1173,14 @@ Checking test 021 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 531.258359 -The maximum resident set size (KB) = 617160 +The total amount of wall time = 534.568451 +The maximum resident set size (KB) = 615760 Test 021 control_c192 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_c384 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/control_c384 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c384 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/control_c384 Checking test 022 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1123,14 +1191,14 @@ Checking test 022 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 588.140258 -The maximum resident set size (KB) = 911196 +The total amount of wall time = 583.069459 +The maximum resident set size (KB) = 914388 Test 022 control_c384 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_c384gdas -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/control_c384gdas +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c384gdas +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/control_c384gdas Checking test 023 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1173,14 +1241,14 @@ Checking test 023 control_c384gdas results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 508.639931 -The maximum resident set size (KB) = 1043644 +The total amount of wall time = 510.476420 +The maximum resident set size (KB) = 1046964 Test 023 control_c384gdas PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/control_stochy +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/control_stochy Checking test 024 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1191,28 +1259,28 @@ Checking test 024 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 90.408834 -The maximum resident set size (KB) = 521936 +The total amount of wall time = 90.742266 +The maximum resident set size (KB) = 519248 Test 024 control_stochy PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/control_stochy_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/control_stochy_restart Checking test 025 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 49.032811 -The maximum resident set size (KB) = 290312 +The total amount of wall time = 50.576502 +The maximum resident set size (KB) = 288564 Test 025 control_stochy_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/control_lndp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/control_lndp Checking test 026 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1223,14 +1291,14 @@ Checking test 026 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 83.927082 -The maximum resident set size (KB) = 519168 +The total amount of wall time = 87.437589 +The maximum resident set size (KB) = 519624 Test 026 control_lndp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_iovr4 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/control_iovr4 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_iovr4 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/control_iovr4 Checking test 027 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1245,14 +1313,14 @@ Checking test 027 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 136.456574 -The maximum resident set size (KB) = 515884 +The total amount of wall time = 138.229632 +The maximum resident set size (KB) = 516400 Test 027 control_iovr4 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_iovr5 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/control_iovr5 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_iovr5 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/control_iovr5 Checking test 028 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1267,14 +1335,14 @@ Checking test 028 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 136.974369 -The maximum resident set size (KB) = 518560 +The total amount of wall time = 138.566283 +The maximum resident set size (KB) = 519212 Test 028 control_iovr5 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/control_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/control_p8 Checking test 029 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1321,14 +1389,14 @@ Checking test 029 control_p8 results .... 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.734743 -The maximum resident set size (KB) = 1487960 +The total amount of wall time = 185.730981 +The maximum resident set size (KB) = 1486740 Test 029 control_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/control_p8_lndp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/control_p8_lndp Checking test 030 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1347,14 +1415,14 @@ Checking test 030 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 323.220733 -The maximum resident set size (KB) = 1488152 +The total amount of wall time = 325.929563 +The maximum resident set size (KB) = 1487096 Test 030 control_p8_lndp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/control_restart_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/control_restart_p8 Checking test 031 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1393,14 +1461,14 @@ Checking test 031 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 99.680960 -The maximum resident set size (KB) = 657844 +The total amount of wall time = 117.685950 +The maximum resident set size (KB) = 646268 Test 031 control_restart_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/control_decomp_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/control_decomp_p8 Checking test 032 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1443,14 +1511,14 @@ Checking test 032 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 183.203767 -The maximum resident set size (KB) = 1479788 +The total amount of wall time = 184.633660 +The maximum resident set size (KB) = 1476120 Test 032 control_decomp_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/control_2threads_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/control_2threads_p8 Checking test 033 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1493,14 +1561,14 @@ Checking test 033 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 160.157102 -The maximum resident set size (KB) = 1570804 +The total amount of wall time = 164.643965 +The maximum resident set size (KB) = 1570536 Test 033 control_2threads_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8_rrtmgp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/control_p8_rrtmgp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_rrtmgp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/control_p8_rrtmgp Checking test 034 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1547,15 +1615,15 @@ Checking test 034 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 235.812874 -The maximum resident set size (KB) = 1548064 +The total amount of wall time = 239.753590 +The maximum resident set size (KB) = 1552704 Test 034 control_p8_rrtmgp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/merra2_thompson -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/merra2_thompson -Checking test 035 merra2_thompson results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_mynn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/control_p8_mynn +Checking test 035 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1601,15 +1669,69 @@ Checking test 035 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 204.836562 -The maximum resident set size (KB) = 1492192 +The total amount of wall time = 182.716358 +The maximum resident set size (KB) = 1486152 -Test 035 merra2_thompson PASS +Test 035 control_p8_mynn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/regional_control -Checking test 036 regional_control results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/merra2_thompson +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/merra2_thompson +Checking test 036 merra2_thompson results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 208.328494 +The maximum resident set size (KB) = 1488420 + +Test 036 merra2_thompson PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/regional_control +Checking test 037 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1619,29 +1741,29 @@ Checking test 036 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 286.900414 -The maximum resident set size (KB) = 655056 +The total amount of wall time = 292.012601 +The maximum resident set size (KB) = 651288 -Test 036 regional_control PASS +Test 037 regional_control PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/regional_restart -Checking test 037 regional_restart results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/regional_restart +Checking test 038 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 166.186780 -The maximum resident set size (KB) = 650160 +The total amount of wall time = 160.162282 +The maximum resident set size (KB) = 653976 -Test 037 regional_restart PASS +Test 038 regional_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/regional_decomp -Checking test 038 regional_decomp results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/regional_decomp +Checking test 039 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1651,15 +1773,15 @@ Checking test 038 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 306.331874 -The maximum resident set size (KB) = 649816 +The total amount of wall time = 310.866879 +The maximum resident set size (KB) = 655572 -Test 038 regional_decomp PASS +Test 039 regional_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/regional_2threads -Checking test 039 regional_2threads results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/regional_2threads +Checking test 040 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1669,44 +1791,44 @@ Checking test 039 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 178.319189 -The maximum resident set size (KB) = 699544 +The total amount of wall time = 183.870350 +The maximum resident set size (KB) = 693492 -Test 039 regional_2threads PASS +Test 040 regional_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_noquilt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/regional_noquilt -Checking test 040 regional_noquilt results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_noquilt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/regional_noquilt +Checking test 041 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 314.367126 -The maximum resident set size (KB) = 645584 +The total amount of wall time = 325.872439 +The maximum resident set size (KB) = 647936 -Test 040 regional_noquilt PASS +Test 041 regional_noquilt PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/regional_netcdf_parallel -Checking test 041 regional_netcdf_parallel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/regional_netcdf_parallel +Checking test 042 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK -The total amount of wall time = 285.745496 -The maximum resident set size (KB) = 646580 +The total amount of wall time = 291.087417 +The maximum resident set size (KB) = 647796 -Test 041 regional_netcdf_parallel PASS +Test 042 regional_netcdf_parallel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/regional_2dwrtdecomp -Checking test 042 regional_2dwrtdecomp results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/regional_2dwrtdecomp +Checking test 043 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1716,15 +1838,15 @@ Checking test 042 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 288.780523 -The maximum resident set size (KB) = 654596 +The total amount of wall time = 293.682788 +The maximum resident set size (KB) = 657452 -Test 042 regional_2dwrtdecomp PASS +Test 043 regional_2dwrtdecomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/fv3_regional_wofs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/regional_wofs -Checking test 043 regional_wofs results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/fv3_regional_wofs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/regional_wofs +Checking test 044 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1734,15 +1856,15 @@ Checking test 043 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 373.195416 -The maximum resident set size (KB) = 342036 +The total amount of wall time = 386.356950 +The maximum resident set size (KB) = 336460 -Test 043 regional_wofs PASS +Test 044 regional_wofs PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/rap_control -Checking test 044 rap_control results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/rap_control +Checking test 045 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1788,15 +1910,15 @@ Checking test 044 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 419.275711 -The maximum resident set size (KB) = 899256 +The total amount of wall time = 418.412086 +The maximum resident set size (KB) = 900104 -Test 044 rap_control PASS +Test 045 rap_control PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/regional_spp_sppt_shum_skeb -Checking test 045 regional_spp_sppt_shum_skeb results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_spp_sppt_shum_skeb +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/regional_spp_sppt_shum_skeb +Checking test 046 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -1806,15 +1928,15 @@ Checking test 045 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 288.825150 -The maximum resident set size (KB) = 992568 +The total amount of wall time = 290.354958 +The maximum resident set size (KB) = 985000 -Test 045 regional_spp_sppt_shum_skeb PASS +Test 046 regional_spp_sppt_shum_skeb PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/rap_decomp -Checking test 046 rap_decomp results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/rap_decomp +Checking test 047 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1860,15 +1982,15 @@ Checking test 046 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 435.660754 -The maximum resident set size (KB) = 894192 +The total amount of wall time = 435.279655 +The maximum resident set size (KB) = 903288 -Test 046 rap_decomp PASS +Test 047 rap_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/rap_2threads -Checking test 047 rap_2threads results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/rap_2threads +Checking test 048 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1914,15 +2036,15 @@ Checking test 047 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 393.443323 -The maximum resident set size (KB) = 973200 +The total amount of wall time = 395.428696 +The maximum resident set size (KB) = 967680 -Test 047 rap_2threads PASS +Test 048 rap_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/rap_restart -Checking test 048 rap_restart results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/rap_restart +Checking test 049 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1960,15 +2082,15 @@ Checking test 048 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 230.697906 -The maximum resident set size (KB) = 648676 +The total amount of wall time = 213.394136 +The maximum resident set size (KB) = 651852 -Test 048 rap_restart PASS +Test 049 rap_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/rap_sfcdiff -Checking test 049 rap_sfcdiff results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/rap_sfcdiff +Checking test 050 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2014,15 +2136,15 @@ Checking test 049 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 415.470920 -The maximum resident set size (KB) = 897436 +The total amount of wall time = 415.844002 +The maximum resident set size (KB) = 900376 -Test 049 rap_sfcdiff PASS +Test 050 rap_sfcdiff PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/rap_sfcdiff_decomp -Checking test 050 rap_sfcdiff_decomp results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/rap_sfcdiff_decomp +Checking test 051 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2068,15 +2190,15 @@ Checking test 050 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 435.458438 -The maximum resident set size (KB) = 895212 +The total amount of wall time = 432.896066 +The maximum resident set size (KB) = 900076 -Test 050 rap_sfcdiff_decomp PASS +Test 051 rap_sfcdiff_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/rap_sfcdiff_restart -Checking test 051 rap_sfcdiff_restart results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/rap_sfcdiff_restart +Checking test 052 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2114,15 +2236,15 @@ Checking test 051 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 326.718721 -The maximum resident set size (KB) = 646956 +The total amount of wall time = 317.082824 +The maximum resident set size (KB) = 647072 -Test 051 rap_sfcdiff_restart PASS +Test 052 rap_sfcdiff_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/hrrr_control -Checking test 052 hrrr_control results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/hrrr_control +Checking test 053 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2168,15 +2290,15 @@ Checking test 052 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 416.386728 -The maximum resident set size (KB) = 896600 +The total amount of wall time = 400.147187 +The maximum resident set size (KB) = 894768 -Test 052 hrrr_control PASS +Test 053 hrrr_control PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/hrrr_control_decomp -Checking test 053 hrrr_control_decomp results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/hrrr_control_decomp +Checking test 054 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2222,15 +2344,15 @@ Checking test 053 hrrr_control_decomp results .... 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.396440 -The maximum resident set size (KB) = 889488 +The total amount of wall time = 418.823457 +The maximum resident set size (KB) = 895236 -Test 053 hrrr_control_decomp PASS +Test 054 hrrr_control_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/hrrr_control_2threads -Checking test 054 hrrr_control_2threads results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/hrrr_control_2threads +Checking test 055 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2276,15 +2398,15 @@ Checking test 054 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 374.962680 -The maximum resident set size (KB) = 963288 +The total amount of wall time = 373.144532 +The maximum resident set size (KB) = 966828 -Test 054 hrrr_control_2threads PASS +Test 055 hrrr_control_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/hrrr_control_restart -Checking test 055 hrrr_control_restart results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/hrrr_control_restart +Checking test 056 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2322,15 +2444,15 @@ Checking test 055 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 302.025419 -The maximum resident set size (KB) = 644312 +The total amount of wall time = 299.629615 +The maximum resident set size (KB) = 643364 -Test 055 hrrr_control_restart PASS +Test 056 hrrr_control_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_v1beta -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/rrfs_v1beta -Checking test 056 rrfs_v1beta results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1beta +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/rrfs_v1beta +Checking test 057 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2376,15 +2498,15 @@ Checking test 056 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 419.499655 -The maximum resident set size (KB) = 890336 +The total amount of wall time = 412.947382 +The maximum resident set size (KB) = 895268 -Test 056 rrfs_v1beta PASS +Test 057 rrfs_v1beta PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_v1nssl -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/rrfs_v1nssl -Checking test 057 rrfs_v1nssl results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1nssl +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/rrfs_v1nssl +Checking test 058 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2398,15 +2520,15 @@ Checking test 057 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 474.589752 -The maximum resident set size (KB) = 575972 +The total amount of wall time = 478.840398 +The maximum resident set size (KB) = 580980 -Test 057 rrfs_v1nssl PASS +Test 058 rrfs_v1nssl PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/rrfs_v1nssl_nohailnoccn -Checking test 058 rrfs_v1nssl_nohailnoccn results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/rrfs_v1nssl_nohailnoccn +Checking test 059 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2420,30 +2542,14 @@ Checking test 058 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 467.588815 -The maximum resident set size (KB) = 571864 +The total amount of wall time = 470.036665 +The maximum resident set size (KB) = 575028 -Test 058 rrfs_v1nssl_nohailnoccn PASS +Test 059 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/rrfs_conus13km_hrrr_warm -Checking test 059 rrfs_conus13km_hrrr_warm 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.701815 -The maximum resident set size (KB) = 762956 - -Test 059 rrfs_conus13km_hrrr_warm PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/rrfs_smoke_conus13km_hrrr_warm Checking test 060 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2452,15 +2558,15 @@ Checking test 060 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 128.845778 -The maximum resident set size (KB) = 780968 +The total amount of wall time = 154.059943 +The maximum resident set size (KB) = 803428 Test 060 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/rrfs_conus13km_radar_tten_warm -Checking test 061 rrfs_conus13km_radar_tten_warm results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/rrfs_smoke_conus13km_hrrr_warm_2threads +Checking test 061 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2468,15 +2574,15 @@ Checking test 061 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 116.235787 -The maximum resident set size (KB) = 766792 +The total amount of wall time = 114.104608 +The maximum resident set size (KB) = 805052 -Test 061 rrfs_conus13km_radar_tten_warm PASS +Test 061 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/rrfs_conus13km_hrrr_warm_2threads -Checking test 062 rrfs_conus13km_hrrr_warm_2threads results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/rrfs_conus13km_hrrr_warm +Checking test 062 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2484,15 +2590,15 @@ Checking test 062 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 85.693832 -The maximum resident set size (KB) = 766616 +The total amount of wall time = 140.366419 +The maximum resident set size (KB) = 783520 -Test 062 rrfs_conus13km_hrrr_warm_2threads PASS +Test 062 rrfs_conus13km_hrrr_warm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/rrfs_conus13km_radar_tten_warm_2threads -Checking test 063 rrfs_conus13km_radar_tten_warm_2threads results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/rrfs_smoke_conus13km_radar_tten_warm +Checking test 063 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2500,14 +2606,14 @@ Checking test 063 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 84.611485 -The maximum resident set size (KB) = 764124 +The total amount of wall time = 151.926363 +The maximum resident set size (KB) = 805676 -Test 063 rrfs_conus13km_radar_tten_warm_2threads PASS +Test 063 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_csawmg -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/control_csawmg +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmg +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/control_csawmg Checking test 064 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2518,14 +2624,14 @@ Checking test 064 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 349.776542 -The maximum resident set size (KB) = 592712 +The total amount of wall time = 355.115915 +The maximum resident set size (KB) = 588032 Test 064 control_csawmg PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_csawmgt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/control_csawmgt +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmgt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/control_csawmgt Checking test 065 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2536,14 +2642,14 @@ Checking test 065 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 350.311053 -The maximum resident set size (KB) = 586656 +The total amount of wall time = 355.430012 +The maximum resident set size (KB) = 585400 Test 065 control_csawmgt PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_ras -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/control_ras +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_ras +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/control_ras Checking test 066 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2554,26 +2660,26 @@ Checking test 066 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 182.978631 -The maximum resident set size (KB) = 550316 +The total amount of wall time = 185.174364 +The maximum resident set size (KB) = 549756 Test 066 control_ras PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_wam -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/control_wam +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wam +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/control_wam Checking test 067 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 118.343242 -The maximum resident set size (KB) = 271876 +The total amount of wall time = 120.240245 +The maximum resident set size (KB) = 269900 Test 067 control_wam PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/control_p8_faster +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/control_p8_faster Checking test 068 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2620,14 +2726,14 @@ Checking test 068 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 174.823621 -The maximum resident set size (KB) = 1482340 +The total amount of wall time = 177.527995 +The maximum resident set size (KB) = 1491840 Test 068 control_p8_faster PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_control_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/regional_control_faster +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/regional_control_faster Checking test 069 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2638,43 +2744,57 @@ Checking test 069 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 282.578698 -The maximum resident set size (KB) = 655408 +The total amount of wall time = 282.640440 +The maximum resident set size (KB) = 652160 Test 069 regional_control_faster PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/rrfs_conus13km_hrrr_warm_debug -Checking test 070 rrfs_conus13km_hrrr_warm_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/rrfs_smoke_conus13km_hrrr_warm_debug +Checking test 070 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 779.389356 -The maximum resident set size (KB) = 794436 +The total amount of wall time = 910.370327 +The maximum resident set size (KB) = 834032 -Test 070 rrfs_conus13km_hrrr_warm_debug PASS +Test 070 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/rrfs_conus13km_radar_tten_warm_debug -Checking test 071 rrfs_conus13km_radar_tten_warm_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +Checking test 071 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 778.011234 -The maximum resident set size (KB) = 792428 +The total amount of wall time = 542.848495 +The maximum resident set size (KB) = 836088 -Test 071 rrfs_conus13km_radar_tten_warm_debug PASS +Test 071 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_CubedSphereGrid_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/control_CubedSphereGrid_debug -Checking test 072 control_CubedSphereGrid_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/rrfs_conus13km_hrrr_warm_debug +Checking test 072 rrfs_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 826.709797 +The maximum resident set size (KB) = 814912 + +Test 072 rrfs_conus13km_hrrr_warm_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/control_CubedSphereGrid_debug +Checking test 073 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -2700,335 +2820,335 @@ Checking test 072 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 170.622529 -The maximum resident set size (KB) = 677292 +The total amount of wall time = 171.683357 +The maximum resident set size (KB) = 678856 -Test 072 control_CubedSphereGrid_debug PASS +Test 073 control_CubedSphereGrid_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/control_wrtGauss_netcdf_parallel_debug -Checking test 073 control_wrtGauss_netcdf_parallel_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/control_wrtGauss_netcdf_parallel_debug +Checking test 074 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 161.827376 -The maximum resident set size (KB) = 680404 +The total amount of wall time = 161.446154 +The maximum resident set size (KB) = 684052 -Test 073 control_wrtGauss_netcdf_parallel_debug PASS +Test 074 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_stochy_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/control_stochy_debug -Checking test 074 control_stochy_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/control_stochy_debug +Checking test 075 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 180.882856 -The maximum resident set size (KB) = 683908 +The total amount of wall time = 181.678088 +The maximum resident set size (KB) = 687904 -Test 074 control_stochy_debug PASS +Test 075 control_stochy_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/control_lndp_debug -Checking test 075 control_lndp_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/control_lndp_debug +Checking test 076 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 162.624483 -The maximum resident set size (KB) = 683416 +The total amount of wall time = 166.410254 +The maximum resident set size (KB) = 690224 -Test 075 control_lndp_debug PASS +Test 076 control_lndp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_csawmg_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/control_csawmg_debug -Checking test 076 control_csawmg_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmg_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/control_csawmg_debug +Checking test 077 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 255.208147 -The maximum resident set size (KB) = 720556 +The total amount of wall time = 266.151687 +The maximum resident set size (KB) = 721560 -Test 076 control_csawmg_debug PASS +Test 077 control_csawmg_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_csawmgt_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/control_csawmgt_debug -Checking test 077 control_csawmgt_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmgt_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/control_csawmgt_debug +Checking test 078 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 251.560393 -The maximum resident set size (KB) = 722148 +The total amount of wall time = 257.579571 +The maximum resident set size (KB) = 722300 -Test 077 control_csawmgt_debug PASS +Test 078 control_csawmgt_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_ras_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/control_ras_debug -Checking test 078 control_ras_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_ras_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/control_ras_debug +Checking test 079 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 164.267896 -The maximum resident set size (KB) = 690276 +The total amount of wall time = 172.017086 +The maximum resident set size (KB) = 693644 -Test 078 control_ras_debug PASS +Test 079 control_ras_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/control_diag_debug -Checking test 079 control_diag_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/control_diag_debug +Checking test 080 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 165.056869 -The maximum resident set size (KB) = 737728 +The total amount of wall time = 174.912161 +The maximum resident set size (KB) = 739728 -Test 079 control_diag_debug PASS +Test 080 control_diag_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_debug_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/control_debug_p8 -Checking test 080 control_debug_p8 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_debug_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/control_debug_p8 +Checking test 081 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 187.381011 -The maximum resident set size (KB) = 1501308 +The total amount of wall time = 192.919506 +The maximum resident set size (KB) = 1507092 -Test 080 control_debug_p8 PASS +Test 081 control_debug_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/regional_debug -Checking test 081 regional_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/regional_debug +Checking test 082 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1050.359991 -The maximum resident set size (KB) = 677364 +The total amount of wall time = 1046.268538 +The maximum resident set size (KB) = 682924 -Test 081 regional_debug PASS +Test 082 regional_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/rap_control_debug -Checking test 082 rap_control_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/rap_control_debug +Checking test 083 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.820212 -The maximum resident set size (KB) = 1054624 +The total amount of wall time = 301.307365 +The maximum resident set size (KB) = 1058048 -Test 082 rap_control_debug PASS +Test 083 rap_control_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/hrrr_control_debug -Checking test 083 hrrr_control_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/hrrr_control_debug +Checking test 084 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 293.218020 -The maximum resident set size (KB) = 1052768 +The total amount of wall time = 296.519790 +The maximum resident set size (KB) = 1052392 -Test 083 hrrr_control_debug PASS +Test 084 hrrr_control_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/rap_unified_drag_suite_debug -Checking test 084 rap_unified_drag_suite_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/rap_unified_drag_suite_debug +Checking test 085 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 299.293237 -The maximum resident set size (KB) = 1054308 +The total amount of wall time = 300.409690 +The maximum resident set size (KB) = 1060064 -Test 084 rap_unified_drag_suite_debug PASS +Test 085 rap_unified_drag_suite_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/rap_diag_debug -Checking test 085 rap_diag_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/rap_diag_debug +Checking test 086 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 311.583587 -The maximum resident set size (KB) = 1139820 +The total amount of wall time = 314.182438 +The maximum resident set size (KB) = 1140416 -Test 085 rap_diag_debug PASS +Test 086 rap_diag_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/rap_cires_ugwp_debug -Checking test 086 rap_cires_ugwp_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/rap_cires_ugwp_debug +Checking test 087 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 306.595533 -The maximum resident set size (KB) = 1058868 +The total amount of wall time = 308.257547 +The maximum resident set size (KB) = 1057256 -Test 086 rap_cires_ugwp_debug PASS +Test 087 rap_cires_ugwp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/rap_unified_ugwp_debug -Checking test 087 rap_unified_ugwp_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/rap_unified_ugwp_debug +Checking test 088 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 306.198964 -The maximum resident set size (KB) = 1052896 +The total amount of wall time = 308.708303 +The maximum resident set size (KB) = 1062428 -Test 087 rap_unified_ugwp_debug PASS +Test 088 rap_unified_ugwp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/rap_lndp_debug -Checking test 088 rap_lndp_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/rap_lndp_debug +Checking test 089 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.787369 -The maximum resident set size (KB) = 1058424 +The total amount of wall time = 302.225741 +The maximum resident set size (KB) = 1059708 -Test 088 rap_lndp_debug PASS +Test 089 rap_lndp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_flake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/rap_flake_debug -Checking test 089 rap_flake_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_flake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/rap_flake_debug +Checking test 090 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.564293 -The maximum resident set size (KB) = 1057912 +The total amount of wall time = 300.116603 +The maximum resident set size (KB) = 1061028 -Test 089 rap_flake_debug PASS +Test 090 rap_flake_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_progcld_thompson_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/rap_progcld_thompson_debug -Checking test 090 rap_progcld_thompson_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_progcld_thompson_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/rap_progcld_thompson_debug +Checking test 091 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 299.661142 -The maximum resident set size (KB) = 1056828 +The total amount of wall time = 300.017685 +The maximum resident set size (KB) = 1060252 -Test 090 rap_progcld_thompson_debug PASS +Test 091 rap_progcld_thompson_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_noah_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/rap_noah_debug -Checking test 091 rap_noah_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_noah_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/rap_noah_debug +Checking test 092 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 292.850484 -The maximum resident set size (KB) = 1053004 +The total amount of wall time = 297.239231 +The maximum resident set size (KB) = 1061000 -Test 091 rap_noah_debug PASS +Test 092 rap_noah_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_sfcdiff_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/rap_sfcdiff_debug -Checking test 092 rap_sfcdiff_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/rap_sfcdiff_debug +Checking test 093 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.375191 -The maximum resident set size (KB) = 1056856 +The total amount of wall time = 302.541280 +The maximum resident set size (KB) = 1059472 -Test 092 rap_sfcdiff_debug PASS +Test 093 rap_sfcdiff_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 093 rap_noah_sfcdiff_cires_ugwp_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 094 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 487.965762 -The maximum resident set size (KB) = 1054068 +The total amount of wall time = 495.385998 +The maximum resident set size (KB) = 1057532 -Test 093 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 094 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rrfs_v1beta_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/rrfs_v1beta_debug -Checking test 094 rrfs_v1beta_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1beta_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/rrfs_v1beta_debug +Checking test 095 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 294.638550 -The maximum resident set size (KB) = 1053464 +The total amount of wall time = 295.098273 +The maximum resident set size (KB) = 1050300 -Test 094 rrfs_v1beta_debug PASS +Test 095 rrfs_v1beta_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_wam_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/control_wam_debug -Checking test 095 control_wam_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wam_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/control_wam_debug +Checking test 096 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 302.061754 -The maximum resident set size (KB) = 304840 +The total amount of wall time = 300.027348 +The maximum resident set size (KB) = 305500 -Test 095 control_wam_debug PASS +Test 096 control_wam_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/regional_spp_sppt_shum_skeb_dyn32_phy32 -Checking test 096 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 097 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -3038,15 +3158,15 @@ Checking test 096 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 272.895470 -The maximum resident set size (KB) = 877048 +The total amount of wall time = 277.190209 +The maximum resident set size (KB) = 891860 -Test 096 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS +Test 097 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/rap_control_dyn32_phy32 -Checking test 097 rap_control_dyn32_phy32 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/rap_control_dyn32_phy32 +Checking test 098 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3092,15 +3212,15 @@ Checking test 097 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 342.034660 -The maximum resident set size (KB) = 775612 +The total amount of wall time = 342.913102 +The maximum resident set size (KB) = 773136 -Test 097 rap_control_dyn32_phy32 PASS +Test 098 rap_control_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/hrrr_control_dyn32_phy32 -Checking test 098 hrrr_control_dyn32_phy32 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/hrrr_control_dyn32_phy32 +Checking test 099 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3146,15 +3266,15 @@ Checking test 098 hrrr_control_dyn32_phy32 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 = 184.326409 -The maximum resident set size (KB) = 770924 +The total amount of wall time = 185.563438 +The maximum resident set size (KB) = 778876 -Test 098 hrrr_control_dyn32_phy32 PASS +Test 099 hrrr_control_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/rap_2threads_dyn32_phy32 -Checking test 099 rap_2threads_dyn32_phy32 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/rap_2threads_dyn32_phy32 +Checking test 100 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3200,15 +3320,15 @@ Checking test 099 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 320.619707 -The maximum resident set size (KB) = 828128 +The total amount of wall time = 323.448709 +The maximum resident set size (KB) = 837352 -Test 099 rap_2threads_dyn32_phy32 PASS +Test 100 rap_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/hrrr_control_2threads_dyn32_phy32 -Checking test 100 hrrr_control_2threads_dyn32_phy32 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/hrrr_control_2threads_dyn32_phy32 +Checking test 101 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3254,15 +3374,15 @@ Checking test 100 hrrr_control_2threads_dyn32_phy32 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 = 174.555155 -The maximum resident set size (KB) = 828888 +The total amount of wall time = 175.325500 +The maximum resident set size (KB) = 833056 -Test 100 hrrr_control_2threads_dyn32_phy32 PASS +Test 101 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/hrrr_control_decomp_dyn32_phy32 -Checking test 101 hrrr_control_decomp_dyn32_phy32 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/hrrr_control_decomp_dyn32_phy32 +Checking test 102 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3308,15 +3428,15 @@ Checking test 101 hrrr_control_decomp_dyn32_phy32 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 = 192.112082 -The maximum resident set size (KB) = 774088 +The total amount of wall time = 194.207231 +The maximum resident set size (KB) = 778416 -Test 101 hrrr_control_decomp_dyn32_phy32 PASS +Test 102 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/rap_restart_dyn32_phy32 -Checking test 102 rap_restart_dyn32_phy32 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/rap_restart_dyn32_phy32 +Checking test 103 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3354,15 +3474,15 @@ Checking test 102 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 257.212687 -The maximum resident set size (KB) = 613576 +The total amount of wall time = 268.370225 +The maximum resident set size (KB) = 611816 -Test 102 rap_restart_dyn32_phy32 PASS +Test 103 rap_restart_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/hrrr_control_restart_dyn32_phy32 -Checking test 103 hrrr_control_restart_dyn32_phy32 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/hrrr_control_restart_dyn32_phy32 +Checking test 104 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3400,15 +3520,15 @@ Checking test 103 hrrr_control_restart_dyn32_phy32 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 = 97.247481 -The maximum resident set size (KB) = 606704 +The total amount of wall time = 96.827810 +The maximum resident set size (KB) = 609992 -Test 103 hrrr_control_restart_dyn32_phy32 PASS +Test 104 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/rap_control_dyn64_phy32 -Checking test 104 rap_control_dyn64_phy32 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/rap_control_dyn64_phy32 +Checking test 105 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3454,82 +3574,82 @@ Checking test 104 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -The total amount of wall time = 234.067790 -The maximum resident set size (KB) = 796744 +The total amount of wall time = 233.629255 +The maximum resident set size (KB) = 800556 -Test 104 rap_control_dyn64_phy32 PASS +Test 105 rap_control_dyn64_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/rap_control_debug_dyn32_phy32 -Checking test 105 rap_control_debug_dyn32_phy32 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/rap_control_debug_dyn32_phy32 +Checking test 106 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 296.426884 -The maximum resident set size (KB) = 940436 +The total amount of wall time = 295.981719 +The maximum resident set size (KB) = 940304 -Test 105 rap_control_debug_dyn32_phy32 PASS +Test 106 rap_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/hrrr_control_debug_dyn32_phy32 -Checking test 106 hrrr_control_debug_dyn32_phy32 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/hrrr_control_debug_dyn32_phy32 +Checking test 107 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 290.453789 -The maximum resident set size (KB) = 940824 +The total amount of wall time = 292.810633 +The maximum resident set size (KB) = 938180 -Test 106 hrrr_control_debug_dyn32_phy32 PASS +Test 107 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/rap_control_dyn64_phy32_debug -Checking test 107 rap_control_dyn64_phy32_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/rap_control_dyn64_phy32_debug +Checking test 108 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 294.045912 -The maximum resident set size (KB) = 958036 +The total amount of wall time = 298.244966 +The maximum resident set size (KB) = 960316 -Test 107 rap_control_dyn64_phy32_debug PASS +Test 108 rap_control_dyn64_phy32_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/hafs_regional_atm -Checking test 108 hafs_regional_atm results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/hafs_regional_atm +Checking test 109 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 267.320309 -The maximum resident set size (KB) = 821924 +The total amount of wall time = 272.128314 +The maximum resident set size (KB) = 828668 -Test 108 hafs_regional_atm PASS +Test 109 hafs_regional_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/hafs_regional_atm_thompson_gfdlsf -Checking test 109 hafs_regional_atm_thompson_gfdlsf results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/hafs_regional_atm_thompson_gfdlsf +Checking test 110 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 319.824944 -The maximum resident set size (KB) = 1186600 +The total amount of wall time = 327.512092 +The maximum resident set size (KB) = 1181116 -Test 109 hafs_regional_atm_thompson_gfdlsf PASS +Test 110 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/hafs_regional_atm_ocn -Checking test 110 hafs_regional_atm_ocn results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/hafs_regional_atm_ocn +Checking test 111 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -3537,15 +3657,15 @@ Checking test 110 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 390.933712 -The maximum resident set size (KB) = 854716 +The total amount of wall time = 395.825633 +The maximum resident set size (KB) = 856420 -Test 110 hafs_regional_atm_ocn PASS +Test 111 hafs_regional_atm_ocn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_atm_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/hafs_regional_atm_wav -Checking test 111 hafs_regional_atm_wav results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/hafs_regional_atm_wav +Checking test 112 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK @@ -3553,15 +3673,15 @@ Checking test 111 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 703.631462 -The maximum resident set size (KB) = 887464 +The total amount of wall time = 707.603854 +The maximum resident set size (KB) = 888112 -Test 111 hafs_regional_atm_wav PASS +Test 112 hafs_regional_atm_wav PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/hafs_regional_atm_ocn_wav -Checking test 112 hafs_regional_atm_ocn_wav results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/hafs_regional_atm_ocn_wav +Checking test 113 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -3571,29 +3691,29 @@ Checking test 112 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 886.794430 -The maximum resident set size (KB) = 911912 +The total amount of wall time = 891.243057 +The maximum resident set size (KB) = 912564 -Test 112 hafs_regional_atm_ocn_wav PASS +Test 113 hafs_regional_atm_ocn_wav PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/hafs_regional_1nest_atm -Checking test 113 hafs_regional_1nest_atm results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/hafs_regional_1nest_atm +Checking test 114 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 329.721198 -The maximum resident set size (KB) = 390272 +The total amount of wall time = 328.790677 +The maximum resident set size (KB) = 391156 -Test 113 hafs_regional_1nest_atm PASS +Test 114 hafs_regional_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/hafs_regional_telescopic_2nests_atm -Checking test 114 hafs_regional_telescopic_2nests_atm results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/hafs_regional_telescopic_2nests_atm +Checking test 115 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -3601,29 +3721,29 @@ Checking test 114 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 397.631275 -The maximum resident set size (KB) = 411412 +The total amount of wall time = 400.048825 +The maximum resident set size (KB) = 413656 -Test 114 hafs_regional_telescopic_2nests_atm PASS +Test 115 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_global_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/hafs_global_1nest_atm -Checking test 115 hafs_global_1nest_atm results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/hafs_global_1nest_atm +Checking test 116 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 166.851870 -The maximum resident set size (KB) = 287644 +The total amount of wall time = 168.260213 +The maximum resident set size (KB) = 273844 -Test 115 hafs_global_1nest_atm PASS +Test 116 hafs_global_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_global_multiple_4nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/hafs_global_multiple_4nests_atm -Checking test 116 hafs_global_multiple_4nests_atm results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_multiple_4nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/hafs_global_multiple_4nests_atm +Checking test 117 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -3640,15 +3760,15 @@ Checking test 116 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -The total amount of wall time = 485.720854 -The maximum resident set size (KB) = 341172 +The total amount of wall time = 494.932604 +The maximum resident set size (KB) = 340704 -Test 116 hafs_global_multiple_4nests_atm PASS +Test 117 hafs_global_multiple_4nests_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/hafs_regional_specified_moving_1nest_atm -Checking test 117 hafs_regional_specified_moving_1nest_atm results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/hafs_regional_specified_moving_1nest_atm +Checking test 118 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -3656,29 +3776,29 @@ Checking test 117 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 213.117344 -The maximum resident set size (KB) = 408312 +The total amount of wall time = 218.326619 +The maximum resident set size (KB) = 406200 -Test 117 hafs_regional_specified_moving_1nest_atm PASS +Test 118 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/hafs_regional_storm_following_1nest_atm -Checking test 118 hafs_regional_storm_following_1nest_atm results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/hafs_regional_storm_following_1nest_atm +Checking test 119 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 200.604306 -The maximum resident set size (KB) = 405568 +The total amount of wall time = 203.001149 +The maximum resident set size (KB) = 405772 -Test 118 hafs_regional_storm_following_1nest_atm PASS +Test 119 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/hafs_regional_storm_following_1nest_atm_ocn -Checking test 119 hafs_regional_storm_following_1nest_atm_ocn results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/hafs_regional_storm_following_1nest_atm_ocn +Checking test 120 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -3686,43 +3806,43 @@ Checking test 119 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 242.614113 -The maximum resident set size (KB) = 455260 +The total amount of wall time = 249.262939 +The maximum resident set size (KB) = 455032 -Test 119 hafs_regional_storm_following_1nest_atm_ocn PASS +Test 120 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/hafs_global_storm_following_1nest_atm -Checking test 120 hafs_global_storm_following_1nest_atm results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/hafs_global_storm_following_1nest_atm +Checking test 121 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 80.247349 -The maximum resident set size (KB) = 281120 +The total amount of wall time = 87.111417 +The maximum resident set size (KB) = 284512 -Test 120 hafs_global_storm_following_1nest_atm PASS +Test 121 hafs_global_storm_following_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/hafs_regional_storm_following_1nest_atm_ocn_debug -Checking test 121 hafs_regional_storm_following_1nest_atm_ocn_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/hafs_regional_storm_following_1nest_atm_ocn_debug +Checking test 122 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 803.930232 -The maximum resident set size (KB) = 481632 +The total amount of wall time = 802.521475 +The maximum resident set size (KB) = 477780 -Test 121 hafs_regional_storm_following_1nest_atm_ocn_debug PASS +Test 122 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/hafs_regional_storm_following_1nest_atm_ocn_wav -Checking test 122 hafs_regional_storm_following_1nest_atm_ocn_wav results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 123 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -3732,15 +3852,15 @@ Checking test 122 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -The total amount of wall time = 525.960825 -The maximum resident set size (KB) = 523712 +The total amount of wall time = 537.025823 +The maximum resident set size (KB) = 525416 -Test 122 hafs_regional_storm_following_1nest_atm_ocn_wav PASS +Test 123 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/control_p8_atmlnd_sbs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/control_p8_atmlnd_sbs -Checking test 123 control_p8_atmlnd_sbs results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_atmlnd_sbs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/control_p8_atmlnd_sbs +Checking test 124 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3824,15 +3944,15 @@ Checking test 123 control_p8_atmlnd_sbs 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 = 236.180594 -The maximum resident set size (KB) = 1538712 +The total amount of wall time = 243.494755 +The maximum resident set size (KB) = 1536508 -Test 123 control_p8_atmlnd_sbs PASS +Test 124 control_p8_atmlnd_sbs PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/atmaero_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/atmaero_control_p8 -Checking test 124 atmaero_control_p8 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/atmaero_control_p8 +Checking test 125 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3875,15 +3995,15 @@ Checking test 124 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 250.448915 -The maximum resident set size (KB) = 2816016 +The total amount of wall time = 261.527618 +The maximum resident set size (KB) = 2819700 -Test 124 atmaero_control_p8 PASS +Test 125 atmaero_control_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/atmaero_control_p8_rad -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/atmaero_control_p8_rad -Checking test 125 atmaero_control_p8_rad results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8_rad +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/atmaero_control_p8_rad +Checking test 126 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3926,15 +4046,15 @@ Checking test 125 atmaero_control_p8_rad results .... 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.526541 -The maximum resident set size (KB) = 2880424 +The total amount of wall time = 301.046036 +The maximum resident set size (KB) = 2884840 -Test 125 atmaero_control_p8_rad PASS +Test 126 atmaero_control_p8_rad PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/atmaero_control_p8_rad_micro -Checking test 126 atmaero_control_p8_rad_micro results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8_rad_micro +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/atmaero_control_p8_rad_micro +Checking test 127 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3977,15 +4097,15 @@ Checking test 126 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 294.417589 -The maximum resident set size (KB) = 2889216 +The total amount of wall time = 293.214717 +The maximum resident set size (KB) = 2889372 -Test 126 atmaero_control_p8_rad_micro PASS +Test 127 atmaero_control_p8_rad_micro PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_atmaq -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/regional_atmaq -Checking test 127 regional_atmaq results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/regional_atmaq +Checking test 128 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -4000,15 +4120,15 @@ Checking test 127 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 691.355768 -The maximum resident set size (KB) = 1256048 +The total amount of wall time = 702.936574 +The maximum resident set size (KB) = 1266480 -Test 127 regional_atmaq PASS +Test 128 regional_atmaq PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_atmaq_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/regional_atmaq_debug -Checking test 128 regional_atmaq_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/regional_atmaq_debug +Checking test 129 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -4021,15 +4141,15 @@ Checking test 128 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1335.775221 -The maximum resident set size (KB) = 1302324 +The total amount of wall time = 1366.963535 +The maximum resident set size (KB) = 1303724 -Test 128 regional_atmaq_debug PASS +Test 129 regional_atmaq_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/regional_atmaq_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_29631/regional_atmaq_faster -Checking test 129 regional_atmaq_faster results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/regional_atmaq_faster +Checking test 130 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -4044,91 +4164,12 @@ Checking test 129 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 635.716364 -The maximum resident set size (KB) = 1255156 - -Test 129 regional_atmaq_faster PASS - -FAILED TESTS: -Test compile_004 failed in run_compile failed - -REGRESSION TEST FAILED -Thu Mar 23 18:33:01 UTC 2023 -Elapsed time: 00h:59m:52s. Have a nice day! -Thu Mar 23 18:51:23 UTC 2023 -Start Regression test - -Compile 001 elapsed time 566 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230321/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_112870/cpld_control_noaero_p8_agrid -Checking test 001 cpld_control_noaero_p8_agrid results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - -The total amount of wall time = 304.630525 -The maximum resident set size (KB) = 1620096 +The total amount of wall time = 649.688354 +The maximum resident set size (KB) = 1259548 -Test 001 cpld_control_noaero_p8_agrid PASS +Test 130 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Thu Mar 23 19:09:52 UTC 2023 -Elapsed time: 00h:18m:29s. Have a nice day! +Sun Mar 26 21:05:52 UTC 2023 +Elapsed time: 01h:03m:07s. Have a nice day! diff --git a/tests/default_vars.sh b/tests/default_vars.sh index 29a3023bd9b..f49ab1ef714 100755 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -377,6 +377,7 @@ export NSSL_INVERTCCN=.true. # Smoke export RRFS_SMOKE=.false. +export SMOKE_FORECAST=0 export RRFS_RESTART=NO export SEAS_OPT=2 @@ -761,6 +762,7 @@ export DNATS=2 export IMP_PHYSICS=8 export LGFDLMPRAD=.false. export DO_SAT_ADJ=.false. +export SATMEDMF=.true. # P7 default mushy thermo export KTHERM=2 diff --git a/tests/fv3_conf/rrfs_warm_run.IN b/tests/fv3_conf/rrfs_warm_run.IN index 966f17dfa61..36ac44f18f6 100644 --- a/tests/fv3_conf/rrfs_warm_run.IN +++ b/tests/fv3_conf/rrfs_warm_run.IN @@ -4,29 +4,29 @@ mkdir INPUT RESTART OPNREQ_TEST=${OPNREQ_TEST:-false} SUFFIX=${RT_SUFFIX} +cp -r @[INPUTDATA_ROOT]/FV3_input_data_conus13km/INPUT/* INPUT/ + if [[ "${RRFS_RESTART:-NO}" == YES ]] ; then - # cp -r ../${DEP_RUN}${SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.* ./INPUT - # rm -f INPUT/fv_core.res.* - # rm -f INPUT/fv_srf_wnd.res.* - # rm -f INPUT/fv_tracer.res.* - # rm -f INPUT/phy_data.* - # rm -f INPUT/sfc_data.* - cp @[INPUTDATA_ROOT]/FV3_input_data_conus13km/INPUT/grid_spec.nc INPUT/. - cp @[INPUTDATA_ROOT]/FV3_input_data_conus13km/INPUT/*_grid.tile*.nc INPUT/. - cp @[INPUTDATA_ROOT]/FV3_input_data_conus13km/INPUT/oro_data*.nc INPUT/. + cp -r ../${DEP_RUN}${SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.* ./INPUT + rm -f INPUT/fv_core.res.* + rm -f INPUT/fv_srf_wnd.res.* + rm -f INPUT/fv_tracer.res.* + rm -f INPUT/phy_data.* + rm -f INPUT/sfc_data.* + # cp @[INPUTDATA_ROOT]/FV3_input_data_conus13km/INPUT/grid_spec.nc INPUT/. + # cp @[INPUTDATA_ROOT]/FV3_input_data_conus13km/INPUT/*_grid.tile*.nc INPUT/. + # cp @[INPUTDATA_ROOT]/FV3_input_data_conus13km/INPUT/oro_data*.nc INPUT/. for RFILE in ../${DEP_RUN}${SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.*; do [ -e $RFILE ] || exit 1 RFILE_OLD=$(basename $RFILE) RFILE_NEW="${RFILE_OLD//${RESTART_FILE_PREFIX}./}" cp $RFILE "INPUT/$RFILE_NEW" done - for x in emi_data.nc SMOKE_GBBEPx_data.nc dust12m_data.nc gfs_ctrl.nc gfs_data.nc \ - grid.tile7.halo4.nc ; do - cp @[INPUTDATA_ROOT]/FV3_input_data_conus13km/INPUT/$x INPUT/. - done - cp @[INPUTDATA_ROOT]/FV3_input_data_conus13km/INPUT/gfs_bndy.* INPUT/. -else - cp -r @[INPUTDATA_ROOT]/FV3_input_data_conus13km/INPUT/* INPUT/ + # for x in emi_data.nc SMOKE_RRFS_data.nc dust12m_data.nc gfs_ctrl.nc gfs_data.nc \ + # grid.tile7.halo4.nc SMOKE_GBBEPx_data.nc ; do + # cp @[INPUTDATA_ROOT]/FV3_input_data_conus13km/INPUT/$x INPUT/. + # done + # cp @[INPUTDATA_ROOT]/FV3_input_data_conus13km/INPUT/gfs_bndy.* INPUT/. fi for x in global_glacier.2x2.grb global_h2oprdlos.f77 global_maxice.2x2.grb \ @@ -35,6 +35,7 @@ for x in global_glacier.2x2.grb global_h2oprdlos.f77 global_maxice.2x2.grb \ cp -f @[INPUTDATA_ROOT]/FV3_fix/"$x" . done +cp @[INPUTDATA_ROOT]/FV3_aeroclim/* . cp @[INPUTDATA_ROOT]/FV3_input_data/global_soilmgldas.t126.384.190.grb . cp @[INPUTDATA_ROOT]/FV3_fix/seaice_newland.grb . diff --git a/tests/parm/cpld_control.nml.IN b/tests/parm/cpld_control.nml.IN index 5658f8e3e89..e76b6f2ff0d 100644 --- a/tests/parm/cpld_control.nml.IN +++ b/tests/parm/cpld_control.nml.IN @@ -129,7 +129,7 @@ deflate_level=1 oz_phys = .false. oz_phys_2015 = .true. lsoil_lsm = 4 - do_mynnedmf = .false. + do_mynnedmf = @[DO_MYNNEDMF] do_mynnsfclay = .false. icloud_bl = 1 bl_mynn_edmf = 1 @@ -163,12 +163,12 @@ deflate_level=1 lwhtr = .true. swhtr = .true. cnvgwd = .true. - shal_cnv = .true. + shal_cnv = @[SHAL_CNV] cal_pre = .false. redrag = .true. dspheat = .true. hybedmf = .false. - satmedmf = .true. + satmedmf = @[SATMEDMF] isatmedmf = 1 lheatstrg = @[LHEATSTRG] lseaspray = @[LSEASPRAY] diff --git a/tests/parm/diag_table/diag_additional_rrfs_smoke b/tests/parm/diag_table/diag_additional_rrfs_smoke index 963f14f8761..57776ece282 100644 --- a/tests/parm/diag_table/diag_additional_rrfs_smoke +++ b/tests/parm/diag_table/diag_additional_rrfs_smoke @@ -19,3 +19,5 @@ "gfs_phys", "ebu_smoke", "ebu_smoke", "fv3_history", "all", .false., "none", 2 "gfs_phys", "smoke_ext", "smoke_ext", "fv3_history", "all", .false., "none", 2 "gfs_phys", "dust_ext", "dust_ext", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "coarsepm", "coarsepm", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "ext550", "ext550", "fv3_history", "all", .false., "none", 2 diff --git a/tests/parm/field_table/field_table_thompson_aero_tke_smoke b/tests/parm/field_table/field_table_thompson_aero_tke_smoke index 59d4faabed2..d344dae4a79 100644 --- a/tests/parm/field_table/field_table_thompson_aero_tke_smoke +++ b/tests/parm/field_table/field_table_thompson_aero_tke_smoke @@ -73,3 +73,8 @@ "longname", "dust mixing ratio" "units", "ug/kg" "profile_type", "fixed", "surface_value=1.e-7" / +# prognostic coarsepm mixing ratio tracer + "TRACER", "atmos_mod", "coarsepm" + "longname", "coarsepm mixing ratio" + "units", "ug/kg" + "profile_type", "fixed", "surface_value=1.e-7" / diff --git a/tests/parm/rrfs_conus13km_hrrr.nml.IN b/tests/parm/rrfs_conus13km_hrrr.nml.IN index 53892406120..bbcc30e1849 100644 --- a/tests/parm/rrfs_conus13km_hrrr.nml.IN +++ b/tests/parm/rrfs_conus13km_hrrr.nml.IN @@ -143,21 +143,25 @@ bl_mynn_edmf = 1 bl_mynn_edmf_mom = 1 bl_mynn_tkeadvect = .true. - rrfs_smoke = @[RRFS_SMOKE] + rrfs_sd = @[RRFS_SMOKE] rrfs_smoke_debug = .false. seas_opt = @[SEAS_OPT] mix_chem = @[RRFS_SMOKE] - fire_turb = @[RRFS_SMOKE] + enh_mix = @[RRFS_SMOKE] dust_opt = 5 drydep_opt = 1 - smoke_forecast = @[RRFS_SMOKE] + coarsepm_settling = 1 + smoke_forecast = @[SMOKE_FORECAST] aero_ind_fdb = .false. aero_dir_fdb = .false. addsmoke_flag = 1 - biomass_burn_opt = 1 wetdep_ls_opt = 1 do_plumerise = @[RRFS_SMOKE] plumerisefire_frq = 60 + dust_alpha = 0.01 + dust_gamma = 1.3 + wetdep_ls_alpha = 0.5 + smoke_dir_fdb_coef = 0.33, 0.67, 0.02, 0.13, 0.85, 0.05, 0.95 cal_pre = .false. cdmbgwd = @[CDMBWD] cnvcld = .false. diff --git a/tests/rt.conf b/tests/rt.conf index 48e3c569aa4..1547e551da5 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -46,7 +46,7 @@ RUN | cpld_control_p8_faster # ATM tests # ################################################################################################################################################################################### -COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON | | fv3 | +COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON | | fv3 | RUN | control_CubedSphereGrid | | fv3 | RUN | control_CubedSphereGrid_parallel | - wcoss2.intel acorn.intel | fv3 | RUN | control_latlon | | fv3 | @@ -68,6 +68,7 @@ RUN | control_decomp_p8 RUN | control_2threads_p8 | | | RUN | control_p8_rrtmgp | | fv3 | +RUN | control_p8_mynn | | fv3 | RUN | merra2_thompson | | fv3 | @@ -85,8 +86,7 @@ RUN | regional_ifi_control RUN | regional_ifi_decomp | + acorn.intel | | RUN | regional_ifi_2threads | + acorn.intel | | - -COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON | | fv3 | +COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON | | fv3 | RUN | rap_control | | fv3 | RUN | regional_spp_sppt_shum_skeb | | fv3 | @@ -104,20 +104,14 @@ RUN | rrfs_v1beta RUN | rrfs_v1nssl | | fv3 | RUN | rrfs_v1nssl_nohailnoccn | | fv3 | -RUN | rrfs_conus13km_hrrr_warm | | fv3 | RUN | rrfs_smoke_conus13km_hrrr_warm | | fv3 | -RUN | rrfs_conus13km_radar_tten_warm | | fv3 | - -# These do not match the control yet: -# RUN | rrfs_conus13km_hrrr_warm_decomp | | | -# RUN | rrfs_conus13km_radar_tten_warm_decomp | | | - -RUN | rrfs_conus13km_hrrr_warm_2threads | | | -RUN | rrfs_conus13km_radar_tten_warm_2threads | | | +RUN | rrfs_smoke_conus13km_hrrr_warm_2threads | | | +RUN | rrfs_conus13km_hrrr_warm | | fv3 | +RUN | rrfs_smoke_conus13km_radar_tten_warm | | fv3 | -# These do not match the control yet: -# RUN | rrfs_conus13km_hrrr_warm_restart | | | rrfs_conus13km_hrrr_warm -# RUN | rrfs_conus13km_radar_tten_warm_restart | | | rrfs_conus13km_radar_tten_warm +# These two should run and not crash, but they do not match their baselines: +#RUN | rrfs_smoke_conus13km_hrrr_warm_decomp | | | +#RUN | rrfs_smoke_conus13km_hrrr_warm_restart | | | rrfs_smoke_conus13km_hrrr_warm COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp | | fv3 | RUN | control_csawmg | - gaea.intel | fv3 | @@ -138,8 +132,11 @@ RUN | regional_control_faster COMPILE | -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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta | | fv3 | +RUN | rrfs_smoke_conus13km_hrrr_warm_debug | | fv3 | +RUN | rrfs_smoke_conus13km_hrrr_warm_debug_2threads | | | RUN | rrfs_conus13km_hrrr_warm_debug | | fv3 | -RUN | rrfs_conus13km_radar_tten_warm_debug | | fv3 | +# This should run and not crash, but does not match its baseline +#RUN | rrfs_smoke_conus13km_hrrr_warm_debug_decomp | | | RUN | control_CubedSphereGrid_debug | | fv3 | RUN | control_wrtGauss_netcdf_parallel_debug | | fv3 | diff --git a/tests/rt.sh b/tests/rt.sh index 5a8babff546..7b88a8d220e 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -446,7 +446,7 @@ if [[ $TESTS_FILE =~ '35d' ]] || [[ $TESTS_FILE =~ 'weekly' ]]; then fi -BL_DATE=20230321 +BL_DATE=20230324 RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-${BL_DATE}/${RT_COMPILER^^}} diff --git a/tests/rt_gnu.conf b/tests/rt_gnu.conf index 081f88dccab..a0e5bfff583 100644 --- a/tests/rt_gnu.conf +++ b/tests/rt_gnu.conf @@ -9,7 +9,7 @@ RUN | control_stochy RUN | control_ras | | fv3 | RUN | control_p8 | | fv3 | -COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON | | fv3 | +COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON | | fv3 | RUN | rap_control | | fv3 | RUN | rap_decomp | | | @@ -24,15 +24,14 @@ RUN | hrrr_control_decomp RUN | hrrr_control_restart | | | hrrr_control RUN | rrfs_v1beta | | fv3 | -RUN | rrfs_conus13km_hrrr_warm | | fv3 | -RUN | rrfs_smoke_conus13km_hrrr_warm | | fv3 | +RUN | rrfs_smoke_conus13km_hrrr_warm | | fv3 | +RUN | rrfs_smoke_conus13km_hrrr_warm_2threads | | | +RUN | rrfs_conus13km_hrrr_warm | | fv3 | +RUN | rrfs_smoke_conus13km_radar_tten_warm | | fv3 | -RUN | rrfs_conus13km_radar_tten_warm | | fv3 | -RUN | rrfs_conus13km_radar_tten_warm_2threads | | | - -# These two are known to not match the control: -#RUN | rrfs_conus13km_radar_tten_warm_decomp | | | -#RUN | rrfs_conus13km_radar_tten_warm_restart | | | rrfs_conus13km_radar_tten_warm +# These two will run and not crash, but they do not match their baselines: +#RUN | rrfs_smoke_conus13km_hrrr_warm_decomp | | | +#RUN | rrfs_smoke_conus13km_hrrr_warm_restart | | | rrfs_smoke_conus13km_hrrr_warm ################################################################################################################################################################## # CCPP DEBUG tests # @@ -52,8 +51,11 @@ RUN | control_ras_debug RUN | control_stochy_debug | | fv3 | RUN | control_debug_p8 | | fv3 | -RUN | rrfs_conus13km_hrrr_warm_debug | | fv3 | -RUN | rrfs_conus13km_radar_tten_warm_debug | | fv3 | +RUN | rrfs_smoke_conus13km_hrrr_warm_debug | | fv3 | +RUN | rrfs_smoke_conus13km_hrrr_warm_debug_2threads | | | +RUN | rrfs_conus13km_hrrr_warm_debug | | fv3 | +# This will run and not crash, but will not match its baseline: +#RUN | rrfs_smoke_conus13km_hrrr_warm_debug_decomp | | | COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON | | fv3 | RUN | control_wam_debug | | fv3 | diff --git a/tests/tests/atmaero_control_p8 b/tests/tests/atmaero_control_p8 index 7aeadd3a805..201df08441b 100644 --- a/tests/tests/atmaero_control_p8 +++ b/tests/tests/atmaero_control_p8 @@ -180,6 +180,8 @@ export DOGP_CLDOPTICS_LUT=.true. export DOGP_LWSCAT=.true. export DOGP_SGS_CNV=.true. +export SATMEDMF=.true. + if [[ $MACHINE_ID = cheyenne.* ]]; then TPN=18 fi diff --git a/tests/tests/atmaero_control_p8_rad b/tests/tests/atmaero_control_p8_rad index 25dbab9d51b..610edaed7b4 100644 --- a/tests/tests/atmaero_control_p8_rad +++ b/tests/tests/atmaero_control_p8_rad @@ -175,6 +175,8 @@ export DOGP_CLDOPTICS_LUT=.true. export DOGP_LWSCAT=.true. export DOGP_SGS_CNV=.true. +export SATMEDMF=.true. + if [[ $MACHINE_ID = cheyenne.* ]]; then TPN=18 fi diff --git a/tests/tests/control_2threads_p8 b/tests/tests/control_2threads_p8 index a58604d78d2..c9aa8189f3e 100644 --- a/tests/tests/control_2threads_p8 +++ b/tests/tests/control_2threads_p8 @@ -166,3 +166,5 @@ export DO_RRTMGP=.false. export DOGP_CLDOPTICS_LUT=.true. export DOGP_LWSCAT=.true. export DOGP_SGS_CNV=.true. + +export SATMEDMF=.true. \ No newline at end of file diff --git a/tests/tests/control_debug_p8 b/tests/tests/control_debug_p8 index 7f1086264af..0aa6908f870 100644 --- a/tests/tests/control_debug_p8 +++ b/tests/tests/control_debug_p8 @@ -128,6 +128,8 @@ export DOGP_CLDOPTICS_LUT=.true. export DOGP_LWSCAT=.true. export DOGP_SGS_CNV=.true. +export SATMEDMF=.true. + if [[ $MACHINE_ID = cheyenne.* ]]; then TPN=18 fi diff --git a/tests/tests/control_decomp_p8 b/tests/tests/control_decomp_p8 index 0abd2799a4c..c51d9df4dfb 100644 --- a/tests/tests/control_decomp_p8 +++ b/tests/tests/control_decomp_p8 @@ -167,6 +167,8 @@ export DOGP_CLDOPTICS_LUT=.true. export DOGP_LWSCAT=.true. export DOGP_SGS_CNV=.true. +export SATMEDMF=.true. + if [[ $MACHINE_ID = cheyenne.* ]]; then TPN=18 fi diff --git a/tests/tests/control_p8 b/tests/tests/control_p8 index 25770313eb5..09e81212ded 100644 --- a/tests/tests/control_p8 +++ b/tests/tests/control_p8 @@ -168,6 +168,8 @@ export DOGP_CLDOPTICS_LUT=.true. export DOGP_LWSCAT=.true. export DOGP_SGS_CNV=.true. +export SATMEDMF=.true. + if [[ $MACHINE_ID = cheyenne.* ]]; then TPN=18 fi diff --git a/tests/tests/control_p8_atmlnd_sbs b/tests/tests/control_p8_atmlnd_sbs index aec8541a8c7..af4faf6290c 100644 --- a/tests/tests/control_p8_atmlnd_sbs +++ b/tests/tests/control_p8_atmlnd_sbs @@ -206,6 +206,8 @@ export DOGP_CLDOPTICS_LUT=.true. export DOGP_LWSCAT=.true. export DOGP_SGS_CNV=.true. +export SATMEDMF=.true. + if [[ $MACHINE_ID = cheyenne.* ]]; then TPN=18 fi diff --git a/tests/tests/control_p8_faster b/tests/tests/control_p8_faster index 61be0575c87..60f0730f286 100644 --- a/tests/tests/control_p8_faster +++ b/tests/tests/control_p8_faster @@ -168,6 +168,8 @@ export DOGP_CLDOPTICS_LUT=.true. export DOGP_LWSCAT=.true. export DOGP_SGS_CNV=.true. +export SATMEDMF=.true. + if [[ $MACHINE_ID = cheyenne.* ]]; then TPN=18 fi diff --git a/tests/tests/control_p8_lndp b/tests/tests/control_p8_lndp index e9f969901ad..6c7e1c7ff24 100644 --- a/tests/tests/control_p8_lndp +++ b/tests/tests/control_p8_lndp @@ -146,6 +146,8 @@ export DOGP_CLDOPTICS_LUT=.true. export DOGP_LWSCAT=.true. export DOGP_SGS_CNV=.true. +export SATMEDMF=.true. + if [[ $MACHINE_ID = cheyenne.* ]]; then TPN=18 fi diff --git a/tests/tests/control_p8_mynn b/tests/tests/control_p8_mynn new file mode 100644 index 00000000000..c1383b39c3f --- /dev/null +++ b/tests/tests/control_p8_mynn @@ -0,0 +1,177 @@ +############################################################################### +# +# Global control test GFSv16 atmosphere only at C96L127, P8 + MYNN configuration +# +############################################################################### + +export TEST_DESCR="Compare global control results with previous trunk version" + +export CNTL_DIR=control_p8_mynn + +export LIST_FILES="sfcf000.nc \ + sfcf021.nc \ + sfcf024.nc \ + atmf000.nc \ + atmf021.nc \ + atmf024.nc \ + GFSFLX.GrbF00 \ + GFSFLX.GrbF21 \ + GFSFLX.GrbF24 \ + GFSPRS.GrbF00 \ + GFSPRS.GrbF21 \ + GFSPRS.GrbF24 \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc" + +export_fv3 +export NPZ=127 +export NPZP=128 +export DT_ATMOS=720 +export DT_INNER=${DT_ATMOS} +export SYEAR=2021 +export SMONTH=03 +export SDAY=22 +export SHOUR=06 +export RESTART_INTERVAL="12 -1" +export OUTPUT_GRID='gaussian_grid' +export WRITE_DOPOST=.true. +export OUTPUT_FH='0 21 24' + +# P7 default +export IALB=2 +export IEMS=2 +export LSM=2 +export IOPT_DVEG=4 +export IOPT_CRS=2 +export IOPT_RAD=3 +export IOPT_ALB=1 +export IOPT_STC=3 +# P8 +export IOPT_SFC=3 +export IOPT_TRS=2 + +# FV3 P7 settings +export D2_BG_K1=0.20 +export D2_BG_K2=0.04 +export PSM_BC=1 +# P8 +export DDDMP=0.1 + +# P7 Merra2 Aerosols & NSST +export USE_MERRA2=.true. +export IAER=1011 +export NSTF_NAME=2,1,0,0,0 + +export LHEATSTRG=.false. +export LSEASPRAY=.true. + +# P7 UGWP1 +export GWD_OPT=2 +export DO_UGWP_V1=.false. +export KNOB_UGWP_VERSION=0 +export KNOB_UGWP_NSLOPE=1 +export DO_UGWP_V0=.true. +export DO_GSL_DRAG_LS_BL=.false. +export DO_GSL_DRAG_SS=.true. +export DO_GSL_DRAG_TOFD=.false. +export DO_UGWP_V1_OROG_ONLY=.false. +export DO_UGWP_V0_NST_ONLY=.false. +export LDIAG_UGWP=.false. + +# P7 CA +export DO_CA=.true. +export CA_SGS=.true. +export CA_GLOBAL=.false. +export NCA=1 +export NCELLS=5 +export NLIVES=12 +export NTHRESH=18 +export NSEED=1 +export NFRACSEED=0.5 +export CA_TRIGGER=.true. +export NSPINUP=1 +export ISEED_CA=12345 + +# P7 settings +export TILEDFIX=.true. +export FNALBC="'C96.snowfree_albedo.tileX.nc'" +export FNALBC2="'C96.facsf.tileX.nc'" +export FNTG3C="'C96.substrate_temperature.tileX.nc'" +export FNVEGC="'C96.vegetation_greenness.tileX.nc'" +export FNVETC="'C96.vegetation_type.tileX.nc'" +export FNSOTC="'C96.soil_type.tileX.nc'" +export FNSMCC=${FNSMCC_control} +export FNMSKH=${FNMSKH_control} +export FNVMNC="'C96.vegetation_greenness.tileX.nc'" +export FNVMXC="'C96.vegetation_greenness.tileX.nc'" +export FNSLPC="'C96.slope_type.tileX.nc'" +export FNABSC="'C96.maximum_snow_albedo.tileX.nc'" +export LANDICE=".false." +export FSICL=0 +export FSICS=0 + +export IMP_PHYSICS=8 +export LGFDLMPRAD=.false. +export DO_SAT_ADJ=.false. +export DNATS=0 +export DZ_MIN=6 + +#required for NML.IN sharing +export MIN_SEAICE=0.15 +export FRAC_GRID=.true. +export MOM6_RESTART_SETTING=n +# P8 (not used for standalone) +export USE_CICE_ALB=.false. + +export WRITE_NSFLIP=.true. + +export FV3_RUN=control_run.IN +export CCPP_SUITE=FV3_GFS_v17_p8_mynn +export FIELD_TABLE=field_table_thompson_noaero_tke +export DIAG_TABLE=diag_table_p8_template +# use same namelist for standalone,coupled P7 +export INPUT_NML=cpld_control.nml.IN + +# RRTMGP +export DO_RRTMGP=.false. +export DOGP_CLDOPTICS_LUT=.true. +export DOGP_LWSCAT=.true. +export DOGP_SGS_CNV=.true. + +export IMFSHALCNV=-1 +export SHAL_CNV=.false. +export DO_MYNNEDMF=.true. + +if [[ $MACHINE_ID = cheyenne.* ]]; then + TPN=18 +fi diff --git a/tests/tests/control_p8_rrtmgp b/tests/tests/control_p8_rrtmgp index a5212713692..2a3a7f6c04e 100644 --- a/tests/tests/control_p8_rrtmgp +++ b/tests/tests/control_p8_rrtmgp @@ -168,6 +168,8 @@ export DOGP_CLDOPTICS_LUT=.true. export DOGP_LWSCAT=.true. export DOGP_SGS_CNV=.true. +export SATMEDMF=.true. + if [[ $MACHINE_ID = cheyenne.* ]]; then TPN=18 fi diff --git a/tests/tests/control_restart_p8 b/tests/tests/control_restart_p8 index 4175ff0bf72..fad7839bf88 100644 --- a/tests/tests/control_restart_p8 +++ b/tests/tests/control_restart_p8 @@ -166,3 +166,5 @@ export DO_RRTMGP=.false. export DOGP_CLDOPTICS_LUT=.true. export DOGP_LWSCAT=.true. export DOGP_SGS_CNV=.true. + +export SATMEDMF=.true. diff --git a/tests/tests/rrfs_conus13km_hrrr_warm b/tests/tests/rrfs_conus13km_hrrr_warm index daa48305753..7b85d19b379 100644 --- a/tests/tests/rrfs_conus13km_hrrr_warm +++ b/tests/tests/rrfs_conus13km_hrrr_warm @@ -78,7 +78,7 @@ export LDIAG3D=.false. export QDIAG3D=.false. export PRINT_DIFF_PGR=.true. export FHCYC=0.0 -export IAER=5111 +export IAER=1011 export LHEATSTRG=.false. export RANDOM_CLDS=.false. export CNVCLD=.false. diff --git a/tests/tests/rrfs_conus13km_hrrr_warm_2threads b/tests/tests/rrfs_conus13km_hrrr_warm_2threads index 77a147a665d..0334f2a7d73 100644 --- a/tests/tests/rrfs_conus13km_hrrr_warm_2threads +++ b/tests/tests/rrfs_conus13km_hrrr_warm_2threads @@ -83,7 +83,7 @@ export LDIAG3D=.false. export QDIAG3D=.false. export PRINT_DIFF_PGR=.true. export FHCYC=0.0 -export IAER=5111 +export IAER=1011 export LHEATSTRG=.false. export RANDOM_CLDS=.false. export CNVCLD=.false. diff --git a/tests/tests/rrfs_conus13km_hrrr_warm_debug b/tests/tests/rrfs_conus13km_hrrr_warm_debug index 014c3eed8db..00be635af0f 100644 --- a/tests/tests/rrfs_conus13km_hrrr_warm_debug +++ b/tests/tests/rrfs_conus13km_hrrr_warm_debug @@ -76,7 +76,7 @@ export LDIAG3D=.false. export QDIAG3D=.false. export PRINT_DIFF_PGR=.true. export FHCYC=0.0 -export IAER=5111 +export IAER=1011 export LHEATSTRG=.false. export RANDOM_CLDS=.false. export CNVCLD=.false. diff --git a/tests/tests/rrfs_conus13km_hrrr_warm_decomp b/tests/tests/rrfs_conus13km_hrrr_warm_decomp index bf77d3a7e79..b90e11d20a9 100644 --- a/tests/tests/rrfs_conus13km_hrrr_warm_decomp +++ b/tests/tests/rrfs_conus13km_hrrr_warm_decomp @@ -79,7 +79,7 @@ export LDIAG3D=.false. export QDIAG3D=.false. export PRINT_DIFF_PGR=.true. export FHCYC=0.0 -export IAER=5111 +export IAER=1011 export LHEATSTRG=.false. export RANDOM_CLDS=.false. export CNVCLD=.false. diff --git a/tests/tests/rrfs_conus13km_hrrr_warm_restart b/tests/tests/rrfs_conus13km_hrrr_warm_restart index 916aa940b51..9a8ea267638 100644 --- a/tests/tests/rrfs_conus13km_hrrr_warm_restart +++ b/tests/tests/rrfs_conus13km_hrrr_warm_restart @@ -77,7 +77,7 @@ export LDIAG3D=.false. export QDIAG3D=.false. export PRINT_DIFF_PGR=.true. export FHCYC=0.0 -export IAER=5111 +export IAER=1011 export LHEATSTRG=.false. export RANDOM_CLDS=.false. export CNVCLD=.false. diff --git a/tests/tests/rrfs_conus13km_radar_tten_warm b/tests/tests/rrfs_conus13km_radar_tten_warm index 82389f595ea..dc82d24e9fa 100644 --- a/tests/tests/rrfs_conus13km_radar_tten_warm +++ b/tests/tests/rrfs_conus13km_radar_tten_warm @@ -80,7 +80,7 @@ export LDIAG3D=.false. export QDIAG3D=.false. export PRINT_DIFF_PGR=.true. export FHCYC=0.0 -export IAER=5111 +export IAER=1011 export LHEATSTRG=.false. export RANDOM_CLDS=.false. export CNVCLD=.false. diff --git a/tests/tests/rrfs_conus13km_radar_tten_warm_2threads b/tests/tests/rrfs_conus13km_radar_tten_warm_2threads index 32b5cbd3748..173142c35d2 100644 --- a/tests/tests/rrfs_conus13km_radar_tten_warm_2threads +++ b/tests/tests/rrfs_conus13km_radar_tten_warm_2threads @@ -85,7 +85,7 @@ export LDIAG3D=.false. export QDIAG3D=.false. export PRINT_DIFF_PGR=.true. export FHCYC=0.0 -export IAER=5111 +export IAER=1011 export LHEATSTRG=.false. export RANDOM_CLDS=.false. export CNVCLD=.false. diff --git a/tests/tests/rrfs_conus13km_radar_tten_warm_debug b/tests/tests/rrfs_conus13km_radar_tten_warm_debug index fb1eeff8fc0..962175f9aa6 100644 --- a/tests/tests/rrfs_conus13km_radar_tten_warm_debug +++ b/tests/tests/rrfs_conus13km_radar_tten_warm_debug @@ -78,7 +78,7 @@ export LDIAG3D=.false. export QDIAG3D=.false. export PRINT_DIFF_PGR=.true. export FHCYC=0.0 -export IAER=5111 +export IAER=1011 export LHEATSTRG=.false. export RANDOM_CLDS=.false. export CNVCLD=.false. diff --git a/tests/tests/rrfs_conus13km_radar_tten_warm_decomp b/tests/tests/rrfs_conus13km_radar_tten_warm_decomp index 38a9ad5f360..761e27952ec 100644 --- a/tests/tests/rrfs_conus13km_radar_tten_warm_decomp +++ b/tests/tests/rrfs_conus13km_radar_tten_warm_decomp @@ -81,7 +81,7 @@ export LDIAG3D=.false. export QDIAG3D=.false. export PRINT_DIFF_PGR=.true. export FHCYC=0.0 -export IAER=5111 +export IAER=1011 export LHEATSTRG=.false. export RANDOM_CLDS=.false. export CNVCLD=.false. diff --git a/tests/tests/rrfs_conus13km_radar_tten_warm_restart b/tests/tests/rrfs_conus13km_radar_tten_warm_restart index 1ae65245756..14d365e679a 100644 --- a/tests/tests/rrfs_conus13km_radar_tten_warm_restart +++ b/tests/tests/rrfs_conus13km_radar_tten_warm_restart @@ -79,7 +79,7 @@ export LDIAG3D=.false. export QDIAG3D=.false. export PRINT_DIFF_PGR=.true. export FHCYC=0.0 -export IAER=5111 +export IAER=1011 export LHEATSTRG=.false. export RANDOM_CLDS=.false. export CNVCLD=.false. diff --git a/tests/tests/rrfs_smoke_conus13km_hrrr_warm b/tests/tests/rrfs_smoke_conus13km_hrrr_warm index 99e6c40728d..6e9c9dee6e7 100644 --- a/tests/tests/rrfs_smoke_conus13km_hrrr_warm +++ b/tests/tests/rrfs_smoke_conus13km_hrrr_warm @@ -59,7 +59,7 @@ export HYBEDMF=.false. export SHAL_CNV=.false. export DO_SAT_ADJ=.false. export DO_DEEP=.false. -export CCPP_SUITE='FV3_HRRR_smoke' +export CCPP_SUITE='FV3_HRRR' export INPES=12 export JNPES=12 export NPX=397 @@ -81,7 +81,7 @@ export LDIAG3D=.false. export QDIAG3D=.false. export PRINT_DIFF_PGR=.true. export FHCYC=0.0 -export IAER=5111 +export IAER=1011 export LHEATSTRG=.false. export RANDOM_CLDS=.false. export CNVCLD=.false. diff --git a/tests/tests/rrfs_smoke_conus13km_hrrr_warm_2threads b/tests/tests/rrfs_smoke_conus13km_hrrr_warm_2threads new file mode 100644 index 00000000000..9d70a751280 --- /dev/null +++ b/tests/tests/rrfs_smoke_conus13km_hrrr_warm_2threads @@ -0,0 +1,116 @@ +############################################################################### +# +# HRRR smoke physics on 13km domain, different threads +# +############################################################################### + +# This configuration is supposed to match the rrfs_dev1 parallel, so +# do not change the namelist without checking the current parallel. + +export TEST_DESCR="HRRR smoke physics on 13km domain, different threads" + +export CNTL_DIR=rrfs_smoke_conus13km_hrrr_warm + +export LIST_FILES="sfcf000.nc \ + sfcf001.nc \ + sfcf002.nc \ + atmf000.nc \ + atmf001.nc \ + atmf002.nc" + +export_fv3 + +export SYEAR=2021 +export SMONTH=5 +export SDAY=12 +export SHOUR=16 +export FHMAX=2 +export DT_ATMOS=120 +export RESTART_INTERVAL=1 +export QUILTING=.true. +export WRITE_GROUP=1 +export WRTTASK_PER_GROUP=6 +export NTILES=1 +export WRITE_DOPOST=.false. +export OUTPUT_HISTORY=.true. +export OUTPUT_GRID=lambert_conformal +export OUTPUT_FILE="'netcdf'" + +export atm_omp_num_threads=2 +export INPES=$INPES_thrd +export JNPES=$JNPES_thrd +export WRTTASK_PER_GROUP=6 + +# Revert these two to GFS_typedefs defaults to avoid a crash: +export SEDI_SEMI=.false. +export DECFL=8 + +export RRFS_SMOKE=.true. +export SEAS_OPT=0 + +export LKM=1 +export SFCLAY_COMPUTE_FLUX=.true. +export IALB=2 +export ICLIQ_SW=2 +export IEMS=2 +export IOVR=3 +export KICE=9 +export LSM=3 +export LSOIL_LSM=9 +export DO_MYNNSFCLAY=.true. +export DO_MYNNEDMF=.true. +export DO_MYJPBL=.true +export HYBEDMF=.false. +export SHAL_CNV=.false. +export DO_SAT_ADJ=.false. +export DO_DEEP=.false. +export CCPP_SUITE='FV3_HRRR' +export INPES=12 +export JNPES=12 +export NPX=397 +export NPY=233 +export NPZ=65 +export MAKE_NH=.false. +export NA_INIT=0 +export DNATS=0 +export EXTERNAL_IC=.false. +export NGGPS_IC=.false. +export MOUNTAIN=.true. +export WARM_START=.true. +export READ_INCREMENT=.false. +export RES_LATLON_DYNAMICS="'fv3_increment.nc'" +export NPZP=66 +export FHZERO=1.0 +export IMP_PHYSICS=8 +export LDIAG3D=.false. +export QDIAG3D=.false. +export PRINT_DIFF_PGR=.true. +export FHCYC=0.0 +export IAER=1011 +export LHEATSTRG=.false. +export RANDOM_CLDS=.false. +export CNVCLD=.false. +export IMFSHALCNV=-1 +export IMFDEEPCNV=-1 +export CDMBWD='3.5,1.0' +export DO_SPPT=.false. +export DO_SHUM=.false. +export DO_SKEB=.false. +export LNDP_TYPE=0 +export N_VAR_LNDP=0 + +export GWD_OPT=3 +export DO_UGWP_V0=.false. +export DO_UGWP_V0_OROG_ONLY=.false. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GSL_DRAG_SS=.true. +export DO_GSL_DRAG_TOFD=.true. +export DO_UGWP_V1=.false. +export DO_UGWP_V1_OROG_ONLY=.false. + +export FV3_RUN=rrfs_warm_run.IN +export INPUT_NML=rrfs_conus13km_hrrr.nml.IN +export FIELD_TABLE=field_table_thompson_aero_tke_smoke +export DIAG_TABLE=diag_table_hrrr +export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN +export DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke diff --git a/tests/tests/rrfs_smoke_conus13km_hrrr_warm_debug b/tests/tests/rrfs_smoke_conus13km_hrrr_warm_debug new file mode 100644 index 00000000000..661fff7ca7e --- /dev/null +++ b/tests/tests/rrfs_smoke_conus13km_hrrr_warm_debug @@ -0,0 +1,109 @@ +############################################################################### +# +# HRRR smoke physics on 13km domain, control run +# +############################################################################### + +# This configuration is supposed to match the rrfs_dev1 parallel, so +# do not change the namelist without checking the current parallel. + +export TEST_DESCR="HRRR smoke physics on 13km domain, control run" + +export CNTL_DIR=rrfs_smoke_conus13km_hrrr_warm_debug + +export LIST_FILES="sfcf000.nc \ + sfcf001.nc \ + atmf000.nc \ + atmf001.nc" + +export_fv3 + +export SYEAR=2021 +export SMONTH=5 +export SDAY=12 +export SHOUR=16 +export FHMAX=1 +export DT_ATMOS=120 +export RESTART_INTERVAL=1 +export QUILTING=.true. +export WRITE_GROUP=1 +export WRTTASK_PER_GROUP=6 +export NTILES=1 +export WRITE_DOPOST=.false. +export OUTPUT_HISTORY=.true. +export OUTPUT_GRID=lambert_conformal +export OUTPUT_FILE="'netcdf'" + +# Revert these two to GFS_typedefs defaults to avoid a crash: +export SEDI_SEMI=.false. +export DECFL=8 + +export RRFS_SMOKE=.true. +export SEAS_OPT=0 + +export LKM=1 +export SFCLAY_COMPUTE_FLUX=.true. +export IALB=2 +export ICLIQ_SW=2 +export IEMS=2 +export IOVR=3 +export KICE=9 +export LSM=3 +export LSOIL_LSM=9 +export DO_MYNNSFCLAY=.true. +export DO_MYNNEDMF=.true. +export DO_MYJPBL=.true +export HYBEDMF=.false. +export SHAL_CNV=.false. +export DO_SAT_ADJ=.false. +export DO_DEEP=.false. +export CCPP_SUITE='FV3_HRRR' +export INPES=12 +export JNPES=12 +export NPX=397 +export NPY=233 +export NPZ=65 +export MAKE_NH=.false. +export NA_INIT=0 +export DNATS=0 +export EXTERNAL_IC=.false. +export NGGPS_IC=.false. +export MOUNTAIN=.true. +export WARM_START=.true. +export READ_INCREMENT=.false. +export RES_LATLON_DYNAMICS="'fv3_increment.nc'" +export NPZP=66 +export FHZERO=1.0 +export IMP_PHYSICS=8 +export LDIAG3D=.false. +export QDIAG3D=.false. +export PRINT_DIFF_PGR=.true. +export FHCYC=0.0 +export IAER=1011 +export LHEATSTRG=.false. +export RANDOM_CLDS=.false. +export CNVCLD=.false. +export IMFSHALCNV=-1 +export IMFDEEPCNV=-1 +export CDMBWD='3.5,1.0' +export DO_SPPT=.false. +export DO_SHUM=.false. +export DO_SKEB=.false. +export LNDP_TYPE=0 +export N_VAR_LNDP=0 + +export GWD_OPT=3 +export DO_UGWP_V0=.false. +export DO_UGWP_V0_OROG_ONLY=.false. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GSL_DRAG_SS=.true. +export DO_GSL_DRAG_TOFD=.true. +export DO_UGWP_V1=.false. +export DO_UGWP_V1_OROG_ONLY=.false. + +export FV3_RUN=rrfs_warm_run.IN +export INPUT_NML=rrfs_conus13km_hrrr.nml.IN +export FIELD_TABLE=field_table_thompson_aero_tke_smoke +export DIAG_TABLE=diag_table_hrrr +export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN +export DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke diff --git a/tests/tests/rrfs_smoke_conus13km_hrrr_warm_debug_2threads b/tests/tests/rrfs_smoke_conus13km_hrrr_warm_debug_2threads new file mode 100644 index 00000000000..124e93de521 --- /dev/null +++ b/tests/tests/rrfs_smoke_conus13km_hrrr_warm_debug_2threads @@ -0,0 +1,114 @@ +############################################################################### +# +# HRRR smoke physics on 13km domain, control run +# +############################################################################### + +# This configuration is supposed to match the rrfs_dev1 parallel, so +# do not change the namelist without checking the current parallel. + +export TEST_DESCR="HRRR smoke physics on 13km domain, control run" + +export CNTL_DIR=rrfs_smoke_conus13km_hrrr_warm_debug + +export LIST_FILES="sfcf000.nc \ + sfcf001.nc \ + atmf000.nc \ + atmf001.nc" + +export_fv3 + +export SYEAR=2021 +export SMONTH=5 +export SDAY=12 +export SHOUR=16 +export FHMAX=1 +export DT_ATMOS=120 +export RESTART_INTERVAL=1 +export QUILTING=.true. +export WRITE_GROUP=1 +export WRTTASK_PER_GROUP=6 +export NTILES=1 +export WRITE_DOPOST=.false. +export OUTPUT_HISTORY=.true. +export OUTPUT_GRID=lambert_conformal +export OUTPUT_FILE="'netcdf'" + +export atm_omp_num_threads=2 +export INPES=$INPES_thrd +export JNPES=$JNPES_thrd +export WRTTASK_PER_GROUP=6 + +# Revert these two to GFS_typedefs defaults to avoid a crash: +export SEDI_SEMI=.false. +export DECFL=8 + +export RRFS_SMOKE=.true. +export SEAS_OPT=0 + +export LKM=1 +export SFCLAY_COMPUTE_FLUX=.true. +export IALB=2 +export ICLIQ_SW=2 +export IEMS=2 +export IOVR=3 +export KICE=9 +export LSM=3 +export LSOIL_LSM=9 +export DO_MYNNSFCLAY=.true. +export DO_MYNNEDMF=.true. +export DO_MYJPBL=.true +export HYBEDMF=.false. +export SHAL_CNV=.false. +export DO_SAT_ADJ=.false. +export DO_DEEP=.false. +export CCPP_SUITE='FV3_HRRR' +export INPES=12 +export JNPES=12 +export NPX=397 +export NPY=233 +export NPZ=65 +export MAKE_NH=.false. +export NA_INIT=0 +export DNATS=0 +export EXTERNAL_IC=.false. +export NGGPS_IC=.false. +export MOUNTAIN=.true. +export WARM_START=.true. +export READ_INCREMENT=.false. +export RES_LATLON_DYNAMICS="'fv3_increment.nc'" +export NPZP=66 +export FHZERO=1.0 +export IMP_PHYSICS=8 +export LDIAG3D=.false. +export QDIAG3D=.false. +export PRINT_DIFF_PGR=.true. +export FHCYC=0.0 +export IAER=1011 +export LHEATSTRG=.false. +export RANDOM_CLDS=.false. +export CNVCLD=.false. +export IMFSHALCNV=-1 +export IMFDEEPCNV=-1 +export CDMBWD='3.5,1.0' +export DO_SPPT=.false. +export DO_SHUM=.false. +export DO_SKEB=.false. +export LNDP_TYPE=0 +export N_VAR_LNDP=0 + +export GWD_OPT=3 +export DO_UGWP_V0=.false. +export DO_UGWP_V0_OROG_ONLY=.false. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GSL_DRAG_SS=.true. +export DO_GSL_DRAG_TOFD=.true. +export DO_UGWP_V1=.false. +export DO_UGWP_V1_OROG_ONLY=.false. + +export FV3_RUN=rrfs_warm_run.IN +export INPUT_NML=rrfs_conus13km_hrrr.nml.IN +export FIELD_TABLE=field_table_thompson_aero_tke_smoke +export DIAG_TABLE=diag_table_hrrr +export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN +export DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke diff --git a/tests/tests/rrfs_smoke_conus13km_hrrr_warm_debug_decomp b/tests/tests/rrfs_smoke_conus13km_hrrr_warm_debug_decomp new file mode 100644 index 00000000000..2031fc77d1a --- /dev/null +++ b/tests/tests/rrfs_smoke_conus13km_hrrr_warm_debug_decomp @@ -0,0 +1,110 @@ +############################################################################### +# +# HRRR smoke physics on 13km domain, control run +# +############################################################################### + +# This configuration is supposed to match the rrfs_dev1 parallel, so +# do not change the namelist without checking the current parallel. + +export TEST_DESCR="HRRR smoke physics on 13km domain, control run" + +export CNTL_DIR=rrfs_smoke_conus13km_hrrr_warm_debug + +export LIST_FILES="sfcf000.nc \ + sfcf001.nc \ + atmf000.nc \ + atmf001.nc" + +export_fv3 + +export SYEAR=2021 +export SMONTH=5 +export SDAY=12 +export SHOUR=16 +export FHMAX=1 +export DT_ATMOS=120 +export RESTART_INTERVAL=1 +export QUILTING=.true. +export WRITE_GROUP=1 +export WRTTASK_PER_GROUP=6 +export NTILES=1 +export WRITE_DOPOST=.false. +export OUTPUT_HISTORY=.true. +export OUTPUT_GRID=lambert_conformal +export OUTPUT_FILE="'netcdf'" + +export INPES=16 +export JNPES=9 + +# Revert these two to GFS_typedefs defaults to avoid a crash: +export SEDI_SEMI=.false. +export DECFL=8 + +export RRFS_SMOKE=.true. +export SEAS_OPT=0 + +export LKM=1 +export SFCLAY_COMPUTE_FLUX=.true. +export IALB=2 +export ICLIQ_SW=2 +export IEMS=2 +export IOVR=3 +export KICE=9 +export LSM=3 +export LSOIL_LSM=9 +export DO_MYNNSFCLAY=.true. +export DO_MYNNEDMF=.true. +export DO_MYJPBL=.true +export HYBEDMF=.false. +export SHAL_CNV=.false. +export DO_SAT_ADJ=.false. +export DO_DEEP=.false. +export CCPP_SUITE='FV3_HRRR' +export NPX=397 +export NPY=233 +export NPZ=65 +export MAKE_NH=.false. +export NA_INIT=0 +export DNATS=0 +export EXTERNAL_IC=.false. +export NGGPS_IC=.false. +export MOUNTAIN=.true. +export WARM_START=.true. +export READ_INCREMENT=.false. +export RES_LATLON_DYNAMICS="'fv3_increment.nc'" +export NPZP=66 +export FHZERO=1.0 +export IMP_PHYSICS=8 +export LDIAG3D=.false. +export QDIAG3D=.false. +export PRINT_DIFF_PGR=.true. +export FHCYC=0.0 +export IAER=1011 +export LHEATSTRG=.false. +export RANDOM_CLDS=.false. +export CNVCLD=.false. +export IMFSHALCNV=-1 +export IMFDEEPCNV=-1 +export CDMBWD='3.5,1.0' +export DO_SPPT=.false. +export DO_SHUM=.false. +export DO_SKEB=.false. +export LNDP_TYPE=0 +export N_VAR_LNDP=0 + +export GWD_OPT=3 +export DO_UGWP_V0=.false. +export DO_UGWP_V0_OROG_ONLY=.false. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GSL_DRAG_SS=.true. +export DO_GSL_DRAG_TOFD=.true. +export DO_UGWP_V1=.false. +export DO_UGWP_V1_OROG_ONLY=.false. + +export FV3_RUN=rrfs_warm_run.IN +export INPUT_NML=rrfs_conus13km_hrrr.nml.IN +export FIELD_TABLE=field_table_thompson_aero_tke_smoke +export DIAG_TABLE=diag_table_hrrr +export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN +export DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke diff --git a/tests/tests/rrfs_smoke_conus13km_hrrr_warm_decomp b/tests/tests/rrfs_smoke_conus13km_hrrr_warm_decomp new file mode 100644 index 00000000000..58b07b3ea4a --- /dev/null +++ b/tests/tests/rrfs_smoke_conus13km_hrrr_warm_decomp @@ -0,0 +1,112 @@ +############################################################################### +# +# HRRR smoke physics on 13km domain, different PEs +# +############################################################################### + +# This configuration is supposed to match the rrfs_dev1 parallel, so +# do not change the namelist without checking the current parallel. + +export TEST_DESCR="HRRR smoke physics on 13km domain, different PEs" + +export CNTL_DIR=rrfs_smoke_conus13km_hrrr_warm + +export LIST_FILES="sfcf000.nc \ + sfcf001.nc \ + sfcf002.nc \ + atmf000.nc \ + atmf001.nc \ + atmf002.nc" + +export_fv3 + +export SYEAR=2021 +export SMONTH=5 +export SDAY=12 +export SHOUR=16 +export FHMAX=2 +export DT_ATMOS=120 +export RESTART_INTERVAL=1 +export QUILTING=.true. +export WRITE_GROUP=1 +export WRTTASK_PER_GROUP=6 +export NTILES=1 +export WRITE_DOPOST=.false. +export OUTPUT_HISTORY=.true. +export OUTPUT_GRID=lambert_conformal +export OUTPUT_FILE="'netcdf'" + +export INPES=16 +export JNPES=9 + +# Revert these two to GFS_typedefs defaults to avoid a crash: +export SEDI_SEMI=.false. +export DECFL=8 + +export RRFS_SMOKE=.true. +export SEAS_OPT=0 + +export LKM=1 +export SFCLAY_COMPUTE_FLUX=.true. +export IALB=2 +export ICLIQ_SW=2 +export IEMS=2 +export IOVR=3 +export KICE=9 +export LSM=3 +export LSOIL_LSM=9 +export DO_MYNNSFCLAY=.true. +export DO_MYNNEDMF=.true. +export DO_MYJPBL=.true +export HYBEDMF=.false. +export SHAL_CNV=.false. +export DO_SAT_ADJ=.false. +export DO_DEEP=.false. +export CCPP_SUITE='FV3_HRRR' +export NPX=397 +export NPY=233 +export NPZ=65 +export MAKE_NH=.false. +export NA_INIT=0 +export DNATS=0 +export EXTERNAL_IC=.false. +export NGGPS_IC=.false. +export MOUNTAIN=.true. +export WARM_START=.true. +export READ_INCREMENT=.false. +export RES_LATLON_DYNAMICS="'fv3_increment.nc'" +export NPZP=66 +export FHZERO=1.0 +export IMP_PHYSICS=8 +export LDIAG3D=.false. +export QDIAG3D=.false. +export PRINT_DIFF_PGR=.true. +export FHCYC=0.0 +export IAER=1011 +export LHEATSTRG=.false. +export RANDOM_CLDS=.false. +export CNVCLD=.false. +export IMFSHALCNV=-1 +export IMFDEEPCNV=-1 +export CDMBWD='3.5,1.0' +export DO_SPPT=.false. +export DO_SHUM=.false. +export DO_SKEB=.false. +export LNDP_TYPE=0 +export N_VAR_LNDP=0 + +export GWD_OPT=3 +export DO_UGWP_V0=.false. +export DO_UGWP_V0_OROG_ONLY=.false. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GSL_DRAG_SS=.true. +export DO_GSL_DRAG_TOFD=.true. +export DO_UGWP_V1=.false. +export DO_UGWP_V1_OROG_ONLY=.false. + +export FV3_RUN=rrfs_warm_run.IN +export INPUT_NML=rrfs_conus13km_hrrr.nml.IN +export FIELD_TABLE=field_table_thompson_aero_tke_smoke +export DIAG_TABLE=diag_table_hrrr +export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN +export DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke diff --git a/tests/tests/rrfs_smoke_conus13km_hrrr_warm_restart b/tests/tests/rrfs_smoke_conus13km_hrrr_warm_restart new file mode 100644 index 00000000000..efd07b9fab8 --- /dev/null +++ b/tests/tests/rrfs_smoke_conus13km_hrrr_warm_restart @@ -0,0 +1,110 @@ +############################################################################### +# +# HRRR smoke physics on 13km domain, restart run +# +############################################################################### + +# This configuration is supposed to match the rrfs_dev1 parallel, so +# do not change the namelist without checking the current parallel. + +export TEST_DESCR="HRRR smoke physics on 13km domain, restart run" + +export CNTL_DIR=rrfs_smoke_conus13km_hrrr_warm + +export LIST_FILES="sfcf002.nc \ + atmf002.nc" + +export_fv3 + +export SYEAR=2021 +export SMONTH=05 +export SDAY=12 +export SHOUR=16 +export FHMAX=2 +export DT_ATMOS=120 +export QUILTING=.true. +export WRITE_GROUP=1 +export WRTTASK_PER_GROUP=6 +export NTILES=1 +export WRITE_DOPOST=.false. +export OUTPUT_HISTORY=.true. +export OUTPUT_GRID=lambert_conformal +export OUTPUT_FILE="'netcdf'" + +export FHROT=1 +export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${SHOUR} + ${FHROT} )))0000" +export RRFS_RESTART=YES + +# Revert these two to GFS_typedefs defaults to avoid a crash: +export SEDI_SEMI=.false. +export DECFL=8 + +export RRFS_SMOKE=.true. +export SEAS_OPT=0 + +export LKM=1 +export SFCLAY_COMPUTE_FLUX=.true. +export IALB=2 +export ICLIQ_SW=2 +export IEMS=2 +export IOVR=3 +export KICE=9 +export LSM=3 +export LSOIL_LSM=9 +export DO_MYNNSFCLAY=.true. +export DO_MYNNEDMF=.true. +export DO_MYJPBL=.true +export HYBEDMF=.false. +export SHAL_CNV=.false. +export DO_SAT_ADJ=.false. +export DO_DEEP=.false. +export CCPP_SUITE='FV3_HRRR' +export INPES=12 +export JNPES=12 +export NPX=397 +export NPY=233 +export NPZ=65 +export MAKE_NH=.false. +export NA_INIT=0 +export DNATS=0 +export EXTERNAL_IC=.false. +export NGGPS_IC=.false. +export MOUNTAIN=.true. +export WARM_START=.true. +export READ_INCREMENT=.false. +export RES_LATLON_DYNAMICS="'fv3_increment.nc'" +export NPZP=66 +export FHZERO=1.0 +export IMP_PHYSICS=8 +export LDIAG3D=.false. +export QDIAG3D=.false. +export PRINT_DIFF_PGR=.true. +export FHCYC=0.0 +export IAER=1011 +export LHEATSTRG=.false. +export RANDOM_CLDS=.false. +export CNVCLD=.false. +export IMFSHALCNV=-1 +export IMFDEEPCNV=-1 +export CDMBWD='3.5,1.0' +export DO_SPPT=.false. +export DO_SHUM=.false. +export DO_SKEB=.false. +export LNDP_TYPE=0 +export N_VAR_LNDP=0 + +export GWD_OPT=3 +export DO_UGWP_V0=.false. +export DO_UGWP_V0_OROG_ONLY=.false. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GSL_DRAG_SS=.true. +export DO_GSL_DRAG_TOFD=.true. +export DO_UGWP_V1=.false. +export DO_UGWP_V1_OROG_ONLY=.false. + +export FV3_RUN=rrfs_warm_run.IN +export INPUT_NML=rrfs_conus13km_hrrr.nml.IN +export FIELD_TABLE=field_table_thompson_aero_tke_smoke +export DIAG_TABLE=diag_table_hrrr +export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN +export DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke diff --git a/tests/tests/rrfs_smoke_conus13km_radar_tten_warm b/tests/tests/rrfs_smoke_conus13km_radar_tten_warm new file mode 100644 index 00000000000..1366e3462c5 --- /dev/null +++ b/tests/tests/rrfs_smoke_conus13km_radar_tten_warm @@ -0,0 +1,113 @@ +############################################################################### +# +# HRRR smoke physics on 13km domain, with radar-derived temperature tendencies +# +############################################################################### + +# This configuration is supposed to match the rrfs_dev1 parallel, so +# do not change the namelist without checking the current parallel. + +export TEST_DESCR="HRRR smoke physics on 13km domain with radar-derived temperature tendencies" + +export CNTL_DIR=rrfs_smoke_conus13km_hrrr_warm_radar_tten + +export LIST_FILES="sfcf000.nc \ + sfcf001.nc \ + sfcf002.nc \ + atmf000.nc \ + atmf001.nc \ + atmf002.nc" + +export_fv3 + +export FH_DFI_RADAR='0.0, 0.25, 0.50, 0.75, 1.0' + +export SYEAR=2021 +export SMONTH=5 +export SDAY=12 +export SHOUR=16 +export FHMAX=2 +export DT_ATMOS=120 +export RESTART_INTERVAL=1 +export QUILTING=.true. +export WRITE_GROUP=1 +export WRTTASK_PER_GROUP=6 +export NTILES=1 +export WRITE_DOPOST=.false. +export OUTPUT_HISTORY=.true. +export OUTPUT_GRID=lambert_conformal +export OUTPUT_FILE="'netcdf'" + +# Revert these two to GFS_typedefs defaults to avoid a crash: +export SEDI_SEMI=.false. +export DECFL=8 + +export RRFS_SMOKE=.true. +export SEAS_OPT=0 + +export LKM=1 +export SFCLAY_COMPUTE_FLUX=.true. +export IALB=2 +export ICLIQ_SW=2 +export IEMS=2 +export IOVR=3 +export KICE=9 +export LSM=3 +export LSOIL_LSM=9 +export DO_MYNNSFCLAY=.true. +export DO_MYNNEDMF=.true. +export DO_MYJPBL=.true +export HYBEDMF=.false. +export SHAL_CNV=.false. +export DO_SAT_ADJ=.false. +export DO_DEEP=.false. +export CCPP_SUITE='FV3_HRRR' +export INPES=12 +export JNPES=12 +export NPX=397 +export NPY=233 +export NPZ=65 +export MAKE_NH=.false. +export NA_INIT=0 +export DNATS=0 +export EXTERNAL_IC=.false. +export NGGPS_IC=.false. +export MOUNTAIN=.true. +export WARM_START=.true. +export READ_INCREMENT=.false. +export RES_LATLON_DYNAMICS="'fv3_increment.nc'" +export NPZP=66 +export FHZERO=1.0 +export IMP_PHYSICS=8 +export LDIAG3D=.false. +export QDIAG3D=.false. +export PRINT_DIFF_PGR=.true. +export FHCYC=0.0 +export IAER=1011 +export LHEATSTRG=.false. +export RANDOM_CLDS=.false. +export CNVCLD=.false. +export IMFSHALCNV=-1 +export IMFDEEPCNV=-1 +export CDMBWD='3.5,1.0' +export DO_SPPT=.false. +export DO_SHUM=.false. +export DO_SKEB=.false. +export LNDP_TYPE=0 +export N_VAR_LNDP=0 + +export GWD_OPT=3 +export DO_UGWP_V0=.false. +export DO_UGWP_V0_OROG_ONLY=.false. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GSL_DRAG_SS=.true. +export DO_GSL_DRAG_TOFD=.true. +export DO_UGWP_V1=.false. +export DO_UGWP_V1_OROG_ONLY=.false. + +export FV3_RUN=rrfs_warm_run.IN +export INPUT_NML=rrfs_conus13km_hrrr.nml.IN +export FIELD_TABLE=field_table_thompson_aero_tke_smoke +export DIAG_TABLE=diag_table_hrrr +export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN +export DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke From 85dc0fd9372ad0752fd9d0d6230c3f877a8e35dd Mon Sep 17 00:00:00 2001 From: Dusan Jovic <48258889+DusanJovic-NOAA@users.noreply.github.com> Date: Tue, 28 Mar 2023 11:46:27 -0400 Subject: [PATCH 12/30] Write restart files using the write grid component. Combined with WW3 update #1673 (#1633) * Add 4 new quilting restart tests * Remove tests/qr.conf * Fix fv3_conf/regional_run.IN script to correctly copy restart files from dependent directory * Clean up Thompson table files (#38) * update control_qr_p8 control_restart_qr_p8 * Disable cpld_control_ciceC_p8 and cpld_control_c192_p8/cpld_restart_c192_p8 on Gaea * Update FV3 and WW3 Co-authored-by: Dusan Jovic Co-authored-by: Jessica Meixner --- FV3 | 2 +- WW3 | 2 +- tests/RegressionTests_acorn.intel.log | 2844 +++++++++++---------- tests/RegressionTests_cheyenne.gnu.log | 750 +++--- tests/RegressionTests_cheyenne.intel.log | 2882 +++++++++++---------- tests/RegressionTests_gaea.intel.log | 2972 +++++++++++----------- tests/RegressionTests_hera.gnu.log | 754 +++--- tests/RegressionTests_hera.intel.log | 2900 +++++++++++---------- tests/RegressionTests_jet.intel.log | 2642 ++++++++++--------- tests/RegressionTests_orion.intel.log | 2888 +++++++++++---------- tests/RegressionTests_wcoss2.intel.log | 2667 ++++++++++--------- tests/default_vars.sh | 1 + tests/fv3_conf/control_run.IN | 8 +- tests/fv3_conf/cpld_control_run.IN | 8 +- tests/fv3_conf/hafs_fv3_run.IN | 8 +- tests/fv3_conf/regional_run.IN | 14 +- tests/fv3_conf/rrfs_warm_run.IN | 8 +- tests/parm/model_configure.IN | 1 + tests/parm/model_configure_regional.IN | 1 + tests/rt.conf | 14 +- tests/rt_utils.sh | 4 +- tests/run_test.sh | 5 + tests/tests/control_qr_p8 | 176 ++ tests/tests/control_restart_qr_p8 | 171 ++ tests/tests/cpld_control_qr_p8 | 88 + tests/tests/cpld_restart_qr_p8 | 100 + tests/tests/regional_control_qr | 46 + tests/tests/regional_restart_qr | 49 + 28 files changed, 12136 insertions(+), 9869 deletions(-) create mode 100644 tests/tests/control_qr_p8 create mode 100644 tests/tests/control_restart_qr_p8 create mode 100644 tests/tests/cpld_control_qr_p8 create mode 100644 tests/tests/cpld_restart_qr_p8 create mode 100644 tests/tests/regional_control_qr create mode 100644 tests/tests/regional_restart_qr diff --git a/FV3 b/FV3 index 29085aa5c9e..bcd12a46ff6 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 29085aa5c9e93caca392fabe7cbb2efca785ea05 +Subproject commit bcd12a46ff6c581e5e966d1885dc5a28fdc7819d diff --git a/WW3 b/WW3 index af544dca5bf..df3c1e2dc50 160000 --- a/WW3 +++ b/WW3 @@ -1 +1 @@ -Subproject commit af544dca5bf49bf3c3ad8d47b786e8211dcf4bba +Subproject commit df3c1e2dc50a4fc52df7181fb494e9aae4d612a5 diff --git a/tests/RegressionTests_acorn.intel.log b/tests/RegressionTests_acorn.intel.log index c70962a6b55..ecc739886a6 100644 --- a/tests/RegressionTests_acorn.intel.log +++ b/tests/RegressionTests_acorn.intel.log @@ -1,40 +1,40 @@ -Sun Mar 26 20:03:00 UTC 2023 +Mon Mar 27 19:44:38 UTC 2023 Start Regression test -Compile 001 elapsed time 539 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 542 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 728 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 472 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 005 elapsed time 1519 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 848 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 1185 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 008 elapsed time 948 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 1356 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 010 elapsed time 955 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 457 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 1000 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 885 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 150 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 456 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 880 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 1145 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 482 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 562 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 020 elapsed time 384 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 021 elapsed time 646 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 022 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 023 elapsed time 226 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 024 elapsed time 408 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 55 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 026 elapsed time 457 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 027 elapsed time 452 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 803 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 865 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 369 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 031 elapsed time 626 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 543 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1087 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 926 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 688 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 005 elapsed time 560 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 1626 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 1008 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 711 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 452 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 010 elapsed time 1174 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 909 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 766 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 225 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 014 elapsed time 769 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 578 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 764 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 1055 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 273 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 723 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 020 elapsed time 512 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 021 elapsed time 936 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 022 elapsed time 908 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 023 elapsed time 257 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 024 elapsed time 256 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 175 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 026 elapsed time 586 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 027 elapsed time 988 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 660 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 437 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 217 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 031 elapsed time 514 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8_mixedmode -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/cpld_control_p8_mixedmode +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -99,14 +99,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 340.110038 -The maximum resident set size (KB) = 2956132 +The total amount of wall time = 331.408631 +The maximum resident set size (KB) = 2949136 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_gfsv17 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/cpld_control_gfsv17 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -170,14 +170,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 263.358988 -The maximum resident set size (KB) = 1577248 +The total amount of wall time = 260.697330 +The maximum resident set size (KB) = 1585264 Test 002 cpld_control_gfsv17 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -242,14 +242,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 396.922318 -The maximum resident set size (KB) = 2983704 +The total amount of wall time = 385.838211 +The maximum resident set size (KB) = 2980132 Test 003 cpld_control_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/cpld_restart_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -302,15 +302,147 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 234.675511 -The maximum resident set size (KB) = 2863948 +The total amount of wall time = 230.317689 +The maximum resident set size (KB) = 2867748 Test 004 cpld_restart_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/cpld_2threads_p8 -Checking test 005 cpld_2threads_p8 results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/cpld_control_qr_p8 +Checking test 005 cpld_control_qr_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + +The total amount of wall time = 389.093524 +The maximum resident set size (KB) = 2992776 + +Test 005 cpld_control_qr_p8 PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/cpld_restart_qr_p8 +Checking test 006 cpld_restart_qr_p8 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + +The total amount of wall time = 232.265588 +The maximum resident set size (KB) = 2883720 + +Test 006 cpld_restart_qr_p8 PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/cpld_2threads_p8 +Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -362,15 +494,15 @@ Checking test 005 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 381.313009 -The maximum resident set size (KB) = 3290572 +The total amount of wall time = 366.709853 +The maximum resident set size (KB) = 3281136 -Test 005 cpld_2threads_p8 PASS +Test 007 cpld_2threads_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/cpld_decomp_p8 -Checking test 006 cpld_decomp_p8 results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/cpld_decomp_p8 +Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -422,15 +554,15 @@ Checking test 006 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 389.760154 -The maximum resident set size (KB) = 2974588 +The total amount of wall time = 378.126894 +The maximum resident set size (KB) = 2980592 -Test 006 cpld_decomp_p8 PASS +Test 008 cpld_decomp_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/cpld_mpi_p8 -Checking test 007 cpld_mpi_p8 results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/cpld_mpi_p8 +Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -482,15 +614,15 @@ Checking test 007 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 326.472614 -The maximum resident set size (KB) = 2906676 +The total amount of wall time = 317.813669 +The maximum resident set size (KB) = 2918448 -Test 007 cpld_mpi_p8 PASS +Test 009 cpld_mpi_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_ciceC_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/cpld_control_ciceC_p8 -Checking test 008 cpld_control_ciceC_p8 results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/cpld_control_ciceC_p8 +Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -554,15 +686,15 @@ Checking test 008 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 399.029827 -The maximum resident set size (KB) = 2982056 +The total amount of wall time = 383.789733 +The maximum resident set size (KB) = 2987692 -Test 008 cpld_control_ciceC_p8 PASS +Test 010 cpld_control_ciceC_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/cpld_control_noaero_p8 -Checking test 009 cpld_control_noaero_p8 results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/cpld_control_noaero_p8 +Checking test 011 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -625,15 +757,15 @@ Checking test 009 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 282.666748 -The maximum resident set size (KB) = 1582244 +The total amount of wall time = 280.388999 +The maximum resident set size (KB) = 1572804 -Test 009 cpld_control_noaero_p8 PASS +Test 011 cpld_control_noaero_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/cpld_control_nowave_noaero_p8 -Checking test 010 cpld_control_nowave_noaero_p8 results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/cpld_control_nowave_noaero_p8 +Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -694,15 +826,15 @@ Checking test 010 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 301.831387 -The maximum resident set size (KB) = 1633232 +The total amount of wall time = 297.106632 +The maximum resident set size (KB) = 1617588 -Test 010 cpld_control_nowave_noaero_p8 PASS +Test 012 cpld_control_nowave_noaero_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/cpld_control_noaero_p8_agrid -Checking test 011 cpld_control_noaero_p8_agrid results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/cpld_control_noaero_p8_agrid +Checking test 013 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -763,15 +895,15 @@ Checking test 011 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 310.515637 -The maximum resident set size (KB) = 1628380 +The total amount of wall time = 306.476342 +The maximum resident set size (KB) = 1630568 -Test 011 cpld_control_noaero_p8_agrid PASS +Test 013 cpld_control_noaero_p8_agrid PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/cpld_control_c48 -Checking test 012 cpld_control_c48 results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/cpld_control_c48 +Checking test 014 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -820,15 +952,15 @@ Checking test 012 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 434.753556 -The maximum resident set size (KB) = 2633480 +The total amount of wall time = 433.083962 +The maximum resident set size (KB) = 2635356 -Test 012 cpld_control_c48 PASS +Test 014 cpld_control_c48 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/cpld_warmstart_c48 -Checking test 013 cpld_warmstart_c48 results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/cpld_warmstart_c48 +Checking test 015 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK Comparing sfcf006.tile3.nc .........OK @@ -877,15 +1009,15 @@ Checking test 013 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 121.551386 -The maximum resident set size (KB) = 2644860 +The total amount of wall time = 123.152320 +The maximum resident set size (KB) = 2654156 -Test 013 cpld_warmstart_c48 PASS +Test 015 cpld_warmstart_c48 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/cpld_restart_c48 -Checking test 014 cpld_restart_c48 results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/cpld_restart_c48 +Checking test 016 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK Comparing sfcf006.tile3.nc .........OK @@ -934,15 +1066,15 @@ Checking test 014 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 68.605278 -The maximum resident set size (KB) = 2065268 +The total amount of wall time = 65.084052 +The maximum resident set size (KB) = 2064488 -Test 014 cpld_restart_c48 PASS +Test 016 cpld_restart_c48 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/cpld_control_p8_faster -Checking test 015 cpld_control_p8_faster results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/cpld_control_p8_faster +Checking test 017 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1006,15 +1138,15 @@ Checking test 015 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 382.811188 -The maximum resident set size (KB) = 2976776 +The total amount of wall time = 377.386937 +The maximum resident set size (KB) = 2983156 -Test 015 cpld_control_p8_faster PASS +Test 017 cpld_control_p8_faster PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/control_CubedSphereGrid -Checking test 016 control_CubedSphereGrid results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_CubedSphereGrid +Checking test 018 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1040,55 +1172,55 @@ Checking test 016 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 129.736639 -The maximum resident set size (KB) = 512992 +The total amount of wall time = 129.921060 +The maximum resident set size (KB) = 514992 -Test 016 control_CubedSphereGrid PASS +Test 018 control_CubedSphereGrid PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_latlon -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/control_latlon -Checking test 017 control_latlon results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_latlon +Checking test 019 control_latlon results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 132.681069 -The maximum resident set size (KB) = 511140 +The total amount of wall time = 133.248040 +The maximum resident set size (KB) = 512700 -Test 017 control_latlon PASS +Test 019 control_latlon PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/control_wrtGauss_netcdf_parallel -Checking test 018 control_wrtGauss_netcdf_parallel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_wrtGauss_netcdf_parallel +Checking test 020 control_wrtGauss_netcdf_parallel results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.127602 -The maximum resident set size (KB) = 512124 +The total amount of wall time = 133.775025 +The maximum resident set size (KB) = 513648 -Test 018 control_wrtGauss_netcdf_parallel PASS +Test 020 control_wrtGauss_netcdf_parallel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/control_c48 -Checking test 019 control_c48 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_c48 +Checking test 021 control_c48 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -1122,55 +1254,55 @@ Checking test 019 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 326.706800 -The maximum resident set size (KB) = 670340 +The total amount of wall time = 327.213363 +The maximum resident set size (KB) = 670080 -Test 019 control_c48 PASS +Test 021 control_c48 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c192 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/control_c192 -Checking test 020 control_c192 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_c192 +Checking test 022 control_c192 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 528.017078 -The maximum resident set size (KB) = 613888 +The total amount of wall time = 530.604138 +The maximum resident set size (KB) = 610296 -Test 020 control_c192 PASS +Test 022 control_c192 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c384 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/control_c384 -Checking test 021 control_c384 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_c384 +Checking test 023 control_c384 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 576.277586 -The maximum resident set size (KB) = 909892 +The total amount of wall time = 565.411813 +The maximum resident set size (KB) = 916932 -Test 021 control_c384 PASS +Test 023 control_c384 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c384gdas -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/control_c384gdas -Checking test 022 control_c384gdas results .... - Comparing sfcf000.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf006.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_c384gdas +Checking test 024 control_c384gdas results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf006.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF06 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -1208,71 +1340,71 @@ Checking test 022 control_c384gdas 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 = 519.102328 -The maximum resident set size (KB) = 1042704 +The total amount of wall time = 497.029337 +The maximum resident set size (KB) = 1052112 -Test 022 control_c384gdas PASS +Test 024 control_c384gdas PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/control_stochy -Checking test 023 control_stochy results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_stochy +Checking test 025 control_stochy results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 89.281528 -The maximum resident set size (KB) = 516788 +The total amount of wall time = 88.950349 +The maximum resident set size (KB) = 517416 -Test 023 control_stochy PASS +Test 025 control_stochy PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/control_stochy_restart -Checking test 024 control_stochy_restart results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_stochy_restart +Checking test 026 control_stochy_restart results .... + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 48.856146 -The maximum resident set size (KB) = 286316 +The total amount of wall time = 49.001214 +The maximum resident set size (KB) = 284600 -Test 024 control_stochy_restart PASS +Test 026 control_stochy_restart PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/control_lndp -Checking test 025 control_lndp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_lndp +Checking test 027 control_lndp results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 83.215578 -The maximum resident set size (KB) = 517276 +The total amount of wall time = 82.756489 +The maximum resident set size (KB) = 513760 -Test 025 control_lndp PASS +Test 027 control_lndp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_iovr4 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/control_iovr4 -Checking test 026 control_iovr4 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_iovr4 +Checking test 028 control_iovr4 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1280,21 +1412,21 @@ Checking test 026 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.379496 -The maximum resident set size (KB) = 514060 +The total amount of wall time = 135.352865 +The maximum resident set size (KB) = 514728 -Test 026 control_iovr4 PASS +Test 028 control_iovr4 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_iovr5 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/control_iovr5 -Checking test 027 control_iovr5 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_iovr5 +Checking test 029 control_iovr5 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1302,21 +1434,21 @@ Checking test 027 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 134.947678 -The maximum resident set size (KB) = 512576 +The total amount of wall time = 134.956786 +The maximum resident set size (KB) = 514908 -Test 027 control_iovr5 PASS +Test 029 control_iovr5 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/control_p8 -Checking test 028 control_p8 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_p8 +Checking test 030 control_p8 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1356,43 +1488,17 @@ Checking test 028 control_p8 results .... 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.169195 -The maximum resident set size (KB) = 1482532 +The total amount of wall time = 178.084423 +The maximum resident set size (KB) = 1486328 -Test 028 control_p8 PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/control_p8_lndp -Checking test 029 control_p8_lndp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing sfcf048.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing atmf048.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSFLX.GrbF48 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing GFSPRS.GrbF48 .........OK - -The total amount of wall time = 320.835284 -The maximum resident set size (KB) = 1486976 - -Test 029 control_p8_lndp PASS +Test 030 control_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/control_restart_p8 -Checking test 030 control_restart_p8 results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_restart_p8 +Checking test 031 control_restart_p8 results .... + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -1428,19 +1534,119 @@ Checking test 030 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 99.585583 -The maximum resident set size (KB) = 650456 +The total amount of wall time = 100.252892 +The maximum resident set size (KB) = 650564 + +Test 031 control_restart_p8 PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_qr_p8 +Checking test 032 control_qr_p8 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + +The total amount of wall time = 175.519259 +The maximum resident set size (KB) = 1494916 + +Test 032 control_qr_p8 PASS -Test 030 control_restart_p8 PASS + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_restart_qr_p8 +Checking test 033 control_restart_qr_p8 results .... + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + +The total amount of wall time = 100.819844 +The maximum resident set size (KB) = 668272 + +Test 033 control_restart_qr_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/control_decomp_p8 -Checking test 031 control_decomp_p8 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_decomp_p8 +Checking test 034 control_decomp_p8 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -1478,19 +1684,19 @@ Checking test 031 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 180.458126 -The maximum resident set size (KB) = 1485632 +The total amount of wall time = 181.531490 +The maximum resident set size (KB) = 1482308 -Test 031 control_decomp_p8 PASS +Test 034 control_decomp_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/control_2threads_p8 -Checking test 032 control_2threads_p8 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_2threads_p8 +Checking test 035 control_2threads_p8 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -1528,21 +1734,47 @@ Checking test 032 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 161.684253 -The maximum resident set size (KB) = 1562484 +The total amount of wall time = 155.325845 +The maximum resident set size (KB) = 1572316 + +Test 035 control_2threads_p8 PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_p8_lndp +Checking test 036 control_p8_lndp results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing sfcf048.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK + Comparing atmf048.nc ............ALT CHECK......OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSFLX.GrbF48 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing GFSPRS.GrbF48 .........OK + +The total amount of wall time = 319.957557 +The maximum resident set size (KB) = 1486704 -Test 032 control_2threads_p8 PASS +Test 036 control_p8_lndp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_rrtmgp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/control_p8_rrtmgp -Checking test 033 control_p8_rrtmgp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_p8_rrtmgp +Checking test 037 control_p8_rrtmgp results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1582,21 +1814,21 @@ Checking test 033 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 235.550320 -The maximum resident set size (KB) = 1546076 +The total amount of wall time = 233.051215 +The maximum resident set size (KB) = 1546684 -Test 033 control_p8_rrtmgp PASS +Test 037 control_p8_rrtmgp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_mynn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/control_p8_mynn -Checking test 034 control_p8_mynn results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_p8_mynn +Checking test 038 control_p8_mynn results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1636,21 +1868,21 @@ Checking test 034 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 180.643668 -The maximum resident set size (KB) = 1484056 +The total amount of wall time = 178.727546 +The maximum resident set size (KB) = 1485908 -Test 034 control_p8_mynn PASS +Test 038 control_p8_mynn PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/merra2_thompson -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/merra2_thompson -Checking test 035 merra2_thompson results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/merra2_thompson +Checking test 039 merra2_thompson results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1690,194 +1922,226 @@ Checking test 035 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 204.149271 -The maximum resident set size (KB) = 1492528 +The total amount of wall time = 201.907440 +The maximum resident set size (KB) = 1492684 -Test 035 merra2_thompson PASS +Test 039 merra2_thompson PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/regional_control -Checking test 036 regional_control results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/regional_control +Checking test 040 regional_control results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf006.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 287.496752 -The maximum resident set size (KB) = 652608 +The total amount of wall time = 288.030261 +The maximum resident set size (KB) = 649240 -Test 036 regional_control PASS +Test 040 regional_control PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/regional_restart -Checking test 037 regional_restart results .... - Comparing dynf006.nc .........OK - Comparing phyf006.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/regional_restart +Checking test 041 regional_restart results .... + Comparing dynf006.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 153.302921 -The maximum resident set size (KB) = 649632 +The total amount of wall time = 154.119714 +The maximum resident set size (KB) = 648024 -Test 037 regional_restart PASS +Test 041 regional_restart PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/regional_decomp -Checking test 038 regional_decomp results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/regional_control_qr +Checking test 042 regional_control_qr results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf006.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 302.274233 -The maximum resident set size (KB) = 647760 +The total amount of wall time = 289.777383 +The maximum resident set size (KB) = 653180 + +Test 042 regional_control_qr PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/regional_restart_qr +Checking test 043 regional_restart_qr results .... + Comparing dynf006.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF06 .........OK + +The total amount of wall time = 155.128760 +The maximum resident set size (KB) = 649864 -Test 038 regional_decomp PASS +Test 043 regional_restart_qr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/regional_2threads -Checking test 039 regional_2threads results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/regional_decomp +Checking test 044 regional_decomp results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf006.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 178.370607 -The maximum resident set size (KB) = 694896 +The total amount of wall time = 303.908955 +The maximum resident set size (KB) = 649568 -Test 039 regional_2threads PASS +Test 044 regional_decomp PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/regional_2threads +Checking test 045 regional_2threads results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf006.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK + +The total amount of wall time = 175.178226 +The maximum resident set size (KB) = 694348 + +Test 045 regional_2threads PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_noquilt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/regional_noquilt -Checking test 040 regional_noquilt results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/regional_noquilt +Checking test 046 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 310.384790 -The maximum resident set size (KB) = 642368 +The total amount of wall time = 307.382730 +The maximum resident set size (KB) = 643136 -Test 040 regional_noquilt PASS +Test 046 regional_noquilt PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/regional_2dwrtdecomp -Checking test 041 regional_2dwrtdecomp results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/regional_2dwrtdecomp +Checking test 047 regional_2dwrtdecomp results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf006.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 287.588562 -The maximum resident set size (KB) = 647320 +The total amount of wall time = 285.237037 +The maximum resident set size (KB) = 653404 -Test 041 regional_2dwrtdecomp PASS +Test 047 regional_2dwrtdecomp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/fv3_regional_wofs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/regional_wofs -Checking test 042 regional_wofs results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/regional_wofs +Checking test 048 regional_wofs results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf006.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 364.710994 -The maximum resident set size (KB) = 333164 +The total amount of wall time = 363.913097 +The maximum resident set size (KB) = 336376 -Test 042 regional_wofs PASS +Test 048 regional_wofs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_ifi_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/regional_ifi_control -Checking test 043 regional_ifi_control results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/regional_ifi_control +Checking test 049 regional_ifi_control results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf006.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 321.451441 -The maximum resident set size (KB) = 648508 +The total amount of wall time = 319.034126 +The maximum resident set size (KB) = 649340 -Test 043 regional_ifi_control PASS +Test 049 regional_ifi_control PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_ifi_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/regional_ifi_decomp -Checking test 044 regional_ifi_decomp results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/regional_ifi_decomp +Checking test 050 regional_ifi_decomp results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf006.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 338.279342 -The maximum resident set size (KB) = 649648 +The total amount of wall time = 336.356156 +The maximum resident set size (KB) = 649784 -Test 044 regional_ifi_decomp PASS +Test 050 regional_ifi_decomp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_ifi_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/regional_ifi_2threads -Checking test 045 regional_ifi_2threads results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/regional_ifi_2threads +Checking test 051 regional_ifi_2threads results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf006.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 221.619945 -The maximum resident set size (KB) = 697608 +The total amount of wall time = 196.092976 +The maximum resident set size (KB) = 695664 -Test 045 regional_ifi_2threads PASS +Test 051 regional_ifi_2threads PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/rap_control -Checking test 046 rap_control results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/rap_control +Checking test 052 rap_control results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1917,39 +2181,39 @@ Checking test 046 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 416.199088 -The maximum resident set size (KB) = 894132 +The total amount of wall time = 418.539785 +The maximum resident set size (KB) = 900940 -Test 046 rap_control PASS +Test 052 rap_control PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/regional_spp_sppt_shum_skeb -Checking test 047 regional_spp_sppt_shum_skeb results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/regional_spp_sppt_shum_skeb +Checking test 053 regional_spp_sppt_shum_skeb results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf001.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf001.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF01 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 287.138318 -The maximum resident set size (KB) = 978140 +The total amount of wall time = 243.411160 +The maximum resident set size (KB) = 975216 -Test 047 regional_spp_sppt_shum_skeb PASS +Test 053 regional_spp_sppt_shum_skeb PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/rap_decomp -Checking test 048 rap_decomp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/rap_decomp +Checking test 054 rap_decomp results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1989,21 +2253,21 @@ Checking test 048 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 432.416083 -The maximum resident set size (KB) = 894620 +The total amount of wall time = 433.808365 +The maximum resident set size (KB) = 896504 -Test 048 rap_decomp PASS +Test 054 rap_decomp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/rap_2threads -Checking test 049 rap_2threads results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/rap_2threads +Checking test 055 rap_2threads results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2043,17 +2307,17 @@ Checking test 049 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 390.983018 -The maximum resident set size (KB) = 964608 +The total amount of wall time = 385.882343 +The maximum resident set size (KB) = 965988 -Test 049 rap_2threads PASS +Test 055 rap_2threads PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/rap_restart -Checking test 050 rap_restart results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/rap_restart +Checking test 056 rap_restart results .... + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -2089,21 +2353,21 @@ Checking test 050 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 212.282269 -The maximum resident set size (KB) = 641804 +The total amount of wall time = 212.926722 +The maximum resident set size (KB) = 645552 -Test 050 rap_restart PASS +Test 056 rap_restart PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/rap_sfcdiff -Checking test 051 rap_sfcdiff 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 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/rap_sfcdiff +Checking test 057 rap_sfcdiff results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2143,21 +2407,21 @@ Checking test 051 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 414.440435 -The maximum resident set size (KB) = 897116 +The total amount of wall time = 420.042643 +The maximum resident set size (KB) = 895608 -Test 051 rap_sfcdiff PASS +Test 057 rap_sfcdiff PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/rap_sfcdiff_decomp -Checking test 052 rap_sfcdiff_decomp 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 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/rap_sfcdiff_decomp +Checking test 058 rap_sfcdiff_decomp results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2197,17 +2461,17 @@ Checking test 052 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 430.217494 -The maximum resident set size (KB) = 894200 +The total amount of wall time = 439.171969 +The maximum resident set size (KB) = 896452 -Test 052 rap_sfcdiff_decomp PASS +Test 058 rap_sfcdiff_decomp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/rap_sfcdiff_restart -Checking test 053 rap_sfcdiff_restart results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/rap_sfcdiff_restart +Checking test 059 rap_sfcdiff_restart results .... + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -2243,21 +2507,21 @@ Checking test 053 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 309.135325 -The maximum resident set size (KB) = 639260 +The total amount of wall time = 309.839447 +The maximum resident set size (KB) = 641116 -Test 053 rap_sfcdiff_restart PASS +Test 059 rap_sfcdiff_restart PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/hrrr_control -Checking test 054 hrrr_control 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 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/hrrr_control +Checking test 060 hrrr_control results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2297,21 +2561,21 @@ Checking test 054 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 396.141970 -The maximum resident set size (KB) = 887904 +The total amount of wall time = 404.600023 +The maximum resident set size (KB) = 889956 -Test 054 hrrr_control PASS +Test 060 hrrr_control PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/hrrr_control_decomp -Checking test 055 hrrr_control_decomp 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 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/hrrr_control_decomp +Checking test 061 hrrr_control_decomp results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2351,21 +2615,21 @@ Checking test 055 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 414.671971 -The maximum resident set size (KB) = 888124 +The total amount of wall time = 420.840377 +The maximum resident set size (KB) = 891700 -Test 055 hrrr_control_decomp PASS +Test 061 hrrr_control_decomp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/hrrr_control_2threads -Checking test 056 hrrr_control_2threads 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 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/hrrr_control_2threads +Checking test 062 hrrr_control_2threads results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2405,17 +2669,17 @@ Checking test 056 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 368.678789 -The maximum resident set size (KB) = 956404 +The total amount of wall time = 373.885157 +The maximum resident set size (KB) = 957728 -Test 056 hrrr_control_2threads PASS +Test 062 hrrr_control_2threads PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/hrrr_control_restart -Checking test 057 hrrr_control_restart results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/hrrr_control_restart +Checking test 063 hrrr_control_restart results .... + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -2451,21 +2715,21 @@ Checking test 057 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 297.820308 -The maximum resident set size (KB) = 632784 +The total amount of wall time = 297.014024 +The maximum resident set size (KB) = 637300 -Test 057 hrrr_control_restart PASS +Test 063 hrrr_control_restart PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1beta -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/rrfs_v1beta -Checking test 058 rrfs_v1beta 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 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/rrfs_v1beta +Checking test 064 rrfs_v1beta results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2505,21 +2769,21 @@ Checking test 058 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 410.293094 -The maximum resident set size (KB) = 890668 +The total amount of wall time = 416.894047 +The maximum resident set size (KB) = 890508 -Test 058 rrfs_v1beta PASS +Test 064 rrfs_v1beta PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1nssl -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/rrfs_v1nssl -Checking test 059 rrfs_v1nssl 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 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/rrfs_v1nssl +Checking test 065 rrfs_v1nssl results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2527,21 +2791,21 @@ Checking test 059 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 474.192315 -The maximum resident set size (KB) = 573040 +The total amount of wall time = 482.309529 +The maximum resident set size (KB) = 573540 -Test 059 rrfs_v1nssl PASS +Test 065 rrfs_v1nssl PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/rrfs_v1nssl_nohailnoccn -Checking test 060 rrfs_v1nssl_nohailnoccn 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 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/rrfs_v1nssl_nohailnoccn +Checking test 066 rrfs_v1nssl_nohailnoccn results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2549,151 +2813,151 @@ Checking test 060 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 464.305457 -The maximum resident set size (KB) = 564768 +The total amount of wall time = 473.380992 +The maximum resident set size (KB) = 565012 -Test 060 rrfs_v1nssl_nohailnoccn PASS +Test 066 rrfs_v1nssl_nohailnoccn PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/rrfs_smoke_conus13km_hrrr_warm -Checking test 061 rrfs_smoke_conus13km_hrrr_warm 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 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/rrfs_smoke_conus13km_hrrr_warm +Checking test 067 rrfs_smoke_conus13km_hrrr_warm results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing sfcf002.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK + Comparing atmf002.nc ............ALT CHECK......OK -The total amount of wall time = 143.622376 -The maximum resident set size (KB) = 790732 +The total amount of wall time = 144.647198 +The maximum resident set size (KB) = 801368 -Test 061 rrfs_smoke_conus13km_hrrr_warm PASS +Test 067 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/rrfs_smoke_conus13km_hrrr_warm_2threads -Checking test 062 rrfs_smoke_conus13km_hrrr_warm_2threads 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 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/rrfs_smoke_conus13km_hrrr_warm_2threads +Checking test 068 rrfs_smoke_conus13km_hrrr_warm_2threads results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing sfcf002.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK + Comparing atmf002.nc ............ALT CHECK......OK -The total amount of wall time = 103.548448 -The maximum resident set size (KB) = 802044 +The total amount of wall time = 101.957441 +The maximum resident set size (KB) = 794500 -Test 062 rrfs_smoke_conus13km_hrrr_warm_2threads PASS +Test 068 rrfs_smoke_conus13km_hrrr_warm_2threads PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/rrfs_conus13km_hrrr_warm -Checking test 063 rrfs_conus13km_hrrr_warm 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 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/rrfs_conus13km_hrrr_warm +Checking test 069 rrfs_conus13km_hrrr_warm results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing sfcf002.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK + Comparing atmf002.nc ............ALT CHECK......OK -The total amount of wall time = 130.297259 -The maximum resident set size (KB) = 774692 +The total amount of wall time = 132.537238 +The maximum resident set size (KB) = 778408 -Test 063 rrfs_conus13km_hrrr_warm PASS +Test 069 rrfs_conus13km_hrrr_warm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/rrfs_smoke_conus13km_radar_tten_warm -Checking test 064 rrfs_smoke_conus13km_radar_tten_warm 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 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/rrfs_smoke_conus13km_radar_tten_warm +Checking test 070 rrfs_smoke_conus13km_radar_tten_warm results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing sfcf002.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK + Comparing atmf002.nc ............ALT CHECK......OK -The total amount of wall time = 145.000526 -The maximum resident set size (KB) = 798928 +The total amount of wall time = 146.625780 +The maximum resident set size (KB) = 797240 -Test 064 rrfs_smoke_conus13km_radar_tten_warm PASS +Test 070 rrfs_smoke_conus13km_radar_tten_warm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmg -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/control_csawmg -Checking test 065 control_csawmg results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_csawmg +Checking test 071 control_csawmg results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 348.213092 -The maximum resident set size (KB) = 584780 +The total amount of wall time = 347.187824 +The maximum resident set size (KB) = 581972 -Test 065 control_csawmg PASS +Test 071 control_csawmg PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmgt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/control_csawmgt -Checking test 066 control_csawmgt results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_csawmgt +Checking test 072 control_csawmgt results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 344.565625 -The maximum resident set size (KB) = 585196 +The total amount of wall time = 344.339152 +The maximum resident set size (KB) = 583048 -Test 066 control_csawmgt PASS +Test 072 control_csawmgt PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_ras -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/control_ras -Checking test 067 control_ras results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_ras +Checking test 073 control_ras results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 181.622794 -The maximum resident set size (KB) = 551820 +The total amount of wall time = 181.583662 +The maximum resident set size (KB) = 549992 -Test 067 control_ras PASS +Test 073 control_ras PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wam -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/control_wam -Checking test 068 control_wam results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_wam +Checking test 074 control_wam results .... + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK -The total amount of wall time = 117.140290 -The maximum resident set size (KB) = 269656 +The total amount of wall time = 117.137749 +The maximum resident set size (KB) = 269588 -Test 068 control_wam PASS +Test 074 control_wam PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/control_p8_faster -Checking test 069 control_p8_faster results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_p8_faster +Checking test 075 control_p8_faster results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2733,75 +2997,75 @@ Checking test 069 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 172.278630 -The maximum resident set size (KB) = 1488544 +The total amount of wall time = 174.309848 +The maximum resident set size (KB) = 1488700 -Test 069 control_p8_faster PASS +Test 075 control_p8_faster PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/regional_control_faster -Checking test 070 regional_control_faster results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/regional_control_faster +Checking test 076 regional_control_faster results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf006.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 279.048748 -The maximum resident set size (KB) = 646320 +The total amount of wall time = 277.566781 +The maximum resident set size (KB) = 649056 -Test 070 regional_control_faster PASS +Test 076 regional_control_faster PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/rrfs_smoke_conus13km_hrrr_warm_debug -Checking test 071 rrfs_smoke_conus13km_hrrr_warm_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/rrfs_smoke_conus13km_hrrr_warm_debug +Checking test 077 rrfs_smoke_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 901.133140 -The maximum resident set size (KB) = 830264 +The total amount of wall time = 904.058469 +The maximum resident set size (KB) = 834012 -Test 071 rrfs_smoke_conus13km_hrrr_warm_debug PASS +Test 077 rrfs_smoke_conus13km_hrrr_warm_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/rrfs_smoke_conus13km_hrrr_warm_debug_2threads -Checking test 072 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +Checking test 078 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 525.594259 -The maximum resident set size (KB) = 835832 +The total amount of wall time = 523.618461 +The maximum resident set size (KB) = 832896 -Test 072 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS +Test 078 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/rrfs_conus13km_hrrr_warm_debug -Checking test 073 rrfs_conus13km_hrrr_warm_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/rrfs_conus13km_hrrr_warm_debug +Checking test 079 rrfs_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 812.196847 -The maximum resident set size (KB) = 804500 +The total amount of wall time = 804.953204 +The maximum resident set size (KB) = 808828 -Test 073 rrfs_conus13km_hrrr_warm_debug PASS +Test 079 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/control_CubedSphereGrid_debug -Checking test 074 control_CubedSphereGrid_debug results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_CubedSphereGrid_debug +Checking test 080 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -2827,359 +3091,359 @@ Checking test 074 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 166.451561 -The maximum resident set size (KB) = 674648 +The total amount of wall time = 165.700917 +The maximum resident set size (KB) = 677352 -Test 074 control_CubedSphereGrid_debug PASS +Test 080 control_CubedSphereGrid_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/control_wrtGauss_netcdf_parallel_debug -Checking test 075 control_wrtGauss_netcdf_parallel_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_wrtGauss_netcdf_parallel_debug +Checking test 081 control_wrtGauss_netcdf_parallel_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 158.379935 -The maximum resident set size (KB) = 677996 +The total amount of wall time = 157.982747 +The maximum resident set size (KB) = 678824 -Test 075 control_wrtGauss_netcdf_parallel_debug PASS +Test 081 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/control_stochy_debug -Checking test 076 control_stochy_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_stochy_debug +Checking test 082 control_stochy_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 179.566328 -The maximum resident set size (KB) = 682612 +The total amount of wall time = 177.932509 +The maximum resident set size (KB) = 682228 -Test 076 control_stochy_debug PASS +Test 082 control_stochy_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/control_lndp_debug -Checking test 077 control_lndp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_lndp_debug +Checking test 083 control_lndp_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 161.339038 -The maximum resident set size (KB) = 684296 +The total amount of wall time = 160.142423 +The maximum resident set size (KB) = 685808 -Test 077 control_lndp_debug PASS +Test 083 control_lndp_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmg_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/control_csawmg_debug -Checking test 078 control_csawmg_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_csawmg_debug +Checking test 084 control_csawmg_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 256.203816 -The maximum resident set size (KB) = 721212 +The total amount of wall time = 254.535691 +The maximum resident set size (KB) = 720656 -Test 078 control_csawmg_debug PASS +Test 084 control_csawmg_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmgt_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/control_csawmgt_debug -Checking test 079 control_csawmgt_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_csawmgt_debug +Checking test 085 control_csawmgt_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 253.269627 -The maximum resident set size (KB) = 718664 +The total amount of wall time = 249.269757 +The maximum resident set size (KB) = 719516 -Test 079 control_csawmgt_debug PASS +Test 085 control_csawmgt_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_ras_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/control_ras_debug -Checking test 080 control_ras_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_ras_debug +Checking test 086 control_ras_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 165.124102 -The maximum resident set size (KB) = 695640 +The total amount of wall time = 164.048208 +The maximum resident set size (KB) = 689364 -Test 080 control_ras_debug PASS +Test 086 control_ras_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/control_diag_debug -Checking test 081 control_diag_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_diag_debug +Checking test 087 control_diag_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 164.687524 -The maximum resident set size (KB) = 736408 +The total amount of wall time = 163.022382 +The maximum resident set size (KB) = 736532 -Test 081 control_diag_debug PASS +Test 087 control_diag_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_debug_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/control_debug_p8 -Checking test 082 control_debug_p8 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_debug_p8 +Checking test 088 control_debug_p8 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 189.901765 -The maximum resident set size (KB) = 1505172 +The total amount of wall time = 184.954832 +The maximum resident set size (KB) = 1507196 -Test 082 control_debug_p8 PASS +Test 088 control_debug_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/regional_debug -Checking test 083 regional_debug results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/regional_debug +Checking test 089 regional_debug results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf001.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf001.nc ............ALT CHECK......OK -The total amount of wall time = 1043.404478 -The maximum resident set size (KB) = 677088 +The total amount of wall time = 1040.106482 +The maximum resident set size (KB) = 678112 -Test 083 regional_debug PASS +Test 089 regional_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/rap_control_debug -Checking test 084 rap_control_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/rap_control_debug +Checking test 090 rap_control_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 300.024660 -The maximum resident set size (KB) = 1054676 +The total amount of wall time = 299.670572 +The maximum resident set size (KB) = 1056840 -Test 084 rap_control_debug PASS +Test 090 rap_control_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/hrrr_control_debug -Checking test 085 hrrr_control_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/hrrr_control_debug +Checking test 091 hrrr_control_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 292.651285 -The maximum resident set size (KB) = 1054836 +The total amount of wall time = 291.699001 +The maximum resident set size (KB) = 1053932 -Test 085 hrrr_control_debug PASS +Test 091 hrrr_control_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/rap_unified_drag_suite_debug -Checking test 086 rap_unified_drag_suite_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/rap_unified_drag_suite_debug +Checking test 092 rap_unified_drag_suite_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 298.740551 -The maximum resident set size (KB) = 1058788 +The total amount of wall time = 295.757457 +The maximum resident set size (KB) = 1057104 -Test 086 rap_unified_drag_suite_debug PASS +Test 092 rap_unified_drag_suite_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/rap_diag_debug -Checking test 087 rap_diag_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/rap_diag_debug +Checking test 093 rap_diag_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 310.382175 -The maximum resident set size (KB) = 1137192 +The total amount of wall time = 307.741384 +The maximum resident set size (KB) = 1136740 -Test 087 rap_diag_debug PASS +Test 093 rap_diag_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/rap_cires_ugwp_debug -Checking test 088 rap_cires_ugwp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/rap_cires_ugwp_debug +Checking test 094 rap_cires_ugwp_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 305.596621 -The maximum resident set size (KB) = 1053100 +The total amount of wall time = 304.325471 +The maximum resident set size (KB) = 1055224 -Test 088 rap_cires_ugwp_debug PASS +Test 094 rap_cires_ugwp_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/rap_unified_ugwp_debug -Checking test 089 rap_unified_ugwp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/rap_unified_ugwp_debug +Checking test 095 rap_unified_ugwp_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 307.190048 -The maximum resident set size (KB) = 1054808 +The total amount of wall time = 303.433213 +The maximum resident set size (KB) = 1058944 -Test 089 rap_unified_ugwp_debug PASS +Test 095 rap_unified_ugwp_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/rap_lndp_debug -Checking test 090 rap_lndp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/rap_lndp_debug +Checking test 096 rap_lndp_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 302.172087 -The maximum resident set size (KB) = 1058796 +The total amount of wall time = 299.380015 +The maximum resident set size (KB) = 1057256 -Test 090 rap_lndp_debug PASS +Test 096 rap_lndp_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_flake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/rap_flake_debug -Checking test 091 rap_flake_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/rap_flake_debug +Checking test 097 rap_flake_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 299.718348 -The maximum resident set size (KB) = 1053364 +The total amount of wall time = 297.345462 +The maximum resident set size (KB) = 1057704 -Test 091 rap_flake_debug PASS +Test 097 rap_flake_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_progcld_thompson_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/rap_progcld_thompson_debug -Checking test 092 rap_progcld_thompson_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/rap_progcld_thompson_debug +Checking test 098 rap_progcld_thompson_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 299.071728 -The maximum resident set size (KB) = 1057064 +The total amount of wall time = 297.120510 +The maximum resident set size (KB) = 1054604 -Test 092 rap_progcld_thompson_debug PASS +Test 098 rap_progcld_thompson_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_noah_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/rap_noah_debug -Checking test 093 rap_noah_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/rap_noah_debug +Checking test 099 rap_noah_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 292.228567 -The maximum resident set size (KB) = 1055648 +The total amount of wall time = 290.137281 +The maximum resident set size (KB) = 1055204 -Test 093 rap_noah_debug PASS +Test 099 rap_noah_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/rap_sfcdiff_debug -Checking test 094 rap_sfcdiff_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/rap_sfcdiff_debug +Checking test 100 rap_sfcdiff_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 299.278145 -The maximum resident set size (KB) = 1053108 +The total amount of wall time = 296.194463 +The maximum resident set size (KB) = 1058732 -Test 094 rap_sfcdiff_debug PASS +Test 100 rap_sfcdiff_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 095 rap_noah_sfcdiff_cires_ugwp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 101 rap_noah_sfcdiff_cires_ugwp_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 488.849448 -The maximum resident set size (KB) = 1052312 +The total amount of wall time = 483.348842 +The maximum resident set size (KB) = 1050156 -Test 095 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 101 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1beta_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/rrfs_v1beta_debug -Checking test 096 rrfs_v1beta_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/rrfs_v1beta_debug +Checking test 102 rrfs_v1beta_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 292.940337 -The maximum resident set size (KB) = 1050788 +The total amount of wall time = 292.099413 +The maximum resident set size (KB) = 1052432 -Test 096 rrfs_v1beta_debug PASS +Test 102 rrfs_v1beta_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wam_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/control_wam_debug -Checking test 097 control_wam_debug results .... - Comparing sfcf019.nc .........OK - Comparing atmf019.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_wam_debug +Checking test 103 control_wam_debug results .... + Comparing sfcf019.nc ............ALT CHECK......OK + Comparing atmf019.nc ............ALT CHECK......OK -The total amount of wall time = 299.228467 -The maximum resident set size (KB) = 301692 +The total amount of wall time = 297.044775 +The maximum resident set size (KB) = 306312 -Test 097 control_wam_debug PASS +Test 103 control_wam_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/regional_spp_sppt_shum_skeb_dyn32_phy32 -Checking test 098 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf001.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf001.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF01 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 270.012573 -The maximum resident set size (KB) = 884332 +The total amount of wall time = 225.643269 +The maximum resident set size (KB) = 881696 -Test 098 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS +Test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/rap_control_dyn32_phy32 -Checking test 099 rap_control_dyn32_phy32 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 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/rap_control_dyn32_phy32 +Checking test 105 rap_control_dyn32_phy32 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3219,21 +3483,21 @@ Checking test 099 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 342.065945 -The maximum resident set size (KB) = 776008 +The total amount of wall time = 347.391905 +The maximum resident set size (KB) = 774044 -Test 099 rap_control_dyn32_phy32 PASS +Test 105 rap_control_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/hrrr_control_dyn32_phy32 -Checking test 100 hrrr_control_dyn32_phy32 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 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/hrrr_control_dyn32_phy32 +Checking test 106 hrrr_control_dyn32_phy32 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3273,21 +3537,21 @@ Checking test 100 hrrr_control_dyn32_phy32 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 = 184.079281 -The maximum resident set size (KB) = 771556 +The total amount of wall time = 184.249784 +The maximum resident set size (KB) = 773524 -Test 100 hrrr_control_dyn32_phy32 PASS +Test 106 hrrr_control_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/rap_2threads_dyn32_phy32 -Checking test 101 rap_2threads_dyn32_phy32 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 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/rap_2threads_dyn32_phy32 +Checking test 107 rap_2threads_dyn32_phy32 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3327,21 +3591,21 @@ Checking test 101 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 319.260165 -The maximum resident set size (KB) = 832656 +The total amount of wall time = 323.967448 +The maximum resident set size (KB) = 833052 -Test 101 rap_2threads_dyn32_phy32 PASS +Test 107 rap_2threads_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/hrrr_control_2threads_dyn32_phy32 -Checking test 102 hrrr_control_2threads_dyn32_phy32 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 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/hrrr_control_2threads_dyn32_phy32 +Checking test 108 hrrr_control_2threads_dyn32_phy32 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3381,21 +3645,21 @@ Checking test 102 hrrr_control_2threads_dyn32_phy32 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 = 175.058804 -The maximum resident set size (KB) = 827064 +The total amount of wall time = 170.279797 +The maximum resident set size (KB) = 827600 -Test 102 hrrr_control_2threads_dyn32_phy32 PASS +Test 108 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/hrrr_control_decomp_dyn32_phy32 -Checking test 103 hrrr_control_decomp_dyn32_phy32 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 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/hrrr_control_decomp_dyn32_phy32 +Checking test 109 hrrr_control_decomp_dyn32_phy32 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3435,17 +3699,17 @@ Checking test 103 hrrr_control_decomp_dyn32_phy32 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 = 192.115303 -The maximum resident set size (KB) = 773744 +The total amount of wall time = 191.886959 +The maximum resident set size (KB) = 772548 -Test 103 hrrr_control_decomp_dyn32_phy32 PASS +Test 109 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/rap_restart_dyn32_phy32 -Checking test 104 rap_restart_dyn32_phy32 results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/rap_restart_dyn32_phy32 +Checking test 110 rap_restart_dyn32_phy32 results .... + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -3481,17 +3745,17 @@ Checking test 104 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 255.159582 -The maximum resident set size (KB) = 610148 +The total amount of wall time = 254.984386 +The maximum resident set size (KB) = 609428 -Test 104 rap_restart_dyn32_phy32 PASS +Test 110 rap_restart_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/hrrr_control_restart_dyn32_phy32 -Checking test 105 hrrr_control_restart_dyn32_phy32 results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/hrrr_control_restart_dyn32_phy32 +Checking test 111 hrrr_control_restart_dyn32_phy32 results .... + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.180000.coupler.res .........OK @@ -3527,21 +3791,21 @@ Checking test 105 hrrr_control_restart_dyn32_phy32 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 = 95.188834 -The maximum resident set size (KB) = 604600 +The total amount of wall time = 94.779791 +The maximum resident set size (KB) = 602744 -Test 105 hrrr_control_restart_dyn32_phy32 PASS +Test 111 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/rap_control_dyn64_phy32 -Checking test 106 rap_control_dyn64_phy32 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 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/rap_control_dyn64_phy32 +Checking test 112 rap_control_dyn64_phy32 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3581,116 +3845,116 @@ Checking test 106 rap_control_dyn64_phy32 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 = 232.151845 -The maximum resident set size (KB) = 797360 +The total amount of wall time = 231.884575 +The maximum resident set size (KB) = 795424 -Test 106 rap_control_dyn64_phy32 PASS +Test 112 rap_control_dyn64_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/rap_control_debug_dyn32_phy32 -Checking test 107 rap_control_debug_dyn32_phy32 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/rap_control_debug_dyn32_phy32 +Checking test 113 rap_control_debug_dyn32_phy32 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 290.313345 -The maximum resident set size (KB) = 941232 +The total amount of wall time = 291.750423 +The maximum resident set size (KB) = 939112 -Test 107 rap_control_debug_dyn32_phy32 PASS +Test 113 rap_control_debug_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/hrrr_control_debug_dyn32_phy32 -Checking test 108 hrrr_control_debug_dyn32_phy32 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/hrrr_control_debug_dyn32_phy32 +Checking test 114 hrrr_control_debug_dyn32_phy32 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 286.483750 -The maximum resident set size (KB) = 937876 +The total amount of wall time = 287.616783 +The maximum resident set size (KB) = 935400 -Test 108 hrrr_control_debug_dyn32_phy32 PASS +Test 114 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/rap_control_dyn64_phy32_debug -Checking test 109 rap_control_dyn64_phy32_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/rap_control_dyn64_phy32_debug +Checking test 115 rap_control_dyn64_phy32_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 292.247645 -The maximum resident set size (KB) = 960128 +The total amount of wall time = 293.484767 +The maximum resident set size (KB) = 953792 -Test 109 rap_control_dyn64_phy32_debug PASS +Test 115 rap_control_dyn64_phy32_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/hafs_regional_atm -Checking test 110 hafs_regional_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/hafs_regional_atm +Checking test 116 hafs_regional_atm results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 264.690863 -The maximum resident set size (KB) = 822044 +The total amount of wall time = 269.554442 +The maximum resident set size (KB) = 815352 -Test 110 hafs_regional_atm PASS +Test 116 hafs_regional_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/hafs_regional_atm_thompson_gfdlsf -Checking test 111 hafs_regional_atm_thompson_gfdlsf results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/hafs_regional_atm_thompson_gfdlsf +Checking test 117 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 303.619000 -The maximum resident set size (KB) = 1180872 +The total amount of wall time = 308.961381 +The maximum resident set size (KB) = 1181592 -Test 111 hafs_regional_atm_thompson_gfdlsf PASS +Test 117 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/hafs_regional_atm_ocn -Checking test 112 hafs_regional_atm_ocn results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/hafs_regional_atm_ocn +Checking test 118 hafs_regional_atm_ocn results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK Comparing archv.2019_241_06.a .........OK Comparing archs.2019_241_06.a .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 386.969659 -The maximum resident set size (KB) = 854640 +The total amount of wall time = 388.291046 +The maximum resident set size (KB) = 856284 -Test 112 hafs_regional_atm_ocn PASS +Test 118 hafs_regional_atm_ocn PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/hafs_regional_atm_wav -Checking test 113 hafs_regional_atm_wav results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/hafs_regional_atm_wav +Checking test 119 hafs_regional_atm_wav results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 703.178677 -The maximum resident set size (KB) = 882804 +The total amount of wall time = 706.288915 +The maximum resident set size (KB) = 888212 -Test 113 hafs_regional_atm_wav PASS +Test 119 hafs_regional_atm_wav PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/hafs_regional_atm_ocn_wav -Checking test 114 hafs_regional_atm_ocn_wav results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/hafs_regional_atm_ocn_wav +Checking test 120 hafs_regional_atm_ocn_wav results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK Comparing archv.2019_241_06.a .........OK Comparing archs.2019_241_06.a .........OK Comparing out_grd.ww3 .........OK @@ -3698,323 +3962,323 @@ Checking test 114 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 890.117684 -The maximum resident set size (KB) = 909008 +The total amount of wall time = 895.763678 +The maximum resident set size (KB) = 913116 -Test 114 hafs_regional_atm_ocn_wav PASS +Test 120 hafs_regional_atm_ocn_wav PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/hafs_regional_1nest_atm -Checking test 115 hafs_regional_1nest_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/hafs_regional_1nest_atm +Checking test 121 hafs_regional_1nest_atm results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atm.nest02.f006.nc ............ALT CHECK......OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......OK -The total amount of wall time = 327.256689 -The maximum resident set size (KB) = 388744 +The total amount of wall time = 331.157789 +The maximum resident set size (KB) = 391768 -Test 115 hafs_regional_1nest_atm PASS +Test 121 hafs_regional_1nest_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/hafs_regional_telescopic_2nests_atm -Checking test 116 hafs_regional_telescopic_2nests_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest03.f006.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/hafs_regional_telescopic_2nests_atm +Checking test 122 hafs_regional_telescopic_2nests_atm results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atm.nest02.f006.nc ............ALT CHECK......OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......OK + Comparing atm.nest03.f006.nc ............ALT CHECK......OK + Comparing sfc.nest03.f006.nc ............ALT CHECK......OK -The total amount of wall time = 398.615447 -The maximum resident set size (KB) = 410088 +The total amount of wall time = 403.056670 +The maximum resident set size (KB) = 402392 -Test 116 hafs_regional_telescopic_2nests_atm PASS +Test 122 hafs_regional_telescopic_2nests_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/hafs_global_1nest_atm -Checking test 117 hafs_global_1nest_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/hafs_global_1nest_atm +Checking test 123 hafs_global_1nest_atm results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atm.nest02.f006.nc ............ALT CHECK......OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......OK -The total amount of wall time = 166.912228 -The maximum resident set size (KB) = 260312 +The total amount of wall time = 171.428307 +The maximum resident set size (KB) = 263328 -Test 117 hafs_global_1nest_atm PASS +Test 123 hafs_global_1nest_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_multiple_4nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/hafs_global_multiple_4nests_atm -Checking test 118 hafs_global_multiple_4nests_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest03.f006.nc .........OK - Comparing atm.nest04.f006.nc .........OK - Comparing sfc.nest04.f006.nc .........OK - Comparing atm.nest05.f006.nc .........OK - Comparing sfc.nest05.f006.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/hafs_global_multiple_4nests_atm +Checking test 124 hafs_global_multiple_4nests_atm results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atm.nest02.f006.nc ............ALT CHECK......OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......OK + Comparing atm.nest03.f006.nc ............ALT CHECK......OK + Comparing sfc.nest03.f006.nc ............ALT CHECK......OK + Comparing atm.nest04.f006.nc ............ALT CHECK......OK + Comparing sfc.nest04.f006.nc ............ALT CHECK......OK + Comparing atm.nest05.f006.nc ............ALT CHECK......OK + Comparing sfc.nest05.f006.nc ............ALT CHECK......OK Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK Comparing HURPRS.GrbF06.nest03 .........OK Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -The total amount of wall time = 490.843634 -The maximum resident set size (KB) = 339216 +The total amount of wall time = 490.271385 +The maximum resident set size (KB) = 345304 -Test 118 hafs_global_multiple_4nests_atm PASS +Test 124 hafs_global_multiple_4nests_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/hafs_regional_specified_moving_1nest_atm -Checking test 119 hafs_regional_specified_moving_1nest_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/hafs_regional_specified_moving_1nest_atm +Checking test 125 hafs_regional_specified_moving_1nest_atm results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atm.nest02.f006.nc ............ALT CHECK......OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......OK Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 212.447259 -The maximum resident set size (KB) = 406520 +The total amount of wall time = 218.312944 +The maximum resident set size (KB) = 403400 -Test 119 hafs_regional_specified_moving_1nest_atm PASS +Test 125 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/hafs_regional_storm_following_1nest_atm -Checking test 120 hafs_regional_storm_following_1nest_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/hafs_regional_storm_following_1nest_atm +Checking test 126 hafs_regional_storm_following_1nest_atm results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atm.nest02.f006.nc ............ALT CHECK......OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......OK -The total amount of wall time = 199.946760 -The maximum resident set size (KB) = 402996 +The total amount of wall time = 205.892970 +The maximum resident set size (KB) = 404576 -Test 120 hafs_regional_storm_following_1nest_atm PASS +Test 126 hafs_regional_storm_following_1nest_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/hafs_regional_storm_following_1nest_atm_ocn -Checking test 121 hafs_regional_storm_following_1nest_atm_ocn results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/hafs_regional_storm_following_1nest_atm_ocn +Checking test 127 hafs_regional_storm_following_1nest_atm_ocn results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atm.nest02.f006.nc ............ALT CHECK......OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......OK Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 240.712425 -The maximum resident set size (KB) = 452108 +The total amount of wall time = 253.022327 +The maximum resident set size (KB) = 466104 -Test 121 hafs_regional_storm_following_1nest_atm_ocn PASS +Test 127 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/hafs_global_storm_following_1nest_atm -Checking test 122 hafs_global_storm_following_1nest_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/hafs_global_storm_following_1nest_atm +Checking test 128 hafs_global_storm_following_1nest_atm results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atm.nest02.f006.nc ............ALT CHECK......OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......OK -The total amount of wall time = 78.539063 -The maximum resident set size (KB) = 276948 +The total amount of wall time = 84.966472 +The maximum resident set size (KB) = 279004 -Test 122 hafs_global_storm_following_1nest_atm PASS +Test 128 hafs_global_storm_following_1nest_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/hafs_regional_storm_following_1nest_atm_ocn_debug -Checking test 123 hafs_regional_storm_following_1nest_atm_ocn_debug results .... - Comparing atmf001.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atm.nest02.f001.nc .........OK - Comparing sfc.nest02.f001.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/hafs_regional_storm_following_1nest_atm_ocn_debug +Checking test 129 hafs_regional_storm_following_1nest_atm_ocn_debug results .... + Comparing atmf001.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atm.nest02.f001.nc ............ALT CHECK......OK + Comparing sfc.nest02.f001.nc ............ALT CHECK......OK -The total amount of wall time = 803.779841 -The maximum resident set size (KB) = 477836 +The total amount of wall time = 815.500375 +The maximum resident set size (KB) = 493428 -Test 123 hafs_regional_storm_following_1nest_atm_ocn_debug PASS +Test 129 hafs_regional_storm_following_1nest_atm_ocn_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/hafs_regional_storm_following_1nest_atm_ocn_wav -Checking test 124 hafs_regional_storm_following_1nest_atm_ocn_wav results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 130 hafs_regional_storm_following_1nest_atm_ocn_wav results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atm.nest02.f006.nc ............ALT CHECK......OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......OK Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -The total amount of wall time = 519.471668 -The maximum resident set size (KB) = 524272 +The total amount of wall time = 500.771155 +The maximum resident set size (KB) = 519912 -Test 124 hafs_regional_storm_following_1nest_atm_ocn_wav PASS +Test 130 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_docn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/hafs_regional_docn -Checking test 125 hafs_regional_docn results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/hafs_regional_docn +Checking test 131 hafs_regional_docn results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 368.530978 -The maximum resident set size (KB) = 857332 +The total amount of wall time = 367.880524 +The maximum resident set size (KB) = 857956 -Test 125 hafs_regional_docn PASS +Test 131 hafs_regional_docn PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_docn_oisst -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/hafs_regional_docn_oisst -Checking test 126 hafs_regional_docn_oisst results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/hafs_regional_docn_oisst +Checking test 132 hafs_regional_docn_oisst results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 370.375724 -The maximum resident set size (KB) = 843268 +The total amount of wall time = 368.756880 +The maximum resident set size (KB) = 844124 -Test 126 hafs_regional_docn_oisst PASS +Test 132 hafs_regional_docn_oisst PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_datm_cdeps -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/hafs_regional_datm_cdeps -Checking test 127 hafs_regional_datm_cdeps results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/hafs_regional_datm_cdeps +Checking test 133 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -The total amount of wall time = 946.570529 -The maximum resident set size (KB) = 866908 +The total amount of wall time = 945.211023 +The maximum resident set size (KB) = 839640 -Test 127 hafs_regional_datm_cdeps PASS +Test 133 hafs_regional_datm_cdeps PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/datm_cdeps_control_cfsr -Checking test 128 datm_cdeps_control_cfsr results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/datm_cdeps_control_cfsr +Checking test 134 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.090379 -The maximum resident set size (KB) = 731936 +The total amount of wall time = 140.840429 +The maximum resident set size (KB) = 731144 -Test 128 datm_cdeps_control_cfsr PASS +Test 134 datm_cdeps_control_cfsr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/datm_cdeps_restart_cfsr -Checking test 129 datm_cdeps_restart_cfsr results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/datm_cdeps_restart_cfsr +Checking test 135 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 85.601647 -The maximum resident set size (KB) = 728220 +The total amount of wall time = 85.385295 +The maximum resident set size (KB) = 728720 -Test 129 datm_cdeps_restart_cfsr PASS +Test 135 datm_cdeps_restart_cfsr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/datm_cdeps_control_gefs -Checking test 130 datm_cdeps_control_gefs results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/datm_cdeps_control_gefs +Checking test 136 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 133.463506 -The maximum resident set size (KB) = 616052 +The total amount of wall time = 134.386207 +The maximum resident set size (KB) = 615168 -Test 130 datm_cdeps_control_gefs PASS +Test 136 datm_cdeps_control_gefs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_iau_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/datm_cdeps_iau_gefs -Checking test 131 datm_cdeps_iau_gefs results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/datm_cdeps_iau_gefs +Checking test 137 datm_cdeps_iau_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 136.501450 -The maximum resident set size (KB) = 615224 +The total amount of wall time = 136.363772 +The maximum resident set size (KB) = 615524 -Test 131 datm_cdeps_iau_gefs PASS +Test 137 datm_cdeps_iau_gefs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_stochy_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/datm_cdeps_stochy_gefs -Checking test 132 datm_cdeps_stochy_gefs results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/datm_cdeps_stochy_gefs +Checking test 138 datm_cdeps_stochy_gefs 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.378145 -The maximum resident set size (KB) = 616996 +The total amount of wall time = 137.740278 +The maximum resident set size (KB) = 615428 -Test 132 datm_cdeps_stochy_gefs PASS +Test 138 datm_cdeps_stochy_gefs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/datm_cdeps_ciceC_cfsr -Checking test 133 datm_cdeps_ciceC_cfsr results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/datm_cdeps_ciceC_cfsr +Checking test 139 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.267516 -The maximum resident set size (KB) = 733072 +The total amount of wall time = 141.424299 +The maximum resident set size (KB) = 733432 -Test 133 datm_cdeps_ciceC_cfsr PASS +Test 139 datm_cdeps_ciceC_cfsr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/datm_cdeps_bulk_cfsr -Checking test 134 datm_cdeps_bulk_cfsr results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/datm_cdeps_bulk_cfsr +Checking test 140 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 142.166077 -The maximum resident set size (KB) = 732756 +The total amount of wall time = 141.479475 +The maximum resident set size (KB) = 733096 -Test 134 datm_cdeps_bulk_cfsr PASS +Test 140 datm_cdeps_bulk_cfsr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/datm_cdeps_bulk_gefs -Checking test 135 datm_cdeps_bulk_gefs results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/datm_cdeps_bulk_gefs +Checking test 141 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 134.277567 -The maximum resident set size (KB) = 620156 +The total amount of wall time = 134.109662 +The maximum resident set size (KB) = 612708 -Test 135 datm_cdeps_bulk_gefs PASS +Test 141 datm_cdeps_bulk_gefs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/datm_cdeps_mx025_cfsr -Checking test 136 datm_cdeps_mx025_cfsr results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/datm_cdeps_mx025_cfsr +Checking test 142 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4022,15 +4286,15 @@ Checking test 136 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 429.189469 -The maximum resident set size (KB) = 572400 +The total amount of wall time = 432.331723 +The maximum resident set size (KB) = 568536 -Test 136 datm_cdeps_mx025_cfsr PASS +Test 142 datm_cdeps_mx025_cfsr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/datm_cdeps_mx025_gefs -Checking test 137 datm_cdeps_mx025_gefs results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/datm_cdeps_mx025_gefs +Checking test 143 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4038,65 +4302,65 @@ Checking test 137 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 427.417307 -The maximum resident set size (KB) = 550644 +The total amount of wall time = 428.644884 +The maximum resident set size (KB) = 548916 -Test 137 datm_cdeps_mx025_gefs PASS +Test 143 datm_cdeps_mx025_gefs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/datm_cdeps_multiple_files_cfsr -Checking test 138 datm_cdeps_multiple_files_cfsr results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/datm_cdeps_multiple_files_cfsr +Checking test 144 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.582651 -The maximum resident set size (KB) = 733168 +The total amount of wall time = 140.167952 +The maximum resident set size (KB) = 719892 -Test 138 datm_cdeps_multiple_files_cfsr PASS +Test 144 datm_cdeps_multiple_files_cfsr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/datm_cdeps_3072x1536_cfsr -Checking test 139 datm_cdeps_3072x1536_cfsr results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/datm_cdeps_3072x1536_cfsr +Checking test 145 datm_cdeps_3072x1536_cfsr 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 = 256.025895 -The maximum resident set size (KB) = 1980052 +The total amount of wall time = 255.350652 +The maximum resident set size (KB) = 1978596 -Test 139 datm_cdeps_3072x1536_cfsr PASS +Test 145 datm_cdeps_3072x1536_cfsr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_gfs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/datm_cdeps_gfs -Checking test 140 datm_cdeps_gfs results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/datm_cdeps_gfs +Checking test 146 datm_cdeps_gfs 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 = 255.747850 -The maximum resident set size (KB) = 1978128 +The total amount of wall time = 255.762274 +The maximum resident set size (KB) = 1981548 -Test 140 datm_cdeps_gfs PASS +Test 146 datm_cdeps_gfs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/datm_cdeps_control_cfsr_faster -Checking test 141 datm_cdeps_control_cfsr_faster results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/datm_cdeps_control_cfsr_faster +Checking test 147 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.563288 -The maximum resident set size (KB) = 731984 +The total amount of wall time = 141.596319 +The maximum resident set size (KB) = 734120 -Test 141 datm_cdeps_control_cfsr_faster PASS +Test 147 datm_cdeps_control_cfsr_faster PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/datm_cdeps_lnd_gswp3 -Checking test 142 datm_cdeps_lnd_gswp3 results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/datm_cdeps_lnd_gswp3 +Checking test 148 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4104,15 +4368,15 @@ Checking test 142 datm_cdeps_lnd_gswp3 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 = 21.880115 -The maximum resident set size (KB) = 228612 +The total amount of wall time = 22.003403 +The maximum resident set size (KB) = 229540 -Test 142 datm_cdeps_lnd_gswp3 PASS +Test 148 datm_cdeps_lnd_gswp3 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/datm_cdeps_lnd_gswp3_rst -Checking test 143 datm_cdeps_lnd_gswp3_rst results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/datm_cdeps_lnd_gswp3_rst +Checking test 149 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4120,15 +4384,15 @@ Checking test 143 datm_cdeps_lnd_gswp3_rst 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.399086 -The maximum resident set size (KB) = 224204 +The total amount of wall time = 27.382326 +The maximum resident set size (KB) = 227752 -Test 143 datm_cdeps_lnd_gswp3_rst PASS +Test 149 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_atmlnd_sbs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/control_p8_atmlnd_sbs -Checking test 144 control_p8_atmlnd_sbs results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_p8_atmlnd_sbs +Checking test 150 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -4212,19 +4476,19 @@ Checking test 144 control_p8_atmlnd_sbs 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 = 234.706705 -The maximum resident set size (KB) = 1538884 +The total amount of wall time = 235.300497 +The maximum resident set size (KB) = 1537156 -Test 144 control_p8_atmlnd_sbs PASS +Test 150 control_p8_atmlnd_sbs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_atmwav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/control_atmwav -Checking test 145 control_atmwav results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_atmwav +Checking test 151 control_atmwav results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -4263,19 +4527,19 @@ Checking test 145 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -The total amount of wall time = 90.801574 -The maximum resident set size (KB) = 539392 +The total amount of wall time = 91.660199 +The maximum resident set size (KB) = 541868 -Test 145 control_atmwav PASS +Test 151 control_atmwav PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/atmaero_control_p8 -Checking test 146 atmaero_control_p8 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/atmaero_control_p8 +Checking test 152 atmaero_control_p8 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -4314,19 +4578,19 @@ Checking test 146 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 243.460433 -The maximum resident set size (KB) = 2815884 +The total amount of wall time = 243.651593 +The maximum resident set size (KB) = 2811272 -Test 146 atmaero_control_p8 PASS +Test 152 atmaero_control_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8_rad -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/atmaero_control_p8_rad -Checking test 147 atmaero_control_p8_rad results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/atmaero_control_p8_rad +Checking test 153 atmaero_control_p8_rad results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -4365,19 +4629,19 @@ Checking test 147 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 283.602843 -The maximum resident set size (KB) = 2875980 +The total amount of wall time = 283.457144 +The maximum resident set size (KB) = 2874940 -Test 147 atmaero_control_p8_rad PASS +Test 153 atmaero_control_p8_rad PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/atmaero_control_p8_rad_micro -Checking test 148 atmaero_control_p8_rad_micro results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/atmaero_control_p8_rad_micro +Checking test 154 atmaero_control_p8_rad_micro results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -4416,21 +4680,21 @@ Checking test 148 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 286.202731 -The maximum resident set size (KB) = 2884276 +The total amount of wall time = 288.261686 +The maximum resident set size (KB) = 2883448 -Test 148 atmaero_control_p8_rad_micro PASS +Test 154 atmaero_control_p8_rad_micro PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/regional_atmaq -Checking test 149 regional_atmaq results .... - Comparing sfcf000.nc .........OK - Comparing sfcf003.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf003.nc .........OK - Comparing atmf006.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/regional_atmaq +Checking test 155 regional_atmaq results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf003.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf003.nc ............ALT CHECK......OK + Comparing atmf006.nc ............ALT CHECK......OK Comparing RESTART/20190801.180000.coupler.res .........OK Comparing RESTART/20190801.180000.fv_core.res.nc .........OK Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK @@ -4439,19 +4703,19 @@ Checking test 149 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 678.446368 -The maximum resident set size (KB) = 1257128 +The total amount of wall time = 679.590599 +The maximum resident set size (KB) = 1256820 -Test 149 regional_atmaq PASS +Test 155 regional_atmaq PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/regional_atmaq_debug -Checking test 150 regional_atmaq_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/regional_atmaq_debug +Checking test 156 regional_atmaq_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK Comparing RESTART/20190801.130000.coupler.res .........OK Comparing RESTART/20190801.130000.fv_core.res.nc .........OK Comparing RESTART/20190801.130000.fv_core.res.tile1.nc .........OK @@ -4460,21 +4724,21 @@ Checking test 150 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1355.572356 -The maximum resident set size (KB) = 1291888 +The total amount of wall time = 1367.024062 +The maximum resident set size (KB) = 1293484 -Test 150 regional_atmaq_debug PASS +Test 156 regional_atmaq_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_127804/regional_atmaq_faster -Checking test 151 regional_atmaq_faster results .... - Comparing sfcf000.nc .........OK - Comparing sfcf003.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf003.nc .........OK - Comparing atmf006.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/regional_atmaq_faster +Checking test 157 regional_atmaq_faster results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf003.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf003.nc ............ALT CHECK......OK + Comparing atmf006.nc ............ALT CHECK......OK Comparing RESTART/20190801.180000.coupler.res .........OK Comparing RESTART/20190801.180000.fv_core.res.nc .........OK Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK @@ -4483,12 +4747,12 @@ Checking test 151 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 640.144825 -The maximum resident set size (KB) = 1254752 +The total amount of wall time = 635.675005 +The maximum resident set size (KB) = 1255108 -Test 151 regional_atmaq_faster PASS +Test 157 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Sun Mar 26 21:43:00 UTC 2023 -Elapsed time: 01h:40m:01s. Have a nice day! +Mon Mar 27 21:24:28 UTC 2023 +Elapsed time: 01h:39m:51s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index 0a8662d7cbf..9e1b5c2bde4 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,26 +1,26 @@ -Sat Mar 25 08:30:08 MDT 2023 +Mon Mar 27 15:23:38 MDT 2023 Start Regression test -Compile 001 elapsed time 365 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 388 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 854 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 200 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 365 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 1069 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 844 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 849 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 655 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 560 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 344 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 012 elapsed time 294 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 001 elapsed time 379 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 397 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 858 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 199 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 377 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 1078 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 855 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 850 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 657 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 564 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 362 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 012 elapsed time 304 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/control_c48 -working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/control_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/control_c48 Checking test 001 control_c48 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -54,57 +54,57 @@ Checking test 001 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 821.234337 -0:The maximum resident set size (KB) = 677876 +0:The total amount of wall time = 821.382802 +0:The maximum resident set size (KB) = 678088 Test 001 control_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/control_stochy -working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/control_stochy +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/control_stochy Checking test 002 control_stochy results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 177.736103 -0:The maximum resident set size (KB) = 443012 +0:The total amount of wall time = 178.410800 +0:The maximum resident set size (KB) = 443120 Test 002 control_stochy PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/control_ras -working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/control_ras +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/control_ras Checking test 003 control_ras results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 292.952829 -0:The maximum resident set size (KB) = 452268 +0:The total amount of wall time = 294.585796 +0:The maximum resident set size (KB) = 452516 Test 003 control_ras PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/control_p8 -working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/control_p8 Checking test 004 control_p8 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -144,21 +144,21 @@ Checking test 004 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 310.367027 -0:The maximum resident set size (KB) = 1225944 +0:The total amount of wall time = 309.430712 +0:The maximum resident set size (KB) = 1226368 Test 004 control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control -working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/rap_control Checking test 005 rap_control results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -198,21 +198,21 @@ Checking test 005 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 714.368340 -0:The maximum resident set size (KB) = 792036 +0:The total amount of wall time = 710.714447 +0:The maximum resident set size (KB) = 791736 Test 005 rap_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control -working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/rap_decomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/rap_decomp Checking test 006 rap_decomp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -252,21 +252,21 @@ Checking test 006 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 717.736693 -0:The maximum resident set size (KB) = 791640 +0:The total amount of wall time = 718.274073 +0:The maximum resident set size (KB) = 791080 Test 006 rap_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control -working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/rap_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/rap_2threads Checking test 007 rap_2threads results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -306,17 +306,17 @@ Checking test 007 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 659.846731 -0:The maximum resident set size (KB) = 864344 +0:The total amount of wall time = 652.599367 +0:The maximum resident set size (KB) = 865044 Test 007 rap_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control -working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/rap_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/rap_restart Checking test 008 rap_restart results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -352,21 +352,21 @@ Checking test 008 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 353.551569 -0:The maximum resident set size (KB) = 538708 +0:The total amount of wall time = 354.576618 +0:The maximum resident set size (KB) = 539312 Test 008 rap_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/rap_sfcdiff Checking test 009 rap_sfcdiff 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 sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -406,21 +406,21 @@ Checking test 009 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 700.452087 -0:The maximum resident set size (KB) = 791828 +0:The total amount of wall time = 711.772366 +0:The maximum resident set size (KB) = 791940 Test 009 rap_sfcdiff PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/rap_sfcdiff_decomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/rap_sfcdiff_decomp Checking test 010 rap_sfcdiff_decomp 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 sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -460,17 +460,17 @@ Checking test 010 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 716.620572 -0:The maximum resident set size (KB) = 791232 +0:The total amount of wall time = 722.705300 +0:The maximum resident set size (KB) = 790976 Test 010 rap_sfcdiff_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/rap_sfcdiff_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/rap_sfcdiff_restart Checking test 011 rap_sfcdiff_restart results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -506,21 +506,21 @@ Checking test 011 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 525.362388 -0:The maximum resident set size (KB) = 545096 +0:The total amount of wall time = 527.313175 +0:The maximum resident set size (KB) = 543832 Test 011 rap_sfcdiff_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control -working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/hrrr_control Checking test 012 hrrr_control 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 sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -560,21 +560,21 @@ Checking test 012 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 683.993570 -0:The maximum resident set size (KB) = 789468 +0:The total amount of wall time = 690.284262 +0:The maximum resident set size (KB) = 789448 Test 012 hrrr_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control -working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/hrrr_control_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/hrrr_control_2threads Checking test 013 hrrr_control_2threads 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 sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -614,21 +614,21 @@ Checking test 013 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 618.593245 -0:The maximum resident set size (KB) = 859308 +0:The total amount of wall time = 625.178910 +0:The maximum resident set size (KB) = 859868 Test 013 hrrr_control_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control -working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/hrrr_control_decomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/hrrr_control_decomp Checking test 014 hrrr_control_decomp 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 sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -668,17 +668,17 @@ Checking test 014 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 680.375006 -0:The maximum resident set size (KB) = 788792 +0:The total amount of wall time = 691.174360 +0:The maximum resident set size (KB) = 788564 Test 014 hrrr_control_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control -working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/hrrr_control_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/hrrr_control_restart Checking test 015 hrrr_control_restart results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -714,21 +714,21 @@ Checking test 015 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 510.605678 -0:The maximum resident set size (KB) = 540180 +0:The total amount of wall time = 506.592421 +0:The maximum resident set size (KB) = 540024 Test 015 hrrr_control_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_v1beta -working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/rrfs_v1beta +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/rrfs_v1beta Checking test 016 rrfs_v1beta 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 sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -768,293 +768,293 @@ Checking test 016 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 695.550069 -0:The maximum resident set size (KB) = 788704 +0:The total amount of wall time = 705.779756 +0:The maximum resident set size (KB) = 788840 Test 016 rrfs_v1beta PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/rrfs_smoke_conus13km_hrrr_warm Checking test 017 rrfs_smoke_conus13km_hrrr_warm 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 sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing sfcf002.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK + Comparing atmf002.nc ............ALT CHECK......OK -0:The total amount of wall time = 232.163570 -0:The maximum resident set size (KB) = 635772 +0:The total amount of wall time = 231.439096 +0:The maximum resident set size (KB) = 635968 Test 017 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/rrfs_smoke_conus13km_hrrr_warm_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 018 rrfs_smoke_conus13km_hrrr_warm_2threads 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 sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing sfcf002.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK + Comparing atmf002.nc ............ALT CHECK......OK -0:The total amount of wall time = 147.965507 -0:The maximum resident set size (KB) = 660132 +0:The total amount of wall time = 145.897200 +0:The maximum resident set size (KB) = 660404 Test 018 rrfs_smoke_conus13km_hrrr_warm_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/rrfs_conus13km_hrrr_warm Checking test 019 rrfs_conus13km_hrrr_warm 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 sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing sfcf002.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK + Comparing atmf002.nc ............ALT CHECK......OK -0:The total amount of wall time = 211.774899 -0:The maximum resident set size (KB) = 614924 +0:The total amount of wall time = 211.259463 +0:The maximum resident set size (KB) = 614636 Test 019 rrfs_conus13km_hrrr_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/rrfs_smoke_conus13km_radar_tten_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/rrfs_smoke_conus13km_radar_tten_warm Checking test 020 rrfs_smoke_conus13km_radar_tten_warm 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 sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing sfcf002.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK + Comparing atmf002.nc ............ALT CHECK......OK -0:The total amount of wall time = 232.316705 -0:The maximum resident set size (KB) = 638552 +0:The total amount of wall time = 231.795363 +0:The maximum resident set size (KB) = 638720 Test 020 rrfs_smoke_conus13km_radar_tten_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/control_diag_debug -working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/control_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/control_diag_debug Checking test 021 control_diag_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 88.887682 -0:The maximum resident set size (KB) = 495044 +0:The total amount of wall time = 88.804791 +0:The maximum resident set size (KB) = 495256 Test 021 control_diag_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/regional_debug -working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/regional_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/regional_debug Checking test 022 regional_debug results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf001.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 476.870408 -0:The maximum resident set size (KB) = 569780 +0:The total amount of wall time = 479.552439 +0:The maximum resident set size (KB) = 570172 Test 022 regional_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control_debug -working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/rap_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/rap_control_debug Checking test 023 rap_control_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 150.121119 -0:The maximum resident set size (KB) = 809028 +0:The total amount of wall time = 151.097953 +0:The maximum resident set size (KB) = 809068 Test 023 rap_control_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control_debug -working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/hrrr_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/hrrr_control_debug Checking test 024 hrrr_control_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 147.281812 -0:The maximum resident set size (KB) = 804896 +0:The total amount of wall time = 148.086449 +0:The maximum resident set size (KB) = 804964 Test 024 hrrr_control_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_diag_debug -working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/rap_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/rap_diag_debug Checking test 025 rap_diag_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 158.431556 -0:The maximum resident set size (KB) = 892016 +0:The total amount of wall time = 159.878949 +0:The maximum resident set size (KB) = 892128 Test 025 rap_diag_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/rap_noah_sfcdiff_cires_ugwp_debug Checking test 026 rap_noah_sfcdiff_cires_ugwp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 239.436560 -0:The maximum resident set size (KB) = 807272 +0:The total amount of wall time = 239.899450 +0:The maximum resident set size (KB) = 808132 Test 026 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_progcld_thompson_debug -working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/rap_progcld_thompson_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/rap_progcld_thompson_debug Checking test 027 rap_progcld_thompson_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 150.363660 -0:The maximum resident set size (KB) = 808912 +0:The total amount of wall time = 151.368846 +0:The maximum resident set size (KB) = 809160 Test 027 rap_progcld_thompson_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_v1beta_debug -working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/rrfs_v1beta_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/rrfs_v1beta_debug Checking test 028 rrfs_v1beta_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 149.107111 -0:The maximum resident set size (KB) = 804120 +0:The total amount of wall time = 150.237077 +0:The maximum resident set size (KB) = 804320 Test 028 rrfs_v1beta_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/control_ras_debug -working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/control_ras_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/control_ras_debug Checking test 029 control_ras_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 85.544441 -0:The maximum resident set size (KB) = 449244 +0:The total amount of wall time = 86.436106 +0:The maximum resident set size (KB) = 449660 Test 029 control_ras_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/control_stochy_debug -working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/control_stochy_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/control_stochy_debug Checking test 030 control_stochy_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 93.375627 -0:The maximum resident set size (KB) = 441648 +0:The total amount of wall time = 94.217572 +0:The maximum resident set size (KB) = 442392 Test 030 control_stochy_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/control_debug_p8 -working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/control_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/control_debug_p8 Checking test 031 control_debug_p8 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 95.818736 -0:The maximum resident set size (KB) = 1224928 +0:The total amount of wall time = 95.242103 +0:The maximum resident set size (KB) = 1225156 Test 031 control_debug_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 032 rrfs_smoke_conus13km_hrrr_warm_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 441.887519 +0:The total amount of wall time = 444.545179 0:The maximum resident set size (KB) = 644392 Test 032 rrfs_smoke_conus13km_hrrr_warm_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 033 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 272.188852 -0:The maximum resident set size (KB) = 662928 +0:The total amount of wall time = 263.226931 +0:The maximum resident set size (KB) = 669024 Test 033 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/rrfs_conus13km_hrrr_warm_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/rrfs_conus13km_hrrr_warm_debug Checking test 034 rrfs_conus13km_hrrr_warm_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 400.151276 -0:The maximum resident set size (KB) = 622404 +0:The total amount of wall time = 400.867785 +0:The maximum resident set size (KB) = 623200 Test 034 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/control_wam_debug -working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/control_wam_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/control_wam_debug Checking test 035 control_wam_debug results .... - Comparing sfcf019.nc .........OK - Comparing atmf019.nc .........OK + Comparing sfcf019.nc ............ALT CHECK......OK + Comparing atmf019.nc ............ALT CHECK......OK -0:The total amount of wall time = 144.444960 -0:The maximum resident set size (KB) = 184912 +0:The total amount of wall time = 145.033570 +0:The maximum resident set size (KB) = 185476 Test 035 control_wam_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/rap_control_dyn32_phy32 Checking test 036 rap_control_dyn32_phy32 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 sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -1094,21 +1094,21 @@ Checking test 036 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 678.918568 -0:The maximum resident set size (KB) = 673264 +0:The total amount of wall time = 688.174714 +0:The maximum resident set size (KB) = 673012 Test 036 rap_control_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/hrrr_control_dyn32_phy32 Checking test 037 hrrr_control_dyn32_phy32 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 sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -1148,21 +1148,21 @@ Checking test 037 hrrr_control_dyn32_phy32 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 = 348.938987 -0:The maximum resident set size (KB) = 671772 +0:The total amount of wall time = 348.223097 +0:The maximum resident set size (KB) = 671556 Test 037 hrrr_control_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/rap_2threads_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/rap_2threads_dyn32_phy32 Checking test 038 rap_2threads_dyn32_phy32 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 sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -1202,21 +1202,21 @@ Checking test 038 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 622.171882 -0:The maximum resident set size (KB) = 719328 +0:The total amount of wall time = 627.023051 +0:The maximum resident set size (KB) = 719468 Test 038 rap_2threads_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/hrrr_control_2threads_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/hrrr_control_2threads_dyn32_phy32 Checking test 039 hrrr_control_2threads_dyn32_phy32 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 sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -1256,21 +1256,21 @@ Checking test 039 hrrr_control_2threads_dyn32_phy32 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 = 320.562182 -0:The maximum resident set size (KB) = 715984 +0:The total amount of wall time = 312.706463 +0:The maximum resident set size (KB) = 716576 Test 039 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/hrrr_control_decomp_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/hrrr_control_decomp_dyn32_phy32 Checking test 040 hrrr_control_decomp_dyn32_phy32 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 sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -1310,17 +1310,17 @@ Checking test 040 hrrr_control_decomp_dyn32_phy32 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 = 347.243701 -0:The maximum resident set size (KB) = 670564 +0:The total amount of wall time = 348.015625 +0:The maximum resident set size (KB) = 670380 Test 040 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/rap_restart_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/rap_restart_dyn32_phy32 Checking test 041 rap_restart_dyn32_phy32 results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -1356,17 +1356,17 @@ Checking test 041 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 511.565190 -0:The maximum resident set size (KB) = 511700 +0:The total amount of wall time = 511.792836 +0:The maximum resident set size (KB) = 511516 Test 041 rap_restart_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/hrrr_control_restart_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/hrrr_control_restart_dyn32_phy32 Checking test 042 hrrr_control_restart_dyn32_phy32 results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.180000.coupler.res .........OK @@ -1402,21 +1402,21 @@ Checking test 042 hrrr_control_restart_dyn32_phy32 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 = 176.294301 -0:The maximum resident set size (KB) = 507068 +0:The total amount of wall time = 175.724696 +0:The maximum resident set size (KB) = 506876 Test 042 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control_dyn64_phy32 -working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/rap_control_dyn64_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/rap_control_dyn64_phy32 Checking test 043 rap_control_dyn64_phy32 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 sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -1456,56 +1456,56 @@ Checking test 043 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 405.362674 +0:The total amount of wall time = 406.409557 0:The maximum resident set size (KB) = 692896 Test 043 rap_control_dyn64_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/rap_control_debug_dyn32_phy32 Checking test 044 rap_control_debug_dyn32_phy32 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 147.284249 -0:The maximum resident set size (KB) = 691128 +0:The total amount of wall time = 149.570590 +0:The maximum resident set size (KB) = 690948 Test 044 rap_control_debug_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/hrrr_control_debug_dyn32_phy32 Checking test 045 hrrr_control_debug_dyn32_phy32 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 144.891540 -0:The maximum resident set size (KB) = 688176 +0:The total amount of wall time = 147.001349 +0:The maximum resident set size (KB) = 687996 Test 045 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/rap_control_dyn64_phy32_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/rap_control_dyn64_phy32_debug Checking test 046 rap_control_dyn64_phy32_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 153.708313 -0:The maximum resident set size (KB) = 710904 +0:The total amount of wall time = 153.843830 +0:The maximum resident set size (KB) = 711428 Test 046 rap_control_dyn64_phy32_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/cpld_control_p8 Checking test 047 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1570,14 +1570,14 @@ Checking test 047 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 499.349138 -0:The maximum resident set size (KB) = 3159712 +0:The total amount of wall time = 499.616327 +0:The maximum resident set size (KB) = 3160296 Test 047 cpld_control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/cpld_control_nowave_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/cpld_control_nowave_noaero_p8 Checking test 048 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1639,14 +1639,14 @@ Checking test 048 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 248.294053 -0:The maximum resident set size (KB) = 1241788 +0:The total amount of wall time = 248.356048 +0:The maximum resident set size (KB) = 1241804 Test 048 cpld_control_nowave_noaero_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/cpld_debug_p8 -working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/cpld_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/cpld_debug_p8 Checking test 049 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1699,25 +1699,25 @@ Checking test 049 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 274.189646 -0:The maximum resident set size (KB) = 3177672 +0:The total amount of wall time = 275.694270 +0:The maximum resident set size (KB) = 3180164 Test 049 cpld_debug_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/datm_cdeps_control_cfsr -working dir = /glade/scratch/jongkim/rt-1658-gnu/jongkim/FV3_RT/rt_67241/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/datm_cdeps_control_cfsr Checking test 050 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 180.246535 -0:The maximum resident set size (KB) = 673716 +0:The total amount of wall time = 173.553534 +0:The maximum resident set size (KB) = 669560 Test 050 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Sat Mar 25 09:01:05 MDT 2023 -Elapsed time: 00h:30m:58s. Have a nice day! +Mon Mar 27 15:55:45 MDT 2023 +Elapsed time: 00h:32m:07s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 69f5a2e9f54..0fa28c96861 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,42 +1,42 @@ -Sat Mar 25 10:02:50 MDT 2023 +Mon Mar 27 15:08:29 MDT 2023 Start Regression test -Compile 001 elapsed time 1346 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 1406 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 1370 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 445 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 382 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 1071 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 1071 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 1691 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 1070 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 956 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 011 elapsed time 930 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 806 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 1304 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 406 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 262 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 825 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 844 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 277 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 272 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 1116 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 021 elapsed time 339 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 1580 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 1106 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 001 elapsed time 1519 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1483 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 1352 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 446 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 393 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 1070 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 1055 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 1801 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 1071 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 968 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 011 elapsed time 928 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 807 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 1285 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 408 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 267 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 846 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 853 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 280 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 281 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 1124 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 021 elapsed time 345 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 1568 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 1101 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 024 elapsed time 431 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 206 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 428 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 106 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 948 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 981 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 888 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 860 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 292 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 1046 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 025 elapsed time 202 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 426 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 110 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 954 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 980 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 885 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 879 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 298 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 1044 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8_mixedmode -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/cpld_control_p8_mixedmode +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -101,14 +101,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 320.335937 -0:The maximum resident set size (KB) = 2699500 +0:The total amount of wall time = 322.020822 +0:The maximum resident set size (KB) = 2699128 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_gfsv17 -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/cpld_control_gfsv17 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -172,14 +172,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 282.973304 -0:The maximum resident set size (KB) = 1438532 +0:The total amount of wall time = 282.465853 +0:The maximum resident set size (KB) = 1438688 Test 002 cpld_control_gfsv17 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -244,14 +244,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 325.427692 -0:The maximum resident set size (KB) = 2716828 +0:The total amount of wall time = 321.062470 +0:The maximum resident set size (KB) = 2716456 Test 003 cpld_control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/cpld_restart_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -304,15 +304,147 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 187.347370 -0:The maximum resident set size (KB) = 2577408 +0:The total amount of wall time = 186.801754 +0:The maximum resident set size (KB) = 2577680 Test 004 cpld_restart_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/cpld_2threads_p8 -Checking test 005 cpld_2threads_p8 results .... +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/cpld_control_qr_p8 +Checking test 005 cpld_control_qr_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + +0:The total amount of wall time = 316.454555 +0:The maximum resident set size (KB) = 2720968 + +Test 005 cpld_control_qr_p8 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/cpld_restart_qr_p8 +Checking test 006 cpld_restart_qr_p8 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + +0:The total amount of wall time = 199.042052 +0:The maximum resident set size (KB) = 2594872 + +Test 006 cpld_restart_qr_p8 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/cpld_2threads_p8 +Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -364,15 +496,15 @@ Checking test 005 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 257.597334 -0:The maximum resident set size (KB) = 3177080 +0:The total amount of wall time = 255.007205 +0:The maximum resident set size (KB) = 3178036 -Test 005 cpld_2threads_p8 PASS +Test 007 cpld_2threads_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/cpld_decomp_p8 -Checking test 006 cpld_decomp_p8 results .... +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/cpld_decomp_p8 +Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -424,15 +556,15 @@ Checking test 006 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 322.960421 -0:The maximum resident set size (KB) = 2721100 +0:The total amount of wall time = 321.908667 +0:The maximum resident set size (KB) = 2723320 -Test 006 cpld_decomp_p8 PASS +Test 008 cpld_decomp_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/cpld_mpi_p8 -Checking test 007 cpld_mpi_p8 results .... +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/cpld_mpi_p8 +Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -484,15 +616,15 @@ Checking test 007 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 278.033762 -0:The maximum resident set size (KB) = 2681416 +0:The total amount of wall time = 278.230853 +0:The maximum resident set size (KB) = 2681400 -Test 007 cpld_mpi_p8 PASS +Test 009 cpld_mpi_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_ciceC_p8 -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/cpld_control_ciceC_p8 -Checking test 008 cpld_control_ciceC_p8 results .... +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/cpld_control_ciceC_p8 +Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -556,15 +688,15 @@ Checking test 008 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 321.948890 -0:The maximum resident set size (KB) = 2716584 +0:The total amount of wall time = 324.467552 +0:The maximum resident set size (KB) = 2716628 -Test 008 cpld_control_ciceC_p8 PASS +Test 010 cpld_control_ciceC_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/cpld_control_c192_p8 -Checking test 009 cpld_control_c192_p8 results .... +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/cpld_control_c192_p8 +Checking test 011 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK Comparing sfcf030.tile3.nc .........OK @@ -616,15 +748,15 @@ Checking test 009 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -0:The total amount of wall time = 632.332322 -0:The maximum resident set size (KB) = 3350080 +0:The total amount of wall time = 623.707055 +0:The maximum resident set size (KB) = 3350840 -Test 009 cpld_control_c192_p8 PASS +Test 011 cpld_control_c192_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/cpld_restart_c192_p8 -Checking test 010 cpld_restart_c192_p8 results .... +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/cpld_restart_c192_p8 +Checking test 012 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK Comparing sfcf030.tile3.nc .........OK @@ -676,15 +808,15 @@ Checking test 010 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -0:The total amount of wall time = 393.730309 -0:The maximum resident set size (KB) = 3277764 +0:The total amount of wall time = 379.962486 +0:The maximum resident set size (KB) = 3275860 -Test 010 cpld_restart_c192_p8 PASS +Test 012 cpld_restart_c192_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_noaero_p8 -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/cpld_control_noaero_p8 -Checking test 011 cpld_control_noaero_p8 results .... +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/cpld_control_noaero_p8 +Checking test 013 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -747,15 +879,15 @@ Checking test 011 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 283.903383 -0:The maximum resident set size (KB) = 1436228 +0:The total amount of wall time = 295.343302 +0:The maximum resident set size (KB) = 1436428 -Test 011 cpld_control_noaero_p8 PASS +Test 013 cpld_control_noaero_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/cpld_control_nowave_noaero_p8 -Checking test 012 cpld_control_nowave_noaero_p8 results .... +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/cpld_control_nowave_noaero_p8 +Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -816,15 +948,15 @@ Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 195.024244 -0:The maximum resident set size (KB) = 1452444 +0:The total amount of wall time = 195.237363 +0:The maximum resident set size (KB) = 1452616 -Test 012 cpld_control_nowave_noaero_p8 PASS +Test 014 cpld_control_nowave_noaero_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_debug_p8 -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/cpld_debug_p8 -Checking test 013 cpld_debug_p8 results .... +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/cpld_debug_p8 +Checking test 015 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -876,15 +1008,15 @@ Checking test 013 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 472.539349 -0:The maximum resident set size (KB) = 2787728 +0:The total amount of wall time = 474.980436 +0:The maximum resident set size (KB) = 2788276 -Test 013 cpld_debug_p8 PASS +Test 015 cpld_debug_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_debug_noaero_p8 -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/cpld_debug_noaero_p8 -Checking test 014 cpld_debug_noaero_p8 results .... +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/cpld_debug_noaero_p8 +Checking test 016 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -935,15 +1067,15 @@ Checking test 014 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 348.692283 -0:The maximum resident set size (KB) = 1460576 +0:The total amount of wall time = 348.917514 +0:The maximum resident set size (KB) = 1460648 -Test 014 cpld_debug_noaero_p8 PASS +Test 016 cpld_debug_noaero_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_noaero_p8_agrid -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/cpld_control_noaero_p8_agrid -Checking test 015 cpld_control_noaero_p8_agrid results .... +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/cpld_control_noaero_p8_agrid +Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1004,15 +1136,15 @@ Checking test 015 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 250.534744 -0:The maximum resident set size (KB) = 1456068 +0:The total amount of wall time = 257.381762 +0:The maximum resident set size (KB) = 1456388 -Test 015 cpld_control_noaero_p8_agrid PASS +Test 017 cpld_control_noaero_p8_agrid PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c48 -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/cpld_control_c48 -Checking test 016 cpld_control_c48 results .... +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/cpld_control_c48 +Checking test 018 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -1061,15 +1193,15 @@ Checking test 016 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 607.005118 -0:The maximum resident set size (KB) = 2583976 +0:The total amount of wall time = 605.924134 +0:The maximum resident set size (KB) = 2583856 -Test 016 cpld_control_c48 PASS +Test 018 cpld_control_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/cpld_warmstart_c48 -Checking test 017 cpld_warmstart_c48 results .... +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/cpld_warmstart_c48 +Checking test 019 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK Comparing sfcf006.tile3.nc .........OK @@ -1118,15 +1250,15 @@ Checking test 017 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -0:The total amount of wall time = 161.913272 -0:The maximum resident set size (KB) = 2600748 +0:The total amount of wall time = 162.253597 +0:The maximum resident set size (KB) = 2600972 -Test 017 cpld_warmstart_c48 PASS +Test 019 cpld_warmstart_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/cpld_restart_c48 -Checking test 018 cpld_restart_c48 results .... +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/cpld_restart_c48 +Checking test 020 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK Comparing sfcf006.tile3.nc .........OK @@ -1175,15 +1307,15 @@ Checking test 018 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -0:The total amount of wall time = 83.529599 -0:The maximum resident set size (KB) = 2018176 +0:The total amount of wall time = 85.461907 +0:The maximum resident set size (KB) = 2017796 -Test 018 cpld_restart_c48 PASS +Test 020 cpld_restart_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/control_CubedSphereGrid -Checking test 019 control_CubedSphereGrid results .... +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_CubedSphereGrid +Checking test 021 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1209,49 +1341,49 @@ Checking test 019 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -0:The total amount of wall time = 141.975321 -0:The maximum resident set size (KB) = 453496 +0:The total amount of wall time = 141.118682 +0:The maximum resident set size (KB) = 453560 -Test 019 control_CubedSphereGrid PASS +Test 021 control_CubedSphereGrid PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid_parallel -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/control_CubedSphereGrid_parallel -Checking test 020 control_CubedSphereGrid_parallel results .... +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_CubedSphereGrid_parallel +Checking test 022 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc .........OK + Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK -0:The total amount of wall time = 139.967774 -0:The maximum resident set size (KB) = 453560 +0:The total amount of wall time = 140.524589 +0:The maximum resident set size (KB) = 453596 -Test 020 control_CubedSphereGrid_parallel PASS +Test 022 control_CubedSphereGrid_parallel PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_latlon -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/control_latlon -Checking test 021 control_latlon results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_latlon +Checking test 023 control_latlon results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 146.058953 -0:The maximum resident set size (KB) = 453912 +0:The total amount of wall time = 143.872417 +0:The maximum resident set size (KB) = 454256 -Test 021 control_latlon PASS +Test 023 control_latlon PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wrtGauss_netcdf_parallel -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/control_wrtGauss_netcdf_parallel -Checking test 022 control_wrtGauss_netcdf_parallel results .... +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_wrtGauss_netcdf_parallel +Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc .........OK + Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK @@ -1259,19 +1391,19 @@ Checking test 022 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 149.403093 -0:The maximum resident set size (KB) = 453956 +0:The total amount of wall time = 149.231910 +0:The maximum resident set size (KB) = 453976 -Test 022 control_wrtGauss_netcdf_parallel PASS +Test 024 control_wrtGauss_netcdf_parallel PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c48 -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/control_c48 -Checking test 023 control_c48 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_c48 +Checking test 025 control_c48 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -1305,55 +1437,55 @@ Checking test 023 control_c48 results .... Comparing 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.954020 -0:The maximum resident set size (KB) = 627836 +0:The total amount of wall time = 444.456424 +0:The maximum resident set size (KB) = 627936 -Test 023 control_c48 PASS +Test 025 control_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c192 -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/control_c192 -Checking test 024 control_c192 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_c192 +Checking test 026 control_c192 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 591.762860 -0:The maximum resident set size (KB) = 557600 +0:The total amount of wall time = 596.855607 +0:The maximum resident set size (KB) = 557924 -Test 024 control_c192 PASS +Test 026 control_c192 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c384 -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/control_c384 -Checking test 025 control_c384 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_c384 +Checking test 027 control_c384 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 602.144804 -0:The maximum resident set size (KB) = 892056 +0:The total amount of wall time = 586.077556 +0:The maximum resident set size (KB) = 898336 -Test 025 control_c384 PASS +Test 027 control_c384 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c384gdas -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/control_c384gdas -Checking test 026 control_c384gdas results .... - Comparing sfcf000.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf006.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_c384gdas +Checking test 028 control_c384gdas results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf006.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF06 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -1391,71 +1523,71 @@ Checking test 026 control_c384gdas 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 = 528.944726 -0:The maximum resident set size (KB) = 1018352 +0:The total amount of wall time = 514.462522 +0:The maximum resident set size (KB) = 1024412 -Test 026 control_c384gdas PASS +Test 028 control_c384gdas PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/control_stochy -Checking test 027 control_stochy results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_stochy +Checking test 029 control_stochy results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 97.955559 -0:The maximum resident set size (KB) = 455564 +0:The total amount of wall time = 97.854619 +0:The maximum resident set size (KB) = 455632 -Test 027 control_stochy PASS +Test 029 control_stochy PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/control_stochy_restart -Checking test 028 control_stochy_restart results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_stochy_restart +Checking test 030 control_stochy_restart results .... + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 52.397136 -0:The maximum resident set size (KB) = 226156 +0:The total amount of wall time = 53.199096 +0:The maximum resident set size (KB) = 226448 -Test 028 control_stochy_restart PASS +Test 030 control_stochy_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_lndp -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/control_lndp -Checking test 029 control_lndp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_lndp +Checking test 031 control_lndp results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 90.529454 -0:The maximum resident set size (KB) = 456628 +0:The total amount of wall time = 90.452282 +0:The maximum resident set size (KB) = 456640 -Test 029 control_lndp PASS +Test 031 control_lndp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_iovr4 -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/control_iovr4 -Checking test 030 control_iovr4 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_iovr4 +Checking test 032 control_iovr4 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1463,21 +1595,21 @@ Checking test 030 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 147.482513 -0:The maximum resident set size (KB) = 453800 +0:The total amount of wall time = 149.782597 +0:The maximum resident set size (KB) = 453952 -Test 030 control_iovr4 PASS +Test 032 control_iovr4 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_iovr5 -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/control_iovr5 -Checking test 031 control_iovr5 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_iovr5 +Checking test 033 control_iovr5 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1485,21 +1617,21 @@ Checking test 031 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 148.086704 -0:The maximum resident set size (KB) = 453736 +0:The total amount of wall time = 151.341513 +0:The maximum resident set size (KB) = 453928 -Test 031 control_iovr5 PASS +Test 033 control_iovr5 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/control_p8 -Checking test 032 control_p8 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_p8 +Checking test 034 control_p8 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1539,43 +1671,17 @@ Checking test 032 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 180.823686 -0:The maximum resident set size (KB) = 1423204 - -Test 032 control_p8 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_lndp -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/control_p8_lndp -Checking test 033 control_p8_lndp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing sfcf048.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing atmf048.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSFLX.GrbF48 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing GFSPRS.GrbF48 .........OK - -0:The total amount of wall time = 332.409044 -0:The maximum resident set size (KB) = 1423380 +0:The total amount of wall time = 182.401626 +0:The maximum resident set size (KB) = 1423156 -Test 033 control_p8_lndp PASS +Test 034 control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/control_restart_p8 -Checking test 034 control_restart_p8 results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_restart_p8 +Checking test 035 control_restart_p8 results .... + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -1611,19 +1717,119 @@ Checking test 034 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 95.332426 -0:The maximum resident set size (KB) = 582544 +0:The total amount of wall time = 96.229643 +0:The maximum resident set size (KB) = 582512 -Test 034 control_restart_p8 PASS +Test 035 control_restart_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/control_decomp_p8 -Checking test 035 control_decomp_p8 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_qr_p8 +Checking test 036 control_qr_p8 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + +0:The total amount of wall time = 182.524298 +0:The maximum resident set size (KB) = 1427176 + +Test 036 control_qr_p8 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_restart_qr_p8 +Checking test 037 control_restart_qr_p8 results .... + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + +0:The total amount of wall time = 101.168924 +0:The maximum resident set size (KB) = 596100 + +Test 037 control_restart_qr_p8 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_decomp_p8 +Checking test 038 control_decomp_p8 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -1661,19 +1867,19 @@ Checking test 035 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 186.579134 -0:The maximum resident set size (KB) = 1417968 +0:The total amount of wall time = 185.953498 +0:The maximum resident set size (KB) = 1417992 -Test 035 control_decomp_p8 PASS +Test 038 control_decomp_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/control_2threads_p8 -Checking test 036 control_2threads_p8 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_2threads_p8 +Checking test 039 control_2threads_p8 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -1711,21 +1917,47 @@ Checking test 036 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 173.136670 -0:The maximum resident set size (KB) = 1508828 +0:The total amount of wall time = 172.809984 +0:The maximum resident set size (KB) = 1508756 + +Test 039 control_2threads_p8 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_lndp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_p8_lndp +Checking test 040 control_p8_lndp results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing sfcf048.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK + Comparing atmf048.nc ............ALT CHECK......OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSFLX.GrbF48 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing GFSPRS.GrbF48 .........OK + +0:The total amount of wall time = 336.166582 +0:The maximum resident set size (KB) = 1423380 -Test 036 control_2threads_p8 PASS +Test 040 control_p8_lndp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_rrtmgp -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/control_p8_rrtmgp -Checking test 037 control_p8_rrtmgp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_p8_rrtmgp +Checking test 041 control_p8_rrtmgp results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1765,21 +1997,21 @@ Checking test 037 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 251.737860 -0:The maximum resident set size (KB) = 1481688 +0:The total amount of wall time = 253.690303 +0:The maximum resident set size (KB) = 1481628 -Test 037 control_p8_rrtmgp PASS +Test 041 control_p8_rrtmgp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_mynn -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/control_p8_mynn -Checking test 038 control_p8_mynn results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_p8_mynn +Checking test 042 control_p8_mynn results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1819,21 +2051,21 @@ Checking test 038 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 185.822071 -0:The maximum resident set size (KB) = 1428140 +0:The total amount of wall time = 184.997101 +0:The maximum resident set size (KB) = 1428108 -Test 038 control_p8_mynn PASS +Test 042 control_p8_mynn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/merra2_thompson -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/merra2_thompson -Checking test 039 merra2_thompson results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/merra2_thompson +Checking test 043 merra2_thompson results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1873,154 +2105,186 @@ Checking test 039 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 205.776635 -0:The maximum resident set size (KB) = 1429312 +0:The total amount of wall time = 206.917130 +0:The maximum resident set size (KB) = 1429316 -Test 039 merra2_thompson PASS +Test 043 merra2_thompson PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/regional_control -Checking test 040 regional_control results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/regional_control +Checking test 044 regional_control results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf006.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 340.383828 -0:The maximum resident set size (KB) = 604120 +0:The total amount of wall time = 342.044312 +0:The maximum resident set size (KB) = 604064 -Test 040 regional_control PASS +Test 044 regional_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/regional_restart -Checking test 041 regional_restart results .... - Comparing dynf006.nc .........OK - Comparing phyf006.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/regional_restart +Checking test 045 regional_restart results .... + Comparing dynf006.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 176.858008 -0:The maximum resident set size (KB) = 593652 +0:The total amount of wall time = 174.197531 +0:The maximum resident set size (KB) = 593680 -Test 041 regional_restart PASS +Test 045 regional_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/regional_decomp -Checking test 042 regional_decomp results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/regional_control_qr +Checking test 046 regional_control_qr results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf006.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 355.900439 -0:The maximum resident set size (KB) = 597284 +0:The total amount of wall time = 341.384121 +0:The maximum resident set size (KB) = 604040 -Test 042 regional_decomp PASS +Test 046 regional_control_qr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/regional_2threads -Checking test 043 regional_2threads results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/regional_restart_qr +Checking test 047 regional_restart_qr results .... + Comparing dynf006.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF06 .........OK + +0:The total amount of wall time = 175.899751 +0:The maximum resident set size (KB) = 593672 + +Test 047 regional_restart_qr PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/regional_decomp +Checking test 048 regional_decomp results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf006.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 204.030917 -0:The maximum resident set size (KB) = 610148 +0:The total amount of wall time = 360.309103 +0:The maximum resident set size (KB) = 597372 -Test 043 regional_2threads PASS +Test 048 regional_decomp PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/regional_2threads +Checking test 049 regional_2threads results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf006.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK + +0:The total amount of wall time = 202.865569 +0:The maximum resident set size (KB) = 610684 + +Test 049 regional_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_noquilt -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/regional_noquilt -Checking test 044 regional_noquilt results .... +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/regional_noquilt +Checking test 050 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -0:The total amount of wall time = 363.196506 -0:The maximum resident set size (KB) = 598436 +0:The total amount of wall time = 361.095701 +0:The maximum resident set size (KB) = 598816 -Test 044 regional_noquilt PASS +Test 050 regional_noquilt PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_netcdf_parallel -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/regional_netcdf_parallel -Checking test 045 regional_netcdf_parallel results .... - Comparing dynf000.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/regional_netcdf_parallel +Checking test 051 regional_netcdf_parallel results .... + Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf006.nc ............ALT CHECK......OK Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf006.nc ............ALT CHECK......OK -0:The total amount of wall time = 336.304196 -0:The maximum resident set size (KB) = 596016 +0:The total amount of wall time = 328.207054 +0:The maximum resident set size (KB) = 596056 -Test 045 regional_netcdf_parallel PASS +Test 051 regional_netcdf_parallel PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/regional_2dwrtdecomp -Checking test 046 regional_2dwrtdecomp results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/regional_2dwrtdecomp +Checking test 052 regional_2dwrtdecomp results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf006.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 329.732101 -0:The maximum resident set size (KB) = 604140 +0:The total amount of wall time = 339.351069 +0:The maximum resident set size (KB) = 604032 -Test 046 regional_2dwrtdecomp PASS +Test 052 regional_2dwrtdecomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/fv3_regional_wofs -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/regional_wofs -Checking test 047 regional_wofs results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/regional_wofs +Checking test 053 regional_wofs results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf006.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 416.109625 -0:The maximum resident set size (KB) = 275264 +0:The total amount of wall time = 424.094974 +0:The maximum resident set size (KB) = 275296 -Test 047 regional_wofs PASS +Test 053 regional_wofs PASS Tries: 2 baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/rap_control -Checking test 048 rap_control results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/rap_control +Checking test 054 rap_control results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2060,39 +2324,39 @@ Checking test 048 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 470.071915 -0:The maximum resident set size (KB) = 824548 +0:The total amount of wall time = 469.931155 +0:The maximum resident set size (KB) = 824644 -Test 048 rap_control PASS +Test 054 rap_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_spp_sppt_shum_skeb -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/regional_spp_sppt_shum_skeb -Checking test 049 regional_spp_sppt_shum_skeb results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/regional_spp_sppt_shum_skeb +Checking test 055 regional_spp_sppt_shum_skeb results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf001.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf001.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF01 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 327.743058 -0:The maximum resident set size (KB) = 951392 +0:The total amount of wall time = 261.021967 +0:The maximum resident set size (KB) = 951652 -Test 049 regional_spp_sppt_shum_skeb PASS +Test 055 regional_spp_sppt_shum_skeb PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/rap_decomp -Checking test 050 rap_decomp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/rap_decomp +Checking test 056 rap_decomp results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2132,21 +2396,21 @@ Checking test 050 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 501.040312 -0:The maximum resident set size (KB) = 823072 +0:The total amount of wall time = 499.380072 +0:The maximum resident set size (KB) = 823160 -Test 050 rap_decomp PASS +Test 056 rap_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/rap_2threads -Checking test 051 rap_2threads results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/rap_2threads +Checking test 057 rap_2threads results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2186,17 +2450,17 @@ Checking test 051 rap_2threads results .... Comparing 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.287778 -0:The maximum resident set size (KB) = 893804 +0:The total amount of wall time = 454.066752 +0:The maximum resident set size (KB) = 893664 -Test 051 rap_2threads PASS +Test 057 rap_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/rap_restart -Checking test 052 rap_restart results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/rap_restart +Checking test 058 rap_restart results .... + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -2232,21 +2496,21 @@ Checking test 052 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 241.095621 -0:The maximum resident set size (KB) = 572704 +0:The total amount of wall time = 241.083227 +0:The maximum resident set size (KB) = 572872 -Test 052 rap_restart PASS +Test 058 rap_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/rap_sfcdiff -Checking test 053 rap_sfcdiff 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 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/rap_sfcdiff +Checking test 059 rap_sfcdiff results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2286,21 +2550,21 @@ Checking test 053 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 471.506236 -0:The maximum resident set size (KB) = 824660 +0:The total amount of wall time = 476.863516 +0:The maximum resident set size (KB) = 824552 -Test 053 rap_sfcdiff PASS +Test 059 rap_sfcdiff PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/rap_sfcdiff_decomp -Checking test 054 rap_sfcdiff_decomp 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 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/rap_sfcdiff_decomp +Checking test 060 rap_sfcdiff_decomp results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2340,17 +2604,17 @@ Checking test 054 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 488.106344 -0:The maximum resident set size (KB) = 825872 +0:The total amount of wall time = 501.481807 +0:The maximum resident set size (KB) = 825628 -Test 054 rap_sfcdiff_decomp PASS +Test 060 rap_sfcdiff_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/rap_sfcdiff_restart -Checking test 055 rap_sfcdiff_restart results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/rap_sfcdiff_restart +Checking test 061 rap_sfcdiff_restart results .... + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -2386,21 +2650,21 @@ Checking test 055 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 355.139243 -0:The maximum resident set size (KB) = 570732 +0:The total amount of wall time = 353.392174 +0:The maximum resident set size (KB) = 571068 -Test 055 rap_sfcdiff_restart PASS +Test 061 rap_sfcdiff_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/hrrr_control -Checking test 056 hrrr_control 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 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/hrrr_control +Checking test 062 hrrr_control results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2440,21 +2704,21 @@ Checking test 056 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 451.292615 -0:The maximum resident set size (KB) = 821416 +0:The total amount of wall time = 459.053973 +0:The maximum resident set size (KB) = 821496 -Test 056 hrrr_control PASS +Test 062 hrrr_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/hrrr_control_decomp -Checking test 057 hrrr_control_decomp 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 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/hrrr_control_decomp +Checking test 063 hrrr_control_decomp results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2494,21 +2758,21 @@ Checking test 057 hrrr_control_decomp results .... Comparing 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.047275 -0:The maximum resident set size (KB) = 821420 +0:The total amount of wall time = 481.590518 +0:The maximum resident set size (KB) = 821488 -Test 057 hrrr_control_decomp PASS +Test 063 hrrr_control_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/hrrr_control_2threads -Checking test 058 hrrr_control_2threads 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 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/hrrr_control_2threads +Checking test 064 hrrr_control_2threads results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2548,17 +2812,17 @@ Checking test 058 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 430.476336 -0:The maximum resident set size (KB) = 884536 +0:The total amount of wall time = 437.096954 +0:The maximum resident set size (KB) = 884636 -Test 058 hrrr_control_2threads PASS +Test 064 hrrr_control_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/hrrr_control_restart -Checking test 059 hrrr_control_restart results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/hrrr_control_restart +Checking test 065 hrrr_control_restart results .... + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -2594,21 +2858,21 @@ Checking test 059 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 340.210177 -0:The maximum resident set size (KB) = 567696 +0:The total amount of wall time = 340.799161 +0:The maximum resident set size (KB) = 567872 -Test 059 hrrr_control_restart PASS +Test 065 hrrr_control_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1beta -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/rrfs_v1beta -Checking test 060 rrfs_v1beta 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 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/rrfs_v1beta +Checking test 066 rrfs_v1beta results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2648,21 +2912,21 @@ Checking test 060 rrfs_v1beta results .... Comparing 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.836612 -0:The maximum resident set size (KB) = 820152 +0:The total amount of wall time = 473.509203 +0:The maximum resident set size (KB) = 820028 -Test 060 rrfs_v1beta PASS +Test 066 rrfs_v1beta PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1nssl -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/rrfs_v1nssl -Checking test 061 rrfs_v1nssl 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 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/rrfs_v1nssl +Checking test 067 rrfs_v1nssl results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2670,21 +2934,21 @@ Checking test 061 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 572.414620 -0:The maximum resident set size (KB) = 508468 +0:The total amount of wall time = 585.676713 +0:The maximum resident set size (KB) = 508564 -Test 061 rrfs_v1nssl PASS +Test 067 rrfs_v1nssl PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/rrfs_v1nssl_nohailnoccn -Checking test 062 rrfs_v1nssl_nohailnoccn 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 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/rrfs_v1nssl_nohailnoccn +Checking test 068 rrfs_v1nssl_nohailnoccn results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2692,151 +2956,151 @@ Checking test 062 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 558.603993 -0:The maximum resident set size (KB) = 502560 +0:The total amount of wall time = 573.553648 +0:The maximum resident set size (KB) = 502548 -Test 062 rrfs_v1nssl_nohailnoccn PASS +Test 068 rrfs_v1nssl_nohailnoccn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/rrfs_smoke_conus13km_hrrr_warm -Checking test 063 rrfs_smoke_conus13km_hrrr_warm 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 - -0:The total amount of wall time = 152.548432 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/rrfs_smoke_conus13km_hrrr_warm +Checking test 069 rrfs_smoke_conus13km_hrrr_warm results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing sfcf002.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK + Comparing atmf002.nc ............ALT CHECK......OK + +0:The total amount of wall time = 152.722800 0:The maximum resident set size (KB) = 672424 -Test 063 rrfs_smoke_conus13km_hrrr_warm PASS +Test 069 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/rrfs_smoke_conus13km_hrrr_warm_2threads -Checking test 064 rrfs_smoke_conus13km_hrrr_warm_2threads 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 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/rrfs_smoke_conus13km_hrrr_warm_2threads +Checking test 070 rrfs_smoke_conus13km_hrrr_warm_2threads results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing sfcf002.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK + Comparing atmf002.nc ............ALT CHECK......OK -0:The total amount of wall time = 95.219357 -0:The maximum resident set size (KB) = 690344 +0:The total amount of wall time = 93.596174 +0:The maximum resident set size (KB) = 690488 -Test 064 rrfs_smoke_conus13km_hrrr_warm_2threads PASS +Test 070 rrfs_smoke_conus13km_hrrr_warm_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/rrfs_conus13km_hrrr_warm -Checking test 065 rrfs_conus13km_hrrr_warm 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 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/rrfs_conus13km_hrrr_warm +Checking test 071 rrfs_conus13km_hrrr_warm results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing sfcf002.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK + Comparing atmf002.nc ............ALT CHECK......OK -0:The total amount of wall time = 136.538369 -0:The maximum resident set size (KB) = 653472 +0:The total amount of wall time = 136.283791 +0:The maximum resident set size (KB) = 653392 -Test 065 rrfs_conus13km_hrrr_warm PASS +Test 071 rrfs_conus13km_hrrr_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/rrfs_smoke_conus13km_radar_tten_warm -Checking test 066 rrfs_smoke_conus13km_radar_tten_warm 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 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/rrfs_smoke_conus13km_radar_tten_warm +Checking test 072 rrfs_smoke_conus13km_radar_tten_warm results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing sfcf002.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK + Comparing atmf002.nc ............ALT CHECK......OK -0:The total amount of wall time = 152.552945 -0:The maximum resident set size (KB) = 674436 +0:The total amount of wall time = 153.296440 +0:The maximum resident set size (KB) = 674476 -Test 066 rrfs_smoke_conus13km_radar_tten_warm PASS +Test 072 rrfs_smoke_conus13km_radar_tten_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmg -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/control_csawmg -Checking test 067 control_csawmg results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_csawmg +Checking test 073 control_csawmg results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 381.152306 -0:The maximum resident set size (KB) = 525856 +0:The total amount of wall time = 380.324746 +0:The maximum resident set size (KB) = 525900 -Test 067 control_csawmg PASS +Test 073 control_csawmg PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmgt -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/control_csawmgt -Checking test 068 control_csawmgt results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_csawmgt +Checking test 074 control_csawmgt results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 375.839732 -0:The maximum resident set size (KB) = 529972 +0:The total amount of wall time = 394.619076 +0:The maximum resident set size (KB) = 530084 -Test 068 control_csawmgt PASS +Test 074 control_csawmgt PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_ras -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/control_ras -Checking test 069 control_ras results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_ras +Checking test 075 control_ras results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 197.794560 -0:The maximum resident set size (KB) = 487136 +0:The total amount of wall time = 205.162202 +0:The maximum resident set size (KB) = 487424 -Test 069 control_ras PASS +Test 075 control_ras PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wam -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/control_wam -Checking test 070 control_wam results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_wam +Checking test 076 control_wam results .... + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK -0:The total amount of wall time = 129.137335 -0:The maximum resident set size (KB) = 206172 +0:The total amount of wall time = 130.556574 +0:The maximum resident set size (KB) = 206064 -Test 070 control_wam PASS +Test 076 control_wam PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_faster -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/control_p8_faster -Checking test 071 control_p8_faster results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_p8_faster +Checking test 077 control_p8_faster results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2876,75 +3140,75 @@ Checking test 071 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 165.484471 -0:The maximum resident set size (KB) = 1423056 +0:The total amount of wall time = 171.562489 +0:The maximum resident set size (KB) = 1423000 -Test 071 control_p8_faster PASS +Test 077 control_p8_faster PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control_faster -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/regional_control_faster -Checking test 072 regional_control_faster results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/regional_control_faster +Checking test 078 regional_control_faster results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf006.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 307.770992 -0:The maximum resident set size (KB) = 603832 +0:The total amount of wall time = 320.332008 +0:The maximum resident set size (KB) = 603840 -Test 072 regional_control_faster PASS +Test 078 regional_control_faster PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/rrfs_smoke_conus13km_hrrr_warm_debug -Checking test 073 rrfs_smoke_conus13km_hrrr_warm_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/rrfs_smoke_conus13km_hrrr_warm_debug +Checking test 079 rrfs_smoke_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 880.301128 -0:The maximum resident set size (KB) = 709308 +0:The total amount of wall time = 883.917912 +0:The maximum resident set size (KB) = 709504 -Test 073 rrfs_smoke_conus13km_hrrr_warm_debug PASS +Test 079 rrfs_smoke_conus13km_hrrr_warm_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/rrfs_smoke_conus13km_hrrr_warm_debug_2threads -Checking test 074 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +Checking test 080 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 525.067605 -0:The maximum resident set size (KB) = 727316 +0:The total amount of wall time = 509.288348 +0:The maximum resident set size (KB) = 729476 -Test 074 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS +Test 080 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/rrfs_conus13km_hrrr_warm_debug -Checking test 075 rrfs_conus13km_hrrr_warm_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/rrfs_conus13km_hrrr_warm_debug +Checking test 081 rrfs_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 787.780070 -0:The maximum resident set size (KB) = 687516 +0:The total amount of wall time = 787.000904 +0:The maximum resident set size (KB) = 687508 -Test 075 rrfs_conus13km_hrrr_warm_debug PASS +Test 081 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid_debug -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/control_CubedSphereGrid_debug -Checking test 076 control_CubedSphereGrid_debug results .... +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_CubedSphereGrid_debug +Checking test 082 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -2970,359 +3234,359 @@ Checking test 076 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -0:The total amount of wall time = 174.364821 -0:The maximum resident set size (KB) = 619376 +0:The total amount of wall time = 174.453469 +0:The maximum resident set size (KB) = 619612 -Test 076 control_CubedSphereGrid_debug PASS +Test 082 control_CubedSphereGrid_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/control_wrtGauss_netcdf_parallel_debug -Checking test 077 control_wrtGauss_netcdf_parallel_debug results .... - Comparing sfcf000.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_wrtGauss_netcdf_parallel_debug +Checking test 083 control_wrtGauss_netcdf_parallel_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 162.704063 -0:The maximum resident set size (KB) = 620092 +0:The total amount of wall time = 163.726339 +0:The maximum resident set size (KB) = 619948 -Test 077 control_wrtGauss_netcdf_parallel_debug PASS +Test 083 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy_debug -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/control_stochy_debug -Checking test 078 control_stochy_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_stochy_debug +Checking test 084 control_stochy_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 183.356559 -0:The maximum resident set size (KB) = 627132 +0:The total amount of wall time = 182.584063 +0:The maximum resident set size (KB) = 627072 -Test 078 control_stochy_debug PASS +Test 084 control_stochy_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_lndp_debug -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/control_lndp_debug -Checking test 079 control_lndp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_lndp_debug +Checking test 085 control_lndp_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 165.293496 -0:The maximum resident set size (KB) = 624532 +0:The total amount of wall time = 165.258436 +0:The maximum resident set size (KB) = 624448 -Test 079 control_lndp_debug PASS +Test 085 control_lndp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmg_debug -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/control_csawmg_debug -Checking test 080 control_csawmg_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_csawmg_debug +Checking test 086 control_csawmg_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 256.434985 -0:The maximum resident set size (KB) = 670728 +0:The total amount of wall time = 257.222327 +0:The maximum resident set size (KB) = 670640 -Test 080 control_csawmg_debug PASS +Test 086 control_csawmg_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmgt_debug -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/control_csawmgt_debug -Checking test 081 control_csawmgt_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_csawmgt_debug +Checking test 087 control_csawmgt_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 253.121606 -0:The maximum resident set size (KB) = 671268 +0:The total amount of wall time = 252.148205 +0:The maximum resident set size (KB) = 671176 -Test 081 control_csawmgt_debug PASS +Test 087 control_csawmgt_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_ras_debug -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/control_ras_debug -Checking test 082 control_ras_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_ras_debug +Checking test 088 control_ras_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 166.488887 -0:The maximum resident set size (KB) = 634536 +0:The total amount of wall time = 167.764973 +0:The maximum resident set size (KB) = 634360 -Test 082 control_ras_debug PASS +Test 088 control_ras_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_diag_debug -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/control_diag_debug -Checking test 083 control_diag_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_diag_debug +Checking test 089 control_diag_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 169.091632 -0:The maximum resident set size (KB) = 678380 +0:The total amount of wall time = 169.860445 +0:The maximum resident set size (KB) = 678308 -Test 083 control_diag_debug PASS +Test 089 control_diag_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_debug_p8 -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/control_debug_p8 -Checking test 084 control_debug_p8 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_debug_p8 +Checking test 090 control_debug_p8 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 184.025508 -0:The maximum resident set size (KB) = 1445136 +0:The total amount of wall time = 184.287909 +0:The maximum resident set size (KB) = 1445088 -Test 084 control_debug_p8 PASS +Test 090 control_debug_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_debug -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/regional_debug -Checking test 085 regional_debug results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/regional_debug +Checking test 091 regional_debug results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf001.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 1037.392474 -0:The maximum resident set size (KB) = 630056 +0:The total amount of wall time = 1035.619755 +0:The maximum resident set size (KB) = 630120 -Test 085 regional_debug PASS +Test 091 regional_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/rap_control_debug -Checking test 086 rap_control_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/rap_control_debug +Checking test 092 rap_control_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 295.313938 -0:The maximum resident set size (KB) = 991976 +0:The total amount of wall time = 295.089645 +0:The maximum resident set size (KB) = 991992 -Test 086 rap_control_debug PASS +Test 092 rap_control_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_debug -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/hrrr_control_debug -Checking test 087 hrrr_control_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/hrrr_control_debug +Checking test 093 hrrr_control_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 290.269255 -0:The maximum resident set size (KB) = 988488 +0:The total amount of wall time = 290.865731 +0:The maximum resident set size (KB) = 988376 -Test 087 hrrr_control_debug PASS +Test 093 hrrr_control_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/rap_unified_drag_suite_debug -Checking test 088 rap_unified_drag_suite_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/rap_unified_drag_suite_debug +Checking test 094 rap_unified_drag_suite_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 295.088143 -0:The maximum resident set size (KB) = 992216 +0:The total amount of wall time = 295.586621 +0:The maximum resident set size (KB) = 992012 -Test 088 rap_unified_drag_suite_debug PASS +Test 094 rap_unified_drag_suite_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_diag_debug -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/rap_diag_debug -Checking test 089 rap_diag_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/rap_diag_debug +Checking test 095 rap_diag_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 309.141616 -0:The maximum resident set size (KB) = 1074240 +0:The total amount of wall time = 308.611878 +0:The maximum resident set size (KB) = 1074184 -Test 089 rap_diag_debug PASS +Test 095 rap_diag_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/rap_cires_ugwp_debug -Checking test 090 rap_cires_ugwp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/rap_cires_ugwp_debug +Checking test 096 rap_cires_ugwp_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 300.374753 -0:The maximum resident set size (KB) = 990160 +0:The total amount of wall time = 300.967728 +0:The maximum resident set size (KB) = 990196 -Test 090 rap_cires_ugwp_debug PASS +Test 096 rap_cires_ugwp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/rap_unified_ugwp_debug -Checking test 091 rap_unified_ugwp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/rap_unified_ugwp_debug +Checking test 097 rap_unified_ugwp_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 300.601704 -0:The maximum resident set size (KB) = 991116 +0:The total amount of wall time = 300.855412 +0:The maximum resident set size (KB) = 991008 -Test 091 rap_unified_ugwp_debug PASS +Test 097 rap_unified_ugwp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_lndp_debug -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/rap_lndp_debug -Checking test 092 rap_lndp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/rap_lndp_debug +Checking test 098 rap_lndp_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 298.507224 -0:The maximum resident set size (KB) = 992676 +0:The total amount of wall time = 297.773048 +0:The maximum resident set size (KB) = 992804 -Test 092 rap_lndp_debug PASS +Test 098 rap_lndp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_flake_debug -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/rap_flake_debug -Checking test 093 rap_flake_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/rap_flake_debug +Checking test 099 rap_flake_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 295.668798 -0:The maximum resident set size (KB) = 991952 +0:The total amount of wall time = 294.948452 +0:The maximum resident set size (KB) = 992084 -Test 093 rap_flake_debug PASS +Test 099 rap_flake_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_progcld_thompson_debug -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/rap_progcld_thompson_debug -Checking test 094 rap_progcld_thompson_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/rap_progcld_thompson_debug +Checking test 100 rap_progcld_thompson_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 295.959104 -0:The maximum resident set size (KB) = 992004 +0:The total amount of wall time = 295.487466 +0:The maximum resident set size (KB) = 992148 -Test 094 rap_progcld_thompson_debug PASS +Test 100 rap_progcld_thompson_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_noah_debug -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/rap_noah_debug -Checking test 095 rap_noah_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/rap_noah_debug +Checking test 101 rap_noah_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 289.595622 -0:The maximum resident set size (KB) = 990616 +0:The total amount of wall time = 288.823509 +0:The maximum resident set size (KB) = 990640 -Test 095 rap_noah_debug PASS +Test 101 rap_noah_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff_debug -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/rap_sfcdiff_debug -Checking test 096 rap_sfcdiff_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/rap_sfcdiff_debug +Checking test 102 rap_sfcdiff_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 296.051929 -0:The maximum resident set size (KB) = 991824 +0:The total amount of wall time = 294.725765 +0:The maximum resident set size (KB) = 991768 -Test 096 rap_sfcdiff_debug PASS +Test 102 rap_sfcdiff_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 097 rap_noah_sfcdiff_cires_ugwp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 103 rap_noah_sfcdiff_cires_ugwp_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 479.954606 -0:The maximum resident set size (KB) = 989140 +0:The total amount of wall time = 479.235821 +0:The maximum resident set size (KB) = 989148 -Test 097 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 103 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1beta_debug -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/rrfs_v1beta_debug -Checking test 098 rrfs_v1beta_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/rrfs_v1beta_debug +Checking test 104 rrfs_v1beta_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 290.450653 -0:The maximum resident set size (KB) = 986252 +0:The total amount of wall time = 292.709745 +0:The maximum resident set size (KB) = 986172 -Test 098 rrfs_v1beta_debug PASS +Test 104 rrfs_v1beta_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wam_debug -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/control_wam_debug -Checking test 099 control_wam_debug results .... - Comparing sfcf019.nc .........OK - Comparing atmf019.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_wam_debug +Checking test 105 control_wam_debug results .... + Comparing sfcf019.nc ............ALT CHECK......OK + Comparing atmf019.nc ............ALT CHECK......OK -0:The total amount of wall time = 297.844023 -0:The maximum resident set size (KB) = 239468 +0:The total amount of wall time = 297.491720 +0:The maximum resident set size (KB) = 239652 -Test 099 control_wam_debug PASS +Test 105 control_wam_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/regional_spp_sppt_shum_skeb_dyn32_phy32 -Checking test 100 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf001.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf001.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF01 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 306.479029 -0:The maximum resident set size (KB) = 849016 +0:The total amount of wall time = 239.259258 +0:The maximum resident set size (KB) = 849376 -Test 100 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS +Test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/rap_control_dyn32_phy32 -Checking test 101 rap_control_dyn32_phy32 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 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/rap_control_dyn32_phy32 +Checking test 107 rap_control_dyn32_phy32 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3362,21 +3626,21 @@ Checking test 101 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 386.112380 -0:The maximum resident set size (KB) = 707524 +0:The total amount of wall time = 395.699418 +0:The maximum resident set size (KB) = 707480 -Test 101 rap_control_dyn32_phy32 PASS +Test 107 rap_control_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/hrrr_control_dyn32_phy32 -Checking test 102 hrrr_control_dyn32_phy32 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 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/hrrr_control_dyn32_phy32 +Checking test 108 hrrr_control_dyn32_phy32 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3416,21 +3680,21 @@ Checking test 102 hrrr_control_dyn32_phy32 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 = 204.207384 -0:The maximum resident set size (KB) = 705852 +0:The total amount of wall time = 204.701707 +0:The maximum resident set size (KB) = 705812 -Test 102 hrrr_control_dyn32_phy32 PASS +Test 108 hrrr_control_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/rap_2threads_dyn32_phy32 -Checking test 103 rap_2threads_dyn32_phy32 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 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/rap_2threads_dyn32_phy32 +Checking test 109 rap_2threads_dyn32_phy32 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3470,21 +3734,21 @@ Checking test 103 rap_2threads_dyn32_phy32 results .... Comparing 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.296159 -0:The maximum resident set size (KB) = 756748 +0:The total amount of wall time = 379.175377 +0:The maximum resident set size (KB) = 760876 -Test 103 rap_2threads_dyn32_phy32 PASS +Test 109 rap_2threads_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/hrrr_control_2threads_dyn32_phy32 -Checking test 104 hrrr_control_2threads_dyn32_phy32 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 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/hrrr_control_2threads_dyn32_phy32 +Checking test 110 hrrr_control_2threads_dyn32_phy32 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3524,21 +3788,21 @@ Checking test 104 hrrr_control_2threads_dyn32_phy32 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 = 202.661084 -0:The maximum resident set size (KB) = 759028 +0:The total amount of wall time = 195.401824 +0:The maximum resident set size (KB) = 754816 -Test 104 hrrr_control_2threads_dyn32_phy32 PASS +Test 110 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/hrrr_control_decomp_dyn32_phy32 -Checking test 105 hrrr_control_decomp_dyn32_phy32 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 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/hrrr_control_decomp_dyn32_phy32 +Checking test 111 hrrr_control_decomp_dyn32_phy32 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3578,17 +3842,17 @@ Checking test 105 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 217.512238 -0:The maximum resident set size (KB) = 704072 +0:The total amount of wall time = 214.488239 +0:The maximum resident set size (KB) = 704028 -Test 105 hrrr_control_decomp_dyn32_phy32 PASS +Test 111 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/rap_restart_dyn32_phy32 -Checking test 106 rap_restart_dyn32_phy32 results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/rap_restart_dyn32_phy32 +Checking test 112 rap_restart_dyn32_phy32 results .... + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -3624,17 +3888,17 @@ Checking test 106 rap_restart_dyn32_phy32 results .... Comparing 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.802706 -0:The maximum resident set size (KB) = 544280 +0:The total amount of wall time = 290.989174 +0:The maximum resident set size (KB) = 544368 -Test 106 rap_restart_dyn32_phy32 PASS +Test 112 rap_restart_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/hrrr_control_restart_dyn32_phy32 -Checking test 107 hrrr_control_restart_dyn32_phy32 results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/hrrr_control_restart_dyn32_phy32 +Checking test 113 hrrr_control_restart_dyn32_phy32 results .... + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.180000.coupler.res .........OK @@ -3670,21 +3934,21 @@ Checking test 107 hrrr_control_restart_dyn32_phy32 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 = 105.886440 -0:The maximum resident set size (KB) = 536844 +0:The total amount of wall time = 104.238774 +0:The maximum resident set size (KB) = 537056 -Test 107 hrrr_control_restart_dyn32_phy32 PASS +Test 113 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn64_phy32 -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/rap_control_dyn64_phy32 -Checking test 108 rap_control_dyn64_phy32 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 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/rap_control_dyn64_phy32 +Checking test 114 rap_control_dyn64_phy32 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3724,116 +3988,116 @@ Checking test 108 rap_control_dyn64_phy32 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 = 269.427860 -0:The maximum resident set size (KB) = 730060 +0:The total amount of wall time = 267.677702 +0:The maximum resident set size (KB) = 729948 -Test 108 rap_control_dyn64_phy32 PASS +Test 114 rap_control_dyn64_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/rap_control_debug_dyn32_phy32 -Checking test 109 rap_control_debug_dyn32_phy32 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/rap_control_debug_dyn32_phy32 +Checking test 115 rap_control_debug_dyn32_phy32 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 290.840392 -0:The maximum resident set size (KB) = 876164 +0:The total amount of wall time = 289.845674 +0:The maximum resident set size (KB) = 876480 -Test 109 rap_control_debug_dyn32_phy32 PASS +Test 115 rap_control_debug_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/hrrr_control_debug_dyn32_phy32 -Checking test 110 hrrr_control_debug_dyn32_phy32 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/hrrr_control_debug_dyn32_phy32 +Checking test 116 hrrr_control_debug_dyn32_phy32 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 291.246296 -0:The maximum resident set size (KB) = 875372 +0:The total amount of wall time = 285.918136 +0:The maximum resident set size (KB) = 875456 -Test 110 hrrr_control_debug_dyn32_phy32 PASS +Test 116 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/rap_control_dyn64_phy32_debug -Checking test 111 rap_control_dyn64_phy32_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/rap_control_dyn64_phy32_debug +Checking test 117 rap_control_dyn64_phy32_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 295.374712 -0:The maximum resident set size (KB) = 894308 +0:The total amount of wall time = 295.475148 +0:The maximum resident set size (KB) = 894516 -Test 111 rap_control_dyn64_phy32_debug PASS +Test 117 rap_control_dyn64_phy32_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/hafs_regional_atm -Checking test 112 hafs_regional_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/hafs_regional_atm +Checking test 118 hafs_regional_atm results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK Comparing HURPRS.GrbF06 .........OK -0:The total amount of wall time = 261.570048 -0:The maximum resident set size (KB) = 738748 +0:The total amount of wall time = 258.210598 +0:The maximum resident set size (KB) = 740792 -Test 112 hafs_regional_atm PASS +Test 118 hafs_regional_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/hafs_regional_atm_thompson_gfdlsf -Checking test 113 hafs_regional_atm_thompson_gfdlsf results .... - Comparing atmf006.nc ............ALT CHECK......NOT OK - Comparing sfcf006.nc ............ALT CHECK......NOT OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/hafs_regional_atm_thompson_gfdlsf +Checking test 119 hafs_regional_atm_thompson_gfdlsf results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK -0:The total amount of wall time = 288.608479 -0:The maximum resident set size (KB) = 1094680 +0:The total amount of wall time = 308.134064 +0:The maximum resident set size (KB) = 1097380 -Test 113 hafs_regional_atm_thompson_gfdlsf FAIL Tries: 2 +Test 119 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_ocn -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/hafs_regional_atm_ocn -Checking test 114 hafs_regional_atm_ocn results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/hafs_regional_atm_ocn +Checking test 120 hafs_regional_atm_ocn results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK Comparing archv.2019_241_06.a .........OK Comparing archs.2019_241_06.a .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 452.623927 -0:The maximum resident set size (KB) = 739856 +0:The total amount of wall time = 451.944865 +0:The maximum resident set size (KB) = 739948 -Test 114 hafs_regional_atm_ocn PASS +Test 120 hafs_regional_atm_ocn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_wav -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/hafs_regional_atm_wav -Checking test 115 hafs_regional_atm_wav results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/hafs_regional_atm_wav +Checking test 121 hafs_regional_atm_wav results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 1081.166773 -0:The maximum resident set size (KB) = 768392 +0:The total amount of wall time = 1078.131206 +0:The maximum resident set size (KB) = 768052 -Test 115 hafs_regional_atm_wav PASS +Test 121 hafs_regional_atm_wav PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_ocn_wav -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/hafs_regional_atm_ocn_wav -Checking test 116 hafs_regional_atm_ocn_wav results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/hafs_regional_atm_ocn_wav +Checking test 122 hafs_regional_atm_ocn_wav results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK Comparing archv.2019_241_06.a .........OK Comparing archs.2019_241_06.a .........OK Comparing out_grd.ww3 .........OK @@ -3841,323 +4105,323 @@ Checking test 116 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 1137.986466 -0:The maximum resident set size (KB) = 792788 +0:The total amount of wall time = 1092.537847 +0:The maximum resident set size (KB) = 792188 -Test 116 hafs_regional_atm_ocn_wav PASS +Test 122 hafs_regional_atm_ocn_wav PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_1nest_atm -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/hafs_regional_1nest_atm -Checking test 117 hafs_regional_1nest_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/hafs_regional_1nest_atm +Checking test 123 hafs_regional_1nest_atm results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atm.nest02.f006.nc ............ALT CHECK......OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......OK -0:The total amount of wall time = 375.906636 -0:The maximum resident set size (KB) = 295056 +0:The total amount of wall time = 376.959826 +0:The maximum resident set size (KB) = 300020 -Test 117 hafs_regional_1nest_atm PASS +Test 123 hafs_regional_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/hafs_regional_telescopic_2nests_atm -Checking test 118 hafs_regional_telescopic_2nests_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest03.f006.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/hafs_regional_telescopic_2nests_atm +Checking test 124 hafs_regional_telescopic_2nests_atm results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atm.nest02.f006.nc ............ALT CHECK......OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......OK + Comparing atm.nest03.f006.nc ............ALT CHECK......OK + Comparing sfc.nest03.f006.nc ............ALT CHECK......OK -0:The total amount of wall time = 429.326113 -0:The maximum resident set size (KB) = 309904 +0:The total amount of wall time = 425.750684 +0:The maximum resident set size (KB) = 318172 -Test 118 hafs_regional_telescopic_2nests_atm PASS +Test 124 hafs_regional_telescopic_2nests_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_1nest_atm -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/hafs_global_1nest_atm -Checking test 119 hafs_global_1nest_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/hafs_global_1nest_atm +Checking test 125 hafs_global_1nest_atm results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atm.nest02.f006.nc ............ALT CHECK......OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......OK -0:The total amount of wall time = 171.975933 -0:The maximum resident set size (KB) = 206788 +0:The total amount of wall time = 169.382385 +0:The maximum resident set size (KB) = 213184 -Test 119 hafs_global_1nest_atm PASS +Test 125 hafs_global_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_multiple_4nests_atm -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/hafs_global_multiple_4nests_atm -Checking test 120 hafs_global_multiple_4nests_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest03.f006.nc .........OK - Comparing atm.nest04.f006.nc .........OK - Comparing sfc.nest04.f006.nc .........OK - Comparing atm.nest05.f006.nc .........OK - Comparing sfc.nest05.f006.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/hafs_global_multiple_4nests_atm +Checking test 126 hafs_global_multiple_4nests_atm results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atm.nest02.f006.nc ............ALT CHECK......OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......OK + Comparing atm.nest03.f006.nc ............ALT CHECK......OK + Comparing sfc.nest03.f006.nc ............ALT CHECK......OK + Comparing atm.nest04.f006.nc ............ALT CHECK......OK + Comparing sfc.nest04.f006.nc ............ALT CHECK......OK + Comparing atm.nest05.f006.nc ............ALT CHECK......OK + Comparing sfc.nest05.f006.nc ............ALT CHECK......OK Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK Comparing HURPRS.GrbF06.nest03 .........OK Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -0:The total amount of wall time = 492.000370 -0:The maximum resident set size (KB) = 291564 +0:The total amount of wall time = 478.524926 +0:The maximum resident set size (KB) = 301864 -Test 120 hafs_global_multiple_4nests_atm PASS +Test 126 hafs_global_multiple_4nests_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/hafs_regional_specified_moving_1nest_atm -Checking test 121 hafs_regional_specified_moving_1nest_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/hafs_regional_specified_moving_1nest_atm +Checking test 127 hafs_regional_specified_moving_1nest_atm results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atm.nest02.f006.nc ............ALT CHECK......OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......OK Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -0:The total amount of wall time = 239.969130 -0:The maximum resident set size (KB) = 307132 +0:The total amount of wall time = 238.700855 +0:The maximum resident set size (KB) = 316392 -Test 121 hafs_regional_specified_moving_1nest_atm PASS +Test 127 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/hafs_regional_storm_following_1nest_atm -Checking test 122 hafs_regional_storm_following_1nest_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/hafs_regional_storm_following_1nest_atm +Checking test 128 hafs_regional_storm_following_1nest_atm results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atm.nest02.f006.nc ............ALT CHECK......OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......OK -0:The total amount of wall time = 227.620474 -0:The maximum resident set size (KB) = 307300 +0:The total amount of wall time = 227.111147 +0:The maximum resident set size (KB) = 316136 -Test 122 hafs_regional_storm_following_1nest_atm PASS +Test 128 hafs_regional_storm_following_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/hafs_regional_storm_following_1nest_atm_ocn -Checking test 123 hafs_regional_storm_following_1nest_atm_ocn results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/hafs_regional_storm_following_1nest_atm_ocn +Checking test 129 hafs_regional_storm_following_1nest_atm_ocn results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atm.nest02.f006.nc ............ALT CHECK......OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......OK Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -0:The total amount of wall time = 276.737373 -0:The maximum resident set size (KB) = 354688 +0:The total amount of wall time = 275.918673 +0:The maximum resident set size (KB) = 374412 -Test 123 hafs_regional_storm_following_1nest_atm_ocn PASS +Test 129 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_storm_following_1nest_atm -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/hafs_global_storm_following_1nest_atm -Checking test 124 hafs_global_storm_following_1nest_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/hafs_global_storm_following_1nest_atm +Checking test 130 hafs_global_storm_following_1nest_atm results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atm.nest02.f006.nc ............ALT CHECK......OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......OK -0:The total amount of wall time = 66.524592 -0:The maximum resident set size (KB) = 223096 +0:The total amount of wall time = 66.318750 +0:The maximum resident set size (KB) = 232744 -Test 124 hafs_global_storm_following_1nest_atm PASS +Test 130 hafs_global_storm_following_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/hafs_regional_storm_following_1nest_atm_ocn_debug -Checking test 125 hafs_regional_storm_following_1nest_atm_ocn_debug results .... - Comparing atmf001.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atm.nest02.f001.nc .........OK - Comparing sfc.nest02.f001.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/hafs_regional_storm_following_1nest_atm_ocn_debug +Checking test 131 hafs_regional_storm_following_1nest_atm_ocn_debug results .... + Comparing atmf001.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atm.nest02.f001.nc ............ALT CHECK......OK + Comparing sfc.nest02.f001.nc ............ALT CHECK......OK -0:The total amount of wall time = 822.349991 -0:The maximum resident set size (KB) = 387440 +0:The total amount of wall time = 821.984999 +0:The maximum resident set size (KB) = 408568 -Test 125 hafs_regional_storm_following_1nest_atm_ocn_debug PASS +Test 131 hafs_regional_storm_following_1nest_atm_ocn_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/hafs_regional_storm_following_1nest_atm_ocn_wav -Checking test 126 hafs_regional_storm_following_1nest_atm_ocn_wav results .... - Comparing atmf006.nc ............ALT CHECK......NOT OK - Comparing sfcf006.nc ............ALT CHECK......NOT OK - Comparing atm.nest02.f006.nc ............ALT CHECK......NOT OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......NOT OK - Comparing archv.2020_238_18.a .........NOT OK - Comparing archs.2020_238_18.a .........NOT OK - Comparing out_grd.ww3 .........NOT OK - Comparing out_pnt.ww3 .........NOT OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 132 hafs_regional_storm_following_1nest_atm_ocn_wav results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atm.nest02.f006.nc ............ALT CHECK......OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......OK + Comparing archv.2020_238_18.a .........OK + Comparing archs.2020_238_18.a .........OK + Comparing out_grd.ww3 .........OK + Comparing out_pnt.ww3 .........OK -0:The total amount of wall time = 771.967761 -0:The maximum resident set size (KB) = 415992 +0:The total amount of wall time = 779.500026 +0:The maximum resident set size (KB) = 426024 -Test 126 hafs_regional_storm_following_1nest_atm_ocn_wav FAIL Tries: 2 +Test 132 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_docn -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/hafs_regional_docn -Checking test 127 hafs_regional_docn results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/hafs_regional_docn +Checking test 133 hafs_regional_docn results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 377.052162 -0:The maximum resident set size (KB) = 754328 +0:The total amount of wall time = 393.581053 +0:The maximum resident set size (KB) = 754384 -Test 127 hafs_regional_docn PASS +Test 133 hafs_regional_docn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_docn_oisst -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/hafs_regional_docn_oisst -Checking test 128 hafs_regional_docn_oisst results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/hafs_regional_docn_oisst +Checking test 134 hafs_regional_docn_oisst results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 378.590454 -0:The maximum resident set size (KB) = 736972 +0:The total amount of wall time = 391.282042 +0:The maximum resident set size (KB) = 736544 -Test 128 hafs_regional_docn_oisst PASS +Test 134 hafs_regional_docn_oisst PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_datm_cdeps -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/hafs_regional_datm_cdeps -Checking test 129 hafs_regional_datm_cdeps results .... +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/hafs_regional_datm_cdeps +Checking test 135 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -0:The total amount of wall time = 1270.646344 -0:The maximum resident set size (KB) = 887852 +0:The total amount of wall time = 1270.006623 +0:The maximum resident set size (KB) = 887900 -Test 129 hafs_regional_datm_cdeps PASS +Test 135 hafs_regional_datm_cdeps PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/datm_cdeps_control_cfsr -Checking test 130 datm_cdeps_control_cfsr results .... +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/datm_cdeps_control_cfsr +Checking test 136 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 168.212975 -0:The maximum resident set size (KB) = 727692 +0:The total amount of wall time = 167.718254 +0:The maximum resident set size (KB) = 716704 -Test 130 datm_cdeps_control_cfsr PASS +Test 136 datm_cdeps_control_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/datm_cdeps_restart_cfsr -Checking test 131 datm_cdeps_restart_cfsr results .... +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/datm_cdeps_restart_cfsr +Checking test 137 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 101.023626 -0:The maximum resident set size (KB) = 704836 +0:The total amount of wall time = 97.715525 +0:The maximum resident set size (KB) = 704864 -Test 131 datm_cdeps_restart_cfsr PASS +Test 137 datm_cdeps_restart_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_gefs -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/datm_cdeps_control_gefs -Checking test 132 datm_cdeps_control_gefs results .... +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/datm_cdeps_control_gefs +Checking test 138 datm_cdeps_control_gefs 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 = 161.348075 -0:The maximum resident set size (KB) = 607484 +0:The total amount of wall time = 160.988466 +0:The maximum resident set size (KB) = 607456 -Test 132 datm_cdeps_control_gefs PASS +Test 138 datm_cdeps_control_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_iau_gefs -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/datm_cdeps_iau_gefs -Checking test 133 datm_cdeps_iau_gefs results .... +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/datm_cdeps_iau_gefs +Checking test 139 datm_cdeps_iau_gefs 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 = 164.727425 +0:The total amount of wall time = 164.583458 0:The maximum resident set size (KB) = 607456 -Test 133 datm_cdeps_iau_gefs PASS +Test 139 datm_cdeps_iau_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_stochy_gefs -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/datm_cdeps_stochy_gefs -Checking test 134 datm_cdeps_stochy_gefs results .... +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/datm_cdeps_stochy_gefs +Checking test 140 datm_cdeps_stochy_gefs 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 = 166.662248 -0:The maximum resident set size (KB) = 607456 +0:The total amount of wall time = 164.956646 +0:The maximum resident set size (KB) = 607508 -Test 134 datm_cdeps_stochy_gefs PASS +Test 140 datm_cdeps_stochy_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_ciceC_cfsr -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/datm_cdeps_ciceC_cfsr -Checking test 135 datm_cdeps_ciceC_cfsr results .... +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/datm_cdeps_ciceC_cfsr +Checking test 141 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 169.033308 -0:The maximum resident set size (KB) = 716692 +0:The total amount of wall time = 168.199340 +0:The maximum resident set size (KB) = 716740 -Test 135 datm_cdeps_ciceC_cfsr PASS +Test 141 datm_cdeps_ciceC_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_bulk_cfsr -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/datm_cdeps_bulk_cfsr -Checking test 136 datm_cdeps_bulk_cfsr results .... +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/datm_cdeps_bulk_cfsr +Checking test 142 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.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.733790 -0:The maximum resident set size (KB) = 716716 +0:The total amount of wall time = 168.931215 +0:The maximum resident set size (KB) = 716684 -Test 136 datm_cdeps_bulk_cfsr PASS +Test 142 datm_cdeps_bulk_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_bulk_gefs -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/datm_cdeps_bulk_gefs -Checking test 137 datm_cdeps_bulk_gefs results .... +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/datm_cdeps_bulk_gefs +Checking test 143 datm_cdeps_bulk_gefs 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.653378 -0:The maximum resident set size (KB) = 607452 +0:The total amount of wall time = 162.229566 +0:The maximum resident set size (KB) = 607472 -Test 137 datm_cdeps_bulk_gefs PASS +Test 143 datm_cdeps_bulk_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_mx025_cfsr -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/datm_cdeps_mx025_cfsr -Checking test 138 datm_cdeps_mx025_cfsr results .... +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/datm_cdeps_mx025_cfsr +Checking test 144 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4165,15 +4429,15 @@ Checking test 138 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 413.543369 -0:The maximum resident set size (KB) = 514324 +0:The total amount of wall time = 412.229973 +0:The maximum resident set size (KB) = 514296 -Test 138 datm_cdeps_mx025_cfsr PASS +Test 144 datm_cdeps_mx025_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_mx025_gefs -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/datm_cdeps_mx025_gefs -Checking test 139 datm_cdeps_mx025_gefs results .... +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/datm_cdeps_mx025_gefs +Checking test 145 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4181,78 +4445,78 @@ Checking test 139 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 417.233788 -0:The maximum resident set size (KB) = 494800 +0:The total amount of wall time = 413.596198 +0:The maximum resident set size (KB) = 494760 -Test 139 datm_cdeps_mx025_gefs PASS +Test 145 datm_cdeps_mx025_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/datm_cdeps_multiple_files_cfsr -Checking test 140 datm_cdeps_multiple_files_cfsr results .... +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/datm_cdeps_multiple_files_cfsr +Checking test 146 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 168.226254 -0:The maximum resident set size (KB) = 728712 +0:The total amount of wall time = 168.176713 +0:The maximum resident set size (KB) = 717260 -Test 140 datm_cdeps_multiple_files_cfsr PASS +Test 146 datm_cdeps_multiple_files_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/datm_cdeps_3072x1536_cfsr -Checking test 141 datm_cdeps_3072x1536_cfsr results .... +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/datm_cdeps_3072x1536_cfsr +Checking test 147 datm_cdeps_3072x1536_cfsr 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 = 266.822199 -0:The maximum resident set size (KB) = 1940296 +0:The total amount of wall time = 240.266525 +0:The maximum resident set size (KB) = 1941112 -Test 141 datm_cdeps_3072x1536_cfsr PASS +Test 147 datm_cdeps_3072x1536_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_gfs -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/datm_cdeps_gfs -Checking test 142 datm_cdeps_gfs results .... +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/datm_cdeps_gfs +Checking test 148 datm_cdeps_gfs 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 = 254.308672 -0:The maximum resident set size (KB) = 1941464 +0:The total amount of wall time = 268.040014 +0:The maximum resident set size (KB) = 1941080 -Test 142 datm_cdeps_gfs PASS +Test 148 datm_cdeps_gfs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_debug_cfsr -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/datm_cdeps_debug_cfsr -Checking test 143 datm_cdeps_debug_cfsr results .... +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/datm_cdeps_debug_cfsr +Checking test 149 datm_cdeps_debug_cfsr results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -0:The total amount of wall time = 460.337107 -0:The maximum resident set size (KB) = 706660 +0:The total amount of wall time = 459.318441 +0:The maximum resident set size (KB) = 706668 -Test 143 datm_cdeps_debug_cfsr PASS +Test 149 datm_cdeps_debug_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr_faster -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/datm_cdeps_control_cfsr_faster -Checking test 144 datm_cdeps_control_cfsr_faster results .... +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/datm_cdeps_control_cfsr_faster +Checking test 150 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 167.923025 -0:The maximum resident set size (KB) = 727948 +0:The total amount of wall time = 169.821936 +0:The maximum resident set size (KB) = 716796 -Test 144 datm_cdeps_control_cfsr_faster PASS +Test 150 datm_cdeps_control_cfsr_faster PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/datm_cdeps_lnd_gswp3 -Checking test 145 datm_cdeps_lnd_gswp3 results .... +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/datm_cdeps_lnd_gswp3 +Checking test 151 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4260,15 +4524,15 @@ Checking test 145 datm_cdeps_lnd_gswp3 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 = 10.281123 -0:The maximum resident set size (KB) = 208248 +0:The total amount of wall time = 11.065179 +0:The maximum resident set size (KB) = 224564 -Test 145 datm_cdeps_lnd_gswp3 PASS +Test 151 datm_cdeps_lnd_gswp3 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/datm_cdeps_lnd_gswp3_rst -Checking test 146 datm_cdeps_lnd_gswp3_rst results .... +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/datm_cdeps_lnd_gswp3_rst +Checking test 152 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4276,15 +4540,15 @@ Checking test 146 datm_cdeps_lnd_gswp3_rst 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 = 15.522035 +0:The total amount of wall time = 15.479710 0:The maximum resident set size (KB) = 208236 -Test 146 datm_cdeps_lnd_gswp3_rst PASS +Test 152 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_atmlnd_sbs -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/control_p8_atmlnd_sbs -Checking test 147 control_p8_atmlnd_sbs results .... +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_p8_atmlnd_sbs +Checking test 153 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -4368,19 +4632,19 @@ Checking test 147 control_p8_atmlnd_sbs 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 = 233.246748 -0:The maximum resident set size (KB) = 1463388 +0:The total amount of wall time = 237.796949 +0:The maximum resident set size (KB) = 1463368 -Test 147 control_p8_atmlnd_sbs PASS +Test 153 control_p8_atmlnd_sbs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_atmwav -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/control_atmwav -Checking test 148 control_atmwav results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_atmwav +Checking test 154 control_atmwav results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -4419,19 +4683,19 @@ Checking test 148 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -0:The total amount of wall time = 99.920775 -0:The maximum resident set size (KB) = 474476 +0:The total amount of wall time = 101.466206 +0:The maximum resident set size (KB) = 474792 -Test 148 control_atmwav PASS +Test 154 control_atmwav PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8 -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/atmaero_control_p8 -Checking test 149 atmaero_control_p8 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/atmaero_control_p8 +Checking test 155 atmaero_control_p8 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -4470,19 +4734,19 @@ Checking test 149 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 249.594339 -0:The maximum resident set size (KB) = 2703576 +0:The total amount of wall time = 250.987065 +0:The maximum resident set size (KB) = 2703776 -Test 149 atmaero_control_p8 PASS +Test 155 atmaero_control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8_rad -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/atmaero_control_p8_rad -Checking test 150 atmaero_control_p8_rad results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/atmaero_control_p8_rad +Checking test 156 atmaero_control_p8_rad results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -4521,19 +4785,19 @@ Checking test 150 atmaero_control_p8_rad results .... Comparing 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.411869 -0:The maximum resident set size (KB) = 2758284 +0:The total amount of wall time = 302.279714 +0:The maximum resident set size (KB) = 2758280 -Test 150 atmaero_control_p8_rad PASS +Test 156 atmaero_control_p8_rad PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8_rad_micro -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/atmaero_control_p8_rad_micro -Checking test 151 atmaero_control_p8_rad_micro results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/atmaero_control_p8_rad_micro +Checking test 157 atmaero_control_p8_rad_micro results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -4572,21 +4836,21 @@ Checking test 151 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 311.454294 -0:The maximum resident set size (KB) = 2764276 +0:The total amount of wall time = 309.181447 +0:The maximum resident set size (KB) = 2764360 -Test 151 atmaero_control_p8_rad_micro PASS +Test 157 atmaero_control_p8_rad_micro PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/regional_atmaq -Checking test 152 regional_atmaq results .... - Comparing sfcf000.nc .........OK - Comparing sfcf003.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf003.nc .........OK - Comparing atmf006.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/regional_atmaq +Checking test 158 regional_atmaq results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf003.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf003.nc ............ALT CHECK......OK + Comparing atmf006.nc ............ALT CHECK......OK Comparing RESTART/20190801.180000.coupler.res .........OK Comparing RESTART/20190801.180000.fv_core.res.nc .........OK Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK @@ -4595,21 +4859,21 @@ Checking test 152 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -0:The total amount of wall time = 746.481283 -0:The maximum resident set size (KB) = 999036 +0:The total amount of wall time = 747.731484 +0:The maximum resident set size (KB) = 998956 -Test 152 regional_atmaq PASS +Test 158 regional_atmaq PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq_faster -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_59756/regional_atmaq_faster -Checking test 153 regional_atmaq_faster results .... - Comparing sfcf000.nc .........OK - Comparing sfcf003.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf003.nc .........OK - Comparing atmf006.nc .........OK +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/regional_atmaq_faster +Checking test 159 regional_atmaq_faster results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf003.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf003.nc ............ALT CHECK......OK + Comparing atmf006.nc ............ALT CHECK......OK Comparing RESTART/20190801.180000.coupler.res .........OK Comparing RESTART/20190801.180000.fv_core.res.nc .........OK Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK @@ -4618,56 +4882,12 @@ Checking test 153 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -0:The total amount of wall time = 693.262882 -0:The maximum resident set size (KB) = 998732 - -Test 153 regional_atmaq_faster PASS - -FAILED TESTS: -Test hafs_regional_atm_thompson_gfdlsf 113 failed in check_result failed -Test hafs_regional_atm_thompson_gfdlsf 113 failed in run_test failed -Test hafs_regional_storm_following_1nest_atm_ocn_wav 126 failed in check_result failed -Test hafs_regional_storm_following_1nest_atm_ocn_wav 126 failed in run_test failed - -REGRESSION TEST FAILED -Sat Mar 25 11:23:18 MDT 2023 -Elapsed time: 01h:20m:29s. Have a nice day! -Sun Mar 26 18:35:44 MDT 2023 -Start Regression test - -Compile 001 elapsed time 1105 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 002 elapsed time 1567 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_73657/hafs_regional_atm_thompson_gfdlsf -Checking test 001 hafs_regional_atm_thompson_gfdlsf results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - -0:The total amount of wall time = 291.316796 -0:The maximum resident set size (KB) = 1094492 - -Test 001 hafs_regional_atm_thompson_gfdlsf PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /glade/scratch/jongkim/rt-1658-intel/jongkim/FV3_RT/rt_73657/hafs_regional_storm_following_1nest_atm_ocn_wav -Checking test 002 hafs_regional_storm_following_1nest_atm_ocn_wav results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing archv.2020_238_18.a .........OK - Comparing archs.2020_238_18.a .........OK - Comparing out_grd.ww3 .........OK - Comparing out_pnt.ww3 .........OK - -0:The total amount of wall time = 762.241838 -0:The maximum resident set size (KB) = 416064 +0:The total amount of wall time = 696.019620 +0:The maximum resident set size (KB) = 998852 -Test 002 hafs_regional_storm_following_1nest_atm_ocn_wav PASS +Test 159 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Sun Mar 26 19:28:54 MDT 2023 -Elapsed time: 00h:53m:11s. Have a nice day! +Mon Mar 27 16:24:07 MDT 2023 +Elapsed time: 01h:15m:38s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index d374c1ce014..8f624d37291 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,42 +1,42 @@ -Fri Mar 24 22:25:39 EDT 2023 +Mon Mar 27 17:33:00 EDT 2023 Start Regression test -Compile 001 elapsed time 820 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 826 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 759 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 281 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 270 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 708 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 733 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 1020 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 746 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 719 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 643 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 599 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 807 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 243 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 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 016 elapsed time 648 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 634 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 190 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 204 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 670 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 021 elapsed time 223 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 855 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 689 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 024 elapsed time 266 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 171 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 303 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 97 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 677 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 660 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 724 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 658 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 230 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 813 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 855 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 856 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 846 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 316 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 294 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 777 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 788 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 1041 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 770 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 738 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 011 elapsed time 675 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 615 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 950 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 314 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 243 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 658 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 648 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 210 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 228 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 720 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 021 elapsed time 242 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 937 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 753 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 024 elapsed time 307 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 208 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 302 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 119 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 712 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 786 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 703 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 681 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 276 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 858 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8_mixedmode -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/cpld_control_p8_mixedmode +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -101,14 +101,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 345.876011 - 0: The maximum resident set size (KB) = 1535004 + 0: The total amount of wall time = 348.472217 + 0: The maximum resident set size (KB) = 1535356 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_gfsv17 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/cpld_control_gfsv17 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -172,14 +172,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 258.051466 - 0: The maximum resident set size (KB) = 1444588 + 0: The total amount of wall time = 259.811684 + 0: The maximum resident set size (KB) = 1444264 Test 002 cpld_control_gfsv17 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/cpld_control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -244,14 +244,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 391.631961 - 0: The maximum resident set size (KB) = 1568564 + 0: The total amount of wall time = 392.887570 + 0: The maximum resident set size (KB) = 1569040 Test 003 cpld_control_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/cpld_restart_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -304,15 +304,27 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 239.073289 - 0: The maximum resident set size (KB) = 1018908 + 0: The total amount of wall time = 242.879637 + 0: The maximum resident set size (KB) = 1018616 Test 004 cpld_restart_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/cpld_2threads_p8 -Checking test 005 cpld_2threads_p8 results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/cpld_control_qr_p8 +Checking test 005 cpld_control_qr_p8 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 @@ -328,51 +340,111 @@ Checking test 005 cpld_2threads_p8 results .... Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 395.624328 + 0: The maximum resident set size (KB) = 1579216 + +Test 005 cpld_control_qr_p8 PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/cpld_restart_qr_p8 +Checking test 006 cpld_restart_qr_p8 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 411.797254 - 0: The maximum resident set size (KB) = 1758356 + 0: The total amount of wall time = 245.807869 + 0: The maximum resident set size (KB) = 1032428 -Test 005 cpld_2threads_p8 PASS +Test 006 cpld_restart_qr_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/cpld_decomp_p8 -Checking test 006 cpld_decomp_p8 results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/cpld_2threads_p8 +Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -424,15 +496,15 @@ Checking test 006 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 393.031347 - 0: The maximum resident set size (KB) = 1561364 + 0: The total amount of wall time = 414.247032 + 0: The maximum resident set size (KB) = 1760996 -Test 006 cpld_decomp_p8 PASS +Test 007 cpld_2threads_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/cpld_mpi_p8 -Checking test 007 cpld_mpi_p8 results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/cpld_decomp_p8 +Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -484,27 +556,15 @@ Checking test 007 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 341.608813 - 0: The maximum resident set size (KB) = 1526088 + 0: The total amount of wall time = 395.897239 + 0: The maximum resident set size (KB) = 1561036 -Test 007 cpld_mpi_p8 PASS +Test 008 cpld_decomp_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_ciceC_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/cpld_control_ciceC_p8 -Checking test 008 cpld_control_ciceC_p8 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 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/cpld_mpi_p8 +Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -556,137 +616,17 @@ Checking test 008 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 403.103621 - 0: The maximum resident set size (KB) = 1568552 - -Test 008 cpld_control_ciceC_p8 PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c192_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/cpld_control_c192_p8 -Checking test 009 cpld_control_c192_p8 results .... - Comparing sfcf030.tile1.nc .........OK - Comparing sfcf030.tile2.nc .........OK - Comparing sfcf030.tile3.nc .........OK - Comparing sfcf030.tile4.nc .........OK - Comparing sfcf030.tile5.nc .........OK - Comparing sfcf030.tile6.nc .........OK - Comparing atmf030.tile1.nc .........OK - Comparing atmf030.tile2.nc .........OK - Comparing atmf030.tile3.nc .........OK - Comparing atmf030.tile4.nc .........OK - Comparing atmf030.tile5.nc .........OK - Comparing atmf030.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_1200z.nc4 .........OK - Comparing RESTART/20210323.120000.coupler.res .........OK - Comparing RESTART/20210323.120000.fv_core.res.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - Comparing 20210323.120000.out_grd.ww3 .........OK - Comparing 20210323.120000.out_pnt.ww3 .........OK - - 0: The total amount of wall time = 770.649630 - 0: The maximum resident set size (KB) = 1759628 - -Test 009 cpld_control_c192_p8 PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c192_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/cpld_restart_c192_p8 -Checking test 010 cpld_restart_c192_p8 results .... - Comparing sfcf030.tile1.nc .........OK - Comparing sfcf030.tile2.nc .........OK - Comparing sfcf030.tile3.nc .........OK - Comparing sfcf030.tile4.nc .........OK - Comparing sfcf030.tile5.nc .........OK - Comparing sfcf030.tile6.nc .........OK - Comparing atmf030.tile1.nc .........OK - Comparing atmf030.tile2.nc .........OK - Comparing atmf030.tile3.nc .........OK - Comparing atmf030.tile4.nc .........OK - Comparing atmf030.tile5.nc .........OK - Comparing atmf030.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_1200z.nc4 .........OK - Comparing RESTART/20210323.120000.coupler.res .........OK - Comparing RESTART/20210323.120000.fv_core.res.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - Comparing 20210323.120000.out_grd.ww3 .........OK - Comparing 20210323.120000.out_pnt.ww3 .........OK + 0: The total amount of wall time = 336.135950 + 0: The maximum resident set size (KB) = 1526924 - 0: The total amount of wall time = 527.960936 - 0: The maximum resident set size (KB) = 1923592 - -Test 010 cpld_restart_c192_p8 PASS +Test 009 cpld_mpi_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_bmark_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/cpld_bmark_p8 -Checking test 011 cpld_bmark_p8 results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/cpld_bmark_p8 +Checking test 010 cpld_bmark_p8 results .... + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atmf006.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF06 .........OK Comparing GFSPRS.GrbF06 .........OK Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK @@ -731,17 +671,17 @@ Checking test 011 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 837.247592 - 0: The maximum resident set size (KB) = 2505096 + 0: The total amount of wall time = 882.654773 + 0: The maximum resident set size (KB) = 2508364 -Test 011 cpld_bmark_p8 PASS +Test 010 cpld_bmark_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_bmark_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/cpld_restart_bmark_p8 -Checking test 012 cpld_restart_bmark_p8 results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/cpld_restart_bmark_p8 +Checking test 011 cpld_restart_bmark_p8 results .... + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atmf006.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF06 .........OK Comparing GFSPRS.GrbF06 .........OK Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK @@ -786,15 +726,15 @@ Checking test 012 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 604.473663 - 0: The maximum resident set size (KB) = 2330224 + 0: The total amount of wall time = 512.297505 + 0: The maximum resident set size (KB) = 2334768 -Test 012 cpld_restart_bmark_p8 PASS +Test 011 cpld_restart_bmark_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_noaero_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/cpld_control_noaero_p8 -Checking test 013 cpld_control_noaero_p8 results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/cpld_control_noaero_p8 +Checking test 012 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -857,15 +797,15 @@ Checking test 013 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 297.333817 - 0: The maximum resident set size (KB) = 1441884 + 0: The total amount of wall time = 295.115707 + 0: The maximum resident set size (KB) = 1442444 -Test 013 cpld_control_noaero_p8 PASS +Test 012 cpld_control_noaero_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c96_noaero_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/cpld_control_nowave_noaero_p8 -Checking test 014 cpld_control_nowave_noaero_p8 results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/cpld_control_nowave_noaero_p8 +Checking test 013 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -926,15 +866,15 @@ Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 305.190526 - 0: The maximum resident set size (KB) = 1474860 + 0: The total amount of wall time = 316.037236 + 0: The maximum resident set size (KB) = 1474584 -Test 014 cpld_control_nowave_noaero_p8 PASS +Test 013 cpld_control_nowave_noaero_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_debug_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/cpld_debug_p8 -Checking test 015 cpld_debug_p8 results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/cpld_debug_p8 +Checking test 014 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -986,15 +926,15 @@ Checking test 015 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 586.418268 - 0: The maximum resident set size (KB) = 1595236 + 0: The total amount of wall time = 588.963782 + 0: The maximum resident set size (KB) = 1595460 -Test 015 cpld_debug_p8 PASS +Test 014 cpld_debug_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_debug_noaero_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/cpld_debug_noaero_p8 -Checking test 016 cpld_debug_noaero_p8 results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/cpld_debug_noaero_p8 +Checking test 015 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -1045,15 +985,15 @@ Checking test 016 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 402.409190 - 0: The maximum resident set size (KB) = 1442200 + 0: The total amount of wall time = 398.084826 + 0: The maximum resident set size (KB) = 1442296 -Test 016 cpld_debug_noaero_p8 PASS +Test 015 cpld_debug_noaero_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_noaero_p8_agrid -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/cpld_control_noaero_p8_agrid -Checking test 017 cpld_control_noaero_p8_agrid results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/cpld_control_noaero_p8_agrid +Checking test 016 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1114,15 +1054,15 @@ Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 319.490705 - 0: The maximum resident set size (KB) = 1478044 + 0: The total amount of wall time = 300.697324 + 0: The maximum resident set size (KB) = 1477616 -Test 017 cpld_control_noaero_p8_agrid PASS +Test 016 cpld_control_noaero_p8_agrid PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c48 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/cpld_control_c48 -Checking test 018 cpld_control_c48 results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/cpld_control_c48 +Checking test 017 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -1171,15 +1111,15 @@ Checking test 018 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 599.000323 - 0: The maximum resident set size (KB) = 2572272 + 0: The total amount of wall time = 600.270354 + 0: The maximum resident set size (KB) = 2571908 -Test 018 cpld_control_c48 PASS +Test 017 cpld_control_c48 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_warmstart_c48 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/cpld_warmstart_c48 -Checking test 019 cpld_warmstart_c48 results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/cpld_warmstart_c48 +Checking test 018 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK Comparing sfcf006.tile3.nc .........OK @@ -1228,15 +1168,15 @@ Checking test 019 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 159.424770 - 0: The maximum resident set size (KB) = 2574728 + 0: The total amount of wall time = 159.555661 + 0: The maximum resident set size (KB) = 2587668 -Test 019 cpld_warmstart_c48 PASS +Test 018 cpld_warmstart_c48 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_warmstart_c48 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/cpld_restart_c48 -Checking test 020 cpld_restart_c48 results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/cpld_restart_c48 +Checking test 019 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK Comparing sfcf006.tile3.nc .........OK @@ -1285,15 +1225,15 @@ Checking test 020 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 84.229879 - 0: The maximum resident set size (KB) = 1998228 + 0: The total amount of wall time = 92.437752 + 0: The maximum resident set size (KB) = 1988416 -Test 020 cpld_restart_c48 PASS +Test 019 cpld_restart_c48 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8_faster -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/cpld_control_p8_faster -Checking test 021 cpld_control_p8_faster results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/cpld_control_p8_faster +Checking test 020 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1357,15 +1297,15 @@ Checking test 021 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 380.645176 - 0: The maximum resident set size (KB) = 1568284 + 0: The total amount of wall time = 394.803076 + 0: The maximum resident set size (KB) = 1568320 -Test 021 cpld_control_p8_faster PASS +Test 020 cpld_control_p8_faster PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/control_CubedSphereGrid -Checking test 022 control_CubedSphereGrid results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_CubedSphereGrid +Checking test 021 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1391,69 +1331,69 @@ Checking test 022 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 142.991201 - 0: The maximum resident set size (KB) = 437396 + 0: The total amount of wall time = 137.323627 + 0: The maximum resident set size (KB) = 437380 -Test 022 control_CubedSphereGrid PASS +Test 021 control_CubedSphereGrid PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/control_CubedSphereGrid_parallel -Checking test 023 control_CubedSphereGrid_parallel results .... - Comparing sfcf000.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_CubedSphereGrid_parallel +Checking test 022 control_CubedSphereGrid_parallel results .... + Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc .........OK + Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK - 0: The total amount of wall time = 147.282237 - 0: The maximum resident set size (KB) = 437512 + 0: The total amount of wall time = 156.812210 + 0: The maximum resident set size (KB) = 437328 -Test 023 control_CubedSphereGrid_parallel PASS +Test 022 control_CubedSphereGrid_parallel PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_latlon -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/control_latlon -Checking test 024 control_latlon results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_latlon +Checking test 023 control_latlon results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 153.566475 - 0: The maximum resident set size (KB) = 437152 + 0: The total amount of wall time = 147.273773 + 0: The maximum resident set size (KB) = 437276 -Test 024 control_latlon PASS +Test 023 control_latlon PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/control_wrtGauss_netcdf_parallel -Checking test 025 control_wrtGauss_netcdf_parallel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_wrtGauss_netcdf_parallel +Checking test 024 control_wrtGauss_netcdf_parallel results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 168.095389 - 0: The maximum resident set size (KB) = 437288 + 0: The total amount of wall time = 161.342078 + 0: The maximum resident set size (KB) = 437416 -Test 025 control_wrtGauss_netcdf_parallel PASS +Test 024 control_wrtGauss_netcdf_parallel PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c48 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/control_c48 -Checking test 026 control_c48 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_c48 +Checking test 025 control_c48 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -1487,55 +1427,55 @@ Checking test 026 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 418.293783 -0: The maximum resident set size (KB) = 633808 +0: The total amount of wall time = 418.414262 +0: The maximum resident set size (KB) = 632508 -Test 026 control_c48 PASS +Test 025 control_c48 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c192 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/control_c192 -Checking test 027 control_c192 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_c192 +Checking test 026 control_c192 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 584.357373 - 0: The maximum resident set size (KB) = 542068 + 0: The total amount of wall time = 575.325970 + 0: The maximum resident set size (KB) = 541464 -Test 027 control_c192 PASS +Test 026 control_c192 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c384 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/control_c384 -Checking test 028 control_c384 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_c384 +Checking test 027 control_c384 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1105.254999 - 0: The maximum resident set size (KB) = 820432 + 0: The total amount of wall time = 1101.240950 + 0: The maximum resident set size (KB) = 820308 -Test 028 control_c384 PASS +Test 027 control_c384 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c384gdas -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/control_c384gdas -Checking test 029 control_c384gdas results .... - Comparing sfcf000.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf006.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_c384gdas +Checking test 028 control_c384gdas results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf006.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF06 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -1573,71 +1513,71 @@ Checking test 029 control_c384gdas 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 = 935.009396 - 0: The maximum resident set size (KB) = 953072 + 0: The total amount of wall time = 930.927885 + 0: The maximum resident set size (KB) = 952956 -Test 029 control_c384gdas PASS +Test 028 control_c384gdas PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/control_stochy -Checking test 030 control_stochy results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_stochy +Checking test 029 control_stochy results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 97.493188 - 0: The maximum resident set size (KB) = 440800 + 0: The total amount of wall time = 118.039749 + 0: The maximum resident set size (KB) = 440960 -Test 030 control_stochy PASS +Test 029 control_stochy PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/control_stochy_restart -Checking test 031 control_stochy_restart results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_stochy_restart +Checking test 030 control_stochy_restart results .... + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 51.731526 - 0: The maximum resident set size (KB) = 194752 + 0: The total amount of wall time = 55.054516 + 0: The maximum resident set size (KB) = 194936 -Test 031 control_stochy_restart PASS +Test 030 control_stochy_restart PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_lndp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/control_lndp -Checking test 032 control_lndp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_lndp +Checking test 031 control_lndp results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 91.199950 - 0: The maximum resident set size (KB) = 440452 + 0: The total amount of wall time = 86.139843 + 0: The maximum resident set size (KB) = 440704 -Test 032 control_lndp PASS +Test 031 control_lndp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_iovr4 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/control_iovr4 -Checking test 033 control_iovr4 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_iovr4 +Checking test 032 control_iovr4 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1645,21 +1585,21 @@ Checking test 033 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 146.091350 - 0: The maximum resident set size (KB) = 437304 + 0: The total amount of wall time = 145.258798 + 0: The maximum resident set size (KB) = 437444 -Test 033 control_iovr4 PASS +Test 032 control_iovr4 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_iovr5 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/control_iovr5 -Checking test 034 control_iovr5 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_iovr5 +Checking test 033 control_iovr5 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1667,21 +1607,21 @@ Checking test 034 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 146.788685 - 0: The maximum resident set size (KB) = 437172 + 0: The total amount of wall time = 143.387697 + 0: The maximum resident set size (KB) = 437472 -Test 034 control_iovr5 PASS +Test 033 control_iovr5 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/control_p8 -Checking test 035 control_p8 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_p8 +Checking test 034 control_p8 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1721,43 +1661,17 @@ Checking test 035 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 195.231566 - 0: The maximum resident set size (KB) = 1379260 + 0: The total amount of wall time = 176.538413 + 0: The maximum resident set size (KB) = 1379352 -Test 035 control_p8 PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_lndp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/control_p8_lndp -Checking test 036 control_p8_lndp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing sfcf048.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing atmf048.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSFLX.GrbF48 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing GFSPRS.GrbF48 .........OK - - 0: The total amount of wall time = 345.483752 - 0: The maximum resident set size (KB) = 1379832 - -Test 036 control_p8_lndp PASS +Test 034 control_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/control_restart_p8 -Checking test 037 control_restart_p8 results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_restart_p8 +Checking test 035 control_restart_p8 results .... + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -1793,19 +1707,119 @@ Checking test 037 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 108.164569 - 0: The maximum resident set size (KB) = 556436 + 0: The total amount of wall time = 107.398495 + 0: The maximum resident set size (KB) = 556344 -Test 037 control_restart_p8 PASS +Test 035 control_restart_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/control_decomp_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_qr_p8 +Checking test 036 control_qr_p8 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + + 0: The total amount of wall time = 178.193654 + 0: The maximum resident set size (KB) = 1384364 + +Test 036 control_qr_p8 PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_restart_qr_p8 +Checking test 037 control_restart_qr_p8 results .... + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + + 0: The total amount of wall time = 110.346444 + 0: The maximum resident set size (KB) = 581180 + +Test 037 control_restart_qr_p8 PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_decomp_p8 Checking test 038 control_decomp_p8 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -1843,19 +1857,19 @@ Checking test 038 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 197.097755 - 0: The maximum resident set size (KB) = 1374236 + 0: The total amount of wall time = 189.907797 + 0: The maximum resident set size (KB) = 1374348 Test 038 control_decomp_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/control_2threads_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_2threads_p8 Checking test 039 control_2threads_p8 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -1893,21 +1907,47 @@ Checking test 039 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 186.590455 - 0: The maximum resident set size (KB) = 1459916 + 0: The total amount of wall time = 165.589690 + 0: The maximum resident set size (KB) = 1462860 Test 039 control_2threads_p8 PASS +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_lndp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_p8_lndp +Checking test 040 control_p8_lndp results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing sfcf048.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK + Comparing atmf048.nc ............ALT CHECK......OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSFLX.GrbF48 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing GFSPRS.GrbF48 .........OK + + 0: The total amount of wall time = 331.724391 + 0: The maximum resident set size (KB) = 1379832 + +Test 040 control_p8_lndp PASS + + baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_rrtmgp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/control_p8_rrtmgp -Checking test 040 control_p8_rrtmgp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_p8_rrtmgp +Checking test 041 control_p8_rrtmgp results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1947,21 +1987,21 @@ Checking test 040 control_p8_rrtmgp results .... Comparing 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.368397 - 0: The maximum resident set size (KB) = 1437144 + 0: The total amount of wall time = 250.869882 + 0: The maximum resident set size (KB) = 1437200 -Test 040 control_p8_rrtmgp PASS +Test 041 control_p8_rrtmgp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_mynn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/control_p8_mynn -Checking test 041 control_p8_mynn results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_p8_mynn +Checking test 042 control_p8_mynn results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2001,21 +2041,21 @@ Checking test 041 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 196.899302 + 0: The total amount of wall time = 179.754862 0: The maximum resident set size (KB) = 1383608 -Test 041 control_p8_mynn PASS +Test 042 control_p8_mynn PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/merra2_thompson -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/merra2_thompson -Checking test 042 merra2_thompson results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/merra2_thompson +Checking test 043 merra2_thompson results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2055,154 +2095,186 @@ Checking test 042 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 219.904238 - 0: The maximum resident set size (KB) = 1385208 + 0: The total amount of wall time = 204.612844 + 0: The maximum resident set size (KB) = 1385224 + +Test 043 merra2_thompson PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/regional_control +Checking test 044 regional_control results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf006.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK + + 0: The total amount of wall time = 336.978137 + 0: The maximum resident set size (KB) = 578284 + +Test 044 regional_control PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/regional_restart +Checking test 045 regional_restart results .... + Comparing dynf006.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF06 .........OK + + 0: The total amount of wall time = 184.371842 + 0: The maximum resident set size (KB) = 577820 -Test 042 merra2_thompson PASS +Test 045 regional_restart PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/regional_control -Checking test 043 regional_control results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/regional_control_qr +Checking test 046 regional_control_qr results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf006.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 330.950566 - 0: The maximum resident set size (KB) = 578136 + 0: The total amount of wall time = 330.781561 + 0: The maximum resident set size (KB) = 578212 -Test 043 regional_control PASS +Test 046 regional_control_qr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/regional_restart -Checking test 044 regional_restart results .... - Comparing dynf006.nc .........OK - Comparing phyf006.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/regional_restart_qr +Checking test 047 regional_restart_qr results .... + Comparing dynf006.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 168.360278 - 0: The maximum resident set size (KB) = 577592 + 0: The total amount of wall time = 179.975446 + 0: The maximum resident set size (KB) = 577716 -Test 044 regional_restart PASS +Test 047 regional_restart_qr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/regional_decomp -Checking test 045 regional_decomp results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/regional_decomp +Checking test 048 regional_decomp results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf006.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 349.384917 - 0: The maximum resident set size (KB) = 581004 + 0: The total amount of wall time = 349.558453 + 0: The maximum resident set size (KB) = 581056 -Test 045 regional_decomp PASS +Test 048 regional_decomp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/regional_2threads -Checking test 046 regional_2threads results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/regional_2threads +Checking test 049 regional_2threads results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf006.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 205.040508 - 0: The maximum resident set size (KB) = 585616 + 0: The total amount of wall time = 205.160483 + 0: The maximum resident set size (KB) = 585632 -Test 046 regional_2threads PASS +Test 049 regional_2threads PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_noquilt -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/regional_noquilt -Checking test 047 regional_noquilt results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/regional_noquilt +Checking test 050 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 354.707033 - 0: The maximum resident set size (KB) = 573860 + 0: The total amount of wall time = 354.519656 + 0: The maximum resident set size (KB) = 573676 -Test 047 regional_noquilt PASS +Test 050 regional_noquilt PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_netcdf_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/regional_netcdf_parallel -Checking test 048 regional_netcdf_parallel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/regional_netcdf_parallel +Checking test 051 regional_netcdf_parallel results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf006.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 329.455688 - 0: The maximum resident set size (KB) = 577992 + 0: The total amount of wall time = 341.384761 + 0: The maximum resident set size (KB) = 578072 -Test 048 regional_netcdf_parallel PASS +Test 051 regional_netcdf_parallel PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/regional_2dwrtdecomp -Checking test 049 regional_2dwrtdecomp results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/regional_2dwrtdecomp +Checking test 052 regional_2dwrtdecomp results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf006.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 329.992765 - 0: The maximum resident set size (KB) = 578128 + 0: The total amount of wall time = 334.216164 + 0: The maximum resident set size (KB) = 578264 -Test 049 regional_2dwrtdecomp PASS +Test 052 regional_2dwrtdecomp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/fv3_regional_wofs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/regional_wofs -Checking test 050 regional_wofs results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/regional_wofs +Checking test 053 regional_wofs results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf006.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 419.160137 - 0: The maximum resident set size (KB) = 264092 + 0: The total amount of wall time = 418.396515 + 0: The maximum resident set size (KB) = 264020 -Test 050 regional_wofs PASS +Test 053 regional_wofs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/rap_control -Checking test 051 rap_control results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/rap_control +Checking test 054 rap_control results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2242,39 +2314,39 @@ Checking test 051 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 473.424425 - 0: The maximum resident set size (KB) = 810580 + 0: The total amount of wall time = 476.891287 + 0: The maximum resident set size (KB) = 810624 -Test 051 rap_control PASS +Test 054 rap_control PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_spp_sppt_shum_skeb -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/regional_spp_sppt_shum_skeb -Checking test 052 regional_spp_sppt_shum_skeb results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/regional_spp_sppt_shum_skeb +Checking test 055 regional_spp_sppt_shum_skeb results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf001.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf001.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF01 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 338.996434 - 0: The maximum resident set size (KB) = 890780 + 0: The total amount of wall time = 270.886898 + 0: The maximum resident set size (KB) = 891200 -Test 052 regional_spp_sppt_shum_skeb PASS +Test 055 regional_spp_sppt_shum_skeb PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/rap_decomp -Checking test 053 rap_decomp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/rap_decomp +Checking test 056 rap_decomp results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2314,21 +2386,21 @@ Checking test 053 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 493.185269 - 0: The maximum resident set size (KB) = 807320 + 0: The total amount of wall time = 499.187523 + 0: The maximum resident set size (KB) = 807544 -Test 053 rap_decomp PASS +Test 056 rap_decomp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/rap_2threads -Checking test 054 rap_2threads results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/rap_2threads +Checking test 057 rap_2threads results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2368,17 +2440,17 @@ Checking test 054 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 464.664153 - 0: The maximum resident set size (KB) = 877712 + 0: The total amount of wall time = 455.210022 + 0: The maximum resident set size (KB) = 877380 -Test 054 rap_2threads PASS +Test 057 rap_2threads PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/rap_restart -Checking test 055 rap_restart results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/rap_restart +Checking test 058 rap_restart results .... + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -2414,21 +2486,21 @@ Checking test 055 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 245.108278 - 0: The maximum resident set size (KB) = 553432 + 0: The total amount of wall time = 242.637880 + 0: The maximum resident set size (KB) = 554164 -Test 055 rap_restart PASS +Test 058 rap_restart PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/rap_sfcdiff -Checking test 056 rap_sfcdiff 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 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/rap_sfcdiff +Checking test 059 rap_sfcdiff results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2468,21 +2540,21 @@ Checking test 056 rap_sfcdiff results .... Comparing 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.810370 - 0: The maximum resident set size (KB) = 810672 + 0: The total amount of wall time = 478.471387 + 0: The maximum resident set size (KB) = 810792 -Test 056 rap_sfcdiff PASS +Test 059 rap_sfcdiff PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/rap_sfcdiff_decomp -Checking test 057 rap_sfcdiff_decomp 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 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/rap_sfcdiff_decomp +Checking test 060 rap_sfcdiff_decomp results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2522,17 +2594,17 @@ Checking test 057 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 486.096313 - 0: The maximum resident set size (KB) = 807264 + 0: The total amount of wall time = 501.026573 + 0: The maximum resident set size (KB) = 807424 -Test 057 rap_sfcdiff_decomp PASS +Test 060 rap_sfcdiff_decomp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/rap_sfcdiff_restart -Checking test 058 rap_sfcdiff_restart results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/rap_sfcdiff_restart +Checking test 061 rap_sfcdiff_restart results .... + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -2568,21 +2640,21 @@ Checking test 058 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 353.670707 - 0: The maximum resident set size (KB) = 551896 + 0: The total amount of wall time = 355.767086 + 0: The maximum resident set size (KB) = 552072 -Test 058 rap_sfcdiff_restart PASS +Test 061 rap_sfcdiff_restart PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/hrrr_control -Checking test 059 hrrr_control 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 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/hrrr_control +Checking test 062 hrrr_control results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2622,21 +2694,21 @@ Checking test 059 hrrr_control results .... Comparing 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.736294 - 0: The maximum resident set size (KB) = 806752 + 0: The total amount of wall time = 458.758234 + 0: The maximum resident set size (KB) = 806820 -Test 059 hrrr_control PASS +Test 062 hrrr_control PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/hrrr_control_decomp -Checking test 060 hrrr_control_decomp 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 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/hrrr_control_decomp +Checking test 063 hrrr_control_decomp results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2676,21 +2748,21 @@ Checking test 060 hrrr_control_decomp results .... Comparing 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.709740 - 0: The maximum resident set size (KB) = 804472 + 0: The total amount of wall time = 481.006917 + 0: The maximum resident set size (KB) = 804788 -Test 060 hrrr_control_decomp PASS +Test 063 hrrr_control_decomp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/hrrr_control_2threads -Checking test 061 hrrr_control_2threads 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 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/hrrr_control_2threads +Checking test 064 hrrr_control_2threads results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2730,17 +2802,17 @@ Checking test 061 hrrr_control_2threads results .... Comparing 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.448099 - 0: The maximum resident set size (KB) = 872260 + 0: The total amount of wall time = 434.877423 + 0: The maximum resident set size (KB) = 873760 -Test 061 hrrr_control_2threads PASS +Test 064 hrrr_control_2threads PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/hrrr_control_restart -Checking test 062 hrrr_control_restart results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/hrrr_control_restart +Checking test 065 hrrr_control_restart results .... + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -2776,21 +2848,21 @@ Checking test 062 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 340.254198 - 0: The maximum resident set size (KB) = 550284 + 0: The total amount of wall time = 343.658870 + 0: The maximum resident set size (KB) = 550312 -Test 062 hrrr_control_restart PASS +Test 065 hrrr_control_restart PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1beta -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/rrfs_v1beta -Checking test 063 rrfs_v1beta 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 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/rrfs_v1beta +Checking test 066 rrfs_v1beta results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2830,21 +2902,21 @@ Checking test 063 rrfs_v1beta results .... Comparing 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.032621 - 0: The maximum resident set size (KB) = 802952 + 0: The total amount of wall time = 476.103593 + 0: The maximum resident set size (KB) = 803096 -Test 063 rrfs_v1beta PASS +Test 066 rrfs_v1beta PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1nssl -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/rrfs_v1nssl -Checking test 064 rrfs_v1nssl 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 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/rrfs_v1nssl +Checking test 067 rrfs_v1nssl results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2852,21 +2924,21 @@ Checking test 064 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 566.154929 - 0: The maximum resident set size (KB) = 494416 + 0: The total amount of wall time = 576.196989 + 0: The maximum resident set size (KB) = 494708 -Test 064 rrfs_v1nssl PASS +Test 067 rrfs_v1nssl PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/rrfs_v1nssl_nohailnoccn -Checking test 065 rrfs_v1nssl_nohailnoccn 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 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/rrfs_v1nssl_nohailnoccn +Checking test 068 rrfs_v1nssl_nohailnoccn results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2874,133 +2946,133 @@ Checking test 065 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 552.707628 - 0: The maximum resident set size (KB) = 486208 + 0: The total amount of wall time = 562.933509 + 0: The maximum resident set size (KB) = 486216 -Test 065 rrfs_v1nssl_nohailnoccn PASS +Test 068 rrfs_v1nssl_nohailnoccn PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/rrfs_smoke_conus13km_hrrr_warm -Checking test 066 rrfs_smoke_conus13km_hrrr_warm 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 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/rrfs_smoke_conus13km_hrrr_warm +Checking test 069 rrfs_smoke_conus13km_hrrr_warm results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing sfcf002.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK + Comparing atmf002.nc ............ALT CHECK......OK - 0: The total amount of wall time = 173.280798 - 0: The maximum resident set size (KB) = 654076 + 0: The total amount of wall time = 179.483974 + 0: The maximum resident set size (KB) = 654408 -Test 066 rrfs_smoke_conus13km_hrrr_warm PASS +Test 069 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/rrfs_smoke_conus13km_hrrr_warm_2threads -Checking test 067 rrfs_smoke_conus13km_hrrr_warm_2threads 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 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/rrfs_smoke_conus13km_hrrr_warm_2threads +Checking test 070 rrfs_smoke_conus13km_hrrr_warm_2threads results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing sfcf002.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK + Comparing atmf002.nc ............ALT CHECK......OK - 0: The total amount of wall time = 117.686617 - 0: The maximum resident set size (KB) = 667904 + 0: The total amount of wall time = 121.345378 + 0: The maximum resident set size (KB) = 666904 -Test 067 rrfs_smoke_conus13km_hrrr_warm_2threads PASS +Test 070 rrfs_smoke_conus13km_hrrr_warm_2threads PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/rrfs_conus13km_hrrr_warm -Checking test 068 rrfs_conus13km_hrrr_warm 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 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/rrfs_conus13km_hrrr_warm +Checking test 071 rrfs_conus13km_hrrr_warm results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing sfcf002.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK + Comparing atmf002.nc ............ALT CHECK......OK - 0: The total amount of wall time = 164.574384 - 0: The maximum resident set size (KB) = 633164 + 0: The total amount of wall time = 162.814257 + 0: The maximum resident set size (KB) = 633320 -Test 068 rrfs_conus13km_hrrr_warm PASS +Test 071 rrfs_conus13km_hrrr_warm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/rrfs_smoke_conus13km_radar_tten_warm -Checking test 069 rrfs_smoke_conus13km_radar_tten_warm 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 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/rrfs_smoke_conus13km_radar_tten_warm +Checking test 072 rrfs_smoke_conus13km_radar_tten_warm results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing sfcf002.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK + Comparing atmf002.nc ............ALT CHECK......OK - 0: The total amount of wall time = 174.828216 - 0: The maximum resident set size (KB) = 657732 + 0: The total amount of wall time = 189.917868 + 0: The maximum resident set size (KB) = 657956 -Test 069 rrfs_smoke_conus13km_radar_tten_warm PASS +Test 072 rrfs_smoke_conus13km_radar_tten_warm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmgt -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/control_csawmgt -Checking test 070 control_csawmgt results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_csawmgt +Checking test 073 control_csawmgt results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 396.978813 - 0: The maximum resident set size (KB) = 504652 + 0: The total amount of wall time = 388.698039 + 0: The maximum resident set size (KB) = 504596 -Test 070 control_csawmgt PASS +Test 073 control_csawmgt PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_ras -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/control_ras -Checking test 071 control_ras results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_ras +Checking test 074 control_ras results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 200.102105 - 0: The maximum resident set size (KB) = 472708 + 0: The total amount of wall time = 201.960547 + 0: The maximum resident set size (KB) = 472576 -Test 071 control_ras PASS +Test 074 control_ras PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wam -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/control_wam -Checking test 072 control_wam results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_wam +Checking test 075 control_wam results .... + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK - 0: The total amount of wall time = 126.512632 - 0: The maximum resident set size (KB) = 188344 + 0: The total amount of wall time = 130.827386 + 0: The maximum resident set size (KB) = 188672 -Test 072 control_wam PASS +Test 075 control_wam PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_faster -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/control_p8_faster -Checking test 073 control_p8_faster results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_p8_faster +Checking test 076 control_p8_faster results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -3040,75 +3112,75 @@ Checking test 073 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 183.336338 - 0: The maximum resident set size (KB) = 1379268 + 0: The total amount of wall time = 191.631751 + 0: The maximum resident set size (KB) = 1379436 -Test 073 control_p8_faster PASS +Test 076 control_p8_faster PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control_faster -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/regional_control_faster -Checking test 074 regional_control_faster results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/regional_control_faster +Checking test 077 regional_control_faster results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf006.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 312.301334 - 0: The maximum resident set size (KB) = 577884 + 0: The total amount of wall time = 325.043700 + 0: The maximum resident set size (KB) = 578060 -Test 074 regional_control_faster PASS +Test 077 regional_control_faster PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/rrfs_smoke_conus13km_hrrr_warm_debug -Checking test 075 rrfs_smoke_conus13km_hrrr_warm_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/rrfs_smoke_conus13km_hrrr_warm_debug +Checking test 078 rrfs_smoke_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 899.127726 - 0: The maximum resident set size (KB) = 691668 + 0: The total amount of wall time = 908.111373 + 0: The maximum resident set size (KB) = 691584 -Test 075 rrfs_smoke_conus13km_hrrr_warm_debug PASS +Test 078 rrfs_smoke_conus13km_hrrr_warm_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/rrfs_smoke_conus13km_hrrr_warm_debug_2threads -Checking test 076 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +Checking test 079 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 531.571451 - 0: The maximum resident set size (KB) = 705392 + 0: The total amount of wall time = 532.987738 + 0: The maximum resident set size (KB) = 705368 -Test 076 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS +Test 079 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/rrfs_conus13km_hrrr_warm_debug -Checking test 077 rrfs_conus13km_hrrr_warm_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/rrfs_conus13km_hrrr_warm_debug +Checking test 080 rrfs_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 807.616373 - 0: The maximum resident set size (KB) = 666324 + 0: The total amount of wall time = 810.932307 + 0: The maximum resident set size (KB) = 666328 -Test 077 rrfs_conus13km_hrrr_warm_debug PASS +Test 080 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/control_CubedSphereGrid_debug -Checking test 078 control_CubedSphereGrid_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_CubedSphereGrid_debug +Checking test 081 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3134,359 +3206,359 @@ Checking test 078 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 166.232873 - 0: The maximum resident set size (KB) = 601760 + 0: The total amount of wall time = 168.585602 + 0: The maximum resident set size (KB) = 601824 -Test 078 control_CubedSphereGrid_debug PASS +Test 081 control_CubedSphereGrid_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/control_wrtGauss_netcdf_parallel_debug -Checking test 079 control_wrtGauss_netcdf_parallel_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_wrtGauss_netcdf_parallel_debug +Checking test 082 control_wrtGauss_netcdf_parallel_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 166.879325 - 0: The maximum resident set size (KB) = 601616 + 0: The total amount of wall time = 188.464146 + 0: The maximum resident set size (KB) = 601872 -Test 079 control_wrtGauss_netcdf_parallel_debug PASS +Test 082 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/control_stochy_debug -Checking test 080 control_stochy_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_stochy_debug +Checking test 083 control_stochy_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 179.339754 - 0: The maximum resident set size (KB) = 608168 + 0: The total amount of wall time = 181.221692 + 0: The maximum resident set size (KB) = 608036 -Test 080 control_stochy_debug PASS +Test 083 control_stochy_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_lndp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/control_lndp_debug -Checking test 081 control_lndp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_lndp_debug +Checking test 084 control_lndp_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 165.581582 - 0: The maximum resident set size (KB) = 606372 + 0: The total amount of wall time = 162.567810 + 0: The maximum resident set size (KB) = 606564 -Test 081 control_lndp_debug PASS +Test 084 control_lndp_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmg_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/control_csawmg_debug -Checking test 082 control_csawmg_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_csawmg_debug +Checking test 085 control_csawmg_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 259.507005 - 0: The maximum resident set size (KB) = 643588 + 0: The total amount of wall time = 261.711722 + 0: The maximum resident set size (KB) = 643648 -Test 082 control_csawmg_debug PASS +Test 085 control_csawmg_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmgt_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/control_csawmgt_debug -Checking test 083 control_csawmgt_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 251.966215 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_csawmgt_debug +Checking test 086 control_csawmgt_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK + + 0: The total amount of wall time = 254.858852 0: The maximum resident set size (KB) = 643012 -Test 083 control_csawmgt_debug PASS +Test 086 control_csawmgt_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_ras_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/control_ras_debug -Checking test 084 control_ras_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_ras_debug +Checking test 087 control_ras_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 163.255101 - 0: The maximum resident set size (KB) = 615104 + 0: The total amount of wall time = 166.038230 + 0: The maximum resident set size (KB) = 615484 -Test 084 control_ras_debug PASS +Test 087 control_ras_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_diag_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/control_diag_debug -Checking test 085 control_diag_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_diag_debug +Checking test 088 control_diag_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 168.458246 - 0: The maximum resident set size (KB) = 661144 + 0: The total amount of wall time = 169.685454 + 0: The maximum resident set size (KB) = 661220 -Test 085 control_diag_debug PASS +Test 088 control_diag_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_debug_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/control_debug_p8 -Checking test 086 control_debug_p8 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_debug_p8 +Checking test 089 control_debug_p8 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 188.202766 - 0: The maximum resident set size (KB) = 1379492 + 0: The total amount of wall time = 195.115122 + 0: The maximum resident set size (KB) = 1379548 -Test 086 control_debug_p8 PASS +Test 089 control_debug_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/regional_debug -Checking test 087 regional_debug results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/regional_debug +Checking test 090 regional_debug results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf001.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 1049.287567 - 0: The maximum resident set size (KB) = 607332 + 0: The total amount of wall time = 1054.991798 + 0: The maximum resident set size (KB) = 607516 -Test 087 regional_debug PASS +Test 090 regional_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/rap_control_debug -Checking test 088 rap_control_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/rap_control_debug +Checking test 091 rap_control_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 291.239639 - 0: The maximum resident set size (KB) = 973200 + 0: The total amount of wall time = 293.868687 + 0: The maximum resident set size (KB) = 973320 -Test 088 rap_control_debug PASS +Test 091 rap_control_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/hrrr_control_debug -Checking test 089 hrrr_control_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/hrrr_control_debug +Checking test 092 hrrr_control_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 287.067706 - 0: The maximum resident set size (KB) = 970692 + 0: The total amount of wall time = 285.305509 + 0: The maximum resident set size (KB) = 970760 -Test 089 hrrr_control_debug PASS +Test 092 hrrr_control_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/rap_unified_drag_suite_debug -Checking test 090 rap_unified_drag_suite_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/rap_unified_drag_suite_debug +Checking test 093 rap_unified_drag_suite_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 291.960973 - 0: The maximum resident set size (KB) = 973308 + 0: The total amount of wall time = 288.588894 + 0: The maximum resident set size (KB) = 973504 -Test 090 rap_unified_drag_suite_debug PASS +Test 093 rap_unified_drag_suite_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_diag_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/rap_diag_debug -Checking test 091 rap_diag_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/rap_diag_debug +Checking test 094 rap_diag_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 306.271213 - 0: The maximum resident set size (KB) = 1056268 + 0: The total amount of wall time = 305.131082 + 0: The maximum resident set size (KB) = 1056276 -Test 091 rap_diag_debug PASS +Test 094 rap_diag_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_cires_ugwp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/rap_cires_ugwp_debug -Checking test 092 rap_cires_ugwp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/rap_cires_ugwp_debug +Checking test 095 rap_cires_ugwp_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 298.387692 - 0: The maximum resident set size (KB) = 971948 + 0: The total amount of wall time = 301.967278 + 0: The maximum resident set size (KB) = 972032 -Test 092 rap_cires_ugwp_debug PASS +Test 095 rap_cires_ugwp_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_cires_ugwp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/rap_unified_ugwp_debug -Checking test 093 rap_unified_ugwp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/rap_unified_ugwp_debug +Checking test 096 rap_unified_ugwp_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 297.635529 - 0: The maximum resident set size (KB) = 972876 + 0: The total amount of wall time = 301.585671 + 0: The maximum resident set size (KB) = 973000 -Test 093 rap_unified_ugwp_debug PASS +Test 096 rap_unified_ugwp_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_lndp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/rap_lndp_debug -Checking test 094 rap_lndp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/rap_lndp_debug +Checking test 097 rap_lndp_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 295.810635 - 0: The maximum resident set size (KB) = 974128 + 0: The total amount of wall time = 294.215345 + 0: The maximum resident set size (KB) = 974168 -Test 094 rap_lndp_debug PASS +Test 097 rap_lndp_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_flake_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/rap_flake_debug -Checking test 095 rap_flake_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/rap_flake_debug +Checking test 098 rap_flake_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 291.473185 - 0: The maximum resident set size (KB) = 973268 + 0: The total amount of wall time = 289.408920 + 0: The maximum resident set size (KB) = 973492 -Test 095 rap_flake_debug PASS +Test 098 rap_flake_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_progcld_thompson_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/rap_progcld_thompson_debug -Checking test 096 rap_progcld_thompson_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/rap_progcld_thompson_debug +Checking test 099 rap_progcld_thompson_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 289.560412 - 0: The maximum resident set size (KB) = 973284 + 0: The total amount of wall time = 291.520586 + 0: The maximum resident set size (KB) = 973432 -Test 096 rap_progcld_thompson_debug PASS +Test 099 rap_progcld_thompson_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_noah_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/rap_noah_debug -Checking test 097 rap_noah_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/rap_noah_debug +Checking test 100 rap_noah_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 279.922417 - 0: The maximum resident set size (KB) = 971272 + 0: The total amount of wall time = 284.343624 + 0: The maximum resident set size (KB) = 971488 -Test 097 rap_noah_debug PASS +Test 100 rap_noah_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/rap_sfcdiff_debug -Checking test 098 rap_sfcdiff_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/rap_sfcdiff_debug +Checking test 101 rap_sfcdiff_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 288.365594 - 0: The maximum resident set size (KB) = 972932 + 0: The total amount of wall time = 288.120235 + 0: The maximum resident set size (KB) = 973100 -Test 098 rap_sfcdiff_debug PASS +Test 101 rap_sfcdiff_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 099 rap_noah_sfcdiff_cires_ugwp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 102 rap_noah_sfcdiff_cires_ugwp_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 471.327927 - 0: The maximum resident set size (KB) = 971320 + 0: The total amount of wall time = 473.684591 + 0: The maximum resident set size (KB) = 971348 -Test 099 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 102 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1beta_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/rrfs_v1beta_debug -Checking test 100 rrfs_v1beta_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/rrfs_v1beta_debug +Checking test 103 rrfs_v1beta_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 285.499159 - 0: The maximum resident set size (KB) = 968960 + 0: The total amount of wall time = 285.609722 + 0: The maximum resident set size (KB) = 969104 -Test 100 rrfs_v1beta_debug PASS +Test 103 rrfs_v1beta_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wam_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/control_wam_debug -Checking test 101 control_wam_debug results .... - Comparing sfcf019.nc .........OK - Comparing atmf019.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_wam_debug +Checking test 104 control_wam_debug results .... + Comparing sfcf019.nc ............ALT CHECK......OK + Comparing atmf019.nc ............ALT CHECK......OK - 0: The total amount of wall time = 292.851091 - 0: The maximum resident set size (KB) = 219732 + 0: The total amount of wall time = 294.072324 + 0: The maximum resident set size (KB) = 219792 -Test 101 control_wam_debug PASS +Test 104 control_wam_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/regional_spp_sppt_shum_skeb_dyn32_phy32 -Checking test 102 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 105 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf001.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf001.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF01 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 317.695582 - 0: The maximum resident set size (KB) = 801472 + 0: The total amount of wall time = 249.612957 + 0: The maximum resident set size (KB) = 801352 -Test 102 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS +Test 105 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/rap_control_dyn32_phy32 -Checking test 103 rap_control_dyn32_phy32 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 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/rap_control_dyn32_phy32 +Checking test 106 rap_control_dyn32_phy32 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3526,21 +3598,21 @@ Checking test 103 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 380.526635 - 0: The maximum resident set size (KB) = 690932 + 0: The total amount of wall time = 398.885946 + 0: The maximum resident set size (KB) = 690952 -Test 103 rap_control_dyn32_phy32 PASS +Test 106 rap_control_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/hrrr_control_dyn32_phy32 -Checking test 104 hrrr_control_dyn32_phy32 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 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/hrrr_control_dyn32_phy32 +Checking test 107 hrrr_control_dyn32_phy32 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3580,21 +3652,21 @@ Checking test 104 hrrr_control_dyn32_phy32 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 = 201.839604 - 0: The maximum resident set size (KB) = 689280 + 0: The total amount of wall time = 214.976468 + 0: The maximum resident set size (KB) = 689068 -Test 104 hrrr_control_dyn32_phy32 PASS +Test 107 hrrr_control_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/rap_2threads_dyn32_phy32 -Checking test 105 rap_2threads_dyn32_phy32 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 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/rap_2threads_dyn32_phy32 +Checking test 108 rap_2threads_dyn32_phy32 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3634,21 +3706,21 @@ Checking test 105 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 367.213574 - 0: The maximum resident set size (KB) = 747232 + 0: The total amount of wall time = 373.496892 + 0: The maximum resident set size (KB) = 747396 -Test 105 rap_2threads_dyn32_phy32 PASS +Test 108 rap_2threads_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/hrrr_control_2threads_dyn32_phy32 -Checking test 106 hrrr_control_2threads_dyn32_phy32 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 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/hrrr_control_2threads_dyn32_phy32 +Checking test 109 hrrr_control_2threads_dyn32_phy32 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3688,21 +3760,21 @@ Checking test 106 hrrr_control_2threads_dyn32_phy32 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 = 201.660835 - 0: The maximum resident set size (KB) = 742448 + 0: The total amount of wall time = 192.816073 + 0: The maximum resident set size (KB) = 739440 -Test 106 hrrr_control_2threads_dyn32_phy32 PASS +Test 109 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/hrrr_control_decomp_dyn32_phy32 -Checking test 107 hrrr_control_decomp_dyn32_phy32 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 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/hrrr_control_decomp_dyn32_phy32 +Checking test 110 hrrr_control_decomp_dyn32_phy32 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3742,17 +3814,17 @@ Checking test 107 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 218.694678 - 0: The maximum resident set size (KB) = 688768 + 0: The total amount of wall time = 213.960459 + 0: The maximum resident set size (KB) = 688784 -Test 107 hrrr_control_decomp_dyn32_phy32 PASS +Test 110 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/rap_restart_dyn32_phy32 -Checking test 108 rap_restart_dyn32_phy32 results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/rap_restart_dyn32_phy32 +Checking test 111 rap_restart_dyn32_phy32 results .... + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -3788,17 +3860,17 @@ Checking test 108 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 290.147208 - 0: The maximum resident set size (KB) = 525420 + 0: The total amount of wall time = 290.313080 + 0: The maximum resident set size (KB) = 525544 -Test 108 rap_restart_dyn32_phy32 PASS +Test 111 rap_restart_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/hrrr_control_restart_dyn32_phy32 -Checking test 109 hrrr_control_restart_dyn32_phy32 results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/hrrr_control_restart_dyn32_phy32 +Checking test 112 hrrr_control_restart_dyn32_phy32 results .... + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.180000.coupler.res .........OK @@ -3834,21 +3906,21 @@ Checking test 109 hrrr_control_restart_dyn32_phy32 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 = 107.403461 - 0: The maximum resident set size (KB) = 517228 + 0: The total amount of wall time = 109.753290 + 0: The maximum resident set size (KB) = 517912 -Test 109 hrrr_control_restart_dyn32_phy32 PASS +Test 112 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn64_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/rap_control_dyn64_phy32 -Checking test 110 rap_control_dyn64_phy32 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 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/rap_control_dyn64_phy32 +Checking test 113 rap_control_dyn64_phy32 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3888,116 +3960,116 @@ Checking test 110 rap_control_dyn64_phy32 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 = 270.372852 - 0: The maximum resident set size (KB) = 708740 + 0: The total amount of wall time = 262.118385 + 0: The maximum resident set size (KB) = 709024 -Test 110 rap_control_dyn64_phy32 PASS +Test 113 rap_control_dyn64_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/rap_control_debug_dyn32_phy32 -Checking test 111 rap_control_debug_dyn32_phy32 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/rap_control_debug_dyn32_phy32 +Checking test 114 rap_control_debug_dyn32_phy32 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 292.611352 - 0: The maximum resident set size (KB) = 858272 + 0: The total amount of wall time = 285.956769 + 0: The maximum resident set size (KB) = 858260 -Test 111 rap_control_debug_dyn32_phy32 PASS +Test 114 rap_control_debug_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/hrrr_control_debug_dyn32_phy32 -Checking test 112 hrrr_control_debug_dyn32_phy32 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/hrrr_control_debug_dyn32_phy32 +Checking test 115 hrrr_control_debug_dyn32_phy32 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 283.230263 - 0: The maximum resident set size (KB) = 855208 + 0: The total amount of wall time = 280.252001 + 0: The maximum resident set size (KB) = 855044 -Test 112 hrrr_control_debug_dyn32_phy32 PASS +Test 115 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/rap_control_dyn64_phy32_debug -Checking test 113 rap_control_dyn64_phy32_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/rap_control_dyn64_phy32_debug +Checking test 116 rap_control_dyn64_phy32_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 292.017272 - 0: The maximum resident set size (KB) = 874520 + 0: The total amount of wall time = 288.915722 + 0: The maximum resident set size (KB) = 874456 -Test 113 rap_control_dyn64_phy32_debug PASS +Test 116 rap_control_dyn64_phy32_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/hafs_regional_atm -Checking test 114 hafs_regional_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/hafs_regional_atm +Checking test 117 hafs_regional_atm results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 265.651729 - 0: The maximum resident set size (KB) = 684908 + 0: The total amount of wall time = 264.293485 + 0: The maximum resident set size (KB) = 685980 -Test 114 hafs_regional_atm PASS +Test 117 hafs_regional_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/hafs_regional_atm_thompson_gfdlsf -Checking test 115 hafs_regional_atm_thompson_gfdlsf results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/hafs_regional_atm_thompson_gfdlsf +Checking test 118 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 309.472660 - 0: The maximum resident set size (KB) = 1038052 + 0: The total amount of wall time = 307.925718 + 0: The maximum resident set size (KB) = 1040636 -Test 115 hafs_regional_atm_thompson_gfdlsf PASS +Test 118 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_ocn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/hafs_regional_atm_ocn -Checking test 116 hafs_regional_atm_ocn results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/hafs_regional_atm_ocn +Checking test 119 hafs_regional_atm_ocn results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK Comparing archv.2019_241_06.a .........OK Comparing archs.2019_241_06.a .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 444.934167 - 0: The maximum resident set size (KB) = 713876 + 0: The total amount of wall time = 442.441396 + 0: The maximum resident set size (KB) = 714576 -Test 116 hafs_regional_atm_ocn PASS +Test 119 hafs_regional_atm_ocn PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_wav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/hafs_regional_atm_wav -Checking test 117 hafs_regional_atm_wav results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/hafs_regional_atm_wav +Checking test 120 hafs_regional_atm_wav results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 947.083587 - 0: The maximum resident set size (KB) = 748112 + 0: The total amount of wall time = 939.027662 + 0: The maximum resident set size (KB) = 747984 -Test 117 hafs_regional_atm_wav PASS +Test 120 hafs_regional_atm_wav PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_ocn_wav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/hafs_regional_atm_ocn_wav -Checking test 118 hafs_regional_atm_ocn_wav results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/hafs_regional_atm_ocn_wav +Checking test 121 hafs_regional_atm_ocn_wav results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK Comparing archv.2019_241_06.a .........OK Comparing archs.2019_241_06.a .........OK Comparing out_grd.ww3 .........OK @@ -4005,323 +4077,323 @@ Checking test 118 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 1044.378617 - 0: The maximum resident set size (KB) = 766804 + 0: The total amount of wall time = 1050.614200 + 0: The maximum resident set size (KB) = 765848 -Test 118 hafs_regional_atm_ocn_wav PASS +Test 121 hafs_regional_atm_ocn_wav PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/hafs_regional_1nest_atm -Checking test 119 hafs_regional_1nest_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/hafs_regional_1nest_atm +Checking test 122 hafs_regional_1nest_atm results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atm.nest02.f006.nc ............ALT CHECK......OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 378.955626 - 0: The maximum resident set size (KB) = 276652 + 0: The total amount of wall time = 381.121928 + 0: The maximum resident set size (KB) = 278300 -Test 119 hafs_regional_1nest_atm PASS +Test 122 hafs_regional_1nest_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/hafs_regional_telescopic_2nests_atm -Checking test 120 hafs_regional_telescopic_2nests_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest03.f006.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/hafs_regional_telescopic_2nests_atm +Checking test 123 hafs_regional_telescopic_2nests_atm results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atm.nest02.f006.nc ............ALT CHECK......OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......OK + Comparing atm.nest03.f006.nc ............ALT CHECK......OK + Comparing sfc.nest03.f006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 430.613213 - 0: The maximum resident set size (KB) = 282916 + 0: The total amount of wall time = 445.549594 + 0: The maximum resident set size (KB) = 286392 -Test 120 hafs_regional_telescopic_2nests_atm PASS +Test 123 hafs_regional_telescopic_2nests_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/hafs_global_1nest_atm -Checking test 121 hafs_global_1nest_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/hafs_global_1nest_atm +Checking test 124 hafs_global_1nest_atm results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atm.nest02.f006.nc ............ALT CHECK......OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 169.836887 - 0: The maximum resident set size (KB) = 179256 + 0: The total amount of wall time = 169.679879 + 0: The maximum resident set size (KB) = 183500 -Test 121 hafs_global_1nest_atm PASS +Test 124 hafs_global_1nest_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_multiple_4nests_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/hafs_global_multiple_4nests_atm -Checking test 122 hafs_global_multiple_4nests_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest03.f006.nc .........OK - Comparing atm.nest04.f006.nc .........OK - Comparing sfc.nest04.f006.nc .........OK - Comparing atm.nest05.f006.nc .........OK - Comparing sfc.nest05.f006.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/hafs_global_multiple_4nests_atm +Checking test 125 hafs_global_multiple_4nests_atm results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atm.nest02.f006.nc ............ALT CHECK......OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......OK + Comparing atm.nest03.f006.nc ............ALT CHECK......OK + Comparing sfc.nest03.f006.nc ............ALT CHECK......OK + Comparing atm.nest04.f006.nc ............ALT CHECK......OK + Comparing sfc.nest04.f006.nc ............ALT CHECK......OK + Comparing atm.nest05.f006.nc ............ALT CHECK......OK + Comparing sfc.nest05.f006.nc ............ALT CHECK......OK Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK Comparing HURPRS.GrbF06.nest03 .........OK Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 498.073259 - 0: The maximum resident set size (KB) = 210332 + 0: The total amount of wall time = 491.550707 + 0: The maximum resident set size (KB) = 213000 -Test 122 hafs_global_multiple_4nests_atm PASS +Test 125 hafs_global_multiple_4nests_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/hafs_regional_specified_moving_1nest_atm -Checking test 123 hafs_regional_specified_moving_1nest_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/hafs_regional_specified_moving_1nest_atm +Checking test 126 hafs_regional_specified_moving_1nest_atm results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atm.nest02.f006.nc ............ALT CHECK......OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......OK Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 239.068216 - 0: The maximum resident set size (KB) = 287032 + 0: The total amount of wall time = 240.472761 + 0: The maximum resident set size (KB) = 294672 -Test 123 hafs_regional_specified_moving_1nest_atm PASS +Test 126 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/hafs_regional_storm_following_1nest_atm -Checking test 124 hafs_regional_storm_following_1nest_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/hafs_regional_storm_following_1nest_atm +Checking test 127 hafs_regional_storm_following_1nest_atm results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atm.nest02.f006.nc ............ALT CHECK......OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 228.592372 - 0: The maximum resident set size (KB) = 287636 + 0: The total amount of wall time = 231.783934 + 0: The maximum resident set size (KB) = 294188 -Test 124 hafs_regional_storm_following_1nest_atm PASS +Test 127 hafs_regional_storm_following_1nest_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/hafs_regional_storm_following_1nest_atm_ocn -Checking test 125 hafs_regional_storm_following_1nest_atm_ocn results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/hafs_regional_storm_following_1nest_atm_ocn +Checking test 128 hafs_regional_storm_following_1nest_atm_ocn results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atm.nest02.f006.nc ............ALT CHECK......OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......OK Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 267.357734 - 0: The maximum resident set size (KB) = 324480 + 0: The total amount of wall time = 274.474399 + 0: The maximum resident set size (KB) = 322316 -Test 125 hafs_regional_storm_following_1nest_atm_ocn PASS +Test 128 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/hafs_global_storm_following_1nest_atm -Checking test 126 hafs_global_storm_following_1nest_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/hafs_global_storm_following_1nest_atm +Checking test 129 hafs_global_storm_following_1nest_atm results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atm.nest02.f006.nc ............ALT CHECK......OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 69.256167 - 0: The maximum resident set size (KB) = 193600 + 0: The total amount of wall time = 70.078559 + 0: The maximum resident set size (KB) = 202384 -Test 126 hafs_global_storm_following_1nest_atm PASS +Test 129 hafs_global_storm_following_1nest_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/hafs_regional_storm_following_1nest_atm_ocn_debug -Checking test 127 hafs_regional_storm_following_1nest_atm_ocn_debug results .... - Comparing atmf001.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atm.nest02.f001.nc .........OK - Comparing sfc.nest02.f001.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/hafs_regional_storm_following_1nest_atm_ocn_debug +Checking test 130 hafs_regional_storm_following_1nest_atm_ocn_debug results .... + Comparing atmf001.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atm.nest02.f001.nc ............ALT CHECK......OK + Comparing sfc.nest02.f001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 781.617164 - 0: The maximum resident set size (KB) = 354248 + 0: The total amount of wall time = 784.076553 + 0: The maximum resident set size (KB) = 352256 -Test 127 hafs_regional_storm_following_1nest_atm_ocn_debug PASS +Test 130 hafs_regional_storm_following_1nest_atm_ocn_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/hafs_regional_storm_following_1nest_atm_ocn_wav -Checking test 128 hafs_regional_storm_following_1nest_atm_ocn_wav results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 131 hafs_regional_storm_following_1nest_atm_ocn_wav results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atm.nest02.f006.nc ............ALT CHECK......OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......OK Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 738.401426 - 0: The maximum resident set size (KB) = 367036 + 0: The total amount of wall time = 715.785021 + 0: The maximum resident set size (KB) = 372064 -Test 128 hafs_regional_storm_following_1nest_atm_ocn_wav PASS +Test 131 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_docn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/hafs_regional_docn -Checking test 129 hafs_regional_docn results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/hafs_regional_docn +Checking test 132 hafs_regional_docn results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 395.994516 - 0: The maximum resident set size (KB) = 724952 + 0: The total amount of wall time = 398.502943 + 0: The maximum resident set size (KB) = 725060 -Test 129 hafs_regional_docn PASS +Test 132 hafs_regional_docn PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_docn_oisst -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/hafs_regional_docn_oisst -Checking test 130 hafs_regional_docn_oisst results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/hafs_regional_docn_oisst +Checking test 133 hafs_regional_docn_oisst results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 399.928176 - 0: The maximum resident set size (KB) = 709996 + 0: The total amount of wall time = 404.120629 + 0: The maximum resident set size (KB) = 710232 -Test 130 hafs_regional_docn_oisst PASS +Test 133 hafs_regional_docn_oisst PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_datm_cdeps -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/hafs_regional_datm_cdeps -Checking test 131 hafs_regional_datm_cdeps results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/hafs_regional_datm_cdeps +Checking test 134 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 1169.476989 - 0: The maximum resident set size (KB) = 808880 + 0: The total amount of wall time = 1163.686151 + 0: The maximum resident set size (KB) = 808868 -Test 131 hafs_regional_datm_cdeps PASS +Test 134 hafs_regional_datm_cdeps PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/datm_cdeps_control_cfsr -Checking test 132 datm_cdeps_control_cfsr results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/datm_cdeps_control_cfsr +Checking test 135 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 167.835287 - 0: The maximum resident set size (KB) = 715884 + 0: The total amount of wall time = 169.907528 + 0: The maximum resident set size (KB) = 715704 -Test 132 datm_cdeps_control_cfsr PASS +Test 135 datm_cdeps_control_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/datm_cdeps_restart_cfsr -Checking test 133 datm_cdeps_restart_cfsr results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/datm_cdeps_restart_cfsr +Checking test 136 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 102.832053 - 0: The maximum resident set size (KB) = 715920 + 0: The total amount of wall time = 102.636247 + 0: The maximum resident set size (KB) = 715900 -Test 133 datm_cdeps_restart_cfsr PASS +Test 136 datm_cdeps_restart_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/datm_cdeps_control_gefs -Checking test 134 datm_cdeps_control_gefs results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/datm_cdeps_control_gefs +Checking test 137 datm_cdeps_control_gefs 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 = 170.516642 - 0: The maximum resident set size (KB) = 598076 + 0: The total amount of wall time = 163.324272 + 0: The maximum resident set size (KB) = 598908 -Test 134 datm_cdeps_control_gefs PASS +Test 137 datm_cdeps_control_gefs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_iau_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/datm_cdeps_iau_gefs -Checking test 135 datm_cdeps_iau_gefs results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/datm_cdeps_iau_gefs +Checking test 138 datm_cdeps_iau_gefs 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 = 162.599885 - 0: The maximum resident set size (KB) = 597972 + 0: The total amount of wall time = 170.872952 + 0: The maximum resident set size (KB) = 604096 -Test 135 datm_cdeps_iau_gefs PASS +Test 138 datm_cdeps_iau_gefs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_stochy_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/datm_cdeps_stochy_gefs -Checking test 136 datm_cdeps_stochy_gefs results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/datm_cdeps_stochy_gefs +Checking test 139 datm_cdeps_stochy_gefs 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 = 164.422546 - 0: The maximum resident set size (KB) = 600160 + 0: The total amount of wall time = 168.047848 + 0: The maximum resident set size (KB) = 595448 -Test 136 datm_cdeps_stochy_gefs PASS +Test 139 datm_cdeps_stochy_gefs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/datm_cdeps_ciceC_cfsr -Checking test 137 datm_cdeps_ciceC_cfsr results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/datm_cdeps_ciceC_cfsr +Checking test 140 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 166.297243 - 0: The maximum resident set size (KB) = 715736 + 0: The total amount of wall time = 172.059160 + 0: The maximum resident set size (KB) = 715948 -Test 137 datm_cdeps_ciceC_cfsr PASS +Test 140 datm_cdeps_ciceC_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_bulk_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/datm_cdeps_bulk_cfsr -Checking test 138 datm_cdeps_bulk_cfsr results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/datm_cdeps_bulk_cfsr +Checking test 141 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 167.119671 - 0: The maximum resident set size (KB) = 717608 + 0: The total amount of wall time = 167.448386 + 0: The maximum resident set size (KB) = 715772 -Test 138 datm_cdeps_bulk_cfsr PASS +Test 141 datm_cdeps_bulk_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_bulk_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/datm_cdeps_bulk_gefs -Checking test 139 datm_cdeps_bulk_gefs results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/datm_cdeps_bulk_gefs +Checking test 142 datm_cdeps_bulk_gefs 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 = 163.166799 - 0: The maximum resident set size (KB) = 600092 + 0: The total amount of wall time = 162.882109 + 0: The maximum resident set size (KB) = 597900 -Test 139 datm_cdeps_bulk_gefs PASS +Test 142 datm_cdeps_bulk_gefs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_mx025_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/datm_cdeps_mx025_cfsr -Checking test 140 datm_cdeps_mx025_cfsr results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/datm_cdeps_mx025_cfsr +Checking test 143 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4329,15 +4401,15 @@ Checking test 140 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 433.739192 - 0: The maximum resident set size (KB) = 494328 + 0: The total amount of wall time = 440.801835 + 0: The maximum resident set size (KB) = 494376 -Test 140 datm_cdeps_mx025_cfsr PASS +Test 143 datm_cdeps_mx025_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_mx025_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/datm_cdeps_mx025_gefs -Checking test 141 datm_cdeps_mx025_gefs results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/datm_cdeps_mx025_gefs +Checking test 144 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4345,78 +4417,78 @@ Checking test 141 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 426.476138 - 0: The maximum resident set size (KB) = 476468 + 0: The total amount of wall time = 428.060880 + 0: The maximum resident set size (KB) = 476240 -Test 141 datm_cdeps_mx025_gefs PASS +Test 144 datm_cdeps_mx025_gefs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/datm_cdeps_multiple_files_cfsr -Checking test 142 datm_cdeps_multiple_files_cfsr results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/datm_cdeps_multiple_files_cfsr +Checking test 145 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 167.332859 - 0: The maximum resident set size (KB) = 715828 + 0: The total amount of wall time = 168.692053 + 0: The maximum resident set size (KB) = 699808 -Test 142 datm_cdeps_multiple_files_cfsr PASS +Test 145 datm_cdeps_multiple_files_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/datm_cdeps_3072x1536_cfsr -Checking test 143 datm_cdeps_3072x1536_cfsr results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/datm_cdeps_3072x1536_cfsr +Checking test 146 datm_cdeps_3072x1536_cfsr 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 = 255.293979 - 0: The maximum resident set size (KB) = 1952144 + 0: The total amount of wall time = 253.842061 + 0: The maximum resident set size (KB) = 1952508 -Test 143 datm_cdeps_3072x1536_cfsr PASS +Test 146 datm_cdeps_3072x1536_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_gfs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/datm_cdeps_gfs -Checking test 144 datm_cdeps_gfs results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/datm_cdeps_gfs +Checking test 147 datm_cdeps_gfs 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 = 253.274013 - 0: The maximum resident set size (KB) = 1947784 + 0: The total amount of wall time = 260.557742 + 0: The maximum resident set size (KB) = 1947920 -Test 144 datm_cdeps_gfs PASS +Test 147 datm_cdeps_gfs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_debug_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/datm_cdeps_debug_cfsr -Checking test 145 datm_cdeps_debug_cfsr results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/datm_cdeps_debug_cfsr +Checking test 148 datm_cdeps_debug_cfsr 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 = 375.683653 - 0: The maximum resident set size (KB) = 708032 + 0: The total amount of wall time = 379.097517 + 0: The maximum resident set size (KB) = 714828 -Test 145 datm_cdeps_debug_cfsr PASS +Test 148 datm_cdeps_debug_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr_faster -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/datm_cdeps_control_cfsr_faster -Checking test 146 datm_cdeps_control_cfsr_faster results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/datm_cdeps_control_cfsr_faster +Checking test 149 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.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 = 168.161814 - 0: The maximum resident set size (KB) = 715672 + 0: The total amount of wall time = 169.365005 + 0: The maximum resident set size (KB) = 717364 -Test 146 datm_cdeps_control_cfsr_faster PASS +Test 149 datm_cdeps_control_cfsr_faster PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/datm_cdeps_lnd_gswp3 -Checking test 147 datm_cdeps_lnd_gswp3 results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/datm_cdeps_lnd_gswp3 +Checking test 150 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4424,15 +4496,15 @@ Checking test 147 datm_cdeps_lnd_gswp3 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.647036 - 0: The maximum resident set size (KB) = 149792 + 0: The total amount of wall time = 25.772165 + 0: The maximum resident set size (KB) = 145808 -Test 147 datm_cdeps_lnd_gswp3 PASS +Test 150 datm_cdeps_lnd_gswp3 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/datm_cdeps_lnd_gswp3_rst -Checking test 148 datm_cdeps_lnd_gswp3_rst results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/datm_cdeps_lnd_gswp3_rst +Checking test 151 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4440,15 +4512,15 @@ Checking test 148 datm_cdeps_lnd_gswp3_rst 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 = 21.706298 - 0: The maximum resident set size (KB) = 153868 + 0: The total amount of wall time = 30.219818 + 0: The maximum resident set size (KB) = 149912 -Test 148 datm_cdeps_lnd_gswp3_rst PASS +Test 151 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_atmlnd_sbs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/control_p8_atmlnd_sbs -Checking test 149 control_p8_atmlnd_sbs results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_p8_atmlnd_sbs +Checking test 152 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -4532,19 +4604,19 @@ Checking test 149 control_p8_atmlnd_sbs results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 240.305184 - 0: The maximum resident set size (KB) = 1414060 + 0: The total amount of wall time = 250.067069 + 0: The maximum resident set size (KB) = 1414000 -Test 149 control_p8_atmlnd_sbs PASS +Test 152 control_p8_atmlnd_sbs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_atmwav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/control_atmwav -Checking test 150 control_atmwav results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_atmwav +Checking test 153 control_atmwav results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -4583,19 +4655,19 @@ Checking test 150 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 97.882979 - 0: The maximum resident set size (KB) = 451416 + 0: The total amount of wall time = 101.908217 + 0: The maximum resident set size (KB) = 451480 -Test 150 control_atmwav PASS +Test 153 control_atmwav PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/atmaero_control_p8 -Checking test 151 atmaero_control_p8 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/atmaero_control_p8 +Checking test 154 atmaero_control_p8 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -4634,19 +4706,19 @@ Checking test 151 atmaero_control_p8 results .... Comparing 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.578097 - 0: The maximum resident set size (KB) = 1447904 + 0: The total amount of wall time = 272.511374 + 0: The maximum resident set size (KB) = 1448048 -Test 151 atmaero_control_p8 PASS +Test 154 atmaero_control_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8_rad -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/atmaero_control_p8_rad -Checking test 152 atmaero_control_p8_rad results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/atmaero_control_p8_rad +Checking test 155 atmaero_control_p8_rad results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -4685,19 +4757,19 @@ Checking test 152 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 306.308286 - 0: The maximum resident set size (KB) = 1469572 + 0: The total amount of wall time = 306.708615 + 0: The maximum resident set size (KB) = 1469096 -Test 152 atmaero_control_p8_rad PASS +Test 155 atmaero_control_p8_rad PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8_rad_micro -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/atmaero_control_p8_rad_micro -Checking test 153 atmaero_control_p8_rad_micro results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/atmaero_control_p8_rad_micro +Checking test 156 atmaero_control_p8_rad_micro results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -4736,21 +4808,21 @@ Checking test 153 atmaero_control_p8_rad_micro results .... Comparing 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.539532 - 0: The maximum resident set size (KB) = 1473624 + 0: The total amount of wall time = 308.926186 + 0: The maximum resident set size (KB) = 1473636 -Test 153 atmaero_control_p8_rad_micro PASS +Test 156 atmaero_control_p8_rad_micro PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/regional_atmaq -Checking test 154 regional_atmaq results .... - Comparing sfcf000.nc .........OK - Comparing sfcf003.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf003.nc .........OK - Comparing atmf006.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/regional_atmaq +Checking test 157 regional_atmaq results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf003.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf003.nc ............ALT CHECK......OK + Comparing atmf006.nc ............ALT CHECK......OK Comparing RESTART/20190801.180000.coupler.res .........OK Comparing RESTART/20190801.180000.fv_core.res.nc .........OK Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK @@ -4759,21 +4831,21 @@ Checking test 154 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 671.408218 - 0: The maximum resident set size (KB) = 965028 + 0: The total amount of wall time = 682.314767 + 0: The maximum resident set size (KB) = 968884 -Test 154 regional_atmaq PASS +Test 157 regional_atmaq PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq_faster -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20751/regional_atmaq_faster -Checking test 155 regional_atmaq_faster results .... - Comparing sfcf000.nc .........OK - Comparing sfcf003.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf003.nc .........OK - Comparing atmf006.nc .........OK +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/regional_atmaq_faster +Checking test 158 regional_atmaq_faster results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf003.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf003.nc ............ALT CHECK......OK + Comparing atmf006.nc ............ALT CHECK......OK Comparing RESTART/20190801.180000.coupler.res .........OK Comparing RESTART/20190801.180000.fv_core.res.nc .........OK Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK @@ -4782,12 +4854,12 @@ Checking test 155 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 614.581590 - 0: The maximum resident set size (KB) = 968144 + 0: The total amount of wall time = 625.917427 + 0: The maximum resident set size (KB) = 966800 -Test 155 regional_atmaq_faster PASS +Test 158 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Sat Mar 25 02:57:12 EDT 2023 -Elapsed time: 04h:31m:49s. Have a nice day! +Mon Mar 27 23:21:53 EDT 2023 +Elapsed time: 05h:49m:08s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index a97d078e872..73035f0794f 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,26 +1,26 @@ -Fri Mar 24 23:08:25 UTC 2023 +Mon Mar 27 21:33:44 UTC 2023 Start Regression test -Compile 001 elapsed time 178 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 184 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 314 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 94 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 179 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 386 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 314 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 312 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 258 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 222 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 146 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 012 elapsed time 115 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 001 elapsed time 183 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 189 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 317 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 101 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 184 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 397 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 318 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 319 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 267 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 232 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 156 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 012 elapsed time 113 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/control_c48 Checking test 001 control_c48 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -54,57 +54,57 @@ Checking test 001 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 685.311973 -0: The maximum resident set size (KB) = 703652 +0: The total amount of wall time = 684.971768 +0: The maximum resident set size (KB) = 701800 Test 001 control_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/control_stochy Checking test 002 control_stochy results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 640.503805 - 0: The maximum resident set size (KB) = 479296 + 0: The total amount of wall time = 665.276370 + 0: The maximum resident set size (KB) = 478320 Test 002 control_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/control_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/control_ras Checking test 003 control_ras results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 853.998495 - 0: The maximum resident set size (KB) = 485136 + 0: The total amount of wall time = 838.119430 + 0: The maximum resident set size (KB) = 487928 Test 003 control_ras PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/control_p8 Checking test 004 control_p8 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -144,21 +144,21 @@ Checking test 004 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 904.485676 - 0: The maximum resident set size (KB) = 1235064 + 0: The total amount of wall time = 929.442075 + 0: The maximum resident set size (KB) = 1236452 Test 004 control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/rap_control Checking test 005 rap_control results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -198,21 +198,21 @@ Checking test 005 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1487.984421 - 0: The maximum resident set size (KB) = 830496 + 0: The total amount of wall time = 1459.945803 + 0: The maximum resident set size (KB) = 828936 Test 005 rap_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/rap_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/rap_decomp Checking test 006 rap_decomp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -252,21 +252,21 @@ Checking test 006 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1472.154322 - 0: The maximum resident set size (KB) = 836176 + 0: The total amount of wall time = 1469.656618 + 0: The maximum resident set size (KB) = 826732 Test 006 rap_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/rap_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/rap_2threads Checking test 007 rap_2threads results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -306,17 +306,17 @@ Checking test 007 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1383.301635 - 0: The maximum resident set size (KB) = 898196 + 0: The total amount of wall time = 1343.194359 + 0: The maximum resident set size (KB) = 898832 Test 007 rap_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/rap_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/rap_restart Checking test 008 rap_restart results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -352,21 +352,21 @@ Checking test 008 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 751.931250 - 0: The maximum resident set size (KB) = 547960 + 0: The total amount of wall time = 726.378735 + 0: The maximum resident set size (KB) = 550420 Test 008 rap_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/rap_sfcdiff Checking test 009 rap_sfcdiff 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 sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -406,21 +406,21 @@ Checking test 009 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1477.695938 - 0: The maximum resident set size (KB) = 834816 + 0: The total amount of wall time = 1515.135275 + 0: The maximum resident set size (KB) = 828596 Test 009 rap_sfcdiff PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/rap_sfcdiff_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/rap_sfcdiff_decomp Checking test 010 rap_sfcdiff_decomp 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 sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -460,17 +460,17 @@ Checking test 010 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1418.264814 - 0: The maximum resident set size (KB) = 833360 + 0: The total amount of wall time = 1449.886824 + 0: The maximum resident set size (KB) = 831552 Test 010 rap_sfcdiff_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/rap_sfcdiff_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/rap_sfcdiff_restart Checking test 011 rap_sfcdiff_restart results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -506,21 +506,21 @@ Checking test 011 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1123.059995 - 0: The maximum resident set size (KB) = 550588 + 0: The total amount of wall time = 1079.023333 + 0: The maximum resident set size (KB) = 556936 Test 011 rap_sfcdiff_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/hrrr_control Checking test 012 hrrr_control 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 sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -560,21 +560,21 @@ Checking test 012 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1445.944439 - 0: The maximum resident set size (KB) = 826516 + 0: The total amount of wall time = 1434.361835 + 0: The maximum resident set size (KB) = 830168 Test 012 hrrr_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/hrrr_control_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/hrrr_control_2threads Checking test 013 hrrr_control_2threads 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 sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -614,21 +614,21 @@ Checking test 013 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1334.721545 - 0: The maximum resident set size (KB) = 895120 + 0: The total amount of wall time = 1347.605821 + 0: The maximum resident set size (KB) = 894104 Test 013 hrrr_control_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/hrrr_control_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/hrrr_control_decomp Checking test 014 hrrr_control_decomp 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 sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -668,17 +668,17 @@ Checking test 014 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1438.852378 - 0: The maximum resident set size (KB) = 829072 + 0: The total amount of wall time = 1446.265243 + 0: The maximum resident set size (KB) = 831928 Test 014 hrrr_control_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/hrrr_control_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/hrrr_control_restart Checking test 015 hrrr_control_restart results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -714,21 +714,21 @@ Checking test 015 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1107.287633 - 0: The maximum resident set size (KB) = 548908 + 0: The total amount of wall time = 1044.670518 + 0: The maximum resident set size (KB) = 551948 Test 015 hrrr_control_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/rrfs_v1beta Checking test 016 rrfs_v1beta 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 sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -768,293 +768,293 @@ Checking test 016 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1464.689105 - 0: The maximum resident set size (KB) = 832856 + 0: The total amount of wall time = 1447.253765 + 0: The maximum resident set size (KB) = 825620 Test 016 rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/rrfs_smoke_conus13km_hrrr_warm Checking test 017 rrfs_smoke_conus13km_hrrr_warm 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 sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing sfcf002.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK + Comparing atmf002.nc ............ALT CHECK......OK - 0: The total amount of wall time = 787.495339 - 0: The maximum resident set size (KB) = 666008 + 0: The total amount of wall time = 800.354375 + 0: The maximum resident set size (KB) = 668448 Test 017 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/rrfs_smoke_conus13km_hrrr_warm_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 018 rrfs_smoke_conus13km_hrrr_warm_2threads 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 sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing sfcf002.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK + Comparing atmf002.nc ............ALT CHECK......OK - 0: The total amount of wall time = 924.484977 - 0: The maximum resident set size (KB) = 665392 + 0: The total amount of wall time = 1041.685864 + 0: The maximum resident set size (KB) = 666148 Test 018 rrfs_smoke_conus13km_hrrr_warm_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/rrfs_conus13km_hrrr_warm Checking test 019 rrfs_conus13km_hrrr_warm 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 sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing sfcf002.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK + Comparing atmf002.nc ............ALT CHECK......OK - 0: The total amount of wall time = 758.990281 - 0: The maximum resident set size (KB) = 644380 + 0: The total amount of wall time = 768.840967 + 0: The maximum resident set size (KB) = 645444 Test 019 rrfs_conus13km_hrrr_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/rrfs_smoke_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/rrfs_smoke_conus13km_radar_tten_warm Checking test 020 rrfs_smoke_conus13km_radar_tten_warm 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 sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing sfcf002.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK + Comparing atmf002.nc ............ALT CHECK......OK - 0: The total amount of wall time = 789.759142 - 0: The maximum resident set size (KB) = 672176 + 0: The total amount of wall time = 767.118611 + 0: The maximum resident set size (KB) = 671580 Test 020 rrfs_smoke_conus13km_radar_tten_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/control_diag_debug Checking test 021 control_diag_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 132.067718 - 0: The maximum resident set size (KB) = 530776 + 0: The total amount of wall time = 128.887192 + 0: The maximum resident set size (KB) = 524908 Test 021 control_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/regional_debug Checking test 022 regional_debug results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf001.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 668.718668 - 0: The maximum resident set size (KB) = 593596 + 0: The total amount of wall time = 658.111614 + 0: The maximum resident set size (KB) = 593956 Test 022 regional_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/rap_control_debug Checking test 023 rap_control_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 176.463574 - 0: The maximum resident set size (KB) = 839628 + 0: The total amount of wall time = 176.041163 + 0: The maximum resident set size (KB) = 842008 Test 023 rap_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/hrrr_control_debug Checking test 024 hrrr_control_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 176.726445 - 0: The maximum resident set size (KB) = 840572 + 0: The total amount of wall time = 171.428228 + 0: The maximum resident set size (KB) = 840368 Test 024 hrrr_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/rap_diag_debug Checking test 025 rap_diag_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 221.959848 - 0: The maximum resident set size (KB) = 929352 + 0: The total amount of wall time = 215.021304 + 0: The maximum resident set size (KB) = 927512 Test 025 rap_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/rap_noah_sfcdiff_cires_ugwp_debug Checking test 026 rap_noah_sfcdiff_cires_ugwp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 277.293619 - 0: The maximum resident set size (KB) = 838564 + 0: The total amount of wall time = 282.475379 + 0: The maximum resident set size (KB) = 840848 Test 026 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/rap_progcld_thompson_debug Checking test 027 rap_progcld_thompson_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 183.369307 - 0: The maximum resident set size (KB) = 839888 + 0: The total amount of wall time = 179.857769 + 0: The maximum resident set size (KB) = 847120 Test 027 rap_progcld_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/rrfs_v1beta_debug Checking test 028 rrfs_v1beta_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 184.582705 - 0: The maximum resident set size (KB) = 838980 + 0: The total amount of wall time = 174.999761 + 0: The maximum resident set size (KB) = 839324 Test 028 rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/control_ras_debug Checking test 029 control_ras_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 104.959847 - 0: The maximum resident set size (KB) = 483452 + 0: The total amount of wall time = 105.187600 + 0: The maximum resident set size (KB) = 481660 Test 029 control_ras_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/control_stochy_debug Checking test 030 control_stochy_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 127.766346 - 0: The maximum resident set size (KB) = 478500 + 0: The total amount of wall time = 120.068527 + 0: The maximum resident set size (KB) = 477304 Test 030 control_stochy_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/control_debug_p8 Checking test 031 control_debug_p8 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 152.130624 - 0: The maximum resident set size (KB) = 1230908 + 0: The total amount of wall time = 122.092029 + 0: The maximum resident set size (KB) = 1231484 Test 031 control_debug_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 032 rrfs_smoke_conus13km_hrrr_warm_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 624.114263 - 0: The maximum resident set size (KB) = 684424 + 0: The total amount of wall time = 645.795496 + 0: The maximum resident set size (KB) = 683168 Test 032 rrfs_smoke_conus13km_hrrr_warm_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 033 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 694.017085 - 0: The maximum resident set size (KB) = 682296 + 0: The total amount of wall time = 768.581695 + 0: The maximum resident set size (KB) = 684756 Test 033 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/rrfs_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/rrfs_conus13km_hrrr_warm_debug Checking test 034 rrfs_conus13km_hrrr_warm_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 603.442040 - 0: The maximum resident set size (KB) = 659464 + 0: The total amount of wall time = 571.626702 + 0: The maximum resident set size (KB) = 661336 Test 034 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/control_wam_debug Checking test 035 control_wam_debug results .... - Comparing sfcf019.nc .........OK - Comparing atmf019.nc .........OK + Comparing sfcf019.nc ............ALT CHECK......OK + Comparing atmf019.nc ............ALT CHECK......OK - 0: The total amount of wall time = 187.484813 - 0: The maximum resident set size (KB) = 193960 + 0: The total amount of wall time = 191.343348 + 0: The maximum resident set size (KB) = 193844 Test 035 control_wam_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/rap_control_dyn32_phy32 Checking test 036 rap_control_dyn32_phy32 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 sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -1094,21 +1094,21 @@ Checking test 036 rap_control_dyn32_phy32 results .... Comparing 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.043207 - 0: The maximum resident set size (KB) = 684128 + 0: The total amount of wall time = 1489.037752 + 0: The maximum resident set size (KB) = 690176 Test 036 rap_control_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/hrrr_control_dyn32_phy32 Checking test 037 hrrr_control_dyn32_phy32 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 sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -1148,21 +1148,21 @@ Checking test 037 hrrr_control_dyn32_phy32 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 = 748.231629 - 0: The maximum resident set size (KB) = 688264 + 0: The total amount of wall time = 735.129877 + 0: The maximum resident set size (KB) = 683428 Test 037 hrrr_control_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/rap_2threads_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/rap_2threads_dyn32_phy32 Checking test 038 rap_2threads_dyn32_phy32 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 sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -1202,21 +1202,21 @@ Checking test 038 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1326.983352 - 0: The maximum resident set size (KB) = 730112 + 0: The total amount of wall time = 1351.164764 + 0: The maximum resident set size (KB) = 730424 Test 038 rap_2threads_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/hrrr_control_2threads_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/hrrr_control_2threads_dyn32_phy32 Checking test 039 hrrr_control_2threads_dyn32_phy32 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 sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -1256,21 +1256,21 @@ Checking test 039 hrrr_control_2threads_dyn32_phy32 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 = 674.956148 - 0: The maximum resident set size (KB) = 727296 + 0: The total amount of wall time = 650.862561 + 0: The maximum resident set size (KB) = 727012 Test 039 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/hrrr_control_decomp_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/hrrr_control_decomp_dyn32_phy32 Checking test 040 hrrr_control_decomp_dyn32_phy32 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 sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -1310,17 +1310,17 @@ Checking test 040 hrrr_control_decomp_dyn32_phy32 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 = 733.529282 - 0: The maximum resident set size (KB) = 683728 + 0: The total amount of wall time = 742.531554 + 0: The maximum resident set size (KB) = 683788 Test 040 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/rap_restart_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/rap_restart_dyn32_phy32 Checking test 041 rap_restart_dyn32_phy32 results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -1356,17 +1356,17 @@ Checking test 041 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1130.347800 - 0: The maximum resident set size (KB) = 516476 + 0: The total amount of wall time = 1057.796340 + 0: The maximum resident set size (KB) = 512268 Test 041 rap_restart_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/hrrr_control_restart_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/hrrr_control_restart_dyn32_phy32 Checking test 042 hrrr_control_restart_dyn32_phy32 results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.180000.coupler.res .........OK @@ -1402,21 +1402,21 @@ Checking test 042 hrrr_control_restart_dyn32_phy32 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 = 367.779231 - 0: The maximum resident set size (KB) = 508088 + 0: The total amount of wall time = 371.409650 + 0: The maximum resident set size (KB) = 509364 Test 042 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/rap_control_dyn64_phy32 Checking test 043 rap_control_dyn64_phy32 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 sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -1456,56 +1456,56 @@ Checking test 043 rap_control_dyn64_phy32 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 = 1103.311895 - 0: The maximum resident set size (KB) = 708184 + 0: The total amount of wall time = 1072.195048 + 0: The maximum resident set size (KB) = 711256 Test 043 rap_control_dyn64_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/rap_control_debug_dyn32_phy32 Checking test 044 rap_control_debug_dyn32_phy32 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 206.262744 - 0: The maximum resident set size (KB) = 704160 + 0: The total amount of wall time = 176.138654 + 0: The maximum resident set size (KB) = 700712 Test 044 rap_control_debug_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/hrrr_control_debug_dyn32_phy32 Checking test 045 hrrr_control_debug_dyn32_phy32 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 195.884664 - 0: The maximum resident set size (KB) = 701984 + 0: The total amount of wall time = 175.609709 + 0: The maximum resident set size (KB) = 704216 Test 045 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/rap_control_dyn64_phy32_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/rap_control_dyn64_phy32_debug Checking test 046 rap_control_dyn64_phy32_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 222.861246 - 0: The maximum resident set size (KB) = 720000 + 0: The total amount of wall time = 206.847789 + 0: The maximum resident set size (KB) = 720996 Test 046 rap_control_dyn64_phy32_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/cpld_control_p8 Checking test 047 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1570,14 +1570,14 @@ Checking test 047 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1779.198522 - 0: The maximum resident set size (KB) = 1429248 + 0: The total amount of wall time = 1682.864481 + 0: The maximum resident set size (KB) = 1430676 Test 047 cpld_control_p8 PASS Tries: 2 baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/cpld_control_nowave_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/cpld_control_nowave_noaero_p8 Checking test 048 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1639,14 +1639,14 @@ Checking test 048 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 1266.974921 - 0: The maximum resident set size (KB) = 1334964 + 0: The total amount of wall time = 1237.601064 + 0: The maximum resident set size (KB) = 1333788 Test 048 cpld_control_nowave_noaero_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/cpld_debug_p8 Checking test 049 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1699,25 +1699,25 @@ Checking test 049 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 981.240533 - 0: The maximum resident set size (KB) = 1447588 + 0: The total amount of wall time = 1210.042297 + 0: The maximum resident set size (KB) = 1444932 Test 049 cpld_debug_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3252/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/datm_cdeps_control_cfsr Checking test 050 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 213.144389 - 0: The maximum resident set size (KB) = 656344 + 0: The total amount of wall time = 173.723837 + 0: The maximum resident set size (KB) = 664656 Test 050 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Sat Mar 25 00:19:32 UTC 2023 -Elapsed time: 01h:11m:07s. Have a nice day! +Mon Mar 27 22:45:34 UTC 2023 +Elapsed time: 01h:11m:50s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 436792ed49c..4e4bc33704a 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,42 +1,42 @@ -Sat Mar 25 00:09:40 UTC 2023 +Mon Mar 27 21:17:28 UTC 2023 Start Regression test -Compile 001 elapsed time 605 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 606 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 560 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 221 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 204 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 515 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 508 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 699 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 535 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 496 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 011 elapsed time 470 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 433 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 582 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 621 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 611 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 569 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 226 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 203 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 524 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 520 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 696 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 530 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 495 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 011 elapsed time 479 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 441 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 585 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile 014 elapsed time 208 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 178 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 462 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 449 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 171 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 205 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 458 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 474 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 164 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug Compile 019 elapsed time 171 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 529 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 021 elapsed time 194 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 624 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 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 024 elapsed time 186 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 116 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 191 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 56 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 473 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 536 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 482 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 459 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 194 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 542 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 020 elapsed time 566 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 021 elapsed time 190 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 630 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 535 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 024 elapsed time 182 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 114 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 177 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 59 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 490 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 525 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 483 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 457 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 166 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 538 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8_mixedmode -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/cpld_control_p8_mixedmode +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -101,14 +101,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 313.786215 - 0: The maximum resident set size (KB) = 3141036 + 0: The total amount of wall time = 311.297690 + 0: The maximum resident set size (KB) = 3150912 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_gfsv17 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/cpld_control_gfsv17 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -172,14 +172,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 227.376864 - 0: The maximum resident set size (KB) = 1727244 + 0: The total amount of wall time = 225.072116 + 0: The maximum resident set size (KB) = 1733920 Test 002 cpld_control_gfsv17 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -244,14 +244,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 345.028305 - 0: The maximum resident set size (KB) = 3186560 + 0: The total amount of wall time = 336.917649 + 0: The maximum resident set size (KB) = 3182704 Test 003 cpld_control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/cpld_restart_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -304,15 +304,147 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 197.525826 - 0: The maximum resident set size (KB) = 3052176 + 0: The total amount of wall time = 194.710993 + 0: The maximum resident set size (KB) = 3053316 Test 004 cpld_restart_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/cpld_2threads_p8 -Checking test 005 cpld_2threads_p8 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/cpld_control_qr_p8 +Checking test 005 cpld_control_qr_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 337.633735 + 0: The maximum resident set size (KB) = 3190936 + +Test 005 cpld_control_qr_p8 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/cpld_restart_qr_p8 +Checking test 006 cpld_restart_qr_p8 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 201.765746 + 0: The maximum resident set size (KB) = 3065628 + +Test 006 cpld_restart_qr_p8 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/cpld_2threads_p8 +Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -364,15 +496,15 @@ Checking test 005 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 356.233390 - 0: The maximum resident set size (KB) = 3516784 + 0: The total amount of wall time = 348.370917 + 0: The maximum resident set size (KB) = 3515372 -Test 005 cpld_2threads_p8 PASS +Test 007 cpld_2threads_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/cpld_decomp_p8 -Checking test 006 cpld_decomp_p8 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/cpld_decomp_p8 +Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -424,15 +556,15 @@ Checking test 006 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 342.874675 - 0: The maximum resident set size (KB) = 3172716 + 0: The total amount of wall time = 338.753568 + 0: The maximum resident set size (KB) = 3170516 -Test 006 cpld_decomp_p8 PASS +Test 008 cpld_decomp_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/cpld_mpi_p8 -Checking test 007 cpld_mpi_p8 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/cpld_mpi_p8 +Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -484,15 +616,15 @@ Checking test 007 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 283.189696 - 0: The maximum resident set size (KB) = 3023244 + 0: The total amount of wall time = 278.055014 + 0: The maximum resident set size (KB) = 3027576 -Test 007 cpld_mpi_p8 PASS +Test 009 cpld_mpi_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_ciceC_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/cpld_control_ciceC_p8 -Checking test 008 cpld_control_ciceC_p8 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/cpld_control_ciceC_p8 +Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -556,15 +688,15 @@ Checking test 008 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 351.394061 - 0: The maximum resident set size (KB) = 3177888 + 0: The total amount of wall time = 341.953887 + 0: The maximum resident set size (KB) = 3182604 -Test 008 cpld_control_ciceC_p8 PASS +Test 010 cpld_control_ciceC_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/cpld_control_c192_p8 -Checking test 009 cpld_control_c192_p8 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/cpld_control_c192_p8 +Checking test 011 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK Comparing sfcf030.tile3.nc .........OK @@ -616,15 +748,15 @@ Checking test 009 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 590.943103 - 0: The maximum resident set size (KB) = 3261108 + 0: The total amount of wall time = 592.022490 + 0: The maximum resident set size (KB) = 3264920 -Test 009 cpld_control_c192_p8 PASS +Test 011 cpld_control_c192_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/cpld_restart_c192_p8 -Checking test 010 cpld_restart_c192_p8 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/cpld_restart_c192_p8 +Checking test 012 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK Comparing sfcf030.tile3.nc .........OK @@ -676,17 +808,17 @@ Checking test 010 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 408.816151 - 0: The maximum resident set size (KB) = 3158660 + 0: The total amount of wall time = 388.170614 + 0: The maximum resident set size (KB) = 3156724 -Test 010 cpld_restart_c192_p8 PASS +Test 012 cpld_restart_c192_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/cpld_bmark_p8 -Checking test 011 cpld_bmark_p8 results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/cpld_bmark_p8 +Checking test 013 cpld_bmark_p8 results .... + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atmf006.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF06 .........OK Comparing GFSPRS.GrbF06 .........OK Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK @@ -731,17 +863,17 @@ Checking test 011 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 719.020407 - 0: The maximum resident set size (KB) = 4047676 + 0: The total amount of wall time = 709.892974 + 0: The maximum resident set size (KB) = 4043308 -Test 011 cpld_bmark_p8 PASS +Test 013 cpld_bmark_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/cpld_restart_bmark_p8 -Checking test 012 cpld_restart_bmark_p8 results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/cpld_restart_bmark_p8 +Checking test 014 cpld_restart_bmark_p8 results .... + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atmf006.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF06 .........OK Comparing GFSPRS.GrbF06 .........OK Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK @@ -786,15 +918,15 @@ Checking test 012 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 443.384494 - 0: The maximum resident set size (KB) = 3984092 + 0: The total amount of wall time = 438.914474 + 0: The maximum resident set size (KB) = 3975720 -Test 012 cpld_restart_bmark_p8 PASS +Test 014 cpld_restart_bmark_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/cpld_control_noaero_p8 -Checking test 013 cpld_control_noaero_p8 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/cpld_control_noaero_p8 +Checking test 015 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -857,15 +989,15 @@ Checking test 013 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 265.619749 - 0: The maximum resident set size (KB) = 1723924 + 0: The total amount of wall time = 263.997235 + 0: The maximum resident set size (KB) = 1721884 -Test 013 cpld_control_noaero_p8 PASS +Test 015 cpld_control_noaero_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/cpld_control_nowave_noaero_p8 -Checking test 014 cpld_control_nowave_noaero_p8 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/cpld_control_nowave_noaero_p8 +Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -926,15 +1058,15 @@ Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 263.578710 - 0: The maximum resident set size (KB) = 1760216 + 0: The total amount of wall time = 259.519719 + 0: The maximum resident set size (KB) = 1763696 -Test 014 cpld_control_nowave_noaero_p8 PASS +Test 016 cpld_control_nowave_noaero_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/cpld_debug_p8 -Checking test 015 cpld_debug_p8 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/cpld_debug_p8 +Checking test 017 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -986,15 +1118,15 @@ Checking test 015 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 649.401149 - 0: The maximum resident set size (KB) = 3243372 + 0: The total amount of wall time = 656.619401 + 0: The maximum resident set size (KB) = 3247324 -Test 015 cpld_debug_p8 PASS +Test 017 cpld_debug_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_debug_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/cpld_debug_noaero_p8 -Checking test 016 cpld_debug_noaero_p8 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/cpld_debug_noaero_p8 +Checking test 018 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -1045,15 +1177,15 @@ Checking test 016 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 403.665335 - 0: The maximum resident set size (KB) = 1752716 + 0: The total amount of wall time = 412.476038 + 0: The maximum resident set size (KB) = 1735496 -Test 016 cpld_debug_noaero_p8 PASS +Test 018 cpld_debug_noaero_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_noaero_p8_agrid -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/cpld_control_noaero_p8_agrid -Checking test 017 cpld_control_noaero_p8_agrid results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/cpld_control_noaero_p8_agrid +Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1114,15 +1246,15 @@ Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 269.424913 - 0: The maximum resident set size (KB) = 1768148 + 0: The total amount of wall time = 266.550487 + 0: The maximum resident set size (KB) = 1759516 -Test 017 cpld_control_noaero_p8_agrid PASS +Test 019 cpld_control_noaero_p8_agrid PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/cpld_control_c48 -Checking test 018 cpld_control_c48 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/cpld_control_c48 +Checking test 020 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -1171,15 +1303,15 @@ Checking test 018 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 578.940306 - 0: The maximum resident set size (KB) = 2803040 + 0: The total amount of wall time = 576.524233 + 0: The maximum resident set size (KB) = 2806928 -Test 018 cpld_control_c48 PASS +Test 020 cpld_control_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/cpld_warmstart_c48 -Checking test 019 cpld_warmstart_c48 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/cpld_warmstart_c48 +Checking test 021 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK Comparing sfcf006.tile3.nc .........OK @@ -1228,15 +1360,15 @@ Checking test 019 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 154.041301 - 0: The maximum resident set size (KB) = 2796776 + 0: The total amount of wall time = 151.512645 + 0: The maximum resident set size (KB) = 2801180 -Test 019 cpld_warmstart_c48 PASS +Test 021 cpld_warmstart_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/cpld_restart_c48 -Checking test 020 cpld_restart_c48 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/cpld_restart_c48 +Checking test 022 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK Comparing sfcf006.tile3.nc .........OK @@ -1285,15 +1417,15 @@ Checking test 020 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 81.895067 - 0: The maximum resident set size (KB) = 2244544 + 0: The total amount of wall time = 82.203909 + 0: The maximum resident set size (KB) = 2233196 -Test 020 cpld_restart_c48 PASS +Test 022 cpld_restart_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/cpld_control_p8_faster -Checking test 021 cpld_control_p8_faster results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/cpld_control_p8_faster +Checking test 023 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1357,15 +1489,15 @@ Checking test 021 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 322.791252 - 0: The maximum resident set size (KB) = 3181712 + 0: The total amount of wall time = 316.470653 + 0: The maximum resident set size (KB) = 3183876 -Test 021 cpld_control_p8_faster PASS +Test 023 cpld_control_p8_faster PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/control_CubedSphereGrid -Checking test 022 control_CubedSphereGrid results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_CubedSphereGrid +Checking test 024 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1391,69 +1523,69 @@ Checking test 022 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 130.405176 - 0: The maximum resident set size (KB) = 629680 + 0: The total amount of wall time = 132.498373 + 0: The maximum resident set size (KB) = 633224 -Test 022 control_CubedSphereGrid PASS +Test 024 control_CubedSphereGrid PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/control_CubedSphereGrid_parallel -Checking test 023 control_CubedSphereGrid_parallel results .... - Comparing sfcf000.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_CubedSphereGrid_parallel +Checking test 025 control_CubedSphereGrid_parallel results .... + Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK - 0: The total amount of wall time = 129.257395 - 0: The maximum resident set size (KB) = 633408 + 0: The total amount of wall time = 130.599584 + 0: The maximum resident set size (KB) = 633424 -Test 023 control_CubedSphereGrid_parallel PASS +Test 025 control_CubedSphereGrid_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_latlon -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/control_latlon -Checking test 024 control_latlon results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_latlon +Checking test 026 control_latlon results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 133.451384 - 0: The maximum resident set size (KB) = 628708 + 0: The total amount of wall time = 135.756589 + 0: The maximum resident set size (KB) = 640360 -Test 024 control_latlon PASS +Test 026 control_latlon PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wrtGauss_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/control_wrtGauss_netcdf_parallel -Checking test 025 control_wrtGauss_netcdf_parallel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_wrtGauss_netcdf_parallel +Checking test 027 control_wrtGauss_netcdf_parallel results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing 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 = 138.699023 - 0: The maximum resident set size (KB) = 636860 + 0: The total amount of wall time = 138.980495 + 0: The maximum resident set size (KB) = 635292 -Test 025 control_wrtGauss_netcdf_parallel PASS +Test 027 control_wrtGauss_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/control_c48 -Checking test 026 control_c48 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_c48 +Checking test 028 control_c48 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -1487,55 +1619,55 @@ Checking test 026 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 365.870682 -0: The maximum resident set size (KB) = 822956 +0: The total amount of wall time = 372.387409 +0: The maximum resident set size (KB) = 829564 -Test 026 control_c48 PASS +Test 028 control_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/control_c192 -Checking test 027 control_c192 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_c192 +Checking test 029 control_c192 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 526.774512 - 0: The maximum resident set size (KB) = 772316 + 0: The total amount of wall time = 527.507770 + 0: The maximum resident set size (KB) = 764660 -Test 027 control_c192 PASS +Test 029 control_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/control_c384 -Checking test 028 control_c384 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_c384 +Checking test 030 control_c384 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 534.090646 - 0: The maximum resident set size (KB) = 1272432 + 0: The total amount of wall time = 526.102697 + 0: The maximum resident set size (KB) = 1263880 -Test 028 control_c384 PASS +Test 030 control_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c384gdas -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/control_c384gdas -Checking test 029 control_c384gdas results .... - Comparing sfcf000.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf006.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_c384gdas +Checking test 031 control_c384gdas results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf006.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF06 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -1573,71 +1705,71 @@ Checking test 029 control_c384gdas 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 = 470.908317 - 0: The maximum resident set size (KB) = 1373328 + 0: The total amount of wall time = 456.461960 + 0: The maximum resident set size (KB) = 1380488 -Test 029 control_c384gdas PASS +Test 031 control_c384gdas PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/control_stochy -Checking test 030 control_stochy results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_stochy +Checking test 032 control_stochy results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 88.830470 - 0: The maximum resident set size (KB) = 633608 + 0: The total amount of wall time = 89.229661 + 0: The maximum resident set size (KB) = 639096 -Test 030 control_stochy PASS +Test 032 control_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/control_stochy_restart -Checking test 031 control_stochy_restart results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_stochy_restart +Checking test 033 control_stochy_restart results .... + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 49.623716 - 0: The maximum resident set size (KB) = 490076 + 0: The total amount of wall time = 47.496012 + 0: The maximum resident set size (KB) = 490812 -Test 031 control_stochy_restart PASS +Test 033 control_stochy_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/control_lndp -Checking test 032 control_lndp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_lndp +Checking test 034 control_lndp results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 81.734728 - 0: The maximum resident set size (KB) = 633412 + 0: The total amount of wall time = 84.949754 + 0: The maximum resident set size (KB) = 635844 -Test 032 control_lndp PASS +Test 034 control_lndp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_iovr4 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/control_iovr4 -Checking test 033 control_iovr4 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_iovr4 +Checking test 035 control_iovr4 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1645,21 +1777,21 @@ Checking test 033 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.623653 - 0: The maximum resident set size (KB) = 631848 + 0: The total amount of wall time = 138.864754 + 0: The maximum resident set size (KB) = 636496 -Test 033 control_iovr4 PASS +Test 035 control_iovr4 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_iovr5 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/control_iovr5 -Checking test 034 control_iovr5 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_iovr5 +Checking test 036 control_iovr5 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1667,21 +1799,21 @@ Checking test 034 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.858572 - 0: The maximum resident set size (KB) = 630228 + 0: The total amount of wall time = 137.544502 + 0: The maximum resident set size (KB) = 635032 -Test 034 control_iovr5 PASS +Test 036 control_iovr5 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/control_p8 -Checking test 035 control_p8 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_p8 +Checking test 037 control_p8 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1721,43 +1853,17 @@ Checking test 035 control_p8 results .... Comparing 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.097269 - 0: The maximum resident set size (KB) = 1596032 + 0: The total amount of wall time = 172.129959 + 0: The maximum resident set size (KB) = 1602120 -Test 035 control_p8 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/control_p8_lndp -Checking test 036 control_p8_lndp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing sfcf048.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing atmf048.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSFLX.GrbF48 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing GFSPRS.GrbF48 .........OK - - 0: The total amount of wall time = 312.704964 - 0: The maximum resident set size (KB) = 1613496 - -Test 036 control_p8_lndp PASS +Test 037 control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/control_restart_p8 -Checking test 037 control_restart_p8 results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_restart_p8 +Checking test 038 control_restart_p8 results .... + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -1793,19 +1899,119 @@ Checking test 037 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 87.210811 - 0: The maximum resident set size (KB) = 881408 + 0: The total amount of wall time = 88.909114 + 0: The maximum resident set size (KB) = 875564 -Test 037 control_restart_p8 PASS +Test 038 control_restart_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/control_decomp_p8 -Checking test 038 control_decomp_p8 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_qr_p8 +Checking test 039 control_qr_p8 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + + 0: The total amount of wall time = 168.411735 + 0: The maximum resident set size (KB) = 1609912 + +Test 039 control_qr_p8 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_restart_qr_p8 +Checking test 040 control_restart_qr_p8 results .... + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + + 0: The total amount of wall time = 89.474836 + 0: The maximum resident set size (KB) = 871168 + +Test 040 control_restart_qr_p8 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_decomp_p8 +Checking test 041 control_decomp_p8 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -1843,19 +2049,19 @@ Checking test 038 control_decomp_p8 results .... Comparing 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.312094 - 0: The maximum resident set size (KB) = 1590984 + 0: The total amount of wall time = 172.365778 + 0: The maximum resident set size (KB) = 1591824 -Test 038 control_decomp_p8 PASS +Test 041 control_decomp_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/control_2threads_p8 -Checking test 039 control_2threads_p8 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_2threads_p8 +Checking test 042 control_2threads_p8 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -1893,21 +2099,47 @@ Checking test 039 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 165.868663 - 0: The maximum resident set size (KB) = 1686320 + 0: The total amount of wall time = 156.935705 + 0: The maximum resident set size (KB) = 1697684 -Test 039 control_2threads_p8 PASS +Test 042 control_2threads_p8 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_lndp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_p8_lndp +Checking test 043 control_p8_lndp results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing sfcf048.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK + Comparing atmf048.nc ............ALT CHECK......OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSFLX.GrbF48 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing GFSPRS.GrbF48 .........OK + + 0: The total amount of wall time = 310.921368 + 0: The maximum resident set size (KB) = 1609960 + +Test 043 control_p8_lndp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/control_p8_rrtmgp -Checking test 040 control_p8_rrtmgp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_p8_rrtmgp +Checking test 044 control_p8_rrtmgp results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1947,21 +2179,21 @@ Checking test 040 control_p8_rrtmgp results .... Comparing 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.302844 - 0: The maximum resident set size (KB) = 1674636 + 0: The total amount of wall time = 225.555554 + 0: The maximum resident set size (KB) = 1675916 -Test 040 control_p8_rrtmgp PASS +Test 044 control_p8_rrtmgp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_mynn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/control_p8_mynn -Checking test 041 control_p8_mynn results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_p8_mynn +Checking test 045 control_p8_mynn results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2001,21 +2233,21 @@ Checking test 041 control_p8_mynn results .... Comparing 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.106795 - 0: The maximum resident set size (KB) = 1610984 + 0: The total amount of wall time = 169.336444 + 0: The maximum resident set size (KB) = 1601000 -Test 041 control_p8_mynn PASS +Test 045 control_p8_mynn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/merra2_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/merra2_thompson -Checking test 042 merra2_thompson results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/merra2_thompson +Checking test 046 merra2_thompson results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2055,154 +2287,186 @@ Checking test 042 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 195.263466 - 0: The maximum resident set size (KB) = 1611368 + 0: The total amount of wall time = 192.096550 + 0: The maximum resident set size (KB) = 1609304 + +Test 046 merra2_thompson PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/regional_control +Checking test 047 regional_control results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf006.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK + + 0: The total amount of wall time = 301.398779 + 0: The maximum resident set size (KB) = 871272 -Test 042 merra2_thompson PASS +Test 047 regional_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/regional_control -Checking test 043 regional_control results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/regional_restart +Checking test 048 regional_restart results .... + Comparing dynf006.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF06 .........OK + + 0: The total amount of wall time = 152.819680 + 0: The maximum resident set size (KB) = 865532 + +Test 048 regional_restart PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/regional_control_qr +Checking test 049 regional_control_qr results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf006.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 300.541256 - 0: The maximum resident set size (KB) = 868208 + 0: The total amount of wall time = 298.985841 + 0: The maximum resident set size (KB) = 870480 -Test 043 regional_control PASS +Test 049 regional_control_qr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/regional_restart -Checking test 044 regional_restart results .... - Comparing dynf006.nc .........OK - Comparing phyf006.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/regional_restart_qr +Checking test 050 regional_restart_qr results .... + Comparing dynf006.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 152.020408 - 0: The maximum resident set size (KB) = 866064 + 0: The total amount of wall time = 154.315642 + 0: The maximum resident set size (KB) = 867940 -Test 044 regional_restart PASS +Test 050 regional_restart_qr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/regional_decomp -Checking test 045 regional_decomp results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/regional_decomp +Checking test 051 regional_decomp results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf006.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 315.151301 - 0: The maximum resident set size (KB) = 863200 + 0: The total amount of wall time = 314.646691 + 0: The maximum resident set size (KB) = 862584 -Test 045 regional_decomp PASS +Test 051 regional_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/regional_2threads -Checking test 046 regional_2threads results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/regional_2threads +Checking test 052 regional_2threads results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf006.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 185.637252 - 0: The maximum resident set size (KB) = 844640 + 0: The total amount of wall time = 183.078749 + 0: The maximum resident set size (KB) = 850252 -Test 046 regional_2threads PASS +Test 052 regional_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_noquilt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/regional_noquilt -Checking test 047 regional_noquilt results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/regional_noquilt +Checking test 053 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 321.281916 - 0: The maximum resident set size (KB) = 859148 + 0: The total amount of wall time = 318.777082 + 0: The maximum resident set size (KB) = 855972 -Test 047 regional_noquilt PASS +Test 053 regional_noquilt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/regional_netcdf_parallel -Checking test 048 regional_netcdf_parallel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/regional_netcdf_parallel +Checking test 054 regional_netcdf_parallel results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf006.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 297.363323 - 0: The maximum resident set size (KB) = 862856 + 0: The total amount of wall time = 293.358070 + 0: The maximum resident set size (KB) = 871372 -Test 048 regional_netcdf_parallel PASS +Test 054 regional_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/regional_2dwrtdecomp -Checking test 049 regional_2dwrtdecomp results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/regional_2dwrtdecomp +Checking test 055 regional_2dwrtdecomp results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf006.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 298.526813 - 0: The maximum resident set size (KB) = 869264 + 0: The total amount of wall time = 299.570987 + 0: The maximum resident set size (KB) = 874056 -Test 049 regional_2dwrtdecomp PASS +Test 055 regional_2dwrtdecomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/fv3_regional_wofs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/regional_wofs -Checking test 050 regional_wofs results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/regional_wofs +Checking test 056 regional_wofs results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf006.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 376.327145 - 0: The maximum resident set size (KB) = 629508 + 0: The total amount of wall time = 376.921161 + 0: The maximum resident set size (KB) = 630508 -Test 050 regional_wofs PASS +Test 056 regional_wofs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/rap_control -Checking test 051 rap_control results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/rap_control +Checking test 057 rap_control results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2242,39 +2506,39 @@ Checking test 051 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 459.832324 - 0: The maximum resident set size (KB) = 1073268 + 0: The total amount of wall time = 458.547719 + 0: The maximum resident set size (KB) = 1056364 -Test 051 rap_control PASS +Test 057 rap_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_spp_sppt_shum_skeb -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/regional_spp_sppt_shum_skeb -Checking test 052 regional_spp_sppt_shum_skeb results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/regional_spp_sppt_shum_skeb +Checking test 058 regional_spp_sppt_shum_skeb results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf001.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf001.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF01 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 286.377750 - 0: The maximum resident set size (KB) = 1171452 + 0: The total amount of wall time = 244.152938 + 0: The maximum resident set size (KB) = 1173876 -Test 052 regional_spp_sppt_shum_skeb PASS +Test 058 regional_spp_sppt_shum_skeb PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/rap_decomp -Checking test 053 rap_decomp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/rap_decomp +Checking test 059 rap_decomp results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2314,21 +2578,21 @@ Checking test 053 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 479.865502 - 0: The maximum resident set size (KB) = 998304 + 0: The total amount of wall time = 482.814443 + 0: The maximum resident set size (KB) = 997708 -Test 053 rap_decomp PASS +Test 059 rap_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/rap_2threads -Checking test 054 rap_2threads results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/rap_2threads +Checking test 060 rap_2threads results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2368,17 +2632,17 @@ Checking test 054 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 440.452084 - 0: The maximum resident set size (KB) = 1124024 + 0: The total amount of wall time = 432.452259 + 0: The maximum resident set size (KB) = 1131924 -Test 054 rap_2threads PASS +Test 060 rap_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/rap_restart -Checking test 055 rap_restart results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/rap_restart +Checking test 061 rap_restart results .... + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -2414,21 +2678,21 @@ Checking test 055 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 231.392374 - 0: The maximum resident set size (KB) = 976068 + 0: The total amount of wall time = 229.853264 + 0: The maximum resident set size (KB) = 961344 -Test 055 rap_restart PASS +Test 061 rap_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/rap_sfcdiff -Checking test 056 rap_sfcdiff 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 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/rap_sfcdiff +Checking test 062 rap_sfcdiff results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2468,21 +2732,21 @@ Checking test 056 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 450.673787 - 0: The maximum resident set size (KB) = 1059016 + 0: The total amount of wall time = 458.510975 + 0: The maximum resident set size (KB) = 1057168 -Test 056 rap_sfcdiff PASS +Test 062 rap_sfcdiff PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/rap_sfcdiff_decomp -Checking test 057 rap_sfcdiff_decomp 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 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/rap_sfcdiff_decomp +Checking test 063 rap_sfcdiff_decomp results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2522,17 +2786,17 @@ Checking test 057 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 477.218550 - 0: The maximum resident set size (KB) = 1003932 + 0: The total amount of wall time = 479.760345 + 0: The maximum resident set size (KB) = 1001852 -Test 057 rap_sfcdiff_decomp PASS +Test 063 rap_sfcdiff_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/rap_sfcdiff_restart -Checking test 058 rap_sfcdiff_restart results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/rap_sfcdiff_restart +Checking test 064 rap_sfcdiff_restart results .... + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -2568,21 +2832,21 @@ Checking test 058 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 341.009593 - 0: The maximum resident set size (KB) = 983348 + 0: The total amount of wall time = 340.063754 + 0: The maximum resident set size (KB) = 988092 -Test 058 rap_sfcdiff_restart PASS +Test 064 rap_sfcdiff_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/hrrr_control -Checking test 059 hrrr_control 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 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/hrrr_control +Checking test 065 hrrr_control results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2622,21 +2886,21 @@ Checking test 059 hrrr_control results .... Comparing 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.171222 - 0: The maximum resident set size (KB) = 1055584 + 0: The total amount of wall time = 442.527532 + 0: The maximum resident set size (KB) = 1054968 -Test 059 hrrr_control PASS +Test 065 hrrr_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/hrrr_control_decomp -Checking test 060 hrrr_control_decomp 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 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/hrrr_control_decomp +Checking test 066 hrrr_control_decomp results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2676,21 +2940,21 @@ Checking test 060 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 459.763339 - 0: The maximum resident set size (KB) = 1000596 + 0: The total amount of wall time = 466.122190 + 0: The maximum resident set size (KB) = 1004000 -Test 060 hrrr_control_decomp PASS +Test 066 hrrr_control_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/hrrr_control_2threads -Checking test 061 hrrr_control_2threads 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 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/hrrr_control_2threads +Checking test 067 hrrr_control_2threads results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2730,17 +2994,17 @@ Checking test 061 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 419.628185 - 0: The maximum resident set size (KB) = 1133064 + 0: The total amount of wall time = 418.602371 + 0: The maximum resident set size (KB) = 1139696 -Test 061 hrrr_control_2threads PASS +Test 067 hrrr_control_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/hrrr_control_restart -Checking test 062 hrrr_control_restart results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/hrrr_control_restart +Checking test 068 hrrr_control_restart results .... + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -2776,21 +3040,21 @@ Checking test 062 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 328.042251 - 0: The maximum resident set size (KB) = 984736 + 0: The total amount of wall time = 331.200863 + 0: The maximum resident set size (KB) = 977420 -Test 062 hrrr_control_restart PASS +Test 068 hrrr_control_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/rrfs_v1beta -Checking test 063 rrfs_v1beta 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 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/rrfs_v1beta +Checking test 069 rrfs_v1beta results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2830,21 +3094,21 @@ Checking test 063 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 453.002185 - 0: The maximum resident set size (KB) = 1049472 + 0: The total amount of wall time = 456.149564 + 0: The maximum resident set size (KB) = 1056792 -Test 063 rrfs_v1beta PASS +Test 069 rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1nssl -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/rrfs_v1nssl -Checking test 064 rrfs_v1nssl 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 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/rrfs_v1nssl +Checking test 070 rrfs_v1nssl results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2852,21 +3116,21 @@ Checking test 064 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 542.548042 - 0: The maximum resident set size (KB) = 693948 + 0: The total amount of wall time = 538.075443 + 0: The maximum resident set size (KB) = 692888 -Test 064 rrfs_v1nssl PASS +Test 070 rrfs_v1nssl PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/rrfs_v1nssl_nohailnoccn -Checking test 065 rrfs_v1nssl_nohailnoccn 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 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/rrfs_v1nssl_nohailnoccn +Checking test 071 rrfs_v1nssl_nohailnoccn results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2874,151 +3138,151 @@ Checking test 065 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 522.768214 - 0: The maximum resident set size (KB) = 756428 + 0: The total amount of wall time = 523.261386 + 0: The maximum resident set size (KB) = 751212 -Test 065 rrfs_v1nssl_nohailnoccn PASS +Test 071 rrfs_v1nssl_nohailnoccn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/rrfs_smoke_conus13km_hrrr_warm -Checking test 066 rrfs_smoke_conus13km_hrrr_warm 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 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/rrfs_smoke_conus13km_hrrr_warm +Checking test 072 rrfs_smoke_conus13km_hrrr_warm results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing sfcf002.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK + Comparing atmf002.nc ............ALT CHECK......OK - 0: The total amount of wall time = 144.885677 - 0: The maximum resident set size (KB) = 1028664 + 0: The total amount of wall time = 146.110115 + 0: The maximum resident set size (KB) = 986896 -Test 066 rrfs_smoke_conus13km_hrrr_warm PASS +Test 072 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/rrfs_smoke_conus13km_hrrr_warm_2threads -Checking test 067 rrfs_smoke_conus13km_hrrr_warm_2threads 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 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/rrfs_smoke_conus13km_hrrr_warm_2threads +Checking test 073 rrfs_smoke_conus13km_hrrr_warm_2threads results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing sfcf002.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK + Comparing atmf002.nc ............ALT CHECK......OK - 0: The total amount of wall time = 91.228500 - 0: The maximum resident set size (KB) = 895844 + 0: The total amount of wall time = 89.637330 + 0: The maximum resident set size (KB) = 934368 -Test 067 rrfs_smoke_conus13km_hrrr_warm_2threads PASS +Test 073 rrfs_smoke_conus13km_hrrr_warm_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/rrfs_conus13km_hrrr_warm -Checking test 068 rrfs_conus13km_hrrr_warm 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 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/rrfs_conus13km_hrrr_warm +Checking test 074 rrfs_conus13km_hrrr_warm results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing sfcf002.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK + Comparing atmf002.nc ............ALT CHECK......OK - 0: The total amount of wall time = 128.717941 - 0: The maximum resident set size (KB) = 947132 + 0: The total amount of wall time = 128.572723 + 0: The maximum resident set size (KB) = 936048 -Test 068 rrfs_conus13km_hrrr_warm PASS +Test 074 rrfs_conus13km_hrrr_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/rrfs_smoke_conus13km_radar_tten_warm -Checking test 069 rrfs_smoke_conus13km_radar_tten_warm 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 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/rrfs_smoke_conus13km_radar_tten_warm +Checking test 075 rrfs_smoke_conus13km_radar_tten_warm results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing sfcf002.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK + Comparing atmf002.nc ............ALT CHECK......OK - 0: The total amount of wall time = 146.366819 - 0: The maximum resident set size (KB) = 993652 + 0: The total amount of wall time = 146.921529 + 0: The maximum resident set size (KB) = 986928 -Test 069 rrfs_smoke_conus13km_radar_tten_warm PASS +Test 075 rrfs_smoke_conus13km_radar_tten_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmg -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/control_csawmg -Checking test 070 control_csawmg results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_csawmg +Checking test 076 control_csawmg results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 342.654545 - 0: The maximum resident set size (KB) = 730516 + 0: The total amount of wall time = 343.647509 + 0: The maximum resident set size (KB) = 731464 -Test 070 control_csawmg PASS +Test 076 control_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmgt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/control_csawmgt -Checking test 071 control_csawmgt results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_csawmgt +Checking test 077 control_csawmgt results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 336.974004 - 0: The maximum resident set size (KB) = 727200 + 0: The total amount of wall time = 340.035159 + 0: The maximum resident set size (KB) = 724192 -Test 071 control_csawmgt PASS +Test 077 control_csawmgt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/control_ras -Checking test 072 control_ras results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_ras +Checking test 078 control_ras results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 181.265690 - 0: The maximum resident set size (KB) = 721360 + 0: The total amount of wall time = 181.343783 + 0: The maximum resident set size (KB) = 716640 -Test 072 control_ras PASS +Test 078 control_ras PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wam -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/control_wam -Checking test 073 control_wam results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_wam +Checking test 079 control_wam results .... + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK - 0: The total amount of wall time = 113.615306 - 0: The maximum resident set size (KB) = 634892 + 0: The total amount of wall time = 111.645892 + 0: The maximum resident set size (KB) = 645196 -Test 073 control_wam PASS +Test 079 control_wam PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/control_p8_faster -Checking test 074 control_p8_faster results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_p8_faster +Checking test 080 control_p8_faster results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -3058,75 +3322,75 @@ Checking test 074 control_p8_faster results .... Comparing 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.181662 - 0: The maximum resident set size (KB) = 1600156 + 0: The total amount of wall time = 152.831048 + 0: The maximum resident set size (KB) = 1601332 -Test 074 control_p8_faster PASS +Test 080 control_p8_faster PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/regional_control_faster -Checking test 075 regional_control_faster results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/regional_control_faster +Checking test 081 regional_control_faster results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf006.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 271.284848 - 0: The maximum resident set size (KB) = 870212 + 0: The total amount of wall time = 274.228033 + 0: The maximum resident set size (KB) = 872260 -Test 075 regional_control_faster PASS +Test 081 regional_control_faster PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/rrfs_smoke_conus13km_hrrr_warm_debug -Checking test 076 rrfs_smoke_conus13km_hrrr_warm_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/rrfs_smoke_conus13km_hrrr_warm_debug +Checking test 082 rrfs_smoke_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 827.042179 - 0: The maximum resident set size (KB) = 1062400 + 0: The total amount of wall time = 831.854324 + 0: The maximum resident set size (KB) = 1068040 -Test 076 rrfs_smoke_conus13km_hrrr_warm_debug PASS +Test 082 rrfs_smoke_conus13km_hrrr_warm_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/rrfs_smoke_conus13km_hrrr_warm_debug_2threads -Checking test 077 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +Checking test 083 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 488.177944 - 0: The maximum resident set size (KB) = 975320 + 0: The total amount of wall time = 475.697730 + 0: The maximum resident set size (KB) = 977100 -Test 077 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS +Test 083 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/rrfs_conus13km_hrrr_warm_debug -Checking test 078 rrfs_conus13km_hrrr_warm_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/rrfs_conus13km_hrrr_warm_debug +Checking test 084 rrfs_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 743.690676 - 0: The maximum resident set size (KB) = 971556 + 0: The total amount of wall time = 741.236944 + 0: The maximum resident set size (KB) = 975800 -Test 078 rrfs_conus13km_hrrr_warm_debug PASS +Test 084 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/control_CubedSphereGrid_debug -Checking test 079 control_CubedSphereGrid_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_CubedSphereGrid_debug +Checking test 085 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3152,359 +3416,359 @@ Checking test 079 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 160.753690 - 0: The maximum resident set size (KB) = 793148 + 0: The total amount of wall time = 162.959587 + 0: The maximum resident set size (KB) = 791944 -Test 079 control_CubedSphereGrid_debug PASS +Test 085 control_CubedSphereGrid_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/control_wrtGauss_netcdf_parallel_debug -Checking test 080 control_wrtGauss_netcdf_parallel_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_wrtGauss_netcdf_parallel_debug +Checking test 086 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 151.871270 - 0: The maximum resident set size (KB) = 793640 + 0: The total amount of wall time = 152.595040 + 0: The maximum resident set size (KB) = 796428 -Test 080 control_wrtGauss_netcdf_parallel_debug PASS +Test 086 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/control_stochy_debug -Checking test 081 control_stochy_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_stochy_debug +Checking test 087 control_stochy_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 168.321895 - 0: The maximum resident set size (KB) = 804596 + 0: The total amount of wall time = 172.112869 + 0: The maximum resident set size (KB) = 801472 -Test 081 control_stochy_debug PASS +Test 087 control_stochy_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/control_lndp_debug -Checking test 082 control_lndp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_lndp_debug +Checking test 088 control_lndp_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 154.261004 - 0: The maximum resident set size (KB) = 795116 + 0: The total amount of wall time = 155.192578 + 0: The maximum resident set size (KB) = 800100 -Test 082 control_lndp_debug PASS +Test 088 control_lndp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmg_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/control_csawmg_debug -Checking test 083 control_csawmg_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_csawmg_debug +Checking test 089 control_csawmg_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 233.738376 - 0: The maximum resident set size (KB) = 845204 + 0: The total amount of wall time = 232.978062 + 0: The maximum resident set size (KB) = 848496 -Test 083 control_csawmg_debug PASS +Test 089 control_csawmg_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmgt_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/control_csawmgt_debug -Checking test 084 control_csawmgt_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_csawmgt_debug +Checking test 090 control_csawmgt_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 230.232167 - 0: The maximum resident set size (KB) = 840152 + 0: The total amount of wall time = 227.688453 + 0: The maximum resident set size (KB) = 843580 -Test 084 control_csawmgt_debug PASS +Test 090 control_csawmgt_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/control_ras_debug -Checking test 085 control_ras_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_ras_debug +Checking test 091 control_ras_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 153.721596 - 0: The maximum resident set size (KB) = 804676 + 0: The total amount of wall time = 151.896076 + 0: The maximum resident set size (KB) = 807936 -Test 085 control_ras_debug PASS +Test 091 control_ras_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/control_diag_debug -Checking test 086 control_diag_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_diag_debug +Checking test 092 control_diag_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 160.221209 - 0: The maximum resident set size (KB) = 850672 + 0: The total amount of wall time = 161.482683 + 0: The maximum resident set size (KB) = 855744 -Test 086 control_diag_debug PASS +Test 092 control_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/control_debug_p8 -Checking test 087 control_debug_p8 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_debug_p8 +Checking test 093 control_debug_p8 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 170.799814 - 0: The maximum resident set size (KB) = 1620816 + 0: The total amount of wall time = 168.746689 + 0: The maximum resident set size (KB) = 1622568 -Test 087 control_debug_p8 PASS +Test 093 control_debug_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/regional_debug -Checking test 088 regional_debug results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/regional_debug +Checking test 094 regional_debug results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf001.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 955.399320 - 0: The maximum resident set size (KB) = 881936 + 0: The total amount of wall time = 973.369670 + 0: The maximum resident set size (KB) = 885096 -Test 088 regional_debug PASS +Test 094 regional_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/rap_control_debug -Checking test 089 rap_control_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/rap_control_debug +Checking test 095 rap_control_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 272.918430 - 0: The maximum resident set size (KB) = 1174432 + 0: The total amount of wall time = 275.396253 + 0: The maximum resident set size (KB) = 1173464 -Test 089 rap_control_debug PASS +Test 095 rap_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/hrrr_control_debug -Checking test 090 hrrr_control_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/hrrr_control_debug +Checking test 096 hrrr_control_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 272.909810 - 0: The maximum resident set size (KB) = 1172884 + 0: The total amount of wall time = 265.224072 + 0: The maximum resident set size (KB) = 1178948 -Test 090 hrrr_control_debug PASS +Test 096 hrrr_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/rap_unified_drag_suite_debug -Checking test 091 rap_unified_drag_suite_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/rap_unified_drag_suite_debug +Checking test 097 rap_unified_drag_suite_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 276.295864 - 0: The maximum resident set size (KB) = 1176620 + 0: The total amount of wall time = 275.842562 + 0: The maximum resident set size (KB) = 1179196 -Test 091 rap_unified_drag_suite_debug PASS +Test 097 rap_unified_drag_suite_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/rap_diag_debug -Checking test 092 rap_diag_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/rap_diag_debug +Checking test 098 rap_diag_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 290.250846 - 0: The maximum resident set size (KB) = 1261596 + 0: The total amount of wall time = 290.481863 + 0: The maximum resident set size (KB) = 1260968 -Test 092 rap_diag_debug PASS +Test 098 rap_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/rap_cires_ugwp_debug -Checking test 093 rap_cires_ugwp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/rap_cires_ugwp_debug +Checking test 099 rap_cires_ugwp_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 280.491429 - 0: The maximum resident set size (KB) = 1175120 + 0: The total amount of wall time = 277.188204 + 0: The maximum resident set size (KB) = 1180112 -Test 093 rap_cires_ugwp_debug PASS +Test 099 rap_cires_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/rap_unified_ugwp_debug -Checking test 094 rap_unified_ugwp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/rap_unified_ugwp_debug +Checking test 100 rap_unified_ugwp_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 278.297201 - 0: The maximum resident set size (KB) = 1176592 + 0: The total amount of wall time = 280.339385 + 0: The maximum resident set size (KB) = 1177068 -Test 094 rap_unified_ugwp_debug PASS +Test 100 rap_unified_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/rap_lndp_debug -Checking test 095 rap_lndp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/rap_lndp_debug +Checking test 101 rap_lndp_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 274.642425 - 0: The maximum resident set size (KB) = 1174760 + 0: The total amount of wall time = 274.343830 + 0: The maximum resident set size (KB) = 1175028 -Test 095 rap_lndp_debug PASS +Test 101 rap_lndp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_flake_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/rap_flake_debug -Checking test 096 rap_flake_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/rap_flake_debug +Checking test 102 rap_flake_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 273.861653 - 0: The maximum resident set size (KB) = 1174400 + 0: The total amount of wall time = 274.915732 + 0: The maximum resident set size (KB) = 1176524 -Test 096 rap_flake_debug PASS +Test 102 rap_flake_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/rap_progcld_thompson_debug -Checking test 097 rap_progcld_thompson_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/rap_progcld_thompson_debug +Checking test 103 rap_progcld_thompson_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 274.641306 - 0: The maximum resident set size (KB) = 1178104 + 0: The total amount of wall time = 274.831012 + 0: The maximum resident set size (KB) = 1179636 -Test 097 rap_progcld_thompson_debug PASS +Test 103 rap_progcld_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_noah_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/rap_noah_debug -Checking test 098 rap_noah_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/rap_noah_debug +Checking test 104 rap_noah_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 270.016401 - 0: The maximum resident set size (KB) = 1172388 + 0: The total amount of wall time = 269.850382 + 0: The maximum resident set size (KB) = 1178032 -Test 098 rap_noah_debug PASS +Test 104 rap_noah_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/rap_sfcdiff_debug -Checking test 099 rap_sfcdiff_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/rap_sfcdiff_debug +Checking test 105 rap_sfcdiff_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 275.171357 - 0: The maximum resident set size (KB) = 1174516 + 0: The total amount of wall time = 279.488624 + 0: The maximum resident set size (KB) = 1178336 -Test 099 rap_sfcdiff_debug PASS +Test 105 rap_sfcdiff_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 100 rap_noah_sfcdiff_cires_ugwp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 106 rap_noah_sfcdiff_cires_ugwp_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 450.744543 - 0: The maximum resident set size (KB) = 1174968 + 0: The total amount of wall time = 450.256035 + 0: The maximum resident set size (KB) = 1175592 -Test 100 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 106 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/rrfs_v1beta_debug -Checking test 101 rrfs_v1beta_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/rrfs_v1beta_debug +Checking test 107 rrfs_v1beta_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 271.891884 - 0: The maximum resident set size (KB) = 1166864 + 0: The total amount of wall time = 268.207961 + 0: The maximum resident set size (KB) = 1173804 -Test 101 rrfs_v1beta_debug PASS +Test 107 rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/control_wam_debug -Checking test 102 control_wam_debug results .... - Comparing sfcf019.nc .........OK - Comparing atmf019.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_wam_debug +Checking test 108 control_wam_debug results .... + Comparing sfcf019.nc ............ALT CHECK......OK + Comparing atmf019.nc ............ALT CHECK......OK - 0: The total amount of wall time = 279.862464 - 0: The maximum resident set size (KB) = 524116 + 0: The total amount of wall time = 286.884700 + 0: The maximum resident set size (KB) = 517688 -Test 102 control_wam_debug PASS +Test 108 control_wam_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/regional_spp_sppt_shum_skeb_dyn32_phy32 -Checking test 103 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 109 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf001.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf001.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF01 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 265.653753 - 0: The maximum resident set size (KB) = 1070452 + 0: The total amount of wall time = 208.660580 + 0: The maximum resident set size (KB) = 1075396 -Test 103 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS +Test 109 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/rap_control_dyn32_phy32 -Checking test 104 rap_control_dyn32_phy32 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 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/rap_control_dyn32_phy32 +Checking test 110 rap_control_dyn32_phy32 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3544,21 +3808,21 @@ Checking test 104 rap_control_dyn32_phy32 results .... Comparing 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.475564 - 0: The maximum resident set size (KB) = 1004664 + 0: The total amount of wall time = 377.674474 + 0: The maximum resident set size (KB) = 1006592 -Test 104 rap_control_dyn32_phy32 PASS +Test 110 rap_control_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/hrrr_control_dyn32_phy32 -Checking test 105 hrrr_control_dyn32_phy32 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 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/hrrr_control_dyn32_phy32 +Checking test 111 hrrr_control_dyn32_phy32 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3598,21 +3862,21 @@ Checking test 105 hrrr_control_dyn32_phy32 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 = 194.023042 - 0: The maximum resident set size (KB) = 954788 + 0: The total amount of wall time = 195.240175 + 0: The maximum resident set size (KB) = 956468 -Test 105 hrrr_control_dyn32_phy32 PASS +Test 111 hrrr_control_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/rap_2threads_dyn32_phy32 -Checking test 106 rap_2threads_dyn32_phy32 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 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/rap_2threads_dyn32_phy32 +Checking test 112 rap_2threads_dyn32_phy32 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3652,21 +3916,21 @@ Checking test 106 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 357.390716 - 0: The maximum resident set size (KB) = 1030580 + 0: The total amount of wall time = 360.059435 + 0: The maximum resident set size (KB) = 1016780 -Test 106 rap_2threads_dyn32_phy32 PASS +Test 112 rap_2threads_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/hrrr_control_2threads_dyn32_phy32 -Checking test 107 hrrr_control_2threads_dyn32_phy32 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 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/hrrr_control_2threads_dyn32_phy32 +Checking test 113 hrrr_control_2threads_dyn32_phy32 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3706,21 +3970,21 @@ Checking test 107 hrrr_control_2threads_dyn32_phy32 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 = 191.844741 - 0: The maximum resident set size (KB) = 1003264 + 0: The total amount of wall time = 184.527999 + 0: The maximum resident set size (KB) = 1004292 -Test 107 hrrr_control_2threads_dyn32_phy32 PASS +Test 113 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/hrrr_control_decomp_dyn32_phy32 -Checking test 108 hrrr_control_decomp_dyn32_phy32 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 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/hrrr_control_decomp_dyn32_phy32 +Checking test 114 hrrr_control_decomp_dyn32_phy32 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3760,17 +4024,17 @@ Checking test 108 hrrr_control_decomp_dyn32_phy32 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 = 204.962032 - 0: The maximum resident set size (KB) = 890440 + 0: The total amount of wall time = 205.339560 + 0: The maximum resident set size (KB) = 893580 -Test 108 hrrr_control_decomp_dyn32_phy32 PASS +Test 114 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/rap_restart_dyn32_phy32 -Checking test 109 rap_restart_dyn32_phy32 results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/rap_restart_dyn32_phy32 +Checking test 115 rap_restart_dyn32_phy32 results .... + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -3806,17 +4070,17 @@ Checking test 109 rap_restart_dyn32_phy32 results .... Comparing 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.927313 - 0: The maximum resident set size (KB) = 942360 + 0: The total amount of wall time = 279.778397 + 0: The maximum resident set size (KB) = 950080 -Test 109 rap_restart_dyn32_phy32 PASS +Test 115 rap_restart_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/hrrr_control_restart_dyn32_phy32 -Checking test 110 hrrr_control_restart_dyn32_phy32 results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/hrrr_control_restart_dyn32_phy32 +Checking test 116 hrrr_control_restart_dyn32_phy32 results .... + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.180000.coupler.res .........OK @@ -3852,21 +4116,21 @@ Checking test 110 hrrr_control_restart_dyn32_phy32 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 = 101.944525 - 0: The maximum resident set size (KB) = 861128 + 0: The total amount of wall time = 101.264091 + 0: The maximum resident set size (KB) = 866948 -Test 110 hrrr_control_restart_dyn32_phy32 PASS +Test 116 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/rap_control_dyn64_phy32 -Checking test 111 rap_control_dyn64_phy32 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 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/rap_control_dyn64_phy32 +Checking test 117 rap_control_dyn64_phy32 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3906,116 +4170,116 @@ Checking test 111 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 242.775632 - 0: The maximum resident set size (KB) = 964200 + 0: The total amount of wall time = 243.158382 + 0: The maximum resident set size (KB) = 970624 -Test 111 rap_control_dyn64_phy32 PASS +Test 117 rap_control_dyn64_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/rap_control_debug_dyn32_phy32 -Checking test 112 rap_control_debug_dyn32_phy32 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/rap_control_debug_dyn32_phy32 +Checking test 118 rap_control_debug_dyn32_phy32 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 272.479385 - 0: The maximum resident set size (KB) = 1059468 + 0: The total amount of wall time = 279.668425 + 0: The maximum resident set size (KB) = 1063428 -Test 112 rap_control_debug_dyn32_phy32 PASS +Test 118 rap_control_debug_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/hrrr_control_debug_dyn32_phy32 -Checking test 113 hrrr_control_debug_dyn32_phy32 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/hrrr_control_debug_dyn32_phy32 +Checking test 119 hrrr_control_debug_dyn32_phy32 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 268.929086 - 0: The maximum resident set size (KB) = 1057496 + 0: The total amount of wall time = 265.211637 + 0: The maximum resident set size (KB) = 1057908 -Test 113 hrrr_control_debug_dyn32_phy32 PASS +Test 119 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/rap_control_dyn64_phy32_debug -Checking test 114 rap_control_dyn64_phy32_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/rap_control_dyn64_phy32_debug +Checking test 120 rap_control_dyn64_phy32_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 276.953909 - 0: The maximum resident set size (KB) = 1095864 + 0: The total amount of wall time = 274.520118 + 0: The maximum resident set size (KB) = 1104872 -Test 114 rap_control_dyn64_phy32_debug PASS +Test 120 rap_control_dyn64_phy32_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/hafs_regional_atm -Checking test 115 hafs_regional_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/hafs_regional_atm +Checking test 121 hafs_regional_atm results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 238.276092 - 0: The maximum resident set size (KB) = 1048848 + 0: The total amount of wall time = 237.888269 + 0: The maximum resident set size (KB) = 1047528 -Test 115 hafs_regional_atm PASS +Test 121 hafs_regional_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/hafs_regional_atm_thompson_gfdlsf -Checking test 116 hafs_regional_atm_thompson_gfdlsf results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/hafs_regional_atm_thompson_gfdlsf +Checking test 122 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 325.459546 - 0: The maximum resident set size (KB) = 1420508 + 0: The total amount of wall time = 325.747015 + 0: The maximum resident set size (KB) = 1423184 -Test 116 hafs_regional_atm_thompson_gfdlsf PASS +Test 122 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/hafs_regional_atm_ocn -Checking test 117 hafs_regional_atm_ocn results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/hafs_regional_atm_ocn +Checking test 123 hafs_regional_atm_ocn results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK Comparing archv.2019_241_06.a .........OK Comparing archs.2019_241_06.a .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 378.519468 - 0: The maximum resident set size (KB) = 1216624 + 0: The total amount of wall time = 379.608712 + 0: The maximum resident set size (KB) = 1214596 -Test 117 hafs_regional_atm_ocn PASS +Test 123 hafs_regional_atm_ocn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/hafs_regional_atm_wav -Checking test 118 hafs_regional_atm_wav results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/hafs_regional_atm_wav +Checking test 124 hafs_regional_atm_wav results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 738.518474 - 0: The maximum resident set size (KB) = 1251772 + 0: The total amount of wall time = 738.897564 + 0: The maximum resident set size (KB) = 1248332 -Test 118 hafs_regional_atm_wav PASS +Test 124 hafs_regional_atm_wav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/hafs_regional_atm_ocn_wav -Checking test 119 hafs_regional_atm_ocn_wav results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/hafs_regional_atm_ocn_wav +Checking test 125 hafs_regional_atm_ocn_wav results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK Comparing archv.2019_241_06.a .........OK Comparing archs.2019_241_06.a .........OK Comparing out_grd.ww3 .........OK @@ -4023,323 +4287,323 @@ Checking test 119 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 838.909020 - 0: The maximum resident set size (KB) = 1271160 + 0: The total amount of wall time = 840.331802 + 0: The maximum resident set size (KB) = 1271524 -Test 119 hafs_regional_atm_ocn_wav PASS +Test 125 hafs_regional_atm_ocn_wav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/hafs_regional_1nest_atm -Checking test 120 hafs_regional_1nest_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/hafs_regional_1nest_atm +Checking test 126 hafs_regional_1nest_atm results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atm.nest02.f006.nc ............ALT CHECK......OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 322.293171 - 0: The maximum resident set size (KB) = 508308 + 0: The total amount of wall time = 318.920790 + 0: The maximum resident set size (KB) = 508260 -Test 120 hafs_regional_1nest_atm PASS +Test 126 hafs_regional_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/hafs_regional_telescopic_2nests_atm -Checking test 121 hafs_regional_telescopic_2nests_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest03.f006.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/hafs_regional_telescopic_2nests_atm +Checking test 127 hafs_regional_telescopic_2nests_atm results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atm.nest02.f006.nc ............ALT CHECK......OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......OK + Comparing atm.nest03.f006.nc ............ALT CHECK......OK + Comparing sfc.nest03.f006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 365.959403 - 0: The maximum resident set size (KB) = 512592 + 0: The total amount of wall time = 366.794472 + 0: The maximum resident set size (KB) = 514860 -Test 121 hafs_regional_telescopic_2nests_atm PASS +Test 127 hafs_regional_telescopic_2nests_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/hafs_global_1nest_atm -Checking test 122 hafs_global_1nest_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/hafs_global_1nest_atm +Checking test 128 hafs_global_1nest_atm results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atm.nest02.f006.nc ............ALT CHECK......OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 147.280345 - 0: The maximum resident set size (KB) = 347824 + 0: The total amount of wall time = 145.488287 + 0: The maximum resident set size (KB) = 353184 -Test 122 hafs_global_1nest_atm PASS +Test 128 hafs_global_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_multiple_4nests_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/hafs_global_multiple_4nests_atm -Checking test 123 hafs_global_multiple_4nests_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest03.f006.nc .........OK - Comparing atm.nest04.f006.nc .........OK - Comparing sfc.nest04.f006.nc .........OK - Comparing atm.nest05.f006.nc .........OK - Comparing sfc.nest05.f006.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/hafs_global_multiple_4nests_atm +Checking test 129 hafs_global_multiple_4nests_atm results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atm.nest02.f006.nc ............ALT CHECK......OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......OK + Comparing atm.nest03.f006.nc ............ALT CHECK......OK + Comparing sfc.nest03.f006.nc ............ALT CHECK......OK + Comparing atm.nest04.f006.nc ............ALT CHECK......OK + Comparing sfc.nest04.f006.nc ............ALT CHECK......OK + Comparing atm.nest05.f006.nc ............ALT CHECK......OK + Comparing sfc.nest05.f006.nc ............ALT CHECK......OK Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK Comparing HURPRS.GrbF06.nest03 .........OK Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 423.123601 - 0: The maximum resident set size (KB) = 422412 + 0: The total amount of wall time = 411.330463 + 0: The maximum resident set size (KB) = 456648 -Test 123 hafs_global_multiple_4nests_atm PASS +Test 129 hafs_global_multiple_4nests_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/hafs_regional_specified_moving_1nest_atm -Checking test 124 hafs_regional_specified_moving_1nest_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/hafs_regional_specified_moving_1nest_atm +Checking test 130 hafs_regional_specified_moving_1nest_atm results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atm.nest02.f006.nc ............ALT CHECK......OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......OK Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 204.298763 - 0: The maximum resident set size (KB) = 516480 + 0: The total amount of wall time = 203.180450 + 0: The maximum resident set size (KB) = 518168 -Test 124 hafs_regional_specified_moving_1nest_atm PASS +Test 130 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/hafs_regional_storm_following_1nest_atm -Checking test 125 hafs_regional_storm_following_1nest_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/hafs_regional_storm_following_1nest_atm +Checking test 131 hafs_regional_storm_following_1nest_atm results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atm.nest02.f006.nc ............ALT CHECK......OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 190.889916 - 0: The maximum resident set size (KB) = 512276 + 0: The total amount of wall time = 191.397576 + 0: The maximum resident set size (KB) = 519220 -Test 125 hafs_regional_storm_following_1nest_atm PASS +Test 131 hafs_regional_storm_following_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/hafs_regional_storm_following_1nest_atm_ocn -Checking test 126 hafs_regional_storm_following_1nest_atm_ocn results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/hafs_regional_storm_following_1nest_atm_ocn +Checking test 132 hafs_regional_storm_following_1nest_atm_ocn results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atm.nest02.f006.nc ............ALT CHECK......OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......OK Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 221.489291 - 0: The maximum resident set size (KB) = 550372 + 0: The total amount of wall time = 222.057232 + 0: The maximum resident set size (KB) = 563392 -Test 126 hafs_regional_storm_following_1nest_atm_ocn PASS +Test 132 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/hafs_global_storm_following_1nest_atm -Checking test 127 hafs_global_storm_following_1nest_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/hafs_global_storm_following_1nest_atm +Checking test 133 hafs_global_storm_following_1nest_atm results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atm.nest02.f006.nc ............ALT CHECK......OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 61.100151 - 0: The maximum resident set size (KB) = 363004 + 0: The total amount of wall time = 57.879471 + 0: The maximum resident set size (KB) = 368860 -Test 127 hafs_global_storm_following_1nest_atm PASS +Test 133 hafs_global_storm_following_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/hafs_regional_storm_following_1nest_atm_ocn_debug -Checking test 128 hafs_regional_storm_following_1nest_atm_ocn_debug results .... - Comparing atmf001.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atm.nest02.f001.nc .........OK - Comparing sfc.nest02.f001.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/hafs_regional_storm_following_1nest_atm_ocn_debug +Checking test 134 hafs_regional_storm_following_1nest_atm_ocn_debug results .... + Comparing atmf001.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atm.nest02.f001.nc ............ALT CHECK......OK + Comparing sfc.nest02.f001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 761.502970 - 0: The maximum resident set size (KB) = 581144 + 0: The total amount of wall time = 755.434968 + 0: The maximum resident set size (KB) = 583800 -Test 128 hafs_regional_storm_following_1nest_atm_ocn_debug PASS +Test 134 hafs_regional_storm_following_1nest_atm_ocn_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/hafs_regional_storm_following_1nest_atm_ocn_wav -Checking test 129 hafs_regional_storm_following_1nest_atm_ocn_wav results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_wav results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atm.nest02.f006.nc ............ALT CHECK......OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......OK Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 515.214866 - 0: The maximum resident set size (KB) = 615080 + 0: The total amount of wall time = 480.775821 + 0: The maximum resident set size (KB) = 622248 -Test 129 hafs_regional_storm_following_1nest_atm_ocn_wav PASS +Test 135 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_docn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/hafs_regional_docn -Checking test 130 hafs_regional_docn results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/hafs_regional_docn +Checking test 136 hafs_regional_docn results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 360.561885 - 0: The maximum resident set size (KB) = 1223448 + 0: The total amount of wall time = 356.025770 + 0: The maximum resident set size (KB) = 1228476 -Test 130 hafs_regional_docn PASS +Test 136 hafs_regional_docn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_docn_oisst -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/hafs_regional_docn_oisst -Checking test 131 hafs_regional_docn_oisst results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/hafs_regional_docn_oisst +Checking test 137 hafs_regional_docn_oisst results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 356.364913 - 0: The maximum resident set size (KB) = 1215640 + 0: The total amount of wall time = 359.021144 + 0: The maximum resident set size (KB) = 1215432 -Test 131 hafs_regional_docn_oisst PASS +Test 137 hafs_regional_docn_oisst PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_datm_cdeps -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/hafs_regional_datm_cdeps -Checking test 132 hafs_regional_datm_cdeps results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/hafs_regional_datm_cdeps +Checking test 138 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 949.992069 - 0: The maximum resident set size (KB) = 1038188 + 0: The total amount of wall time = 945.479615 + 0: The maximum resident set size (KB) = 1040912 -Test 132 hafs_regional_datm_cdeps PASS +Test 138 hafs_regional_datm_cdeps PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/datm_cdeps_control_cfsr -Checking test 133 datm_cdeps_control_cfsr results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/datm_cdeps_control_cfsr +Checking test 139 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 156.444527 - 0: The maximum resident set size (KB) = 1062620 + 0: The total amount of wall time = 155.124501 + 0: The maximum resident set size (KB) = 1056640 -Test 133 datm_cdeps_control_cfsr PASS +Test 139 datm_cdeps_control_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/datm_cdeps_restart_cfsr -Checking test 134 datm_cdeps_restart_cfsr results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/datm_cdeps_restart_cfsr +Checking test 140 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.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.387666 - 0: The maximum resident set size (KB) = 1015544 + 0: The total amount of wall time = 92.761112 + 0: The maximum resident set size (KB) = 1031904 -Test 134 datm_cdeps_restart_cfsr PASS +Test 140 datm_cdeps_restart_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/datm_cdeps_control_gefs -Checking test 135 datm_cdeps_control_gefs results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/datm_cdeps_control_gefs +Checking test 141 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 151.346577 - 0: The maximum resident set size (KB) = 960392 + 0: The total amount of wall time = 149.155461 + 0: The maximum resident set size (KB) = 968100 -Test 135 datm_cdeps_control_gefs PASS +Test 141 datm_cdeps_control_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_iau_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/datm_cdeps_iau_gefs -Checking test 136 datm_cdeps_iau_gefs results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/datm_cdeps_iau_gefs +Checking test 142 datm_cdeps_iau_gefs 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 = 154.734386 - 0: The maximum resident set size (KB) = 961232 + 0: The total amount of wall time = 149.288933 + 0: The maximum resident set size (KB) = 959848 -Test 136 datm_cdeps_iau_gefs PASS +Test 142 datm_cdeps_iau_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_stochy_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/datm_cdeps_stochy_gefs -Checking test 137 datm_cdeps_stochy_gefs results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/datm_cdeps_stochy_gefs +Checking test 143 datm_cdeps_stochy_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.532389 - 0: The maximum resident set size (KB) = 961252 + 0: The total amount of wall time = 155.681911 + 0: The maximum resident set size (KB) = 967428 -Test 137 datm_cdeps_stochy_gefs PASS +Test 143 datm_cdeps_stochy_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_ciceC_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/datm_cdeps_ciceC_cfsr -Checking test 138 datm_cdeps_ciceC_cfsr results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/datm_cdeps_ciceC_cfsr +Checking test 144 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 152.858349 - 0: The maximum resident set size (KB) = 1071308 + 0: The total amount of wall time = 152.765131 + 0: The maximum resident set size (KB) = 1058448 -Test 138 datm_cdeps_ciceC_cfsr PASS +Test 144 datm_cdeps_ciceC_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/datm_cdeps_bulk_cfsr -Checking test 139 datm_cdeps_bulk_cfsr results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/datm_cdeps_bulk_cfsr +Checking test 145 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 156.314130 - 0: The maximum resident set size (KB) = 1075724 + 0: The total amount of wall time = 157.394281 + 0: The maximum resident set size (KB) = 1069416 -Test 139 datm_cdeps_bulk_cfsr PASS +Test 145 datm_cdeps_bulk_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/datm_cdeps_bulk_gefs -Checking test 140 datm_cdeps_bulk_gefs results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/datm_cdeps_bulk_gefs +Checking test 146 datm_cdeps_bulk_gefs 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.829141 - 0: The maximum resident set size (KB) = 966252 + 0: The total amount of wall time = 148.373632 + 0: The maximum resident set size (KB) = 965748 -Test 140 datm_cdeps_bulk_gefs PASS +Test 146 datm_cdeps_bulk_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/datm_cdeps_mx025_cfsr -Checking test 141 datm_cdeps_mx025_cfsr results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/datm_cdeps_mx025_cfsr +Checking test 147 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4347,15 +4611,15 @@ Checking test 141 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 402.139621 - 0: The maximum resident set size (KB) = 878536 + 0: The total amount of wall time = 398.881259 + 0: The maximum resident set size (KB) = 874388 -Test 141 datm_cdeps_mx025_cfsr PASS +Test 147 datm_cdeps_mx025_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/datm_cdeps_mx025_gefs -Checking test 142 datm_cdeps_mx025_gefs results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/datm_cdeps_mx025_gefs +Checking test 148 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4363,78 +4627,78 @@ Checking test 142 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 396.724445 - 0: The maximum resident set size (KB) = 937088 + 0: The total amount of wall time = 391.733987 + 0: The maximum resident set size (KB) = 932620 -Test 142 datm_cdeps_mx025_gefs PASS +Test 148 datm_cdeps_mx025_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/datm_cdeps_multiple_files_cfsr -Checking test 143 datm_cdeps_multiple_files_cfsr results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/datm_cdeps_multiple_files_cfsr +Checking test 149 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 158.782420 - 0: The maximum resident set size (KB) = 1072112 + 0: The total amount of wall time = 156.089751 + 0: The maximum resident set size (KB) = 1067788 -Test 143 datm_cdeps_multiple_files_cfsr PASS +Test 149 datm_cdeps_multiple_files_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/datm_cdeps_3072x1536_cfsr -Checking test 144 datm_cdeps_3072x1536_cfsr results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/datm_cdeps_3072x1536_cfsr +Checking test 150 datm_cdeps_3072x1536_cfsr 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 = 220.044054 - 0: The maximum resident set size (KB) = 2296124 + 0: The total amount of wall time = 219.604556 + 0: The maximum resident set size (KB) = 2315824 -Test 144 datm_cdeps_3072x1536_cfsr PASS +Test 150 datm_cdeps_3072x1536_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_gfs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/datm_cdeps_gfs -Checking test 145 datm_cdeps_gfs results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/datm_cdeps_gfs +Checking test 151 datm_cdeps_gfs results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 217.274964 - 0: The maximum resident set size (KB) = 2370352 + 0: The total amount of wall time = 219.165126 + 0: The maximum resident set size (KB) = 2304676 -Test 145 datm_cdeps_gfs PASS +Test 151 datm_cdeps_gfs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/datm_cdeps_debug_cfsr -Checking test 146 datm_cdeps_debug_cfsr results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/datm_cdeps_debug_cfsr +Checking test 152 datm_cdeps_debug_cfsr 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 = 448.345513 - 0: The maximum resident set size (KB) = 991276 + 0: The total amount of wall time = 446.790202 + 0: The maximum resident set size (KB) = 986556 -Test 146 datm_cdeps_debug_cfsr PASS +Test 152 datm_cdeps_debug_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/datm_cdeps_control_cfsr_faster -Checking test 147 datm_cdeps_control_cfsr_faster results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/datm_cdeps_control_cfsr_faster +Checking test 153 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 153.094826 - 0: The maximum resident set size (KB) = 1054344 + 0: The total amount of wall time = 152.712476 + 0: The maximum resident set size (KB) = 1056644 -Test 147 datm_cdeps_control_cfsr_faster PASS +Test 153 datm_cdeps_control_cfsr_faster PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/datm_cdeps_lnd_gswp3 -Checking test 148 datm_cdeps_lnd_gswp3 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/datm_cdeps_lnd_gswp3 +Checking test 154 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4442,15 +4706,15 @@ Checking test 148 datm_cdeps_lnd_gswp3 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 = 6.971406 - 0: The maximum resident set size (KB) = 264400 + 0: The total amount of wall time = 6.730894 + 0: The maximum resident set size (KB) = 266780 -Test 148 datm_cdeps_lnd_gswp3 PASS +Test 154 datm_cdeps_lnd_gswp3 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/datm_cdeps_lnd_gswp3_rst -Checking test 149 datm_cdeps_lnd_gswp3_rst results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/datm_cdeps_lnd_gswp3_rst +Checking test 155 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4458,15 +4722,15 @@ Checking test 149 datm_cdeps_lnd_gswp3_rst 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.052118 - 0: The maximum resident set size (KB) = 262196 + 0: The total amount of wall time = 12.140110 + 0: The maximum resident set size (KB) = 263056 -Test 149 datm_cdeps_lnd_gswp3_rst PASS +Test 155 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_atmlnd_sbs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/control_p8_atmlnd_sbs -Checking test 150 control_p8_atmlnd_sbs results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_p8_atmlnd_sbs +Checking test 156 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -4550,19 +4814,19 @@ Checking test 150 control_p8_atmlnd_sbs 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.514267 - 0: The maximum resident set size (KB) = 1614968 + 0: The total amount of wall time = 203.031966 + 0: The maximum resident set size (KB) = 1611148 -Test 150 control_p8_atmlnd_sbs PASS +Test 156 control_p8_atmlnd_sbs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_atmwav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/control_atmwav -Checking test 151 control_atmwav results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_atmwav +Checking test 157 control_atmwav results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -4601,19 +4865,19 @@ Checking test 151 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 90.157104 - 0: The maximum resident set size (KB) = 658596 + 0: The total amount of wall time = 87.950876 + 0: The maximum resident set size (KB) = 665320 -Test 151 control_atmwav PASS +Test 157 control_atmwav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/atmaero_control_p8 -Checking test 152 atmaero_control_p8 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/atmaero_control_p8 +Checking test 158 atmaero_control_p8 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -4652,19 +4916,19 @@ Checking test 152 atmaero_control_p8 results .... Comparing 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.572798 - 0: The maximum resident set size (KB) = 2972272 + 0: The total amount of wall time = 226.418509 + 0: The maximum resident set size (KB) = 2974040 -Test 152 atmaero_control_p8 PASS +Test 158 atmaero_control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8_rad -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/atmaero_control_p8_rad -Checking test 153 atmaero_control_p8_rad results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/atmaero_control_p8_rad +Checking test 159 atmaero_control_p8_rad results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -4703,19 +4967,19 @@ Checking test 153 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 279.590807 - 0: The maximum resident set size (KB) = 3050004 + 0: The total amount of wall time = 278.743079 + 0: The maximum resident set size (KB) = 3040240 -Test 153 atmaero_control_p8_rad PASS +Test 159 atmaero_control_p8_rad PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8_rad_micro -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/atmaero_control_p8_rad_micro -Checking test 154 atmaero_control_p8_rad_micro results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/atmaero_control_p8_rad_micro +Checking test 160 atmaero_control_p8_rad_micro results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -4754,21 +5018,21 @@ Checking test 154 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 286.240111 - 0: The maximum resident set size (KB) = 3056624 + 0: The total amount of wall time = 282.465877 + 0: The maximum resident set size (KB) = 3061072 -Test 154 atmaero_control_p8_rad_micro PASS +Test 160 atmaero_control_p8_rad_micro PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/regional_atmaq -Checking test 155 regional_atmaq results .... - Comparing sfcf000.nc .........OK - Comparing sfcf003.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf003.nc .........OK - Comparing atmf006.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/regional_atmaq +Checking test 161 regional_atmaq results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf003.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf003.nc ............ALT CHECK......OK + Comparing atmf006.nc ............ALT CHECK......OK Comparing RESTART/20190801.180000.coupler.res .........OK Comparing RESTART/20190801.180000.fv_core.res.nc .........OK Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK @@ -4777,19 +5041,19 @@ Checking test 155 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 631.235288 - 0: The maximum resident set size (KB) = 1466408 + 0: The total amount of wall time = 627.272650 + 0: The maximum resident set size (KB) = 1468784 -Test 155 regional_atmaq PASS +Test 161 regional_atmaq PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/regional_atmaq_debug -Checking test 156 regional_atmaq_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/regional_atmaq_debug +Checking test 162 regional_atmaq_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK Comparing RESTART/20190801.130000.coupler.res .........OK Comparing RESTART/20190801.130000.fv_core.res.nc .........OK Comparing RESTART/20190801.130000.fv_core.res.tile1.nc .........OK @@ -4798,21 +5062,21 @@ Checking test 156 regional_atmaq_debug 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.629222 - 0: The maximum resident set size (KB) = 1406332 + 0: The total amount of wall time = 1218.125463 + 0: The maximum resident set size (KB) = 1399812 -Test 156 regional_atmaq_debug PASS +Test 162 regional_atmaq_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7109/regional_atmaq_faster -Checking test 157 regional_atmaq_faster results .... - Comparing sfcf000.nc .........OK - Comparing sfcf003.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf003.nc .........OK - Comparing atmf006.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/regional_atmaq_faster +Checking test 163 regional_atmaq_faster results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf003.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf003.nc ............ALT CHECK......OK + Comparing atmf006.nc ............ALT CHECK......OK Comparing RESTART/20190801.180000.coupler.res .........OK Comparing RESTART/20190801.180000.fv_core.res.nc .........OK Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK @@ -4821,12 +5085,12 @@ Checking test 157 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 550.849434 - 0: The maximum resident set size (KB) = 1471716 + 0: The total amount of wall time = 546.921361 + 0: The maximum resident set size (KB) = 1475364 -Test 157 regional_atmaq_faster PASS +Test 163 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Sat Mar 25 01:20:59 UTC 2023 -Elapsed time: 01h:11m:19s. Have a nice day! +Mon Mar 27 22:32:35 UTC 2023 +Elapsed time: 01h:15m:07s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index bbc973f05ba..979324b15a9 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,42 +1,42 @@ -Sun Mar 26 14:26:15 UTC 2023 +Mon Mar 27 21:42:20 UTC 2023 Start Regression test -Compile 001 elapsed time 1843 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 002 elapsed time 1975 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 003 elapsed time 1887 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 004 elapsed time 332 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 320 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 1484 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 007 elapsed time 1499 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 008 elapsed time 3329 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 009 elapsed time 1670 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 010 elapsed time 1573 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 011 elapsed time 1484 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 012 elapsed time 1421 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 013 elapsed time 2020 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 014 elapsed time 435 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 277 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 1460 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 017 elapsed time 1439 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 018 elapsed time 257 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 276 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 1676 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 021 elapsed time 338 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 2144 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 023 elapsed time 1609 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 024 elapsed time 294 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 025 elapsed time 190 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 291 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 027 elapsed time 121 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 028 elapsed time 1513 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 029 elapsed time 1575 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 030 elapsed time 1473 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 031 elapsed time 1390 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 032 elapsed time 301 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 1836 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 001 elapsed time 1880 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 002 elapsed time 1908 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 003 elapsed time 1754 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 004 elapsed time 429 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 376 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 1582 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 007 elapsed time 1549 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 008 elapsed time 3401 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 009 elapsed time 1674 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 010 elapsed time 1624 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 011 elapsed time 1511 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 012 elapsed time 1462 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 013 elapsed time 2088 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 014 elapsed time 402 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 317 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 1493 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 017 elapsed time 1495 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 018 elapsed time 331 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 323 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 1636 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 021 elapsed time 308 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 2163 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 023 elapsed time 1631 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 024 elapsed time 301 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 025 elapsed time 178 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 308 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 027 elapsed time 98 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 028 elapsed time 1334 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 029 elapsed time 1688 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 030 elapsed time 1466 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 031 elapsed time 1446 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 032 elapsed time 273 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 1886 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8_mixedmode -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/cpld_control_p8_mixedmode +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -101,14 +101,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 584.357900 - 0: The maximum resident set size (KB) = 1736216 + 0: The total amount of wall time = 449.250855 + 0: The maximum resident set size (KB) = 1720628 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_gfsv17 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/cpld_control_gfsv17 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -172,14 +172,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 500.496750 - 0: The maximum resident set size (KB) = 1639136 + 0: The total amount of wall time = 351.932227 + 0: The maximum resident set size (KB) = 1630856 Test 002 cpld_control_gfsv17 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -244,14 +244,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 661.240716 - 0: The maximum resident set size (KB) = 1791232 + 0: The total amount of wall time = 514.765265 + 0: The maximum resident set size (KB) = 1771448 Test 003 cpld_control_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/cpld_restart_p8 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -304,15 +304,147 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 318.802334 - 0: The maximum resident set size (KB) = 1495368 + 0: The total amount of wall time = 334.141243 + 0: The maximum resident set size (KB) = 1496584 Test 004 cpld_restart_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/cpld_2threads_p8 -Checking test 005 cpld_2threads_p8 results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/cpld_control_qr_p8 +Checking test 005 cpld_control_qr_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 516.371160 + 0: The maximum resident set size (KB) = 1785764 + +Test 005 cpld_control_qr_p8 PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/cpld_restart_qr_p8 +Checking test 006 cpld_restart_qr_p8 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 393.082729 + 0: The maximum resident set size (KB) = 1505536 + +Test 006 cpld_restart_qr_p8 PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/cpld_2threads_p8 +Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -364,15 +496,15 @@ Checking test 005 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 683.069646 - 0: The maximum resident set size (KB) = 1996584 + 0: The total amount of wall time = 555.364374 + 0: The maximum resident set size (KB) = 1995308 -Test 005 cpld_2threads_p8 PASS +Test 007 cpld_2threads_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/cpld_decomp_p8 -Checking test 006 cpld_decomp_p8 results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/cpld_decomp_p8 +Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -424,15 +556,15 @@ Checking test 006 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 626.903950 - 0: The maximum resident set size (KB) = 1775436 + 0: The total amount of wall time = 525.358803 + 0: The maximum resident set size (KB) = 1788112 -Test 006 cpld_decomp_p8 PASS +Test 008 cpld_decomp_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/cpld_mpi_p8 -Checking test 007 cpld_mpi_p8 results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/cpld_mpi_p8 +Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -484,15 +616,15 @@ Checking test 007 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 594.176626 - 0: The maximum resident set size (KB) = 1734760 + 0: The total amount of wall time = 437.236044 + 0: The maximum resident set size (KB) = 1735232 -Test 007 cpld_mpi_p8 PASS +Test 009 cpld_mpi_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_ciceC_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/cpld_control_ciceC_p8 -Checking test 008 cpld_control_ciceC_p8 results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/cpld_control_ciceC_p8 +Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -556,15 +688,15 @@ Checking test 008 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 642.387489 - 0: The maximum resident set size (KB) = 1780596 + 0: The total amount of wall time = 523.270359 + 0: The maximum resident set size (KB) = 1775764 -Test 008 cpld_control_ciceC_p8 PASS +Test 010 cpld_control_ciceC_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_noaero_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/cpld_control_noaero_p8 -Checking test 009 cpld_control_noaero_p8 results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/cpld_control_noaero_p8 +Checking test 011 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -627,15 +759,15 @@ Checking test 009 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 473.672343 - 0: The maximum resident set size (KB) = 1623732 + 0: The total amount of wall time = 379.278535 + 0: The maximum resident set size (KB) = 1642204 -Test 009 cpld_control_noaero_p8 PASS +Test 011 cpld_control_noaero_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/cpld_control_nowave_noaero_p8 -Checking test 010 cpld_control_nowave_noaero_p8 results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/cpld_control_nowave_noaero_p8 +Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -696,15 +828,15 @@ Checking test 010 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 506.075507 - 0: The maximum resident set size (KB) = 1671104 + 0: The total amount of wall time = 373.329495 + 0: The maximum resident set size (KB) = 1675856 -Test 010 cpld_control_nowave_noaero_p8 PASS +Test 012 cpld_control_nowave_noaero_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_debug_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/cpld_debug_p8 -Checking test 011 cpld_debug_p8 results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/cpld_debug_p8 +Checking test 013 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -756,15 +888,15 @@ Checking test 011 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 931.783155 - 0: The maximum resident set size (KB) = 1821472 + 0: The total amount of wall time = 901.247259 + 0: The maximum resident set size (KB) = 1824764 -Test 011 cpld_debug_p8 PASS +Test 013 cpld_debug_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_debug_noaero_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/cpld_debug_noaero_p8 -Checking test 012 cpld_debug_noaero_p8 results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/cpld_debug_noaero_p8 +Checking test 014 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -815,15 +947,15 @@ Checking test 012 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 597.815103 - 0: The maximum resident set size (KB) = 1650264 + 0: The total amount of wall time = 599.161492 + 0: The maximum resident set size (KB) = 1641560 -Test 012 cpld_debug_noaero_p8 PASS +Test 014 cpld_debug_noaero_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/cpld_control_noaero_p8_agrid -Checking test 013 cpld_control_noaero_p8_agrid results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/cpld_control_noaero_p8_agrid +Checking test 015 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -884,15 +1016,15 @@ Checking test 013 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 534.132921 - 0: The maximum resident set size (KB) = 1693084 + 0: The total amount of wall time = 407.545155 + 0: The maximum resident set size (KB) = 1683508 -Test 013 cpld_control_noaero_p8_agrid PASS +Test 015 cpld_control_noaero_p8_agrid PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c48 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/cpld_control_c48 -Checking test 014 cpld_control_c48 results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/cpld_control_c48 +Checking test 016 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -941,15 +1073,15 @@ Checking test 014 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 813.439416 - 0: The maximum resident set size (KB) = 2772824 + 0: The total amount of wall time = 811.454074 + 0: The maximum resident set size (KB) = 2764160 -Test 014 cpld_control_c48 PASS +Test 016 cpld_control_c48 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_warmstart_c48 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/cpld_warmstart_c48 -Checking test 015 cpld_warmstart_c48 results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/cpld_warmstart_c48 +Checking test 017 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK Comparing sfcf006.tile3.nc .........OK @@ -998,15 +1130,15 @@ Checking test 015 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 256.779953 - 0: The maximum resident set size (KB) = 2782560 + 0: The total amount of wall time = 224.280730 + 0: The maximum resident set size (KB) = 2772792 -Test 015 cpld_warmstart_c48 PASS +Test 017 cpld_warmstart_c48 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_warmstart_c48 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/cpld_restart_c48 -Checking test 016 cpld_restart_c48 results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/cpld_restart_c48 +Checking test 018 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK Comparing sfcf006.tile3.nc .........OK @@ -1055,15 +1187,15 @@ Checking test 016 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 150.387844 - 0: The maximum resident set size (KB) = 2217948 + 0: The total amount of wall time = 123.453195 + 0: The maximum resident set size (KB) = 2192104 -Test 016 cpld_restart_c48 PASS +Test 018 cpld_restart_c48 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8_faster -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/cpld_control_p8_faster -Checking test 017 cpld_control_p8_faster results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/cpld_control_p8_faster +Checking test 019 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1127,15 +1259,15 @@ Checking test 017 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 531.536607 - 0: The maximum resident set size (KB) = 1771644 + 0: The total amount of wall time = 499.041810 + 0: The maximum resident set size (KB) = 1771216 -Test 017 cpld_control_p8_faster PASS +Test 019 cpld_control_p8_faster PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/control_CubedSphereGrid -Checking test 018 control_CubedSphereGrid results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_CubedSphereGrid +Checking test 020 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1161,69 +1293,69 @@ Checking test 018 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 291.453498 - 0: The maximum resident set size (KB) = 572924 + 0: The total amount of wall time = 199.900736 + 0: The maximum resident set size (KB) = 578556 -Test 018 control_CubedSphereGrid PASS +Test 020 control_CubedSphereGrid PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid_parallel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/control_CubedSphereGrid_parallel -Checking test 019 control_CubedSphereGrid_parallel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_CubedSphereGrid_parallel +Checking test 021 control_CubedSphereGrid_parallel results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK - 0: The total amount of wall time = 288.408721 - 0: The maximum resident set size (KB) = 575580 + 0: The total amount of wall time = 195.460794 + 0: The maximum resident set size (KB) = 576572 -Test 019 control_CubedSphereGrid_parallel PASS +Test 021 control_CubedSphereGrid_parallel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_latlon -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/control_latlon -Checking test 020 control_latlon results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_latlon +Checking test 022 control_latlon results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 301.940090 - 0: The maximum resident set size (KB) = 570804 + 0: The total amount of wall time = 195.530459 + 0: The maximum resident set size (KB) = 574868 -Test 020 control_latlon PASS +Test 022 control_latlon PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/control_wrtGauss_netcdf_parallel -Checking test 021 control_wrtGauss_netcdf_parallel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_wrtGauss_netcdf_parallel +Checking test 023 control_wrtGauss_netcdf_parallel results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 305.215124 - 0: The maximum resident set size (KB) = 575020 + 0: The total amount of wall time = 206.152704 + 0: The maximum resident set size (KB) = 577188 -Test 021 control_wrtGauss_netcdf_parallel PASS +Test 023 control_wrtGauss_netcdf_parallel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c48 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/control_c48 -Checking test 022 control_c48 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_c48 +Checking test 024 control_c48 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -1257,55 +1389,55 @@ Checking test 022 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 615.429011 -0: The maximum resident set size (KB) = 797512 +0: The total amount of wall time = 595.571583 +0: The maximum resident set size (KB) = 799996 -Test 022 control_c48 PASS +Test 024 control_c48 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c192 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/control_c192 -Checking test 023 control_c192 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_c192 +Checking test 025 control_c192 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 935.050975 - 0: The maximum resident set size (KB) = 698836 + 0: The total amount of wall time = 751.915226 + 0: The maximum resident set size (KB) = 695300 -Test 023 control_c192 PASS +Test 025 control_c192 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c384 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/control_c384 -Checking test 024 control_c384 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_c384 +Checking test 026 control_c384 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1247.245703 - 0: The maximum resident set size (KB) = 1058112 + 0: The total amount of wall time = 1021.205257 + 0: The maximum resident set size (KB) = 1053692 -Test 024 control_c384 PASS +Test 026 control_c384 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c384gdas -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/control_c384gdas -Checking test 025 control_c384gdas results .... - Comparing sfcf000.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf006.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_c384gdas +Checking test 027 control_c384gdas results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf006.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF06 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -1343,71 +1475,71 @@ Checking test 025 control_c384gdas 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 = 1051.998859 - 0: The maximum resident set size (KB) = 1195888 + 0: The total amount of wall time = 886.271467 + 0: The maximum resident set size (KB) = 1183732 -Test 025 control_c384gdas PASS +Test 027 control_c384gdas PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/control_stochy -Checking test 026 control_stochy results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_stochy +Checking test 028 control_stochy results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 162.657569 - 0: The maximum resident set size (KB) = 580556 + 0: The total amount of wall time = 129.081374 + 0: The maximum resident set size (KB) = 578032 -Test 026 control_stochy PASS +Test 028 control_stochy PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/control_stochy_restart -Checking test 027 control_stochy_restart results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_stochy_restart +Checking test 029 control_stochy_restart results .... + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 84.012790 - 0: The maximum resident set size (KB) = 395364 + 0: The total amount of wall time = 99.764589 + 0: The maximum resident set size (KB) = 400844 -Test 027 control_stochy_restart PASS +Test 029 control_stochy_restart PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_lndp -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/control_lndp -Checking test 028 control_lndp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_lndp +Checking test 030 control_lndp results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 155.369973 - 0: The maximum resident set size (KB) = 571500 + 0: The total amount of wall time = 127.630500 + 0: The maximum resident set size (KB) = 574040 -Test 028 control_lndp PASS +Test 030 control_lndp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_iovr4 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/control_iovr4 -Checking test 029 control_iovr4 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_iovr4 +Checking test 031 control_iovr4 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1415,21 +1547,21 @@ Checking test 029 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 273.353971 - 0: The maximum resident set size (KB) = 571832 + 0: The total amount of wall time = 225.998396 + 0: The maximum resident set size (KB) = 576016 -Test 029 control_iovr4 PASS +Test 031 control_iovr4 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_iovr5 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/control_iovr5 -Checking test 030 control_iovr5 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_iovr5 +Checking test 032 control_iovr5 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1437,21 +1569,21 @@ Checking test 030 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 228.296933 - 0: The maximum resident set size (KB) = 574344 + 0: The total amount of wall time = 231.029203 + 0: The maximum resident set size (KB) = 575136 -Test 030 control_iovr5 PASS +Test 032 control_iovr5 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/control_p8 -Checking test 031 control_p8 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_p8 +Checking test 033 control_p8 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1491,43 +1623,17 @@ Checking test 031 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 249.504646 - 0: The maximum resident set size (KB) = 1544768 - -Test 031 control_p8 PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_lndp -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/control_p8_lndp -Checking test 032 control_p8_lndp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing sfcf048.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing atmf048.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSFLX.GrbF48 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing GFSPRS.GrbF48 .........OK - - 0: The total amount of wall time = 644.327546 - 0: The maximum resident set size (KB) = 1555844 + 0: The total amount of wall time = 261.445733 + 0: The maximum resident set size (KB) = 1549720 -Test 032 control_p8_lndp PASS +Test 033 control_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/control_restart_p8 -Checking test 033 control_restart_p8 results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_restart_p8 +Checking test 034 control_restart_p8 results .... + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -1563,19 +1669,119 @@ Checking test 033 control_restart_p8 results .... Comparing 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.448927 - 0: The maximum resident set size (KB) = 787232 + 0: The total amount of wall time = 161.089002 + 0: The maximum resident set size (KB) = 783648 -Test 033 control_restart_p8 PASS +Test 034 control_restart_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/control_decomp_p8 -Checking test 034 control_decomp_p8 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_qr_p8 +Checking test 035 control_qr_p8 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + + 0: The total amount of wall time = 260.152890 + 0: The maximum resident set size (KB) = 1551932 + +Test 035 control_qr_p8 PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_restart_qr_p8 +Checking test 036 control_restart_qr_p8 results .... + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + + 0: The total amount of wall time = 166.418503 + 0: The maximum resident set size (KB) = 785864 + +Test 036 control_restart_qr_p8 PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_decomp_p8 +Checking test 037 control_decomp_p8 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -1613,19 +1819,19 @@ Checking test 034 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 313.212162 - 0: The maximum resident set size (KB) = 1529108 + 0: The total amount of wall time = 282.278049 + 0: The maximum resident set size (KB) = 1533300 -Test 034 control_decomp_p8 PASS +Test 037 control_decomp_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/control_2threads_p8 -Checking test 035 control_2threads_p8 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_2threads_p8 +Checking test 038 control_2threads_p8 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -1663,21 +1869,47 @@ Checking test 035 control_2threads_p8 results .... Comparing 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.978298 - 0: The maximum resident set size (KB) = 1627440 + 0: The total amount of wall time = 247.924704 + 0: The maximum resident set size (KB) = 1628632 + +Test 038 control_2threads_p8 PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_lndp +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_p8_lndp +Checking test 039 control_p8_lndp results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing sfcf048.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK + Comparing atmf048.nc ............ALT CHECK......OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSFLX.GrbF48 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing GFSPRS.GrbF48 .........OK + + 0: The total amount of wall time = 468.921847 + 0: The maximum resident set size (KB) = 1542392 -Test 035 control_2threads_p8 PASS +Test 039 control_p8_lndp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_rrtmgp -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/control_p8_rrtmgp -Checking test 036 control_p8_rrtmgp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_p8_rrtmgp +Checking test 040 control_p8_rrtmgp results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1717,21 +1949,21 @@ Checking test 036 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 444.272559 - 0: The maximum resident set size (KB) = 1602372 + 0: The total amount of wall time = 338.059248 + 0: The maximum resident set size (KB) = 1610868 -Test 036 control_p8_rrtmgp PASS +Test 040 control_p8_rrtmgp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_mynn -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/control_p8_mynn -Checking test 037 control_p8_mynn results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_p8_mynn +Checking test 041 control_p8_mynn results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1771,21 +2003,21 @@ Checking test 037 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 322.516624 - 0: The maximum resident set size (KB) = 1551144 + 0: The total amount of wall time = 242.921928 + 0: The maximum resident set size (KB) = 1541044 -Test 037 control_p8_mynn PASS +Test 041 control_p8_mynn PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/merra2_thompson -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/merra2_thompson -Checking test 038 merra2_thompson results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/merra2_thompson +Checking test 042 merra2_thompson results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1825,154 +2057,186 @@ Checking test 038 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 413.843763 - 0: The maximum resident set size (KB) = 1557228 + 0: The total amount of wall time = 282.646309 + 0: The maximum resident set size (KB) = 1557748 -Test 038 merra2_thompson PASS +Test 042 merra2_thompson PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/regional_control -Checking test 039 regional_control results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/regional_control +Checking test 043 regional_control results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf006.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 627.913608 - 0: The maximum resident set size (KB) = 792192 + 0: The total amount of wall time = 481.236926 + 0: The maximum resident set size (KB) = 786580 -Test 039 regional_control PASS +Test 043 regional_control PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/regional_restart -Checking test 040 regional_restart results .... - Comparing dynf006.nc .........OK - Comparing phyf006.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/regional_restart +Checking test 044 regional_restart results .... + Comparing dynf006.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 252.187900 - 0: The maximum resident set size (KB) = 780412 + 0: The total amount of wall time = 229.066694 + 0: The maximum resident set size (KB) = 779500 -Test 040 regional_restart PASS +Test 044 regional_restart PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/regional_decomp -Checking test 041 regional_decomp results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/regional_control_qr +Checking test 045 regional_control_qr results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf006.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 633.639694 - 0: The maximum resident set size (KB) = 781892 + 0: The total amount of wall time = 498.906433 + 0: The maximum resident set size (KB) = 792220 -Test 041 regional_decomp PASS +Test 045 regional_control_qr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/regional_2threads -Checking test 042 regional_2threads results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/regional_restart_qr +Checking test 046 regional_restart_qr results .... + Comparing dynf006.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF06 .........OK + + 0: The total amount of wall time = 237.169333 + 0: The maximum resident set size (KB) = 783572 + +Test 046 regional_restart_qr PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/regional_decomp +Checking test 047 regional_decomp results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf006.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK + + 0: The total amount of wall time = 531.190823 + 0: The maximum resident set size (KB) = 779448 + +Test 047 regional_decomp PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/regional_2threads +Checking test 048 regional_2threads results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf006.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 463.511256 - 0: The maximum resident set size (KB) = 772800 + 0: The total amount of wall time = 363.250536 + 0: The maximum resident set size (KB) = 768928 -Test 042 regional_2threads PASS +Test 048 regional_2threads PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_noquilt -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/regional_noquilt -Checking test 043 regional_noquilt results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/regional_noquilt +Checking test 049 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 704.140507 - 0: The maximum resident set size (KB) = 773952 + 0: The total amount of wall time = 520.974923 + 0: The maximum resident set size (KB) = 771044 -Test 043 regional_noquilt PASS +Test 049 regional_noquilt PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/regional_netcdf_parallel -Checking test 044 regional_netcdf_parallel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/regional_netcdf_parallel +Checking test 050 regional_netcdf_parallel results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf006.nc ............ALT CHECK......OK Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 645.377935 - 0: The maximum resident set size (KB) = 781464 + 0: The total amount of wall time = 492.859854 + 0: The maximum resident set size (KB) = 781344 -Test 044 regional_netcdf_parallel PASS +Test 050 regional_netcdf_parallel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/regional_2dwrtdecomp -Checking test 045 regional_2dwrtdecomp results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/regional_2dwrtdecomp +Checking test 051 regional_2dwrtdecomp results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf006.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 630.245061 - 0: The maximum resident set size (KB) = 785584 + 0: The total amount of wall time = 490.300199 + 0: The maximum resident set size (KB) = 787648 -Test 045 regional_2dwrtdecomp PASS +Test 051 regional_2dwrtdecomp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/fv3_regional_wofs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/regional_wofs -Checking test 046 regional_wofs results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/regional_wofs +Checking test 052 regional_wofs results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf006.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 769.838525 - 0: The maximum resident set size (KB) = 521572 + 0: The total amount of wall time = 585.147504 + 0: The maximum resident set size (KB) = 523388 -Test 046 regional_wofs PASS +Test 052 regional_wofs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/rap_control -Checking test 047 rap_control results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/rap_control +Checking test 053 rap_control results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2012,39 +2276,39 @@ Checking test 047 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 768.661121 - 0: The maximum resident set size (KB) = 949460 + 0: The total amount of wall time = 628.751976 + 0: The maximum resident set size (KB) = 947612 -Test 047 rap_control PASS +Test 053 rap_control PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/regional_spp_sppt_shum_skeb -Checking test 048 regional_spp_sppt_shum_skeb results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/regional_spp_sppt_shum_skeb +Checking test 054 regional_spp_sppt_shum_skeb results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf001.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf001.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF01 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 520.242329 - 0: The maximum resident set size (KB) = 1085880 + 0: The total amount of wall time = 331.544712 + 0: The maximum resident set size (KB) = 1093752 -Test 048 regional_spp_sppt_shum_skeb PASS +Test 054 regional_spp_sppt_shum_skeb PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/rap_decomp -Checking test 049 rap_decomp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/rap_decomp +Checking test 055 rap_decomp results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2084,21 +2348,21 @@ Checking test 049 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 864.845092 - 0: The maximum resident set size (KB) = 941208 + 0: The total amount of wall time = 705.382014 + 0: The maximum resident set size (KB) = 944580 -Test 049 rap_decomp PASS +Test 055 rap_decomp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/rap_2threads -Checking test 050 rap_2threads results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/rap_2threads +Checking test 056 rap_2threads results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2138,17 +2402,17 @@ Checking test 050 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 769.926686 - 0: The maximum resident set size (KB) = 1032344 + 0: The total amount of wall time = 666.353913 + 0: The maximum resident set size (KB) = 1015748 -Test 050 rap_2threads PASS +Test 056 rap_2threads PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/rap_restart -Checking test 051 rap_restart results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/rap_restart +Checking test 057 rap_restart results .... + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -2184,21 +2448,21 @@ Checking test 051 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 424.498442 - 0: The maximum resident set size (KB) = 833640 + 0: The total amount of wall time = 347.780550 + 0: The maximum resident set size (KB) = 825364 -Test 051 rap_restart PASS +Test 057 rap_restart PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/rap_sfcdiff -Checking test 052 rap_sfcdiff 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 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/rap_sfcdiff +Checking test 058 rap_sfcdiff results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2238,21 +2502,21 @@ Checking test 052 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 840.694742 - 0: The maximum resident set size (KB) = 960472 + 0: The total amount of wall time = 675.735789 + 0: The maximum resident set size (KB) = 944792 -Test 052 rap_sfcdiff PASS +Test 058 rap_sfcdiff PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/rap_sfcdiff_decomp -Checking test 053 rap_sfcdiff_decomp 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 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/rap_sfcdiff_decomp +Checking test 059 rap_sfcdiff_decomp results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2292,17 +2556,17 @@ Checking test 053 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 854.017515 - 0: The maximum resident set size (KB) = 952148 + 0: The total amount of wall time = 700.113147 + 0: The maximum resident set size (KB) = 936492 -Test 053 rap_sfcdiff_decomp PASS +Test 059 rap_sfcdiff_decomp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/rap_sfcdiff_restart -Checking test 054 rap_sfcdiff_restart results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/rap_sfcdiff_restart +Checking test 060 rap_sfcdiff_restart results .... + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -2338,21 +2602,21 @@ Checking test 054 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 588.222988 - 0: The maximum resident set size (KB) = 838488 + 0: The total amount of wall time = 469.027997 + 0: The maximum resident set size (KB) = 832060 -Test 054 rap_sfcdiff_restart PASS +Test 060 rap_sfcdiff_restart PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/hrrr_control -Checking test 055 hrrr_control 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 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/hrrr_control +Checking test 061 hrrr_control results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2392,21 +2656,21 @@ Checking test 055 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 838.188518 - 0: The maximum resident set size (KB) = 959044 + 0: The total amount of wall time = 626.749381 + 0: The maximum resident set size (KB) = 942544 -Test 055 hrrr_control PASS +Test 061 hrrr_control PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/hrrr_control_decomp -Checking test 056 hrrr_control_decomp 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 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/hrrr_control_decomp +Checking test 062 hrrr_control_decomp results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2446,21 +2710,21 @@ Checking test 056 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 847.718416 - 0: The maximum resident set size (KB) = 949932 + 0: The total amount of wall time = 688.483748 + 0: The maximum resident set size (KB) = 947484 -Test 056 hrrr_control_decomp PASS +Test 062 hrrr_control_decomp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/hrrr_control_2threads -Checking test 057 hrrr_control_2threads 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 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/hrrr_control_2threads +Checking test 063 hrrr_control_2threads results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2500,17 +2764,17 @@ Checking test 057 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 758.962620 - 0: The maximum resident set size (KB) = 1022356 + 0: The total amount of wall time = 625.325883 + 0: The maximum resident set size (KB) = 1017808 -Test 057 hrrr_control_2threads PASS +Test 063 hrrr_control_2threads PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/hrrr_control_restart -Checking test 058 hrrr_control_restart results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/hrrr_control_restart +Checking test 064 hrrr_control_restart results .... + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -2546,21 +2810,21 @@ Checking test 058 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 558.793259 - 0: The maximum resident set size (KB) = 838052 + 0: The total amount of wall time = 454.225471 + 0: The maximum resident set size (KB) = 837216 -Test 058 hrrr_control_restart PASS +Test 064 hrrr_control_restart PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1beta -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/rrfs_v1beta -Checking test 059 rrfs_v1beta 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 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/rrfs_v1beta +Checking test 065 rrfs_v1beta results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2600,21 +2864,21 @@ Checking test 059 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 767.192457 - 0: The maximum resident set size (KB) = 940072 + 0: The total amount of wall time = 650.165143 + 0: The maximum resident set size (KB) = 953736 -Test 059 rrfs_v1beta PASS +Test 065 rrfs_v1beta PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1nssl -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/rrfs_v1nssl -Checking test 060 rrfs_v1nssl 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 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/rrfs_v1nssl +Checking test 066 rrfs_v1nssl results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2622,21 +2886,21 @@ Checking test 060 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 957.194370 - 0: The maximum resident set size (KB) = 630824 + 0: The total amount of wall time = 752.997042 + 0: The maximum resident set size (KB) = 637300 -Test 060 rrfs_v1nssl PASS +Test 066 rrfs_v1nssl PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/rrfs_v1nssl_nohailnoccn -Checking test 061 rrfs_v1nssl_nohailnoccn 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 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/rrfs_v1nssl_nohailnoccn +Checking test 067 rrfs_v1nssl_nohailnoccn results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2644,151 +2908,151 @@ Checking test 061 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 981.379816 - 0: The maximum resident set size (KB) = 634332 + 0: The total amount of wall time = 757.036625 + 0: The maximum resident set size (KB) = 630340 -Test 061 rrfs_v1nssl_nohailnoccn PASS +Test 067 rrfs_v1nssl_nohailnoccn PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/rrfs_smoke_conus13km_hrrr_warm -Checking test 062 rrfs_smoke_conus13km_hrrr_warm 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 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/rrfs_smoke_conus13km_hrrr_warm +Checking test 068 rrfs_smoke_conus13km_hrrr_warm results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing sfcf002.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK + Comparing atmf002.nc ............ALT CHECK......OK - 0: The total amount of wall time = 294.932879 - 0: The maximum resident set size (KB) = 904916 + 0: The total amount of wall time = 218.868373 + 0: The maximum resident set size (KB) = 905588 -Test 062 rrfs_smoke_conus13km_hrrr_warm PASS +Test 068 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/rrfs_smoke_conus13km_hrrr_warm_2threads -Checking test 063 rrfs_smoke_conus13km_hrrr_warm_2threads 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 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/rrfs_smoke_conus13km_hrrr_warm_2threads +Checking test 069 rrfs_smoke_conus13km_hrrr_warm_2threads results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing sfcf002.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK + Comparing atmf002.nc ............ALT CHECK......OK - 0: The total amount of wall time = 244.060213 - 0: The maximum resident set size (KB) = 861984 + 0: The total amount of wall time = 158.913356 + 0: The maximum resident set size (KB) = 859480 -Test 063 rrfs_smoke_conus13km_hrrr_warm_2threads PASS +Test 069 rrfs_smoke_conus13km_hrrr_warm_2threads PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/rrfs_conus13km_hrrr_warm -Checking test 064 rrfs_conus13km_hrrr_warm 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 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/rrfs_conus13km_hrrr_warm +Checking test 070 rrfs_conus13km_hrrr_warm results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing sfcf002.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK + Comparing atmf002.nc ............ALT CHECK......OK - 0: The total amount of wall time = 253.553616 - 0: The maximum resident set size (KB) = 868036 + 0: The total amount of wall time = 192.595495 + 0: The maximum resident set size (KB) = 859172 -Test 064 rrfs_conus13km_hrrr_warm PASS +Test 070 rrfs_conus13km_hrrr_warm PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/rrfs_smoke_conus13km_radar_tten_warm -Checking test 065 rrfs_smoke_conus13km_radar_tten_warm 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 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/rrfs_smoke_conus13km_radar_tten_warm +Checking test 071 rrfs_smoke_conus13km_radar_tten_warm results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing sfcf002.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK + Comparing atmf002.nc ............ALT CHECK......OK - 0: The total amount of wall time = 315.348898 - 0: The maximum resident set size (KB) = 907368 + 0: The total amount of wall time = 231.756822 + 0: The maximum resident set size (KB) = 892732 -Test 065 rrfs_smoke_conus13km_radar_tten_warm PASS +Test 071 rrfs_smoke_conus13km_radar_tten_warm PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmg -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/control_csawmg -Checking test 066 control_csawmg results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_csawmg +Checking test 072 control_csawmg results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 596.576528 - 0: The maximum resident set size (KB) = 666084 + 0: The total amount of wall time = 479.155561 + 0: The maximum resident set size (KB) = 670324 -Test 066 control_csawmg PASS +Test 072 control_csawmg PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmgt -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/control_csawmgt -Checking test 067 control_csawmgt results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_csawmgt +Checking test 073 control_csawmgt results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 612.602983 - 0: The maximum resident set size (KB) = 668784 + 0: The total amount of wall time = 480.549659 + 0: The maximum resident set size (KB) = 672128 -Test 067 control_csawmgt PASS +Test 073 control_csawmgt PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_ras -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/control_ras -Checking test 068 control_ras results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_ras +Checking test 074 control_ras results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 345.638483 - 0: The maximum resident set size (KB) = 635236 + 0: The total amount of wall time = 265.902659 + 0: The maximum resident set size (KB) = 633456 -Test 068 control_ras PASS +Test 074 control_ras PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wam -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/control_wam -Checking test 069 control_wam results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_wam +Checking test 075 control_wam results .... + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK - 0: The total amount of wall time = 186.596999 - 0: The maximum resident set size (KB) = 483916 + 0: The total amount of wall time = 155.259630 + 0: The maximum resident set size (KB) = 484020 -Test 069 control_wam PASS +Test 075 control_wam PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_faster -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/control_p8_faster -Checking test 070 control_p8_faster results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_p8_faster +Checking test 076 control_p8_faster results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2828,75 +3092,75 @@ Checking test 070 control_p8_faster results .... Comparing 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.465717 - 0: The maximum resident set size (KB) = 1536964 + 0: The total amount of wall time = 227.841006 + 0: The maximum resident set size (KB) = 1538092 -Test 070 control_p8_faster PASS +Test 076 control_p8_faster PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control_faster -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/regional_control_faster -Checking test 071 regional_control_faster results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/regional_control_faster +Checking test 077 regional_control_faster results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf006.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 527.864383 - 0: The maximum resident set size (KB) = 786228 + 0: The total amount of wall time = 418.813789 + 0: The maximum resident set size (KB) = 785144 -Test 071 regional_control_faster PASS +Test 077 regional_control_faster PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/rrfs_smoke_conus13km_hrrr_warm_debug -Checking test 072 rrfs_smoke_conus13km_hrrr_warm_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/rrfs_smoke_conus13km_hrrr_warm_debug +Checking test 078 rrfs_smoke_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 1114.012834 - 0: The maximum resident set size (KB) = 944896 + 0: The total amount of wall time = 1109.593963 + 0: The maximum resident set size (KB) = 930768 -Test 072 rrfs_smoke_conus13km_hrrr_warm_debug PASS +Test 078 rrfs_smoke_conus13km_hrrr_warm_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/rrfs_smoke_conus13km_hrrr_warm_debug_2threads -Checking test 073 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +Checking test 079 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 679.836760 - 0: The maximum resident set size (KB) = 912796 + 0: The total amount of wall time = 685.345590 + 0: The maximum resident set size (KB) = 896800 -Test 073 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS +Test 079 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/rrfs_conus13km_hrrr_warm_debug -Checking test 074 rrfs_conus13km_hrrr_warm_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/rrfs_conus13km_hrrr_warm_debug +Checking test 080 rrfs_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 990.106552 - 0: The maximum resident set size (KB) = 901520 + 0: The total amount of wall time = 1014.285612 + 0: The maximum resident set size (KB) = 893716 -Test 074 rrfs_conus13km_hrrr_warm_debug PASS +Test 080 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/control_CubedSphereGrid_debug -Checking test 075 control_CubedSphereGrid_debug results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_CubedSphereGrid_debug +Checking test 081 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -2922,359 +3186,359 @@ Checking test 075 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 241.892967 - 0: The maximum resident set size (KB) = 738464 + 0: The total amount of wall time = 240.446597 + 0: The maximum resident set size (KB) = 735872 -Test 075 control_CubedSphereGrid_debug PASS +Test 081 control_CubedSphereGrid_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/control_wrtGauss_netcdf_parallel_debug -Checking test 076 control_wrtGauss_netcdf_parallel_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_wrtGauss_netcdf_parallel_debug +Checking test 082 control_wrtGauss_netcdf_parallel_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 222.373258 - 0: The maximum resident set size (KB) = 738308 + 0: The total amount of wall time = 210.960842 + 0: The maximum resident set size (KB) = 732384 -Test 076 control_wrtGauss_netcdf_parallel_debug PASS +Test 082 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/control_stochy_debug -Checking test 077 control_stochy_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_stochy_debug +Checking test 083 control_stochy_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 235.983985 - 0: The maximum resident set size (KB) = 741532 + 0: The total amount of wall time = 233.899377 + 0: The maximum resident set size (KB) = 738508 -Test 077 control_stochy_debug PASS +Test 083 control_stochy_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_lndp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/control_lndp_debug -Checking test 078 control_lndp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_lndp_debug +Checking test 084 control_lndp_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 212.519482 - 0: The maximum resident set size (KB) = 740428 + 0: The total amount of wall time = 215.337774 + 0: The maximum resident set size (KB) = 740076 -Test 078 control_lndp_debug PASS +Test 084 control_lndp_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmg_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/control_csawmg_debug -Checking test 079 control_csawmg_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_csawmg_debug +Checking test 085 control_csawmg_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 319.907389 - 0: The maximum resident set size (KB) = 790480 + 0: The total amount of wall time = 321.269559 + 0: The maximum resident set size (KB) = 782256 -Test 079 control_csawmg_debug PASS +Test 085 control_csawmg_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmgt_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/control_csawmgt_debug -Checking test 080 control_csawmgt_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_csawmgt_debug +Checking test 086 control_csawmgt_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 351.716748 - 0: The maximum resident set size (KB) = 786876 + 0: The total amount of wall time = 321.037200 + 0: The maximum resident set size (KB) = 791036 -Test 080 control_csawmgt_debug PASS +Test 086 control_csawmgt_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_ras_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/control_ras_debug -Checking test 081 control_ras_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_ras_debug +Checking test 087 control_ras_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 207.018005 - 0: The maximum resident set size (KB) = 752280 + 0: The total amount of wall time = 218.868213 + 0: The maximum resident set size (KB) = 752416 -Test 081 control_ras_debug PASS +Test 087 control_ras_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_diag_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/control_diag_debug -Checking test 082 control_diag_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_diag_debug +Checking test 088 control_diag_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 225.899778 - 0: The maximum resident set size (KB) = 796932 + 0: The total amount of wall time = 225.691086 + 0: The maximum resident set size (KB) = 798496 -Test 082 control_diag_debug PASS +Test 088 control_diag_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_debug_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/control_debug_p8 -Checking test 083 control_debug_p8 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_debug_p8 +Checking test 089 control_debug_p8 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 228.538951 - 0: The maximum resident set size (KB) = 1559652 + 0: The total amount of wall time = 235.856449 + 0: The maximum resident set size (KB) = 1558152 -Test 083 control_debug_p8 PASS +Test 089 control_debug_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/regional_debug -Checking test 084 regional_debug results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/regional_debug +Checking test 090 regional_debug results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf001.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 1315.967660 - 0: The maximum resident set size (KB) = 802896 + 0: The total amount of wall time = 1309.385474 + 0: The maximum resident set size (KB) = 807152 -Test 084 regional_debug PASS +Test 090 regional_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/rap_control_debug -Checking test 085 rap_control_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/rap_control_debug +Checking test 091 rap_control_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 372.295099 - 0: The maximum resident set size (KB) = 1120708 + 0: The total amount of wall time = 375.407790 + 0: The maximum resident set size (KB) = 1109880 -Test 085 rap_control_debug PASS +Test 091 rap_control_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/hrrr_control_debug -Checking test 086 hrrr_control_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/hrrr_control_debug +Checking test 092 hrrr_control_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 357.791290 - 0: The maximum resident set size (KB) = 1120236 + 0: The total amount of wall time = 363.091265 + 0: The maximum resident set size (KB) = 1112088 -Test 086 hrrr_control_debug PASS +Test 092 hrrr_control_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/rap_unified_drag_suite_debug -Checking test 087 rap_unified_drag_suite_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/rap_unified_drag_suite_debug +Checking test 093 rap_unified_drag_suite_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 383.198690 - 0: The maximum resident set size (KB) = 1122436 + 0: The total amount of wall time = 365.594293 + 0: The maximum resident set size (KB) = 1119292 -Test 087 rap_unified_drag_suite_debug PASS +Test 093 rap_unified_drag_suite_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_diag_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/rap_diag_debug -Checking test 088 rap_diag_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 390.582552 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/rap_diag_debug +Checking test 094 rap_diag_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK + + 0: The total amount of wall time = 394.528654 0: The maximum resident set size (KB) = 1199572 -Test 088 rap_diag_debug PASS +Test 094 rap_diag_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/rap_cires_ugwp_debug -Checking test 089 rap_cires_ugwp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/rap_cires_ugwp_debug +Checking test 095 rap_cires_ugwp_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 403.489267 - 0: The maximum resident set size (KB) = 1112496 + 0: The total amount of wall time = 381.508303 + 0: The maximum resident set size (KB) = 1110296 -Test 089 rap_cires_ugwp_debug PASS +Test 095 rap_cires_ugwp_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/rap_unified_ugwp_debug -Checking test 090 rap_unified_ugwp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/rap_unified_ugwp_debug +Checking test 096 rap_unified_ugwp_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 370.651001 - 0: The maximum resident set size (KB) = 1120080 + 0: The total amount of wall time = 385.917256 + 0: The maximum resident set size (KB) = 1109892 -Test 090 rap_unified_ugwp_debug PASS +Test 096 rap_unified_ugwp_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_lndp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/rap_lndp_debug -Checking test 091 rap_lndp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/rap_lndp_debug +Checking test 097 rap_lndp_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 380.057900 - 0: The maximum resident set size (KB) = 1117860 + 0: The total amount of wall time = 370.509520 + 0: The maximum resident set size (KB) = 1113552 -Test 091 rap_lndp_debug PASS +Test 097 rap_lndp_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_flake_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/rap_flake_debug -Checking test 092 rap_flake_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/rap_flake_debug +Checking test 098 rap_flake_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 372.006598 - 0: The maximum resident set size (KB) = 1122460 + 0: The total amount of wall time = 389.475709 + 0: The maximum resident set size (KB) = 1118284 -Test 092 rap_flake_debug PASS +Test 098 rap_flake_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_progcld_thompson_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/rap_progcld_thompson_debug -Checking test 093 rap_progcld_thompson_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/rap_progcld_thompson_debug +Checking test 099 rap_progcld_thompson_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 375.147406 - 0: The maximum resident set size (KB) = 1110024 + 0: The total amount of wall time = 376.609837 + 0: The maximum resident set size (KB) = 1118420 -Test 093 rap_progcld_thompson_debug PASS +Test 099 rap_progcld_thompson_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_noah_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/rap_noah_debug -Checking test 094 rap_noah_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/rap_noah_debug +Checking test 100 rap_noah_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 370.141047 - 0: The maximum resident set size (KB) = 1112896 + 0: The total amount of wall time = 363.334208 + 0: The maximum resident set size (KB) = 1114480 -Test 094 rap_noah_debug PASS +Test 100 rap_noah_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/rap_sfcdiff_debug -Checking test 095 rap_sfcdiff_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/rap_sfcdiff_debug +Checking test 101 rap_sfcdiff_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 373.156478 - 0: The maximum resident set size (KB) = 1116600 + 0: The total amount of wall time = 410.738842 + 0: The maximum resident set size (KB) = 1118440 -Test 095 rap_sfcdiff_debug PASS +Test 101 rap_sfcdiff_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 096 rap_noah_sfcdiff_cires_ugwp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 102 rap_noah_sfcdiff_cires_ugwp_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 595.863240 - 0: The maximum resident set size (KB) = 1110964 + 0: The total amount of wall time = 600.533700 + 0: The maximum resident set size (KB) = 1114120 -Test 096 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 102 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1beta_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/rrfs_v1beta_debug -Checking test 097 rrfs_v1beta_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/rrfs_v1beta_debug +Checking test 103 rrfs_v1beta_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 369.529254 - 0: The maximum resident set size (KB) = 1114824 + 0: The total amount of wall time = 366.762459 + 0: The maximum resident set size (KB) = 1111972 -Test 097 rrfs_v1beta_debug PASS +Test 103 rrfs_v1beta_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wam_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/control_wam_debug -Checking test 098 control_wam_debug results .... - Comparing sfcf019.nc .........OK - Comparing atmf019.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_wam_debug +Checking test 104 control_wam_debug results .... + Comparing sfcf019.nc ............ALT CHECK......OK + Comparing atmf019.nc ............ALT CHECK......OK - 0: The total amount of wall time = 368.773873 - 0: The maximum resident set size (KB) = 445332 + 0: The total amount of wall time = 413.222421 + 0: The maximum resident set size (KB) = 443992 -Test 098 control_wam_debug PASS +Test 104 control_wam_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/regional_spp_sppt_shum_skeb_dyn32_phy32 -Checking test 099 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 105 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf001.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf001.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF01 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 443.885188 - 0: The maximum resident set size (KB) = 986604 + 0: The total amount of wall time = 327.913760 + 0: The maximum resident set size (KB) = 972292 -Test 099 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS +Test 105 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/rap_control_dyn32_phy32 -Checking test 100 rap_control_dyn32_phy32 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 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/rap_control_dyn32_phy32 +Checking test 106 rap_control_dyn32_phy32 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3314,21 +3578,21 @@ Checking test 100 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 567.539406 - 0: The maximum resident set size (KB) = 851608 + 0: The total amount of wall time = 575.672255 + 0: The maximum resident set size (KB) = 843000 -Test 100 rap_control_dyn32_phy32 PASS +Test 106 rap_control_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/hrrr_control_dyn32_phy32 -Checking test 101 hrrr_control_dyn32_phy32 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 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/hrrr_control_dyn32_phy32 +Checking test 107 hrrr_control_dyn32_phy32 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3368,21 +3632,21 @@ Checking test 101 hrrr_control_dyn32_phy32 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 = 328.832504 - 0: The maximum resident set size (KB) = 832620 + 0: The total amount of wall time = 280.607455 + 0: The maximum resident set size (KB) = 825536 -Test 101 hrrr_control_dyn32_phy32 PASS +Test 107 hrrr_control_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/rap_2threads_dyn32_phy32 -Checking test 102 rap_2threads_dyn32_phy32 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 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/rap_2threads_dyn32_phy32 +Checking test 108 rap_2threads_dyn32_phy32 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3422,21 +3686,21 @@ Checking test 102 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 561.020097 - 0: The maximum resident set size (KB) = 901116 + 0: The total amount of wall time = 553.467737 + 0: The maximum resident set size (KB) = 884328 -Test 102 rap_2threads_dyn32_phy32 PASS +Test 108 rap_2threads_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/hrrr_control_2threads_dyn32_phy32 -Checking test 103 hrrr_control_2threads_dyn32_phy32 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 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/hrrr_control_2threads_dyn32_phy32 +Checking test 109 hrrr_control_2threads_dyn32_phy32 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3476,21 +3740,21 @@ Checking test 103 hrrr_control_2threads_dyn32_phy32 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 = 326.157548 - 0: The maximum resident set size (KB) = 889140 + 0: The total amount of wall time = 280.697099 + 0: The maximum resident set size (KB) = 888784 -Test 103 hrrr_control_2threads_dyn32_phy32 PASS +Test 109 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/hrrr_control_decomp_dyn32_phy32 -Checking test 104 hrrr_control_decomp_dyn32_phy32 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 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/hrrr_control_decomp_dyn32_phy32 +Checking test 110 hrrr_control_decomp_dyn32_phy32 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3530,17 +3794,17 @@ Checking test 104 hrrr_control_decomp_dyn32_phy32 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 = 336.771888 - 0: The maximum resident set size (KB) = 826888 + 0: The total amount of wall time = 296.511802 + 0: The maximum resident set size (KB) = 824436 -Test 104 hrrr_control_decomp_dyn32_phy32 PASS +Test 110 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/rap_restart_dyn32_phy32 -Checking test 105 rap_restart_dyn32_phy32 results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/rap_restart_dyn32_phy32 +Checking test 111 rap_restart_dyn32_phy32 results .... + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -3576,17 +3840,17 @@ Checking test 105 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 476.116076 - 0: The maximum resident set size (KB) = 815760 + 0: The total amount of wall time = 381.491472 + 0: The maximum resident set size (KB) = 811212 -Test 105 rap_restart_dyn32_phy32 PASS +Test 111 rap_restart_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/hrrr_control_restart_dyn32_phy32 -Checking test 106 hrrr_control_restart_dyn32_phy32 results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/hrrr_control_restart_dyn32_phy32 +Checking test 112 hrrr_control_restart_dyn32_phy32 results .... + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.180000.coupler.res .........OK @@ -3622,21 +3886,21 @@ Checking test 106 hrrr_control_restart_dyn32_phy32 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 = 144.021968 - 0: The maximum resident set size (KB) = 761616 + 0: The total amount of wall time = 148.756361 + 0: The maximum resident set size (KB) = 760532 -Test 106 hrrr_control_restart_dyn32_phy32 PASS +Test 112 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn64_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/rap_control_dyn64_phy32 -Checking test 107 rap_control_dyn64_phy32 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 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/rap_control_dyn64_phy32 +Checking test 113 rap_control_dyn64_phy32 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3676,116 +3940,116 @@ Checking test 107 rap_control_dyn64_phy32 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 = 360.004062 - 0: The maximum resident set size (KB) = 867216 + 0: The total amount of wall time = 360.810121 + 0: The maximum resident set size (KB) = 861848 -Test 107 rap_control_dyn64_phy32 PASS +Test 113 rap_control_dyn64_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/rap_control_debug_dyn32_phy32 -Checking test 108 rap_control_debug_dyn32_phy32 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/rap_control_debug_dyn32_phy32 +Checking test 114 rap_control_debug_dyn32_phy32 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 373.572061 - 0: The maximum resident set size (KB) = 1003624 + 0: The total amount of wall time = 379.922105 + 0: The maximum resident set size (KB) = 993916 -Test 108 rap_control_debug_dyn32_phy32 PASS +Test 114 rap_control_debug_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/hrrr_control_debug_dyn32_phy32 -Checking test 109 hrrr_control_debug_dyn32_phy32 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/hrrr_control_debug_dyn32_phy32 +Checking test 115 hrrr_control_debug_dyn32_phy32 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 372.125920 - 0: The maximum resident set size (KB) = 1001296 + 0: The total amount of wall time = 409.469279 + 0: The maximum resident set size (KB) = 989872 -Test 109 hrrr_control_debug_dyn32_phy32 PASS +Test 115 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/rap_control_dyn64_phy32_debug -Checking test 110 rap_control_dyn64_phy32_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/rap_control_dyn64_phy32_debug +Checking test 116 rap_control_dyn64_phy32_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 369.383182 - 0: The maximum resident set size (KB) = 1040124 + 0: The total amount of wall time = 375.058108 + 0: The maximum resident set size (KB) = 1029792 -Test 110 rap_control_dyn64_phy32_debug PASS +Test 116 rap_control_dyn64_phy32_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/hafs_regional_atm -Checking test 111 hafs_regional_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/hafs_regional_atm +Checking test 117 hafs_regional_atm results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 425.900817 - 0: The maximum resident set size (KB) = 1214904 + 0: The total amount of wall time = 394.628091 + 0: The maximum resident set size (KB) = 1219332 -Test 111 hafs_regional_atm PASS +Test 117 hafs_regional_atm PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/hafs_regional_atm_thompson_gfdlsf -Checking test 112 hafs_regional_atm_thompson_gfdlsf results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/hafs_regional_atm_thompson_gfdlsf +Checking test 118 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 601.018123 - 0: The maximum resident set size (KB) = 1588548 + 0: The total amount of wall time = 578.870720 + 0: The maximum resident set size (KB) = 1571112 -Test 112 hafs_regional_atm_thompson_gfdlsf PASS +Test 118 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_ocn -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/hafs_regional_atm_ocn -Checking test 113 hafs_regional_atm_ocn results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/hafs_regional_atm_ocn +Checking test 119 hafs_regional_atm_ocn results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK Comparing archv.2019_241_06.a .........OK Comparing archs.2019_241_06.a .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 652.825057 - 0: The maximum resident set size (KB) = 1295928 + 0: The total amount of wall time = 597.348745 + 0: The maximum resident set size (KB) = 1290984 -Test 113 hafs_regional_atm_ocn PASS +Test 119 hafs_regional_atm_ocn PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_wav -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/hafs_regional_atm_wav -Checking test 114 hafs_regional_atm_wav results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/hafs_regional_atm_wav +Checking test 120 hafs_regional_atm_wav results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 1014.672650 - 0: The maximum resident set size (KB) = 1265552 + 0: The total amount of wall time = 1015.139757 + 0: The maximum resident set size (KB) = 1319608 -Test 114 hafs_regional_atm_wav PASS +Test 120 hafs_regional_atm_wav PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/hafs_regional_atm_ocn_wav -Checking test 115 hafs_regional_atm_ocn_wav results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/hafs_regional_atm_ocn_wav +Checking test 121 hafs_regional_atm_ocn_wav results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK Comparing archv.2019_241_06.a .........OK Comparing archs.2019_241_06.a .........OK Comparing out_grd.ww3 .........OK @@ -3793,162 +4057,162 @@ Checking test 115 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 1136.477211 - 0: The maximum resident set size (KB) = 1339284 + 0: The total amount of wall time = 1123.858784 + 0: The maximum resident set size (KB) = 1338948 -Test 115 hafs_regional_atm_ocn_wav PASS +Test 121 hafs_regional_atm_ocn_wav PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_docn -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/hafs_regional_docn -Checking test 116 hafs_regional_docn results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/hafs_regional_docn +Checking test 122 hafs_regional_docn results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 592.998266 - 0: The maximum resident set size (KB) = 1303276 + 0: The total amount of wall time = 585.097728 + 0: The maximum resident set size (KB) = 1266668 -Test 116 hafs_regional_docn PASS +Test 122 hafs_regional_docn PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_docn_oisst -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/hafs_regional_docn_oisst -Checking test 117 hafs_regional_docn_oisst results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/hafs_regional_docn_oisst +Checking test 123 hafs_regional_docn_oisst results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 590.849058 - 0: The maximum resident set size (KB) = 1284292 + 0: The total amount of wall time = 598.832795 + 0: The maximum resident set size (KB) = 1284588 -Test 117 hafs_regional_docn_oisst PASS +Test 123 hafs_regional_docn_oisst PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_datm_cdeps -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/hafs_regional_datm_cdeps -Checking test 118 hafs_regional_datm_cdeps results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/hafs_regional_datm_cdeps +Checking test 124 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 1435.457922 - 0: The maximum resident set size (KB) = 976984 + 0: The total amount of wall time = 1397.898532 + 0: The maximum resident set size (KB) = 976496 -Test 118 hafs_regional_datm_cdeps PASS +Test 124 hafs_regional_datm_cdeps PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/datm_cdeps_control_cfsr -Checking test 119 datm_cdeps_control_cfsr results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/datm_cdeps_control_cfsr +Checking test 125 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 277.736313 - 0: The maximum resident set size (KB) = 961392 + 0: The total amount of wall time = 235.778202 + 0: The maximum resident set size (KB) = 961984 -Test 119 datm_cdeps_control_cfsr PASS +Test 125 datm_cdeps_control_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/datm_cdeps_restart_cfsr -Checking test 120 datm_cdeps_restart_cfsr results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/datm_cdeps_restart_cfsr +Checking test 126 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 168.308067 - 0: The maximum resident set size (KB) = 940384 + 0: The total amount of wall time = 150.108798 + 0: The maximum resident set size (KB) = 932196 -Test 120 datm_cdeps_restart_cfsr PASS +Test 126 datm_cdeps_restart_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/datm_cdeps_control_gefs -Checking test 121 datm_cdeps_control_gefs results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/datm_cdeps_control_gefs +Checking test 127 datm_cdeps_control_gefs 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 = 259.524122 - 0: The maximum resident set size (KB) = 864064 + 0: The total amount of wall time = 232.115675 + 0: The maximum resident set size (KB) = 865672 -Test 121 datm_cdeps_control_gefs PASS +Test 127 datm_cdeps_control_gefs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_iau_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/datm_cdeps_iau_gefs -Checking test 122 datm_cdeps_iau_gefs results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/datm_cdeps_iau_gefs +Checking test 128 datm_cdeps_iau_gefs 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 = 259.139644 - 0: The maximum resident set size (KB) = 861596 + 0: The total amount of wall time = 227.842588 + 0: The maximum resident set size (KB) = 859076 -Test 122 datm_cdeps_iau_gefs PASS +Test 128 datm_cdeps_iau_gefs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_stochy_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/datm_cdeps_stochy_gefs -Checking test 123 datm_cdeps_stochy_gefs results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/datm_cdeps_stochy_gefs +Checking test 129 datm_cdeps_stochy_gefs 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 = 261.172310 - 0: The maximum resident set size (KB) = 859976 + 0: The total amount of wall time = 238.091922 + 0: The maximum resident set size (KB) = 866096 -Test 123 datm_cdeps_stochy_gefs PASS +Test 129 datm_cdeps_stochy_gefs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/datm_cdeps_ciceC_cfsr -Checking test 124 datm_cdeps_ciceC_cfsr results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/datm_cdeps_ciceC_cfsr +Checking test 130 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 262.791035 - 0: The maximum resident set size (KB) = 966636 + 0: The total amount of wall time = 228.359561 + 0: The maximum resident set size (KB) = 964808 -Test 124 datm_cdeps_ciceC_cfsr PASS +Test 130 datm_cdeps_ciceC_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/datm_cdeps_bulk_cfsr -Checking test 125 datm_cdeps_bulk_cfsr results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/datm_cdeps_bulk_cfsr +Checking test 131 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 251.994788 - 0: The maximum resident set size (KB) = 970412 + 0: The total amount of wall time = 237.370718 + 0: The maximum resident set size (KB) = 965176 -Test 125 datm_cdeps_bulk_cfsr PASS +Test 131 datm_cdeps_bulk_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/datm_cdeps_bulk_gefs -Checking test 126 datm_cdeps_bulk_gefs results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/datm_cdeps_bulk_gefs +Checking test 132 datm_cdeps_bulk_gefs 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 = 279.571745 - 0: The maximum resident set size (KB) = 858288 + 0: The total amount of wall time = 236.753671 + 0: The maximum resident set size (KB) = 861704 -Test 126 datm_cdeps_bulk_gefs PASS +Test 132 datm_cdeps_bulk_gefs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/datm_cdeps_mx025_cfsr -Checking test 127 datm_cdeps_mx025_cfsr results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/datm_cdeps_mx025_cfsr +Checking test 133 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -3956,15 +4220,15 @@ Checking test 127 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 625.520317 - 0: The maximum resident set size (KB) = 760640 + 0: The total amount of wall time = 638.185189 + 0: The maximum resident set size (KB) = 765728 -Test 127 datm_cdeps_mx025_cfsr PASS +Test 133 datm_cdeps_mx025_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/datm_cdeps_mx025_gefs -Checking test 128 datm_cdeps_mx025_gefs results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/datm_cdeps_mx025_gefs +Checking test 134 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -3972,78 +4236,78 @@ Checking test 128 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 606.993460 - 0: The maximum resident set size (KB) = 736560 + 0: The total amount of wall time = 667.766258 + 0: The maximum resident set size (KB) = 737456 -Test 128 datm_cdeps_mx025_gefs PASS +Test 134 datm_cdeps_mx025_gefs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/datm_cdeps_multiple_files_cfsr -Checking test 129 datm_cdeps_multiple_files_cfsr results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/datm_cdeps_multiple_files_cfsr +Checking test 135 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 258.009238 - 0: The maximum resident set size (KB) = 964472 + 0: The total amount of wall time = 231.901616 + 0: The maximum resident set size (KB) = 959120 -Test 129 datm_cdeps_multiple_files_cfsr PASS +Test 135 datm_cdeps_multiple_files_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/datm_cdeps_3072x1536_cfsr -Checking test 130 datm_cdeps_3072x1536_cfsr results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/datm_cdeps_3072x1536_cfsr +Checking test 136 datm_cdeps_3072x1536_cfsr 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 = 385.353845 - 0: The maximum resident set size (KB) = 2258720 + 0: The total amount of wall time = 373.071805 + 0: The maximum resident set size (KB) = 2247176 -Test 130 datm_cdeps_3072x1536_cfsr PASS +Test 136 datm_cdeps_3072x1536_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_gfs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/datm_cdeps_gfs -Checking test 131 datm_cdeps_gfs results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/datm_cdeps_gfs +Checking test 137 datm_cdeps_gfs 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 = 356.968961 - 0: The maximum resident set size (KB) = 2261944 + 0: The total amount of wall time = 306.455340 + 0: The maximum resident set size (KB) = 2270020 -Test 131 datm_cdeps_gfs PASS +Test 137 datm_cdeps_gfs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_debug_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/datm_cdeps_debug_cfsr -Checking test 132 datm_cdeps_debug_cfsr results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/datm_cdeps_debug_cfsr +Checking test 138 datm_cdeps_debug_cfsr 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 = 593.911048 - 0: The maximum resident set size (KB) = 916092 + 0: The total amount of wall time = 594.927580 + 0: The maximum resident set size (KB) = 926368 -Test 132 datm_cdeps_debug_cfsr PASS +Test 138 datm_cdeps_debug_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr_faster -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/datm_cdeps_control_cfsr_faster -Checking test 133 datm_cdeps_control_cfsr_faster results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/datm_cdeps_control_cfsr_faster +Checking test 139 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.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 = 265.367391 - 0: The maximum resident set size (KB) = 964948 + 0: The total amount of wall time = 258.481537 + 0: The maximum resident set size (KB) = 984292 -Test 133 datm_cdeps_control_cfsr_faster PASS +Test 139 datm_cdeps_control_cfsr_faster PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/datm_cdeps_lnd_gswp3 -Checking test 134 datm_cdeps_lnd_gswp3 results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/datm_cdeps_lnd_gswp3 +Checking test 140 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4051,15 +4315,15 @@ Checking test 134 datm_cdeps_lnd_gswp3 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 = 67.794747 - 0: The maximum resident set size (KB) = 253832 + 0: The total amount of wall time = 19.852206 + 0: The maximum resident set size (KB) = 252636 -Test 134 datm_cdeps_lnd_gswp3 PASS +Test 140 datm_cdeps_lnd_gswp3 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/datm_cdeps_lnd_gswp3_rst -Checking test 135 datm_cdeps_lnd_gswp3_rst results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/datm_cdeps_lnd_gswp3_rst +Checking test 141 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4067,15 +4331,15 @@ Checking test 135 datm_cdeps_lnd_gswp3_rst 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 = 25.062960 - 0: The maximum resident set size (KB) = 247044 + 0: The total amount of wall time = 21.070416 + 0: The maximum resident set size (KB) = 252292 -Test 135 datm_cdeps_lnd_gswp3_rst PASS +Test 141 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_atmlnd_sbs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/control_p8_atmlnd_sbs -Checking test 136 control_p8_atmlnd_sbs results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_p8_atmlnd_sbs +Checking test 142 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -4159,19 +4423,19 @@ Checking test 136 control_p8_atmlnd_sbs results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 348.632207 - 0: The maximum resident set size (KB) = 1584304 + 0: The total amount of wall time = 433.064265 + 0: The maximum resident set size (KB) = 1597932 -Test 136 control_p8_atmlnd_sbs PASS +Test 142 control_p8_atmlnd_sbs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_atmwav -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/control_atmwav -Checking test 137 control_atmwav results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_atmwav +Checking test 143 control_atmwav results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -4210,19 +4474,19 @@ Checking test 137 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 140.113237 - 0: The maximum resident set size (KB) = 595044 + 0: The total amount of wall time = 170.062973 + 0: The maximum resident set size (KB) = 594136 -Test 137 control_atmwav PASS +Test 143 control_atmwav PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/atmaero_control_p8 -Checking test 138 atmaero_control_p8 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/atmaero_control_p8 +Checking test 144 atmaero_control_p8 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -4261,19 +4525,19 @@ Checking test 138 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 409.604949 - 0: The maximum resident set size (KB) = 1632128 + 0: The total amount of wall time = 350.530466 + 0: The maximum resident set size (KB) = 1636208 -Test 138 atmaero_control_p8 PASS +Test 144 atmaero_control_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8_rad -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/atmaero_control_p8_rad -Checking test 139 atmaero_control_p8_rad results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/atmaero_control_p8_rad +Checking test 145 atmaero_control_p8_rad results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -4312,19 +4576,19 @@ Checking test 139 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 421.516242 - 0: The maximum resident set size (KB) = 1679016 + 0: The total amount of wall time = 402.601254 + 0: The maximum resident set size (KB) = 1659504 -Test 139 atmaero_control_p8_rad PASS +Test 145 atmaero_control_p8_rad PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/atmaero_control_p8_rad_micro -Checking test 140 atmaero_control_p8_rad_micro results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/atmaero_control_p8_rad_micro +Checking test 146 atmaero_control_p8_rad_micro results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -4363,21 +4627,21 @@ Checking test 140 atmaero_control_p8_rad_micro results .... Comparing 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.335661 - 0: The maximum resident set size (KB) = 1668648 + 0: The total amount of wall time = 442.244394 + 0: The maximum resident set size (KB) = 1678400 -Test 140 atmaero_control_p8_rad_micro PASS +Test 146 atmaero_control_p8_rad_micro PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/regional_atmaq -Checking test 141 regional_atmaq results .... - Comparing sfcf000.nc .........OK - Comparing sfcf003.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf003.nc .........OK - Comparing atmf006.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/regional_atmaq +Checking test 147 regional_atmaq results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf003.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf003.nc ............ALT CHECK......OK + Comparing atmf006.nc ............ALT CHECK......OK Comparing RESTART/20190801.180000.coupler.res .........OK Comparing RESTART/20190801.180000.fv_core.res.nc .........OK Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK @@ -4386,21 +4650,21 @@ Checking test 141 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 1637.269158 - 0: The maximum resident set size (KB) = 1167836 + 0: The total amount of wall time = 1103.015116 + 0: The maximum resident set size (KB) = 1260576 -Test 141 regional_atmaq PASS +Test 147 regional_atmaq PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq_faster -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_214725/regional_atmaq_faster -Checking test 142 regional_atmaq_faster results .... - Comparing sfcf000.nc .........OK - Comparing sfcf003.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf003.nc .........OK - Comparing atmf006.nc .........OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/regional_atmaq_faster +Checking test 148 regional_atmaq_faster results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf003.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf003.nc ............ALT CHECK......OK + Comparing atmf006.nc ............ALT CHECK......OK Comparing RESTART/20190801.180000.coupler.res .........OK Comparing RESTART/20190801.180000.fv_core.res.nc .........OK Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK @@ -4409,12 +4673,12 @@ Checking test 142 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 1605.986692 - 0: The maximum resident set size (KB) = 1239728 + 0: The total amount of wall time = 1023.081873 + 0: The maximum resident set size (KB) = 1177860 -Test 142 regional_atmaq_faster PASS +Test 148 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Sun Mar 26 17:45:30 UTC 2023 -Elapsed time: 03h:19m:16s. Have a nice day! +Tue Mar 28 00:07:16 UTC 2023 +Elapsed time: 02h:24m:57s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index 13530396746..20a53a831e4 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,42 +1,42 @@ -Sat Mar 25 19:30:46 CDT 2023 +Mon Mar 27 18:20:59 CDT 2023 Start Regression test -Compile 001 elapsed time 744 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 736 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 630 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 268 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 001 elapsed time 751 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 744 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 700 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 278 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON Compile 005 elapsed time 261 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 648 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 632 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 820 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 640 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 569 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 011 elapsed time 501 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 503 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 702 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 241 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 239 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 541 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 630 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 618 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 836 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 743 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 617 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 011 elapsed time 577 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 505 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 737 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 256 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 200 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 537 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile 017 elapsed time 543 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 161 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 164 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 653 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 021 elapsed time 210 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 722 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 614 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 024 elapsed time 207 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 131 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 185 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 53 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 570 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 571 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 569 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 546 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 174 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 627 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 174 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 181 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 646 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 021 elapsed time 224 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 818 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 819 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 024 elapsed time 199 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 125 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 218 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 62 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 590 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 606 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 602 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 549 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 193 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 605 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8_mixedmode -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/cpld_control_p8_mixedmode +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -101,14 +101,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 312.672657 - 0: The maximum resident set size (KB) = 3144384 + 0: The total amount of wall time = 307.097495 + 0: The maximum resident set size (KB) = 3144104 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_gfsv17 -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/cpld_control_gfsv17 +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -172,14 +172,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 235.367867 - 0: The maximum resident set size (KB) = 1732552 + 0: The total amount of wall time = 228.749370 + 0: The maximum resident set size (KB) = 1738640 Test 002 cpld_control_gfsv17 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/cpld_control_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -244,14 +244,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 346.942342 - 0: The maximum resident set size (KB) = 3182940 + 0: The total amount of wall time = 341.370406 + 0: The maximum resident set size (KB) = 3173296 Test 003 cpld_control_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/cpld_restart_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -304,15 +304,147 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 233.706184 - 0: The maximum resident set size (KB) = 3050812 + 0: The total amount of wall time = 204.730355 + 0: The maximum resident set size (KB) = 3053752 Test 004 cpld_restart_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/cpld_2threads_p8 -Checking test 005 cpld_2threads_p8 results .... +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/cpld_control_qr_p8 +Checking test 005 cpld_control_qr_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 355.638999 + 0: The maximum resident set size (KB) = 3195724 + +Test 005 cpld_control_qr_p8 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/cpld_restart_qr_p8 +Checking test 006 cpld_restart_qr_p8 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 211.417385 + 0: The maximum resident set size (KB) = 3067972 + +Test 006 cpld_restart_qr_p8 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/cpld_2threads_p8 +Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -364,15 +496,15 @@ Checking test 005 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 410.687451 - 0: The maximum resident set size (KB) = 3521624 + 0: The total amount of wall time = 401.396426 + 0: The maximum resident set size (KB) = 3513448 -Test 005 cpld_2threads_p8 PASS +Test 007 cpld_2threads_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/cpld_decomp_p8 -Checking test 006 cpld_decomp_p8 results .... +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/cpld_decomp_p8 +Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -424,15 +556,15 @@ Checking test 006 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 353.776001 - 0: The maximum resident set size (KB) = 3179892 + 0: The total amount of wall time = 344.725224 + 0: The maximum resident set size (KB) = 3178932 -Test 006 cpld_decomp_p8 PASS +Test 008 cpld_decomp_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/cpld_mpi_p8 -Checking test 007 cpld_mpi_p8 results .... +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/cpld_mpi_p8 +Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -484,15 +616,15 @@ Checking test 007 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 287.590585 - 0: The maximum resident set size (KB) = 3035304 + 0: The total amount of wall time = 287.064538 + 0: The maximum resident set size (KB) = 3033432 -Test 007 cpld_mpi_p8 PASS +Test 009 cpld_mpi_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_ciceC_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/cpld_control_ciceC_p8 -Checking test 008 cpld_control_ciceC_p8 results .... +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/cpld_control_ciceC_p8 +Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -556,15 +688,15 @@ Checking test 008 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 345.992887 - 0: The maximum resident set size (KB) = 3196412 + 0: The total amount of wall time = 345.532873 + 0: The maximum resident set size (KB) = 3190776 -Test 008 cpld_control_ciceC_p8 PASS +Test 010 cpld_control_ciceC_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/cpld_control_c192_p8 -Checking test 009 cpld_control_c192_p8 results .... +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/cpld_control_c192_p8 +Checking test 011 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK Comparing sfcf030.tile3.nc .........OK @@ -616,15 +748,15 @@ Checking test 009 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 683.706698 - 0: The maximum resident set size (KB) = 3258764 + 0: The total amount of wall time = 639.602363 + 0: The maximum resident set size (KB) = 3244676 -Test 009 cpld_control_c192_p8 PASS +Test 011 cpld_control_c192_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/cpld_restart_c192_p8 -Checking test 010 cpld_restart_c192_p8 results .... +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/cpld_restart_c192_p8 +Checking test 012 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK Comparing sfcf030.tile3.nc .........OK @@ -676,17 +808,17 @@ Checking test 010 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 446.348973 - 0: The maximum resident set size (KB) = 3160100 + 0: The total amount of wall time = 449.297244 + 0: The maximum resident set size (KB) = 3165072 -Test 010 cpld_restart_c192_p8 PASS +Test 012 cpld_restart_c192_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_bmark_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/cpld_bmark_p8 -Checking test 011 cpld_bmark_p8 results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/cpld_bmark_p8 +Checking test 013 cpld_bmark_p8 results .... + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atmf006.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF06 .........OK Comparing GFSPRS.GrbF06 .........OK Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK @@ -731,17 +863,17 @@ Checking test 011 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 896.060735 - 0: The maximum resident set size (KB) = 4040552 + 0: The total amount of wall time = 880.984605 + 0: The maximum resident set size (KB) = 4050616 -Test 011 cpld_bmark_p8 PASS +Test 013 cpld_bmark_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_bmark_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/cpld_restart_bmark_p8 -Checking test 012 cpld_restart_bmark_p8 results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/cpld_restart_bmark_p8 +Checking test 014 cpld_restart_bmark_p8 results .... + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atmf006.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF06 .........OK Comparing GFSPRS.GrbF06 .........OK Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK @@ -786,15 +918,15 @@ Checking test 012 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 535.689749 - 0: The maximum resident set size (KB) = 3988908 + 0: The total amount of wall time = 556.969436 + 0: The maximum resident set size (KB) = 3978956 -Test 012 cpld_restart_bmark_p8 PASS +Test 014 cpld_restart_bmark_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_noaero_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/cpld_control_noaero_p8 -Checking test 013 cpld_control_noaero_p8 results .... +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/cpld_control_noaero_p8 +Checking test 015 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -857,15 +989,15 @@ Checking test 013 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 254.761842 - 0: The maximum resident set size (KB) = 1723308 + 0: The total amount of wall time = 255.686271 + 0: The maximum resident set size (KB) = 1730688 -Test 013 cpld_control_noaero_p8 PASS +Test 015 cpld_control_noaero_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c96_noaero_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/cpld_control_nowave_noaero_p8 -Checking test 014 cpld_control_nowave_noaero_p8 results .... +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/cpld_control_nowave_noaero_p8 +Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -926,15 +1058,15 @@ Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 259.541652 - 0: The maximum resident set size (KB) = 1761028 + 0: The total amount of wall time = 260.636504 + 0: The maximum resident set size (KB) = 1771452 -Test 014 cpld_control_nowave_noaero_p8 PASS +Test 016 cpld_control_nowave_noaero_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_debug_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/cpld_debug_p8 -Checking test 015 cpld_debug_p8 results .... +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/cpld_debug_p8 +Checking test 017 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -986,15 +1118,15 @@ Checking test 015 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 682.912847 - 0: The maximum resident set size (KB) = 3245464 + 0: The total amount of wall time = 686.007411 + 0: The maximum resident set size (KB) = 3246880 -Test 015 cpld_debug_p8 PASS +Test 017 cpld_debug_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_debug_noaero_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/cpld_debug_noaero_p8 -Checking test 016 cpld_debug_noaero_p8 results .... +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/cpld_debug_noaero_p8 +Checking test 018 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -1045,15 +1177,15 @@ Checking test 016 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 431.620839 - 0: The maximum resident set size (KB) = 1752936 + 0: The total amount of wall time = 424.734041 + 0: The maximum resident set size (KB) = 1738836 -Test 016 cpld_debug_noaero_p8 PASS +Test 018 cpld_debug_noaero_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_noaero_p8_agrid -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/cpld_control_noaero_p8_agrid -Checking test 017 cpld_control_noaero_p8_agrid results .... +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/cpld_control_noaero_p8_agrid +Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1114,15 +1246,15 @@ Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 267.644773 - 0: The maximum resident set size (KB) = 1762012 + 0: The total amount of wall time = 266.438157 + 0: The maximum resident set size (KB) = 1758080 -Test 017 cpld_control_noaero_p8_agrid PASS +Test 019 cpld_control_noaero_p8_agrid PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c48 -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/cpld_control_c48 -Checking test 018 cpld_control_c48 results .... +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/cpld_control_c48 +Checking test 020 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -1171,15 +1303,15 @@ Checking test 018 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 499.684630 - 0: The maximum resident set size (KB) = 2804320 + 0: The total amount of wall time = 498.484072 + 0: The maximum resident set size (KB) = 2803212 -Test 018 cpld_control_c48 PASS +Test 020 cpld_control_c48 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_warmstart_c48 -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/cpld_warmstart_c48 -Checking test 019 cpld_warmstart_c48 results .... +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/cpld_warmstart_c48 +Checking test 021 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK Comparing sfcf006.tile3.nc .........OK @@ -1228,15 +1360,15 @@ Checking test 019 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 140.839788 - 0: The maximum resident set size (KB) = 2801892 + 0: The total amount of wall time = 135.214635 + 0: The maximum resident set size (KB) = 2811416 -Test 019 cpld_warmstart_c48 PASS +Test 021 cpld_warmstart_c48 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_warmstart_c48 -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/cpld_restart_c48 -Checking test 020 cpld_restart_c48 results .... +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/cpld_restart_c48 +Checking test 022 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK Comparing sfcf006.tile3.nc .........OK @@ -1285,15 +1417,15 @@ Checking test 020 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 76.600407 - 0: The maximum resident set size (KB) = 2199880 + 0: The total amount of wall time = 73.786560 + 0: The maximum resident set size (KB) = 2242888 -Test 020 cpld_restart_c48 PASS +Test 022 cpld_restart_c48 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/cpld_control_p8_faster -Checking test 021 cpld_control_p8_faster results .... +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/cpld_control_p8_faster +Checking test 023 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1357,15 +1489,15 @@ Checking test 021 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 327.149169 - 0: The maximum resident set size (KB) = 3177988 + 0: The total amount of wall time = 330.161419 + 0: The maximum resident set size (KB) = 3180460 -Test 021 cpld_control_p8_faster PASS +Test 023 cpld_control_p8_faster PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/control_CubedSphereGrid -Checking test 022 control_CubedSphereGrid results .... +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_CubedSphereGrid +Checking test 024 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1391,49 +1523,49 @@ Checking test 022 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 133.230011 - 0: The maximum resident set size (KB) = 633016 + 0: The total amount of wall time = 133.120015 + 0: The maximum resident set size (KB) = 636300 -Test 022 control_CubedSphereGrid PASS +Test 024 control_CubedSphereGrid PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid_parallel -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/control_CubedSphereGrid_parallel -Checking test 023 control_CubedSphereGrid_parallel results .... +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_CubedSphereGrid_parallel +Checking test 025 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc .........OK + Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK - 0: The total amount of wall time = 128.344333 - 0: The maximum resident set size (KB) = 628536 + 0: The total amount of wall time = 127.435070 + 0: The maximum resident set size (KB) = 637824 -Test 023 control_CubedSphereGrid_parallel PASS +Test 025 control_CubedSphereGrid_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_latlon -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/control_latlon -Checking test 024 control_latlon results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_latlon +Checking test 026 control_latlon results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 137.185463 - 0: The maximum resident set size (KB) = 632592 + 0: The total amount of wall time = 133.321503 + 0: The maximum resident set size (KB) = 637140 -Test 024 control_latlon PASS +Test 026 control_latlon PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wrtGauss_netcdf_parallel -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/control_wrtGauss_netcdf_parallel -Checking test 025 control_wrtGauss_netcdf_parallel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_wrtGauss_netcdf_parallel +Checking test 027 control_wrtGauss_netcdf_parallel results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK @@ -1441,19 +1573,19 @@ Checking test 025 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 148.019717 - 0: The maximum resident set size (KB) = 624280 + 0: The total amount of wall time = 137.767131 + 0: The maximum resident set size (KB) = 637960 -Test 025 control_wrtGauss_netcdf_parallel PASS +Test 027 control_wrtGauss_netcdf_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c48 -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/control_c48 -Checking test 026 control_c48 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_c48 +Checking test 028 control_c48 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -1487,55 +1619,55 @@ Checking test 026 control_c48 results .... Comparing 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.028154 -0: The maximum resident set size (KB) = 786996 +0: The total amount of wall time = 346.767193 +0: The maximum resident set size (KB) = 822420 -Test 026 control_c48 PASS +Test 028 control_c48 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c192 -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/control_c192 -Checking test 027 control_c192 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_c192 +Checking test 029 control_c192 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 537.882108 - 0: The maximum resident set size (KB) = 765684 + 0: The total amount of wall time = 531.493991 + 0: The maximum resident set size (KB) = 774952 -Test 027 control_c192 PASS +Test 029 control_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c384 -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/control_c384 -Checking test 028 control_c384 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_c384 +Checking test 030 control_c384 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 596.166751 - 0: The maximum resident set size (KB) = 1224188 + 0: The total amount of wall time = 582.165971 + 0: The maximum resident set size (KB) = 1232372 -Test 028 control_c384 PASS +Test 030 control_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c384gdas -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/control_c384gdas -Checking test 029 control_c384gdas results .... - Comparing sfcf000.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf006.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_c384gdas +Checking test 031 control_c384gdas results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf006.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF06 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -1573,71 +1705,71 @@ Checking test 029 control_c384gdas 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 = 556.614590 - 0: The maximum resident set size (KB) = 1340448 + 0: The total amount of wall time = 517.901003 + 0: The maximum resident set size (KB) = 1340852 -Test 029 control_c384gdas PASS +Test 031 control_c384gdas PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/control_stochy -Checking test 030 control_stochy results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_stochy +Checking test 032 control_stochy results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 90.851384 - 0: The maximum resident set size (KB) = 632840 + 0: The total amount of wall time = 87.911943 + 0: The maximum resident set size (KB) = 639668 -Test 030 control_stochy PASS +Test 032 control_stochy PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/control_stochy_restart -Checking test 031 control_stochy_restart results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_stochy_restart +Checking test 033 control_stochy_restart results .... + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 47.846960 - 0: The maximum resident set size (KB) = 485512 + 0: The total amount of wall time = 48.729872 + 0: The maximum resident set size (KB) = 494780 -Test 031 control_stochy_restart PASS +Test 033 control_stochy_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_lndp -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/control_lndp -Checking test 032 control_lndp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_lndp +Checking test 034 control_lndp results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 83.616798 - 0: The maximum resident set size (KB) = 630996 + 0: The total amount of wall time = 81.016075 + 0: The maximum resident set size (KB) = 636624 -Test 032 control_lndp PASS +Test 034 control_lndp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_iovr4 -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/control_iovr4 -Checking test 033 control_iovr4 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_iovr4 +Checking test 035 control_iovr4 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1645,21 +1777,21 @@ Checking test 033 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 137.589088 - 0: The maximum resident set size (KB) = 627300 + 0: The total amount of wall time = 140.482776 + 0: The maximum resident set size (KB) = 639056 -Test 033 control_iovr4 PASS +Test 035 control_iovr4 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_iovr5 -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/control_iovr5 -Checking test 034 control_iovr5 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_iovr5 +Checking test 036 control_iovr5 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1667,21 +1799,21 @@ Checking test 034 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.026292 - 0: The maximum resident set size (KB) = 631176 + 0: The total amount of wall time = 139.460366 + 0: The maximum resident set size (KB) = 638124 -Test 034 control_iovr5 PASS +Test 036 control_iovr5 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/control_p8 -Checking test 035 control_p8 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_p8 +Checking test 037 control_p8 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1721,43 +1853,17 @@ Checking test 035 control_p8 results .... Comparing 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.371004 - 0: The maximum resident set size (KB) = 1607700 + 0: The total amount of wall time = 171.612025 + 0: The maximum resident set size (KB) = 1608756 -Test 035 control_p8 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_lndp -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/control_p8_lndp -Checking test 036 control_p8_lndp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing sfcf048.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing atmf048.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSFLX.GrbF48 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing GFSPRS.GrbF48 .........OK - - 0: The total amount of wall time = 315.843735 - 0: The maximum resident set size (KB) = 1604132 - -Test 036 control_p8_lndp PASS +Test 037 control_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/control_restart_p8 -Checking test 037 control_restart_p8 results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_restart_p8 +Checking test 038 control_restart_p8 results .... + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -1793,19 +1899,119 @@ Checking test 037 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 108.901846 - 0: The maximum resident set size (KB) = 875016 + 0: The total amount of wall time = 88.430427 + 0: The maximum resident set size (KB) = 877660 + +Test 038 control_restart_p8 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_qr_p8 +Checking test 039 control_qr_p8 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + + 0: The total amount of wall time = 170.433763 + 0: The maximum resident set size (KB) = 1620124 + +Test 039 control_qr_p8 PASS + -Test 037 control_restart_p8 PASS +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_restart_qr_p8 +Checking test 040 control_restart_qr_p8 results .... + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + + 0: The total amount of wall time = 96.783645 + 0: The maximum resident set size (KB) = 874780 + +Test 040 control_restart_qr_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/control_decomp_p8 -Checking test 038 control_decomp_p8 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_decomp_p8 +Checking test 041 control_decomp_p8 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -1843,19 +2049,19 @@ Checking test 038 control_decomp_p8 results .... Comparing 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.165509 - 0: The maximum resident set size (KB) = 1589500 + 0: The total amount of wall time = 175.828555 + 0: The maximum resident set size (KB) = 1600700 -Test 038 control_decomp_p8 PASS +Test 041 control_decomp_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/control_2threads_p8 -Checking test 039 control_2threads_p8 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_2threads_p8 +Checking test 042 control_2threads_p8 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -1893,21 +2099,47 @@ Checking test 039 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 182.583054 - 0: The maximum resident set size (KB) = 1688080 + 0: The total amount of wall time = 176.651163 + 0: The maximum resident set size (KB) = 1686488 -Test 039 control_2threads_p8 PASS +Test 042 control_2threads_p8 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_lndp +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_p8_lndp +Checking test 043 control_p8_lndp results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing sfcf048.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK + Comparing atmf048.nc ............ALT CHECK......OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSFLX.GrbF48 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing GFSPRS.GrbF48 .........OK + + 0: The total amount of wall time = 311.002474 + 0: The maximum resident set size (KB) = 1604700 + +Test 043 control_p8_lndp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_rrtmgp -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/control_p8_rrtmgp -Checking test 040 control_p8_rrtmgp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_p8_rrtmgp +Checking test 044 control_p8_rrtmgp results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1947,21 +2179,21 @@ Checking test 040 control_p8_rrtmgp results .... Comparing 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.301503 - 0: The maximum resident set size (KB) = 1674060 + 0: The total amount of wall time = 229.115625 + 0: The maximum resident set size (KB) = 1687528 -Test 040 control_p8_rrtmgp PASS +Test 044 control_p8_rrtmgp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_mynn -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/control_p8_mynn -Checking test 041 control_p8_mynn results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_p8_mynn +Checking test 045 control_p8_mynn results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2001,21 +2233,21 @@ Checking test 041 control_p8_mynn results .... Comparing 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.249052 - 0: The maximum resident set size (KB) = 1615000 + 0: The total amount of wall time = 172.086538 + 0: The maximum resident set size (KB) = 1622916 -Test 041 control_p8_mynn PASS +Test 045 control_p8_mynn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/merra2_thompson -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/merra2_thompson -Checking test 042 merra2_thompson results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/merra2_thompson +Checking test 046 merra2_thompson results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2055,154 +2287,186 @@ Checking test 042 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 192.545934 - 0: The maximum resident set size (KB) = 1608328 + 0: The total amount of wall time = 189.875832 + 0: The maximum resident set size (KB) = 1617280 -Test 042 merra2_thompson PASS +Test 046 merra2_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/regional_control -Checking test 043 regional_control results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/regional_control +Checking test 047 regional_control results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf006.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 315.847250 - 0: The maximum resident set size (KB) = 869156 + 0: The total amount of wall time = 294.804374 + 0: The maximum resident set size (KB) = 869264 -Test 043 regional_control PASS +Test 047 regional_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/regional_restart -Checking test 044 regional_restart results .... - Comparing dynf006.nc .........OK - Comparing phyf006.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/regional_restart +Checking test 048 regional_restart results .... + Comparing dynf006.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 153.096542 - 0: The maximum resident set size (KB) = 864668 + 0: The total amount of wall time = 157.545975 + 0: The maximum resident set size (KB) = 862848 -Test 044 regional_restart PASS +Test 048 regional_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/regional_decomp -Checking test 045 regional_decomp results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/regional_control_qr +Checking test 049 regional_control_qr results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf006.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 325.461936 - 0: The maximum resident set size (KB) = 858784 + 0: The total amount of wall time = 296.648310 + 0: The maximum resident set size (KB) = 874564 -Test 045 regional_decomp PASS +Test 049 regional_control_qr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/regional_2threads -Checking test 046 regional_2threads results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/regional_restart_qr +Checking test 050 regional_restart_qr results .... + Comparing dynf006.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF06 .........OK + + 0: The total amount of wall time = 157.937653 + 0: The maximum resident set size (KB) = 869180 + +Test 050 regional_restart_qr PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/regional_decomp +Checking test 051 regional_decomp results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf006.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 210.201249 - 0: The maximum resident set size (KB) = 841464 + 0: The total amount of wall time = 316.594245 + 0: The maximum resident set size (KB) = 865976 -Test 046 regional_2threads PASS +Test 051 regional_decomp PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/regional_2threads +Checking test 052 regional_2threads results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf006.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK + + 0: The total amount of wall time = 209.179435 + 0: The maximum resident set size (KB) = 855580 + +Test 052 regional_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_noquilt -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/regional_noquilt -Checking test 047 regional_noquilt results .... +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/regional_noquilt +Checking test 053 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 332.946097 - 0: The maximum resident set size (KB) = 853896 + 0: The total amount of wall time = 315.132931 + 0: The maximum resident set size (KB) = 857092 -Test 047 regional_noquilt PASS +Test 053 regional_noquilt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_netcdf_parallel -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/regional_netcdf_parallel -Checking test 048 regional_netcdf_parallel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/regional_netcdf_parallel +Checking test 054 regional_netcdf_parallel results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf006.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 318.564562 - 0: The maximum resident set size (KB) = 815516 + 0: The total amount of wall time = 297.861997 + 0: The maximum resident set size (KB) = 868464 -Test 048 regional_netcdf_parallel PASS +Test 054 regional_netcdf_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/regional_2dwrtdecomp -Checking test 049 regional_2dwrtdecomp results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/regional_2dwrtdecomp +Checking test 055 regional_2dwrtdecomp results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf006.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 317.801239 - 0: The maximum resident set size (KB) = 869672 + 0: The total amount of wall time = 296.162847 + 0: The maximum resident set size (KB) = 876500 -Test 049 regional_2dwrtdecomp PASS +Test 055 regional_2dwrtdecomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/fv3_regional_wofs -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/regional_wofs -Checking test 050 regional_wofs results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/regional_wofs +Checking test 056 regional_wofs results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf006.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 405.553235 - 0: The maximum resident set size (KB) = 592120 + 0: The total amount of wall time = 372.698889 + 0: The maximum resident set size (KB) = 636508 -Test 050 regional_wofs PASS +Test 056 regional_wofs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/rap_control -Checking test 051 rap_control results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/rap_control +Checking test 057 rap_control results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2242,39 +2506,39 @@ Checking test 051 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 460.429682 - 0: The maximum resident set size (KB) = 1067240 + 0: The total amount of wall time = 459.674687 + 0: The maximum resident set size (KB) = 1069812 -Test 051 rap_control PASS +Test 057 rap_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_spp_sppt_shum_skeb -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/regional_spp_sppt_shum_skeb -Checking test 052 regional_spp_sppt_shum_skeb results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/regional_spp_sppt_shum_skeb +Checking test 058 regional_spp_sppt_shum_skeb results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf001.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf001.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF01 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 336.603868 - 0: The maximum resident set size (KB) = 1184028 + 0: The total amount of wall time = 264.870762 + 0: The maximum resident set size (KB) = 1181916 -Test 052 regional_spp_sppt_shum_skeb PASS +Test 058 regional_spp_sppt_shum_skeb PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/rap_decomp -Checking test 053 rap_decomp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/rap_decomp +Checking test 059 rap_decomp results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2314,21 +2578,21 @@ Checking test 053 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 485.557697 - 0: The maximum resident set size (KB) = 1009628 + 0: The total amount of wall time = 483.015416 + 0: The maximum resident set size (KB) = 1000256 -Test 053 rap_decomp PASS +Test 059 rap_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/rap_2threads -Checking test 054 rap_2threads results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/rap_2threads +Checking test 060 rap_2threads results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2368,17 +2632,17 @@ Checking test 054 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 479.489531 - 0: The maximum resident set size (KB) = 1141768 + 0: The total amount of wall time = 472.808384 + 0: The maximum resident set size (KB) = 1135236 -Test 054 rap_2threads PASS +Test 060 rap_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/rap_restart -Checking test 055 rap_restart results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/rap_restart +Checking test 061 rap_restart results .... + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -2414,21 +2678,21 @@ Checking test 055 rap_restart results .... Comparing 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.940132 - 0: The maximum resident set size (KB) = 973212 + 0: The total amount of wall time = 233.173228 + 0: The maximum resident set size (KB) = 970912 -Test 055 rap_restart PASS +Test 061 rap_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/rap_sfcdiff -Checking test 056 rap_sfcdiff 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 +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/rap_sfcdiff +Checking test 062 rap_sfcdiff results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2468,21 +2732,21 @@ Checking test 056 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 449.866688 - 0: The maximum resident set size (KB) = 1051468 + 0: The total amount of wall time = 457.257476 + 0: The maximum resident set size (KB) = 1061548 -Test 056 rap_sfcdiff PASS +Test 062 rap_sfcdiff PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/rap_sfcdiff_decomp -Checking test 057 rap_sfcdiff_decomp 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 +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/rap_sfcdiff_decomp +Checking test 063 rap_sfcdiff_decomp results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2522,17 +2786,17 @@ Checking test 057 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 479.005191 - 0: The maximum resident set size (KB) = 1005496 + 0: The total amount of wall time = 480.600339 + 0: The maximum resident set size (KB) = 1008140 -Test 057 rap_sfcdiff_decomp PASS +Test 063 rap_sfcdiff_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/rap_sfcdiff_restart -Checking test 058 rap_sfcdiff_restart results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/rap_sfcdiff_restart +Checking test 064 rap_sfcdiff_restart results .... + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -2568,21 +2832,21 @@ Checking test 058 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 357.476720 - 0: The maximum resident set size (KB) = 984620 + 0: The total amount of wall time = 341.350082 + 0: The maximum resident set size (KB) = 992468 -Test 058 rap_sfcdiff_restart PASS +Test 064 rap_sfcdiff_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/hrrr_control -Checking test 059 hrrr_control 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 +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/hrrr_control +Checking test 065 hrrr_control results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2622,21 +2886,21 @@ Checking test 059 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 436.469951 - 0: The maximum resident set size (KB) = 1060224 + 0: The total amount of wall time = 441.629916 + 0: The maximum resident set size (KB) = 1049820 -Test 059 hrrr_control PASS +Test 065 hrrr_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/hrrr_control_decomp -Checking test 060 hrrr_control_decomp 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 +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/hrrr_control_decomp +Checking test 066 hrrr_control_decomp results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2676,21 +2940,21 @@ Checking test 060 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 456.342525 - 0: The maximum resident set size (KB) = 1005752 + 0: The total amount of wall time = 461.886861 + 0: The maximum resident set size (KB) = 1004256 -Test 060 hrrr_control_decomp PASS +Test 066 hrrr_control_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/hrrr_control_2threads -Checking test 061 hrrr_control_2threads 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 +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/hrrr_control_2threads +Checking test 067 hrrr_control_2threads results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2730,17 +2994,17 @@ Checking test 061 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 457.299983 - 0: The maximum resident set size (KB) = 1136580 + 0: The total amount of wall time = 456.164639 + 0: The maximum resident set size (KB) = 1142620 -Test 061 hrrr_control_2threads PASS +Test 067 hrrr_control_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/hrrr_control_restart -Checking test 062 hrrr_control_restart results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/hrrr_control_restart +Checking test 068 hrrr_control_restart results .... + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -2776,21 +3040,21 @@ Checking test 062 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 344.963146 - 0: The maximum resident set size (KB) = 980168 + 0: The total amount of wall time = 327.290876 + 0: The maximum resident set size (KB) = 980140 -Test 062 hrrr_control_restart PASS +Test 068 hrrr_control_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1beta -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/rrfs_v1beta -Checking test 063 rrfs_v1beta 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 +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/rrfs_v1beta +Checking test 069 rrfs_v1beta results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2830,21 +3094,21 @@ Checking test 063 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 449.521069 - 0: The maximum resident set size (KB) = 1057056 + 0: The total amount of wall time = 454.455258 + 0: The maximum resident set size (KB) = 1056116 -Test 063 rrfs_v1beta PASS +Test 069 rrfs_v1beta PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1nssl -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/rrfs_v1nssl -Checking test 064 rrfs_v1nssl 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 +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/rrfs_v1nssl +Checking test 070 rrfs_v1nssl results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2852,21 +3116,21 @@ Checking test 064 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 527.948179 - 0: The maximum resident set size (KB) = 691188 + 0: The total amount of wall time = 537.054572 + 0: The maximum resident set size (KB) = 701536 -Test 064 rrfs_v1nssl PASS +Test 070 rrfs_v1nssl PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/rrfs_v1nssl_nohailnoccn -Checking test 065 rrfs_v1nssl_nohailnoccn 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 +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/rrfs_v1nssl_nohailnoccn +Checking test 071 rrfs_v1nssl_nohailnoccn results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2874,151 +3138,151 @@ Checking test 065 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 524.871014 - 0: The maximum resident set size (KB) = 753424 + 0: The total amount of wall time = 525.418921 + 0: The maximum resident set size (KB) = 758804 -Test 065 rrfs_v1nssl_nohailnoccn PASS +Test 071 rrfs_v1nssl_nohailnoccn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/rrfs_smoke_conus13km_hrrr_warm -Checking test 066 rrfs_smoke_conus13km_hrrr_warm 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 +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/rrfs_smoke_conus13km_hrrr_warm +Checking test 072 rrfs_smoke_conus13km_hrrr_warm results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing sfcf002.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK + Comparing atmf002.nc ............ALT CHECK......OK - 0: The total amount of wall time = 149.194684 - 0: The maximum resident set size (KB) = 1032944 + 0: The total amount of wall time = 144.472515 + 0: The maximum resident set size (KB) = 995032 -Test 066 rrfs_smoke_conus13km_hrrr_warm PASS +Test 072 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/rrfs_smoke_conus13km_hrrr_warm_2threads -Checking test 067 rrfs_smoke_conus13km_hrrr_warm_2threads 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 +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/rrfs_smoke_conus13km_hrrr_warm_2threads +Checking test 073 rrfs_smoke_conus13km_hrrr_warm_2threads results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing sfcf002.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK + Comparing atmf002.nc ............ALT CHECK......OK - 0: The total amount of wall time = 101.894787 - 0: The maximum resident set size (KB) = 934816 + 0: The total amount of wall time = 95.683547 + 0: The maximum resident set size (KB) = 941860 -Test 067 rrfs_smoke_conus13km_hrrr_warm_2threads PASS +Test 073 rrfs_smoke_conus13km_hrrr_warm_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_conus13km_hrrr_warm -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/rrfs_conus13km_hrrr_warm -Checking test 068 rrfs_conus13km_hrrr_warm 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 +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/rrfs_conus13km_hrrr_warm +Checking test 074 rrfs_conus13km_hrrr_warm results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing sfcf002.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK + Comparing atmf002.nc ............ALT CHECK......OK - 0: The total amount of wall time = 132.254186 - 0: The maximum resident set size (KB) = 944056 + 0: The total amount of wall time = 128.209410 + 0: The maximum resident set size (KB) = 942440 -Test 068 rrfs_conus13km_hrrr_warm PASS +Test 074 rrfs_conus13km_hrrr_warm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/rrfs_smoke_conus13km_radar_tten_warm -Checking test 069 rrfs_smoke_conus13km_radar_tten_warm 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 +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/rrfs_smoke_conus13km_radar_tten_warm +Checking test 075 rrfs_smoke_conus13km_radar_tten_warm results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing sfcf002.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK + Comparing atmf002.nc ............ALT CHECK......OK - 0: The total amount of wall time = 150.199174 - 0: The maximum resident set size (KB) = 993920 + 0: The total amount of wall time = 146.750013 + 0: The maximum resident set size (KB) = 1035428 -Test 069 rrfs_smoke_conus13km_radar_tten_warm PASS +Test 075 rrfs_smoke_conus13km_radar_tten_warm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmg -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/control_csawmg -Checking test 070 control_csawmg results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_csawmg +Checking test 076 control_csawmg results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 366.460197 - 0: The maximum resident set size (KB) = 723828 + 0: The total amount of wall time = 344.797324 + 0: The maximum resident set size (KB) = 731480 -Test 070 control_csawmg PASS +Test 076 control_csawmg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmgt -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/control_csawmgt -Checking test 071 control_csawmgt results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_csawmgt +Checking test 077 control_csawmgt results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 354.162292 - 0: The maximum resident set size (KB) = 729792 + 0: The total amount of wall time = 343.397278 + 0: The maximum resident set size (KB) = 725644 -Test 071 control_csawmgt PASS +Test 077 control_csawmgt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_ras -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/control_ras -Checking test 072 control_ras results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_ras +Checking test 078 control_ras results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 201.941886 - 0: The maximum resident set size (KB) = 714336 + 0: The total amount of wall time = 181.916747 + 0: The maximum resident set size (KB) = 716456 -Test 072 control_ras PASS +Test 078 control_ras PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wam -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/control_wam -Checking test 073 control_wam results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_wam +Checking test 079 control_wam results .... + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK - 0: The total amount of wall time = 113.677948 - 0: The maximum resident set size (KB) = 641356 + 0: The total amount of wall time = 116.043392 + 0: The maximum resident set size (KB) = 642036 -Test 073 control_wam PASS +Test 079 control_wam PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/control_p8_faster -Checking test 074 control_p8_faster results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_p8_faster +Checking test 080 control_p8_faster results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -3058,75 +3322,75 @@ Checking test 074 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 166.049249 - 0: The maximum resident set size (KB) = 1602304 + 0: The total amount of wall time = 153.987744 + 0: The maximum resident set size (KB) = 1608444 -Test 074 control_p8_faster PASS +Test 080 control_p8_faster PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/regional_control_faster -Checking test 075 regional_control_faster results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/regional_control_faster +Checking test 081 regional_control_faster results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf006.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 290.329234 - 0: The maximum resident set size (KB) = 873216 + 0: The total amount of wall time = 270.875473 + 0: The maximum resident set size (KB) = 837788 -Test 075 regional_control_faster PASS +Test 081 regional_control_faster PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/rrfs_smoke_conus13km_hrrr_warm_debug -Checking test 076 rrfs_smoke_conus13km_hrrr_warm_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/rrfs_smoke_conus13km_hrrr_warm_debug +Checking test 082 rrfs_smoke_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 839.968652 - 0: The maximum resident set size (KB) = 1061152 + 0: The total amount of wall time = 863.273631 + 0: The maximum resident set size (KB) = 1026116 -Test 076 rrfs_smoke_conus13km_hrrr_warm_debug PASS +Test 082 rrfs_smoke_conus13km_hrrr_warm_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/rrfs_smoke_conus13km_hrrr_warm_debug_2threads -Checking test 077 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +Checking test 083 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 520.634408 - 0: The maximum resident set size (KB) = 982860 + 0: The total amount of wall time = 505.799807 + 0: The maximum resident set size (KB) = 979756 -Test 077 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS +Test 083 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/rrfs_conus13km_hrrr_warm_debug -Checking test 078 rrfs_conus13km_hrrr_warm_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/rrfs_conus13km_hrrr_warm_debug +Checking test 084 rrfs_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 786.748716 - 0: The maximum resident set size (KB) = 977628 + 0: The total amount of wall time = 779.949912 + 0: The maximum resident set size (KB) = 974612 -Test 078 rrfs_conus13km_hrrr_warm_debug PASS +Test 084 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/control_CubedSphereGrid_debug -Checking test 079 control_CubedSphereGrid_debug results .... +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_CubedSphereGrid_debug +Checking test 085 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3152,359 +3416,359 @@ Checking test 079 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 181.434556 - 0: The maximum resident set size (KB) = 793508 + 0: The total amount of wall time = 172.789575 + 0: The maximum resident set size (KB) = 792000 -Test 079 control_CubedSphereGrid_debug PASS +Test 085 control_CubedSphereGrid_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/control_wrtGauss_netcdf_parallel_debug -Checking test 080 control_wrtGauss_netcdf_parallel_debug results .... - Comparing sfcf000.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_wrtGauss_netcdf_parallel_debug +Checking test 086 control_wrtGauss_netcdf_parallel_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc .........OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 166.982265 - 0: The maximum resident set size (KB) = 801604 + 0: The total amount of wall time = 154.880466 + 0: The maximum resident set size (KB) = 803224 -Test 080 control_wrtGauss_netcdf_parallel_debug PASS +Test 086 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/control_stochy_debug -Checking test 081 control_stochy_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_stochy_debug +Checking test 087 control_stochy_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 193.572089 - 0: The maximum resident set size (KB) = 800900 + 0: The total amount of wall time = 177.481697 + 0: The maximum resident set size (KB) = 801020 -Test 081 control_stochy_debug PASS +Test 087 control_stochy_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_lndp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/control_lndp_debug -Checking test 082 control_lndp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_lndp_debug +Checking test 088 control_lndp_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 183.392736 - 0: The maximum resident set size (KB) = 797080 + 0: The total amount of wall time = 165.459124 + 0: The maximum resident set size (KB) = 796800 -Test 082 control_lndp_debug PASS +Test 088 control_lndp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmg_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/control_csawmg_debug -Checking test 083 control_csawmg_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_csawmg_debug +Checking test 089 control_csawmg_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 248.975232 - 0: The maximum resident set size (KB) = 841540 + 0: The total amount of wall time = 246.770603 + 0: The maximum resident set size (KB) = 847732 -Test 083 control_csawmg_debug PASS +Test 089 control_csawmg_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmgt_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/control_csawmgt_debug -Checking test 084 control_csawmgt_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_csawmgt_debug +Checking test 090 control_csawmgt_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 251.811733 - 0: The maximum resident set size (KB) = 848484 + 0: The total amount of wall time = 239.092104 + 0: The maximum resident set size (KB) = 847104 -Test 084 control_csawmgt_debug PASS +Test 090 control_csawmgt_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_ras_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/control_ras_debug -Checking test 085 control_ras_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_ras_debug +Checking test 091 control_ras_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 176.552288 - 0: The maximum resident set size (KB) = 803864 + 0: The total amount of wall time = 166.682588 + 0: The maximum resident set size (KB) = 810184 -Test 085 control_ras_debug PASS +Test 091 control_ras_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_diag_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/control_diag_debug -Checking test 086 control_diag_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_diag_debug +Checking test 092 control_diag_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 169.751342 - 0: The maximum resident set size (KB) = 854548 + 0: The total amount of wall time = 170.891446 + 0: The maximum resident set size (KB) = 854308 -Test 086 control_diag_debug PASS +Test 092 control_diag_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_debug_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/control_debug_p8 -Checking test 087 control_debug_p8 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_debug_p8 +Checking test 093 control_debug_p8 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 193.857171 - 0: The maximum resident set size (KB) = 1621652 + 0: The total amount of wall time = 188.161410 + 0: The maximum resident set size (KB) = 1622340 -Test 087 control_debug_p8 PASS +Test 093 control_debug_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/regional_debug -Checking test 088 regional_debug results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/regional_debug +Checking test 094 regional_debug results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf001.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 1011.208382 - 0: The maximum resident set size (KB) = 888000 + 0: The total amount of wall time = 999.576709 + 0: The maximum resident set size (KB) = 889892 -Test 088 regional_debug PASS +Test 094 regional_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/rap_control_debug -Checking test 089 rap_control_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/rap_control_debug +Checking test 095 rap_control_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 288.399039 - 0: The maximum resident set size (KB) = 1181844 + 0: The total amount of wall time = 301.875681 + 0: The maximum resident set size (KB) = 1177992 -Test 089 rap_control_debug PASS +Test 095 rap_control_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/hrrr_control_debug -Checking test 090 hrrr_control_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/hrrr_control_debug +Checking test 096 hrrr_control_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 286.947539 - 0: The maximum resident set size (KB) = 1174936 + 0: The total amount of wall time = 286.700566 + 0: The maximum resident set size (KB) = 1182504 -Test 090 hrrr_control_debug PASS +Test 096 hrrr_control_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/rap_unified_drag_suite_debug -Checking test 091 rap_unified_drag_suite_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/rap_unified_drag_suite_debug +Checking test 097 rap_unified_drag_suite_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 283.934874 - 0: The maximum resident set size (KB) = 1172068 + 0: The total amount of wall time = 293.561517 + 0: The maximum resident set size (KB) = 1176500 -Test 091 rap_unified_drag_suite_debug PASS +Test 097 rap_unified_drag_suite_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_diag_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/rap_diag_debug -Checking test 092 rap_diag_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/rap_diag_debug +Checking test 098 rap_diag_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 300.132423 - 0: The maximum resident set size (KB) = 1258828 + 0: The total amount of wall time = 325.905776 + 0: The maximum resident set size (KB) = 1259596 -Test 092 rap_diag_debug PASS +Test 098 rap_diag_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/rap_cires_ugwp_debug -Checking test 093 rap_cires_ugwp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/rap_cires_ugwp_debug +Checking test 099 rap_cires_ugwp_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 291.789592 - 0: The maximum resident set size (KB) = 1173660 + 0: The total amount of wall time = 306.165121 + 0: The maximum resident set size (KB) = 1177960 -Test 093 rap_cires_ugwp_debug PASS +Test 099 rap_cires_ugwp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/rap_unified_ugwp_debug -Checking test 094 rap_unified_ugwp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/rap_unified_ugwp_debug +Checking test 100 rap_unified_ugwp_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 297.863204 - 0: The maximum resident set size (KB) = 1176824 + 0: The total amount of wall time = 298.986681 + 0: The maximum resident set size (KB) = 1177444 -Test 094 rap_unified_ugwp_debug PASS +Test 100 rap_unified_ugwp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_lndp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/rap_lndp_debug -Checking test 095 rap_lndp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/rap_lndp_debug +Checking test 101 rap_lndp_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 293.940416 - 0: The maximum resident set size (KB) = 1174236 + 0: The total amount of wall time = 297.258422 + 0: The maximum resident set size (KB) = 1178160 -Test 095 rap_lndp_debug PASS +Test 101 rap_lndp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_flake_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/rap_flake_debug -Checking test 096 rap_flake_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/rap_flake_debug +Checking test 102 rap_flake_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 288.100864 - 0: The maximum resident set size (KB) = 1176972 + 0: The total amount of wall time = 295.966155 + 0: The maximum resident set size (KB) = 1180588 -Test 096 rap_flake_debug PASS +Test 102 rap_flake_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_progcld_thompson_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/rap_progcld_thompson_debug -Checking test 097 rap_progcld_thompson_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/rap_progcld_thompson_debug +Checking test 103 rap_progcld_thompson_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 282.523556 - 0: The maximum resident set size (KB) = 1182772 + 0: The total amount of wall time = 295.351151 + 0: The maximum resident set size (KB) = 1176272 -Test 097 rap_progcld_thompson_debug PASS +Test 103 rap_progcld_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_noah_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/rap_noah_debug -Checking test 098 rap_noah_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/rap_noah_debug +Checking test 104 rap_noah_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 279.216155 - 0: The maximum resident set size (KB) = 1170692 + 0: The total amount of wall time = 284.702407 + 0: The maximum resident set size (KB) = 1172672 -Test 098 rap_noah_debug PASS +Test 104 rap_noah_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/rap_sfcdiff_debug -Checking test 099 rap_sfcdiff_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/rap_sfcdiff_debug +Checking test 105 rap_sfcdiff_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 287.730332 - 0: The maximum resident set size (KB) = 1176648 + 0: The total amount of wall time = 293.857043 + 0: The maximum resident set size (KB) = 1184184 -Test 099 rap_sfcdiff_debug PASS +Test 105 rap_sfcdiff_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 100 rap_noah_sfcdiff_cires_ugwp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 106 rap_noah_sfcdiff_cires_ugwp_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 471.021737 - 0: The maximum resident set size (KB) = 1176056 + 0: The total amount of wall time = 468.287191 + 0: The maximum resident set size (KB) = 1179304 -Test 100 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 106 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1beta_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/rrfs_v1beta_debug -Checking test 101 rrfs_v1beta_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/rrfs_v1beta_debug +Checking test 107 rrfs_v1beta_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 288.125194 - 0: The maximum resident set size (KB) = 1163648 + 0: The total amount of wall time = 283.198059 + 0: The maximum resident set size (KB) = 1179680 -Test 101 rrfs_v1beta_debug PASS +Test 107 rrfs_v1beta_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wam_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/control_wam_debug -Checking test 102 control_wam_debug results .... - Comparing sfcf019.nc .........OK - Comparing atmf019.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_wam_debug +Checking test 108 control_wam_debug results .... + Comparing sfcf019.nc ............ALT CHECK......OK + Comparing atmf019.nc ............ALT CHECK......OK - 0: The total amount of wall time = 292.914665 - 0: The maximum resident set size (KB) = 526892 + 0: The total amount of wall time = 302.428440 + 0: The maximum resident set size (KB) = 534968 -Test 102 control_wam_debug PASS +Test 108 control_wam_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/regional_spp_sppt_shum_skeb_dyn32_phy32 -Checking test 103 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 109 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf001.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf001.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF01 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 308.559179 - 0: The maximum resident set size (KB) = 1080000 + 0: The total amount of wall time = 247.004250 + 0: The maximum resident set size (KB) = 1080312 -Test 103 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS +Test 109 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/rap_control_dyn32_phy32 -Checking test 104 rap_control_dyn32_phy32 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 +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/rap_control_dyn32_phy32 +Checking test 110 rap_control_dyn32_phy32 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3544,21 +3808,21 @@ Checking test 104 rap_control_dyn32_phy32 results .... Comparing 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.374753 - 0: The maximum resident set size (KB) = 961404 + 0: The total amount of wall time = 379.855988 + 0: The maximum resident set size (KB) = 983096 -Test 104 rap_control_dyn32_phy32 PASS +Test 110 rap_control_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/hrrr_control_dyn32_phy32 -Checking test 105 hrrr_control_dyn32_phy32 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 +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/hrrr_control_dyn32_phy32 +Checking test 111 hrrr_control_dyn32_phy32 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3598,21 +3862,21 @@ Checking test 105 hrrr_control_dyn32_phy32 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 = 193.463863 - 0: The maximum resident set size (KB) = 954852 + 0: The total amount of wall time = 202.581490 + 0: The maximum resident set size (KB) = 933360 -Test 105 hrrr_control_dyn32_phy32 PASS +Test 111 hrrr_control_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/rap_2threads_dyn32_phy32 -Checking test 106 rap_2threads_dyn32_phy32 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 +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/rap_2threads_dyn32_phy32 +Checking test 112 rap_2threads_dyn32_phy32 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3652,21 +3916,21 @@ Checking test 106 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 427.491793 - 0: The maximum resident set size (KB) = 1023200 + 0: The total amount of wall time = 395.081032 + 0: The maximum resident set size (KB) = 1023684 -Test 106 rap_2threads_dyn32_phy32 PASS +Test 112 rap_2threads_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/hrrr_control_2threads_dyn32_phy32 -Checking test 107 hrrr_control_2threads_dyn32_phy32 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 +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/hrrr_control_2threads_dyn32_phy32 +Checking test 113 hrrr_control_2threads_dyn32_phy32 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3706,21 +3970,21 @@ Checking test 107 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 208.287510 - 0: The maximum resident set size (KB) = 1005528 + 0: The total amount of wall time = 207.499242 + 0: The maximum resident set size (KB) = 986268 -Test 107 hrrr_control_2threads_dyn32_phy32 PASS +Test 113 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/hrrr_control_decomp_dyn32_phy32 -Checking test 108 hrrr_control_decomp_dyn32_phy32 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 +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/hrrr_control_decomp_dyn32_phy32 +Checking test 114 hrrr_control_decomp_dyn32_phy32 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3760,17 +4024,17 @@ Checking test 108 hrrr_control_decomp_dyn32_phy32 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 = 206.067752 - 0: The maximum resident set size (KB) = 912724 + 0: The total amount of wall time = 212.101988 + 0: The maximum resident set size (KB) = 899040 -Test 108 hrrr_control_decomp_dyn32_phy32 PASS +Test 114 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/rap_restart_dyn32_phy32 -Checking test 109 rap_restart_dyn32_phy32 results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/rap_restart_dyn32_phy32 +Checking test 115 rap_restart_dyn32_phy32 results .... + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -3806,17 +4070,17 @@ Checking test 109 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 280.205683 - 0: The maximum resident set size (KB) = 944428 + 0: The total amount of wall time = 277.411802 + 0: The maximum resident set size (KB) = 946468 -Test 109 rap_restart_dyn32_phy32 PASS +Test 115 rap_restart_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/hrrr_control_restart_dyn32_phy32 -Checking test 110 hrrr_control_restart_dyn32_phy32 results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/hrrr_control_restart_dyn32_phy32 +Checking test 116 hrrr_control_restart_dyn32_phy32 results .... + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.180000.coupler.res .........OK @@ -3852,21 +4116,21 @@ Checking test 110 hrrr_control_restart_dyn32_phy32 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 = 100.233104 - 0: The maximum resident set size (KB) = 869512 + 0: The total amount of wall time = 99.792593 + 0: The maximum resident set size (KB) = 862012 -Test 110 hrrr_control_restart_dyn32_phy32 PASS +Test 116 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn64_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/rap_control_dyn64_phy32 -Checking test 111 rap_control_dyn64_phy32 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 +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/rap_control_dyn64_phy32 +Checking test 117 rap_control_dyn64_phy32 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3906,116 +4170,116 @@ Checking test 111 rap_control_dyn64_phy32 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 = 238.345520 - 0: The maximum resident set size (KB) = 967352 + 0: The total amount of wall time = 246.021964 + 0: The maximum resident set size (KB) = 962272 -Test 111 rap_control_dyn64_phy32 PASS +Test 117 rap_control_dyn64_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/rap_control_debug_dyn32_phy32 -Checking test 112 rap_control_debug_dyn32_phy32 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/rap_control_debug_dyn32_phy32 +Checking test 118 rap_control_debug_dyn32_phy32 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 278.892252 - 0: The maximum resident set size (KB) = 1065064 + 0: The total amount of wall time = 292.437086 + 0: The maximum resident set size (KB) = 1063136 -Test 112 rap_control_debug_dyn32_phy32 PASS +Test 118 rap_control_debug_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/hrrr_control_debug_dyn32_phy32 -Checking test 113 hrrr_control_debug_dyn32_phy32 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/hrrr_control_debug_dyn32_phy32 +Checking test 119 hrrr_control_debug_dyn32_phy32 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 277.996020 - 0: The maximum resident set size (KB) = 1062596 + 0: The total amount of wall time = 284.533283 + 0: The maximum resident set size (KB) = 1058940 -Test 113 hrrr_control_debug_dyn32_phy32 PASS +Test 119 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug_dyn64_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/rap_control_dyn64_phy32_debug -Checking test 114 rap_control_dyn64_phy32_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/rap_control_dyn64_phy32_debug +Checking test 120 rap_control_dyn64_phy32_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 286.942900 - 0: The maximum resident set size (KB) = 1107188 + 0: The total amount of wall time = 311.108717 + 0: The maximum resident set size (KB) = 1101396 -Test 114 rap_control_dyn64_phy32_debug PASS +Test 120 rap_control_dyn64_phy32_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/hafs_regional_atm -Checking test 115 hafs_regional_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/hafs_regional_atm +Checking test 121 hafs_regional_atm results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 271.610836 - 0: The maximum resident set size (KB) = 1049752 + 0: The total amount of wall time = 270.236462 + 0: The maximum resident set size (KB) = 1055932 -Test 115 hafs_regional_atm PASS +Test 121 hafs_regional_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/hafs_regional_atm_thompson_gfdlsf -Checking test 116 hafs_regional_atm_thompson_gfdlsf results .... +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/hafs_regional_atm_thompson_gfdlsf +Checking test 122 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 428.013640 - 0: The maximum resident set size (KB) = 1425588 + 0: The total amount of wall time = 397.188293 + 0: The maximum resident set size (KB) = 1398084 -Test 116 hafs_regional_atm_thompson_gfdlsf PASS +Test 122 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_ocn -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/hafs_regional_atm_ocn -Checking test 117 hafs_regional_atm_ocn results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/hafs_regional_atm_ocn +Checking test 123 hafs_regional_atm_ocn results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK Comparing archv.2019_241_06.a .........OK Comparing archs.2019_241_06.a .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 379.790292 - 0: The maximum resident set size (KB) = 1230828 + 0: The total amount of wall time = 378.255117 + 0: The maximum resident set size (KB) = 1228976 -Test 117 hafs_regional_atm_ocn PASS +Test 123 hafs_regional_atm_ocn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_wav -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/hafs_regional_atm_wav -Checking test 118 hafs_regional_atm_wav results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/hafs_regional_atm_wav +Checking test 124 hafs_regional_atm_wav results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 730.511523 - 0: The maximum resident set size (KB) = 1259684 + 0: The total amount of wall time = 725.669730 + 0: The maximum resident set size (KB) = 1255584 -Test 118 hafs_regional_atm_wav PASS +Test 124 hafs_regional_atm_wav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_ocn_wav -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/hafs_regional_atm_ocn_wav -Checking test 119 hafs_regional_atm_ocn_wav results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/hafs_regional_atm_ocn_wav +Checking test 125 hafs_regional_atm_ocn_wav results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK Comparing archv.2019_241_06.a .........OK Comparing archs.2019_241_06.a .........OK Comparing out_grd.ww3 .........OK @@ -4023,323 +4287,323 @@ Checking test 119 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 840.271892 - 0: The maximum resident set size (KB) = 1275492 + 0: The total amount of wall time = 830.312386 + 0: The maximum resident set size (KB) = 1281004 -Test 119 hafs_regional_atm_ocn_wav PASS +Test 125 hafs_regional_atm_ocn_wav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/hafs_regional_1nest_atm -Checking test 120 hafs_regional_1nest_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/hafs_regional_1nest_atm +Checking test 126 hafs_regional_1nest_atm results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atm.nest02.f006.nc ............ALT CHECK......OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 364.367951 - 0: The maximum resident set size (KB) = 510888 + 0: The total amount of wall time = 363.743105 + 0: The maximum resident set size (KB) = 508900 -Test 120 hafs_regional_1nest_atm PASS +Test 126 hafs_regional_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/hafs_regional_telescopic_2nests_atm -Checking test 121 hafs_regional_telescopic_2nests_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest03.f006.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/hafs_regional_telescopic_2nests_atm +Checking test 127 hafs_regional_telescopic_2nests_atm results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atm.nest02.f006.nc ............ALT CHECK......OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......OK + Comparing atm.nest03.f006.nc ............ALT CHECK......OK + Comparing sfc.nest03.f006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 420.069926 - 0: The maximum resident set size (KB) = 520172 + 0: The total amount of wall time = 417.927854 + 0: The maximum resident set size (KB) = 518304 -Test 121 hafs_regional_telescopic_2nests_atm PASS +Test 127 hafs_regional_telescopic_2nests_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/hafs_global_1nest_atm -Checking test 122 hafs_global_1nest_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/hafs_global_1nest_atm +Checking test 128 hafs_global_1nest_atm results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atm.nest02.f006.nc ............ALT CHECK......OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 173.432375 - 0: The maximum resident set size (KB) = 351688 + 0: The total amount of wall time = 174.465242 + 0: The maximum resident set size (KB) = 360416 -Test 122 hafs_global_1nest_atm PASS +Test 128 hafs_global_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_multiple_4nests_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/hafs_global_multiple_4nests_atm -Checking test 123 hafs_global_multiple_4nests_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest03.f006.nc .........OK - Comparing atm.nest04.f006.nc .........OK - Comparing sfc.nest04.f006.nc .........OK - Comparing atm.nest05.f006.nc .........OK - Comparing sfc.nest05.f006.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/hafs_global_multiple_4nests_atm +Checking test 129 hafs_global_multiple_4nests_atm results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atm.nest02.f006.nc ............ALT CHECK......OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......OK + Comparing atm.nest03.f006.nc ............ALT CHECK......OK + Comparing sfc.nest03.f006.nc ............ALT CHECK......OK + Comparing atm.nest04.f006.nc ............ALT CHECK......OK + Comparing sfc.nest04.f006.nc ............ALT CHECK......OK + Comparing atm.nest05.f006.nc ............ALT CHECK......OK + Comparing sfc.nest05.f006.nc ............ALT CHECK......OK Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK Comparing HURPRS.GrbF06.nest03 .........OK Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 473.008228 - 0: The maximum resident set size (KB) = 398588 + 0: The total amount of wall time = 463.603539 + 0: The maximum resident set size (KB) = 432120 -Test 123 hafs_global_multiple_4nests_atm PASS +Test 129 hafs_global_multiple_4nests_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/hafs_regional_specified_moving_1nest_atm -Checking test 124 hafs_regional_specified_moving_1nest_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/hafs_regional_specified_moving_1nest_atm +Checking test 130 hafs_regional_specified_moving_1nest_atm results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atm.nest02.f006.nc ............ALT CHECK......OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......OK Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 228.701729 - 0: The maximum resident set size (KB) = 517832 + 0: The total amount of wall time = 228.619817 + 0: The maximum resident set size (KB) = 528168 -Test 124 hafs_regional_specified_moving_1nest_atm PASS +Test 130 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/hafs_regional_storm_following_1nest_atm -Checking test 125 hafs_regional_storm_following_1nest_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/hafs_regional_storm_following_1nest_atm +Checking test 131 hafs_regional_storm_following_1nest_atm results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atm.nest02.f006.nc ............ALT CHECK......OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 216.903532 - 0: The maximum resident set size (KB) = 516592 + 0: The total amount of wall time = 218.499808 + 0: The maximum resident set size (KB) = 523904 -Test 125 hafs_regional_storm_following_1nest_atm PASS +Test 131 hafs_regional_storm_following_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/hafs_regional_storm_following_1nest_atm_ocn -Checking test 126 hafs_regional_storm_following_1nest_atm_ocn results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/hafs_regional_storm_following_1nest_atm_ocn +Checking test 132 hafs_regional_storm_following_1nest_atm_ocn results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atm.nest02.f006.nc ............ALT CHECK......OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......OK Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 289.750915 - 0: The maximum resident set size (KB) = 553144 + 0: The total amount of wall time = 291.915813 + 0: The maximum resident set size (KB) = 565348 -Test 126 hafs_regional_storm_following_1nest_atm_ocn PASS +Test 132 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_storm_following_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/hafs_global_storm_following_1nest_atm -Checking test 127 hafs_global_storm_following_1nest_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/hafs_global_storm_following_1nest_atm +Checking test 133 hafs_global_storm_following_1nest_atm results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atm.nest02.f006.nc ............ALT CHECK......OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 68.575201 - 0: The maximum resident set size (KB) = 368072 + 0: The total amount of wall time = 68.351462 + 0: The maximum resident set size (KB) = 379040 -Test 127 hafs_global_storm_following_1nest_atm PASS +Test 133 hafs_global_storm_following_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/hafs_regional_storm_following_1nest_atm_ocn_debug -Checking test 128 hafs_regional_storm_following_1nest_atm_ocn_debug results .... - Comparing atmf001.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atm.nest02.f001.nc .........OK - Comparing sfc.nest02.f001.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/hafs_regional_storm_following_1nest_atm_ocn_debug +Checking test 134 hafs_regional_storm_following_1nest_atm_ocn_debug results .... + Comparing atmf001.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atm.nest02.f001.nc ............ALT CHECK......OK + Comparing sfc.nest02.f001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 783.682270 - 0: The maximum resident set size (KB) = 587732 + 0: The total amount of wall time = 784.493968 + 0: The maximum resident set size (KB) = 595876 -Test 128 hafs_regional_storm_following_1nest_atm_ocn_debug PASS +Test 134 hafs_regional_storm_following_1nest_atm_ocn_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/hafs_regional_storm_following_1nest_atm_ocn_wav -Checking test 129 hafs_regional_storm_following_1nest_atm_ocn_wav results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_wav results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atm.nest02.f006.nc ............ALT CHECK......OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......OK Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 584.514738 - 0: The maximum resident set size (KB) = 577720 + 0: The total amount of wall time = 541.434117 + 0: The maximum resident set size (KB) = 624704 -Test 129 hafs_regional_storm_following_1nest_atm_ocn_wav PASS +Test 135 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_docn -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/hafs_regional_docn -Checking test 130 hafs_regional_docn results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/hafs_regional_docn +Checking test 136 hafs_regional_docn results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 360.223588 - 0: The maximum resident set size (KB) = 1224688 + 0: The total amount of wall time = 363.933927 + 0: The maximum resident set size (KB) = 1236280 -Test 130 hafs_regional_docn PASS +Test 136 hafs_regional_docn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_docn_oisst -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/hafs_regional_docn_oisst -Checking test 131 hafs_regional_docn_oisst results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/hafs_regional_docn_oisst +Checking test 137 hafs_regional_docn_oisst results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 359.923877 - 0: The maximum resident set size (KB) = 1218924 + 0: The total amount of wall time = 365.919957 + 0: The maximum resident set size (KB) = 1222700 -Test 131 hafs_regional_docn_oisst PASS +Test 137 hafs_regional_docn_oisst PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_datm_cdeps -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/hafs_regional_datm_cdeps -Checking test 132 hafs_regional_datm_cdeps results .... +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/hafs_regional_datm_cdeps +Checking test 138 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 934.159519 - 0: The maximum resident set size (KB) = 1040588 + 0: The total amount of wall time = 931.826175 + 0: The maximum resident set size (KB) = 1042084 -Test 132 hafs_regional_datm_cdeps PASS +Test 138 hafs_regional_datm_cdeps PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/datm_cdeps_control_cfsr -Checking test 133 datm_cdeps_control_cfsr results .... +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/datm_cdeps_control_cfsr +Checking test 139 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 144.605089 - 0: The maximum resident set size (KB) = 1074280 + 0: The total amount of wall time = 148.442644 + 0: The maximum resident set size (KB) = 1064596 -Test 133 datm_cdeps_control_cfsr PASS +Test 139 datm_cdeps_control_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/datm_cdeps_restart_cfsr -Checking test 134 datm_cdeps_restart_cfsr results .... +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/datm_cdeps_restart_cfsr +Checking test 140 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 90.677393 - 0: The maximum resident set size (KB) = 1021092 + 0: The total amount of wall time = 91.431902 + 0: The maximum resident set size (KB) = 1007144 -Test 134 datm_cdeps_restart_cfsr PASS +Test 140 datm_cdeps_restart_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/datm_cdeps_control_gefs -Checking test 135 datm_cdeps_control_gefs results .... +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/datm_cdeps_control_gefs +Checking test 141 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 141.272503 - 0: The maximum resident set size (KB) = 968080 + 0: The total amount of wall time = 145.752492 + 0: The maximum resident set size (KB) = 961992 -Test 135 datm_cdeps_control_gefs PASS +Test 141 datm_cdeps_control_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_iau_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/datm_cdeps_iau_gefs -Checking test 136 datm_cdeps_iau_gefs results .... +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/datm_cdeps_iau_gefs +Checking test 142 datm_cdeps_iau_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.203188 - 0: The maximum resident set size (KB) = 965128 + 0: The total amount of wall time = 144.884507 + 0: The maximum resident set size (KB) = 968840 -Test 136 datm_cdeps_iau_gefs PASS +Test 142 datm_cdeps_iau_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_stochy_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/datm_cdeps_stochy_gefs -Checking test 137 datm_cdeps_stochy_gefs results .... +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/datm_cdeps_stochy_gefs +Checking test 143 datm_cdeps_stochy_gefs 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.729092 - 0: The maximum resident set size (KB) = 961556 + 0: The total amount of wall time = 145.792156 + 0: The maximum resident set size (KB) = 974724 -Test 137 datm_cdeps_stochy_gefs PASS +Test 143 datm_cdeps_stochy_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_ciceC_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/datm_cdeps_ciceC_cfsr -Checking test 138 datm_cdeps_ciceC_cfsr results .... +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/datm_cdeps_ciceC_cfsr +Checking test 144 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 145.118750 - 0: The maximum resident set size (KB) = 1052228 + 0: The total amount of wall time = 146.627720 + 0: The maximum resident set size (KB) = 1056164 -Test 138 datm_cdeps_ciceC_cfsr PASS +Test 144 datm_cdeps_ciceC_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_bulk_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/datm_cdeps_bulk_cfsr -Checking test 139 datm_cdeps_bulk_cfsr results .... +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/datm_cdeps_bulk_cfsr +Checking test 145 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 145.751614 - 0: The maximum resident set size (KB) = 1059568 + 0: The total amount of wall time = 147.704380 + 0: The maximum resident set size (KB) = 1069724 -Test 139 datm_cdeps_bulk_cfsr PASS +Test 145 datm_cdeps_bulk_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_bulk_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/datm_cdeps_bulk_gefs -Checking test 140 datm_cdeps_bulk_gefs results .... +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/datm_cdeps_bulk_gefs +Checking test 146 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 143.832995 - 0: The maximum resident set size (KB) = 970912 + 0: The total amount of wall time = 143.537543 + 0: The maximum resident set size (KB) = 972660 -Test 140 datm_cdeps_bulk_gefs PASS +Test 146 datm_cdeps_bulk_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_mx025_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/datm_cdeps_mx025_cfsr -Checking test 141 datm_cdeps_mx025_cfsr results .... +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/datm_cdeps_mx025_cfsr +Checking test 147 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4347,15 +4611,15 @@ Checking test 141 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 451.133503 - 0: The maximum resident set size (KB) = 878628 + 0: The total amount of wall time = 448.178838 + 0: The maximum resident set size (KB) = 877136 -Test 141 datm_cdeps_mx025_cfsr PASS +Test 147 datm_cdeps_mx025_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_mx025_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/datm_cdeps_mx025_gefs -Checking test 142 datm_cdeps_mx025_gefs results .... +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/datm_cdeps_mx025_gefs +Checking test 148 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4363,78 +4627,78 @@ Checking test 142 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 438.269374 - 0: The maximum resident set size (KB) = 935636 + 0: The total amount of wall time = 433.498446 + 0: The maximum resident set size (KB) = 925828 -Test 142 datm_cdeps_mx025_gefs PASS +Test 148 datm_cdeps_mx025_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/datm_cdeps_multiple_files_cfsr -Checking test 143 datm_cdeps_multiple_files_cfsr results .... +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/datm_cdeps_multiple_files_cfsr +Checking test 149 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 145.662896 - 0: The maximum resident set size (KB) = 1055684 + 0: The total amount of wall time = 147.404412 + 0: The maximum resident set size (KB) = 1055352 -Test 143 datm_cdeps_multiple_files_cfsr PASS +Test 149 datm_cdeps_multiple_files_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/datm_cdeps_3072x1536_cfsr -Checking test 144 datm_cdeps_3072x1536_cfsr results .... +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/datm_cdeps_3072x1536_cfsr +Checking test 150 datm_cdeps_3072x1536_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 200.736917 - 0: The maximum resident set size (KB) = 2362692 + 0: The total amount of wall time = 198.373421 + 0: The maximum resident set size (KB) = 2367096 -Test 144 datm_cdeps_3072x1536_cfsr PASS +Test 150 datm_cdeps_3072x1536_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_gfs -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/datm_cdeps_gfs -Checking test 145 datm_cdeps_gfs results .... +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/datm_cdeps_gfs +Checking test 151 datm_cdeps_gfs 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 = 201.384296 - 0: The maximum resident set size (KB) = 2369316 + 0: The total amount of wall time = 204.217561 + 0: The maximum resident set size (KB) = 2359992 -Test 145 datm_cdeps_gfs PASS +Test 151 datm_cdeps_gfs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_debug_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/datm_cdeps_debug_cfsr -Checking test 146 datm_cdeps_debug_cfsr results .... +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/datm_cdeps_debug_cfsr +Checking test 152 datm_cdeps_debug_cfsr 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 = 435.246186 - 0: The maximum resident set size (KB) = 998772 + 0: The total amount of wall time = 459.565756 + 0: The maximum resident set size (KB) = 1003396 -Test 146 datm_cdeps_debug_cfsr PASS +Test 152 datm_cdeps_debug_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/datm_cdeps_control_cfsr_faster -Checking test 147 datm_cdeps_control_cfsr_faster results .... +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/datm_cdeps_control_cfsr_faster +Checking test 153 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.077472 - 0: The maximum resident set size (KB) = 1069604 + 0: The total amount of wall time = 146.163642 + 0: The maximum resident set size (KB) = 1072804 -Test 147 datm_cdeps_control_cfsr_faster PASS +Test 153 datm_cdeps_control_cfsr_faster PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_lnd_gswp3 -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/datm_cdeps_lnd_gswp3 -Checking test 148 datm_cdeps_lnd_gswp3 results .... +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/datm_cdeps_lnd_gswp3 +Checking test 154 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4442,15 +4706,15 @@ Checking test 148 datm_cdeps_lnd_gswp3 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 = 8.721288 - 0: The maximum resident set size (KB) = 250604 + 0: The total amount of wall time = 7.967628 + 0: The maximum resident set size (KB) = 262528 -Test 148 datm_cdeps_lnd_gswp3 PASS +Test 154 datm_cdeps_lnd_gswp3 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_lnd_gswp3 -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/datm_cdeps_lnd_gswp3_rst -Checking test 149 datm_cdeps_lnd_gswp3_rst results .... +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/datm_cdeps_lnd_gswp3_rst +Checking test 155 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4458,15 +4722,15 @@ Checking test 149 datm_cdeps_lnd_gswp3_rst 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.920256 - 0: The maximum resident set size (KB) = 266756 + 0: The total amount of wall time = 13.128467 + 0: The maximum resident set size (KB) = 255064 -Test 149 datm_cdeps_lnd_gswp3_rst PASS +Test 155 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_atmlnd_sbs -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/control_p8_atmlnd_sbs -Checking test 150 control_p8_atmlnd_sbs results .... +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_p8_atmlnd_sbs +Checking test 156 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -4550,19 +4814,19 @@ Checking test 150 control_p8_atmlnd_sbs 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 = 204.418248 - 0: The maximum resident set size (KB) = 1582916 + 0: The total amount of wall time = 204.855975 + 0: The maximum resident set size (KB) = 1613036 -Test 150 control_p8_atmlnd_sbs PASS +Test 156 control_p8_atmlnd_sbs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_atmwav -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/control_atmwav -Checking test 151 control_atmwav results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_atmwav +Checking test 157 control_atmwav results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -4601,19 +4865,19 @@ Checking test 151 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 88.332807 - 0: The maximum resident set size (KB) = 663276 + 0: The total amount of wall time = 86.761445 + 0: The maximum resident set size (KB) = 661824 -Test 151 control_atmwav PASS +Test 157 control_atmwav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/atmaero_control_p8 -Checking test 152 atmaero_control_p8 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/atmaero_control_p8 +Checking test 158 atmaero_control_p8 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -4652,19 +4916,19 @@ Checking test 152 atmaero_control_p8 results .... Comparing 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.696693 - 0: The maximum resident set size (KB) = 2979612 + 0: The total amount of wall time = 230.245182 + 0: The maximum resident set size (KB) = 2969500 -Test 152 atmaero_control_p8 PASS +Test 158 atmaero_control_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8_rad -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/atmaero_control_p8_rad -Checking test 153 atmaero_control_p8_rad results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/atmaero_control_p8_rad +Checking test 159 atmaero_control_p8_rad results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -4703,19 +4967,19 @@ Checking test 153 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 278.821803 - 0: The maximum resident set size (KB) = 3049196 + 0: The total amount of wall time = 279.664435 + 0: The maximum resident set size (KB) = 3044092 -Test 153 atmaero_control_p8_rad PASS +Test 159 atmaero_control_p8_rad PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8_rad_micro -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/atmaero_control_p8_rad_micro -Checking test 154 atmaero_control_p8_rad_micro results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/atmaero_control_p8_rad_micro +Checking test 160 atmaero_control_p8_rad_micro results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -4754,21 +5018,21 @@ Checking test 154 atmaero_control_p8_rad_micro results .... Comparing 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.442704 - 0: The maximum resident set size (KB) = 3054120 + 0: The total amount of wall time = 282.772569 + 0: The maximum resident set size (KB) = 3052516 -Test 154 atmaero_control_p8_rad_micro PASS +Test 160 atmaero_control_p8_rad_micro PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/regional_atmaq -Checking test 155 regional_atmaq results .... - Comparing sfcf000.nc .........OK - Comparing sfcf003.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf003.nc .........OK - Comparing atmf006.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/regional_atmaq +Checking test 161 regional_atmaq results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf003.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf003.nc ............ALT CHECK......OK + Comparing atmf006.nc ............ALT CHECK......OK Comparing RESTART/20190801.180000.coupler.res .........OK Comparing RESTART/20190801.180000.fv_core.res.nc .........OK Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK @@ -4777,19 +5041,19 @@ Checking test 155 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 615.308830 - 0: The maximum resident set size (KB) = 1499228 + 0: The total amount of wall time = 616.211001 + 0: The maximum resident set size (KB) = 1485960 -Test 155 regional_atmaq PASS +Test 161 regional_atmaq PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/regional_atmaq_debug -Checking test 156 regional_atmaq_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/regional_atmaq_debug +Checking test 162 regional_atmaq_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK Comparing RESTART/20190801.130000.coupler.res .........OK Comparing RESTART/20190801.130000.fv_core.res.nc .........OK Comparing RESTART/20190801.130000.fv_core.res.tile1.nc .........OK @@ -4798,21 +5062,21 @@ Checking test 156 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1246.200449 - 0: The maximum resident set size (KB) = 1411548 + 0: The total amount of wall time = 1265.361993 + 0: The maximum resident set size (KB) = 1410036 -Test 156 regional_atmaq_debug PASS +Test 162 regional_atmaq_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1658/stmp/jongkim/FV3_RT/rt_29638/regional_atmaq_faster -Checking test 157 regional_atmaq_faster results .... - Comparing sfcf000.nc .........OK - Comparing sfcf003.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf003.nc .........OK - Comparing atmf006.nc .........OK +working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/regional_atmaq_faster +Checking test 163 regional_atmaq_faster results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf003.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf003.nc ............ALT CHECK......OK + Comparing atmf006.nc ............ALT CHECK......OK Comparing RESTART/20190801.180000.coupler.res .........OK Comparing RESTART/20190801.180000.fv_core.res.nc .........OK Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK @@ -4821,12 +5085,12 @@ Checking test 157 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 543.426768 - 0: The maximum resident set size (KB) = 1481680 + 0: The total amount of wall time = 540.339047 + 0: The maximum resident set size (KB) = 1478492 -Test 157 regional_atmaq_faster PASS +Test 163 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Sat Mar 25 20:43:43 CDT 2023 -Elapsed time: 01h:12m:58s. Have a nice day! +Mon Mar 27 19:42:58 CDT 2023 +Elapsed time: 01h:22m:00s. Have a nice day! diff --git a/tests/RegressionTests_wcoss2.intel.log b/tests/RegressionTests_wcoss2.intel.log index c4cdba615cf..a35a27f47eb 100644 --- a/tests/RegressionTests_wcoss2.intel.log +++ b/tests/RegressionTests_wcoss2.intel.log @@ -1,34 +1,35 @@ -Sun Mar 26 20:02:46 UTC 2023 +Mon Mar 27 19:44:52 UTC 2023 Start Regression test -Compile 001 elapsed time 579 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 1100 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 1512 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 502 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 005 elapsed time 1435 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 662 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 1197 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 008 elapsed time 474 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 009 elapsed time 496 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 876 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 651 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 657 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 013 elapsed time 382 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 1078 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 015 elapsed time 1139 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 573 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 017 elapsed time 260 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 1098 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 019 elapsed time 303 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 1246 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 590 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 022 elapsed time 635 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 487 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 024 elapsed time 450 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 025 elapsed time 798 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Test 009 compile FAIL + +Compile 001 elapsed time 1261 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 632 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 1031 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 539 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 005 elapsed time 1072 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 1127 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 1008 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 524 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 010 elapsed time 1628 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 741 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 680 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 646 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 014 elapsed time 731 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 1131 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 762 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 017 elapsed time 358 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 845 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 019 elapsed time 253 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 1376 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 585 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 022 elapsed time 684 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 1381 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 024 elapsed time 919 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 025 elapsed time 871 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8_mixedmode -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/cpld_control_p8_mixedmode +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -93,14 +94,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 346.272533 -The maximum resident set size (KB) = 2953468 +The total amount of wall time = 374.576052 +The maximum resident set size (KB) = 2949276 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/cpld_control_p8 Checking test 002 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -165,14 +166,14 @@ Checking test 002 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 391.083016 -The maximum resident set size (KB) = 2982540 +The total amount of wall time = 394.756426 +The maximum resident set size (KB) = 2983704 Test 002 cpld_control_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/cpld_restart_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/cpld_restart_p8 Checking test 003 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -225,15 +226,147 @@ Checking test 003 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 242.803981 -The maximum resident set size (KB) = 2868612 +The total amount of wall time = 251.699068 +The maximum resident set size (KB) = 2869288 Test 003 cpld_restart_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/cpld_2threads_p8 -Checking test 004 cpld_2threads_p8 results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/cpld_control_qr_p8 +Checking test 004 cpld_control_qr_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + +The total amount of wall time = 398.286602 +The maximum resident set size (KB) = 2993684 + +Test 004 cpld_control_qr_p8 PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/cpld_restart_qr_p8 +Checking test 005 cpld_restart_qr_p8 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + +The total amount of wall time = 270.556391 +The maximum resident set size (KB) = 2879020 + +Test 005 cpld_restart_qr_p8 PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/cpld_2threads_p8 +Checking test 006 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -285,15 +418,15 @@ Checking test 004 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 374.375770 -The maximum resident set size (KB) = 3282912 +The total amount of wall time = 377.241971 +The maximum resident set size (KB) = 3284716 -Test 004 cpld_2threads_p8 PASS +Test 006 cpld_2threads_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/cpld_decomp_p8 -Checking test 005 cpld_decomp_p8 results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/cpld_decomp_p8 +Checking test 007 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -345,15 +478,15 @@ Checking test 005 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 383.885229 -The maximum resident set size (KB) = 2974248 +The total amount of wall time = 391.106123 +The maximum resident set size (KB) = 2978356 -Test 005 cpld_decomp_p8 PASS +Test 007 cpld_decomp_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/cpld_mpi_p8 -Checking test 006 cpld_mpi_p8 results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/cpld_mpi_p8 +Checking test 008 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -405,15 +538,15 @@ Checking test 006 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 322.374822 -The maximum resident set size (KB) = 2907468 +The total amount of wall time = 332.879122 +The maximum resident set size (KB) = 2908488 -Test 006 cpld_mpi_p8 PASS +Test 008 cpld_mpi_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_ciceC_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/cpld_control_ciceC_p8 -Checking test 007 cpld_control_ciceC_p8 results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/cpld_control_ciceC_p8 +Checking test 009 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -477,17 +610,17 @@ Checking test 007 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 387.751952 -The maximum resident set size (KB) = 2983856 +The total amount of wall time = 401.183085 +The maximum resident set size (KB) = 2982776 -Test 007 cpld_control_ciceC_p8 PASS +Test 009 cpld_control_ciceC_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_bmark_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/cpld_bmark_p8 -Checking test 008 cpld_bmark_p8 results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/cpld_bmark_p8 +Checking test 010 cpld_bmark_p8 results .... + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atmf006.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF06 .........OK Comparing GFSPRS.GrbF06 .........OK Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK @@ -532,17 +665,17 @@ Checking test 008 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 945.097586 -The maximum resident set size (KB) = 3915752 +The total amount of wall time = 1034.217598 +The maximum resident set size (KB) = 3928900 -Test 008 cpld_bmark_p8 PASS +Test 010 cpld_bmark_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_bmark_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/cpld_restart_bmark_p8 -Checking test 009 cpld_restart_bmark_p8 results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/cpld_restart_bmark_p8 +Checking test 011 cpld_restart_bmark_p8 results .... + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atmf006.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF06 .........OK Comparing GFSPRS.GrbF06 .........OK Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK @@ -587,15 +720,15 @@ Checking test 009 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 669.345509 -The maximum resident set size (KB) = 3884352 +The total amount of wall time = 692.067959 +The maximum resident set size (KB) = 3891432 -Test 009 cpld_restart_bmark_p8 PASS +Test 011 cpld_restart_bmark_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/cpld_control_noaero_p8 -Checking test 010 cpld_control_noaero_p8 results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/cpld_control_noaero_p8 +Checking test 012 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -658,15 +791,15 @@ Checking test 010 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 289.031567 -The maximum resident set size (KB) = 1575216 +The total amount of wall time = 303.748309 +The maximum resident set size (KB) = 1576420 -Test 010 cpld_control_noaero_p8 PASS +Test 012 cpld_control_noaero_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/cpld_control_nowave_noaero_p8 -Checking test 011 cpld_control_nowave_noaero_p8 results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/cpld_control_nowave_noaero_p8 +Checking test 013 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -727,15 +860,15 @@ Checking test 011 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 304.522271 -The maximum resident set size (KB) = 1629044 +The total amount of wall time = 323.796206 +The maximum resident set size (KB) = 1634116 -Test 011 cpld_control_nowave_noaero_p8 PASS +Test 013 cpld_control_nowave_noaero_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/cpld_control_noaero_p8_agrid -Checking test 012 cpld_control_noaero_p8_agrid results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/cpld_control_noaero_p8_agrid +Checking test 014 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -796,15 +929,15 @@ Checking test 012 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 337.234352 -The maximum resident set size (KB) = 1625468 +The total amount of wall time = 313.446160 +The maximum resident set size (KB) = 1628488 -Test 012 cpld_control_noaero_p8_agrid PASS +Test 014 cpld_control_noaero_p8_agrid PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/cpld_control_c48 -Checking test 013 cpld_control_c48 results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/cpld_control_c48 +Checking test 015 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -853,15 +986,15 @@ Checking test 013 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 454.364395 -The maximum resident set size (KB) = 2635388 +The total amount of wall time = 450.848792 +The maximum resident set size (KB) = 2632784 -Test 013 cpld_control_c48 PASS +Test 015 cpld_control_c48 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/cpld_warmstart_c48 -Checking test 014 cpld_warmstart_c48 results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/cpld_warmstart_c48 +Checking test 016 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK Comparing sfcf006.tile3.nc .........OK @@ -910,15 +1043,15 @@ Checking test 014 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 141.201269 -The maximum resident set size (KB) = 2653868 +The total amount of wall time = 136.611768 +The maximum resident set size (KB) = 2645764 -Test 014 cpld_warmstart_c48 PASS +Test 016 cpld_warmstart_c48 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/cpld_restart_c48 -Checking test 015 cpld_restart_c48 results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/cpld_restart_c48 +Checking test 017 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK Comparing sfcf006.tile3.nc .........OK @@ -967,15 +1100,15 @@ Checking test 015 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 79.502383 -The maximum resident set size (KB) = 2065792 +The total amount of wall time = 95.600996 +The maximum resident set size (KB) = 2069904 -Test 015 cpld_restart_c48 PASS +Test 017 cpld_restart_c48 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/cpld_control_p8_faster -Checking test 016 cpld_control_p8_faster results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/cpld_control_p8_faster +Checking test 018 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1039,15 +1172,15 @@ Checking test 016 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 396.925232 -The maximum resident set size (KB) = 2980636 +The total amount of wall time = 399.624125 +The maximum resident set size (KB) = 2982088 -Test 016 cpld_control_p8_faster PASS +Test 018 cpld_control_p8_faster PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/control_CubedSphereGrid -Checking test 017 control_CubedSphereGrid results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_CubedSphereGrid +Checking test 019 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1073,55 +1206,55 @@ Checking test 017 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 132.520138 -The maximum resident set size (KB) = 515440 +The total amount of wall time = 134.111744 +The maximum resident set size (KB) = 518816 -Test 017 control_CubedSphereGrid PASS +Test 019 control_CubedSphereGrid PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_latlon -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/control_latlon -Checking test 018 control_latlon results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_latlon +Checking test 020 control_latlon results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 134.423708 -The maximum resident set size (KB) = 518168 +The total amount of wall time = 135.943115 +The maximum resident set size (KB) = 519032 -Test 018 control_latlon PASS +Test 020 control_latlon PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/control_wrtGauss_netcdf_parallel -Checking test 019 control_wrtGauss_netcdf_parallel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_wrtGauss_netcdf_parallel +Checking test 021 control_wrtGauss_netcdf_parallel results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.602792 -The maximum resident set size (KB) = 515452 +The total amount of wall time = 140.497465 +The maximum resident set size (KB) = 518432 -Test 019 control_wrtGauss_netcdf_parallel PASS +Test 021 control_wrtGauss_netcdf_parallel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/control_c48 -Checking test 020 control_c48 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_c48 +Checking test 022 control_c48 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -1155,55 +1288,55 @@ Checking test 020 control_c48 results .... 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.408429 -The maximum resident set size (KB) = 672764 +The total amount of wall time = 329.476361 +The maximum resident set size (KB) = 674516 -Test 020 control_c48 PASS +Test 022 control_c48 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c192 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/control_c192 -Checking test 021 control_c192 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_c192 +Checking test 023 control_c192 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 534.568451 -The maximum resident set size (KB) = 615760 +The total amount of wall time = 563.714086 +The maximum resident set size (KB) = 616740 -Test 021 control_c192 PASS +Test 023 control_c192 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c384 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/control_c384 -Checking test 022 control_c384 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_c384 +Checking test 024 control_c384 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 583.069459 -The maximum resident set size (KB) = 914388 +The total amount of wall time = 631.162450 +The maximum resident set size (KB) = 928108 -Test 022 control_c384 PASS +Test 024 control_c384 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c384gdas -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/control_c384gdas -Checking test 023 control_c384gdas results .... - Comparing sfcf000.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf006.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_c384gdas +Checking test 025 control_c384gdas results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf006.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF06 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -1241,71 +1374,71 @@ Checking test 023 control_c384gdas 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 = 510.476420 -The maximum resident set size (KB) = 1046964 +The total amount of wall time = 517.918213 +The maximum resident set size (KB) = 1056048 -Test 023 control_c384gdas PASS +Test 025 control_c384gdas PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/control_stochy -Checking test 024 control_stochy results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_stochy +Checking test 026 control_stochy results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 90.742266 -The maximum resident set size (KB) = 519248 +The total amount of wall time = 93.634049 +The maximum resident set size (KB) = 522764 -Test 024 control_stochy PASS +Test 026 control_stochy PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/control_stochy_restart -Checking test 025 control_stochy_restart results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_stochy_restart +Checking test 027 control_stochy_restart results .... + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 50.576502 -The maximum resident set size (KB) = 288564 +The total amount of wall time = 56.165182 +The maximum resident set size (KB) = 291392 -Test 025 control_stochy_restart PASS +Test 027 control_stochy_restart PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/control_lndp -Checking test 026 control_lndp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_lndp +Checking test 028 control_lndp results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 87.437589 -The maximum resident set size (KB) = 519624 +The total amount of wall time = 87.110461 +The maximum resident set size (KB) = 520676 -Test 026 control_lndp PASS +Test 028 control_lndp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_iovr4 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/control_iovr4 -Checking test 027 control_iovr4 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_iovr4 +Checking test 029 control_iovr4 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1313,21 +1446,21 @@ Checking test 027 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 138.229632 -The maximum resident set size (KB) = 516400 +The total amount of wall time = 140.107861 +The maximum resident set size (KB) = 517652 -Test 027 control_iovr4 PASS +Test 029 control_iovr4 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_iovr5 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/control_iovr5 -Checking test 028 control_iovr5 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_iovr5 +Checking test 030 control_iovr5 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1335,21 +1468,21 @@ Checking test 028 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 138.566283 -The maximum resident set size (KB) = 519212 +The total amount of wall time = 142.888284 +The maximum resident set size (KB) = 518028 -Test 028 control_iovr5 PASS +Test 030 control_iovr5 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/control_p8 -Checking test 029 control_p8 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_p8 +Checking test 031 control_p8 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1389,43 +1522,17 @@ Checking test 029 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 185.730981 -The maximum resident set size (KB) = 1486740 - -Test 029 control_p8 PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/control_p8_lndp -Checking test 030 control_p8_lndp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing sfcf048.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing atmf048.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSFLX.GrbF48 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing GFSPRS.GrbF48 .........OK - -The total amount of wall time = 325.929563 -The maximum resident set size (KB) = 1487096 +The total amount of wall time = 202.295451 +The maximum resident set size (KB) = 1482352 -Test 030 control_p8_lndp PASS +Test 031 control_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/control_restart_p8 -Checking test 031 control_restart_p8 results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_restart_p8 +Checking test 032 control_restart_p8 results .... + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -1461,19 +1568,119 @@ Checking test 031 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 117.685950 -The maximum resident set size (KB) = 646268 +The total amount of wall time = 114.081492 +The maximum resident set size (KB) = 657232 -Test 031 control_restart_p8 PASS +Test 032 control_restart_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/control_decomp_p8 -Checking test 032 control_decomp_p8 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_qr_p8 +Checking test 033 control_qr_p8 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + +The total amount of wall time = 191.743479 +The maximum resident set size (KB) = 1493068 + +Test 033 control_qr_p8 PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_restart_qr_p8 +Checking test 034 control_restart_qr_p8 results .... + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + +The total amount of wall time = 128.088320 +The maximum resident set size (KB) = 665744 + +Test 034 control_restart_qr_p8 PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_decomp_p8 +Checking test 035 control_decomp_p8 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -1511,19 +1718,19 @@ Checking test 032 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 184.633660 -The maximum resident set size (KB) = 1476120 +The total amount of wall time = 219.427520 +The maximum resident set size (KB) = 1482736 -Test 032 control_decomp_p8 PASS +Test 035 control_decomp_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/control_2threads_p8 -Checking test 033 control_2threads_p8 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_2threads_p8 +Checking test 036 control_2threads_p8 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -1561,21 +1768,47 @@ Checking test 033 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 164.643965 -The maximum resident set size (KB) = 1570536 +The total amount of wall time = 178.923659 +The maximum resident set size (KB) = 1564036 -Test 033 control_2threads_p8 PASS +Test 036 control_2threads_p8 PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_p8_lndp +Checking test 037 control_p8_lndp results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing sfcf048.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK + Comparing atmf048.nc ............ALT CHECK......OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSFLX.GrbF48 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing GFSPRS.GrbF48 .........OK + +The total amount of wall time = 334.901589 +The maximum resident set size (KB) = 1489916 + +Test 037 control_p8_lndp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_rrtmgp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/control_p8_rrtmgp -Checking test 034 control_p8_rrtmgp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_p8_rrtmgp +Checking test 038 control_p8_rrtmgp results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1615,21 +1848,21 @@ Checking test 034 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 239.753590 -The maximum resident set size (KB) = 1552704 +The total amount of wall time = 246.532398 +The maximum resident set size (KB) = 1555356 -Test 034 control_p8_rrtmgp PASS +Test 038 control_p8_rrtmgp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_mynn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/control_p8_mynn -Checking test 035 control_p8_mynn results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_p8_mynn +Checking test 039 control_p8_mynn results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1669,21 +1902,21 @@ Checking test 035 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 182.716358 -The maximum resident set size (KB) = 1486152 +The total amount of wall time = 188.848416 +The maximum resident set size (KB) = 1488108 -Test 035 control_p8_mynn PASS +Test 039 control_p8_mynn PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/merra2_thompson -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/merra2_thompson -Checking test 036 merra2_thompson results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/merra2_thompson +Checking test 040 merra2_thompson results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1723,154 +1956,186 @@ Checking test 036 merra2_thompson results .... 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.328494 -The maximum resident set size (KB) = 1488420 +The total amount of wall time = 217.462621 +The maximum resident set size (KB) = 1498400 -Test 036 merra2_thompson PASS +Test 040 merra2_thompson PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/regional_control -Checking test 037 regional_control results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/regional_control +Checking test 041 regional_control results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf006.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 292.012601 -The maximum resident set size (KB) = 651288 +The total amount of wall time = 306.557436 +The maximum resident set size (KB) = 656052 -Test 037 regional_control PASS +Test 041 regional_control PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/regional_restart -Checking test 038 regional_restart results .... - Comparing dynf006.nc .........OK - Comparing phyf006.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/regional_restart +Checking test 042 regional_restart results .... + Comparing dynf006.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 160.162282 -The maximum resident set size (KB) = 653976 +The total amount of wall time = 171.507001 +The maximum resident set size (KB) = 650944 -Test 038 regional_restart PASS +Test 042 regional_restart PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/regional_decomp -Checking test 039 regional_decomp results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/regional_control_qr +Checking test 043 regional_control_qr results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf006.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 310.866879 -The maximum resident set size (KB) = 655572 +The total amount of wall time = 311.752862 +The maximum resident set size (KB) = 657500 + +Test 043 regional_control_qr PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/regional_restart_qr +Checking test 044 regional_restart_qr results .... + Comparing dynf006.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF06 .........OK + +The total amount of wall time = 204.241115 +The maximum resident set size (KB) = 650996 -Test 039 regional_decomp PASS +Test 044 regional_restart_qr PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/regional_2threads -Checking test 040 regional_2threads results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/regional_decomp +Checking test 045 regional_decomp results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf006.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 183.870350 -The maximum resident set size (KB) = 693492 +The total amount of wall time = 318.410298 +The maximum resident set size (KB) = 652276 -Test 040 regional_2threads PASS +Test 045 regional_decomp PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/regional_2threads +Checking test 046 regional_2threads results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf006.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK + +The total amount of wall time = 192.240716 +The maximum resident set size (KB) = 700504 + +Test 046 regional_2threads PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_noquilt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/regional_noquilt -Checking test 041 regional_noquilt results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/regional_noquilt +Checking test 047 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 325.872439 -The maximum resident set size (KB) = 647936 +The total amount of wall time = 325.323979 +The maximum resident set size (KB) = 647264 -Test 041 regional_noquilt PASS +Test 047 regional_noquilt PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/regional_netcdf_parallel -Checking test 042 regional_netcdf_parallel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/regional_netcdf_parallel +Checking test 048 regional_netcdf_parallel results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf006.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK -The total amount of wall time = 291.087417 -The maximum resident set size (KB) = 647796 +The total amount of wall time = 293.095167 +The maximum resident set size (KB) = 652376 -Test 042 regional_netcdf_parallel PASS +Test 048 regional_netcdf_parallel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/regional_2dwrtdecomp -Checking test 043 regional_2dwrtdecomp results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/regional_2dwrtdecomp +Checking test 049 regional_2dwrtdecomp results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf006.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 293.682788 -The maximum resident set size (KB) = 657452 +The total amount of wall time = 301.132061 +The maximum resident set size (KB) = 655448 -Test 043 regional_2dwrtdecomp PASS +Test 049 regional_2dwrtdecomp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/fv3_regional_wofs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/regional_wofs -Checking test 044 regional_wofs results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/regional_wofs +Checking test 050 regional_wofs results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf006.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 386.356950 -The maximum resident set size (KB) = 336460 +The total amount of wall time = 379.953703 +The maximum resident set size (KB) = 335812 -Test 044 regional_wofs PASS +Test 050 regional_wofs PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/rap_control -Checking test 045 rap_control results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rap_control +Checking test 051 rap_control results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1910,39 +2175,39 @@ Checking test 045 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 418.412086 -The maximum resident set size (KB) = 900104 +The total amount of wall time = 422.634146 +The maximum resident set size (KB) = 899304 -Test 045 rap_control PASS +Test 051 rap_control PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/regional_spp_sppt_shum_skeb -Checking test 046 regional_spp_sppt_shum_skeb results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/regional_spp_sppt_shum_skeb +Checking test 052 regional_spp_sppt_shum_skeb results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf001.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf001.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF01 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 290.354958 -The maximum resident set size (KB) = 985000 +The total amount of wall time = 246.903768 +The maximum resident set size (KB) = 979948 -Test 046 regional_spp_sppt_shum_skeb PASS +Test 052 regional_spp_sppt_shum_skeb PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/rap_decomp -Checking test 047 rap_decomp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rap_decomp +Checking test 053 rap_decomp results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1982,21 +2247,21 @@ Checking test 047 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 435.279655 -The maximum resident set size (KB) = 903288 +The total amount of wall time = 437.322660 +The maximum resident set size (KB) = 897048 -Test 047 rap_decomp PASS +Test 053 rap_decomp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/rap_2threads -Checking test 048 rap_2threads results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rap_2threads +Checking test 054 rap_2threads results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2036,17 +2301,17 @@ Checking test 048 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 395.428696 -The maximum resident set size (KB) = 967680 +The total amount of wall time = 390.237057 +The maximum resident set size (KB) = 971072 -Test 048 rap_2threads PASS +Test 054 rap_2threads PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/rap_restart -Checking test 049 rap_restart results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rap_restart +Checking test 055 rap_restart results .... + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -2082,21 +2347,21 @@ Checking test 049 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 213.394136 -The maximum resident set size (KB) = 651852 +The total amount of wall time = 222.917849 +The maximum resident set size (KB) = 649176 -Test 049 rap_restart PASS +Test 055 rap_restart PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/rap_sfcdiff -Checking test 050 rap_sfcdiff 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 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rap_sfcdiff +Checking test 056 rap_sfcdiff results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2136,21 +2401,21 @@ Checking test 050 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 415.844002 -The maximum resident set size (KB) = 900376 +The total amount of wall time = 432.069837 +The maximum resident set size (KB) = 899652 -Test 050 rap_sfcdiff PASS +Test 056 rap_sfcdiff PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/rap_sfcdiff_decomp -Checking test 051 rap_sfcdiff_decomp 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 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rap_sfcdiff_decomp +Checking test 057 rap_sfcdiff_decomp results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2190,17 +2455,17 @@ Checking test 051 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 432.896066 -The maximum resident set size (KB) = 900076 +The total amount of wall time = 442.709733 +The maximum resident set size (KB) = 896852 -Test 051 rap_sfcdiff_decomp PASS +Test 057 rap_sfcdiff_decomp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/rap_sfcdiff_restart -Checking test 052 rap_sfcdiff_restart results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rap_sfcdiff_restart +Checking test 058 rap_sfcdiff_restart results .... + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -2236,21 +2501,21 @@ Checking test 052 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 317.082824 -The maximum resident set size (KB) = 647072 +The total amount of wall time = 319.341853 +The maximum resident set size (KB) = 643512 -Test 052 rap_sfcdiff_restart PASS +Test 058 rap_sfcdiff_restart PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/hrrr_control -Checking test 053 hrrr_control 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 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/hrrr_control +Checking test 059 hrrr_control results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2290,21 +2555,21 @@ Checking test 053 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 400.147187 -The maximum resident set size (KB) = 894768 +The total amount of wall time = 413.318778 +The maximum resident set size (KB) = 896144 -Test 053 hrrr_control PASS +Test 059 hrrr_control PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/hrrr_control_decomp -Checking test 054 hrrr_control_decomp 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 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/hrrr_control_decomp +Checking test 060 hrrr_control_decomp results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2344,21 +2609,21 @@ Checking test 054 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 418.823457 -The maximum resident set size (KB) = 895236 +The total amount of wall time = 432.922728 +The maximum resident set size (KB) = 893932 -Test 054 hrrr_control_decomp PASS +Test 060 hrrr_control_decomp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/hrrr_control_2threads -Checking test 055 hrrr_control_2threads 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 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/hrrr_control_2threads +Checking test 061 hrrr_control_2threads results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2398,17 +2663,17 @@ Checking test 055 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 373.144532 -The maximum resident set size (KB) = 966828 +The total amount of wall time = 379.924391 +The maximum resident set size (KB) = 964684 -Test 055 hrrr_control_2threads PASS +Test 061 hrrr_control_2threads PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/hrrr_control_restart -Checking test 056 hrrr_control_restart results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/hrrr_control_restart +Checking test 062 hrrr_control_restart results .... + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -2444,21 +2709,21 @@ Checking test 056 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 299.629615 -The maximum resident set size (KB) = 643364 +The total amount of wall time = 303.100061 +The maximum resident set size (KB) = 641480 -Test 056 hrrr_control_restart PASS +Test 062 hrrr_control_restart PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1beta -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/rrfs_v1beta -Checking test 057 rrfs_v1beta 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 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rrfs_v1beta +Checking test 063 rrfs_v1beta results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2498,21 +2763,21 @@ Checking test 057 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 412.947382 -The maximum resident set size (KB) = 895268 +The total amount of wall time = 423.734504 +The maximum resident set size (KB) = 889048 -Test 057 rrfs_v1beta PASS +Test 063 rrfs_v1beta PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1nssl -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/rrfs_v1nssl -Checking test 058 rrfs_v1nssl 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 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rrfs_v1nssl +Checking test 064 rrfs_v1nssl results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2520,21 +2785,21 @@ Checking test 058 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 478.840398 -The maximum resident set size (KB) = 580980 +The total amount of wall time = 486.881294 +The maximum resident set size (KB) = 578012 -Test 058 rrfs_v1nssl PASS +Test 064 rrfs_v1nssl PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/rrfs_v1nssl_nohailnoccn -Checking test 059 rrfs_v1nssl_nohailnoccn 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 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rrfs_v1nssl_nohailnoccn +Checking test 065 rrfs_v1nssl_nohailnoccn results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2542,151 +2807,97 @@ Checking test 059 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 470.036665 -The maximum resident set size (KB) = 575028 +The total amount of wall time = 478.696384 +The maximum resident set size (KB) = 573752 -Test 059 rrfs_v1nssl_nohailnoccn PASS +Test 065 rrfs_v1nssl_nohailnoccn PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/rrfs_smoke_conus13km_hrrr_warm -Checking test 060 rrfs_smoke_conus13km_hrrr_warm 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 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rrfs_smoke_conus13km_hrrr_warm +Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing sfcf002.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK + Comparing atmf002.nc ............ALT CHECK......OK -The total amount of wall time = 154.059943 -The maximum resident set size (KB) = 803428 +The total amount of wall time = 152.048124 +The maximum resident set size (KB) = 798520 -Test 060 rrfs_smoke_conus13km_hrrr_warm PASS +Test 066 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/rrfs_smoke_conus13km_hrrr_warm_2threads -Checking test 061 rrfs_smoke_conus13km_hrrr_warm_2threads 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 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rrfs_smoke_conus13km_hrrr_warm_2threads +Checking test 067 rrfs_smoke_conus13km_hrrr_warm_2threads results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing sfcf002.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK + Comparing atmf002.nc ............ALT CHECK......OK -The total amount of wall time = 114.104608 -The maximum resident set size (KB) = 805052 +The total amount of wall time = 106.943772 +The maximum resident set size (KB) = 800704 -Test 061 rrfs_smoke_conus13km_hrrr_warm_2threads PASS +Test 067 rrfs_smoke_conus13km_hrrr_warm_2threads PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/rrfs_conus13km_hrrr_warm -Checking test 062 rrfs_conus13km_hrrr_warm 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 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rrfs_conus13km_hrrr_warm +Checking test 068 rrfs_conus13km_hrrr_warm results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing sfcf002.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK + Comparing atmf002.nc ............ALT CHECK......OK -The total amount of wall time = 140.366419 -The maximum resident set size (KB) = 783520 +The total amount of wall time = 137.889262 +The maximum resident set size (KB) = 780016 -Test 062 rrfs_conus13km_hrrr_warm PASS +Test 068 rrfs_conus13km_hrrr_warm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/rrfs_smoke_conus13km_radar_tten_warm -Checking test 063 rrfs_smoke_conus13km_radar_tten_warm 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 = 151.926363 -The maximum resident set size (KB) = 805676 - -Test 063 rrfs_smoke_conus13km_radar_tten_warm PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmg -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/control_csawmg -Checking test 064 control_csawmg results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 355.115915 -The maximum resident set size (KB) = 588032 - -Test 064 control_csawmg PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmgt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/control_csawmgt -Checking test 065 control_csawmgt 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 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rrfs_smoke_conus13km_radar_tten_warm +Checking test 069 rrfs_smoke_conus13km_radar_tten_warm results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing sfcf002.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK + Comparing atmf002.nc ............ALT CHECK......OK -The total amount of wall time = 355.430012 -The maximum resident set size (KB) = 585400 +The total amount of wall time = 153.354325 +The maximum resident set size (KB) = 804960 -Test 065 control_csawmgt PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_ras -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/control_ras -Checking test 066 control_ras results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 185.174364 -The maximum resident set size (KB) = 549756 - -Test 066 control_ras PASS +Test 069 rrfs_smoke_conus13km_radar_tten_warm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wam -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/control_wam -Checking test 067 control_wam results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_wam +Checking test 073 control_wam results .... + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK -The total amount of wall time = 120.240245 -The maximum resident set size (KB) = 269900 +The total amount of wall time = 127.339665 +The maximum resident set size (KB) = 279100 -Test 067 control_wam PASS +Test 073 control_wam PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/control_p8_faster -Checking test 068 control_p8_faster results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_p8_faster +Checking test 074 control_p8_faster results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2726,75 +2937,75 @@ Checking test 068 control_p8_faster results .... 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.527995 -The maximum resident set size (KB) = 1491840 +The total amount of wall time = 193.723083 +The maximum resident set size (KB) = 1496188 -Test 068 control_p8_faster PASS +Test 074 control_p8_faster PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/regional_control_faster -Checking test 069 regional_control_faster results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/regional_control_faster +Checking test 075 regional_control_faster results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf006.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 282.640440 -The maximum resident set size (KB) = 652160 +The total amount of wall time = 302.126400 +The maximum resident set size (KB) = 652640 -Test 069 regional_control_faster PASS +Test 075 regional_control_faster PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/rrfs_smoke_conus13km_hrrr_warm_debug -Checking test 070 rrfs_smoke_conus13km_hrrr_warm_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rrfs_smoke_conus13km_hrrr_warm_debug +Checking test 076 rrfs_smoke_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 910.370327 -The maximum resident set size (KB) = 834032 +The total amount of wall time = 939.758947 +The maximum resident set size (KB) = 831480 -Test 070 rrfs_smoke_conus13km_hrrr_warm_debug PASS +Test 076 rrfs_smoke_conus13km_hrrr_warm_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/rrfs_smoke_conus13km_hrrr_warm_debug_2threads -Checking test 071 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +Checking test 077 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 542.848495 -The maximum resident set size (KB) = 836088 +The total amount of wall time = 568.292951 +The maximum resident set size (KB) = 835084 -Test 071 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS +Test 077 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/rrfs_conus13km_hrrr_warm_debug -Checking test 072 rrfs_conus13km_hrrr_warm_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rrfs_conus13km_hrrr_warm_debug +Checking test 078 rrfs_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 826.709797 -The maximum resident set size (KB) = 814912 +The total amount of wall time = 866.412453 +The maximum resident set size (KB) = 813552 -Test 072 rrfs_conus13km_hrrr_warm_debug PASS +Test 078 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/control_CubedSphereGrid_debug -Checking test 073 control_CubedSphereGrid_debug results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_CubedSphereGrid_debug +Checking test 079 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -2820,359 +3031,359 @@ Checking test 073 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 171.683357 -The maximum resident set size (KB) = 678856 +The total amount of wall time = 179.273488 +The maximum resident set size (KB) = 677092 -Test 073 control_CubedSphereGrid_debug PASS +Test 079 control_CubedSphereGrid_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/control_wrtGauss_netcdf_parallel_debug -Checking test 074 control_wrtGauss_netcdf_parallel_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_wrtGauss_netcdf_parallel_debug +Checking test 080 control_wrtGauss_netcdf_parallel_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 161.446154 -The maximum resident set size (KB) = 684052 +The total amount of wall time = 169.833733 +The maximum resident set size (KB) = 680688 -Test 074 control_wrtGauss_netcdf_parallel_debug PASS +Test 080 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/control_stochy_debug -Checking test 075 control_stochy_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_stochy_debug +Checking test 081 control_stochy_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 181.678088 -The maximum resident set size (KB) = 687904 +The total amount of wall time = 186.293965 +The maximum resident set size (KB) = 686524 -Test 075 control_stochy_debug PASS +Test 081 control_stochy_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/control_lndp_debug -Checking test 076 control_lndp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_lndp_debug +Checking test 082 control_lndp_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 166.410254 -The maximum resident set size (KB) = 690224 +The total amount of wall time = 169.371575 +The maximum resident set size (KB) = 689640 -Test 076 control_lndp_debug PASS +Test 082 control_lndp_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmg_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/control_csawmg_debug -Checking test 077 control_csawmg_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_csawmg_debug +Checking test 083 control_csawmg_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 266.151687 -The maximum resident set size (KB) = 721560 +The total amount of wall time = 265.189655 +The maximum resident set size (KB) = 720152 -Test 077 control_csawmg_debug PASS +Test 083 control_csawmg_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmgt_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/control_csawmgt_debug -Checking test 078 control_csawmgt_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_csawmgt_debug +Checking test 084 control_csawmgt_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 257.579571 -The maximum resident set size (KB) = 722300 +The total amount of wall time = 256.319757 +The maximum resident set size (KB) = 720724 -Test 078 control_csawmgt_debug PASS +Test 084 control_csawmgt_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_ras_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/control_ras_debug -Checking test 079 control_ras_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_ras_debug +Checking test 085 control_ras_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 172.017086 -The maximum resident set size (KB) = 693644 +The total amount of wall time = 166.707845 +The maximum resident set size (KB) = 693092 -Test 079 control_ras_debug PASS +Test 085 control_ras_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/control_diag_debug -Checking test 080 control_diag_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_diag_debug +Checking test 086 control_diag_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 174.912161 -The maximum resident set size (KB) = 739728 +The total amount of wall time = 167.628123 +The maximum resident set size (KB) = 738256 -Test 080 control_diag_debug PASS +Test 086 control_diag_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_debug_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/control_debug_p8 -Checking test 081 control_debug_p8 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_debug_p8 +Checking test 087 control_debug_p8 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 192.919506 -The maximum resident set size (KB) = 1507092 +The total amount of wall time = 194.945749 +The maximum resident set size (KB) = 1507892 -Test 081 control_debug_p8 PASS +Test 087 control_debug_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/regional_debug -Checking test 082 regional_debug results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/regional_debug +Checking test 088 regional_debug results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf001.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf001.nc ............ALT CHECK......OK -The total amount of wall time = 1046.268538 -The maximum resident set size (KB) = 682924 +The total amount of wall time = 1042.630987 +The maximum resident set size (KB) = 678244 -Test 082 regional_debug PASS +Test 088 regional_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/rap_control_debug -Checking test 083 rap_control_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rap_control_debug +Checking test 089 rap_control_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 301.307365 -The maximum resident set size (KB) = 1058048 +The total amount of wall time = 305.976502 +The maximum resident set size (KB) = 1056572 -Test 083 rap_control_debug PASS +Test 089 rap_control_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/hrrr_control_debug -Checking test 084 hrrr_control_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/hrrr_control_debug +Checking test 090 hrrr_control_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 296.519790 -The maximum resident set size (KB) = 1052392 +The total amount of wall time = 297.309110 +The maximum resident set size (KB) = 1051692 -Test 084 hrrr_control_debug PASS +Test 090 hrrr_control_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/rap_unified_drag_suite_debug -Checking test 085 rap_unified_drag_suite_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rap_unified_drag_suite_debug +Checking test 091 rap_unified_drag_suite_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 300.409690 -The maximum resident set size (KB) = 1060064 +The total amount of wall time = 301.755737 +The maximum resident set size (KB) = 1059848 -Test 085 rap_unified_drag_suite_debug PASS +Test 091 rap_unified_drag_suite_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/rap_diag_debug -Checking test 086 rap_diag_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rap_diag_debug +Checking test 092 rap_diag_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 314.182438 -The maximum resident set size (KB) = 1140416 +The total amount of wall time = 318.689692 +The maximum resident set size (KB) = 1141856 -Test 086 rap_diag_debug PASS +Test 092 rap_diag_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/rap_cires_ugwp_debug -Checking test 087 rap_cires_ugwp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rap_cires_ugwp_debug +Checking test 093 rap_cires_ugwp_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 308.257547 -The maximum resident set size (KB) = 1057256 +The total amount of wall time = 309.320706 +The maximum resident set size (KB) = 1058176 -Test 087 rap_cires_ugwp_debug PASS +Test 093 rap_cires_ugwp_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/rap_unified_ugwp_debug -Checking test 088 rap_unified_ugwp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rap_unified_ugwp_debug +Checking test 094 rap_unified_ugwp_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 308.708303 -The maximum resident set size (KB) = 1062428 +The total amount of wall time = 314.820359 +The maximum resident set size (KB) = 1054604 -Test 088 rap_unified_ugwp_debug PASS +Test 094 rap_unified_ugwp_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/rap_lndp_debug -Checking test 089 rap_lndp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rap_lndp_debug +Checking test 095 rap_lndp_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 302.225741 -The maximum resident set size (KB) = 1059708 +The total amount of wall time = 310.720102 +The maximum resident set size (KB) = 1058312 -Test 089 rap_lndp_debug PASS +Test 095 rap_lndp_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_flake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/rap_flake_debug -Checking test 090 rap_flake_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rap_flake_debug +Checking test 096 rap_flake_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 300.116603 -The maximum resident set size (KB) = 1061028 +The total amount of wall time = 306.923322 +The maximum resident set size (KB) = 1056312 -Test 090 rap_flake_debug PASS +Test 096 rap_flake_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_progcld_thompson_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/rap_progcld_thompson_debug -Checking test 091 rap_progcld_thompson_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rap_progcld_thompson_debug +Checking test 097 rap_progcld_thompson_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 300.017685 -The maximum resident set size (KB) = 1060252 +The total amount of wall time = 307.085363 +The maximum resident set size (KB) = 1057220 -Test 091 rap_progcld_thompson_debug PASS +Test 097 rap_progcld_thompson_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_noah_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/rap_noah_debug -Checking test 092 rap_noah_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rap_noah_debug +Checking test 098 rap_noah_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 297.239231 -The maximum resident set size (KB) = 1061000 +The total amount of wall time = 303.547878 +The maximum resident set size (KB) = 1054056 -Test 092 rap_noah_debug PASS +Test 098 rap_noah_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/rap_sfcdiff_debug -Checking test 093 rap_sfcdiff_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rap_sfcdiff_debug +Checking test 099 rap_sfcdiff_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 302.541280 -The maximum resident set size (KB) = 1059472 +The total amount of wall time = 312.274589 +The maximum resident set size (KB) = 1056608 -Test 093 rap_sfcdiff_debug PASS +Test 099 rap_sfcdiff_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 094 rap_noah_sfcdiff_cires_ugwp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 100 rap_noah_sfcdiff_cires_ugwp_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 495.385998 -The maximum resident set size (KB) = 1057532 +The total amount of wall time = 496.854929 +The maximum resident set size (KB) = 1053472 -Test 094 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 100 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1beta_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/rrfs_v1beta_debug -Checking test 095 rrfs_v1beta_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rrfs_v1beta_debug +Checking test 101 rrfs_v1beta_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 295.098273 -The maximum resident set size (KB) = 1050300 +The total amount of wall time = 303.664322 +The maximum resident set size (KB) = 1050844 -Test 095 rrfs_v1beta_debug PASS +Test 101 rrfs_v1beta_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wam_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/control_wam_debug -Checking test 096 control_wam_debug results .... - Comparing sfcf019.nc .........OK - Comparing atmf019.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_wam_debug +Checking test 102 control_wam_debug results .... + Comparing sfcf019.nc ............ALT CHECK......OK + Comparing atmf019.nc ............ALT CHECK......OK -The total amount of wall time = 300.027348 -The maximum resident set size (KB) = 305500 +The total amount of wall time = 298.158036 +The maximum resident set size (KB) = 303580 -Test 096 control_wam_debug PASS +Test 102 control_wam_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/regional_spp_sppt_shum_skeb_dyn32_phy32 -Checking test 097 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 103 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf001.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf001.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF01 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 277.190209 -The maximum resident set size (KB) = 891860 +The total amount of wall time = 245.063442 +The maximum resident set size (KB) = 891720 -Test 097 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS +Test 103 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/rap_control_dyn32_phy32 -Checking test 098 rap_control_dyn32_phy32 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 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rap_control_dyn32_phy32 +Checking test 104 rap_control_dyn32_phy32 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3212,21 +3423,21 @@ Checking test 098 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 342.913102 -The maximum resident set size (KB) = 773136 +The total amount of wall time = 377.894547 +The maximum resident set size (KB) = 779144 -Test 098 rap_control_dyn32_phy32 PASS +Test 104 rap_control_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/hrrr_control_dyn32_phy32 -Checking test 099 hrrr_control_dyn32_phy32 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 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/hrrr_control_dyn32_phy32 +Checking test 105 hrrr_control_dyn32_phy32 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3266,21 +3477,21 @@ Checking test 099 hrrr_control_dyn32_phy32 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 = 185.563438 -The maximum resident set size (KB) = 778876 +The total amount of wall time = 198.217626 +The maximum resident set size (KB) = 776136 -Test 099 hrrr_control_dyn32_phy32 PASS +Test 105 hrrr_control_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/rap_2threads_dyn32_phy32 -Checking test 100 rap_2threads_dyn32_phy32 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 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rap_2threads_dyn32_phy32 +Checking test 106 rap_2threads_dyn32_phy32 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3320,21 +3531,21 @@ Checking test 100 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 323.448709 -The maximum resident set size (KB) = 837352 +The total amount of wall time = 431.520767 +The maximum resident set size (KB) = 840700 -Test 100 rap_2threads_dyn32_phy32 PASS +Test 106 rap_2threads_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/hrrr_control_2threads_dyn32_phy32 -Checking test 101 hrrr_control_2threads_dyn32_phy32 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 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/hrrr_control_2threads_dyn32_phy32 +Checking test 107 hrrr_control_2threads_dyn32_phy32 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3374,21 +3585,21 @@ Checking test 101 hrrr_control_2threads_dyn32_phy32 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 = 175.325500 -The maximum resident set size (KB) = 833056 +The total amount of wall time = 186.238011 +The maximum resident set size (KB) = 826632 -Test 101 hrrr_control_2threads_dyn32_phy32 PASS +Test 107 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/hrrr_control_decomp_dyn32_phy32 -Checking test 102 hrrr_control_decomp_dyn32_phy32 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 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/hrrr_control_decomp_dyn32_phy32 +Checking test 108 hrrr_control_decomp_dyn32_phy32 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3428,17 +3639,17 @@ Checking test 102 hrrr_control_decomp_dyn32_phy32 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 = 194.207231 -The maximum resident set size (KB) = 778416 +The total amount of wall time = 202.505699 +The maximum resident set size (KB) = 779412 -Test 102 hrrr_control_decomp_dyn32_phy32 PASS +Test 108 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/rap_restart_dyn32_phy32 -Checking test 103 rap_restart_dyn32_phy32 results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rap_restart_dyn32_phy32 +Checking test 109 rap_restart_dyn32_phy32 results .... + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -3474,17 +3685,17 @@ Checking test 103 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 268.370225 -The maximum resident set size (KB) = 611816 +The total amount of wall time = 266.036643 +The maximum resident set size (KB) = 618336 -Test 103 rap_restart_dyn32_phy32 PASS +Test 109 rap_restart_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/hrrr_control_restart_dyn32_phy32 -Checking test 104 hrrr_control_restart_dyn32_phy32 results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/hrrr_control_restart_dyn32_phy32 +Checking test 110 hrrr_control_restart_dyn32_phy32 results .... + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.180000.coupler.res .........OK @@ -3520,21 +3731,21 @@ Checking test 104 hrrr_control_restart_dyn32_phy32 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 = 96.827810 -The maximum resident set size (KB) = 609992 +The total amount of wall time = 173.963943 +The maximum resident set size (KB) = 610188 -Test 104 hrrr_control_restart_dyn32_phy32 PASS +Test 110 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/rap_control_dyn64_phy32 -Checking test 105 rap_control_dyn64_phy32 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 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rap_control_dyn64_phy32 +Checking test 111 rap_control_dyn64_phy32 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf009.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf009.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3574,116 +3785,116 @@ Checking test 105 rap_control_dyn64_phy32 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 = 233.629255 -The maximum resident set size (KB) = 800556 +The total amount of wall time = 290.869216 +The maximum resident set size (KB) = 799628 -Test 105 rap_control_dyn64_phy32 PASS +Test 111 rap_control_dyn64_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/rap_control_debug_dyn32_phy32 -Checking test 106 rap_control_debug_dyn32_phy32 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rap_control_debug_dyn32_phy32 +Checking test 112 rap_control_debug_dyn32_phy32 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 295.981719 -The maximum resident set size (KB) = 940304 +The total amount of wall time = 321.842225 +The maximum resident set size (KB) = 942124 -Test 106 rap_control_debug_dyn32_phy32 PASS +Test 112 rap_control_debug_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/hrrr_control_debug_dyn32_phy32 -Checking test 107 hrrr_control_debug_dyn32_phy32 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/hrrr_control_debug_dyn32_phy32 +Checking test 113 hrrr_control_debug_dyn32_phy32 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 292.810633 -The maximum resident set size (KB) = 938180 +The total amount of wall time = 334.942000 +The maximum resident set size (KB) = 941068 -Test 107 hrrr_control_debug_dyn32_phy32 PASS +Test 113 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/rap_control_dyn64_phy32_debug -Checking test 108 rap_control_dyn64_phy32_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rap_control_dyn64_phy32_debug +Checking test 114 rap_control_dyn64_phy32_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 298.244966 -The maximum resident set size (KB) = 960316 +The total amount of wall time = 382.997427 +The maximum resident set size (KB) = 964388 -Test 108 rap_control_dyn64_phy32_debug PASS +Test 114 rap_control_dyn64_phy32_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/hafs_regional_atm -Checking test 109 hafs_regional_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/hafs_regional_atm +Checking test 115 hafs_regional_atm results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 272.128314 -The maximum resident set size (KB) = 828668 +The total amount of wall time = 318.643347 +The maximum resident set size (KB) = 820140 -Test 109 hafs_regional_atm PASS +Test 115 hafs_regional_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/hafs_regional_atm_thompson_gfdlsf -Checking test 110 hafs_regional_atm_thompson_gfdlsf results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/hafs_regional_atm_thompson_gfdlsf +Checking test 116 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 327.512092 -The maximum resident set size (KB) = 1181116 +The total amount of wall time = 414.450617 +The maximum resident set size (KB) = 1174032 -Test 110 hafs_regional_atm_thompson_gfdlsf PASS +Test 116 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/hafs_regional_atm_ocn -Checking test 111 hafs_regional_atm_ocn results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/hafs_regional_atm_ocn +Checking test 117 hafs_regional_atm_ocn results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK Comparing archv.2019_241_06.a .........OK Comparing archs.2019_241_06.a .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 395.825633 -The maximum resident set size (KB) = 856420 +The total amount of wall time = 414.121244 +The maximum resident set size (KB) = 856284 -Test 111 hafs_regional_atm_ocn PASS +Test 117 hafs_regional_atm_ocn PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/hafs_regional_atm_wav -Checking test 112 hafs_regional_atm_wav results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/hafs_regional_atm_wav +Checking test 118 hafs_regional_atm_wav results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 707.603854 -The maximum resident set size (KB) = 888112 +The total amount of wall time = 738.052457 +The maximum resident set size (KB) = 884928 -Test 112 hafs_regional_atm_wav PASS +Test 118 hafs_regional_atm_wav PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/hafs_regional_atm_ocn_wav -Checking test 113 hafs_regional_atm_ocn_wav results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/hafs_regional_atm_ocn_wav +Checking test 119 hafs_regional_atm_ocn_wav results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK Comparing archv.2019_241_06.a .........OK Comparing archs.2019_241_06.a .........OK Comparing out_grd.ww3 .........OK @@ -3691,176 +3902,176 @@ Checking test 113 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 891.243057 -The maximum resident set size (KB) = 912564 +The total amount of wall time = 918.749197 +The maximum resident set size (KB) = 914128 -Test 113 hafs_regional_atm_ocn_wav PASS +Test 119 hafs_regional_atm_ocn_wav PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/hafs_regional_1nest_atm -Checking test 114 hafs_regional_1nest_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/hafs_regional_1nest_atm +Checking test 120 hafs_regional_1nest_atm results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atm.nest02.f006.nc ............ALT CHECK......OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......OK -The total amount of wall time = 328.790677 -The maximum resident set size (KB) = 391156 +The total amount of wall time = 457.392533 +The maximum resident set size (KB) = 393452 -Test 114 hafs_regional_1nest_atm PASS +Test 120 hafs_regional_1nest_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/hafs_regional_telescopic_2nests_atm -Checking test 115 hafs_regional_telescopic_2nests_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest03.f006.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/hafs_regional_telescopic_2nests_atm +Checking test 121 hafs_regional_telescopic_2nests_atm results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atm.nest02.f006.nc ............ALT CHECK......OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......OK + Comparing atm.nest03.f006.nc ............ALT CHECK......OK + Comparing sfc.nest03.f006.nc ............ALT CHECK......OK -The total amount of wall time = 400.048825 -The maximum resident set size (KB) = 413656 +The total amount of wall time = 551.461638 +The maximum resident set size (KB) = 401040 -Test 115 hafs_regional_telescopic_2nests_atm PASS +Test 121 hafs_regional_telescopic_2nests_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/hafs_global_1nest_atm -Checking test 116 hafs_global_1nest_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/hafs_global_1nest_atm +Checking test 122 hafs_global_1nest_atm results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atm.nest02.f006.nc ............ALT CHECK......OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......OK -The total amount of wall time = 168.260213 -The maximum resident set size (KB) = 273844 +The total amount of wall time = 323.475691 +The maximum resident set size (KB) = 287176 -Test 116 hafs_global_1nest_atm PASS +Test 122 hafs_global_1nest_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_multiple_4nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/hafs_global_multiple_4nests_atm -Checking test 117 hafs_global_multiple_4nests_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest03.f006.nc .........OK - Comparing atm.nest04.f006.nc .........OK - Comparing sfc.nest04.f006.nc .........OK - Comparing atm.nest05.f006.nc .........OK - Comparing sfc.nest05.f006.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/hafs_global_multiple_4nests_atm +Checking test 123 hafs_global_multiple_4nests_atm results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atm.nest02.f006.nc ............ALT CHECK......OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......OK + Comparing atm.nest03.f006.nc ............ALT CHECK......OK + Comparing sfc.nest03.f006.nc ............ALT CHECK......OK + Comparing atm.nest04.f006.nc ............ALT CHECK......OK + Comparing sfc.nest04.f006.nc ............ALT CHECK......OK + Comparing atm.nest05.f006.nc ............ALT CHECK......OK + Comparing sfc.nest05.f006.nc ............ALT CHECK......OK Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK Comparing HURPRS.GrbF06.nest03 .........OK Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -The total amount of wall time = 494.932604 -The maximum resident set size (KB) = 340704 +The total amount of wall time = 529.672172 +The maximum resident set size (KB) = 345676 -Test 117 hafs_global_multiple_4nests_atm PASS +Test 123 hafs_global_multiple_4nests_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/hafs_regional_specified_moving_1nest_atm -Checking test 118 hafs_regional_specified_moving_1nest_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/hafs_regional_specified_moving_1nest_atm +Checking test 124 hafs_regional_specified_moving_1nest_atm results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atm.nest02.f006.nc ............ALT CHECK......OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......OK Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 218.326619 -The maximum resident set size (KB) = 406200 +The total amount of wall time = 250.297976 +The maximum resident set size (KB) = 405156 -Test 118 hafs_regional_specified_moving_1nest_atm PASS +Test 124 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/hafs_regional_storm_following_1nest_atm -Checking test 119 hafs_regional_storm_following_1nest_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/hafs_regional_storm_following_1nest_atm +Checking test 125 hafs_regional_storm_following_1nest_atm results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atm.nest02.f006.nc ............ALT CHECK......OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......OK -The total amount of wall time = 203.001149 -The maximum resident set size (KB) = 405772 +The total amount of wall time = 221.601086 +The maximum resident set size (KB) = 404732 -Test 119 hafs_regional_storm_following_1nest_atm PASS +Test 125 hafs_regional_storm_following_1nest_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/hafs_regional_storm_following_1nest_atm_ocn -Checking test 120 hafs_regional_storm_following_1nest_atm_ocn results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/hafs_regional_storm_following_1nest_atm_ocn +Checking test 126 hafs_regional_storm_following_1nest_atm_ocn results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atm.nest02.f006.nc ............ALT CHECK......OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......OK Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 249.262939 -The maximum resident set size (KB) = 455032 +The total amount of wall time = 284.775445 +The maximum resident set size (KB) = 466660 -Test 120 hafs_regional_storm_following_1nest_atm_ocn PASS +Test 126 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/hafs_global_storm_following_1nest_atm -Checking test 121 hafs_global_storm_following_1nest_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/hafs_global_storm_following_1nest_atm +Checking test 127 hafs_global_storm_following_1nest_atm results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atm.nest02.f006.nc ............ALT CHECK......OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......OK -The total amount of wall time = 87.111417 -The maximum resident set size (KB) = 284512 +The total amount of wall time = 221.585334 +The maximum resident set size (KB) = 282304 -Test 121 hafs_global_storm_following_1nest_atm PASS +Test 127 hafs_global_storm_following_1nest_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/hafs_regional_storm_following_1nest_atm_ocn_debug -Checking test 122 hafs_regional_storm_following_1nest_atm_ocn_debug results .... - Comparing atmf001.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atm.nest02.f001.nc .........OK - Comparing sfc.nest02.f001.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/hafs_regional_storm_following_1nest_atm_ocn_debug +Checking test 128 hafs_regional_storm_following_1nest_atm_ocn_debug results .... + Comparing atmf001.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atm.nest02.f001.nc ............ALT CHECK......OK + Comparing sfc.nest02.f001.nc ............ALT CHECK......OK -The total amount of wall time = 802.521475 -The maximum resident set size (KB) = 477780 +The total amount of wall time = 901.392430 +The maximum resident set size (KB) = 502576 -Test 122 hafs_regional_storm_following_1nest_atm_ocn_debug PASS +Test 128 hafs_regional_storm_following_1nest_atm_ocn_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/hafs_regional_storm_following_1nest_atm_ocn_wav -Checking test 123 hafs_regional_storm_following_1nest_atm_ocn_wav results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 129 hafs_regional_storm_following_1nest_atm_ocn_wav results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atm.nest02.f006.nc ............ALT CHECK......OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......OK Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -The total amount of wall time = 537.025823 -The maximum resident set size (KB) = 525416 +The total amount of wall time = 515.695100 +The maximum resident set size (KB) = 522384 -Test 123 hafs_regional_storm_following_1nest_atm_ocn_wav PASS +Test 129 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_atmlnd_sbs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/control_p8_atmlnd_sbs -Checking test 124 control_p8_atmlnd_sbs results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_p8_atmlnd_sbs +Checking test 130 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3944,19 +4155,19 @@ Checking test 124 control_p8_atmlnd_sbs 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 = 243.494755 -The maximum resident set size (KB) = 1536508 +The total amount of wall time = 252.162892 +The maximum resident set size (KB) = 1543304 -Test 124 control_p8_atmlnd_sbs PASS +Test 130 control_p8_atmlnd_sbs PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/atmaero_control_p8 -Checking test 125 atmaero_control_p8 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/atmaero_control_p8 +Checking test 131 atmaero_control_p8 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -3995,19 +4206,19 @@ Checking test 125 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 261.527618 -The maximum resident set size (KB) = 2819700 +The total amount of wall time = 257.052188 +The maximum resident set size (KB) = 2812092 -Test 125 atmaero_control_p8 PASS +Test 131 atmaero_control_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8_rad -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/atmaero_control_p8_rad -Checking test 126 atmaero_control_p8_rad results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/atmaero_control_p8_rad +Checking test 132 atmaero_control_p8_rad results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -4046,19 +4257,19 @@ Checking test 126 atmaero_control_p8_rad results .... 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.046036 -The maximum resident set size (KB) = 2884840 +The total amount of wall time = 289.320725 +The maximum resident set size (KB) = 2876868 -Test 126 atmaero_control_p8_rad PASS +Test 132 atmaero_control_p8_rad PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/atmaero_control_p8_rad_micro -Checking test 127 atmaero_control_p8_rad_micro results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/atmaero_control_p8_rad_micro +Checking test 133 atmaero_control_p8_rad_micro results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -4097,21 +4308,21 @@ Checking test 127 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 293.214717 -The maximum resident set size (KB) = 2889372 +The total amount of wall time = 310.459746 +The maximum resident set size (KB) = 2885836 -Test 127 atmaero_control_p8_rad_micro PASS +Test 133 atmaero_control_p8_rad_micro PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/regional_atmaq -Checking test 128 regional_atmaq results .... - Comparing sfcf000.nc .........OK - Comparing sfcf003.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf003.nc .........OK - Comparing atmf006.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/regional_atmaq +Checking test 134 regional_atmaq results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf003.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf003.nc ............ALT CHECK......OK + Comparing atmf006.nc ............ALT CHECK......OK Comparing RESTART/20190801.180000.coupler.res .........OK Comparing RESTART/20190801.180000.fv_core.res.nc .........OK Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK @@ -4120,19 +4331,19 @@ Checking test 128 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 702.936574 -The maximum resident set size (KB) = 1266480 +The total amount of wall time = 735.908499 +The maximum resident set size (KB) = 1266256 -Test 128 regional_atmaq PASS +Test 134 regional_atmaq PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/regional_atmaq_debug -Checking test 129 regional_atmaq_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/regional_atmaq_debug +Checking test 135 regional_atmaq_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK Comparing RESTART/20190801.130000.coupler.res .........OK Comparing RESTART/20190801.130000.fv_core.res.nc .........OK Comparing RESTART/20190801.130000.fv_core.res.tile1.nc .........OK @@ -4141,21 +4352,21 @@ Checking test 129 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1366.963535 -The maximum resident set size (KB) = 1303724 +The total amount of wall time = 1375.523275 +The maximum resident set size (KB) = 1298876 -Test 129 regional_atmaq_debug PASS +Test 135 regional_atmaq_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_106424/regional_atmaq_faster -Checking test 130 regional_atmaq_faster results .... - Comparing sfcf000.nc .........OK - Comparing sfcf003.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf003.nc .........OK - Comparing atmf006.nc .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/regional_atmaq_faster +Checking test 136 regional_atmaq_faster results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf003.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf003.nc ............ALT CHECK......OK + Comparing atmf006.nc ............ALT CHECK......OK Comparing RESTART/20190801.180000.coupler.res .........OK Comparing RESTART/20190801.180000.fv_core.res.nc .........OK Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK @@ -4164,12 +4375,76 @@ Checking test 130 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 649.688354 -The maximum resident set size (KB) = 1259548 +The total amount of wall time = 683.263580 +The maximum resident set size (KB) = 1258628 + +Test 136 regional_atmaq_faster PASS + +FAILED TESTS: +Test compile_009 failed in run_compile failed + +REGRESSION TEST FAILED +Mon Mar 27 21:00:16 UTC 2023 +Elapsed time: 01h:15m:25s. Have a nice day! +Mon Mar 27 22:49:57 UTC 2023 +Start Regression test + +Compile 001 elapsed time 467 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmg +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178793/control_csawmg +Checking test 001 control_csawmg results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + +The total amount of wall time = 363.003823 +The maximum resident set size (KB) = 590312 + +Test 001 control_csawmg PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmgt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178793/control_csawmgt +Checking test 002 control_csawmgt results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + +The total amount of wall time = 355.147428 +The maximum resident set size (KB) = 592048 + +Test 002 control_csawmgt PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_ras +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178793/control_ras +Checking test 003 control_ras results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + +The total amount of wall time = 190.197532 +The maximum resident set size (KB) = 554772 -Test 130 regional_atmaq_faster PASS +Test 003 control_ras PASS REGRESSION TEST WAS SUCCESSFUL -Sun Mar 26 21:05:52 UTC 2023 -Elapsed time: 01h:03m:07s. Have a nice day! +Mon Mar 27 23:08:23 UTC 2023 +Elapsed time: 00h:18m:27s. Have a nice day! diff --git a/tests/default_vars.sh b/tests/default_vars.sh index f49ab1ef714..72c5a929552 100755 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -300,6 +300,7 @@ export INPES=$INPES_dflt export JNPES=$JNPES_dflt export RESTART_INTERVAL=0 export QUILTING=.true. +export QUILTING_RESTART=.false. export WRITE_GROUP=1 export WRTTASK_PER_GROUP=6 export ITASKS=1 diff --git a/tests/fv3_conf/control_run.IN b/tests/fv3_conf/control_run.IN index 2eb2430dac2..b56a41e0f8a 100644 --- a/tests/fv3_conf/control_run.IN +++ b/tests/fv3_conf/control_run.IN @@ -136,10 +136,10 @@ fi #Thompson if [ $IMP_PHYSICS = 8 ]; then - cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/qr_acr_qsV2.dat . - cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/qr_acr_qgV2.dat . - cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/freezeH2O.dat . - cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/CCN_ACTIVATE.BIN . + cp @[INPUTDATA_ROOT]/FV3_fix/qr_acr_qsV2.dat . + cp @[INPUTDATA_ROOT]/FV3_fix/qr_acr_qgV2.dat . + cp @[INPUTDATA_ROOT]/FV3_fix/freezeH2O.dat . + cp @[INPUTDATA_ROOT]/FV3_fix/CCN_ACTIVATE.BIN . fi #prognostic aerosols diff --git a/tests/fv3_conf/cpld_control_run.IN b/tests/fv3_conf/cpld_control_run.IN index 422b3e12953..009381e7541 100644 --- a/tests/fv3_conf/cpld_control_run.IN +++ b/tests/fv3_conf/cpld_control_run.IN @@ -167,10 +167,10 @@ cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT_L127/oro_data_ls* ./INPUT cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT_L127/oro_data_ss* ./INPUT if [ $IMP_PHYSICS = 8 ]; then - cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/CCN_ACTIVATE.BIN CCN_ACTIVATE.BIN - cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/freezeH2O.dat freezeH2O.dat - cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/qr_acr_qg.dat qr_acr_qg.dat - cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/qr_acr_qs.dat qr_acr_qs.dat + cp @[INPUTDATA_ROOT]/FV3_fix/CCN_ACTIVATE.BIN CCN_ACTIVATE.BIN + cp @[INPUTDATA_ROOT]/FV3_fix/freezeH2O.dat freezeH2O.dat + cp @[INPUTDATA_ROOT]/FV3_fix/qr_acr_qgV2.dat qr_acr_qgV2.dat + cp @[INPUTDATA_ROOT]/FV3_fix/qr_acr_qsV2.dat qr_acr_qsV2.dat fi #prognostic aerosols diff --git a/tests/fv3_conf/hafs_fv3_run.IN b/tests/fv3_conf/hafs_fv3_run.IN index cab28dd3402..9bd261bc7fc 100644 --- a/tests/fv3_conf/hafs_fv3_run.IN +++ b/tests/fv3_conf/hafs_fv3_run.IN @@ -30,10 +30,10 @@ else fi if [ ${CNTL_DIR} = "hafs_regional_atm_thompson_gfdlsf" ]; then - cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/qr_acr_qsV2.dat . - cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/qr_acr_qgV2.dat . - cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/freezeH2O.dat . - cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/CCN_ACTIVATE.BIN . + cp @[INPUTDATA_ROOT]/FV3_fix/qr_acr_qsV2.dat . + cp @[INPUTDATA_ROOT]/FV3_fix/qr_acr_qgV2.dat . + cp @[INPUTDATA_ROOT]/FV3_fix/freezeH2O.dat . + cp @[INPUTDATA_ROOT]/FV3_fix/CCN_ACTIVATE.BIN . fi if [[ $POSTAPP = 'hafs' ]]; then diff --git a/tests/fv3_conf/regional_run.IN b/tests/fv3_conf/regional_run.IN index ac86ad8cb58..6f4a8a6aaa7 100644 --- a/tests/fv3_conf/regional_run.IN +++ b/tests/fv3_conf/regional_run.IN @@ -25,13 +25,13 @@ cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SS.v3_3. cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SU.v1_3.dat optics_SU.dat if [ $WARM_START = .true. ]; then - cp ../regional_control${RT_SUFFIX}/RESTART/20220824.030000.coupler.res INPUT/coupler.res - cp ../regional_control${RT_SUFFIX}/RESTART/20220824.030000.fv_core.res.nc INPUT/fv_core.res.nc - cp ../regional_control${RT_SUFFIX}/RESTART/20220824.030000.fv_core.res.tile1.nc INPUT/fv_core.res.tile1.nc - cp ../regional_control${RT_SUFFIX}/RESTART/20220824.030000.fv_srf_wnd.res.tile1.nc INPUT/fv_srf_wnd.res.tile1.nc - cp ../regional_control${RT_SUFFIX}/RESTART/20220824.030000.fv_tracer.res.tile1.nc INPUT/fv_tracer.res.tile1.nc - cp ../regional_control${RT_SUFFIX}/RESTART/20220824.030000.phy_data.nc INPUT/phy_data.nc - cp ../regional_control${RT_SUFFIX}/RESTART/20220824.030000.sfc_data.nc INPUT/sfc_data.nc + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/20220824.030000.coupler.res INPUT/coupler.res + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/20220824.030000.fv_core.res.nc INPUT/fv_core.res.nc + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/20220824.030000.fv_core.res.tile1.nc INPUT/fv_core.res.tile1.nc + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/20220824.030000.fv_srf_wnd.res.tile1.nc INPUT/fv_srf_wnd.res.tile1.nc + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/20220824.030000.fv_tracer.res.tile1.nc INPUT/fv_tracer.res.tile1.nc + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/20220824.030000.phy_data.nc INPUT/phy_data.nc + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/20220824.030000.sfc_data.nc INPUT/sfc_data.nc fi if [ $WRITE_RESTART_WITH_BCS = .true. ]; then cp @[INPUTDATA_ROOT]/FV3_regional/RESTART/fv_core.res.tile1_new.nc RESTART/fv_core.res.tile1_new.nc diff --git a/tests/fv3_conf/rrfs_warm_run.IN b/tests/fv3_conf/rrfs_warm_run.IN index 36ac44f18f6..7a7bee837b5 100644 --- a/tests/fv3_conf/rrfs_warm_run.IN +++ b/tests/fv3_conf/rrfs_warm_run.IN @@ -43,10 +43,10 @@ touch data_table # Thompson MP lookup tables - copy standard and SIONlib tables of precomputed tables if [ $IMP_PHYSICS = 8 ]; then - cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/qr_acr_qsV2.dat . - cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/qr_acr_qgV2.dat . - cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/freezeH2O.dat . - cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/CCN_ACTIVATE.BIN . + cp @[INPUTDATA_ROOT]/FV3_fix/qr_acr_qsV2.dat . + cp @[INPUTDATA_ROOT]/FV3_fix/qr_acr_qgV2.dat . + cp @[INPUTDATA_ROOT]/FV3_fix/freezeH2O.dat . + cp @[INPUTDATA_ROOT]/FV3_fix/CCN_ACTIVATE.BIN . fi cp ${PATHRT}/parm/postxconfig-NT-fv3lam.txt postxconfig-NT.txt diff --git a/tests/parm/model_configure.IN b/tests/parm/model_configure.IN index 32f6cf7deda..26faebf608d 100644 --- a/tests/parm/model_configure.IN +++ b/tests/parm/model_configure.IN @@ -12,6 +12,7 @@ restart_interval: @[RESTART_INTERVAL] output_1st_tstep_rst: .false. quilting: @[QUILTING] +quilting_restart: @[QUILTING_RESTART] write_groups: @[WRITE_GROUP] write_tasks_per_group: @[WRTTASK_PER_GROUP] itasks: @[ITASKS] diff --git a/tests/parm/model_configure_regional.IN b/tests/parm/model_configure_regional.IN index a46a9a4ef78..7099d36c7c5 100644 --- a/tests/parm/model_configure_regional.IN +++ b/tests/parm/model_configure_regional.IN @@ -13,6 +13,7 @@ cpl: .false. write_dopost: @[WRITE_DOPOST] output_history: .true. quilting: @[QUILTING] +quilting_restat: @[QUILTING_RESTART] write_groups: 1 write_tasks_per_group: 10 num_files: 2 diff --git a/tests/rt.conf b/tests/rt.conf index 1547e551da5..3c2ed4bb763 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -8,14 +8,16 @@ COMPILE | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgsho RUN | cpld_control_gfsv17 | - wcoss2.intel | fv3 | RUN | cpld_control_p8 | | fv3 | RUN | cpld_restart_p8 | | | cpld_control_p8 +RUN | cpld_control_qr_p8 | | | +RUN | cpld_restart_qr_p8 | | | cpld_control_qr_p8 RUN | cpld_2threads_p8 | | | RUN | cpld_decomp_p8 | | | RUN | cpld_mpi_p8 | | | #RUN | cpld_multigrid_p8 | | | -RUN | cpld_control_ciceC_p8 | | fv3 | +RUN | cpld_control_ciceC_p8 | - gaea.intel | fv3 | -RUN | cpld_control_c192_p8 | - wcoss2.intel jet.intel acorn.intel | fv3 | -RUN | cpld_restart_c192_p8 | - wcoss2.intel jet.intel acorn.intel | | cpld_control_c192_p8 +RUN | cpld_control_c192_p8 | - wcoss2.intel jet.intel acorn.intel gaea.intel | fv3 | +RUN | cpld_restart_c192_p8 | - wcoss2.intel jet.intel acorn.intel gaea.intel | | cpld_control_c192_p8 RUN | cpld_bmark_p8 | - jet.intel cheyenne.intel acorn.intel | fv3 | RUN | cpld_restart_bmark_p8 | - jet.intel cheyenne.intel acorn.intel | | cpld_bmark_p8 @@ -62,10 +64,12 @@ RUN | control_iovr4 RUN | control_iovr5 | | fv3 | RUN | control_p8 | | fv3 | -RUN | control_p8_lndp | | fv3 | RUN | control_restart_p8 | | | control_p8 +RUN | control_qr_p8 | | | +RUN | control_restart_qr_p8 | | | control_qr_p8 RUN | control_decomp_p8 | | | RUN | control_2threads_p8 | | | +RUN | control_p8_lndp | | fv3 | RUN | control_p8_rrtmgp | | fv3 | RUN | control_p8_mynn | | fv3 | @@ -74,6 +78,8 @@ RUN | merra2_thompson RUN | regional_control | | fv3 | RUN | regional_restart | | | regional_control +RUN | regional_control_qr | | | +RUN | regional_restart_qr | | | regional_control_qr RUN | regional_decomp | | | RUN | regional_2threads | | | RUN | regional_noquilt | | fv3 | diff --git a/tests/rt_utils.sh b/tests/rt_utils.sh index 80bce61cabd..99031fda15b 100755 --- a/tests/rt_utils.sh +++ b/tests/rt_utils.sh @@ -38,8 +38,8 @@ function compute_petbounds_and_tasks() { # ATM ATM_io_tasks=${ATM_io_tasks:-0} if [[ $((ATM_compute_tasks + ATM_io_tasks)) -gt 0 ]]; then - atm_petlist_bounds="${n} $((n + ATM_compute_tasks*atm_omp_num_threads + ATM_io_tasks - 1))" - n=$((n + ATM_compute_tasks*atm_omp_num_threads + ATM_io_tasks)) + atm_petlist_bounds="${n} $((n + ATM_compute_tasks*atm_omp_num_threads + ATM_io_tasks*atm_omp_num_threads - 1))" + n=$((n + ATM_compute_tasks*atm_omp_num_threads + ATM_io_tasks*atm_omp_num_threads)) fi # OCN diff --git a/tests/run_test.sh b/tests/run_test.sh index 3f63afaaa97..7b58d033948 100755 --- a/tests/run_test.sh +++ b/tests/run_test.sh @@ -100,6 +100,11 @@ cp ${PATHTR}/modulefiles/ufs_common* ./modulefiles/. # Get the shell file that loads the "module" command and purges modules: cp ${PATHRT}/module-setup.sh module-setup.sh +if [[ $MACHINE_ID == wcoss2.* ]] || [[ $MACHINE_ID == acorn.* ]] ; then + # for compare_ncfile.py + module load gcc/10.3.0 python/3.8.6 +fi + SRCD="${PATHTR}" RUND="${RUNDIR}" diff --git a/tests/tests/control_qr_p8 b/tests/tests/control_qr_p8 new file mode 100644 index 00000000000..a109b47db77 --- /dev/null +++ b/tests/tests/control_qr_p8 @@ -0,0 +1,176 @@ +############################################################################### +# +# Global control test GFSv16 atmosphere only at C96L127, P8 configuration +# +############################################################################### + +export TEST_DESCR="Compare global control results with previous trunk version using quilting restart in atm" + +export CNTL_DIR=control_p8 + +export LIST_FILES="sfcf000.nc \ + sfcf021.nc \ + sfcf024.nc \ + atmf000.nc \ + atmf021.nc \ + atmf024.nc \ + GFSFLX.GrbF00 \ + GFSFLX.GrbF21 \ + GFSFLX.GrbF24 \ + GFSPRS.GrbF00 \ + GFSPRS.GrbF21 \ + GFSPRS.GrbF24 \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc" + +export_fv3 +export NPZ=127 +export NPZP=128 +export DT_ATMOS=720 +export DT_INNER=${DT_ATMOS} +export SYEAR=2021 +export SMONTH=03 +export SDAY=22 +export SHOUR=06 +export QUILTING_RESTART=.true. +export RESTART_INTERVAL="12 -1" +export OUTPUT_GRID='gaussian_grid' +export WRITE_DOPOST=.true. +export OUTPUT_FH='0 21 24' + +# P7 default +export IALB=2 +export IEMS=2 +export LSM=2 +export IOPT_DVEG=4 +export IOPT_CRS=2 +export IOPT_RAD=3 +export IOPT_ALB=1 +export IOPT_STC=3 +# P8 +export IOPT_SFC=3 +export IOPT_TRS=2 + +# FV3 P7 settings +export D2_BG_K1=0.20 +export D2_BG_K2=0.04 +export PSM_BC=1 +# P8 +export DDDMP=0.1 + +# P7 Merra2 Aerosols & NSST +export USE_MERRA2=.true. +export IAER=1011 +export NSTF_NAME=2,1,0,0,0 + +export LHEATSTRG=.false. +export LSEASPRAY=.true. + +# P7 UGWP1 +export GWD_OPT=2 +export DO_UGWP_V1=.false. +export KNOB_UGWP_VERSION=0 +export KNOB_UGWP_NSLOPE=1 +export DO_UGWP_V0=.true. +export DO_GSL_DRAG_LS_BL=.false. +export DO_GSL_DRAG_SS=.true. +export DO_GSL_DRAG_TOFD=.false. +export DO_UGWP_V1_OROG_ONLY=.false. +export DO_UGWP_V0_NST_ONLY=.false. +export LDIAG_UGWP=.false. + +# P7 CA +export DO_CA=.true. +export CA_SGS=.true. +export CA_GLOBAL=.false. +export NCA=1 +export NCELLS=5 +export NLIVES=12 +export NTHRESH=18 +export NSEED=1 +export NFRACSEED=0.5 +export CA_TRIGGER=.true. +export NSPINUP=1 +export ISEED_CA=12345 + +# P7 settings +export TILEDFIX=.true. +export FNALBC="'C96.snowfree_albedo.tileX.nc'" +export FNALBC2="'C96.facsf.tileX.nc'" +export FNTG3C="'C96.substrate_temperature.tileX.nc'" +export FNVEGC="'C96.vegetation_greenness.tileX.nc'" +export FNVETC="'C96.vegetation_type.tileX.nc'" +export FNSOTC="'C96.soil_type.tileX.nc'" +export FNSMCC=${FNSMCC_control} +export FNMSKH=${FNMSKH_control} +export FNVMNC="'C96.vegetation_greenness.tileX.nc'" +export FNVMXC="'C96.vegetation_greenness.tileX.nc'" +export FNSLPC="'C96.slope_type.tileX.nc'" +export FNABSC="'C96.maximum_snow_albedo.tileX.nc'" +export LANDICE=".false." +export FSICL=0 +export FSICS=0 + +export IMP_PHYSICS=8 +export LGFDLMPRAD=.false. +export DO_SAT_ADJ=.false. +export DNATS=0 +export DZ_MIN=6 + +#required for NML.IN sharing +export MIN_SEAICE=0.15 +export FRAC_GRID=.true. +export MOM6_RESTART_SETTING=n +# P8 (not used for standalone) +export USE_CICE_ALB=.false. + +export WRITE_NSFLIP=.true. + +export FV3_RUN=control_run.IN +export CCPP_SUITE=FV3_GFS_v17_p8 +export FIELD_TABLE=field_table_thompson_noaero_tke +export DIAG_TABLE=diag_table_p8_template +# use same namelist for standalone,coupled P7 +export INPUT_NML=cpld_control.nml.IN + +# RRTMGP +export DO_RRTMGP=.false. +export DOGP_CLDOPTICS_LUT=.true. +export DOGP_LWSCAT=.true. +export DOGP_SGS_CNV=.true. + +export SATMEDMF=.true. + +if [[ $MACHINE_ID = cheyenne.* ]]; then + TPN=18 +fi diff --git a/tests/tests/control_restart_qr_p8 b/tests/tests/control_restart_qr_p8 new file mode 100644 index 00000000000..e479cd310a6 --- /dev/null +++ b/tests/tests/control_restart_qr_p8 @@ -0,0 +1,171 @@ +############################################################################### +# +# Global control restart test GFSv16 atmosphere only at C96L127, P8 configuration +# +############################################################################### + +export TEST_DESCR="Compare global restart results with control_p8 test using quilting restart in atm" + +export CNTL_DIR=control_p8 + +export LIST_FILES="sfcf024.nc \ + atmf024.nc \ + GFSFLX.GrbF24 \ + GFSPRS.GrbF24 \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc" + +export_fv3 +export NPZ=127 +export NPZP=128 +export DT_ATMOS=720 +export DT_INNER=${DT_ATMOS} +export SYEAR=2021 +export SMONTH=03 +export SDAY=22 +export SHOUR=06 +export OUTPUT_GRID='gaussian_grid' +export WRITE_DOPOST=.true. +export QUILTING_RESTART=.true. +export FHROT=12 +export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${SHOUR} + ${FHROT} )))0000" + +export WARM_START=.true. +export NGGPS_IC=.false. +export EXTERNAL_IC=.false. +export MAKE_NH=.false. +export MOUNTAIN=.true. +export NA_INIT=0 + +# P7 default +export IALB=2 +export IEMS=2 +export LSM=2 +export IOPT_DVEG=4 +export IOPT_CRS=2 +export IOPT_RAD=3 +export IOPT_ALB=1 +export IOPT_STC=3 +# P8 +export IOPT_SFC=3 +export IOPT_TRS=2 + +# FV3 P7 settings +export D2_BG_K1=0.20 +export D2_BG_K2=0.04 +export PSM_BC=1 +# P8 +export DDDMP=0.1 + +# P7 Merra2 Aerosols & NSST +export USE_MERRA2=.true. +export IAER=1011 +export NSTF_NAME=2,0,0,0,0 + +export LHEATSTRG=.false. +export LSEASPRAY=.true. + +# P7 UGWP1 +export GWD_OPT=2 +export DO_UGWP_V1=.false. +export KNOB_UGWP_VERSION=0 +export KNOB_UGWP_NSLOPE=1 +export DO_UGWP_V0=.true. +export DO_GSL_DRAG_LS_BL=.false. +export DO_GSL_DRAG_SS=.true. +export DO_GSL_DRAG_TOFD=.false. +export DO_UGWP_V1_OROG_ONLY=.false. +export DO_UGWP_V0_NST_ONLY=.false. +export LDIAG_UGWP=.false. + +# P7 CA +export DO_CA=.true. +export CA_SGS=.true. +export CA_GLOBAL=.false. +export NCA=1 +export NCELLS=5 +export NLIVES=12 +export NTHRESH=18 +export NSEED=1 +export NFRACSEED=0.5 +export CA_TRIGGER=.true. +export NSPINUP=1 +export ISEED_CA=12345 + +# P7 settings +export TILEDFIX=.true. +export FNALBC="'C96.snowfree_albedo.tileX.nc'" +export FNALBC2="'C96.facsf.tileX.nc'" +export FNTG3C="'C96.substrate_temperature.tileX.nc'" +export FNVEGC="'C96.vegetation_greenness.tileX.nc'" +export FNVETC="'C96.vegetation_type.tileX.nc'" +export FNSOTC="'C96.soil_type.tileX.nc'" +export FNSMCC=${FNSMCC_control} +export FNMSKH=${FNMSKH_control} +export FNVMNC="'C96.vegetation_greenness.tileX.nc'" +export FNVMXC="'C96.vegetation_greenness.tileX.nc'" +export FNSLPC="'C96.slope_type.tileX.nc'" +export FNABSC="'C96.maximum_snow_albedo.tileX.nc'" +export LANDICE=".false." +export FSICL=0 +export FSICS=0 + +export IMP_PHYSICS=8 +export LGFDLMPRAD=.false. +export DO_SAT_ADJ=.false. +export DNATS=0 +export DZ_MIN=6 + +#required for NML.IN sharing +export MIN_SEAICE=0.15 +export FRAC_GRID=.true. +export MOM6_RESTART_SETTING=n +# P8 (not used for standalone) +export USE_CICE_ALB=.false. + +export WRITE_NSFLIP=.true. + +export FV3_RUN=control_run.IN +export CCPP_SUITE=FV3_GFS_v17_p8 +export FIELD_TABLE=field_table_thompson_noaero_tke +export DIAG_TABLE=diag_table_p8_template +# use same namelist for standalone,coupled P7 +export INPUT_NML=cpld_control.nml.IN + +# P8 RRTMGP +export DO_RRTMGP=.false. +export DOGP_CLDOPTICS_LUT=.true. +export DOGP_LWSCAT=.true. +export DOGP_SGS_CNV=.true. + +export SATMEDMF=.true. diff --git a/tests/tests/cpld_control_qr_p8 b/tests/tests/cpld_control_qr_p8 new file mode 100644 index 00000000000..20d63ea1205 --- /dev/null +++ b/tests/tests/cpld_control_qr_p8 @@ -0,0 +1,88 @@ +# +# cpld_control P8 test +# + +export TEST_DESCR="Fully coupled FV3-CCPP-GOCART-MOM6-CICE-CMEPS-WW3 system - C96MX100 using quilting restart in atm" + +export CNTL_DIR="cpld_control_p8" + +export LIST_FILES="sfcf021.tile1.nc \ + sfcf021.tile2.nc \ + sfcf021.tile3.nc \ + sfcf021.tile4.nc \ + sfcf021.tile5.nc \ + sfcf021.tile6.nc \ + atmf021.tile1.nc \ + atmf021.tile2.nc \ + atmf021.tile3.nc \ + atmf021.tile4.nc \ + atmf021.tile5.nc \ + atmf021.tile6.nc \ + sfcf024.tile1.nc \ + sfcf024.tile2.nc \ + sfcf024.tile3.nc \ + sfcf024.tile4.nc \ + sfcf024.tile5.nc \ + sfcf024.tile6.nc \ + atmf024.tile1.nc \ + atmf024.tile2.nc \ + atmf024.tile3.nc \ + atmf024.tile4.nc \ + atmf024.tile5.nc \ + atmf024.tile6.nc \ + gocart.inst_aod.20210323_0600z.nc4 \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc \ + RESTART/20210323.060000.MOM.res.nc \ + RESTART/iced.2021-03-23-21600.nc \ + RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc \ + 20210323.060000.out_pnt.ww3 \ + 20210323.060000.out_grd.ww3 " + +export_fv3 +export_cpl + +export QUILTING_RESTART=.true. +export RESTART_N=12 +export RESTART_INTERVAL="${RESTART_N} -1" +export OUTPUT_FH='0 21 24' + +export TOPOEDITS=ufs.topo_edits_011818.nc +export MOM6_ALLOW_LANDMASK_CHANGES=True +export eps_imesh=2.5e-1 + +export FV3_RUN=cpld_control_run.IN + +if [[ $MACHINE_ID = cheyenne.* ]]; then + TPN=18 +fi diff --git a/tests/tests/cpld_restart_qr_p8 b/tests/tests/cpld_restart_qr_p8 new file mode 100644 index 00000000000..d9aa59c2c96 --- /dev/null +++ b/tests/tests/cpld_restart_qr_p8 @@ -0,0 +1,100 @@ +# +# cpld_restart P8 test +# + +export TEST_DESCR="Fully coupled FV3-CCPP-GOCART-MOM6-CICE-CMEPS-WW3 system - C96MX100 using quilting restart in atm" + +export CNTL_DIR="cpld_control_p8" + +export LIST_FILES="sfcf024.tile1.nc \ + sfcf024.tile2.nc \ + sfcf024.tile3.nc \ + sfcf024.tile4.nc \ + sfcf024.tile5.nc \ + sfcf024.tile6.nc \ + atmf024.tile1.nc \ + atmf024.tile2.nc \ + atmf024.tile3.nc \ + atmf024.tile4.nc \ + atmf024.tile5.nc \ + atmf024.tile6.nc \ + gocart.inst_aod.20210323_0600z.nc4 \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc \ + RESTART/20210323.060000.MOM.res.nc \ + RESTART/iced.2021-03-23-21600.nc \ + RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc \ + 20210323.060000.out_pnt.ww3 \ + 20210323.060000.out_grd.ww3 " + +export_fv3 +export_cpl + +export QUILTING_RESTART=.true. +export FHROT=12 +export RESTART_N=$((FHMAX-$FHROT)) + +export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${FHROT} + ${SHOUR} )))0000" +export RESTART_FILE_SUFFIX_SECS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%05d" $(( (${FHROT}+ ${SHOUR})*3600 )))" +export RUN_BEG="${SYEAR}${SMONTH}${SDAY} $(printf "%02d" $(( ${FHROT}+${SHOUR} )))0000" + +# ATM warm start +export WARM_START=.true. +export MAKE_NH=.false. +export NA_INIT=0 +export EXTERNAL_IC=.false. +export NGGPS_IC=.false. +export MOUNTAIN=.true. + +# ICE warm start +export CICERUNTYPE=continue +export RUNTYPE=continue +export USE_RESTART_TIME=.true. + +# MOM6 warm start +export MOM6_RESTART_SETTING=r + +# Waves +export OUT_BEG=$RUN_BEG +export RST_BEG=$RUN_BEG +export RST_2_BEG=$RUN_BEG + +export TOPOEDITS=ufs.topo_edits_011818.nc +export MOM6_ALLOW_LANDMASK_CHANGES=True +export eps_imesh=2.5e-1 + +export FV3_RUN=cpld_control_run.IN + +if [[ $MACHINE_ID = cheyenne.* ]]; then + TPN=18 +fi diff --git a/tests/tests/regional_control_qr b/tests/tests/regional_control_qr new file mode 100644 index 00000000000..8c3790f84a5 --- /dev/null +++ b/tests/tests/regional_control_qr @@ -0,0 +1,46 @@ +############################################################################### +# +# FV3 regional control (hi-res 3km, small domain) test +# +############################################################################### + +export TEST_DESCR="Compare FV3 regional control results with previous trunk version" + +export CNTL_DIR=regional_control + +export LIST_FILES="dynf000.nc \ + dynf006.nc \ + phyf000.nc \ + phyf006.nc \ + PRSLEV.GrbF00 \ + PRSLEV.GrbF06 \ + NATLEV.GrbF00 \ + NATLEV.GrbF06" + +export_fv3 + +export FV3_RUN=regional_run.IN + +export OZ_PHYS_OLD=.false. +export OZ_PHYS_NEW=.true. +export H2O_PHYS=.true. +export HYBEDMF=.false. +export QUILTING_RESTART=.true. +export RESTART_INTERVAL="3 -1" +export WRITE_DOPOST=.true. +export POSTAPP='lam' + +export CCPP_SUITE=FV3_GFS_v15_thompson_mynn_lam3km +export INPUT_NML=regional.nml.IN +export MODEL_CONFIGURE=model_configure_regional.IN +export DIAG_TABLE=diag_table_lam +export FIELD_TABLE=field_table_regional + +export WLCLK=15 +export FHMAX=6 +export INPES=10 +export JNPES=11 +export OUTPUT_FH="3 -1" +WRITE_GROUP=1 +WRTTASK_PER_GROUP=10 +NTILES=1 diff --git a/tests/tests/regional_restart_qr b/tests/tests/regional_restart_qr new file mode 100644 index 00000000000..a8463bdccb1 --- /dev/null +++ b/tests/tests/regional_restart_qr @@ -0,0 +1,49 @@ +############################################################################### +# +# FV3 regional restart (hi-res 3km, small domain) test +# +############################################################################### + +export TEST_DESCR="Compare FV3 regional restart results with previous trunk version" + +export CNTL_DIR=regional_control + +export LIST_FILES="dynf006.nc \ + phyf006.nc \ + PRSLEV.GrbF06 \ + NATLEV.GrbF06" + +export_fv3 + +export FV3_RUN=regional_run.IN + +export OZ_PHYS_OLD=.false. +export OZ_PHYS_NEW=.true. +export H2O_PHYS=.true. +export HYBEDMF=.false. +export QUILTING_RESTART=.true. +export WRITE_DOPOST=.true. +export POSTAPP='lam' + +export CCPP_SUITE=FV3_GFS_v15_thompson_mynn_lam3km +export INPUT_NML=regional.nml.IN +export MODEL_CONFIGURE=model_configure_regional.IN +export DIAG_TABLE=diag_table_lam +export FIELD_TABLE=field_table_regional + +export WARM_START=.true. +export NGGPS_IC=.false. +export EXTERNAL_IC=.false. +export MAKE_NH=.false. +export MOUNTAIN=.true. +export NA_INIT=0 + +export WLCLK=15 +export FHMAX=6 +export INPES=10 +export JNPES=11 +export OUTPUT_FH="4 6" +WRITE_GROUP=1 +WRTTASK_PER_GROUP=10 +NTILES=1 +export FHROT=3 From 7267be0183bac74dbd51770390ae455f59dfed2d Mon Sep 17 00:00:00 2001 From: Denise Worthen Date: Wed, 29 Mar 2023 14:53:09 -0400 Subject: [PATCH 13/30] Update CICE with latest Consortium/main (#1672) * reverting the bug fix for ktherm=2 allows all cpld tests to pass and the single datm test using ktherm=2 (datm_cdeps_gfs) to also pass all other datm tests which use ktherm=1 fail * confirm cice testb16d7fd is b4b for all datm/cpld tests * update CICE and CICE gitmodule * fix alignments in rt.conf, rt_gnu.conf --- CICE-interface/CICE | 2 +- tests/RegressionTests_acorn.intel.log | 1008 ++++++++++----------- tests/RegressionTests_cheyenne.gnu.log | 328 +++---- tests/RegressionTests_cheyenne.intel.log | 1022 ++++++++++----------- tests/RegressionTests_gaea.intel.log | 1018 ++++++++++----------- tests/RegressionTests_hera.gnu.log | 330 +++---- tests/RegressionTests_hera.intel.log | 1048 ++++++++++----------- tests/RegressionTests_jet.intel.log | 960 ++++++++++---------- tests/RegressionTests_orion.intel.log | 1050 +++++++++++----------- 9 files changed, 3383 insertions(+), 3383 deletions(-) diff --git a/CICE-interface/CICE b/CICE-interface/CICE index e628a9a696b..5840cd1931e 160000 --- a/CICE-interface/CICE +++ b/CICE-interface/CICE @@ -1 +1 @@ -Subproject commit e628a9a696bd146a0036e946884b9f9102ebd8e4 +Subproject commit 5840cd1931e2e32b9dfded0c19049d0f1ec3d04c diff --git a/tests/RegressionTests_acorn.intel.log b/tests/RegressionTests_acorn.intel.log index ecc739886a6..210fd982ae4 100644 --- a/tests/RegressionTests_acorn.intel.log +++ b/tests/RegressionTests_acorn.intel.log @@ -1,40 +1,40 @@ -Mon Mar 27 19:44:38 UTC 2023 +Wed Mar 29 14:12:38 UTC 2023 Start Regression test Compile 001 elapsed time 543 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 1087 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 926 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 688 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 005 elapsed time 560 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 1626 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 1008 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 008 elapsed time 711 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 452 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 010 elapsed time 1174 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 909 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 766 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 225 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 769 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 578 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 764 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 1055 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 273 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 723 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 020 elapsed time 512 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 021 elapsed time 936 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 022 elapsed time 908 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 023 elapsed time 257 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 024 elapsed time 256 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 175 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 026 elapsed time 586 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 027 elapsed time 988 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 660 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 437 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 217 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 031 elapsed time 514 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 550 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 506 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 993 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 005 elapsed time 598 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 1623 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 1065 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 1161 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 458 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 010 elapsed time 877 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 847 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 548 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 379 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 014 elapsed time 214 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 555 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 527 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 153 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 276 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 688 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 020 elapsed time 796 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 021 elapsed time 618 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 022 elapsed time 478 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 023 elapsed time 348 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 024 elapsed time 258 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 324 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 026 elapsed time 641 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 027 elapsed time 598 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 442 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 476 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 276 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 031 elapsed time 659 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8_mixedmode -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/cpld_control_p8_mixedmode +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -99,14 +99,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 331.408631 -The maximum resident set size (KB) = 2949136 +The total amount of wall time = 332.917005 +The maximum resident set size (KB) = 2947316 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_gfsv17 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/cpld_control_gfsv17 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -170,14 +170,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 260.697330 -The maximum resident set size (KB) = 1585264 +The total amount of wall time = 259.554270 +The maximum resident set size (KB) = 1573824 Test 002 cpld_control_gfsv17 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -242,14 +242,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 385.838211 -The maximum resident set size (KB) = 2980132 +The total amount of wall time = 386.253401 +The maximum resident set size (KB) = 2979672 Test 003 cpld_control_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/cpld_restart_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -302,14 +302,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 230.317689 -The maximum resident set size (KB) = 2867748 +The total amount of wall time = 230.033856 +The maximum resident set size (KB) = 2869428 Test 004 cpld_restart_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/cpld_control_qr_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -374,14 +374,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 389.093524 -The maximum resident set size (KB) = 2992776 +The total amount of wall time = 388.381863 +The maximum resident set size (KB) = 2993760 Test 005 cpld_control_qr_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/cpld_restart_qr_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -434,14 +434,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 232.265588 -The maximum resident set size (KB) = 2883720 +The total amount of wall time = 231.025014 +The maximum resident set size (KB) = 2878924 Test 006 cpld_restart_qr_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/cpld_2threads_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -494,14 +494,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 366.709853 -The maximum resident set size (KB) = 3281136 +The total amount of wall time = 366.851727 +The maximum resident set size (KB) = 3280296 Test 007 cpld_2threads_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/cpld_decomp_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -554,14 +554,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 378.126894 -The maximum resident set size (KB) = 2980592 +The total amount of wall time = 381.558538 +The maximum resident set size (KB) = 2977208 Test 008 cpld_decomp_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/cpld_mpi_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -614,14 +614,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 317.813669 -The maximum resident set size (KB) = 2918448 +The total amount of wall time = 318.707609 +The maximum resident set size (KB) = 2910232 Test 009 cpld_mpi_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_ciceC_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/cpld_control_ciceC_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -686,14 +686,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 383.789733 -The maximum resident set size (KB) = 2987692 +The total amount of wall time = 385.552006 +The maximum resident set size (KB) = 2983716 Test 010 cpld_control_ciceC_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/cpld_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/cpld_control_noaero_p8 Checking test 011 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -757,14 +757,14 @@ Checking test 011 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 280.388999 -The maximum resident set size (KB) = 1572804 +The total amount of wall time = 282.858473 +The maximum resident set size (KB) = 1579384 Test 011 cpld_control_noaero_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/cpld_control_nowave_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/cpld_control_nowave_noaero_p8 Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -826,14 +826,14 @@ Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 297.106632 -The maximum resident set size (KB) = 1617588 +The total amount of wall time = 300.844987 +The maximum resident set size (KB) = 1629096 Test 012 cpld_control_nowave_noaero_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/cpld_control_noaero_p8_agrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/cpld_control_noaero_p8_agrid Checking test 013 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -895,14 +895,14 @@ Checking test 013 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 306.476342 -The maximum resident set size (KB) = 1630568 +The total amount of wall time = 306.435060 +The maximum resident set size (KB) = 1631632 Test 013 cpld_control_noaero_p8_agrid PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/cpld_control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/cpld_control_c48 Checking test 014 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -952,14 +952,14 @@ Checking test 014 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 433.083962 -The maximum resident set size (KB) = 2635356 +The total amount of wall time = 434.715522 +The maximum resident set size (KB) = 2630776 Test 014 cpld_control_c48 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/cpld_warmstart_c48 Checking test 015 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1009,14 +1009,14 @@ Checking test 015 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 123.152320 -The maximum resident set size (KB) = 2654156 +The total amount of wall time = 120.682344 +The maximum resident set size (KB) = 2644584 Test 015 cpld_warmstart_c48 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/cpld_restart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/cpld_restart_c48 Checking test 016 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1066,14 +1066,14 @@ Checking test 016 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 65.084052 -The maximum resident set size (KB) = 2064488 +The total amount of wall time = 68.485119 +The maximum resident set size (KB) = 2068792 Test 016 cpld_restart_c48 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/cpld_control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/cpld_control_p8_faster Checking test 017 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1138,14 +1138,14 @@ Checking test 017 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 377.386937 -The maximum resident set size (KB) = 2983156 +The total amount of wall time = 375.918229 +The maximum resident set size (KB) = 2981824 Test 017 cpld_control_p8_faster PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_CubedSphereGrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_CubedSphereGrid Checking test 018 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1172,14 +1172,14 @@ Checking test 018 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 129.921060 -The maximum resident set size (KB) = 514992 +The total amount of wall time = 128.871319 +The maximum resident set size (KB) = 511836 Test 018 control_CubedSphereGrid PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_latlon -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_latlon +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_latlon Checking test 019 control_latlon results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1190,14 +1190,14 @@ Checking test 019 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 133.248040 -The maximum resident set size (KB) = 512700 +The total amount of wall time = 132.356983 +The maximum resident set size (KB) = 515976 Test 019 control_latlon PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_wrtGauss_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_wrtGauss_netcdf_parallel Checking test 020 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1208,14 +1208,14 @@ Checking test 020 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 133.775025 -The maximum resident set size (KB) = 513648 +The total amount of wall time = 133.860146 +The maximum resident set size (KB) = 513656 Test 020 control_wrtGauss_netcdf_parallel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_c48 Checking test 021 control_c48 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1254,14 +1254,14 @@ Checking test 021 control_c48 results .... 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.213363 -The maximum resident set size (KB) = 670080 +The total amount of wall time = 328.212221 +The maximum resident set size (KB) = 672268 Test 021 control_c48 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c192 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_c192 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_c192 Checking test 022 control_c192 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1272,14 +1272,14 @@ Checking test 022 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 530.604138 -The maximum resident set size (KB) = 610296 +The total amount of wall time = 530.088255 +The maximum resident set size (KB) = 609736 Test 022 control_c192 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c384 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_c384 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_c384 Checking test 023 control_c384 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf012.nc ............ALT CHECK......OK @@ -1290,14 +1290,14 @@ Checking test 023 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 565.411813 -The maximum resident set size (KB) = 916932 +The total amount of wall time = 568.359371 +The maximum resident set size (KB) = 918544 Test 023 control_c384 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c384gdas -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_c384gdas +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_c384gdas Checking test 024 control_c384gdas results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -1340,14 +1340,14 @@ Checking test 024 control_c384gdas 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 = 497.029337 -The maximum resident set size (KB) = 1052112 +The total amount of wall time = 494.874308 +The maximum resident set size (KB) = 1054916 Test 024 control_c384gdas PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_stochy Checking test 025 control_stochy results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf012.nc ............ALT CHECK......OK @@ -1358,28 +1358,28 @@ Checking test 025 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 88.950349 -The maximum resident set size (KB) = 517416 +The total amount of wall time = 88.672429 +The maximum resident set size (KB) = 518488 Test 025 control_stochy PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_stochy_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_stochy_restart Checking test 026 control_stochy_restart results .... Comparing sfcf012.nc ............ALT CHECK......OK Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 49.001214 -The maximum resident set size (KB) = 284600 +The total amount of wall time = 49.072710 +The maximum resident set size (KB) = 286348 Test 026 control_stochy_restart PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_lndp Checking test 027 control_lndp results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf012.nc ............ALT CHECK......OK @@ -1390,14 +1390,14 @@ Checking test 027 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 82.756489 -The maximum resident set size (KB) = 513760 +The total amount of wall time = 83.419751 +The maximum resident set size (KB) = 516884 Test 027 control_lndp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_iovr4 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_iovr4 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_iovr4 Checking test 028 control_iovr4 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1412,14 +1412,14 @@ Checking test 028 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.352865 -The maximum resident set size (KB) = 514728 +The total amount of wall time = 135.006021 +The maximum resident set size (KB) = 513428 Test 028 control_iovr4 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_iovr5 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_iovr5 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_iovr5 Checking test 029 control_iovr5 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1434,14 +1434,14 @@ Checking test 029 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 134.956786 -The maximum resident set size (KB) = 514908 +The total amount of wall time = 135.291292 +The maximum resident set size (KB) = 512280 Test 029 control_iovr5 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_p8 Checking test 030 control_p8 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1488,14 +1488,14 @@ Checking test 030 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 178.084423 -The maximum resident set size (KB) = 1486328 +The total amount of wall time = 177.825446 +The maximum resident set size (KB) = 1487648 Test 030 control_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_restart_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_restart_p8 Checking test 031 control_restart_p8 results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -1534,14 +1534,14 @@ Checking test 031 control_restart_p8 results .... 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.252892 -The maximum resident set size (KB) = 650564 +The total amount of wall time = 99.577209 +The maximum resident set size (KB) = 652688 Test 031 control_restart_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_qr_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_qr_p8 Checking test 032 control_qr_p8 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1588,14 +1588,14 @@ Checking test 032 control_qr_p8 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 = 175.519259 -The maximum resident set size (KB) = 1494916 +The total amount of wall time = 176.425499 +The maximum resident set size (KB) = 1491644 Test 032 control_qr_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_restart_qr_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_restart_qr_p8 Checking test 033 control_restart_qr_p8 results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -1634,14 +1634,14 @@ Checking test 033 control_restart_qr_p8 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 = 100.819844 -The maximum resident set size (KB) = 668272 +The total amount of wall time = 99.842455 +The maximum resident set size (KB) = 664892 Test 033 control_restart_qr_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_decomp_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_decomp_p8 Checking test 034 control_decomp_p8 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1684,14 +1684,14 @@ Checking test 034 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 181.531490 -The maximum resident set size (KB) = 1482308 +The total amount of wall time = 181.795252 +The maximum resident set size (KB) = 1473148 Test 034 control_decomp_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_2threads_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_2threads_p8 Checking test 035 control_2threads_p8 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1734,14 +1734,14 @@ Checking test 035 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 155.325845 -The maximum resident set size (KB) = 1572316 +The total amount of wall time = 155.724282 +The maximum resident set size (KB) = 1564192 Test 035 control_2threads_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_p8_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_p8_lndp Checking test 036 control_p8_lndp results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1760,14 +1760,14 @@ Checking test 036 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 319.957557 -The maximum resident set size (KB) = 1486704 +The total amount of wall time = 320.319254 +The maximum resident set size (KB) = 1482640 Test 036 control_p8_lndp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_rrtmgp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_p8_rrtmgp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_p8_rrtmgp Checking test 037 control_p8_rrtmgp results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1814,14 +1814,14 @@ Checking test 037 control_p8_rrtmgp results .... 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.051215 -The maximum resident set size (KB) = 1546684 +The total amount of wall time = 231.878349 +The maximum resident set size (KB) = 1540232 Test 037 control_p8_rrtmgp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_mynn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_p8_mynn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_p8_mynn Checking test 038 control_p8_mynn results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1868,14 +1868,14 @@ Checking test 038 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 178.727546 -The maximum resident set size (KB) = 1485908 +The total amount of wall time = 178.185112 +The maximum resident set size (KB) = 1486340 Test 038 control_p8_mynn PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/merra2_thompson -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/merra2_thompson +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/merra2_thompson Checking test 039 merra2_thompson results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1922,14 +1922,14 @@ Checking test 039 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 201.907440 -The maximum resident set size (KB) = 1492684 +The total amount of wall time = 202.795318 +The maximum resident set size (KB) = 1487372 Test 039 merra2_thompson PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/regional_control Checking test 040 regional_control results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf006.nc ............ALT CHECK......OK @@ -1940,28 +1940,28 @@ Checking test 040 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 288.030261 -The maximum resident set size (KB) = 649240 +The total amount of wall time = 294.384067 +The maximum resident set size (KB) = 649604 Test 040 regional_control PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/regional_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/regional_restart Checking test 041 regional_restart results .... Comparing dynf006.nc ............ALT CHECK......OK Comparing phyf006.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 154.119714 -The maximum resident set size (KB) = 648024 +The total amount of wall time = 155.905236 +The maximum resident set size (KB) = 648076 Test 041 regional_restart PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/regional_control_qr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/regional_control_qr Checking test 042 regional_control_qr results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf006.nc ............ALT CHECK......OK @@ -1972,28 +1972,28 @@ Checking test 042 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 289.777383 -The maximum resident set size (KB) = 653180 +The total amount of wall time = 287.598135 +The maximum resident set size (KB) = 652904 Test 042 regional_control_qr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/regional_restart_qr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/regional_restart_qr Checking test 043 regional_restart_qr results .... Comparing dynf006.nc ............ALT CHECK......OK Comparing phyf006.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 155.128760 -The maximum resident set size (KB) = 649864 +The total amount of wall time = 153.867027 +The maximum resident set size (KB) = 650588 Test 043 regional_restart_qr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/regional_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/regional_decomp Checking test 044 regional_decomp results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf006.nc ............ALT CHECK......OK @@ -2004,14 +2004,14 @@ Checking test 044 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 303.908955 -The maximum resident set size (KB) = 649568 +The total amount of wall time = 301.964610 +The maximum resident set size (KB) = 652908 Test 044 regional_decomp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/regional_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/regional_2threads Checking test 045 regional_2threads results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf006.nc ............ALT CHECK......OK @@ -2022,14 +2022,14 @@ Checking test 045 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 175.178226 -The maximum resident set size (KB) = 694348 +The total amount of wall time = 176.535562 +The maximum resident set size (KB) = 698328 Test 045 regional_2threads PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_noquilt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/regional_noquilt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/regional_noquilt Checking test 046 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2037,14 +2037,14 @@ Checking test 046 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 307.382730 -The maximum resident set size (KB) = 643136 +The total amount of wall time = 309.309593 +The maximum resident set size (KB) = 641952 Test 046 regional_noquilt PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/regional_2dwrtdecomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/regional_2dwrtdecomp Checking test 047 regional_2dwrtdecomp results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf006.nc ............ALT CHECK......OK @@ -2055,14 +2055,14 @@ Checking test 047 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 285.237037 -The maximum resident set size (KB) = 653404 +The total amount of wall time = 287.154789 +The maximum resident set size (KB) = 648892 Test 047 regional_2dwrtdecomp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/fv3_regional_wofs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/regional_wofs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/regional_wofs Checking test 048 regional_wofs results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf006.nc ............ALT CHECK......OK @@ -2073,14 +2073,14 @@ Checking test 048 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 363.913097 -The maximum resident set size (KB) = 336376 +The total amount of wall time = 363.357493 +The maximum resident set size (KB) = 334468 Test 048 regional_wofs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_ifi_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/regional_ifi_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/regional_ifi_control Checking test 049 regional_ifi_control results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf006.nc ............ALT CHECK......OK @@ -2091,14 +2091,14 @@ Checking test 049 regional_ifi_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 319.034126 -The maximum resident set size (KB) = 649340 +The total amount of wall time = 318.969497 +The maximum resident set size (KB) = 649612 Test 049 regional_ifi_control PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_ifi_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/regional_ifi_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/regional_ifi_decomp Checking test 050 regional_ifi_decomp results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf006.nc ............ALT CHECK......OK @@ -2109,14 +2109,14 @@ Checking test 050 regional_ifi_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 336.356156 -The maximum resident set size (KB) = 649784 +The total amount of wall time = 331.332432 +The maximum resident set size (KB) = 649656 Test 050 regional_ifi_decomp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_ifi_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/regional_ifi_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/regional_ifi_2threads Checking test 051 regional_ifi_2threads results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf006.nc ............ALT CHECK......OK @@ -2127,14 +2127,14 @@ Checking test 051 regional_ifi_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 196.092976 -The maximum resident set size (KB) = 695664 +The total amount of wall time = 197.383710 +The maximum resident set size (KB) = 690864 Test 051 regional_ifi_2threads PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rap_control Checking test 052 rap_control results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -2181,14 +2181,14 @@ Checking test 052 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 418.539785 -The maximum resident set size (KB) = 900940 +The total amount of wall time = 417.957424 +The maximum resident set size (KB) = 896060 Test 052 rap_control PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/regional_spp_sppt_shum_skeb +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/regional_spp_sppt_shum_skeb Checking test 053 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf001.nc ............ALT CHECK......OK @@ -2199,14 +2199,14 @@ Checking test 053 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 243.411160 -The maximum resident set size (KB) = 975216 +The total amount of wall time = 241.745269 +The maximum resident set size (KB) = 987896 Test 053 regional_spp_sppt_shum_skeb PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/rap_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rap_decomp Checking test 054 rap_decomp results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -2253,14 +2253,14 @@ Checking test 054 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 433.808365 -The maximum resident set size (KB) = 896504 +The total amount of wall time = 432.895943 +The maximum resident set size (KB) = 896120 Test 054 rap_decomp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/rap_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rap_2threads Checking test 055 rap_2threads results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -2307,14 +2307,14 @@ Checking test 055 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 385.882343 -The maximum resident set size (KB) = 965988 +The total amount of wall time = 385.548306 +The maximum resident set size (KB) = 961860 Test 055 rap_2threads PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/rap_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rap_restart Checking test 056 rap_restart results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -2353,14 +2353,14 @@ Checking test 056 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 212.926722 -The maximum resident set size (KB) = 645552 +The total amount of wall time = 210.401144 +The maximum resident set size (KB) = 643928 Test 056 rap_restart PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rap_sfcdiff Checking test 057 rap_sfcdiff results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -2407,14 +2407,14 @@ Checking test 057 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 420.042643 -The maximum resident set size (KB) = 895608 +The total amount of wall time = 420.676849 +The maximum resident set size (KB) = 894348 Test 057 rap_sfcdiff PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/rap_sfcdiff_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rap_sfcdiff_decomp Checking test 058 rap_sfcdiff_decomp results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -2461,14 +2461,14 @@ Checking test 058 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 439.171969 -The maximum resident set size (KB) = 896452 +The total amount of wall time = 436.230982 +The maximum resident set size (KB) = 897000 Test 058 rap_sfcdiff_decomp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/rap_sfcdiff_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rap_sfcdiff_restart Checking test 059 rap_sfcdiff_restart results .... Comparing sfcf012.nc ............ALT CHECK......OK Comparing atmf012.nc ............ALT CHECK......OK @@ -2507,14 +2507,14 @@ Checking test 059 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 309.839447 -The maximum resident set size (KB) = 641116 +The total amount of wall time = 307.464237 +The maximum resident set size (KB) = 641644 Test 059 rap_sfcdiff_restart PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hrrr_control Checking test 060 hrrr_control results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -2561,14 +2561,14 @@ Checking test 060 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 404.600023 -The maximum resident set size (KB) = 889956 +The total amount of wall time = 405.295213 +The maximum resident set size (KB) = 892528 Test 060 hrrr_control PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/hrrr_control_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hrrr_control_decomp Checking test 061 hrrr_control_decomp results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -2615,14 +2615,14 @@ Checking test 061 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 420.840377 -The maximum resident set size (KB) = 891700 +The total amount of wall time = 420.812955 +The maximum resident set size (KB) = 890812 Test 061 hrrr_control_decomp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/hrrr_control_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hrrr_control_2threads Checking test 062 hrrr_control_2threads results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -2669,14 +2669,14 @@ Checking test 062 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 373.885157 -The maximum resident set size (KB) = 957728 +The total amount of wall time = 373.093172 +The maximum resident set size (KB) = 961496 Test 062 hrrr_control_2threads PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/hrrr_control_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hrrr_control_restart Checking test 063 hrrr_control_restart results .... Comparing sfcf012.nc ............ALT CHECK......OK Comparing atmf012.nc ............ALT CHECK......OK @@ -2715,14 +2715,14 @@ Checking test 063 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 297.014024 -The maximum resident set size (KB) = 637300 +The total amount of wall time = 296.265548 +The maximum resident set size (KB) = 640980 Test 063 hrrr_control_restart PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1beta -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/rrfs_v1beta +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rrfs_v1beta Checking test 064 rrfs_v1beta results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -2769,14 +2769,14 @@ Checking test 064 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 416.894047 -The maximum resident set size (KB) = 890508 +The total amount of wall time = 417.925739 +The maximum resident set size (KB) = 891492 Test 064 rrfs_v1beta PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1nssl -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/rrfs_v1nssl +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rrfs_v1nssl Checking test 065 rrfs_v1nssl results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -2791,14 +2791,14 @@ Checking test 065 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 482.309529 -The maximum resident set size (KB) = 573540 +The total amount of wall time = 481.778802 +The maximum resident set size (KB) = 576212 Test 065 rrfs_v1nssl PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/rrfs_v1nssl_nohailnoccn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rrfs_v1nssl_nohailnoccn Checking test 066 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -2813,14 +2813,14 @@ Checking test 066 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 473.380992 -The maximum resident set size (KB) = 565012 +The total amount of wall time = 471.167637 +The maximum resident set size (KB) = 568756 Test 066 rrfs_v1nssl_nohailnoccn PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rrfs_smoke_conus13km_hrrr_warm Checking test 067 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK @@ -2829,14 +2829,14 @@ Checking test 067 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc ............ALT CHECK......OK Comparing atmf002.nc ............ALT CHECK......OK -The total amount of wall time = 144.647198 -The maximum resident set size (KB) = 801368 +The total amount of wall time = 146.206587 +The maximum resident set size (KB) = 794692 Test 067 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/rrfs_smoke_conus13km_hrrr_warm_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 068 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK @@ -2845,14 +2845,14 @@ Checking test 068 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc ............ALT CHECK......OK Comparing atmf002.nc ............ALT CHECK......OK -The total amount of wall time = 101.957441 -The maximum resident set size (KB) = 794500 +The total amount of wall time = 102.376536 +The maximum resident set size (KB) = 805508 Test 068 rrfs_smoke_conus13km_hrrr_warm_2threads PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rrfs_conus13km_hrrr_warm Checking test 069 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK @@ -2861,14 +2861,14 @@ Checking test 069 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc ............ALT CHECK......OK Comparing atmf002.nc ............ALT CHECK......OK -The total amount of wall time = 132.537238 -The maximum resident set size (KB) = 778408 +The total amount of wall time = 131.632475 +The maximum resident set size (KB) = 777460 Test 069 rrfs_conus13km_hrrr_warm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/rrfs_smoke_conus13km_radar_tten_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rrfs_smoke_conus13km_radar_tten_warm Checking test 070 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK @@ -2877,14 +2877,14 @@ Checking test 070 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc ............ALT CHECK......OK Comparing atmf002.nc ............ALT CHECK......OK -The total amount of wall time = 146.625780 -The maximum resident set size (KB) = 797240 +The total amount of wall time = 147.644317 +The maximum resident set size (KB) = 802284 Test 070 rrfs_smoke_conus13km_radar_tten_warm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmg -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_csawmg +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_csawmg Checking test 071 control_csawmg results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2895,14 +2895,14 @@ Checking test 071 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 347.187824 -The maximum resident set size (KB) = 581972 +The total amount of wall time = 346.377703 +The maximum resident set size (KB) = 580180 Test 071 control_csawmg PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmgt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_csawmgt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_csawmgt Checking test 072 control_csawmgt results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2913,14 +2913,14 @@ Checking test 072 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 344.339152 -The maximum resident set size (KB) = 583048 +The total amount of wall time = 343.156429 +The maximum resident set size (KB) = 579588 Test 072 control_csawmgt PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_ras -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_ras +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_ras Checking test 073 control_ras results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2931,26 +2931,26 @@ Checking test 073 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 181.583662 -The maximum resident set size (KB) = 549992 +The total amount of wall time = 180.343783 +The maximum resident set size (KB) = 548760 Test 073 control_ras PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wam -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_wam +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_wam Checking test 074 control_wam results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK -The total amount of wall time = 117.137749 -The maximum resident set size (KB) = 269588 +The total amount of wall time = 117.411491 +The maximum resident set size (KB) = 270572 Test 074 control_wam PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_p8_faster Checking test 075 control_p8_faster results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -2997,14 +2997,14 @@ Checking test 075 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 174.309848 -The maximum resident set size (KB) = 1488700 +The total amount of wall time = 172.840424 +The maximum resident set size (KB) = 1488036 Test 075 control_p8_faster PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/regional_control_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/regional_control_faster Checking test 076 regional_control_faster results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf006.nc ............ALT CHECK......OK @@ -3015,56 +3015,56 @@ Checking test 076 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 277.566781 -The maximum resident set size (KB) = 649056 +The total amount of wall time = 279.423705 +The maximum resident set size (KB) = 652584 Test 076 regional_control_faster PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 077 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 904.058469 -The maximum resident set size (KB) = 834012 +The total amount of wall time = 898.602143 +The maximum resident set size (KB) = 832844 Test 077 rrfs_smoke_conus13km_hrrr_warm_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 078 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 523.618461 -The maximum resident set size (KB) = 832896 +The total amount of wall time = 522.831470 +The maximum resident set size (KB) = 835464 Test 078 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/rrfs_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rrfs_conus13km_hrrr_warm_debug Checking test 079 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 804.953204 -The maximum resident set size (KB) = 808828 +The total amount of wall time = 805.805628 +The maximum resident set size (KB) = 807112 Test 079 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_CubedSphereGrid_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_CubedSphereGrid_debug Checking test 080 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3091,334 +3091,334 @@ Checking test 080 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 165.700917 -The maximum resident set size (KB) = 677352 +The total amount of wall time = 165.520476 +The maximum resident set size (KB) = 673940 Test 080 control_CubedSphereGrid_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_wrtGauss_netcdf_parallel_debug Checking test 081 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 157.982747 -The maximum resident set size (KB) = 678824 +The total amount of wall time = 158.062719 +The maximum resident set size (KB) = 678976 Test 081 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_stochy_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_stochy_debug Checking test 082 control_stochy_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 177.932509 -The maximum resident set size (KB) = 682228 +The total amount of wall time = 178.345598 +The maximum resident set size (KB) = 682180 Test 082 control_stochy_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_lndp_debug Checking test 083 control_lndp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 160.142423 -The maximum resident set size (KB) = 685808 +The total amount of wall time = 160.034608 +The maximum resident set size (KB) = 683984 Test 083 control_lndp_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmg_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_csawmg_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_csawmg_debug Checking test 084 control_csawmg_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 254.535691 -The maximum resident set size (KB) = 720656 +The total amount of wall time = 255.093887 +The maximum resident set size (KB) = 721016 Test 084 control_csawmg_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmgt_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_csawmgt_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_csawmgt_debug Checking test 085 control_csawmgt_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 249.269757 -The maximum resident set size (KB) = 719516 +The total amount of wall time = 250.811793 +The maximum resident set size (KB) = 722296 Test 085 control_csawmgt_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_ras_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_ras_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_ras_debug Checking test 086 control_ras_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 164.048208 -The maximum resident set size (KB) = 689364 +The total amount of wall time = 161.262217 +The maximum resident set size (KB) = 690000 Test 086 control_ras_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_diag_debug Checking test 087 control_diag_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 163.022382 -The maximum resident set size (KB) = 736532 +The total amount of wall time = 163.378696 +The maximum resident set size (KB) = 736564 Test 087 control_diag_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_debug_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_debug_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_debug_p8 Checking test 088 control_debug_p8 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 184.954832 -The maximum resident set size (KB) = 1507196 +The total amount of wall time = 184.082169 +The maximum resident set size (KB) = 1504412 Test 088 control_debug_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/regional_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/regional_debug Checking test 089 regional_debug results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf001.nc ............ALT CHECK......OK Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf001.nc ............ALT CHECK......OK -The total amount of wall time = 1040.106482 -The maximum resident set size (KB) = 678112 +The total amount of wall time = 1039.355128 +The maximum resident set size (KB) = 677552 Test 089 regional_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rap_control_debug Checking test 090 rap_control_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 299.670572 -The maximum resident set size (KB) = 1056840 +The total amount of wall time = 296.895070 +The maximum resident set size (KB) = 1054072 Test 090 rap_control_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/hrrr_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hrrr_control_debug Checking test 091 hrrr_control_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 291.699001 -The maximum resident set size (KB) = 1053932 +The total amount of wall time = 290.528115 +The maximum resident set size (KB) = 1053688 Test 091 hrrr_control_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/rap_unified_drag_suite_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rap_unified_drag_suite_debug Checking test 092 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 295.757457 -The maximum resident set size (KB) = 1057104 +The total amount of wall time = 295.439397 +The maximum resident set size (KB) = 1055388 Test 092 rap_unified_drag_suite_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/rap_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rap_diag_debug Checking test 093 rap_diag_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 307.741384 -The maximum resident set size (KB) = 1136740 +The total amount of wall time = 307.911138 +The maximum resident set size (KB) = 1135848 Test 093 rap_diag_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rap_cires_ugwp_debug Checking test 094 rap_cires_ugwp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 304.325471 -The maximum resident set size (KB) = 1055224 +The total amount of wall time = 302.721278 +The maximum resident set size (KB) = 1056508 Test 094 rap_cires_ugwp_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/rap_unified_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rap_unified_ugwp_debug Checking test 095 rap_unified_ugwp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 303.433213 -The maximum resident set size (KB) = 1058944 +The total amount of wall time = 302.946400 +The maximum resident set size (KB) = 1055436 Test 095 rap_unified_ugwp_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/rap_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rap_lndp_debug Checking test 096 rap_lndp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 299.380015 -The maximum resident set size (KB) = 1057256 +The total amount of wall time = 300.356495 +The maximum resident set size (KB) = 1055980 Test 096 rap_lndp_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_flake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/rap_flake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rap_flake_debug Checking test 097 rap_flake_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 297.345462 -The maximum resident set size (KB) = 1057704 +The total amount of wall time = 296.959605 +The maximum resident set size (KB) = 1057180 Test 097 rap_flake_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_progcld_thompson_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/rap_progcld_thompson_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rap_progcld_thompson_debug Checking test 098 rap_progcld_thompson_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 297.120510 -The maximum resident set size (KB) = 1054604 +The total amount of wall time = 297.118474 +The maximum resident set size (KB) = 1057464 Test 098 rap_progcld_thompson_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_noah_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/rap_noah_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rap_noah_debug Checking test 099 rap_noah_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 290.137281 -The maximum resident set size (KB) = 1055204 +The total amount of wall time = 289.636331 +The maximum resident set size (KB) = 1055732 Test 099 rap_noah_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/rap_sfcdiff_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rap_sfcdiff_debug Checking test 100 rap_sfcdiff_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 296.194463 -The maximum resident set size (KB) = 1058732 +The total amount of wall time = 295.889713 +The maximum resident set size (KB) = 1052740 Test 100 rap_sfcdiff_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rap_noah_sfcdiff_cires_ugwp_debug Checking test 101 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 483.348842 -The maximum resident set size (KB) = 1050156 +The total amount of wall time = 483.554255 +The maximum resident set size (KB) = 1053592 Test 101 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1beta_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/rrfs_v1beta_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rrfs_v1beta_debug Checking test 102 rrfs_v1beta_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 292.099413 -The maximum resident set size (KB) = 1052432 +The total amount of wall time = 292.309852 +The maximum resident set size (KB) = 1048432 Test 102 rrfs_v1beta_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wam_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_wam_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_wam_debug Checking test 103 control_wam_debug results .... Comparing sfcf019.nc ............ALT CHECK......OK Comparing atmf019.nc ............ALT CHECK......OK -The total amount of wall time = 297.044775 -The maximum resident set size (KB) = 306312 +The total amount of wall time = 298.369468 +The maximum resident set size (KB) = 301796 Test 103 control_wam_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf001.nc ............ALT CHECK......OK @@ -3429,14 +3429,14 @@ Checking test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 225.643269 -The maximum resident set size (KB) = 881696 +The total amount of wall time = 225.832487 +The maximum resident set size (KB) = 886660 Test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rap_control_dyn32_phy32 Checking test 105 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -3483,14 +3483,14 @@ Checking test 105 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 347.391905 -The maximum resident set size (KB) = 774044 +The total amount of wall time = 347.947982 +The maximum resident set size (KB) = 774184 Test 105 rap_control_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hrrr_control_dyn32_phy32 Checking test 106 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -3537,14 +3537,14 @@ Checking test 106 hrrr_control_dyn32_phy32 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 = 184.249784 -The maximum resident set size (KB) = 773524 +The total amount of wall time = 185.192032 +The maximum resident set size (KB) = 776500 Test 106 hrrr_control_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/rap_2threads_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rap_2threads_dyn32_phy32 Checking test 107 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -3591,14 +3591,14 @@ Checking test 107 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 323.967448 -The maximum resident set size (KB) = 833052 +The total amount of wall time = 323.977074 +The maximum resident set size (KB) = 832724 Test 107 rap_2threads_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/hrrr_control_2threads_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hrrr_control_2threads_dyn32_phy32 Checking test 108 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -3645,14 +3645,14 @@ Checking test 108 hrrr_control_2threads_dyn32_phy32 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 = 170.279797 -The maximum resident set size (KB) = 827600 +The total amount of wall time = 170.219250 +The maximum resident set size (KB) = 827296 Test 108 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/hrrr_control_decomp_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hrrr_control_decomp_dyn32_phy32 Checking test 109 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -3699,14 +3699,14 @@ Checking test 109 hrrr_control_decomp_dyn32_phy32 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 = 191.886959 -The maximum resident set size (KB) = 772548 +The total amount of wall time = 193.093694 +The maximum resident set size (KB) = 774532 Test 109 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/rap_restart_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rap_restart_dyn32_phy32 Checking test 110 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc ............ALT CHECK......OK Comparing atmf012.nc ............ALT CHECK......OK @@ -3745,14 +3745,14 @@ Checking test 110 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 254.984386 -The maximum resident set size (KB) = 609428 +The total amount of wall time = 255.123905 +The maximum resident set size (KB) = 611376 Test 110 rap_restart_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/hrrr_control_restart_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hrrr_control_restart_dyn32_phy32 Checking test 111 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc ............ALT CHECK......OK Comparing atmf012.nc ............ALT CHECK......OK @@ -3791,14 +3791,14 @@ Checking test 111 hrrr_control_restart_dyn32_phy32 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 = 94.779791 -The maximum resident set size (KB) = 602744 +The total amount of wall time = 94.934822 +The maximum resident set size (KB) = 603840 Test 111 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/rap_control_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rap_control_dyn64_phy32 Checking test 112 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -3845,81 +3845,81 @@ Checking test 112 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -The total amount of wall time = 231.884575 -The maximum resident set size (KB) = 795424 +The total amount of wall time = 232.035186 +The maximum resident set size (KB) = 800560 Test 112 rap_control_dyn64_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/rap_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rap_control_debug_dyn32_phy32 Checking test 113 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 291.750423 -The maximum resident set size (KB) = 939112 +The total amount of wall time = 292.743027 +The maximum resident set size (KB) = 942304 Test 113 rap_control_debug_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/hrrr_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hrrr_control_debug_dyn32_phy32 Checking test 114 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 287.616783 -The maximum resident set size (KB) = 935400 +The total amount of wall time = 288.296619 +The maximum resident set size (KB) = 935948 Test 114 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/rap_control_dyn64_phy32_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rap_control_dyn64_phy32_debug Checking test 115 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 293.484767 -The maximum resident set size (KB) = 953792 +The total amount of wall time = 294.906807 +The maximum resident set size (KB) = 954672 Test 115 rap_control_dyn64_phy32_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/hafs_regional_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hafs_regional_atm Checking test 116 hafs_regional_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 269.554442 -The maximum resident set size (KB) = 815352 +The total amount of wall time = 269.555970 +The maximum resident set size (KB) = 819172 Test 116 hafs_regional_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hafs_regional_atm_thompson_gfdlsf Checking test 117 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 308.961381 -The maximum resident set size (KB) = 1181592 +The total amount of wall time = 314.767365 +The maximum resident set size (KB) = 1177928 Test 117 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/hafs_regional_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hafs_regional_atm_ocn Checking test 118 hafs_regional_atm_ocn results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -3928,14 +3928,14 @@ Checking test 118 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 388.291046 -The maximum resident set size (KB) = 856284 +The total amount of wall time = 389.432023 +The maximum resident set size (KB) = 854948 Test 118 hafs_regional_atm_ocn PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/hafs_regional_atm_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hafs_regional_atm_wav Checking test 119 hafs_regional_atm_wav results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -3944,14 +3944,14 @@ Checking test 119 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 706.288915 -The maximum resident set size (KB) = 888212 +The total amount of wall time = 698.265117 +The maximum resident set size (KB) = 887476 Test 119 hafs_regional_atm_wav PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/hafs_regional_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hafs_regional_atm_ocn_wav Checking test 120 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -3962,28 +3962,28 @@ Checking test 120 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 895.763678 -The maximum resident set size (KB) = 913116 +The total amount of wall time = 890.260388 +The maximum resident set size (KB) = 910608 Test 120 hafs_regional_atm_ocn_wav PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/hafs_regional_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hafs_regional_1nest_atm Checking test 121 hafs_regional_1nest_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK Comparing atm.nest02.f006.nc ............ALT CHECK......OK Comparing sfc.nest02.f006.nc ............ALT CHECK......OK -The total amount of wall time = 331.157789 -The maximum resident set size (KB) = 391768 +The total amount of wall time = 333.273326 +The maximum resident set size (KB) = 391368 Test 121 hafs_regional_1nest_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/hafs_regional_telescopic_2nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hafs_regional_telescopic_2nests_atm Checking test 122 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -3992,28 +3992,28 @@ Checking test 122 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc ............ALT CHECK......OK Comparing sfc.nest03.f006.nc ............ALT CHECK......OK -The total amount of wall time = 403.056670 -The maximum resident set size (KB) = 402392 +The total amount of wall time = 403.516099 +The maximum resident set size (KB) = 403520 Test 122 hafs_regional_telescopic_2nests_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/hafs_global_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hafs_global_1nest_atm Checking test 123 hafs_global_1nest_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK Comparing atm.nest02.f006.nc ............ALT CHECK......OK Comparing sfc.nest02.f006.nc ............ALT CHECK......OK -The total amount of wall time = 171.428307 -The maximum resident set size (KB) = 263328 +The total amount of wall time = 172.510879 +The maximum resident set size (KB) = 262384 Test 123 hafs_global_1nest_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_multiple_4nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/hafs_global_multiple_4nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hafs_global_multiple_4nests_atm Checking test 124 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4031,14 +4031,14 @@ Checking test 124 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -The total amount of wall time = 490.271385 -The maximum resident set size (KB) = 345304 +The total amount of wall time = 490.559317 +The maximum resident set size (KB) = 342068 Test 124 hafs_global_multiple_4nests_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/hafs_regional_specified_moving_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hafs_regional_specified_moving_1nest_atm Checking test 125 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4047,28 +4047,28 @@ Checking test 125 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 218.312944 -The maximum resident set size (KB) = 403400 +The total amount of wall time = 218.947204 +The maximum resident set size (KB) = 403544 Test 125 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/hafs_regional_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hafs_regional_storm_following_1nest_atm Checking test 126 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK Comparing atm.nest02.f006.nc ............ALT CHECK......OK Comparing sfc.nest02.f006.nc ............ALT CHECK......OK -The total amount of wall time = 205.892970 -The maximum resident set size (KB) = 404576 +The total amount of wall time = 206.449515 +The maximum resident set size (KB) = 404060 Test 126 hafs_regional_storm_following_1nest_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hafs_regional_storm_following_1nest_atm_ocn Checking test 127 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4077,42 +4077,42 @@ Checking test 127 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 253.022327 -The maximum resident set size (KB) = 466104 +The total amount of wall time = 253.779605 +The maximum resident set size (KB) = 467236 Test 127 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/hafs_global_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hafs_global_storm_following_1nest_atm Checking test 128 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK Comparing atm.nest02.f006.nc ............ALT CHECK......OK Comparing sfc.nest02.f006.nc ............ALT CHECK......OK -The total amount of wall time = 84.966472 -The maximum resident set size (KB) = 279004 +The total amount of wall time = 84.970021 +The maximum resident set size (KB) = 286868 Test 128 hafs_global_storm_following_1nest_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 129 hafs_regional_storm_following_1nest_atm_ocn_debug results .... Comparing atmf001.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atm.nest02.f001.nc ............ALT CHECK......OK Comparing sfc.nest02.f001.nc ............ALT CHECK......OK -The total amount of wall time = 815.500375 -The maximum resident set size (KB) = 493428 +The total amount of wall time = 820.137974 +The maximum resident set size (KB) = 490236 Test 129 hafs_regional_storm_following_1nest_atm_ocn_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 130 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4123,14 +4123,14 @@ Checking test 130 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -The total amount of wall time = 500.771155 -The maximum resident set size (KB) = 519912 +The total amount of wall time = 501.906876 +The maximum resident set size (KB) = 522040 Test 130 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_docn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/hafs_regional_docn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hafs_regional_docn Checking test 131 hafs_regional_docn results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4138,14 +4138,14 @@ Checking test 131 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 367.880524 -The maximum resident set size (KB) = 857956 +The total amount of wall time = 367.740956 +The maximum resident set size (KB) = 857588 Test 131 hafs_regional_docn PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_docn_oisst -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/hafs_regional_docn_oisst +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hafs_regional_docn_oisst Checking test 132 hafs_regional_docn_oisst results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4153,131 +4153,131 @@ Checking test 132 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 368.756880 -The maximum resident set size (KB) = 844124 +The total amount of wall time = 369.024801 +The maximum resident set size (KB) = 844600 Test 132 hafs_regional_docn_oisst PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_datm_cdeps -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/hafs_regional_datm_cdeps +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hafs_regional_datm_cdeps Checking test 133 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -The total amount of wall time = 945.211023 -The maximum resident set size (KB) = 839640 +The total amount of wall time = 946.620812 +The maximum resident set size (KB) = 840180 Test 133 hafs_regional_datm_cdeps PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/datm_cdeps_control_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/datm_cdeps_control_cfsr Checking test 134 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 140.840429 -The maximum resident set size (KB) = 731144 +The total amount of wall time = 141.576887 +The maximum resident set size (KB) = 731600 Test 134 datm_cdeps_control_cfsr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/datm_cdeps_restart_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/datm_cdeps_restart_cfsr Checking test 135 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 85.385295 -The maximum resident set size (KB) = 728720 +The total amount of wall time = 85.368336 +The maximum resident set size (KB) = 707812 Test 135 datm_cdeps_restart_cfsr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/datm_cdeps_control_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/datm_cdeps_control_gefs Checking test 136 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 134.386207 -The maximum resident set size (KB) = 615168 +The total amount of wall time = 134.987212 +The maximum resident set size (KB) = 612152 Test 136 datm_cdeps_control_gefs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_iau_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/datm_cdeps_iau_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/datm_cdeps_iau_gefs Checking test 137 datm_cdeps_iau_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 136.363772 -The maximum resident set size (KB) = 615524 +The total amount of wall time = 137.139134 +The maximum resident set size (KB) = 612940 Test 137 datm_cdeps_iau_gefs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_stochy_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/datm_cdeps_stochy_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/datm_cdeps_stochy_gefs Checking test 138 datm_cdeps_stochy_gefs 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.740278 -The maximum resident set size (KB) = 615428 +The total amount of wall time = 138.555289 +The maximum resident set size (KB) = 615492 Test 138 datm_cdeps_stochy_gefs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/datm_cdeps_ciceC_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/datm_cdeps_ciceC_cfsr Checking test 139 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.424299 -The maximum resident set size (KB) = 733432 +The total amount of wall time = 141.005113 +The maximum resident set size (KB) = 734168 Test 139 datm_cdeps_ciceC_cfsr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/datm_cdeps_bulk_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/datm_cdeps_bulk_cfsr Checking test 140 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.479475 -The maximum resident set size (KB) = 733096 +The total amount of wall time = 141.808860 +The maximum resident set size (KB) = 732600 Test 140 datm_cdeps_bulk_cfsr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/datm_cdeps_bulk_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/datm_cdeps_bulk_gefs Checking test 141 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 134.109662 -The maximum resident set size (KB) = 612708 +The total amount of wall time = 134.166995 +The maximum resident set size (KB) = 612080 Test 141 datm_cdeps_bulk_gefs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/datm_cdeps_mx025_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/datm_cdeps_mx025_cfsr Checking test 142 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4286,14 +4286,14 @@ Checking test 142 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 432.331723 -The maximum resident set size (KB) = 568536 +The total amount of wall time = 430.956153 +The maximum resident set size (KB) = 570532 Test 142 datm_cdeps_mx025_cfsr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/datm_cdeps_mx025_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/datm_cdeps_mx025_gefs Checking test 143 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4302,64 +4302,64 @@ Checking test 143 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 428.644884 -The maximum resident set size (KB) = 548916 +The total amount of wall time = 427.006678 +The maximum resident set size (KB) = 548844 Test 143 datm_cdeps_mx025_gefs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/datm_cdeps_multiple_files_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/datm_cdeps_multiple_files_cfsr Checking test 144 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 140.167952 -The maximum resident set size (KB) = 719892 +The total amount of wall time = 140.509608 +The maximum resident set size (KB) = 719076 Test 144 datm_cdeps_multiple_files_cfsr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/datm_cdeps_3072x1536_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/datm_cdeps_3072x1536_cfsr Checking test 145 datm_cdeps_3072x1536_cfsr 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 = 255.350652 -The maximum resident set size (KB) = 1978596 +The total amount of wall time = 257.521807 +The maximum resident set size (KB) = 1981056 Test 145 datm_cdeps_3072x1536_cfsr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_gfs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/datm_cdeps_gfs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/datm_cdeps_gfs Checking test 146 datm_cdeps_gfs 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 = 255.762274 -The maximum resident set size (KB) = 1981548 +The total amount of wall time = 255.951059 +The maximum resident set size (KB) = 1977352 Test 146 datm_cdeps_gfs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/datm_cdeps_control_cfsr_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/datm_cdeps_control_cfsr_faster Checking test 147 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.596319 -The maximum resident set size (KB) = 734120 +The total amount of wall time = 140.919813 +The maximum resident set size (KB) = 730932 Test 147 datm_cdeps_control_cfsr_faster PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/datm_cdeps_lnd_gswp3 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/datm_cdeps_lnd_gswp3 Checking test 148 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4368,14 +4368,14 @@ Checking test 148 datm_cdeps_lnd_gswp3 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.003403 -The maximum resident set size (KB) = 229540 +The total amount of wall time = 21.992201 +The maximum resident set size (KB) = 228336 Test 148 datm_cdeps_lnd_gswp3 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/datm_cdeps_lnd_gswp3_rst +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/datm_cdeps_lnd_gswp3_rst Checking test 149 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4384,14 +4384,14 @@ Checking test 149 datm_cdeps_lnd_gswp3_rst 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.382326 -The maximum resident set size (KB) = 227752 +The total amount of wall time = 27.467519 +The maximum resident set size (KB) = 227780 Test 149 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_atmlnd_sbs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_p8_atmlnd_sbs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_p8_atmlnd_sbs Checking test 150 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4476,14 +4476,14 @@ Checking test 150 control_p8_atmlnd_sbs 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.300497 -The maximum resident set size (KB) = 1537156 +The total amount of wall time = 234.528407 +The maximum resident set size (KB) = 1540148 Test 150 control_p8_atmlnd_sbs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_atmwav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/control_atmwav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_atmwav Checking test 151 control_atmwav results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf012.nc ............ALT CHECK......OK @@ -4527,14 +4527,14 @@ Checking test 151 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -The total amount of wall time = 91.660199 -The maximum resident set size (KB) = 541868 +The total amount of wall time = 92.271500 +The maximum resident set size (KB) = 538768 Test 151 control_atmwav PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/atmaero_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/atmaero_control_p8 Checking test 152 atmaero_control_p8 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -4578,14 +4578,14 @@ Checking test 152 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 243.651593 -The maximum resident set size (KB) = 2811272 +The total amount of wall time = 242.556994 +The maximum resident set size (KB) = 2813860 Test 152 atmaero_control_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8_rad -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/atmaero_control_p8_rad +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/atmaero_control_p8_rad Checking test 153 atmaero_control_p8_rad results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -4629,14 +4629,14 @@ Checking test 153 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 283.457144 -The maximum resident set size (KB) = 2874940 +The total amount of wall time = 281.796089 +The maximum resident set size (KB) = 2875352 Test 153 atmaero_control_p8_rad PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/atmaero_control_p8_rad_micro +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/atmaero_control_p8_rad_micro Checking test 154 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -4680,14 +4680,14 @@ Checking test 154 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 288.261686 -The maximum resident set size (KB) = 2883448 +The total amount of wall time = 288.525457 +The maximum resident set size (KB) = 2883968 Test 154 atmaero_control_p8_rad_micro PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/regional_atmaq +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/regional_atmaq Checking test 155 regional_atmaq results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf003.nc ............ALT CHECK......OK @@ -4703,14 +4703,14 @@ Checking test 155 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 679.590599 -The maximum resident set size (KB) = 1256820 +The total amount of wall time = 683.244008 +The maximum resident set size (KB) = 1257452 Test 155 regional_atmaq PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/regional_atmaq_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/regional_atmaq_debug Checking test 156 regional_atmaq_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK @@ -4724,14 +4724,14 @@ Checking test 156 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1367.024062 -The maximum resident set size (KB) = 1293484 +The total amount of wall time = 1376.287172 +The maximum resident set size (KB) = 1289704 Test 156 regional_atmaq_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_113399/regional_atmaq_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/regional_atmaq_faster Checking test 157 regional_atmaq_faster results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf003.nc ............ALT CHECK......OK @@ -4747,12 +4747,12 @@ Checking test 157 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 635.675005 -The maximum resident set size (KB) = 1255108 +The total amount of wall time = 643.853784 +The maximum resident set size (KB) = 1257544 Test 157 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Mon Mar 27 21:24:28 UTC 2023 -Elapsed time: 01h:39m:51s. Have a nice day! +Wed Mar 29 15:51:29 UTC 2023 +Elapsed time: 01h:38m:51s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index 9e1b5c2bde4..180d54648c7 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,21 +1,21 @@ -Mon Mar 27 15:23:38 MDT 2023 +Tue Mar 28 15:08:30 MDT 2023 Start Regression test -Compile 001 elapsed time 379 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 397 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 858 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 199 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 377 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 1078 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 855 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 850 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 657 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 564 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 362 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 012 elapsed time 304 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 001 elapsed time 376 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 394 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 853 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 197 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 369 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 1076 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 864 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 854 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 658 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 570 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 359 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 012 elapsed time 298 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/control_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/control_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/control_c48 Checking test 001 control_c48 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -54,14 +54,14 @@ Checking test 001 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 821.382802 -0:The maximum resident set size (KB) = 678088 +0:The total amount of wall time = 822.201367 +0:The maximum resident set size (KB) = 678112 Test 001 control_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/control_stochy +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/control_stochy Checking test 002 control_stochy results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf012.nc ............ALT CHECK......OK @@ -72,14 +72,14 @@ Checking test 002 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 178.410800 -0:The maximum resident set size (KB) = 443120 +0:The total amount of wall time = 179.262211 +0:The maximum resident set size (KB) = 443156 Test 002 control_stochy PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/control_ras -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/control_ras +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/control_ras Checking test 003 control_ras results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -90,14 +90,14 @@ Checking test 003 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 294.585796 -0:The maximum resident set size (KB) = 452516 +0:The total amount of wall time = 289.221629 +0:The maximum resident set size (KB) = 452576 Test 003 control_ras PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/control_p8 Checking test 004 control_p8 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -144,14 +144,14 @@ Checking test 004 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 309.430712 -0:The maximum resident set size (KB) = 1226368 +0:The total amount of wall time = 310.381510 +0:The maximum resident set size (KB) = 1226440 Test 004 control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rap_control Checking test 005 rap_control results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -198,14 +198,14 @@ Checking test 005 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 710.714447 -0:The maximum resident set size (KB) = 791736 +0:The total amount of wall time = 711.233650 +0:The maximum resident set size (KB) = 791704 Test 005 rap_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/rap_decomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rap_decomp Checking test 006 rap_decomp results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -252,14 +252,14 @@ Checking test 006 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 718.274073 -0:The maximum resident set size (KB) = 791080 +0:The total amount of wall time = 716.380398 +0:The maximum resident set size (KB) = 791484 Test 006 rap_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/rap_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rap_2threads Checking test 007 rap_2threads results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -306,14 +306,14 @@ Checking test 007 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 652.599367 -0:The maximum resident set size (KB) = 865044 +0:The total amount of wall time = 654.183183 +0:The maximum resident set size (KB) = 865192 Test 007 rap_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/rap_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rap_restart Checking test 008 rap_restart results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -352,14 +352,14 @@ Checking test 008 rap_restart results .... Comparing 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.576618 -0:The maximum resident set size (KB) = 539312 +0:The total amount of wall time = 352.289277 +0:The maximum resident set size (KB) = 538944 Test 008 rap_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rap_sfcdiff Checking test 009 rap_sfcdiff results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -406,14 +406,14 @@ Checking test 009 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 711.772366 -0:The maximum resident set size (KB) = 791940 +0:The total amount of wall time = 712.110229 +0:The maximum resident set size (KB) = 791876 Test 009 rap_sfcdiff PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/rap_sfcdiff_decomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rap_sfcdiff_decomp Checking test 010 rap_sfcdiff_decomp results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -460,14 +460,14 @@ Checking test 010 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 722.705300 -0:The maximum resident set size (KB) = 790976 +0:The total amount of wall time = 727.129536 +0:The maximum resident set size (KB) = 790820 Test 010 rap_sfcdiff_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/rap_sfcdiff_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rap_sfcdiff_restart Checking test 011 rap_sfcdiff_restart results .... Comparing sfcf012.nc ............ALT CHECK......OK Comparing atmf012.nc ............ALT CHECK......OK @@ -506,14 +506,14 @@ Checking test 011 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 527.313175 -0:The maximum resident set size (KB) = 543832 +0:The total amount of wall time = 528.857662 +0:The maximum resident set size (KB) = 543912 Test 011 rap_sfcdiff_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/hrrr_control Checking test 012 hrrr_control results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -560,14 +560,14 @@ Checking test 012 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 690.284262 -0:The maximum resident set size (KB) = 789448 +0:The total amount of wall time = 693.179647 +0:The maximum resident set size (KB) = 789148 Test 012 hrrr_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/hrrr_control_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/hrrr_control_2threads Checking test 013 hrrr_control_2threads results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -614,14 +614,14 @@ Checking test 013 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 625.178910 -0:The maximum resident set size (KB) = 859868 +0:The total amount of wall time = 626.028944 +0:The maximum resident set size (KB) = 859992 Test 013 hrrr_control_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/hrrr_control_decomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/hrrr_control_decomp Checking test 014 hrrr_control_decomp results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -668,14 +668,14 @@ Checking test 014 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 691.174360 -0:The maximum resident set size (KB) = 788564 +0:The total amount of wall time = 689.888031 +0:The maximum resident set size (KB) = 788484 Test 014 hrrr_control_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/hrrr_control_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/hrrr_control_restart Checking test 015 hrrr_control_restart results .... Comparing sfcf012.nc ............ALT CHECK......OK Comparing atmf012.nc ............ALT CHECK......OK @@ -714,14 +714,14 @@ Checking test 015 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 506.592421 -0:The maximum resident set size (KB) = 540024 +0:The total amount of wall time = 510.590636 +0:The maximum resident set size (KB) = 540004 Test 015 hrrr_control_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_v1beta -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/rrfs_v1beta +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rrfs_v1beta Checking test 016 rrfs_v1beta results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -768,14 +768,14 @@ Checking test 016 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 705.779756 -0:The maximum resident set size (KB) = 788840 +0:The total amount of wall time = 705.936384 +0:The maximum resident set size (KB) = 788568 Test 016 rrfs_v1beta PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rrfs_smoke_conus13km_hrrr_warm Checking test 017 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK @@ -784,14 +784,14 @@ Checking test 017 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc ............ALT CHECK......OK Comparing atmf002.nc ............ALT CHECK......OK -0:The total amount of wall time = 231.439096 -0:The maximum resident set size (KB) = 635968 +0:The total amount of wall time = 233.321586 +0:The maximum resident set size (KB) = 635984 Test 017 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/rrfs_smoke_conus13km_hrrr_warm_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 018 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK @@ -800,14 +800,14 @@ Checking test 018 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc ............ALT CHECK......OK Comparing atmf002.nc ............ALT CHECK......OK -0:The total amount of wall time = 145.897200 -0:The maximum resident set size (KB) = 660404 +0:The total amount of wall time = 148.045708 +0:The maximum resident set size (KB) = 654848 Test 018 rrfs_smoke_conus13km_hrrr_warm_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rrfs_conus13km_hrrr_warm Checking test 019 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK @@ -816,14 +816,14 @@ Checking test 019 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc ............ALT CHECK......OK Comparing atmf002.nc ............ALT CHECK......OK -0:The total amount of wall time = 211.259463 -0:The maximum resident set size (KB) = 614636 +0:The total amount of wall time = 212.151725 +0:The maximum resident set size (KB) = 614804 Test 019 rrfs_conus13km_hrrr_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/rrfs_smoke_conus13km_radar_tten_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rrfs_smoke_conus13km_radar_tten_warm Checking test 020 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK @@ -832,222 +832,222 @@ Checking test 020 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc ............ALT CHECK......OK Comparing atmf002.nc ............ALT CHECK......OK -0:The total amount of wall time = 231.795363 -0:The maximum resident set size (KB) = 638720 +0:The total amount of wall time = 233.569833 +0:The maximum resident set size (KB) = 638484 Test 020 rrfs_smoke_conus13km_radar_tten_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/control_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/control_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/control_diag_debug Checking test 021 control_diag_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 88.804791 -0:The maximum resident set size (KB) = 495256 +0:The total amount of wall time = 88.438029 +0:The maximum resident set size (KB) = 495696 Test 021 control_diag_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/regional_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/regional_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/regional_debug Checking test 022 regional_debug results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf001.nc ............ALT CHECK......OK Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 479.552439 -0:The maximum resident set size (KB) = 570172 +0:The total amount of wall time = 482.851426 +0:The maximum resident set size (KB) = 570132 Test 022 regional_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/rap_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rap_control_debug Checking test 023 rap_control_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 151.097953 -0:The maximum resident set size (KB) = 809068 +0:The total amount of wall time = 151.226278 +0:The maximum resident set size (KB) = 809044 Test 023 rap_control_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/hrrr_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/hrrr_control_debug Checking test 024 hrrr_control_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 148.086449 -0:The maximum resident set size (KB) = 804964 +0:The total amount of wall time = 149.058383 +0:The maximum resident set size (KB) = 804892 Test 024 hrrr_control_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/rap_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rap_diag_debug Checking test 025 rap_diag_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 159.878949 -0:The maximum resident set size (KB) = 892128 +0:The total amount of wall time = 160.867929 +0:The maximum resident set size (KB) = 892120 Test 025 rap_diag_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rap_noah_sfcdiff_cires_ugwp_debug Checking test 026 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 239.899450 -0:The maximum resident set size (KB) = 808132 +0:The total amount of wall time = 242.720910 +0:The maximum resident set size (KB) = 807588 Test 026 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_progcld_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/rap_progcld_thompson_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rap_progcld_thompson_debug Checking test 027 rap_progcld_thompson_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 151.368846 -0:The maximum resident set size (KB) = 809160 +0:The total amount of wall time = 151.315733 +0:The maximum resident set size (KB) = 808884 Test 027 rap_progcld_thompson_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_v1beta_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/rrfs_v1beta_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rrfs_v1beta_debug Checking test 028 rrfs_v1beta_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 150.237077 -0:The maximum resident set size (KB) = 804320 +0:The total amount of wall time = 150.240482 +0:The maximum resident set size (KB) = 804280 Test 028 rrfs_v1beta_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/control_ras_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/control_ras_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/control_ras_debug Checking test 029 control_ras_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 86.436106 -0:The maximum resident set size (KB) = 449660 +0:The total amount of wall time = 86.796381 +0:The maximum resident set size (KB) = 449956 Test 029 control_ras_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/control_stochy_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/control_stochy_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/control_stochy_debug Checking test 030 control_stochy_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 94.217572 -0:The maximum resident set size (KB) = 442392 +0:The total amount of wall time = 93.904616 +0:The maximum resident set size (KB) = 441828 Test 030 control_stochy_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/control_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/control_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/control_debug_p8 Checking test 031 control_debug_p8 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 95.242103 -0:The maximum resident set size (KB) = 1225156 +0:The total amount of wall time = 97.434149 +0:The maximum resident set size (KB) = 1225136 Test 031 control_debug_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 032 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 444.545179 -0:The maximum resident set size (KB) = 644392 +0:The total amount of wall time = 444.438416 +0:The maximum resident set size (KB) = 644776 Test 032 rrfs_smoke_conus13km_hrrr_warm_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 033 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 263.226931 -0:The maximum resident set size (KB) = 669024 +0:The total amount of wall time = 263.837556 +0:The maximum resident set size (KB) = 668980 Test 033 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/rrfs_conus13km_hrrr_warm_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rrfs_conus13km_hrrr_warm_debug Checking test 034 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 400.867785 -0:The maximum resident set size (KB) = 623200 +0:The total amount of wall time = 403.213134 +0:The maximum resident set size (KB) = 623172 Test 034 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/control_wam_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/control_wam_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/control_wam_debug Checking test 035 control_wam_debug results .... Comparing sfcf019.nc ............ALT CHECK......OK Comparing atmf019.nc ............ALT CHECK......OK -0:The total amount of wall time = 145.033570 -0:The maximum resident set size (KB) = 185476 +0:The total amount of wall time = 144.760189 +0:The maximum resident set size (KB) = 185492 Test 035 control_wam_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rap_control_dyn32_phy32 Checking test 036 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -1094,14 +1094,14 @@ Checking test 036 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 688.174714 -0:The maximum resident set size (KB) = 673012 +0:The total amount of wall time = 685.108563 +0:The maximum resident set size (KB) = 673060 Test 036 rap_control_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/hrrr_control_dyn32_phy32 Checking test 037 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -1148,14 +1148,14 @@ Checking test 037 hrrr_control_dyn32_phy32 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 = 348.223097 -0:The maximum resident set size (KB) = 671556 +0:The total amount of wall time = 347.661311 +0:The maximum resident set size (KB) = 671584 Test 037 hrrr_control_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/rap_2threads_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rap_2threads_dyn32_phy32 Checking test 038 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -1202,14 +1202,14 @@ Checking test 038 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 627.023051 -0:The maximum resident set size (KB) = 719468 +0:The total amount of wall time = 630.560091 +0:The maximum resident set size (KB) = 719484 Test 038 rap_2threads_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/hrrr_control_2threads_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/hrrr_control_2threads_dyn32_phy32 Checking test 039 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -1256,14 +1256,14 @@ Checking test 039 hrrr_control_2threads_dyn32_phy32 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 = 312.706463 -0:The maximum resident set size (KB) = 716576 +0:The total amount of wall time = 313.855677 +0:The maximum resident set size (KB) = 716600 Test 039 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/hrrr_control_decomp_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/hrrr_control_decomp_dyn32_phy32 Checking test 040 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -1310,14 +1310,14 @@ Checking test 040 hrrr_control_decomp_dyn32_phy32 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 = 348.015625 -0:The maximum resident set size (KB) = 670380 +0:The total amount of wall time = 348.037317 +0:The maximum resident set size (KB) = 670480 Test 040 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/rap_restart_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rap_restart_dyn32_phy32 Checking test 041 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc ............ALT CHECK......OK Comparing atmf012.nc ............ALT CHECK......OK @@ -1356,14 +1356,14 @@ Checking test 041 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 511.792836 -0:The maximum resident set size (KB) = 511516 +0:The total amount of wall time = 510.943921 +0:The maximum resident set size (KB) = 511124 Test 041 rap_restart_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/hrrr_control_restart_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/hrrr_control_restart_dyn32_phy32 Checking test 042 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc ............ALT CHECK......OK Comparing atmf012.nc ............ALT CHECK......OK @@ -1402,14 +1402,14 @@ Checking test 042 hrrr_control_restart_dyn32_phy32 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 = 175.724696 -0:The maximum resident set size (KB) = 506876 +0:The total amount of wall time = 176.555672 +0:The maximum resident set size (KB) = 506828 Test 042 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/rap_control_dyn64_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rap_control_dyn64_phy32 Checking test 043 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -1456,56 +1456,56 @@ Checking test 043 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 406.409557 +0:The total amount of wall time = 406.943412 0:The maximum resident set size (KB) = 692896 Test 043 rap_control_dyn64_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rap_control_debug_dyn32_phy32 Checking test 044 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 149.570590 -0:The maximum resident set size (KB) = 690948 +0:The total amount of wall time = 149.966784 +0:The maximum resident set size (KB) = 690900 Test 044 rap_control_debug_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/hrrr_control_debug_dyn32_phy32 Checking test 045 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 147.001349 -0:The maximum resident set size (KB) = 687996 +0:The total amount of wall time = 146.578422 +0:The maximum resident set size (KB) = 687984 Test 045 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/rap_control_dyn64_phy32_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rap_control_dyn64_phy32_debug Checking test 046 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 153.843830 -0:The maximum resident set size (KB) = 711428 +0:The total amount of wall time = 154.447576 +0:The maximum resident set size (KB) = 711284 Test 046 rap_control_dyn64_phy32_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/cpld_control_p8 Checking test 047 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1570,14 +1570,14 @@ Checking test 047 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 499.616327 -0:The maximum resident set size (KB) = 3160296 +0:The total amount of wall time = 501.132211 +0:The maximum resident set size (KB) = 3159988 Test 047 cpld_control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/cpld_control_nowave_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/cpld_control_nowave_noaero_p8 Checking test 048 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1639,14 +1639,14 @@ Checking test 048 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 248.356048 -0:The maximum resident set size (KB) = 1241804 +0:The total amount of wall time = 252.392150 +0:The maximum resident set size (KB) = 1240620 Test 048 cpld_control_nowave_noaero_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/cpld_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/cpld_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/cpld_debug_p8 Checking test 049 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1699,25 +1699,25 @@ Checking test 049 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 275.694270 -0:The maximum resident set size (KB) = 3180164 +0:The total amount of wall time = 278.275011 +0:The maximum resident set size (KB) = 3178212 Test 049 cpld_debug_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_71487/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/datm_cdeps_control_cfsr Checking test 050 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 173.553534 -0:The maximum resident set size (KB) = 669560 +0:The total amount of wall time = 179.512443 +0:The maximum resident set size (KB) = 671564 Test 050 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Mon Mar 27 15:55:45 MDT 2023 -Elapsed time: 00h:32m:07s. Have a nice day! +Tue Mar 28 15:45:28 MDT 2023 +Elapsed time: 00h:36m:59s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 0fa28c96861..d15a94735c2 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,42 +1,42 @@ -Mon Mar 27 15:08:29 MDT 2023 +Tue Mar 28 14:53:23 MDT 2023 Start Regression test -Compile 001 elapsed time 1519 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 1483 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 1352 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 446 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 001 elapsed time 1449 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1434 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 1363 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 456 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON Compile 005 elapsed time 393 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 1070 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 1055 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 1801 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 1071 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 968 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 011 elapsed time 928 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 807 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 1285 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 408 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 267 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 846 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 853 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 280 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 281 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 1124 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 021 elapsed time 345 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 1568 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 1101 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 024 elapsed time 431 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 202 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 426 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 110 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 954 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 980 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 885 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 879 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 298 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 1044 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 1092 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 1083 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 1688 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 1065 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 972 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 011 elapsed time 930 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 811 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 1269 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 405 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 262 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 831 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 839 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 272 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 270 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 1119 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 021 elapsed time 351 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 1575 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 1092 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 024 elapsed time 428 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 199 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 435 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 109 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 941 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 977 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 892 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 877 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 294 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 1036 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8_mixedmode -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/cpld_control_p8_mixedmode +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -101,14 +101,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 322.020822 -0:The maximum resident set size (KB) = 2699128 +0:The total amount of wall time = 316.226526 +0:The maximum resident set size (KB) = 2699188 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_gfsv17 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/cpld_control_gfsv17 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -172,14 +172,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 282.465853 -0:The maximum resident set size (KB) = 1438688 +0:The total amount of wall time = 283.958802 +0:The maximum resident set size (KB) = 1438708 Test 002 cpld_control_gfsv17 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -244,14 +244,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 321.062470 -0:The maximum resident set size (KB) = 2716456 +0:The total amount of wall time = 327.253865 +0:The maximum resident set size (KB) = 2716876 Test 003 cpld_control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/cpld_restart_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -304,14 +304,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 186.801754 -0:The maximum resident set size (KB) = 2577680 +0:The total amount of wall time = 188.388181 +0:The maximum resident set size (KB) = 2578200 Test 004 cpld_restart_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/cpld_control_qr_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -376,14 +376,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 316.454555 -0:The maximum resident set size (KB) = 2720968 +0:The total amount of wall time = 331.751553 +0:The maximum resident set size (KB) = 2720880 Test 005 cpld_control_qr_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/cpld_restart_qr_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -436,14 +436,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 199.042052 -0:The maximum resident set size (KB) = 2594872 +0:The total amount of wall time = 202.907386 +0:The maximum resident set size (KB) = 2595024 Test 006 cpld_restart_qr_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/cpld_2threads_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -496,14 +496,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 255.007205 -0:The maximum resident set size (KB) = 3178036 +0:The total amount of wall time = 258.153702 +0:The maximum resident set size (KB) = 3177944 Test 007 cpld_2threads_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/cpld_decomp_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -556,14 +556,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 321.908667 -0:The maximum resident set size (KB) = 2723320 +0:The total amount of wall time = 325.384238 +0:The maximum resident set size (KB) = 2721116 Test 008 cpld_decomp_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/cpld_mpi_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -616,14 +616,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 278.230853 -0:The maximum resident set size (KB) = 2681400 +0:The total amount of wall time = 284.034291 +0:The maximum resident set size (KB) = 2681244 Test 009 cpld_mpi_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_ciceC_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/cpld_control_ciceC_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -688,14 +688,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 324.467552 -0:The maximum resident set size (KB) = 2716628 +0:The total amount of wall time = 325.845385 +0:The maximum resident set size (KB) = 2716548 Test 010 cpld_control_ciceC_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/cpld_control_c192_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/cpld_control_c192_p8 Checking test 011 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -748,14 +748,14 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -0:The total amount of wall time = 623.707055 -0:The maximum resident set size (KB) = 3350840 +0:The total amount of wall time = 629.339678 +0:The maximum resident set size (KB) = 3351528 Test 011 cpld_control_c192_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/cpld_restart_c192_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/cpld_restart_c192_p8 Checking test 012 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -808,14 +808,14 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -0:The total amount of wall time = 379.962486 -0:The maximum resident set size (KB) = 3275860 +0:The total amount of wall time = 390.394911 +0:The maximum resident set size (KB) = 3276084 Test 012 cpld_restart_c192_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/cpld_control_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/cpld_control_noaero_p8 Checking test 013 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -879,14 +879,14 @@ Checking test 013 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 295.343302 -0:The maximum resident set size (KB) = 1436428 +0:The total amount of wall time = 298.755764 +0:The maximum resident set size (KB) = 1436520 Test 013 cpld_control_noaero_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/cpld_control_nowave_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/cpld_control_nowave_noaero_p8 Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -948,14 +948,14 @@ Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 195.237363 -0:The maximum resident set size (KB) = 1452616 +0:The total amount of wall time = 196.314722 +0:The maximum resident set size (KB) = 1452496 Test 014 cpld_control_nowave_noaero_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/cpld_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/cpld_debug_p8 Checking test 015 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1008,14 +1008,14 @@ Checking test 015 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 474.980436 -0:The maximum resident set size (KB) = 2788276 +0:The total amount of wall time = 482.326840 +0:The maximum resident set size (KB) = 2787956 Test 015 cpld_debug_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_debug_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/cpld_debug_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/cpld_debug_noaero_p8 Checking test 016 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1067,14 +1067,14 @@ Checking test 016 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 348.917514 -0:The maximum resident set size (KB) = 1460648 +0:The total amount of wall time = 352.314611 +0:The maximum resident set size (KB) = 1460532 Test 016 cpld_debug_noaero_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_noaero_p8_agrid -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/cpld_control_noaero_p8_agrid +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/cpld_control_noaero_p8_agrid Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1136,14 +1136,14 @@ Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 257.381762 -0:The maximum resident set size (KB) = 1456388 +0:The total amount of wall time = 264.967496 +0:The maximum resident set size (KB) = 1456164 Test 017 cpld_control_noaero_p8_agrid PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/cpld_control_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/cpld_control_c48 Checking test 018 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1193,14 +1193,14 @@ Checking test 018 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 605.924134 -0:The maximum resident set size (KB) = 2583856 +0:The total amount of wall time = 601.604193 +0:The maximum resident set size (KB) = 2583460 Test 018 cpld_control_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/cpld_warmstart_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/cpld_warmstart_c48 Checking test 019 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1250,14 +1250,14 @@ Checking test 019 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -0:The total amount of wall time = 162.253597 -0:The maximum resident set size (KB) = 2600972 +0:The total amount of wall time = 161.026817 +0:The maximum resident set size (KB) = 2600960 Test 019 cpld_warmstart_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/cpld_restart_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/cpld_restart_c48 Checking test 020 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1307,14 +1307,14 @@ Checking test 020 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -0:The total amount of wall time = 85.461907 -0:The maximum resident set size (KB) = 2017796 +0:The total amount of wall time = 84.881532 +0:The maximum resident set size (KB) = 2017432 Test 020 cpld_restart_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_CubedSphereGrid +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_CubedSphereGrid Checking test 021 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1341,28 +1341,28 @@ Checking test 021 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -0:The total amount of wall time = 141.118682 -0:The maximum resident set size (KB) = 453560 +0:The total amount of wall time = 142.982033 +0:The maximum resident set size (KB) = 453584 Test 021 control_CubedSphereGrid PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid_parallel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_CubedSphereGrid_parallel +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_CubedSphereGrid_parallel Checking test 022 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK -0:The total amount of wall time = 140.524589 -0:The maximum resident set size (KB) = 453596 +0:The total amount of wall time = 142.017359 +0:The maximum resident set size (KB) = 453548 Test 022 control_CubedSphereGrid_parallel PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_latlon -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_latlon +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_latlon Checking test 023 control_latlon results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1373,14 +1373,14 @@ Checking test 023 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 143.872417 -0:The maximum resident set size (KB) = 454256 +0:The total amount of wall time = 146.951273 +0:The maximum resident set size (KB) = 453872 Test 023 control_latlon PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wrtGauss_netcdf_parallel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_wrtGauss_netcdf_parallel +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_wrtGauss_netcdf_parallel Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1391,14 +1391,14 @@ Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 149.231910 -0:The maximum resident set size (KB) = 453976 +0:The total amount of wall time = 149.057799 +0:The maximum resident set size (KB) = 453936 Test 024 control_wrtGauss_netcdf_parallel PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_c48 Checking test 025 control_c48 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1437,14 +1437,14 @@ Checking test 025 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 444.456424 -0:The maximum resident set size (KB) = 627936 +0:The total amount of wall time = 449.775635 +0:The maximum resident set size (KB) = 627924 Test 025 control_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c192 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_c192 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_c192 Checking test 026 control_c192 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1455,14 +1455,14 @@ Checking test 026 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 596.855607 -0:The maximum resident set size (KB) = 557924 +0:The total amount of wall time = 596.848081 +0:The maximum resident set size (KB) = 557672 Test 026 control_c192 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c384 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_c384 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_c384 Checking test 027 control_c384 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf012.nc ............ALT CHECK......OK @@ -1473,14 +1473,14 @@ Checking test 027 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 586.077556 -0:The maximum resident set size (KB) = 898336 +0:The total amount of wall time = 587.518195 +0:The maximum resident set size (KB) = 897924 Test 027 control_c384 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c384gdas -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_c384gdas +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_c384gdas Checking test 028 control_c384gdas results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -1523,14 +1523,14 @@ Checking test 028 control_c384gdas results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 514.462522 -0:The maximum resident set size (KB) = 1024412 +0:The total amount of wall time = 529.002144 +0:The maximum resident set size (KB) = 1024280 Test 028 control_c384gdas PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_stochy +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_stochy Checking test 029 control_stochy results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf012.nc ............ALT CHECK......OK @@ -1541,28 +1541,28 @@ Checking test 029 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 97.854619 -0:The maximum resident set size (KB) = 455632 +0:The total amount of wall time = 98.352542 +0:The maximum resident set size (KB) = 455676 Test 029 control_stochy PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_stochy_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_stochy_restart Checking test 030 control_stochy_restart results .... Comparing sfcf012.nc ............ALT CHECK......OK Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 53.199096 +0:The total amount of wall time = 53.424906 0:The maximum resident set size (KB) = 226448 Test 030 control_stochy_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_lndp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_lndp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_lndp Checking test 031 control_lndp results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf012.nc ............ALT CHECK......OK @@ -1573,14 +1573,14 @@ Checking test 031 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 90.452282 -0:The maximum resident set size (KB) = 456640 +0:The total amount of wall time = 91.136029 +0:The maximum resident set size (KB) = 456624 Test 031 control_lndp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_iovr4 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_iovr4 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_iovr4 Checking test 032 control_iovr4 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1595,14 +1595,14 @@ Checking test 032 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 149.782597 -0:The maximum resident set size (KB) = 453952 +0:The total amount of wall time = 149.495526 +0:The maximum resident set size (KB) = 454000 Test 032 control_iovr4 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_iovr5 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_iovr5 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_iovr5 Checking test 033 control_iovr5 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1617,14 +1617,14 @@ Checking test 033 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 151.341513 -0:The maximum resident set size (KB) = 453928 +0:The total amount of wall time = 148.443685 +0:The maximum resident set size (KB) = 453900 Test 033 control_iovr5 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_p8 Checking test 034 control_p8 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1671,14 +1671,14 @@ Checking test 034 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 182.401626 -0:The maximum resident set size (KB) = 1423156 +0:The total amount of wall time = 183.500171 +0:The maximum resident set size (KB) = 1423180 Test 034 control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_restart_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_restart_p8 Checking test 035 control_restart_p8 results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -1717,14 +1717,14 @@ Checking test 035 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 96.229643 -0:The maximum resident set size (KB) = 582512 +0:The total amount of wall time = 94.494093 +0:The maximum resident set size (KB) = 582524 Test 035 control_restart_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_qr_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_qr_p8 Checking test 036 control_qr_p8 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1771,14 +1771,14 @@ Checking test 036 control_qr_p8 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 = 182.524298 -0:The maximum resident set size (KB) = 1427176 +0:The total amount of wall time = 182.309390 +0:The maximum resident set size (KB) = 1427140 Test 036 control_qr_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_restart_qr_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_restart_qr_p8 Checking test 037 control_restart_qr_p8 results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -1817,14 +1817,14 @@ Checking test 037 control_restart_qr_p8 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 = 101.168924 -0:The maximum resident set size (KB) = 596100 +0:The total amount of wall time = 97.533596 +0:The maximum resident set size (KB) = 596076 Test 037 control_restart_qr_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_decomp_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_decomp_p8 Checking test 038 control_decomp_p8 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1867,14 +1867,14 @@ Checking test 038 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 185.953498 -0:The maximum resident set size (KB) = 1417992 +0:The total amount of wall time = 187.031365 +0:The maximum resident set size (KB) = 1417964 Test 038 control_decomp_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_2threads_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_2threads_p8 Checking test 039 control_2threads_p8 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1917,14 +1917,14 @@ Checking test 039 control_2threads_p8 results .... Comparing 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.809984 -0:The maximum resident set size (KB) = 1508756 +0:The total amount of wall time = 169.893880 +0:The maximum resident set size (KB) = 1508772 Test 039 control_2threads_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_lndp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_p8_lndp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_p8_lndp Checking test 040 control_p8_lndp results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1943,14 +1943,14 @@ Checking test 040 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -0:The total amount of wall time = 336.166582 -0:The maximum resident set size (KB) = 1423380 +0:The total amount of wall time = 337.048074 +0:The maximum resident set size (KB) = 1423352 Test 040 control_p8_lndp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_rrtmgp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_p8_rrtmgp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_p8_rrtmgp Checking test 041 control_p8_rrtmgp results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1997,14 +1997,14 @@ Checking test 041 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 253.690303 -0:The maximum resident set size (KB) = 1481628 +0:The total amount of wall time = 256.394235 +0:The maximum resident set size (KB) = 1481664 Test 041 control_p8_rrtmgp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_mynn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_p8_mynn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_p8_mynn Checking test 042 control_p8_mynn results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -2051,14 +2051,14 @@ Checking test 042 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 184.997101 -0:The maximum resident set size (KB) = 1428108 +0:The total amount of wall time = 186.457468 +0:The maximum resident set size (KB) = 1428076 Test 042 control_p8_mynn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/merra2_thompson -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/merra2_thompson +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/merra2_thompson Checking test 043 merra2_thompson results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -2105,14 +2105,14 @@ Checking test 043 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 206.917130 -0:The maximum resident set size (KB) = 1429316 +0:The total amount of wall time = 208.656415 +0:The maximum resident set size (KB) = 1429284 Test 043 merra2_thompson PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/regional_control Checking test 044 regional_control results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf006.nc ............ALT CHECK......OK @@ -2123,28 +2123,28 @@ Checking test 044 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 342.044312 -0:The maximum resident set size (KB) = 604064 +0:The total amount of wall time = 342.756038 +0:The maximum resident set size (KB) = 604072 Test 044 regional_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/regional_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/regional_restart Checking test 045 regional_restart results .... Comparing dynf006.nc ............ALT CHECK......OK Comparing phyf006.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 174.197531 -0:The maximum resident set size (KB) = 593680 +0:The total amount of wall time = 170.071161 +0:The maximum resident set size (KB) = 593776 Test 045 regional_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/regional_control_qr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/regional_control_qr Checking test 046 regional_control_qr results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf006.nc ............ALT CHECK......OK @@ -2155,28 +2155,28 @@ Checking test 046 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 341.384121 -0:The maximum resident set size (KB) = 604040 +0:The total amount of wall time = 331.533340 +0:The maximum resident set size (KB) = 604120 Test 046 regional_control_qr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/regional_restart_qr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/regional_restart_qr Checking test 047 regional_restart_qr results .... Comparing dynf006.nc ............ALT CHECK......OK Comparing phyf006.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 175.899751 -0:The maximum resident set size (KB) = 593672 +0:The total amount of wall time = 174.519379 +0:The maximum resident set size (KB) = 593772 Test 047 regional_restart_qr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/regional_decomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/regional_decomp Checking test 048 regional_decomp results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf006.nc ............ALT CHECK......OK @@ -2187,14 +2187,14 @@ Checking test 048 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 360.309103 -0:The maximum resident set size (KB) = 597372 +0:The total amount of wall time = 357.952895 +0:The maximum resident set size (KB) = 597360 Test 048 regional_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/regional_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/regional_2threads Checking test 049 regional_2threads results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf006.nc ............ALT CHECK......OK @@ -2205,14 +2205,14 @@ Checking test 049 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 202.865569 -0:The maximum resident set size (KB) = 610684 +0:The total amount of wall time = 204.432190 +0:The maximum resident set size (KB) = 610616 Test 049 regional_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_noquilt -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/regional_noquilt +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/regional_noquilt Checking test 050 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2220,28 +2220,28 @@ Checking test 050 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -0:The total amount of wall time = 361.095701 -0:The maximum resident set size (KB) = 598816 +0:The total amount of wall time = 366.457899 +0:The maximum resident set size (KB) = 598536 Test 050 regional_noquilt PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_netcdf_parallel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/regional_netcdf_parallel +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/regional_netcdf_parallel Checking test 051 regional_netcdf_parallel results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf006.nc ............ALT CHECK......OK Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf006.nc ............ALT CHECK......OK -0:The total amount of wall time = 328.207054 -0:The maximum resident set size (KB) = 596056 +0:The total amount of wall time = 339.144912 +0:The maximum resident set size (KB) = 596060 Test 051 regional_netcdf_parallel PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/regional_2dwrtdecomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/regional_2dwrtdecomp Checking test 052 regional_2dwrtdecomp results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf006.nc ............ALT CHECK......OK @@ -2252,14 +2252,14 @@ Checking test 052 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 339.351069 -0:The maximum resident set size (KB) = 604032 +0:The total amount of wall time = 342.035016 +0:The maximum resident set size (KB) = 604072 Test 052 regional_2dwrtdecomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/fv3_regional_wofs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/regional_wofs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/regional_wofs Checking test 053 regional_wofs results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf006.nc ............ALT CHECK......OK @@ -2270,14 +2270,14 @@ Checking test 053 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 424.094974 -0:The maximum resident set size (KB) = 275296 +0:The total amount of wall time = 436.474334 +0:The maximum resident set size (KB) = 275216 -Test 053 regional_wofs PASS Tries: 2 +Test 053 regional_wofs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rap_control Checking test 054 rap_control results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -2324,14 +2324,14 @@ Checking test 054 rap_control results .... Comparing 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.931155 -0:The maximum resident set size (KB) = 824644 +0:The total amount of wall time = 480.823237 +0:The maximum resident set size (KB) = 824636 Test 054 rap_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_spp_sppt_shum_skeb -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/regional_spp_sppt_shum_skeb +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/regional_spp_sppt_shum_skeb Checking test 055 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf001.nc ............ALT CHECK......OK @@ -2342,14 +2342,14 @@ Checking test 055 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 261.021967 -0:The maximum resident set size (KB) = 951652 +0:The total amount of wall time = 260.436289 +0:The maximum resident set size (KB) = 951796 Test 055 regional_spp_sppt_shum_skeb PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/rap_decomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rap_decomp Checking test 056 rap_decomp results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -2396,14 +2396,14 @@ Checking test 056 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 499.380072 -0:The maximum resident set size (KB) = 823160 +0:The total amount of wall time = 500.687987 +0:The maximum resident set size (KB) = 823116 Test 056 rap_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/rap_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rap_2threads Checking test 057 rap_2threads results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -2450,14 +2450,14 @@ Checking test 057 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 454.066752 -0:The maximum resident set size (KB) = 893664 +0:The total amount of wall time = 460.499034 +0:The maximum resident set size (KB) = 893844 Test 057 rap_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/rap_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rap_restart Checking test 058 rap_restart results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -2496,14 +2496,14 @@ Checking test 058 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 241.083227 -0:The maximum resident set size (KB) = 572872 +0:The total amount of wall time = 242.279692 +0:The maximum resident set size (KB) = 572816 Test 058 rap_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rap_sfcdiff Checking test 059 rap_sfcdiff results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -2550,14 +2550,14 @@ Checking test 059 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 476.863516 -0:The maximum resident set size (KB) = 824552 +0:The total amount of wall time = 478.719194 +0:The maximum resident set size (KB) = 824568 Test 059 rap_sfcdiff PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/rap_sfcdiff_decomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rap_sfcdiff_decomp Checking test 060 rap_sfcdiff_decomp results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -2604,14 +2604,14 @@ Checking test 060 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 501.481807 -0:The maximum resident set size (KB) = 825628 +0:The total amount of wall time = 503.324721 +0:The maximum resident set size (KB) = 825740 Test 060 rap_sfcdiff_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/rap_sfcdiff_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rap_sfcdiff_restart Checking test 061 rap_sfcdiff_restart results .... Comparing sfcf012.nc ............ALT CHECK......OK Comparing atmf012.nc ............ALT CHECK......OK @@ -2650,14 +2650,14 @@ Checking test 061 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 353.392174 -0:The maximum resident set size (KB) = 571068 +0:The total amount of wall time = 355.219123 +0:The maximum resident set size (KB) = 570688 Test 061 rap_sfcdiff_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hrrr_control Checking test 062 hrrr_control results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -2704,14 +2704,14 @@ Checking test 062 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 459.053973 -0:The maximum resident set size (KB) = 821496 +0:The total amount of wall time = 462.529207 +0:The maximum resident set size (KB) = 821528 Test 062 hrrr_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/hrrr_control_decomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hrrr_control_decomp Checking test 063 hrrr_control_decomp results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -2758,14 +2758,14 @@ Checking test 063 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 481.590518 -0:The maximum resident set size (KB) = 821488 +0:The total amount of wall time = 481.898709 +0:The maximum resident set size (KB) = 821408 Test 063 hrrr_control_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/hrrr_control_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hrrr_control_2threads Checking test 064 hrrr_control_2threads results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -2812,14 +2812,14 @@ Checking test 064 hrrr_control_2threads results .... Comparing 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.096954 -0:The maximum resident set size (KB) = 884636 +0:The total amount of wall time = 434.680462 +0:The maximum resident set size (KB) = 884352 Test 064 hrrr_control_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/hrrr_control_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hrrr_control_restart Checking test 065 hrrr_control_restart results .... Comparing sfcf012.nc ............ALT CHECK......OK Comparing atmf012.nc ............ALT CHECK......OK @@ -2858,14 +2858,14 @@ Checking test 065 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 340.799161 -0:The maximum resident set size (KB) = 567872 +0:The total amount of wall time = 339.201979 +0:The maximum resident set size (KB) = 567904 Test 065 hrrr_control_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1beta -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/rrfs_v1beta +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rrfs_v1beta Checking test 066 rrfs_v1beta results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -2912,14 +2912,14 @@ Checking test 066 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 473.509203 -0:The maximum resident set size (KB) = 820028 +0:The total amount of wall time = 473.270358 +0:The maximum resident set size (KB) = 820144 Test 066 rrfs_v1beta PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1nssl -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/rrfs_v1nssl +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rrfs_v1nssl Checking test 067 rrfs_v1nssl results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -2934,14 +2934,14 @@ Checking test 067 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 585.676713 -0:The maximum resident set size (KB) = 508564 +0:The total amount of wall time = 584.972626 +0:The maximum resident set size (KB) = 508612 Test 067 rrfs_v1nssl PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/rrfs_v1nssl_nohailnoccn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rrfs_v1nssl_nohailnoccn Checking test 068 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -2956,14 +2956,14 @@ Checking test 068 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 573.553648 -0:The maximum resident set size (KB) = 502548 +0:The total amount of wall time = 568.653721 +0:The maximum resident set size (KB) = 502416 Test 068 rrfs_v1nssl_nohailnoccn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rrfs_smoke_conus13km_hrrr_warm Checking test 069 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK @@ -2972,14 +2972,14 @@ Checking test 069 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc ............ALT CHECK......OK Comparing atmf002.nc ............ALT CHECK......OK -0:The total amount of wall time = 152.722800 -0:The maximum resident set size (KB) = 672424 +0:The total amount of wall time = 152.416035 +0:The maximum resident set size (KB) = 672456 Test 069 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/rrfs_smoke_conus13km_hrrr_warm_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 070 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK @@ -2988,14 +2988,14 @@ Checking test 070 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc ............ALT CHECK......OK Comparing atmf002.nc ............ALT CHECK......OK -0:The total amount of wall time = 93.596174 -0:The maximum resident set size (KB) = 690488 +0:The total amount of wall time = 92.265461 +0:The maximum resident set size (KB) = 690444 Test 070 rrfs_smoke_conus13km_hrrr_warm_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rrfs_conus13km_hrrr_warm Checking test 071 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK @@ -3004,14 +3004,14 @@ Checking test 071 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc ............ALT CHECK......OK Comparing atmf002.nc ............ALT CHECK......OK -0:The total amount of wall time = 136.283791 -0:The maximum resident set size (KB) = 653392 +0:The total amount of wall time = 136.801842 +0:The maximum resident set size (KB) = 653400 Test 071 rrfs_conus13km_hrrr_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/rrfs_smoke_conus13km_radar_tten_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rrfs_smoke_conus13km_radar_tten_warm Checking test 072 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK @@ -3020,14 +3020,14 @@ Checking test 072 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc ............ALT CHECK......OK Comparing atmf002.nc ............ALT CHECK......OK -0:The total amount of wall time = 153.296440 -0:The maximum resident set size (KB) = 674476 +0:The total amount of wall time = 153.452442 +0:The maximum resident set size (KB) = 674548 Test 072 rrfs_smoke_conus13km_radar_tten_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmg -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_csawmg +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_csawmg Checking test 073 control_csawmg results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -3038,14 +3038,14 @@ Checking test 073 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 380.324746 -0:The maximum resident set size (KB) = 525900 +0:The total amount of wall time = 398.058751 +0:The maximum resident set size (KB) = 525872 Test 073 control_csawmg PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmgt -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_csawmgt +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_csawmgt Checking test 074 control_csawmgt results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -3056,14 +3056,14 @@ Checking test 074 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 394.619076 -0:The maximum resident set size (KB) = 530084 +0:The total amount of wall time = 390.784502 +0:The maximum resident set size (KB) = 530004 Test 074 control_csawmgt PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_ras -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_ras +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_ras Checking test 075 control_ras results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -3074,26 +3074,26 @@ Checking test 075 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 205.162202 -0:The maximum resident set size (KB) = 487424 +0:The total amount of wall time = 206.091387 +0:The maximum resident set size (KB) = 487436 Test 075 control_ras PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wam -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_wam +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_wam Checking test 076 control_wam results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK -0:The total amount of wall time = 130.556574 -0:The maximum resident set size (KB) = 206064 +0:The total amount of wall time = 130.998635 +0:The maximum resident set size (KB) = 206292 Test 076 control_wam PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_faster -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_p8_faster +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_p8_faster Checking test 077 control_p8_faster results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -3140,14 +3140,14 @@ Checking test 077 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 171.562489 -0:The maximum resident set size (KB) = 1423000 +0:The total amount of wall time = 173.060846 +0:The maximum resident set size (KB) = 1423016 Test 077 control_p8_faster PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control_faster -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/regional_control_faster +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/regional_control_faster Checking test 078 regional_control_faster results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf006.nc ............ALT CHECK......OK @@ -3158,56 +3158,56 @@ Checking test 078 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 320.332008 -0:The maximum resident set size (KB) = 603840 +0:The total amount of wall time = 313.434251 +0:The maximum resident set size (KB) = 603832 Test 078 regional_control_faster PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 079 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 883.917912 -0:The maximum resident set size (KB) = 709504 +0:The total amount of wall time = 883.978033 +0:The maximum resident set size (KB) = 709464 Test 079 rrfs_smoke_conus13km_hrrr_warm_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 080 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 509.288348 -0:The maximum resident set size (KB) = 729476 +0:The total amount of wall time = 509.712521 +0:The maximum resident set size (KB) = 729436 Test 080 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/rrfs_conus13km_hrrr_warm_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rrfs_conus13km_hrrr_warm_debug Checking test 081 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 787.000904 -0:The maximum resident set size (KB) = 687508 +0:The total amount of wall time = 788.867660 +0:The maximum resident set size (KB) = 687560 Test 081 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_CubedSphereGrid_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_CubedSphereGrid_debug Checking test 082 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3234,334 +3234,334 @@ Checking test 082 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -0:The total amount of wall time = 174.453469 -0:The maximum resident set size (KB) = 619612 +0:The total amount of wall time = 174.805451 +0:The maximum resident set size (KB) = 619472 Test 082 control_CubedSphereGrid_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_wrtGauss_netcdf_parallel_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_wrtGauss_netcdf_parallel_debug Checking test 083 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 163.726339 -0:The maximum resident set size (KB) = 619948 +0:The total amount of wall time = 163.698529 +0:The maximum resident set size (KB) = 619992 Test 083 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_stochy_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_stochy_debug Checking test 084 control_stochy_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 182.584063 -0:The maximum resident set size (KB) = 627072 +0:The total amount of wall time = 184.440479 +0:The maximum resident set size (KB) = 627024 Test 084 control_stochy_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_lndp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_lndp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_lndp_debug Checking test 085 control_lndp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 165.258436 -0:The maximum resident set size (KB) = 624448 +0:The total amount of wall time = 165.662583 +0:The maximum resident set size (KB) = 624300 Test 085 control_lndp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmg_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_csawmg_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_csawmg_debug Checking test 086 control_csawmg_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 257.222327 +0:The total amount of wall time = 256.967507 0:The maximum resident set size (KB) = 670640 Test 086 control_csawmg_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmgt_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_csawmgt_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_csawmgt_debug Checking test 087 control_csawmgt_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 252.148205 -0:The maximum resident set size (KB) = 671176 +0:The total amount of wall time = 253.801153 +0:The maximum resident set size (KB) = 671168 Test 087 control_csawmgt_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_ras_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_ras_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_ras_debug Checking test 088 control_ras_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 167.764973 -0:The maximum resident set size (KB) = 634360 +0:The total amount of wall time = 167.454849 +0:The maximum resident set size (KB) = 634300 Test 088 control_ras_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_diag_debug Checking test 089 control_diag_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 169.860445 -0:The maximum resident set size (KB) = 678308 +0:The total amount of wall time = 169.364505 +0:The maximum resident set size (KB) = 678368 Test 089 control_diag_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_debug_p8 Checking test 090 control_debug_p8 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 184.287909 -0:The maximum resident set size (KB) = 1445088 +0:The total amount of wall time = 184.382105 +0:The maximum resident set size (KB) = 1445112 Test 090 control_debug_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/regional_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/regional_debug Checking test 091 regional_debug results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf001.nc ............ALT CHECK......OK Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 1035.619755 -0:The maximum resident set size (KB) = 630120 +0:The total amount of wall time = 1036.277747 +0:The maximum resident set size (KB) = 630044 Test 091 regional_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/rap_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rap_control_debug Checking test 092 rap_control_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 295.089645 -0:The maximum resident set size (KB) = 991992 +0:The total amount of wall time = 295.876775 +0:The maximum resident set size (KB) = 991944 Test 092 rap_control_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/hrrr_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hrrr_control_debug Checking test 093 hrrr_control_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 290.865731 -0:The maximum resident set size (KB) = 988376 +0:The total amount of wall time = 291.331057 +0:The maximum resident set size (KB) = 988352 Test 093 hrrr_control_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/rap_unified_drag_suite_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rap_unified_drag_suite_debug Checking test 094 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 295.586621 -0:The maximum resident set size (KB) = 992012 +0:The total amount of wall time = 295.173101 +0:The maximum resident set size (KB) = 992080 Test 094 rap_unified_drag_suite_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/rap_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rap_diag_debug Checking test 095 rap_diag_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 308.611878 -0:The maximum resident set size (KB) = 1074184 +0:The total amount of wall time = 309.406229 +0:The maximum resident set size (KB) = 1074172 Test 095 rap_diag_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/rap_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rap_cires_ugwp_debug Checking test 096 rap_cires_ugwp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 300.967728 -0:The maximum resident set size (KB) = 990196 +0:The total amount of wall time = 301.570218 +0:The maximum resident set size (KB) = 990092 Test 096 rap_cires_ugwp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/rap_unified_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rap_unified_ugwp_debug Checking test 097 rap_unified_ugwp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 300.855412 -0:The maximum resident set size (KB) = 991008 +0:The total amount of wall time = 301.498957 +0:The maximum resident set size (KB) = 991084 Test 097 rap_unified_ugwp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_lndp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/rap_lndp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rap_lndp_debug Checking test 098 rap_lndp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 297.773048 -0:The maximum resident set size (KB) = 992804 +0:The total amount of wall time = 297.288617 +0:The maximum resident set size (KB) = 992716 Test 098 rap_lndp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_flake_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/rap_flake_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rap_flake_debug Checking test 099 rap_flake_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 294.948452 -0:The maximum resident set size (KB) = 992084 +0:The total amount of wall time = 295.636542 +0:The maximum resident set size (KB) = 992008 Test 099 rap_flake_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_progcld_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/rap_progcld_thompson_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rap_progcld_thompson_debug Checking test 100 rap_progcld_thompson_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 295.487466 -0:The maximum resident set size (KB) = 992148 +0:The total amount of wall time = 296.019761 +0:The maximum resident set size (KB) = 991880 Test 100 rap_progcld_thompson_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_noah_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/rap_noah_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rap_noah_debug Checking test 101 rap_noah_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 288.823509 -0:The maximum resident set size (KB) = 990640 +0:The total amount of wall time = 289.747930 +0:The maximum resident set size (KB) = 990580 Test 101 rap_noah_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/rap_sfcdiff_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rap_sfcdiff_debug Checking test 102 rap_sfcdiff_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 294.725765 -0:The maximum resident set size (KB) = 991768 +0:The total amount of wall time = 295.478992 +0:The maximum resident set size (KB) = 991732 Test 102 rap_sfcdiff_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rap_noah_sfcdiff_cires_ugwp_debug Checking test 103 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 479.235821 -0:The maximum resident set size (KB) = 989148 +0:The total amount of wall time = 480.352304 +0:The maximum resident set size (KB) = 989136 Test 103 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1beta_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/rrfs_v1beta_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rrfs_v1beta_debug Checking test 104 rrfs_v1beta_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 292.709745 -0:The maximum resident set size (KB) = 986172 +0:The total amount of wall time = 291.201444 +0:The maximum resident set size (KB) = 986176 Test 104 rrfs_v1beta_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wam_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_wam_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_wam_debug Checking test 105 control_wam_debug results .... Comparing sfcf019.nc ............ALT CHECK......OK Comparing atmf019.nc ............ALT CHECK......OK -0:The total amount of wall time = 297.491720 -0:The maximum resident set size (KB) = 239652 +0:The total amount of wall time = 296.863160 +0:The maximum resident set size (KB) = 239728 Test 105 control_wam_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf001.nc ............ALT CHECK......OK @@ -3572,14 +3572,14 @@ Checking test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 239.259258 -0:The maximum resident set size (KB) = 849376 +0:The total amount of wall time = 238.744869 +0:The maximum resident set size (KB) = 849216 Test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rap_control_dyn32_phy32 Checking test 107 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -3626,14 +3626,14 @@ Checking test 107 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 395.699418 -0:The maximum resident set size (KB) = 707480 +0:The total amount of wall time = 392.322073 +0:The maximum resident set size (KB) = 707476 Test 107 rap_control_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hrrr_control_dyn32_phy32 Checking test 108 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -3680,14 +3680,14 @@ Checking test 108 hrrr_control_dyn32_phy32 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 = 204.701707 -0:The maximum resident set size (KB) = 705812 +0:The total amount of wall time = 204.913361 +0:The maximum resident set size (KB) = 705920 Test 108 hrrr_control_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/rap_2threads_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rap_2threads_dyn32_phy32 Checking test 109 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -3734,14 +3734,14 @@ Checking test 109 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 379.175377 -0:The maximum resident set size (KB) = 760876 +0:The total amount of wall time = 379.036814 +0:The maximum resident set size (KB) = 760716 Test 109 rap_2threads_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/hrrr_control_2threads_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hrrr_control_2threads_dyn32_phy32 Checking test 110 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -3788,14 +3788,14 @@ Checking test 110 hrrr_control_2threads_dyn32_phy32 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 = 195.401824 -0:The maximum resident set size (KB) = 754816 +0:The total amount of wall time = 195.832546 +0:The maximum resident set size (KB) = 754940 Test 110 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/hrrr_control_decomp_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hrrr_control_decomp_dyn32_phy32 Checking test 111 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -3842,14 +3842,14 @@ Checking test 111 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 214.488239 -0:The maximum resident set size (KB) = 704028 +0:The total amount of wall time = 217.484001 +0:The maximum resident set size (KB) = 704108 Test 111 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/rap_restart_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rap_restart_dyn32_phy32 Checking test 112 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc ............ALT CHECK......OK Comparing atmf012.nc ............ALT CHECK......OK @@ -3888,14 +3888,14 @@ Checking test 112 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 290.989174 -0:The maximum resident set size (KB) = 544368 +0:The total amount of wall time = 292.632793 +0:The maximum resident set size (KB) = 544420 Test 112 rap_restart_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/hrrr_control_restart_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hrrr_control_restart_dyn32_phy32 Checking test 113 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc ............ALT CHECK......OK Comparing atmf012.nc ............ALT CHECK......OK @@ -3934,14 +3934,14 @@ Checking test 113 hrrr_control_restart_dyn32_phy32 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 = 104.238774 -0:The maximum resident set size (KB) = 537056 +0:The total amount of wall time = 106.027083 +0:The maximum resident set size (KB) = 537188 Test 113 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/rap_control_dyn64_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rap_control_dyn64_phy32 Checking test 114 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -3988,81 +3988,81 @@ Checking test 114 rap_control_dyn64_phy32 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 = 267.677702 -0:The maximum resident set size (KB) = 729948 +0:The total amount of wall time = 268.655996 +0:The maximum resident set size (KB) = 729968 Test 114 rap_control_dyn64_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rap_control_debug_dyn32_phy32 Checking test 115 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 289.845674 -0:The maximum resident set size (KB) = 876480 +0:The total amount of wall time = 290.509753 +0:The maximum resident set size (KB) = 876364 Test 115 rap_control_debug_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hrrr_control_debug_dyn32_phy32 Checking test 116 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 285.918136 -0:The maximum resident set size (KB) = 875456 +0:The total amount of wall time = 286.338496 +0:The maximum resident set size (KB) = 875440 Test 116 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/rap_control_dyn64_phy32_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rap_control_dyn64_phy32_debug Checking test 117 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 295.475148 -0:The maximum resident set size (KB) = 894516 +0:The total amount of wall time = 295.293386 +0:The maximum resident set size (KB) = 894560 Test 117 rap_control_dyn64_phy32_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/hafs_regional_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hafs_regional_atm Checking test 118 hafs_regional_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK Comparing HURPRS.GrbF06 .........OK -0:The total amount of wall time = 258.210598 -0:The maximum resident set size (KB) = 740792 +0:The total amount of wall time = 258.170228 +0:The maximum resident set size (KB) = 741112 Test 118 hafs_regional_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/hafs_regional_atm_thompson_gfdlsf +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hafs_regional_atm_thompson_gfdlsf Checking test 119 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -0:The total amount of wall time = 308.134064 -0:The maximum resident set size (KB) = 1097380 +0:The total amount of wall time = 288.451901 +0:The maximum resident set size (KB) = 1097364 Test 119 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_ocn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/hafs_regional_atm_ocn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hafs_regional_atm_ocn Checking test 120 hafs_regional_atm_ocn results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4071,14 +4071,14 @@ Checking test 120 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 451.944865 -0:The maximum resident set size (KB) = 739948 +0:The total amount of wall time = 457.633363 +0:The maximum resident set size (KB) = 739960 Test 120 hafs_regional_atm_ocn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_wav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/hafs_regional_atm_wav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hafs_regional_atm_wav Checking test 121 hafs_regional_atm_wav results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4087,14 +4087,14 @@ Checking test 121 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 1078.131206 -0:The maximum resident set size (KB) = 768052 +0:The total amount of wall time = 1091.996297 +0:The maximum resident set size (KB) = 768004 Test 121 hafs_regional_atm_wav PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_ocn_wav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/hafs_regional_atm_ocn_wav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hafs_regional_atm_ocn_wav Checking test 122 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4105,28 +4105,28 @@ Checking test 122 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 1092.537847 -0:The maximum resident set size (KB) = 792188 +0:The total amount of wall time = 1104.646700 +0:The maximum resident set size (KB) = 792180 Test 122 hafs_regional_atm_ocn_wav PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/hafs_regional_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hafs_regional_1nest_atm Checking test 123 hafs_regional_1nest_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK Comparing atm.nest02.f006.nc ............ALT CHECK......OK Comparing sfc.nest02.f006.nc ............ALT CHECK......OK -0:The total amount of wall time = 376.959826 -0:The maximum resident set size (KB) = 300020 +0:The total amount of wall time = 374.613248 +0:The maximum resident set size (KB) = 300036 Test 123 hafs_regional_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/hafs_regional_telescopic_2nests_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hafs_regional_telescopic_2nests_atm Checking test 124 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4135,28 +4135,28 @@ Checking test 124 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc ............ALT CHECK......OK Comparing sfc.nest03.f006.nc ............ALT CHECK......OK -0:The total amount of wall time = 425.750684 -0:The maximum resident set size (KB) = 318172 +0:The total amount of wall time = 426.586794 +0:The maximum resident set size (KB) = 317968 Test 124 hafs_regional_telescopic_2nests_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/hafs_global_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hafs_global_1nest_atm Checking test 125 hafs_global_1nest_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK Comparing atm.nest02.f006.nc ............ALT CHECK......OK Comparing sfc.nest02.f006.nc ............ALT CHECK......OK -0:The total amount of wall time = 169.382385 -0:The maximum resident set size (KB) = 213184 +0:The total amount of wall time = 172.351478 +0:The maximum resident set size (KB) = 213152 Test 125 hafs_global_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_multiple_4nests_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/hafs_global_multiple_4nests_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hafs_global_multiple_4nests_atm Checking test 126 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4174,14 +4174,14 @@ Checking test 126 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -0:The total amount of wall time = 478.524926 -0:The maximum resident set size (KB) = 301864 +0:The total amount of wall time = 481.113987 +0:The maximum resident set size (KB) = 301984 Test 126 hafs_global_multiple_4nests_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/hafs_regional_specified_moving_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hafs_regional_specified_moving_1nest_atm Checking test 127 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4190,28 +4190,28 @@ Checking test 127 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -0:The total amount of wall time = 238.700855 -0:The maximum resident set size (KB) = 316392 +0:The total amount of wall time = 238.312297 +0:The maximum resident set size (KB) = 316264 Test 127 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/hafs_regional_storm_following_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hafs_regional_storm_following_1nest_atm Checking test 128 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK Comparing atm.nest02.f006.nc ............ALT CHECK......OK Comparing sfc.nest02.f006.nc ............ALT CHECK......OK -0:The total amount of wall time = 227.111147 -0:The maximum resident set size (KB) = 316136 +0:The total amount of wall time = 227.021493 +0:The maximum resident set size (KB) = 316372 Test 128 hafs_regional_storm_following_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/hafs_regional_storm_following_1nest_atm_ocn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hafs_regional_storm_following_1nest_atm_ocn Checking test 129 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4220,42 +4220,42 @@ Checking test 129 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -0:The total amount of wall time = 275.918673 -0:The maximum resident set size (KB) = 374412 +0:The total amount of wall time = 281.235155 +0:The maximum resident set size (KB) = 374496 Test 129 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_storm_following_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/hafs_global_storm_following_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hafs_global_storm_following_1nest_atm Checking test 130 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK Comparing atm.nest02.f006.nc ............ALT CHECK......OK Comparing sfc.nest02.f006.nc ............ALT CHECK......OK -0:The total amount of wall time = 66.318750 -0:The maximum resident set size (KB) = 232744 +0:The total amount of wall time = 67.644290 +0:The maximum resident set size (KB) = 232816 Test 130 hafs_global_storm_following_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 131 hafs_regional_storm_following_1nest_atm_ocn_debug results .... Comparing atmf001.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atm.nest02.f001.nc ............ALT CHECK......OK Comparing sfc.nest02.f001.nc ............ALT CHECK......OK -0:The total amount of wall time = 821.984999 -0:The maximum resident set size (KB) = 408568 +0:The total amount of wall time = 822.170427 +0:The maximum resident set size (KB) = 408660 Test 131 hafs_regional_storm_following_1nest_atm_ocn_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 132 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4266,14 +4266,14 @@ Checking test 132 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -0:The total amount of wall time = 779.500026 -0:The maximum resident set size (KB) = 426024 +0:The total amount of wall time = 697.520043 +0:The maximum resident set size (KB) = 426812 Test 132 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_docn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/hafs_regional_docn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hafs_regional_docn Checking test 133 hafs_regional_docn results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4281,14 +4281,14 @@ Checking test 133 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 393.581053 -0:The maximum resident set size (KB) = 754384 +0:The total amount of wall time = 392.099969 +0:The maximum resident set size (KB) = 754316 Test 133 hafs_regional_docn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_docn_oisst -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/hafs_regional_docn_oisst +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hafs_regional_docn_oisst Checking test 134 hafs_regional_docn_oisst results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4296,131 +4296,131 @@ Checking test 134 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 391.282042 -0:The maximum resident set size (KB) = 736544 +0:The total amount of wall time = 383.020436 +0:The maximum resident set size (KB) = 737028 Test 134 hafs_regional_docn_oisst PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_datm_cdeps -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/hafs_regional_datm_cdeps +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hafs_regional_datm_cdeps Checking test 135 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -0:The total amount of wall time = 1270.006623 -0:The maximum resident set size (KB) = 887900 +0:The total amount of wall time = 1268.043272 +0:The maximum resident set size (KB) = 887868 Test 135 hafs_regional_datm_cdeps PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/datm_cdeps_control_cfsr Checking test 136 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 167.718254 -0:The maximum resident set size (KB) = 716704 +0:The total amount of wall time = 167.158326 +0:The maximum resident set size (KB) = 727860 Test 136 datm_cdeps_control_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/datm_cdeps_restart_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/datm_cdeps_restart_cfsr Checking test 137 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 97.715525 -0:The maximum resident set size (KB) = 704864 +0:The total amount of wall time = 99.563443 +0:The maximum resident set size (KB) = 715920 Test 137 datm_cdeps_restart_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/datm_cdeps_control_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/datm_cdeps_control_gefs Checking test 138 datm_cdeps_control_gefs 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 = 160.988466 -0:The maximum resident set size (KB) = 607456 +0:The total amount of wall time = 159.717655 +0:The maximum resident set size (KB) = 607448 Test 138 datm_cdeps_control_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_iau_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/datm_cdeps_iau_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/datm_cdeps_iau_gefs Checking test 139 datm_cdeps_iau_gefs 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 = 164.583458 -0:The maximum resident set size (KB) = 607456 +0:The total amount of wall time = 163.484192 +0:The maximum resident set size (KB) = 607432 Test 139 datm_cdeps_iau_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_stochy_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/datm_cdeps_stochy_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/datm_cdeps_stochy_gefs Checking test 140 datm_cdeps_stochy_gefs 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 = 164.956646 -0:The maximum resident set size (KB) = 607508 +0:The total amount of wall time = 164.044040 +0:The maximum resident set size (KB) = 607464 Test 140 datm_cdeps_stochy_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_ciceC_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/datm_cdeps_ciceC_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/datm_cdeps_ciceC_cfsr Checking test 141 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 168.199340 -0:The maximum resident set size (KB) = 716740 +0:The total amount of wall time = 168.865612 +0:The maximum resident set size (KB) = 716688 Test 141 datm_cdeps_ciceC_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_bulk_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/datm_cdeps_bulk_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/datm_cdeps_bulk_cfsr Checking test 142 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 168.931215 -0:The maximum resident set size (KB) = 716684 +0:The total amount of wall time = 168.395618 +0:The maximum resident set size (KB) = 716700 Test 142 datm_cdeps_bulk_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_bulk_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/datm_cdeps_bulk_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/datm_cdeps_bulk_gefs Checking test 143 datm_cdeps_bulk_gefs 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 = 162.229566 -0:The maximum resident set size (KB) = 607472 +0:The total amount of wall time = 160.768923 +0:The maximum resident set size (KB) = 607452 Test 143 datm_cdeps_bulk_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_mx025_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/datm_cdeps_mx025_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/datm_cdeps_mx025_cfsr Checking test 144 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4429,14 +4429,14 @@ Checking test 144 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 412.229973 -0:The maximum resident set size (KB) = 514296 +0:The total amount of wall time = 422.429030 +0:The maximum resident set size (KB) = 514268 Test 144 datm_cdeps_mx025_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_mx025_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/datm_cdeps_mx025_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/datm_cdeps_mx025_gefs Checking test 145 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4445,77 +4445,77 @@ Checking test 145 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 413.596198 -0:The maximum resident set size (KB) = 494760 +0:The total amount of wall time = 419.633934 +0:The maximum resident set size (KB) = 494788 Test 145 datm_cdeps_mx025_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/datm_cdeps_multiple_files_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/datm_cdeps_multiple_files_cfsr Checking test 146 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 168.176713 -0:The maximum resident set size (KB) = 717260 +0:The total amount of wall time = 163.108977 +0:The maximum resident set size (KB) = 716688 Test 146 datm_cdeps_multiple_files_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/datm_cdeps_3072x1536_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/datm_cdeps_3072x1536_cfsr Checking test 147 datm_cdeps_3072x1536_cfsr 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 = 240.266525 -0:The maximum resident set size (KB) = 1941112 +0:The total amount of wall time = 241.967340 +0:The maximum resident set size (KB) = 1942004 Test 147 datm_cdeps_3072x1536_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_gfs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/datm_cdeps_gfs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/datm_cdeps_gfs Checking test 148 datm_cdeps_gfs 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 = 268.040014 -0:The maximum resident set size (KB) = 1941080 +0:The total amount of wall time = 254.668136 +0:The maximum resident set size (KB) = 1940252 Test 148 datm_cdeps_gfs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_debug_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/datm_cdeps_debug_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/datm_cdeps_debug_cfsr Checking test 149 datm_cdeps_debug_cfsr results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -0:The total amount of wall time = 459.318441 -0:The maximum resident set size (KB) = 706668 +0:The total amount of wall time = 458.294696 +0:The maximum resident set size (KB) = 706748 Test 149 datm_cdeps_debug_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr_faster -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/datm_cdeps_control_cfsr_faster +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/datm_cdeps_control_cfsr_faster Checking test 150 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 169.821936 -0:The maximum resident set size (KB) = 716796 +0:The total amount of wall time = 167.204440 +0:The maximum resident set size (KB) = 716760 Test 150 datm_cdeps_control_cfsr_faster PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/datm_cdeps_lnd_gswp3 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/datm_cdeps_lnd_gswp3 Checking test 151 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4524,14 +4524,14 @@ Checking test 151 datm_cdeps_lnd_gswp3 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 = 11.065179 -0:The maximum resident set size (KB) = 224564 +0:The total amount of wall time = 10.471279 +0:The maximum resident set size (KB) = 210044 Test 151 datm_cdeps_lnd_gswp3 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/datm_cdeps_lnd_gswp3_rst +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/datm_cdeps_lnd_gswp3_rst Checking test 152 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4540,14 +4540,14 @@ Checking test 152 datm_cdeps_lnd_gswp3_rst 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 = 15.479710 -0:The maximum resident set size (KB) = 208236 +0:The total amount of wall time = 16.599126 +0:The maximum resident set size (KB) = 208176 Test 152 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_atmlnd_sbs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_p8_atmlnd_sbs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_p8_atmlnd_sbs Checking test 153 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4632,14 +4632,14 @@ Checking test 153 control_p8_atmlnd_sbs 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 = 237.796949 -0:The maximum resident set size (KB) = 1463368 +0:The total amount of wall time = 238.414629 +0:The maximum resident set size (KB) = 1463464 Test 153 control_p8_atmlnd_sbs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_atmwav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/control_atmwav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_atmwav Checking test 154 control_atmwav results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf012.nc ............ALT CHECK......OK @@ -4683,14 +4683,14 @@ Checking test 154 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -0:The total amount of wall time = 101.466206 -0:The maximum resident set size (KB) = 474792 +0:The total amount of wall time = 100.234716 +0:The maximum resident set size (KB) = 474832 Test 154 control_atmwav PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/atmaero_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/atmaero_control_p8 Checking test 155 atmaero_control_p8 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -4734,14 +4734,14 @@ Checking test 155 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 250.987065 -0:The maximum resident set size (KB) = 2703776 +0:The total amount of wall time = 254.350535 +0:The maximum resident set size (KB) = 2703820 Test 155 atmaero_control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8_rad -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/atmaero_control_p8_rad +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/atmaero_control_p8_rad Checking test 156 atmaero_control_p8_rad results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -4785,14 +4785,14 @@ Checking test 156 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 302.279714 -0:The maximum resident set size (KB) = 2758280 +0:The total amount of wall time = 305.701771 +0:The maximum resident set size (KB) = 2758240 Test 156 atmaero_control_p8_rad PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8_rad_micro -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/atmaero_control_p8_rad_micro +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/atmaero_control_p8_rad_micro Checking test 157 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -4836,14 +4836,14 @@ Checking test 157 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 309.181447 -0:The maximum resident set size (KB) = 2764360 +0:The total amount of wall time = 312.123379 +0:The maximum resident set size (KB) = 2764168 Test 157 atmaero_control_p8_rad_micro PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/regional_atmaq +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/regional_atmaq Checking test 158 regional_atmaq results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf003.nc ............ALT CHECK......OK @@ -4859,14 +4859,14 @@ Checking test 158 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -0:The total amount of wall time = 747.731484 -0:The maximum resident set size (KB) = 998956 +0:The total amount of wall time = 751.416667 +0:The maximum resident set size (KB) = 999156 Test 158 regional_atmaq PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq_faster -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_41809/regional_atmaq_faster +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/regional_atmaq_faster Checking test 159 regional_atmaq_faster results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf003.nc ............ALT CHECK......OK @@ -4882,12 +4882,12 @@ Checking test 159 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -0:The total amount of wall time = 696.019620 -0:The maximum resident set size (KB) = 998852 +0:The total amount of wall time = 676.509985 +0:The maximum resident set size (KB) = 998860 Test 159 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Mon Mar 27 16:24:07 MDT 2023 -Elapsed time: 01h:15m:38s. Have a nice day! +Tue Mar 28 16:16:40 MDT 2023 +Elapsed time: 01h:23m:17s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index 8f624d37291..cecda09813d 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,42 +1,42 @@ -Mon Mar 27 17:33:00 EDT 2023 +Tue Mar 28 17:03:09 EDT 2023 Start Regression test -Compile 001 elapsed time 855 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 856 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 846 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 316 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 294 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 777 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 788 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 1041 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 770 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 738 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 011 elapsed time 675 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 615 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 950 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 314 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 243 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 658 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 648 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 210 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 228 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 720 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 021 elapsed time 242 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 937 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 753 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 024 elapsed time 307 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 208 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 302 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 119 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 712 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 786 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 703 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 681 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 276 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 858 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 893 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 882 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 829 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 351 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 289 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 769 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 769 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 1002 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 786 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 711 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 696 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 628 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 841 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 240 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 666 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 643 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 211 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 221 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 741 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 021 elapsed time 262 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 963 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 739 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 024 elapsed time 305 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 182 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 282 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 129 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 694 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 725 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 761 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 682 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 245 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 822 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8_mixedmode -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/cpld_control_p8_mixedmode +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -101,14 +101,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 348.472217 - 0: The maximum resident set size (KB) = 1535356 + 0: The total amount of wall time = 364.072530 + 0: The maximum resident set size (KB) = 1534404 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_gfsv17 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/cpld_control_gfsv17 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -172,14 +172,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 259.811684 - 0: The maximum resident set size (KB) = 1444264 + 0: The total amount of wall time = 285.622397 + 0: The maximum resident set size (KB) = 1444736 Test 002 cpld_control_gfsv17 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/cpld_control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -244,14 +244,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 392.887570 - 0: The maximum resident set size (KB) = 1569040 + 0: The total amount of wall time = 414.448163 + 0: The maximum resident set size (KB) = 1568668 Test 003 cpld_control_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/cpld_restart_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -304,14 +304,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 242.879637 - 0: The maximum resident set size (KB) = 1018616 + 0: The total amount of wall time = 249.969934 + 0: The maximum resident set size (KB) = 1018440 Test 004 cpld_restart_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/cpld_control_qr_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -376,14 +376,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 395.624328 - 0: The maximum resident set size (KB) = 1579216 + 0: The total amount of wall time = 403.451779 + 0: The maximum resident set size (KB) = 1579652 Test 005 cpld_control_qr_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/cpld_restart_qr_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -436,14 +436,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 245.807869 - 0: The maximum resident set size (KB) = 1032428 + 0: The total amount of wall time = 244.463395 + 0: The maximum resident set size (KB) = 1032320 Test 006 cpld_restart_qr_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/cpld_2threads_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -496,14 +496,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 414.247032 - 0: The maximum resident set size (KB) = 1760996 + 0: The total amount of wall time = 418.411537 + 0: The maximum resident set size (KB) = 1760064 Test 007 cpld_2threads_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/cpld_decomp_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -556,14 +556,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 395.897239 - 0: The maximum resident set size (KB) = 1561036 + 0: The total amount of wall time = 399.803430 + 0: The maximum resident set size (KB) = 1561584 Test 008 cpld_decomp_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/cpld_mpi_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -616,14 +616,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 336.135950 - 0: The maximum resident set size (KB) = 1526924 + 0: The total amount of wall time = 344.519102 + 0: The maximum resident set size (KB) = 1526772 Test 009 cpld_mpi_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_bmark_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/cpld_bmark_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/cpld_bmark_p8 Checking test 010 cpld_bmark_p8 results .... Comparing sfcf006.nc ............ALT CHECK......OK Comparing atmf006.nc ............ALT CHECK......OK @@ -671,14 +671,14 @@ Checking test 010 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 882.654773 - 0: The maximum resident set size (KB) = 2508364 + 0: The total amount of wall time = 882.443134 + 0: The maximum resident set size (KB) = 2507456 Test 010 cpld_bmark_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_bmark_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/cpld_restart_bmark_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/cpld_restart_bmark_p8 Checking test 011 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc ............ALT CHECK......OK Comparing atmf006.nc ............ALT CHECK......OK @@ -726,14 +726,14 @@ Checking test 011 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 512.297505 - 0: The maximum resident set size (KB) = 2334768 + 0: The total amount of wall time = 727.714180 + 0: The maximum resident set size (KB) = 2332904 Test 011 cpld_restart_bmark_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_noaero_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/cpld_control_noaero_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/cpld_control_noaero_p8 Checking test 012 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -797,14 +797,14 @@ Checking test 012 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 295.115707 - 0: The maximum resident set size (KB) = 1442444 + 0: The total amount of wall time = 304.647230 + 0: The maximum resident set size (KB) = 1441984 Test 012 cpld_control_noaero_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c96_noaero_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/cpld_control_nowave_noaero_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/cpld_control_nowave_noaero_p8 Checking test 013 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -866,14 +866,14 @@ Checking test 013 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 316.037236 - 0: The maximum resident set size (KB) = 1474584 + 0: The total amount of wall time = 316.149798 + 0: The maximum resident set size (KB) = 1474488 Test 013 cpld_control_nowave_noaero_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_debug_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/cpld_debug_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/cpld_debug_p8 Checking test 014 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -926,14 +926,14 @@ Checking test 014 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 588.963782 - 0: The maximum resident set size (KB) = 1595460 + 0: The total amount of wall time = 612.129894 + 0: The maximum resident set size (KB) = 1596092 Test 014 cpld_debug_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_debug_noaero_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/cpld_debug_noaero_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/cpld_debug_noaero_p8 Checking test 015 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -985,14 +985,14 @@ Checking test 015 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 398.084826 - 0: The maximum resident set size (KB) = 1442296 + 0: The total amount of wall time = 418.452745 + 0: The maximum resident set size (KB) = 1442092 Test 015 cpld_debug_noaero_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_noaero_p8_agrid -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/cpld_control_noaero_p8_agrid +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/cpld_control_noaero_p8_agrid Checking test 016 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1054,14 +1054,14 @@ Checking test 016 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 300.697324 - 0: The maximum resident set size (KB) = 1477616 + 0: The total amount of wall time = 333.834681 + 0: The maximum resident set size (KB) = 1477604 Test 016 cpld_control_noaero_p8_agrid PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c48 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/cpld_control_c48 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/cpld_control_c48 Checking test 017 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1111,14 +1111,14 @@ Checking test 017 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 600.270354 - 0: The maximum resident set size (KB) = 2571908 + 0: The total amount of wall time = 620.420511 + 0: The maximum resident set size (KB) = 2572556 Test 017 cpld_control_c48 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_warmstart_c48 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/cpld_warmstart_c48 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/cpld_warmstart_c48 Checking test 018 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1168,14 +1168,14 @@ Checking test 018 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 159.555661 - 0: The maximum resident set size (KB) = 2587668 + 0: The total amount of wall time = 183.924075 + 0: The maximum resident set size (KB) = 2574764 Test 018 cpld_warmstart_c48 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_warmstart_c48 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/cpld_restart_c48 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/cpld_restart_c48 Checking test 019 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1225,14 +1225,14 @@ Checking test 019 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 92.437752 - 0: The maximum resident set size (KB) = 1988416 + 0: The total amount of wall time = 101.785112 + 0: The maximum resident set size (KB) = 1988284 Test 019 cpld_restart_c48 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8_faster -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/cpld_control_p8_faster +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/cpld_control_p8_faster Checking test 020 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1297,14 +1297,14 @@ Checking test 020 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 394.803076 - 0: The maximum resident set size (KB) = 1568320 + 0: The total amount of wall time = 395.095625 + 0: The maximum resident set size (KB) = 1568588 Test 020 cpld_control_p8_faster PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_CubedSphereGrid +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_CubedSphereGrid Checking test 021 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1331,28 +1331,28 @@ Checking test 021 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 137.323627 - 0: The maximum resident set size (KB) = 437380 + 0: The total amount of wall time = 143.800553 + 0: The maximum resident set size (KB) = 437356 Test 021 control_CubedSphereGrid PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_CubedSphereGrid_parallel +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_CubedSphereGrid_parallel Checking test 022 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK - 0: The total amount of wall time = 156.812210 - 0: The maximum resident set size (KB) = 437328 + 0: The total amount of wall time = 155.993007 + 0: The maximum resident set size (KB) = 437300 Test 022 control_CubedSphereGrid_parallel PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_latlon -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_latlon +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_latlon Checking test 023 control_latlon results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1363,14 +1363,14 @@ Checking test 023 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 147.273773 - 0: The maximum resident set size (KB) = 437276 + 0: The total amount of wall time = 148.424223 + 0: The maximum resident set size (KB) = 437248 Test 023 control_latlon PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_wrtGauss_netcdf_parallel +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_wrtGauss_netcdf_parallel Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1381,14 +1381,14 @@ Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 161.342078 + 0: The total amount of wall time = 172.994385 0: The maximum resident set size (KB) = 437416 Test 024 control_wrtGauss_netcdf_parallel PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c48 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_c48 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_c48 Checking test 025 control_c48 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1427,14 +1427,14 @@ Checking test 025 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 418.414262 -0: The maximum resident set size (KB) = 632508 +0: The total amount of wall time = 418.916595 +0: The maximum resident set size (KB) = 633364 Test 025 control_c48 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c192 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_c192 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_c192 Checking test 026 control_c192 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1445,14 +1445,14 @@ Checking test 026 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 575.325970 - 0: The maximum resident set size (KB) = 541464 + 0: The total amount of wall time = 587.160161 + 0: The maximum resident set size (KB) = 541564 Test 026 control_c192 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c384 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_c384 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_c384 Checking test 027 control_c384 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf012.nc ............ALT CHECK......OK @@ -1463,14 +1463,14 @@ Checking test 027 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1101.240950 - 0: The maximum resident set size (KB) = 820308 + 0: The total amount of wall time = 1109.222616 + 0: The maximum resident set size (KB) = 820240 Test 027 control_c384 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c384gdas -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_c384gdas +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_c384gdas Checking test 028 control_c384gdas results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -1513,14 +1513,14 @@ Checking test 028 control_c384gdas 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 = 930.927885 - 0: The maximum resident set size (KB) = 952956 + 0: The total amount of wall time = 939.986168 + 0: The maximum resident set size (KB) = 953256 Test 028 control_c384gdas PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_stochy +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_stochy Checking test 029 control_stochy results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf012.nc ............ALT CHECK......OK @@ -1531,28 +1531,28 @@ Checking test 029 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 118.039749 - 0: The maximum resident set size (KB) = 440960 + 0: The total amount of wall time = 99.753568 + 0: The maximum resident set size (KB) = 440988 Test 029 control_stochy PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_stochy_restart +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_stochy_restart Checking test 030 control_stochy_restart results .... Comparing sfcf012.nc ............ALT CHECK......OK Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 55.054516 - 0: The maximum resident set size (KB) = 194936 + 0: The total amount of wall time = 53.982646 + 0: The maximum resident set size (KB) = 195020 Test 030 control_stochy_restart PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_lndp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_lndp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_lndp Checking test 031 control_lndp results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf012.nc ............ALT CHECK......OK @@ -1563,14 +1563,14 @@ Checking test 031 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 86.139843 - 0: The maximum resident set size (KB) = 440704 + 0: The total amount of wall time = 92.447828 + 0: The maximum resident set size (KB) = 440772 Test 031 control_lndp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_iovr4 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_iovr4 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_iovr4 Checking test 032 control_iovr4 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1585,14 +1585,14 @@ Checking test 032 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 145.258798 - 0: The maximum resident set size (KB) = 437444 + 0: The total amount of wall time = 149.626563 + 0: The maximum resident set size (KB) = 437472 Test 032 control_iovr4 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_iovr5 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_iovr5 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_iovr5 Checking test 033 control_iovr5 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1607,14 +1607,14 @@ Checking test 033 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 143.387697 - 0: The maximum resident set size (KB) = 437472 + 0: The total amount of wall time = 149.575617 + 0: The maximum resident set size (KB) = 437420 Test 033 control_iovr5 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_p8 Checking test 034 control_p8 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1661,14 +1661,14 @@ Checking test 034 control_p8 results .... Comparing 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.538413 - 0: The maximum resident set size (KB) = 1379352 + 0: The total amount of wall time = 212.232370 + 0: The maximum resident set size (KB) = 1379372 Test 034 control_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_restart_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_restart_p8 Checking test 035 control_restart_p8 results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -1707,14 +1707,14 @@ Checking test 035 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 107.398495 - 0: The maximum resident set size (KB) = 556344 + 0: The total amount of wall time = 114.269916 + 0: The maximum resident set size (KB) = 556380 Test 035 control_restart_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_qr_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_qr_p8 Checking test 036 control_qr_p8 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1761,14 +1761,14 @@ Checking test 036 control_qr_p8 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 = 178.193654 - 0: The maximum resident set size (KB) = 1384364 + 0: The total amount of wall time = 201.100252 + 0: The maximum resident set size (KB) = 1384332 Test 036 control_qr_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_restart_qr_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_restart_qr_p8 Checking test 037 control_restart_qr_p8 results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -1807,14 +1807,14 @@ Checking test 037 control_restart_qr_p8 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 = 110.346444 - 0: The maximum resident set size (KB) = 581180 + 0: The total amount of wall time = 107.433676 + 0: The maximum resident set size (KB) = 581320 Test 037 control_restart_qr_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_decomp_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_decomp_p8 Checking test 038 control_decomp_p8 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1857,14 +1857,14 @@ Checking test 038 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 189.907797 - 0: The maximum resident set size (KB) = 1374348 + 0: The total amount of wall time = 205.118906 + 0: The maximum resident set size (KB) = 1374260 Test 038 control_decomp_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_2threads_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_2threads_p8 Checking test 039 control_2threads_p8 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1907,14 +1907,14 @@ Checking test 039 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 165.589690 - 0: The maximum resident set size (KB) = 1462860 + 0: The total amount of wall time = 189.408079 + 0: The maximum resident set size (KB) = 1459440 Test 039 control_2threads_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_lndp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_p8_lndp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_p8_lndp Checking test 040 control_p8_lndp results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1933,14 +1933,14 @@ Checking test 040 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 331.724391 - 0: The maximum resident set size (KB) = 1379832 + 0: The total amount of wall time = 352.754779 + 0: The maximum resident set size (KB) = 1379748 Test 040 control_p8_lndp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_rrtmgp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_p8_rrtmgp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_p8_rrtmgp Checking test 041 control_p8_rrtmgp results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1987,14 +1987,14 @@ Checking test 041 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 250.869882 - 0: The maximum resident set size (KB) = 1437200 + 0: The total amount of wall time = 267.281502 + 0: The maximum resident set size (KB) = 1437264 Test 041 control_p8_rrtmgp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_mynn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_p8_mynn +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_p8_mynn Checking test 042 control_p8_mynn results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -2041,14 +2041,14 @@ Checking test 042 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 179.754862 - 0: The maximum resident set size (KB) = 1383608 + 0: The total amount of wall time = 208.890805 + 0: The maximum resident set size (KB) = 1383664 Test 042 control_p8_mynn PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/merra2_thompson -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/merra2_thompson +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/merra2_thompson Checking test 043 merra2_thompson results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -2095,14 +2095,14 @@ Checking test 043 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 204.612844 - 0: The maximum resident set size (KB) = 1385224 + 0: The total amount of wall time = 227.086013 + 0: The maximum resident set size (KB) = 1385236 Test 043 merra2_thompson PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/regional_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/regional_control Checking test 044 regional_control results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf006.nc ............ALT CHECK......OK @@ -2113,28 +2113,28 @@ Checking test 044 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 336.978137 - 0: The maximum resident set size (KB) = 578284 + 0: The total amount of wall time = 336.843324 + 0: The maximum resident set size (KB) = 578216 Test 044 regional_control PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/regional_restart +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/regional_restart Checking test 045 regional_restart results .... Comparing dynf006.nc ............ALT CHECK......OK Comparing phyf006.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 184.371842 - 0: The maximum resident set size (KB) = 577820 + 0: The total amount of wall time = 185.706293 + 0: The maximum resident set size (KB) = 577692 Test 045 regional_restart PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/regional_control_qr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/regional_control_qr Checking test 046 regional_control_qr results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf006.nc ............ALT CHECK......OK @@ -2145,28 +2145,28 @@ Checking test 046 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 330.781561 - 0: The maximum resident set size (KB) = 578212 + 0: The total amount of wall time = 331.067460 + 0: The maximum resident set size (KB) = 578236 Test 046 regional_control_qr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/regional_restart_qr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/regional_restart_qr Checking test 047 regional_restart_qr results .... Comparing dynf006.nc ............ALT CHECK......OK Comparing phyf006.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 179.975446 - 0: The maximum resident set size (KB) = 577716 + 0: The total amount of wall time = 191.604081 + 0: The maximum resident set size (KB) = 577676 Test 047 regional_restart_qr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/regional_decomp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/regional_decomp Checking test 048 regional_decomp results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf006.nc ............ALT CHECK......OK @@ -2177,14 +2177,14 @@ Checking test 048 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 349.558453 - 0: The maximum resident set size (KB) = 581056 + 0: The total amount of wall time = 349.320619 + 0: The maximum resident set size (KB) = 581100 Test 048 regional_decomp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/regional_2threads +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/regional_2threads Checking test 049 regional_2threads results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf006.nc ............ALT CHECK......OK @@ -2195,14 +2195,14 @@ Checking test 049 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 205.160483 - 0: The maximum resident set size (KB) = 585632 + 0: The total amount of wall time = 213.245038 + 0: The maximum resident set size (KB) = 584848 Test 049 regional_2threads PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_noquilt -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/regional_noquilt +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/regional_noquilt Checking test 050 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2210,28 +2210,28 @@ Checking test 050 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 354.519656 - 0: The maximum resident set size (KB) = 573676 + 0: The total amount of wall time = 370.587252 + 0: The maximum resident set size (KB) = 573728 Test 050 regional_noquilt PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_netcdf_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/regional_netcdf_parallel +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/regional_netcdf_parallel Checking test 051 regional_netcdf_parallel results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf006.nc ............ALT CHECK......OK Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 341.384761 - 0: The maximum resident set size (KB) = 578072 + 0: The total amount of wall time = 382.100335 + 0: The maximum resident set size (KB) = 578120 Test 051 regional_netcdf_parallel PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/regional_2dwrtdecomp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/regional_2dwrtdecomp Checking test 052 regional_2dwrtdecomp results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf006.nc ............ALT CHECK......OK @@ -2242,14 +2242,14 @@ Checking test 052 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 334.216164 - 0: The maximum resident set size (KB) = 578264 + 0: The total amount of wall time = 351.489739 + 0: The maximum resident set size (KB) = 578260 Test 052 regional_2dwrtdecomp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/fv3_regional_wofs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/regional_wofs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/regional_wofs Checking test 053 regional_wofs results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf006.nc ............ALT CHECK......OK @@ -2260,14 +2260,14 @@ Checking test 053 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 418.396515 - 0: The maximum resident set size (KB) = 264020 + 0: The total amount of wall time = 417.724831 + 0: The maximum resident set size (KB) = 264068 Test 053 regional_wofs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/rap_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rap_control Checking test 054 rap_control results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -2314,14 +2314,14 @@ Checking test 054 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 476.891287 - 0: The maximum resident set size (KB) = 810624 + 0: The total amount of wall time = 484.987348 + 0: The maximum resident set size (KB) = 810552 Test 054 rap_control PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_spp_sppt_shum_skeb -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/regional_spp_sppt_shum_skeb +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/regional_spp_sppt_shum_skeb Checking test 055 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf001.nc ............ALT CHECK......OK @@ -2332,14 +2332,14 @@ Checking test 055 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 270.886898 - 0: The maximum resident set size (KB) = 891200 + 0: The total amount of wall time = 279.936298 + 0: The maximum resident set size (KB) = 901072 Test 055 regional_spp_sppt_shum_skeb PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/rap_decomp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rap_decomp Checking test 056 rap_decomp results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -2386,14 +2386,14 @@ Checking test 056 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 499.187523 - 0: The maximum resident set size (KB) = 807544 + 0: The total amount of wall time = 501.473480 + 0: The maximum resident set size (KB) = 807240 Test 056 rap_decomp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/rap_2threads +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rap_2threads Checking test 057 rap_2threads results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -2440,14 +2440,14 @@ Checking test 057 rap_2threads results .... Comparing 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.210022 - 0: The maximum resident set size (KB) = 877380 + 0: The total amount of wall time = 457.443255 + 0: The maximum resident set size (KB) = 874812 Test 057 rap_2threads PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/rap_restart +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rap_restart Checking test 058 rap_restart results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -2486,14 +2486,14 @@ Checking test 058 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 242.637880 - 0: The maximum resident set size (KB) = 554164 + 0: The total amount of wall time = 244.617519 + 0: The maximum resident set size (KB) = 554128 Test 058 rap_restart PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/rap_sfcdiff +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rap_sfcdiff Checking test 059 rap_sfcdiff results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -2540,14 +2540,14 @@ Checking test 059 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 478.471387 - 0: The maximum resident set size (KB) = 810792 + 0: The total amount of wall time = 480.981514 + 0: The maximum resident set size (KB) = 810728 Test 059 rap_sfcdiff PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/rap_sfcdiff_decomp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rap_sfcdiff_decomp Checking test 060 rap_sfcdiff_decomp results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -2594,14 +2594,14 @@ Checking test 060 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 501.026573 - 0: The maximum resident set size (KB) = 807424 + 0: The total amount of wall time = 506.194124 + 0: The maximum resident set size (KB) = 807448 Test 060 rap_sfcdiff_decomp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/rap_sfcdiff_restart +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rap_sfcdiff_restart Checking test 061 rap_sfcdiff_restart results .... Comparing sfcf012.nc ............ALT CHECK......OK Comparing atmf012.nc ............ALT CHECK......OK @@ -2640,14 +2640,14 @@ Checking test 061 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 355.767086 - 0: The maximum resident set size (KB) = 552072 + 0: The total amount of wall time = 356.569488 + 0: The maximum resident set size (KB) = 551908 Test 061 rap_sfcdiff_restart PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/hrrr_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hrrr_control Checking test 062 hrrr_control results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -2694,14 +2694,14 @@ Checking test 062 hrrr_control results .... Comparing 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.758234 - 0: The maximum resident set size (KB) = 806820 + 0: The total amount of wall time = 461.293898 + 0: The maximum resident set size (KB) = 806764 Test 062 hrrr_control PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/hrrr_control_decomp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hrrr_control_decomp Checking test 063 hrrr_control_decomp results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -2748,14 +2748,14 @@ Checking test 063 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 481.006917 - 0: The maximum resident set size (KB) = 804788 + 0: The total amount of wall time = 483.888477 + 0: The maximum resident set size (KB) = 804872 Test 063 hrrr_control_decomp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/hrrr_control_2threads +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hrrr_control_2threads Checking test 064 hrrr_control_2threads results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -2802,14 +2802,14 @@ Checking test 064 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 434.877423 - 0: The maximum resident set size (KB) = 873760 + 0: The total amount of wall time = 441.866163 + 0: The maximum resident set size (KB) = 872440 Test 064 hrrr_control_2threads PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/hrrr_control_restart +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hrrr_control_restart Checking test 065 hrrr_control_restart results .... Comparing sfcf012.nc ............ALT CHECK......OK Comparing atmf012.nc ............ALT CHECK......OK @@ -2848,14 +2848,14 @@ Checking test 065 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 343.658870 - 0: The maximum resident set size (KB) = 550312 + 0: The total amount of wall time = 341.809375 + 0: The maximum resident set size (KB) = 550376 Test 065 hrrr_control_restart PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1beta -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/rrfs_v1beta +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rrfs_v1beta Checking test 066 rrfs_v1beta results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -2902,14 +2902,14 @@ Checking test 066 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 476.103593 - 0: The maximum resident set size (KB) = 803096 + 0: The total amount of wall time = 479.697226 + 0: The maximum resident set size (KB) = 802796 Test 066 rrfs_v1beta PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1nssl -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/rrfs_v1nssl +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rrfs_v1nssl Checking test 067 rrfs_v1nssl results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -2924,14 +2924,14 @@ Checking test 067 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 576.196989 - 0: The maximum resident set size (KB) = 494708 + 0: The total amount of wall time = 583.998688 + 0: The maximum resident set size (KB) = 494552 Test 067 rrfs_v1nssl PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/rrfs_v1nssl_nohailnoccn +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rrfs_v1nssl_nohailnoccn Checking test 068 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -2946,14 +2946,14 @@ Checking test 068 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 562.933509 - 0: The maximum resident set size (KB) = 486216 + 0: The total amount of wall time = 571.948953 + 0: The maximum resident set size (KB) = 486236 Test 068 rrfs_v1nssl_nohailnoccn PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/rrfs_smoke_conus13km_hrrr_warm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rrfs_smoke_conus13km_hrrr_warm Checking test 069 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK @@ -2962,14 +2962,14 @@ Checking test 069 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc ............ALT CHECK......OK Comparing atmf002.nc ............ALT CHECK......OK - 0: The total amount of wall time = 179.483974 - 0: The maximum resident set size (KB) = 654408 + 0: The total amount of wall time = 185.077652 + 0: The maximum resident set size (KB) = 654364 Test 069 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/rrfs_smoke_conus13km_hrrr_warm_2threads +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 070 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK @@ -2978,14 +2978,14 @@ Checking test 070 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc ............ALT CHECK......OK Comparing atmf002.nc ............ALT CHECK......OK - 0: The total amount of wall time = 121.345378 - 0: The maximum resident set size (KB) = 666904 + 0: The total amount of wall time = 137.949257 + 0: The maximum resident set size (KB) = 666824 Test 070 rrfs_smoke_conus13km_hrrr_warm_2threads PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/rrfs_conus13km_hrrr_warm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rrfs_conus13km_hrrr_warm Checking test 071 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK @@ -2994,14 +2994,14 @@ Checking test 071 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc ............ALT CHECK......OK Comparing atmf002.nc ............ALT CHECK......OK - 0: The total amount of wall time = 162.814257 - 0: The maximum resident set size (KB) = 633320 + 0: The total amount of wall time = 169.476955 + 0: The maximum resident set size (KB) = 633412 Test 071 rrfs_conus13km_hrrr_warm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/rrfs_smoke_conus13km_radar_tten_warm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rrfs_smoke_conus13km_radar_tten_warm Checking test 072 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK @@ -3010,14 +3010,14 @@ Checking test 072 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc ............ALT CHECK......OK Comparing atmf002.nc ............ALT CHECK......OK - 0: The total amount of wall time = 189.917868 - 0: The maximum resident set size (KB) = 657956 + 0: The total amount of wall time = 185.527589 + 0: The maximum resident set size (KB) = 657944 Test 072 rrfs_smoke_conus13km_radar_tten_warm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmgt -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_csawmgt +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_csawmgt Checking test 073 control_csawmgt results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -3028,14 +3028,14 @@ Checking test 073 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 388.698039 - 0: The maximum resident set size (KB) = 504596 + 0: The total amount of wall time = 395.957352 + 0: The maximum resident set size (KB) = 504592 Test 073 control_csawmgt PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_ras -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_ras +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_ras Checking test 074 control_ras results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -3046,26 +3046,26 @@ Checking test 074 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 201.960547 - 0: The maximum resident set size (KB) = 472576 + 0: The total amount of wall time = 202.886128 + 0: The maximum resident set size (KB) = 472688 Test 074 control_ras PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wam -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_wam +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_wam Checking test 075 control_wam results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK - 0: The total amount of wall time = 130.827386 - 0: The maximum resident set size (KB) = 188672 + 0: The total amount of wall time = 128.475041 + 0: The maximum resident set size (KB) = 188480 Test 075 control_wam PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_faster -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_p8_faster +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_p8_faster Checking test 076 control_p8_faster results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -3112,14 +3112,14 @@ Checking test 076 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 191.631751 - 0: The maximum resident set size (KB) = 1379436 + 0: The total amount of wall time = 192.210239 + 0: The maximum resident set size (KB) = 1379364 Test 076 control_p8_faster PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control_faster -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/regional_control_faster +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/regional_control_faster Checking test 077 regional_control_faster results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf006.nc ............ALT CHECK......OK @@ -3130,56 +3130,56 @@ Checking test 077 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 325.043700 - 0: The maximum resident set size (KB) = 578060 + 0: The total amount of wall time = 310.882780 + 0: The maximum resident set size (KB) = 577968 Test 077 regional_control_faster PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 078 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 908.111373 - 0: The maximum resident set size (KB) = 691584 + 0: The total amount of wall time = 912.123097 + 0: The maximum resident set size (KB) = 691712 Test 078 rrfs_smoke_conus13km_hrrr_warm_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 079 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 532.987738 - 0: The maximum resident set size (KB) = 705368 + 0: The total amount of wall time = 536.992019 + 0: The maximum resident set size (KB) = 705360 Test 079 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/rrfs_conus13km_hrrr_warm_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rrfs_conus13km_hrrr_warm_debug Checking test 080 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 810.932307 - 0: The maximum resident set size (KB) = 666328 + 0: The total amount of wall time = 814.393137 + 0: The maximum resident set size (KB) = 666220 Test 080 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_CubedSphereGrid_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_CubedSphereGrid_debug Checking test 081 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3206,334 +3206,334 @@ Checking test 081 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 168.585602 - 0: The maximum resident set size (KB) = 601824 + 0: The total amount of wall time = 170.699163 + 0: The maximum resident set size (KB) = 601836 Test 081 control_CubedSphereGrid_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_wrtGauss_netcdf_parallel_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_wrtGauss_netcdf_parallel_debug Checking test 082 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 188.464146 - 0: The maximum resident set size (KB) = 601872 + 0: The total amount of wall time = 174.268671 + 0: The maximum resident set size (KB) = 601812 Test 082 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_stochy_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_stochy_debug Checking test 083 control_stochy_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 181.221692 - 0: The maximum resident set size (KB) = 608036 + 0: The total amount of wall time = 181.232435 + 0: The maximum resident set size (KB) = 608256 Test 083 control_stochy_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_lndp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_lndp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_lndp_debug Checking test 084 control_lndp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 162.567810 - 0: The maximum resident set size (KB) = 606564 + 0: The total amount of wall time = 161.916090 + 0: The maximum resident set size (KB) = 606448 Test 084 control_lndp_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmg_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_csawmg_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_csawmg_debug Checking test 085 control_csawmg_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 261.711722 - 0: The maximum resident set size (KB) = 643648 + 0: The total amount of wall time = 260.880860 + 0: The maximum resident set size (KB) = 643644 Test 085 control_csawmg_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmgt_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_csawmgt_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_csawmgt_debug Checking test 086 control_csawmgt_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 254.858852 - 0: The maximum resident set size (KB) = 643012 + 0: The total amount of wall time = 256.240132 + 0: The maximum resident set size (KB) = 643052 Test 086 control_csawmgt_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_ras_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_ras_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_ras_debug Checking test 087 control_ras_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 166.038230 - 0: The maximum resident set size (KB) = 615484 + 0: The total amount of wall time = 163.923865 + 0: The maximum resident set size (KB) = 615432 Test 087 control_ras_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_diag_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_diag_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_diag_debug Checking test 088 control_diag_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 169.685454 - 0: The maximum resident set size (KB) = 661220 + 0: The total amount of wall time = 169.948889 + 0: The maximum resident set size (KB) = 661376 Test 088 control_diag_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_debug_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_debug_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_debug_p8 Checking test 089 control_debug_p8 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 195.115122 - 0: The maximum resident set size (KB) = 1379548 + 0: The total amount of wall time = 191.857740 + 0: The maximum resident set size (KB) = 1379508 Test 089 control_debug_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/regional_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/regional_debug Checking test 090 regional_debug results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf001.nc ............ALT CHECK......OK Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 1054.991798 - 0: The maximum resident set size (KB) = 607516 + 0: The total amount of wall time = 1052.454374 + 0: The maximum resident set size (KB) = 607520 Test 090 regional_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/rap_control_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rap_control_debug Checking test 091 rap_control_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 293.868687 - 0: The maximum resident set size (KB) = 973320 + 0: The total amount of wall time = 298.845346 + 0: The maximum resident set size (KB) = 973372 Test 091 rap_control_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/hrrr_control_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hrrr_control_debug Checking test 092 hrrr_control_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 285.305509 + 0: The total amount of wall time = 292.536477 0: The maximum resident set size (KB) = 970760 Test 092 hrrr_control_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/rap_unified_drag_suite_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rap_unified_drag_suite_debug Checking test 093 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 288.588894 - 0: The maximum resident set size (KB) = 973504 + 0: The total amount of wall time = 296.355439 + 0: The maximum resident set size (KB) = 973368 Test 093 rap_unified_drag_suite_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_diag_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/rap_diag_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rap_diag_debug Checking test 094 rap_diag_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 305.131082 - 0: The maximum resident set size (KB) = 1056276 + 0: The total amount of wall time = 313.961530 + 0: The maximum resident set size (KB) = 1056284 Test 094 rap_diag_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_cires_ugwp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/rap_cires_ugwp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rap_cires_ugwp_debug Checking test 095 rap_cires_ugwp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 301.967278 - 0: The maximum resident set size (KB) = 972032 + 0: The total amount of wall time = 300.570701 + 0: The maximum resident set size (KB) = 971972 Test 095 rap_cires_ugwp_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_cires_ugwp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/rap_unified_ugwp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rap_unified_ugwp_debug Checking test 096 rap_unified_ugwp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 301.585671 - 0: The maximum resident set size (KB) = 973000 + 0: The total amount of wall time = 302.235234 + 0: The maximum resident set size (KB) = 972752 Test 096 rap_unified_ugwp_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_lndp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/rap_lndp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rap_lndp_debug Checking test 097 rap_lndp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 294.215345 - 0: The maximum resident set size (KB) = 974168 + 0: The total amount of wall time = 296.741414 + 0: The maximum resident set size (KB) = 974000 Test 097 rap_lndp_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_flake_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/rap_flake_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rap_flake_debug Checking test 098 rap_flake_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 289.408920 - 0: The maximum resident set size (KB) = 973492 + 0: The total amount of wall time = 293.247714 + 0: The maximum resident set size (KB) = 973408 Test 098 rap_flake_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_progcld_thompson_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/rap_progcld_thompson_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rap_progcld_thompson_debug Checking test 099 rap_progcld_thompson_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 291.520586 - 0: The maximum resident set size (KB) = 973432 + 0: The total amount of wall time = 294.579158 + 0: The maximum resident set size (KB) = 973312 Test 099 rap_progcld_thompson_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_noah_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/rap_noah_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rap_noah_debug Checking test 100 rap_noah_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 284.343624 - 0: The maximum resident set size (KB) = 971488 + 0: The total amount of wall time = 287.547824 + 0: The maximum resident set size (KB) = 971208 Test 100 rap_noah_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/rap_sfcdiff_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rap_sfcdiff_debug Checking test 101 rap_sfcdiff_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 288.120235 - 0: The maximum resident set size (KB) = 973100 + 0: The total amount of wall time = 293.593608 + 0: The maximum resident set size (KB) = 973152 Test 101 rap_sfcdiff_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rap_noah_sfcdiff_cires_ugwp_debug Checking test 102 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 473.684591 - 0: The maximum resident set size (KB) = 971348 + 0: The total amount of wall time = 480.359822 + 0: The maximum resident set size (KB) = 971148 Test 102 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1beta_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/rrfs_v1beta_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rrfs_v1beta_debug Checking test 103 rrfs_v1beta_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 285.609722 - 0: The maximum resident set size (KB) = 969104 + 0: The total amount of wall time = 287.538189 + 0: The maximum resident set size (KB) = 968944 Test 103 rrfs_v1beta_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wam_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_wam_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_wam_debug Checking test 104 control_wam_debug results .... Comparing sfcf019.nc ............ALT CHECK......OK Comparing atmf019.nc ............ALT CHECK......OK - 0: The total amount of wall time = 294.072324 - 0: The maximum resident set size (KB) = 219792 + 0: The total amount of wall time = 292.499915 + 0: The maximum resident set size (KB) = 219740 Test 104 control_wam_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 105 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf001.nc ............ALT CHECK......OK @@ -3544,14 +3544,14 @@ Checking test 105 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 249.612957 - 0: The maximum resident set size (KB) = 801352 + 0: The total amount of wall time = 251.491939 + 0: The maximum resident set size (KB) = 801368 Test 105 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/rap_control_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rap_control_dyn32_phy32 Checking test 106 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -3598,14 +3598,14 @@ Checking test 106 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 398.885946 - 0: The maximum resident set size (KB) = 690952 + 0: The total amount of wall time = 392.416681 + 0: The maximum resident set size (KB) = 690864 Test 106 rap_control_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/hrrr_control_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hrrr_control_dyn32_phy32 Checking test 107 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -3652,14 +3652,14 @@ Checking test 107 hrrr_control_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 214.976468 - 0: The maximum resident set size (KB) = 689068 + 0: The total amount of wall time = 207.292863 + 0: The maximum resident set size (KB) = 689072 Test 107 hrrr_control_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/rap_2threads_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rap_2threads_dyn32_phy32 Checking test 108 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -3706,14 +3706,14 @@ Checking test 108 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 373.496892 - 0: The maximum resident set size (KB) = 747396 + 0: The total amount of wall time = 387.469887 + 0: The maximum resident set size (KB) = 747176 Test 108 rap_2threads_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/hrrr_control_2threads_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hrrr_control_2threads_dyn32_phy32 Checking test 109 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -3760,14 +3760,14 @@ Checking test 109 hrrr_control_2threads_dyn32_phy32 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 = 192.816073 - 0: The maximum resident set size (KB) = 739440 + 0: The total amount of wall time = 200.989145 + 0: The maximum resident set size (KB) = 739512 Test 109 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/hrrr_control_decomp_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hrrr_control_decomp_dyn32_phy32 Checking test 110 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -3814,14 +3814,14 @@ Checking test 110 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 213.960459 - 0: The maximum resident set size (KB) = 688784 + 0: The total amount of wall time = 222.258087 + 0: The maximum resident set size (KB) = 688680 Test 110 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/rap_restart_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rap_restart_dyn32_phy32 Checking test 111 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc ............ALT CHECK......OK Comparing atmf012.nc ............ALT CHECK......OK @@ -3860,14 +3860,14 @@ Checking test 111 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 290.313080 - 0: The maximum resident set size (KB) = 525544 + 0: The total amount of wall time = 300.142733 + 0: The maximum resident set size (KB) = 525460 Test 111 rap_restart_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/hrrr_control_restart_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hrrr_control_restart_dyn32_phy32 Checking test 112 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc ............ALT CHECK......OK Comparing atmf012.nc ............ALT CHECK......OK @@ -3906,14 +3906,14 @@ Checking test 112 hrrr_control_restart_dyn32_phy32 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 = 109.753290 - 0: The maximum resident set size (KB) = 517912 + 0: The total amount of wall time = 113.723527 + 0: The maximum resident set size (KB) = 517532 Test 112 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn64_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/rap_control_dyn64_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rap_control_dyn64_phy32 Checking test 113 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -3960,81 +3960,81 @@ Checking test 113 rap_control_dyn64_phy32 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 = 262.118385 - 0: The maximum resident set size (KB) = 709024 + 0: The total amount of wall time = 265.451627 + 0: The maximum resident set size (KB) = 709196 Test 113 rap_control_dyn64_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/rap_control_debug_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rap_control_debug_dyn32_phy32 Checking test 114 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 285.956769 - 0: The maximum resident set size (KB) = 858260 + 0: The total amount of wall time = 289.760414 + 0: The maximum resident set size (KB) = 858328 Test 114 rap_control_debug_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/hrrr_control_debug_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hrrr_control_debug_dyn32_phy32 Checking test 115 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 280.252001 - 0: The maximum resident set size (KB) = 855044 + 0: The total amount of wall time = 286.125418 + 0: The maximum resident set size (KB) = 855304 Test 115 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/rap_control_dyn64_phy32_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rap_control_dyn64_phy32_debug Checking test 116 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 288.915722 - 0: The maximum resident set size (KB) = 874456 + 0: The total amount of wall time = 298.125925 + 0: The maximum resident set size (KB) = 874420 Test 116 rap_control_dyn64_phy32_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/hafs_regional_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hafs_regional_atm Checking test 117 hafs_regional_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 264.293485 - 0: The maximum resident set size (KB) = 685980 + 0: The total amount of wall time = 1256.911066 + 0: The maximum resident set size (KB) = 686668 Test 117 hafs_regional_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/hafs_regional_atm_thompson_gfdlsf +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hafs_regional_atm_thompson_gfdlsf Checking test 118 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 307.925718 - 0: The maximum resident set size (KB) = 1040636 + 0: The total amount of wall time = 311.779877 + 0: The maximum resident set size (KB) = 1040424 Test 118 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_ocn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/hafs_regional_atm_ocn +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hafs_regional_atm_ocn Checking test 119 hafs_regional_atm_ocn results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4043,14 +4043,14 @@ Checking test 119 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 442.441396 - 0: The maximum resident set size (KB) = 714576 + 0: The total amount of wall time = 448.133317 + 0: The maximum resident set size (KB) = 714464 Test 119 hafs_regional_atm_ocn PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_wav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/hafs_regional_atm_wav +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hafs_regional_atm_wav Checking test 120 hafs_regional_atm_wav results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4059,14 +4059,14 @@ Checking test 120 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 939.027662 - 0: The maximum resident set size (KB) = 747984 + 0: The total amount of wall time = 947.500191 + 0: The maximum resident set size (KB) = 748172 Test 120 hafs_regional_atm_wav PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_ocn_wav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/hafs_regional_atm_ocn_wav +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hafs_regional_atm_ocn_wav Checking test 121 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4077,28 +4077,28 @@ Checking test 121 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 1050.614200 - 0: The maximum resident set size (KB) = 765848 + 0: The total amount of wall time = 1042.676044 + 0: The maximum resident set size (KB) = 767244 Test 121 hafs_regional_atm_ocn_wav PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/hafs_regional_1nest_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hafs_regional_1nest_atm Checking test 122 hafs_regional_1nest_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK Comparing atm.nest02.f006.nc ............ALT CHECK......OK Comparing sfc.nest02.f006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 381.121928 - 0: The maximum resident set size (KB) = 278300 + 0: The total amount of wall time = 380.797829 + 0: The maximum resident set size (KB) = 278348 Test 122 hafs_regional_1nest_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/hafs_regional_telescopic_2nests_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hafs_regional_telescopic_2nests_atm Checking test 123 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4107,28 +4107,28 @@ Checking test 123 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc ............ALT CHECK......OK Comparing sfc.nest03.f006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 445.549594 - 0: The maximum resident set size (KB) = 286392 + 0: The total amount of wall time = 434.305730 + 0: The maximum resident set size (KB) = 286512 Test 123 hafs_regional_telescopic_2nests_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/hafs_global_1nest_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hafs_global_1nest_atm Checking test 124 hafs_global_1nest_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK Comparing atm.nest02.f006.nc ............ALT CHECK......OK Comparing sfc.nest02.f006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 169.679879 - 0: The maximum resident set size (KB) = 183500 + 0: The total amount of wall time = 169.069145 + 0: The maximum resident set size (KB) = 183636 Test 124 hafs_global_1nest_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_multiple_4nests_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/hafs_global_multiple_4nests_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hafs_global_multiple_4nests_atm Checking test 125 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4146,14 +4146,14 @@ Checking test 125 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 491.550707 - 0: The maximum resident set size (KB) = 213000 + 0: The total amount of wall time = 492.462011 + 0: The maximum resident set size (KB) = 232212 Test 125 hafs_global_multiple_4nests_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/hafs_regional_specified_moving_1nest_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hafs_regional_specified_moving_1nest_atm Checking test 126 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4162,28 +4162,28 @@ Checking test 126 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 240.472761 - 0: The maximum resident set size (KB) = 294672 + 0: The total amount of wall time = 245.612311 + 0: The maximum resident set size (KB) = 294344 Test 126 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/hafs_regional_storm_following_1nest_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hafs_regional_storm_following_1nest_atm Checking test 127 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK Comparing atm.nest02.f006.nc ............ALT CHECK......OK Comparing sfc.nest02.f006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 231.783934 - 0: The maximum resident set size (KB) = 294188 + 0: The total amount of wall time = 232.885916 + 0: The maximum resident set size (KB) = 294312 Test 127 hafs_regional_storm_following_1nest_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hafs_regional_storm_following_1nest_atm_ocn Checking test 128 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4192,42 +4192,42 @@ Checking test 128 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 274.474399 - 0: The maximum resident set size (KB) = 322316 + 0: The total amount of wall time = 276.999595 + 0: The maximum resident set size (KB) = 322228 Test 128 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/hafs_global_storm_following_1nest_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hafs_global_storm_following_1nest_atm Checking test 129 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK Comparing atm.nest02.f006.nc ............ALT CHECK......OK Comparing sfc.nest02.f006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 70.078559 - 0: The maximum resident set size (KB) = 202384 + 0: The total amount of wall time = 71.904632 + 0: The maximum resident set size (KB) = 202432 Test 129 hafs_global_storm_following_1nest_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 130 hafs_regional_storm_following_1nest_atm_ocn_debug results .... Comparing atmf001.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atm.nest02.f001.nc ............ALT CHECK......OK Comparing sfc.nest02.f001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 784.076553 - 0: The maximum resident set size (KB) = 352256 + 0: The total amount of wall time = 784.778295 + 0: The maximum resident set size (KB) = 352680 Test 130 hafs_regional_storm_following_1nest_atm_ocn_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 131 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4238,14 +4238,14 @@ Checking test 131 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 715.785021 - 0: The maximum resident set size (KB) = 372064 + 0: The total amount of wall time = 724.270012 + 0: The maximum resident set size (KB) = 373228 Test 131 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_docn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/hafs_regional_docn +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hafs_regional_docn Checking test 132 hafs_regional_docn results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4253,14 +4253,14 @@ Checking test 132 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 398.502943 - 0: The maximum resident set size (KB) = 725060 + 0: The total amount of wall time = 399.748864 + 0: The maximum resident set size (KB) = 725320 Test 132 hafs_regional_docn PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_docn_oisst -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/hafs_regional_docn_oisst +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hafs_regional_docn_oisst Checking test 133 hafs_regional_docn_oisst results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4268,131 +4268,131 @@ Checking test 133 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 404.120629 - 0: The maximum resident set size (KB) = 710232 + 0: The total amount of wall time = 400.869164 + 0: The maximum resident set size (KB) = 710344 Test 133 hafs_regional_docn_oisst PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_datm_cdeps -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/hafs_regional_datm_cdeps +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hafs_regional_datm_cdeps Checking test 134 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 1163.686151 - 0: The maximum resident set size (KB) = 808868 + 0: The total amount of wall time = 1170.387638 + 0: The maximum resident set size (KB) = 808904 Test 134 hafs_regional_datm_cdeps PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/datm_cdeps_control_cfsr Checking test 135 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 169.907528 - 0: The maximum resident set size (KB) = 715704 + 0: The total amount of wall time = 171.670985 + 0: The maximum resident set size (KB) = 717508 Test 135 datm_cdeps_control_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/datm_cdeps_restart_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/datm_cdeps_restart_cfsr Checking test 136 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 102.636247 - 0: The maximum resident set size (KB) = 715900 + 0: The total amount of wall time = 109.034896 + 0: The maximum resident set size (KB) = 716008 Test 136 datm_cdeps_restart_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/datm_cdeps_control_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/datm_cdeps_control_gefs Checking test 137 datm_cdeps_control_gefs 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 = 163.324272 - 0: The maximum resident set size (KB) = 598908 + 0: The total amount of wall time = 160.487001 + 0: The maximum resident set size (KB) = 600272 Test 137 datm_cdeps_control_gefs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_iau_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/datm_cdeps_iau_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/datm_cdeps_iau_gefs Checking test 138 datm_cdeps_iau_gefs 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 = 170.872952 - 0: The maximum resident set size (KB) = 604096 + 0: The total amount of wall time = 168.682819 + 0: The maximum resident set size (KB) = 593096 Test 138 datm_cdeps_iau_gefs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_stochy_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/datm_cdeps_stochy_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/datm_cdeps_stochy_gefs Checking test 139 datm_cdeps_stochy_gefs 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 = 168.047848 - 0: The maximum resident set size (KB) = 595448 + 0: The total amount of wall time = 163.559153 + 0: The maximum resident set size (KB) = 601980 Test 139 datm_cdeps_stochy_gefs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/datm_cdeps_ciceC_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/datm_cdeps_ciceC_cfsr Checking test 140 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 172.059160 - 0: The maximum resident set size (KB) = 715948 + 0: The total amount of wall time = 169.967454 + 0: The maximum resident set size (KB) = 715940 Test 140 datm_cdeps_ciceC_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_bulk_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/datm_cdeps_bulk_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/datm_cdeps_bulk_cfsr Checking test 141 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 167.448386 - 0: The maximum resident set size (KB) = 715772 + 0: The total amount of wall time = 167.750031 + 0: The maximum resident set size (KB) = 715872 Test 141 datm_cdeps_bulk_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_bulk_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/datm_cdeps_bulk_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/datm_cdeps_bulk_gefs Checking test 142 datm_cdeps_bulk_gefs 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 = 162.882109 - 0: The maximum resident set size (KB) = 597900 + 0: The total amount of wall time = 175.894890 + 0: The maximum resident set size (KB) = 600148 Test 142 datm_cdeps_bulk_gefs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_mx025_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/datm_cdeps_mx025_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/datm_cdeps_mx025_cfsr Checking test 143 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4401,14 +4401,14 @@ Checking test 143 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 440.801835 - 0: The maximum resident set size (KB) = 494376 + 0: The total amount of wall time = 480.036253 + 0: The maximum resident set size (KB) = 494472 Test 143 datm_cdeps_mx025_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_mx025_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/datm_cdeps_mx025_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/datm_cdeps_mx025_gefs Checking test 144 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4417,77 +4417,77 @@ Checking test 144 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 428.060880 - 0: The maximum resident set size (KB) = 476240 + 0: The total amount of wall time = 469.219987 + 0: The maximum resident set size (KB) = 476252 Test 144 datm_cdeps_mx025_gefs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/datm_cdeps_multiple_files_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/datm_cdeps_multiple_files_cfsr Checking test 145 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 168.692053 - 0: The maximum resident set size (KB) = 699808 + 0: The total amount of wall time = 168.089744 + 0: The maximum resident set size (KB) = 715664 Test 145 datm_cdeps_multiple_files_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/datm_cdeps_3072x1536_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/datm_cdeps_3072x1536_cfsr Checking test 146 datm_cdeps_3072x1536_cfsr 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 = 253.842061 - 0: The maximum resident set size (KB) = 1952508 + 0: The total amount of wall time = 254.688490 + 0: The maximum resident set size (KB) = 1944796 Test 146 datm_cdeps_3072x1536_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_gfs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/datm_cdeps_gfs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/datm_cdeps_gfs Checking test 147 datm_cdeps_gfs 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 = 260.557742 - 0: The maximum resident set size (KB) = 1947920 + 0: The total amount of wall time = 257.390180 + 0: The maximum resident set size (KB) = 1952536 Test 147 datm_cdeps_gfs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_debug_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/datm_cdeps_debug_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/datm_cdeps_debug_cfsr Checking test 148 datm_cdeps_debug_cfsr 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 = 379.097517 - 0: The maximum resident set size (KB) = 714828 + 0: The total amount of wall time = 375.555717 + 0: The maximum resident set size (KB) = 714876 Test 148 datm_cdeps_debug_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr_faster -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/datm_cdeps_control_cfsr_faster +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/datm_cdeps_control_cfsr_faster Checking test 149 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 169.365005 - 0: The maximum resident set size (KB) = 717364 + 0: The total amount of wall time = 170.319212 + 0: The maximum resident set size (KB) = 715868 Test 149 datm_cdeps_control_cfsr_faster PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/datm_cdeps_lnd_gswp3 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/datm_cdeps_lnd_gswp3 Checking test 150 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4496,14 +4496,14 @@ Checking test 150 datm_cdeps_lnd_gswp3 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 = 25.772165 - 0: The maximum resident set size (KB) = 145808 + 0: The total amount of wall time = 18.102991 + 0: The maximum resident set size (KB) = 145664 Test 150 datm_cdeps_lnd_gswp3 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/datm_cdeps_lnd_gswp3_rst +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/datm_cdeps_lnd_gswp3_rst Checking test 151 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4512,14 +4512,14 @@ Checking test 151 datm_cdeps_lnd_gswp3_rst 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 = 30.219818 - 0: The maximum resident set size (KB) = 149912 + 0: The total amount of wall time = 22.684065 + 0: The maximum resident set size (KB) = 145800 Test 151 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_atmlnd_sbs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_p8_atmlnd_sbs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_p8_atmlnd_sbs Checking test 152 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4604,14 +4604,14 @@ Checking test 152 control_p8_atmlnd_sbs results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 250.067069 - 0: The maximum resident set size (KB) = 1414000 + 0: The total amount of wall time = 253.265812 + 0: The maximum resident set size (KB) = 1413964 Test 152 control_p8_atmlnd_sbs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_atmwav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/control_atmwav +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_atmwav Checking test 153 control_atmwav results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf012.nc ............ALT CHECK......OK @@ -4655,14 +4655,14 @@ Checking test 153 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 101.908217 - 0: The maximum resident set size (KB) = 451480 + 0: The total amount of wall time = 105.535228 + 0: The maximum resident set size (KB) = 451524 Test 153 control_atmwav PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/atmaero_control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/atmaero_control_p8 Checking test 154 atmaero_control_p8 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -4706,14 +4706,14 @@ Checking test 154 atmaero_control_p8 results .... Comparing 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.511374 - 0: The maximum resident set size (KB) = 1448048 + 0: The total amount of wall time = 272.245957 + 0: The maximum resident set size (KB) = 1448088 Test 154 atmaero_control_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8_rad -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/atmaero_control_p8_rad +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/atmaero_control_p8_rad Checking test 155 atmaero_control_p8_rad results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -4757,14 +4757,14 @@ Checking test 155 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 306.708615 - 0: The maximum resident set size (KB) = 1469096 + 0: The total amount of wall time = 451.248576 + 0: The maximum resident set size (KB) = 1469700 Test 155 atmaero_control_p8_rad PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8_rad_micro -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/atmaero_control_p8_rad_micro +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/atmaero_control_p8_rad_micro Checking test 156 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -4808,14 +4808,14 @@ Checking test 156 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 308.926186 - 0: The maximum resident set size (KB) = 1473636 + 0: The total amount of wall time = 312.626411 + 0: The maximum resident set size (KB) = 1473760 Test 156 atmaero_control_p8_rad_micro PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/regional_atmaq +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/regional_atmaq Checking test 157 regional_atmaq results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf003.nc ............ALT CHECK......OK @@ -4831,14 +4831,14 @@ Checking test 157 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 682.314767 - 0: The maximum resident set size (KB) = 968884 + 0: The total amount of wall time = 706.122737 + 0: The maximum resident set size (KB) = 967392 Test 157 regional_atmaq PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq_faster -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43103/regional_atmaq_faster +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/regional_atmaq_faster Checking test 158 regional_atmaq_faster results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf003.nc ............ALT CHECK......OK @@ -4854,12 +4854,12 @@ Checking test 158 regional_atmaq_faster 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.917427 - 0: The maximum resident set size (KB) = 966800 + 0: The total amount of wall time = 605.021924 + 0: The maximum resident set size (KB) = 970724 -Test 158 regional_atmaq_faster PASS +Test 158 regional_atmaq_faster PASS Tries: 2 REGRESSION TEST WAS SUCCESSFUL -Mon Mar 27 23:21:53 EDT 2023 -Elapsed time: 05h:49m:08s. Have a nice day! +Wed Mar 29 05:45:42 EDT 2023 +Elapsed time: 12h:42m:47s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 73035f0794f..1693e92b6eb 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,21 +1,21 @@ -Mon Mar 27 21:33:44 UTC 2023 +Tue Mar 28 21:04:58 UTC 2023 Start Regression test -Compile 001 elapsed time 183 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 189 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 317 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 101 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 184 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 397 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 318 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 319 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 267 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 232 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 156 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 012 elapsed time 113 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 001 elapsed time 190 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 192 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 338 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 111 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 193 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 404 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 349 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 340 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 266 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 237 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 164 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 012 elapsed time 125 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/control_c48 Checking test 001 control_c48 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -54,14 +54,14 @@ Checking test 001 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 684.971768 -0: The maximum resident set size (KB) = 701800 +0: The total amount of wall time = 689.427595 +0: The maximum resident set size (KB) = 701584 Test 001 control_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/control_stochy Checking test 002 control_stochy results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf012.nc ............ALT CHECK......OK @@ -72,14 +72,14 @@ Checking test 002 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 665.276370 - 0: The maximum resident set size (KB) = 478320 + 0: The total amount of wall time = 659.646485 + 0: The maximum resident set size (KB) = 477212 Test 002 control_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/control_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/control_ras Checking test 003 control_ras results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -90,14 +90,14 @@ Checking test 003 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 838.119430 - 0: The maximum resident set size (KB) = 487928 + 0: The total amount of wall time = 843.950882 + 0: The maximum resident set size (KB) = 488380 Test 003 control_ras PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/control_p8 Checking test 004 control_p8 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -144,14 +144,14 @@ Checking test 004 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 929.442075 - 0: The maximum resident set size (KB) = 1236452 + 0: The total amount of wall time = 899.771944 + 0: The maximum resident set size (KB) = 1235064 Test 004 control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rap_control Checking test 005 rap_control results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -198,14 +198,14 @@ Checking test 005 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1459.945803 - 0: The maximum resident set size (KB) = 828936 + 0: The total amount of wall time = 1452.926316 + 0: The maximum resident set size (KB) = 829972 Test 005 rap_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/rap_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rap_decomp Checking test 006 rap_decomp results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -252,14 +252,14 @@ Checking test 006 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1469.656618 - 0: The maximum resident set size (KB) = 826732 + 0: The total amount of wall time = 1428.201850 + 0: The maximum resident set size (KB) = 833176 Test 006 rap_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/rap_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rap_2threads Checking test 007 rap_2threads results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -306,14 +306,14 @@ Checking test 007 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1343.194359 - 0: The maximum resident set size (KB) = 898832 + 0: The total amount of wall time = 1349.078164 + 0: The maximum resident set size (KB) = 898384 Test 007 rap_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/rap_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rap_restart Checking test 008 rap_restart results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -352,14 +352,14 @@ Checking test 008 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 726.378735 - 0: The maximum resident set size (KB) = 550420 + 0: The total amount of wall time = 725.935335 + 0: The maximum resident set size (KB) = 546124 Test 008 rap_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rap_sfcdiff Checking test 009 rap_sfcdiff results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -406,14 +406,14 @@ Checking test 009 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1515.135275 - 0: The maximum resident set size (KB) = 828596 + 0: The total amount of wall time = 1499.799495 + 0: The maximum resident set size (KB) = 829704 Test 009 rap_sfcdiff PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/rap_sfcdiff_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rap_sfcdiff_decomp Checking test 010 rap_sfcdiff_decomp results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -460,14 +460,14 @@ Checking test 010 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1449.886824 - 0: The maximum resident set size (KB) = 831552 + 0: The total amount of wall time = 1465.500091 + 0: The maximum resident set size (KB) = 830696 Test 010 rap_sfcdiff_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/rap_sfcdiff_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rap_sfcdiff_restart Checking test 011 rap_sfcdiff_restart results .... Comparing sfcf012.nc ............ALT CHECK......OK Comparing atmf012.nc ............ALT CHECK......OK @@ -506,14 +506,14 @@ Checking test 011 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1079.023333 - 0: The maximum resident set size (KB) = 556936 + 0: The total amount of wall time = 1086.449420 + 0: The maximum resident set size (KB) = 555136 Test 011 rap_sfcdiff_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/hrrr_control Checking test 012 hrrr_control results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -560,14 +560,14 @@ Checking test 012 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1434.361835 - 0: The maximum resident set size (KB) = 830168 + 0: The total amount of wall time = 1449.246804 + 0: The maximum resident set size (KB) = 828968 Test 012 hrrr_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/hrrr_control_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/hrrr_control_2threads Checking test 013 hrrr_control_2threads results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -614,14 +614,14 @@ Checking test 013 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1347.605821 - 0: The maximum resident set size (KB) = 894104 + 0: The total amount of wall time = 1312.889516 + 0: The maximum resident set size (KB) = 894480 Test 013 hrrr_control_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/hrrr_control_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/hrrr_control_decomp Checking test 014 hrrr_control_decomp results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -668,14 +668,14 @@ Checking test 014 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1446.265243 - 0: The maximum resident set size (KB) = 831928 + 0: The total amount of wall time = 1442.061438 + 0: The maximum resident set size (KB) = 828952 Test 014 hrrr_control_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/hrrr_control_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/hrrr_control_restart Checking test 015 hrrr_control_restart results .... Comparing sfcf012.nc ............ALT CHECK......OK Comparing atmf012.nc ............ALT CHECK......OK @@ -714,14 +714,14 @@ Checking test 015 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1044.670518 - 0: The maximum resident set size (KB) = 551948 + 0: The total amount of wall time = 1034.270276 + 0: The maximum resident set size (KB) = 551712 Test 015 hrrr_control_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rrfs_v1beta Checking test 016 rrfs_v1beta results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -768,14 +768,14 @@ Checking test 016 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1447.253765 - 0: The maximum resident set size (KB) = 825620 + 0: The total amount of wall time = 1480.167185 + 0: The maximum resident set size (KB) = 825796 Test 016 rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rrfs_smoke_conus13km_hrrr_warm Checking test 017 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK @@ -784,14 +784,14 @@ Checking test 017 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc ............ALT CHECK......OK Comparing atmf002.nc ............ALT CHECK......OK - 0: The total amount of wall time = 800.354375 - 0: The maximum resident set size (KB) = 668448 + 0: The total amount of wall time = 811.187823 + 0: The maximum resident set size (KB) = 668736 Test 017 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/rrfs_smoke_conus13km_hrrr_warm_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 018 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK @@ -800,14 +800,14 @@ Checking test 018 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc ............ALT CHECK......OK Comparing atmf002.nc ............ALT CHECK......OK - 0: The total amount of wall time = 1041.685864 - 0: The maximum resident set size (KB) = 666148 + 0: The total amount of wall time = 1055.815848 + 0: The maximum resident set size (KB) = 666436 Test 018 rrfs_smoke_conus13km_hrrr_warm_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rrfs_conus13km_hrrr_warm Checking test 019 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK @@ -816,14 +816,14 @@ Checking test 019 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc ............ALT CHECK......OK Comparing atmf002.nc ............ALT CHECK......OK - 0: The total amount of wall time = 768.840967 - 0: The maximum resident set size (KB) = 645444 + 0: The total amount of wall time = 779.189968 + 0: The maximum resident set size (KB) = 643996 Test 019 rrfs_conus13km_hrrr_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/rrfs_smoke_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rrfs_smoke_conus13km_radar_tten_warm Checking test 020 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK @@ -832,222 +832,222 @@ Checking test 020 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc ............ALT CHECK......OK Comparing atmf002.nc ............ALT CHECK......OK - 0: The total amount of wall time = 767.118611 - 0: The maximum resident set size (KB) = 671580 + 0: The total amount of wall time = 772.572871 + 0: The maximum resident set size (KB) = 672480 Test 020 rrfs_smoke_conus13km_radar_tten_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/control_diag_debug Checking test 021 control_diag_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 128.887192 - 0: The maximum resident set size (KB) = 524908 + 0: The total amount of wall time = 129.302028 + 0: The maximum resident set size (KB) = 528088 Test 021 control_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/regional_debug Checking test 022 regional_debug results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf001.nc ............ALT CHECK......OK Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 658.111614 - 0: The maximum resident set size (KB) = 593956 + 0: The total amount of wall time = 750.078306 + 0: The maximum resident set size (KB) = 595116 Test 022 regional_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rap_control_debug Checking test 023 rap_control_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 176.041163 - 0: The maximum resident set size (KB) = 842008 + 0: The total amount of wall time = 180.783260 + 0: The maximum resident set size (KB) = 847552 Test 023 rap_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/hrrr_control_debug Checking test 024 hrrr_control_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 171.428228 - 0: The maximum resident set size (KB) = 840368 + 0: The total amount of wall time = 177.798266 + 0: The maximum resident set size (KB) = 841300 Test 024 hrrr_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rap_diag_debug Checking test 025 rap_diag_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 215.021304 - 0: The maximum resident set size (KB) = 927512 + 0: The total amount of wall time = 215.608298 + 0: The maximum resident set size (KB) = 930240 Test 025 rap_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rap_noah_sfcdiff_cires_ugwp_debug Checking test 026 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 282.475379 - 0: The maximum resident set size (KB) = 840848 + 0: The total amount of wall time = 279.306294 + 0: The maximum resident set size (KB) = 849208 Test 026 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rap_progcld_thompson_debug Checking test 027 rap_progcld_thompson_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 179.857769 - 0: The maximum resident set size (KB) = 847120 + 0: The total amount of wall time = 183.334186 + 0: The maximum resident set size (KB) = 841012 Test 027 rap_progcld_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rrfs_v1beta_debug Checking test 028 rrfs_v1beta_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 174.999761 - 0: The maximum resident set size (KB) = 839324 + 0: The total amount of wall time = 175.997113 + 0: The maximum resident set size (KB) = 839792 Test 028 rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/control_ras_debug Checking test 029 control_ras_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 105.187600 - 0: The maximum resident set size (KB) = 481660 + 0: The total amount of wall time = 107.004944 + 0: The maximum resident set size (KB) = 480580 Test 029 control_ras_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/control_stochy_debug Checking test 030 control_stochy_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 120.068527 - 0: The maximum resident set size (KB) = 477304 + 0: The total amount of wall time = 122.481039 + 0: The maximum resident set size (KB) = 476752 Test 030 control_stochy_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/control_debug_p8 Checking test 031 control_debug_p8 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 122.092029 - 0: The maximum resident set size (KB) = 1231484 + 0: The total amount of wall time = 124.188742 + 0: The maximum resident set size (KB) = 1232312 Test 031 control_debug_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 032 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 645.795496 - 0: The maximum resident set size (KB) = 683168 + 0: The total amount of wall time = 611.530387 + 0: The maximum resident set size (KB) = 687788 Test 032 rrfs_smoke_conus13km_hrrr_warm_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 033 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 768.581695 - 0: The maximum resident set size (KB) = 684756 + 0: The total amount of wall time = 757.560083 + 0: The maximum resident set size (KB) = 687144 Test 033 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/rrfs_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rrfs_conus13km_hrrr_warm_debug Checking test 034 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 571.626702 - 0: The maximum resident set size (KB) = 661336 + 0: The total amount of wall time = 572.602498 + 0: The maximum resident set size (KB) = 659640 Test 034 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/control_wam_debug Checking test 035 control_wam_debug results .... Comparing sfcf019.nc ............ALT CHECK......OK Comparing atmf019.nc ............ALT CHECK......OK - 0: The total amount of wall time = 191.343348 - 0: The maximum resident set size (KB) = 193844 + 0: The total amount of wall time = 187.270956 + 0: The maximum resident set size (KB) = 194464 Test 035 control_wam_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rap_control_dyn32_phy32 Checking test 036 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -1094,14 +1094,14 @@ Checking test 036 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1489.037752 - 0: The maximum resident set size (KB) = 690176 + 0: The total amount of wall time = 1462.495853 + 0: The maximum resident set size (KB) = 684648 Test 036 rap_control_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/hrrr_control_dyn32_phy32 Checking test 037 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -1148,14 +1148,14 @@ Checking test 037 hrrr_control_dyn32_phy32 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 = 735.129877 - 0: The maximum resident set size (KB) = 683428 + 0: The total amount of wall time = 748.565706 + 0: The maximum resident set size (KB) = 688920 Test 037 hrrr_control_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/rap_2threads_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rap_2threads_dyn32_phy32 Checking test 038 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -1202,14 +1202,14 @@ Checking test 038 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1351.164764 - 0: The maximum resident set size (KB) = 730424 + 0: The total amount of wall time = 1358.606002 + 0: The maximum resident set size (KB) = 734724 Test 038 rap_2threads_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/hrrr_control_2threads_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/hrrr_control_2threads_dyn32_phy32 Checking test 039 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -1256,14 +1256,14 @@ Checking test 039 hrrr_control_2threads_dyn32_phy32 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 = 650.862561 - 0: The maximum resident set size (KB) = 727012 + 0: The total amount of wall time = 677.228576 + 0: The maximum resident set size (KB) = 727676 Test 039 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/hrrr_control_decomp_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/hrrr_control_decomp_dyn32_phy32 Checking test 040 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -1310,14 +1310,14 @@ Checking test 040 hrrr_control_decomp_dyn32_phy32 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 = 742.531554 - 0: The maximum resident set size (KB) = 683788 + 0: The total amount of wall time = 710.212133 + 0: The maximum resident set size (KB) = 683996 Test 040 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/rap_restart_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rap_restart_dyn32_phy32 Checking test 041 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc ............ALT CHECK......OK Comparing atmf012.nc ............ALT CHECK......OK @@ -1356,14 +1356,14 @@ Checking test 041 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1057.796340 - 0: The maximum resident set size (KB) = 512268 + 0: The total amount of wall time = 1084.970850 + 0: The maximum resident set size (KB) = 511720 Test 041 rap_restart_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/hrrr_control_restart_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/hrrr_control_restart_dyn32_phy32 Checking test 042 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc ............ALT CHECK......OK Comparing atmf012.nc ............ALT CHECK......OK @@ -1402,14 +1402,14 @@ Checking test 042 hrrr_control_restart_dyn32_phy32 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 = 371.409650 - 0: The maximum resident set size (KB) = 509364 + 0: The total amount of wall time = 367.953225 + 0: The maximum resident set size (KB) = 507656 Test 042 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rap_control_dyn64_phy32 Checking test 043 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -1456,56 +1456,56 @@ Checking test 043 rap_control_dyn64_phy32 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 = 1072.195048 - 0: The maximum resident set size (KB) = 711256 + 0: The total amount of wall time = 1078.690957 + 0: The maximum resident set size (KB) = 710556 Test 043 rap_control_dyn64_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rap_control_debug_dyn32_phy32 Checking test 044 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 176.138654 - 0: The maximum resident set size (KB) = 700712 + 0: The total amount of wall time = 178.956055 + 0: The maximum resident set size (KB) = 702948 Test 044 rap_control_debug_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/hrrr_control_debug_dyn32_phy32 Checking test 045 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 175.609709 - 0: The maximum resident set size (KB) = 704216 + 0: The total amount of wall time = 177.063375 + 0: The maximum resident set size (KB) = 703788 Test 045 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/rap_control_dyn64_phy32_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rap_control_dyn64_phy32_debug Checking test 046 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 206.847789 - 0: The maximum resident set size (KB) = 720996 + 0: The total amount of wall time = 212.904990 + 0: The maximum resident set size (KB) = 719080 Test 046 rap_control_dyn64_phy32_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/cpld_control_p8 Checking test 047 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1570,14 +1570,14 @@ Checking test 047 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1682.864481 - 0: The maximum resident set size (KB) = 1430676 + 0: The total amount of wall time = 1777.796152 + 0: The maximum resident set size (KB) = 1432284 Test 047 cpld_control_p8 PASS Tries: 2 baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/cpld_control_nowave_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/cpld_control_nowave_noaero_p8 Checking test 048 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1639,14 +1639,14 @@ Checking test 048 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 1237.601064 - 0: The maximum resident set size (KB) = 1333788 + 0: The total amount of wall time = 1223.762699 + 0: The maximum resident set size (KB) = 1334820 Test 048 cpld_control_nowave_noaero_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/cpld_debug_p8 Checking test 049 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1699,25 +1699,25 @@ Checking test 049 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1210.042297 - 0: The maximum resident set size (KB) = 1444932 + 0: The total amount of wall time = 891.505453 + 0: The maximum resident set size (KB) = 1444888 Test 049 cpld_debug_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23966/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/datm_cdeps_control_cfsr Checking test 050 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 173.723837 - 0: The maximum resident set size (KB) = 664656 + 0: The total amount of wall time = 182.909636 + 0: The maximum resident set size (KB) = 661592 Test 050 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Mon Mar 27 22:45:34 UTC 2023 -Elapsed time: 01h:11m:50s. Have a nice day! +Tue Mar 28 22:22:49 UTC 2023 +Elapsed time: 01h:17m:52s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 4e4bc33704a..b89ea04e24e 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,42 +1,42 @@ -Mon Mar 27 21:17:28 UTC 2023 +Tue Mar 28 20:48:45 UTC 2023 Start Regression test -Compile 001 elapsed time 621 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 611 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 569 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 226 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 203 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 524 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 520 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 696 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 530 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 495 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 011 elapsed time 479 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 441 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 585 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 208 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 205 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 458 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 474 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 164 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 171 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 566 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 021 elapsed time 190 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 630 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 535 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 024 elapsed time 182 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 114 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 001 elapsed time 616 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 616 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 562 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 248 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 213 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 532 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 523 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 703 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 563 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 517 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 492 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 456 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 591 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 230 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 183 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 466 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 481 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 180 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 169 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 605 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 021 elapsed time 205 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 645 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 563 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 024 elapsed time 188 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 131 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON Compile 026 elapsed time 177 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 59 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 490 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 525 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 483 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 457 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 166 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 538 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 027 elapsed time 58 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 492 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 539 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 487 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 464 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 197 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 579 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8_mixedmode -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/cpld_control_p8_mixedmode +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -101,14 +101,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 311.297690 - 0: The maximum resident set size (KB) = 3150912 + 0: The total amount of wall time = 323.229887 + 0: The maximum resident set size (KB) = 3146352 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_gfsv17 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/cpld_control_gfsv17 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -172,14 +172,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 225.072116 - 0: The maximum resident set size (KB) = 1733920 + 0: The total amount of wall time = 235.569057 + 0: The maximum resident set size (KB) = 1725256 Test 002 cpld_control_gfsv17 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -244,14 +244,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 336.917649 - 0: The maximum resident set size (KB) = 3182704 + 0: The total amount of wall time = 361.665717 + 0: The maximum resident set size (KB) = 3182908 Test 003 cpld_control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/cpld_restart_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -304,14 +304,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 194.710993 - 0: The maximum resident set size (KB) = 3053316 + 0: The total amount of wall time = 205.846788 + 0: The maximum resident set size (KB) = 3049120 Test 004 cpld_restart_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/cpld_control_qr_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -376,14 +376,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 337.633735 - 0: The maximum resident set size (KB) = 3190936 + 0: The total amount of wall time = 351.863437 + 0: The maximum resident set size (KB) = 3196524 Test 005 cpld_control_qr_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/cpld_restart_qr_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -436,14 +436,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 201.765746 - 0: The maximum resident set size (KB) = 3065628 + 0: The total amount of wall time = 207.428045 + 0: The maximum resident set size (KB) = 3060728 Test 006 cpld_restart_qr_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/cpld_2threads_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -496,14 +496,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 348.370917 - 0: The maximum resident set size (KB) = 3515372 + 0: The total amount of wall time = 362.837184 + 0: The maximum resident set size (KB) = 3520752 Test 007 cpld_2threads_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/cpld_decomp_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -556,14 +556,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 338.753568 - 0: The maximum resident set size (KB) = 3170516 + 0: The total amount of wall time = 353.684401 + 0: The maximum resident set size (KB) = 3167680 Test 008 cpld_decomp_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/cpld_mpi_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -616,14 +616,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 278.055014 - 0: The maximum resident set size (KB) = 3027576 + 0: The total amount of wall time = 294.763638 + 0: The maximum resident set size (KB) = 3025824 Test 009 cpld_mpi_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_ciceC_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/cpld_control_ciceC_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -688,14 +688,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 341.953887 - 0: The maximum resident set size (KB) = 3182604 + 0: The total amount of wall time = 350.334567 + 0: The maximum resident set size (KB) = 3189124 Test 010 cpld_control_ciceC_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/cpld_control_c192_p8 Checking test 011 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -748,14 +748,14 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 592.022490 - 0: The maximum resident set size (KB) = 3264920 + 0: The total amount of wall time = 611.248630 + 0: The maximum resident set size (KB) = 3260532 Test 011 cpld_control_c192_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/cpld_restart_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/cpld_restart_c192_p8 Checking test 012 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -808,14 +808,14 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 388.170614 - 0: The maximum resident set size (KB) = 3156724 + 0: The total amount of wall time = 402.874053 + 0: The maximum resident set size (KB) = 3156308 Test 012 cpld_restart_c192_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/cpld_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/cpld_bmark_p8 Checking test 013 cpld_bmark_p8 results .... Comparing sfcf006.nc ............ALT CHECK......OK Comparing atmf006.nc ............ALT CHECK......OK @@ -863,14 +863,14 @@ Checking test 013 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 709.892974 - 0: The maximum resident set size (KB) = 4043308 + 0: The total amount of wall time = 760.535974 + 0: The maximum resident set size (KB) = 4038564 Test 013 cpld_bmark_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/cpld_restart_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/cpld_restart_bmark_p8 Checking test 014 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc ............ALT CHECK......OK Comparing atmf006.nc ............ALT CHECK......OK @@ -918,14 +918,14 @@ Checking test 014 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 438.914474 - 0: The maximum resident set size (KB) = 3975720 + 0: The total amount of wall time = 473.708731 + 0: The maximum resident set size (KB) = 3985948 Test 014 cpld_restart_bmark_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/cpld_control_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/cpld_control_noaero_p8 Checking test 015 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -989,14 +989,14 @@ Checking test 015 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 263.997235 - 0: The maximum resident set size (KB) = 1721884 + 0: The total amount of wall time = 275.006060 + 0: The maximum resident set size (KB) = 1721216 Test 015 cpld_control_noaero_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/cpld_control_nowave_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/cpld_control_nowave_noaero_p8 Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1058,14 +1058,14 @@ Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 259.519719 - 0: The maximum resident set size (KB) = 1763696 + 0: The total amount of wall time = 269.809065 + 0: The maximum resident set size (KB) = 1765620 Test 016 cpld_control_nowave_noaero_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/cpld_debug_p8 Checking test 017 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1118,14 +1118,14 @@ Checking test 017 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 656.619401 - 0: The maximum resident set size (KB) = 3247324 + 0: The total amount of wall time = 660.314091 + 0: The maximum resident set size (KB) = 3241696 Test 017 cpld_debug_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_debug_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/cpld_debug_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/cpld_debug_noaero_p8 Checking test 018 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1177,14 +1177,14 @@ Checking test 018 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 412.476038 - 0: The maximum resident set size (KB) = 1735496 + 0: The total amount of wall time = 410.449522 + 0: The maximum resident set size (KB) = 1739032 Test 018 cpld_debug_noaero_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_noaero_p8_agrid -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/cpld_control_noaero_p8_agrid +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/cpld_control_noaero_p8_agrid Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1246,14 +1246,14 @@ Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 266.550487 - 0: The maximum resident set size (KB) = 1759516 + 0: The total amount of wall time = 278.221229 + 0: The maximum resident set size (KB) = 1766652 Test 019 cpld_control_noaero_p8_agrid PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/cpld_control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/cpld_control_c48 Checking test 020 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1303,14 +1303,14 @@ Checking test 020 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 576.524233 - 0: The maximum resident set size (KB) = 2806928 + 0: The total amount of wall time = 584.173106 + 0: The maximum resident set size (KB) = 2801988 Test 020 cpld_control_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/cpld_warmstart_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/cpld_warmstart_c48 Checking test 021 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1360,14 +1360,14 @@ Checking test 021 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 151.512645 - 0: The maximum resident set size (KB) = 2801180 + 0: The total amount of wall time = 159.417077 + 0: The maximum resident set size (KB) = 2799804 Test 021 cpld_warmstart_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/cpld_restart_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/cpld_restart_c48 Checking test 022 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1417,14 +1417,14 @@ Checking test 022 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 82.203909 - 0: The maximum resident set size (KB) = 2233196 + 0: The total amount of wall time = 93.995011 + 0: The maximum resident set size (KB) = 2233976 Test 022 cpld_restart_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/cpld_control_p8_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/cpld_control_p8_faster Checking test 023 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1489,14 +1489,14 @@ Checking test 023 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 316.470653 - 0: The maximum resident set size (KB) = 3183876 + 0: The total amount of wall time = 339.751076 + 0: The maximum resident set size (KB) = 3184900 Test 023 cpld_control_p8_faster PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_CubedSphereGrid +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_CubedSphereGrid Checking test 024 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1523,28 +1523,28 @@ Checking test 024 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 132.498373 - 0: The maximum resident set size (KB) = 633224 + 0: The total amount of wall time = 131.871471 + 0: The maximum resident set size (KB) = 637320 Test 024 control_CubedSphereGrid PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_CubedSphereGrid_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_CubedSphereGrid_parallel Checking test 025 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK - 0: The total amount of wall time = 130.599584 - 0: The maximum resident set size (KB) = 633424 + 0: The total amount of wall time = 131.110885 + 0: The maximum resident set size (KB) = 628220 Test 025 control_CubedSphereGrid_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_latlon -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_latlon +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_latlon Checking test 026 control_latlon results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1555,14 +1555,14 @@ Checking test 026 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.756589 - 0: The maximum resident set size (KB) = 640360 + 0: The total amount of wall time = 135.358191 + 0: The maximum resident set size (KB) = 633576 Test 026 control_latlon PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wrtGauss_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_wrtGauss_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_wrtGauss_netcdf_parallel Checking test 027 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1573,14 +1573,14 @@ Checking test 027 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 138.980495 - 0: The maximum resident set size (KB) = 635292 + 0: The total amount of wall time = 138.750449 + 0: The maximum resident set size (KB) = 629300 Test 027 control_wrtGauss_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_c48 Checking test 028 control_c48 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1619,14 +1619,14 @@ Checking test 028 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 372.387409 -0: The maximum resident set size (KB) = 829564 +0: The total amount of wall time = 369.958868 +0: The maximum resident set size (KB) = 824636 Test 028 control_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_c192 Checking test 029 control_c192 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1637,14 +1637,14 @@ Checking test 029 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 527.507770 - 0: The maximum resident set size (KB) = 764660 + 0: The total amount of wall time = 527.752203 + 0: The maximum resident set size (KB) = 771804 Test 029 control_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_c384 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_c384 Checking test 030 control_c384 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf012.nc ............ALT CHECK......OK @@ -1655,14 +1655,14 @@ Checking test 030 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 526.102697 - 0: The maximum resident set size (KB) = 1263880 + 0: The total amount of wall time = 527.714325 + 0: The maximum resident set size (KB) = 1266888 Test 030 control_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c384gdas -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_c384gdas +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_c384gdas Checking test 031 control_c384gdas results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -1705,14 +1705,14 @@ Checking test 031 control_c384gdas results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 456.461960 - 0: The maximum resident set size (KB) = 1380488 + 0: The total amount of wall time = 476.274347 + 0: The maximum resident set size (KB) = 1383088 Test 031 control_c384gdas PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_stochy Checking test 032 control_stochy results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf012.nc ............ALT CHECK......OK @@ -1723,28 +1723,28 @@ Checking test 032 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 89.229661 - 0: The maximum resident set size (KB) = 639096 + 0: The total amount of wall time = 92.106673 + 0: The maximum resident set size (KB) = 640568 Test 032 control_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_stochy_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_stochy_restart Checking test 033 control_stochy_restart results .... Comparing sfcf012.nc ............ALT CHECK......OK Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 47.496012 - 0: The maximum resident set size (KB) = 490812 + 0: The total amount of wall time = 53.634214 + 0: The maximum resident set size (KB) = 483228 Test 033 control_stochy_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_lndp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_lndp Checking test 034 control_lndp results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf012.nc ............ALT CHECK......OK @@ -1755,14 +1755,14 @@ Checking test 034 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 84.949754 - 0: The maximum resident set size (KB) = 635844 + 0: The total amount of wall time = 92.299048 + 0: The maximum resident set size (KB) = 636392 Test 034 control_lndp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_iovr4 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_iovr4 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_iovr4 Checking test 035 control_iovr4 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1777,14 +1777,14 @@ Checking test 035 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 138.864754 - 0: The maximum resident set size (KB) = 636496 + 0: The total amount of wall time = 142.343413 + 0: The maximum resident set size (KB) = 636584 Test 035 control_iovr4 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_iovr5 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_iovr5 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_iovr5 Checking test 036 control_iovr5 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1799,14 +1799,14 @@ Checking test 036 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 137.544502 - 0: The maximum resident set size (KB) = 635032 + 0: The total amount of wall time = 145.910491 + 0: The maximum resident set size (KB) = 634172 Test 036 control_iovr5 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_p8 Checking test 037 control_p8 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1853,14 +1853,14 @@ Checking test 037 control_p8 results .... Comparing 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.129959 - 0: The maximum resident set size (KB) = 1602120 + 0: The total amount of wall time = 171.932492 + 0: The maximum resident set size (KB) = 1605520 Test 037 control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_restart_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_restart_p8 Checking test 038 control_restart_p8 results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -1899,14 +1899,14 @@ Checking test 038 control_restart_p8 results .... Comparing 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.909114 - 0: The maximum resident set size (KB) = 875564 + 0: The total amount of wall time = 90.200824 + 0: The maximum resident set size (KB) = 880816 Test 038 control_restart_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_qr_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_qr_p8 Checking test 039 control_qr_p8 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1953,14 +1953,14 @@ Checking test 039 control_qr_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 168.411735 - 0: The maximum resident set size (KB) = 1609912 + 0: The total amount of wall time = 172.385732 + 0: The maximum resident set size (KB) = 1608376 Test 039 control_qr_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_restart_qr_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_restart_qr_p8 Checking test 040 control_restart_qr_p8 results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -1999,14 +1999,14 @@ Checking test 040 control_restart_qr_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 89.474836 - 0: The maximum resident set size (KB) = 871168 + 0: The total amount of wall time = 97.474956 + 0: The maximum resident set size (KB) = 875016 Test 040 control_restart_qr_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_decomp_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_decomp_p8 Checking test 041 control_decomp_p8 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2049,14 +2049,14 @@ Checking test 041 control_decomp_p8 results .... Comparing 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.365778 - 0: The maximum resident set size (KB) = 1591824 + 0: The total amount of wall time = 179.113463 + 0: The maximum resident set size (KB) = 1590932 Test 041 control_decomp_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_2threads_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_2threads_p8 Checking test 042 control_2threads_p8 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2099,14 +2099,14 @@ Checking test 042 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 156.935705 - 0: The maximum resident set size (KB) = 1697684 + 0: The total amount of wall time = 160.635609 + 0: The maximum resident set size (KB) = 1690320 Test 042 control_2threads_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_p8_lndp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_p8_lndp Checking test 043 control_p8_lndp results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -2125,14 +2125,14 @@ Checking test 043 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 310.921368 - 0: The maximum resident set size (KB) = 1609960 + 0: The total amount of wall time = 321.926081 + 0: The maximum resident set size (KB) = 1604208 Test 043 control_p8_lndp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_p8_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_p8_rrtmgp Checking test 044 control_p8_rrtmgp results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -2179,14 +2179,14 @@ Checking test 044 control_p8_rrtmgp results .... Comparing 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.555554 - 0: The maximum resident set size (KB) = 1675916 + 0: The total amount of wall time = 230.452525 + 0: The maximum resident set size (KB) = 1674548 Test 044 control_p8_rrtmgp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_mynn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_p8_mynn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_p8_mynn Checking test 045 control_p8_mynn results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -2233,14 +2233,14 @@ Checking test 045 control_p8_mynn results .... Comparing 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.336444 - 0: The maximum resident set size (KB) = 1601000 + 0: The total amount of wall time = 176.898272 + 0: The maximum resident set size (KB) = 1616568 Test 045 control_p8_mynn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/merra2_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/merra2_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/merra2_thompson Checking test 046 merra2_thompson results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -2287,14 +2287,14 @@ Checking test 046 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 192.096550 - 0: The maximum resident set size (KB) = 1609304 + 0: The total amount of wall time = 197.168555 + 0: The maximum resident set size (KB) = 1613452 Test 046 merra2_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/regional_control Checking test 047 regional_control results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf006.nc ............ALT CHECK......OK @@ -2305,28 +2305,28 @@ Checking test 047 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 301.398779 - 0: The maximum resident set size (KB) = 871272 + 0: The total amount of wall time = 304.767960 + 0: The maximum resident set size (KB) = 871112 Test 047 regional_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/regional_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/regional_restart Checking test 048 regional_restart results .... Comparing dynf006.nc ............ALT CHECK......OK Comparing phyf006.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 152.819680 - 0: The maximum resident set size (KB) = 865532 + 0: The total amount of wall time = 161.005226 + 0: The maximum resident set size (KB) = 865084 Test 048 regional_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/regional_control_qr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/regional_control_qr Checking test 049 regional_control_qr results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf006.nc ............ALT CHECK......OK @@ -2337,28 +2337,28 @@ Checking test 049 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 298.985841 - 0: The maximum resident set size (KB) = 870480 + 0: The total amount of wall time = 306.529040 + 0: The maximum resident set size (KB) = 875584 Test 049 regional_control_qr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/regional_restart_qr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/regional_restart_qr Checking test 050 regional_restart_qr results .... Comparing dynf006.nc ............ALT CHECK......OK Comparing phyf006.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 154.315642 - 0: The maximum resident set size (KB) = 867940 + 0: The total amount of wall time = 157.604437 + 0: The maximum resident set size (KB) = 866424 Test 050 regional_restart_qr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/regional_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/regional_decomp Checking test 051 regional_decomp results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf006.nc ............ALT CHECK......OK @@ -2369,14 +2369,14 @@ Checking test 051 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 314.646691 - 0: The maximum resident set size (KB) = 862584 + 0: The total amount of wall time = 318.823530 + 0: The maximum resident set size (KB) = 863316 Test 051 regional_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/regional_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/regional_2threads Checking test 052 regional_2threads results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf006.nc ............ALT CHECK......OK @@ -2387,14 +2387,14 @@ Checking test 052 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 183.078749 - 0: The maximum resident set size (KB) = 850252 + 0: The total amount of wall time = 187.940036 + 0: The maximum resident set size (KB) = 851864 Test 052 regional_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_noquilt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/regional_noquilt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/regional_noquilt Checking test 053 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2402,28 +2402,28 @@ Checking test 053 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 318.777082 - 0: The maximum resident set size (KB) = 855972 + 0: The total amount of wall time = 322.218464 + 0: The maximum resident set size (KB) = 858904 Test 053 regional_noquilt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/regional_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/regional_netcdf_parallel Checking test 054 regional_netcdf_parallel results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf006.nc ............ALT CHECK......OK Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 293.358070 - 0: The maximum resident set size (KB) = 871372 + 0: The total amount of wall time = 299.512051 + 0: The maximum resident set size (KB) = 867992 Test 054 regional_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/regional_2dwrtdecomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/regional_2dwrtdecomp Checking test 055 regional_2dwrtdecomp results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf006.nc ............ALT CHECK......OK @@ -2434,14 +2434,14 @@ Checking test 055 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 299.570987 - 0: The maximum resident set size (KB) = 874056 + 0: The total amount of wall time = 304.652215 + 0: The maximum resident set size (KB) = 868700 Test 055 regional_2dwrtdecomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/fv3_regional_wofs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/regional_wofs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/regional_wofs Checking test 056 regional_wofs results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf006.nc ............ALT CHECK......OK @@ -2452,14 +2452,14 @@ Checking test 056 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 376.921161 - 0: The maximum resident set size (KB) = 630508 + 0: The total amount of wall time = 378.988741 + 0: The maximum resident set size (KB) = 635952 Test 056 regional_wofs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rap_control Checking test 057 rap_control results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -2506,14 +2506,14 @@ Checking test 057 rap_control results .... Comparing 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.547719 - 0: The maximum resident set size (KB) = 1056364 + 0: The total amount of wall time = 462.214338 + 0: The maximum resident set size (KB) = 1055992 Test 057 rap_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_spp_sppt_shum_skeb -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/regional_spp_sppt_shum_skeb +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/regional_spp_sppt_shum_skeb Checking test 058 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf001.nc ............ALT CHECK......OK @@ -2524,14 +2524,14 @@ Checking test 058 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 244.152938 - 0: The maximum resident set size (KB) = 1173876 + 0: The total amount of wall time = 238.595521 + 0: The maximum resident set size (KB) = 1177632 Test 058 regional_spp_sppt_shum_skeb PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/rap_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rap_decomp Checking test 059 rap_decomp results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -2578,14 +2578,14 @@ Checking test 059 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 482.814443 - 0: The maximum resident set size (KB) = 997708 + 0: The total amount of wall time = 483.489989 + 0: The maximum resident set size (KB) = 997788 Test 059 rap_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/rap_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rap_2threads Checking test 060 rap_2threads results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -2632,14 +2632,14 @@ Checking test 060 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 432.452259 - 0: The maximum resident set size (KB) = 1131924 + 0: The total amount of wall time = 439.885899 + 0: The maximum resident set size (KB) = 1131156 Test 060 rap_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/rap_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rap_restart Checking test 061 rap_restart results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -2678,14 +2678,14 @@ Checking test 061 rap_restart results .... Comparing 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.853264 - 0: The maximum resident set size (KB) = 961344 + 0: The total amount of wall time = 235.363267 + 0: The maximum resident set size (KB) = 960800 Test 061 rap_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rap_sfcdiff Checking test 062 rap_sfcdiff results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -2732,14 +2732,14 @@ Checking test 062 rap_sfcdiff results .... Comparing 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.510975 - 0: The maximum resident set size (KB) = 1057168 + 0: The total amount of wall time = 468.306225 + 0: The maximum resident set size (KB) = 1055408 Test 062 rap_sfcdiff PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/rap_sfcdiff_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rap_sfcdiff_decomp Checking test 063 rap_sfcdiff_decomp results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -2786,14 +2786,14 @@ Checking test 063 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 479.760345 - 0: The maximum resident set size (KB) = 1001852 + 0: The total amount of wall time = 490.696410 + 0: The maximum resident set size (KB) = 999772 Test 063 rap_sfcdiff_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/rap_sfcdiff_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rap_sfcdiff_restart Checking test 064 rap_sfcdiff_restart results .... Comparing sfcf012.nc ............ALT CHECK......OK Comparing atmf012.nc ............ALT CHECK......OK @@ -2832,14 +2832,14 @@ Checking test 064 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 340.063754 - 0: The maximum resident set size (KB) = 988092 + 0: The total amount of wall time = 342.885112 + 0: The maximum resident set size (KB) = 987052 Test 064 rap_sfcdiff_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hrrr_control Checking test 065 hrrr_control results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -2886,14 +2886,14 @@ Checking test 065 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 442.527532 - 0: The maximum resident set size (KB) = 1054968 + 0: The total amount of wall time = 447.992553 + 0: The maximum resident set size (KB) = 1050828 Test 065 hrrr_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/hrrr_control_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hrrr_control_decomp Checking test 066 hrrr_control_decomp results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -2940,14 +2940,14 @@ Checking test 066 hrrr_control_decomp results .... Comparing 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.122190 - 0: The maximum resident set size (KB) = 1004000 + 0: The total amount of wall time = 471.078777 + 0: The maximum resident set size (KB) = 1000412 Test 066 hrrr_control_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/hrrr_control_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hrrr_control_2threads Checking test 067 hrrr_control_2threads results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -2994,14 +2994,14 @@ Checking test 067 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 418.602371 - 0: The maximum resident set size (KB) = 1139696 + 0: The total amount of wall time = 428.259850 + 0: The maximum resident set size (KB) = 1133244 Test 067 hrrr_control_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/hrrr_control_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hrrr_control_restart Checking test 068 hrrr_control_restart results .... Comparing sfcf012.nc ............ALT CHECK......OK Comparing atmf012.nc ............ALT CHECK......OK @@ -3040,14 +3040,14 @@ Checking test 068 hrrr_control_restart results .... Comparing 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.200863 - 0: The maximum resident set size (KB) = 977420 + 0: The total amount of wall time = 333.335259 + 0: The maximum resident set size (KB) = 985840 Test 068 hrrr_control_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rrfs_v1beta Checking test 069 rrfs_v1beta results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -3094,14 +3094,14 @@ Checking test 069 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 456.149564 - 0: The maximum resident set size (KB) = 1056792 + 0: The total amount of wall time = 459.661935 + 0: The maximum resident set size (KB) = 1071576 Test 069 rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1nssl -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/rrfs_v1nssl +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rrfs_v1nssl Checking test 070 rrfs_v1nssl results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -3116,14 +3116,14 @@ Checking test 070 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 538.075443 - 0: The maximum resident set size (KB) = 692888 + 0: The total amount of wall time = 543.143988 + 0: The maximum resident set size (KB) = 692092 Test 070 rrfs_v1nssl PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/rrfs_v1nssl_nohailnoccn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rrfs_v1nssl_nohailnoccn Checking test 071 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -3138,14 +3138,14 @@ Checking test 071 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 523.261386 - 0: The maximum resident set size (KB) = 751212 + 0: The total amount of wall time = 528.251238 + 0: The maximum resident set size (KB) = 752276 Test 071 rrfs_v1nssl_nohailnoccn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rrfs_smoke_conus13km_hrrr_warm Checking test 072 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK @@ -3154,14 +3154,14 @@ Checking test 072 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc ............ALT CHECK......OK Comparing atmf002.nc ............ALT CHECK......OK - 0: The total amount of wall time = 146.110115 - 0: The maximum resident set size (KB) = 986896 + 0: The total amount of wall time = 154.024013 + 0: The maximum resident set size (KB) = 1031680 Test 072 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/rrfs_smoke_conus13km_hrrr_warm_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 073 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK @@ -3170,14 +3170,14 @@ Checking test 073 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc ............ALT CHECK......OK Comparing atmf002.nc ............ALT CHECK......OK - 0: The total amount of wall time = 89.637330 - 0: The maximum resident set size (KB) = 934368 + 0: The total amount of wall time = 97.363529 + 0: The maximum resident set size (KB) = 933992 Test 073 rrfs_smoke_conus13km_hrrr_warm_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rrfs_conus13km_hrrr_warm Checking test 074 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK @@ -3186,14 +3186,14 @@ Checking test 074 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc ............ALT CHECK......OK Comparing atmf002.nc ............ALT CHECK......OK - 0: The total amount of wall time = 128.572723 - 0: The maximum resident set size (KB) = 936048 + 0: The total amount of wall time = 134.432875 + 0: The maximum resident set size (KB) = 941084 Test 074 rrfs_conus13km_hrrr_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/rrfs_smoke_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rrfs_smoke_conus13km_radar_tten_warm Checking test 075 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK @@ -3202,14 +3202,14 @@ Checking test 075 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc ............ALT CHECK......OK Comparing atmf002.nc ............ALT CHECK......OK - 0: The total amount of wall time = 146.921529 - 0: The maximum resident set size (KB) = 986928 + 0: The total amount of wall time = 151.516976 + 0: The maximum resident set size (KB) = 1034568 Test 075 rrfs_smoke_conus13km_radar_tten_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmg -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_csawmg +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_csawmg Checking test 076 control_csawmg results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -3220,14 +3220,14 @@ Checking test 076 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 343.647509 - 0: The maximum resident set size (KB) = 731464 + 0: The total amount of wall time = 348.700358 + 0: The maximum resident set size (KB) = 729924 Test 076 control_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmgt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_csawmgt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_csawmgt Checking test 077 control_csawmgt results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -3238,14 +3238,14 @@ Checking test 077 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 340.035159 - 0: The maximum resident set size (KB) = 724192 + 0: The total amount of wall time = 339.664321 + 0: The maximum resident set size (KB) = 726904 Test 077 control_csawmgt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_ras Checking test 078 control_ras results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -3256,26 +3256,26 @@ Checking test 078 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 181.343783 - 0: The maximum resident set size (KB) = 716640 + 0: The total amount of wall time = 183.295126 + 0: The maximum resident set size (KB) = 716548 Test 078 control_ras PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wam -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_wam +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_wam Checking test 079 control_wam results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK - 0: The total amount of wall time = 111.645892 - 0: The maximum resident set size (KB) = 645196 + 0: The total amount of wall time = 113.996441 + 0: The maximum resident set size (KB) = 641228 Test 079 control_wam PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_p8_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_p8_faster Checking test 080 control_p8_faster results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -3322,14 +3322,14 @@ Checking test 080 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 152.831048 - 0: The maximum resident set size (KB) = 1601332 + 0: The total amount of wall time = 157.721698 + 0: The maximum resident set size (KB) = 1599540 Test 080 control_p8_faster PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/regional_control_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/regional_control_faster Checking test 081 regional_control_faster results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf006.nc ............ALT CHECK......OK @@ -3340,56 +3340,56 @@ Checking test 081 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 274.228033 - 0: The maximum resident set size (KB) = 872260 + 0: The total amount of wall time = 274.989460 + 0: The maximum resident set size (KB) = 874264 Test 081 regional_control_faster PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 082 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 831.854324 - 0: The maximum resident set size (KB) = 1068040 + 0: The total amount of wall time = 833.530867 + 0: The maximum resident set size (KB) = 1026512 Test 082 rrfs_smoke_conus13km_hrrr_warm_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 083 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 475.697730 - 0: The maximum resident set size (KB) = 977100 + 0: The total amount of wall time = 477.171558 + 0: The maximum resident set size (KB) = 931416 Test 083 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/rrfs_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rrfs_conus13km_hrrr_warm_debug Checking test 084 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 741.236944 - 0: The maximum resident set size (KB) = 975800 + 0: The total amount of wall time = 741.686105 + 0: The maximum resident set size (KB) = 970128 Test 084 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_CubedSphereGrid_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_CubedSphereGrid_debug Checking test 085 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3416,334 +3416,334 @@ Checking test 085 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 162.959587 - 0: The maximum resident set size (KB) = 791944 + 0: The total amount of wall time = 162.758102 + 0: The maximum resident set size (KB) = 797120 Test 085 control_CubedSphereGrid_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_wrtGauss_netcdf_parallel_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_wrtGauss_netcdf_parallel_debug Checking test 086 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 152.595040 - 0: The maximum resident set size (KB) = 796428 + 0: The total amount of wall time = 152.597132 + 0: The maximum resident set size (KB) = 794888 Test 086 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_stochy_debug Checking test 087 control_stochy_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 172.112869 - 0: The maximum resident set size (KB) = 801472 + 0: The total amount of wall time = 170.395696 + 0: The maximum resident set size (KB) = 801584 Test 087 control_stochy_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_lndp_debug Checking test 088 control_lndp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 155.192578 - 0: The maximum resident set size (KB) = 800100 + 0: The total amount of wall time = 156.056866 + 0: The maximum resident set size (KB) = 800752 Test 088 control_lndp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmg_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_csawmg_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_csawmg_debug Checking test 089 control_csawmg_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 232.978062 - 0: The maximum resident set size (KB) = 848496 + 0: The total amount of wall time = 232.555325 + 0: The maximum resident set size (KB) = 840704 Test 089 control_csawmg_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmgt_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_csawmgt_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_csawmgt_debug Checking test 090 control_csawmgt_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 227.688453 - 0: The maximum resident set size (KB) = 843580 + 0: The total amount of wall time = 233.905969 + 0: The maximum resident set size (KB) = 842276 Test 090 control_csawmgt_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_ras_debug Checking test 091 control_ras_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 151.896076 - 0: The maximum resident set size (KB) = 807936 + 0: The total amount of wall time = 156.334503 + 0: The maximum resident set size (KB) = 814028 Test 091 control_ras_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_diag_debug Checking test 092 control_diag_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 161.482683 - 0: The maximum resident set size (KB) = 855744 + 0: The total amount of wall time = 161.608430 + 0: The maximum resident set size (KB) = 854032 Test 092 control_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_debug_p8 Checking test 093 control_debug_p8 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 168.746689 - 0: The maximum resident set size (KB) = 1622568 + 0: The total amount of wall time = 176.670061 + 0: The maximum resident set size (KB) = 1620932 Test 093 control_debug_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/regional_debug Checking test 094 regional_debug results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf001.nc ............ALT CHECK......OK Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 973.369670 - 0: The maximum resident set size (KB) = 885096 + 0: The total amount of wall time = 994.349237 + 0: The maximum resident set size (KB) = 889008 Test 094 regional_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rap_control_debug Checking test 095 rap_control_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 275.396253 - 0: The maximum resident set size (KB) = 1173464 + 0: The total amount of wall time = 278.634088 + 0: The maximum resident set size (KB) = 1180108 Test 095 rap_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hrrr_control_debug Checking test 096 hrrr_control_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 265.224072 - 0: The maximum resident set size (KB) = 1178948 + 0: The total amount of wall time = 274.020402 + 0: The maximum resident set size (KB) = 1174880 Test 096 hrrr_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/rap_unified_drag_suite_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rap_unified_drag_suite_debug Checking test 097 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 275.842562 - 0: The maximum resident set size (KB) = 1179196 + 0: The total amount of wall time = 279.135093 + 0: The maximum resident set size (KB) = 1181140 Test 097 rap_unified_drag_suite_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rap_diag_debug Checking test 098 rap_diag_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 290.481863 - 0: The maximum resident set size (KB) = 1260968 + 0: The total amount of wall time = 294.984771 + 0: The maximum resident set size (KB) = 1264084 Test 098 rap_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/rap_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rap_cires_ugwp_debug Checking test 099 rap_cires_ugwp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 277.188204 - 0: The maximum resident set size (KB) = 1180112 + 0: The total amount of wall time = 282.590303 + 0: The maximum resident set size (KB) = 1176888 Test 099 rap_cires_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/rap_unified_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rap_unified_ugwp_debug Checking test 100 rap_unified_ugwp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 280.339385 - 0: The maximum resident set size (KB) = 1177068 + 0: The total amount of wall time = 281.081037 + 0: The maximum resident set size (KB) = 1178304 Test 100 rap_unified_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/rap_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rap_lndp_debug Checking test 101 rap_lndp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 274.343830 - 0: The maximum resident set size (KB) = 1175028 + 0: The total amount of wall time = 278.523651 + 0: The maximum resident set size (KB) = 1177260 Test 101 rap_lndp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_flake_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/rap_flake_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rap_flake_debug Checking test 102 rap_flake_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 274.915732 - 0: The maximum resident set size (KB) = 1176524 + 0: The total amount of wall time = 272.179584 + 0: The maximum resident set size (KB) = 1176924 Test 102 rap_flake_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rap_progcld_thompson_debug Checking test 103 rap_progcld_thompson_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 274.831012 - 0: The maximum resident set size (KB) = 1179636 + 0: The total amount of wall time = 279.436971 + 0: The maximum resident set size (KB) = 1175956 Test 103 rap_progcld_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_noah_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/rap_noah_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rap_noah_debug Checking test 104 rap_noah_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 269.850382 - 0: The maximum resident set size (KB) = 1178032 + 0: The total amount of wall time = 271.299155 + 0: The maximum resident set size (KB) = 1178468 Test 104 rap_noah_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/rap_sfcdiff_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rap_sfcdiff_debug Checking test 105 rap_sfcdiff_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 279.488624 - 0: The maximum resident set size (KB) = 1178336 + 0: The total amount of wall time = 276.081274 + 0: The maximum resident set size (KB) = 1174088 Test 105 rap_sfcdiff_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rap_noah_sfcdiff_cires_ugwp_debug Checking test 106 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 450.256035 - 0: The maximum resident set size (KB) = 1175592 + 0: The total amount of wall time = 451.569824 + 0: The maximum resident set size (KB) = 1179252 Test 106 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rrfs_v1beta_debug Checking test 107 rrfs_v1beta_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 268.207961 - 0: The maximum resident set size (KB) = 1173804 + 0: The total amount of wall time = 271.348634 + 0: The maximum resident set size (KB) = 1174844 Test 107 rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_wam_debug Checking test 108 control_wam_debug results .... Comparing sfcf019.nc ............ALT CHECK......OK Comparing atmf019.nc ............ALT CHECK......OK - 0: The total amount of wall time = 286.884700 - 0: The maximum resident set size (KB) = 517688 + 0: The total amount of wall time = 283.293886 + 0: The maximum resident set size (KB) = 524360 Test 108 control_wam_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 109 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf001.nc ............ALT CHECK......OK @@ -3754,14 +3754,14 @@ Checking test 109 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 208.660580 - 0: The maximum resident set size (KB) = 1075396 + 0: The total amount of wall time = 215.405384 + 0: The maximum resident set size (KB) = 1073344 Test 109 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rap_control_dyn32_phy32 Checking test 110 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -3808,14 +3808,14 @@ Checking test 110 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 377.674474 - 0: The maximum resident set size (KB) = 1006592 + 0: The total amount of wall time = 384.083703 + 0: The maximum resident set size (KB) = 1002552 Test 110 rap_control_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hrrr_control_dyn32_phy32 Checking test 111 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -3862,14 +3862,14 @@ Checking test 111 hrrr_control_dyn32_phy32 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 = 195.240175 - 0: The maximum resident set size (KB) = 956468 + 0: The total amount of wall time = 197.838688 + 0: The maximum resident set size (KB) = 952292 Test 111 hrrr_control_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/rap_2threads_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rap_2threads_dyn32_phy32 Checking test 112 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -3916,14 +3916,14 @@ Checking test 112 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 360.059435 - 0: The maximum resident set size (KB) = 1016780 + 0: The total amount of wall time = 366.197872 + 0: The maximum resident set size (KB) = 1023656 Test 112 rap_2threads_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/hrrr_control_2threads_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hrrr_control_2threads_dyn32_phy32 Checking test 113 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -3970,14 +3970,14 @@ Checking test 113 hrrr_control_2threads_dyn32_phy32 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 = 184.527999 - 0: The maximum resident set size (KB) = 1004292 + 0: The total amount of wall time = 189.974474 + 0: The maximum resident set size (KB) = 1003196 Test 113 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/hrrr_control_decomp_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hrrr_control_decomp_dyn32_phy32 Checking test 114 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -4024,14 +4024,14 @@ Checking test 114 hrrr_control_decomp_dyn32_phy32 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 = 205.339560 - 0: The maximum resident set size (KB) = 893580 + 0: The total amount of wall time = 211.226724 + 0: The maximum resident set size (KB) = 900448 Test 114 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/rap_restart_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rap_restart_dyn32_phy32 Checking test 115 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc ............ALT CHECK......OK Comparing atmf012.nc ............ALT CHECK......OK @@ -4070,14 +4070,14 @@ Checking test 115 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 279.778397 - 0: The maximum resident set size (KB) = 950080 + 0: The total amount of wall time = 280.984755 + 0: The maximum resident set size (KB) = 941540 Test 115 rap_restart_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/hrrr_control_restart_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hrrr_control_restart_dyn32_phy32 Checking test 116 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc ............ALT CHECK......OK Comparing atmf012.nc ............ALT CHECK......OK @@ -4116,14 +4116,14 @@ Checking test 116 hrrr_control_restart_dyn32_phy32 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 = 101.264091 - 0: The maximum resident set size (KB) = 866948 + 0: The total amount of wall time = 104.383676 + 0: The maximum resident set size (KB) = 863784 Test 116 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rap_control_dyn64_phy32 Checking test 117 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -4170,81 +4170,81 @@ Checking test 117 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 243.158382 - 0: The maximum resident set size (KB) = 970624 + 0: The total amount of wall time = 244.978921 + 0: The maximum resident set size (KB) = 957304 Test 117 rap_control_dyn64_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rap_control_debug_dyn32_phy32 Checking test 118 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 279.668425 - 0: The maximum resident set size (KB) = 1063428 + 0: The total amount of wall time = 278.839032 + 0: The maximum resident set size (KB) = 1062532 Test 118 rap_control_debug_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hrrr_control_debug_dyn32_phy32 Checking test 119 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 265.211637 - 0: The maximum resident set size (KB) = 1057908 + 0: The total amount of wall time = 273.415819 + 0: The maximum resident set size (KB) = 1058936 Test 119 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/rap_control_dyn64_phy32_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rap_control_dyn64_phy32_debug Checking test 120 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 274.520118 - 0: The maximum resident set size (KB) = 1104872 + 0: The total amount of wall time = 283.314404 + 0: The maximum resident set size (KB) = 1097908 Test 120 rap_control_dyn64_phy32_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/hafs_regional_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hafs_regional_atm Checking test 121 hafs_regional_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 237.888269 - 0: The maximum resident set size (KB) = 1047528 + 0: The total amount of wall time = 245.050328 + 0: The maximum resident set size (KB) = 1049456 Test 121 hafs_regional_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/hafs_regional_atm_thompson_gfdlsf +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hafs_regional_atm_thompson_gfdlsf Checking test 122 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 325.747015 - 0: The maximum resident set size (KB) = 1423184 + 0: The total amount of wall time = 360.087926 + 0: The maximum resident set size (KB) = 1417976 Test 122 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/hafs_regional_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hafs_regional_atm_ocn Checking test 123 hafs_regional_atm_ocn results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4253,14 +4253,14 @@ Checking test 123 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 379.608712 - 0: The maximum resident set size (KB) = 1214596 + 0: The total amount of wall time = 387.516127 + 0: The maximum resident set size (KB) = 1218760 Test 123 hafs_regional_atm_ocn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/hafs_regional_atm_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hafs_regional_atm_wav Checking test 124 hafs_regional_atm_wav results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4269,14 +4269,14 @@ Checking test 124 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 738.897564 - 0: The maximum resident set size (KB) = 1248332 + 0: The total amount of wall time = 749.223680 + 0: The maximum resident set size (KB) = 1254416 Test 124 hafs_regional_atm_wav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/hafs_regional_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hafs_regional_atm_ocn_wav Checking test 125 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4287,28 +4287,28 @@ Checking test 125 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 840.331802 - 0: The maximum resident set size (KB) = 1271524 + 0: The total amount of wall time = 859.817976 + 0: The maximum resident set size (KB) = 1237348 Test 125 hafs_regional_atm_ocn_wav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/hafs_regional_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hafs_regional_1nest_atm Checking test 126 hafs_regional_1nest_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK Comparing atm.nest02.f006.nc ............ALT CHECK......OK Comparing sfc.nest02.f006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 318.920790 - 0: The maximum resident set size (KB) = 508260 + 0: The total amount of wall time = 323.623553 + 0: The maximum resident set size (KB) = 507924 Test 126 hafs_regional_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/hafs_regional_telescopic_2nests_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hafs_regional_telescopic_2nests_atm Checking test 127 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4317,28 +4317,28 @@ Checking test 127 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc ............ALT CHECK......OK Comparing sfc.nest03.f006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 366.794472 - 0: The maximum resident set size (KB) = 514860 + 0: The total amount of wall time = 367.380480 + 0: The maximum resident set size (KB) = 512896 Test 127 hafs_regional_telescopic_2nests_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/hafs_global_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hafs_global_1nest_atm Checking test 128 hafs_global_1nest_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK Comparing atm.nest02.f006.nc ............ALT CHECK......OK Comparing sfc.nest02.f006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 145.488287 - 0: The maximum resident set size (KB) = 353184 + 0: The total amount of wall time = 149.388471 + 0: The maximum resident set size (KB) = 352112 Test 128 hafs_global_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_multiple_4nests_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/hafs_global_multiple_4nests_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hafs_global_multiple_4nests_atm Checking test 129 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4356,14 +4356,14 @@ Checking test 129 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 411.330463 - 0: The maximum resident set size (KB) = 456648 + 0: The total amount of wall time = 416.314782 + 0: The maximum resident set size (KB) = 423756 Test 129 hafs_global_multiple_4nests_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/hafs_regional_specified_moving_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hafs_regional_specified_moving_1nest_atm Checking test 130 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4372,28 +4372,28 @@ Checking test 130 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 203.180450 - 0: The maximum resident set size (KB) = 518168 + 0: The total amount of wall time = 203.528711 + 0: The maximum resident set size (KB) = 521136 Test 130 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/hafs_regional_storm_following_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hafs_regional_storm_following_1nest_atm Checking test 131 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK Comparing atm.nest02.f006.nc ............ALT CHECK......OK Comparing sfc.nest02.f006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 191.397576 - 0: The maximum resident set size (KB) = 519220 + 0: The total amount of wall time = 195.415855 + 0: The maximum resident set size (KB) = 520288 Test 131 hafs_regional_storm_following_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/hafs_regional_storm_following_1nest_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hafs_regional_storm_following_1nest_atm_ocn Checking test 132 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4402,42 +4402,42 @@ Checking test 132 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 222.057232 - 0: The maximum resident set size (KB) = 563392 + 0: The total amount of wall time = 229.068345 + 0: The maximum resident set size (KB) = 564968 Test 132 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/hafs_global_storm_following_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hafs_global_storm_following_1nest_atm Checking test 133 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK Comparing atm.nest02.f006.nc ............ALT CHECK......OK Comparing sfc.nest02.f006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 57.879471 - 0: The maximum resident set size (KB) = 368860 + 0: The total amount of wall time = 61.201767 + 0: The maximum resident set size (KB) = 371876 Test 133 hafs_global_storm_following_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 134 hafs_regional_storm_following_1nest_atm_ocn_debug results .... Comparing atmf001.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atm.nest02.f001.nc ............ALT CHECK......OK Comparing sfc.nest02.f001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 755.434968 - 0: The maximum resident set size (KB) = 583800 + 0: The total amount of wall time = 756.593891 + 0: The maximum resident set size (KB) = 593236 Test 134 hafs_regional_storm_following_1nest_atm_ocn_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4448,14 +4448,14 @@ Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 480.775821 - 0: The maximum resident set size (KB) = 622248 + 0: The total amount of wall time = 484.905920 + 0: The maximum resident set size (KB) = 624796 Test 135 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_docn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/hafs_regional_docn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hafs_regional_docn Checking test 136 hafs_regional_docn results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4463,14 +4463,14 @@ Checking test 136 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 356.025770 - 0: The maximum resident set size (KB) = 1228476 + 0: The total amount of wall time = 367.234679 + 0: The maximum resident set size (KB) = 1224216 Test 136 hafs_regional_docn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_docn_oisst -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/hafs_regional_docn_oisst +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hafs_regional_docn_oisst Checking test 137 hafs_regional_docn_oisst results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4478,131 +4478,131 @@ Checking test 137 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 359.021144 - 0: The maximum resident set size (KB) = 1215432 + 0: The total amount of wall time = 371.263886 + 0: The maximum resident set size (KB) = 1207840 Test 137 hafs_regional_docn_oisst PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_datm_cdeps -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/hafs_regional_datm_cdeps +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hafs_regional_datm_cdeps Checking test 138 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 945.479615 - 0: The maximum resident set size (KB) = 1040912 + 0: The total amount of wall time = 951.079029 + 0: The maximum resident set size (KB) = 1040516 Test 138 hafs_regional_datm_cdeps PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/datm_cdeps_control_cfsr Checking test 139 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 155.124501 - 0: The maximum resident set size (KB) = 1056640 + 0: The total amount of wall time = 159.497153 + 0: The maximum resident set size (KB) = 1056968 Test 139 datm_cdeps_control_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/datm_cdeps_restart_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/datm_cdeps_restart_cfsr Checking test 140 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 92.761112 - 0: The maximum resident set size (KB) = 1031904 + 0: The total amount of wall time = 94.396105 + 0: The maximum resident set size (KB) = 1040204 Test 140 datm_cdeps_restart_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/datm_cdeps_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/datm_cdeps_control_gefs Checking test 141 datm_cdeps_control_gefs 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.155461 - 0: The maximum resident set size (KB) = 968100 + 0: The total amount of wall time = 155.189637 + 0: The maximum resident set size (KB) = 964436 Test 141 datm_cdeps_control_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_iau_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/datm_cdeps_iau_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/datm_cdeps_iau_gefs Checking test 142 datm_cdeps_iau_gefs 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.288933 - 0: The maximum resident set size (KB) = 959848 + 0: The total amount of wall time = 155.421379 + 0: The maximum resident set size (KB) = 962720 Test 142 datm_cdeps_iau_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_stochy_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/datm_cdeps_stochy_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/datm_cdeps_stochy_gefs Checking test 143 datm_cdeps_stochy_gefs 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.681911 - 0: The maximum resident set size (KB) = 967428 + 0: The total amount of wall time = 153.713391 + 0: The maximum resident set size (KB) = 967716 Test 143 datm_cdeps_stochy_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_ciceC_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/datm_cdeps_ciceC_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/datm_cdeps_ciceC_cfsr Checking test 144 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 152.765131 - 0: The maximum resident set size (KB) = 1058448 + 0: The total amount of wall time = 160.233604 + 0: The maximum resident set size (KB) = 1059768 Test 144 datm_cdeps_ciceC_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/datm_cdeps_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/datm_cdeps_bulk_cfsr Checking test 145 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 157.394281 - 0: The maximum resident set size (KB) = 1069416 + 0: The total amount of wall time = 156.868444 + 0: The maximum resident set size (KB) = 1079316 Test 145 datm_cdeps_bulk_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/datm_cdeps_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/datm_cdeps_bulk_gefs Checking test 146 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.373632 - 0: The maximum resident set size (KB) = 965748 + 0: The total amount of wall time = 154.089828 + 0: The maximum resident set size (KB) = 961584 Test 146 datm_cdeps_bulk_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/datm_cdeps_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/datm_cdeps_mx025_cfsr Checking test 147 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4611,14 +4611,14 @@ Checking test 147 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 398.881259 - 0: The maximum resident set size (KB) = 874388 + 0: The total amount of wall time = 410.742645 + 0: The maximum resident set size (KB) = 878056 Test 147 datm_cdeps_mx025_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/datm_cdeps_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/datm_cdeps_mx025_gefs Checking test 148 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4627,77 +4627,77 @@ Checking test 148 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 391.733987 - 0: The maximum resident set size (KB) = 932620 + 0: The total amount of wall time = 420.849556 + 0: The maximum resident set size (KB) = 927400 Test 148 datm_cdeps_mx025_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/datm_cdeps_multiple_files_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/datm_cdeps_multiple_files_cfsr Checking test 149 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 156.089751 - 0: The maximum resident set size (KB) = 1067788 + 0: The total amount of wall time = 161.593044 + 0: The maximum resident set size (KB) = 1061288 Test 149 datm_cdeps_multiple_files_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/datm_cdeps_3072x1536_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/datm_cdeps_3072x1536_cfsr Checking test 150 datm_cdeps_3072x1536_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 219.604556 - 0: The maximum resident set size (KB) = 2315824 + 0: The total amount of wall time = 225.639366 + 0: The maximum resident set size (KB) = 2374240 Test 150 datm_cdeps_3072x1536_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_gfs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/datm_cdeps_gfs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/datm_cdeps_gfs Checking test 151 datm_cdeps_gfs 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 = 219.165126 - 0: The maximum resident set size (KB) = 2304676 + 0: The total amount of wall time = 223.833677 + 0: The maximum resident set size (KB) = 2359140 Test 151 datm_cdeps_gfs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/datm_cdeps_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/datm_cdeps_debug_cfsr Checking test 152 datm_cdeps_debug_cfsr 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 = 446.790202 - 0: The maximum resident set size (KB) = 986556 + 0: The total amount of wall time = 448.094237 + 0: The maximum resident set size (KB) = 1015312 Test 152 datm_cdeps_debug_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/datm_cdeps_control_cfsr_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/datm_cdeps_control_cfsr_faster Checking test 153 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 152.712476 - 0: The maximum resident set size (KB) = 1056644 + 0: The total amount of wall time = 161.197516 + 0: The maximum resident set size (KB) = 1067300 Test 153 datm_cdeps_control_cfsr_faster PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/datm_cdeps_lnd_gswp3 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/datm_cdeps_lnd_gswp3 Checking test 154 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4706,14 +4706,14 @@ Checking test 154 datm_cdeps_lnd_gswp3 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 = 6.730894 - 0: The maximum resident set size (KB) = 266780 + 0: The total amount of wall time = 7.673630 + 0: The maximum resident set size (KB) = 263500 Test 154 datm_cdeps_lnd_gswp3 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/datm_cdeps_lnd_gswp3_rst +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/datm_cdeps_lnd_gswp3_rst Checking test 155 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4722,14 +4722,14 @@ Checking test 155 datm_cdeps_lnd_gswp3_rst 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.140110 - 0: The maximum resident set size (KB) = 263056 + 0: The total amount of wall time = 17.146421 + 0: The maximum resident set size (KB) = 262416 Test 155 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_atmlnd_sbs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_p8_atmlnd_sbs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_p8_atmlnd_sbs Checking test 156 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4814,14 +4814,14 @@ Checking test 156 control_p8_atmlnd_sbs 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.031966 - 0: The maximum resident set size (KB) = 1611148 + 0: The total amount of wall time = 209.793724 + 0: The maximum resident set size (KB) = 1607328 Test 156 control_p8_atmlnd_sbs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_atmwav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/control_atmwav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_atmwav Checking test 157 control_atmwav results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf012.nc ............ALT CHECK......OK @@ -4865,14 +4865,14 @@ Checking test 157 control_atmwav 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.950876 - 0: The maximum resident set size (KB) = 665320 + 0: The total amount of wall time = 90.218628 + 0: The maximum resident set size (KB) = 664340 Test 157 control_atmwav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/atmaero_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/atmaero_control_p8 Checking test 158 atmaero_control_p8 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -4916,14 +4916,14 @@ Checking test 158 atmaero_control_p8 results .... Comparing 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.418509 - 0: The maximum resident set size (KB) = 2974040 + 0: The total amount of wall time = 232.201993 + 0: The maximum resident set size (KB) = 2977620 Test 158 atmaero_control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8_rad -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/atmaero_control_p8_rad +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/atmaero_control_p8_rad Checking test 159 atmaero_control_p8_rad results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -4967,14 +4967,14 @@ Checking test 159 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 278.743079 - 0: The maximum resident set size (KB) = 3040240 + 0: The total amount of wall time = 286.673313 + 0: The maximum resident set size (KB) = 3047312 Test 159 atmaero_control_p8_rad PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8_rad_micro -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/atmaero_control_p8_rad_micro +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/atmaero_control_p8_rad_micro Checking test 160 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -5018,14 +5018,14 @@ Checking test 160 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 282.465877 - 0: The maximum resident set size (KB) = 3061072 + 0: The total amount of wall time = 287.697855 + 0: The maximum resident set size (KB) = 3055628 Test 160 atmaero_control_p8_rad_micro PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/regional_atmaq +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/regional_atmaq Checking test 161 regional_atmaq results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf003.nc ............ALT CHECK......OK @@ -5041,14 +5041,14 @@ Checking test 161 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 627.272650 - 0: The maximum resident set size (KB) = 1468784 + 0: The total amount of wall time = 667.283323 + 0: The maximum resident set size (KB) = 1468916 Test 161 regional_atmaq PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/regional_atmaq_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/regional_atmaq_debug Checking test 162 regional_atmaq_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK @@ -5062,14 +5062,14 @@ Checking test 162 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1218.125463 - 0: The maximum resident set size (KB) = 1399812 + 0: The total amount of wall time = 1236.979511 + 0: The maximum resident set size (KB) = 1402492 Test 162 regional_atmaq_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31553/regional_atmaq_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/regional_atmaq_faster Checking test 163 regional_atmaq_faster results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf003.nc ............ALT CHECK......OK @@ -5085,12 +5085,12 @@ Checking test 163 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 546.921361 - 0: The maximum resident set size (KB) = 1475364 + 0: The total amount of wall time = 583.905228 + 0: The maximum resident set size (KB) = 1473108 Test 163 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Mon Mar 27 22:32:35 UTC 2023 -Elapsed time: 01h:15m:07s. Have a nice day! +Tue Mar 28 22:11:47 UTC 2023 +Elapsed time: 01h:23m:03s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index 979324b15a9..ffe4cc711c4 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,42 +1,42 @@ -Mon Mar 27 21:42:20 UTC 2023 +Tue Mar 28 20:48:38 UTC 2023 Start Regression test -Compile 001 elapsed time 1880 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 002 elapsed time 1908 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 003 elapsed time 1754 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 004 elapsed time 429 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 376 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 1582 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 007 elapsed time 1549 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 008 elapsed time 3401 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 009 elapsed time 1674 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 010 elapsed time 1624 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 011 elapsed time 1511 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 012 elapsed time 1462 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 013 elapsed time 2088 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 014 elapsed time 402 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 317 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 1493 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 017 elapsed time 1495 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 018 elapsed time 331 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 323 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 1636 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 021 elapsed time 308 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 2163 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 023 elapsed time 1631 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 024 elapsed time 301 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 025 elapsed time 178 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 308 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 027 elapsed time 98 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 028 elapsed time 1334 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 029 elapsed time 1688 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 030 elapsed time 1466 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 031 elapsed time 1446 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 032 elapsed time 273 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 1886 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 001 elapsed time 1962 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 002 elapsed time 1890 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 003 elapsed time 1858 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 004 elapsed time 361 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 287 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 1521 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 007 elapsed time 1558 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 008 elapsed time 3371 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 009 elapsed time 1688 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 010 elapsed time 1616 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 011 elapsed time 1529 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 012 elapsed time 1446 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 013 elapsed time 2056 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 014 elapsed time 334 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 285 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 1460 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 017 elapsed time 1463 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 018 elapsed time 271 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 281 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 1731 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 021 elapsed time 311 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 2134 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 023 elapsed time 1658 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 024 elapsed time 325 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 025 elapsed time 148 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 302 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 027 elapsed time 115 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 028 elapsed time 1514 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 029 elapsed time 1741 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 030 elapsed time 1500 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 031 elapsed time 1447 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 032 elapsed time 314 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 1900 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8_mixedmode -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/cpld_control_p8_mixedmode +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -101,14 +101,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 449.250855 - 0: The maximum resident set size (KB) = 1720628 + 0: The total amount of wall time = 574.162889 + 0: The maximum resident set size (KB) = 1746864 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_gfsv17 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/cpld_control_gfsv17 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -172,14 +172,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 351.932227 - 0: The maximum resident set size (KB) = 1630856 + 0: The total amount of wall time = 404.158832 + 0: The maximum resident set size (KB) = 1645664 Test 002 cpld_control_gfsv17 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -244,14 +244,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 514.765265 - 0: The maximum resident set size (KB) = 1771448 + 0: The total amount of wall time = 635.644243 + 0: The maximum resident set size (KB) = 1724488 Test 003 cpld_control_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/cpld_restart_p8 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -304,14 +304,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 334.141243 - 0: The maximum resident set size (KB) = 1496584 + 0: The total amount of wall time = 338.788283 + 0: The maximum resident set size (KB) = 1506612 Test 004 cpld_restart_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/cpld_control_qr_p8 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -376,14 +376,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 516.371160 - 0: The maximum resident set size (KB) = 1785764 + 0: The total amount of wall time = 611.586884 + 0: The maximum resident set size (KB) = 1791980 Test 005 cpld_control_qr_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/cpld_restart_qr_p8 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -436,14 +436,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 393.082729 - 0: The maximum resident set size (KB) = 1505536 + 0: The total amount of wall time = 351.666269 + 0: The maximum resident set size (KB) = 1515644 Test 006 cpld_restart_qr_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/cpld_2threads_p8 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -496,14 +496,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 555.364374 - 0: The maximum resident set size (KB) = 1995308 + 0: The total amount of wall time = 653.065182 + 0: The maximum resident set size (KB) = 1973296 Test 007 cpld_2threads_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/cpld_decomp_p8 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -556,14 +556,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 525.358803 - 0: The maximum resident set size (KB) = 1788112 + 0: The total amount of wall time = 595.313116 + 0: The maximum resident set size (KB) = 1781856 Test 008 cpld_decomp_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/cpld_mpi_p8 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -616,14 +616,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 437.236044 - 0: The maximum resident set size (KB) = 1735232 + 0: The total amount of wall time = 546.834527 + 0: The maximum resident set size (KB) = 1725672 Test 009 cpld_mpi_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_ciceC_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/cpld_control_ciceC_p8 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -688,14 +688,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 523.270359 - 0: The maximum resident set size (KB) = 1775764 + 0: The total amount of wall time = 580.544670 + 0: The maximum resident set size (KB) = 1763840 Test 010 cpld_control_ciceC_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_noaero_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/cpld_control_noaero_p8 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/cpld_control_noaero_p8 Checking test 011 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -759,14 +759,14 @@ Checking test 011 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 379.278535 - 0: The maximum resident set size (KB) = 1642204 + 0: The total amount of wall time = 414.369052 + 0: The maximum resident set size (KB) = 1621908 Test 011 cpld_control_noaero_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/cpld_control_nowave_noaero_p8 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/cpld_control_nowave_noaero_p8 Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -828,14 +828,14 @@ Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 373.329495 - 0: The maximum resident set size (KB) = 1675856 + 0: The total amount of wall time = 423.946266 + 0: The maximum resident set size (KB) = 1673232 Test 012 cpld_control_nowave_noaero_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_debug_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/cpld_debug_p8 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/cpld_debug_p8 Checking test 013 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -888,14 +888,14 @@ Checking test 013 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 901.247259 - 0: The maximum resident set size (KB) = 1824764 + 0: The total amount of wall time = 921.382038 + 0: The maximum resident set size (KB) = 1819440 Test 013 cpld_debug_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_debug_noaero_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/cpld_debug_noaero_p8 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/cpld_debug_noaero_p8 Checking test 014 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -947,14 +947,14 @@ Checking test 014 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 599.161492 - 0: The maximum resident set size (KB) = 1641560 + 0: The total amount of wall time = 573.613374 + 0: The maximum resident set size (KB) = 1645016 Test 014 cpld_debug_noaero_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/cpld_control_noaero_p8_agrid +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/cpld_control_noaero_p8_agrid Checking test 015 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1016,14 +1016,14 @@ Checking test 015 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 407.545155 - 0: The maximum resident set size (KB) = 1683508 + 0: The total amount of wall time = 444.309036 + 0: The maximum resident set size (KB) = 1673852 Test 015 cpld_control_noaero_p8_agrid PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c48 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/cpld_control_c48 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/cpld_control_c48 Checking test 016 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1073,14 +1073,14 @@ Checking test 016 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 811.454074 - 0: The maximum resident set size (KB) = 2764160 + 0: The total amount of wall time = 816.714588 + 0: The maximum resident set size (KB) = 2768996 Test 016 cpld_control_c48 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_warmstart_c48 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/cpld_warmstart_c48 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/cpld_warmstart_c48 Checking test 017 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1130,14 +1130,14 @@ Checking test 017 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 224.280730 - 0: The maximum resident set size (KB) = 2772792 + 0: The total amount of wall time = 221.669966 + 0: The maximum resident set size (KB) = 2761680 Test 017 cpld_warmstart_c48 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_warmstart_c48 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/cpld_restart_c48 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/cpld_restart_c48 Checking test 018 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1187,14 +1187,14 @@ Checking test 018 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 123.453195 - 0: The maximum resident set size (KB) = 2192104 + 0: The total amount of wall time = 123.264805 + 0: The maximum resident set size (KB) = 2204848 Test 018 cpld_restart_c48 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8_faster -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/cpld_control_p8_faster +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/cpld_control_p8_faster Checking test 019 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1259,14 +1259,14 @@ Checking test 019 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 499.041810 - 0: The maximum resident set size (KB) = 1771216 + 0: The total amount of wall time = 515.744934 + 0: The maximum resident set size (KB) = 1773752 Test 019 cpld_control_p8_faster PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_CubedSphereGrid +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_CubedSphereGrid Checking test 020 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1293,28 +1293,28 @@ Checking test 020 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 199.900736 - 0: The maximum resident set size (KB) = 578556 + 0: The total amount of wall time = 222.155365 + 0: The maximum resident set size (KB) = 573708 Test 020 control_CubedSphereGrid PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid_parallel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_CubedSphereGrid_parallel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_CubedSphereGrid_parallel Checking test 021 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK - 0: The total amount of wall time = 195.460794 - 0: The maximum resident set size (KB) = 576572 + 0: The total amount of wall time = 208.671835 + 0: The maximum resident set size (KB) = 577996 Test 021 control_CubedSphereGrid_parallel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_latlon -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_latlon +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_latlon Checking test 022 control_latlon results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1325,14 +1325,14 @@ Checking test 022 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 195.530459 - 0: The maximum resident set size (KB) = 574868 + 0: The total amount of wall time = 230.834023 + 0: The maximum resident set size (KB) = 578604 Test 022 control_latlon PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_wrtGauss_netcdf_parallel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_wrtGauss_netcdf_parallel Checking test 023 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1343,14 +1343,14 @@ Checking test 023 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 206.152704 - 0: The maximum resident set size (KB) = 577188 + 0: The total amount of wall time = 204.690218 + 0: The maximum resident set size (KB) = 571836 Test 023 control_wrtGauss_netcdf_parallel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c48 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_c48 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_c48 Checking test 024 control_c48 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1389,14 +1389,14 @@ Checking test 024 control_c48 results .... Comparing 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.571583 -0: The maximum resident set size (KB) = 799996 +0: The total amount of wall time = 601.495916 +0: The maximum resident set size (KB) = 794828 Test 024 control_c48 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c192 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_c192 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_c192 Checking test 025 control_c192 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1407,14 +1407,14 @@ Checking test 025 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 751.915226 - 0: The maximum resident set size (KB) = 695300 + 0: The total amount of wall time = 804.789245 + 0: The maximum resident set size (KB) = 696216 Test 025 control_c192 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c384 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_c384 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_c384 Checking test 026 control_c384 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf012.nc ............ALT CHECK......OK @@ -1425,14 +1425,14 @@ Checking test 026 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1021.205257 - 0: The maximum resident set size (KB) = 1053692 + 0: The total amount of wall time = 1152.826234 + 0: The maximum resident set size (KB) = 1059800 Test 026 control_c384 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c384gdas -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_c384gdas +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_c384gdas Checking test 027 control_c384gdas results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -1475,14 +1475,14 @@ Checking test 027 control_c384gdas 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 = 886.271467 - 0: The maximum resident set size (KB) = 1183732 + 0: The total amount of wall time = 1034.138797 + 0: The maximum resident set size (KB) = 1202304 Test 027 control_c384gdas PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_stochy +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_stochy Checking test 028 control_stochy results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf012.nc ............ALT CHECK......OK @@ -1493,28 +1493,28 @@ Checking test 028 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 129.081374 - 0: The maximum resident set size (KB) = 578032 + 0: The total amount of wall time = 152.004913 + 0: The maximum resident set size (KB) = 575080 Test 028 control_stochy PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_stochy_restart +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_stochy_restart Checking test 029 control_stochy_restart results .... Comparing sfcf012.nc ............ALT CHECK......OK Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 99.764589 - 0: The maximum resident set size (KB) = 400844 + 0: The total amount of wall time = 85.015646 + 0: The maximum resident set size (KB) = 394312 Test 029 control_stochy_restart PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_lndp -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_lndp +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_lndp Checking test 030 control_lndp results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf012.nc ............ALT CHECK......OK @@ -1525,14 +1525,14 @@ Checking test 030 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 127.630500 - 0: The maximum resident set size (KB) = 574040 + 0: The total amount of wall time = 117.052399 + 0: The maximum resident set size (KB) = 577868 Test 030 control_lndp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_iovr4 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_iovr4 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_iovr4 Checking test 031 control_iovr4 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1547,14 +1547,14 @@ Checking test 031 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 225.998396 - 0: The maximum resident set size (KB) = 576016 + 0: The total amount of wall time = 228.610344 + 0: The maximum resident set size (KB) = 573720 Test 031 control_iovr4 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_iovr5 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_iovr5 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_iovr5 Checking test 032 control_iovr5 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1569,14 +1569,14 @@ Checking test 032 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 231.029203 - 0: The maximum resident set size (KB) = 575136 + 0: The total amount of wall time = 241.888196 + 0: The maximum resident set size (KB) = 580768 Test 032 control_iovr5 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_p8 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_p8 Checking test 033 control_p8 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1623,14 +1623,14 @@ Checking test 033 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 261.445733 - 0: The maximum resident set size (KB) = 1549720 + 0: The total amount of wall time = 268.400825 + 0: The maximum resident set size (KB) = 1551556 Test 033 control_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_restart_p8 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_restart_p8 Checking test 034 control_restart_p8 results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -1669,14 +1669,14 @@ Checking test 034 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 161.089002 - 0: The maximum resident set size (KB) = 783648 + 0: The total amount of wall time = 171.548169 + 0: The maximum resident set size (KB) = 785188 Test 034 control_restart_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_qr_p8 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_qr_p8 Checking test 035 control_qr_p8 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1723,14 +1723,14 @@ Checking test 035 control_qr_p8 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 = 260.152890 - 0: The maximum resident set size (KB) = 1551932 + 0: The total amount of wall time = 263.485795 + 0: The maximum resident set size (KB) = 1548696 Test 035 control_qr_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_restart_qr_p8 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_restart_qr_p8 Checking test 036 control_restart_qr_p8 results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -1769,14 +1769,14 @@ Checking test 036 control_restart_qr_p8 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 = 166.418503 - 0: The maximum resident set size (KB) = 785864 + 0: The total amount of wall time = 155.068476 + 0: The maximum resident set size (KB) = 783892 Test 036 control_restart_qr_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_decomp_p8 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_decomp_p8 Checking test 037 control_decomp_p8 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1819,14 +1819,14 @@ Checking test 037 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 282.278049 - 0: The maximum resident set size (KB) = 1533300 + 0: The total amount of wall time = 262.638294 + 0: The maximum resident set size (KB) = 1537976 Test 037 control_decomp_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_2threads_p8 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_2threads_p8 Checking test 038 control_2threads_p8 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1869,14 +1869,14 @@ Checking test 038 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 247.924704 - 0: The maximum resident set size (KB) = 1628632 + 0: The total amount of wall time = 238.032374 + 0: The maximum resident set size (KB) = 1631768 Test 038 control_2threads_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_lndp -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_p8_lndp +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_p8_lndp Checking test 039 control_p8_lndp results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1895,14 +1895,14 @@ Checking test 039 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 468.921847 - 0: The maximum resident set size (KB) = 1542392 + 0: The total amount of wall time = 504.265844 + 0: The maximum resident set size (KB) = 1534952 Test 039 control_p8_lndp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_rrtmgp -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_p8_rrtmgp +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_p8_rrtmgp Checking test 040 control_p8_rrtmgp results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1949,14 +1949,14 @@ Checking test 040 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 338.059248 - 0: The maximum resident set size (KB) = 1610868 + 0: The total amount of wall time = 330.832097 + 0: The maximum resident set size (KB) = 1604076 Test 040 control_p8_rrtmgp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_mynn -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_p8_mynn +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_p8_mynn Checking test 041 control_p8_mynn results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -2003,14 +2003,14 @@ Checking test 041 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 242.921928 - 0: The maximum resident set size (KB) = 1541044 + 0: The total amount of wall time = 260.523031 + 0: The maximum resident set size (KB) = 1538440 Test 041 control_p8_mynn PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/merra2_thompson -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/merra2_thompson +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/merra2_thompson Checking test 042 merra2_thompson results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -2057,14 +2057,14 @@ Checking test 042 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 282.646309 - 0: The maximum resident set size (KB) = 1557748 + 0: The total amount of wall time = 292.459458 + 0: The maximum resident set size (KB) = 1552508 Test 042 merra2_thompson PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/regional_control +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/regional_control Checking test 043 regional_control results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf006.nc ............ALT CHECK......OK @@ -2075,28 +2075,28 @@ Checking test 043 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 481.236926 - 0: The maximum resident set size (KB) = 786580 + 0: The total amount of wall time = 452.126340 + 0: The maximum resident set size (KB) = 784276 Test 043 regional_control PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/regional_restart +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/regional_restart Checking test 044 regional_restart results .... Comparing dynf006.nc ............ALT CHECK......OK Comparing phyf006.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 229.066694 - 0: The maximum resident set size (KB) = 779500 + 0: The total amount of wall time = 270.562522 + 0: The maximum resident set size (KB) = 779728 Test 044 regional_restart PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/regional_control_qr +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/regional_control_qr Checking test 045 regional_control_qr results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf006.nc ............ALT CHECK......OK @@ -2107,28 +2107,28 @@ Checking test 045 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 498.906433 - 0: The maximum resident set size (KB) = 792220 + 0: The total amount of wall time = 507.170656 + 0: The maximum resident set size (KB) = 786604 Test 045 regional_control_qr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/regional_restart_qr +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/regional_restart_qr Checking test 046 regional_restart_qr results .... Comparing dynf006.nc ............ALT CHECK......OK Comparing phyf006.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 237.169333 - 0: The maximum resident set size (KB) = 783572 + 0: The total amount of wall time = 298.135531 + 0: The maximum resident set size (KB) = 784756 Test 046 regional_restart_qr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/regional_decomp +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/regional_decomp Checking test 047 regional_decomp results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf006.nc ............ALT CHECK......OK @@ -2139,14 +2139,14 @@ Checking test 047 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 531.190823 - 0: The maximum resident set size (KB) = 779448 + 0: The total amount of wall time = 559.185407 + 0: The maximum resident set size (KB) = 785072 Test 047 regional_decomp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/regional_2threads +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/regional_2threads Checking test 048 regional_2threads results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf006.nc ............ALT CHECK......OK @@ -2157,14 +2157,14 @@ Checking test 048 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 363.250536 - 0: The maximum resident set size (KB) = 768928 + 0: The total amount of wall time = 351.931653 + 0: The maximum resident set size (KB) = 771000 Test 048 regional_2threads PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_noquilt -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/regional_noquilt +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/regional_noquilt Checking test 049 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2172,28 +2172,28 @@ Checking test 049 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 520.974923 - 0: The maximum resident set size (KB) = 771044 + 0: The total amount of wall time = 533.411360 + 0: The maximum resident set size (KB) = 772152 Test 049 regional_noquilt PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/regional_netcdf_parallel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/regional_netcdf_parallel Checking test 050 regional_netcdf_parallel results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf006.nc ............ALT CHECK......OK Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 492.859854 - 0: The maximum resident set size (KB) = 781344 + 0: The total amount of wall time = 480.102099 + 0: The maximum resident set size (KB) = 784920 Test 050 regional_netcdf_parallel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/regional_2dwrtdecomp +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/regional_2dwrtdecomp Checking test 051 regional_2dwrtdecomp results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf006.nc ............ALT CHECK......OK @@ -2204,14 +2204,14 @@ Checking test 051 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 490.300199 - 0: The maximum resident set size (KB) = 787648 + 0: The total amount of wall time = 538.204759 + 0: The maximum resident set size (KB) = 790372 Test 051 regional_2dwrtdecomp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/fv3_regional_wofs -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/regional_wofs +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/regional_wofs Checking test 052 regional_wofs results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf006.nc ............ALT CHECK......OK @@ -2222,14 +2222,14 @@ Checking test 052 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 585.147504 - 0: The maximum resident set size (KB) = 523388 + 0: The total amount of wall time = 648.503180 + 0: The maximum resident set size (KB) = 522496 Test 052 regional_wofs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/rap_control +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rap_control Checking test 053 rap_control results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -2276,14 +2276,14 @@ Checking test 053 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 628.751976 - 0: The maximum resident set size (KB) = 947612 + 0: The total amount of wall time = 754.487613 + 0: The maximum resident set size (KB) = 946380 Test 053 rap_control PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/regional_spp_sppt_shum_skeb +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/regional_spp_sppt_shum_skeb Checking test 054 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf001.nc ............ALT CHECK......OK @@ -2294,14 +2294,14 @@ Checking test 054 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 331.544712 - 0: The maximum resident set size (KB) = 1093752 + 0: The total amount of wall time = 432.100085 + 0: The maximum resident set size (KB) = 1093904 Test 054 regional_spp_sppt_shum_skeb PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/rap_decomp +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rap_decomp Checking test 055 rap_decomp results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -2348,14 +2348,14 @@ Checking test 055 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 705.382014 - 0: The maximum resident set size (KB) = 944580 + 0: The total amount of wall time = 801.417395 + 0: The maximum resident set size (KB) = 946176 Test 055 rap_decomp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/rap_2threads +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rap_2threads Checking test 056 rap_2threads results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -2402,14 +2402,14 @@ Checking test 056 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 666.353913 - 0: The maximum resident set size (KB) = 1015748 + 0: The total amount of wall time = 736.912088 + 0: The maximum resident set size (KB) = 1013064 Test 056 rap_2threads PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/rap_restart +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rap_restart Checking test 057 rap_restart results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -2448,14 +2448,14 @@ Checking test 057 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 347.780550 - 0: The maximum resident set size (KB) = 825364 + 0: The total amount of wall time = 376.060571 + 0: The maximum resident set size (KB) = 837684 Test 057 rap_restart PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/rap_sfcdiff +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rap_sfcdiff Checking test 058 rap_sfcdiff results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -2502,14 +2502,14 @@ Checking test 058 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 675.735789 - 0: The maximum resident set size (KB) = 944792 + 0: The total amount of wall time = 797.644927 + 0: The maximum resident set size (KB) = 961368 Test 058 rap_sfcdiff PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/rap_sfcdiff_decomp +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rap_sfcdiff_decomp Checking test 059 rap_sfcdiff_decomp results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -2556,14 +2556,14 @@ Checking test 059 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 700.113147 - 0: The maximum resident set size (KB) = 936492 + 0: The total amount of wall time = 819.089209 + 0: The maximum resident set size (KB) = 949216 Test 059 rap_sfcdiff_decomp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/rap_sfcdiff_restart +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rap_sfcdiff_restart Checking test 060 rap_sfcdiff_restart results .... Comparing sfcf012.nc ............ALT CHECK......OK Comparing atmf012.nc ............ALT CHECK......OK @@ -2602,14 +2602,14 @@ Checking test 060 rap_sfcdiff_restart results .... Comparing 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.027997 - 0: The maximum resident set size (KB) = 832060 + 0: The total amount of wall time = 577.777706 + 0: The maximum resident set size (KB) = 839940 Test 060 rap_sfcdiff_restart PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/hrrr_control +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/hrrr_control Checking test 061 hrrr_control results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -2656,14 +2656,14 @@ Checking test 061 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 626.749381 - 0: The maximum resident set size (KB) = 942544 + 0: The total amount of wall time = 734.319611 + 0: The maximum resident set size (KB) = 945516 Test 061 hrrr_control PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/hrrr_control_decomp +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/hrrr_control_decomp Checking test 062 hrrr_control_decomp results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -2710,14 +2710,14 @@ Checking test 062 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 688.483748 - 0: The maximum resident set size (KB) = 947484 + 0: The total amount of wall time = 715.874807 + 0: The maximum resident set size (KB) = 949024 Test 062 hrrr_control_decomp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/hrrr_control_2threads +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/hrrr_control_2threads Checking test 063 hrrr_control_2threads results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -2764,14 +2764,14 @@ Checking test 063 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 625.325883 - 0: The maximum resident set size (KB) = 1017808 + 0: The total amount of wall time = 701.760118 + 0: The maximum resident set size (KB) = 1018056 Test 063 hrrr_control_2threads PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/hrrr_control_restart +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/hrrr_control_restart Checking test 064 hrrr_control_restart results .... Comparing sfcf012.nc ............ALT CHECK......OK Comparing atmf012.nc ............ALT CHECK......OK @@ -2810,14 +2810,14 @@ Checking test 064 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 454.225471 - 0: The maximum resident set size (KB) = 837216 + 0: The total amount of wall time = 485.620894 + 0: The maximum resident set size (KB) = 837012 Test 064 hrrr_control_restart PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1beta -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/rrfs_v1beta +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rrfs_v1beta Checking test 065 rrfs_v1beta results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -2864,14 +2864,14 @@ Checking test 065 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 650.165143 - 0: The maximum resident set size (KB) = 953736 + 0: The total amount of wall time = 760.314881 + 0: The maximum resident set size (KB) = 948708 Test 065 rrfs_v1beta PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1nssl -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/rrfs_v1nssl +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rrfs_v1nssl Checking test 066 rrfs_v1nssl results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -2886,14 +2886,14 @@ Checking test 066 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 752.997042 - 0: The maximum resident set size (KB) = 637300 + 0: The total amount of wall time = 877.765531 + 0: The maximum resident set size (KB) = 635076 Test 066 rrfs_v1nssl PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/rrfs_v1nssl_nohailnoccn +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rrfs_v1nssl_nohailnoccn Checking test 067 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -2908,14 +2908,14 @@ Checking test 067 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 757.036625 - 0: The maximum resident set size (KB) = 630340 + 0: The total amount of wall time = 855.802971 + 0: The maximum resident set size (KB) = 631580 Test 067 rrfs_v1nssl_nohailnoccn PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rrfs_smoke_conus13km_hrrr_warm Checking test 068 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK @@ -2924,14 +2924,14 @@ Checking test 068 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc ............ALT CHECK......OK Comparing atmf002.nc ............ALT CHECK......OK - 0: The total amount of wall time = 218.868373 - 0: The maximum resident set size (KB) = 905588 + 0: The total amount of wall time = 243.302644 + 0: The maximum resident set size (KB) = 905556 Test 068 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/rrfs_smoke_conus13km_hrrr_warm_2threads +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 069 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK @@ -2940,14 +2940,14 @@ Checking test 069 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc ............ALT CHECK......OK Comparing atmf002.nc ............ALT CHECK......OK - 0: The total amount of wall time = 158.913356 - 0: The maximum resident set size (KB) = 859480 + 0: The total amount of wall time = 167.578613 + 0: The maximum resident set size (KB) = 852256 Test 069 rrfs_smoke_conus13km_hrrr_warm_2threads PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/rrfs_conus13km_hrrr_warm +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rrfs_conus13km_hrrr_warm Checking test 070 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK @@ -2956,14 +2956,14 @@ Checking test 070 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc ............ALT CHECK......OK Comparing atmf002.nc ............ALT CHECK......OK - 0: The total amount of wall time = 192.595495 - 0: The maximum resident set size (KB) = 859172 + 0: The total amount of wall time = 223.165184 + 0: The maximum resident set size (KB) = 860244 Test 070 rrfs_conus13km_hrrr_warm PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/rrfs_smoke_conus13km_radar_tten_warm +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rrfs_smoke_conus13km_radar_tten_warm Checking test 071 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK @@ -2972,14 +2972,14 @@ Checking test 071 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc ............ALT CHECK......OK Comparing atmf002.nc ............ALT CHECK......OK - 0: The total amount of wall time = 231.756822 - 0: The maximum resident set size (KB) = 892732 + 0: The total amount of wall time = 237.867258 + 0: The maximum resident set size (KB) = 896772 Test 071 rrfs_smoke_conus13km_radar_tten_warm PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmg -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_csawmg +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_csawmg Checking test 072 control_csawmg results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2990,14 +2990,14 @@ Checking test 072 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 479.155561 - 0: The maximum resident set size (KB) = 670324 + 0: The total amount of wall time = 508.957660 + 0: The maximum resident set size (KB) = 672180 Test 072 control_csawmg PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmgt -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_csawmgt +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_csawmgt Checking test 073 control_csawmgt results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -3008,14 +3008,14 @@ Checking test 073 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 480.549659 - 0: The maximum resident set size (KB) = 672128 + 0: The total amount of wall time = 546.011757 + 0: The maximum resident set size (KB) = 665460 Test 073 control_csawmgt PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_ras -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_ras +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_ras Checking test 074 control_ras results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -3026,26 +3026,26 @@ Checking test 074 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 265.902659 - 0: The maximum resident set size (KB) = 633456 + 0: The total amount of wall time = 288.746277 + 0: The maximum resident set size (KB) = 637328 Test 074 control_ras PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wam -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_wam +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_wam Checking test 075 control_wam results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK - 0: The total amount of wall time = 155.259630 - 0: The maximum resident set size (KB) = 484020 + 0: The total amount of wall time = 198.171815 + 0: The maximum resident set size (KB) = 484080 Test 075 control_wam PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_faster -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_p8_faster +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_p8_faster Checking test 076 control_p8_faster results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -3092,14 +3092,14 @@ Checking test 076 control_p8_faster results .... Comparing 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.841006 - 0: The maximum resident set size (KB) = 1538092 + 0: The total amount of wall time = 307.458730 + 0: The maximum resident set size (KB) = 1537040 Test 076 control_p8_faster PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control_faster -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/regional_control_faster +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/regional_control_faster Checking test 077 regional_control_faster results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf006.nc ............ALT CHECK......OK @@ -3110,56 +3110,56 @@ Checking test 077 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 418.813789 - 0: The maximum resident set size (KB) = 785144 + 0: The total amount of wall time = 543.181149 + 0: The maximum resident set size (KB) = 785956 Test 077 regional_control_faster PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 078 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 1109.593963 - 0: The maximum resident set size (KB) = 930768 + 0: The total amount of wall time = 1106.523355 + 0: The maximum resident set size (KB) = 931180 Test 078 rrfs_smoke_conus13km_hrrr_warm_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 079 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 685.345590 - 0: The maximum resident set size (KB) = 896800 + 0: The total amount of wall time = 681.103722 + 0: The maximum resident set size (KB) = 896540 Test 079 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/rrfs_conus13km_hrrr_warm_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rrfs_conus13km_hrrr_warm_debug Checking test 080 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 1014.285612 - 0: The maximum resident set size (KB) = 893716 + 0: The total amount of wall time = 1002.085398 + 0: The maximum resident set size (KB) = 890880 Test 080 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_CubedSphereGrid_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_CubedSphereGrid_debug Checking test 081 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3186,334 +3186,334 @@ Checking test 081 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 240.446597 - 0: The maximum resident set size (KB) = 735872 + 0: The total amount of wall time = 229.317493 + 0: The maximum resident set size (KB) = 736424 Test 081 control_CubedSphereGrid_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_wrtGauss_netcdf_parallel_debug Checking test 082 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 210.960842 - 0: The maximum resident set size (KB) = 732384 + 0: The total amount of wall time = 220.025678 + 0: The maximum resident set size (KB) = 734476 Test 082 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_stochy_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_stochy_debug Checking test 083 control_stochy_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 233.899377 - 0: The maximum resident set size (KB) = 738508 + 0: The total amount of wall time = 251.964705 + 0: The maximum resident set size (KB) = 743108 Test 083 control_stochy_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_lndp_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_lndp_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_lndp_debug Checking test 084 control_lndp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 215.337774 - 0: The maximum resident set size (KB) = 740076 + 0: The total amount of wall time = 214.475535 + 0: The maximum resident set size (KB) = 744640 Test 084 control_lndp_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmg_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_csawmg_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_csawmg_debug Checking test 085 control_csawmg_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 321.269559 - 0: The maximum resident set size (KB) = 782256 + 0: The total amount of wall time = 339.015136 + 0: The maximum resident set size (KB) = 788124 Test 085 control_csawmg_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmgt_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_csawmgt_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_csawmgt_debug Checking test 086 control_csawmgt_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 321.037200 - 0: The maximum resident set size (KB) = 791036 + 0: The total amount of wall time = 326.385183 + 0: The maximum resident set size (KB) = 783876 Test 086 control_csawmgt_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_ras_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_ras_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_ras_debug Checking test 087 control_ras_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 218.868213 - 0: The maximum resident set size (KB) = 752416 + 0: The total amount of wall time = 231.148923 + 0: The maximum resident set size (KB) = 748840 Test 087 control_ras_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_diag_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_diag_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_diag_debug Checking test 088 control_diag_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 225.691086 - 0: The maximum resident set size (KB) = 798496 + 0: The total amount of wall time = 230.614929 + 0: The maximum resident set size (KB) = 789608 Test 088 control_diag_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_debug_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_debug_p8 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_debug_p8 Checking test 089 control_debug_p8 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 235.856449 - 0: The maximum resident set size (KB) = 1558152 + 0: The total amount of wall time = 242.348999 + 0: The maximum resident set size (KB) = 1562484 Test 089 control_debug_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/regional_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/regional_debug Checking test 090 regional_debug results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf001.nc ............ALT CHECK......OK Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 1309.385474 - 0: The maximum resident set size (KB) = 807152 + 0: The total amount of wall time = 1352.668673 + 0: The maximum resident set size (KB) = 804360 Test 090 regional_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/rap_control_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rap_control_debug Checking test 091 rap_control_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 375.407790 - 0: The maximum resident set size (KB) = 1109880 + 0: The total amount of wall time = 383.262896 + 0: The maximum resident set size (KB) = 1120044 Test 091 rap_control_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/hrrr_control_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/hrrr_control_debug Checking test 092 hrrr_control_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 363.091265 - 0: The maximum resident set size (KB) = 1112088 + 0: The total amount of wall time = 400.296304 + 0: The maximum resident set size (KB) = 1110964 Test 092 hrrr_control_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/rap_unified_drag_suite_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rap_unified_drag_suite_debug Checking test 093 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 365.594293 - 0: The maximum resident set size (KB) = 1119292 + 0: The total amount of wall time = 425.257782 + 0: The maximum resident set size (KB) = 1119000 Test 093 rap_unified_drag_suite_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_diag_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/rap_diag_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rap_diag_debug Checking test 094 rap_diag_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 394.528654 - 0: The maximum resident set size (KB) = 1199572 + 0: The total amount of wall time = 422.685362 + 0: The maximum resident set size (KB) = 1191984 Test 094 rap_diag_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/rap_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rap_cires_ugwp_debug Checking test 095 rap_cires_ugwp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 381.508303 - 0: The maximum resident set size (KB) = 1110296 + 0: The total amount of wall time = 388.079086 + 0: The maximum resident set size (KB) = 1115656 Test 095 rap_cires_ugwp_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/rap_unified_ugwp_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rap_unified_ugwp_debug Checking test 096 rap_unified_ugwp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 385.917256 - 0: The maximum resident set size (KB) = 1109892 + 0: The total amount of wall time = 403.996632 + 0: The maximum resident set size (KB) = 1115548 Test 096 rap_unified_ugwp_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_lndp_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/rap_lndp_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rap_lndp_debug Checking test 097 rap_lndp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 370.509520 - 0: The maximum resident set size (KB) = 1113552 + 0: The total amount of wall time = 398.170305 + 0: The maximum resident set size (KB) = 1111388 Test 097 rap_lndp_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_flake_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/rap_flake_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rap_flake_debug Checking test 098 rap_flake_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 389.475709 - 0: The maximum resident set size (KB) = 1118284 + 0: The total amount of wall time = 377.835203 + 0: The maximum resident set size (KB) = 1121440 Test 098 rap_flake_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_progcld_thompson_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/rap_progcld_thompson_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rap_progcld_thompson_debug Checking test 099 rap_progcld_thompson_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 376.609837 - 0: The maximum resident set size (KB) = 1118420 + 0: The total amount of wall time = 391.710992 + 0: The maximum resident set size (KB) = 1110664 Test 099 rap_progcld_thompson_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_noah_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/rap_noah_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rap_noah_debug Checking test 100 rap_noah_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 363.334208 - 0: The maximum resident set size (KB) = 1114480 + 0: The total amount of wall time = 369.132755 + 0: The maximum resident set size (KB) = 1118652 Test 100 rap_noah_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/rap_sfcdiff_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rap_sfcdiff_debug Checking test 101 rap_sfcdiff_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 410.738842 - 0: The maximum resident set size (KB) = 1118440 + 0: The total amount of wall time = 379.719349 + 0: The maximum resident set size (KB) = 1119184 Test 101 rap_sfcdiff_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rap_noah_sfcdiff_cires_ugwp_debug Checking test 102 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 600.533700 - 0: The maximum resident set size (KB) = 1114120 + 0: The total amount of wall time = 614.405938 + 0: The maximum resident set size (KB) = 1112456 Test 102 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1beta_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/rrfs_v1beta_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rrfs_v1beta_debug Checking test 103 rrfs_v1beta_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 366.762459 - 0: The maximum resident set size (KB) = 1111972 + 0: The total amount of wall time = 378.953133 + 0: The maximum resident set size (KB) = 1112836 Test 103 rrfs_v1beta_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wam_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_wam_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_wam_debug Checking test 104 control_wam_debug results .... Comparing sfcf019.nc ............ALT CHECK......OK Comparing atmf019.nc ............ALT CHECK......OK - 0: The total amount of wall time = 413.222421 - 0: The maximum resident set size (KB) = 443992 + 0: The total amount of wall time = 372.851501 + 0: The maximum resident set size (KB) = 441356 Test 104 control_wam_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 105 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf001.nc ............ALT CHECK......OK @@ -3524,14 +3524,14 @@ Checking test 105 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 327.913760 - 0: The maximum resident set size (KB) = 972292 + 0: The total amount of wall time = 361.721033 + 0: The maximum resident set size (KB) = 985520 Test 105 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rap_control_dyn32_phy32 Checking test 106 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -3578,14 +3578,14 @@ Checking test 106 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 575.672255 - 0: The maximum resident set size (KB) = 843000 + 0: The total amount of wall time = 593.851647 + 0: The maximum resident set size (KB) = 843404 Test 106 rap_control_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/hrrr_control_dyn32_phy32 Checking test 107 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -3632,14 +3632,14 @@ Checking test 107 hrrr_control_dyn32_phy32 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 = 280.607455 - 0: The maximum resident set size (KB) = 825536 + 0: The total amount of wall time = 316.109015 + 0: The maximum resident set size (KB) = 824092 Test 107 hrrr_control_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/rap_2threads_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rap_2threads_dyn32_phy32 Checking test 108 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -3686,14 +3686,14 @@ Checking test 108 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 553.467737 - 0: The maximum resident set size (KB) = 884328 + 0: The total amount of wall time = 560.795543 + 0: The maximum resident set size (KB) = 885376 Test 108 rap_2threads_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/hrrr_control_2threads_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/hrrr_control_2threads_dyn32_phy32 Checking test 109 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -3740,14 +3740,14 @@ Checking test 109 hrrr_control_2threads_dyn32_phy32 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 = 280.697099 - 0: The maximum resident set size (KB) = 888784 + 0: The total amount of wall time = 306.117586 + 0: The maximum resident set size (KB) = 886436 Test 109 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/hrrr_control_decomp_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/hrrr_control_decomp_dyn32_phy32 Checking test 110 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -3794,14 +3794,14 @@ Checking test 110 hrrr_control_decomp_dyn32_phy32 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 = 296.511802 - 0: The maximum resident set size (KB) = 824436 + 0: The total amount of wall time = 339.960610 + 0: The maximum resident set size (KB) = 821308 Test 110 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/rap_restart_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rap_restart_dyn32_phy32 Checking test 111 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc ............ALT CHECK......OK Comparing atmf012.nc ............ALT CHECK......OK @@ -3840,14 +3840,14 @@ Checking test 111 rap_restart_dyn32_phy32 results .... Comparing 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.491472 - 0: The maximum resident set size (KB) = 811212 + 0: The total amount of wall time = 411.515213 + 0: The maximum resident set size (KB) = 805256 Test 111 rap_restart_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/hrrr_control_restart_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/hrrr_control_restart_dyn32_phy32 Checking test 112 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc ............ALT CHECK......OK Comparing atmf012.nc ............ALT CHECK......OK @@ -3886,14 +3886,14 @@ Checking test 112 hrrr_control_restart_dyn32_phy32 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 = 148.756361 - 0: The maximum resident set size (KB) = 760532 + 0: The total amount of wall time = 151.432656 + 0: The maximum resident set size (KB) = 760992 Test 112 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn64_phy32 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/rap_control_dyn64_phy32 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rap_control_dyn64_phy32 Checking test 113 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -3940,81 +3940,81 @@ Checking test 113 rap_control_dyn64_phy32 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 = 360.810121 - 0: The maximum resident set size (KB) = 861848 + 0: The total amount of wall time = 385.877550 + 0: The maximum resident set size (KB) = 864468 Test 113 rap_control_dyn64_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/rap_control_debug_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rap_control_debug_dyn32_phy32 Checking test 114 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 379.922105 - 0: The maximum resident set size (KB) = 993916 + 0: The total amount of wall time = 370.829560 + 0: The maximum resident set size (KB) = 996808 Test 114 rap_control_debug_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/hrrr_control_debug_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/hrrr_control_debug_dyn32_phy32 Checking test 115 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 409.469279 - 0: The maximum resident set size (KB) = 989872 + 0: The total amount of wall time = 357.159445 + 0: The maximum resident set size (KB) = 991396 Test 115 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/rap_control_dyn64_phy32_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rap_control_dyn64_phy32_debug Checking test 116 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 375.058108 - 0: The maximum resident set size (KB) = 1029792 + 0: The total amount of wall time = 401.066020 + 0: The maximum resident set size (KB) = 1035836 Test 116 rap_control_dyn64_phy32_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/hafs_regional_atm +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/hafs_regional_atm Checking test 117 hafs_regional_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 394.628091 - 0: The maximum resident set size (KB) = 1219332 + 0: The total amount of wall time = 412.439478 + 0: The maximum resident set size (KB) = 1214276 Test 117 hafs_regional_atm PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/hafs_regional_atm_thompson_gfdlsf Checking test 118 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 578.870720 - 0: The maximum resident set size (KB) = 1571112 + 0: The total amount of wall time = 586.398192 + 0: The maximum resident set size (KB) = 1533748 Test 118 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_ocn -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/hafs_regional_atm_ocn +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/hafs_regional_atm_ocn Checking test 119 hafs_regional_atm_ocn results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4023,14 +4023,14 @@ Checking test 119 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 597.348745 - 0: The maximum resident set size (KB) = 1290984 + 0: The total amount of wall time = 648.189609 + 0: The maximum resident set size (KB) = 1293448 Test 119 hafs_regional_atm_ocn PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_wav -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/hafs_regional_atm_wav +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/hafs_regional_atm_wav Checking test 120 hafs_regional_atm_wav results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4039,14 +4039,14 @@ Checking test 120 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 1015.139757 - 0: The maximum resident set size (KB) = 1319608 + 0: The total amount of wall time = 1176.581760 + 0: The maximum resident set size (KB) = 1283732 Test 120 hafs_regional_atm_wav PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/hafs_regional_atm_ocn_wav +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/hafs_regional_atm_ocn_wav Checking test 121 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4057,14 +4057,14 @@ Checking test 121 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 1123.858784 - 0: The maximum resident set size (KB) = 1338948 + 0: The total amount of wall time = 1160.515171 + 0: The maximum resident set size (KB) = 1345800 Test 121 hafs_regional_atm_ocn_wav PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_docn -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/hafs_regional_docn +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/hafs_regional_docn Checking test 122 hafs_regional_docn results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4072,14 +4072,14 @@ Checking test 122 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 585.097728 - 0: The maximum resident set size (KB) = 1266668 + 0: The total amount of wall time = 623.684219 + 0: The maximum resident set size (KB) = 1300772 Test 122 hafs_regional_docn PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_docn_oisst -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/hafs_regional_docn_oisst +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/hafs_regional_docn_oisst Checking test 123 hafs_regional_docn_oisst results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4087,131 +4087,131 @@ Checking test 123 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 598.832795 - 0: The maximum resident set size (KB) = 1284588 + 0: The total amount of wall time = 648.654910 + 0: The maximum resident set size (KB) = 1282300 Test 123 hafs_regional_docn_oisst PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_datm_cdeps -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/hafs_regional_datm_cdeps +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/hafs_regional_datm_cdeps Checking test 124 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 1397.898532 - 0: The maximum resident set size (KB) = 976496 + 0: The total amount of wall time = 1510.967414 + 0: The maximum resident set size (KB) = 973108 Test 124 hafs_regional_datm_cdeps PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/datm_cdeps_control_cfsr Checking test 125 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 235.778202 - 0: The maximum resident set size (KB) = 961984 + 0: The total amount of wall time = 355.558782 + 0: The maximum resident set size (KB) = 958684 Test 125 datm_cdeps_control_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/datm_cdeps_restart_cfsr +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/datm_cdeps_restart_cfsr Checking test 126 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.108798 - 0: The maximum resident set size (KB) = 932196 + 0: The total amount of wall time = 137.977852 + 0: The maximum resident set size (KB) = 933356 Test 126 datm_cdeps_restart_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_gefs -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/datm_cdeps_control_gefs +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/datm_cdeps_control_gefs Checking test 127 datm_cdeps_control_gefs 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 = 232.115675 - 0: The maximum resident set size (KB) = 865672 + 0: The total amount of wall time = 339.987949 + 0: The maximum resident set size (KB) = 859828 Test 127 datm_cdeps_control_gefs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_iau_gefs -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/datm_cdeps_iau_gefs +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/datm_cdeps_iau_gefs Checking test 128 datm_cdeps_iau_gefs 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 = 227.842588 - 0: The maximum resident set size (KB) = 859076 + 0: The total amount of wall time = 307.819390 + 0: The maximum resident set size (KB) = 862680 Test 128 datm_cdeps_iau_gefs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_stochy_gefs -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/datm_cdeps_stochy_gefs +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/datm_cdeps_stochy_gefs Checking test 129 datm_cdeps_stochy_gefs 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 = 238.091922 - 0: The maximum resident set size (KB) = 866096 + 0: The total amount of wall time = 339.093601 + 0: The maximum resident set size (KB) = 862804 Test 129 datm_cdeps_stochy_gefs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/datm_cdeps_ciceC_cfsr +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/datm_cdeps_ciceC_cfsr Checking test 130 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 228.359561 - 0: The maximum resident set size (KB) = 964808 + 0: The total amount of wall time = 340.976176 + 0: The maximum resident set size (KB) = 961920 Test 130 datm_cdeps_ciceC_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/datm_cdeps_bulk_cfsr +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/datm_cdeps_bulk_cfsr Checking test 131 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 237.370718 - 0: The maximum resident set size (KB) = 965176 + 0: The total amount of wall time = 342.172516 + 0: The maximum resident set size (KB) = 981924 Test 131 datm_cdeps_bulk_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/datm_cdeps_bulk_gefs +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/datm_cdeps_bulk_gefs Checking test 132 datm_cdeps_bulk_gefs 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 = 236.753671 - 0: The maximum resident set size (KB) = 861704 + 0: The total amount of wall time = 328.216476 + 0: The maximum resident set size (KB) = 868108 Test 132 datm_cdeps_bulk_gefs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/datm_cdeps_mx025_cfsr +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/datm_cdeps_mx025_cfsr Checking test 133 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4220,14 +4220,14 @@ Checking test 133 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 638.185189 - 0: The maximum resident set size (KB) = 765728 + 0: The total amount of wall time = 739.194461 + 0: The maximum resident set size (KB) = 767996 Test 133 datm_cdeps_mx025_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/datm_cdeps_mx025_gefs +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/datm_cdeps_mx025_gefs Checking test 134 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4236,77 +4236,77 @@ Checking test 134 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 667.766258 - 0: The maximum resident set size (KB) = 737456 + 0: The total amount of wall time = 675.469879 + 0: The maximum resident set size (KB) = 737636 Test 134 datm_cdeps_mx025_gefs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/datm_cdeps_multiple_files_cfsr +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/datm_cdeps_multiple_files_cfsr Checking test 135 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 231.901616 - 0: The maximum resident set size (KB) = 959120 + 0: The total amount of wall time = 266.414544 + 0: The maximum resident set size (KB) = 962492 Test 135 datm_cdeps_multiple_files_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/datm_cdeps_3072x1536_cfsr +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/datm_cdeps_3072x1536_cfsr Checking test 136 datm_cdeps_3072x1536_cfsr 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 = 373.071805 - 0: The maximum resident set size (KB) = 2247176 + 0: The total amount of wall time = 430.474607 + 0: The maximum resident set size (KB) = 2196860 Test 136 datm_cdeps_3072x1536_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_gfs -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/datm_cdeps_gfs +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/datm_cdeps_gfs Checking test 137 datm_cdeps_gfs 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 = 306.455340 - 0: The maximum resident set size (KB) = 2270020 + 0: The total amount of wall time = 392.529923 + 0: The maximum resident set size (KB) = 2259524 Test 137 datm_cdeps_gfs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_debug_cfsr -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/datm_cdeps_debug_cfsr +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/datm_cdeps_debug_cfsr Checking test 138 datm_cdeps_debug_cfsr 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 = 594.927580 - 0: The maximum resident set size (KB) = 926368 + 0: The total amount of wall time = 599.730889 + 0: The maximum resident set size (KB) = 914536 Test 138 datm_cdeps_debug_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr_faster -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/datm_cdeps_control_cfsr_faster +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/datm_cdeps_control_cfsr_faster Checking test 139 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.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 = 258.481537 - 0: The maximum resident set size (KB) = 984292 + 0: The total amount of wall time = 288.581705 + 0: The maximum resident set size (KB) = 959896 Test 139 datm_cdeps_control_cfsr_faster PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/datm_cdeps_lnd_gswp3 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/datm_cdeps_lnd_gswp3 Checking test 140 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4315,14 +4315,14 @@ Checking test 140 datm_cdeps_lnd_gswp3 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 = 19.852206 - 0: The maximum resident set size (KB) = 252636 + 0: The total amount of wall time = 25.122612 + 0: The maximum resident set size (KB) = 253344 Test 140 datm_cdeps_lnd_gswp3 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/datm_cdeps_lnd_gswp3_rst +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/datm_cdeps_lnd_gswp3_rst Checking test 141 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4331,14 +4331,14 @@ Checking test 141 datm_cdeps_lnd_gswp3_rst 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 = 21.070416 - 0: The maximum resident set size (KB) = 252292 + 0: The total amount of wall time = 25.669702 + 0: The maximum resident set size (KB) = 251680 Test 141 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_atmlnd_sbs -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_p8_atmlnd_sbs +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_p8_atmlnd_sbs Checking test 142 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4423,14 +4423,14 @@ Checking test 142 control_p8_atmlnd_sbs 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 = 433.064265 - 0: The maximum resident set size (KB) = 1597932 + 0: The total amount of wall time = 400.975608 + 0: The maximum resident set size (KB) = 1598816 Test 142 control_p8_atmlnd_sbs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_atmwav -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/control_atmwav +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_atmwav Checking test 143 control_atmwav results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf012.nc ............ALT CHECK......OK @@ -4474,14 +4474,14 @@ Checking test 143 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 170.062973 - 0: The maximum resident set size (KB) = 594136 + 0: The total amount of wall time = 178.289739 + 0: The maximum resident set size (KB) = 600100 Test 143 control_atmwav PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/atmaero_control_p8 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/atmaero_control_p8 Checking test 144 atmaero_control_p8 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -4525,14 +4525,14 @@ Checking test 144 atmaero_control_p8 results .... Comparing 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.530466 - 0: The maximum resident set size (KB) = 1636208 + 0: The total amount of wall time = 418.973301 + 0: The maximum resident set size (KB) = 1634084 Test 144 atmaero_control_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8_rad -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/atmaero_control_p8_rad +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/atmaero_control_p8_rad Checking test 145 atmaero_control_p8_rad results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -4576,14 +4576,14 @@ Checking test 145 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 402.601254 - 0: The maximum resident set size (KB) = 1659504 + 0: The total amount of wall time = 522.204327 + 0: The maximum resident set size (KB) = 1653460 Test 145 atmaero_control_p8_rad PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/atmaero_control_p8_rad_micro +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/atmaero_control_p8_rad_micro Checking test 146 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -4627,14 +4627,14 @@ Checking test 146 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 442.244394 - 0: The maximum resident set size (KB) = 1678400 + 0: The total amount of wall time = 505.920456 + 0: The maximum resident set size (KB) = 1681588 Test 146 atmaero_control_p8_rad_micro PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/regional_atmaq +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/regional_atmaq Checking test 147 regional_atmaq results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf003.nc ............ALT CHECK......OK @@ -4650,14 +4650,14 @@ Checking test 147 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 1103.015116 - 0: The maximum resident set size (KB) = 1260576 + 0: The total amount of wall time = 1249.139007 + 0: The maximum resident set size (KB) = 1154640 Test 147 regional_atmaq PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq_faster -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300745/regional_atmaq_faster +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/regional_atmaq_faster Checking test 148 regional_atmaq_faster results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf003.nc ............ALT CHECK......OK @@ -4673,12 +4673,12 @@ Checking test 148 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 1023.081873 - 0: The maximum resident set size (KB) = 1177860 + 0: The total amount of wall time = 1137.317628 + 0: The maximum resident set size (KB) = 1164452 Test 148 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Tue Mar 28 00:07:16 UTC 2023 -Elapsed time: 02h:24m:57s. Have a nice day! +Wed Mar 29 02:05:22 UTC 2023 +Elapsed time: 05h:16m:44s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index 20a53a831e4..2c0e5d29ecd 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,42 +1,42 @@ -Mon Mar 27 18:20:59 CDT 2023 +Tue Mar 28 15:41:26 CDT 2023 Start Regression test -Compile 001 elapsed time 751 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 744 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 700 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 278 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 261 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 630 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 618 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 836 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 743 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 617 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 011 elapsed time 577 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 505 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 737 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 256 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 200 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 537 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 543 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 174 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 181 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 646 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 021 elapsed time 224 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 818 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 819 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 024 elapsed time 199 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 125 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 218 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 62 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 590 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 606 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 602 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 549 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 193 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 605 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 1116 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1044 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 982 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 632 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 604 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 929 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 968 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 1272 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 967 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 858 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 011 elapsed time 633 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 576 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 726 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 315 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 254 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 517 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 515 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 239 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 234 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 681 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 021 elapsed time 200 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 771 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 636 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 024 elapsed time 210 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 134 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 193 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 90 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 592 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 572 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 564 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 545 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 219 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 903 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8_mixedmode -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/cpld_control_p8_mixedmode +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -101,14 +101,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 307.097495 - 0: The maximum resident set size (KB) = 3144104 + 0: The total amount of wall time = 308.905249 + 0: The maximum resident set size (KB) = 3151744 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_gfsv17 -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/cpld_control_gfsv17 +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -172,14 +172,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 228.749370 - 0: The maximum resident set size (KB) = 1738640 + 0: The total amount of wall time = 238.465133 + 0: The maximum resident set size (KB) = 1725492 Test 002 cpld_control_gfsv17 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/cpld_control_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -244,14 +244,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 341.370406 - 0: The maximum resident set size (KB) = 3173296 + 0: The total amount of wall time = 351.842149 + 0: The maximum resident set size (KB) = 3189888 Test 003 cpld_control_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/cpld_restart_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -304,14 +304,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 204.730355 - 0: The maximum resident set size (KB) = 3053752 + 0: The total amount of wall time = 209.225577 + 0: The maximum resident set size (KB) = 3053988 Test 004 cpld_restart_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/cpld_control_qr_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -376,14 +376,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 355.638999 - 0: The maximum resident set size (KB) = 3195724 + 0: The total amount of wall time = 361.300323 + 0: The maximum resident set size (KB) = 3181460 Test 005 cpld_control_qr_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/cpld_restart_qr_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -436,14 +436,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 211.417385 - 0: The maximum resident set size (KB) = 3067972 + 0: The total amount of wall time = 217.482580 + 0: The maximum resident set size (KB) = 3065964 Test 006 cpld_restart_qr_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/cpld_2threads_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -496,14 +496,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 401.396426 - 0: The maximum resident set size (KB) = 3513448 + 0: The total amount of wall time = 409.792378 + 0: The maximum resident set size (KB) = 3517576 Test 007 cpld_2threads_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/cpld_decomp_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -556,14 +556,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 344.725224 - 0: The maximum resident set size (KB) = 3178932 + 0: The total amount of wall time = 351.481564 + 0: The maximum resident set size (KB) = 3181036 Test 008 cpld_decomp_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/cpld_mpi_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -616,14 +616,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 287.064538 - 0: The maximum resident set size (KB) = 3033432 + 0: The total amount of wall time = 288.946307 + 0: The maximum resident set size (KB) = 3032860 Test 009 cpld_mpi_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_ciceC_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/cpld_control_ciceC_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -688,14 +688,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 345.532873 - 0: The maximum resident set size (KB) = 3190776 + 0: The total amount of wall time = 351.149356 + 0: The maximum resident set size (KB) = 3174928 Test 010 cpld_control_ciceC_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/cpld_control_c192_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/cpld_control_c192_p8 Checking test 011 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -748,14 +748,14 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 639.602363 - 0: The maximum resident set size (KB) = 3244676 + 0: The total amount of wall time = 645.658207 + 0: The maximum resident set size (KB) = 3261804 Test 011 cpld_control_c192_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/cpld_restart_c192_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/cpld_restart_c192_p8 Checking test 012 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -808,14 +808,14 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 449.297244 - 0: The maximum resident set size (KB) = 3165072 + 0: The total amount of wall time = 471.828040 + 0: The maximum resident set size (KB) = 3165432 Test 012 cpld_restart_c192_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_bmark_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/cpld_bmark_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/cpld_bmark_p8 Checking test 013 cpld_bmark_p8 results .... Comparing sfcf006.nc ............ALT CHECK......OK Comparing atmf006.nc ............ALT CHECK......OK @@ -863,14 +863,14 @@ Checking test 013 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 880.984605 - 0: The maximum resident set size (KB) = 4050616 + 0: The total amount of wall time = 946.196693 + 0: The maximum resident set size (KB) = 3971232 Test 013 cpld_bmark_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_bmark_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/cpld_restart_bmark_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/cpld_restart_bmark_p8 Checking test 014 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc ............ALT CHECK......OK Comparing atmf006.nc ............ALT CHECK......OK @@ -918,14 +918,14 @@ Checking test 014 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 556.969436 - 0: The maximum resident set size (KB) = 3978956 + 0: The total amount of wall time = 566.338382 + 0: The maximum resident set size (KB) = 3936488 Test 014 cpld_restart_bmark_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_noaero_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/cpld_control_noaero_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/cpld_control_noaero_p8 Checking test 015 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -989,14 +989,14 @@ Checking test 015 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 255.686271 - 0: The maximum resident set size (KB) = 1730688 + 0: The total amount of wall time = 256.178077 + 0: The maximum resident set size (KB) = 1722784 Test 015 cpld_control_noaero_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c96_noaero_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/cpld_control_nowave_noaero_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/cpld_control_nowave_noaero_p8 Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1058,14 +1058,14 @@ Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 260.636504 - 0: The maximum resident set size (KB) = 1771452 + 0: The total amount of wall time = 263.268081 + 0: The maximum resident set size (KB) = 1762384 Test 016 cpld_control_nowave_noaero_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_debug_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/cpld_debug_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/cpld_debug_p8 Checking test 017 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1118,14 +1118,14 @@ Checking test 017 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 686.007411 - 0: The maximum resident set size (KB) = 3246880 + 0: The total amount of wall time = 723.822161 + 0: The maximum resident set size (KB) = 3245840 Test 017 cpld_debug_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_debug_noaero_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/cpld_debug_noaero_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/cpld_debug_noaero_p8 Checking test 018 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1177,14 +1177,14 @@ Checking test 018 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 424.734041 - 0: The maximum resident set size (KB) = 1738836 + 0: The total amount of wall time = 465.697944 + 0: The maximum resident set size (KB) = 1744404 Test 018 cpld_debug_noaero_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_noaero_p8_agrid -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/cpld_control_noaero_p8_agrid +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/cpld_control_noaero_p8_agrid Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1246,14 +1246,14 @@ Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 266.438157 - 0: The maximum resident set size (KB) = 1758080 + 0: The total amount of wall time = 277.505740 + 0: The maximum resident set size (KB) = 1706184 Test 019 cpld_control_noaero_p8_agrid PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c48 -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/cpld_control_c48 +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/cpld_control_c48 Checking test 020 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1303,14 +1303,14 @@ Checking test 020 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 498.484072 - 0: The maximum resident set size (KB) = 2803212 + 0: The total amount of wall time = 506.274261 + 0: The maximum resident set size (KB) = 2786704 Test 020 cpld_control_c48 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_warmstart_c48 -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/cpld_warmstart_c48 +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/cpld_warmstart_c48 Checking test 021 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1360,14 +1360,14 @@ Checking test 021 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 135.214635 - 0: The maximum resident set size (KB) = 2811416 + 0: The total amount of wall time = 139.283317 + 0: The maximum resident set size (KB) = 2801312 Test 021 cpld_warmstart_c48 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_warmstart_c48 -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/cpld_restart_c48 +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/cpld_restart_c48 Checking test 022 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1417,14 +1417,14 @@ Checking test 022 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 73.786560 - 0: The maximum resident set size (KB) = 2242888 + 0: The total amount of wall time = 76.554956 + 0: The maximum resident set size (KB) = 2237072 Test 022 cpld_restart_c48 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8_faster -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/cpld_control_p8_faster +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/cpld_control_p8_faster Checking test 023 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1489,14 +1489,14 @@ Checking test 023 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 330.161419 - 0: The maximum resident set size (KB) = 3180460 + 0: The total amount of wall time = 326.446332 + 0: The maximum resident set size (KB) = 3183560 Test 023 cpld_control_p8_faster PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_CubedSphereGrid +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_CubedSphereGrid Checking test 024 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1523,28 +1523,28 @@ Checking test 024 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 133.120015 - 0: The maximum resident set size (KB) = 636300 + 0: The total amount of wall time = 131.684290 + 0: The maximum resident set size (KB) = 631688 Test 024 control_CubedSphereGrid PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid_parallel -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_CubedSphereGrid_parallel +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_CubedSphereGrid_parallel Checking test 025 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK - 0: The total amount of wall time = 127.435070 - 0: The maximum resident set size (KB) = 637824 + 0: The total amount of wall time = 129.768507 + 0: The maximum resident set size (KB) = 639288 Test 025 control_CubedSphereGrid_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_latlon -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_latlon +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_latlon Checking test 026 control_latlon results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1555,14 +1555,14 @@ Checking test 026 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 133.321503 - 0: The maximum resident set size (KB) = 637140 + 0: The total amount of wall time = 136.173942 + 0: The maximum resident set size (KB) = 635696 Test 026 control_latlon PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wrtGauss_netcdf_parallel -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_wrtGauss_netcdf_parallel +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_wrtGauss_netcdf_parallel Checking test 027 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1573,14 +1573,14 @@ Checking test 027 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 137.767131 - 0: The maximum resident set size (KB) = 637960 + 0: The total amount of wall time = 137.898498 + 0: The maximum resident set size (KB) = 638760 Test 027 control_wrtGauss_netcdf_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c48 -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_c48 +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_c48 Checking test 028 control_c48 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1619,14 +1619,14 @@ Checking test 028 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 346.767193 -0: The maximum resident set size (KB) = 822420 +0: The total amount of wall time = 345.710310 +0: The maximum resident set size (KB) = 826560 Test 028 control_c48 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c192 -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_c192 +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_c192 Checking test 029 control_c192 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1637,14 +1637,14 @@ Checking test 029 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 531.493991 - 0: The maximum resident set size (KB) = 774952 + 0: The total amount of wall time = 528.562177 + 0: The maximum resident set size (KB) = 767960 Test 029 control_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c384 -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_c384 +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_c384 Checking test 030 control_c384 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf012.nc ............ALT CHECK......OK @@ -1655,14 +1655,14 @@ Checking test 030 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 582.165971 - 0: The maximum resident set size (KB) = 1232372 + 0: The total amount of wall time = 587.744721 + 0: The maximum resident set size (KB) = 1222184 Test 030 control_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c384gdas -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_c384gdas +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_c384gdas Checking test 031 control_c384gdas results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -1705,14 +1705,14 @@ Checking test 031 control_c384gdas 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 = 517.901003 - 0: The maximum resident set size (KB) = 1340852 + 0: The total amount of wall time = 513.192539 + 0: The maximum resident set size (KB) = 1335920 Test 031 control_c384gdas PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_stochy +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_stochy Checking test 032 control_stochy results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf012.nc ............ALT CHECK......OK @@ -1723,28 +1723,28 @@ Checking test 032 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 87.911943 - 0: The maximum resident set size (KB) = 639668 + 0: The total amount of wall time = 91.989529 + 0: The maximum resident set size (KB) = 639044 Test 032 control_stochy PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_stochy_restart +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_stochy_restart Checking test 033 control_stochy_restart results .... Comparing sfcf012.nc ............ALT CHECK......OK Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 48.729872 - 0: The maximum resident set size (KB) = 494780 + 0: The total amount of wall time = 47.699882 + 0: The maximum resident set size (KB) = 487004 Test 033 control_stochy_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_lndp -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_lndp +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_lndp Checking test 034 control_lndp results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf012.nc ............ALT CHECK......OK @@ -1755,14 +1755,14 @@ Checking test 034 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 81.016075 - 0: The maximum resident set size (KB) = 636624 + 0: The total amount of wall time = 81.708200 + 0: The maximum resident set size (KB) = 639304 Test 034 control_lndp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_iovr4 -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_iovr4 +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_iovr4 Checking test 035 control_iovr4 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1777,14 +1777,14 @@ Checking test 035 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 140.482776 - 0: The maximum resident set size (KB) = 639056 + 0: The total amount of wall time = 135.427771 + 0: The maximum resident set size (KB) = 619496 Test 035 control_iovr4 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_iovr5 -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_iovr5 +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_iovr5 Checking test 036 control_iovr5 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1799,14 +1799,14 @@ Checking test 036 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 139.460366 - 0: The maximum resident set size (KB) = 638124 + 0: The total amount of wall time = 136.881141 + 0: The maximum resident set size (KB) = 633788 Test 036 control_iovr5 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_p8 Checking test 037 control_p8 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1853,14 +1853,14 @@ Checking test 037 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 171.612025 - 0: The maximum resident set size (KB) = 1608756 + 0: The total amount of wall time = 173.716780 + 0: The maximum resident set size (KB) = 1599116 Test 037 control_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_restart_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_restart_p8 Checking test 038 control_restart_p8 results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -1899,14 +1899,14 @@ Checking test 038 control_restart_p8 results .... Comparing 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.430427 - 0: The maximum resident set size (KB) = 877660 + 0: The total amount of wall time = 89.439663 + 0: The maximum resident set size (KB) = 882348 Test 038 control_restart_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_qr_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_qr_p8 Checking test 039 control_qr_p8 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1953,14 +1953,14 @@ Checking test 039 control_qr_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 170.433763 - 0: The maximum resident set size (KB) = 1620124 + 0: The total amount of wall time = 171.188331 + 0: The maximum resident set size (KB) = 1607452 Test 039 control_qr_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_restart_qr_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_restart_qr_p8 Checking test 040 control_restart_qr_p8 results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -1999,14 +1999,14 @@ Checking test 040 control_restart_qr_p8 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 = 96.783645 - 0: The maximum resident set size (KB) = 874780 + 0: The total amount of wall time = 93.280428 + 0: The maximum resident set size (KB) = 875344 Test 040 control_restart_qr_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_decomp_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_decomp_p8 Checking test 041 control_decomp_p8 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2049,14 +2049,14 @@ Checking test 041 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 175.828555 - 0: The maximum resident set size (KB) = 1600700 + 0: The total amount of wall time = 176.106524 + 0: The maximum resident set size (KB) = 1581496 Test 041 control_decomp_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_2threads_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_2threads_p8 Checking test 042 control_2threads_p8 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2099,14 +2099,14 @@ Checking test 042 control_2threads_p8 results .... Comparing 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.651163 - 0: The maximum resident set size (KB) = 1686488 + 0: The total amount of wall time = 182.565090 + 0: The maximum resident set size (KB) = 1694432 Test 042 control_2threads_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_lndp -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_p8_lndp +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_p8_lndp Checking test 043 control_p8_lndp results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -2125,14 +2125,14 @@ Checking test 043 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 311.002474 - 0: The maximum resident set size (KB) = 1604700 + 0: The total amount of wall time = 320.165505 + 0: The maximum resident set size (KB) = 1605416 Test 043 control_p8_lndp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_rrtmgp -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_p8_rrtmgp +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_p8_rrtmgp Checking test 044 control_p8_rrtmgp results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -2179,14 +2179,14 @@ Checking test 044 control_p8_rrtmgp results .... Comparing 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.115625 - 0: The maximum resident set size (KB) = 1687528 + 0: The total amount of wall time = 230.494419 + 0: The maximum resident set size (KB) = 1685068 Test 044 control_p8_rrtmgp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_mynn -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_p8_mynn +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_p8_mynn Checking test 045 control_p8_mynn results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -2233,14 +2233,14 @@ Checking test 045 control_p8_mynn results .... Comparing 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.086538 - 0: The maximum resident set size (KB) = 1622916 + 0: The total amount of wall time = 171.527997 + 0: The maximum resident set size (KB) = 1606124 Test 045 control_p8_mynn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/merra2_thompson -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/merra2_thompson +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/merra2_thompson Checking test 046 merra2_thompson results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -2287,14 +2287,14 @@ Checking test 046 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 189.875832 - 0: The maximum resident set size (KB) = 1617280 + 0: The total amount of wall time = 191.644800 + 0: The maximum resident set size (KB) = 1611252 Test 046 merra2_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/regional_control +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/regional_control Checking test 047 regional_control results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf006.nc ............ALT CHECK......OK @@ -2305,28 +2305,28 @@ Checking test 047 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 294.804374 - 0: The maximum resident set size (KB) = 869264 + 0: The total amount of wall time = 295.075760 + 0: The maximum resident set size (KB) = 882820 Test 047 regional_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/regional_restart +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/regional_restart Checking test 048 regional_restart results .... Comparing dynf006.nc ............ALT CHECK......OK Comparing phyf006.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 157.545975 - 0: The maximum resident set size (KB) = 862848 + 0: The total amount of wall time = 150.630935 + 0: The maximum resident set size (KB) = 863000 Test 048 regional_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/regional_control_qr +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/regional_control_qr Checking test 049 regional_control_qr results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf006.nc ............ALT CHECK......OK @@ -2337,28 +2337,28 @@ Checking test 049 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 296.648310 - 0: The maximum resident set size (KB) = 874564 + 0: The total amount of wall time = 296.194806 + 0: The maximum resident set size (KB) = 876916 Test 049 regional_control_qr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/regional_restart_qr +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/regional_restart_qr Checking test 050 regional_restart_qr results .... Comparing dynf006.nc ............ALT CHECK......OK Comparing phyf006.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 157.937653 - 0: The maximum resident set size (KB) = 869180 + 0: The total amount of wall time = 150.960197 + 0: The maximum resident set size (KB) = 866976 Test 050 regional_restart_qr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/regional_decomp +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/regional_decomp Checking test 051 regional_decomp results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf006.nc ............ALT CHECK......OK @@ -2369,14 +2369,14 @@ Checking test 051 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 316.594245 - 0: The maximum resident set size (KB) = 865976 + 0: The total amount of wall time = 314.524356 + 0: The maximum resident set size (KB) = 863520 Test 051 regional_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/regional_2threads +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/regional_2threads Checking test 052 regional_2threads results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf006.nc ............ALT CHECK......OK @@ -2387,14 +2387,14 @@ Checking test 052 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 209.179435 - 0: The maximum resident set size (KB) = 855580 + 0: The total amount of wall time = 205.948366 + 0: The maximum resident set size (KB) = 796184 Test 052 regional_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_noquilt -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/regional_noquilt +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/regional_noquilt Checking test 053 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2402,28 +2402,28 @@ Checking test 053 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 315.132931 - 0: The maximum resident set size (KB) = 857092 + 0: The total amount of wall time = 316.965638 + 0: The maximum resident set size (KB) = 857928 Test 053 regional_noquilt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_netcdf_parallel -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/regional_netcdf_parallel +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/regional_netcdf_parallel Checking test 054 regional_netcdf_parallel results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf006.nc ............ALT CHECK......OK Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 297.861997 - 0: The maximum resident set size (KB) = 868464 + 0: The total amount of wall time = 294.471708 + 0: The maximum resident set size (KB) = 842564 Test 054 regional_netcdf_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/regional_2dwrtdecomp +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/regional_2dwrtdecomp Checking test 055 regional_2dwrtdecomp results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf006.nc ............ALT CHECK......OK @@ -2434,14 +2434,14 @@ Checking test 055 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 296.162847 - 0: The maximum resident set size (KB) = 876500 + 0: The total amount of wall time = 300.100176 + 0: The maximum resident set size (KB) = 868448 Test 055 regional_2dwrtdecomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/fv3_regional_wofs -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/regional_wofs +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/regional_wofs Checking test 056 regional_wofs results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf006.nc ............ALT CHECK......OK @@ -2452,14 +2452,14 @@ Checking test 056 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 372.698889 - 0: The maximum resident set size (KB) = 636508 + 0: The total amount of wall time = 375.324733 + 0: The maximum resident set size (KB) = 633744 Test 056 regional_wofs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/rap_control +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rap_control Checking test 057 rap_control results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -2506,14 +2506,14 @@ Checking test 057 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 459.674687 - 0: The maximum resident set size (KB) = 1069812 + 0: The total amount of wall time = 469.536727 + 0: The maximum resident set size (KB) = 1067648 Test 057 rap_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_spp_sppt_shum_skeb -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/regional_spp_sppt_shum_skeb +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/regional_spp_sppt_shum_skeb Checking test 058 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf001.nc ............ALT CHECK......OK @@ -2524,14 +2524,14 @@ Checking test 058 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 264.870762 - 0: The maximum resident set size (KB) = 1181916 + 0: The total amount of wall time = 271.855012 + 0: The maximum resident set size (KB) = 1179324 Test 058 regional_spp_sppt_shum_skeb PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/rap_decomp +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rap_decomp Checking test 059 rap_decomp results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -2578,14 +2578,14 @@ Checking test 059 rap_decomp results .... Comparing 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.015416 - 0: The maximum resident set size (KB) = 1000256 + 0: The total amount of wall time = 488.301110 + 0: The maximum resident set size (KB) = 999876 Test 059 rap_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/rap_2threads +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rap_2threads Checking test 060 rap_2threads results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -2632,14 +2632,14 @@ Checking test 060 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 472.808384 - 0: The maximum resident set size (KB) = 1135236 + 0: The total amount of wall time = 482.987920 + 0: The maximum resident set size (KB) = 1130384 Test 060 rap_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/rap_restart +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rap_restart Checking test 061 rap_restart results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -2678,14 +2678,14 @@ Checking test 061 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 233.173228 - 0: The maximum resident set size (KB) = 970912 + 0: The total amount of wall time = 237.101017 + 0: The maximum resident set size (KB) = 978544 Test 061 rap_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/rap_sfcdiff +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rap_sfcdiff Checking test 062 rap_sfcdiff results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -2732,14 +2732,14 @@ Checking test 062 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 457.257476 - 0: The maximum resident set size (KB) = 1061548 + 0: The total amount of wall time = 469.402985 + 0: The maximum resident set size (KB) = 1066372 Test 062 rap_sfcdiff PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/rap_sfcdiff_decomp +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rap_sfcdiff_decomp Checking test 063 rap_sfcdiff_decomp results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -2786,14 +2786,14 @@ Checking test 063 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 480.600339 - 0: The maximum resident set size (KB) = 1008140 + 0: The total amount of wall time = 496.290953 + 0: The maximum resident set size (KB) = 1000736 Test 063 rap_sfcdiff_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/rap_sfcdiff_restart +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rap_sfcdiff_restart Checking test 064 rap_sfcdiff_restart results .... Comparing sfcf012.nc ............ALT CHECK......OK Comparing atmf012.nc ............ALT CHECK......OK @@ -2832,14 +2832,14 @@ Checking test 064 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 341.350082 - 0: The maximum resident set size (KB) = 992468 + 0: The total amount of wall time = 344.931439 + 0: The maximum resident set size (KB) = 982696 Test 064 rap_sfcdiff_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/hrrr_control +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hrrr_control Checking test 065 hrrr_control results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -2886,14 +2886,14 @@ Checking test 065 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 441.629916 - 0: The maximum resident set size (KB) = 1049820 + 0: The total amount of wall time = 454.520402 + 0: The maximum resident set size (KB) = 1056860 Test 065 hrrr_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/hrrr_control_decomp +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hrrr_control_decomp Checking test 066 hrrr_control_decomp results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -2940,14 +2940,14 @@ Checking test 066 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 461.886861 - 0: The maximum resident set size (KB) = 1004256 + 0: The total amount of wall time = 475.785285 + 0: The maximum resident set size (KB) = 993992 Test 066 hrrr_control_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/hrrr_control_2threads +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hrrr_control_2threads Checking test 067 hrrr_control_2threads results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -2994,14 +2994,14 @@ Checking test 067 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 456.164639 - 0: The maximum resident set size (KB) = 1142620 + 0: The total amount of wall time = 460.466800 + 0: The maximum resident set size (KB) = 1135140 Test 067 hrrr_control_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/hrrr_control_restart +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hrrr_control_restart Checking test 068 hrrr_control_restart results .... Comparing sfcf012.nc ............ALT CHECK......OK Comparing atmf012.nc ............ALT CHECK......OK @@ -3040,14 +3040,14 @@ Checking test 068 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 327.290876 - 0: The maximum resident set size (KB) = 980140 + 0: The total amount of wall time = 329.171353 + 0: The maximum resident set size (KB) = 984472 Test 068 hrrr_control_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1beta -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/rrfs_v1beta +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rrfs_v1beta Checking test 069 rrfs_v1beta results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -3094,14 +3094,14 @@ Checking test 069 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 454.455258 - 0: The maximum resident set size (KB) = 1056116 + 0: The total amount of wall time = 467.824266 + 0: The maximum resident set size (KB) = 1051768 Test 069 rrfs_v1beta PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1nssl -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/rrfs_v1nssl +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rrfs_v1nssl Checking test 070 rrfs_v1nssl results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -3116,14 +3116,14 @@ Checking test 070 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 537.054572 - 0: The maximum resident set size (KB) = 701536 + 0: The total amount of wall time = 560.055734 + 0: The maximum resident set size (KB) = 695212 Test 070 rrfs_v1nssl PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/rrfs_v1nssl_nohailnoccn +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rrfs_v1nssl_nohailnoccn Checking test 071 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -3138,14 +3138,14 @@ Checking test 071 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 525.418921 - 0: The maximum resident set size (KB) = 758804 + 0: The total amount of wall time = 544.749320 + 0: The maximum resident set size (KB) = 758776 Test 071 rrfs_v1nssl_nohailnoccn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/rrfs_smoke_conus13km_hrrr_warm +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rrfs_smoke_conus13km_hrrr_warm Checking test 072 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK @@ -3154,14 +3154,14 @@ Checking test 072 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc ............ALT CHECK......OK Comparing atmf002.nc ............ALT CHECK......OK - 0: The total amount of wall time = 144.472515 - 0: The maximum resident set size (KB) = 995032 + 0: The total amount of wall time = 149.704329 + 0: The maximum resident set size (KB) = 1030444 Test 072 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/rrfs_smoke_conus13km_hrrr_warm_2threads +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 073 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK @@ -3170,14 +3170,14 @@ Checking test 073 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc ............ALT CHECK......OK Comparing atmf002.nc ............ALT CHECK......OK - 0: The total amount of wall time = 95.683547 - 0: The maximum resident set size (KB) = 941860 + 0: The total amount of wall time = 98.914126 + 0: The maximum resident set size (KB) = 943492 Test 073 rrfs_smoke_conus13km_hrrr_warm_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_conus13km_hrrr_warm -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/rrfs_conus13km_hrrr_warm +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rrfs_conus13km_hrrr_warm Checking test 074 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK @@ -3186,14 +3186,14 @@ Checking test 074 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc ............ALT CHECK......OK Comparing atmf002.nc ............ALT CHECK......OK - 0: The total amount of wall time = 128.209410 - 0: The maximum resident set size (KB) = 942440 + 0: The total amount of wall time = 133.057212 + 0: The maximum resident set size (KB) = 942932 Test 074 rrfs_conus13km_hrrr_warm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/rrfs_smoke_conus13km_radar_tten_warm +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rrfs_smoke_conus13km_radar_tten_warm Checking test 075 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK @@ -3202,14 +3202,14 @@ Checking test 075 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc ............ALT CHECK......OK Comparing atmf002.nc ............ALT CHECK......OK - 0: The total amount of wall time = 146.750013 - 0: The maximum resident set size (KB) = 1035428 + 0: The total amount of wall time = 152.299699 + 0: The maximum resident set size (KB) = 993992 Test 075 rrfs_smoke_conus13km_radar_tten_warm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmg -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_csawmg +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_csawmg Checking test 076 control_csawmg results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -3220,14 +3220,14 @@ Checking test 076 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 344.797324 - 0: The maximum resident set size (KB) = 731480 + 0: The total amount of wall time = 345.708467 + 0: The maximum resident set size (KB) = 729892 Test 076 control_csawmg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmgt -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_csawmgt +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_csawmgt Checking test 077 control_csawmgt results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -3238,14 +3238,14 @@ Checking test 077 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 343.397278 - 0: The maximum resident set size (KB) = 725644 + 0: The total amount of wall time = 338.535799 + 0: The maximum resident set size (KB) = 728140 Test 077 control_csawmgt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_ras -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_ras +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_ras Checking test 078 control_ras results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -3256,26 +3256,26 @@ Checking test 078 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 181.916747 - 0: The maximum resident set size (KB) = 716456 + 0: The total amount of wall time = 184.195921 + 0: The maximum resident set size (KB) = 671192 Test 078 control_ras PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wam -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_wam +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_wam Checking test 079 control_wam results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK - 0: The total amount of wall time = 116.043392 - 0: The maximum resident set size (KB) = 642036 + 0: The total amount of wall time = 113.943879 + 0: The maximum resident set size (KB) = 645168 Test 079 control_wam PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_faster -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_p8_faster +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_p8_faster Checking test 080 control_p8_faster results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -3322,14 +3322,14 @@ Checking test 080 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 153.987744 - 0: The maximum resident set size (KB) = 1608444 + 0: The total amount of wall time = 157.573576 + 0: The maximum resident set size (KB) = 1601144 Test 080 control_p8_faster PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control_faster -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/regional_control_faster +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/regional_control_faster Checking test 081 regional_control_faster results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf006.nc ............ALT CHECK......OK @@ -3340,56 +3340,56 @@ Checking test 081 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 270.875473 - 0: The maximum resident set size (KB) = 837788 + 0: The total amount of wall time = 268.489139 + 0: The maximum resident set size (KB) = 868020 Test 081 regional_control_faster PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 082 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 863.273631 - 0: The maximum resident set size (KB) = 1026116 + 0: The total amount of wall time = 865.433645 + 0: The maximum resident set size (KB) = 1068872 Test 082 rrfs_smoke_conus13km_hrrr_warm_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 083 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 505.799807 - 0: The maximum resident set size (KB) = 979756 + 0: The total amount of wall time = 501.642518 + 0: The maximum resident set size (KB) = 980356 Test 083 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/rrfs_conus13km_hrrr_warm_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rrfs_conus13km_hrrr_warm_debug Checking test 084 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 779.949912 - 0: The maximum resident set size (KB) = 974612 + 0: The total amount of wall time = 777.327377 + 0: The maximum resident set size (KB) = 978776 Test 084 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_CubedSphereGrid_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_CubedSphereGrid_debug Checking test 085 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3416,334 +3416,334 @@ Checking test 085 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 172.789575 - 0: The maximum resident set size (KB) = 792000 + 0: The total amount of wall time = 187.698754 + 0: The maximum resident set size (KB) = 794148 Test 085 control_CubedSphereGrid_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_wrtGauss_netcdf_parallel_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_wrtGauss_netcdf_parallel_debug Checking test 086 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 154.880466 - 0: The maximum resident set size (KB) = 803224 + 0: The total amount of wall time = 158.616553 + 0: The maximum resident set size (KB) = 799864 Test 086 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_stochy_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_stochy_debug Checking test 087 control_stochy_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 177.481697 - 0: The maximum resident set size (KB) = 801020 + 0: The total amount of wall time = 181.308414 + 0: The maximum resident set size (KB) = 799032 Test 087 control_stochy_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_lndp_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_lndp_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_lndp_debug Checking test 088 control_lndp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 165.459124 - 0: The maximum resident set size (KB) = 796800 + 0: The total amount of wall time = 165.058522 + 0: The maximum resident set size (KB) = 801496 Test 088 control_lndp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmg_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_csawmg_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_csawmg_debug Checking test 089 control_csawmg_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 246.770603 - 0: The maximum resident set size (KB) = 847732 + 0: The total amount of wall time = 278.211496 + 0: The maximum resident set size (KB) = 792836 Test 089 control_csawmg_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmgt_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_csawmgt_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_csawmgt_debug Checking test 090 control_csawmgt_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 239.092104 - 0: The maximum resident set size (KB) = 847104 + 0: The total amount of wall time = 264.832829 + 0: The maximum resident set size (KB) = 848096 Test 090 control_csawmgt_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_ras_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_ras_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_ras_debug Checking test 091 control_ras_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 166.682588 - 0: The maximum resident set size (KB) = 810184 + 0: The total amount of wall time = 160.291358 + 0: The maximum resident set size (KB) = 813468 Test 091 control_ras_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_diag_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_diag_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_diag_debug Checking test 092 control_diag_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 170.891446 - 0: The maximum resident set size (KB) = 854308 + 0: The total amount of wall time = 167.961239 + 0: The maximum resident set size (KB) = 847804 Test 092 control_diag_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_debug_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_debug_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_debug_p8 Checking test 093 control_debug_p8 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 188.161410 - 0: The maximum resident set size (KB) = 1622340 + 0: The total amount of wall time = 179.537612 + 0: The maximum resident set size (KB) = 1629804 Test 093 control_debug_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/regional_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/regional_debug Checking test 094 regional_debug results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf001.nc ............ALT CHECK......OK Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 999.576709 - 0: The maximum resident set size (KB) = 889892 + 0: The total amount of wall time = 1001.275534 + 0: The maximum resident set size (KB) = 889544 Test 094 regional_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/rap_control_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rap_control_debug Checking test 095 rap_control_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 301.875681 - 0: The maximum resident set size (KB) = 1177992 + 0: The total amount of wall time = 289.160322 + 0: The maximum resident set size (KB) = 1180564 Test 095 rap_control_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/hrrr_control_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hrrr_control_debug Checking test 096 hrrr_control_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 286.700566 - 0: The maximum resident set size (KB) = 1182504 + 0: The total amount of wall time = 282.439574 + 0: The maximum resident set size (KB) = 1177248 Test 096 hrrr_control_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/rap_unified_drag_suite_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rap_unified_drag_suite_debug Checking test 097 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 293.561517 - 0: The maximum resident set size (KB) = 1176500 + 0: The total amount of wall time = 295.430562 + 0: The maximum resident set size (KB) = 1174128 Test 097 rap_unified_drag_suite_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_diag_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/rap_diag_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rap_diag_debug Checking test 098 rap_diag_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 325.905776 - 0: The maximum resident set size (KB) = 1259596 + 0: The total amount of wall time = 307.996697 + 0: The maximum resident set size (KB) = 1264076 Test 098 rap_diag_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/rap_cires_ugwp_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rap_cires_ugwp_debug Checking test 099 rap_cires_ugwp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 306.165121 - 0: The maximum resident set size (KB) = 1177960 + 0: The total amount of wall time = 299.513706 + 0: The maximum resident set size (KB) = 1175252 Test 099 rap_cires_ugwp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/rap_unified_ugwp_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rap_unified_ugwp_debug Checking test 100 rap_unified_ugwp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 298.986681 - 0: The maximum resident set size (KB) = 1177444 + 0: The total amount of wall time = 292.733436 + 0: The maximum resident set size (KB) = 1177172 Test 100 rap_unified_ugwp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_lndp_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/rap_lndp_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rap_lndp_debug Checking test 101 rap_lndp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 297.258422 - 0: The maximum resident set size (KB) = 1178160 + 0: The total amount of wall time = 300.828489 + 0: The maximum resident set size (KB) = 1177096 Test 101 rap_lndp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_flake_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/rap_flake_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rap_flake_debug Checking test 102 rap_flake_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 295.966155 - 0: The maximum resident set size (KB) = 1180588 + 0: The total amount of wall time = 306.382658 + 0: The maximum resident set size (KB) = 1181120 Test 102 rap_flake_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_progcld_thompson_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/rap_progcld_thompson_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rap_progcld_thompson_debug Checking test 103 rap_progcld_thompson_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 295.351151 - 0: The maximum resident set size (KB) = 1176272 + 0: The total amount of wall time = 306.669287 + 0: The maximum resident set size (KB) = 1179032 Test 103 rap_progcld_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_noah_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/rap_noah_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rap_noah_debug Checking test 104 rap_noah_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 284.702407 - 0: The maximum resident set size (KB) = 1172672 + 0: The total amount of wall time = 306.118595 + 0: The maximum resident set size (KB) = 1141084 Test 104 rap_noah_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/rap_sfcdiff_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rap_sfcdiff_debug Checking test 105 rap_sfcdiff_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 293.857043 - 0: The maximum resident set size (KB) = 1184184 + 0: The total amount of wall time = 295.250834 + 0: The maximum resident set size (KB) = 1173952 Test 105 rap_sfcdiff_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rap_noah_sfcdiff_cires_ugwp_debug Checking test 106 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 468.287191 - 0: The maximum resident set size (KB) = 1179304 + 0: The total amount of wall time = 473.192056 + 0: The maximum resident set size (KB) = 1170040 Test 106 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1beta_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/rrfs_v1beta_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rrfs_v1beta_debug Checking test 107 rrfs_v1beta_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 283.198059 - 0: The maximum resident set size (KB) = 1179680 + 0: The total amount of wall time = 291.540379 + 0: The maximum resident set size (KB) = 1175452 Test 107 rrfs_v1beta_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wam_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_wam_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_wam_debug Checking test 108 control_wam_debug results .... Comparing sfcf019.nc ............ALT CHECK......OK Comparing atmf019.nc ............ALT CHECK......OK - 0: The total amount of wall time = 302.428440 - 0: The maximum resident set size (KB) = 534968 + 0: The total amount of wall time = 305.700440 + 0: The maximum resident set size (KB) = 527996 Test 108 control_wam_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 109 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf001.nc ............ALT CHECK......OK @@ -3754,14 +3754,14 @@ Checking test 109 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 247.004250 - 0: The maximum resident set size (KB) = 1080312 + 0: The total amount of wall time = 244.381482 + 0: The maximum resident set size (KB) = 1075724 Test 109 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/rap_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rap_control_dyn32_phy32 Checking test 110 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -3808,14 +3808,14 @@ Checking test 110 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 379.855988 - 0: The maximum resident set size (KB) = 983096 + 0: The total amount of wall time = 379.244769 + 0: The maximum resident set size (KB) = 999312 Test 110 rap_control_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/hrrr_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hrrr_control_dyn32_phy32 Checking test 111 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -3862,14 +3862,14 @@ Checking test 111 hrrr_control_dyn32_phy32 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 = 202.581490 - 0: The maximum resident set size (KB) = 933360 + 0: The total amount of wall time = 199.933151 + 0: The maximum resident set size (KB) = 953400 Test 111 hrrr_control_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/rap_2threads_dyn32_phy32 +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rap_2threads_dyn32_phy32 Checking test 112 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -3916,14 +3916,14 @@ Checking test 112 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 395.081032 - 0: The maximum resident set size (KB) = 1023684 + 0: The total amount of wall time = 392.201999 + 0: The maximum resident set size (KB) = 1021416 Test 112 rap_2threads_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/hrrr_control_2threads_dyn32_phy32 +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hrrr_control_2threads_dyn32_phy32 Checking test 113 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -3970,14 +3970,14 @@ Checking test 113 hrrr_control_2threads_dyn32_phy32 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 = 207.499242 - 0: The maximum resident set size (KB) = 986268 + 0: The total amount of wall time = 202.564415 + 0: The maximum resident set size (KB) = 1001532 Test 113 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/hrrr_control_decomp_dyn32_phy32 +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hrrr_control_decomp_dyn32_phy32 Checking test 114 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -4024,14 +4024,14 @@ Checking test 114 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 212.101988 - 0: The maximum resident set size (KB) = 899040 + 0: The total amount of wall time = 205.562467 + 0: The maximum resident set size (KB) = 893388 Test 114 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/rap_restart_dyn32_phy32 +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rap_restart_dyn32_phy32 Checking test 115 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc ............ALT CHECK......OK Comparing atmf012.nc ............ALT CHECK......OK @@ -4070,14 +4070,14 @@ Checking test 115 rap_restart_dyn32_phy32 results .... Comparing 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.411802 - 0: The maximum resident set size (KB) = 946468 + 0: The total amount of wall time = 297.104307 + 0: The maximum resident set size (KB) = 957536 Test 115 rap_restart_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/hrrr_control_restart_dyn32_phy32 +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hrrr_control_restart_dyn32_phy32 Checking test 116 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc ............ALT CHECK......OK Comparing atmf012.nc ............ALT CHECK......OK @@ -4116,14 +4116,14 @@ Checking test 116 hrrr_control_restart_dyn32_phy32 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 = 99.792593 - 0: The maximum resident set size (KB) = 862012 + 0: The total amount of wall time = 100.778662 + 0: The maximum resident set size (KB) = 862912 Test 116 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn64_phy32 -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/rap_control_dyn64_phy32 +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rap_control_dyn64_phy32 Checking test 117 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf009.nc ............ALT CHECK......OK @@ -4170,81 +4170,81 @@ Checking test 117 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 246.021964 - 0: The maximum resident set size (KB) = 962272 + 0: The total amount of wall time = 238.846932 + 0: The maximum resident set size (KB) = 967600 Test 117 rap_control_dyn64_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug_dyn32_phy32 -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/rap_control_debug_dyn32_phy32 +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rap_control_debug_dyn32_phy32 Checking test 118 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 292.437086 - 0: The maximum resident set size (KB) = 1063136 + 0: The total amount of wall time = 286.157895 + 0: The maximum resident set size (KB) = 1066196 Test 118 rap_control_debug_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/hrrr_control_debug_dyn32_phy32 +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hrrr_control_debug_dyn32_phy32 Checking test 119 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 284.533283 - 0: The maximum resident set size (KB) = 1058940 + 0: The total amount of wall time = 279.529625 + 0: The maximum resident set size (KB) = 1063420 Test 119 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug_dyn64_phy32 -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/rap_control_dyn64_phy32_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rap_control_dyn64_phy32_debug Checking test 120 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 311.108717 - 0: The maximum resident set size (KB) = 1101396 + 0: The total amount of wall time = 294.007378 + 0: The maximum resident set size (KB) = 1103108 Test 120 rap_control_dyn64_phy32_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/hafs_regional_atm +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hafs_regional_atm Checking test 121 hafs_regional_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 270.236462 - 0: The maximum resident set size (KB) = 1055932 + 0: The total amount of wall time = 266.936838 + 0: The maximum resident set size (KB) = 1049724 Test 121 hafs_regional_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/hafs_regional_atm_thompson_gfdlsf +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hafs_regional_atm_thompson_gfdlsf Checking test 122 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 397.188293 - 0: The maximum resident set size (KB) = 1398084 + 0: The total amount of wall time = 404.478212 + 0: The maximum resident set size (KB) = 1423636 Test 122 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_ocn -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/hafs_regional_atm_ocn +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hafs_regional_atm_ocn Checking test 123 hafs_regional_atm_ocn results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4253,14 +4253,14 @@ Checking test 123 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 378.255117 - 0: The maximum resident set size (KB) = 1228976 + 0: The total amount of wall time = 378.266655 + 0: The maximum resident set size (KB) = 1225904 Test 123 hafs_regional_atm_ocn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_wav -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/hafs_regional_atm_wav +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hafs_regional_atm_wav Checking test 124 hafs_regional_atm_wav results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4269,14 +4269,14 @@ Checking test 124 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 725.669730 - 0: The maximum resident set size (KB) = 1255584 + 0: The total amount of wall time = 728.784570 + 0: The maximum resident set size (KB) = 1253060 Test 124 hafs_regional_atm_wav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_ocn_wav -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/hafs_regional_atm_ocn_wav +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hafs_regional_atm_ocn_wav Checking test 125 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4287,28 +4287,28 @@ Checking test 125 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 830.312386 - 0: The maximum resident set size (KB) = 1281004 + 0: The total amount of wall time = 833.521836 + 0: The maximum resident set size (KB) = 1284672 Test 125 hafs_regional_atm_ocn_wav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_1nest_atm -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/hafs_regional_1nest_atm +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hafs_regional_1nest_atm Checking test 126 hafs_regional_1nest_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK Comparing atm.nest02.f006.nc ............ALT CHECK......OK Comparing sfc.nest02.f006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 363.743105 - 0: The maximum resident set size (KB) = 508900 + 0: The total amount of wall time = 360.893132 + 0: The maximum resident set size (KB) = 510408 Test 126 hafs_regional_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/hafs_regional_telescopic_2nests_atm +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hafs_regional_telescopic_2nests_atm Checking test 127 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4317,28 +4317,28 @@ Checking test 127 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc ............ALT CHECK......OK Comparing sfc.nest03.f006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 417.927854 - 0: The maximum resident set size (KB) = 518304 + 0: The total amount of wall time = 424.967120 + 0: The maximum resident set size (KB) = 517020 Test 127 hafs_regional_telescopic_2nests_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_1nest_atm -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/hafs_global_1nest_atm +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hafs_global_1nest_atm Checking test 128 hafs_global_1nest_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK Comparing atm.nest02.f006.nc ............ALT CHECK......OK Comparing sfc.nest02.f006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 174.465242 - 0: The maximum resident set size (KB) = 360416 + 0: The total amount of wall time = 173.602745 + 0: The maximum resident set size (KB) = 359560 Test 128 hafs_global_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_multiple_4nests_atm -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/hafs_global_multiple_4nests_atm +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hafs_global_multiple_4nests_atm Checking test 129 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4356,14 +4356,14 @@ Checking test 129 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 463.603539 - 0: The maximum resident set size (KB) = 432120 + 0: The total amount of wall time = 491.172642 + 0: The maximum resident set size (KB) = 432932 Test 129 hafs_global_multiple_4nests_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/hafs_regional_specified_moving_1nest_atm +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hafs_regional_specified_moving_1nest_atm Checking test 130 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4372,28 +4372,28 @@ Checking test 130 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 228.619817 - 0: The maximum resident set size (KB) = 528168 + 0: The total amount of wall time = 229.919104 + 0: The maximum resident set size (KB) = 469000 Test 130 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/hafs_regional_storm_following_1nest_atm +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hafs_regional_storm_following_1nest_atm Checking test 131 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK Comparing atm.nest02.f006.nc ............ALT CHECK......OK Comparing sfc.nest02.f006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 218.499808 - 0: The maximum resident set size (KB) = 523904 + 0: The total amount of wall time = 217.009342 + 0: The maximum resident set size (KB) = 526020 Test 131 hafs_regional_storm_following_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/hafs_regional_storm_following_1nest_atm_ocn +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hafs_regional_storm_following_1nest_atm_ocn Checking test 132 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4402,42 +4402,42 @@ Checking test 132 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 291.915813 - 0: The maximum resident set size (KB) = 565348 + 0: The total amount of wall time = 293.153274 + 0: The maximum resident set size (KB) = 568472 Test 132 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_storm_following_1nest_atm -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/hafs_global_storm_following_1nest_atm +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hafs_global_storm_following_1nest_atm Checking test 133 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK Comparing atm.nest02.f006.nc ............ALT CHECK......OK Comparing sfc.nest02.f006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 68.351462 - 0: The maximum resident set size (KB) = 379040 + 0: The total amount of wall time = 69.754932 + 0: The maximum resident set size (KB) = 378696 Test 133 hafs_global_storm_following_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 134 hafs_regional_storm_following_1nest_atm_ocn_debug results .... Comparing atmf001.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atm.nest02.f001.nc ............ALT CHECK......OK Comparing sfc.nest02.f001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 784.493968 - 0: The maximum resident set size (KB) = 595876 + 0: The total amount of wall time = 791.930004 + 0: The maximum resident set size (KB) = 594236 Test 134 hafs_regional_storm_following_1nest_atm_ocn_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4448,14 +4448,14 @@ Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 541.434117 - 0: The maximum resident set size (KB) = 624704 + 0: The total amount of wall time = 560.768385 + 0: The maximum resident set size (KB) = 630368 Test 135 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_docn -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/hafs_regional_docn +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hafs_regional_docn Checking test 136 hafs_regional_docn results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4463,14 +4463,14 @@ Checking test 136 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 363.933927 - 0: The maximum resident set size (KB) = 1236280 + 0: The total amount of wall time = 381.176618 + 0: The maximum resident set size (KB) = 1233168 Test 136 hafs_regional_docn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_docn_oisst -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/hafs_regional_docn_oisst +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hafs_regional_docn_oisst Checking test 137 hafs_regional_docn_oisst results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -4478,131 +4478,131 @@ Checking test 137 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 365.919957 - 0: The maximum resident set size (KB) = 1222700 + 0: The total amount of wall time = 399.682572 + 0: The maximum resident set size (KB) = 1210140 Test 137 hafs_regional_docn_oisst PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_datm_cdeps -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/hafs_regional_datm_cdeps +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hafs_regional_datm_cdeps Checking test 138 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 931.826175 - 0: The maximum resident set size (KB) = 1042084 + 0: The total amount of wall time = 931.422528 + 0: The maximum resident set size (KB) = 1050120 Test 138 hafs_regional_datm_cdeps PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/datm_cdeps_control_cfsr +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/datm_cdeps_control_cfsr Checking test 139 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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.442644 - 0: The maximum resident set size (KB) = 1064596 + 0: The total amount of wall time = 147.701740 + 0: The maximum resident set size (KB) = 1064568 Test 139 datm_cdeps_control_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/datm_cdeps_restart_cfsr +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/datm_cdeps_restart_cfsr Checking test 140 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 91.431902 - 0: The maximum resident set size (KB) = 1007144 + 0: The total amount of wall time = 92.166005 + 0: The maximum resident set size (KB) = 1012700 Test 140 datm_cdeps_restart_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_gefs -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/datm_cdeps_control_gefs +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/datm_cdeps_control_gefs Checking test 141 datm_cdeps_control_gefs 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.752492 - 0: The maximum resident set size (KB) = 961992 + 0: The total amount of wall time = 144.981082 + 0: The maximum resident set size (KB) = 956984 Test 141 datm_cdeps_control_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_iau_gefs -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/datm_cdeps_iau_gefs +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/datm_cdeps_iau_gefs Checking test 142 datm_cdeps_iau_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 144.884507 - 0: The maximum resident set size (KB) = 968840 + 0: The total amount of wall time = 148.635886 + 0: The maximum resident set size (KB) = 968288 Test 142 datm_cdeps_iau_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_stochy_gefs -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/datm_cdeps_stochy_gefs +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/datm_cdeps_stochy_gefs Checking test 143 datm_cdeps_stochy_gefs 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.792156 - 0: The maximum resident set size (KB) = 974724 + 0: The total amount of wall time = 146.959031 + 0: The maximum resident set size (KB) = 975052 Test 143 datm_cdeps_stochy_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_ciceC_cfsr -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/datm_cdeps_ciceC_cfsr +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/datm_cdeps_ciceC_cfsr Checking test 144 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.627720 - 0: The maximum resident set size (KB) = 1056164 + 0: The total amount of wall time = 153.370660 + 0: The maximum resident set size (KB) = 1079004 Test 144 datm_cdeps_ciceC_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_bulk_cfsr -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/datm_cdeps_bulk_cfsr +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/datm_cdeps_bulk_cfsr Checking test 145 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.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.704380 - 0: The maximum resident set size (KB) = 1069724 + 0: The total amount of wall time = 148.454397 + 0: The maximum resident set size (KB) = 1061872 Test 145 datm_cdeps_bulk_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_bulk_gefs -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/datm_cdeps_bulk_gefs +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/datm_cdeps_bulk_gefs Checking test 146 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 143.537543 - 0: The maximum resident set size (KB) = 972660 + 0: The total amount of wall time = 144.768702 + 0: The maximum resident set size (KB) = 971708 Test 146 datm_cdeps_bulk_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_mx025_cfsr -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/datm_cdeps_mx025_cfsr +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/datm_cdeps_mx025_cfsr Checking test 147 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4611,14 +4611,14 @@ Checking test 147 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 448.178838 - 0: The maximum resident set size (KB) = 877136 + 0: The total amount of wall time = 436.299027 + 0: The maximum resident set size (KB) = 878932 Test 147 datm_cdeps_mx025_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_mx025_gefs -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/datm_cdeps_mx025_gefs +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/datm_cdeps_mx025_gefs Checking test 148 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4627,77 +4627,77 @@ Checking test 148 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 433.498446 - 0: The maximum resident set size (KB) = 925828 + 0: The total amount of wall time = 432.119555 + 0: The maximum resident set size (KB) = 931188 Test 148 datm_cdeps_mx025_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/datm_cdeps_multiple_files_cfsr +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/datm_cdeps_multiple_files_cfsr Checking test 149 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 147.404412 - 0: The maximum resident set size (KB) = 1055352 + 0: The total amount of wall time = 148.793966 + 0: The maximum resident set size (KB) = 1065108 Test 149 datm_cdeps_multiple_files_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/datm_cdeps_3072x1536_cfsr +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/datm_cdeps_3072x1536_cfsr Checking test 150 datm_cdeps_3072x1536_cfsr 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 = 198.373421 - 0: The maximum resident set size (KB) = 2367096 + 0: The total amount of wall time = 202.155503 + 0: The maximum resident set size (KB) = 2352996 Test 150 datm_cdeps_3072x1536_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_gfs -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/datm_cdeps_gfs +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/datm_cdeps_gfs Checking test 151 datm_cdeps_gfs 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 = 204.217561 - 0: The maximum resident set size (KB) = 2359992 + 0: The total amount of wall time = 210.428488 + 0: The maximum resident set size (KB) = 2366372 Test 151 datm_cdeps_gfs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_debug_cfsr -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/datm_cdeps_debug_cfsr +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/datm_cdeps_debug_cfsr Checking test 152 datm_cdeps_debug_cfsr results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 459.565756 - 0: The maximum resident set size (KB) = 1003396 + 0: The total amount of wall time = 439.878997 + 0: The maximum resident set size (KB) = 997360 Test 152 datm_cdeps_debug_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr_faster -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/datm_cdeps_control_cfsr_faster +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/datm_cdeps_control_cfsr_faster Checking test 153 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.163642 - 0: The maximum resident set size (KB) = 1072804 + 0: The total amount of wall time = 147.538444 + 0: The maximum resident set size (KB) = 1065308 Test 153 datm_cdeps_control_cfsr_faster PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_lnd_gswp3 -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/datm_cdeps_lnd_gswp3 +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/datm_cdeps_lnd_gswp3 Checking test 154 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4706,14 +4706,14 @@ Checking test 154 datm_cdeps_lnd_gswp3 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.967628 - 0: The maximum resident set size (KB) = 262528 + 0: The total amount of wall time = 8.035173 + 0: The maximum resident set size (KB) = 264012 Test 154 datm_cdeps_lnd_gswp3 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_lnd_gswp3 -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/datm_cdeps_lnd_gswp3_rst +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/datm_cdeps_lnd_gswp3_rst Checking test 155 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4722,14 +4722,14 @@ Checking test 155 datm_cdeps_lnd_gswp3_rst 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.128467 - 0: The maximum resident set size (KB) = 255064 + 0: The total amount of wall time = 16.563053 + 0: The maximum resident set size (KB) = 245008 Test 155 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_atmlnd_sbs -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_p8_atmlnd_sbs +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_p8_atmlnd_sbs Checking test 156 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4814,14 +4814,14 @@ Checking test 156 control_p8_atmlnd_sbs 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 = 204.855975 - 0: The maximum resident set size (KB) = 1613036 + 0: The total amount of wall time = 207.992407 + 0: The maximum resident set size (KB) = 1613152 Test 156 control_p8_atmlnd_sbs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_atmwav -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/control_atmwav +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_atmwav Checking test 157 control_atmwav results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf012.nc ............ALT CHECK......OK @@ -4865,14 +4865,14 @@ Checking test 157 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 86.761445 - 0: The maximum resident set size (KB) = 661824 + 0: The total amount of wall time = 87.805567 + 0: The maximum resident set size (KB) = 664532 Test 157 control_atmwav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/atmaero_control_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/atmaero_control_p8 Checking test 158 atmaero_control_p8 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -4916,14 +4916,14 @@ Checking test 158 atmaero_control_p8 results .... Comparing 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.245182 - 0: The maximum resident set size (KB) = 2969500 + 0: The total amount of wall time = 242.242097 + 0: The maximum resident set size (KB) = 2977900 Test 158 atmaero_control_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8_rad -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/atmaero_control_p8_rad +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/atmaero_control_p8_rad Checking test 159 atmaero_control_p8_rad results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -4967,14 +4967,14 @@ Checking test 159 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 279.664435 - 0: The maximum resident set size (KB) = 3044092 + 0: The total amount of wall time = 291.117587 + 0: The maximum resident set size (KB) = 3049748 Test 159 atmaero_control_p8_rad PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8_rad_micro -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/atmaero_control_p8_rad_micro +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/atmaero_control_p8_rad_micro Checking test 160 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -5018,14 +5018,14 @@ Checking test 160 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 282.772569 - 0: The maximum resident set size (KB) = 3052516 + 0: The total amount of wall time = 293.170272 + 0: The maximum resident set size (KB) = 3054616 Test 160 atmaero_control_p8_rad_micro PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/regional_atmaq +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/regional_atmaq Checking test 161 regional_atmaq results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf003.nc ............ALT CHECK......OK @@ -5041,14 +5041,14 @@ Checking test 161 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 616.211001 - 0: The maximum resident set size (KB) = 1485960 + 0: The total amount of wall time = 626.504328 + 0: The maximum resident set size (KB) = 1474504 Test 161 regional_atmaq PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/regional_atmaq_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/regional_atmaq_debug Checking test 162 regional_atmaq_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK @@ -5062,14 +5062,14 @@ Checking test 162 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1265.361993 - 0: The maximum resident set size (KB) = 1410036 + 0: The total amount of wall time = 1259.295606 + 0: The maximum resident set size (KB) = 1256968 Test 162 regional_atmaq_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq_faster -working dir = /work/noaa/epic-ps/zshrader/rt-1633/stmp/zshrader/FV3_RT/rt_131332/regional_atmaq_faster +working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/regional_atmaq_faster Checking test 163 regional_atmaq_faster results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf003.nc ............ALT CHECK......OK @@ -5085,12 +5085,12 @@ Checking test 163 regional_atmaq_faster 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.339047 - 0: The maximum resident set size (KB) = 1478492 + 0: The total amount of wall time = 546.273887 + 0: The maximum resident set size (KB) = 1478012 Test 163 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Mon Mar 27 19:42:58 CDT 2023 -Elapsed time: 01h:22m:00s. Have a nice day! +Tue Mar 28 17:06:01 CDT 2023 +Elapsed time: 01h:24m:36s. Have a nice day! From 20e21f6d1e2a3e48ea06727529717ec3c4c7a9e8 Mon Sep 17 00:00:00 2001 From: tanyasmirnova <38667904+tanyasmirnova@users.noreply.github.com> Date: Fri, 31 Mar 2023 17:16:52 -0600 Subject: [PATCH 14/30] Merge latest RUC LSM into community develop (#1646) * bug fix from @tanyasmirnova for rrfs crashes during restart * new regression test rrfs_conus13km_hrrr_warm_restart_mismatch * Update CMEPS with ufsdev_ruclsm * point to top of ufsdev_ruclsm for FV3 and FV3/ccpp/physics * FV3: incorrect character lengths in two calls Co-authored-by: samuel.trahan Co-authored-by: Ratko Vasic Co-authored-by: joeolson42 Co-authored-by: tanya Smirnova --- CMEPS-interface/CMEPS | 2 +- FV3 | 2 +- tests/RegressionTests_acorn.intel.log | 2704 ++++++++-------- tests/RegressionTests_cheyenne.gnu.log | 984 +++--- tests/RegressionTests_cheyenne.intel.log | 2836 +++++++++-------- tests/RegressionTests_gaea.intel.log | 2805 +++++++--------- tests/RegressionTests_hera.gnu.log | 988 +++--- tests/RegressionTests_hera.intel.log | 2754 ++++++++-------- tests/RegressionTests_jet.intel.log | 2771 ++++++++-------- tests/RegressionTests_orion.intel.log | 2760 ++++++++-------- tests/RegressionTests_wcoss2.intel.log | 2481 +++++++------- tests/rt.conf | 3 + tests/rt.sh | 2 +- tests/rt_gnu.conf | 3 + .../rrfs_conus13km_hrrr_warm_restart_mismatch | 106 + 15 files changed, 10373 insertions(+), 10828 deletions(-) create mode 100644 tests/tests/rrfs_conus13km_hrrr_warm_restart_mismatch diff --git a/CMEPS-interface/CMEPS b/CMEPS-interface/CMEPS index 4511994b498..91bcb847e9e 160000 --- a/CMEPS-interface/CMEPS +++ b/CMEPS-interface/CMEPS @@ -1 +1 @@ -Subproject commit 4511994b498e349393eb56d3f19756ca458c7d65 +Subproject commit 91bcb847e9e5cac48f1ed3676cfcb1764c45b51d diff --git a/FV3 b/FV3 index bcd12a46ff6..0a7cbe91291 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit bcd12a46ff6c581e5e966d1885dc5a28fdc7819d +Subproject commit 0a7cbe91291a43e4c835120ad4cc6ad596fd6be9 diff --git a/tests/RegressionTests_acorn.intel.log b/tests/RegressionTests_acorn.intel.log index 210fd982ae4..c67ed9f58e2 100644 --- a/tests/RegressionTests_acorn.intel.log +++ b/tests/RegressionTests_acorn.intel.log @@ -1,40 +1,40 @@ -Wed Mar 29 14:12:38 UTC 2023 +Thu Mar 30 16:30:11 UTC 2023 Start Regression test -Compile 001 elapsed time 543 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 550 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 001 elapsed time 540 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1145 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON Compile 003 elapsed time 506 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 993 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 005 elapsed time 598 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 1623 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 1065 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 008 elapsed time 1161 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 458 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 010 elapsed time 877 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 847 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 548 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 379 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 214 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 555 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 527 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 153 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 276 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 688 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 020 elapsed time 796 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 021 elapsed time 618 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 022 elapsed time 478 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 023 elapsed time 348 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 024 elapsed time 258 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 324 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 026 elapsed time 641 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 027 elapsed time 598 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 442 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 476 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 276 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 031 elapsed time 659 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8_mixedmode -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/cpld_control_p8_mixedmode +Compile 004 elapsed time 478 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 005 elapsed time 477 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 1118 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 1149 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 469 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 929 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 010 elapsed time 963 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 602 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 1496 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 1013 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 014 elapsed time 841 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 1247 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 582 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 335 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 518 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 476 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 020 elapsed time 238 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 021 elapsed time 699 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 022 elapsed time 728 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 023 elapsed time 832 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 024 elapsed time 828 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 113 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 026 elapsed time 1010 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 027 elapsed time 621 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 733 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 775 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 733 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 031 elapsed time 679 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8_mixedmode +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -99,14 +99,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 332.917005 -The maximum resident set size (KB) = 2947316 +The total amount of wall time = 334.857481 +The maximum resident set size (KB) = 2952384 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_gfsv17 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/cpld_control_gfsv17 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_gfsv17 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -170,14 +170,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 259.554270 -The maximum resident set size (KB) = 1573824 +The total amount of wall time = 258.062343 +The maximum resident set size (KB) = 1584204 Test 002 cpld_control_gfsv17 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/cpld_control_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -242,14 +242,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 386.253401 -The maximum resident set size (KB) = 2979672 +The total amount of wall time = 386.249156 +The maximum resident set size (KB) = 2981544 Test 003 cpld_control_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/cpld_restart_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -302,14 +302,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 230.033856 -The maximum resident set size (KB) = 2869428 +The total amount of wall time = 229.759665 +The maximum resident set size (KB) = 2869976 Test 004 cpld_restart_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/cpld_control_qr_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -374,14 +374,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 388.381863 -The maximum resident set size (KB) = 2993760 +The total amount of wall time = 388.544897 +The maximum resident set size (KB) = 2992456 Test 005 cpld_control_qr_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/cpld_restart_qr_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -434,14 +434,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 231.025014 -The maximum resident set size (KB) = 2878924 +The total amount of wall time = 233.164657 +The maximum resident set size (KB) = 2883540 Test 006 cpld_restart_qr_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/cpld_2threads_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -494,14 +494,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 366.851727 -The maximum resident set size (KB) = 3280296 +The total amount of wall time = 366.410096 +The maximum resident set size (KB) = 3282632 Test 007 cpld_2threads_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/cpld_decomp_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -554,14 +554,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 381.558538 -The maximum resident set size (KB) = 2977208 +The total amount of wall time = 380.683828 +The maximum resident set size (KB) = 2976980 Test 008 cpld_decomp_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/cpld_mpi_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -614,14 +614,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 318.707609 -The maximum resident set size (KB) = 2910232 +The total amount of wall time = 320.058680 +The maximum resident set size (KB) = 2905624 Test 009 cpld_mpi_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_ciceC_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/cpld_control_ciceC_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_ciceC_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -686,14 +686,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 385.552006 -The maximum resident set size (KB) = 2983716 +The total amount of wall time = 388.822031 +The maximum resident set size (KB) = 2977196 Test 010 cpld_control_ciceC_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/cpld_control_noaero_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/cpld_control_noaero_p8 Checking test 011 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -757,14 +757,14 @@ Checking test 011 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 282.858473 -The maximum resident set size (KB) = 1579384 +The total amount of wall time = 285.247233 +The maximum resident set size (KB) = 1572740 Test 011 cpld_control_noaero_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/cpld_control_nowave_noaero_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_c96_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/cpld_control_nowave_noaero_p8 Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -826,14 +826,14 @@ Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 300.844987 -The maximum resident set size (KB) = 1629096 +The total amount of wall time = 301.398946 +The maximum resident set size (KB) = 1629412 Test 012 cpld_control_nowave_noaero_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/cpld_control_noaero_p8_agrid +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_noaero_p8_agrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/cpld_control_noaero_p8_agrid Checking test 013 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -895,14 +895,14 @@ Checking test 013 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 306.435060 -The maximum resident set size (KB) = 1631632 +The total amount of wall time = 307.206615 +The maximum resident set size (KB) = 1625656 Test 013 cpld_control_noaero_p8_agrid PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/cpld_control_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/cpld_control_c48 Checking test 014 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -952,14 +952,14 @@ Checking test 014 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 434.715522 -The maximum resident set size (KB) = 2630776 +The total amount of wall time = 436.771122 +The maximum resident set size (KB) = 2637152 Test 014 cpld_control_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/cpld_warmstart_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/cpld_warmstart_c48 Checking test 015 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1009,14 +1009,14 @@ Checking test 015 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 120.682344 -The maximum resident set size (KB) = 2644584 +The total amount of wall time = 124.640036 +The maximum resident set size (KB) = 2649036 Test 015 cpld_warmstart_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/cpld_restart_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/cpld_restart_c48 Checking test 016 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1066,14 +1066,14 @@ Checking test 016 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 68.485119 -The maximum resident set size (KB) = 2068792 +The total amount of wall time = 68.635311 +The maximum resident set size (KB) = 2072348 Test 016 cpld_restart_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/cpld_control_p8_faster +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/cpld_control_p8_faster Checking test 017 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1138,14 +1138,14 @@ Checking test 017 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 375.918229 -The maximum resident set size (KB) = 2981824 +The total amount of wall time = 379.236270 +The maximum resident set size (KB) = 2978508 Test 017 cpld_control_p8_faster PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_CubedSphereGrid +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_CubedSphereGrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_CubedSphereGrid Checking test 018 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1172,55 +1172,55 @@ Checking test 018 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 128.871319 -The maximum resident set size (KB) = 511836 +The total amount of wall time = 129.718674 +The maximum resident set size (KB) = 514168 Test 018 control_CubedSphereGrid PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_latlon -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_latlon +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_latlon +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_latlon Checking test 019 control_latlon results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 132.356983 -The maximum resident set size (KB) = 515976 +The total amount of wall time = 132.115280 +The maximum resident set size (KB) = 512288 Test 019 control_latlon PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_wrtGauss_netcdf_parallel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_wrtGauss_netcdf_parallel Checking test 020 control_wrtGauss_netcdf_parallel results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 133.860146 -The maximum resident set size (KB) = 513656 +The total amount of wall time = 135.235533 +The maximum resident set size (KB) = 512584 Test 020 control_wrtGauss_netcdf_parallel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_c48 Checking test 021 control_c48 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -1254,55 +1254,55 @@ Checking test 021 control_c48 results .... 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.212221 -The maximum resident set size (KB) = 672268 +The total amount of wall time = 327.875740 +The maximum resident set size (KB) = 672264 Test 021 control_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c192 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_c192 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_c192 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_c192 Checking test 022 control_c192 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 530.088255 -The maximum resident set size (KB) = 609736 +The total amount of wall time = 532.415732 +The maximum resident set size (KB) = 611696 Test 022 control_c192 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c384 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_c384 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_c384 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_c384 Checking test 023 control_c384 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 568.359371 -The maximum resident set size (KB) = 918544 +The total amount of wall time = 564.604373 +The maximum resident set size (KB) = 923992 Test 023 control_c384 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c384gdas -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_c384gdas +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_c384gdas +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_c384gdas Checking test 024 control_c384gdas results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf006.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF06 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -1340,71 +1340,71 @@ Checking test 024 control_c384gdas 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.874308 -The maximum resident set size (KB) = 1054916 +The total amount of wall time = 499.403760 +The maximum resident set size (KB) = 1058068 Test 024 control_c384gdas PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_stochy +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_stochy Checking test 025 control_stochy results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 88.672429 -The maximum resident set size (KB) = 518488 +The total amount of wall time = 89.816807 +The maximum resident set size (KB) = 519784 Test 025 control_stochy PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_stochy_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_stochy_restart Checking test 026 control_stochy_restart results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 49.072710 -The maximum resident set size (KB) = 286348 +The total amount of wall time = 48.770607 +The maximum resident set size (KB) = 286736 Test 026 control_stochy_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_lndp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_lndp Checking test 027 control_lndp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 83.419751 -The maximum resident set size (KB) = 516884 +The total amount of wall time = 82.773124 +The maximum resident set size (KB) = 517012 Test 027 control_lndp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_iovr4 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_iovr4 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_iovr4 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_iovr4 Checking test 028 control_iovr4 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1412,21 +1412,21 @@ Checking test 028 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.006021 -The maximum resident set size (KB) = 513428 +The total amount of wall time = 137.773244 +The maximum resident set size (KB) = 512544 Test 028 control_iovr4 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_iovr5 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_iovr5 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_iovr5 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_iovr5 Checking test 029 control_iovr5 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1434,21 +1434,21 @@ Checking test 029 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.291292 -The maximum resident set size (KB) = 512280 +The total amount of wall time = 136.194817 +The maximum resident set size (KB) = 512060 Test 029 control_iovr5 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_p8 Checking test 030 control_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1488,17 +1488,17 @@ Checking test 030 control_p8 results .... 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.825446 -The maximum resident set size (KB) = 1487648 +The total amount of wall time = 180.375833 +The maximum resident set size (KB) = 1482300 Test 030 control_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_restart_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_restart_p8 Checking test 031 control_restart_p8 results .... - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -1534,21 +1534,21 @@ Checking test 031 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 99.577209 -The maximum resident set size (KB) = 652688 +The total amount of wall time = 99.768035 +The maximum resident set size (KB) = 654308 Test 031 control_restart_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_qr_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_qr_p8 Checking test 032 control_qr_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1588,17 +1588,17 @@ Checking test 032 control_qr_p8 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.425499 -The maximum resident set size (KB) = 1491644 +The total amount of wall time = 177.107372 +The maximum resident set size (KB) = 1491568 Test 032 control_qr_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_restart_qr_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_restart_qr_p8 Checking test 033 control_restart_qr_p8 results .... - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -1634,19 +1634,19 @@ Checking test 033 control_restart_qr_p8 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 = 99.842455 -The maximum resident set size (KB) = 664892 +The total amount of wall time = 100.602764 +The maximum resident set size (KB) = 668548 Test 033 control_restart_qr_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_decomp_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_decomp_p8 Checking test 034 control_decomp_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing 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 @@ -1684,19 +1684,19 @@ Checking test 034 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 181.795252 -The maximum resident set size (KB) = 1473148 +The total amount of wall time = 181.969260 +The maximum resident set size (KB) = 1477968 Test 034 control_decomp_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_2threads_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_2threads_p8 Checking test 035 control_2threads_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing 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 @@ -1734,23 +1734,23 @@ Checking test 035 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 155.724282 -The maximum resident set size (KB) = 1564192 +The total amount of wall time = 155.737008 +The maximum resident set size (KB) = 1568284 Test 035 control_2threads_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_p8_lndp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_p8_lndp Checking test 036 control_p8_lndp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing sfcf048.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK - Comparing atmf048.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing sfcf048.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing atmf048.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1760,21 +1760,21 @@ Checking test 036 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 320.319254 -The maximum resident set size (KB) = 1482640 +The total amount of wall time = 321.949084 +The maximum resident set size (KB) = 1483716 Test 036 control_p8_lndp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_rrtmgp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_p8_rrtmgp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8_rrtmgp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_p8_rrtmgp Checking test 037 control_p8_rrtmgp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1814,21 +1814,21 @@ Checking test 037 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 231.878349 -The maximum resident set size (KB) = 1540232 +The total amount of wall time = 233.873279 +The maximum resident set size (KB) = 1541776 Test 037 control_p8_rrtmgp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_mynn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_p8_mynn +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8_mynn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_p8_mynn Checking test 038 control_p8_mynn results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1868,21 +1868,21 @@ Checking test 038 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 178.185112 -The maximum resident set size (KB) = 1486340 +The total amount of wall time = 179.545186 +The maximum resident set size (KB) = 1483216 Test 038 control_p8_mynn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/merra2_thompson -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/merra2_thompson +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/merra2_thompson +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/merra2_thompson Checking test 039 merra2_thompson results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1922,114 +1922,114 @@ Checking test 039 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 202.795318 -The maximum resident set size (KB) = 1487372 +The total amount of wall time = 203.479908 +The maximum resident set size (KB) = 1491796 Test 039 merra2_thompson PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/regional_control +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/regional_control Checking test 040 regional_control results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 294.384067 -The maximum resident set size (KB) = 649604 +The total amount of wall time = 291.701614 +The maximum resident set size (KB) = 649812 Test 040 regional_control PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/regional_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/regional_restart Checking test 041 regional_restart results .... - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf006.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 155.905236 -The maximum resident set size (KB) = 648076 +The total amount of wall time = 156.262318 +The maximum resident set size (KB) = 651436 Test 041 regional_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/regional_control_qr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/regional_control_qr Checking test 042 regional_control_qr results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 287.598135 -The maximum resident set size (KB) = 652904 +The total amount of wall time = 287.441524 +The maximum resident set size (KB) = 649844 Test 042 regional_control_qr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/regional_restart_qr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/regional_restart_qr Checking test 043 regional_restart_qr results .... - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf006.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 153.867027 -The maximum resident set size (KB) = 650588 +The total amount of wall time = 156.995151 +The maximum resident set size (KB) = 651132 Test 043 regional_restart_qr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/regional_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/regional_decomp Checking test 044 regional_decomp results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 301.964610 -The maximum resident set size (KB) = 652908 +The total amount of wall time = 301.601919 +The maximum resident set size (KB) = 649708 Test 044 regional_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/regional_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/regional_2threads Checking test 045 regional_2threads results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 176.535562 -The maximum resident set size (KB) = 698328 +The total amount of wall time = 176.114563 +The maximum resident set size (KB) = 696060 Test 045 regional_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_noquilt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/regional_noquilt +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_noquilt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/regional_noquilt Checking test 046 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2037,111 +2037,111 @@ Checking test 046 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 309.309593 -The maximum resident set size (KB) = 641952 +The total amount of wall time = 313.537090 +The maximum resident set size (KB) = 643064 Test 046 regional_noquilt PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/regional_2dwrtdecomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/regional_2dwrtdecomp Checking test 047 regional_2dwrtdecomp results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 287.154789 -The maximum resident set size (KB) = 648892 +The total amount of wall time = 287.503661 +The maximum resident set size (KB) = 648784 Test 047 regional_2dwrtdecomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/fv3_regional_wofs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/regional_wofs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/fv3_regional_wofs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/regional_wofs Checking test 048 regional_wofs results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 363.357493 -The maximum resident set size (KB) = 334468 +The total amount of wall time = 361.643572 +The maximum resident set size (KB) = 340428 Test 048 regional_wofs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_ifi_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/regional_ifi_control +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_ifi_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/regional_ifi_control Checking test 049 regional_ifi_control results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 318.969497 -The maximum resident set size (KB) = 649612 +The total amount of wall time = 324.581266 +The maximum resident set size (KB) = 653448 Test 049 regional_ifi_control PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_ifi_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/regional_ifi_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_ifi_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/regional_ifi_decomp Checking test 050 regional_ifi_decomp results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 331.332432 -The maximum resident set size (KB) = 649656 +The total amount of wall time = 338.858598 +The maximum resident set size (KB) = 649716 Test 050 regional_ifi_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_ifi_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/regional_ifi_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_ifi_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/regional_ifi_2threads Checking test 051 regional_ifi_2threads results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 197.383710 -The maximum resident set size (KB) = 690864 +The total amount of wall time = 197.820279 +The maximum resident set size (KB) = 694896 Test 051 regional_ifi_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rap_control +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/rap_control Checking test 052 rap_control results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2181,39 +2181,39 @@ Checking test 052 rap_control results .... 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.957424 -The maximum resident set size (KB) = 896060 +The total amount of wall time = 419.534701 +The maximum resident set size (KB) = 892140 Test 052 rap_control PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/regional_spp_sppt_shum_skeb +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_spp_sppt_shum_skeb +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/regional_spp_sppt_shum_skeb Checking test 053 regional_spp_sppt_shum_skeb results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf001.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf001.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF01 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 241.745269 -The maximum resident set size (KB) = 987896 +The total amount of wall time = 243.950318 +The maximum resident set size (KB) = 989036 Test 053 regional_spp_sppt_shum_skeb PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rap_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/rap_decomp Checking test 054 rap_decomp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2253,21 +2253,21 @@ Checking test 054 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 432.895943 -The maximum resident set size (KB) = 896120 +The total amount of wall time = 433.139718 +The maximum resident set size (KB) = 892296 Test 054 rap_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rap_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/rap_2threads Checking test 055 rap_2threads results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2307,17 +2307,17 @@ Checking test 055 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 385.548306 -The maximum resident set size (KB) = 961860 +The total amount of wall time = 387.732275 +The maximum resident set size (KB) = 963116 Test 055 rap_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rap_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/rap_restart Checking test 056 rap_restart results .... - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -2353,21 +2353,21 @@ Checking test 056 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 210.401144 -The maximum resident set size (KB) = 643928 +The total amount of wall time = 211.713198 +The maximum resident set size (KB) = 644548 Test 056 rap_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rap_sfcdiff +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/rap_sfcdiff Checking test 057 rap_sfcdiff results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + 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 @@ -2407,21 +2407,21 @@ Checking test 057 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 420.676849 -The maximum resident set size (KB) = 894348 +The total amount of wall time = 422.674965 +The maximum resident set size (KB) = 888728 Test 057 rap_sfcdiff PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rap_sfcdiff_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/rap_sfcdiff_decomp Checking test 058 rap_sfcdiff_decomp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + 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 @@ -2461,17 +2461,17 @@ Checking test 058 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 436.230982 -The maximum resident set size (KB) = 897000 +The total amount of wall time = 441.195515 +The maximum resident set size (KB) = 892408 Test 058 rap_sfcdiff_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rap_sfcdiff_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/rap_sfcdiff_restart Checking test 059 rap_sfcdiff_restart results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -2507,21 +2507,21 @@ Checking test 059 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 307.464237 -The maximum resident set size (KB) = 641644 +The total amount of wall time = 309.631487 +The maximum resident set size (KB) = 644836 Test 059 rap_sfcdiff_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hrrr_control +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/hrrr_control Checking test 060 hrrr_control results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + 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 @@ -2561,21 +2561,21 @@ Checking test 060 hrrr_control results .... 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.295213 -The maximum resident set size (KB) = 892528 +The total amount of wall time = 409.065281 +The maximum resident set size (KB) = 891756 Test 060 hrrr_control PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hrrr_control_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/hrrr_control_decomp Checking test 061 hrrr_control_decomp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + 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 @@ -2615,21 +2615,21 @@ Checking test 061 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 420.812955 -The maximum resident set size (KB) = 890812 +The total amount of wall time = 420.455554 +The maximum resident set size (KB) = 887380 Test 061 hrrr_control_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hrrr_control_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/hrrr_control_2threads Checking test 062 hrrr_control_2threads results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + 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 @@ -2669,17 +2669,17 @@ Checking test 062 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 373.093172 -The maximum resident set size (KB) = 961496 +The total amount of wall time = 375.112474 +The maximum resident set size (KB) = 959364 Test 062 hrrr_control_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hrrr_control_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/hrrr_control_restart Checking test 063 hrrr_control_restart results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -2715,21 +2715,21 @@ Checking test 063 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 296.265548 -The maximum resident set size (KB) = 640980 +The total amount of wall time = 298.225091 +The maximum resident set size (KB) = 638820 Test 063 hrrr_control_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1beta -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rrfs_v1beta +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_v1beta +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/rrfs_v1beta Checking test 064 rrfs_v1beta results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + 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 @@ -2769,21 +2769,21 @@ Checking test 064 rrfs_v1beta results .... 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.925739 -The maximum resident set size (KB) = 891492 +The total amount of wall time = 419.801716 +The maximum resident set size (KB) = 889088 Test 064 rrfs_v1beta PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1nssl -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rrfs_v1nssl +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_v1nssl +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/rrfs_v1nssl Checking test 065 rrfs_v1nssl results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + 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 @@ -2791,21 +2791,21 @@ Checking test 065 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 481.778802 -The maximum resident set size (KB) = 576212 +The total amount of wall time = 484.341531 +The maximum resident set size (KB) = 572312 Test 065 rrfs_v1nssl PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rrfs_v1nssl_nohailnoccn +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/rrfs_v1nssl_nohailnoccn Checking test 066 rrfs_v1nssl_nohailnoccn results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + 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 @@ -2813,151 +2813,163 @@ Checking test 066 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 471.167637 -The maximum resident set size (KB) = 568756 +The total amount of wall time = 473.307993 +The maximum resident set size (KB) = 567132 Test 066 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/rrfs_smoke_conus13km_hrrr_warm Checking test 067 rrfs_smoke_conus13km_hrrr_warm results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing sfcf002.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - Comparing atmf002.nc ............ALT CHECK......OK + 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 = 146.206587 -The maximum resident set size (KB) = 794692 +The total amount of wall time = 145.538792 +The maximum resident set size (KB) = 799084 Test 067 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 068 rrfs_smoke_conus13km_hrrr_warm_2threads results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing sfcf002.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - Comparing atmf002.nc ............ALT CHECK......OK + 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 = 102.376536 -The maximum resident set size (KB) = 805508 +The total amount of wall time = 101.833884 +The maximum resident set size (KB) = 806260 Test 068 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rrfs_conus13km_hrrr_warm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/rrfs_conus13km_hrrr_warm Checking test 069 rrfs_conus13km_hrrr_warm results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing sfcf002.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - Comparing atmf002.nc ............ALT CHECK......OK + 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 = 131.632475 -The maximum resident set size (KB) = 777460 +The total amount of wall time = 131.879348 +The maximum resident set size (KB) = 778944 Test 069 rrfs_conus13km_hrrr_warm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/rrfs_smoke_conus13km_radar_tten_warm Checking test 070 rrfs_smoke_conus13km_radar_tten_warm results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing sfcf002.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - Comparing atmf002.nc ............ALT CHECK......OK + 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 = 147.644317 -The maximum resident set size (KB) = 802284 +The total amount of wall time = 146.667978 +The maximum resident set size (KB) = 801536 Test 070 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmg -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_csawmg -Checking test 071 control_csawmg results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/rrfs_conus13km_hrrr_warm_restart_mismatch +Checking test 071 rrfs_conus13km_hrrr_warm_restart_mismatch results .... + Comparing sfcf002.nc .........OK + Comparing atmf002.nc .........OK + +The total amount of wall time = 67.151335 +The maximum resident set size (KB) = 758948 + +Test 071 rrfs_conus13km_hrrr_warm_restart_mismatch PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_csawmg +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_csawmg +Checking test 072 control_csawmg results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 346.377703 -The maximum resident set size (KB) = 580180 +The total amount of wall time = 349.327691 +The maximum resident set size (KB) = 581916 -Test 071 control_csawmg PASS +Test 072 control_csawmg PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmgt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_csawmgt -Checking test 072 control_csawmgt results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_csawmgt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_csawmgt +Checking test 073 control_csawmgt results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 343.156429 -The maximum resident set size (KB) = 579588 +The total amount of wall time = 345.535243 +The maximum resident set size (KB) = 581696 -Test 072 control_csawmgt PASS +Test 073 control_csawmgt PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_ras -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_ras -Checking test 073 control_ras results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_ras +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_ras +Checking test 074 control_ras results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 180.343783 -The maximum resident set size (KB) = 548760 +The total amount of wall time = 181.898879 +The maximum resident set size (KB) = 550952 -Test 073 control_ras PASS +Test 074 control_ras PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wam -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_wam -Checking test 074 control_wam results .... - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_wam +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_wam +Checking test 075 control_wam results .... + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK -The total amount of wall time = 117.411491 -The maximum resident set size (KB) = 270572 +The total amount of wall time = 117.433340 +The maximum resident set size (KB) = 272084 -Test 074 control_wam PASS +Test 075 control_wam PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_p8_faster -Checking test 075 control_p8_faster results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_p8_faster +Checking test 076 control_p8_faster results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2997,75 +3009,75 @@ Checking test 075 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 172.840424 -The maximum resident set size (KB) = 1488036 +The total amount of wall time = 174.139197 +The maximum resident set size (KB) = 1491308 -Test 075 control_p8_faster PASS +Test 076 control_p8_faster PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/regional_control_faster -Checking test 076 regional_control_faster results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/regional_control_faster +Checking test 077 regional_control_faster results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 279.423705 -The maximum resident set size (KB) = 652584 +The total amount of wall time = 282.502072 +The maximum resident set size (KB) = 655072 -Test 076 regional_control_faster PASS +Test 077 regional_control_faster PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rrfs_smoke_conus13km_hrrr_warm_debug -Checking test 077 rrfs_smoke_conus13km_hrrr_warm_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/rrfs_smoke_conus13km_hrrr_warm_debug +Checking test 078 rrfs_smoke_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 898.602143 -The maximum resident set size (KB) = 832844 +The total amount of wall time = 903.690717 +The maximum resident set size (KB) = 827732 -Test 077 rrfs_smoke_conus13km_hrrr_warm_debug PASS +Test 078 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rrfs_smoke_conus13km_hrrr_warm_debug_2threads -Checking test 078 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +Checking test 079 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 522.831470 -The maximum resident set size (KB) = 835464 +The total amount of wall time = 522.587870 +The maximum resident set size (KB) = 830464 -Test 078 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS +Test 079 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rrfs_conus13km_hrrr_warm_debug -Checking test 079 rrfs_conus13km_hrrr_warm_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/rrfs_conus13km_hrrr_warm_debug +Checking test 080 rrfs_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 805.805628 -The maximum resident set size (KB) = 807112 +The total amount of wall time = 810.582302 +The maximum resident set size (KB) = 807728 -Test 079 rrfs_conus13km_hrrr_warm_debug PASS +Test 080 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_CubedSphereGrid_debug -Checking test 080 control_CubedSphereGrid_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_CubedSphereGrid_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_CubedSphereGrid_debug +Checking test 081 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3091,359 +3103,359 @@ Checking test 080 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 165.520476 -The maximum resident set size (KB) = 673940 +The total amount of wall time = 167.983080 +The maximum resident set size (KB) = 675100 -Test 080 control_CubedSphereGrid_debug PASS +Test 081 control_CubedSphereGrid_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_wrtGauss_netcdf_parallel_debug -Checking test 081 control_wrtGauss_netcdf_parallel_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_wrtGauss_netcdf_parallel_debug +Checking test 082 control_wrtGauss_netcdf_parallel_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 158.062719 -The maximum resident set size (KB) = 678976 +The total amount of wall time = 159.652080 +The maximum resident set size (KB) = 676204 -Test 081 control_wrtGauss_netcdf_parallel_debug PASS +Test 082 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_stochy_debug -Checking test 082 control_stochy_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_stochy_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_stochy_debug +Checking test 083 control_stochy_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 178.345598 -The maximum resident set size (KB) = 682180 +The total amount of wall time = 180.810189 +The maximum resident set size (KB) = 682952 -Test 082 control_stochy_debug PASS +Test 083 control_stochy_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_lndp_debug -Checking test 083 control_lndp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_lndp_debug +Checking test 084 control_lndp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 160.034608 -The maximum resident set size (KB) = 683984 +The total amount of wall time = 162.221115 +The maximum resident set size (KB) = 681732 -Test 083 control_lndp_debug PASS +Test 084 control_lndp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmg_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_csawmg_debug -Checking test 084 control_csawmg_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_csawmg_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_csawmg_debug +Checking test 085 control_csawmg_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 255.093887 -The maximum resident set size (KB) = 721016 +The total amount of wall time = 258.281925 +The maximum resident set size (KB) = 715676 -Test 084 control_csawmg_debug PASS +Test 085 control_csawmg_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmgt_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_csawmgt_debug -Checking test 085 control_csawmgt_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_csawmgt_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_csawmgt_debug +Checking test 086 control_csawmgt_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 250.811793 -The maximum resident set size (KB) = 722296 +The total amount of wall time = 252.015563 +The maximum resident set size (KB) = 721076 -Test 085 control_csawmgt_debug PASS +Test 086 control_csawmgt_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_ras_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_ras_debug -Checking test 086 control_ras_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_ras_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_ras_debug +Checking test 087 control_ras_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 161.262217 -The maximum resident set size (KB) = 690000 +The total amount of wall time = 164.495631 +The maximum resident set size (KB) = 691140 -Test 086 control_ras_debug PASS +Test 087 control_ras_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_diag_debug -Checking test 087 control_diag_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_diag_debug +Checking test 088 control_diag_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 163.378696 -The maximum resident set size (KB) = 736564 +The total amount of wall time = 166.878992 +The maximum resident set size (KB) = 736456 -Test 087 control_diag_debug PASS +Test 088 control_diag_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_debug_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_debug_p8 -Checking test 088 control_debug_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_debug_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_debug_p8 +Checking test 089 control_debug_p8 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 184.082169 -The maximum resident set size (KB) = 1504412 +The total amount of wall time = 188.684206 +The maximum resident set size (KB) = 1505888 -Test 088 control_debug_p8 PASS +Test 089 control_debug_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/regional_debug -Checking test 089 regional_debug results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf001.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/regional_debug +Checking test 090 regional_debug results .... + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK -The total amount of wall time = 1039.355128 -The maximum resident set size (KB) = 677552 +The total amount of wall time = 1047.789039 +The maximum resident set size (KB) = 676624 -Test 089 regional_debug PASS +Test 090 regional_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rap_control_debug -Checking test 090 rap_control_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/rap_control_debug +Checking test 091 rap_control_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 296.895070 -The maximum resident set size (KB) = 1054072 +The total amount of wall time = 301.696075 +The maximum resident set size (KB) = 1052244 -Test 090 rap_control_debug PASS +Test 091 rap_control_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hrrr_control_debug -Checking test 091 hrrr_control_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/hrrr_control_debug +Checking test 092 hrrr_control_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 290.528115 -The maximum resident set size (KB) = 1053688 +The total amount of wall time = 294.912413 +The maximum resident set size (KB) = 1051052 -Test 091 hrrr_control_debug PASS +Test 092 hrrr_control_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rap_unified_drag_suite_debug -Checking test 092 rap_unified_drag_suite_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/rap_unified_drag_suite_debug +Checking test 093 rap_unified_drag_suite_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 295.439397 -The maximum resident set size (KB) = 1055388 +The total amount of wall time = 300.508010 +The maximum resident set size (KB) = 1052844 -Test 092 rap_unified_drag_suite_debug PASS +Test 093 rap_unified_drag_suite_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rap_diag_debug -Checking test 093 rap_diag_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/rap_diag_debug +Checking test 094 rap_diag_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 307.911138 -The maximum resident set size (KB) = 1135848 +The total amount of wall time = 311.457665 +The maximum resident set size (KB) = 1135108 -Test 093 rap_diag_debug PASS +Test 094 rap_diag_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rap_cires_ugwp_debug -Checking test 094 rap_cires_ugwp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/rap_cires_ugwp_debug +Checking test 095 rap_cires_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 302.721278 -The maximum resident set size (KB) = 1056508 +The total amount of wall time = 306.743414 +The maximum resident set size (KB) = 1055128 -Test 094 rap_cires_ugwp_debug PASS +Test 095 rap_cires_ugwp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rap_unified_ugwp_debug -Checking test 095 rap_unified_ugwp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/rap_unified_ugwp_debug +Checking test 096 rap_unified_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 302.946400 -The maximum resident set size (KB) = 1055436 +The total amount of wall time = 307.449126 +The maximum resident set size (KB) = 1051844 -Test 095 rap_unified_ugwp_debug PASS +Test 096 rap_unified_ugwp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rap_lndp_debug -Checking test 096 rap_lndp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/rap_lndp_debug +Checking test 097 rap_lndp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 300.356495 -The maximum resident set size (KB) = 1055980 +The total amount of wall time = 303.159254 +The maximum resident set size (KB) = 1057508 -Test 096 rap_lndp_debug PASS +Test 097 rap_lndp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_flake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rap_flake_debug -Checking test 097 rap_flake_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_flake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/rap_flake_debug +Checking test 098 rap_flake_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 296.959605 -The maximum resident set size (KB) = 1057180 +The total amount of wall time = 300.878588 +The maximum resident set size (KB) = 1053860 -Test 097 rap_flake_debug PASS +Test 098 rap_flake_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_progcld_thompson_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rap_progcld_thompson_debug -Checking test 098 rap_progcld_thompson_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_progcld_thompson_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/rap_progcld_thompson_debug +Checking test 099 rap_progcld_thompson_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 297.118474 -The maximum resident set size (KB) = 1057464 +The total amount of wall time = 300.804469 +The maximum resident set size (KB) = 1053596 -Test 098 rap_progcld_thompson_debug PASS +Test 099 rap_progcld_thompson_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_noah_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rap_noah_debug -Checking test 099 rap_noah_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_noah_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/rap_noah_debug +Checking test 100 rap_noah_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 289.636331 -The maximum resident set size (KB) = 1055732 +The total amount of wall time = 295.609439 +The maximum resident set size (KB) = 1053060 -Test 099 rap_noah_debug PASS +Test 100 rap_noah_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rap_sfcdiff_debug -Checking test 100 rap_sfcdiff_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_sfcdiff_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/rap_sfcdiff_debug +Checking test 101 rap_sfcdiff_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 295.889713 -The maximum resident set size (KB) = 1052740 +The total amount of wall time = 301.315556 +The maximum resident set size (KB) = 1051752 -Test 100 rap_sfcdiff_debug PASS +Test 101 rap_sfcdiff_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 101 rap_noah_sfcdiff_cires_ugwp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 102 rap_noah_sfcdiff_cires_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 483.554255 -The maximum resident set size (KB) = 1053592 +The total amount of wall time = 493.995276 +The maximum resident set size (KB) = 1050132 -Test 101 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 102 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1beta_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rrfs_v1beta_debug -Checking test 102 rrfs_v1beta_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_v1beta_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/rrfs_v1beta_debug +Checking test 103 rrfs_v1beta_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 292.309852 -The maximum resident set size (KB) = 1048432 +The total amount of wall time = 296.124586 +The maximum resident set size (KB) = 1049868 -Test 102 rrfs_v1beta_debug PASS +Test 103 rrfs_v1beta_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wam_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_wam_debug -Checking test 103 control_wam_debug results .... - Comparing sfcf019.nc ............ALT CHECK......OK - Comparing atmf019.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_wam_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_wam_debug +Checking test 104 control_wam_debug results .... + Comparing sfcf019.nc .........OK + Comparing atmf019.nc .........OK -The total amount of wall time = 298.369468 -The maximum resident set size (KB) = 301796 +The total amount of wall time = 298.097363 +The maximum resident set size (KB) = 304904 -Test 103 control_wam_debug PASS +Test 104 control_wam_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/regional_spp_sppt_shum_skeb_dyn32_phy32 -Checking test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf001.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 105 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF01 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 225.832487 -The maximum resident set size (KB) = 886660 +The total amount of wall time = 232.224031 +The maximum resident set size (KB) = 882808 -Test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS +Test 105 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rap_control_dyn32_phy32 -Checking test 105 rap_control_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/rap_control_dyn32_phy32 +Checking test 106 rap_control_dyn32_phy32 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 @@ -3483,21 +3495,21 @@ Checking test 105 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 347.947982 -The maximum resident set size (KB) = 774184 +The total amount of wall time = 353.961662 +The maximum resident set size (KB) = 772604 -Test 105 rap_control_dyn32_phy32 PASS +Test 106 rap_control_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hrrr_control_dyn32_phy32 -Checking test 106 hrrr_control_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/hrrr_control_dyn32_phy32 +Checking test 107 hrrr_control_dyn32_phy32 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 @@ -3537,21 +3549,21 @@ Checking test 106 hrrr_control_dyn32_phy32 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 = 185.192032 -The maximum resident set size (KB) = 776500 +The total amount of wall time = 188.130422 +The maximum resident set size (KB) = 774048 -Test 106 hrrr_control_dyn32_phy32 PASS +Test 107 hrrr_control_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rap_2threads_dyn32_phy32 -Checking test 107 rap_2threads_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/rap_2threads_dyn32_phy32 +Checking test 108 rap_2threads_dyn32_phy32 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 @@ -3591,21 +3603,21 @@ Checking test 107 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 323.977074 -The maximum resident set size (KB) = 832724 +The total amount of wall time = 329.056666 +The maximum resident set size (KB) = 826620 -Test 107 rap_2threads_dyn32_phy32 PASS +Test 108 rap_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hrrr_control_2threads_dyn32_phy32 -Checking test 108 hrrr_control_2threads_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/hrrr_control_2threads_dyn32_phy32 +Checking test 109 hrrr_control_2threads_dyn32_phy32 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 @@ -3645,21 +3657,21 @@ Checking test 108 hrrr_control_2threads_dyn32_phy32 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 = 170.219250 -The maximum resident set size (KB) = 827296 +The total amount of wall time = 171.911724 +The maximum resident set size (KB) = 824100 -Test 108 hrrr_control_2threads_dyn32_phy32 PASS +Test 109 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hrrr_control_decomp_dyn32_phy32 -Checking test 109 hrrr_control_decomp_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/hrrr_control_decomp_dyn32_phy32 +Checking test 110 hrrr_control_decomp_dyn32_phy32 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 @@ -3699,17 +3711,17 @@ Checking test 109 hrrr_control_decomp_dyn32_phy32 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 = 193.093694 -The maximum resident set size (KB) = 774532 +The total amount of wall time = 195.245801 +The maximum resident set size (KB) = 771424 -Test 109 hrrr_control_decomp_dyn32_phy32 PASS +Test 110 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rap_restart_dyn32_phy32 -Checking test 110 rap_restart_dyn32_phy32 results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/rap_restart_dyn32_phy32 +Checking test 111 rap_restart_dyn32_phy32 results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -3745,17 +3757,17 @@ Checking test 110 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 255.123905 -The maximum resident set size (KB) = 611376 +The total amount of wall time = 257.930125 +The maximum resident set size (KB) = 609160 -Test 110 rap_restart_dyn32_phy32 PASS +Test 111 rap_restart_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hrrr_control_restart_dyn32_phy32 -Checking test 111 hrrr_control_restart_dyn32_phy32 results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/hrrr_control_restart_dyn32_phy32 +Checking test 112 hrrr_control_restart_dyn32_phy32 results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.180000.coupler.res .........OK @@ -3791,21 +3803,21 @@ Checking test 111 hrrr_control_restart_dyn32_phy32 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 = 94.934822 -The maximum resident set size (KB) = 603840 +The total amount of wall time = 97.732233 +The maximum resident set size (KB) = 606080 -Test 111 hrrr_control_restart_dyn32_phy32 PASS +Test 112 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rap_control_dyn64_phy32 -Checking test 112 rap_control_dyn64_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/rap_control_dyn64_phy32 +Checking test 113 rap_control_dyn64_phy32 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 @@ -3845,116 +3857,116 @@ Checking test 112 rap_control_dyn64_phy32 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 = 232.035186 -The maximum resident set size (KB) = 800560 +The total amount of wall time = 235.527532 +The maximum resident set size (KB) = 791880 -Test 112 rap_control_dyn64_phy32 PASS +Test 113 rap_control_dyn64_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rap_control_debug_dyn32_phy32 -Checking test 113 rap_control_debug_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/rap_control_debug_dyn32_phy32 +Checking test 114 rap_control_debug_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 292.743027 -The maximum resident set size (KB) = 942304 +The total amount of wall time = 291.363014 +The maximum resident set size (KB) = 939400 -Test 113 rap_control_debug_dyn32_phy32 PASS +Test 114 rap_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hrrr_control_debug_dyn32_phy32 -Checking test 114 hrrr_control_debug_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/hrrr_control_debug_dyn32_phy32 +Checking test 115 hrrr_control_debug_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 288.296619 -The maximum resident set size (KB) = 935948 +The total amount of wall time = 286.727205 +The maximum resident set size (KB) = 938124 -Test 114 hrrr_control_debug_dyn32_phy32 PASS +Test 115 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/rap_control_dyn64_phy32_debug -Checking test 115 rap_control_dyn64_phy32_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/rap_control_dyn64_phy32_debug +Checking test 116 rap_control_dyn64_phy32_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 294.906807 -The maximum resident set size (KB) = 954672 +The total amount of wall time = 294.459968 +The maximum resident set size (KB) = 956232 -Test 115 rap_control_dyn64_phy32_debug PASS +Test 116 rap_control_dyn64_phy32_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hafs_regional_atm -Checking test 116 hafs_regional_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/hafs_regional_atm +Checking test 117 hafs_regional_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 269.555970 -The maximum resident set size (KB) = 819172 +The total amount of wall time = 269.003587 +The maximum resident set size (KB) = 824032 -Test 116 hafs_regional_atm PASS +Test 117 hafs_regional_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hafs_regional_atm_thompson_gfdlsf -Checking test 117 hafs_regional_atm_thompson_gfdlsf results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/hafs_regional_atm_thompson_gfdlsf +Checking test 118 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 314.767365 -The maximum resident set size (KB) = 1177928 +The total amount of wall time = 322.096090 +The maximum resident set size (KB) = 1179168 -Test 117 hafs_regional_atm_thompson_gfdlsf PASS +Test 118 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hafs_regional_atm_ocn -Checking test 118 hafs_regional_atm_ocn results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/hafs_regional_atm_ocn +Checking test 119 hafs_regional_atm_ocn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK Comparing archs.2019_241_06.a .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 389.432023 -The maximum resident set size (KB) = 854948 +The total amount of wall time = 387.476404 +The maximum resident set size (KB) = 858152 -Test 118 hafs_regional_atm_ocn PASS +Test 119 hafs_regional_atm_ocn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hafs_regional_atm_wav -Checking test 119 hafs_regional_atm_wav results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_atm_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/hafs_regional_atm_wav +Checking test 120 hafs_regional_atm_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 698.265117 -The maximum resident set size (KB) = 887476 +The total amount of wall time = 700.922067 +The maximum resident set size (KB) = 887356 -Test 119 hafs_regional_atm_wav PASS +Test 120 hafs_regional_atm_wav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hafs_regional_atm_ocn_wav -Checking test 120 hafs_regional_atm_ocn_wav results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/hafs_regional_atm_ocn_wav +Checking test 121 hafs_regional_atm_ocn_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK Comparing archs.2019_241_06.a .........OK Comparing out_grd.ww3 .........OK @@ -3962,323 +3974,323 @@ Checking test 120 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 890.260388 -The maximum resident set size (KB) = 910608 +The total amount of wall time = 892.759235 +The maximum resident set size (KB) = 914132 -Test 120 hafs_regional_atm_ocn_wav PASS +Test 121 hafs_regional_atm_ocn_wav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hafs_regional_1nest_atm -Checking test 121 hafs_regional_1nest_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/hafs_regional_1nest_atm +Checking test 122 hafs_regional_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 333.273326 -The maximum resident set size (KB) = 391368 +The total amount of wall time = 332.415715 +The maximum resident set size (KB) = 398012 -Test 121 hafs_regional_1nest_atm PASS +Test 122 hafs_regional_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hafs_regional_telescopic_2nests_atm -Checking test 122 hafs_regional_telescopic_2nests_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK - Comparing atm.nest03.f006.nc ............ALT CHECK......OK - Comparing sfc.nest03.f006.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/hafs_regional_telescopic_2nests_atm +Checking test 123 hafs_regional_telescopic_2nests_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing atm.nest03.f006.nc .........OK + Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 403.516099 -The maximum resident set size (KB) = 403520 +The total amount of wall time = 401.733899 +The maximum resident set size (KB) = 400768 -Test 122 hafs_regional_telescopic_2nests_atm PASS +Test 123 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hafs_global_1nest_atm -Checking test 123 hafs_global_1nest_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_global_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/hafs_global_1nest_atm +Checking test 124 hafs_global_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 172.510879 -The maximum resident set size (KB) = 262384 +The total amount of wall time = 171.487002 +The maximum resident set size (KB) = 264904 -Test 123 hafs_global_1nest_atm PASS +Test 124 hafs_global_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_multiple_4nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hafs_global_multiple_4nests_atm -Checking test 124 hafs_global_multiple_4nests_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK - Comparing atm.nest03.f006.nc ............ALT CHECK......OK - Comparing sfc.nest03.f006.nc ............ALT CHECK......OK - Comparing atm.nest04.f006.nc ............ALT CHECK......OK - Comparing sfc.nest04.f006.nc ............ALT CHECK......OK - Comparing atm.nest05.f006.nc ............ALT CHECK......OK - Comparing sfc.nest05.f006.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_global_multiple_4nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/hafs_global_multiple_4nests_atm +Checking test 125 hafs_global_multiple_4nests_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing atm.nest03.f006.nc .........OK + Comparing sfc.nest03.f006.nc .........OK + Comparing atm.nest04.f006.nc .........OK + Comparing sfc.nest04.f006.nc .........OK + Comparing atm.nest05.f006.nc .........OK + Comparing sfc.nest05.f006.nc .........OK Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK Comparing HURPRS.GrbF06.nest03 .........OK Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -The total amount of wall time = 490.559317 -The maximum resident set size (KB) = 342068 +The total amount of wall time = 489.492375 +The maximum resident set size (KB) = 345964 -Test 124 hafs_global_multiple_4nests_atm PASS +Test 125 hafs_global_multiple_4nests_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hafs_regional_specified_moving_1nest_atm -Checking test 125 hafs_regional_specified_moving_1nest_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/hafs_regional_specified_moving_1nest_atm +Checking test 126 hafs_regional_specified_moving_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 218.947204 -The maximum resident set size (KB) = 403544 +The total amount of wall time = 219.004698 +The maximum resident set size (KB) = 406380 -Test 125 hafs_regional_specified_moving_1nest_atm PASS +Test 126 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hafs_regional_storm_following_1nest_atm -Checking test 126 hafs_regional_storm_following_1nest_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/hafs_regional_storm_following_1nest_atm +Checking test 127 hafs_regional_storm_following_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 206.449515 -The maximum resident set size (KB) = 404060 +The total amount of wall time = 206.342762 +The maximum resident set size (KB) = 406512 -Test 126 hafs_regional_storm_following_1nest_atm PASS +Test 127 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hafs_regional_storm_following_1nest_atm_ocn -Checking test 127 hafs_regional_storm_following_1nest_atm_ocn results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/hafs_regional_storm_following_1nest_atm_ocn +Checking test 128 hafs_regional_storm_following_1nest_atm_ocn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 253.779605 -The maximum resident set size (KB) = 467236 +The total amount of wall time = 253.636364 +The maximum resident set size (KB) = 469476 -Test 127 hafs_regional_storm_following_1nest_atm_ocn PASS +Test 128 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hafs_global_storm_following_1nest_atm -Checking test 128 hafs_global_storm_following_1nest_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_global_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/hafs_global_storm_following_1nest_atm +Checking test 129 hafs_global_storm_following_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 84.970021 -The maximum resident set size (KB) = 286868 +The total amount of wall time = 84.728648 +The maximum resident set size (KB) = 279308 -Test 128 hafs_global_storm_following_1nest_atm PASS +Test 129 hafs_global_storm_following_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hafs_regional_storm_following_1nest_atm_ocn_debug -Checking test 129 hafs_regional_storm_following_1nest_atm_ocn_debug results .... - Comparing atmf001.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atm.nest02.f001.nc ............ALT CHECK......OK - Comparing sfc.nest02.f001.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/hafs_regional_storm_following_1nest_atm_ocn_debug +Checking test 130 hafs_regional_storm_following_1nest_atm_ocn_debug results .... + Comparing atmf001.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atm.nest02.f001.nc .........OK + Comparing sfc.nest02.f001.nc .........OK -The total amount of wall time = 820.137974 -The maximum resident set size (KB) = 490236 +The total amount of wall time = 818.983545 +The maximum resident set size (KB) = 491820 -Test 129 hafs_regional_storm_following_1nest_atm_ocn_debug PASS +Test 130 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hafs_regional_storm_following_1nest_atm_ocn_wav -Checking test 130 hafs_regional_storm_following_1nest_atm_ocn_wav results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 131 hafs_regional_storm_following_1nest_atm_ocn_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -The total amount of wall time = 501.906876 -The maximum resident set size (KB) = 522040 +The total amount of wall time = 504.989922 +The maximum resident set size (KB) = 523564 -Test 130 hafs_regional_storm_following_1nest_atm_ocn_wav PASS +Test 131 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_docn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hafs_regional_docn -Checking test 131 hafs_regional_docn results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_docn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/hafs_regional_docn +Checking test 132 hafs_regional_docn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 367.740956 -The maximum resident set size (KB) = 857588 +The total amount of wall time = 369.718174 +The maximum resident set size (KB) = 861192 -Test 131 hafs_regional_docn PASS +Test 132 hafs_regional_docn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_docn_oisst -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hafs_regional_docn_oisst -Checking test 132 hafs_regional_docn_oisst results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_docn_oisst +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/hafs_regional_docn_oisst +Checking test 133 hafs_regional_docn_oisst results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 369.024801 -The maximum resident set size (KB) = 844600 +The total amount of wall time = 370.763100 +The maximum resident set size (KB) = 845428 -Test 132 hafs_regional_docn_oisst PASS +Test 133 hafs_regional_docn_oisst PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_datm_cdeps -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/hafs_regional_datm_cdeps -Checking test 133 hafs_regional_datm_cdeps results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_datm_cdeps +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/hafs_regional_datm_cdeps +Checking test 134 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -The total amount of wall time = 946.620812 -The maximum resident set size (KB) = 840180 +The total amount of wall time = 949.757393 +The maximum resident set size (KB) = 836876 -Test 133 hafs_regional_datm_cdeps PASS +Test 134 hafs_regional_datm_cdeps PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/datm_cdeps_control_cfsr -Checking test 134 datm_cdeps_control_cfsr results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_control_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/datm_cdeps_control_cfsr +Checking test 135 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.576887 -The maximum resident set size (KB) = 731600 +The total amount of wall time = 140.707284 +The maximum resident set size (KB) = 733604 -Test 134 datm_cdeps_control_cfsr PASS +Test 135 datm_cdeps_control_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/datm_cdeps_restart_cfsr -Checking test 135 datm_cdeps_restart_cfsr results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_control_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/datm_cdeps_restart_cfsr +Checking test 136 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 85.368336 -The maximum resident set size (KB) = 707812 +The total amount of wall time = 85.266054 +The maximum resident set size (KB) = 728032 -Test 135 datm_cdeps_restart_cfsr PASS +Test 136 datm_cdeps_restart_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/datm_cdeps_control_gefs -Checking test 136 datm_cdeps_control_gefs results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_control_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/datm_cdeps_control_gefs +Checking test 137 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 134.987212 -The maximum resident set size (KB) = 612152 +The total amount of wall time = 135.333275 +The maximum resident set size (KB) = 616460 -Test 136 datm_cdeps_control_gefs PASS +Test 137 datm_cdeps_control_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_iau_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/datm_cdeps_iau_gefs -Checking test 137 datm_cdeps_iau_gefs results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_iau_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/datm_cdeps_iau_gefs +Checking test 138 datm_cdeps_iau_gefs 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.139134 -The maximum resident set size (KB) = 612940 +The total amount of wall time = 137.693984 +The maximum resident set size (KB) = 611220 -Test 137 datm_cdeps_iau_gefs PASS +Test 138 datm_cdeps_iau_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_stochy_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/datm_cdeps_stochy_gefs -Checking test 138 datm_cdeps_stochy_gefs results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_stochy_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/datm_cdeps_stochy_gefs +Checking test 139 datm_cdeps_stochy_gefs 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.555289 -The maximum resident set size (KB) = 615492 +The total amount of wall time = 137.769532 +The maximum resident set size (KB) = 613904 -Test 138 datm_cdeps_stochy_gefs PASS +Test 139 datm_cdeps_stochy_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/datm_cdeps_ciceC_cfsr -Checking test 139 datm_cdeps_ciceC_cfsr results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_ciceC_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/datm_cdeps_ciceC_cfsr +Checking test 140 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.005113 -The maximum resident set size (KB) = 734168 +The total amount of wall time = 140.635913 +The maximum resident set size (KB) = 733080 -Test 139 datm_cdeps_ciceC_cfsr PASS +Test 140 datm_cdeps_ciceC_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/datm_cdeps_bulk_cfsr -Checking test 140 datm_cdeps_bulk_cfsr results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_bulk_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/datm_cdeps_bulk_cfsr +Checking test 141 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.808860 -The maximum resident set size (KB) = 732600 +The total amount of wall time = 142.186974 +The maximum resident set size (KB) = 736804 -Test 140 datm_cdeps_bulk_cfsr PASS +Test 141 datm_cdeps_bulk_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/datm_cdeps_bulk_gefs -Checking test 141 datm_cdeps_bulk_gefs results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_bulk_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/datm_cdeps_bulk_gefs +Checking test 142 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 134.166995 -The maximum resident set size (KB) = 612080 +The total amount of wall time = 132.698576 +The maximum resident set size (KB) = 619548 -Test 141 datm_cdeps_bulk_gefs PASS +Test 142 datm_cdeps_bulk_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/datm_cdeps_mx025_cfsr -Checking test 142 datm_cdeps_mx025_cfsr results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_mx025_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/datm_cdeps_mx025_cfsr +Checking test 143 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4286,15 +4298,15 @@ Checking test 142 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 430.956153 -The maximum resident set size (KB) = 570532 +The total amount of wall time = 429.131284 +The maximum resident set size (KB) = 568972 -Test 142 datm_cdeps_mx025_cfsr PASS +Test 143 datm_cdeps_mx025_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/datm_cdeps_mx025_gefs -Checking test 143 datm_cdeps_mx025_gefs results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_mx025_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/datm_cdeps_mx025_gefs +Checking test 144 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4302,65 +4314,65 @@ Checking test 143 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 427.006678 -The maximum resident set size (KB) = 548844 +The total amount of wall time = 427.039953 +The maximum resident set size (KB) = 549480 -Test 143 datm_cdeps_mx025_gefs PASS +Test 144 datm_cdeps_mx025_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/datm_cdeps_multiple_files_cfsr -Checking test 144 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_control_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/datm_cdeps_multiple_files_cfsr +Checking test 145 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 140.509608 -The maximum resident set size (KB) = 719076 +The total amount of wall time = 140.543146 +The maximum resident set size (KB) = 734884 -Test 144 datm_cdeps_multiple_files_cfsr PASS +Test 145 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/datm_cdeps_3072x1536_cfsr -Checking test 145 datm_cdeps_3072x1536_cfsr results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/datm_cdeps_3072x1536_cfsr +Checking test 146 datm_cdeps_3072x1536_cfsr 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 = 257.521807 -The maximum resident set size (KB) = 1981056 +The total amount of wall time = 257.926521 +The maximum resident set size (KB) = 1980852 -Test 145 datm_cdeps_3072x1536_cfsr PASS +Test 146 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_gfs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/datm_cdeps_gfs -Checking test 146 datm_cdeps_gfs results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_gfs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/datm_cdeps_gfs +Checking test 147 datm_cdeps_gfs 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 = 255.951059 -The maximum resident set size (KB) = 1977352 +The total amount of wall time = 257.140875 +The maximum resident set size (KB) = 1981628 -Test 146 datm_cdeps_gfs PASS +Test 147 datm_cdeps_gfs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/datm_cdeps_control_cfsr_faster -Checking test 147 datm_cdeps_control_cfsr_faster results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_control_cfsr_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/datm_cdeps_control_cfsr_faster +Checking test 148 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 140.919813 -The maximum resident set size (KB) = 730932 +The total amount of wall time = 140.406446 +The maximum resident set size (KB) = 733792 -Test 147 datm_cdeps_control_cfsr_faster PASS +Test 148 datm_cdeps_control_cfsr_faster PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/datm_cdeps_lnd_gswp3 -Checking test 148 datm_cdeps_lnd_gswp3 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/datm_cdeps_lnd_gswp3 +Checking test 149 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4368,15 +4380,15 @@ Checking test 148 datm_cdeps_lnd_gswp3 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 = 21.992201 -The maximum resident set size (KB) = 228336 +The total amount of wall time = 21.990838 +The maximum resident set size (KB) = 228060 -Test 148 datm_cdeps_lnd_gswp3 PASS +Test 149 datm_cdeps_lnd_gswp3 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/datm_cdeps_lnd_gswp3_rst -Checking test 149 datm_cdeps_lnd_gswp3_rst results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/datm_cdeps_lnd_gswp3_rst +Checking test 150 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4384,15 +4396,15 @@ Checking test 149 datm_cdeps_lnd_gswp3_rst 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.467519 -The maximum resident set size (KB) = 227780 +The total amount of wall time = 27.547151 +The maximum resident set size (KB) = 229488 -Test 149 datm_cdeps_lnd_gswp3_rst PASS +Test 150 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_atmlnd_sbs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_p8_atmlnd_sbs -Checking test 150 control_p8_atmlnd_sbs results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8_atmlnd_sbs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_p8_atmlnd_sbs +Checking test 151 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -4476,19 +4488,19 @@ Checking test 150 control_p8_atmlnd_sbs 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 = 234.528407 -The maximum resident set size (KB) = 1540148 +The total amount of wall time = 234.562679 +The maximum resident set size (KB) = 1545116 -Test 150 control_p8_atmlnd_sbs PASS +Test 151 control_p8_atmlnd_sbs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_atmwav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/control_atmwav -Checking test 151 control_atmwav results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_atmwav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_atmwav +Checking test 152 control_atmwav results .... + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -4527,19 +4539,19 @@ Checking test 151 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -The total amount of wall time = 92.271500 -The maximum resident set size (KB) = 538768 +The total amount of wall time = 91.647649 +The maximum resident set size (KB) = 537712 -Test 151 control_atmwav PASS +Test 152 control_atmwav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/atmaero_control_p8 -Checking test 152 atmaero_control_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/atmaero_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/atmaero_control_p8 +Checking test 153 atmaero_control_p8 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 @@ -4578,19 +4590,19 @@ Checking test 152 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 242.556994 -The maximum resident set size (KB) = 2813860 +The total amount of wall time = 246.842657 +The maximum resident set size (KB) = 2811184 -Test 152 atmaero_control_p8 PASS +Test 153 atmaero_control_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8_rad -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/atmaero_control_p8_rad -Checking test 153 atmaero_control_p8_rad results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/atmaero_control_p8_rad +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/atmaero_control_p8_rad +Checking test 154 atmaero_control_p8_rad 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 @@ -4629,19 +4641,19 @@ Checking test 153 atmaero_control_p8_rad results .... 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.796089 -The maximum resident set size (KB) = 2875352 +The total amount of wall time = 283.414227 +The maximum resident set size (KB) = 2876660 -Test 153 atmaero_control_p8_rad PASS +Test 154 atmaero_control_p8_rad PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/atmaero_control_p8_rad_micro -Checking test 154 atmaero_control_p8_rad_micro results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/atmaero_control_p8_rad_micro +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/atmaero_control_p8_rad_micro +Checking test 155 atmaero_control_p8_rad_micro 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 @@ -4680,21 +4692,21 @@ Checking test 154 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 288.525457 -The maximum resident set size (KB) = 2883968 +The total amount of wall time = 289.388829 +The maximum resident set size (KB) = 2881256 -Test 154 atmaero_control_p8_rad_micro PASS +Test 155 atmaero_control_p8_rad_micro PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/regional_atmaq -Checking test 155 regional_atmaq results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf003.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf003.nc ............ALT CHECK......OK - Comparing atmf006.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_atmaq +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/regional_atmaq +Checking test 156 regional_atmaq results .... + Comparing sfcf000.nc .........OK + Comparing sfcf003.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf003.nc .........OK + Comparing atmf006.nc .........OK Comparing RESTART/20190801.180000.coupler.res .........OK Comparing RESTART/20190801.180000.fv_core.res.nc .........OK Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK @@ -4703,19 +4715,19 @@ Checking test 155 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 683.244008 -The maximum resident set size (KB) = 1257452 +The total amount of wall time = 681.530293 +The maximum resident set size (KB) = 1259256 -Test 155 regional_atmaq PASS +Test 156 regional_atmaq PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/regional_atmaq_debug -Checking test 156 regional_atmaq_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_atmaq_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/regional_atmaq_debug +Checking test 157 regional_atmaq_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK Comparing RESTART/20190801.130000.coupler.res .........OK Comparing RESTART/20190801.130000.fv_core.res.nc .........OK Comparing RESTART/20190801.130000.fv_core.res.tile1.nc .........OK @@ -4724,21 +4736,21 @@ Checking test 156 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1376.287172 -The maximum resident set size (KB) = 1289704 +The total amount of wall time = 1379.429764 +The maximum resident set size (KB) = 1293780 -Test 156 regional_atmaq_debug PASS +Test 157 regional_atmaq_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_206658/regional_atmaq_faster -Checking test 157 regional_atmaq_faster results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf003.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf003.nc ............ALT CHECK......OK - Comparing atmf006.nc ............ALT CHECK......OK +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_atmaq_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/regional_atmaq_faster +Checking test 158 regional_atmaq_faster results .... + Comparing sfcf000.nc .........OK + Comparing sfcf003.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf003.nc .........OK + Comparing atmf006.nc .........OK Comparing RESTART/20190801.180000.coupler.res .........OK Comparing RESTART/20190801.180000.fv_core.res.nc .........OK Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK @@ -4747,12 +4759,12 @@ Checking test 157 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 643.853784 -The maximum resident set size (KB) = 1257544 +The total amount of wall time = 643.440873 +The maximum resident set size (KB) = 1256944 -Test 157 regional_atmaq_faster PASS +Test 158 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Wed Mar 29 15:51:29 UTC 2023 -Elapsed time: 01h:38m:51s. Have a nice day! +Thu Mar 30 18:06:21 UTC 2023 +Elapsed time: 01h:36m:11s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index 180d54648c7..3c4b9ce9ad4 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,26 +1,26 @@ -Tue Mar 28 15:08:30 MDT 2023 +Thu Mar 30 11:40:41 MDT 2023 Start Regression test -Compile 001 elapsed time 376 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 394 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 853 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 197 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 369 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 1076 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 864 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 854 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 658 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 570 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 001 elapsed time 384 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 399 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 852 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 198 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 377 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 1075 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 854 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 851 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 619 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 563 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON Compile 011 elapsed time 359 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 012 elapsed time 298 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 012 elapsed time 299 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/control_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/control_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/control_c48 +working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/control_c48 Checking test 001 control_c48 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -54,57 +54,57 @@ Checking test 001 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 822.201367 -0:The maximum resident set size (KB) = 678112 +0:The total amount of wall time = 818.932811 +0:The maximum resident set size (KB) = 679680 Test 001 control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/control_stochy +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/control_stochy +working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/control_stochy Checking test 002 control_stochy results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 179.262211 -0:The maximum resident set size (KB) = 443156 +0:The total amount of wall time = 177.472515 +0:The maximum resident set size (KB) = 443708 Test 002 control_stochy PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/control_ras -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/control_ras +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/control_ras +working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/control_ras Checking test 003 control_ras results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 289.221629 -0:The maximum resident set size (KB) = 452576 +0:The total amount of wall time = 294.481336 +0:The maximum resident set size (KB) = 452036 Test 003 control_ras PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/control_p8 +working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/control_p8 Checking test 004 control_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -144,21 +144,21 @@ Checking test 004 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 310.381510 -0:The maximum resident set size (KB) = 1226440 +0:The total amount of wall time = 310.641262 +0:The maximum resident set size (KB) = 1224256 Test 004 control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rap_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/rap_control +working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/rap_control Checking test 005 rap_control results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -198,21 +198,21 @@ Checking test 005 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 711.233650 -0:The maximum resident set size (KB) = 791704 +0:The total amount of wall time = 710.740057 +0:The maximum resident set size (KB) = 792152 Test 005 rap_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rap_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/rap_control +working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/rap_decomp Checking test 006 rap_decomp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -252,21 +252,21 @@ Checking test 006 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 716.380398 -0:The maximum resident set size (KB) = 791484 +0:The total amount of wall time = 721.136864 +0:The maximum resident set size (KB) = 791864 Test 006 rap_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rap_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/rap_control +working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/rap_2threads Checking test 007 rap_2threads results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -306,17 +306,17 @@ Checking test 007 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 654.183183 -0:The maximum resident set size (KB) = 865192 +0:The total amount of wall time = 654.142559 +0:The maximum resident set size (KB) = 865496 Test 007 rap_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rap_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/rap_control +working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/rap_restart Checking test 008 rap_restart results .... - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -352,21 +352,21 @@ Checking test 008 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 352.289277 -0:The maximum resident set size (KB) = 538944 +0:The total amount of wall time = 355.456006 +0:The maximum resident set size (KB) = 539196 Test 008 rap_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rap_sfcdiff +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/rap_sfcdiff +working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/rap_sfcdiff Checking test 009 rap_sfcdiff results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + 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 @@ -406,21 +406,21 @@ Checking test 009 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 712.110229 -0:The maximum resident set size (KB) = 791876 +0:The total amount of wall time = 714.211449 +0:The maximum resident set size (KB) = 792272 Test 009 rap_sfcdiff PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rap_sfcdiff_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/rap_sfcdiff +working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/rap_sfcdiff_decomp Checking test 010 rap_sfcdiff_decomp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + 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 @@ -460,17 +460,17 @@ Checking test 010 rap_sfcdiff_decomp results .... Comparing 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.129536 -0:The maximum resident set size (KB) = 790820 +0:The total amount of wall time = 721.946792 +0:The maximum resident set size (KB) = 791188 Test 010 rap_sfcdiff_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rap_sfcdiff_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/rap_sfcdiff +working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/rap_sfcdiff_restart Checking test 011 rap_sfcdiff_restart results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -506,21 +506,21 @@ Checking test 011 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 528.857662 -0:The maximum resident set size (KB) = 543912 +0:The total amount of wall time = 527.290404 +0:The maximum resident set size (KB) = 544076 Test 011 rap_sfcdiff_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/hrrr_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/hrrr_control +working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/hrrr_control Checking test 012 hrrr_control results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + 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 @@ -560,21 +560,21 @@ Checking test 012 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 693.179647 -0:The maximum resident set size (KB) = 789148 +0:The total amount of wall time = 689.408073 +0:The maximum resident set size (KB) = 789908 Test 012 hrrr_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/hrrr_control_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/hrrr_control +working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/hrrr_control_2threads Checking test 013 hrrr_control_2threads results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + 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 @@ -614,21 +614,21 @@ Checking test 013 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 626.028944 -0:The maximum resident set size (KB) = 859992 +0:The total amount of wall time = 626.108333 +0:The maximum resident set size (KB) = 860664 Test 013 hrrr_control_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/hrrr_control_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/hrrr_control +working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/hrrr_control_decomp Checking test 014 hrrr_control_decomp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + 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 @@ -668,17 +668,17 @@ Checking test 014 hrrr_control_decomp results .... Comparing 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.888031 -0:The maximum resident set size (KB) = 788484 +0:The total amount of wall time = 694.020434 +0:The maximum resident set size (KB) = 788828 Test 014 hrrr_control_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/hrrr_control_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/hrrr_control +working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/hrrr_control_restart Checking test 015 hrrr_control_restart results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -714,21 +714,21 @@ Checking test 015 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 510.590636 -0:The maximum resident set size (KB) = 540004 +0:The total amount of wall time = 509.192789 +0:The maximum resident set size (KB) = 540232 Test 015 hrrr_control_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_v1beta -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rrfs_v1beta +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/rrfs_v1beta +working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/rrfs_v1beta Checking test 016 rrfs_v1beta results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + 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 @@ -768,293 +768,305 @@ Checking test 016 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 705.936384 -0:The maximum resident set size (KB) = 788568 +0:The total amount of wall time = 707.645306 +0:The maximum resident set size (KB) = 789128 Test 016 rrfs_v1beta PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/rrfs_smoke_conus13km_hrrr_warm Checking test 017 rrfs_smoke_conus13km_hrrr_warm results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing sfcf002.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - Comparing atmf002.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK -0:The total amount of wall time = 233.321586 -0:The maximum resident set size (KB) = 635984 +0:The total amount of wall time = 231.705240 +0:The maximum resident set size (KB) = 636572 Test 017 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 018 rrfs_smoke_conus13km_hrrr_warm_2threads results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing sfcf002.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - Comparing atmf002.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK -0:The total amount of wall time = 148.045708 -0:The maximum resident set size (KB) = 654848 +0:The total amount of wall time = 146.796159 +0:The maximum resident set size (KB) = 661076 Test 018 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rrfs_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/rrfs_conus13km_hrrr_warm Checking test 019 rrfs_conus13km_hrrr_warm results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing sfcf002.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - Comparing atmf002.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK -0:The total amount of wall time = 212.151725 -0:The maximum resident set size (KB) = 614804 +0:The total amount of wall time = 213.145560 +0:The maximum resident set size (KB) = 615148 Test 019 rrfs_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/rrfs_smoke_conus13km_radar_tten_warm Checking test 020 rrfs_smoke_conus13km_radar_tten_warm results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing sfcf002.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - Comparing atmf002.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK -0:The total amount of wall time = 233.569833 -0:The maximum resident set size (KB) = 638484 +0:The total amount of wall time = 232.542704 +0:The maximum resident set size (KB) = 639692 Test 020 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/control_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/control_diag_debug -Checking test 021 control_diag_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/rrfs_conus13km_hrrr_warm_restart_mismatch +Checking test 021 rrfs_conus13km_hrrr_warm_restart_mismatch results .... + Comparing sfcf002.nc .........OK + Comparing atmf002.nc .........OK -0:The total amount of wall time = 88.438029 -0:The maximum resident set size (KB) = 495696 +0:The total amount of wall time = 110.251654 +0:The maximum resident set size (KB) = 596868 -Test 021 control_diag_debug PASS +Test 021 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/regional_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/regional_debug -Checking test 022 regional_debug results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf001.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/control_diag_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/control_diag_debug +Checking test 022 control_diag_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 482.851426 -0:The maximum resident set size (KB) = 570132 +0:The total amount of wall time = 88.735374 +0:The maximum resident set size (KB) = 494864 -Test 022 regional_debug PASS +Test 022 control_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rap_control_debug -Checking test 023 rap_control_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/regional_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/regional_debug +Checking test 023 regional_debug results .... + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK -0:The total amount of wall time = 151.226278 -0:The maximum resident set size (KB) = 809044 +0:The total amount of wall time = 479.520762 +0:The maximum resident set size (KB) = 570760 -Test 023 rap_control_debug PASS +Test 023 regional_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/hrrr_control_debug -Checking test 024 hrrr_control_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/rap_control_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/rap_control_debug +Checking test 024 rap_control_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 149.058383 -0:The maximum resident set size (KB) = 804892 +0:The total amount of wall time = 151.924868 +0:The maximum resident set size (KB) = 808552 -Test 024 hrrr_control_debug PASS +Test 024 rap_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rap_diag_debug -Checking test 025 rap_diag_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/hrrr_control_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/hrrr_control_debug +Checking test 025 hrrr_control_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 160.867929 -0:The maximum resident set size (KB) = 892120 +0:The total amount of wall time = 147.922840 +0:The maximum resident set size (KB) = 805400 -Test 025 rap_diag_debug PASS +Test 025 hrrr_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 026 rap_noah_sfcdiff_cires_ugwp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/rap_diag_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/rap_diag_debug +Checking test 026 rap_diag_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 242.720910 -0:The maximum resident set size (KB) = 807588 +0:The total amount of wall time = 158.945983 +0:The maximum resident set size (KB) = 891324 -Test 026 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 026 rap_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_progcld_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rap_progcld_thompson_debug -Checking test 027 rap_progcld_thompson_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 027 rap_noah_sfcdiff_cires_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 151.315733 -0:The maximum resident set size (KB) = 808884 +0:The total amount of wall time = 238.821340 +0:The maximum resident set size (KB) = 807276 -Test 027 rap_progcld_thompson_debug PASS +Test 027 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_v1beta_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rrfs_v1beta_debug -Checking test 028 rrfs_v1beta_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/rap_progcld_thompson_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/rap_progcld_thompson_debug +Checking test 028 rap_progcld_thompson_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 150.240482 -0:The maximum resident set size (KB) = 804280 +0:The total amount of wall time = 150.235395 +0:The maximum resident set size (KB) = 808660 -Test 028 rrfs_v1beta_debug PASS +Test 028 rap_progcld_thompson_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/control_ras_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/control_ras_debug -Checking test 029 control_ras_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/rrfs_v1beta_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/rrfs_v1beta_debug +Checking test 029 rrfs_v1beta_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 86.796381 -0:The maximum resident set size (KB) = 449956 +0:The total amount of wall time = 149.530430 +0:The maximum resident set size (KB) = 804192 -Test 029 control_ras_debug PASS +Test 029 rrfs_v1beta_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/control_stochy_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/control_stochy_debug -Checking test 030 control_stochy_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/control_ras_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/control_ras_debug +Checking test 030 control_ras_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 93.904616 -0:The maximum resident set size (KB) = 441828 +0:The total amount of wall time = 85.909266 +0:The maximum resident set size (KB) = 449252 -Test 030 control_stochy_debug PASS +Test 030 control_ras_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/control_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/control_debug_p8 -Checking test 031 control_debug_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/control_stochy_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/control_stochy_debug +Checking test 031 control_stochy_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 97.434149 -0:The maximum resident set size (KB) = 1225136 +0:The total amount of wall time = 93.905845 +0:The maximum resident set size (KB) = 441544 -Test 031 control_debug_p8 PASS +Test 031 control_stochy_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rrfs_smoke_conus13km_hrrr_warm_debug -Checking test 032 rrfs_smoke_conus13km_hrrr_warm_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/control_debug_p8 +working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/control_debug_p8 +Checking test 032 control_debug_p8 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 444.438416 -0:The maximum resident set size (KB) = 644776 +0:The total amount of wall time = 96.512682 +0:The maximum resident set size (KB) = 1224120 -Test 032 rrfs_smoke_conus13km_hrrr_warm_debug PASS +Test 032 control_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rrfs_smoke_conus13km_hrrr_warm_debug_2threads -Checking test 033 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/rrfs_smoke_conus13km_hrrr_warm_debug +Checking test 033 rrfs_smoke_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 263.837556 -0:The maximum resident set size (KB) = 668980 +0:The total amount of wall time = 444.110266 +0:The maximum resident set size (KB) = 645028 -Test 033 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS +Test 033 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rrfs_conus13km_hrrr_warm_debug -Checking test 034 rrfs_conus13km_hrrr_warm_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +Checking test 034 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 403.213134 -0:The maximum resident set size (KB) = 623172 +0:The total amount of wall time = 262.640513 +0:The maximum resident set size (KB) = 668912 -Test 034 rrfs_conus13km_hrrr_warm_debug PASS +Test 034 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/control_wam_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/control_wam_debug -Checking test 035 control_wam_debug results .... - Comparing sfcf019.nc ............ALT CHECK......OK - Comparing atmf019.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/rrfs_conus13km_hrrr_warm_debugs +working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/rrfs_conus13km_hrrr_warm_debug +Checking test 035 rrfs_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 144.760189 -0:The maximum resident set size (KB) = 185492 +0:The total amount of wall time = 400.323757 +0:The maximum resident set size (KB) = 623496 -Test 035 control_wam_debug PASS +Test 035 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rap_control_dyn32_phy32 -Checking test 036 rap_control_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/control_wam_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/control_wam_debug +Checking test 036 control_wam_debug results .... + Comparing sfcf019.nc .........OK + Comparing atmf019.nc .........OK + +0:The total amount of wall time = 146.150513 +0:The maximum resident set size (KB) = 185300 + +Test 036 control_wam_debug PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/rap_control_dyn32_phy32 +Checking test 037 rap_control_dyn32_phy32 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 @@ -1094,21 +1106,21 @@ Checking test 036 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 685.108563 -0:The maximum resident set size (KB) = 673060 +0:The total amount of wall time = 704.672868 +0:The maximum resident set size (KB) = 673260 -Test 036 rap_control_dyn32_phy32 PASS +Test 037 rap_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/hrrr_control_dyn32_phy32 -Checking test 037 hrrr_control_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/hrrr_control_dyn32_phy32 +Checking test 038 hrrr_control_dyn32_phy32 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 @@ -1148,21 +1160,21 @@ Checking test 037 hrrr_control_dyn32_phy32 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 = 347.661311 -0:The maximum resident set size (KB) = 671584 +0:The total amount of wall time = 354.745069 +0:The maximum resident set size (KB) = 671200 -Test 037 hrrr_control_dyn32_phy32 PASS +Test 038 hrrr_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rap_2threads_dyn32_phy32 -Checking test 038 rap_2threads_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/rap_2threads_dyn32_phy32 +Checking test 039 rap_2threads_dyn32_phy32 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 @@ -1202,21 +1214,21 @@ Checking test 038 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 630.560091 -0:The maximum resident set size (KB) = 719484 +0:The total amount of wall time = 638.337417 +0:The maximum resident set size (KB) = 719960 -Test 038 rap_2threads_dyn32_phy32 PASS +Test 039 rap_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/hrrr_control_2threads_dyn32_phy32 -Checking test 039 hrrr_control_2threads_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/hrrr_control_2threads_dyn32_phy32 +Checking test 040 hrrr_control_2threads_dyn32_phy32 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 @@ -1256,21 +1268,21 @@ Checking test 039 hrrr_control_2threads_dyn32_phy32 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 = 313.855677 -0:The maximum resident set size (KB) = 716600 +0:The total amount of wall time = 318.047926 +0:The maximum resident set size (KB) = 717204 -Test 039 hrrr_control_2threads_dyn32_phy32 PASS +Test 040 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/hrrr_control_decomp_dyn32_phy32 -Checking test 040 hrrr_control_decomp_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/hrrr_control_decomp_dyn32_phy32 +Checking test 041 hrrr_control_decomp_dyn32_phy32 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 @@ -1310,17 +1322,17 @@ Checking test 040 hrrr_control_decomp_dyn32_phy32 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 = 348.037317 -0:The maximum resident set size (KB) = 670480 +0:The total amount of wall time = 354.669353 +0:The maximum resident set size (KB) = 670384 -Test 040 hrrr_control_decomp_dyn32_phy32 PASS +Test 041 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rap_restart_dyn32_phy32 -Checking test 041 rap_restart_dyn32_phy32 results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/rap_restart_dyn32_phy32 +Checking test 042 rap_restart_dyn32_phy32 results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -1356,17 +1368,17 @@ Checking test 041 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 510.943921 -0:The maximum resident set size (KB) = 511124 +0:The total amount of wall time = 518.943713 +0:The maximum resident set size (KB) = 511336 -Test 041 rap_restart_dyn32_phy32 PASS +Test 042 rap_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/hrrr_control_restart_dyn32_phy32 -Checking test 042 hrrr_control_restart_dyn32_phy32 results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/hrrr_control_restart_dyn32_phy32 +Checking test 043 hrrr_control_restart_dyn32_phy32 results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.180000.coupler.res .........OK @@ -1402,21 +1414,21 @@ Checking test 042 hrrr_control_restart_dyn32_phy32 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 = 176.555672 -0:The maximum resident set size (KB) = 506828 +0:The total amount of wall time = 179.135052 +0:The maximum resident set size (KB) = 507484 -Test 042 hrrr_control_restart_dyn32_phy32 PASS +Test 043 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rap_control_dyn64_phy32 -Checking test 043 rap_control_dyn64_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/rap_control_dyn64_phy32 +working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/rap_control_dyn64_phy32 +Checking test 044 rap_control_dyn64_phy32 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 @@ -1456,57 +1468,57 @@ Checking test 043 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 406.943412 -0:The maximum resident set size (KB) = 692896 +0:The total amount of wall time = 413.352836 +0:The maximum resident set size (KB) = 692720 -Test 043 rap_control_dyn64_phy32 PASS +Test 044 rap_control_dyn64_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rap_control_debug_dyn32_phy32 -Checking test 044 rap_control_debug_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/rap_control_debug_dyn32_phy32 +Checking test 045 rap_control_debug_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 149.966784 -0:The maximum resident set size (KB) = 690900 +0:The total amount of wall time = 149.960472 +0:The maximum resident set size (KB) = 691188 -Test 044 rap_control_debug_dyn32_phy32 PASS +Test 045 rap_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/hrrr_control_debug_dyn32_phy32 -Checking test 045 hrrr_control_debug_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/hrrr_control_debug_dyn32_phy32 +Checking test 046 hrrr_control_debug_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 146.578422 -0:The maximum resident set size (KB) = 687984 +0:The total amount of wall time = 147.279376 +0:The maximum resident set size (KB) = 688080 -Test 045 hrrr_control_debug_dyn32_phy32 PASS +Test 046 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/rap_control_dyn64_phy32_debug -Checking test 046 rap_control_dyn64_phy32_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/rap_control_debug_dyn64_phy32 +working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/rap_control_dyn64_phy32_debug +Checking test 047 rap_control_dyn64_phy32_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 154.447576 -0:The maximum resident set size (KB) = 711284 +0:The total amount of wall time = 155.008488 +0:The maximum resident set size (KB) = 710612 -Test 046 rap_control_dyn64_phy32_debug PASS +Test 047 rap_control_dyn64_phy32_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/cpld_control_p8 -Checking test 047 cpld_control_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/cpld_control_p8 +working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/cpld_control_p8 +Checking test 048 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1570,15 +1582,15 @@ Checking test 047 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 501.132211 -0:The maximum resident set size (KB) = 3159988 +0:The total amount of wall time = 498.603226 +0:The maximum resident set size (KB) = 3164172 -Test 047 cpld_control_p8 PASS +Test 048 cpld_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/cpld_control_nowave_noaero_p8 -Checking test 048 cpld_control_nowave_noaero_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/cpld_control_c96_noaero_p8 +working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/cpld_control_nowave_noaero_p8 +Checking test 049 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1639,15 +1651,15 @@ Checking test 048 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 252.392150 -0:The maximum resident set size (KB) = 1240620 +0:The total amount of wall time = 249.743402 +0:The maximum resident set size (KB) = 1240204 -Test 048 cpld_control_nowave_noaero_p8 PASS +Test 049 cpld_control_nowave_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/cpld_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/cpld_debug_p8 -Checking test 049 cpld_debug_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/cpld_debug_p8 +working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/cpld_debug_p8 +Checking test 050 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -1699,25 +1711,25 @@ Checking test 049 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 278.275011 -0:The maximum resident set size (KB) = 3178212 +0:The total amount of wall time = 275.756962 +0:The maximum resident set size (KB) = 3178504 -Test 049 cpld_debug_p8 PASS +Test 050 cpld_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/GNU/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_36756/datm_cdeps_control_cfsr -Checking test 050 datm_cdeps_control_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/datm_cdeps_control_cfsr +working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/datm_cdeps_control_cfsr +Checking test 051 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 179.512443 -0:The maximum resident set size (KB) = 671564 +0:The total amount of wall time = 178.759957 +0:The maximum resident set size (KB) = 669460 -Test 050 datm_cdeps_control_cfsr PASS +Test 051 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Tue Mar 28 15:45:28 MDT 2023 -Elapsed time: 00h:36m:59s. Have a nice day! +Thu Mar 30 12:13:55 MDT 2023 +Elapsed time: 00h:33m:14s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index d15a94735c2..4a3a1eac626 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,42 +1,42 @@ -Tue Mar 28 14:53:23 MDT 2023 +Thu Mar 30 14:08:45 MDT 2023 Start Regression test -Compile 001 elapsed time 1449 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 1434 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 1363 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 456 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 393 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 1092 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 1083 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 1688 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 1065 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 972 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 011 elapsed time 930 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 811 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 1269 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 405 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 262 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 831 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 839 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 272 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 270 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 1119 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 021 elapsed time 351 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 1575 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 1092 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 024 elapsed time 428 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 199 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 435 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 109 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 941 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 977 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 892 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 877 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 294 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 1036 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8_mixedmode -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/cpld_control_p8_mixedmode +Compile 001 elapsed time 1506 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1525 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 1377 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 468 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 409 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 1117 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 1094 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 1782 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 1075 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 993 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 011 elapsed time 935 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 800 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 1306 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 407 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 277 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 827 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 844 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 275 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 278 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 1129 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 021 elapsed time 337 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 1574 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 1118 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 024 elapsed time 425 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 201 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 425 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 105 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 944 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 986 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 907 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 876 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 310 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 1031 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8_mixedmode +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -101,14 +101,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 316.226526 -0:The maximum resident set size (KB) = 2699188 +0:The total amount of wall time = 320.874772 +0:The maximum resident set size (KB) = 2699984 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_gfsv17 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/cpld_control_gfsv17 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_gfsv17 +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -172,33 +172,33 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 283.958802 -0:The maximum resident set size (KB) = 1438708 +0:The total amount of wall time = 282.516362 +0:The maximum resident set size (KB) = 1438760 Test 002 cpld_control_gfsv17 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/cpld_control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/cpld_control_p8 Checking test 003 cpld_control_p8 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 sfcf021.tile1.nc ............ALT CHECK......OK + Comparing sfcf021.tile2.nc ............ALT CHECK......OK + Comparing sfcf021.tile3.nc ............ALT CHECK......OK + Comparing sfcf021.tile4.nc ............ALT CHECK......OK + Comparing sfcf021.tile5.nc ............ALT CHECK......OK + Comparing sfcf021.tile6.nc ............ALT CHECK......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 sfcf024.tile1.nc ............ALT CHECK......OK + Comparing sfcf024.tile2.nc ............ALT CHECK......OK + Comparing sfcf024.tile3.nc ............ALT CHECK......OK + Comparing sfcf024.tile4.nc ............ALT CHECK......OK + Comparing sfcf024.tile5.nc ............ALT CHECK......OK + Comparing sfcf024.tile6.nc ............ALT CHECK......OK Comparing atmf024.tile1.nc .........OK Comparing atmf024.tile2.nc .........OK Comparing atmf024.tile3.nc .........OK @@ -244,21 +244,21 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 327.253865 -0:The maximum resident set size (KB) = 2716876 +0:The total amount of wall time = 322.996332 +0:The maximum resident set size (KB) = 2716548 Test 003 cpld_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/cpld_restart_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK + Comparing sfcf024.tile1.nc ............ALT CHECK......OK + Comparing sfcf024.tile2.nc ............ALT CHECK......OK + Comparing sfcf024.tile3.nc ............ALT CHECK......OK + Comparing sfcf024.tile4.nc ............ALT CHECK......OK + Comparing sfcf024.tile5.nc ............ALT CHECK......OK + Comparing sfcf024.tile6.nc ............ALT CHECK......OK Comparing atmf024.tile1.nc .........OK Comparing atmf024.tile2.nc .........OK Comparing atmf024.tile3.nc .........OK @@ -304,33 +304,33 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 188.388181 -0:The maximum resident set size (KB) = 2578200 +0:The total amount of wall time = 187.296031 +0:The maximum resident set size (KB) = 2577996 Test 004 cpld_restart_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/cpld_control_qr_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 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 sfcf021.tile1.nc ............ALT CHECK......OK + Comparing sfcf021.tile2.nc ............ALT CHECK......OK + Comparing sfcf021.tile3.nc ............ALT CHECK......OK + Comparing sfcf021.tile4.nc ............ALT CHECK......OK + Comparing sfcf021.tile5.nc ............ALT CHECK......OK + Comparing sfcf021.tile6.nc ............ALT CHECK......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 sfcf024.tile1.nc ............ALT CHECK......OK + Comparing sfcf024.tile2.nc ............ALT CHECK......OK + Comparing sfcf024.tile3.nc ............ALT CHECK......OK + Comparing sfcf024.tile4.nc ............ALT CHECK......OK + Comparing sfcf024.tile5.nc ............ALT CHECK......OK + Comparing sfcf024.tile6.nc ............ALT CHECK......OK Comparing atmf024.tile1.nc .........OK Comparing atmf024.tile2.nc .........OK Comparing atmf024.tile3.nc .........OK @@ -376,21 +376,21 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 331.751553 -0:The maximum resident set size (KB) = 2720880 +0:The total amount of wall time = 329.465301 +0:The maximum resident set size (KB) = 2721044 Test 005 cpld_control_qr_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/cpld_restart_qr_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK + Comparing sfcf024.tile1.nc ............ALT CHECK......OK + Comparing sfcf024.tile2.nc ............ALT CHECK......OK + Comparing sfcf024.tile3.nc ............ALT CHECK......OK + Comparing sfcf024.tile4.nc ............ALT CHECK......OK + Comparing sfcf024.tile5.nc ............ALT CHECK......OK + Comparing sfcf024.tile6.nc ............ALT CHECK......OK Comparing atmf024.tile1.nc .........OK Comparing atmf024.tile2.nc .........OK Comparing atmf024.tile3.nc .........OK @@ -436,21 +436,21 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 202.907386 -0:The maximum resident set size (KB) = 2595024 +0:The total amount of wall time = 203.808624 +0:The maximum resident set size (KB) = 2594696 Test 006 cpld_restart_qr_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/cpld_2threads_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK + Comparing sfcf024.tile1.nc ............ALT CHECK......OK + Comparing sfcf024.tile2.nc ............ALT CHECK......OK + Comparing sfcf024.tile3.nc ............ALT CHECK......OK + Comparing sfcf024.tile4.nc ............ALT CHECK......OK + Comparing sfcf024.tile5.nc ............ALT CHECK......OK + Comparing sfcf024.tile6.nc ............ALT CHECK......OK Comparing atmf024.tile1.nc .........OK Comparing atmf024.tile2.nc .........OK Comparing atmf024.tile3.nc .........OK @@ -496,21 +496,21 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 258.153702 -0:The maximum resident set size (KB) = 3177944 +0:The total amount of wall time = 254.427509 +0:The maximum resident set size (KB) = 3177776 Test 007 cpld_2threads_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/cpld_decomp_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK + Comparing sfcf024.tile1.nc ............ALT CHECK......OK + Comparing sfcf024.tile2.nc ............ALT CHECK......OK + Comparing sfcf024.tile3.nc ............ALT CHECK......OK + Comparing sfcf024.tile4.nc ............ALT CHECK......OK + Comparing sfcf024.tile5.nc ............ALT CHECK......OK + Comparing sfcf024.tile6.nc ............ALT CHECK......OK Comparing atmf024.tile1.nc .........OK Comparing atmf024.tile2.nc .........OK Comparing atmf024.tile3.nc .........OK @@ -556,21 +556,21 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 325.384238 -0:The maximum resident set size (KB) = 2721116 +0:The total amount of wall time = 314.092757 +0:The maximum resident set size (KB) = 2721724 Test 008 cpld_decomp_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/cpld_mpi_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK + Comparing sfcf024.tile1.nc ............ALT CHECK......OK + Comparing sfcf024.tile2.nc ............ALT CHECK......OK + Comparing sfcf024.tile3.nc ............ALT CHECK......OK + Comparing sfcf024.tile4.nc ............ALT CHECK......OK + Comparing sfcf024.tile5.nc ............ALT CHECK......OK + Comparing sfcf024.tile6.nc ............ALT CHECK......OK Comparing atmf024.tile1.nc .........OK Comparing atmf024.tile2.nc .........OK Comparing atmf024.tile3.nc .........OK @@ -616,14 +616,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 284.034291 -0:The maximum resident set size (KB) = 2681244 +0:The total amount of wall time = 277.838630 +0:The maximum resident set size (KB) = 2681612 Test 009 cpld_mpi_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_ciceC_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/cpld_control_ciceC_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_ciceC_p8 +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -688,21 +688,21 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 325.845385 -0:The maximum resident set size (KB) = 2716548 +0:The total amount of wall time = 323.252828 +0:The maximum resident set size (KB) = 2716880 Test 010 cpld_control_ciceC_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/cpld_control_c192_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_c192_p8 +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/cpld_control_c192_p8 Checking test 011 cpld_control_c192_p8 results .... - Comparing sfcf030.tile1.nc .........OK - Comparing sfcf030.tile2.nc .........OK - Comparing sfcf030.tile3.nc .........OK - Comparing sfcf030.tile4.nc .........OK - Comparing sfcf030.tile5.nc .........OK - Comparing sfcf030.tile6.nc .........OK + Comparing sfcf030.tile1.nc ............ALT CHECK......OK + Comparing sfcf030.tile2.nc ............ALT CHECK......OK + Comparing sfcf030.tile3.nc ............ALT CHECK......OK + Comparing sfcf030.tile4.nc ............ALT CHECK......OK + Comparing sfcf030.tile5.nc ............ALT CHECK......OK + Comparing sfcf030.tile6.nc ............ALT CHECK......OK Comparing atmf030.tile1.nc .........OK Comparing atmf030.tile2.nc .........OK Comparing atmf030.tile3.nc .........OK @@ -748,21 +748,21 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -0:The total amount of wall time = 629.339678 -0:The maximum resident set size (KB) = 3351528 +0:The total amount of wall time = 632.857578 +0:The maximum resident set size (KB) = 3351948 Test 011 cpld_control_c192_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/cpld_restart_c192_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_c192_p8 +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/cpld_restart_c192_p8 Checking test 012 cpld_restart_c192_p8 results .... - Comparing sfcf030.tile1.nc .........OK - Comparing sfcf030.tile2.nc .........OK - Comparing sfcf030.tile3.nc .........OK - Comparing sfcf030.tile4.nc .........OK - Comparing sfcf030.tile5.nc .........OK - Comparing sfcf030.tile6.nc .........OK + Comparing sfcf030.tile1.nc ............ALT CHECK......OK + Comparing sfcf030.tile2.nc ............ALT CHECK......OK + Comparing sfcf030.tile3.nc ............ALT CHECK......OK + Comparing sfcf030.tile4.nc ............ALT CHECK......OK + Comparing sfcf030.tile5.nc ............ALT CHECK......OK + Comparing sfcf030.tile6.nc ............ALT CHECK......OK Comparing atmf030.tile1.nc .........OK Comparing atmf030.tile2.nc .........OK Comparing atmf030.tile3.nc .........OK @@ -808,14 +808,14 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -0:The total amount of wall time = 390.394911 -0:The maximum resident set size (KB) = 3276084 +0:The total amount of wall time = 392.401011 +0:The maximum resident set size (KB) = 3276796 Test 012 cpld_restart_c192_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/cpld_control_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_noaero_p8 +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/cpld_control_noaero_p8 Checking test 013 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -879,14 +879,14 @@ Checking test 013 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 298.755764 -0:The maximum resident set size (KB) = 1436520 +0:The total amount of wall time = 295.533673 +0:The maximum resident set size (KB) = 1436912 Test 013 cpld_control_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/cpld_control_nowave_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_c96_noaero_p8 +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/cpld_control_nowave_noaero_p8 Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -948,14 +948,14 @@ Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 196.314722 -0:The maximum resident set size (KB) = 1452496 +0:The total amount of wall time = 196.511646 +0:The maximum resident set size (KB) = 1453328 Test 014 cpld_control_nowave_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/cpld_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_debug_p8 +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/cpld_debug_p8 Checking test 015 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1008,14 +1008,14 @@ Checking test 015 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 482.326840 -0:The maximum resident set size (KB) = 2787956 +0:The total amount of wall time = 474.086141 +0:The maximum resident set size (KB) = 2787784 Test 015 cpld_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_debug_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/cpld_debug_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_debug_noaero_p8 +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/cpld_debug_noaero_p8 Checking test 016 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1067,14 +1067,14 @@ Checking test 016 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 352.314611 -0:The maximum resident set size (KB) = 1460532 +0:The total amount of wall time = 349.061686 +0:The maximum resident set size (KB) = 1461552 Test 016 cpld_debug_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_noaero_p8_agrid -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/cpld_control_noaero_p8_agrid +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_noaero_p8_agrid +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/cpld_control_noaero_p8_agrid Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1136,21 +1136,21 @@ Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 264.967496 -0:The maximum resident set size (KB) = 1456164 +0:The total amount of wall time = 255.699194 +0:The maximum resident set size (KB) = 1456892 Test 017 cpld_control_noaero_p8_agrid PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/cpld_control_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_c48 +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/cpld_control_c48 Checking test 018 cpld_control_c48 results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK + Comparing sfcf024.tile1.nc ............ALT CHECK......OK + Comparing sfcf024.tile2.nc ............ALT CHECK......OK + Comparing sfcf024.tile3.nc ............ALT CHECK......OK + Comparing sfcf024.tile4.nc ............ALT CHECK......OK + Comparing sfcf024.tile5.nc ............ALT CHECK......OK + Comparing sfcf024.tile6.nc ............ALT CHECK......OK Comparing atmf024.tile1.nc .........OK Comparing atmf024.tile2.nc .........OK Comparing atmf024.tile3.nc .........OK @@ -1193,14 +1193,14 @@ Checking test 018 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 601.604193 -0:The maximum resident set size (KB) = 2583460 +0:The total amount of wall time = 606.982728 +0:The maximum resident set size (KB) = 2586064 Test 018 cpld_control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/cpld_warmstart_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_warmstart_c48 +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/cpld_warmstart_c48 Checking test 019 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1250,14 +1250,14 @@ Checking test 019 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -0:The total amount of wall time = 161.026817 -0:The maximum resident set size (KB) = 2600960 +0:The total amount of wall time = 164.261557 +0:The maximum resident set size (KB) = 2601616 Test 019 cpld_warmstart_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/cpld_restart_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_warmstart_c48 +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/cpld_restart_c48 Checking test 020 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1307,14 +1307,14 @@ Checking test 020 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -0:The total amount of wall time = 84.881532 -0:The maximum resident set size (KB) = 2017432 +0:The total amount of wall time = 84.597038 +0:The maximum resident set size (KB) = 2018844 Test 020 cpld_restart_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_CubedSphereGrid +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_CubedSphereGrid +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_CubedSphereGrid Checking test 021 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1341,69 +1341,69 @@ Checking test 021 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -0:The total amount of wall time = 142.982033 -0:The maximum resident set size (KB) = 453584 +0:The total amount of wall time = 142.611586 +0:The maximum resident set size (KB) = 454256 Test 021 control_CubedSphereGrid PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid_parallel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_CubedSphereGrid_parallel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_CubedSphereGrid_parallel +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_CubedSphereGrid_parallel Checking test 022 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK -0:The total amount of wall time = 142.017359 -0:The maximum resident set size (KB) = 453548 +0:The total amount of wall time = 137.084478 +0:The maximum resident set size (KB) = 454240 Test 022 control_CubedSphereGrid_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_latlon -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_latlon +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_latlon +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_latlon Checking test 023 control_latlon results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 146.951273 -0:The maximum resident set size (KB) = 453872 +0:The total amount of wall time = 146.903803 +0:The maximum resident set size (KB) = 454304 Test 023 control_latlon PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wrtGauss_netcdf_parallel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_wrtGauss_netcdf_parallel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_wrtGauss_netcdf_parallel +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_wrtGauss_netcdf_parallel Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 149.057799 -0:The maximum resident set size (KB) = 453936 +0:The total amount of wall time = 149.945775 +0:The maximum resident set size (KB) = 454408 Test 024 control_wrtGauss_netcdf_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_c48 +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_c48 Checking test 025 control_c48 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -1437,55 +1437,55 @@ Checking test 025 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 449.775635 -0:The maximum resident set size (KB) = 627924 +0:The total amount of wall time = 442.990812 +0:The maximum resident set size (KB) = 633528 Test 025 control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c192 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_c192 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_c192 +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_c192 Checking test 026 control_c192 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 596.848081 -0:The maximum resident set size (KB) = 557672 +0:The total amount of wall time = 598.721090 +0:The maximum resident set size (KB) = 560360 Test 026 control_c192 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c384 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_c384 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_c384 +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_c384 Checking test 027 control_c384 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 587.518195 -0:The maximum resident set size (KB) = 897924 +0:The total amount of wall time = 588.149210 +0:The maximum resident set size (KB) = 899540 Test 027 control_c384 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c384gdas -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_c384gdas +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_c384gdas +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_c384gdas Checking test 028 control_c384gdas results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf006.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF06 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -1523,71 +1523,71 @@ Checking test 028 control_c384gdas 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 = 529.002144 -0:The maximum resident set size (KB) = 1024280 +0:The total amount of wall time = 509.590494 +0:The maximum resident set size (KB) = 1026968 Test 028 control_c384gdas PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_stochy +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_stochy +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_stochy Checking test 029 control_stochy results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 98.352542 -0:The maximum resident set size (KB) = 455676 +0:The total amount of wall time = 98.223240 +0:The maximum resident set size (KB) = 459220 Test 029 control_stochy PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_stochy_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_stochy +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_stochy_restart Checking test 030 control_stochy_restart results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 53.424906 -0:The maximum resident set size (KB) = 226448 +0:The total amount of wall time = 52.905909 +0:The maximum resident set size (KB) = 226536 Test 030 control_stochy_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_lndp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_lndp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_lndp +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_lndp Checking test 031 control_lndp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 91.136029 -0:The maximum resident set size (KB) = 456624 +0:The total amount of wall time = 91.361108 +0:The maximum resident set size (KB) = 458220 Test 031 control_lndp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_iovr4 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_iovr4 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_iovr4 +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_iovr4 Checking test 032 control_iovr4 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1595,21 +1595,21 @@ Checking test 032 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 149.495526 -0:The maximum resident set size (KB) = 454000 +0:The total amount of wall time = 148.139340 +0:The maximum resident set size (KB) = 454232 Test 032 control_iovr4 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_iovr5 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_iovr5 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_iovr5 +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_iovr5 Checking test 033 control_iovr5 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1617,21 +1617,21 @@ Checking test 033 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 148.443685 -0:The maximum resident set size (KB) = 453900 +0:The total amount of wall time = 149.097879 +0:The maximum resident set size (KB) = 454252 Test 033 control_iovr5 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_p8 Checking test 034 control_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1671,17 +1671,17 @@ Checking test 034 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 183.500171 -0:The maximum resident set size (KB) = 1423180 +0:The total amount of wall time = 176.252630 +0:The maximum resident set size (KB) = 1423892 Test 034 control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_restart_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_restart_p8 Checking test 035 control_restart_p8 results .... - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -1717,21 +1717,21 @@ Checking test 035 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 94.494093 -0:The maximum resident set size (KB) = 582524 +0:The total amount of wall time = 93.674833 +0:The maximum resident set size (KB) = 582884 Test 035 control_restart_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_qr_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_qr_p8 Checking test 036 control_qr_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1771,17 +1771,17 @@ Checking test 036 control_qr_p8 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 = 182.309390 -0:The maximum resident set size (KB) = 1427140 +0:The total amount of wall time = 182.384199 +0:The maximum resident set size (KB) = 1427264 Test 036 control_qr_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_restart_qr_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_restart_qr_p8 Checking test 037 control_restart_qr_p8 results .... - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -1817,19 +1817,19 @@ Checking test 037 control_restart_qr_p8 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 = 97.533596 -0:The maximum resident set size (KB) = 596076 +0:The total amount of wall time = 98.815129 +0:The maximum resident set size (KB) = 596808 Test 037 control_restart_qr_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_decomp_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_decomp_p8 Checking test 038 control_decomp_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing 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 @@ -1867,19 +1867,19 @@ Checking test 038 control_decomp_p8 results .... Comparing 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.031365 -0:The maximum resident set size (KB) = 1417964 +0:The total amount of wall time = 187.112863 +0:The maximum resident set size (KB) = 1418420 Test 038 control_decomp_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_2threads_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_2threads_p8 Checking test 039 control_2threads_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing 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 @@ -1917,23 +1917,23 @@ Checking test 039 control_2threads_p8 results .... Comparing 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.893880 -0:The maximum resident set size (KB) = 1508772 +0:The total amount of wall time = 166.797801 +0:The maximum resident set size (KB) = 1508660 Test 039 control_2threads_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_lndp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_p8_lndp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8_lndp +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_p8_lndp Checking test 040 control_p8_lndp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing sfcf048.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK - Comparing atmf048.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing sfcf048.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing atmf048.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1943,21 +1943,21 @@ Checking test 040 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -0:The total amount of wall time = 337.048074 -0:The maximum resident set size (KB) = 1423352 +0:The total amount of wall time = 337.275015 +0:The maximum resident set size (KB) = 1424940 Test 040 control_p8_lndp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_rrtmgp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_p8_rrtmgp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8_rrtmgp +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_p8_rrtmgp Checking test 041 control_p8_rrtmgp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1997,21 +1997,21 @@ Checking test 041 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 256.394235 -0:The maximum resident set size (KB) = 1481664 +0:The total amount of wall time = 255.053618 +0:The maximum resident set size (KB) = 1480244 Test 041 control_p8_rrtmgp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_mynn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_p8_mynn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8_mynn +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_p8_mynn Checking test 042 control_p8_mynn results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2051,21 +2051,21 @@ Checking test 042 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 186.457468 -0:The maximum resident set size (KB) = 1428076 +0:The total amount of wall time = 187.447201 +0:The maximum resident set size (KB) = 1427928 Test 042 control_p8_mynn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/merra2_thompson -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/merra2_thompson +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/merra2_thompson +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/merra2_thompson Checking test 043 merra2_thompson results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2105,114 +2105,114 @@ Checking test 043 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 208.656415 -0:The maximum resident set size (KB) = 1429284 +0:The total amount of wall time = 206.770023 +0:The maximum resident set size (KB) = 1429664 Test 043 merra2_thompson PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/regional_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/regional_control Checking test 044 regional_control results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 342.756038 -0:The maximum resident set size (KB) = 604072 +0:The total amount of wall time = 342.752075 +0:The maximum resident set size (KB) = 604832 Test 044 regional_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/regional_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/regional_restart Checking test 045 regional_restart results .... - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf006.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 170.071161 -0:The maximum resident set size (KB) = 593776 +0:The total amount of wall time = 175.711329 +0:The maximum resident set size (KB) = 594192 Test 045 regional_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/regional_control_qr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/regional_control_qr Checking test 046 regional_control_qr results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 331.533340 -0:The maximum resident set size (KB) = 604120 +0:The total amount of wall time = 329.436049 +0:The maximum resident set size (KB) = 604836 Test 046 regional_control_qr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/regional_restart_qr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/regional_restart_qr Checking test 047 regional_restart_qr results .... - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf006.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 174.519379 -0:The maximum resident set size (KB) = 593772 +0:The total amount of wall time = 173.629667 +0:The maximum resident set size (KB) = 594148 Test 047 regional_restart_qr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/regional_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/regional_decomp Checking test 048 regional_decomp results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 357.952895 -0:The maximum resident set size (KB) = 597360 +0:The total amount of wall time = 349.749635 +0:The maximum resident set size (KB) = 598184 Test 048 regional_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/regional_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/regional_2threads Checking test 049 regional_2threads results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 204.432190 -0:The maximum resident set size (KB) = 610616 +0:The total amount of wall time = 203.247846 +0:The maximum resident set size (KB) = 611512 Test 049 regional_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_noquilt -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/regional_noquilt +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_noquilt +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/regional_noquilt Checking test 050 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2220,71 +2220,71 @@ Checking test 050 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -0:The total amount of wall time = 366.457899 -0:The maximum resident set size (KB) = 598536 +0:The total amount of wall time = 365.303939 +0:The maximum resident set size (KB) = 599616 Test 050 regional_noquilt PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_netcdf_parallel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/regional_netcdf_parallel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_netcdf_parallel +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/regional_netcdf_parallel Checking test 051 regional_netcdf_parallel results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing phyf006.nc .........OK -0:The total amount of wall time = 339.144912 -0:The maximum resident set size (KB) = 596060 +0:The total amount of wall time = 326.385068 +0:The maximum resident set size (KB) = 596692 Test 051 regional_netcdf_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/regional_2dwrtdecomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/regional_2dwrtdecomp Checking test 052 regional_2dwrtdecomp results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 342.035016 -0:The maximum resident set size (KB) = 604072 +0:The total amount of wall time = 340.669174 +0:The maximum resident set size (KB) = 604820 Test 052 regional_2dwrtdecomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/fv3_regional_wofs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/regional_wofs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/fv3_regional_wofs +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/regional_wofs Checking test 053 regional_wofs results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 436.474334 -0:The maximum resident set size (KB) = 275216 +0:The total amount of wall time = 426.878328 +0:The maximum resident set size (KB) = 275888 Test 053 regional_wofs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rap_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/rap_control Checking test 054 rap_control results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2324,39 +2324,39 @@ Checking test 054 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 480.823237 -0:The maximum resident set size (KB) = 824636 +0:The total amount of wall time = 481.311218 +0:The maximum resident set size (KB) = 823460 Test 054 rap_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_spp_sppt_shum_skeb -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/regional_spp_sppt_shum_skeb +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_spp_sppt_shum_skeb +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/regional_spp_sppt_shum_skeb Checking test 055 regional_spp_sppt_shum_skeb results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf001.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf001.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF01 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 260.436289 -0:The maximum resident set size (KB) = 951796 +0:The total amount of wall time = 262.045254 +0:The maximum resident set size (KB) = 952328 Test 055 regional_spp_sppt_shum_skeb PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rap_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/rap_decomp Checking test 056 rap_decomp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2396,21 +2396,21 @@ Checking test 056 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 500.687987 -0:The maximum resident set size (KB) = 823116 +0:The total amount of wall time = 512.380863 +0:The maximum resident set size (KB) = 822412 Test 056 rap_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rap_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/rap_2threads Checking test 057 rap_2threads results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2450,17 +2450,17 @@ Checking test 057 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 460.499034 -0:The maximum resident set size (KB) = 893844 +0:The total amount of wall time = 458.743033 +0:The maximum resident set size (KB) = 893500 Test 057 rap_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rap_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/rap_restart Checking test 058 rap_restart results .... - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -2496,21 +2496,21 @@ Checking test 058 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 242.279692 -0:The maximum resident set size (KB) = 572816 +0:The total amount of wall time = 241.882247 +0:The maximum resident set size (KB) = 571200 Test 058 rap_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rap_sfcdiff +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_sfcdiff +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/rap_sfcdiff Checking test 059 rap_sfcdiff results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + 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 @@ -2550,21 +2550,21 @@ Checking test 059 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 478.719194 -0:The maximum resident set size (KB) = 824568 +0:The total amount of wall time = 481.975954 +0:The maximum resident set size (KB) = 823372 Test 059 rap_sfcdiff PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rap_sfcdiff_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_sfcdiff +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/rap_sfcdiff_decomp Checking test 060 rap_sfcdiff_decomp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + 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 @@ -2604,17 +2604,17 @@ Checking test 060 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 503.324721 -0:The maximum resident set size (KB) = 825740 +0:The total amount of wall time = 505.330190 +0:The maximum resident set size (KB) = 822252 Test 060 rap_sfcdiff_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rap_sfcdiff_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_sfcdiff +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/rap_sfcdiff_restart Checking test 061 rap_sfcdiff_restart results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -2650,21 +2650,21 @@ Checking test 061 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 355.219123 -0:The maximum resident set size (KB) = 570688 +0:The total amount of wall time = 354.443574 +0:The maximum resident set size (KB) = 570788 Test 061 rap_sfcdiff_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hrrr_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/hrrr_control Checking test 062 hrrr_control results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + 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 @@ -2704,21 +2704,21 @@ Checking test 062 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 462.529207 -0:The maximum resident set size (KB) = 821528 +0:The total amount of wall time = 461.637244 +0:The maximum resident set size (KB) = 820708 Test 062 hrrr_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hrrr_control_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/hrrr_control_decomp Checking test 063 hrrr_control_decomp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + 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 @@ -2758,21 +2758,21 @@ Checking test 063 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 481.898709 -0:The maximum resident set size (KB) = 821408 +0:The total amount of wall time = 483.207990 +0:The maximum resident set size (KB) = 820652 Test 063 hrrr_control_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hrrr_control_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/hrrr_control_2threads Checking test 064 hrrr_control_2threads results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + 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 @@ -2812,17 +2812,17 @@ Checking test 064 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 434.680462 -0:The maximum resident set size (KB) = 884352 +0:The total amount of wall time = 438.631980 +0:The maximum resident set size (KB) = 888376 Test 064 hrrr_control_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hrrr_control_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/hrrr_control_restart Checking test 065 hrrr_control_restart results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -2858,21 +2858,21 @@ Checking test 065 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 339.201979 -0:The maximum resident set size (KB) = 567904 +0:The total amount of wall time = 342.544075 +0:The maximum resident set size (KB) = 566324 Test 065 hrrr_control_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1beta -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rrfs_v1beta +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_v1beta +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/rrfs_v1beta Checking test 066 rrfs_v1beta results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + 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 @@ -2912,21 +2912,21 @@ Checking test 066 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 473.270358 -0:The maximum resident set size (KB) = 820144 +0:The total amount of wall time = 478.578537 +0:The maximum resident set size (KB) = 819332 Test 066 rrfs_v1beta PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1nssl -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rrfs_v1nssl +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_v1nssl +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/rrfs_v1nssl Checking test 067 rrfs_v1nssl results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + 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 @@ -2934,21 +2934,21 @@ Checking test 067 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 584.972626 -0:The maximum resident set size (KB) = 508612 +0:The total amount of wall time = 586.365531 +0:The maximum resident set size (KB) = 508784 Test 067 rrfs_v1nssl PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rrfs_v1nssl_nohailnoccn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/rrfs_v1nssl_nohailnoccn Checking test 068 rrfs_v1nssl_nohailnoccn results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + 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 @@ -2956,151 +2956,163 @@ Checking test 068 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 568.653721 -0:The maximum resident set size (KB) = 502416 +0:The total amount of wall time = 566.201075 +0:The maximum resident set size (KB) = 502500 Test 068 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/rrfs_smoke_conus13km_hrrr_warm Checking test 069 rrfs_smoke_conus13km_hrrr_warm results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing sfcf002.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - Comparing atmf002.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK -0:The total amount of wall time = 152.416035 -0:The maximum resident set size (KB) = 672456 +0:The total amount of wall time = 153.276340 +0:The maximum resident set size (KB) = 675352 Test 069 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 070 rrfs_smoke_conus13km_hrrr_warm_2threads results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing sfcf002.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - Comparing atmf002.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK -0:The total amount of wall time = 92.265461 -0:The maximum resident set size (KB) = 690444 +0:The total amount of wall time = 94.117393 +0:The maximum resident set size (KB) = 693992 Test 070 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rrfs_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/rrfs_conus13km_hrrr_warm Checking test 071 rrfs_conus13km_hrrr_warm results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing sfcf002.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - Comparing atmf002.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK -0:The total amount of wall time = 136.801842 -0:The maximum resident set size (KB) = 653400 +0:The total amount of wall time = 137.445112 +0:The maximum resident set size (KB) = 654084 Test 071 rrfs_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/rrfs_smoke_conus13km_radar_tten_warm Checking test 072 rrfs_smoke_conus13km_radar_tten_warm results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing sfcf002.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - Comparing atmf002.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK -0:The total amount of wall time = 153.452442 -0:The maximum resident set size (KB) = 674548 +0:The total amount of wall time = 154.116878 +0:The maximum resident set size (KB) = 677936 Test 072 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmg -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_csawmg -Checking test 073 control_csawmg results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/rrfs_conus13km_hrrr_warm_restart_mismatch +Checking test 073 rrfs_conus13km_hrrr_warm_restart_mismatch results .... + Comparing sfcf002.nc .........OK + Comparing atmf002.nc .........OK + +0:The total amount of wall time = 70.683122 +0:The maximum resident set size (KB) = 632208 + +Test 073 rrfs_conus13km_hrrr_warm_restart_mismatch PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_csawmg +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_csawmg +Checking test 074 control_csawmg results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 398.058751 -0:The maximum resident set size (KB) = 525872 +0:The total amount of wall time = 397.852152 +0:The maximum resident set size (KB) = 527728 -Test 073 control_csawmg PASS +Test 074 control_csawmg PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmgt -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_csawmgt -Checking test 074 control_csawmgt results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_csawmgt +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_csawmgt +Checking test 075 control_csawmgt results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 390.784502 -0:The maximum resident set size (KB) = 530004 +0:The total amount of wall time = 394.392928 +0:The maximum resident set size (KB) = 528340 -Test 074 control_csawmgt PASS +Test 075 control_csawmgt PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_ras -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_ras -Checking test 075 control_ras results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_ras +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_ras +Checking test 076 control_ras results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 206.091387 -0:The maximum resident set size (KB) = 487436 +0:The total amount of wall time = 206.650179 +0:The maximum resident set size (KB) = 491376 -Test 075 control_ras PASS +Test 076 control_ras PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wam -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_wam -Checking test 076 control_wam results .... - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_wam +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_wam +Checking test 077 control_wam results .... + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK -0:The total amount of wall time = 130.998635 -0:The maximum resident set size (KB) = 206292 +0:The total amount of wall time = 128.151365 +0:The maximum resident set size (KB) = 206584 -Test 076 control_wam PASS +Test 077 control_wam PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_faster -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_p8_faster -Checking test 077 control_p8_faster results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8_faster +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_p8_faster +Checking test 078 control_p8_faster results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -3140,75 +3152,75 @@ Checking test 077 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 173.060846 -0:The maximum resident set size (KB) = 1423016 +0:The total amount of wall time = 172.660276 +0:The maximum resident set size (KB) = 1423832 -Test 077 control_p8_faster PASS +Test 078 control_p8_faster PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control_faster -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/regional_control_faster -Checking test 078 regional_control_faster results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control_faster +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/regional_control_faster +Checking test 079 regional_control_faster results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 313.434251 -0:The maximum resident set size (KB) = 603832 +0:The total amount of wall time = 320.645621 +0:The maximum resident set size (KB) = 604580 -Test 078 regional_control_faster PASS +Test 079 regional_control_faster PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rrfs_smoke_conus13km_hrrr_warm_debug -Checking test 079 rrfs_smoke_conus13km_hrrr_warm_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/rrfs_smoke_conus13km_hrrr_warm_debug +Checking test 080 rrfs_smoke_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 883.978033 -0:The maximum resident set size (KB) = 709464 +0:The total amount of wall time = 897.167620 +0:The maximum resident set size (KB) = 709708 -Test 079 rrfs_smoke_conus13km_hrrr_warm_debug PASS +Test 080 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rrfs_smoke_conus13km_hrrr_warm_debug_2threads -Checking test 080 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +Checking test 081 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 509.712521 -0:The maximum resident set size (KB) = 729436 +0:The total amount of wall time = 515.894294 +0:The maximum resident set size (KB) = 729904 -Test 080 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS +Test 081 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rrfs_conus13km_hrrr_warm_debug -Checking test 081 rrfs_conus13km_hrrr_warm_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/rrfs_conus13km_hrrr_warm_debug +Checking test 082 rrfs_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 788.867660 -0:The maximum resident set size (KB) = 687560 +0:The total amount of wall time = 794.223399 +0:The maximum resident set size (KB) = 688340 -Test 081 rrfs_conus13km_hrrr_warm_debug PASS +Test 082 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_CubedSphereGrid_debug -Checking test 082 control_CubedSphereGrid_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_CubedSphereGrid_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_CubedSphereGrid_debug +Checking test 083 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3234,359 +3246,359 @@ Checking test 082 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -0:The total amount of wall time = 174.805451 -0:The maximum resident set size (KB) = 619472 +0:The total amount of wall time = 175.575745 +0:The maximum resident set size (KB) = 622420 -Test 082 control_CubedSphereGrid_debug PASS +Test 083 control_CubedSphereGrid_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_wrtGauss_netcdf_parallel_debug -Checking test 083 control_wrtGauss_netcdf_parallel_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_wrtGauss_netcdf_parallel_debug +Checking test 084 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 163.698529 -0:The maximum resident set size (KB) = 619992 +0:The total amount of wall time = 163.776366 +0:The maximum resident set size (KB) = 620580 -Test 083 control_wrtGauss_netcdf_parallel_debug PASS +Test 084 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_stochy_debug -Checking test 084 control_stochy_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_stochy_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_stochy_debug +Checking test 085 control_stochy_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 184.440479 -0:The maximum resident set size (KB) = 627024 +0:The total amount of wall time = 184.208215 +0:The maximum resident set size (KB) = 626116 -Test 084 control_stochy_debug PASS +Test 085 control_stochy_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_lndp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_lndp_debug -Checking test 085 control_lndp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_lndp_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_lndp_debug +Checking test 086 control_lndp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 165.662583 -0:The maximum resident set size (KB) = 624300 +0:The total amount of wall time = 166.571663 +0:The maximum resident set size (KB) = 624908 -Test 085 control_lndp_debug PASS +Test 086 control_lndp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmg_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_csawmg_debug -Checking test 086 control_csawmg_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_csawmg_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_csawmg_debug +Checking test 087 control_csawmg_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 256.967507 -0:The maximum resident set size (KB) = 670640 +0:The total amount of wall time = 256.226856 +0:The maximum resident set size (KB) = 671332 -Test 086 control_csawmg_debug PASS +Test 087 control_csawmg_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmgt_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_csawmgt_debug -Checking test 087 control_csawmgt_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_csawmgt_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_csawmgt_debug +Checking test 088 control_csawmgt_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 253.801153 -0:The maximum resident set size (KB) = 671168 +0:The total amount of wall time = 256.858167 +0:The maximum resident set size (KB) = 672304 -Test 087 control_csawmgt_debug PASS +Test 088 control_csawmgt_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_ras_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_ras_debug -Checking test 088 control_ras_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_ras_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_ras_debug +Checking test 089 control_ras_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 167.454849 -0:The maximum resident set size (KB) = 634300 +0:The total amount of wall time = 169.775245 +0:The maximum resident set size (KB) = 635240 -Test 088 control_ras_debug PASS +Test 089 control_ras_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_diag_debug -Checking test 089 control_diag_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_diag_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_diag_debug +Checking test 090 control_diag_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 169.364505 -0:The maximum resident set size (KB) = 678368 +0:The total amount of wall time = 169.924275 +0:The maximum resident set size (KB) = 679892 -Test 089 control_diag_debug PASS +Test 090 control_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_debug_p8 -Checking test 090 control_debug_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_debug_p8 +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_debug_p8 +Checking test 091 control_debug_p8 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 184.382105 -0:The maximum resident set size (KB) = 1445112 +0:The total amount of wall time = 186.502892 +0:The maximum resident set size (KB) = 1447324 -Test 090 control_debug_p8 PASS +Test 091 control_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/regional_debug -Checking test 091 regional_debug results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf001.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/regional_debug +Checking test 092 regional_debug results .... + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK -0:The total amount of wall time = 1036.277747 -0:The maximum resident set size (KB) = 630044 +0:The total amount of wall time = 1041.962871 +0:The maximum resident set size (KB) = 630784 -Test 091 regional_debug PASS +Test 092 regional_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rap_control_debug -Checking test 092 rap_control_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/rap_control_debug +Checking test 093 rap_control_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 295.876775 -0:The maximum resident set size (KB) = 991944 +0:The total amount of wall time = 296.341676 +0:The maximum resident set size (KB) = 991636 -Test 092 rap_control_debug PASS +Test 093 rap_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hrrr_control_debug -Checking test 093 hrrr_control_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/hrrr_control_debug +Checking test 094 hrrr_control_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 291.331057 -0:The maximum resident set size (KB) = 988352 +0:The total amount of wall time = 292.774992 +0:The maximum resident set size (KB) = 989164 -Test 093 hrrr_control_debug PASS +Test 094 hrrr_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rap_unified_drag_suite_debug -Checking test 094 rap_unified_drag_suite_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/rap_unified_drag_suite_debug +Checking test 095 rap_unified_drag_suite_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 295.173101 -0:The maximum resident set size (KB) = 992080 +0:The total amount of wall time = 296.601471 +0:The maximum resident set size (KB) = 991640 -Test 094 rap_unified_drag_suite_debug PASS +Test 095 rap_unified_drag_suite_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rap_diag_debug -Checking test 095 rap_diag_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_diag_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/rap_diag_debug +Checking test 096 rap_diag_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 309.406229 -0:The maximum resident set size (KB) = 1074172 +0:The total amount of wall time = 309.276283 +0:The maximum resident set size (KB) = 1074836 -Test 095 rap_diag_debug PASS +Test 096 rap_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rap_cires_ugwp_debug -Checking test 096 rap_cires_ugwp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_cires_ugwp_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/rap_cires_ugwp_debug +Checking test 097 rap_cires_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 301.570218 -0:The maximum resident set size (KB) = 990092 +0:The total amount of wall time = 302.908003 +0:The maximum resident set size (KB) = 990864 -Test 096 rap_cires_ugwp_debug PASS +Test 097 rap_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rap_unified_ugwp_debug -Checking test 097 rap_unified_ugwp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_cires_ugwp_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/rap_unified_ugwp_debug +Checking test 098 rap_unified_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 301.498957 -0:The maximum resident set size (KB) = 991084 +0:The total amount of wall time = 302.996190 +0:The maximum resident set size (KB) = 991768 -Test 097 rap_unified_ugwp_debug PASS +Test 098 rap_unified_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_lndp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rap_lndp_debug -Checking test 098 rap_lndp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_lndp_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/rap_lndp_debug +Checking test 099 rap_lndp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 297.288617 -0:The maximum resident set size (KB) = 992716 +0:The total amount of wall time = 299.319337 +0:The maximum resident set size (KB) = 993464 -Test 098 rap_lndp_debug PASS +Test 099 rap_lndp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_flake_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rap_flake_debug -Checking test 099 rap_flake_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_flake_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/rap_flake_debug +Checking test 100 rap_flake_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 295.636542 -0:The maximum resident set size (KB) = 992008 +0:The total amount of wall time = 297.925837 +0:The maximum resident set size (KB) = 991816 -Test 099 rap_flake_debug PASS +Test 100 rap_flake_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_progcld_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rap_progcld_thompson_debug -Checking test 100 rap_progcld_thompson_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_progcld_thompson_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/rap_progcld_thompson_debug +Checking test 101 rap_progcld_thompson_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 296.019761 -0:The maximum resident set size (KB) = 991880 +0:The total amount of wall time = 296.868179 +0:The maximum resident set size (KB) = 991828 -Test 100 rap_progcld_thompson_debug PASS +Test 101 rap_progcld_thompson_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_noah_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rap_noah_debug -Checking test 101 rap_noah_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_noah_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/rap_noah_debug +Checking test 102 rap_noah_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 289.747930 -0:The maximum resident set size (KB) = 990580 +0:The total amount of wall time = 290.613834 +0:The maximum resident set size (KB) = 989488 -Test 101 rap_noah_debug PASS +Test 102 rap_noah_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rap_sfcdiff_debug -Checking test 102 rap_sfcdiff_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_sfcdiff_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/rap_sfcdiff_debug +Checking test 103 rap_sfcdiff_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 295.478992 -0:The maximum resident set size (KB) = 991732 +0:The total amount of wall time = 296.912919 +0:The maximum resident set size (KB) = 991380 -Test 102 rap_sfcdiff_debug PASS +Test 103 rap_sfcdiff_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 103 rap_noah_sfcdiff_cires_ugwp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 104 rap_noah_sfcdiff_cires_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 480.352304 -0:The maximum resident set size (KB) = 989136 +0:The total amount of wall time = 482.678258 +0:The maximum resident set size (KB) = 990212 -Test 103 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 104 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1beta_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rrfs_v1beta_debug -Checking test 104 rrfs_v1beta_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_v1beta_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/rrfs_v1beta_debug +Checking test 105 rrfs_v1beta_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 291.201444 -0:The maximum resident set size (KB) = 986176 +0:The total amount of wall time = 292.308836 +0:The maximum resident set size (KB) = 988432 -Test 104 rrfs_v1beta_debug PASS +Test 105 rrfs_v1beta_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wam_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_wam_debug -Checking test 105 control_wam_debug results .... - Comparing sfcf019.nc ............ALT CHECK......OK - Comparing atmf019.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_wam_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_wam_debug +Checking test 106 control_wam_debug results .... + Comparing sfcf019.nc .........OK + Comparing atmf019.nc .........OK -0:The total amount of wall time = 296.863160 -0:The maximum resident set size (KB) = 239728 +0:The total amount of wall time = 307.797056 +0:The maximum resident set size (KB) = 240088 -Test 105 control_wam_debug PASS +Test 106 control_wam_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/regional_spp_sppt_shum_skeb_dyn32_phy32 -Checking test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf001.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF01 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 238.744869 -0:The maximum resident set size (KB) = 849216 +0:The total amount of wall time = 242.246597 +0:The maximum resident set size (KB) = 851168 -Test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS +Test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rap_control_dyn32_phy32 -Checking test 107 rap_control_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/rap_control_dyn32_phy32 +Checking test 108 rap_control_dyn32_phy32 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 @@ -3626,21 +3638,21 @@ Checking test 107 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 392.322073 -0:The maximum resident set size (KB) = 707476 +0:The total amount of wall time = 402.192335 +0:The maximum resident set size (KB) = 707880 -Test 107 rap_control_dyn32_phy32 PASS +Test 108 rap_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hrrr_control_dyn32_phy32 -Checking test 108 hrrr_control_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/hrrr_control_dyn32_phy32 +Checking test 109 hrrr_control_dyn32_phy32 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 @@ -3680,21 +3692,21 @@ Checking test 108 hrrr_control_dyn32_phy32 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 = 204.913361 -0:The maximum resident set size (KB) = 705920 +0:The total amount of wall time = 208.936609 +0:The maximum resident set size (KB) = 706524 -Test 108 hrrr_control_dyn32_phy32 PASS +Test 109 hrrr_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rap_2threads_dyn32_phy32 -Checking test 109 rap_2threads_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/rap_2threads_dyn32_phy32 +Checking test 110 rap_2threads_dyn32_phy32 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 @@ -3734,21 +3746,21 @@ Checking test 109 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 379.036814 -0:The maximum resident set size (KB) = 760716 +0:The total amount of wall time = 382.924346 +0:The maximum resident set size (KB) = 759440 -Test 109 rap_2threads_dyn32_phy32 PASS +Test 110 rap_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hrrr_control_2threads_dyn32_phy32 -Checking test 110 hrrr_control_2threads_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/hrrr_control_2threads_dyn32_phy32 +Checking test 111 hrrr_control_2threads_dyn32_phy32 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 @@ -3788,21 +3800,21 @@ Checking test 110 hrrr_control_2threads_dyn32_phy32 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 = 195.832546 -0:The maximum resident set size (KB) = 754940 +0:The total amount of wall time = 196.252523 +0:The maximum resident set size (KB) = 752640 -Test 110 hrrr_control_2threads_dyn32_phy32 PASS +Test 111 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hrrr_control_decomp_dyn32_phy32 -Checking test 111 hrrr_control_decomp_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/hrrr_control_decomp_dyn32_phy32 +Checking test 112 hrrr_control_decomp_dyn32_phy32 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 @@ -3842,17 +3854,17 @@ Checking test 111 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 217.484001 -0:The maximum resident set size (KB) = 704108 +0:The total amount of wall time = 220.385903 +0:The maximum resident set size (KB) = 704404 -Test 111 hrrr_control_decomp_dyn32_phy32 PASS +Test 112 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rap_restart_dyn32_phy32 -Checking test 112 rap_restart_dyn32_phy32 results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/rap_restart_dyn32_phy32 +Checking test 113 rap_restart_dyn32_phy32 results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -3888,17 +3900,17 @@ Checking test 112 rap_restart_dyn32_phy32 results .... Comparing 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.632793 -0:The maximum resident set size (KB) = 544420 +0:The total amount of wall time = 294.042315 +0:The maximum resident set size (KB) = 544576 -Test 112 rap_restart_dyn32_phy32 PASS +Test 113 rap_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hrrr_control_restart_dyn32_phy32 -Checking test 113 hrrr_control_restart_dyn32_phy32 results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/hrrr_control_restart_dyn32_phy32 +Checking test 114 hrrr_control_restart_dyn32_phy32 results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.180000.coupler.res .........OK @@ -3934,21 +3946,21 @@ Checking test 113 hrrr_control_restart_dyn32_phy32 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 = 106.027083 -0:The maximum resident set size (KB) = 537188 +0:The total amount of wall time = 108.834169 +0:The maximum resident set size (KB) = 537492 -Test 113 hrrr_control_restart_dyn32_phy32 PASS +Test 114 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rap_control_dyn64_phy32 -Checking test 114 rap_control_dyn64_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_dyn64_phy32 +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/rap_control_dyn64_phy32 +Checking test 115 rap_control_dyn64_phy32 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 @@ -3988,116 +4000,116 @@ Checking test 114 rap_control_dyn64_phy32 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 = 268.655996 -0:The maximum resident set size (KB) = 729968 +0:The total amount of wall time = 272.251136 +0:The maximum resident set size (KB) = 730516 -Test 114 rap_control_dyn64_phy32 PASS +Test 115 rap_control_dyn64_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rap_control_debug_dyn32_phy32 -Checking test 115 rap_control_debug_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/rap_control_debug_dyn32_phy32 +Checking test 116 rap_control_debug_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 290.509753 -0:The maximum resident set size (KB) = 876364 +0:The total amount of wall time = 291.440812 +0:The maximum resident set size (KB) = 877808 -Test 115 rap_control_debug_dyn32_phy32 PASS +Test 116 rap_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hrrr_control_debug_dyn32_phy32 -Checking test 116 hrrr_control_debug_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/hrrr_control_debug_dyn32_phy32 +Checking test 117 hrrr_control_debug_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 286.338496 -0:The maximum resident set size (KB) = 875440 +0:The total amount of wall time = 286.442616 +0:The maximum resident set size (KB) = 875864 -Test 116 hrrr_control_debug_dyn32_phy32 PASS +Test 117 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/rap_control_dyn64_phy32_debug -Checking test 117 rap_control_dyn64_phy32_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_debug_dyn64_phy32 +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/rap_control_dyn64_phy32_debug +Checking test 118 rap_control_dyn64_phy32_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 295.293386 -0:The maximum resident set size (KB) = 894560 +0:The total amount of wall time = 296.310465 +0:The maximum resident set size (KB) = 894920 -Test 117 rap_control_dyn64_phy32_debug PASS +Test 118 rap_control_dyn64_phy32_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hafs_regional_atm -Checking test 118 hafs_regional_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_atm +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/hafs_regional_atm +Checking test 119 hafs_regional_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -0:The total amount of wall time = 258.170228 -0:The maximum resident set size (KB) = 741112 +0:The total amount of wall time = 259.111922 +0:The maximum resident set size (KB) = 743084 -Test 118 hafs_regional_atm PASS +Test 119 hafs_regional_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hafs_regional_atm_thompson_gfdlsf -Checking test 119 hafs_regional_atm_thompson_gfdlsf results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/hafs_regional_atm_thompson_gfdlsf +Checking test 120 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -0:The total amount of wall time = 288.451901 -0:The maximum resident set size (KB) = 1097364 +0:The total amount of wall time = 289.408352 +0:The maximum resident set size (KB) = 1099856 -Test 119 hafs_regional_atm_thompson_gfdlsf PASS +Test 120 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_ocn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hafs_regional_atm_ocn -Checking test 120 hafs_regional_atm_ocn results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_atm_ocn +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/hafs_regional_atm_ocn +Checking test 121 hafs_regional_atm_ocn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK Comparing archs.2019_241_06.a .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 457.633363 -0:The maximum resident set size (KB) = 739960 +0:The total amount of wall time = 454.748565 +0:The maximum resident set size (KB) = 740984 -Test 120 hafs_regional_atm_ocn PASS +Test 121 hafs_regional_atm_ocn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_wav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hafs_regional_atm_wav -Checking test 121 hafs_regional_atm_wav results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_atm_wav +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/hafs_regional_atm_wav +Checking test 122 hafs_regional_atm_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 1091.996297 -0:The maximum resident set size (KB) = 768004 +0:The total amount of wall time = 1048.642507 +0:The maximum resident set size (KB) = 769952 -Test 121 hafs_regional_atm_wav PASS +Test 122 hafs_regional_atm_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_ocn_wav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hafs_regional_atm_ocn_wav -Checking test 122 hafs_regional_atm_ocn_wav results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_atm_ocn_wav +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/hafs_regional_atm_ocn_wav +Checking test 123 hafs_regional_atm_ocn_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK Comparing archs.2019_241_06.a .........OK Comparing out_grd.ww3 .........OK @@ -4105,323 +4117,323 @@ Checking test 122 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 1104.646700 -0:The maximum resident set size (KB) = 792180 +0:The total amount of wall time = 1155.858452 +0:The maximum resident set size (KB) = 792576 -Test 122 hafs_regional_atm_ocn_wav PASS +Test 123 hafs_regional_atm_ocn_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hafs_regional_1nest_atm -Checking test 123 hafs_regional_1nest_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_1nest_atm +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/hafs_regional_1nest_atm +Checking test 124 hafs_regional_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 374.613248 -0:The maximum resident set size (KB) = 300036 +0:The total amount of wall time = 375.791173 +0:The maximum resident set size (KB) = 300452 -Test 123 hafs_regional_1nest_atm PASS +Test 124 hafs_regional_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hafs_regional_telescopic_2nests_atm -Checking test 124 hafs_regional_telescopic_2nests_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK - Comparing atm.nest03.f006.nc ............ALT CHECK......OK - Comparing sfc.nest03.f006.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/hafs_regional_telescopic_2nests_atm +Checking test 125 hafs_regional_telescopic_2nests_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing atm.nest03.f006.nc .........OK + Comparing sfc.nest03.f006.nc .........OK -0:The total amount of wall time = 426.586794 -0:The maximum resident set size (KB) = 317968 +0:The total amount of wall time = 430.392690 +0:The maximum resident set size (KB) = 319900 -Test 124 hafs_regional_telescopic_2nests_atm PASS +Test 125 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hafs_global_1nest_atm -Checking test 125 hafs_global_1nest_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_global_1nest_atm +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/hafs_global_1nest_atm +Checking test 126 hafs_global_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 172.351478 -0:The maximum resident set size (KB) = 213152 +0:The total amount of wall time = 171.544391 +0:The maximum resident set size (KB) = 213572 -Test 125 hafs_global_1nest_atm PASS +Test 126 hafs_global_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_multiple_4nests_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hafs_global_multiple_4nests_atm -Checking test 126 hafs_global_multiple_4nests_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK - Comparing atm.nest03.f006.nc ............ALT CHECK......OK - Comparing sfc.nest03.f006.nc ............ALT CHECK......OK - Comparing atm.nest04.f006.nc ............ALT CHECK......OK - Comparing sfc.nest04.f006.nc ............ALT CHECK......OK - Comparing atm.nest05.f006.nc ............ALT CHECK......OK - Comparing sfc.nest05.f006.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_global_multiple_4nests_atm +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/hafs_global_multiple_4nests_atm +Checking test 127 hafs_global_multiple_4nests_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing atm.nest03.f006.nc .........OK + Comparing sfc.nest03.f006.nc .........OK + Comparing atm.nest04.f006.nc .........OK + Comparing sfc.nest04.f006.nc .........OK + Comparing atm.nest05.f006.nc .........OK + Comparing sfc.nest05.f006.nc .........OK Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK Comparing HURPRS.GrbF06.nest03 .........OK Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -0:The total amount of wall time = 481.113987 -0:The maximum resident set size (KB) = 301984 +0:The total amount of wall time = 500.696745 +0:The maximum resident set size (KB) = 302608 -Test 126 hafs_global_multiple_4nests_atm PASS +Test 127 hafs_global_multiple_4nests_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hafs_regional_specified_moving_1nest_atm -Checking test 127 hafs_regional_specified_moving_1nest_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/hafs_regional_specified_moving_1nest_atm +Checking test 128 hafs_regional_specified_moving_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -0:The total amount of wall time = 238.312297 -0:The maximum resident set size (KB) = 316264 +0:The total amount of wall time = 240.268649 +0:The maximum resident set size (KB) = 318204 -Test 127 hafs_regional_specified_moving_1nest_atm PASS +Test 128 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hafs_regional_storm_following_1nest_atm -Checking test 128 hafs_regional_storm_following_1nest_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/hafs_regional_storm_following_1nest_atm +Checking test 129 hafs_regional_storm_following_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 227.021493 -0:The maximum resident set size (KB) = 316372 +0:The total amount of wall time = 228.172950 +0:The maximum resident set size (KB) = 318548 -Test 128 hafs_regional_storm_following_1nest_atm PASS +Test 129 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hafs_regional_storm_following_1nest_atm_ocn -Checking test 129 hafs_regional_storm_following_1nest_atm_ocn results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/hafs_regional_storm_following_1nest_atm_ocn +Checking test 130 hafs_regional_storm_following_1nest_atm_ocn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -0:The total amount of wall time = 281.235155 -0:The maximum resident set size (KB) = 374496 +0:The total amount of wall time = 282.453055 +0:The maximum resident set size (KB) = 376224 -Test 129 hafs_regional_storm_following_1nest_atm_ocn PASS +Test 130 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_storm_following_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hafs_global_storm_following_1nest_atm -Checking test 130 hafs_global_storm_following_1nest_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_global_storm_following_1nest_atm +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/hafs_global_storm_following_1nest_atm +Checking test 131 hafs_global_storm_following_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 67.644290 -0:The maximum resident set size (KB) = 232816 +0:The total amount of wall time = 68.943271 +0:The maximum resident set size (KB) = 233264 -Test 130 hafs_global_storm_following_1nest_atm PASS +Test 131 hafs_global_storm_following_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hafs_regional_storm_following_1nest_atm_ocn_debug -Checking test 131 hafs_regional_storm_following_1nest_atm_ocn_debug results .... - Comparing atmf001.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atm.nest02.f001.nc ............ALT CHECK......OK - Comparing sfc.nest02.f001.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/hafs_regional_storm_following_1nest_atm_ocn_debug +Checking test 132 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 822.170427 -0:The maximum resident set size (KB) = 408660 +0:The total amount of wall time = 822.999725 +0:The maximum resident set size (KB) = 409468 -Test 131 hafs_regional_storm_following_1nest_atm_ocn_debug PASS +Test 132 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hafs_regional_storm_following_1nest_atm_ocn_wav -Checking test 132 hafs_regional_storm_following_1nest_atm_ocn_wav results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 133 hafs_regional_storm_following_1nest_atm_ocn_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -0:The total amount of wall time = 697.520043 -0:The maximum resident set size (KB) = 426812 +0:The total amount of wall time = 704.297067 +0:The maximum resident set size (KB) = 427004 -Test 132 hafs_regional_storm_following_1nest_atm_ocn_wav PASS +Test 133 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_docn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hafs_regional_docn -Checking test 133 hafs_regional_docn results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_docn +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/hafs_regional_docn +Checking test 134 hafs_regional_docn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 392.099969 -0:The maximum resident set size (KB) = 754316 +0:The total amount of wall time = 391.952463 +0:The maximum resident set size (KB) = 755604 -Test 133 hafs_regional_docn PASS +Test 134 hafs_regional_docn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_docn_oisst -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hafs_regional_docn_oisst -Checking test 134 hafs_regional_docn_oisst results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_docn_oisst +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/hafs_regional_docn_oisst +Checking test 135 hafs_regional_docn_oisst results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 383.020436 -0:The maximum resident set size (KB) = 737028 +0:The total amount of wall time = 380.146394 +0:The maximum resident set size (KB) = 735040 -Test 134 hafs_regional_docn_oisst PASS +Test 135 hafs_regional_docn_oisst PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_datm_cdeps -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/hafs_regional_datm_cdeps -Checking test 135 hafs_regional_datm_cdeps results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_datm_cdeps +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/hafs_regional_datm_cdeps +Checking test 136 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -0:The total amount of wall time = 1268.043272 -0:The maximum resident set size (KB) = 887868 +0:The total amount of wall time = 1276.161233 +0:The maximum resident set size (KB) = 887840 -Test 135 hafs_regional_datm_cdeps PASS +Test 136 hafs_regional_datm_cdeps PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/datm_cdeps_control_cfsr -Checking test 136 datm_cdeps_control_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/datm_cdeps_control_cfsr +Checking test 137 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 167.158326 -0:The maximum resident set size (KB) = 727860 +0:The total amount of wall time = 167.766498 +0:The maximum resident set size (KB) = 716680 -Test 136 datm_cdeps_control_cfsr PASS +Test 137 datm_cdeps_control_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/datm_cdeps_restart_cfsr -Checking test 137 datm_cdeps_restart_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/datm_cdeps_restart_cfsr +Checking test 138 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 99.563443 -0:The maximum resident set size (KB) = 715920 +0:The total amount of wall time = 100.898869 +0:The maximum resident set size (KB) = 716224 -Test 137 datm_cdeps_restart_cfsr PASS +Test 138 datm_cdeps_restart_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/datm_cdeps_control_gefs -Checking test 138 datm_cdeps_control_gefs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_control_gefs +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/datm_cdeps_control_gefs +Checking test 139 datm_cdeps_control_gefs 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 = 159.717655 -0:The maximum resident set size (KB) = 607448 +0:The total amount of wall time = 155.670076 +0:The maximum resident set size (KB) = 607484 -Test 138 datm_cdeps_control_gefs PASS +Test 139 datm_cdeps_control_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_iau_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/datm_cdeps_iau_gefs -Checking test 139 datm_cdeps_iau_gefs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_iau_gefs +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/datm_cdeps_iau_gefs +Checking test 140 datm_cdeps_iau_gefs 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 = 163.484192 -0:The maximum resident set size (KB) = 607432 +0:The total amount of wall time = 164.454290 +0:The maximum resident set size (KB) = 607484 -Test 139 datm_cdeps_iau_gefs PASS +Test 140 datm_cdeps_iau_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_stochy_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/datm_cdeps_stochy_gefs -Checking test 140 datm_cdeps_stochy_gefs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_stochy_gefs +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/datm_cdeps_stochy_gefs +Checking test 141 datm_cdeps_stochy_gefs 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 = 164.044040 -0:The maximum resident set size (KB) = 607464 +0:The total amount of wall time = 164.688733 +0:The maximum resident set size (KB) = 607532 -Test 140 datm_cdeps_stochy_gefs PASS +Test 141 datm_cdeps_stochy_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_ciceC_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/datm_cdeps_ciceC_cfsr -Checking test 141 datm_cdeps_ciceC_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_ciceC_cfsr +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/datm_cdeps_ciceC_cfsr +Checking test 142 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 168.865612 -0:The maximum resident set size (KB) = 716688 +0:The total amount of wall time = 169.122143 +0:The maximum resident set size (KB) = 727724 -Test 141 datm_cdeps_ciceC_cfsr PASS +Test 142 datm_cdeps_ciceC_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_bulk_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/datm_cdeps_bulk_cfsr -Checking test 142 datm_cdeps_bulk_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_bulk_cfsr +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/datm_cdeps_bulk_cfsr +Checking test 143 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 168.395618 -0:The maximum resident set size (KB) = 716700 +0:The total amount of wall time = 169.012426 +0:The maximum resident set size (KB) = 716712 -Test 142 datm_cdeps_bulk_cfsr PASS +Test 143 datm_cdeps_bulk_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_bulk_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/datm_cdeps_bulk_gefs -Checking test 143 datm_cdeps_bulk_gefs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_bulk_gefs +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/datm_cdeps_bulk_gefs +Checking test 144 datm_cdeps_bulk_gefs 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 = 160.768923 -0:The maximum resident set size (KB) = 607452 +0:The total amount of wall time = 161.203569 +0:The maximum resident set size (KB) = 607472 -Test 143 datm_cdeps_bulk_gefs PASS +Test 144 datm_cdeps_bulk_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_mx025_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/datm_cdeps_mx025_cfsr -Checking test 144 datm_cdeps_mx025_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_mx025_cfsr +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/datm_cdeps_mx025_cfsr +Checking test 145 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4429,15 +4441,15 @@ Checking test 144 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 422.429030 -0:The maximum resident set size (KB) = 514268 +0:The total amount of wall time = 424.041391 +0:The maximum resident set size (KB) = 514328 -Test 144 datm_cdeps_mx025_cfsr PASS +Test 145 datm_cdeps_mx025_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_mx025_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/datm_cdeps_mx025_gefs -Checking test 145 datm_cdeps_mx025_gefs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_mx025_gefs +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/datm_cdeps_mx025_gefs +Checking test 146 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4445,78 +4457,78 @@ Checking test 145 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 419.633934 -0:The maximum resident set size (KB) = 494788 +0:The total amount of wall time = 448.683812 +0:The maximum resident set size (KB) = 494784 -Test 145 datm_cdeps_mx025_gefs PASS +Test 146 datm_cdeps_mx025_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/datm_cdeps_multiple_files_cfsr -Checking test 146 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/datm_cdeps_multiple_files_cfsr +Checking test 147 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 163.108977 -0:The maximum resident set size (KB) = 716688 +0:The total amount of wall time = 161.620578 +0:The maximum resident set size (KB) = 716764 -Test 146 datm_cdeps_multiple_files_cfsr PASS +Test 147 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/datm_cdeps_3072x1536_cfsr -Checking test 147 datm_cdeps_3072x1536_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/datm_cdeps_3072x1536_cfsr +Checking test 148 datm_cdeps_3072x1536_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 241.967340 -0:The maximum resident set size (KB) = 1942004 +0:The total amount of wall time = 257.443345 +0:The maximum resident set size (KB) = 1940332 -Test 147 datm_cdeps_3072x1536_cfsr PASS +Test 148 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_gfs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/datm_cdeps_gfs -Checking test 148 datm_cdeps_gfs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_gfs +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/datm_cdeps_gfs +Checking test 149 datm_cdeps_gfs 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 = 254.668136 -0:The maximum resident set size (KB) = 1940252 +0:The total amount of wall time = 255.750273 +0:The maximum resident set size (KB) = 1940300 -Test 148 datm_cdeps_gfs PASS +Test 149 datm_cdeps_gfs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_debug_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/datm_cdeps_debug_cfsr -Checking test 149 datm_cdeps_debug_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_debug_cfsr +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/datm_cdeps_debug_cfsr +Checking test 150 datm_cdeps_debug_cfsr 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 = 458.294696 -0:The maximum resident set size (KB) = 706748 +0:The total amount of wall time = 466.665611 +0:The maximum resident set size (KB) = 706636 -Test 149 datm_cdeps_debug_cfsr PASS +Test 150 datm_cdeps_debug_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr_faster -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/datm_cdeps_control_cfsr_faster -Checking test 150 datm_cdeps_control_cfsr_faster results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_control_cfsr_faster +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/datm_cdeps_control_cfsr_faster +Checking test 151 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 167.204440 -0:The maximum resident set size (KB) = 716760 +0:The total amount of wall time = 168.578577 +0:The maximum resident set size (KB) = 716724 -Test 150 datm_cdeps_control_cfsr_faster PASS +Test 151 datm_cdeps_control_cfsr_faster PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/datm_cdeps_lnd_gswp3 -Checking test 151 datm_cdeps_lnd_gswp3 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_lnd_gswp3 +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/datm_cdeps_lnd_gswp3 +Checking test 152 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4524,15 +4536,15 @@ Checking test 151 datm_cdeps_lnd_gswp3 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 = 10.471279 -0:The maximum resident set size (KB) = 210044 +0:The total amount of wall time = 11.287246 +0:The maximum resident set size (KB) = 204568 -Test 151 datm_cdeps_lnd_gswp3 PASS +Test 152 datm_cdeps_lnd_gswp3 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/datm_cdeps_lnd_gswp3_rst -Checking test 152 datm_cdeps_lnd_gswp3_rst results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_lnd_gswp3 +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/datm_cdeps_lnd_gswp3_rst +Checking test 153 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4540,15 +4552,15 @@ Checking test 152 datm_cdeps_lnd_gswp3_rst 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 = 16.599126 -0:The maximum resident set size (KB) = 208176 +0:The total amount of wall time = 15.387472 +0:The maximum resident set size (KB) = 210120 -Test 152 datm_cdeps_lnd_gswp3_rst PASS +Test 153 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_atmlnd_sbs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_p8_atmlnd_sbs -Checking test 153 control_p8_atmlnd_sbs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8_atmlnd_sbs +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_p8_atmlnd_sbs +Checking test 154 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -4632,19 +4644,19 @@ Checking test 153 control_p8_atmlnd_sbs 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 = 238.414629 -0:The maximum resident set size (KB) = 1463464 +0:The total amount of wall time = 233.608333 +0:The maximum resident set size (KB) = 1462964 -Test 153 control_p8_atmlnd_sbs PASS +Test 154 control_p8_atmlnd_sbs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/control_atmwav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/control_atmwav -Checking test 154 control_atmwav results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_atmwav +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_atmwav +Checking test 155 control_atmwav results .... + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -4683,19 +4695,19 @@ Checking test 154 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -0:The total amount of wall time = 100.234716 -0:The maximum resident set size (KB) = 474832 +0:The total amount of wall time = 100.977513 +0:The maximum resident set size (KB) = 474568 -Test 154 control_atmwav PASS +Test 155 control_atmwav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/atmaero_control_p8 -Checking test 155 atmaero_control_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/atmaero_control_p8 +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/atmaero_control_p8 +Checking test 156 atmaero_control_p8 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 @@ -4734,19 +4746,19 @@ Checking test 155 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 254.350535 -0:The maximum resident set size (KB) = 2703820 +0:The total amount of wall time = 250.080174 +0:The maximum resident set size (KB) = 2704016 -Test 155 atmaero_control_p8 PASS +Test 156 atmaero_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8_rad -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/atmaero_control_p8_rad -Checking test 156 atmaero_control_p8_rad results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/atmaero_control_p8_rad +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/atmaero_control_p8_rad +Checking test 157 atmaero_control_p8_rad 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 @@ -4785,19 +4797,19 @@ Checking test 156 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 305.701771 -0:The maximum resident set size (KB) = 2758240 +0:The total amount of wall time = 303.389420 +0:The maximum resident set size (KB) = 2758092 -Test 156 atmaero_control_p8_rad PASS +Test 157 atmaero_control_p8_rad PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8_rad_micro -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/atmaero_control_p8_rad_micro -Checking test 157 atmaero_control_p8_rad_micro results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/atmaero_control_p8_rad_micro +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/atmaero_control_p8_rad_micro +Checking test 158 atmaero_control_p8_rad_micro 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 @@ -4836,21 +4848,21 @@ Checking test 157 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 312.123379 -0:The maximum resident set size (KB) = 2764168 +0:The total amount of wall time = 308.269046 +0:The maximum resident set size (KB) = 2764448 -Test 157 atmaero_control_p8_rad_micro PASS +Test 158 atmaero_control_p8_rad_micro PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/regional_atmaq -Checking test 158 regional_atmaq results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf003.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf003.nc ............ALT CHECK......OK - Comparing atmf006.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_atmaq +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/regional_atmaq +Checking test 159 regional_atmaq results .... + Comparing sfcf000.nc .........OK + Comparing sfcf003.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf003.nc .........OK + Comparing atmf006.nc .........OK Comparing RESTART/20190801.180000.coupler.res .........OK Comparing RESTART/20190801.180000.fv_core.res.nc .........OK Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK @@ -4859,21 +4871,21 @@ Checking test 158 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -0:The total amount of wall time = 751.416667 -0:The maximum resident set size (KB) = 999156 +0:The total amount of wall time = 753.452314 +0:The maximum resident set size (KB) = 999516 -Test 158 regional_atmaq PASS +Test 159 regional_atmaq PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq_faster -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_50837/regional_atmaq_faster -Checking test 159 regional_atmaq_faster results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf003.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf003.nc ............ALT CHECK......OK - Comparing atmf006.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_atmaq_faster +working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/regional_atmaq_faster +Checking test 160 regional_atmaq_faster results .... + Comparing sfcf000.nc .........OK + Comparing sfcf003.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf003.nc .........OK + Comparing atmf006.nc .........OK Comparing RESTART/20190801.180000.coupler.res .........OK Comparing RESTART/20190801.180000.fv_core.res.nc .........OK Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK @@ -4882,12 +4894,12 @@ Checking test 159 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -0:The total amount of wall time = 676.509985 -0:The maximum resident set size (KB) = 998860 +0:The total amount of wall time = 704.415345 +0:The maximum resident set size (KB) = 999412 -Test 159 regional_atmaq_faster PASS +Test 160 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Tue Mar 28 16:16:40 MDT 2023 -Elapsed time: 01h:23m:17s. Have a nice day! +Thu Mar 30 15:24:26 MDT 2023 +Elapsed time: 01h:15m:41s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index cecda09813d..32d0ff7181b 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,42 +1,42 @@ -Tue Mar 28 17:03:09 EDT 2023 +Thu Mar 30 13:33:29 EDT 2023 Start Regression test -Compile 001 elapsed time 893 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 882 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 829 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 351 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 289 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 769 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 769 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 1002 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 001 elapsed time 927 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 919 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 837 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 390 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 309 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 779 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 832 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 1122 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON Compile 009 elapsed time 786 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 711 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 696 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 628 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 841 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 240 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 666 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 643 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 211 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 221 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 741 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 021 elapsed time 262 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 963 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 739 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 024 elapsed time 305 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 182 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 282 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 129 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 694 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 725 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 761 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 682 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 245 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 822 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8_mixedmode -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/cpld_control_p8_mixedmode +Compile 010 elapsed time 742 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 011 elapsed time 735 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 709 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 920 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 310 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 332 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 687 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 697 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 244 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 239 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 765 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 021 elapsed time 305 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 953 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 808 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 024 elapsed time 309 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 277 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 340 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 201 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 817 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 776 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 786 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 790 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 302 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 920 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8_mixedmode +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -101,14 +101,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 364.072530 - 0: The maximum resident set size (KB) = 1534404 + 0: The total amount of wall time = 354.660131 + 0: The maximum resident set size (KB) = 1535244 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_gfsv17 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/cpld_control_gfsv17 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_gfsv17 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -172,14 +172,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 285.622397 - 0: The maximum resident set size (KB) = 1444736 + 0: The total amount of wall time = 270.517015 + 0: The maximum resident set size (KB) = 1444704 Test 002 cpld_control_gfsv17 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/cpld_control_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -244,14 +244,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 414.448163 - 0: The maximum resident set size (KB) = 1568668 + 0: The total amount of wall time = 400.503709 + 0: The maximum resident set size (KB) = 1568816 Test 003 cpld_control_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/cpld_restart_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -304,14 +304,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 249.969934 - 0: The maximum resident set size (KB) = 1018440 + 0: The total amount of wall time = 243.870455 + 0: The maximum resident set size (KB) = 1018768 Test 004 cpld_restart_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/cpld_control_qr_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -376,14 +376,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 403.451779 - 0: The maximum resident set size (KB) = 1579652 + 0: The total amount of wall time = 399.315919 + 0: The maximum resident set size (KB) = 1578864 Test 005 cpld_control_qr_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/cpld_restart_qr_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -436,14 +436,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 244.463395 - 0: The maximum resident set size (KB) = 1032320 + 0: The total amount of wall time = 240.825454 + 0: The maximum resident set size (KB) = 1032732 Test 006 cpld_restart_qr_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/cpld_2threads_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -496,14 +496,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 418.411537 - 0: The maximum resident set size (KB) = 1760064 + 0: The total amount of wall time = 427.074361 + 0: The maximum resident set size (KB) = 1758276 Test 007 cpld_2threads_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/cpld_decomp_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -556,14 +556,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 399.803430 - 0: The maximum resident set size (KB) = 1561584 + 0: The total amount of wall time = 404.300273 + 0: The maximum resident set size (KB) = 1563084 Test 008 cpld_decomp_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/cpld_mpi_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -616,17 +616,17 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 344.519102 - 0: The maximum resident set size (KB) = 1526772 + 0: The total amount of wall time = 347.624854 + 0: The maximum resident set size (KB) = 1526744 Test 009 cpld_mpi_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_bmark_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/cpld_bmark_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_bmark_p8 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/cpld_bmark_p8 Checking test 010 cpld_bmark_p8 results .... - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc .........OK + Comparing atmf006.nc .........OK Comparing GFSFLX.GrbF06 .........OK Comparing GFSPRS.GrbF06 .........OK Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK @@ -671,17 +671,17 @@ Checking test 010 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 882.443134 - 0: The maximum resident set size (KB) = 2507456 + 0: The total amount of wall time = 909.526947 + 0: The maximum resident set size (KB) = 2510300 Test 010 cpld_bmark_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_bmark_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/cpld_restart_bmark_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_bmark_p8 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/cpld_restart_bmark_p8 Checking test 011 cpld_restart_bmark_p8 results .... - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc .........OK + Comparing atmf006.nc .........OK Comparing GFSFLX.GrbF06 .........OK Comparing GFSPRS.GrbF06 .........OK Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK @@ -726,14 +726,14 @@ Checking test 011 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 727.714180 - 0: The maximum resident set size (KB) = 2332904 + 0: The total amount of wall time = 669.235366 + 0: The maximum resident set size (KB) = 2336236 Test 011 cpld_restart_bmark_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_noaero_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/cpld_control_noaero_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_noaero_p8 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/cpld_control_noaero_p8 Checking test 012 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -797,14 +797,14 @@ Checking test 012 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 304.647230 - 0: The maximum resident set size (KB) = 1441984 + 0: The total amount of wall time = 307.461578 + 0: The maximum resident set size (KB) = 1442468 Test 012 cpld_control_noaero_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c96_noaero_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/cpld_control_nowave_noaero_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_c96_noaero_p8 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/cpld_control_nowave_noaero_p8 Checking test 013 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -866,14 +866,14 @@ Checking test 013 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 316.149798 - 0: The maximum resident set size (KB) = 1474488 + 0: The total amount of wall time = 318.556115 + 0: The maximum resident set size (KB) = 1474700 Test 013 cpld_control_nowave_noaero_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_debug_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/cpld_debug_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_debug_p8 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/cpld_debug_p8 Checking test 014 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -926,14 +926,14 @@ Checking test 014 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 612.129894 - 0: The maximum resident set size (KB) = 1596092 + 0: The total amount of wall time = 607.235690 + 0: The maximum resident set size (KB) = 1595960 Test 014 cpld_debug_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_debug_noaero_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/cpld_debug_noaero_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_debug_noaero_p8 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/cpld_debug_noaero_p8 Checking test 015 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -985,14 +985,14 @@ Checking test 015 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 418.452745 - 0: The maximum resident set size (KB) = 1442092 + 0: The total amount of wall time = 424.380613 + 0: The maximum resident set size (KB) = 1442312 Test 015 cpld_debug_noaero_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_noaero_p8_agrid -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/cpld_control_noaero_p8_agrid +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_noaero_p8_agrid +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/cpld_control_noaero_p8_agrid Checking test 016 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1054,14 +1054,14 @@ Checking test 016 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 333.834681 - 0: The maximum resident set size (KB) = 1477604 + 0: The total amount of wall time = 331.087903 + 0: The maximum resident set size (KB) = 1478140 Test 016 cpld_control_noaero_p8_agrid PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c48 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/cpld_control_c48 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_c48 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/cpld_control_c48 Checking test 017 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1111,14 +1111,14 @@ Checking test 017 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 620.420511 - 0: The maximum resident set size (KB) = 2572556 + 0: The total amount of wall time = 614.873827 + 0: The maximum resident set size (KB) = 2562984 Test 017 cpld_control_c48 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_warmstart_c48 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/cpld_warmstart_c48 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_warmstart_c48 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/cpld_warmstart_c48 Checking test 018 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1168,14 +1168,14 @@ Checking test 018 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 183.924075 - 0: The maximum resident set size (KB) = 2574764 + 0: The total amount of wall time = 162.308126 + 0: The maximum resident set size (KB) = 2575184 Test 018 cpld_warmstart_c48 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_warmstart_c48 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/cpld_restart_c48 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_warmstart_c48 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/cpld_restart_c48 Checking test 019 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1225,14 +1225,14 @@ Checking test 019 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 101.785112 - 0: The maximum resident set size (KB) = 1988284 + 0: The total amount of wall time = 93.786835 + 0: The maximum resident set size (KB) = 1989736 Test 019 cpld_restart_c48 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8_faster -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/cpld_control_p8_faster +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8_faster +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/cpld_control_p8_faster Checking test 020 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1297,14 +1297,14 @@ Checking test 020 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 395.095625 - 0: The maximum resident set size (KB) = 1568588 + 0: The total amount of wall time = 393.249795 + 0: The maximum resident set size (KB) = 1567804 Test 020 cpld_control_p8_faster PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_CubedSphereGrid +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_CubedSphereGrid +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/control_CubedSphereGrid Checking test 021 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1331,69 +1331,69 @@ Checking test 021 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 143.800553 - 0: The maximum resident set size (KB) = 437356 + 0: The total amount of wall time = 143.810637 + 0: The maximum resident set size (KB) = 437708 Test 021 control_CubedSphereGrid PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_CubedSphereGrid_parallel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_CubedSphereGrid_parallel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/control_CubedSphereGrid_parallel Checking test 022 control_CubedSphereGrid_parallel results .... - Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf000.nc .........OK Comparing atmf024.nc ............ALT CHECK......OK - 0: The total amount of wall time = 155.993007 - 0: The maximum resident set size (KB) = 437300 + 0: The total amount of wall time = 189.202455 + 0: The maximum resident set size (KB) = 438068 Test 022 control_CubedSphereGrid_parallel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_latlon -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_latlon +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_latlon +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/control_latlon Checking test 023 control_latlon results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 148.424223 - 0: The maximum resident set size (KB) = 437248 + 0: The total amount of wall time = 146.391579 + 0: The maximum resident set size (KB) = 437872 Test 023 control_latlon PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_wrtGauss_netcdf_parallel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/control_wrtGauss_netcdf_parallel Checking test 024 control_wrtGauss_netcdf_parallel results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 172.994385 - 0: The maximum resident set size (KB) = 437416 + 0: The total amount of wall time = 202.348695 + 0: The maximum resident set size (KB) = 437816 Test 024 control_wrtGauss_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c48 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_c48 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_c48 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/control_c48 Checking test 025 control_c48 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -1427,55 +1427,55 @@ Checking test 025 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 418.916595 -0: The maximum resident set size (KB) = 633364 +0: The total amount of wall time = 421.209655 +0: The maximum resident set size (KB) = 634780 Test 025 control_c48 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c192 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_c192 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_c192 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/control_c192 Checking test 026 control_c192 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 587.160161 - 0: The maximum resident set size (KB) = 541564 + 0: The total amount of wall time = 590.698489 + 0: The maximum resident set size (KB) = 544724 Test 026 control_c192 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c384 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_c384 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_c384 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/control_c384 Checking test 027 control_c384 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1109.222616 - 0: The maximum resident set size (KB) = 820240 + 0: The total amount of wall time = 1116.398335 + 0: The maximum resident set size (KB) = 823096 Test 027 control_c384 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c384gdas -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_c384gdas +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_c384gdas +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/control_c384gdas Checking test 028 control_c384gdas results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf006.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF06 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -1513,71 +1513,71 @@ Checking test 028 control_c384gdas 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 = 939.986168 - 0: The maximum resident set size (KB) = 953256 + 0: The total amount of wall time = 946.437792 + 0: The maximum resident set size (KB) = 954740 Test 028 control_c384gdas PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_stochy +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_stochy +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/control_stochy Checking test 029 control_stochy results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 99.753568 - 0: The maximum resident set size (KB) = 440988 + 0: The total amount of wall time = 101.664406 + 0: The maximum resident set size (KB) = 441380 Test 029 control_stochy PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_stochy_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_stochy +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/control_stochy_restart Checking test 030 control_stochy_restart results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 53.982646 - 0: The maximum resident set size (KB) = 195020 + 0: The total amount of wall time = 52.479023 + 0: The maximum resident set size (KB) = 195784 Test 030 control_stochy_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_lndp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_lndp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_lndp +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/control_lndp Checking test 031 control_lndp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 92.447828 - 0: The maximum resident set size (KB) = 440772 + 0: The total amount of wall time = 92.521995 + 0: The maximum resident set size (KB) = 440876 Test 031 control_lndp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_iovr4 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_iovr4 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_iovr4 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/control_iovr4 Checking test 032 control_iovr4 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1585,21 +1585,21 @@ Checking test 032 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 149.626563 - 0: The maximum resident set size (KB) = 437472 + 0: The total amount of wall time = 151.094709 + 0: The maximum resident set size (KB) = 437772 Test 032 control_iovr4 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_iovr5 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_iovr5 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_iovr5 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/control_iovr5 Checking test 033 control_iovr5 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1607,21 +1607,21 @@ Checking test 033 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 149.575617 - 0: The maximum resident set size (KB) = 437420 + 0: The total amount of wall time = 173.289795 + 0: The maximum resident set size (KB) = 437816 Test 033 control_iovr5 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/control_p8 Checking test 034 control_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1661,17 +1661,17 @@ Checking test 034 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 212.232370 - 0: The maximum resident set size (KB) = 1379372 + 0: The total amount of wall time = 203.332097 + 0: The maximum resident set size (KB) = 1380064 Test 034 control_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_restart_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/control_restart_p8 Checking test 035 control_restart_p8 results .... - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -1707,21 +1707,21 @@ Checking test 035 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 114.269916 - 0: The maximum resident set size (KB) = 556380 + 0: The total amount of wall time = 113.868484 + 0: The maximum resident set size (KB) = 556668 Test 035 control_restart_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_qr_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/control_qr_p8 Checking test 036 control_qr_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1761,17 +1761,17 @@ Checking test 036 control_qr_p8 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 = 201.100252 - 0: The maximum resident set size (KB) = 1384332 + 0: The total amount of wall time = 202.753107 + 0: The maximum resident set size (KB) = 1383284 Test 036 control_qr_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_restart_qr_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/control_restart_qr_p8 Checking test 037 control_restart_qr_p8 results .... - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -1807,19 +1807,19 @@ Checking test 037 control_restart_qr_p8 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 = 107.433676 - 0: The maximum resident set size (KB) = 581320 + 0: The total amount of wall time = 113.283489 + 0: The maximum resident set size (KB) = 581496 Test 037 control_restart_qr_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_decomp_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/control_decomp_p8 Checking test 038 control_decomp_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing 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 @@ -1857,19 +1857,19 @@ Checking test 038 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 205.118906 - 0: The maximum resident set size (KB) = 1374260 + 0: The total amount of wall time = 209.766487 + 0: The maximum resident set size (KB) = 1373956 Test 038 control_decomp_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_2threads_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/control_2threads_p8 Checking test 039 control_2threads_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing 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 @@ -1907,23 +1907,23 @@ Checking test 039 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 189.408079 - 0: The maximum resident set size (KB) = 1459440 + 0: The total amount of wall time = 189.609388 + 0: The maximum resident set size (KB) = 1464144 Test 039 control_2threads_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_lndp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_p8_lndp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8_lndp +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/control_p8_lndp Checking test 040 control_p8_lndp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing sfcf048.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK - Comparing atmf048.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing sfcf048.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing atmf048.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1933,21 +1933,21 @@ Checking test 040 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 352.754779 - 0: The maximum resident set size (KB) = 1379748 + 0: The total amount of wall time = 353.432983 + 0: The maximum resident set size (KB) = 1381164 Test 040 control_p8_lndp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_rrtmgp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_p8_rrtmgp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8_rrtmgp +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/control_p8_rrtmgp Checking test 041 control_p8_rrtmgp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1987,21 +1987,21 @@ Checking test 041 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 267.281502 - 0: The maximum resident set size (KB) = 1437264 + 0: The total amount of wall time = 273.800419 + 0: The maximum resident set size (KB) = 1437480 Test 041 control_p8_rrtmgp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_mynn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_p8_mynn +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8_mynn +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/control_p8_mynn Checking test 042 control_p8_mynn results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2041,21 +2041,21 @@ Checking test 042 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 208.890805 - 0: The maximum resident set size (KB) = 1383664 + 0: The total amount of wall time = 205.460321 + 0: The maximum resident set size (KB) = 1384124 Test 042 control_p8_mynn PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/merra2_thompson -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/merra2_thompson +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/merra2_thompson +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/merra2_thompson Checking test 043 merra2_thompson results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2095,114 +2095,114 @@ Checking test 043 merra2_thompson results .... Comparing 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.086013 - 0: The maximum resident set size (KB) = 1385236 + 0: The total amount of wall time = 225.040739 + 0: The maximum resident set size (KB) = 1385508 Test 043 merra2_thompson PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/regional_control +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/regional_control Checking test 044 regional_control results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 336.843324 - 0: The maximum resident set size (KB) = 578216 + 0: The total amount of wall time = 372.787945 + 0: The maximum resident set size (KB) = 578856 Test 044 regional_control PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/regional_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/regional_restart Checking test 045 regional_restart results .... - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf006.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 185.706293 - 0: The maximum resident set size (KB) = 577692 + 0: The total amount of wall time = 176.448811 + 0: The maximum resident set size (KB) = 578584 Test 045 regional_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/regional_control_qr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/regional_control_qr Checking test 046 regional_control_qr results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 331.067460 - 0: The maximum resident set size (KB) = 578236 + 0: The total amount of wall time = 352.725543 + 0: The maximum resident set size (KB) = 578964 Test 046 regional_control_qr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/regional_restart_qr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/regional_restart_qr Checking test 047 regional_restart_qr results .... - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf006.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 191.604081 - 0: The maximum resident set size (KB) = 577676 + 0: The total amount of wall time = 186.317886 + 0: The maximum resident set size (KB) = 578592 Test 047 regional_restart_qr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/regional_decomp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/regional_decomp Checking test 048 regional_decomp results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 349.320619 - 0: The maximum resident set size (KB) = 581100 + 0: The total amount of wall time = 346.398887 + 0: The maximum resident set size (KB) = 580756 Test 048 regional_decomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/regional_2threads +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/regional_2threads Checking test 049 regional_2threads results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 213.245038 - 0: The maximum resident set size (KB) = 584848 + 0: The total amount of wall time = 220.099107 + 0: The maximum resident set size (KB) = 585352 Test 049 regional_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_noquilt -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/regional_noquilt +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_noquilt +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/regional_noquilt Checking test 050 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2210,71 +2210,71 @@ Checking test 050 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 370.587252 - 0: The maximum resident set size (KB) = 573728 + 0: The total amount of wall time = 371.085026 + 0: The maximum resident set size (KB) = 573128 Test 050 regional_noquilt PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_netcdf_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/regional_netcdf_parallel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_netcdf_parallel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/regional_netcdf_parallel Checking test 051 regional_netcdf_parallel results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK - 0: The total amount of wall time = 382.100335 - 0: The maximum resident set size (KB) = 578120 + 0: The total amount of wall time = 352.110650 + 0: The maximum resident set size (KB) = 578620 Test 051 regional_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/regional_2dwrtdecomp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/regional_2dwrtdecomp Checking test 052 regional_2dwrtdecomp results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 351.489739 - 0: The maximum resident set size (KB) = 578260 + 0: The total amount of wall time = 348.466728 + 0: The maximum resident set size (KB) = 578952 Test 052 regional_2dwrtdecomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/fv3_regional_wofs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/regional_wofs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/fv3_regional_wofs +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/regional_wofs Checking test 053 regional_wofs results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 417.724831 - 0: The maximum resident set size (KB) = 264068 + 0: The total amount of wall time = 421.710683 + 0: The maximum resident set size (KB) = 263764 Test 053 regional_wofs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rap_control +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/rap_control Checking test 054 rap_control results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2314,39 +2314,39 @@ Checking test 054 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 484.987348 - 0: The maximum resident set size (KB) = 810552 + 0: The total amount of wall time = 488.192699 + 0: The maximum resident set size (KB) = 808048 Test 054 rap_control PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_spp_sppt_shum_skeb -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/regional_spp_sppt_shum_skeb +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_spp_sppt_shum_skeb +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/regional_spp_sppt_shum_skeb Checking test 055 regional_spp_sppt_shum_skeb results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf001.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf001.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF01 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 279.936298 - 0: The maximum resident set size (KB) = 901072 + 0: The total amount of wall time = 276.231184 + 0: The maximum resident set size (KB) = 908112 Test 055 regional_spp_sppt_shum_skeb PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rap_decomp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/rap_decomp Checking test 056 rap_decomp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2386,21 +2386,21 @@ Checking test 056 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 501.473480 - 0: The maximum resident set size (KB) = 807240 + 0: The total amount of wall time = 502.508227 + 0: The maximum resident set size (KB) = 806472 Test 056 rap_decomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rap_2threads +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/rap_2threads Checking test 057 rap_2threads results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2440,17 +2440,17 @@ Checking test 057 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 457.443255 - 0: The maximum resident set size (KB) = 874812 + 0: The total amount of wall time = 459.782906 + 0: The maximum resident set size (KB) = 875124 Test 057 rap_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rap_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/rap_restart Checking test 058 rap_restart results .... - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -2486,21 +2486,21 @@ Checking test 058 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 244.617519 - 0: The maximum resident set size (KB) = 554128 + 0: The total amount of wall time = 245.059912 + 0: The maximum resident set size (KB) = 552740 Test 058 rap_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rap_sfcdiff +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_sfcdiff +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/rap_sfcdiff Checking test 059 rap_sfcdiff results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + 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 @@ -2540,21 +2540,21 @@ Checking test 059 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 480.981514 - 0: The maximum resident set size (KB) = 810728 + 0: The total amount of wall time = 486.899727 + 0: The maximum resident set size (KB) = 808044 Test 059 rap_sfcdiff PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rap_sfcdiff_decomp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_sfcdiff +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/rap_sfcdiff_decomp Checking test 060 rap_sfcdiff_decomp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + 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 @@ -2594,17 +2594,17 @@ Checking test 060 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 506.194124 - 0: The maximum resident set size (KB) = 807448 + 0: The total amount of wall time = 507.764785 + 0: The maximum resident set size (KB) = 806500 Test 060 rap_sfcdiff_decomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rap_sfcdiff_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_sfcdiff +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/rap_sfcdiff_restart Checking test 061 rap_sfcdiff_restart results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -2640,21 +2640,21 @@ Checking test 061 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 356.569488 - 0: The maximum resident set size (KB) = 551908 + 0: The total amount of wall time = 356.165266 + 0: The maximum resident set size (KB) = 552376 Test 061 rap_sfcdiff_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hrrr_control +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/hrrr_control Checking test 062 hrrr_control results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + 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 @@ -2694,21 +2694,21 @@ Checking test 062 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 461.293898 - 0: The maximum resident set size (KB) = 806764 + 0: The total amount of wall time = 465.522405 + 0: The maximum resident set size (KB) = 806036 Test 062 hrrr_control PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hrrr_control_decomp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/hrrr_control_decomp Checking test 063 hrrr_control_decomp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + 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 @@ -2748,21 +2748,21 @@ Checking test 063 hrrr_control_decomp results .... Comparing 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.888477 - 0: The maximum resident set size (KB) = 804872 + 0: The total amount of wall time = 486.746782 + 0: The maximum resident set size (KB) = 805484 Test 063 hrrr_control_decomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hrrr_control_2threads +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/hrrr_control_2threads Checking test 064 hrrr_control_2threads results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + 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 @@ -2802,17 +2802,17 @@ Checking test 064 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 441.866163 - 0: The maximum resident set size (KB) = 872440 + 0: The total amount of wall time = 438.603372 + 0: The maximum resident set size (KB) = 873064 Test 064 hrrr_control_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hrrr_control_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/hrrr_control_restart Checking test 065 hrrr_control_restart results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -2848,21 +2848,21 @@ Checking test 065 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 341.809375 - 0: The maximum resident set size (KB) = 550376 + 0: The total amount of wall time = 345.470751 + 0: The maximum resident set size (KB) = 547896 Test 065 hrrr_control_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1beta -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rrfs_v1beta +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_v1beta +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/rrfs_v1beta Checking test 066 rrfs_v1beta results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + 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 @@ -2902,21 +2902,21 @@ Checking test 066 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 479.697226 - 0: The maximum resident set size (KB) = 802796 + 0: The total amount of wall time = 476.775106 + 0: The maximum resident set size (KB) = 805016 Test 066 rrfs_v1beta PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1nssl -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rrfs_v1nssl +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_v1nssl +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/rrfs_v1nssl Checking test 067 rrfs_v1nssl results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + 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 @@ -2924,21 +2924,21 @@ Checking test 067 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 583.998688 - 0: The maximum resident set size (KB) = 494552 + 0: The total amount of wall time = 590.661374 + 0: The maximum resident set size (KB) = 493488 Test 067 rrfs_v1nssl PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rrfs_v1nssl_nohailnoccn +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/rrfs_v1nssl_nohailnoccn Checking test 068 rrfs_v1nssl_nohailnoccn results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + 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 @@ -2946,133 +2946,145 @@ Checking test 068 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 571.948953 - 0: The maximum resident set size (KB) = 486236 + 0: The total amount of wall time = 568.490251 + 0: The maximum resident set size (KB) = 485888 Test 068 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/rrfs_smoke_conus13km_hrrr_warm Checking test 069 rrfs_smoke_conus13km_hrrr_warm results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing sfcf002.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - Comparing atmf002.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK - 0: The total amount of wall time = 185.077652 - 0: The maximum resident set size (KB) = 654364 + 0: The total amount of wall time = 190.648618 + 0: The maximum resident set size (KB) = 658128 Test 069 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 070 rrfs_smoke_conus13km_hrrr_warm_2threads results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing sfcf002.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - Comparing atmf002.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK - 0: The total amount of wall time = 137.949257 - 0: The maximum resident set size (KB) = 666824 + 0: The total amount of wall time = 130.345413 + 0: The maximum resident set size (KB) = 670888 Test 070 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rrfs_conus13km_hrrr_warm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/rrfs_conus13km_hrrr_warm Checking test 071 rrfs_conus13km_hrrr_warm results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing sfcf002.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - Comparing atmf002.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK - 0: The total amount of wall time = 169.476955 - 0: The maximum resident set size (KB) = 633412 + 0: The total amount of wall time = 172.184682 + 0: The maximum resident set size (KB) = 635288 Test 071 rrfs_conus13km_hrrr_warm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/rrfs_smoke_conus13km_radar_tten_warm Checking test 072 rrfs_smoke_conus13km_radar_tten_warm results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing sfcf002.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - Comparing atmf002.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK - 0: The total amount of wall time = 185.527589 - 0: The maximum resident set size (KB) = 657944 + 0: The total amount of wall time = 190.917680 + 0: The maximum resident set size (KB) = 660800 Test 072 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmgt -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_csawmgt -Checking test 073 control_csawmgt results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/rrfs_conus13km_hrrr_warm_restart_mismatch +Checking test 073 rrfs_conus13km_hrrr_warm_restart_mismatch results .... + Comparing sfcf002.nc .........OK + Comparing atmf002.nc .........OK + + 0: The total amount of wall time = 96.387111 + 0: The maximum resident set size (KB) = 615396 + +Test 073 rrfs_conus13km_hrrr_warm_restart_mismatch PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_csawmgt +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/control_csawmgt +Checking test 074 control_csawmgt results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 395.957352 - 0: The maximum resident set size (KB) = 504592 + 0: The total amount of wall time = 395.504846 + 0: The maximum resident set size (KB) = 502644 -Test 073 control_csawmgt PASS +Test 074 control_csawmgt PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_ras -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_ras -Checking test 074 control_ras results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_ras +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/control_ras +Checking test 075 control_ras results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 202.886128 - 0: The maximum resident set size (KB) = 472688 + 0: The total amount of wall time = 201.640236 + 0: The maximum resident set size (KB) = 472816 -Test 074 control_ras PASS +Test 075 control_ras PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wam -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_wam -Checking test 075 control_wam results .... - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_wam +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/control_wam +Checking test 076 control_wam results .... + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK - 0: The total amount of wall time = 128.475041 - 0: The maximum resident set size (KB) = 188480 + 0: The total amount of wall time = 126.139231 + 0: The maximum resident set size (KB) = 188804 -Test 075 control_wam PASS +Test 076 control_wam PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_faster -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_p8_faster -Checking test 076 control_p8_faster results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8_faster +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/control_p8_faster +Checking test 077 control_p8_faster results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -3112,75 +3124,75 @@ Checking test 076 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 192.210239 - 0: The maximum resident set size (KB) = 1379364 + 0: The total amount of wall time = 186.820543 + 0: The maximum resident set size (KB) = 1380084 -Test 076 control_p8_faster PASS +Test 077 control_p8_faster PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control_faster -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/regional_control_faster -Checking test 077 regional_control_faster results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control_faster +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/regional_control_faster +Checking test 078 regional_control_faster results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 310.882780 - 0: The maximum resident set size (KB) = 577968 + 0: The total amount of wall time = 318.315236 + 0: The maximum resident set size (KB) = 578712 -Test 077 regional_control_faster PASS +Test 078 regional_control_faster PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rrfs_smoke_conus13km_hrrr_warm_debug -Checking test 078 rrfs_smoke_conus13km_hrrr_warm_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/rrfs_smoke_conus13km_hrrr_warm_debug +Checking test 079 rrfs_smoke_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 912.123097 - 0: The maximum resident set size (KB) = 691712 + 0: The total amount of wall time = 913.704758 + 0: The maximum resident set size (KB) = 692440 -Test 078 rrfs_smoke_conus13km_hrrr_warm_debug PASS +Test 079 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rrfs_smoke_conus13km_hrrr_warm_debug_2threads -Checking test 079 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +Checking test 080 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 536.992019 - 0: The maximum resident set size (KB) = 705360 + 0: The total amount of wall time = 538.025806 + 0: The maximum resident set size (KB) = 704928 -Test 079 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS +Test 080 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rrfs_conus13km_hrrr_warm_debug -Checking test 080 rrfs_conus13km_hrrr_warm_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/rrfs_conus13km_hrrr_warm_debug +Checking test 081 rrfs_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 814.393137 - 0: The maximum resident set size (KB) = 666220 + 0: The total amount of wall time = 825.934387 + 0: The maximum resident set size (KB) = 667360 -Test 080 rrfs_conus13km_hrrr_warm_debug PASS +Test 081 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_CubedSphereGrid_debug -Checking test 081 control_CubedSphereGrid_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_CubedSphereGrid_debug +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/control_CubedSphereGrid_debug +Checking test 082 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3206,359 +3218,359 @@ Checking test 081 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 170.699163 - 0: The maximum resident set size (KB) = 601836 + 0: The total amount of wall time = 168.437471 + 0: The maximum resident set size (KB) = 604892 -Test 081 control_CubedSphereGrid_debug PASS +Test 082 control_CubedSphereGrid_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_wrtGauss_netcdf_parallel_debug -Checking test 082 control_wrtGauss_netcdf_parallel_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/control_wrtGauss_netcdf_parallel_debug +Checking test 083 control_wrtGauss_netcdf_parallel_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 174.268671 - 0: The maximum resident set size (KB) = 601812 + 0: The total amount of wall time = 223.680027 + 0: The maximum resident set size (KB) = 602272 -Test 082 control_wrtGauss_netcdf_parallel_debug PASS +Test 083 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_stochy_debug -Checking test 083 control_stochy_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_stochy_debug +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/control_stochy_debug +Checking test 084 control_stochy_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 181.232435 - 0: The maximum resident set size (KB) = 608256 + 0: The total amount of wall time = 185.100701 + 0: The maximum resident set size (KB) = 607248 -Test 083 control_stochy_debug PASS +Test 084 control_stochy_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_lndp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_lndp_debug -Checking test 084 control_lndp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_lndp_debug +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/control_lndp_debug +Checking test 085 control_lndp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 161.916090 - 0: The maximum resident set size (KB) = 606448 + 0: The total amount of wall time = 162.382466 + 0: The maximum resident set size (KB) = 606836 -Test 084 control_lndp_debug PASS +Test 085 control_lndp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmg_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_csawmg_debug -Checking test 085 control_csawmg_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_csawmg_debug +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/control_csawmg_debug +Checking test 086 control_csawmg_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 260.880860 - 0: The maximum resident set size (KB) = 643644 + 0: The total amount of wall time = 269.179325 + 0: The maximum resident set size (KB) = 644088 -Test 085 control_csawmg_debug PASS +Test 086 control_csawmg_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmgt_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_csawmgt_debug -Checking test 086 control_csawmgt_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_csawmgt_debug +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/control_csawmgt_debug +Checking test 087 control_csawmgt_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 256.240132 - 0: The maximum resident set size (KB) = 643052 + 0: The total amount of wall time = 259.584086 + 0: The maximum resident set size (KB) = 643680 -Test 086 control_csawmgt_debug PASS +Test 087 control_csawmgt_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_ras_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_ras_debug -Checking test 087 control_ras_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_ras_debug +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/control_ras_debug +Checking test 088 control_ras_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 163.923865 - 0: The maximum resident set size (KB) = 615432 + 0: The total amount of wall time = 167.192508 + 0: The maximum resident set size (KB) = 615868 -Test 087 control_ras_debug PASS +Test 088 control_ras_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_diag_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_diag_debug -Checking test 088 control_diag_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_diag_debug +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/control_diag_debug +Checking test 089 control_diag_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 169.948889 - 0: The maximum resident set size (KB) = 661376 + 0: The total amount of wall time = 167.988475 + 0: The maximum resident set size (KB) = 661716 -Test 088 control_diag_debug PASS +Test 089 control_diag_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_debug_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_debug_p8 -Checking test 089 control_debug_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_debug_p8 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/control_debug_p8 +Checking test 090 control_debug_p8 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 191.857740 - 0: The maximum resident set size (KB) = 1379508 + 0: The total amount of wall time = 193.218900 + 0: The maximum resident set size (KB) = 1382832 -Test 089 control_debug_p8 PASS +Test 090 control_debug_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/regional_debug -Checking test 090 regional_debug results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf001.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf001.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_debug +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/regional_debug +Checking test 091 regional_debug results .... + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1052.454374 - 0: The maximum resident set size (KB) = 607520 + 0: The total amount of wall time = 1044.641443 + 0: The maximum resident set size (KB) = 608464 -Test 090 regional_debug PASS +Test 091 regional_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rap_control_debug -Checking test 091 rap_control_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_debug +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/rap_control_debug +Checking test 092 rap_control_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 298.845346 - 0: The maximum resident set size (KB) = 973372 + 0: The total amount of wall time = 298.262950 + 0: The maximum resident set size (KB) = 973044 -Test 091 rap_control_debug PASS +Test 092 rap_control_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hrrr_control_debug -Checking test 092 hrrr_control_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_debug +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/hrrr_control_debug +Checking test 093 hrrr_control_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 292.536477 - 0: The maximum resident set size (KB) = 970760 + 0: The total amount of wall time = 291.182432 + 0: The maximum resident set size (KB) = 971528 -Test 092 hrrr_control_debug PASS +Test 093 hrrr_control_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rap_unified_drag_suite_debug -Checking test 093 rap_unified_drag_suite_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_debug +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/rap_unified_drag_suite_debug +Checking test 094 rap_unified_drag_suite_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 296.355439 - 0: The maximum resident set size (KB) = 973368 + 0: The total amount of wall time = 295.465182 + 0: The maximum resident set size (KB) = 973144 -Test 093 rap_unified_drag_suite_debug PASS +Test 094 rap_unified_drag_suite_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_diag_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rap_diag_debug -Checking test 094 rap_diag_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_diag_debug +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/rap_diag_debug +Checking test 095 rap_diag_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 313.961530 - 0: The maximum resident set size (KB) = 1056284 + 0: The total amount of wall time = 311.063910 + 0: The maximum resident set size (KB) = 1056896 -Test 094 rap_diag_debug PASS +Test 095 rap_diag_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_cires_ugwp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rap_cires_ugwp_debug -Checking test 095 rap_cires_ugwp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_cires_ugwp_debug +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/rap_cires_ugwp_debug +Checking test 096 rap_cires_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 300.570701 - 0: The maximum resident set size (KB) = 971972 + 0: The total amount of wall time = 304.208497 + 0: The maximum resident set size (KB) = 972512 -Test 095 rap_cires_ugwp_debug PASS +Test 096 rap_cires_ugwp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_cires_ugwp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rap_unified_ugwp_debug -Checking test 096 rap_unified_ugwp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_cires_ugwp_debug +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/rap_unified_ugwp_debug +Checking test 097 rap_unified_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 302.235234 - 0: The maximum resident set size (KB) = 972752 + 0: The total amount of wall time = 301.585530 + 0: The maximum resident set size (KB) = 974412 -Test 096 rap_unified_ugwp_debug PASS +Test 097 rap_unified_ugwp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_lndp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rap_lndp_debug -Checking test 097 rap_lndp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_lndp_debug +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/rap_lndp_debug +Checking test 098 rap_lndp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 296.741414 - 0: The maximum resident set size (KB) = 974000 + 0: The total amount of wall time = 300.319799 + 0: The maximum resident set size (KB) = 973832 -Test 097 rap_lndp_debug PASS +Test 098 rap_lndp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_flake_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rap_flake_debug -Checking test 098 rap_flake_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_flake_debug +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/rap_flake_debug +Checking test 099 rap_flake_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 293.247714 - 0: The maximum resident set size (KB) = 973408 + 0: The total amount of wall time = 301.468220 + 0: The maximum resident set size (KB) = 972844 -Test 098 rap_flake_debug PASS +Test 099 rap_flake_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_progcld_thompson_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rap_progcld_thompson_debug -Checking test 099 rap_progcld_thompson_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_progcld_thompson_debug +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/rap_progcld_thompson_debug +Checking test 100 rap_progcld_thompson_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 294.579158 - 0: The maximum resident set size (KB) = 973312 + 0: The total amount of wall time = 297.331269 + 0: The maximum resident set size (KB) = 973108 -Test 099 rap_progcld_thompson_debug PASS +Test 100 rap_progcld_thompson_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_noah_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rap_noah_debug -Checking test 100 rap_noah_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_noah_debug +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/rap_noah_debug +Checking test 101 rap_noah_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 287.547824 - 0: The maximum resident set size (KB) = 971208 + 0: The total amount of wall time = 304.084059 + 0: The maximum resident set size (KB) = 971836 -Test 100 rap_noah_debug PASS +Test 101 rap_noah_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rap_sfcdiff_debug -Checking test 101 rap_sfcdiff_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_sfcdiff_debug +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/rap_sfcdiff_debug +Checking test 102 rap_sfcdiff_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 293.593608 - 0: The maximum resident set size (KB) = 973152 + 0: The total amount of wall time = 296.709904 + 0: The maximum resident set size (KB) = 973036 -Test 101 rap_sfcdiff_debug PASS +Test 102 rap_sfcdiff_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 102 rap_noah_sfcdiff_cires_ugwp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 103 rap_noah_sfcdiff_cires_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 480.359822 - 0: The maximum resident set size (KB) = 971148 + 0: The total amount of wall time = 482.103591 + 0: The maximum resident set size (KB) = 971432 -Test 102 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 103 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1beta_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rrfs_v1beta_debug -Checking test 103 rrfs_v1beta_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_v1beta_debug +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/rrfs_v1beta_debug +Checking test 104 rrfs_v1beta_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 287.538189 - 0: The maximum resident set size (KB) = 968944 + 0: The total amount of wall time = 290.456532 + 0: The maximum resident set size (KB) = 968960 -Test 103 rrfs_v1beta_debug PASS +Test 104 rrfs_v1beta_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wam_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_wam_debug -Checking test 104 control_wam_debug results .... - Comparing sfcf019.nc ............ALT CHECK......OK - Comparing atmf019.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_wam_debug +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/control_wam_debug +Checking test 105 control_wam_debug results .... + Comparing sfcf019.nc .........OK + Comparing atmf019.nc .........OK - 0: The total amount of wall time = 292.499915 - 0: The maximum resident set size (KB) = 219740 + 0: The total amount of wall time = 295.193040 + 0: The maximum resident set size (KB) = 220444 -Test 104 control_wam_debug PASS +Test 105 control_wam_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/regional_spp_sppt_shum_skeb_dyn32_phy32 -Checking test 105 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf001.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf001.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF01 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 251.491939 - 0: The maximum resident set size (KB) = 801368 + 0: The total amount of wall time = 269.983197 + 0: The maximum resident set size (KB) = 803152 -Test 105 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS +Test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rap_control_dyn32_phy32 -Checking test 106 rap_control_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_dyn32_phy32 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/rap_control_dyn32_phy32 +Checking test 107 rap_control_dyn32_phy32 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 @@ -3598,21 +3610,21 @@ Checking test 106 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 392.416681 - 0: The maximum resident set size (KB) = 690864 + 0: The total amount of wall time = 402.120967 + 0: The maximum resident set size (KB) = 691380 -Test 106 rap_control_dyn32_phy32 PASS +Test 107 rap_control_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hrrr_control_dyn32_phy32 -Checking test 107 hrrr_control_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_dyn32_phy32 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/hrrr_control_dyn32_phy32 +Checking test 108 hrrr_control_dyn32_phy32 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 @@ -3652,21 +3664,21 @@ Checking test 107 hrrr_control_dyn32_phy32 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 = 207.292863 - 0: The maximum resident set size (KB) = 689072 + 0: The total amount of wall time = 224.217071 + 0: The maximum resident set size (KB) = 689892 -Test 107 hrrr_control_dyn32_phy32 PASS +Test 108 hrrr_control_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rap_2threads_dyn32_phy32 -Checking test 108 rap_2threads_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_dyn32_phy32 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/rap_2threads_dyn32_phy32 +Checking test 109 rap_2threads_dyn32_phy32 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 @@ -3706,21 +3718,21 @@ Checking test 108 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 387.469887 - 0: The maximum resident set size (KB) = 747176 + 0: The total amount of wall time = 385.227372 + 0: The maximum resident set size (KB) = 743472 -Test 108 rap_2threads_dyn32_phy32 PASS +Test 109 rap_2threads_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hrrr_control_2threads_dyn32_phy32 -Checking test 109 hrrr_control_2threads_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_dyn32_phy32 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/hrrr_control_2threads_dyn32_phy32 +Checking test 110 hrrr_control_2threads_dyn32_phy32 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 @@ -3760,21 +3772,21 @@ Checking test 109 hrrr_control_2threads_dyn32_phy32 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 = 200.989145 - 0: The maximum resident set size (KB) = 739512 + 0: The total amount of wall time = 202.031306 + 0: The maximum resident set size (KB) = 741224 -Test 109 hrrr_control_2threads_dyn32_phy32 PASS +Test 110 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hrrr_control_decomp_dyn32_phy32 -Checking test 110 hrrr_control_decomp_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_dyn32_phy32 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/hrrr_control_decomp_dyn32_phy32 +Checking test 111 hrrr_control_decomp_dyn32_phy32 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 @@ -3814,17 +3826,17 @@ Checking test 110 hrrr_control_decomp_dyn32_phy32 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 = 222.258087 - 0: The maximum resident set size (KB) = 688680 + 0: The total amount of wall time = 222.970065 + 0: The maximum resident set size (KB) = 688516 -Test 110 hrrr_control_decomp_dyn32_phy32 PASS +Test 111 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rap_restart_dyn32_phy32 -Checking test 111 rap_restart_dyn32_phy32 results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_dyn32_phy32 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/rap_restart_dyn32_phy32 +Checking test 112 rap_restart_dyn32_phy32 results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -3860,17 +3872,17 @@ Checking test 111 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 300.142733 - 0: The maximum resident set size (KB) = 525460 + 0: The total amount of wall time = 297.050560 + 0: The maximum resident set size (KB) = 526376 -Test 111 rap_restart_dyn32_phy32 PASS +Test 112 rap_restart_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hrrr_control_restart_dyn32_phy32 -Checking test 112 hrrr_control_restart_dyn32_phy32 results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_dyn32_phy32 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/hrrr_control_restart_dyn32_phy32 +Checking test 113 hrrr_control_restart_dyn32_phy32 results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.180000.coupler.res .........OK @@ -3906,21 +3918,21 @@ Checking test 112 hrrr_control_restart_dyn32_phy32 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 = 113.723527 - 0: The maximum resident set size (KB) = 517532 + 0: The total amount of wall time = 108.889903 + 0: The maximum resident set size (KB) = 518612 -Test 112 hrrr_control_restart_dyn32_phy32 PASS +Test 113 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn64_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rap_control_dyn64_phy32 -Checking test 113 rap_control_dyn64_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_dyn64_phy32 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/rap_control_dyn64_phy32 +Checking test 114 rap_control_dyn64_phy32 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 @@ -3960,440 +3972,174 @@ Checking test 113 rap_control_dyn64_phy32 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 = 265.451627 - 0: The maximum resident set size (KB) = 709196 - -Test 113 rap_control_dyn64_phy32 PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rap_control_debug_dyn32_phy32 -Checking test 114 rap_control_debug_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK + 0: The total amount of wall time = 271.622746 + 0: The maximum resident set size (KB) = 713460 - 0: The total amount of wall time = 289.760414 - 0: The maximum resident set size (KB) = 858328 +Test 114 rap_control_dyn64_phy32 PASS -Test 114 rap_control_debug_dyn32_phy32 PASS +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/rap_control_debug_dyn32_phy32 +Checking test 115 rap_control_debug_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hrrr_control_debug_dyn32_phy32 -Checking test 115 hrrr_control_debug_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK + 0: The total amount of wall time = 294.439047 + 0: The maximum resident set size (KB) = 858448 - 0: The total amount of wall time = 286.125418 - 0: The maximum resident set size (KB) = 855304 +Test 115 rap_control_debug_dyn32_phy32 PASS -Test 115 hrrr_control_debug_dyn32_phy32 PASS +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/hrrr_control_debug_dyn32_phy32 +Checking test 116 hrrr_control_debug_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/rap_control_dyn64_phy32_debug -Checking test 116 rap_control_dyn64_phy32_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK + 0: The total amount of wall time = 292.519738 + 0: The maximum resident set size (KB) = 855776 - 0: The total amount of wall time = 298.125925 - 0: The maximum resident set size (KB) = 874420 +Test 116 hrrr_control_debug_dyn32_phy32 PASS -Test 116 rap_control_dyn64_phy32_debug PASS +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/rap_control_dyn64_phy32_debug +Checking test 117 rap_control_dyn64_phy32_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hafs_regional_atm -Checking test 117 hafs_regional_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing HURPRS.GrbF06 .........OK + 0: The total amount of wall time = 299.443424 + 0: The maximum resident set size (KB) = 879192 - 0: The total amount of wall time = 1256.911066 - 0: The maximum resident set size (KB) = 686668 +Test 117 rap_control_dyn64_phy32_debug PASS -Test 117 hafs_regional_atm PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hafs_regional_atm_thompson_gfdlsf -Checking test 118 hafs_regional_atm_thompson_gfdlsf results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - - 0: The total amount of wall time = 311.779877 - 0: The maximum resident set size (KB) = 1040424 - -Test 118 hafs_regional_atm_thompson_gfdlsf PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_ocn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hafs_regional_atm_ocn -Checking test 119 hafs_regional_atm_ocn results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing archv.2019_241_06.a .........OK - Comparing archs.2019_241_06.a .........OK - Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - - 0: The total amount of wall time = 448.133317 - 0: The maximum resident set size (KB) = 714464 - -Test 119 hafs_regional_atm_ocn PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_wav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hafs_regional_atm_wav -Checking test 120 hafs_regional_atm_wav results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing out_grd.ww3 .........OK - Comparing out_pnt.ww3 .........OK - Comparing 20190829.060000.restart.ww3 .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - - 0: The total amount of wall time = 947.500191 - 0: The maximum resident set size (KB) = 748172 - -Test 120 hafs_regional_atm_wav PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_ocn_wav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hafs_regional_atm_ocn_wav -Checking test 121 hafs_regional_atm_ocn_wav results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing archv.2019_241_06.a .........OK - Comparing archs.2019_241_06.a .........OK - Comparing out_grd.ww3 .........OK - Comparing out_pnt.ww3 .........OK - Comparing 20190829.060000.restart.ww3 .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 1042.676044 - 0: The maximum resident set size (KB) = 767244 - -Test 121 hafs_regional_atm_ocn_wav PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hafs_regional_1nest_atm -Checking test 122 hafs_regional_1nest_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 380.797829 - 0: The maximum resident set size (KB) = 278348 - -Test 122 hafs_regional_1nest_atm PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hafs_regional_telescopic_2nests_atm -Checking test 123 hafs_regional_telescopic_2nests_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK - Comparing atm.nest03.f006.nc ............ALT CHECK......OK - Comparing sfc.nest03.f006.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 434.305730 - 0: The maximum resident set size (KB) = 286512 - -Test 123 hafs_regional_telescopic_2nests_atm PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hafs_global_1nest_atm -Checking test 124 hafs_global_1nest_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 169.069145 - 0: The maximum resident set size (KB) = 183636 - -Test 124 hafs_global_1nest_atm PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_multiple_4nests_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hafs_global_multiple_4nests_atm -Checking test 125 hafs_global_multiple_4nests_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK - Comparing atm.nest03.f006.nc ............ALT CHECK......OK - Comparing sfc.nest03.f006.nc ............ALT CHECK......OK - Comparing atm.nest04.f006.nc ............ALT CHECK......OK - Comparing sfc.nest04.f006.nc ............ALT CHECK......OK - Comparing atm.nest05.f006.nc ............ALT CHECK......OK - Comparing sfc.nest05.f006.nc ............ALT CHECK......OK - Comparing HURPRS.GrbF06 .........OK - Comparing HURPRS.GrbF06.nest02 .........OK - Comparing HURPRS.GrbF06.nest03 .........OK - Comparing HURPRS.GrbF06.nest04 .........OK - Comparing HURPRS.GrbF06.nest05 .........OK - - 0: The total amount of wall time = 492.462011 - 0: The maximum resident set size (KB) = 232212 - -Test 125 hafs_global_multiple_4nests_atm PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hafs_regional_specified_moving_1nest_atm -Checking test 126 hafs_regional_specified_moving_1nest_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK - Comparing HURPRS.GrbF06 .........OK - Comparing HURPRS.GrbF06.nest02 .........OK - - 0: The total amount of wall time = 245.612311 - 0: The maximum resident set size (KB) = 294344 - -Test 126 hafs_regional_specified_moving_1nest_atm PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hafs_regional_storm_following_1nest_atm -Checking test 127 hafs_regional_storm_following_1nest_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 232.885916 - 0: The maximum resident set size (KB) = 294312 - -Test 127 hafs_regional_storm_following_1nest_atm PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hafs_regional_storm_following_1nest_atm_ocn -Checking test 128 hafs_regional_storm_following_1nest_atm_ocn results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK - Comparing archv.2020_238_18.a .........OK - Comparing archs.2020_238_18.a .........OK - - 0: The total amount of wall time = 276.999595 - 0: The maximum resident set size (KB) = 322228 - -Test 128 hafs_regional_storm_following_1nest_atm_ocn PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hafs_global_storm_following_1nest_atm -Checking test 129 hafs_global_storm_following_1nest_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 71.904632 - 0: The maximum resident set size (KB) = 202432 - -Test 129 hafs_global_storm_following_1nest_atm PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hafs_regional_storm_following_1nest_atm_ocn_debug -Checking test 130 hafs_regional_storm_following_1nest_atm_ocn_debug results .... - Comparing atmf001.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atm.nest02.f001.nc ............ALT CHECK......OK - Comparing sfc.nest02.f001.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 784.778295 - 0: The maximum resident set size (KB) = 352680 - -Test 130 hafs_regional_storm_following_1nest_atm_ocn_debug PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hafs_regional_storm_following_1nest_atm_ocn_wav -Checking test 131 hafs_regional_storm_following_1nest_atm_ocn_wav results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK - Comparing archv.2020_238_18.a .........OK - Comparing archs.2020_238_18.a .........OK - Comparing out_grd.ww3 .........OK - Comparing out_pnt.ww3 .........OK - - 0: The total amount of wall time = 724.270012 - 0: The maximum resident set size (KB) = 373228 - -Test 131 hafs_regional_storm_following_1nest_atm_ocn_wav PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_docn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hafs_regional_docn -Checking test 132 hafs_regional_docn results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - - 0: The total amount of wall time = 399.748864 - 0: The maximum resident set size (KB) = 725320 - -Test 132 hafs_regional_docn PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_docn_oisst -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hafs_regional_docn_oisst -Checking test 133 hafs_regional_docn_oisst results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - - 0: The total amount of wall time = 400.869164 - 0: The maximum resident set size (KB) = 710344 - -Test 133 hafs_regional_docn_oisst PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_datm_cdeps -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/hafs_regional_datm_cdeps -Checking test 134 hafs_regional_datm_cdeps results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_datm_cdeps +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/hafs_regional_datm_cdeps +Checking test 135 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 1170.387638 - 0: The maximum resident set size (KB) = 808904 + 0: The total amount of wall time = 1172.621769 + 0: The maximum resident set size (KB) = 809136 -Test 134 hafs_regional_datm_cdeps PASS +Test 118 hafs_regional_datm_cdeps PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/datm_cdeps_control_cfsr -Checking test 135 datm_cdeps_control_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/datm_cdeps_control_cfsr +Checking test 136 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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.670985 - 0: The maximum resident set size (KB) = 717508 + 0: The total amount of wall time = 166.363550 + 0: The maximum resident set size (KB) = 715852 -Test 135 datm_cdeps_control_cfsr PASS +Test 119 datm_cdeps_control_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/datm_cdeps_restart_cfsr -Checking test 136 datm_cdeps_restart_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/datm_cdeps_restart_cfsr +Checking test 137 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 109.034896 - 0: The maximum resident set size (KB) = 716008 + 0: The total amount of wall time = 96.689626 + 0: The maximum resident set size (KB) = 716048 -Test 136 datm_cdeps_restart_cfsr PASS +Test 120 datm_cdeps_restart_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/datm_cdeps_control_gefs -Checking test 137 datm_cdeps_control_gefs results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_control_gefs +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/datm_cdeps_control_gefs +Checking test 138 datm_cdeps_control_gefs 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 = 160.487001 - 0: The maximum resident set size (KB) = 600272 + 0: The total amount of wall time = 162.094019 + 0: The maximum resident set size (KB) = 602212 -Test 137 datm_cdeps_control_gefs PASS +Test 121 datm_cdeps_control_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_iau_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/datm_cdeps_iau_gefs -Checking test 138 datm_cdeps_iau_gefs results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_iau_gefs +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/datm_cdeps_iau_gefs +Checking test 139 datm_cdeps_iau_gefs 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 = 168.682819 - 0: The maximum resident set size (KB) = 593096 + 0: The total amount of wall time = 160.924738 + 0: The maximum resident set size (KB) = 600192 -Test 138 datm_cdeps_iau_gefs PASS +Test 122 datm_cdeps_iau_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_stochy_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/datm_cdeps_stochy_gefs -Checking test 139 datm_cdeps_stochy_gefs results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_stochy_gefs +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/datm_cdeps_stochy_gefs +Checking test 140 datm_cdeps_stochy_gefs 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 = 163.559153 - 0: The maximum resident set size (KB) = 601980 + 0: The total amount of wall time = 163.866958 + 0: The maximum resident set size (KB) = 597408 -Test 139 datm_cdeps_stochy_gefs PASS +Test 123 datm_cdeps_stochy_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/datm_cdeps_ciceC_cfsr -Checking test 140 datm_cdeps_ciceC_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_ciceC_cfsr +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/datm_cdeps_ciceC_cfsr +Checking test 141 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 169.967454 - 0: The maximum resident set size (KB) = 715940 + 0: The total amount of wall time = 169.080673 + 0: The maximum resident set size (KB) = 715796 -Test 140 datm_cdeps_ciceC_cfsr PASS +Test 124 datm_cdeps_ciceC_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_bulk_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/datm_cdeps_bulk_cfsr -Checking test 141 datm_cdeps_bulk_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_bulk_cfsr +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/datm_cdeps_bulk_cfsr +Checking test 142 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 167.750031 - 0: The maximum resident set size (KB) = 715872 + 0: The total amount of wall time = 169.206393 + 0: The maximum resident set size (KB) = 706024 -Test 141 datm_cdeps_bulk_cfsr PASS +Test 125 datm_cdeps_bulk_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_bulk_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/datm_cdeps_bulk_gefs -Checking test 142 datm_cdeps_bulk_gefs results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_bulk_gefs +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/datm_cdeps_bulk_gefs +Checking test 143 datm_cdeps_bulk_gefs 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 = 175.894890 - 0: The maximum resident set size (KB) = 600148 + 0: The total amount of wall time = 163.412764 + 0: The maximum resident set size (KB) = 601076 -Test 142 datm_cdeps_bulk_gefs PASS +Test 126 datm_cdeps_bulk_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_mx025_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/datm_cdeps_mx025_cfsr -Checking test 143 datm_cdeps_mx025_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_mx025_cfsr +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/datm_cdeps_mx025_cfsr +Checking test 144 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4401,126 +4147,143 @@ Checking test 143 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 480.036253 - 0: The maximum resident set size (KB) = 494472 - -Test 143 datm_cdeps_mx025_cfsr PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_mx025_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/datm_cdeps_mx025_gefs -Checking test 144 datm_cdeps_mx025_gefs results .... - Comparing RESTART/20111001.120000.MOM.res.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK - Comparing RESTART/iced.2011-10-01-43200.nc .........OK - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - - 0: The total amount of wall time = 469.219987 - 0: The maximum resident set size (KB) = 476252 + 0: The total amount of wall time = 428.574049 + 0: The maximum resident set size (KB) = 494344 -Test 144 datm_cdeps_mx025_gefs PASS +Test 127 datm_cdeps_mx025_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/datm_cdeps_multiple_files_cfsr -Checking test 145 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/datm_cdeps_multiple_files_cfsr +Checking test 146 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 168.089744 - 0: The maximum resident set size (KB) = 715664 + 0: The total amount of wall time = 167.810316 + 0: The maximum resident set size (KB) = 715792 -Test 145 datm_cdeps_multiple_files_cfsr PASS +Test 128 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/datm_cdeps_3072x1536_cfsr -Checking test 146 datm_cdeps_3072x1536_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/datm_cdeps_3072x1536_cfsr +Checking test 147 datm_cdeps_3072x1536_cfsr 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 = 254.688490 - 0: The maximum resident set size (KB) = 1944796 + 0: The total amount of wall time = 252.285460 + 0: The maximum resident set size (KB) = 1948112 -Test 146 datm_cdeps_3072x1536_cfsr PASS +Test 129 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_gfs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/datm_cdeps_gfs -Checking test 147 datm_cdeps_gfs results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_gfs +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/datm_cdeps_gfs +Checking test 148 datm_cdeps_gfs 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 = 257.390180 - 0: The maximum resident set size (KB) = 1952536 + 0: The total amount of wall time = 254.712674 + 0: The maximum resident set size (KB) = 1947984 -Test 147 datm_cdeps_gfs PASS +Test 130 datm_cdeps_gfs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_debug_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/datm_cdeps_debug_cfsr -Checking test 148 datm_cdeps_debug_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_debug_cfsr +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/datm_cdeps_debug_cfsr +Checking test 149 datm_cdeps_debug_cfsr 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 = 375.555717 - 0: The maximum resident set size (KB) = 714876 + 0: The total amount of wall time = 374.115317 + 0: The maximum resident set size (KB) = 714896 -Test 148 datm_cdeps_debug_cfsr PASS +Test 131 datm_cdeps_debug_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr_faster -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/datm_cdeps_control_cfsr_faster -Checking test 149 datm_cdeps_control_cfsr_faster results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_control_cfsr_faster +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/datm_cdeps_control_cfsr_faster +Checking test 150 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.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.319212 - 0: The maximum resident set size (KB) = 715868 - -Test 149 datm_cdeps_control_cfsr_faster PASS + 0: The total amount of wall time = 166.950644 + 0: The maximum resident set size (KB) = 721412 +Test 132 datm_cdeps_control_cfsr_faster PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/datm_cdeps_lnd_gswp3 -Checking test 150 datm_cdeps_lnd_gswp3 results .... - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 18.102991 - 0: The maximum resident set size (KB) = 145664 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_atmwav +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/control_atmwav +Checking test 154 control_atmwav results .... + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + Comparing 20210322.180000.restart.glo_1deg .........OK -Test 150 datm_cdeps_lnd_gswp3 PASS + 0: The total amount of wall time = 98.568332 + 0: The maximum resident set size (KB) = 451520 +Test 133 control_atmwav PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/datm_cdeps_lnd_gswp3_rst -Checking test 151 datm_cdeps_lnd_gswp3_rst results .... - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_docn +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_35325/hafs_regional_docn +Checking test 002 hafs_regional_docn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 22.684065 - 0: The maximum resident set size (KB) = 145800 + 0: The total amount of wall time = 399.697354 + 0: The maximum resident set size (KB) = 724220 -Test 151 datm_cdeps_lnd_gswp3_rst PASS +Test 135 hafs_regional_docn PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_atmlnd_sbs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_p8_atmlnd_sbs -Checking test 152 control_p8_atmlnd_sbs results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8_atmlnd_sbs +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_35325/control_p8_atmlnd_sbs +Checking test 003 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -4604,70 +4367,19 @@ Checking test 152 control_p8_atmlnd_sbs 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 = 253.265812 - 0: The maximum resident set size (KB) = 1413964 + 0: The total amount of wall time = 260.599666 + 0: The maximum resident set size (KB) = 1413308 -Test 152 control_p8_atmlnd_sbs PASS +Test 136 control_p8_atmlnd_sbs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_atmwav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/control_atmwav -Checking test 153 control_atmwav results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - Comparing 20210322.180000.restart.glo_1deg .........OK - - 0: The total amount of wall time = 105.535228 - 0: The maximum resident set size (KB) = 451524 - -Test 153 control_atmwav PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/atmaero_control_p8 -Checking test 154 atmaero_control_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/atmaero_control_p8 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_35325/atmaero_control_p8 +Checking test 004 atmaero_control_p8 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 @@ -4706,123 +4418,21 @@ Checking test 154 atmaero_control_p8 results .... Comparing 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.245957 - 0: The maximum resident set size (KB) = 1448088 + 0: The total amount of wall time = 276.089463 + 0: The maximum resident set size (KB) = 1448108 -Test 154 atmaero_control_p8 PASS +Test 137 atmaero_control_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8_rad -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/atmaero_control_p8_rad -Checking test 155 atmaero_control_p8_rad results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing 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 = 451.248576 - 0: The maximum resident set size (KB) = 1469700 - -Test 155 atmaero_control_p8_rad PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8_rad_micro -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/atmaero_control_p8_rad_micro -Checking test 156 atmaero_control_p8_rad_micro results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 312.626411 - 0: The maximum resident set size (KB) = 1473760 - -Test 156 atmaero_control_p8_rad_micro PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/regional_atmaq -Checking test 157 regional_atmaq results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf003.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf003.nc ............ALT CHECK......OK - Comparing atmf006.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_atmaq +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_35325/regional_atmaq +Checking test 005 regional_atmaq results .... + Comparing sfcf000.nc .........OK + Comparing sfcf003.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf003.nc .........OK + Comparing atmf006.nc .........OK Comparing RESTART/20190801.180000.coupler.res .........OK Comparing RESTART/20190801.180000.fv_core.res.nc .........OK Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK @@ -4831,21 +4441,21 @@ Checking test 157 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 706.122737 - 0: The maximum resident set size (KB) = 967392 + 0: The total amount of wall time = 705.498555 + 0: The maximum resident set size (KB) = 965176 -Test 157 regional_atmaq PASS +Test 138 regional_atmaq PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq_faster -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21194/regional_atmaq_faster -Checking test 158 regional_atmaq_faster results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf003.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf003.nc ............ALT CHECK......OK - Comparing atmf006.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_atmaq_faster +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_35325/regional_atmaq_faster +Checking test 006 regional_atmaq_faster results .... + Comparing sfcf000.nc .........OK + Comparing sfcf003.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf003.nc .........OK + Comparing atmf006.nc .........OK Comparing RESTART/20190801.180000.coupler.res .........OK Comparing RESTART/20190801.180000.fv_core.res.nc .........OK Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK @@ -4854,12 +4464,25 @@ Checking test 158 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 605.021924 - 0: The maximum resident set size (KB) = 970724 + 0: The total amount of wall time = 641.565956 + 0: The maximum resident set size (KB) = 941320 + +Test 139 regional_atmaq_faster PASS + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_35325/hafs_regional_storm_following_1nest_atm_ocn_debug +Checking test 001 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 795.747084 + 0: The maximum resident set size (KB) = 353160 -Test 158 regional_atmaq_faster PASS Tries: 2 +Test 140 hafs_regional_storm_following_1nest_atm_ocn_debug PASS +REGRESSION TEST SUCCESS +Thu Mar 30 22:14:04 EDT 2023 +Elapsed time: 08h:40m:52s. Have a nice day! -REGRESSION TEST WAS SUCCESSFUL -Wed Mar 29 05:45:42 EDT 2023 -Elapsed time: 12h:42m:47s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 1693e92b6eb..791a083bfe8 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,26 +1,26 @@ -Tue Mar 28 21:04:58 UTC 2023 +Thu Mar 30 14:18:18 UTC 2023 Start Regression test -Compile 001 elapsed time 190 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 192 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 338 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 111 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 193 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 404 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 349 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 340 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 266 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 237 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 164 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 012 elapsed time 125 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/control_c48 +Compile 001 elapsed time 185 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 189 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 328 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 102 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 186 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 397 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 328 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 324 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 265 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 230 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 153 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 012 elapsed time 114 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/control_c48 Checking test 001 control_c48 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -54,57 +54,57 @@ Checking test 001 control_c48 results .... Comparing 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.427595 -0: The maximum resident set size (KB) = 701584 +0: The total amount of wall time = 684.791706 +0: The maximum resident set size (KB) = 702668 Test 001 control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/control_stochy +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/control_stochy Checking test 002 control_stochy results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 659.646485 - 0: The maximum resident set size (KB) = 477212 + 0: The total amount of wall time = 658.633179 + 0: The maximum resident set size (KB) = 479952 Test 002 control_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/control_ras +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/control_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/control_ras Checking test 003 control_ras results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 843.950882 - 0: The maximum resident set size (KB) = 488380 + 0: The total amount of wall time = 832.483812 + 0: The maximum resident set size (KB) = 487504 Test 003 control_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/control_p8 Checking test 004 control_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -144,21 +144,21 @@ Checking test 004 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 899.771944 - 0: The maximum resident set size (KB) = 1235064 + 0: The total amount of wall time = 889.233721 + 0: The maximum resident set size (KB) = 1235264 Test 004 control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rap_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/rap_control Checking test 005 rap_control results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -198,21 +198,21 @@ Checking test 005 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1452.926316 - 0: The maximum resident set size (KB) = 829972 + 0: The total amount of wall time = 1492.203953 + 0: The maximum resident set size (KB) = 830040 Test 005 rap_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rap_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/rap_decomp Checking test 006 rap_decomp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -252,21 +252,21 @@ Checking test 006 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1428.201850 - 0: The maximum resident set size (KB) = 833176 + 0: The total amount of wall time = 1449.146238 + 0: The maximum resident set size (KB) = 833872 Test 006 rap_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rap_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/rap_2threads Checking test 007 rap_2threads results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -306,17 +306,17 @@ Checking test 007 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1349.078164 - 0: The maximum resident set size (KB) = 898384 + 0: The total amount of wall time = 1354.320357 + 0: The maximum resident set size (KB) = 900424 Test 007 rap_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rap_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/rap_restart Checking test 008 rap_restart results .... - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -352,21 +352,21 @@ Checking test 008 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 725.935335 - 0: The maximum resident set size (KB) = 546124 + 0: The total amount of wall time = 723.415235 + 0: The maximum resident set size (KB) = 547700 Test 008 rap_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rap_sfcdiff +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/rap_sfcdiff Checking test 009 rap_sfcdiff results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + 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 @@ -406,21 +406,21 @@ Checking test 009 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1499.799495 - 0: The maximum resident set size (KB) = 829704 + 0: The total amount of wall time = 1465.926440 + 0: The maximum resident set size (KB) = 829744 Test 009 rap_sfcdiff PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rap_sfcdiff_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/rap_sfcdiff_decomp Checking test 010 rap_sfcdiff_decomp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + 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 @@ -460,17 +460,17 @@ Checking test 010 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1465.500091 - 0: The maximum resident set size (KB) = 830696 + 0: The total amount of wall time = 1466.695726 + 0: The maximum resident set size (KB) = 826364 Test 010 rap_sfcdiff_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rap_sfcdiff_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/rap_sfcdiff_restart Checking test 011 rap_sfcdiff_restart results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -506,21 +506,21 @@ Checking test 011 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1086.449420 - 0: The maximum resident set size (KB) = 555136 + 0: The total amount of wall time = 1088.811097 + 0: The maximum resident set size (KB) = 552972 Test 011 rap_sfcdiff_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/hrrr_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/hrrr_control Checking test 012 hrrr_control results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + 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 @@ -560,21 +560,21 @@ Checking test 012 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1449.246804 - 0: The maximum resident set size (KB) = 828968 + 0: The total amount of wall time = 1419.018726 + 0: The maximum resident set size (KB) = 824532 Test 012 hrrr_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/hrrr_control_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/hrrr_control_2threads Checking test 013 hrrr_control_2threads results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + 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 @@ -614,21 +614,21 @@ Checking test 013 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1312.889516 - 0: The maximum resident set size (KB) = 894480 + 0: The total amount of wall time = 1323.496860 + 0: The maximum resident set size (KB) = 893604 Test 013 hrrr_control_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/hrrr_control_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/hrrr_control_decomp Checking test 014 hrrr_control_decomp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + 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 @@ -668,17 +668,17 @@ Checking test 014 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1442.061438 - 0: The maximum resident set size (KB) = 828952 + 0: The total amount of wall time = 1448.886648 + 0: The maximum resident set size (KB) = 825212 Test 014 hrrr_control_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/hrrr_control_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/hrrr_control_restart Checking test 015 hrrr_control_restart results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -714,21 +714,21 @@ Checking test 015 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1034.270276 - 0: The maximum resident set size (KB) = 551712 + 0: The total amount of wall time = 1049.535059 + 0: The maximum resident set size (KB) = 551732 Test 015 hrrr_control_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rrfs_v1beta +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/rrfs_v1beta Checking test 016 rrfs_v1beta results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + 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 @@ -768,293 +768,305 @@ Checking test 016 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1480.167185 - 0: The maximum resident set size (KB) = 825796 + 0: The total amount of wall time = 1470.334653 + 0: The maximum resident set size (KB) = 823344 Test 016 rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/rrfs_smoke_conus13km_hrrr_warm Checking test 017 rrfs_smoke_conus13km_hrrr_warm results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing sfcf002.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - Comparing atmf002.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK - 0: The total amount of wall time = 811.187823 - 0: The maximum resident set size (KB) = 668736 + 0: The total amount of wall time = 790.544990 + 0: The maximum resident set size (KB) = 666824 Test 017 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 018 rrfs_smoke_conus13km_hrrr_warm_2threads results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing sfcf002.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - Comparing atmf002.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK - 0: The total amount of wall time = 1055.815848 - 0: The maximum resident set size (KB) = 666436 + 0: The total amount of wall time = 1065.961119 + 0: The maximum resident set size (KB) = 668288 Test 018 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rrfs_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/rrfs_conus13km_hrrr_warm Checking test 019 rrfs_conus13km_hrrr_warm results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing sfcf002.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - Comparing atmf002.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK - 0: The total amount of wall time = 779.189968 - 0: The maximum resident set size (KB) = 643996 + 0: The total amount of wall time = 759.427221 + 0: The maximum resident set size (KB) = 644000 Test 019 rrfs_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/rrfs_smoke_conus13km_radar_tten_warm Checking test 020 rrfs_smoke_conus13km_radar_tten_warm results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing sfcf002.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - Comparing atmf002.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK - 0: The total amount of wall time = 772.572871 - 0: The maximum resident set size (KB) = 672480 + 0: The total amount of wall time = 811.920119 + 0: The maximum resident set size (KB) = 676168 Test 020 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/control_diag_debug -Checking test 021 control_diag_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/rrfs_conus13km_hrrr_warm_restart_mismatch +Checking test 021 rrfs_conus13km_hrrr_warm_restart_mismatch results .... + Comparing sfcf002.nc .........OK + Comparing atmf002.nc .........OK - 0: The total amount of wall time = 129.302028 - 0: The maximum resident set size (KB) = 528088 + 0: The total amount of wall time = 380.261214 + 0: The maximum resident set size (KB) = 633596 -Test 021 control_diag_debug PASS +Test 021 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/regional_debug -Checking test 022 regional_debug results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf001.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/control_diag_debug +Checking test 022 control_diag_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 750.078306 - 0: The maximum resident set size (KB) = 595116 + 0: The total amount of wall time = 129.767261 + 0: The maximum resident set size (KB) = 525624 -Test 022 regional_debug PASS +Test 022 control_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rap_control_debug -Checking test 023 rap_control_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/regional_debug +Checking test 023 regional_debug results .... + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK - 0: The total amount of wall time = 180.783260 - 0: The maximum resident set size (KB) = 847552 + 0: The total amount of wall time = 712.513732 + 0: The maximum resident set size (KB) = 595340 -Test 023 rap_control_debug PASS +Test 023 regional_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/hrrr_control_debug -Checking test 024 hrrr_control_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/rap_control_debug +Checking test 024 rap_control_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 177.798266 - 0: The maximum resident set size (KB) = 841300 + 0: The total amount of wall time = 175.814346 + 0: The maximum resident set size (KB) = 849124 -Test 024 hrrr_control_debug PASS +Test 024 rap_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rap_diag_debug -Checking test 025 rap_diag_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/hrrr_control_debug +Checking test 025 hrrr_control_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 215.608298 - 0: The maximum resident set size (KB) = 930240 + 0: The total amount of wall time = 175.040819 + 0: The maximum resident set size (KB) = 843636 -Test 025 rap_diag_debug PASS +Test 025 hrrr_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 026 rap_noah_sfcdiff_cires_ugwp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/rap_diag_debug +Checking test 026 rap_diag_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.306294 - 0: The maximum resident set size (KB) = 849208 + 0: The total amount of wall time = 220.185152 + 0: The maximum resident set size (KB) = 931892 -Test 026 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 026 rap_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rap_progcld_thompson_debug -Checking test 027 rap_progcld_thompson_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 027 rap_noah_sfcdiff_cires_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 183.334186 - 0: The maximum resident set size (KB) = 841012 + 0: The total amount of wall time = 279.157997 + 0: The maximum resident set size (KB) = 848240 -Test 027 rap_progcld_thompson_debug PASS +Test 027 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rrfs_v1beta_debug -Checking test 028 rrfs_v1beta_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/rap_progcld_thompson_debug +Checking test 028 rap_progcld_thompson_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 175.997113 - 0: The maximum resident set size (KB) = 839792 + 0: The total amount of wall time = 176.040716 + 0: The maximum resident set size (KB) = 849664 -Test 028 rrfs_v1beta_debug PASS +Test 028 rap_progcld_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/control_ras_debug -Checking test 029 control_ras_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/rrfs_v1beta_debug +Checking test 029 rrfs_v1beta_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 107.004944 - 0: The maximum resident set size (KB) = 480580 + 0: The total amount of wall time = 180.950632 + 0: The maximum resident set size (KB) = 841880 -Test 029 control_ras_debug PASS +Test 029 rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/control_stochy_debug -Checking test 030 control_stochy_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/control_ras_debug +Checking test 030 control_ras_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 122.481039 - 0: The maximum resident set size (KB) = 476752 + 0: The total amount of wall time = 106.025687 + 0: The maximum resident set size (KB) = 486832 -Test 030 control_stochy_debug PASS +Test 030 control_ras_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/control_debug_p8 -Checking test 031 control_debug_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/control_stochy_debug +Checking test 031 control_stochy_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 124.188742 - 0: The maximum resident set size (KB) = 1232312 + 0: The total amount of wall time = 119.963690 + 0: The maximum resident set size (KB) = 475416 -Test 031 control_debug_p8 PASS +Test 031 control_stochy_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rrfs_smoke_conus13km_hrrr_warm_debug -Checking test 032 rrfs_smoke_conus13km_hrrr_warm_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/control_debug_p8 +Checking test 032 control_debug_p8 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 611.530387 - 0: The maximum resident set size (KB) = 687788 + 0: The total amount of wall time = 120.295374 + 0: The maximum resident set size (KB) = 1233992 -Test 032 rrfs_smoke_conus13km_hrrr_warm_debug PASS +Test 032 control_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rrfs_smoke_conus13km_hrrr_warm_debug_2threads -Checking test 033 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/rrfs_smoke_conus13km_hrrr_warm_debug +Checking test 033 rrfs_smoke_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 757.560083 - 0: The maximum resident set size (KB) = 687144 + 0: The total amount of wall time = 625.285306 + 0: The maximum resident set size (KB) = 689548 -Test 033 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS +Test 033 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rrfs_conus13km_hrrr_warm_debug -Checking test 034 rrfs_conus13km_hrrr_warm_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +Checking test 034 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 572.602498 - 0: The maximum resident set size (KB) = 659640 + 0: The total amount of wall time = 749.330385 + 0: The maximum resident set size (KB) = 683280 -Test 034 rrfs_conus13km_hrrr_warm_debug PASS +Test 034 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/control_wam_debug -Checking test 035 control_wam_debug results .... - Comparing sfcf019.nc ............ALT CHECK......OK - Comparing atmf019.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/rrfs_conus13km_hrrr_warm_debugs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/rrfs_conus13km_hrrr_warm_debug +Checking test 035 rrfs_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 187.270956 - 0: The maximum resident set size (KB) = 194464 + 0: The total amount of wall time = 599.409964 + 0: The maximum resident set size (KB) = 662292 -Test 035 control_wam_debug PASS +Test 035 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rap_control_dyn32_phy32 -Checking test 036 rap_control_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/control_wam_debug +Checking test 036 control_wam_debug results .... + Comparing sfcf019.nc .........OK + Comparing atmf019.nc .........OK + + 0: The total amount of wall time = 186.662116 + 0: The maximum resident set size (KB) = 198104 + +Test 036 control_wam_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/rap_control_dyn32_phy32 +Checking test 037 rap_control_dyn32_phy32 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 @@ -1094,21 +1106,21 @@ Checking test 036 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1462.495853 - 0: The maximum resident set size (KB) = 684648 + 0: The total amount of wall time = 1460.926012 + 0: The maximum resident set size (KB) = 682784 -Test 036 rap_control_dyn32_phy32 PASS +Test 037 rap_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/hrrr_control_dyn32_phy32 -Checking test 037 hrrr_control_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/hrrr_control_dyn32_phy32 +Checking test 038 hrrr_control_dyn32_phy32 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 @@ -1148,21 +1160,21 @@ Checking test 037 hrrr_control_dyn32_phy32 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 = 748.565706 - 0: The maximum resident set size (KB) = 688920 + 0: The total amount of wall time = 737.336100 + 0: The maximum resident set size (KB) = 683796 -Test 037 hrrr_control_dyn32_phy32 PASS +Test 038 hrrr_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rap_2threads_dyn32_phy32 -Checking test 038 rap_2threads_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/rap_2threads_dyn32_phy32 +Checking test 039 rap_2threads_dyn32_phy32 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 @@ -1202,21 +1214,21 @@ Checking test 038 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1358.606002 - 0: The maximum resident set size (KB) = 734724 + 0: The total amount of wall time = 1350.442511 + 0: The maximum resident set size (KB) = 730540 -Test 038 rap_2threads_dyn32_phy32 PASS +Test 039 rap_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/hrrr_control_2threads_dyn32_phy32 -Checking test 039 hrrr_control_2threads_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/hrrr_control_2threads_dyn32_phy32 +Checking test 040 hrrr_control_2threads_dyn32_phy32 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 @@ -1256,21 +1268,21 @@ Checking test 039 hrrr_control_2threads_dyn32_phy32 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 = 677.228576 - 0: The maximum resident set size (KB) = 727676 + 0: The total amount of wall time = 673.877481 + 0: The maximum resident set size (KB) = 726856 -Test 039 hrrr_control_2threads_dyn32_phy32 PASS +Test 040 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/hrrr_control_decomp_dyn32_phy32 -Checking test 040 hrrr_control_decomp_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/hrrr_control_decomp_dyn32_phy32 +Checking test 041 hrrr_control_decomp_dyn32_phy32 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 @@ -1310,17 +1322,17 @@ Checking test 040 hrrr_control_decomp_dyn32_phy32 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 = 710.212133 - 0: The maximum resident set size (KB) = 683996 + 0: The total amount of wall time = 732.255928 + 0: The maximum resident set size (KB) = 687940 -Test 040 hrrr_control_decomp_dyn32_phy32 PASS +Test 041 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rap_restart_dyn32_phy32 -Checking test 041 rap_restart_dyn32_phy32 results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/rap_restart_dyn32_phy32 +Checking test 042 rap_restart_dyn32_phy32 results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -1356,17 +1368,17 @@ Checking test 041 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1084.970850 - 0: The maximum resident set size (KB) = 511720 + 0: The total amount of wall time = 1071.305334 + 0: The maximum resident set size (KB) = 516168 -Test 041 rap_restart_dyn32_phy32 PASS +Test 042 rap_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/hrrr_control_restart_dyn32_phy32 -Checking test 042 hrrr_control_restart_dyn32_phy32 results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/hrrr_control_restart_dyn32_phy32 +Checking test 043 hrrr_control_restart_dyn32_phy32 results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.180000.coupler.res .........OK @@ -1402,21 +1414,21 @@ Checking test 042 hrrr_control_restart_dyn32_phy32 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 = 367.953225 - 0: The maximum resident set size (KB) = 507656 + 0: The total amount of wall time = 368.793082 + 0: The maximum resident set size (KB) = 508368 -Test 042 hrrr_control_restart_dyn32_phy32 PASS +Test 043 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rap_control_dyn64_phy32 -Checking test 043 rap_control_dyn64_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/rap_control_dyn64_phy32 +Checking test 044 rap_control_dyn64_phy32 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 @@ -1456,57 +1468,57 @@ Checking test 043 rap_control_dyn64_phy32 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 = 1078.690957 - 0: The maximum resident set size (KB) = 710556 + 0: The total amount of wall time = 1073.828699 + 0: The maximum resident set size (KB) = 711488 -Test 043 rap_control_dyn64_phy32 PASS +Test 044 rap_control_dyn64_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rap_control_debug_dyn32_phy32 -Checking test 044 rap_control_debug_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/rap_control_debug_dyn32_phy32 +Checking test 045 rap_control_debug_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 178.956055 - 0: The maximum resident set size (KB) = 702948 + 0: The total amount of wall time = 176.224928 + 0: The maximum resident set size (KB) = 700400 -Test 044 rap_control_debug_dyn32_phy32 PASS +Test 045 rap_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/hrrr_control_debug_dyn32_phy32 -Checking test 045 hrrr_control_debug_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/hrrr_control_debug_dyn32_phy32 +Checking test 046 hrrr_control_debug_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 177.063375 - 0: The maximum resident set size (KB) = 703788 + 0: The total amount of wall time = 170.327245 + 0: The maximum resident set size (KB) = 698012 -Test 045 hrrr_control_debug_dyn32_phy32 PASS +Test 046 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/rap_control_dyn64_phy32_debug -Checking test 046 rap_control_dyn64_phy32_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/rap_control_debug_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/rap_control_dyn64_phy32_debug +Checking test 047 rap_control_dyn64_phy32_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 212.904990 - 0: The maximum resident set size (KB) = 719080 + 0: The total amount of wall time = 207.508787 + 0: The maximum resident set size (KB) = 721140 -Test 046 rap_control_dyn64_phy32_debug PASS +Test 047 rap_control_dyn64_phy32_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/cpld_control_p8 -Checking test 047 cpld_control_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/cpld_control_p8 +Checking test 048 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1570,15 +1582,15 @@ Checking test 047 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1777.796152 - 0: The maximum resident set size (KB) = 1432284 + 0: The total amount of wall time = 1757.571790 + 0: The maximum resident set size (KB) = 1431188 -Test 047 cpld_control_p8 PASS Tries: 2 +Test 048 cpld_control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/cpld_control_nowave_noaero_p8 -Checking test 048 cpld_control_nowave_noaero_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/cpld_control_c96_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/cpld_control_nowave_noaero_p8 +Checking test 049 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1639,15 +1651,15 @@ Checking test 048 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 1223.762699 - 0: The maximum resident set size (KB) = 1334820 + 0: The total amount of wall time = 1241.292645 + 0: The maximum resident set size (KB) = 1333876 -Test 048 cpld_control_nowave_noaero_p8 PASS +Test 049 cpld_control_nowave_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/cpld_debug_p8 -Checking test 049 cpld_debug_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/cpld_debug_p8 +Checking test 050 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -1699,25 +1711,25 @@ Checking test 049 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 891.505453 - 0: The maximum resident set size (KB) = 1444888 + 0: The total amount of wall time = 932.708774 + 0: The maximum resident set size (KB) = 1444396 -Test 049 cpld_debug_p8 PASS +Test 050 cpld_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/GNU/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29876/datm_cdeps_control_cfsr -Checking test 050 datm_cdeps_control_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/datm_cdeps_control_cfsr +Checking test 051 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 182.909636 - 0: The maximum resident set size (KB) = 661592 + 0: The total amount of wall time = 176.013292 + 0: The maximum resident set size (KB) = 664004 -Test 050 datm_cdeps_control_cfsr PASS +Test 051 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Tue Mar 28 22:22:49 UTC 2023 -Elapsed time: 01h:17m:52s. Have a nice day! +Thu Mar 30 15:12:15 UTC 2023 +Elapsed time: 00h:53m:58s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index b89ea04e24e..6cea6f86f1e 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,42 +1,42 @@ -Tue Mar 28 20:48:45 UTC 2023 +Thu Mar 30 14:03:57 UTC 2023 Start Regression test -Compile 001 elapsed time 616 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 616 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 562 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 248 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 213 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 532 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 523 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 703 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 563 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 517 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 492 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 456 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 591 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 230 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 001 elapsed time 601 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 638 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 566 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 242 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 212 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 524 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 515 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 702 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 525 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 498 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 011 elapsed time 481 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 445 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 592 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 211 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug Compile 015 elapsed time 183 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 466 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 481 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 180 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 169 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 605 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 021 elapsed time 205 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 645 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 563 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 024 elapsed time 188 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 131 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 177 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 58 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 492 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 539 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 487 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 464 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 197 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 579 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8_mixedmode -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/cpld_control_p8_mixedmode +Compile 016 elapsed time 450 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 465 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 166 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 176 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 564 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 021 elapsed time 187 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 630 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 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 024 elapsed time 176 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 111 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 196 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 53 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 486 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 570 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 486 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 460 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 187 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 540 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8_mixedmode +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -101,14 +101,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 323.229887 - 0: The maximum resident set size (KB) = 3146352 + 0: The total amount of wall time = 307.142600 + 0: The maximum resident set size (KB) = 3148088 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_gfsv17 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/cpld_control_gfsv17 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_gfsv17 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -172,14 +172,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 235.569057 - 0: The maximum resident set size (KB) = 1725256 + 0: The total amount of wall time = 222.857220 + 0: The maximum resident set size (KB) = 1731728 Test 002 cpld_control_gfsv17 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/cpld_control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -244,14 +244,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 361.665717 - 0: The maximum resident set size (KB) = 3182908 + 0: The total amount of wall time = 338.649591 + 0: The maximum resident set size (KB) = 3184152 Test 003 cpld_control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/cpld_restart_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -304,14 +304,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 205.846788 - 0: The maximum resident set size (KB) = 3049120 + 0: The total amount of wall time = 197.195333 + 0: The maximum resident set size (KB) = 3055336 Test 004 cpld_restart_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/cpld_control_qr_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -376,14 +376,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 351.863437 - 0: The maximum resident set size (KB) = 3196524 + 0: The total amount of wall time = 337.930509 + 0: The maximum resident set size (KB) = 3195044 Test 005 cpld_control_qr_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/cpld_restart_qr_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -436,14 +436,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 207.428045 - 0: The maximum resident set size (KB) = 3060728 + 0: The total amount of wall time = 199.113699 + 0: The maximum resident set size (KB) = 3065284 Test 006 cpld_restart_qr_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/cpld_2threads_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -496,14 +496,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 362.837184 - 0: The maximum resident set size (KB) = 3520752 + 0: The total amount of wall time = 346.845317 + 0: The maximum resident set size (KB) = 3507928 Test 007 cpld_2threads_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/cpld_decomp_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -556,14 +556,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 353.684401 - 0: The maximum resident set size (KB) = 3167680 + 0: The total amount of wall time = 338.138733 + 0: The maximum resident set size (KB) = 3167068 Test 008 cpld_decomp_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/cpld_mpi_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -616,14 +616,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 294.763638 - 0: The maximum resident set size (KB) = 3025824 + 0: The total amount of wall time = 277.052693 + 0: The maximum resident set size (KB) = 3022380 Test 009 cpld_mpi_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_ciceC_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/cpld_control_ciceC_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_ciceC_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -688,14 +688,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 350.334567 - 0: The maximum resident set size (KB) = 3189124 + 0: The total amount of wall time = 338.119606 + 0: The maximum resident set size (KB) = 3185284 Test 010 cpld_control_ciceC_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/cpld_control_c192_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/cpld_control_c192_p8 Checking test 011 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -748,14 +748,14 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 611.248630 - 0: The maximum resident set size (KB) = 3260532 + 0: The total amount of wall time = 585.247354 + 0: The maximum resident set size (KB) = 3254536 Test 011 cpld_control_c192_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/cpld_restart_c192_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/cpld_restart_c192_p8 Checking test 012 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -808,17 +808,17 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 402.874053 - 0: The maximum resident set size (KB) = 3156308 + 0: The total amount of wall time = 381.958524 + 0: The maximum resident set size (KB) = 3164280 Test 012 cpld_restart_c192_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/cpld_bmark_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/cpld_bmark_p8 Checking test 013 cpld_bmark_p8 results .... - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc .........OK + Comparing atmf006.nc .........OK Comparing GFSFLX.GrbF06 .........OK Comparing GFSPRS.GrbF06 .........OK Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK @@ -863,17 +863,17 @@ Checking test 013 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 760.535974 - 0: The maximum resident set size (KB) = 4038564 + 0: The total amount of wall time = 707.373865 + 0: The maximum resident set size (KB) = 4039416 Test 013 cpld_bmark_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/cpld_restart_bmark_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/cpld_restart_bmark_p8 Checking test 014 cpld_restart_bmark_p8 results .... - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc .........OK + Comparing atmf006.nc .........OK Comparing GFSFLX.GrbF06 .........OK Comparing GFSPRS.GrbF06 .........OK Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK @@ -918,14 +918,14 @@ Checking test 014 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 473.708731 - 0: The maximum resident set size (KB) = 3985948 + 0: The total amount of wall time = 444.277907 + 0: The maximum resident set size (KB) = 3982364 Test 014 cpld_restart_bmark_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/cpld_control_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/cpld_control_noaero_p8 Checking test 015 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -989,14 +989,14 @@ Checking test 015 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 275.006060 - 0: The maximum resident set size (KB) = 1721216 + 0: The total amount of wall time = 263.217062 + 0: The maximum resident set size (KB) = 1720152 Test 015 cpld_control_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/cpld_control_nowave_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_c96_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/cpld_control_nowave_noaero_p8 Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1058,14 +1058,14 @@ Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 269.809065 - 0: The maximum resident set size (KB) = 1765620 + 0: The total amount of wall time = 259.833873 + 0: The maximum resident set size (KB) = 1767648 Test 016 cpld_control_nowave_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/cpld_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/cpld_debug_p8 Checking test 017 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1118,14 +1118,14 @@ Checking test 017 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 660.314091 - 0: The maximum resident set size (KB) = 3241696 + 0: The total amount of wall time = 649.240559 + 0: The maximum resident set size (KB) = 3244824 Test 017 cpld_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_debug_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/cpld_debug_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_debug_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/cpld_debug_noaero_p8 Checking test 018 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1177,14 +1177,14 @@ Checking test 018 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 410.449522 - 0: The maximum resident set size (KB) = 1739032 + 0: The total amount of wall time = 402.117454 + 0: The maximum resident set size (KB) = 1740092 Test 018 cpld_debug_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_noaero_p8_agrid -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/cpld_control_noaero_p8_agrid +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_noaero_p8_agrid +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/cpld_control_noaero_p8_agrid Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1246,14 +1246,14 @@ Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 278.221229 - 0: The maximum resident set size (KB) = 1766652 + 0: The total amount of wall time = 264.955329 + 0: The maximum resident set size (KB) = 1763244 Test 019 cpld_control_noaero_p8_agrid PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/cpld_control_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/cpld_control_c48 Checking test 020 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1303,14 +1303,14 @@ Checking test 020 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 584.173106 - 0: The maximum resident set size (KB) = 2801988 + 0: The total amount of wall time = 576.858537 + 0: The maximum resident set size (KB) = 2803852 Test 020 cpld_control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/cpld_warmstart_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_warmstart_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/cpld_warmstart_c48 Checking test 021 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1360,14 +1360,14 @@ Checking test 021 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 159.417077 - 0: The maximum resident set size (KB) = 2799804 + 0: The total amount of wall time = 155.663069 + 0: The maximum resident set size (KB) = 2807624 Test 021 cpld_warmstart_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/cpld_restart_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_warmstart_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/cpld_restart_c48 Checking test 022 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1417,14 +1417,14 @@ Checking test 022 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 93.995011 - 0: The maximum resident set size (KB) = 2233976 + 0: The total amount of wall time = 83.780851 + 0: The maximum resident set size (KB) = 2246032 Test 022 cpld_restart_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/cpld_control_p8_faster +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/cpld_control_p8_faster Checking test 023 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1489,14 +1489,14 @@ Checking test 023 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 339.751076 - 0: The maximum resident set size (KB) = 3184900 + 0: The total amount of wall time = 321.376559 + 0: The maximum resident set size (KB) = 3182860 Test 023 cpld_control_p8_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_CubedSphereGrid +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_CubedSphereGrid +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_CubedSphereGrid Checking test 024 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1523,69 +1523,69 @@ Checking test 024 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 131.871471 - 0: The maximum resident set size (KB) = 637320 + 0: The total amount of wall time = 130.793587 + 0: The maximum resident set size (KB) = 631256 Test 024 control_CubedSphereGrid PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_CubedSphereGrid_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_CubedSphereGrid_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_CubedSphereGrid_parallel Checking test 025 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK - 0: The total amount of wall time = 131.110885 - 0: The maximum resident set size (KB) = 628220 + 0: The total amount of wall time = 128.575517 + 0: The maximum resident set size (KB) = 632532 Test 025 control_CubedSphereGrid_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_latlon -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_latlon +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_latlon +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_latlon Checking test 026 control_latlon results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.358191 - 0: The maximum resident set size (KB) = 633576 + 0: The total amount of wall time = 133.447189 + 0: The maximum resident set size (KB) = 628924 Test 026 control_latlon PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wrtGauss_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_wrtGauss_netcdf_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_wrtGauss_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_wrtGauss_netcdf_parallel Checking test 027 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 138.750449 - 0: The maximum resident set size (KB) = 629300 + 0: The total amount of wall time = 136.810811 + 0: The maximum resident set size (KB) = 629088 Test 027 control_wrtGauss_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_c48 Checking test 028 control_c48 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -1619,55 +1619,55 @@ Checking test 028 control_c48 results .... Comparing 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.958868 -0: The maximum resident set size (KB) = 824636 +0: The total amount of wall time = 372.049045 +0: The maximum resident set size (KB) = 820256 Test 028 control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_c192 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_c192 Checking test 029 control_c192 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 527.752203 - 0: The maximum resident set size (KB) = 771804 + 0: The total amount of wall time = 526.898198 + 0: The maximum resident set size (KB) = 772312 Test 029 control_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_c384 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_c384 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_c384 Checking test 030 control_c384 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 527.714325 - 0: The maximum resident set size (KB) = 1266888 + 0: The total amount of wall time = 520.661212 + 0: The maximum resident set size (KB) = 1271156 Test 030 control_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c384gdas -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_c384gdas +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_c384gdas +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_c384gdas Checking test 031 control_c384gdas results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf006.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF06 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -1705,71 +1705,71 @@ Checking test 031 control_c384gdas 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 = 476.274347 - 0: The maximum resident set size (KB) = 1383088 + 0: The total amount of wall time = 456.681588 + 0: The maximum resident set size (KB) = 1381260 Test 031 control_c384gdas PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_stochy +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_stochy Checking test 032 control_stochy results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 92.106673 - 0: The maximum resident set size (KB) = 640568 + 0: The total amount of wall time = 89.070107 + 0: The maximum resident set size (KB) = 631412 Test 032 control_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_stochy_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_stochy_restart Checking test 033 control_stochy_restart results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 53.634214 - 0: The maximum resident set size (KB) = 483228 + 0: The total amount of wall time = 48.228840 + 0: The maximum resident set size (KB) = 486576 Test 033 control_stochy_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_lndp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_lndp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_lndp Checking test 034 control_lndp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 92.299048 - 0: The maximum resident set size (KB) = 636392 + 0: The total amount of wall time = 82.801681 + 0: The maximum resident set size (KB) = 633572 Test 034 control_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_iovr4 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_iovr4 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_iovr4 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_iovr4 Checking test 035 control_iovr4 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1777,21 +1777,21 @@ Checking test 035 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 142.343413 - 0: The maximum resident set size (KB) = 636584 + 0: The total amount of wall time = 136.834284 + 0: The maximum resident set size (KB) = 632080 Test 035 control_iovr4 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_iovr5 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_iovr5 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_iovr5 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_iovr5 Checking test 036 control_iovr5 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1799,21 +1799,21 @@ Checking test 036 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 145.910491 - 0: The maximum resident set size (KB) = 634172 + 0: The total amount of wall time = 136.833993 + 0: The maximum resident set size (KB) = 630548 Test 036 control_iovr5 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_p8 Checking test 037 control_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1853,17 +1853,17 @@ Checking test 037 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 171.932492 - 0: The maximum resident set size (KB) = 1605520 + 0: The total amount of wall time = 167.940351 + 0: The maximum resident set size (KB) = 1605052 Test 037 control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_restart_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_restart_p8 Checking test 038 control_restart_p8 results .... - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -1899,21 +1899,21 @@ Checking test 038 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 90.200824 - 0: The maximum resident set size (KB) = 880816 + 0: The total amount of wall time = 88.856871 + 0: The maximum resident set size (KB) = 871036 Test 038 control_restart_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_qr_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_qr_p8 Checking test 039 control_qr_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1953,17 +1953,17 @@ Checking test 039 control_qr_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 172.385732 - 0: The maximum resident set size (KB) = 1608376 + 0: The total amount of wall time = 165.937577 + 0: The maximum resident set size (KB) = 1614736 Test 039 control_qr_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_restart_qr_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_restart_qr_p8 Checking test 040 control_restart_qr_p8 results .... - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -1999,19 +1999,19 @@ Checking test 040 control_restart_qr_p8 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 = 97.474956 - 0: The maximum resident set size (KB) = 875016 + 0: The total amount of wall time = 90.546475 + 0: The maximum resident set size (KB) = 871524 Test 040 control_restart_qr_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_decomp_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_decomp_p8 Checking test 041 control_decomp_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing 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 @@ -2049,19 +2049,19 @@ Checking test 041 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 179.113463 - 0: The maximum resident set size (KB) = 1590932 + 0: The total amount of wall time = 171.622515 + 0: The maximum resident set size (KB) = 1584640 Test 041 control_decomp_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_2threads_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_2threads_p8 Checking test 042 control_2threads_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing 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 @@ -2099,23 +2099,23 @@ Checking test 042 control_2threads_p8 results .... Comparing 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.635609 - 0: The maximum resident set size (KB) = 1690320 + 0: The total amount of wall time = 157.053439 + 0: The maximum resident set size (KB) = 1687088 Test 042 control_2threads_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_p8_lndp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8_lndp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_p8_lndp Checking test 043 control_p8_lndp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing sfcf048.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK - Comparing atmf048.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing sfcf048.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing atmf048.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2125,21 +2125,21 @@ Checking test 043 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 321.926081 - 0: The maximum resident set size (KB) = 1604208 + 0: The total amount of wall time = 310.999878 + 0: The maximum resident set size (KB) = 1607184 Test 043 control_p8_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_p8_rrtmgp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_p8_rrtmgp Checking test 044 control_p8_rrtmgp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2179,21 +2179,21 @@ Checking test 044 control_p8_rrtmgp results .... Comparing 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.452525 - 0: The maximum resident set size (KB) = 1674548 + 0: The total amount of wall time = 222.268318 + 0: The maximum resident set size (KB) = 1678956 Test 044 control_p8_rrtmgp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_mynn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_p8_mynn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8_mynn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_p8_mynn Checking test 045 control_p8_mynn results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2233,21 +2233,21 @@ Checking test 045 control_p8_mynn results .... Comparing 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.898272 - 0: The maximum resident set size (KB) = 1616568 + 0: The total amount of wall time = 168.761832 + 0: The maximum resident set size (KB) = 1608436 Test 045 control_p8_mynn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/merra2_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/merra2_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/merra2_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/merra2_thompson Checking test 046 merra2_thompson results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2287,114 +2287,114 @@ Checking test 046 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 197.168555 - 0: The maximum resident set size (KB) = 1613452 + 0: The total amount of wall time = 189.670516 + 0: The maximum resident set size (KB) = 1615628 Test 046 merra2_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/regional_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/regional_control Checking test 047 regional_control results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 304.767960 - 0: The maximum resident set size (KB) = 871112 + 0: The total amount of wall time = 297.668338 + 0: The maximum resident set size (KB) = 876716 Test 047 regional_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/regional_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/regional_restart Checking test 048 regional_restart results .... - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf006.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 161.005226 - 0: The maximum resident set size (KB) = 865084 + 0: The total amount of wall time = 154.031444 + 0: The maximum resident set size (KB) = 863088 Test 048 regional_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/regional_control_qr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/regional_control_qr Checking test 049 regional_control_qr results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 306.529040 - 0: The maximum resident set size (KB) = 875584 + 0: The total amount of wall time = 297.802342 + 0: The maximum resident set size (KB) = 873208 Test 049 regional_control_qr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/regional_restart_qr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/regional_restart_qr Checking test 050 regional_restart_qr results .... - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf006.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 157.604437 - 0: The maximum resident set size (KB) = 866424 + 0: The total amount of wall time = 152.794969 + 0: The maximum resident set size (KB) = 869480 Test 050 regional_restart_qr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/regional_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/regional_decomp Checking test 051 regional_decomp results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 318.823530 - 0: The maximum resident set size (KB) = 863316 + 0: The total amount of wall time = 314.661253 + 0: The maximum resident set size (KB) = 865008 Test 051 regional_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/regional_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/regional_2threads Checking test 052 regional_2threads results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 187.940036 - 0: The maximum resident set size (KB) = 851864 + 0: The total amount of wall time = 178.943816 + 0: The maximum resident set size (KB) = 854956 Test 052 regional_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_noquilt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/regional_noquilt +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_noquilt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/regional_noquilt Checking test 053 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2402,71 +2402,71 @@ Checking test 053 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 322.218464 - 0: The maximum resident set size (KB) = 858904 + 0: The total amount of wall time = 318.844697 + 0: The maximum resident set size (KB) = 861548 Test 053 regional_noquilt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/regional_netcdf_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/regional_netcdf_parallel Checking test 054 regional_netcdf_parallel results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK - 0: The total amount of wall time = 299.512051 - 0: The maximum resident set size (KB) = 867992 + 0: The total amount of wall time = 292.084765 + 0: The maximum resident set size (KB) = 867952 Test 054 regional_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/regional_2dwrtdecomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/regional_2dwrtdecomp Checking test 055 regional_2dwrtdecomp results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 304.652215 - 0: The maximum resident set size (KB) = 868700 + 0: The total amount of wall time = 301.160850 + 0: The maximum resident set size (KB) = 872540 Test 055 regional_2dwrtdecomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/fv3_regional_wofs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/regional_wofs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/fv3_regional_wofs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/regional_wofs Checking test 056 regional_wofs results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 378.988741 - 0: The maximum resident set size (KB) = 635952 + 0: The total amount of wall time = 375.506937 + 0: The maximum resident set size (KB) = 632796 Test 056 regional_wofs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rap_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/rap_control Checking test 057 rap_control results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2506,39 +2506,39 @@ Checking test 057 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 462.214338 - 0: The maximum resident set size (KB) = 1055992 + 0: The total amount of wall time = 458.225423 + 0: The maximum resident set size (KB) = 1059308 Test 057 rap_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_spp_sppt_shum_skeb -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/regional_spp_sppt_shum_skeb +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_spp_sppt_shum_skeb +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/regional_spp_sppt_shum_skeb Checking test 058 regional_spp_sppt_shum_skeb results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf001.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf001.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF01 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 238.595521 - 0: The maximum resident set size (KB) = 1177632 + 0: The total amount of wall time = 235.332948 + 0: The maximum resident set size (KB) = 1180760 Test 058 regional_spp_sppt_shum_skeb PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rap_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/rap_decomp Checking test 059 rap_decomp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2578,21 +2578,21 @@ Checking test 059 rap_decomp results .... Comparing 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.489989 - 0: The maximum resident set size (KB) = 997788 + 0: The total amount of wall time = 477.119009 + 0: The maximum resident set size (KB) = 1007116 Test 059 rap_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rap_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/rap_2threads Checking test 060 rap_2threads results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2632,17 +2632,17 @@ Checking test 060 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 439.885899 - 0: The maximum resident set size (KB) = 1131156 + 0: The total amount of wall time = 432.691719 + 0: The maximum resident set size (KB) = 1134436 Test 060 rap_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rap_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/rap_restart Checking test 061 rap_restart results .... - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -2678,21 +2678,21 @@ Checking test 061 rap_restart results .... Comparing 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.363267 - 0: The maximum resident set size (KB) = 960800 + 0: The total amount of wall time = 232.021583 + 0: The maximum resident set size (KB) = 967724 Test 061 rap_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rap_sfcdiff +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/rap_sfcdiff Checking test 062 rap_sfcdiff results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + 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 @@ -2732,21 +2732,21 @@ Checking test 062 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 468.306225 - 0: The maximum resident set size (KB) = 1055408 + 0: The total amount of wall time = 459.889196 + 0: The maximum resident set size (KB) = 1067168 Test 062 rap_sfcdiff PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rap_sfcdiff_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/rap_sfcdiff_decomp Checking test 063 rap_sfcdiff_decomp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + 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 @@ -2786,17 +2786,17 @@ Checking test 063 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 490.696410 - 0: The maximum resident set size (KB) = 999772 + 0: The total amount of wall time = 481.149516 + 0: The maximum resident set size (KB) = 1000992 Test 063 rap_sfcdiff_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rap_sfcdiff_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/rap_sfcdiff_restart Checking test 064 rap_sfcdiff_restart results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -2832,21 +2832,21 @@ Checking test 064 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 342.885112 - 0: The maximum resident set size (KB) = 987052 + 0: The total amount of wall time = 340.125395 + 0: The maximum resident set size (KB) = 993068 Test 064 rap_sfcdiff_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hrrr_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/hrrr_control Checking test 065 hrrr_control results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + 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 @@ -2886,21 +2886,21 @@ Checking test 065 hrrr_control results .... Comparing 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.992553 - 0: The maximum resident set size (KB) = 1050828 + 0: The total amount of wall time = 444.107914 + 0: The maximum resident set size (KB) = 1050184 Test 065 hrrr_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hrrr_control_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/hrrr_control_decomp Checking test 066 hrrr_control_decomp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + 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 @@ -2940,21 +2940,21 @@ Checking test 066 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 471.078777 - 0: The maximum resident set size (KB) = 1000412 + 0: The total amount of wall time = 463.210825 + 0: The maximum resident set size (KB) = 997544 Test 066 hrrr_control_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hrrr_control_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/hrrr_control_2threads Checking test 067 hrrr_control_2threads results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + 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 @@ -2994,17 +2994,17 @@ Checking test 067 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 428.259850 - 0: The maximum resident set size (KB) = 1133244 + 0: The total amount of wall time = 418.034122 + 0: The maximum resident set size (KB) = 1135012 Test 067 hrrr_control_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hrrr_control_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/hrrr_control_restart Checking test 068 hrrr_control_restart results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -3040,21 +3040,21 @@ Checking test 068 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 333.335259 - 0: The maximum resident set size (KB) = 985840 + 0: The total amount of wall time = 329.498235 + 0: The maximum resident set size (KB) = 987852 Test 068 hrrr_control_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rrfs_v1beta +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/rrfs_v1beta Checking test 069 rrfs_v1beta results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + 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 @@ -3094,21 +3094,21 @@ Checking test 069 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 459.661935 - 0: The maximum resident set size (KB) = 1071576 + 0: The total amount of wall time = 453.959161 + 0: The maximum resident set size (KB) = 1055304 Test 069 rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1nssl -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rrfs_v1nssl +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_v1nssl +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/rrfs_v1nssl Checking test 070 rrfs_v1nssl results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + 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 @@ -3116,21 +3116,21 @@ Checking test 070 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 543.143988 - 0: The maximum resident set size (KB) = 692092 + 0: The total amount of wall time = 534.482871 + 0: The maximum resident set size (KB) = 690512 Test 070 rrfs_v1nssl PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rrfs_v1nssl_nohailnoccn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/rrfs_v1nssl_nohailnoccn Checking test 071 rrfs_v1nssl_nohailnoccn results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + 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 @@ -3138,151 +3138,163 @@ Checking test 071 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 528.251238 - 0: The maximum resident set size (KB) = 752276 + 0: The total amount of wall time = 521.798147 + 0: The maximum resident set size (KB) = 758636 Test 071 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/rrfs_smoke_conus13km_hrrr_warm Checking test 072 rrfs_smoke_conus13km_hrrr_warm results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing sfcf002.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - Comparing atmf002.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK - 0: The total amount of wall time = 154.024013 - 0: The maximum resident set size (KB) = 1031680 + 0: The total amount of wall time = 146.167810 + 0: The maximum resident set size (KB) = 1031648 Test 072 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 073 rrfs_smoke_conus13km_hrrr_warm_2threads results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing sfcf002.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - Comparing atmf002.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK - 0: The total amount of wall time = 97.363529 - 0: The maximum resident set size (KB) = 933992 + 0: The total amount of wall time = 91.501532 + 0: The maximum resident set size (KB) = 941924 Test 073 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rrfs_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/rrfs_conus13km_hrrr_warm Checking test 074 rrfs_conus13km_hrrr_warm results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing sfcf002.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - Comparing atmf002.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK - 0: The total amount of wall time = 134.432875 - 0: The maximum resident set size (KB) = 941084 + 0: The total amount of wall time = 129.583161 + 0: The maximum resident set size (KB) = 943912 Test 074 rrfs_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/rrfs_smoke_conus13km_radar_tten_warm Checking test 075 rrfs_smoke_conus13km_radar_tten_warm results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing sfcf002.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - Comparing atmf002.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK - 0: The total amount of wall time = 151.516976 - 0: The maximum resident set size (KB) = 1034568 + 0: The total amount of wall time = 146.323854 + 0: The maximum resident set size (KB) = 1038260 Test 075 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmg -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_csawmg -Checking test 076 control_csawmg results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/rrfs_conus13km_hrrr_warm_restart_mismatch +Checking test 076 rrfs_conus13km_hrrr_warm_restart_mismatch results .... + Comparing sfcf002.nc .........OK + Comparing atmf002.nc .........OK + + 0: The total amount of wall time = 71.319471 + 0: The maximum resident set size (KB) = 932116 + +Test 076 rrfs_conus13km_hrrr_warm_restart_mismatch PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_csawmg +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_csawmg +Checking test 077 control_csawmg results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 348.700358 - 0: The maximum resident set size (KB) = 729924 + 0: The total amount of wall time = 341.753268 + 0: The maximum resident set size (KB) = 723484 -Test 076 control_csawmg PASS +Test 077 control_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmgt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_csawmgt -Checking test 077 control_csawmgt results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_csawmgt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_csawmgt +Checking test 078 control_csawmgt results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 339.664321 - 0: The maximum resident set size (KB) = 726904 + 0: The total amount of wall time = 336.858079 + 0: The maximum resident set size (KB) = 726444 -Test 077 control_csawmgt PASS +Test 078 control_csawmgt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_ras -Checking test 078 control_ras results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_ras +Checking test 079 control_ras results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 183.295126 - 0: The maximum resident set size (KB) = 716548 + 0: The total amount of wall time = 180.367357 + 0: The maximum resident set size (KB) = 720068 -Test 078 control_ras PASS +Test 079 control_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wam -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_wam -Checking test 079 control_wam results .... - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_wam +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_wam +Checking test 080 control_wam results .... + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK - 0: The total amount of wall time = 113.996441 - 0: The maximum resident set size (KB) = 641228 + 0: The total amount of wall time = 112.014470 + 0: The maximum resident set size (KB) = 633964 -Test 079 control_wam PASS +Test 080 control_wam PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_p8_faster -Checking test 080 control_p8_faster results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_p8_faster +Checking test 081 control_p8_faster results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -3322,75 +3334,75 @@ Checking test 080 control_p8_faster results .... Comparing 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.721698 - 0: The maximum resident set size (KB) = 1599540 + 0: The total amount of wall time = 157.499868 + 0: The maximum resident set size (KB) = 1608568 -Test 080 control_p8_faster PASS +Test 081 control_p8_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/regional_control_faster -Checking test 081 regional_control_faster results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/regional_control_faster +Checking test 082 regional_control_faster results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 274.989460 - 0: The maximum resident set size (KB) = 874264 + 0: The total amount of wall time = 272.776973 + 0: The maximum resident set size (KB) = 870020 -Test 081 regional_control_faster PASS +Test 082 regional_control_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rrfs_smoke_conus13km_hrrr_warm_debug -Checking test 082 rrfs_smoke_conus13km_hrrr_warm_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/rrfs_smoke_conus13km_hrrr_warm_debug +Checking test 083 rrfs_smoke_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 833.530867 - 0: The maximum resident set size (KB) = 1026512 + 0: The total amount of wall time = 837.710450 + 0: The maximum resident set size (KB) = 1068356 -Test 082 rrfs_smoke_conus13km_hrrr_warm_debug PASS +Test 083 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rrfs_smoke_conus13km_hrrr_warm_debug_2threads -Checking test 083 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +Checking test 084 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 477.171558 - 0: The maximum resident set size (KB) = 931416 + 0: The total amount of wall time = 477.884701 + 0: The maximum resident set size (KB) = 979496 -Test 083 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS +Test 084 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rrfs_conus13km_hrrr_warm_debug -Checking test 084 rrfs_conus13km_hrrr_warm_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/rrfs_conus13km_hrrr_warm_debug +Checking test 085 rrfs_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 741.686105 - 0: The maximum resident set size (KB) = 970128 + 0: The total amount of wall time = 753.157060 + 0: The maximum resident set size (KB) = 978508 -Test 084 rrfs_conus13km_hrrr_warm_debug PASS +Test 085 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_CubedSphereGrid_debug -Checking test 085 control_CubedSphereGrid_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_CubedSphereGrid_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_CubedSphereGrid_debug +Checking test 086 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3416,359 +3428,359 @@ Checking test 085 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 162.758102 - 0: The maximum resident set size (KB) = 797120 + 0: The total amount of wall time = 161.905093 + 0: The maximum resident set size (KB) = 794816 -Test 085 control_CubedSphereGrid_debug PASS +Test 086 control_CubedSphereGrid_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_wrtGauss_netcdf_parallel_debug -Checking test 086 control_wrtGauss_netcdf_parallel_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_wrtGauss_netcdf_parallel_debug +Checking test 087 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 152.597132 - 0: The maximum resident set size (KB) = 794888 + 0: The total amount of wall time = 149.042585 + 0: The maximum resident set size (KB) = 799048 -Test 086 control_wrtGauss_netcdf_parallel_debug PASS +Test 087 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_stochy_debug -Checking test 087 control_stochy_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_stochy_debug +Checking test 088 control_stochy_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 170.395696 - 0: The maximum resident set size (KB) = 801584 + 0: The total amount of wall time = 172.171937 + 0: The maximum resident set size (KB) = 798988 -Test 087 control_stochy_debug PASS +Test 088 control_stochy_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_lndp_debug -Checking test 088 control_lndp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_lndp_debug +Checking test 089 control_lndp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 156.056866 - 0: The maximum resident set size (KB) = 800752 + 0: The total amount of wall time = 153.281131 + 0: The maximum resident set size (KB) = 798784 -Test 088 control_lndp_debug PASS +Test 089 control_lndp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmg_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_csawmg_debug -Checking test 089 control_csawmg_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_csawmg_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_csawmg_debug +Checking test 090 control_csawmg_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 232.555325 - 0: The maximum resident set size (KB) = 840704 + 0: The total amount of wall time = 234.504297 + 0: The maximum resident set size (KB) = 845812 -Test 089 control_csawmg_debug PASS +Test 090 control_csawmg_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmgt_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_csawmgt_debug -Checking test 090 control_csawmgt_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_csawmgt_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_csawmgt_debug +Checking test 091 control_csawmgt_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 233.905969 - 0: The maximum resident set size (KB) = 842276 + 0: The total amount of wall time = 230.148925 + 0: The maximum resident set size (KB) = 847064 -Test 090 control_csawmgt_debug PASS +Test 091 control_csawmgt_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_ras_debug -Checking test 091 control_ras_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_ras_debug +Checking test 092 control_ras_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 156.334503 - 0: The maximum resident set size (KB) = 814028 + 0: The total amount of wall time = 153.327677 + 0: The maximum resident set size (KB) = 806276 -Test 091 control_ras_debug PASS +Test 092 control_ras_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_diag_debug -Checking test 092 control_diag_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_diag_debug +Checking test 093 control_diag_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 161.608430 - 0: The maximum resident set size (KB) = 854032 + 0: The total amount of wall time = 160.481968 + 0: The maximum resident set size (KB) = 854868 -Test 092 control_diag_debug PASS +Test 093 control_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_debug_p8 -Checking test 093 control_debug_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_debug_p8 +Checking test 094 control_debug_p8 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 176.670061 - 0: The maximum resident set size (KB) = 1620932 + 0: The total amount of wall time = 169.820090 + 0: The maximum resident set size (KB) = 1630396 -Test 093 control_debug_p8 PASS +Test 094 control_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/regional_debug -Checking test 094 regional_debug results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf001.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/regional_debug +Checking test 095 regional_debug results .... + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK - 0: The total amount of wall time = 994.349237 - 0: The maximum resident set size (KB) = 889008 + 0: The total amount of wall time = 974.899857 + 0: The maximum resident set size (KB) = 886896 -Test 094 regional_debug PASS +Test 095 regional_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rap_control_debug -Checking test 095 rap_control_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/rap_control_debug +Checking test 096 rap_control_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 278.634088 - 0: The maximum resident set size (KB) = 1180108 + 0: The total amount of wall time = 276.877924 + 0: The maximum resident set size (KB) = 1172556 -Test 095 rap_control_debug PASS +Test 096 rap_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hrrr_control_debug -Checking test 096 hrrr_control_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/hrrr_control_debug +Checking test 097 hrrr_control_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.020402 - 0: The maximum resident set size (KB) = 1174880 + 0: The total amount of wall time = 273.566652 + 0: The maximum resident set size (KB) = 1180064 -Test 096 hrrr_control_debug PASS +Test 097 hrrr_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rap_unified_drag_suite_debug -Checking test 097 rap_unified_drag_suite_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/rap_unified_drag_suite_debug +Checking test 098 rap_unified_drag_suite_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.135093 - 0: The maximum resident set size (KB) = 1181140 + 0: The total amount of wall time = 273.198378 + 0: The maximum resident set size (KB) = 1174232 -Test 097 rap_unified_drag_suite_debug PASS +Test 098 rap_unified_drag_suite_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rap_diag_debug -Checking test 098 rap_diag_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/rap_diag_debug +Checking test 099 rap_diag_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 294.984771 - 0: The maximum resident set size (KB) = 1264084 + 0: The total amount of wall time = 289.845498 + 0: The maximum resident set size (KB) = 1258216 -Test 098 rap_diag_debug PASS +Test 099 rap_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rap_cires_ugwp_debug -Checking test 099 rap_cires_ugwp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/rap_cires_ugwp_debug +Checking test 100 rap_cires_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 282.590303 - 0: The maximum resident set size (KB) = 1176888 + 0: The total amount of wall time = 279.074067 + 0: The maximum resident set size (KB) = 1174024 -Test 099 rap_cires_ugwp_debug PASS +Test 100 rap_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rap_unified_ugwp_debug -Checking test 100 rap_unified_ugwp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/rap_unified_ugwp_debug +Checking test 101 rap_unified_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.081037 - 0: The maximum resident set size (KB) = 1178304 + 0: The total amount of wall time = 284.193340 + 0: The maximum resident set size (KB) = 1174808 -Test 100 rap_unified_ugwp_debug PASS +Test 101 rap_unified_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rap_lndp_debug -Checking test 101 rap_lndp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/rap_lndp_debug +Checking test 102 rap_lndp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 278.523651 - 0: The maximum resident set size (KB) = 1177260 + 0: The total amount of wall time = 282.270038 + 0: The maximum resident set size (KB) = 1179072 -Test 101 rap_lndp_debug PASS +Test 102 rap_lndp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_flake_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rap_flake_debug -Checking test 102 rap_flake_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_flake_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/rap_flake_debug +Checking test 103 rap_flake_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 272.179584 - 0: The maximum resident set size (KB) = 1176924 + 0: The total amount of wall time = 274.376207 + 0: The maximum resident set size (KB) = 1178232 -Test 102 rap_flake_debug PASS +Test 103 rap_flake_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rap_progcld_thompson_debug -Checking test 103 rap_progcld_thompson_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/rap_progcld_thompson_debug +Checking test 104 rap_progcld_thompson_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.436971 - 0: The maximum resident set size (KB) = 1175956 + 0: The total amount of wall time = 272.877637 + 0: The maximum resident set size (KB) = 1177216 -Test 103 rap_progcld_thompson_debug PASS +Test 104 rap_progcld_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_noah_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rap_noah_debug -Checking test 104 rap_noah_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_noah_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/rap_noah_debug +Checking test 105 rap_noah_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.299155 - 0: The maximum resident set size (KB) = 1178468 + 0: The total amount of wall time = 270.897488 + 0: The maximum resident set size (KB) = 1174928 -Test 104 rap_noah_debug PASS +Test 105 rap_noah_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rap_sfcdiff_debug -Checking test 105 rap_sfcdiff_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_sfcdiff_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/rap_sfcdiff_debug +Checking test 106 rap_sfcdiff_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.081274 - 0: The maximum resident set size (KB) = 1174088 + 0: The total amount of wall time = 273.002592 + 0: The maximum resident set size (KB) = 1174732 -Test 105 rap_sfcdiff_debug PASS +Test 106 rap_sfcdiff_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 106 rap_noah_sfcdiff_cires_ugwp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 107 rap_noah_sfcdiff_cires_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 451.569824 - 0: The maximum resident set size (KB) = 1179252 + 0: The total amount of wall time = 449.872032 + 0: The maximum resident set size (KB) = 1168400 -Test 106 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 107 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rrfs_v1beta_debug -Checking test 107 rrfs_v1beta_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/rrfs_v1beta_debug +Checking test 108 rrfs_v1beta_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.348634 - 0: The maximum resident set size (KB) = 1174844 + 0: The total amount of wall time = 273.633938 + 0: The maximum resident set size (KB) = 1172984 -Test 107 rrfs_v1beta_debug PASS +Test 108 rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_wam_debug -Checking test 108 control_wam_debug results .... - Comparing sfcf019.nc ............ALT CHECK......OK - Comparing atmf019.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_wam_debug +Checking test 109 control_wam_debug results .... + Comparing sfcf019.nc .........OK + Comparing atmf019.nc .........OK - 0: The total amount of wall time = 283.293886 - 0: The maximum resident set size (KB) = 524360 + 0: The total amount of wall time = 282.035872 + 0: The maximum resident set size (KB) = 523900 -Test 108 control_wam_debug PASS +Test 109 control_wam_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/regional_spp_sppt_shum_skeb_dyn32_phy32 -Checking test 109 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf001.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF01 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 215.405384 - 0: The maximum resident set size (KB) = 1073344 + 0: The total amount of wall time = 216.555576 + 0: The maximum resident set size (KB) = 1082064 -Test 109 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS +Test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rap_control_dyn32_phy32 -Checking test 110 rap_control_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/rap_control_dyn32_phy32 +Checking test 111 rap_control_dyn32_phy32 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 @@ -3808,21 +3820,21 @@ Checking test 110 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 384.083703 - 0: The maximum resident set size (KB) = 1002552 + 0: The total amount of wall time = 380.631925 + 0: The maximum resident set size (KB) = 1001632 -Test 110 rap_control_dyn32_phy32 PASS +Test 111 rap_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hrrr_control_dyn32_phy32 -Checking test 111 hrrr_control_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/hrrr_control_dyn32_phy32 +Checking test 112 hrrr_control_dyn32_phy32 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 @@ -3862,21 +3874,21 @@ Checking test 111 hrrr_control_dyn32_phy32 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 = 197.838688 - 0: The maximum resident set size (KB) = 952292 + 0: The total amount of wall time = 196.997473 + 0: The maximum resident set size (KB) = 963560 -Test 111 hrrr_control_dyn32_phy32 PASS +Test 112 hrrr_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rap_2threads_dyn32_phy32 -Checking test 112 rap_2threads_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/rap_2threads_dyn32_phy32 +Checking test 113 rap_2threads_dyn32_phy32 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 @@ -3916,21 +3928,21 @@ Checking test 112 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 366.197872 - 0: The maximum resident set size (KB) = 1023656 + 0: The total amount of wall time = 362.392862 + 0: The maximum resident set size (KB) = 1025948 -Test 112 rap_2threads_dyn32_phy32 PASS +Test 113 rap_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hrrr_control_2threads_dyn32_phy32 -Checking test 113 hrrr_control_2threads_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/hrrr_control_2threads_dyn32_phy32 +Checking test 114 hrrr_control_2threads_dyn32_phy32 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 @@ -3970,21 +3982,21 @@ Checking test 113 hrrr_control_2threads_dyn32_phy32 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 = 189.974474 - 0: The maximum resident set size (KB) = 1003196 + 0: The total amount of wall time = 186.947364 + 0: The maximum resident set size (KB) = 1002496 -Test 113 hrrr_control_2threads_dyn32_phy32 PASS +Test 114 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hrrr_control_decomp_dyn32_phy32 -Checking test 114 hrrr_control_decomp_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/hrrr_control_decomp_dyn32_phy32 +Checking test 115 hrrr_control_decomp_dyn32_phy32 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 @@ -4024,17 +4036,17 @@ Checking test 114 hrrr_control_decomp_dyn32_phy32 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 = 211.226724 - 0: The maximum resident set size (KB) = 900448 + 0: The total amount of wall time = 208.743091 + 0: The maximum resident set size (KB) = 897864 -Test 114 hrrr_control_decomp_dyn32_phy32 PASS +Test 115 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rap_restart_dyn32_phy32 -Checking test 115 rap_restart_dyn32_phy32 results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/rap_restart_dyn32_phy32 +Checking test 116 rap_restart_dyn32_phy32 results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -4070,17 +4082,17 @@ Checking test 115 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 280.984755 - 0: The maximum resident set size (KB) = 941540 + 0: The total amount of wall time = 281.618075 + 0: The maximum resident set size (KB) = 945512 -Test 115 rap_restart_dyn32_phy32 PASS +Test 116 rap_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hrrr_control_restart_dyn32_phy32 -Checking test 116 hrrr_control_restart_dyn32_phy32 results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/hrrr_control_restart_dyn32_phy32 +Checking test 117 hrrr_control_restart_dyn32_phy32 results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.180000.coupler.res .........OK @@ -4116,21 +4128,21 @@ Checking test 116 hrrr_control_restart_dyn32_phy32 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 = 104.383676 - 0: The maximum resident set size (KB) = 863784 + 0: The total amount of wall time = 103.784972 + 0: The maximum resident set size (KB) = 869908 -Test 116 hrrr_control_restart_dyn32_phy32 PASS +Test 117 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rap_control_dyn64_phy32 -Checking test 117 rap_control_dyn64_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/rap_control_dyn64_phy32 +Checking test 118 rap_control_dyn64_phy32 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 @@ -4170,116 +4182,116 @@ Checking test 117 rap_control_dyn64_phy32 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 = 244.978921 - 0: The maximum resident set size (KB) = 957304 + 0: The total amount of wall time = 243.189858 + 0: The maximum resident set size (KB) = 964892 -Test 117 rap_control_dyn64_phy32 PASS +Test 118 rap_control_dyn64_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rap_control_debug_dyn32_phy32 -Checking test 118 rap_control_debug_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/rap_control_debug_dyn32_phy32 +Checking test 119 rap_control_debug_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 278.839032 - 0: The maximum resident set size (KB) = 1062532 + 0: The total amount of wall time = 270.123720 + 0: The maximum resident set size (KB) = 1063760 -Test 118 rap_control_debug_dyn32_phy32 PASS +Test 119 rap_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hrrr_control_debug_dyn32_phy32 -Checking test 119 hrrr_control_debug_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/hrrr_control_debug_dyn32_phy32 +Checking test 120 hrrr_control_debug_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.415819 - 0: The maximum resident set size (KB) = 1058936 + 0: The total amount of wall time = 265.452259 + 0: The maximum resident set size (KB) = 1058328 -Test 119 hrrr_control_debug_dyn32_phy32 PASS +Test 120 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/rap_control_dyn64_phy32_debug -Checking test 120 rap_control_dyn64_phy32_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_debug_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/rap_control_dyn64_phy32_debug +Checking test 121 rap_control_dyn64_phy32_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 283.314404 - 0: The maximum resident set size (KB) = 1097908 + 0: The total amount of wall time = 280.460212 + 0: The maximum resident set size (KB) = 1098164 -Test 120 rap_control_dyn64_phy32_debug PASS +Test 121 rap_control_dyn64_phy32_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hafs_regional_atm -Checking test 121 hafs_regional_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/hafs_regional_atm +Checking test 122 hafs_regional_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 245.050328 - 0: The maximum resident set size (KB) = 1049456 + 0: The total amount of wall time = 237.568373 + 0: The maximum resident set size (KB) = 1058392 -Test 121 hafs_regional_atm PASS +Test 122 hafs_regional_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hafs_regional_atm_thompson_gfdlsf -Checking test 122 hafs_regional_atm_thompson_gfdlsf results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/hafs_regional_atm_thompson_gfdlsf +Checking test 123 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 360.087926 - 0: The maximum resident set size (KB) = 1417976 + 0: The total amount of wall time = 311.366199 + 0: The maximum resident set size (KB) = 1419044 -Test 122 hafs_regional_atm_thompson_gfdlsf PASS +Test 123 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hafs_regional_atm_ocn -Checking test 123 hafs_regional_atm_ocn results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/hafs_regional_atm_ocn +Checking test 124 hafs_regional_atm_ocn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK Comparing archs.2019_241_06.a .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 387.516127 - 0: The maximum resident set size (KB) = 1218760 + 0: The total amount of wall time = 381.833077 + 0: The maximum resident set size (KB) = 1232756 -Test 123 hafs_regional_atm_ocn PASS +Test 124 hafs_regional_atm_ocn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hafs_regional_atm_wav -Checking test 124 hafs_regional_atm_wav results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_atm_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/hafs_regional_atm_wav +Checking test 125 hafs_regional_atm_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 749.223680 - 0: The maximum resident set size (KB) = 1254416 + 0: The total amount of wall time = 737.591779 + 0: The maximum resident set size (KB) = 1255696 -Test 124 hafs_regional_atm_wav PASS +Test 125 hafs_regional_atm_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hafs_regional_atm_ocn_wav -Checking test 125 hafs_regional_atm_ocn_wav results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/hafs_regional_atm_ocn_wav +Checking test 126 hafs_regional_atm_ocn_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK Comparing archs.2019_241_06.a .........OK Comparing out_grd.ww3 .........OK @@ -4287,323 +4299,323 @@ Checking test 125 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 859.817976 - 0: The maximum resident set size (KB) = 1237348 + 0: The total amount of wall time = 841.617142 + 0: The maximum resident set size (KB) = 1276068 -Test 125 hafs_regional_atm_ocn_wav PASS +Test 126 hafs_regional_atm_ocn_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hafs_regional_1nest_atm -Checking test 126 hafs_regional_1nest_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/hafs_regional_1nest_atm +Checking test 127 hafs_regional_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 323.623553 - 0: The maximum resident set size (KB) = 507924 + 0: The total amount of wall time = 321.306505 + 0: The maximum resident set size (KB) = 506028 -Test 126 hafs_regional_1nest_atm PASS +Test 127 hafs_regional_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hafs_regional_telescopic_2nests_atm -Checking test 127 hafs_regional_telescopic_2nests_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK - Comparing atm.nest03.f006.nc ............ALT CHECK......OK - Comparing sfc.nest03.f006.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/hafs_regional_telescopic_2nests_atm +Checking test 128 hafs_regional_telescopic_2nests_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing atm.nest03.f006.nc .........OK + Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 367.380480 - 0: The maximum resident set size (KB) = 512896 + 0: The total amount of wall time = 364.693803 + 0: The maximum resident set size (KB) = 514736 -Test 127 hafs_regional_telescopic_2nests_atm PASS +Test 128 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hafs_global_1nest_atm -Checking test 128 hafs_global_1nest_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_global_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/hafs_global_1nest_atm +Checking test 129 hafs_global_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 149.388471 - 0: The maximum resident set size (KB) = 352112 + 0: The total amount of wall time = 149.693287 + 0: The maximum resident set size (KB) = 355780 -Test 128 hafs_global_1nest_atm PASS +Test 129 hafs_global_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_multiple_4nests_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hafs_global_multiple_4nests_atm -Checking test 129 hafs_global_multiple_4nests_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK - Comparing atm.nest03.f006.nc ............ALT CHECK......OK - Comparing sfc.nest03.f006.nc ............ALT CHECK......OK - Comparing atm.nest04.f006.nc ............ALT CHECK......OK - Comparing sfc.nest04.f006.nc ............ALT CHECK......OK - Comparing atm.nest05.f006.nc ............ALT CHECK......OK - Comparing sfc.nest05.f006.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_global_multiple_4nests_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/hafs_global_multiple_4nests_atm +Checking test 130 hafs_global_multiple_4nests_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing atm.nest03.f006.nc .........OK + Comparing sfc.nest03.f006.nc .........OK + Comparing atm.nest04.f006.nc .........OK + Comparing sfc.nest04.f006.nc .........OK + Comparing atm.nest05.f006.nc .........OK + Comparing sfc.nest05.f006.nc .........OK Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK Comparing HURPRS.GrbF06.nest03 .........OK Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 416.314782 - 0: The maximum resident set size (KB) = 423756 + 0: The total amount of wall time = 409.230555 + 0: The maximum resident set size (KB) = 425072 -Test 129 hafs_global_multiple_4nests_atm PASS +Test 130 hafs_global_multiple_4nests_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hafs_regional_specified_moving_1nest_atm -Checking test 130 hafs_regional_specified_moving_1nest_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/hafs_regional_specified_moving_1nest_atm +Checking test 131 hafs_regional_specified_moving_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 203.528711 - 0: The maximum resident set size (KB) = 521136 + 0: The total amount of wall time = 202.639692 + 0: The maximum resident set size (KB) = 520564 -Test 130 hafs_regional_specified_moving_1nest_atm PASS +Test 131 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hafs_regional_storm_following_1nest_atm -Checking test 131 hafs_regional_storm_following_1nest_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/hafs_regional_storm_following_1nest_atm +Checking test 132 hafs_regional_storm_following_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 195.415855 - 0: The maximum resident set size (KB) = 520288 + 0: The total amount of wall time = 191.183657 + 0: The maximum resident set size (KB) = 521500 -Test 131 hafs_regional_storm_following_1nest_atm PASS +Test 132 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hafs_regional_storm_following_1nest_atm_ocn -Checking test 132 hafs_regional_storm_following_1nest_atm_ocn results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/hafs_regional_storm_following_1nest_atm_ocn +Checking test 133 hafs_regional_storm_following_1nest_atm_ocn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 229.068345 - 0: The maximum resident set size (KB) = 564968 + 0: The total amount of wall time = 221.671687 + 0: The maximum resident set size (KB) = 568856 -Test 132 hafs_regional_storm_following_1nest_atm_ocn PASS +Test 133 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hafs_global_storm_following_1nest_atm -Checking test 133 hafs_global_storm_following_1nest_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_global_storm_following_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/hafs_global_storm_following_1nest_atm +Checking test 134 hafs_global_storm_following_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 61.201767 - 0: The maximum resident set size (KB) = 371876 + 0: The total amount of wall time = 58.609290 + 0: The maximum resident set size (KB) = 372860 -Test 133 hafs_global_storm_following_1nest_atm PASS +Test 134 hafs_global_storm_following_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hafs_regional_storm_following_1nest_atm_ocn_debug -Checking test 134 hafs_regional_storm_following_1nest_atm_ocn_debug results .... - Comparing atmf001.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atm.nest02.f001.nc ............ALT CHECK......OK - Comparing sfc.nest02.f001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/hafs_regional_storm_following_1nest_atm_ocn_debug +Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 756.593891 - 0: The maximum resident set size (KB) = 593236 + 0: The total amount of wall time = 771.578917 + 0: The maximum resident set size (KB) = 588124 -Test 134 hafs_regional_storm_following_1nest_atm_ocn_debug PASS +Test 135 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hafs_regional_storm_following_1nest_atm_ocn_wav -Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_wav results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 136 hafs_regional_storm_following_1nest_atm_ocn_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 484.905920 - 0: The maximum resident set size (KB) = 624796 + 0: The total amount of wall time = 480.566906 + 0: The maximum resident set size (KB) = 619888 -Test 135 hafs_regional_storm_following_1nest_atm_ocn_wav PASS +Test 136 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_docn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hafs_regional_docn -Checking test 136 hafs_regional_docn results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_docn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/hafs_regional_docn +Checking test 137 hafs_regional_docn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 367.234679 - 0: The maximum resident set size (KB) = 1224216 + 0: The total amount of wall time = 356.149539 + 0: The maximum resident set size (KB) = 1226904 -Test 136 hafs_regional_docn PASS +Test 137 hafs_regional_docn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_docn_oisst -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hafs_regional_docn_oisst -Checking test 137 hafs_regional_docn_oisst results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_docn_oisst +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/hafs_regional_docn_oisst +Checking test 138 hafs_regional_docn_oisst results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 371.263886 - 0: The maximum resident set size (KB) = 1207840 + 0: The total amount of wall time = 356.346451 + 0: The maximum resident set size (KB) = 1214696 -Test 137 hafs_regional_docn_oisst PASS +Test 138 hafs_regional_docn_oisst PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_datm_cdeps -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/hafs_regional_datm_cdeps -Checking test 138 hafs_regional_datm_cdeps results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_datm_cdeps +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/hafs_regional_datm_cdeps +Checking test 139 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 951.079029 - 0: The maximum resident set size (KB) = 1040516 + 0: The total amount of wall time = 946.032996 + 0: The maximum resident set size (KB) = 1041360 -Test 138 hafs_regional_datm_cdeps PASS +Test 139 hafs_regional_datm_cdeps PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/datm_cdeps_control_cfsr -Checking test 139 datm_cdeps_control_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/datm_cdeps_control_cfsr +Checking test 140 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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.497153 - 0: The maximum resident set size (KB) = 1056968 + 0: The total amount of wall time = 155.205284 + 0: The maximum resident set size (KB) = 1058680 -Test 139 datm_cdeps_control_cfsr PASS +Test 140 datm_cdeps_control_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/datm_cdeps_restart_cfsr -Checking test 140 datm_cdeps_restart_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/datm_cdeps_restart_cfsr +Checking test 141 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 94.396105 - 0: The maximum resident set size (KB) = 1040204 + 0: The total amount of wall time = 93.463391 + 0: The maximum resident set size (KB) = 1044932 -Test 140 datm_cdeps_restart_cfsr PASS +Test 141 datm_cdeps_restart_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/datm_cdeps_control_gefs -Checking test 141 datm_cdeps_control_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/datm_cdeps_control_gefs +Checking test 142 datm_cdeps_control_gefs 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.189637 - 0: The maximum resident set size (KB) = 964436 + 0: The total amount of wall time = 148.361499 + 0: The maximum resident set size (KB) = 958508 -Test 141 datm_cdeps_control_gefs PASS +Test 142 datm_cdeps_control_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_iau_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/datm_cdeps_iau_gefs -Checking test 142 datm_cdeps_iau_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_iau_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/datm_cdeps_iau_gefs +Checking test 143 datm_cdeps_iau_gefs 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.421379 - 0: The maximum resident set size (KB) = 962720 + 0: The total amount of wall time = 149.962982 + 0: The maximum resident set size (KB) = 967132 -Test 142 datm_cdeps_iau_gefs PASS +Test 143 datm_cdeps_iau_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_stochy_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/datm_cdeps_stochy_gefs -Checking test 143 datm_cdeps_stochy_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_stochy_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/datm_cdeps_stochy_gefs +Checking test 144 datm_cdeps_stochy_gefs 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.713391 - 0: The maximum resident set size (KB) = 967716 + 0: The total amount of wall time = 151.861041 + 0: The maximum resident set size (KB) = 965964 -Test 143 datm_cdeps_stochy_gefs PASS +Test 144 datm_cdeps_stochy_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_ciceC_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/datm_cdeps_ciceC_cfsr -Checking test 144 datm_cdeps_ciceC_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_ciceC_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/datm_cdeps_ciceC_cfsr +Checking test 145 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.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.233604 - 0: The maximum resident set size (KB) = 1059768 + 0: The total amount of wall time = 153.588802 + 0: The maximum resident set size (KB) = 1069640 -Test 144 datm_cdeps_ciceC_cfsr PASS +Test 145 datm_cdeps_ciceC_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/datm_cdeps_bulk_cfsr -Checking test 145 datm_cdeps_bulk_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/datm_cdeps_bulk_cfsr +Checking test 146 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 156.868444 - 0: The maximum resident set size (KB) = 1079316 + 0: The total amount of wall time = 154.782699 + 0: The maximum resident set size (KB) = 1058832 -Test 145 datm_cdeps_bulk_cfsr PASS +Test 146 datm_cdeps_bulk_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/datm_cdeps_bulk_gefs -Checking test 146 datm_cdeps_bulk_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/datm_cdeps_bulk_gefs +Checking test 147 datm_cdeps_bulk_gefs 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 = 154.089828 - 0: The maximum resident set size (KB) = 961584 + 0: The total amount of wall time = 149.275618 + 0: The maximum resident set size (KB) = 968228 -Test 146 datm_cdeps_bulk_gefs PASS +Test 147 datm_cdeps_bulk_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/datm_cdeps_mx025_cfsr -Checking test 147 datm_cdeps_mx025_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/datm_cdeps_mx025_cfsr +Checking test 148 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4611,15 +4623,15 @@ Checking test 147 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 410.742645 - 0: The maximum resident set size (KB) = 878056 + 0: The total amount of wall time = 395.320969 + 0: The maximum resident set size (KB) = 871536 -Test 147 datm_cdeps_mx025_cfsr PASS +Test 148 datm_cdeps_mx025_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/datm_cdeps_mx025_gefs -Checking test 148 datm_cdeps_mx025_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/datm_cdeps_mx025_gefs +Checking test 149 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4627,78 +4639,78 @@ Checking test 148 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 420.849556 - 0: The maximum resident set size (KB) = 927400 + 0: The total amount of wall time = 397.332813 + 0: The maximum resident set size (KB) = 926324 -Test 148 datm_cdeps_mx025_gefs PASS +Test 149 datm_cdeps_mx025_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/datm_cdeps_multiple_files_cfsr -Checking test 149 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/datm_cdeps_multiple_files_cfsr +Checking test 150 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 161.593044 - 0: The maximum resident set size (KB) = 1061288 + 0: The total amount of wall time = 153.962135 + 0: The maximum resident set size (KB) = 1058548 -Test 149 datm_cdeps_multiple_files_cfsr PASS +Test 150 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/datm_cdeps_3072x1536_cfsr -Checking test 150 datm_cdeps_3072x1536_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/datm_cdeps_3072x1536_cfsr +Checking test 151 datm_cdeps_3072x1536_cfsr 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 = 225.639366 - 0: The maximum resident set size (KB) = 2374240 + 0: The total amount of wall time = 218.111376 + 0: The maximum resident set size (KB) = 2369404 -Test 150 datm_cdeps_3072x1536_cfsr PASS +Test 151 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_gfs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/datm_cdeps_gfs -Checking test 151 datm_cdeps_gfs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_gfs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/datm_cdeps_gfs +Checking test 152 datm_cdeps_gfs results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 223.833677 - 0: The maximum resident set size (KB) = 2359140 + 0: The total amount of wall time = 218.269599 + 0: The maximum resident set size (KB) = 2371852 -Test 151 datm_cdeps_gfs PASS +Test 152 datm_cdeps_gfs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/datm_cdeps_debug_cfsr -Checking test 152 datm_cdeps_debug_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/datm_cdeps_debug_cfsr +Checking test 153 datm_cdeps_debug_cfsr 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 = 448.094237 - 0: The maximum resident set size (KB) = 1015312 + 0: The total amount of wall time = 446.786465 + 0: The maximum resident set size (KB) = 986876 -Test 152 datm_cdeps_debug_cfsr PASS +Test 153 datm_cdeps_debug_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/datm_cdeps_control_cfsr_faster -Checking test 153 datm_cdeps_control_cfsr_faster results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_control_cfsr_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/datm_cdeps_control_cfsr_faster +Checking test 154 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 161.197516 - 0: The maximum resident set size (KB) = 1067300 + 0: The total amount of wall time = 152.325956 + 0: The maximum resident set size (KB) = 1069960 -Test 153 datm_cdeps_control_cfsr_faster PASS +Test 154 datm_cdeps_control_cfsr_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/datm_cdeps_lnd_gswp3 -Checking test 154 datm_cdeps_lnd_gswp3 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_lnd_gswp3 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/datm_cdeps_lnd_gswp3 +Checking test 155 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4706,15 +4718,15 @@ Checking test 154 datm_cdeps_lnd_gswp3 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.673630 - 0: The maximum resident set size (KB) = 263500 + 0: The total amount of wall time = 7.215629 + 0: The maximum resident set size (KB) = 267328 -Test 154 datm_cdeps_lnd_gswp3 PASS +Test 155 datm_cdeps_lnd_gswp3 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/datm_cdeps_lnd_gswp3_rst -Checking test 155 datm_cdeps_lnd_gswp3_rst results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_lnd_gswp3 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/datm_cdeps_lnd_gswp3_rst +Checking test 156 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4722,15 +4734,15 @@ Checking test 155 datm_cdeps_lnd_gswp3_rst 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 = 17.146421 - 0: The maximum resident set size (KB) = 262416 + 0: The total amount of wall time = 12.704865 + 0: The maximum resident set size (KB) = 273436 -Test 155 datm_cdeps_lnd_gswp3_rst PASS +Test 156 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_atmlnd_sbs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_p8_atmlnd_sbs -Checking test 156 control_p8_atmlnd_sbs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8_atmlnd_sbs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_p8_atmlnd_sbs +Checking test 157 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -4814,19 +4826,19 @@ Checking test 156 control_p8_atmlnd_sbs 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 = 209.793724 - 0: The maximum resident set size (KB) = 1607328 + 0: The total amount of wall time = 204.120558 + 0: The maximum resident set size (KB) = 1615716 -Test 156 control_p8_atmlnd_sbs PASS +Test 157 control_p8_atmlnd_sbs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_atmwav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/control_atmwav -Checking test 157 control_atmwav results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_atmwav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_atmwav +Checking test 158 control_atmwav results .... + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -4865,19 +4877,19 @@ Checking test 157 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 90.218628 - 0: The maximum resident set size (KB) = 664340 + 0: The total amount of wall time = 87.233602 + 0: The maximum resident set size (KB) = 663416 -Test 157 control_atmwav PASS +Test 158 control_atmwav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/atmaero_control_p8 -Checking test 158 atmaero_control_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/atmaero_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/atmaero_control_p8 +Checking test 159 atmaero_control_p8 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 @@ -4916,19 +4928,19 @@ Checking test 158 atmaero_control_p8 results .... Comparing 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.201993 - 0: The maximum resident set size (KB) = 2977620 + 0: The total amount of wall time = 230.974139 + 0: The maximum resident set size (KB) = 2977544 -Test 158 atmaero_control_p8 PASS +Test 159 atmaero_control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8_rad -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/atmaero_control_p8_rad -Checking test 159 atmaero_control_p8_rad results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/atmaero_control_p8_rad +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/atmaero_control_p8_rad +Checking test 160 atmaero_control_p8_rad 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 @@ -4967,19 +4979,19 @@ Checking test 159 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 286.673313 - 0: The maximum resident set size (KB) = 3047312 + 0: The total amount of wall time = 284.232167 + 0: The maximum resident set size (KB) = 3045920 -Test 159 atmaero_control_p8_rad PASS +Test 160 atmaero_control_p8_rad PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8_rad_micro -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/atmaero_control_p8_rad_micro -Checking test 160 atmaero_control_p8_rad_micro results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/atmaero_control_p8_rad_micro +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/atmaero_control_p8_rad_micro +Checking test 161 atmaero_control_p8_rad_micro 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 @@ -5018,21 +5030,21 @@ Checking test 160 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 287.697855 - 0: The maximum resident set size (KB) = 3055628 + 0: The total amount of wall time = 284.843515 + 0: The maximum resident set size (KB) = 3054668 -Test 160 atmaero_control_p8_rad_micro PASS +Test 161 atmaero_control_p8_rad_micro PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/regional_atmaq -Checking test 161 regional_atmaq results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf003.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf003.nc ............ALT CHECK......OK - Comparing atmf006.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_atmaq +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/regional_atmaq +Checking test 162 regional_atmaq results .... + Comparing sfcf000.nc .........OK + Comparing sfcf003.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf003.nc .........OK + Comparing atmf006.nc .........OK Comparing RESTART/20190801.180000.coupler.res .........OK Comparing RESTART/20190801.180000.fv_core.res.nc .........OK Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK @@ -5041,19 +5053,19 @@ Checking test 161 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 667.283323 - 0: The maximum resident set size (KB) = 1468916 + 0: The total amount of wall time = 631.002126 + 0: The maximum resident set size (KB) = 1468172 -Test 161 regional_atmaq PASS +Test 162 regional_atmaq PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/regional_atmaq_debug -Checking test 162 regional_atmaq_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_atmaq_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/regional_atmaq_debug +Checking test 163 regional_atmaq_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK Comparing RESTART/20190801.130000.coupler.res .........OK Comparing RESTART/20190801.130000.fv_core.res.nc .........OK Comparing RESTART/20190801.130000.fv_core.res.tile1.nc .........OK @@ -5062,21 +5074,21 @@ Checking test 162 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1236.979511 - 0: The maximum resident set size (KB) = 1402492 + 0: The total amount of wall time = 1208.023667 + 0: The maximum resident set size (KB) = 1399224 -Test 162 regional_atmaq_debug PASS +Test 163 regional_atmaq_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8117/regional_atmaq_faster -Checking test 163 regional_atmaq_faster results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf003.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf003.nc ............ALT CHECK......OK - Comparing atmf006.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_atmaq_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/regional_atmaq_faster +Checking test 164 regional_atmaq_faster results .... + Comparing sfcf000.nc .........OK + Comparing sfcf003.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf003.nc .........OK + Comparing atmf006.nc .........OK Comparing RESTART/20190801.180000.coupler.res .........OK Comparing RESTART/20190801.180000.fv_core.res.nc .........OK Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK @@ -5085,12 +5097,12 @@ Checking test 163 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 583.905228 - 0: The maximum resident set size (KB) = 1473108 + 0: The total amount of wall time = 558.602729 + 0: The maximum resident set size (KB) = 1471224 -Test 163 regional_atmaq_faster PASS +Test 164 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Tue Mar 28 22:11:47 UTC 2023 -Elapsed time: 01h:23m:03s. Have a nice day! +Thu Mar 30 15:15:27 UTC 2023 +Elapsed time: 01h:11m:31s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index ffe4cc711c4..3fb590e63e0 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,42 +1,43 @@ -Tue Mar 28 20:48:38 UTC 2023 +Fri Mar 31 12:35:21 UTC 2023 Start Regression test -Compile 001 elapsed time 1962 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 002 elapsed time 1890 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 003 elapsed time 1858 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 004 elapsed time 361 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 287 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 001 elapsed time 1953 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 002 elapsed time 1891 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 003 elapsed time 1860 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 004 elapsed time 360 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 277 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON Compile 006 elapsed time 1521 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 007 elapsed time 1558 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 007 elapsed time 1548 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON Compile 008 elapsed time 3371 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 009 elapsed time 1688 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 010 elapsed time 1616 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 011 elapsed time 1529 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 012 elapsed time 1446 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 013 elapsed time 2056 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 014 elapsed time 334 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 285 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 1690 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 010 elapsed time 1615 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 011 elapsed time 1530 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 012 elapsed time 1440 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 013 elapsed time 2052 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 014 elapsed time 330 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 280 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug Compile 016 elapsed time 1460 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 017 elapsed time 1463 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 018 elapsed time 271 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 281 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 1731 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 021 elapsed time 311 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 017 elapsed time 1462 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 018 elapsed time 272 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 286 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 1728 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 021 elapsed time 309 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug Compile 022 elapsed time 2134 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 023 elapsed time 1658 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 024 elapsed time 325 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 025 elapsed time 148 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 302 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 027 elapsed time 115 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 028 elapsed time 1514 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 029 elapsed time 1741 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 030 elapsed time 1500 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 031 elapsed time 1447 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 032 elapsed time 314 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 1900 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8_mixedmode -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/cpld_control_p8_mixedmode +Compile 023 elapsed time 1643 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 024 elapsed time 320 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 025 elapsed time 149 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 312 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 027 elapsed time 117 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 028 elapsed time 1512 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 029 elapsed time 1738 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 030 elapsed time 1508 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 031 elapsed time 1448 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 032 elapsed time 312 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 1897 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8_mixedmode +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_8217/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -101,14 +102,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 574.162889 - 0: The maximum resident set size (KB) = 1746864 + 0: The total amount of wall time = 595.407630 + 0: The maximum resident set size (KB) = 1731236 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_gfsv17 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/cpld_control_gfsv17 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_gfsv17 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_8217/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -172,14 +173,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 404.158832 - 0: The maximum resident set size (KB) = 1645664 + 0: The total amount of wall time = 427.951826 + 0: The maximum resident set size (KB) = 1615920 Test 002 cpld_control_gfsv17 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/cpld_control_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_8217/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -244,74 +245,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 635.644243 - 0: The maximum resident set size (KB) = 1724488 + 0: The total amount of wall time = 636.404599 + 0: The maximum resident set size (KB) = 1782580 Test 003 cpld_control_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/cpld_restart_p8 -Checking test 004 cpld_restart_p8 results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 338.788283 - 0: The maximum resident set size (KB) = 1506612 - -Test 004 cpld_restart_p8 PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/cpld_control_qr_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_8217/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -376,74 +317,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 611.586884 - 0: The maximum resident set size (KB) = 1791980 + 0: The total amount of wall time = 622.572282 + 0: The maximum resident set size (KB) = 1789684 Test 005 cpld_control_qr_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/cpld_restart_qr_p8 -Checking test 006 cpld_restart_qr_p8 results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 351.666269 - 0: The maximum resident set size (KB) = 1515644 - -Test 006 cpld_restart_qr_p8 PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/cpld_2threads_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_8217/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -496,74 +377,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 653.065182 - 0: The maximum resident set size (KB) = 1973296 + 0: The total amount of wall time = 635.956681 + 0: The maximum resident set size (KB) = 1987396 Test 007 cpld_2threads_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/cpld_decomp_p8 -Checking test 008 cpld_decomp_p8 results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 595.313116 - 0: The maximum resident set size (KB) = 1781856 - -Test 008 cpld_decomp_p8 PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/cpld_mpi_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_8217/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -616,14 +437,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 546.834527 - 0: The maximum resident set size (KB) = 1725672 + 0: The total amount of wall time = 530.467054 + 0: The maximum resident set size (KB) = 1722276 Test 009 cpld_mpi_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_ciceC_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/cpld_control_ciceC_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_ciceC_p8 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_8217/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -688,14 +509,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 580.544670 - 0: The maximum resident set size (KB) = 1763840 + 0: The total amount of wall time = 633.921824 + 0: The maximum resident set size (KB) = 1770996 Test 010 cpld_control_ciceC_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_noaero_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/cpld_control_noaero_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_noaero_p8 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_8217/cpld_control_noaero_p8 Checking test 011 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -759,14 +580,14 @@ Checking test 011 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 414.369052 - 0: The maximum resident set size (KB) = 1621908 + 0: The total amount of wall time = 515.098230 + 0: The maximum resident set size (KB) = 1624092 Test 011 cpld_control_noaero_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/cpld_control_nowave_noaero_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_c96_noaero_p8 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_8217/cpld_control_nowave_noaero_p8 Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -828,14 +649,14 @@ Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 423.946266 - 0: The maximum resident set size (KB) = 1673232 + 0: The total amount of wall time = 477.928168 + 0: The maximum resident set size (KB) = 1687096 Test 012 cpld_control_nowave_noaero_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_debug_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/cpld_debug_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_debug_p8 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_8217/cpld_debug_p8 Checking test 013 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -888,14 +709,14 @@ Checking test 013 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 921.382038 - 0: The maximum resident set size (KB) = 1819440 + 0: The total amount of wall time = 897.751246 + 0: The maximum resident set size (KB) = 1821340 Test 013 cpld_debug_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_debug_noaero_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/cpld_debug_noaero_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_debug_noaero_p8 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_8217/cpld_debug_noaero_p8 Checking test 014 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -947,83 +768,14 @@ Checking test 014 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 573.613374 - 0: The maximum resident set size (KB) = 1645016 + 0: The total amount of wall time = 577.139379 + 0: The maximum resident set size (KB) = 1646368 Test 014 cpld_debug_noaero_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/cpld_control_noaero_p8_agrid -Checking test 015 cpld_control_noaero_p8_agrid 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 = 444.309036 - 0: The maximum resident set size (KB) = 1673852 - -Test 015 cpld_control_noaero_p8_agrid PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c48 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/cpld_control_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_c48 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_8217/cpld_control_c48 Checking test 016 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1073,14 +825,14 @@ Checking test 016 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 816.714588 - 0: The maximum resident set size (KB) = 2768996 + 0: The total amount of wall time = 837.201729 + 0: The maximum resident set size (KB) = 2771852 Test 016 cpld_control_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_warmstart_c48 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/cpld_warmstart_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_warmstart_c48 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_8217/cpld_warmstart_c48 Checking test 017 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1130,14 +882,14 @@ Checking test 017 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 221.669966 - 0: The maximum resident set size (KB) = 2761680 + 0: The total amount of wall time = 296.463555 + 0: The maximum resident set size (KB) = 2773972 Test 017 cpld_warmstart_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_warmstart_c48 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/cpld_restart_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_warmstart_c48 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_8217/cpld_restart_c48 Checking test 018 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1187,15 +939,15 @@ Checking test 018 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 123.264805 - 0: The maximum resident set size (KB) = 2204848 + 0: The total amount of wall time = 125.059309 + 0: The maximum resident set size (KB) = 2205008 Test 018 cpld_restart_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8_faster -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/cpld_control_p8_faster -Checking test 019 cpld_control_p8_faster results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8_faster +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/cpld_control_p8_faster +Checking test 002 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1259,15 +1011,15 @@ Checking test 019 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 515.744934 - 0: The maximum resident set size (KB) = 1773752 + 0: The total amount of wall time = 619.710038 + 0: The maximum resident set size (KB) = 1770336 Test 019 cpld_control_p8_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_CubedSphereGrid -Checking test 020 control_CubedSphereGrid results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_CubedSphereGrid +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_CubedSphereGrid +Checking test 003 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1293,69 +1045,69 @@ Checking test 020 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 222.155365 - 0: The maximum resident set size (KB) = 573708 + 0: The total amount of wall time = 194.932107 + 0: The maximum resident set size (KB) = 576804 Test 020 control_CubedSphereGrid PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid_parallel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_CubedSphereGrid_parallel -Checking test 021 control_CubedSphereGrid_parallel results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_CubedSphereGrid_parallel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_CubedSphereGrid_parallel +Checking test 004 control_CubedSphereGrid_parallel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK - 0: The total amount of wall time = 208.671835 - 0: The maximum resident set size (KB) = 577996 + 0: The total amount of wall time = 202.331102 + 0: The maximum resident set size (KB) = 573980 Test 021 control_CubedSphereGrid_parallel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_latlon -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_latlon -Checking test 022 control_latlon results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_latlon +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_latlon +Checking test 005 control_latlon results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 230.834023 - 0: The maximum resident set size (KB) = 578604 + 0: The total amount of wall time = 206.514155 + 0: The maximum resident set size (KB) = 575808 Test 022 control_latlon PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_wrtGauss_netcdf_parallel -Checking test 023 control_wrtGauss_netcdf_parallel results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_wrtGauss_netcdf_parallel +Checking test 006 control_wrtGauss_netcdf_parallel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 204.690218 - 0: The maximum resident set size (KB) = 571836 + 0: The total amount of wall time = 210.948046 + 0: The maximum resident set size (KB) = 574228 Test 023 control_wrtGauss_netcdf_parallel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c48 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_c48 -Checking test 024 control_c48 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_c48 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_c48 +Checking test 007 control_c48 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -1389,55 +1141,55 @@ Checking test 024 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 601.495916 -0: The maximum resident set size (KB) = 794828 +0: The total amount of wall time = 596.310545 +0: The maximum resident set size (KB) = 799284 Test 024 control_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c192 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_c192 -Checking test 025 control_c192 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_c192 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_c192 +Checking test 008 control_c192 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 804.789245 - 0: The maximum resident set size (KB) = 696216 + 0: The total amount of wall time = 787.298675 + 0: The maximum resident set size (KB) = 699836 Test 025 control_c192 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c384 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_c384 -Checking test 026 control_c384 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_c384 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_c384 +Checking test 009 control_c384 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1152.826234 - 0: The maximum resident set size (KB) = 1059800 + 0: The total amount of wall time = 1009.031262 + 0: The maximum resident set size (KB) = 1055132 Test 026 control_c384 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c384gdas -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_c384gdas -Checking test 027 control_c384gdas results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf006.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_c384gdas +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_c384gdas +Checking test 010 control_c384gdas results .... + Comparing sfcf000.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf006.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF06 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -1475,71 +1227,71 @@ Checking test 027 control_c384gdas 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 = 1034.138797 - 0: The maximum resident set size (KB) = 1202304 + 0: The total amount of wall time = 885.445769 + 0: The maximum resident set size (KB) = 1206400 Test 027 control_c384gdas PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_stochy -Checking test 028 control_stochy results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_stochy +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_stochy +Checking test 011 control_stochy results .... + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 152.004913 - 0: The maximum resident set size (KB) = 575080 + 0: The total amount of wall time = 143.603676 + 0: The maximum resident set size (KB) = 581708 Test 028 control_stochy PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_stochy_restart -Checking test 029 control_stochy_restart results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_stochy +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_stochy_restart +Checking test 012 control_stochy_restart results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 85.015646 - 0: The maximum resident set size (KB) = 394312 + 0: The total amount of wall time = 73.930431 + 0: The maximum resident set size (KB) = 398740 Test 029 control_stochy_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_lndp -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_lndp -Checking test 030 control_lndp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_lndp +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_lndp +Checking test 013 control_lndp results .... + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 117.052399 - 0: The maximum resident set size (KB) = 577868 + 0: The total amount of wall time = 119.719950 + 0: The maximum resident set size (KB) = 580052 Test 030 control_lndp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_iovr4 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_iovr4 -Checking test 031 control_iovr4 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_iovr4 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_iovr4 +Checking test 014 control_iovr4 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1547,21 +1299,21 @@ Checking test 031 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 228.610344 - 0: The maximum resident set size (KB) = 573720 + 0: The total amount of wall time = 206.800471 + 0: The maximum resident set size (KB) = 573676 Test 031 control_iovr4 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_iovr5 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_iovr5 -Checking test 032 control_iovr5 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_iovr5 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_iovr5 +Checking test 015 control_iovr5 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1569,21 +1321,21 @@ Checking test 032 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 241.888196 - 0: The maximum resident set size (KB) = 580768 + 0: The total amount of wall time = 222.000483 + 0: The maximum resident set size (KB) = 578056 Test 032 control_iovr5 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_p8 -Checking test 033 control_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_p8 +Checking test 016 control_p8 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1623,17 +1375,17 @@ Checking test 033 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 268.400825 - 0: The maximum resident set size (KB) = 1551556 + 0: The total amount of wall time = 253.704609 + 0: The maximum resident set size (KB) = 1546392 Test 033 control_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_restart_p8 -Checking test 034 control_restart_p8 results .... - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_restart_p8 +Checking test 017 control_restart_p8 results .... + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -1669,21 +1421,21 @@ Checking test 034 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 171.548169 - 0: The maximum resident set size (KB) = 785188 + 0: The total amount of wall time = 130.078086 + 0: The maximum resident set size (KB) = 768960 Test 034 control_restart_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_qr_p8 -Checking test 035 control_qr_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_qr_p8 +Checking test 018 control_qr_p8 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1723,17 +1475,17 @@ Checking test 035 control_qr_p8 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 = 263.485795 - 0: The maximum resident set size (KB) = 1548696 + 0: The total amount of wall time = 238.399766 + 0: The maximum resident set size (KB) = 1549848 Test 035 control_qr_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_restart_qr_p8 -Checking test 036 control_restart_qr_p8 results .... - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_restart_qr_p8 +Checking test 019 control_restart_qr_p8 results .... + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -1769,19 +1521,19 @@ Checking test 036 control_restart_qr_p8 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 = 155.068476 - 0: The maximum resident set size (KB) = 783892 + 0: The total amount of wall time = 135.521741 + 0: The maximum resident set size (KB) = 786796 Test 036 control_restart_qr_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_decomp_p8 -Checking test 037 control_decomp_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_decomp_p8 +Checking test 020 control_decomp_p8 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 @@ -1819,19 +1571,19 @@ Checking test 037 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 262.638294 - 0: The maximum resident set size (KB) = 1537976 + 0: The total amount of wall time = 263.491154 + 0: The maximum resident set size (KB) = 1537276 Test 037 control_decomp_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_2threads_p8 -Checking test 038 control_2threads_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_2threads_p8 +Checking test 021 control_2threads_p8 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 @@ -1869,23 +1621,23 @@ Checking test 038 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 238.032374 - 0: The maximum resident set size (KB) = 1631768 + 0: The total amount of wall time = 238.896138 + 0: The maximum resident set size (KB) = 1622388 Test 038 control_2threads_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_lndp -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_p8_lndp -Checking test 039 control_p8_lndp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing sfcf048.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK - Comparing atmf048.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8_lndp +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_p8_lndp +Checking test 022 control_p8_lndp results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing sfcf048.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing atmf048.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1895,21 +1647,21 @@ Checking test 039 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 504.265844 - 0: The maximum resident set size (KB) = 1534952 + 0: The total amount of wall time = 484.593778 + 0: The maximum resident set size (KB) = 1540220 Test 039 control_p8_lndp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_rrtmgp -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_p8_rrtmgp -Checking test 040 control_p8_rrtmgp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8_rrtmgp +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_p8_rrtmgp +Checking test 023 control_p8_rrtmgp results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1949,21 +1701,21 @@ Checking test 040 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 330.832097 - 0: The maximum resident set size (KB) = 1604076 + 0: The total amount of wall time = 337.428154 + 0: The maximum resident set size (KB) = 1600600 Test 040 control_p8_rrtmgp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_mynn -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_p8_mynn -Checking test 041 control_p8_mynn results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8_mynn +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_p8_mynn +Checking test 024 control_p8_mynn results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2003,21 +1755,21 @@ Checking test 041 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 260.523031 - 0: The maximum resident set size (KB) = 1538440 + 0: The total amount of wall time = 251.577176 + 0: The maximum resident set size (KB) = 1541628 Test 041 control_p8_mynn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/merra2_thompson -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/merra2_thompson -Checking test 042 merra2_thompson results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/merra2_thompson +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/merra2_thompson +Checking test 025 merra2_thompson results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2057,186 +1809,186 @@ Checking test 042 merra2_thompson results .... Comparing 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.459458 - 0: The maximum resident set size (KB) = 1552508 + 0: The total amount of wall time = 280.577029 + 0: The maximum resident set size (KB) = 1546412 Test 042 merra2_thompson PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/regional_control -Checking test 043 regional_control results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/regional_control +Checking test 026 regional_control results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 452.126340 - 0: The maximum resident set size (KB) = 784276 + 0: The total amount of wall time = 453.843403 + 0: The maximum resident set size (KB) = 788828 Test 043 regional_control PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/regional_restart -Checking test 044 regional_restart results .... - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/regional_restart +Checking test 027 regional_restart results .... + Comparing dynf006.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 270.562522 - 0: The maximum resident set size (KB) = 779728 + 0: The total amount of wall time = 323.690033 + 0: The maximum resident set size (KB) = 780308 Test 044 regional_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/regional_control_qr -Checking test 045 regional_control_qr results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/regional_control_qr +Checking test 028 regional_control_qr results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 507.170656 - 0: The maximum resident set size (KB) = 786604 + 0: The total amount of wall time = 442.062738 + 0: The maximum resident set size (KB) = 786028 Test 045 regional_control_qr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/regional_restart_qr -Checking test 046 regional_restart_qr results .... - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/regional_restart_qr +Checking test 029 regional_restart_qr results .... + Comparing dynf006.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 298.135531 - 0: The maximum resident set size (KB) = 784756 + 0: The total amount of wall time = 310.400858 + 0: The maximum resident set size (KB) = 777676 Test 046 regional_restart_qr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/regional_decomp -Checking test 047 regional_decomp results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/regional_decomp +Checking test 030 regional_decomp results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 559.185407 - 0: The maximum resident set size (KB) = 785072 + 0: The total amount of wall time = 455.664970 + 0: The maximum resident set size (KB) = 788656 Test 047 regional_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/regional_2threads -Checking test 048 regional_2threads results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/regional_2threads +Checking test 031 regional_2threads results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 351.931653 - 0: The maximum resident set size (KB) = 771000 + 0: The total amount of wall time = 305.136345 + 0: The maximum resident set size (KB) = 769228 Test 048 regional_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_noquilt -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/regional_noquilt -Checking test 049 regional_noquilt results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_noquilt +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/regional_noquilt +Checking test 032 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 533.411360 - 0: The maximum resident set size (KB) = 772152 + 0: The total amount of wall time = 472.639644 + 0: The maximum resident set size (KB) = 770096 Test 049 regional_noquilt PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/regional_netcdf_parallel -Checking test 050 regional_netcdf_parallel results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_netcdf_parallel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/regional_netcdf_parallel +Checking test 033 regional_netcdf_parallel results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK Comparing phyf006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 480.102099 - 0: The maximum resident set size (KB) = 784920 + 0: The total amount of wall time = 437.654363 + 0: The maximum resident set size (KB) = 789036 Test 050 regional_netcdf_parallel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/regional_2dwrtdecomp -Checking test 051 regional_2dwrtdecomp results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/regional_2dwrtdecomp +Checking test 034 regional_2dwrtdecomp results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 538.204759 - 0: The maximum resident set size (KB) = 790372 + 0: The total amount of wall time = 439.266588 + 0: The maximum resident set size (KB) = 789708 Test 051 regional_2dwrtdecomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/fv3_regional_wofs -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/regional_wofs -Checking test 052 regional_wofs results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/fv3_regional_wofs +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/regional_wofs +Checking test 035 regional_wofs results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 648.503180 - 0: The maximum resident set size (KB) = 522496 + 0: The total amount of wall time = 612.688663 + 0: The maximum resident set size (KB) = 526352 Test 052 regional_wofs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rap_control -Checking test 053 rap_control results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/rap_control +Checking test 036 rap_control results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2276,39 +2028,39 @@ Checking test 053 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 754.487613 - 0: The maximum resident set size (KB) = 946380 + 0: The total amount of wall time = 674.206119 + 0: The maximum resident set size (KB) = 943820 Test 053 rap_control PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/regional_spp_sppt_shum_skeb -Checking test 054 regional_spp_sppt_shum_skeb results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf001.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf001.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_spp_sppt_shum_skeb +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/regional_spp_sppt_shum_skeb +Checking test 037 regional_spp_sppt_shum_skeb results .... + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF01 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 432.100085 - 0: The maximum resident set size (KB) = 1093904 + 0: The total amount of wall time = 348.096794 + 0: The maximum resident set size (KB) = 1086980 Test 054 regional_spp_sppt_shum_skeb PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rap_decomp -Checking test 055 rap_decomp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/rap_decomp +Checking test 038 rap_decomp results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2348,21 +2100,21 @@ Checking test 055 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 801.417395 - 0: The maximum resident set size (KB) = 946176 + 0: The total amount of wall time = 710.595181 + 0: The maximum resident set size (KB) = 939032 Test 055 rap_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rap_2threads -Checking test 056 rap_2threads results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/rap_2threads +Checking test 039 rap_2threads results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2402,17 +2154,17 @@ Checking test 056 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 736.912088 - 0: The maximum resident set size (KB) = 1013064 + 0: The total amount of wall time = 663.631215 + 0: The maximum resident set size (KB) = 1018376 Test 056 rap_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rap_restart -Checking test 057 rap_restart results .... - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/rap_restart +Checking test 040 rap_restart results .... + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -2448,21 +2200,21 @@ Checking test 057 rap_restart results .... Comparing 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.060571 - 0: The maximum resident set size (KB) = 837684 + 0: The total amount of wall time = 337.623719 + 0: The maximum resident set size (KB) = 829068 Test 057 rap_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rap_sfcdiff -Checking test 058 rap_sfcdiff results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/rap_sfcdiff +Checking test 041 rap_sfcdiff 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 @@ -2502,21 +2254,21 @@ Checking test 058 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 797.644927 - 0: The maximum resident set size (KB) = 961368 + 0: The total amount of wall time = 782.869251 + 0: The maximum resident set size (KB) = 944636 Test 058 rap_sfcdiff PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rap_sfcdiff_decomp -Checking test 059 rap_sfcdiff_decomp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/rap_sfcdiff_decomp +Checking test 042 rap_sfcdiff_decomp 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 @@ -2556,17 +2308,17 @@ Checking test 059 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 819.089209 - 0: The maximum resident set size (KB) = 949216 + 0: The total amount of wall time = 847.825960 + 0: The maximum resident set size (KB) = 952680 Test 059 rap_sfcdiff_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rap_sfcdiff_restart -Checking test 060 rap_sfcdiff_restart results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/rap_sfcdiff_restart +Checking test 043 rap_sfcdiff_restart results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -2602,21 +2354,21 @@ Checking test 060 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 577.777706 - 0: The maximum resident set size (KB) = 839940 + 0: The total amount of wall time = 535.410987 + 0: The maximum resident set size (KB) = 831044 Test 060 rap_sfcdiff_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/hrrr_control -Checking test 061 hrrr_control results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/hrrr_control +Checking test 044 hrrr_control 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 @@ -2656,21 +2408,21 @@ Checking test 061 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 734.319611 - 0: The maximum resident set size (KB) = 945516 + 0: The total amount of wall time = 771.939269 + 0: The maximum resident set size (KB) = 942156 Test 061 hrrr_control PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/hrrr_control_decomp -Checking test 062 hrrr_control_decomp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/hrrr_control_decomp +Checking test 045 hrrr_control_decomp 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 @@ -2710,21 +2462,21 @@ Checking test 062 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 715.874807 - 0: The maximum resident set size (KB) = 949024 + 0: The total amount of wall time = 794.701459 + 0: The maximum resident set size (KB) = 938788 Test 062 hrrr_control_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/hrrr_control_2threads -Checking test 063 hrrr_control_2threads results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/hrrr_control_2threads +Checking test 046 hrrr_control_2threads 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 @@ -2764,17 +2516,17 @@ Checking test 063 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 701.760118 - 0: The maximum resident set size (KB) = 1018056 + 0: The total amount of wall time = 763.113719 + 0: The maximum resident set size (KB) = 1012764 Test 063 hrrr_control_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/hrrr_control_restart -Checking test 064 hrrr_control_restart results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/hrrr_control_restart +Checking test 047 hrrr_control_restart results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -2810,21 +2562,21 @@ Checking test 064 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 485.620894 - 0: The maximum resident set size (KB) = 837012 + 0: The total amount of wall time = 486.019593 + 0: The maximum resident set size (KB) = 828660 Test 064 hrrr_control_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1beta -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rrfs_v1beta -Checking test 065 rrfs_v1beta results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_v1beta +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/rrfs_v1beta +Checking test 048 rrfs_v1beta 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 @@ -2864,21 +2616,21 @@ Checking test 065 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 760.314881 - 0: The maximum resident set size (KB) = 948708 + 0: The total amount of wall time = 772.333615 + 0: The maximum resident set size (KB) = 949860 Test 065 rrfs_v1beta PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1nssl -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rrfs_v1nssl -Checking test 066 rrfs_v1nssl results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_v1nssl +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/rrfs_v1nssl +Checking test 049 rrfs_v1nssl 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 @@ -2886,21 +2638,21 @@ Checking test 066 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 877.765531 - 0: The maximum resident set size (KB) = 635076 + 0: The total amount of wall time = 953.481284 + 0: The maximum resident set size (KB) = 630440 Test 066 rrfs_v1nssl PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rrfs_v1nssl_nohailnoccn -Checking test 067 rrfs_v1nssl_nohailnoccn results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/rrfs_v1nssl_nohailnoccn +Checking test 050 rrfs_v1nssl_nohailnoccn 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 @@ -2908,151 +2660,163 @@ Checking test 067 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 855.802971 - 0: The maximum resident set size (KB) = 631580 + 0: The total amount of wall time = 985.234534 + 0: The maximum resident set size (KB) = 625780 Test 067 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rrfs_smoke_conus13km_hrrr_warm -Checking test 068 rrfs_smoke_conus13km_hrrr_warm results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing sfcf002.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - Comparing atmf002.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/rrfs_smoke_conus13km_hrrr_warm +Checking test 051 rrfs_smoke_conus13km_hrrr_warm 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 - 0: The total amount of wall time = 243.302644 - 0: The maximum resident set size (KB) = 905556 + 0: The total amount of wall time = 297.429291 + 0: The maximum resident set size (KB) = 899756 Test 068 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rrfs_smoke_conus13km_hrrr_warm_2threads -Checking test 069 rrfs_smoke_conus13km_hrrr_warm_2threads results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing sfcf002.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - Comparing atmf002.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/rrfs_smoke_conus13km_hrrr_warm_2threads +Checking test 052 rrfs_smoke_conus13km_hrrr_warm_2threads 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 - 0: The total amount of wall time = 167.578613 - 0: The maximum resident set size (KB) = 852256 + 0: The total amount of wall time = 254.038838 + 0: The maximum resident set size (KB) = 870412 Test 069 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rrfs_conus13km_hrrr_warm -Checking test 070 rrfs_conus13km_hrrr_warm results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing sfcf002.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - Comparing atmf002.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/rrfs_conus13km_hrrr_warm +Checking test 053 rrfs_conus13km_hrrr_warm 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 - 0: The total amount of wall time = 223.165184 - 0: The maximum resident set size (KB) = 860244 + 0: The total amount of wall time = 291.492792 + 0: The maximum resident set size (KB) = 865052 Test 070 rrfs_conus13km_hrrr_warm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rrfs_smoke_conus13km_radar_tten_warm -Checking test 071 rrfs_smoke_conus13km_radar_tten_warm results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing sfcf002.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - Comparing atmf002.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/rrfs_smoke_conus13km_radar_tten_warm +Checking test 054 rrfs_smoke_conus13km_radar_tten_warm 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 - 0: The total amount of wall time = 237.867258 - 0: The maximum resident set size (KB) = 896772 + 0: The total amount of wall time = 289.137292 + 0: The maximum resident set size (KB) = 912136 Test 071 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmg -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_csawmg -Checking test 072 control_csawmg results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/rrfs_conus13km_hrrr_warm_restart_mismatch +Checking test 055 rrfs_conus13km_hrrr_warm_restart_mismatch results .... + Comparing sfcf002.nc .........OK + Comparing atmf002.nc .........OK + + 0: The total amount of wall time = 124.872140 + 0: The maximum resident set size (KB) = 843044 + +Test 072 rrfs_conus13km_hrrr_warm_restart_mismatch PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_csawmg +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_csawmg +Checking test 056 control_csawmg results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 508.957660 - 0: The maximum resident set size (KB) = 672180 + 0: The total amount of wall time = 487.689636 + 0: The maximum resident set size (KB) = 660308 -Test 072 control_csawmg PASS +Test 073 control_csawmg PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmgt -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_csawmgt -Checking test 073 control_csawmgt results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_csawmgt +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_csawmgt +Checking test 057 control_csawmgt results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 546.011757 - 0: The maximum resident set size (KB) = 665460 + 0: The total amount of wall time = 474.506048 + 0: The maximum resident set size (KB) = 665268 -Test 073 control_csawmgt PASS +Test 074 control_csawmgt PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_ras -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_ras -Checking test 074 control_ras results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_ras +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_ras +Checking test 058 control_ras results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 288.746277 - 0: The maximum resident set size (KB) = 637328 + 0: The total amount of wall time = 254.807989 + 0: The maximum resident set size (KB) = 627752 -Test 074 control_ras PASS +Test 075 control_ras PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wam -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_wam -Checking test 075 control_wam results .... - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_wam +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_wam +Checking test 059 control_wam results .... + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK - 0: The total amount of wall time = 198.171815 - 0: The maximum resident set size (KB) = 484080 + 0: The total amount of wall time = 152.306931 + 0: The maximum resident set size (KB) = 481136 -Test 075 control_wam PASS +Test 076 control_wam PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_faster -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_p8_faster -Checking test 076 control_p8_faster results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8_faster +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_p8_faster +Checking test 060 control_p8_faster results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -3092,75 +2856,75 @@ Checking test 076 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 307.458730 - 0: The maximum resident set size (KB) = 1537040 + 0: The total amount of wall time = 322.012246 + 0: The maximum resident set size (KB) = 1542572 -Test 076 control_p8_faster PASS +Test 077 control_p8_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control_faster -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/regional_control_faster -Checking test 077 regional_control_faster results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control_faster +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/regional_control_faster +Checking test 061 regional_control_faster results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 543.181149 - 0: The maximum resident set size (KB) = 785956 + 0: The total amount of wall time = 472.937859 + 0: The maximum resident set size (KB) = 784712 -Test 077 regional_control_faster PASS +Test 078 regional_control_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rrfs_smoke_conus13km_hrrr_warm_debug -Checking test 078 rrfs_smoke_conus13km_hrrr_warm_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/rrfs_smoke_conus13km_hrrr_warm_debug +Checking test 062 rrfs_smoke_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 1106.523355 - 0: The maximum resident set size (KB) = 931180 + 0: The total amount of wall time = 1106.244782 + 0: The maximum resident set size (KB) = 938764 -Test 078 rrfs_smoke_conus13km_hrrr_warm_debug PASS +Test 079 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rrfs_smoke_conus13km_hrrr_warm_debug_2threads -Checking test 079 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +Checking test 063 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 681.103722 - 0: The maximum resident set size (KB) = 896540 + 0: The total amount of wall time = 654.563884 + 0: The maximum resident set size (KB) = 896976 -Test 079 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS +Test 080 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rrfs_conus13km_hrrr_warm_debug -Checking test 080 rrfs_conus13km_hrrr_warm_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/rrfs_conus13km_hrrr_warm_debug +Checking test 064 rrfs_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 1002.085398 - 0: The maximum resident set size (KB) = 890880 + 0: The total amount of wall time = 990.969474 + 0: The maximum resident set size (KB) = 894652 -Test 080 rrfs_conus13km_hrrr_warm_debug PASS +Test 081 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_CubedSphereGrid_debug -Checking test 081 control_CubedSphereGrid_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_CubedSphereGrid_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_CubedSphereGrid_debug +Checking test 065 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3186,359 +2950,359 @@ Checking test 081 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 229.317493 - 0: The maximum resident set size (KB) = 736424 + 0: The total amount of wall time = 215.780816 + 0: The maximum resident set size (KB) = 741648 -Test 081 control_CubedSphereGrid_debug PASS +Test 082 control_CubedSphereGrid_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_wrtGauss_netcdf_parallel_debug -Checking test 082 control_wrtGauss_netcdf_parallel_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_wrtGauss_netcdf_parallel_debug +Checking test 066 control_wrtGauss_netcdf_parallel_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 220.025678 - 0: The maximum resident set size (KB) = 734476 + 0: The total amount of wall time = 212.911012 + 0: The maximum resident set size (KB) = 735336 -Test 082 control_wrtGauss_netcdf_parallel_debug PASS +Test 083 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_stochy_debug -Checking test 083 control_stochy_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_stochy_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_stochy_debug +Checking test 067 control_stochy_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 251.964705 - 0: The maximum resident set size (KB) = 743108 + 0: The total amount of wall time = 228.092064 + 0: The maximum resident set size (KB) = 744480 -Test 083 control_stochy_debug PASS +Test 084 control_stochy_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_lndp_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_lndp_debug -Checking test 084 control_lndp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_lndp_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_lndp_debug +Checking test 068 control_lndp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 214.475535 - 0: The maximum resident set size (KB) = 744640 + 0: The total amount of wall time = 208.596316 + 0: The maximum resident set size (KB) = 741648 -Test 084 control_lndp_debug PASS +Test 085 control_lndp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmg_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_csawmg_debug -Checking test 085 control_csawmg_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_csawmg_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_csawmg_debug +Checking test 069 control_csawmg_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 339.015136 - 0: The maximum resident set size (KB) = 788124 + 0: The total amount of wall time = 315.374329 + 0: The maximum resident set size (KB) = 790804 -Test 085 control_csawmg_debug PASS +Test 086 control_csawmg_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmgt_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_csawmgt_debug -Checking test 086 control_csawmgt_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_csawmgt_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_csawmgt_debug +Checking test 070 control_csawmgt_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 326.385183 - 0: The maximum resident set size (KB) = 783876 + 0: The total amount of wall time = 318.761519 + 0: The maximum resident set size (KB) = 783196 -Test 086 control_csawmgt_debug PASS +Test 087 control_csawmgt_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_ras_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_ras_debug -Checking test 087 control_ras_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_ras_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_ras_debug +Checking test 071 control_ras_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 231.148923 - 0: The maximum resident set size (KB) = 748840 + 0: The total amount of wall time = 206.356663 + 0: The maximum resident set size (KB) = 754452 -Test 087 control_ras_debug PASS +Test 088 control_ras_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_diag_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_diag_debug -Checking test 088 control_diag_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_diag_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_diag_debug +Checking test 072 control_diag_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 230.614929 - 0: The maximum resident set size (KB) = 789608 + 0: The total amount of wall time = 216.093528 + 0: The maximum resident set size (KB) = 798296 -Test 088 control_diag_debug PASS +Test 089 control_diag_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_debug_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_debug_p8 -Checking test 089 control_debug_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_debug_p8 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_debug_p8 +Checking test 073 control_debug_p8 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 242.348999 - 0: The maximum resident set size (KB) = 1562484 + 0: The total amount of wall time = 239.557208 + 0: The maximum resident set size (KB) = 1557448 -Test 089 control_debug_p8 PASS +Test 090 control_debug_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/regional_debug -Checking test 090 regional_debug results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf001.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf001.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/regional_debug +Checking test 074 regional_debug results .... + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1352.668673 - 0: The maximum resident set size (KB) = 804360 + 0: The total amount of wall time = 1395.561652 + 0: The maximum resident set size (KB) = 808548 -Test 090 regional_debug PASS +Test 091 regional_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rap_control_debug -Checking test 091 rap_control_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/rap_control_debug +Checking test 075 rap_control_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 383.262896 - 0: The maximum resident set size (KB) = 1120044 + 0: The total amount of wall time = 409.893690 + 0: The maximum resident set size (KB) = 1117312 -Test 091 rap_control_debug PASS +Test 092 rap_control_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/hrrr_control_debug -Checking test 092 hrrr_control_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/hrrr_control_debug +Checking test 076 hrrr_control_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 400.296304 - 0: The maximum resident set size (KB) = 1110964 + 0: The total amount of wall time = 370.160576 + 0: The maximum resident set size (KB) = 1110020 -Test 092 hrrr_control_debug PASS +Test 093 hrrr_control_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rap_unified_drag_suite_debug -Checking test 093 rap_unified_drag_suite_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/rap_unified_drag_suite_debug +Checking test 077 rap_unified_drag_suite_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 425.257782 - 0: The maximum resident set size (KB) = 1119000 + 0: The total amount of wall time = 370.346998 + 0: The maximum resident set size (KB) = 1112492 -Test 093 rap_unified_drag_suite_debug PASS +Test 094 rap_unified_drag_suite_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_diag_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rap_diag_debug -Checking test 094 rap_diag_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_diag_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/rap_diag_debug +Checking test 078 rap_diag_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 422.685362 - 0: The maximum resident set size (KB) = 1191984 + 0: The total amount of wall time = 427.042402 + 0: The maximum resident set size (KB) = 1194600 -Test 094 rap_diag_debug PASS +Test 095 rap_diag_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rap_cires_ugwp_debug -Checking test 095 rap_cires_ugwp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/rap_cires_ugwp_debug +Checking test 079 rap_cires_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 388.079086 - 0: The maximum resident set size (KB) = 1115656 + 0: The total amount of wall time = 402.923778 + 0: The maximum resident set size (KB) = 1112208 -Test 095 rap_cires_ugwp_debug PASS +Test 096 rap_cires_ugwp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rap_unified_ugwp_debug -Checking test 096 rap_unified_ugwp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/rap_unified_ugwp_debug +Checking test 080 rap_unified_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 403.996632 - 0: The maximum resident set size (KB) = 1115548 + 0: The total amount of wall time = 384.977416 + 0: The maximum resident set size (KB) = 1118748 -Test 096 rap_unified_ugwp_debug PASS +Test 097 rap_unified_ugwp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_lndp_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rap_lndp_debug -Checking test 097 rap_lndp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_lndp_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/rap_lndp_debug +Checking test 081 rap_lndp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 398.170305 - 0: The maximum resident set size (KB) = 1111388 + 0: The total amount of wall time = 393.563130 + 0: The maximum resident set size (KB) = 1121284 -Test 097 rap_lndp_debug PASS +Test 098 rap_lndp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_flake_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rap_flake_debug -Checking test 098 rap_flake_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_flake_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/rap_flake_debug +Checking test 082 rap_flake_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 377.835203 - 0: The maximum resident set size (KB) = 1121440 + 0: The total amount of wall time = 399.128186 + 0: The maximum resident set size (KB) = 1118912 -Test 098 rap_flake_debug PASS +Test 099 rap_flake_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_progcld_thompson_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rap_progcld_thompson_debug -Checking test 099 rap_progcld_thompson_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_progcld_thompson_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/rap_progcld_thompson_debug +Checking test 083 rap_progcld_thompson_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 391.710992 - 0: The maximum resident set size (KB) = 1110664 + 0: The total amount of wall time = 429.224485 + 0: The maximum resident set size (KB) = 1112872 -Test 099 rap_progcld_thompson_debug PASS +Test 100 rap_progcld_thompson_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_noah_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rap_noah_debug -Checking test 100 rap_noah_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_noah_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/rap_noah_debug +Checking test 084 rap_noah_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 369.132755 - 0: The maximum resident set size (KB) = 1118652 + 0: The total amount of wall time = 433.896558 + 0: The maximum resident set size (KB) = 1107452 -Test 100 rap_noah_debug PASS +Test 101 rap_noah_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rap_sfcdiff_debug -Checking test 101 rap_sfcdiff_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_sfcdiff_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/rap_sfcdiff_debug +Checking test 085 rap_sfcdiff_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 379.719349 - 0: The maximum resident set size (KB) = 1119184 + 0: The total amount of wall time = 448.253582 + 0: The maximum resident set size (KB) = 1109228 -Test 101 rap_sfcdiff_debug PASS +Test 102 rap_sfcdiff_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 102 rap_noah_sfcdiff_cires_ugwp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 086 rap_noah_sfcdiff_cires_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 614.405938 - 0: The maximum resident set size (KB) = 1112456 + 0: The total amount of wall time = 601.437319 + 0: The maximum resident set size (KB) = 1113764 -Test 102 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 103 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1beta_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rrfs_v1beta_debug -Checking test 103 rrfs_v1beta_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_v1beta_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/rrfs_v1beta_debug +Checking test 087 rrfs_v1beta_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 378.953133 - 0: The maximum resident set size (KB) = 1112836 + 0: The total amount of wall time = 389.641040 + 0: The maximum resident set size (KB) = 1105232 -Test 103 rrfs_v1beta_debug PASS +Test 104 rrfs_v1beta_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wam_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_wam_debug -Checking test 104 control_wam_debug results .... - Comparing sfcf019.nc ............ALT CHECK......OK - Comparing atmf019.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_wam_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_wam_debug +Checking test 088 control_wam_debug results .... + Comparing sfcf019.nc .........OK + Comparing atmf019.nc .........OK - 0: The total amount of wall time = 372.851501 - 0: The maximum resident set size (KB) = 441356 + 0: The total amount of wall time = 371.894090 + 0: The maximum resident set size (KB) = 436172 -Test 104 control_wam_debug PASS +Test 105 control_wam_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/regional_spp_sppt_shum_skeb_dyn32_phy32 -Checking test 105 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf001.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf001.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 089 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF01 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 361.721033 - 0: The maximum resident set size (KB) = 985520 + 0: The total amount of wall time = 335.049861 + 0: The maximum resident set size (KB) = 992664 -Test 105 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS +Test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rap_control_dyn32_phy32 -Checking test 106 rap_control_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/rap_control_dyn32_phy32 +Checking test 090 rap_control_dyn32_phy32 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 @@ -3578,21 +3342,21 @@ Checking test 106 rap_control_dyn32_phy32 results .... Comparing 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.851647 - 0: The maximum resident set size (KB) = 843404 + 0: The total amount of wall time = 642.664683 + 0: The maximum resident set size (KB) = 845316 -Test 106 rap_control_dyn32_phy32 PASS +Test 107 rap_control_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/hrrr_control_dyn32_phy32 -Checking test 107 hrrr_control_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/hrrr_control_dyn32_phy32 +Checking test 091 hrrr_control_dyn32_phy32 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 @@ -3632,21 +3396,21 @@ Checking test 107 hrrr_control_dyn32_phy32 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 = 316.109015 - 0: The maximum resident set size (KB) = 824092 + 0: The total amount of wall time = 324.263144 + 0: The maximum resident set size (KB) = 830640 -Test 107 hrrr_control_dyn32_phy32 PASS +Test 108 hrrr_control_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rap_2threads_dyn32_phy32 -Checking test 108 rap_2threads_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/rap_2threads_dyn32_phy32 +Checking test 092 rap_2threads_dyn32_phy32 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 @@ -3686,21 +3450,21 @@ Checking test 108 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 560.795543 - 0: The maximum resident set size (KB) = 885376 + 0: The total amount of wall time = 650.925010 + 0: The maximum resident set size (KB) = 884556 -Test 108 rap_2threads_dyn32_phy32 PASS +Test 109 rap_2threads_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/hrrr_control_2threads_dyn32_phy32 -Checking test 109 hrrr_control_2threads_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/hrrr_control_2threads_dyn32_phy32 +Checking test 093 hrrr_control_2threads_dyn32_phy32 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 @@ -3740,21 +3504,21 @@ Checking test 109 hrrr_control_2threads_dyn32_phy32 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 = 306.117586 - 0: The maximum resident set size (KB) = 886436 + 0: The total amount of wall time = 364.918643 + 0: The maximum resident set size (KB) = 885492 -Test 109 hrrr_control_2threads_dyn32_phy32 PASS +Test 110 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/hrrr_control_decomp_dyn32_phy32 -Checking test 110 hrrr_control_decomp_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/hrrr_control_decomp_dyn32_phy32 +Checking test 094 hrrr_control_decomp_dyn32_phy32 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 @@ -3794,17 +3558,17 @@ Checking test 110 hrrr_control_decomp_dyn32_phy32 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 = 339.960610 - 0: The maximum resident set size (KB) = 821308 + 0: The total amount of wall time = 381.878723 + 0: The maximum resident set size (KB) = 819844 -Test 110 hrrr_control_decomp_dyn32_phy32 PASS +Test 111 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rap_restart_dyn32_phy32 -Checking test 111 rap_restart_dyn32_phy32 results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/rap_restart_dyn32_phy32 +Checking test 095 rap_restart_dyn32_phy32 results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -3840,17 +3604,17 @@ Checking test 111 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 411.515213 - 0: The maximum resident set size (KB) = 805256 + 0: The total amount of wall time = 643.966373 + 0: The maximum resident set size (KB) = 807828 -Test 111 rap_restart_dyn32_phy32 PASS +Test 112 rap_restart_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/hrrr_control_restart_dyn32_phy32 -Checking test 112 hrrr_control_restart_dyn32_phy32 results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/hrrr_control_restart_dyn32_phy32 +Checking test 096 hrrr_control_restart_dyn32_phy32 results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.180000.coupler.res .........OK @@ -3886,21 +3650,21 @@ Checking test 112 hrrr_control_restart_dyn32_phy32 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 = 151.432656 - 0: The maximum resident set size (KB) = 760992 + 0: The total amount of wall time = 235.139193 + 0: The maximum resident set size (KB) = 769128 -Test 112 hrrr_control_restart_dyn32_phy32 PASS +Test 113 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn64_phy32 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rap_control_dyn64_phy32 -Checking test 113 rap_control_dyn64_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_dyn64_phy32 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/rap_control_dyn64_phy32 +Checking test 097 rap_control_dyn64_phy32 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 @@ -3940,116 +3704,109 @@ Checking test 113 rap_control_dyn64_phy32 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 = 385.877550 - 0: The maximum resident set size (KB) = 864468 - -Test 113 rap_control_dyn64_phy32 PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rap_control_debug_dyn32_phy32 -Checking test 114 rap_control_debug_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK + 0: The total amount of wall time = 481.806284 + 0: The maximum resident set size (KB) = 868160 - 0: The total amount of wall time = 370.829560 - 0: The maximum resident set size (KB) = 996808 +Test 114 rap_control_dyn64_phy32 PASS -Test 114 rap_control_debug_dyn32_phy32 PASS +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/rap_control_debug_dyn32_phy32 +Checking test 098 rap_control_debug_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/hrrr_control_debug_dyn32_phy32 -Checking test 115 hrrr_control_debug_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK + 0: The total amount of wall time = 367.854497 + 0: The maximum resident set size (KB) = 1001660 - 0: The total amount of wall time = 357.159445 - 0: The maximum resident set size (KB) = 991396 +Test 115 rap_control_debug_dyn32_phy32 PASS -Test 115 hrrr_control_debug_dyn32_phy32 PASS +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/hrrr_control_debug_dyn32_phy32 +Checking test 099 hrrr_control_debug_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/rap_control_dyn64_phy32_debug -Checking test 116 rap_control_dyn64_phy32_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK + 0: The total amount of wall time = 362.782037 + 0: The maximum resident set size (KB) = 996488 - 0: The total amount of wall time = 401.066020 - 0: The maximum resident set size (KB) = 1035836 +Test 116 hrrr_control_debug_dyn32_phy32 PASS -Test 116 rap_control_dyn64_phy32_debug PASS +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/rap_control_dyn64_phy32_debug +Checking test 100 rap_control_dyn64_phy32_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/hafs_regional_atm -Checking test 117 hafs_regional_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing HURPRS.GrbF06 .........OK + 0: The total amount of wall time = 451.959167 + 0: The maximum resident set size (KB) = 1030856 - 0: The total amount of wall time = 412.439478 - 0: The maximum resident set size (KB) = 1214276 +Test 117 rap_control_dyn64_phy32_debug PASS -Test 117 hafs_regional_atm PASS - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/hafs_regional_atm_thompson_gfdlsf -Checking test 118 hafs_regional_atm_thompson_gfdlsf results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/hafs_regional_atm_thompson_gfdlsf +Checking test 102 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 586.398192 - 0: The maximum resident set size (KB) = 1533748 + 0: The total amount of wall time = 846.696857 + 0: The maximum resident set size (KB) = 1575664 Test 118 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_ocn -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/hafs_regional_atm_ocn -Checking test 119 hafs_regional_atm_ocn results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_atm_ocn +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/hafs_regional_atm_ocn +Checking test 103 hafs_regional_atm_ocn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK Comparing archs.2019_241_06.a .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 648.189609 - 0: The maximum resident set size (KB) = 1293448 + 0: The total amount of wall time = 699.730398 + 0: The maximum resident set size (KB) = 1260508 Test 119 hafs_regional_atm_ocn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_wav -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/hafs_regional_atm_wav -Checking test 120 hafs_regional_atm_wav results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing out_grd.ww3 .........OK - Comparing out_pnt.ww3 .........OK - Comparing 20190829.060000.restart.ww3 .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_iovr4 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_iovr4 +Checking test 014 control_iovr4 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 1176.581760 - 0: The maximum resident set size (KB) = 1283732 + 0: The total amount of wall time = 206.800471 + 0: The maximum resident set size (KB) = 573676 -Test 120 hafs_regional_atm_wav PASS +Test 120 control_iovr4 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/hafs_regional_atm_ocn_wav -Checking test 121 hafs_regional_atm_ocn_wav results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_atm_ocn_wav +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/hafs_regional_atm_ocn_wav +Checking test 105 hafs_regional_atm_ocn_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK Comparing archs.2019_241_06.a .........OK Comparing out_grd.ww3 .........OK @@ -4057,162 +3814,162 @@ Checking test 121 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 1160.515171 - 0: The maximum resident set size (KB) = 1345800 + 0: The total amount of wall time = 1204.761276 + 0: The maximum resident set size (KB) = 1313620 Test 121 hafs_regional_atm_ocn_wav PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_docn -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/hafs_regional_docn -Checking test 122 hafs_regional_docn results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_docn +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/hafs_regional_docn +Checking test 106 hafs_regional_docn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 623.684219 - 0: The maximum resident set size (KB) = 1300772 + 0: The total amount of wall time = 809.648488 + 0: The maximum resident set size (KB) = 1279144 Test 122 hafs_regional_docn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_docn_oisst -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/hafs_regional_docn_oisst -Checking test 123 hafs_regional_docn_oisst results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_docn_oisst +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/hafs_regional_docn_oisst +Checking test 107 hafs_regional_docn_oisst results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 648.654910 - 0: The maximum resident set size (KB) = 1282300 + 0: The total amount of wall time = 674.633126 + 0: The maximum resident set size (KB) = 1280272 Test 123 hafs_regional_docn_oisst PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_datm_cdeps -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/hafs_regional_datm_cdeps -Checking test 124 hafs_regional_datm_cdeps results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_datm_cdeps +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/hafs_regional_datm_cdeps +Checking test 108 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 1510.967414 - 0: The maximum resident set size (KB) = 973108 + 0: The total amount of wall time = 1429.212467 + 0: The maximum resident set size (KB) = 976204 Test 124 hafs_regional_datm_cdeps PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/datm_cdeps_control_cfsr -Checking test 125 datm_cdeps_control_cfsr results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/datm_cdeps_control_cfsr +Checking test 109 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 355.558782 - 0: The maximum resident set size (KB) = 958684 + 0: The total amount of wall time = 287.154671 + 0: The maximum resident set size (KB) = 963512 Test 125 datm_cdeps_control_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/datm_cdeps_restart_cfsr -Checking test 126 datm_cdeps_restart_cfsr results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/datm_cdeps_restart_cfsr +Checking test 110 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 137.977852 - 0: The maximum resident set size (KB) = 933356 + 0: The total amount of wall time = 172.911956 + 0: The maximum resident set size (KB) = 938552 Test 126 datm_cdeps_restart_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_gefs -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/datm_cdeps_control_gefs -Checking test 127 datm_cdeps_control_gefs results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_control_gefs +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/datm_cdeps_control_gefs +Checking test 111 datm_cdeps_control_gefs 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 = 339.987949 - 0: The maximum resident set size (KB) = 859828 + 0: The total amount of wall time = 278.839390 + 0: The maximum resident set size (KB) = 871192 Test 127 datm_cdeps_control_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_iau_gefs -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/datm_cdeps_iau_gefs -Checking test 128 datm_cdeps_iau_gefs results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_iau_gefs +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/datm_cdeps_iau_gefs +Checking test 112 datm_cdeps_iau_gefs 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 = 307.819390 - 0: The maximum resident set size (KB) = 862680 + 0: The total amount of wall time = 294.204034 + 0: The maximum resident set size (KB) = 862168 Test 128 datm_cdeps_iau_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_stochy_gefs -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/datm_cdeps_stochy_gefs -Checking test 129 datm_cdeps_stochy_gefs results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_stochy_gefs +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/datm_cdeps_stochy_gefs +Checking test 113 datm_cdeps_stochy_gefs 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 = 339.093601 - 0: The maximum resident set size (KB) = 862804 + 0: The total amount of wall time = 274.005004 + 0: The maximum resident set size (KB) = 863956 Test 129 datm_cdeps_stochy_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/datm_cdeps_ciceC_cfsr -Checking test 130 datm_cdeps_ciceC_cfsr results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_ciceC_cfsr +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/datm_cdeps_ciceC_cfsr +Checking test 114 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 340.976176 - 0: The maximum resident set size (KB) = 961920 + 0: The total amount of wall time = 293.466241 + 0: The maximum resident set size (KB) = 967576 Test 130 datm_cdeps_ciceC_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/datm_cdeps_bulk_cfsr -Checking test 131 datm_cdeps_bulk_cfsr results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_bulk_cfsr +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/datm_cdeps_bulk_cfsr +Checking test 115 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 342.172516 - 0: The maximum resident set size (KB) = 981924 + 0: The total amount of wall time = 266.816228 + 0: The maximum resident set size (KB) = 964536 Test 131 datm_cdeps_bulk_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/datm_cdeps_bulk_gefs -Checking test 132 datm_cdeps_bulk_gefs results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_bulk_gefs +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/datm_cdeps_bulk_gefs +Checking test 116 datm_cdeps_bulk_gefs 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 = 328.216476 - 0: The maximum resident set size (KB) = 868108 + 0: The total amount of wall time = 312.326680 + 0: The maximum resident set size (KB) = 864496 Test 132 datm_cdeps_bulk_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/datm_cdeps_mx025_cfsr -Checking test 133 datm_cdeps_mx025_cfsr results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_mx025_cfsr +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/datm_cdeps_mx025_cfsr +Checking test 117 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4220,15 +3977,15 @@ Checking test 133 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 739.194461 - 0: The maximum resident set size (KB) = 767996 + 0: The total amount of wall time = 751.487117 + 0: The maximum resident set size (KB) = 775928 Test 133 datm_cdeps_mx025_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/datm_cdeps_mx025_gefs -Checking test 134 datm_cdeps_mx025_gefs results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_mx025_gefs +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/datm_cdeps_mx025_gefs +Checking test 118 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4236,78 +3993,78 @@ Checking test 134 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 675.469879 - 0: The maximum resident set size (KB) = 737636 + 0: The total amount of wall time = 723.873950 + 0: The maximum resident set size (KB) = 738848 Test 134 datm_cdeps_mx025_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/datm_cdeps_multiple_files_cfsr -Checking test 135 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/datm_cdeps_multiple_files_cfsr +Checking test 119 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 266.414544 - 0: The maximum resident set size (KB) = 962492 + 0: The total amount of wall time = 248.311028 + 0: The maximum resident set size (KB) = 976544 Test 135 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/datm_cdeps_3072x1536_cfsr -Checking test 136 datm_cdeps_3072x1536_cfsr results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/datm_cdeps_3072x1536_cfsr +Checking test 120 datm_cdeps_3072x1536_cfsr 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 = 430.474607 - 0: The maximum resident set size (KB) = 2196860 + 0: The total amount of wall time = 423.035693 + 0: The maximum resident set size (KB) = 2256384 Test 136 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_gfs -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/datm_cdeps_gfs -Checking test 137 datm_cdeps_gfs results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_gfs +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/datm_cdeps_gfs +Checking test 121 datm_cdeps_gfs 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 = 392.529923 - 0: The maximum resident set size (KB) = 2259524 + 0: The total amount of wall time = 456.769022 + 0: The maximum resident set size (KB) = 2249744 Test 137 datm_cdeps_gfs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_debug_cfsr -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/datm_cdeps_debug_cfsr -Checking test 138 datm_cdeps_debug_cfsr results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_debug_cfsr +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/datm_cdeps_debug_cfsr +Checking test 122 datm_cdeps_debug_cfsr 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 = 599.730889 - 0: The maximum resident set size (KB) = 914536 + 0: The total amount of wall time = 636.258182 + 0: The maximum resident set size (KB) = 932928 Test 138 datm_cdeps_debug_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr_faster -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/datm_cdeps_control_cfsr_faster -Checking test 139 datm_cdeps_control_cfsr_faster results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_control_cfsr_faster +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/datm_cdeps_control_cfsr_faster +Checking test 123 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.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 = 288.581705 - 0: The maximum resident set size (KB) = 959896 + 0: The total amount of wall time = 298.916008 + 0: The maximum resident set size (KB) = 972452 Test 139 datm_cdeps_control_cfsr_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/datm_cdeps_lnd_gswp3 -Checking test 140 datm_cdeps_lnd_gswp3 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/datm_cdeps_lnd_gswp3 +Checking test 124 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4315,31 +4072,15 @@ Checking test 140 datm_cdeps_lnd_gswp3 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 = 25.122612 - 0: The maximum resident set size (KB) = 253344 + 0: The total amount of wall time = 19.838935 + 0: The maximum resident set size (KB) = 246596 Test 140 datm_cdeps_lnd_gswp3 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/datm_cdeps_lnd_gswp3_rst -Checking test 141 datm_cdeps_lnd_gswp3_rst results .... - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - - 0: The total amount of wall time = 25.669702 - 0: The maximum resident set size (KB) = 251680 - -Test 141 datm_cdeps_lnd_gswp3_rst PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_atmlnd_sbs -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_p8_atmlnd_sbs -Checking test 142 control_p8_atmlnd_sbs results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8_atmlnd_sbs +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_p8_atmlnd_sbs +Checking test 126 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -4423,19 +4164,19 @@ Checking test 142 control_p8_atmlnd_sbs 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 = 400.975608 - 0: The maximum resident set size (KB) = 1598816 + 0: The total amount of wall time = 448.642660 + 0: The maximum resident set size (KB) = 1589012 -Test 142 control_p8_atmlnd_sbs PASS +Test 141 control_p8_atmlnd_sbs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/control_atmwav -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/control_atmwav -Checking test 143 control_atmwav results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_atmwav +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_atmwav +Checking test 127 control_atmwav results .... + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -4474,19 +4215,19 @@ Checking test 143 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 178.289739 - 0: The maximum resident set size (KB) = 600100 + 0: The total amount of wall time = 145.089799 + 0: The maximum resident set size (KB) = 594720 -Test 143 control_atmwav PASS +Test 142 control_atmwav PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/atmaero_control_p8 -Checking test 144 atmaero_control_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/atmaero_control_p8 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/atmaero_control_p8 +Checking test 128 atmaero_control_p8 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 @@ -4525,19 +4266,19 @@ Checking test 144 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 418.973301 - 0: The maximum resident set size (KB) = 1634084 + 0: The total amount of wall time = 331.368146 + 0: The maximum resident set size (KB) = 1632208 -Test 144 atmaero_control_p8 PASS +Test 143 atmaero_control_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8_rad -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/atmaero_control_p8_rad -Checking test 145 atmaero_control_p8_rad results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/atmaero_control_p8_rad +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/atmaero_control_p8_rad +Checking test 129 atmaero_control_p8_rad 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 @@ -4576,19 +4317,19 @@ Checking test 145 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 522.204327 - 0: The maximum resident set size (KB) = 1653460 + 0: The total amount of wall time = 475.502210 + 0: The maximum resident set size (KB) = 1658316 -Test 145 atmaero_control_p8_rad PASS +Test 144 atmaero_control_p8_rad PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/atmaero_control_p8_rad_micro -Checking test 146 atmaero_control_p8_rad_micro results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/atmaero_control_p8_rad_micro +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/atmaero_control_p8_rad_micro +Checking test 130 atmaero_control_p8_rad_micro 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 @@ -4627,21 +4368,21 @@ Checking test 146 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 505.920456 - 0: The maximum resident set size (KB) = 1681588 + 0: The total amount of wall time = 470.278130 + 0: The maximum resident set size (KB) = 1680844 -Test 146 atmaero_control_p8_rad_micro PASS +Test 145 atmaero_control_p8_rad_micro PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/regional_atmaq -Checking test 147 regional_atmaq results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf003.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf003.nc ............ALT CHECK......OK - Comparing atmf006.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_atmaq +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/regional_atmaq +Checking test 131 regional_atmaq results .... + Comparing sfcf000.nc .........OK + Comparing sfcf003.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf003.nc .........OK + Comparing atmf006.nc .........OK Comparing RESTART/20190801.180000.coupler.res .........OK Comparing RESTART/20190801.180000.fv_core.res.nc .........OK Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK @@ -4650,21 +4391,21 @@ Checking test 147 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 1249.139007 - 0: The maximum resident set size (KB) = 1154640 + 0: The total amount of wall time = 1261.303804 + 0: The maximum resident set size (KB) = 1156936 -Test 147 regional_atmaq PASS +Test 146 regional_atmaq PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq_faster -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_309866/regional_atmaq_faster -Checking test 148 regional_atmaq_faster results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf003.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf003.nc ............ALT CHECK......OK - Comparing atmf006.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_atmaq_faster +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/regional_atmaq_faster +Checking test 132 regional_atmaq_faster results .... + Comparing sfcf000.nc .........OK + Comparing sfcf003.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf003.nc .........OK + Comparing atmf006.nc .........OK Comparing RESTART/20190801.180000.coupler.res .........OK Comparing RESTART/20190801.180000.fv_core.res.nc .........OK Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK @@ -4673,12 +4414,8 @@ Checking test 148 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 1137.317628 - 0: The maximum resident set size (KB) = 1164452 - -Test 148 regional_atmaq_faster PASS + 0: The total amount of wall time = 1088.503938 + 0: The maximum resident set size (KB) = 1162296 +Test 147 regional_atmaq_faster PASS -REGRESSION TEST WAS SUCCESSFUL -Wed Mar 29 02:05:22 UTC 2023 -Elapsed time: 05h:16m:44s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index 2c0e5d29ecd..0d91ea7f7be 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,42 +1,42 @@ -Tue Mar 28 15:41:26 CDT 2023 +Thu Mar 30 09:10:58 CDT 2023 Start Regression test -Compile 001 elapsed time 1116 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 1044 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 982 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 632 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 604 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 929 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 968 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 1272 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 967 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 858 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 011 elapsed time 633 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 576 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 726 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 315 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 254 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 517 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 515 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 239 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 234 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 681 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 021 elapsed time 200 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 771 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 636 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 024 elapsed time 210 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 134 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 193 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 90 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 592 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 572 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 564 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 545 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 219 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 903 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8_mixedmode -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/cpld_control_p8_mixedmode +Compile 001 elapsed time 783 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 795 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 690 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 283 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 266 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 637 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 636 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 852 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 642 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 612 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 011 elapsed time 566 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 496 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 764 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 341 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 272 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 546 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 554 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 265 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 265 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 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 021 elapsed time 198 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 729 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 684 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 024 elapsed time 211 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 124 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 227 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 81 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 634 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 591 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 594 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 586 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 226 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 611 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8_mixedmode +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -101,14 +101,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 308.905249 - 0: The maximum resident set size (KB) = 3151744 + 0: The total amount of wall time = 311.058532 + 0: The maximum resident set size (KB) = 3150964 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_gfsv17 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/cpld_control_gfsv17 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_gfsv17 +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -172,14 +172,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 238.465133 - 0: The maximum resident set size (KB) = 1725492 + 0: The total amount of wall time = 234.852672 + 0: The maximum resident set size (KB) = 1736616 Test 002 cpld_control_gfsv17 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/cpld_control_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -244,14 +244,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 351.842149 - 0: The maximum resident set size (KB) = 3189888 + 0: The total amount of wall time = 356.462745 + 0: The maximum resident set size (KB) = 3112304 Test 003 cpld_control_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/cpld_restart_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -304,14 +304,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 209.225577 - 0: The maximum resident set size (KB) = 3053988 + 0: The total amount of wall time = 202.075789 + 0: The maximum resident set size (KB) = 3050588 Test 004 cpld_restart_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/cpld_control_qr_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -376,14 +376,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 361.300323 - 0: The maximum resident set size (KB) = 3181460 + 0: The total amount of wall time = 351.597487 + 0: The maximum resident set size (KB) = 3188192 Test 005 cpld_control_qr_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/cpld_restart_qr_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -436,14 +436,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 217.482580 - 0: The maximum resident set size (KB) = 3065964 + 0: The total amount of wall time = 219.445944 + 0: The maximum resident set size (KB) = 3064820 Test 006 cpld_restart_qr_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/cpld_2threads_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -496,14 +496,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 409.792378 - 0: The maximum resident set size (KB) = 3517576 + 0: The total amount of wall time = 409.558236 + 0: The maximum resident set size (KB) = 3518632 Test 007 cpld_2threads_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/cpld_decomp_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -556,14 +556,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 351.481564 - 0: The maximum resident set size (KB) = 3181036 + 0: The total amount of wall time = 346.961624 + 0: The maximum resident set size (KB) = 3180936 Test 008 cpld_decomp_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/cpld_mpi_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -616,14 +616,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 288.946307 - 0: The maximum resident set size (KB) = 3032860 + 0: The total amount of wall time = 287.944218 + 0: The maximum resident set size (KB) = 3037828 Test 009 cpld_mpi_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_ciceC_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/cpld_control_ciceC_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_ciceC_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -688,14 +688,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 351.149356 - 0: The maximum resident set size (KB) = 3174928 + 0: The total amount of wall time = 348.029728 + 0: The maximum resident set size (KB) = 3176388 Test 010 cpld_control_ciceC_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/cpld_control_c192_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_c192_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/cpld_control_c192_p8 Checking test 011 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -748,14 +748,14 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 645.658207 - 0: The maximum resident set size (KB) = 3261804 + 0: The total amount of wall time = 655.659299 + 0: The maximum resident set size (KB) = 3268512 Test 011 cpld_control_c192_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/cpld_restart_c192_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_c192_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/cpld_restart_c192_p8 Checking test 012 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -808,17 +808,17 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 471.828040 - 0: The maximum resident set size (KB) = 3165432 + 0: The total amount of wall time = 439.966021 + 0: The maximum resident set size (KB) = 3165124 Test 012 cpld_restart_c192_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_bmark_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/cpld_bmark_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_bmark_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/cpld_bmark_p8 Checking test 013 cpld_bmark_p8 results .... - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc .........OK + Comparing atmf006.nc .........OK Comparing GFSFLX.GrbF06 .........OK Comparing GFSPRS.GrbF06 .........OK Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK @@ -863,17 +863,17 @@ Checking test 013 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 946.196693 - 0: The maximum resident set size (KB) = 3971232 + 0: The total amount of wall time = 878.945090 + 0: The maximum resident set size (KB) = 4030216 Test 013 cpld_bmark_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_bmark_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/cpld_restart_bmark_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_bmark_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/cpld_restart_bmark_p8 Checking test 014 cpld_restart_bmark_p8 results .... - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc .........OK + Comparing atmf006.nc .........OK Comparing GFSFLX.GrbF06 .........OK Comparing GFSPRS.GrbF06 .........OK Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK @@ -918,14 +918,14 @@ Checking test 014 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 566.338382 - 0: The maximum resident set size (KB) = 3936488 + 0: The total amount of wall time = 545.560317 + 0: The maximum resident set size (KB) = 3933396 Test 014 cpld_restart_bmark_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_noaero_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/cpld_control_noaero_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_noaero_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/cpld_control_noaero_p8 Checking test 015 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -989,14 +989,14 @@ Checking test 015 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 256.178077 - 0: The maximum resident set size (KB) = 1722784 + 0: The total amount of wall time = 260.156320 + 0: The maximum resident set size (KB) = 1721384 Test 015 cpld_control_noaero_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c96_noaero_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/cpld_control_nowave_noaero_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_c96_noaero_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/cpld_control_nowave_noaero_p8 Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1058,14 +1058,14 @@ Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 263.268081 - 0: The maximum resident set size (KB) = 1762384 + 0: The total amount of wall time = 262.240612 + 0: The maximum resident set size (KB) = 1755680 Test 016 cpld_control_nowave_noaero_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_debug_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/cpld_debug_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_debug_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/cpld_debug_p8 Checking test 017 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1118,14 +1118,14 @@ Checking test 017 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 723.822161 - 0: The maximum resident set size (KB) = 3245840 + 0: The total amount of wall time = 675.012589 + 0: The maximum resident set size (KB) = 3247544 Test 017 cpld_debug_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_debug_noaero_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/cpld_debug_noaero_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_debug_noaero_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/cpld_debug_noaero_p8 Checking test 018 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1177,14 +1177,14 @@ Checking test 018 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 465.697944 - 0: The maximum resident set size (KB) = 1744404 + 0: The total amount of wall time = 439.442341 + 0: The maximum resident set size (KB) = 1739272 Test 018 cpld_debug_noaero_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_noaero_p8_agrid -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/cpld_control_noaero_p8_agrid +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_noaero_p8_agrid +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/cpld_control_noaero_p8_agrid Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1246,14 +1246,14 @@ Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 277.505740 - 0: The maximum resident set size (KB) = 1706184 + 0: The total amount of wall time = 273.867236 + 0: The maximum resident set size (KB) = 1765068 Test 019 cpld_control_noaero_p8_agrid PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c48 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/cpld_control_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_c48 +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/cpld_control_c48 Checking test 020 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1303,14 +1303,14 @@ Checking test 020 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 506.274261 - 0: The maximum resident set size (KB) = 2786704 + 0: The total amount of wall time = 497.192344 + 0: The maximum resident set size (KB) = 2795480 Test 020 cpld_control_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_warmstart_c48 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/cpld_warmstart_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_warmstart_c48 +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/cpld_warmstart_c48 Checking test 021 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1360,14 +1360,14 @@ Checking test 021 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 139.283317 - 0: The maximum resident set size (KB) = 2801312 + 0: The total amount of wall time = 135.919974 + 0: The maximum resident set size (KB) = 2802716 Test 021 cpld_warmstart_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_warmstart_c48 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/cpld_restart_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_warmstart_c48 +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/cpld_restart_c48 Checking test 022 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1417,14 +1417,14 @@ Checking test 022 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 76.554956 - 0: The maximum resident set size (KB) = 2237072 + 0: The total amount of wall time = 77.298121 + 0: The maximum resident set size (KB) = 2244784 Test 022 cpld_restart_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8_faster -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/cpld_control_p8_faster +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8_faster +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/cpld_control_p8_faster Checking test 023 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1489,14 +1489,14 @@ Checking test 023 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 326.446332 - 0: The maximum resident set size (KB) = 3183560 + 0: The total amount of wall time = 326.859879 + 0: The maximum resident set size (KB) = 3177672 Test 023 cpld_control_p8_faster PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_CubedSphereGrid +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_CubedSphereGrid +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_CubedSphereGrid Checking test 024 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1523,69 +1523,69 @@ Checking test 024 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 131.684290 - 0: The maximum resident set size (KB) = 631688 + 0: The total amount of wall time = 131.676440 + 0: The maximum resident set size (KB) = 581572 Test 024 control_CubedSphereGrid PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid_parallel -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_CubedSphereGrid_parallel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_CubedSphereGrid_parallel +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_CubedSphereGrid_parallel Checking test 025 control_CubedSphereGrid_parallel results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK - 0: The total amount of wall time = 129.768507 - 0: The maximum resident set size (KB) = 639288 + 0: The total amount of wall time = 129.507537 + 0: The maximum resident set size (KB) = 635440 Test 025 control_CubedSphereGrid_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_latlon -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_latlon +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_latlon +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_latlon Checking test 026 control_latlon results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.173942 - 0: The maximum resident set size (KB) = 635696 + 0: The total amount of wall time = 135.990428 + 0: The maximum resident set size (KB) = 632236 Test 026 control_latlon PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wrtGauss_netcdf_parallel -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_wrtGauss_netcdf_parallel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_wrtGauss_netcdf_parallel +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_wrtGauss_netcdf_parallel Checking test 027 control_wrtGauss_netcdf_parallel results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 137.898498 - 0: The maximum resident set size (KB) = 638760 + 0: The total amount of wall time = 137.998859 + 0: The maximum resident set size (KB) = 634844 Test 027 control_wrtGauss_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c48 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_c48 +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_c48 Checking test 028 control_c48 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -1619,55 +1619,55 @@ Checking test 028 control_c48 results .... Comparing 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.710310 -0: The maximum resident set size (KB) = 826560 +0: The total amount of wall time = 345.434925 +0: The maximum resident set size (KB) = 822216 Test 028 control_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c192 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_c192 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_c192 +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_c192 Checking test 029 control_c192 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 528.562177 - 0: The maximum resident set size (KB) = 767960 + 0: The total amount of wall time = 526.277321 + 0: The maximum resident set size (KB) = 772480 Test 029 control_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c384 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_c384 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_c384 +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_c384 Checking test 030 control_c384 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 587.744721 - 0: The maximum resident set size (KB) = 1222184 + 0: The total amount of wall time = 581.052564 + 0: The maximum resident set size (KB) = 1223468 Test 030 control_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c384gdas -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_c384gdas +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_c384gdas +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_c384gdas Checking test 031 control_c384gdas results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf006.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF06 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -1705,71 +1705,71 @@ Checking test 031 control_c384gdas 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 = 513.192539 - 0: The maximum resident set size (KB) = 1335920 + 0: The total amount of wall time = 512.061297 + 0: The maximum resident set size (KB) = 1286604 Test 031 control_c384gdas PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_stochy +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_stochy +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_stochy Checking test 032 control_stochy results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 91.989529 - 0: The maximum resident set size (KB) = 639044 + 0: The total amount of wall time = 86.711852 + 0: The maximum resident set size (KB) = 641572 Test 032 control_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_stochy_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_stochy +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_stochy_restart Checking test 033 control_stochy_restart results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 47.699882 - 0: The maximum resident set size (KB) = 487004 + 0: The total amount of wall time = 47.544164 + 0: The maximum resident set size (KB) = 489272 Test 033 control_stochy_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_lndp -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_lndp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_lndp +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_lndp Checking test 034 control_lndp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 81.708200 - 0: The maximum resident set size (KB) = 639304 + 0: The total amount of wall time = 84.081561 + 0: The maximum resident set size (KB) = 634968 Test 034 control_lndp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_iovr4 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_iovr4 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_iovr4 +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_iovr4 Checking test 035 control_iovr4 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1777,21 +1777,21 @@ Checking test 035 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.427771 - 0: The maximum resident set size (KB) = 619496 + 0: The total amount of wall time = 137.557634 + 0: The maximum resident set size (KB) = 636208 Test 035 control_iovr4 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_iovr5 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_iovr5 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_iovr5 +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_iovr5 Checking test 036 control_iovr5 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1799,21 +1799,21 @@ Checking test 036 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.881141 - 0: The maximum resident set size (KB) = 633788 + 0: The total amount of wall time = 138.735804 + 0: The maximum resident set size (KB) = 637784 Test 036 control_iovr5 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_p8 Checking test 037 control_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1853,17 +1853,17 @@ Checking test 037 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 173.716780 - 0: The maximum resident set size (KB) = 1599116 + 0: The total amount of wall time = 168.930710 + 0: The maximum resident set size (KB) = 1606212 Test 037 control_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_restart_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_restart_p8 Checking test 038 control_restart_p8 results .... - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -1899,21 +1899,21 @@ Checking test 038 control_restart_p8 results .... Comparing 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.439663 - 0: The maximum resident set size (KB) = 882348 + 0: The total amount of wall time = 88.423530 + 0: The maximum resident set size (KB) = 873116 Test 038 control_restart_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_qr_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_qr_p8 Checking test 039 control_qr_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1953,17 +1953,17 @@ Checking test 039 control_qr_p8 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.188331 - 0: The maximum resident set size (KB) = 1607452 + 0: The total amount of wall time = 170.198703 + 0: The maximum resident set size (KB) = 1611696 Test 039 control_qr_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_restart_qr_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_restart_qr_p8 Checking test 040 control_restart_qr_p8 results .... - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -1999,19 +1999,19 @@ Checking test 040 control_restart_qr_p8 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.280428 - 0: The maximum resident set size (KB) = 875344 + 0: The total amount of wall time = 91.590195 + 0: The maximum resident set size (KB) = 865288 Test 040 control_restart_qr_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_decomp_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_decomp_p8 Checking test 041 control_decomp_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing 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 @@ -2049,19 +2049,19 @@ Checking test 041 control_decomp_p8 results .... Comparing 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.106524 - 0: The maximum resident set size (KB) = 1581496 + 0: The total amount of wall time = 176.360028 + 0: The maximum resident set size (KB) = 1587696 Test 041 control_decomp_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_2threads_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_2threads_p8 Checking test 042 control_2threads_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing 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 @@ -2099,23 +2099,23 @@ Checking test 042 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 182.565090 - 0: The maximum resident set size (KB) = 1694432 + 0: The total amount of wall time = 181.370958 + 0: The maximum resident set size (KB) = 1689164 Test 042 control_2threads_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_lndp -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_p8_lndp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8_lndp +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_p8_lndp Checking test 043 control_p8_lndp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing sfcf048.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK - Comparing atmf048.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing sfcf048.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing atmf048.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2125,21 +2125,21 @@ Checking test 043 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 320.165505 - 0: The maximum resident set size (KB) = 1605416 + 0: The total amount of wall time = 317.457693 + 0: The maximum resident set size (KB) = 1608708 Test 043 control_p8_lndp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_rrtmgp -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_p8_rrtmgp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8_rrtmgp +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_p8_rrtmgp Checking test 044 control_p8_rrtmgp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2179,21 +2179,21 @@ Checking test 044 control_p8_rrtmgp results .... Comparing 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.494419 - 0: The maximum resident set size (KB) = 1685068 + 0: The total amount of wall time = 234.258423 + 0: The maximum resident set size (KB) = 1669684 Test 044 control_p8_rrtmgp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_mynn -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_p8_mynn +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8_mynn +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_p8_mynn Checking test 045 control_p8_mynn results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2233,21 +2233,21 @@ Checking test 045 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 171.527997 - 0: The maximum resident set size (KB) = 1606124 + 0: The total amount of wall time = 175.670271 + 0: The maximum resident set size (KB) = 1615080 Test 045 control_p8_mynn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/merra2_thompson -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/merra2_thompson +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/merra2_thompson +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/merra2_thompson Checking test 046 merra2_thompson results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2287,114 +2287,114 @@ Checking test 046 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 191.644800 - 0: The maximum resident set size (KB) = 1611252 + 0: The total amount of wall time = 190.860995 + 0: The maximum resident set size (KB) = 1615560 Test 046 merra2_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/regional_control +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/regional_control Checking test 047 regional_control results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 295.075760 - 0: The maximum resident set size (KB) = 882820 + 0: The total amount of wall time = 297.837700 + 0: The maximum resident set size (KB) = 877316 Test 047 regional_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/regional_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/regional_restart Checking test 048 regional_restart results .... - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf006.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 150.630935 - 0: The maximum resident set size (KB) = 863000 + 0: The total amount of wall time = 154.878157 + 0: The maximum resident set size (KB) = 871168 Test 048 regional_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/regional_control_qr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/regional_control_qr Checking test 049 regional_control_qr results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 296.194806 - 0: The maximum resident set size (KB) = 876916 + 0: The total amount of wall time = 296.657407 + 0: The maximum resident set size (KB) = 872100 Test 049 regional_control_qr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/regional_restart_qr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/regional_restart_qr Checking test 050 regional_restart_qr results .... - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf006.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 150.960197 - 0: The maximum resident set size (KB) = 866976 + 0: The total amount of wall time = 153.963477 + 0: The maximum resident set size (KB) = 865756 Test 050 regional_restart_qr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/regional_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/regional_decomp Checking test 051 regional_decomp results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 314.524356 - 0: The maximum resident set size (KB) = 863520 + 0: The total amount of wall time = 313.546564 + 0: The maximum resident set size (KB) = 866236 Test 051 regional_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/regional_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/regional_2threads Checking test 052 regional_2threads results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 205.948366 - 0: The maximum resident set size (KB) = 796184 + 0: The total amount of wall time = 207.639312 + 0: The maximum resident set size (KB) = 848308 Test 052 regional_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_noquilt -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/regional_noquilt +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_noquilt +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/regional_noquilt Checking test 053 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2402,71 +2402,71 @@ Checking test 053 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 316.965638 - 0: The maximum resident set size (KB) = 857928 + 0: The total amount of wall time = 317.695845 + 0: The maximum resident set size (KB) = 862128 Test 053 regional_noquilt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_netcdf_parallel -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/regional_netcdf_parallel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_netcdf_parallel +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/regional_netcdf_parallel Checking test 054 regional_netcdf_parallel results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK - 0: The total amount of wall time = 294.471708 - 0: The maximum resident set size (KB) = 842564 + 0: The total amount of wall time = 292.401743 + 0: The maximum resident set size (KB) = 869560 Test 054 regional_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/regional_2dwrtdecomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/regional_2dwrtdecomp Checking test 055 regional_2dwrtdecomp results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 300.100176 - 0: The maximum resident set size (KB) = 868448 + 0: The total amount of wall time = 297.138677 + 0: The maximum resident set size (KB) = 818008 Test 055 regional_2dwrtdecomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/fv3_regional_wofs -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/regional_wofs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/fv3_regional_wofs +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/regional_wofs Checking test 056 regional_wofs results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 375.324733 - 0: The maximum resident set size (KB) = 633744 + 0: The total amount of wall time = 375.544969 + 0: The maximum resident set size (KB) = 633956 Test 056 regional_wofs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rap_control +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/rap_control Checking test 057 rap_control results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2506,39 +2506,39 @@ Checking test 057 rap_control results .... Comparing 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.536727 - 0: The maximum resident set size (KB) = 1067648 + 0: The total amount of wall time = 458.536248 + 0: The maximum resident set size (KB) = 1062940 Test 057 rap_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_spp_sppt_shum_skeb -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/regional_spp_sppt_shum_skeb +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_spp_sppt_shum_skeb +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/regional_spp_sppt_shum_skeb Checking test 058 regional_spp_sppt_shum_skeb results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf001.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf001.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF01 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 271.855012 - 0: The maximum resident set size (KB) = 1179324 + 0: The total amount of wall time = 267.255093 + 0: The maximum resident set size (KB) = 1143588 Test 058 regional_spp_sppt_shum_skeb PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rap_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/rap_decomp Checking test 059 rap_decomp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2578,21 +2578,21 @@ Checking test 059 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 488.301110 - 0: The maximum resident set size (KB) = 999876 + 0: The total amount of wall time = 477.164388 + 0: The maximum resident set size (KB) = 1014196 Test 059 rap_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rap_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/rap_2threads Checking test 060 rap_2threads results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2632,17 +2632,17 @@ Checking test 060 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 482.987920 - 0: The maximum resident set size (KB) = 1130384 + 0: The total amount of wall time = 470.356117 + 0: The maximum resident set size (KB) = 1136148 Test 060 rap_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rap_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/rap_restart Checking test 061 rap_restart results .... - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -2678,21 +2678,21 @@ Checking test 061 rap_restart results .... Comparing 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.101017 - 0: The maximum resident set size (KB) = 978544 + 0: The total amount of wall time = 230.430299 + 0: The maximum resident set size (KB) = 962300 Test 061 rap_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rap_sfcdiff +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_sfcdiff +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/rap_sfcdiff Checking test 062 rap_sfcdiff results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + 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 @@ -2732,21 +2732,21 @@ Checking test 062 rap_sfcdiff results .... Comparing 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.402985 - 0: The maximum resident set size (KB) = 1066372 + 0: The total amount of wall time = 457.495147 + 0: The maximum resident set size (KB) = 1060812 Test 062 rap_sfcdiff PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rap_sfcdiff_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_sfcdiff +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/rap_sfcdiff_decomp Checking test 063 rap_sfcdiff_decomp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + 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 @@ -2786,17 +2786,17 @@ Checking test 063 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 496.290953 - 0: The maximum resident set size (KB) = 1000736 + 0: The total amount of wall time = 480.828855 + 0: The maximum resident set size (KB) = 1010676 Test 063 rap_sfcdiff_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rap_sfcdiff_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_sfcdiff +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/rap_sfcdiff_restart Checking test 064 rap_sfcdiff_restart results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -2832,21 +2832,21 @@ Checking test 064 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 344.931439 - 0: The maximum resident set size (KB) = 982696 + 0: The total amount of wall time = 343.817476 + 0: The maximum resident set size (KB) = 981208 Test 064 rap_sfcdiff_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hrrr_control +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/hrrr_control Checking test 065 hrrr_control results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + 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 @@ -2886,21 +2886,21 @@ Checking test 065 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 454.520402 - 0: The maximum resident set size (KB) = 1056860 + 0: The total amount of wall time = 443.573346 + 0: The maximum resident set size (KB) = 1001316 Test 065 hrrr_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hrrr_control_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/hrrr_control_decomp Checking test 066 hrrr_control_decomp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + 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 @@ -2940,21 +2940,21 @@ Checking test 066 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 475.785285 - 0: The maximum resident set size (KB) = 993992 + 0: The total amount of wall time = 462.419557 + 0: The maximum resident set size (KB) = 1002592 Test 066 hrrr_control_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hrrr_control_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/hrrr_control_2threads Checking test 067 hrrr_control_2threads results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + 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 @@ -2994,17 +2994,17 @@ Checking test 067 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 460.466800 - 0: The maximum resident set size (KB) = 1135140 + 0: The total amount of wall time = 455.277457 + 0: The maximum resident set size (KB) = 1140172 Test 067 hrrr_control_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hrrr_control_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/hrrr_control_restart Checking test 068 hrrr_control_restart results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -3040,21 +3040,21 @@ Checking test 068 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 329.171353 - 0: The maximum resident set size (KB) = 984472 + 0: The total amount of wall time = 330.367109 + 0: The maximum resident set size (KB) = 977844 Test 068 hrrr_control_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1beta -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rrfs_v1beta +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_v1beta +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/rrfs_v1beta Checking test 069 rrfs_v1beta results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + 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 @@ -3094,21 +3094,21 @@ Checking test 069 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 467.824266 - 0: The maximum resident set size (KB) = 1051768 + 0: The total amount of wall time = 452.644843 + 0: The maximum resident set size (KB) = 1067040 Test 069 rrfs_v1beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1nssl -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rrfs_v1nssl +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_v1nssl +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/rrfs_v1nssl Checking test 070 rrfs_v1nssl results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + 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 @@ -3116,21 +3116,21 @@ Checking test 070 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 560.055734 - 0: The maximum resident set size (KB) = 695212 + 0: The total amount of wall time = 538.464294 + 0: The maximum resident set size (KB) = 693116 Test 070 rrfs_v1nssl PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rrfs_v1nssl_nohailnoccn +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/rrfs_v1nssl_nohailnoccn Checking test 071 rrfs_v1nssl_nohailnoccn results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + 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 @@ -3138,151 +3138,163 @@ Checking test 071 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 544.749320 - 0: The maximum resident set size (KB) = 758776 + 0: The total amount of wall time = 523.039355 + 0: The maximum resident set size (KB) = 758644 Test 071 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/rrfs_smoke_conus13km_hrrr_warm Checking test 072 rrfs_smoke_conus13km_hrrr_warm results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing sfcf002.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - Comparing atmf002.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK - 0: The total amount of wall time = 149.704329 - 0: The maximum resident set size (KB) = 1030444 + 0: The total amount of wall time = 144.632846 + 0: The maximum resident set size (KB) = 1032260 Test 072 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 073 rrfs_smoke_conus13km_hrrr_warm_2threads results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing sfcf002.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - Comparing atmf002.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK - 0: The total amount of wall time = 98.914126 - 0: The maximum resident set size (KB) = 943492 + 0: The total amount of wall time = 97.934376 + 0: The maximum resident set size (KB) = 944520 Test 073 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_conus13km_hrrr_warm -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rrfs_conus13km_hrrr_warm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_conus13km_hrrr_warm +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/rrfs_conus13km_hrrr_warm Checking test 074 rrfs_conus13km_hrrr_warm results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing sfcf002.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - Comparing atmf002.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK - 0: The total amount of wall time = 133.057212 - 0: The maximum resident set size (KB) = 942932 + 0: The total amount of wall time = 130.802221 + 0: The maximum resident set size (KB) = 901436 Test 074 rrfs_conus13km_hrrr_warm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/rrfs_smoke_conus13km_radar_tten_warm Checking test 075 rrfs_smoke_conus13km_radar_tten_warm results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing sfcf002.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - Comparing atmf002.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK - 0: The total amount of wall time = 152.299699 - 0: The maximum resident set size (KB) = 993992 + 0: The total amount of wall time = 147.981714 + 0: The maximum resident set size (KB) = 977504 Test 075 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmg -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_csawmg -Checking test 076 control_csawmg results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/rrfs_conus13km_hrrr_warm_restart_mismatch +Checking test 076 rrfs_conus13km_hrrr_warm_restart_mismatch results .... + Comparing sfcf002.nc .........OK + Comparing atmf002.nc .........OK + + 0: The total amount of wall time = 68.583903 + 0: The maximum resident set size (KB) = 935968 + +Test 076 rrfs_conus13km_hrrr_warm_restart_mismatch PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_csawmg +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_csawmg +Checking test 077 control_csawmg results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 345.708467 - 0: The maximum resident set size (KB) = 729892 + 0: The total amount of wall time = 342.955175 + 0: The maximum resident set size (KB) = 726756 -Test 076 control_csawmg PASS +Test 077 control_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmgt -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_csawmgt -Checking test 077 control_csawmgt results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_csawmgt +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_csawmgt +Checking test 078 control_csawmgt results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 338.535799 - 0: The maximum resident set size (KB) = 728140 + 0: The total amount of wall time = 339.668096 + 0: The maximum resident set size (KB) = 672928 -Test 077 control_csawmgt PASS +Test 078 control_csawmgt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_ras -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_ras -Checking test 078 control_ras results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_ras +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_ras +Checking test 079 control_ras results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 184.195921 - 0: The maximum resident set size (KB) = 671192 + 0: The total amount of wall time = 182.184838 + 0: The maximum resident set size (KB) = 715400 -Test 078 control_ras PASS +Test 079 control_ras PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wam -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_wam -Checking test 079 control_wam results .... - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_wam +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_wam +Checking test 080 control_wam results .... + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK - 0: The total amount of wall time = 113.943879 - 0: The maximum resident set size (KB) = 645168 + 0: The total amount of wall time = 112.572405 + 0: The maximum resident set size (KB) = 644644 -Test 079 control_wam PASS +Test 080 control_wam PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_faster -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_p8_faster -Checking test 080 control_p8_faster results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8_faster +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_p8_faster +Checking test 081 control_p8_faster results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -3322,75 +3334,75 @@ Checking test 080 control_p8_faster results .... Comparing 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.573576 - 0: The maximum resident set size (KB) = 1601144 + 0: The total amount of wall time = 153.807982 + 0: The maximum resident set size (KB) = 1603052 -Test 080 control_p8_faster PASS +Test 081 control_p8_faster PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control_faster -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/regional_control_faster -Checking test 081 regional_control_faster results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control_faster +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/regional_control_faster +Checking test 082 regional_control_faster results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 268.489139 - 0: The maximum resident set size (KB) = 868020 + 0: The total amount of wall time = 271.168758 + 0: The maximum resident set size (KB) = 875056 -Test 081 regional_control_faster PASS +Test 082 regional_control_faster PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rrfs_smoke_conus13km_hrrr_warm_debug -Checking test 082 rrfs_smoke_conus13km_hrrr_warm_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/rrfs_smoke_conus13km_hrrr_warm_debug +Checking test 083 rrfs_smoke_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 865.433645 - 0: The maximum resident set size (KB) = 1068872 + 0: The total amount of wall time = 886.561081 + 0: The maximum resident set size (KB) = 1026564 -Test 082 rrfs_smoke_conus13km_hrrr_warm_debug PASS +Test 083 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rrfs_smoke_conus13km_hrrr_warm_debug_2threads -Checking test 083 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +Checking test 084 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 501.642518 - 0: The maximum resident set size (KB) = 980356 + 0: The total amount of wall time = 495.909023 + 0: The maximum resident set size (KB) = 943756 -Test 083 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS +Test 084 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rrfs_conus13km_hrrr_warm_debug -Checking test 084 rrfs_conus13km_hrrr_warm_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/rrfs_conus13km_hrrr_warm_debug +Checking test 085 rrfs_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 777.327377 - 0: The maximum resident set size (KB) = 978776 + 0: The total amount of wall time = 768.534309 + 0: The maximum resident set size (KB) = 970984 -Test 084 rrfs_conus13km_hrrr_warm_debug PASS +Test 085 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_CubedSphereGrid_debug -Checking test 085 control_CubedSphereGrid_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_CubedSphereGrid_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_CubedSphereGrid_debug +Checking test 086 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3416,359 +3428,359 @@ Checking test 085 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 187.698754 - 0: The maximum resident set size (KB) = 794148 + 0: The total amount of wall time = 171.536277 + 0: The maximum resident set size (KB) = 800620 -Test 085 control_CubedSphereGrid_debug PASS +Test 086 control_CubedSphereGrid_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_wrtGauss_netcdf_parallel_debug -Checking test 086 control_wrtGauss_netcdf_parallel_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_wrtGauss_netcdf_parallel_debug +Checking test 087 control_wrtGauss_netcdf_parallel_debug results .... + Comparing sfcf000.nc .........OK Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 158.616553 - 0: The maximum resident set size (KB) = 799864 + 0: The total amount of wall time = 165.964688 + 0: The maximum resident set size (KB) = 799104 -Test 086 control_wrtGauss_netcdf_parallel_debug PASS +Test 087 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_stochy_debug -Checking test 087 control_stochy_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_stochy_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_stochy_debug +Checking test 088 control_stochy_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 181.308414 - 0: The maximum resident set size (KB) = 799032 + 0: The total amount of wall time = 185.762073 + 0: The maximum resident set size (KB) = 803416 -Test 087 control_stochy_debug PASS +Test 088 control_stochy_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_lndp_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_lndp_debug -Checking test 088 control_lndp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_lndp_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_lndp_debug +Checking test 089 control_lndp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 165.058522 - 0: The maximum resident set size (KB) = 801496 + 0: The total amount of wall time = 164.054328 + 0: The maximum resident set size (KB) = 806188 -Test 088 control_lndp_debug PASS +Test 089 control_lndp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmg_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_csawmg_debug -Checking test 089 control_csawmg_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_csawmg_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_csawmg_debug +Checking test 090 control_csawmg_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 278.211496 - 0: The maximum resident set size (KB) = 792836 + 0: The total amount of wall time = 248.190782 + 0: The maximum resident set size (KB) = 846456 -Test 089 control_csawmg_debug PASS +Test 090 control_csawmg_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmgt_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_csawmgt_debug -Checking test 090 control_csawmgt_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_csawmgt_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_csawmgt_debug +Checking test 091 control_csawmgt_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 264.832829 - 0: The maximum resident set size (KB) = 848096 + 0: The total amount of wall time = 233.648645 + 0: The maximum resident set size (KB) = 845884 -Test 090 control_csawmgt_debug PASS +Test 091 control_csawmgt_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_ras_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_ras_debug -Checking test 091 control_ras_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_ras_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_ras_debug +Checking test 092 control_ras_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 160.291358 - 0: The maximum resident set size (KB) = 813468 + 0: The total amount of wall time = 165.843301 + 0: The maximum resident set size (KB) = 809756 -Test 091 control_ras_debug PASS +Test 092 control_ras_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_diag_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_diag_debug -Checking test 092 control_diag_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_diag_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_diag_debug +Checking test 093 control_diag_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 167.961239 - 0: The maximum resident set size (KB) = 847804 + 0: The total amount of wall time = 167.554328 + 0: The maximum resident set size (KB) = 859704 -Test 092 control_diag_debug PASS +Test 093 control_diag_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_debug_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_debug_p8 -Checking test 093 control_debug_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_debug_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_debug_p8 +Checking test 094 control_debug_p8 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 179.537612 - 0: The maximum resident set size (KB) = 1629804 + 0: The total amount of wall time = 181.630132 + 0: The maximum resident set size (KB) = 1620212 -Test 093 control_debug_p8 PASS +Test 094 control_debug_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/regional_debug -Checking test 094 regional_debug results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf001.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf001.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/regional_debug +Checking test 095 regional_debug results .... + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1001.275534 - 0: The maximum resident set size (KB) = 889544 + 0: The total amount of wall time = 995.208995 + 0: The maximum resident set size (KB) = 889752 -Test 094 regional_debug PASS +Test 095 regional_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rap_control_debug -Checking test 095 rap_control_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/rap_control_debug +Checking test 096 rap_control_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 289.160322 - 0: The maximum resident set size (KB) = 1180564 + 0: The total amount of wall time = 290.171433 + 0: The maximum resident set size (KB) = 1177184 -Test 095 rap_control_debug PASS +Test 096 rap_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hrrr_control_debug -Checking test 096 hrrr_control_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/hrrr_control_debug +Checking test 097 hrrr_control_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 282.439574 - 0: The maximum resident set size (KB) = 1177248 + 0: The total amount of wall time = 288.730572 + 0: The maximum resident set size (KB) = 1178584 -Test 096 hrrr_control_debug PASS +Test 097 hrrr_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rap_unified_drag_suite_debug -Checking test 097 rap_unified_drag_suite_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/rap_unified_drag_suite_debug +Checking test 098 rap_unified_drag_suite_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 295.430562 - 0: The maximum resident set size (KB) = 1174128 + 0: The total amount of wall time = 288.277386 + 0: The maximum resident set size (KB) = 1174608 -Test 097 rap_unified_drag_suite_debug PASS +Test 098 rap_unified_drag_suite_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_diag_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rap_diag_debug -Checking test 098 rap_diag_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_diag_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/rap_diag_debug +Checking test 099 rap_diag_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 307.996697 - 0: The maximum resident set size (KB) = 1264076 + 0: The total amount of wall time = 307.733998 + 0: The maximum resident set size (KB) = 1267252 -Test 098 rap_diag_debug PASS +Test 099 rap_diag_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rap_cires_ugwp_debug -Checking test 099 rap_cires_ugwp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_cires_ugwp_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/rap_cires_ugwp_debug +Checking test 100 rap_cires_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 299.513706 - 0: The maximum resident set size (KB) = 1175252 + 0: The total amount of wall time = 299.548825 + 0: The maximum resident set size (KB) = 1171588 -Test 099 rap_cires_ugwp_debug PASS +Test 100 rap_cires_ugwp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rap_unified_ugwp_debug -Checking test 100 rap_unified_ugwp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_cires_ugwp_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/rap_unified_ugwp_debug +Checking test 101 rap_unified_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 292.733436 - 0: The maximum resident set size (KB) = 1177172 + 0: The total amount of wall time = 291.797830 + 0: The maximum resident set size (KB) = 1175496 -Test 100 rap_unified_ugwp_debug PASS +Test 101 rap_unified_ugwp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_lndp_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rap_lndp_debug -Checking test 101 rap_lndp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_lndp_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/rap_lndp_debug +Checking test 102 rap_lndp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 300.828489 - 0: The maximum resident set size (KB) = 1177096 + 0: The total amount of wall time = 293.669245 + 0: The maximum resident set size (KB) = 1179372 -Test 101 rap_lndp_debug PASS +Test 102 rap_lndp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_flake_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rap_flake_debug -Checking test 102 rap_flake_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_flake_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/rap_flake_debug +Checking test 103 rap_flake_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 306.382658 - 0: The maximum resident set size (KB) = 1181120 + 0: The total amount of wall time = 280.218847 + 0: The maximum resident set size (KB) = 1173688 -Test 102 rap_flake_debug PASS +Test 103 rap_flake_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_progcld_thompson_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rap_progcld_thompson_debug -Checking test 103 rap_progcld_thompson_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_progcld_thompson_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/rap_progcld_thompson_debug +Checking test 104 rap_progcld_thompson_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 306.669287 - 0: The maximum resident set size (KB) = 1179032 + 0: The total amount of wall time = 296.165400 + 0: The maximum resident set size (KB) = 1180028 -Test 103 rap_progcld_thompson_debug PASS +Test 104 rap_progcld_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_noah_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rap_noah_debug -Checking test 104 rap_noah_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_noah_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/rap_noah_debug +Checking test 105 rap_noah_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 306.118595 - 0: The maximum resident set size (KB) = 1141084 + 0: The total amount of wall time = 282.869479 + 0: The maximum resident set size (KB) = 1182124 -Test 104 rap_noah_debug PASS +Test 105 rap_noah_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rap_sfcdiff_debug -Checking test 105 rap_sfcdiff_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_sfcdiff_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/rap_sfcdiff_debug +Checking test 106 rap_sfcdiff_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 295.250834 - 0: The maximum resident set size (KB) = 1173952 + 0: The total amount of wall time = 293.749184 + 0: The maximum resident set size (KB) = 1180912 -Test 105 rap_sfcdiff_debug PASS +Test 106 rap_sfcdiff_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 106 rap_noah_sfcdiff_cires_ugwp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 107 rap_noah_sfcdiff_cires_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 473.192056 - 0: The maximum resident set size (KB) = 1170040 + 0: The total amount of wall time = 470.374684 + 0: The maximum resident set size (KB) = 1180816 -Test 106 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 107 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1beta_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rrfs_v1beta_debug -Checking test 107 rrfs_v1beta_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_v1beta_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/rrfs_v1beta_debug +Checking test 108 rrfs_v1beta_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 291.540379 - 0: The maximum resident set size (KB) = 1175452 + 0: The total amount of wall time = 281.696820 + 0: The maximum resident set size (KB) = 1167048 -Test 107 rrfs_v1beta_debug PASS +Test 108 rrfs_v1beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wam_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_wam_debug -Checking test 108 control_wam_debug results .... - Comparing sfcf019.nc ............ALT CHECK......OK - Comparing atmf019.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_wam_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_wam_debug +Checking test 109 control_wam_debug results .... + Comparing sfcf019.nc .........OK + Comparing atmf019.nc .........OK - 0: The total amount of wall time = 305.700440 - 0: The maximum resident set size (KB) = 527996 + 0: The total amount of wall time = 295.541263 + 0: The maximum resident set size (KB) = 524740 -Test 108 control_wam_debug PASS +Test 109 control_wam_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/regional_spp_sppt_shum_skeb_dyn32_phy32 -Checking test 109 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf001.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf001.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF01 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 244.381482 - 0: The maximum resident set size (KB) = 1075724 + 0: The total amount of wall time = 251.779372 + 0: The maximum resident set size (KB) = 1086004 -Test 109 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS +Test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rap_control_dyn32_phy32 -Checking test 110 rap_control_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/rap_control_dyn32_phy32 +Checking test 111 rap_control_dyn32_phy32 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 @@ -3808,21 +3820,21 @@ Checking test 110 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 379.244769 - 0: The maximum resident set size (KB) = 999312 + 0: The total amount of wall time = 380.722583 + 0: The maximum resident set size (KB) = 1003632 -Test 110 rap_control_dyn32_phy32 PASS +Test 111 rap_control_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hrrr_control_dyn32_phy32 -Checking test 111 hrrr_control_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/hrrr_control_dyn32_phy32 +Checking test 112 hrrr_control_dyn32_phy32 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 @@ -3862,21 +3874,21 @@ Checking test 111 hrrr_control_dyn32_phy32 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 = 199.933151 - 0: The maximum resident set size (KB) = 953400 + 0: The total amount of wall time = 196.850631 + 0: The maximum resident set size (KB) = 950028 -Test 111 hrrr_control_dyn32_phy32 PASS +Test 112 hrrr_control_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rap_2threads_dyn32_phy32 -Checking test 112 rap_2threads_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/rap_2threads_dyn32_phy32 +Checking test 113 rap_2threads_dyn32_phy32 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 @@ -3916,21 +3928,21 @@ Checking test 112 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 392.201999 - 0: The maximum resident set size (KB) = 1021416 + 0: The total amount of wall time = 398.957264 + 0: The maximum resident set size (KB) = 1024544 -Test 112 rap_2threads_dyn32_phy32 PASS +Test 113 rap_2threads_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hrrr_control_2threads_dyn32_phy32 -Checking test 113 hrrr_control_2threads_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/hrrr_control_2threads_dyn32_phy32 +Checking test 114 hrrr_control_2threads_dyn32_phy32 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 @@ -3970,21 +3982,21 @@ Checking test 113 hrrr_control_2threads_dyn32_phy32 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 = 202.564415 - 0: The maximum resident set size (KB) = 1001532 + 0: The total amount of wall time = 206.302524 + 0: The maximum resident set size (KB) = 1005344 -Test 113 hrrr_control_2threads_dyn32_phy32 PASS +Test 114 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hrrr_control_decomp_dyn32_phy32 -Checking test 114 hrrr_control_decomp_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/hrrr_control_decomp_dyn32_phy32 +Checking test 115 hrrr_control_decomp_dyn32_phy32 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 @@ -4024,17 +4036,17 @@ Checking test 114 hrrr_control_decomp_dyn32_phy32 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 = 205.562467 - 0: The maximum resident set size (KB) = 893388 + 0: The total amount of wall time = 208.062340 + 0: The maximum resident set size (KB) = 897984 -Test 114 hrrr_control_decomp_dyn32_phy32 PASS +Test 115 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rap_restart_dyn32_phy32 -Checking test 115 rap_restart_dyn32_phy32 results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/rap_restart_dyn32_phy32 +Checking test 116 rap_restart_dyn32_phy32 results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -4070,17 +4082,17 @@ Checking test 115 rap_restart_dyn32_phy32 results .... Comparing 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.104307 - 0: The maximum resident set size (KB) = 957536 + 0: The total amount of wall time = 282.812693 + 0: The maximum resident set size (KB) = 951140 -Test 115 rap_restart_dyn32_phy32 PASS +Test 116 rap_restart_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hrrr_control_restart_dyn32_phy32 -Checking test 116 hrrr_control_restart_dyn32_phy32 results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/hrrr_control_restart_dyn32_phy32 +Checking test 117 hrrr_control_restart_dyn32_phy32 results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.180000.coupler.res .........OK @@ -4116,21 +4128,21 @@ Checking test 116 hrrr_control_restart_dyn32_phy32 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 = 100.778662 - 0: The maximum resident set size (KB) = 862912 + 0: The total amount of wall time = 102.324227 + 0: The maximum resident set size (KB) = 870596 -Test 116 hrrr_control_restart_dyn32_phy32 PASS +Test 117 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn64_phy32 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rap_control_dyn64_phy32 -Checking test 117 rap_control_dyn64_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_dyn64_phy32 +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/rap_control_dyn64_phy32 +Checking test 118 rap_control_dyn64_phy32 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 @@ -4170,116 +4182,116 @@ Checking test 117 rap_control_dyn64_phy32 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 = 238.846932 - 0: The maximum resident set size (KB) = 967600 + 0: The total amount of wall time = 242.777655 + 0: The maximum resident set size (KB) = 941912 -Test 117 rap_control_dyn64_phy32 PASS +Test 118 rap_control_dyn64_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug_dyn32_phy32 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rap_control_debug_dyn32_phy32 -Checking test 118 rap_control_debug_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_debug_dyn32_phy32 +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/rap_control_debug_dyn32_phy32 +Checking test 119 rap_control_debug_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 286.157895 - 0: The maximum resident set size (KB) = 1066196 + 0: The total amount of wall time = 284.451552 + 0: The maximum resident set size (KB) = 1061992 -Test 118 rap_control_debug_dyn32_phy32 PASS +Test 119 rap_control_debug_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hrrr_control_debug_dyn32_phy32 -Checking test 119 hrrr_control_debug_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/hrrr_control_debug_dyn32_phy32 +Checking test 120 hrrr_control_debug_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.529625 - 0: The maximum resident set size (KB) = 1063420 + 0: The total amount of wall time = 284.402705 + 0: The maximum resident set size (KB) = 1059872 -Test 119 hrrr_control_debug_dyn32_phy32 PASS +Test 120 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug_dyn64_phy32 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/rap_control_dyn64_phy32_debug -Checking test 120 rap_control_dyn64_phy32_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_debug_dyn64_phy32 +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/rap_control_dyn64_phy32_debug +Checking test 121 rap_control_dyn64_phy32_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 294.007378 - 0: The maximum resident set size (KB) = 1103108 + 0: The total amount of wall time = 288.428808 + 0: The maximum resident set size (KB) = 1107772 -Test 120 rap_control_dyn64_phy32_debug PASS +Test 121 rap_control_dyn64_phy32_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hafs_regional_atm -Checking test 121 hafs_regional_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_atm +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/hafs_regional_atm +Checking test 122 hafs_regional_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 266.936838 - 0: The maximum resident set size (KB) = 1049724 + 0: The total amount of wall time = 265.759015 + 0: The maximum resident set size (KB) = 1051304 -Test 121 hafs_regional_atm PASS +Test 122 hafs_regional_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hafs_regional_atm_thompson_gfdlsf -Checking test 122 hafs_regional_atm_thompson_gfdlsf results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/hafs_regional_atm_thompson_gfdlsf +Checking test 123 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 404.478212 - 0: The maximum resident set size (KB) = 1423636 + 0: The total amount of wall time = 408.295196 + 0: The maximum resident set size (KB) = 1400320 -Test 122 hafs_regional_atm_thompson_gfdlsf PASS +Test 123 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_ocn -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hafs_regional_atm_ocn -Checking test 123 hafs_regional_atm_ocn results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_atm_ocn +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/hafs_regional_atm_ocn +Checking test 124 hafs_regional_atm_ocn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK Comparing archs.2019_241_06.a .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 378.266655 - 0: The maximum resident set size (KB) = 1225904 + 0: The total amount of wall time = 377.556505 + 0: The maximum resident set size (KB) = 1236100 -Test 123 hafs_regional_atm_ocn PASS +Test 124 hafs_regional_atm_ocn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_wav -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hafs_regional_atm_wav -Checking test 124 hafs_regional_atm_wav results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_atm_wav +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/hafs_regional_atm_wav +Checking test 125 hafs_regional_atm_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 728.784570 - 0: The maximum resident set size (KB) = 1253060 + 0: The total amount of wall time = 726.919353 + 0: The maximum resident set size (KB) = 1266144 -Test 124 hafs_regional_atm_wav PASS +Test 125 hafs_regional_atm_wav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_ocn_wav -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hafs_regional_atm_ocn_wav -Checking test 125 hafs_regional_atm_ocn_wav results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_atm_ocn_wav +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/hafs_regional_atm_ocn_wav +Checking test 126 hafs_regional_atm_ocn_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK Comparing archs.2019_241_06.a .........OK Comparing out_grd.ww3 .........OK @@ -4287,323 +4299,323 @@ Checking test 125 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 833.521836 - 0: The maximum resident set size (KB) = 1284672 + 0: The total amount of wall time = 830.398805 + 0: The maximum resident set size (KB) = 1225908 -Test 125 hafs_regional_atm_ocn_wav PASS +Test 126 hafs_regional_atm_ocn_wav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_1nest_atm -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hafs_regional_1nest_atm -Checking test 126 hafs_regional_1nest_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_1nest_atm +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/hafs_regional_1nest_atm +Checking test 127 hafs_regional_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 360.893132 - 0: The maximum resident set size (KB) = 510408 + 0: The total amount of wall time = 361.522534 + 0: The maximum resident set size (KB) = 507816 -Test 126 hafs_regional_1nest_atm PASS +Test 127 hafs_regional_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hafs_regional_telescopic_2nests_atm -Checking test 127 hafs_regional_telescopic_2nests_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK - Comparing atm.nest03.f006.nc ............ALT CHECK......OK - Comparing sfc.nest03.f006.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/hafs_regional_telescopic_2nests_atm +Checking test 128 hafs_regional_telescopic_2nests_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing atm.nest03.f006.nc .........OK + Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 424.967120 - 0: The maximum resident set size (KB) = 517020 + 0: The total amount of wall time = 414.007574 + 0: The maximum resident set size (KB) = 519928 -Test 127 hafs_regional_telescopic_2nests_atm PASS +Test 128 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_1nest_atm -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hafs_global_1nest_atm -Checking test 128 hafs_global_1nest_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_global_1nest_atm +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/hafs_global_1nest_atm +Checking test 129 hafs_global_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 173.602745 - 0: The maximum resident set size (KB) = 359560 + 0: The total amount of wall time = 172.194458 + 0: The maximum resident set size (KB) = 356904 -Test 128 hafs_global_1nest_atm PASS +Test 129 hafs_global_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_multiple_4nests_atm -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hafs_global_multiple_4nests_atm -Checking test 129 hafs_global_multiple_4nests_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK - Comparing atm.nest03.f006.nc ............ALT CHECK......OK - Comparing sfc.nest03.f006.nc ............ALT CHECK......OK - Comparing atm.nest04.f006.nc ............ALT CHECK......OK - Comparing sfc.nest04.f006.nc ............ALT CHECK......OK - Comparing atm.nest05.f006.nc ............ALT CHECK......OK - Comparing sfc.nest05.f006.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_global_multiple_4nests_atm +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/hafs_global_multiple_4nests_atm +Checking test 130 hafs_global_multiple_4nests_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing atm.nest03.f006.nc .........OK + Comparing sfc.nest03.f006.nc .........OK + Comparing atm.nest04.f006.nc .........OK + Comparing sfc.nest04.f006.nc .........OK + Comparing atm.nest05.f006.nc .........OK + Comparing sfc.nest05.f006.nc .........OK Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK Comparing HURPRS.GrbF06.nest03 .........OK Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 491.172642 - 0: The maximum resident set size (KB) = 432932 + 0: The total amount of wall time = 461.130139 + 0: The maximum resident set size (KB) = 428728 -Test 129 hafs_global_multiple_4nests_atm PASS +Test 130 hafs_global_multiple_4nests_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hafs_regional_specified_moving_1nest_atm -Checking test 130 hafs_regional_specified_moving_1nest_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/hafs_regional_specified_moving_1nest_atm +Checking test 131 hafs_regional_specified_moving_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 229.919104 - 0: The maximum resident set size (KB) = 469000 + 0: The total amount of wall time = 228.211707 + 0: The maximum resident set size (KB) = 530644 -Test 130 hafs_regional_specified_moving_1nest_atm PASS +Test 131 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hafs_regional_storm_following_1nest_atm -Checking test 131 hafs_regional_storm_following_1nest_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/hafs_regional_storm_following_1nest_atm +Checking test 132 hafs_regional_storm_following_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 217.009342 - 0: The maximum resident set size (KB) = 526020 + 0: The total amount of wall time = 217.402211 + 0: The maximum resident set size (KB) = 528952 -Test 131 hafs_regional_storm_following_1nest_atm PASS +Test 132 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hafs_regional_storm_following_1nest_atm_ocn -Checking test 132 hafs_regional_storm_following_1nest_atm_ocn results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/hafs_regional_storm_following_1nest_atm_ocn +Checking test 133 hafs_regional_storm_following_1nest_atm_ocn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 293.153274 - 0: The maximum resident set size (KB) = 568472 + 0: The total amount of wall time = 288.741746 + 0: The maximum resident set size (KB) = 569016 -Test 132 hafs_regional_storm_following_1nest_atm_ocn PASS +Test 133 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_storm_following_1nest_atm -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hafs_global_storm_following_1nest_atm -Checking test 133 hafs_global_storm_following_1nest_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_global_storm_following_1nest_atm +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/hafs_global_storm_following_1nest_atm +Checking test 134 hafs_global_storm_following_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 69.754932 - 0: The maximum resident set size (KB) = 378696 + 0: The total amount of wall time = 68.092813 + 0: The maximum resident set size (KB) = 369032 -Test 133 hafs_global_storm_following_1nest_atm PASS +Test 134 hafs_global_storm_following_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hafs_regional_storm_following_1nest_atm_ocn_debug -Checking test 134 hafs_regional_storm_following_1nest_atm_ocn_debug results .... - Comparing atmf001.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atm.nest02.f001.nc ............ALT CHECK......OK - Comparing sfc.nest02.f001.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/hafs_regional_storm_following_1nest_atm_ocn_debug +Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_debug results .... + Comparing atmf001.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atm.nest02.f001.nc .........OK + Comparing sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 791.930004 - 0: The maximum resident set size (KB) = 594236 + 0: The total amount of wall time = 789.952451 + 0: The maximum resident set size (KB) = 606168 -Test 134 hafs_regional_storm_following_1nest_atm_ocn_debug PASS +Test 135 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hafs_regional_storm_following_1nest_atm_ocn_wav -Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_wav results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 136 hafs_regional_storm_following_1nest_atm_ocn_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 560.768385 - 0: The maximum resident set size (KB) = 630368 + 0: The total amount of wall time = 535.841316 + 0: The maximum resident set size (KB) = 617380 -Test 135 hafs_regional_storm_following_1nest_atm_ocn_wav PASS +Test 136 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_docn -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hafs_regional_docn -Checking test 136 hafs_regional_docn results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_docn +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/hafs_regional_docn +Checking test 137 hafs_regional_docn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 381.176618 - 0: The maximum resident set size (KB) = 1233168 + 0: The total amount of wall time = 364.677356 + 0: The maximum resident set size (KB) = 1180356 -Test 136 hafs_regional_docn PASS +Test 137 hafs_regional_docn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_docn_oisst -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hafs_regional_docn_oisst -Checking test 137 hafs_regional_docn_oisst results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_docn_oisst +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/hafs_regional_docn_oisst +Checking test 138 hafs_regional_docn_oisst results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 399.682572 - 0: The maximum resident set size (KB) = 1210140 + 0: The total amount of wall time = 359.203480 + 0: The maximum resident set size (KB) = 1219992 -Test 137 hafs_regional_docn_oisst PASS +Test 138 hafs_regional_docn_oisst PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_datm_cdeps -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/hafs_regional_datm_cdeps -Checking test 138 hafs_regional_datm_cdeps results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_datm_cdeps +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/hafs_regional_datm_cdeps +Checking test 139 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 931.422528 - 0: The maximum resident set size (KB) = 1050120 + 0: The total amount of wall time = 941.559831 + 0: The maximum resident set size (KB) = 1036744 -Test 138 hafs_regional_datm_cdeps PASS +Test 139 hafs_regional_datm_cdeps PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/datm_cdeps_control_cfsr -Checking test 139 datm_cdeps_control_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/datm_cdeps_control_cfsr +Checking test 140 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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.701740 - 0: The maximum resident set size (KB) = 1064568 + 0: The total amount of wall time = 145.645775 + 0: The maximum resident set size (KB) = 1048792 -Test 139 datm_cdeps_control_cfsr PASS +Test 140 datm_cdeps_control_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/datm_cdeps_restart_cfsr -Checking test 140 datm_cdeps_restart_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/datm_cdeps_restart_cfsr +Checking test 141 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 92.166005 - 0: The maximum resident set size (KB) = 1012700 + 0: The total amount of wall time = 94.093936 + 0: The maximum resident set size (KB) = 1010516 -Test 140 datm_cdeps_restart_cfsr PASS +Test 141 datm_cdeps_restart_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_gefs -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/datm_cdeps_control_gefs -Checking test 141 datm_cdeps_control_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_control_gefs +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/datm_cdeps_control_gefs +Checking test 142 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 144.981082 - 0: The maximum resident set size (KB) = 956984 + 0: The total amount of wall time = 142.334809 + 0: The maximum resident set size (KB) = 961896 -Test 141 datm_cdeps_control_gefs PASS +Test 142 datm_cdeps_control_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_iau_gefs -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/datm_cdeps_iau_gefs -Checking test 142 datm_cdeps_iau_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_iau_gefs +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/datm_cdeps_iau_gefs +Checking test 143 datm_cdeps_iau_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.635886 - 0: The maximum resident set size (KB) = 968288 + 0: The total amount of wall time = 149.182718 + 0: The maximum resident set size (KB) = 953428 -Test 142 datm_cdeps_iau_gefs PASS +Test 143 datm_cdeps_iau_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_stochy_gefs -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/datm_cdeps_stochy_gefs -Checking test 143 datm_cdeps_stochy_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_stochy_gefs +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/datm_cdeps_stochy_gefs +Checking test 144 datm_cdeps_stochy_gefs 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.959031 - 0: The maximum resident set size (KB) = 975052 + 0: The total amount of wall time = 145.880993 + 0: The maximum resident set size (KB) = 961204 -Test 143 datm_cdeps_stochy_gefs PASS +Test 144 datm_cdeps_stochy_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_ciceC_cfsr -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/datm_cdeps_ciceC_cfsr -Checking test 144 datm_cdeps_ciceC_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_ciceC_cfsr +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/datm_cdeps_ciceC_cfsr +Checking test 145 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 153.370660 - 0: The maximum resident set size (KB) = 1079004 + 0: The total amount of wall time = 151.383316 + 0: The maximum resident set size (KB) = 1059064 -Test 144 datm_cdeps_ciceC_cfsr PASS +Test 145 datm_cdeps_ciceC_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_bulk_cfsr -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/datm_cdeps_bulk_cfsr -Checking test 145 datm_cdeps_bulk_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_bulk_cfsr +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/datm_cdeps_bulk_cfsr +Checking test 146 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.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.454397 - 0: The maximum resident set size (KB) = 1061872 + 0: The total amount of wall time = 145.354040 + 0: The maximum resident set size (KB) = 1049092 -Test 145 datm_cdeps_bulk_cfsr PASS +Test 146 datm_cdeps_bulk_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_bulk_gefs -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/datm_cdeps_bulk_gefs -Checking test 146 datm_cdeps_bulk_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_bulk_gefs +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/datm_cdeps_bulk_gefs +Checking test 147 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 144.768702 - 0: The maximum resident set size (KB) = 971708 + 0: The total amount of wall time = 140.526539 + 0: The maximum resident set size (KB) = 964428 -Test 146 datm_cdeps_bulk_gefs PASS +Test 147 datm_cdeps_bulk_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_mx025_cfsr -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/datm_cdeps_mx025_cfsr -Checking test 147 datm_cdeps_mx025_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_mx025_cfsr +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/datm_cdeps_mx025_cfsr +Checking test 148 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4611,15 +4623,15 @@ Checking test 147 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 436.299027 - 0: The maximum resident set size (KB) = 878932 + 0: The total amount of wall time = 432.848779 + 0: The maximum resident set size (KB) = 882564 -Test 147 datm_cdeps_mx025_cfsr PASS +Test 148 datm_cdeps_mx025_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_mx025_gefs -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/datm_cdeps_mx025_gefs -Checking test 148 datm_cdeps_mx025_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_mx025_gefs +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/datm_cdeps_mx025_gefs +Checking test 149 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4627,78 +4639,78 @@ Checking test 148 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 432.119555 - 0: The maximum resident set size (KB) = 931188 + 0: The total amount of wall time = 433.732868 + 0: The maximum resident set size (KB) = 935376 -Test 148 datm_cdeps_mx025_gefs PASS +Test 149 datm_cdeps_mx025_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/datm_cdeps_multiple_files_cfsr -Checking test 149 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/datm_cdeps_multiple_files_cfsr +Checking test 150 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.793966 - 0: The maximum resident set size (KB) = 1065108 + 0: The total amount of wall time = 151.280865 + 0: The maximum resident set size (KB) = 1072052 -Test 149 datm_cdeps_multiple_files_cfsr PASS +Test 150 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/datm_cdeps_3072x1536_cfsr -Checking test 150 datm_cdeps_3072x1536_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/datm_cdeps_3072x1536_cfsr +Checking test 151 datm_cdeps_3072x1536_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 202.155503 - 0: The maximum resident set size (KB) = 2352996 + 0: The total amount of wall time = 204.727256 + 0: The maximum resident set size (KB) = 2365832 -Test 150 datm_cdeps_3072x1536_cfsr PASS +Test 151 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_gfs -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/datm_cdeps_gfs -Checking test 151 datm_cdeps_gfs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_gfs +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/datm_cdeps_gfs +Checking test 152 datm_cdeps_gfs 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 = 210.428488 - 0: The maximum resident set size (KB) = 2366372 + 0: The total amount of wall time = 205.332922 + 0: The maximum resident set size (KB) = 2351312 -Test 151 datm_cdeps_gfs PASS +Test 152 datm_cdeps_gfs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_debug_cfsr -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/datm_cdeps_debug_cfsr -Checking test 152 datm_cdeps_debug_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_debug_cfsr +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/datm_cdeps_debug_cfsr +Checking test 153 datm_cdeps_debug_cfsr 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 = 439.878997 - 0: The maximum resident set size (KB) = 997360 + 0: The total amount of wall time = 452.844463 + 0: The maximum resident set size (KB) = 976224 -Test 152 datm_cdeps_debug_cfsr PASS +Test 153 datm_cdeps_debug_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_control_cfsr_faster -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/datm_cdeps_control_cfsr_faster -Checking test 153 datm_cdeps_control_cfsr_faster results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_control_cfsr_faster +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/datm_cdeps_control_cfsr_faster +Checking test 154 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.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.538444 - 0: The maximum resident set size (KB) = 1065308 + 0: The total amount of wall time = 143.208315 + 0: The maximum resident set size (KB) = 1071196 -Test 153 datm_cdeps_control_cfsr_faster PASS +Test 154 datm_cdeps_control_cfsr_faster PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_lnd_gswp3 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/datm_cdeps_lnd_gswp3 -Checking test 154 datm_cdeps_lnd_gswp3 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_lnd_gswp3 +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/datm_cdeps_lnd_gswp3 +Checking test 155 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4706,15 +4718,15 @@ Checking test 154 datm_cdeps_lnd_gswp3 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 = 8.035173 - 0: The maximum resident set size (KB) = 264012 + 0: The total amount of wall time = 12.656714 + 0: The maximum resident set size (KB) = 260416 -Test 154 datm_cdeps_lnd_gswp3 PASS +Test 155 datm_cdeps_lnd_gswp3 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/datm_cdeps_lnd_gswp3 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/datm_cdeps_lnd_gswp3_rst -Checking test 155 datm_cdeps_lnd_gswp3_rst results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_lnd_gswp3 +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/datm_cdeps_lnd_gswp3_rst +Checking test 156 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4722,15 +4734,15 @@ Checking test 155 datm_cdeps_lnd_gswp3_rst 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 = 16.563053 - 0: The maximum resident set size (KB) = 245008 + 0: The total amount of wall time = 13.153722 + 0: The maximum resident set size (KB) = 261336 -Test 155 datm_cdeps_lnd_gswp3_rst PASS +Test 156 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_atmlnd_sbs -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_p8_atmlnd_sbs -Checking test 156 control_p8_atmlnd_sbs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8_atmlnd_sbs +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_p8_atmlnd_sbs +Checking test 157 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -4814,19 +4826,19 @@ Checking test 156 control_p8_atmlnd_sbs 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 = 207.992407 - 0: The maximum resident set size (KB) = 1613152 + 0: The total amount of wall time = 204.255672 + 0: The maximum resident set size (KB) = 1608012 -Test 156 control_p8_atmlnd_sbs PASS +Test 157 control_p8_atmlnd_sbs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/control_atmwav -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/control_atmwav -Checking test 157 control_atmwav results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_atmwav +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_atmwav +Checking test 158 control_atmwav results .... + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -4865,19 +4877,19 @@ Checking test 157 control_atmwav 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.805567 - 0: The maximum resident set size (KB) = 664532 + 0: The total amount of wall time = 88.473338 + 0: The maximum resident set size (KB) = 663772 -Test 157 control_atmwav PASS +Test 158 control_atmwav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/atmaero_control_p8 -Checking test 158 atmaero_control_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/atmaero_control_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/atmaero_control_p8 +Checking test 159 atmaero_control_p8 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 @@ -4916,19 +4928,19 @@ Checking test 158 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 242.242097 - 0: The maximum resident set size (KB) = 2977900 + 0: The total amount of wall time = 228.887469 + 0: The maximum resident set size (KB) = 2975968 -Test 158 atmaero_control_p8 PASS +Test 159 atmaero_control_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8_rad -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/atmaero_control_p8_rad -Checking test 159 atmaero_control_p8_rad results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/atmaero_control_p8_rad +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/atmaero_control_p8_rad +Checking test 160 atmaero_control_p8_rad 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 @@ -4967,19 +4979,19 @@ Checking test 159 atmaero_control_p8_rad results .... Comparing 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.117587 - 0: The maximum resident set size (KB) = 3049748 + 0: The total amount of wall time = 280.146878 + 0: The maximum resident set size (KB) = 3051440 -Test 159 atmaero_control_p8_rad PASS +Test 160 atmaero_control_p8_rad PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8_rad_micro -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/atmaero_control_p8_rad_micro -Checking test 160 atmaero_control_p8_rad_micro results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/atmaero_control_p8_rad_micro +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/atmaero_control_p8_rad_micro +Checking test 161 atmaero_control_p8_rad_micro 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 @@ -5018,21 +5030,21 @@ Checking test 160 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 293.170272 - 0: The maximum resident set size (KB) = 3054616 + 0: The total amount of wall time = 285.456283 + 0: The maximum resident set size (KB) = 3057716 -Test 160 atmaero_control_p8_rad_micro PASS +Test 161 atmaero_control_p8_rad_micro PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/regional_atmaq -Checking test 161 regional_atmaq results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf003.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf003.nc ............ALT CHECK......OK - Comparing atmf006.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_atmaq +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/regional_atmaq +Checking test 162 regional_atmaq results .... + Comparing sfcf000.nc .........OK + Comparing sfcf003.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf003.nc .........OK + Comparing atmf006.nc .........OK Comparing RESTART/20190801.180000.coupler.res .........OK Comparing RESTART/20190801.180000.fv_core.res.nc .........OK Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK @@ -5041,19 +5053,19 @@ Checking test 161 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 626.504328 - 0: The maximum resident set size (KB) = 1474504 + 0: The total amount of wall time = 623.230267 + 0: The maximum resident set size (KB) = 1344252 -Test 161 regional_atmaq PASS +Test 162 regional_atmaq PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/regional_atmaq_debug -Checking test 162 regional_atmaq_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_atmaq_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/regional_atmaq_debug +Checking test 163 regional_atmaq_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK Comparing RESTART/20190801.130000.coupler.res .........OK Comparing RESTART/20190801.130000.fv_core.res.nc .........OK Comparing RESTART/20190801.130000.fv_core.res.tile1.nc .........OK @@ -5062,21 +5074,21 @@ Checking test 162 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1259.295606 - 0: The maximum resident set size (KB) = 1256968 + 0: The total amount of wall time = 1238.568553 + 0: The maximum resident set size (KB) = 1416580 -Test 162 regional_atmaq_debug PASS +Test 163 regional_atmaq_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq_faster -working dir = /work/noaa/epic-ps/zshrader/rt-1672/stmp/zshrader/FV3_RT/rt_450455/regional_atmaq_faster -Checking test 163 regional_atmaq_faster results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf003.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf003.nc ............ALT CHECK......OK - Comparing atmf006.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_atmaq_faster +working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/regional_atmaq_faster +Checking test 164 regional_atmaq_faster results .... + Comparing sfcf000.nc .........OK + Comparing sfcf003.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf003.nc .........OK + Comparing atmf006.nc .........OK Comparing RESTART/20190801.180000.coupler.res .........OK Comparing RESTART/20190801.180000.fv_core.res.nc .........OK Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK @@ -5085,12 +5097,12 @@ Checking test 163 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 546.273887 - 0: The maximum resident set size (KB) = 1478012 + 0: The total amount of wall time = 545.397838 + 0: The maximum resident set size (KB) = 1473436 -Test 163 regional_atmaq_faster PASS +Test 164 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Tue Mar 28 17:06:01 CDT 2023 -Elapsed time: 01h:24m:36s. Have a nice day! +Thu Mar 30 10:26:36 CDT 2023 +Elapsed time: 01h:15m:39s. Have a nice day! diff --git a/tests/RegressionTests_wcoss2.intel.log b/tests/RegressionTests_wcoss2.intel.log index a35a27f47eb..bd65543adce 100644 --- a/tests/RegressionTests_wcoss2.intel.log +++ b/tests/RegressionTests_wcoss2.intel.log @@ -1,35 +1,34 @@ -Mon Mar 27 19:44:52 UTC 2023 +Thu Mar 30 16:43:37 UTC 2023 Start Regression test -Test 009 compile FAIL - -Compile 001 elapsed time 1261 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 632 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 1031 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 539 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 005 elapsed time 1072 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 1127 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 1008 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 008 elapsed time 524 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 010 elapsed time 1628 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 741 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 680 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 013 elapsed time 646 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 731 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 015 elapsed time 1131 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 762 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 017 elapsed time 358 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 845 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 019 elapsed time 253 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 1376 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 585 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 022 elapsed time 684 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 1381 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 024 elapsed time 919 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 025 elapsed time 871 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8_mixedmode -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/cpld_control_p8_mixedmode +Compile 001 elapsed time 583 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1090 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 1241 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 1194 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 005 elapsed time 507 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 1300 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 524 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 983 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 009 elapsed time 468 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 693 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 1430 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 391 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 149 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 014 elapsed time 1127 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 973 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 512 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 017 elapsed time 1166 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 715 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 019 elapsed time 837 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 1158 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 670 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 022 elapsed time 1103 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 786 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 024 elapsed time 519 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 025 elapsed time 561 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8_mixedmode +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -94,14 +93,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 374.576052 -The maximum resident set size (KB) = 2949276 +The total amount of wall time = 339.356527 +The maximum resident set size (KB) = 2947488 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/cpld_control_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/cpld_control_p8 Checking test 002 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -166,14 +165,14 @@ Checking test 002 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 394.756426 -The maximum resident set size (KB) = 2983704 +The total amount of wall time = 388.737483 +The maximum resident set size (KB) = 2983224 Test 002 cpld_control_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/cpld_restart_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/cpld_restart_p8 Checking test 003 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -226,14 +225,14 @@ Checking test 003 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 251.699068 -The maximum resident set size (KB) = 2869288 +The total amount of wall time = 238.375219 +The maximum resident set size (KB) = 2867060 Test 003 cpld_restart_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/cpld_control_qr_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/cpld_control_qr_p8 Checking test 004 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -298,14 +297,14 @@ Checking test 004 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 398.286602 -The maximum resident set size (KB) = 2993684 +The total amount of wall time = 389.541412 +The maximum resident set size (KB) = 3000076 Test 004 cpld_control_qr_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/cpld_restart_qr_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/cpld_restart_qr_p8 Checking test 005 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -358,14 +357,14 @@ Checking test 005 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 270.556391 -The maximum resident set size (KB) = 2879020 +The total amount of wall time = 243.206878 +The maximum resident set size (KB) = 2881052 Test 005 cpld_restart_qr_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/cpld_2threads_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/cpld_2threads_p8 Checking test 006 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -418,14 +417,14 @@ Checking test 006 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 377.241971 -The maximum resident set size (KB) = 3284716 +The total amount of wall time = 374.436641 +The maximum resident set size (KB) = 3281804 Test 006 cpld_2threads_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/cpld_decomp_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/cpld_decomp_p8 Checking test 007 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -478,14 +477,14 @@ Checking test 007 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 391.106123 -The maximum resident set size (KB) = 2978356 +The total amount of wall time = 387.568506 +The maximum resident set size (KB) = 2980852 Test 007 cpld_decomp_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/cpld_mpi_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/cpld_mpi_p8 Checking test 008 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -538,14 +537,14 @@ Checking test 008 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 332.879122 -The maximum resident set size (KB) = 2908488 +The total amount of wall time = 323.434443 +The maximum resident set size (KB) = 2915192 Test 008 cpld_mpi_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_ciceC_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/cpld_control_ciceC_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_ciceC_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/cpld_control_ciceC_p8 Checking test 009 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -610,17 +609,17 @@ Checking test 009 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 401.183085 -The maximum resident set size (KB) = 2982776 +The total amount of wall time = 385.813143 +The maximum resident set size (KB) = 2981136 Test 009 cpld_control_ciceC_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_bmark_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/cpld_bmark_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_bmark_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/cpld_bmark_p8 Checking test 010 cpld_bmark_p8 results .... - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc .........OK + Comparing atmf006.nc .........OK Comparing GFSFLX.GrbF06 .........OK Comparing GFSPRS.GrbF06 .........OK Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK @@ -665,17 +664,17 @@ Checking test 010 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 1034.217598 -The maximum resident set size (KB) = 3928900 +The total amount of wall time = 947.587975 +The maximum resident set size (KB) = 3928936 Test 010 cpld_bmark_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_bmark_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/cpld_restart_bmark_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_bmark_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/cpld_restart_bmark_p8 Checking test 011 cpld_restart_bmark_p8 results .... - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc .........OK + Comparing atmf006.nc .........OK Comparing GFSFLX.GrbF06 .........OK Comparing GFSPRS.GrbF06 .........OK Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK @@ -720,14 +719,14 @@ Checking test 011 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 692.067959 -The maximum resident set size (KB) = 3891432 +The total amount of wall time = 675.894020 +The maximum resident set size (KB) = 3902436 Test 011 cpld_restart_bmark_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/cpld_control_noaero_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/cpld_control_noaero_p8 Checking test 012 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -791,14 +790,14 @@ Checking test 012 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 303.748309 -The maximum resident set size (KB) = 1576420 +The total amount of wall time = 291.238122 +The maximum resident set size (KB) = 1576780 Test 012 cpld_control_noaero_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/cpld_control_nowave_noaero_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_c96_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/cpld_control_nowave_noaero_p8 Checking test 013 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -860,14 +859,14 @@ Checking test 013 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 323.796206 -The maximum resident set size (KB) = 1634116 +The total amount of wall time = 308.095725 +The maximum resident set size (KB) = 1635952 Test 013 cpld_control_nowave_noaero_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/cpld_control_noaero_p8_agrid +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_noaero_p8_agrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/cpld_control_noaero_p8_agrid Checking test 014 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -929,14 +928,14 @@ Checking test 014 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 313.446160 -The maximum resident set size (KB) = 1628488 +The total amount of wall time = 312.234147 +The maximum resident set size (KB) = 1633464 Test 014 cpld_control_noaero_p8_agrid PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/cpld_control_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/cpld_control_c48 Checking test 015 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -986,14 +985,14 @@ Checking test 015 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 450.848792 -The maximum resident set size (KB) = 2632784 +The total amount of wall time = 435.165742 +The maximum resident set size (KB) = 2636940 Test 015 cpld_control_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/cpld_warmstart_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/cpld_warmstart_c48 Checking test 016 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1043,14 +1042,14 @@ Checking test 016 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 136.611768 -The maximum resident set size (KB) = 2645764 +The total amount of wall time = 123.273780 +The maximum resident set size (KB) = 2650464 Test 016 cpld_warmstart_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/cpld_restart_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/cpld_restart_c48 Checking test 017 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1100,14 +1099,14 @@ Checking test 017 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 95.600996 -The maximum resident set size (KB) = 2069904 +The total amount of wall time = 67.528582 +The maximum resident set size (KB) = 2068236 Test 017 cpld_restart_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/cpld_control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/cpld_control_p8_faster +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/cpld_control_p8_faster Checking test 018 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1172,14 +1171,14 @@ Checking test 018 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 399.624125 -The maximum resident set size (KB) = 2982088 +The total amount of wall time = 384.012870 +The maximum resident set size (KB) = 2980036 Test 018 cpld_control_p8_faster PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_CubedSphereGrid +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_CubedSphereGrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/control_CubedSphereGrid Checking test 019 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1206,55 +1205,55 @@ Checking test 019 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 134.111744 -The maximum resident set size (KB) = 518816 +The total amount of wall time = 130.483218 +The maximum resident set size (KB) = 514772 Test 019 control_CubedSphereGrid PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_latlon -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_latlon +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_latlon +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/control_latlon Checking test 020 control_latlon results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.943115 -The maximum resident set size (KB) = 519032 +The total amount of wall time = 132.606261 +The maximum resident set size (KB) = 516340 Test 020 control_latlon PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_wrtGauss_netcdf_parallel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/control_wrtGauss_netcdf_parallel Checking test 021 control_wrtGauss_netcdf_parallel results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 140.497465 -The maximum resident set size (KB) = 518432 +The total amount of wall time = 135.298354 +The maximum resident set size (KB) = 520204 Test 021 control_wrtGauss_netcdf_parallel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/control_c48 Checking test 022 control_c48 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -1288,55 +1287,55 @@ Checking test 022 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 329.476361 -The maximum resident set size (KB) = 674516 +The total amount of wall time = 326.180164 +The maximum resident set size (KB) = 674752 Test 022 control_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c192 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_c192 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_c192 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/control_c192 Checking test 023 control_c192 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 563.714086 -The maximum resident set size (KB) = 616740 +The total amount of wall time = 529.925635 +The maximum resident set size (KB) = 617000 Test 023 control_c192 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c384 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_c384 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_c384 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/control_c384 Checking test 024 control_c384 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 631.162450 -The maximum resident set size (KB) = 928108 +The total amount of wall time = 572.468467 +The maximum resident set size (KB) = 921816 Test 024 control_c384 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_c384gdas -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_c384gdas +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_c384gdas +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/control_c384gdas Checking test 025 control_c384gdas results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf006.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF06 .........OK Comparing GFSPRS.GrbF00 .........OK @@ -1374,71 +1373,71 @@ Checking test 025 control_c384gdas 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 = 517.918213 -The maximum resident set size (KB) = 1056048 +The total amount of wall time = 495.522462 +The maximum resident set size (KB) = 1055512 Test 025 control_c384gdas PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_stochy +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/control_stochy Checking test 026 control_stochy results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 93.634049 -The maximum resident set size (KB) = 522764 +The total amount of wall time = 90.160810 +The maximum resident set size (KB) = 521304 Test 026 control_stochy PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_stochy_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/control_stochy_restart Checking test 027 control_stochy_restart results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 56.165182 -The maximum resident set size (KB) = 291392 +The total amount of wall time = 48.990982 +The maximum resident set size (KB) = 291808 Test 027 control_stochy_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_lndp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/control_lndp Checking test 028 control_lndp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 87.110461 -The maximum resident set size (KB) = 520676 +The total amount of wall time = 83.545430 +The maximum resident set size (KB) = 520876 Test 028 control_lndp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_iovr4 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_iovr4 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_iovr4 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/control_iovr4 Checking test 029 control_iovr4 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1446,21 +1445,21 @@ Checking test 029 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 140.107861 -The maximum resident set size (KB) = 517652 +The total amount of wall time = 138.864274 +The maximum resident set size (KB) = 518420 Test 029 control_iovr4 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_iovr5 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_iovr5 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_iovr5 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/control_iovr5 Checking test 030 control_iovr5 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1468,21 +1467,21 @@ Checking test 030 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 142.888284 -The maximum resident set size (KB) = 518028 +The total amount of wall time = 136.610595 +The maximum resident set size (KB) = 517008 Test 030 control_iovr5 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/control_p8 Checking test 031 control_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1522,17 +1521,17 @@ Checking test 031 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 202.295451 -The maximum resident set size (KB) = 1482352 +The total amount of wall time = 180.111697 +The maximum resident set size (KB) = 1491636 Test 031 control_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_restart_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/control_restart_p8 Checking test 032 control_restart_p8 results .... - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -1568,21 +1567,21 @@ Checking test 032 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 114.081492 -The maximum resident set size (KB) = 657232 +The total amount of wall time = 101.252551 +The maximum resident set size (KB) = 656044 Test 032 control_restart_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_qr_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/control_qr_p8 Checking test 033 control_qr_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1622,17 +1621,17 @@ Checking test 033 control_qr_p8 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 = 191.743479 -The maximum resident set size (KB) = 1493068 +The total amount of wall time = 177.413551 +The maximum resident set size (KB) = 1492516 Test 033 control_qr_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_restart_qr_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/control_restart_qr_p8 Checking test 034 control_restart_qr_p8 results .... - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -1668,19 +1667,19 @@ Checking test 034 control_restart_qr_p8 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 = 128.088320 -The maximum resident set size (KB) = 665744 +The total amount of wall time = 102.273538 +The maximum resident set size (KB) = 670808 Test 034 control_restart_qr_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_decomp_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/control_decomp_p8 Checking test 035 control_decomp_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing 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 @@ -1718,19 +1717,19 @@ Checking test 035 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 219.427520 -The maximum resident set size (KB) = 1482736 +The total amount of wall time = 181.866662 +The maximum resident set size (KB) = 1474700 Test 035 control_decomp_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_2threads_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/control_2threads_p8 Checking test 036 control_2threads_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing 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 @@ -1768,23 +1767,23 @@ Checking test 036 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 178.923659 -The maximum resident set size (KB) = 1564036 +The total amount of wall time = 157.361175 +The maximum resident set size (KB) = 1573928 Test 036 control_2threads_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_p8_lndp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/control_p8_lndp Checking test 037 control_p8_lndp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing sfcf048.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK - Comparing atmf048.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing sfcf048.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing atmf048.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1794,21 +1793,21 @@ Checking test 037 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 334.901589 -The maximum resident set size (KB) = 1489916 +The total amount of wall time = 323.208059 +The maximum resident set size (KB) = 1490060 Test 037 control_p8_lndp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_rrtmgp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_p8_rrtmgp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8_rrtmgp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/control_p8_rrtmgp Checking test 038 control_p8_rrtmgp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1848,21 +1847,21 @@ Checking test 038 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 246.532398 -The maximum resident set size (KB) = 1555356 +The total amount of wall time = 233.386219 +The maximum resident set size (KB) = 1550284 Test 038 control_p8_rrtmgp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_mynn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_p8_mynn +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8_mynn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/control_p8_mynn Checking test 039 control_p8_mynn results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1902,21 +1901,21 @@ Checking test 039 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 188.848416 -The maximum resident set size (KB) = 1488108 +The total amount of wall time = 180.627971 +The maximum resident set size (KB) = 1483868 Test 039 control_p8_mynn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/merra2_thompson -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/merra2_thompson +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/merra2_thompson +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/merra2_thompson Checking test 040 merra2_thompson results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1956,114 +1955,114 @@ Checking test 040 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 217.462621 -The maximum resident set size (KB) = 1498400 +The total amount of wall time = 210.194255 +The maximum resident set size (KB) = 1489748 Test 040 merra2_thompson PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/regional_control +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/regional_control Checking test 041 regional_control results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 306.557436 -The maximum resident set size (KB) = 656052 +The total amount of wall time = 287.090084 +The maximum resident set size (KB) = 651652 Test 041 regional_control PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/regional_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/regional_restart Checking test 042 regional_restart results .... - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf006.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 171.507001 -The maximum resident set size (KB) = 650944 +The total amount of wall time = 164.015793 +The maximum resident set size (KB) = 650612 Test 042 regional_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/regional_control_qr +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/regional_control_qr Checking test 043 regional_control_qr results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 311.752862 -The maximum resident set size (KB) = 657500 +The total amount of wall time = 288.903807 +The maximum resident set size (KB) = 657072 Test 043 regional_control_qr PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/regional_restart_qr +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/regional_restart_qr Checking test 044 regional_restart_qr results .... - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf006.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 204.241115 -The maximum resident set size (KB) = 650996 +The total amount of wall time = 161.960677 +The maximum resident set size (KB) = 654108 Test 044 regional_restart_qr PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/regional_decomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/regional_decomp Checking test 045 regional_decomp results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 318.410298 -The maximum resident set size (KB) = 652276 +The total amount of wall time = 304.186242 +The maximum resident set size (KB) = 655976 Test 045 regional_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/regional_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/regional_2threads Checking test 046 regional_2threads results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 192.240716 -The maximum resident set size (KB) = 700504 +The total amount of wall time = 177.418116 +The maximum resident set size (KB) = 698528 Test 046 regional_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_noquilt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/regional_noquilt +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_noquilt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/regional_noquilt Checking test 047 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2071,71 +2070,71 @@ Checking test 047 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 325.323979 -The maximum resident set size (KB) = 647264 +The total amount of wall time = 312.984505 +The maximum resident set size (KB) = 649000 Test 047 regional_noquilt PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/regional_netcdf_parallel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/regional_netcdf_parallel Checking test 048 regional_netcdf_parallel results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK -The total amount of wall time = 293.095167 -The maximum resident set size (KB) = 652376 +The total amount of wall time = 283.761438 +The maximum resident set size (KB) = 648312 Test 048 regional_netcdf_parallel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/regional_2dwrtdecomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/regional_2dwrtdecomp Checking test 049 regional_2dwrtdecomp results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 301.132061 -The maximum resident set size (KB) = 655448 +The total amount of wall time = 292.499809 +The maximum resident set size (KB) = 655408 Test 049 regional_2dwrtdecomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/fv3_regional_wofs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/regional_wofs +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/fv3_regional_wofs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/regional_wofs Checking test 050 regional_wofs results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 379.953703 -The maximum resident set size (KB) = 335812 +The total amount of wall time = 365.568894 +The maximum resident set size (KB) = 341400 Test 050 regional_wofs PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rap_control +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/rap_control Checking test 051 rap_control results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2175,39 +2174,39 @@ Checking test 051 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 422.634146 -The maximum resident set size (KB) = 899304 +The total amount of wall time = 426.398033 +The maximum resident set size (KB) = 889704 Test 051 rap_control PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/regional_spp_sppt_shum_skeb +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_spp_sppt_shum_skeb +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/regional_spp_sppt_shum_skeb Checking test 052 regional_spp_sppt_shum_skeb results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf001.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf001.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF01 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 246.903768 -The maximum resident set size (KB) = 979948 +The total amount of wall time = 247.580329 +The maximum resident set size (KB) = 986796 Test 052 regional_spp_sppt_shum_skeb PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rap_decomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/rap_decomp Checking test 053 rap_decomp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2247,21 +2246,21 @@ Checking test 053 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 437.322660 -The maximum resident set size (KB) = 897048 +The total amount of wall time = 439.570540 +The maximum resident set size (KB) = 895284 Test 053 rap_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rap_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/rap_2threads Checking test 054 rap_2threads results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2301,17 +2300,17 @@ Checking test 054 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 390.237057 -The maximum resident set size (KB) = 971072 +The total amount of wall time = 396.990878 +The maximum resident set size (KB) = 969480 Test 054 rap_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rap_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/rap_restart Checking test 055 rap_restart results .... - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -2347,21 +2346,21 @@ Checking test 055 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 222.917849 -The maximum resident set size (KB) = 649176 +The total amount of wall time = 213.081226 +The maximum resident set size (KB) = 646632 Test 055 rap_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rap_sfcdiff +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/rap_sfcdiff Checking test 056 rap_sfcdiff results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + 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 @@ -2401,21 +2400,21 @@ Checking test 056 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 432.069837 -The maximum resident set size (KB) = 899652 +The total amount of wall time = 431.579594 +The maximum resident set size (KB) = 889116 Test 056 rap_sfcdiff PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rap_sfcdiff_decomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/rap_sfcdiff_decomp Checking test 057 rap_sfcdiff_decomp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + 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 @@ -2455,17 +2454,17 @@ Checking test 057 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 442.709733 -The maximum resident set size (KB) = 896852 +The total amount of wall time = 446.110948 +The maximum resident set size (KB) = 895304 Test 057 rap_sfcdiff_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rap_sfcdiff_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/rap_sfcdiff_restart Checking test 058 rap_sfcdiff_restart results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -2501,21 +2500,21 @@ Checking test 058 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 319.341853 -The maximum resident set size (KB) = 643512 +The total amount of wall time = 312.263861 +The maximum resident set size (KB) = 645312 Test 058 rap_sfcdiff_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/hrrr_control +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/hrrr_control Checking test 059 hrrr_control results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + 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 @@ -2555,21 +2554,21 @@ Checking test 059 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 413.318778 -The maximum resident set size (KB) = 896144 +The total amount of wall time = 412.453949 +The maximum resident set size (KB) = 888108 Test 059 hrrr_control PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/hrrr_control_decomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/hrrr_control_decomp Checking test 060 hrrr_control_decomp results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + 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 @@ -2609,21 +2608,21 @@ Checking test 060 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 432.922728 -The maximum resident set size (KB) = 893932 +The total amount of wall time = 428.910135 +The maximum resident set size (KB) = 888712 Test 060 hrrr_control_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/hrrr_control_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/hrrr_control_2threads Checking test 061 hrrr_control_2threads results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + 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 @@ -2663,17 +2662,17 @@ Checking test 061 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 379.924391 -The maximum resident set size (KB) = 964684 +The total amount of wall time = 380.294590 +The maximum resident set size (KB) = 961836 Test 061 hrrr_control_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/hrrr_control_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/hrrr_control_restart Checking test 062 hrrr_control_restart results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -2709,21 +2708,21 @@ Checking test 062 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 303.100061 -The maximum resident set size (KB) = 641480 +The total amount of wall time = 298.757290 +The maximum resident set size (KB) = 637392 Test 062 hrrr_control_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1beta -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rrfs_v1beta +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_v1beta +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/rrfs_v1beta Checking test 063 rrfs_v1beta results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + 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 @@ -2763,21 +2762,21 @@ Checking test 063 rrfs_v1beta results .... 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.734504 -The maximum resident set size (KB) = 889048 +The total amount of wall time = 427.000330 +The maximum resident set size (KB) = 891684 Test 063 rrfs_v1beta PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1nssl -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rrfs_v1nssl +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_v1nssl +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/rrfs_v1nssl Checking test 064 rrfs_v1nssl results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + 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 @@ -2785,21 +2784,21 @@ Checking test 064 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 486.881294 -The maximum resident set size (KB) = 578012 +The total amount of wall time = 485.488767 +The maximum resident set size (KB) = 576532 Test 064 rrfs_v1nssl PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rrfs_v1nssl_nohailnoccn +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/rrfs_v1nssl_nohailnoccn Checking test 065 rrfs_v1nssl_nohailnoccn results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + 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 @@ -2807,97 +2806,163 @@ Checking test 065 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 478.696384 -The maximum resident set size (KB) = 573752 +The total amount of wall time = 471.690244 +The maximum resident set size (KB) = 569248 Test 065 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/rrfs_smoke_conus13km_hrrr_warm Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing sfcf002.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - Comparing atmf002.nc ............ALT CHECK......OK + 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 = 152.048124 -The maximum resident set size (KB) = 798520 +The total amount of wall time = 148.082861 +The maximum resident set size (KB) = 801700 Test 066 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 067 rrfs_smoke_conus13km_hrrr_warm_2threads results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing sfcf002.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - Comparing atmf002.nc ............ALT CHECK......OK + 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 = 106.943772 -The maximum resident set size (KB) = 800704 +The total amount of wall time = 104.206183 +The maximum resident set size (KB) = 802340 Test 067 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rrfs_conus13km_hrrr_warm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/rrfs_conus13km_hrrr_warm Checking test 068 rrfs_conus13km_hrrr_warm results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing sfcf002.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - Comparing atmf002.nc ............ALT CHECK......OK + 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 = 137.889262 -The maximum resident set size (KB) = 780016 +The total amount of wall time = 134.939888 +The maximum resident set size (KB) = 777144 Test 068 rrfs_conus13km_hrrr_warm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/rrfs_smoke_conus13km_radar_tten_warm Checking test 069 rrfs_smoke_conus13km_radar_tten_warm results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing sfcf002.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - Comparing atmf002.nc ............ALT CHECK......OK + 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 = 153.354325 -The maximum resident set size (KB) = 804960 +The total amount of wall time = 152.992877 +The maximum resident set size (KB) = 801708 Test 069 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wam -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_wam -Checking test 073 control_wam results .... - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/rrfs_conus13km_hrrr_warm_restart_mismatch +Checking test 070 rrfs_conus13km_hrrr_warm_restart_mismatch results .... + Comparing sfcf002.nc .........OK + Comparing atmf002.nc .........OK + +The total amount of wall time = 76.423415 +The maximum resident set size (KB) = 758968 + +Test 070 rrfs_conus13km_hrrr_warm_restart_mismatch PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_csawmg +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/control_csawmg +Checking test 071 control_csawmg results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + +The total amount of wall time = 348.225736 +The maximum resident set size (KB) = 587004 + +Test 071 control_csawmg PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_csawmgt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/control_csawmgt +Checking test 072 control_csawmgt results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + +The total amount of wall time = 347.946480 +The maximum resident set size (KB) = 588788 + +Test 072 control_csawmgt PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_ras +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/control_ras +Checking test 073 control_ras results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + +The total amount of wall time = 182.525162 +The maximum resident set size (KB) = 554612 + +Test 073 control_ras PASS -The total amount of wall time = 127.339665 -The maximum resident set size (KB) = 279100 -Test 073 control_wam PASS +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_wam +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/control_wam +Checking test 074 control_wam results .... + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK +The total amount of wall time = 118.148895 +The maximum resident set size (KB) = 289456 -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_p8_faster -Checking test 074 control_p8_faster results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +Test 074 control_wam PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/control_p8_faster +Checking test 075 control_p8_faster results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2937,75 +3002,75 @@ Checking test 074 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 193.723083 -The maximum resident set size (KB) = 1496188 +The total amount of wall time = 174.917617 +The maximum resident set size (KB) = 1486624 -Test 074 control_p8_faster PASS +Test 075 control_p8_faster PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_control_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/regional_control_faster -Checking test 075 regional_control_faster results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/regional_control_faster +Checking test 076 regional_control_faster results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 302.126400 -The maximum resident set size (KB) = 652640 +The total amount of wall time = 281.742502 +The maximum resident set size (KB) = 656560 -Test 075 regional_control_faster PASS +Test 076 regional_control_faster PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rrfs_smoke_conus13km_hrrr_warm_debug -Checking test 076 rrfs_smoke_conus13km_hrrr_warm_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/rrfs_smoke_conus13km_hrrr_warm_debug +Checking test 077 rrfs_smoke_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 939.758947 -The maximum resident set size (KB) = 831480 +The total amount of wall time = 903.032498 +The maximum resident set size (KB) = 834644 -Test 076 rrfs_smoke_conus13km_hrrr_warm_debug PASS +Test 077 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rrfs_smoke_conus13km_hrrr_warm_debug_2threads -Checking test 077 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +Checking test 078 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 568.292951 -The maximum resident set size (KB) = 835084 +The total amount of wall time = 523.361096 +The maximum resident set size (KB) = 838952 -Test 077 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS +Test 078 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rrfs_conus13km_hrrr_warm_debug -Checking test 078 rrfs_conus13km_hrrr_warm_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/rrfs_conus13km_hrrr_warm_debug +Checking test 079 rrfs_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 866.412453 -The maximum resident set size (KB) = 813552 +The total amount of wall time = 809.430939 +The maximum resident set size (KB) = 818640 -Test 078 rrfs_conus13km_hrrr_warm_debug PASS +Test 079 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_CubedSphereGrid_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_CubedSphereGrid_debug -Checking test 079 control_CubedSphereGrid_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_CubedSphereGrid_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/control_CubedSphereGrid_debug +Checking test 080 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3031,359 +3096,359 @@ Checking test 079 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 179.273488 -The maximum resident set size (KB) = 677092 +The total amount of wall time = 171.532151 +The maximum resident set size (KB) = 680448 -Test 079 control_CubedSphereGrid_debug PASS +Test 080 control_CubedSphereGrid_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_wrtGauss_netcdf_parallel_debug -Checking test 080 control_wrtGauss_netcdf_parallel_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/control_wrtGauss_netcdf_parallel_debug +Checking test 081 control_wrtGauss_netcdf_parallel_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 169.833733 -The maximum resident set size (KB) = 680688 +The total amount of wall time = 159.326909 +The maximum resident set size (KB) = 678732 -Test 080 control_wrtGauss_netcdf_parallel_debug PASS +Test 081 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_stochy_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_stochy_debug -Checking test 081 control_stochy_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_stochy_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/control_stochy_debug +Checking test 082 control_stochy_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 186.293965 -The maximum resident set size (KB) = 686524 +The total amount of wall time = 179.184390 +The maximum resident set size (KB) = 687080 -Test 081 control_stochy_debug PASS +Test 082 control_stochy_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_lndp_debug -Checking test 082 control_lndp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/control_lndp_debug +Checking test 083 control_lndp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 169.371575 -The maximum resident set size (KB) = 689640 +The total amount of wall time = 163.656141 +The maximum resident set size (KB) = 687416 -Test 082 control_lndp_debug PASS +Test 083 control_lndp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmg_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_csawmg_debug -Checking test 083 control_csawmg_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_csawmg_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/control_csawmg_debug +Checking test 084 control_csawmg_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 265.189655 -The maximum resident set size (KB) = 720152 +The total amount of wall time = 256.520821 +The maximum resident set size (KB) = 726120 -Test 083 control_csawmg_debug PASS +Test 084 control_csawmg_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmgt_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_csawmgt_debug -Checking test 084 control_csawmgt_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_csawmgt_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/control_csawmgt_debug +Checking test 085 control_csawmgt_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 256.319757 -The maximum resident set size (KB) = 720724 +The total amount of wall time = 252.019112 +The maximum resident set size (KB) = 724212 -Test 084 control_csawmgt_debug PASS +Test 085 control_csawmgt_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_ras_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_ras_debug -Checking test 085 control_ras_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_ras_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/control_ras_debug +Checking test 086 control_ras_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 166.707845 -The maximum resident set size (KB) = 693092 +The total amount of wall time = 164.308167 +The maximum resident set size (KB) = 692736 -Test 085 control_ras_debug PASS +Test 086 control_ras_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_diag_debug -Checking test 086 control_diag_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/control_diag_debug +Checking test 087 control_diag_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 167.628123 -The maximum resident set size (KB) = 738256 +The total amount of wall time = 165.308211 +The maximum resident set size (KB) = 740436 -Test 086 control_diag_debug PASS +Test 087 control_diag_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_debug_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_debug_p8 -Checking test 087 control_debug_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_debug_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/control_debug_p8 +Checking test 088 control_debug_p8 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 194.945749 -The maximum resident set size (KB) = 1507892 +The total amount of wall time = 186.828576 +The maximum resident set size (KB) = 1506780 -Test 087 control_debug_p8 PASS +Test 088 control_debug_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/regional_debug -Checking test 088 regional_debug results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf001.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/regional_debug +Checking test 089 regional_debug results .... + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK -The total amount of wall time = 1042.630987 -The maximum resident set size (KB) = 678244 +The total amount of wall time = 1038.346426 +The maximum resident set size (KB) = 681772 -Test 088 regional_debug PASS +Test 089 regional_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rap_control_debug -Checking test 089 rap_control_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/rap_control_debug +Checking test 090 rap_control_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 305.976502 -The maximum resident set size (KB) = 1056572 +The total amount of wall time = 299.256650 +The maximum resident set size (KB) = 1059504 -Test 089 rap_control_debug PASS +Test 090 rap_control_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/hrrr_control_debug -Checking test 090 hrrr_control_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/hrrr_control_debug +Checking test 091 hrrr_control_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 297.309110 -The maximum resident set size (KB) = 1051692 +The total amount of wall time = 293.385070 +The maximum resident set size (KB) = 1058336 -Test 090 hrrr_control_debug PASS +Test 091 hrrr_control_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rap_unified_drag_suite_debug -Checking test 091 rap_unified_drag_suite_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/rap_unified_drag_suite_debug +Checking test 092 rap_unified_drag_suite_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 301.755737 -The maximum resident set size (KB) = 1059848 +The total amount of wall time = 304.109395 +The maximum resident set size (KB) = 1058804 -Test 091 rap_unified_drag_suite_debug PASS +Test 092 rap_unified_drag_suite_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rap_diag_debug -Checking test 092 rap_diag_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/rap_diag_debug +Checking test 093 rap_diag_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 318.689692 -The maximum resident set size (KB) = 1141856 +The total amount of wall time = 311.647344 +The maximum resident set size (KB) = 1141140 -Test 092 rap_diag_debug PASS +Test 093 rap_diag_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rap_cires_ugwp_debug -Checking test 093 rap_cires_ugwp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/rap_cires_ugwp_debug +Checking test 094 rap_cires_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 309.320706 -The maximum resident set size (KB) = 1058176 +The total amount of wall time = 306.082215 +The maximum resident set size (KB) = 1058056 -Test 093 rap_cires_ugwp_debug PASS +Test 094 rap_cires_ugwp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rap_unified_ugwp_debug -Checking test 094 rap_unified_ugwp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/rap_unified_ugwp_debug +Checking test 095 rap_unified_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 314.820359 -The maximum resident set size (KB) = 1054604 +The total amount of wall time = 310.330185 +The maximum resident set size (KB) = 1054816 -Test 094 rap_unified_ugwp_debug PASS +Test 095 rap_unified_ugwp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rap_lndp_debug -Checking test 095 rap_lndp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/rap_lndp_debug +Checking test 096 rap_lndp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 310.720102 -The maximum resident set size (KB) = 1058312 +The total amount of wall time = 303.111996 +The maximum resident set size (KB) = 1058052 -Test 095 rap_lndp_debug PASS +Test 096 rap_lndp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_flake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rap_flake_debug -Checking test 096 rap_flake_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_flake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/rap_flake_debug +Checking test 097 rap_flake_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 306.923322 -The maximum resident set size (KB) = 1056312 +The total amount of wall time = 299.621295 +The maximum resident set size (KB) = 1060992 -Test 096 rap_flake_debug PASS +Test 097 rap_flake_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_progcld_thompson_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rap_progcld_thompson_debug -Checking test 097 rap_progcld_thompson_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_progcld_thompson_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/rap_progcld_thompson_debug +Checking test 098 rap_progcld_thompson_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 307.085363 -The maximum resident set size (KB) = 1057220 +The total amount of wall time = 299.158222 +The maximum resident set size (KB) = 1059292 -Test 097 rap_progcld_thompson_debug PASS +Test 098 rap_progcld_thompson_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_noah_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rap_noah_debug -Checking test 098 rap_noah_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_noah_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/rap_noah_debug +Checking test 099 rap_noah_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 303.547878 -The maximum resident set size (KB) = 1054056 +The total amount of wall time = 297.098198 +The maximum resident set size (KB) = 1054976 -Test 098 rap_noah_debug PASS +Test 099 rap_noah_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_sfcdiff_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rap_sfcdiff_debug -Checking test 099 rap_sfcdiff_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_sfcdiff_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/rap_sfcdiff_debug +Checking test 100 rap_sfcdiff_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 312.274589 -The maximum resident set size (KB) = 1056608 +The total amount of wall time = 300.616694 +The maximum resident set size (KB) = 1060948 -Test 099 rap_sfcdiff_debug PASS +Test 100 rap_sfcdiff_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 100 rap_noah_sfcdiff_cires_ugwp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 101 rap_noah_sfcdiff_cires_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 496.854929 -The maximum resident set size (KB) = 1053472 +The total amount of wall time = 488.014533 +The maximum resident set size (KB) = 1056272 -Test 100 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 101 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rrfs_v1beta_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rrfs_v1beta_debug -Checking test 101 rrfs_v1beta_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_v1beta_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/rrfs_v1beta_debug +Checking test 102 rrfs_v1beta_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 303.664322 -The maximum resident set size (KB) = 1050844 +The total amount of wall time = 295.913237 +The maximum resident set size (KB) = 1055732 -Test 101 rrfs_v1beta_debug PASS +Test 102 rrfs_v1beta_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_wam_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_wam_debug -Checking test 102 control_wam_debug results .... - Comparing sfcf019.nc ............ALT CHECK......OK - Comparing atmf019.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_wam_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/control_wam_debug +Checking test 103 control_wam_debug results .... + Comparing sfcf019.nc .........OK + Comparing atmf019.nc .........OK -The total amount of wall time = 298.158036 -The maximum resident set size (KB) = 303580 +The total amount of wall time = 299.793460 +The maximum resident set size (KB) = 306016 -Test 102 control_wam_debug PASS +Test 103 control_wam_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/regional_spp_sppt_shum_skeb_dyn32_phy32 -Checking test 103 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf001.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK Comparing PRSLEV.GrbF00 .........OK Comparing PRSLEV.GrbF01 .........OK Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 245.063442 -The maximum resident set size (KB) = 891720 +The total amount of wall time = 236.320718 +The maximum resident set size (KB) = 887476 -Test 103 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS +Test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rap_control_dyn32_phy32 -Checking test 104 rap_control_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/rap_control_dyn32_phy32 +Checking test 105 rap_control_dyn32_phy32 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 @@ -3423,21 +3488,21 @@ Checking test 104 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 377.894547 -The maximum resident set size (KB) = 779144 +The total amount of wall time = 354.095509 +The maximum resident set size (KB) = 782644 -Test 104 rap_control_dyn32_phy32 PASS +Test 105 rap_control_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/hrrr_control_dyn32_phy32 -Checking test 105 hrrr_control_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/hrrr_control_dyn32_phy32 +Checking test 106 hrrr_control_dyn32_phy32 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 @@ -3477,21 +3542,21 @@ Checking test 105 hrrr_control_dyn32_phy32 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 = 198.217626 -The maximum resident set size (KB) = 776136 +The total amount of wall time = 188.160779 +The maximum resident set size (KB) = 781180 -Test 105 hrrr_control_dyn32_phy32 PASS +Test 106 hrrr_control_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rap_2threads_dyn32_phy32 -Checking test 106 rap_2threads_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/rap_2threads_dyn32_phy32 +Checking test 107 rap_2threads_dyn32_phy32 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 @@ -3531,21 +3596,21 @@ Checking test 106 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 431.520767 -The maximum resident set size (KB) = 840700 +The total amount of wall time = 331.505108 +The maximum resident set size (KB) = 834416 -Test 106 rap_2threads_dyn32_phy32 PASS +Test 107 rap_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/hrrr_control_2threads_dyn32_phy32 -Checking test 107 hrrr_control_2threads_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/hrrr_control_2threads_dyn32_phy32 +Checking test 108 hrrr_control_2threads_dyn32_phy32 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 @@ -3585,21 +3650,21 @@ Checking test 107 hrrr_control_2threads_dyn32_phy32 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 = 186.238011 -The maximum resident set size (KB) = 826632 +The total amount of wall time = 174.287598 +The maximum resident set size (KB) = 831568 -Test 107 hrrr_control_2threads_dyn32_phy32 PASS +Test 108 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/hrrr_control_decomp_dyn32_phy32 -Checking test 108 hrrr_control_decomp_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/hrrr_control_decomp_dyn32_phy32 +Checking test 109 hrrr_control_decomp_dyn32_phy32 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 @@ -3639,17 +3704,17 @@ Checking test 108 hrrr_control_decomp_dyn32_phy32 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 = 202.505699 -The maximum resident set size (KB) = 779412 +The total amount of wall time = 198.217770 +The maximum resident set size (KB) = 778076 -Test 108 hrrr_control_decomp_dyn32_phy32 PASS +Test 109 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rap_restart_dyn32_phy32 -Checking test 109 rap_restart_dyn32_phy32 results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/rap_restart_dyn32_phy32 +Checking test 110 rap_restart_dyn32_phy32 results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK @@ -3685,17 +3750,17 @@ Checking test 109 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 266.036643 -The maximum resident set size (KB) = 618336 +The total amount of wall time = 260.651052 +The maximum resident set size (KB) = 619224 -Test 109 rap_restart_dyn32_phy32 PASS +Test 110 rap_restart_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/hrrr_control_restart_dyn32_phy32 -Checking test 110 hrrr_control_restart_dyn32_phy32 results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/hrrr_control_restart_dyn32_phy32 +Checking test 111 hrrr_control_restart_dyn32_phy32 results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210322.180000.coupler.res .........OK @@ -3731,21 +3796,21 @@ Checking test 110 hrrr_control_restart_dyn32_phy32 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 = 173.963943 -The maximum resident set size (KB) = 610188 +The total amount of wall time = 97.582915 +The maximum resident set size (KB) = 610740 -Test 110 hrrr_control_restart_dyn32_phy32 PASS +Test 111 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rap_control_dyn64_phy32 -Checking test 111 rap_control_dyn64_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf009.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf009.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/rap_control_dyn64_phy32 +Checking test 112 rap_control_dyn64_phy32 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 @@ -3785,116 +3850,116 @@ Checking test 111 rap_control_dyn64_phy32 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 = 290.869216 -The maximum resident set size (KB) = 799628 +The total amount of wall time = 236.832942 +The maximum resident set size (KB) = 797592 -Test 111 rap_control_dyn64_phy32 PASS +Test 112 rap_control_dyn64_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rap_control_debug_dyn32_phy32 -Checking test 112 rap_control_debug_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/rap_control_debug_dyn32_phy32 +Checking test 113 rap_control_debug_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 321.842225 -The maximum resident set size (KB) = 942124 +The total amount of wall time = 293.227110 +The maximum resident set size (KB) = 943020 -Test 112 rap_control_debug_dyn32_phy32 PASS +Test 113 rap_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/hrrr_control_debug_dyn32_phy32 -Checking test 113 hrrr_control_debug_dyn32_phy32 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/hrrr_control_debug_dyn32_phy32 +Checking test 114 hrrr_control_debug_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 334.942000 -The maximum resident set size (KB) = 941068 +The total amount of wall time = 288.291112 +The maximum resident set size (KB) = 942104 -Test 113 hrrr_control_debug_dyn32_phy32 PASS +Test 114 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/rap_control_dyn64_phy32_debug -Checking test 114 rap_control_dyn64_phy32_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/rap_control_dyn64_phy32_debug +Checking test 115 rap_control_dyn64_phy32_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 382.997427 -The maximum resident set size (KB) = 964388 +The total amount of wall time = 301.473775 +The maximum resident set size (KB) = 961688 -Test 114 rap_control_dyn64_phy32_debug PASS +Test 115 rap_control_dyn64_phy32_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/hafs_regional_atm -Checking test 115 hafs_regional_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/hafs_regional_atm +Checking test 116 hafs_regional_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 318.643347 -The maximum resident set size (KB) = 820140 +The total amount of wall time = 277.873298 +The maximum resident set size (KB) = 825016 -Test 115 hafs_regional_atm PASS +Test 116 hafs_regional_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/hafs_regional_atm_thompson_gfdlsf -Checking test 116 hafs_regional_atm_thompson_gfdlsf results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/hafs_regional_atm_thompson_gfdlsf +Checking test 117 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 414.450617 -The maximum resident set size (KB) = 1174032 +The total amount of wall time = 326.982800 +The maximum resident set size (KB) = 1176368 -Test 116 hafs_regional_atm_thompson_gfdlsf PASS +Test 117 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/hafs_regional_atm_ocn -Checking test 117 hafs_regional_atm_ocn results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/hafs_regional_atm_ocn +Checking test 118 hafs_regional_atm_ocn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK Comparing archs.2019_241_06.a .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 414.121244 -The maximum resident set size (KB) = 856284 +The total amount of wall time = 399.416959 +The maximum resident set size (KB) = 858960 -Test 117 hafs_regional_atm_ocn PASS +Test 118 hafs_regional_atm_ocn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/hafs_regional_atm_wav -Checking test 118 hafs_regional_atm_wav results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_atm_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/hafs_regional_atm_wav +Checking test 119 hafs_regional_atm_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 738.052457 -The maximum resident set size (KB) = 884928 +The total amount of wall time = 717.648857 +The maximum resident set size (KB) = 887676 -Test 118 hafs_regional_atm_wav PASS +Test 119 hafs_regional_atm_wav PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/hafs_regional_atm_ocn_wav -Checking test 119 hafs_regional_atm_ocn_wav results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/hafs_regional_atm_ocn_wav +Checking test 120 hafs_regional_atm_ocn_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK Comparing archs.2019_241_06.a .........OK Comparing out_grd.ww3 .........OK @@ -3902,176 +3967,176 @@ Checking test 119 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 918.749197 -The maximum resident set size (KB) = 914128 +The total amount of wall time = 911.891362 +The maximum resident set size (KB) = 914916 -Test 119 hafs_regional_atm_ocn_wav PASS +Test 120 hafs_regional_atm_ocn_wav PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/hafs_regional_1nest_atm -Checking test 120 hafs_regional_1nest_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/hafs_regional_1nest_atm +Checking test 121 hafs_regional_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 457.392533 -The maximum resident set size (KB) = 393452 +The total amount of wall time = 331.919854 +The maximum resident set size (KB) = 393376 -Test 120 hafs_regional_1nest_atm PASS +Test 121 hafs_regional_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/hafs_regional_telescopic_2nests_atm -Checking test 121 hafs_regional_telescopic_2nests_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK - Comparing atm.nest03.f006.nc ............ALT CHECK......OK - Comparing sfc.nest03.f006.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/hafs_regional_telescopic_2nests_atm +Checking test 122 hafs_regional_telescopic_2nests_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing atm.nest03.f006.nc .........OK + Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 551.461638 -The maximum resident set size (KB) = 401040 +The total amount of wall time = 407.095373 +The maximum resident set size (KB) = 399928 -Test 121 hafs_regional_telescopic_2nests_atm PASS +Test 122 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/hafs_global_1nest_atm -Checking test 122 hafs_global_1nest_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_global_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/hafs_global_1nest_atm +Checking test 123 hafs_global_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 323.475691 -The maximum resident set size (KB) = 287176 +The total amount of wall time = 173.994352 +The maximum resident set size (KB) = 289456 -Test 122 hafs_global_1nest_atm PASS +Test 123 hafs_global_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_multiple_4nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/hafs_global_multiple_4nests_atm -Checking test 123 hafs_global_multiple_4nests_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK - Comparing atm.nest03.f006.nc ............ALT CHECK......OK - Comparing sfc.nest03.f006.nc ............ALT CHECK......OK - Comparing atm.nest04.f006.nc ............ALT CHECK......OK - Comparing sfc.nest04.f006.nc ............ALT CHECK......OK - Comparing atm.nest05.f006.nc ............ALT CHECK......OK - Comparing sfc.nest05.f006.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_global_multiple_4nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/hafs_global_multiple_4nests_atm +Checking test 124 hafs_global_multiple_4nests_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing atm.nest03.f006.nc .........OK + Comparing sfc.nest03.f006.nc .........OK + Comparing atm.nest04.f006.nc .........OK + Comparing sfc.nest04.f006.nc .........OK + Comparing atm.nest05.f006.nc .........OK + Comparing sfc.nest05.f006.nc .........OK Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK Comparing HURPRS.GrbF06.nest03 .........OK Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -The total amount of wall time = 529.672172 -The maximum resident set size (KB) = 345676 +The total amount of wall time = 491.399102 +The maximum resident set size (KB) = 346988 -Test 123 hafs_global_multiple_4nests_atm PASS +Test 124 hafs_global_multiple_4nests_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/hafs_regional_specified_moving_1nest_atm -Checking test 124 hafs_regional_specified_moving_1nest_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/hafs_regional_specified_moving_1nest_atm +Checking test 125 hafs_regional_specified_moving_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 250.297976 -The maximum resident set size (KB) = 405156 +The total amount of wall time = 219.746341 +The maximum resident set size (KB) = 415052 -Test 124 hafs_regional_specified_moving_1nest_atm PASS +Test 125 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/hafs_regional_storm_following_1nest_atm -Checking test 125 hafs_regional_storm_following_1nest_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/hafs_regional_storm_following_1nest_atm +Checking test 126 hafs_regional_storm_following_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 221.601086 -The maximum resident set size (KB) = 404732 +The total amount of wall time = 208.225837 +The maximum resident set size (KB) = 407428 -Test 125 hafs_regional_storm_following_1nest_atm PASS +Test 126 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/hafs_regional_storm_following_1nest_atm_ocn -Checking test 126 hafs_regional_storm_following_1nest_atm_ocn results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/hafs_regional_storm_following_1nest_atm_ocn +Checking test 127 hafs_regional_storm_following_1nest_atm_ocn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 284.775445 -The maximum resident set size (KB) = 466660 +The total amount of wall time = 254.161566 +The maximum resident set size (KB) = 469588 -Test 126 hafs_regional_storm_following_1nest_atm_ocn PASS +Test 127 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/hafs_global_storm_following_1nest_atm -Checking test 127 hafs_global_storm_following_1nest_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_global_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/hafs_global_storm_following_1nest_atm +Checking test 128 hafs_global_storm_following_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 221.585334 -The maximum resident set size (KB) = 282304 +The total amount of wall time = 86.136793 +The maximum resident set size (KB) = 289116 -Test 127 hafs_global_storm_following_1nest_atm PASS +Test 128 hafs_global_storm_following_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/hafs_regional_storm_following_1nest_atm_ocn_debug -Checking test 128 hafs_regional_storm_following_1nest_atm_ocn_debug results .... - Comparing atmf001.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atm.nest02.f001.nc ............ALT CHECK......OK - Comparing sfc.nest02.f001.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/hafs_regional_storm_following_1nest_atm_ocn_debug +Checking test 129 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 901.392430 -The maximum resident set size (KB) = 502576 +The total amount of wall time = 816.250653 +The maximum resident set size (KB) = 495800 -Test 128 hafs_regional_storm_following_1nest_atm_ocn_debug PASS +Test 129 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/hafs_regional_storm_following_1nest_atm_ocn_wav -Checking test 129 hafs_regional_storm_following_1nest_atm_ocn_wav results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 130 hafs_regional_storm_following_1nest_atm_ocn_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -The total amount of wall time = 515.695100 -The maximum resident set size (KB) = 522384 +The total amount of wall time = 512.772628 +The maximum resident set size (KB) = 526004 -Test 129 hafs_regional_storm_following_1nest_atm_ocn_wav PASS +Test 130 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_p8_atmlnd_sbs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/control_p8_atmlnd_sbs -Checking test 130 control_p8_atmlnd_sbs results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8_atmlnd_sbs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/control_p8_atmlnd_sbs +Checking test 131 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -4155,19 +4220,19 @@ Checking test 130 control_p8_atmlnd_sbs 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 = 252.162892 -The maximum resident set size (KB) = 1543304 +The total amount of wall time = 239.726233 +The maximum resident set size (KB) = 1542172 -Test 130 control_p8_atmlnd_sbs PASS +Test 131 control_p8_atmlnd_sbs PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/atmaero_control_p8 -Checking test 131 atmaero_control_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/atmaero_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/atmaero_control_p8 +Checking test 132 atmaero_control_p8 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 @@ -4206,19 +4271,19 @@ Checking test 131 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 257.052188 -The maximum resident set size (KB) = 2812092 +The total amount of wall time = 252.249460 +The maximum resident set size (KB) = 2818188 -Test 131 atmaero_control_p8 PASS +Test 132 atmaero_control_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8_rad -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/atmaero_control_p8_rad -Checking test 132 atmaero_control_p8_rad results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/atmaero_control_p8_rad +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/atmaero_control_p8_rad +Checking test 133 atmaero_control_p8_rad 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 @@ -4257,19 +4322,19 @@ Checking test 132 atmaero_control_p8_rad results .... 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.320725 -The maximum resident set size (KB) = 2876868 +The total amount of wall time = 290.114600 +The maximum resident set size (KB) = 2878688 -Test 132 atmaero_control_p8_rad PASS +Test 133 atmaero_control_p8_rad PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/atmaero_control_p8_rad_micro -Checking test 133 atmaero_control_p8_rad_micro results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/atmaero_control_p8_rad_micro +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/atmaero_control_p8_rad_micro +Checking test 134 atmaero_control_p8_rad_micro 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 @@ -4308,21 +4373,21 @@ Checking test 133 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 310.459746 -The maximum resident set size (KB) = 2885836 +The total amount of wall time = 292.906212 +The maximum resident set size (KB) = 2886684 -Test 133 atmaero_control_p8_rad_micro PASS +Test 134 atmaero_control_p8_rad_micro PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/regional_atmaq -Checking test 134 regional_atmaq results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf003.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf003.nc ............ALT CHECK......OK - Comparing atmf006.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_atmaq +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/regional_atmaq +Checking test 135 regional_atmaq results .... + Comparing sfcf000.nc .........OK + Comparing sfcf003.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf003.nc .........OK + Comparing atmf006.nc .........OK Comparing RESTART/20190801.180000.coupler.res .........OK Comparing RESTART/20190801.180000.fv_core.res.nc .........OK Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK @@ -4331,19 +4396,19 @@ Checking test 134 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 735.908499 -The maximum resident set size (KB) = 1266256 +The total amount of wall time = 698.761629 +The maximum resident set size (KB) = 1267792 -Test 134 regional_atmaq PASS +Test 135 regional_atmaq PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/regional_atmaq_debug -Checking test 135 regional_atmaq_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_atmaq_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/regional_atmaq_debug +Checking test 136 regional_atmaq_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK Comparing RESTART/20190801.130000.coupler.res .........OK Comparing RESTART/20190801.130000.fv_core.res.nc .........OK Comparing RESTART/20190801.130000.fv_core.res.tile1.nc .........OK @@ -4352,21 +4417,21 @@ Checking test 135 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1375.523275 -The maximum resident set size (KB) = 1298876 +The total amount of wall time = 1320.355462 +The maximum resident set size (KB) = 1299784 -Test 135 regional_atmaq_debug PASS +Test 136 regional_atmaq_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/regional_atmaq_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_241997/regional_atmaq_faster -Checking test 136 regional_atmaq_faster results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf003.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf003.nc ............ALT CHECK......OK - Comparing atmf006.nc ............ALT CHECK......OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_atmaq_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/regional_atmaq_faster +Checking test 137 regional_atmaq_faster results .... + Comparing sfcf000.nc .........OK + Comparing sfcf003.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf003.nc .........OK + Comparing atmf006.nc .........OK Comparing RESTART/20190801.180000.coupler.res .........OK Comparing RESTART/20190801.180000.fv_core.res.nc .........OK Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK @@ -4375,76 +4440,12 @@ Checking test 136 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 683.263580 -The maximum resident set size (KB) = 1258628 - -Test 136 regional_atmaq_faster PASS - -FAILED TESTS: -Test compile_009 failed in run_compile failed - -REGRESSION TEST FAILED -Mon Mar 27 21:00:16 UTC 2023 -Elapsed time: 01h:15m:25s. Have a nice day! -Mon Mar 27 22:49:57 UTC 2023 -Start Regression test - -Compile 001 elapsed time 467 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmg -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178793/control_csawmg -Checking test 001 control_csawmg results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 363.003823 -The maximum resident set size (KB) = 590312 - -Test 001 control_csawmg PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_csawmgt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178793/control_csawmgt -Checking test 002 control_csawmgt results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 355.147428 -The maximum resident set size (KB) = 592048 - -Test 002 control_csawmgt PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230324/INTEL/control_ras -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178793/control_ras -Checking test 003 control_ras results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 190.197532 -The maximum resident set size (KB) = 554772 +The total amount of wall time = 647.905909 +The maximum resident set size (KB) = 1261780 -Test 003 control_ras PASS +Test 137 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Mon Mar 27 23:08:23 UTC 2023 -Elapsed time: 00h:18m:27s. Have a nice day! +Thu Mar 30 17:50:25 UTC 2023 +Elapsed time: 01h:06m:49s. Have a nice day! diff --git a/tests/rt.conf b/tests/rt.conf index 3c2ed4bb763..18cab11153b 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -119,6 +119,9 @@ RUN | rrfs_smoke_conus13km_radar_tten_warm #RUN | rrfs_smoke_conus13km_hrrr_warm_decomp | | | #RUN | rrfs_smoke_conus13km_hrrr_warm_restart | | | rrfs_smoke_conus13km_hrrr_warm +# Just to make sure restart doesn't crash again: +RUN | rrfs_conus13km_hrrr_warm_restart_mismatch | | fv3 | rrfs_conus13km_hrrr_warm + COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp | | fv3 | RUN | control_csawmg | - gaea.intel | fv3 | RUN | control_csawmgt | | fv3 | diff --git a/tests/rt.sh b/tests/rt.sh index 7b88a8d220e..1ca913fde9a 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -446,7 +446,7 @@ if [[ $TESTS_FILE =~ '35d' ]] || [[ $TESTS_FILE =~ 'weekly' ]]; then fi -BL_DATE=20230324 +BL_DATE=20230329 RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-${BL_DATE}/${RT_COMPILER^^}} diff --git a/tests/rt_gnu.conf b/tests/rt_gnu.conf index a0e5bfff583..2ec838b1ab2 100644 --- a/tests/rt_gnu.conf +++ b/tests/rt_gnu.conf @@ -33,6 +33,9 @@ RUN | rrfs_smoke_conus13km_radar_tten_warm #RUN | rrfs_smoke_conus13km_hrrr_warm_decomp | | | #RUN | rrfs_smoke_conus13km_hrrr_warm_restart | | | rrfs_smoke_conus13km_hrrr_warm +# Just to make sure restart doesn't crash again: +RUN | rrfs_conus13km_hrrr_warm_restart_mismatch | | fv3 | rrfs_conus13km_hrrr_warm + ################################################################################################################################################################## # CCPP DEBUG tests # ################################################################################################################################################################## diff --git a/tests/tests/rrfs_conus13km_hrrr_warm_restart_mismatch b/tests/tests/rrfs_conus13km_hrrr_warm_restart_mismatch new file mode 100644 index 00000000000..9c31539088a --- /dev/null +++ b/tests/tests/rrfs_conus13km_hrrr_warm_restart_mismatch @@ -0,0 +1,106 @@ +############################################################################### +# +# HRRR physics on 13km domain, control run +# +############################################################################### + +# This configuration is supposed to match the rrfs_dev1 parallel, so +# do not change the namelist without checking the current parallel. + +export TEST_DESCR="HRRR physics on 13km domain, control run" + +export CNTL_DIR=rrfs_conus13km_hrrr_warm_restart_mismatch + +export LIST_FILES="sfcf002.nc \ + atmf002.nc" + +export_fv3 + +export SYEAR=2021 +export SMONTH=5 +export SDAY=12 +export SHOUR=16 +export FHMAX=2 +export DT_ATMOS=120 +export QUILTING=.true. +export WRITE_GROUP=1 +export WRTTASK_PER_GROUP=6 +export NTILES=1 +export WRITE_DOPOST=.false. +export OUTPUT_HISTORY=.true. +export OUTPUT_GRID=lambert_conformal +export OUTPUT_FILE="'netcdf'" + +export FHROT=1 +export RESTART_FILE_PREFIX=$( printf %04d%02d%02d.%02d0000 $SYEAR $SMONTH $SDAY $(( SHOUR+FHROT )) ) +export RRFS_RESTART=YES + +# Revert these two to GFS_typedefs defaults to avoid a crash: +export SEDI_SEMI=.false. +export DECFL=8 + +export LKM=1 +export SFCLAY_COMPUTE_FLUX=.true. +export IALB=2 +export ICLIQ_SW=2 +export IEMS=2 +export IOVR=3 +export KICE=9 +export LSM=3 +export LSOIL_LSM=9 +export DO_MYNNSFCLAY=.true. +export DO_MYNNEDMF=.true. +export DO_MYJPBL=.true +export HYBEDMF=.false. +export SHAL_CNV=.false. +export DO_SAT_ADJ=.false. +export DO_DEEP=.false. +export CCPP_SUITE='FV3_HRRR' +export INPES=12 +export JNPES=12 +export NPX=397 +export NPY=233 +export NPZ=65 +export MAKE_NH=.false. +export NA_INIT=0 +export DNATS=0 +export EXTERNAL_IC=.false. +export NGGPS_IC=.false. +export MOUNTAIN=.true. +export WARM_START=.true. +export READ_INCREMENT=.false. +export RES_LATLON_DYNAMICS="'fv3_increment.nc'" +export NPZP=66 +export FHZERO=1.0 +export IMP_PHYSICS=8 +export LDIAG3D=.false. +export QDIAG3D=.false. +export PRINT_DIFF_PGR=.true. +export FHCYC=0.0 +export IAER=5111 +export LHEATSTRG=.false. +export RANDOM_CLDS=.false. +export CNVCLD=.false. +export IMFSHALCNV=-1 +export IMFDEEPCNV=-1 +export CDMBWD='3.5,1.0' +export DO_SPPT=.false. +export DO_SHUM=.false. +export DO_SKEB=.false. +export LNDP_TYPE=0 +export N_VAR_LNDP=0 + +export GWD_OPT=3 +export DO_UGWP_V0=.false. +export DO_UGWP_V0_OROG_ONLY=.false. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GSL_DRAG_SS=.true. +export DO_GSL_DRAG_TOFD=.true. +export DO_UGWP_V1=.false. +export DO_UGWP_V1_OROG_ONLY=.false. + +export FV3_RUN=rrfs_warm_run.IN +export INPUT_NML=rrfs_conus13km_hrrr.nml.IN +export FIELD_TABLE=field_table_thompson_aero_tke +export DIAG_TABLE=diag_table_hrrr +export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN From 587ff4f4efe5caa6a9b4d53bd1c5e7b70f561ab4 Mon Sep 17 00:00:00 2001 From: Denise Worthen Date: Mon, 3 Apr 2023 16:53:04 -0400 Subject: [PATCH 15/30] update CMEPS to allow bilinear ATM<->WAV mapping for global coupled application; utilize custom restart names for WW3 (was #1684) (#1692) * set configuration variable true to use non-default restart file names in WW3 * change name of WW3 used for restart tests * change name of WW3 in hafs wav tests * update CMEPS --- CMEPS-interface/CMEPS | 2 +- tests/RegressionTests_acorn.intel.log | 1338 +++++------ tests/RegressionTests_cheyenne.gnu.log | 440 ++-- tests/RegressionTests_cheyenne.intel.log | 1506 ++++++------- tests/RegressionTests_gaea.intel.log | 1739 +++++++++------ tests/RegressionTests_hera.gnu.log | 436 ++-- tests/RegressionTests_hera.intel.log | 1396 ++++++------ tests/RegressionTests_jet.intel.log | 1970 ++++++++++------- tests/RegressionTests_orion.intel.log | 1406 ++++++------ tests/RegressionTests_wcoss2.intel.log | 1158 +++++----- tests/fv3_conf/cpld_control_run.IN | 3 +- tests/parm/nems.configure.cpld.IN | 1 + tests/parm/nems.configure.cpld_esmfthreads.IN | 1 + tests/parm/nems.configure.cpld_noaero.IN | 1 + .../parm/nems.configure.cpld_noaero_outwav.IN | 1 + tests/parm/nems.configure.hafs_atm_ocn_wav.IN | 1 + tests/parm/nems.configure.hafs_atm_wav.IN | 1 + tests/rt.conf | 10 +- tests/rt.sh | 2 +- tests/tests/hafs_regional_atm_ocn_wav | 2 +- tests/tests/hafs_regional_atm_wav | 2 +- 21 files changed, 6042 insertions(+), 5374 deletions(-) diff --git a/CMEPS-interface/CMEPS b/CMEPS-interface/CMEPS index 91bcb847e9e..75fed2b0e1d 160000 --- a/CMEPS-interface/CMEPS +++ b/CMEPS-interface/CMEPS @@ -1 +1 @@ -Subproject commit 91bcb847e9e5cac48f1ed3676cfcb1764c45b51d +Subproject commit 75fed2b0e1d7f81543b62f586aa648f36b290b5a diff --git a/tests/RegressionTests_acorn.intel.log b/tests/RegressionTests_acorn.intel.log index c67ed9f58e2..4bf098ae74a 100644 --- a/tests/RegressionTests_acorn.intel.log +++ b/tests/RegressionTests_acorn.intel.log @@ -1,40 +1,40 @@ -Thu Mar 30 16:30:11 UTC 2023 +Mon Apr 3 14:11:37 UTC 2023 Start Regression test -Compile 001 elapsed time 540 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 1145 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 506 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 478 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 005 elapsed time 477 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 1118 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 1149 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 008 elapsed time 469 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 929 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 010 elapsed time 963 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 602 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 1496 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 1013 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 841 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 1247 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 582 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 335 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 518 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 476 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 020 elapsed time 238 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 021 elapsed time 699 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 022 elapsed time 728 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 023 elapsed time 832 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 024 elapsed time 828 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 113 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 026 elapsed time 1010 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 027 elapsed time 621 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 733 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 775 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 733 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 031 elapsed time 679 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8_mixedmode -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/cpld_control_p8_mixedmode +Compile 001 elapsed time 545 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1030 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 515 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 483 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 005 elapsed time 489 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 641 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 1279 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 986 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 1653 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 010 elapsed time 1084 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 578 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 1700 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 645 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 014 elapsed time 965 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 439 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 499 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 339 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 307 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 485 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 020 elapsed time 810 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 021 elapsed time 733 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 022 elapsed time 658 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 023 elapsed time 345 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 024 elapsed time 317 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 202 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 026 elapsed time 518 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 027 elapsed time 881 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 634 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 445 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 206 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 031 elapsed time 690 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8_mixedmode +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -99,14 +99,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 334.857481 -The maximum resident set size (KB) = 2952384 +The total amount of wall time = 334.997418 +The maximum resident set size (KB) = 2950216 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_gfsv17 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/cpld_control_gfsv17 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_gfsv17 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -170,14 +170,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 258.062343 -The maximum resident set size (KB) = 1584204 +The total amount of wall time = 258.245295 +The maximum resident set size (KB) = 1572760 Test 002 cpld_control_gfsv17 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/cpld_control_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -242,14 +242,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 386.249156 -The maximum resident set size (KB) = 2981544 +The total amount of wall time = 389.078866 +The maximum resident set size (KB) = 2979724 Test 003 cpld_control_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/cpld_restart_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -302,14 +302,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 229.759665 -The maximum resident set size (KB) = 2869976 +The total amount of wall time = 230.014852 +The maximum resident set size (KB) = 2872528 Test 004 cpld_restart_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/cpld_control_qr_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -374,14 +374,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 388.544897 -The maximum resident set size (KB) = 2992456 +The total amount of wall time = 389.988750 +The maximum resident set size (KB) = 2991564 Test 005 cpld_control_qr_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/cpld_restart_qr_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -434,14 +434,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 233.164657 -The maximum resident set size (KB) = 2883540 +The total amount of wall time = 233.661648 +The maximum resident set size (KB) = 2881836 Test 006 cpld_restart_qr_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/cpld_2threads_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -494,14 +494,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 366.410096 -The maximum resident set size (KB) = 3282632 +The total amount of wall time = 367.455681 +The maximum resident set size (KB) = 3286572 Test 007 cpld_2threads_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/cpld_decomp_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -554,14 +554,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 380.683828 -The maximum resident set size (KB) = 2976980 +The total amount of wall time = 381.271551 +The maximum resident set size (KB) = 2976824 Test 008 cpld_decomp_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/cpld_mpi_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -614,14 +614,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 320.058680 -The maximum resident set size (KB) = 2905624 +The total amount of wall time = 317.288158 +The maximum resident set size (KB) = 2909716 Test 009 cpld_mpi_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_ciceC_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/cpld_control_ciceC_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_ciceC_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -686,14 +686,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 388.822031 -The maximum resident set size (KB) = 2977196 +The total amount of wall time = 386.900317 +The maximum resident set size (KB) = 2981428 Test 010 cpld_control_ciceC_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/cpld_control_noaero_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/cpld_control_noaero_p8 Checking test 011 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -757,14 +757,14 @@ Checking test 011 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 285.247233 -The maximum resident set size (KB) = 1572740 +The total amount of wall time = 285.504284 +The maximum resident set size (KB) = 1570096 Test 011 cpld_control_noaero_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/cpld_control_nowave_noaero_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_c96_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/cpld_control_nowave_noaero_p8 Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -826,14 +826,14 @@ Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 301.398946 -The maximum resident set size (KB) = 1629412 +The total amount of wall time = 302.585115 +The maximum resident set size (KB) = 1627832 Test 012 cpld_control_nowave_noaero_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/cpld_control_noaero_p8_agrid +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_noaero_p8_agrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/cpld_control_noaero_p8_agrid Checking test 013 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -895,14 +895,14 @@ Checking test 013 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 307.206615 -The maximum resident set size (KB) = 1625656 +The total amount of wall time = 308.722129 +The maximum resident set size (KB) = 1619428 Test 013 cpld_control_noaero_p8_agrid PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/cpld_control_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/cpld_control_c48 Checking test 014 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -952,14 +952,14 @@ Checking test 014 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 436.771122 -The maximum resident set size (KB) = 2637152 +The total amount of wall time = 436.419764 +The maximum resident set size (KB) = 2636152 Test 014 cpld_control_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/cpld_warmstart_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/cpld_warmstart_c48 Checking test 015 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1009,14 +1009,14 @@ Checking test 015 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 124.640036 -The maximum resident set size (KB) = 2649036 +The total amount of wall time = 124.706287 +The maximum resident set size (KB) = 2650428 Test 015 cpld_warmstart_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/cpld_restart_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/cpld_restart_c48 Checking test 016 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1066,14 +1066,14 @@ Checking test 016 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 68.635311 -The maximum resident set size (KB) = 2072348 +The total amount of wall time = 68.763579 +The maximum resident set size (KB) = 2067608 Test 016 cpld_restart_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/cpld_control_p8_faster +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/cpld_control_p8_faster Checking test 017 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1138,14 +1138,14 @@ Checking test 017 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 379.236270 -The maximum resident set size (KB) = 2978508 +The total amount of wall time = 380.296637 +The maximum resident set size (KB) = 2980856 Test 017 cpld_control_p8_faster PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_CubedSphereGrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_CubedSphereGrid +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_CubedSphereGrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_CubedSphereGrid Checking test 018 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1172,14 +1172,14 @@ Checking test 018 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 129.718674 -The maximum resident set size (KB) = 514168 +The total amount of wall time = 128.962422 +The maximum resident set size (KB) = 510792 Test 018 control_CubedSphereGrid PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_latlon -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_latlon +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_latlon +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_latlon Checking test 019 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1190,14 +1190,14 @@ Checking test 019 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 132.115280 -The maximum resident set size (KB) = 512288 +The total amount of wall time = 132.852461 +The maximum resident set size (KB) = 512444 Test 019 control_latlon PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_wrtGauss_netcdf_parallel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_wrtGauss_netcdf_parallel Checking test 020 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1208,14 +1208,14 @@ Checking test 020 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.235533 -The maximum resident set size (KB) = 512584 +The total amount of wall time = 135.060205 +The maximum resident set size (KB) = 514108 Test 020 control_wrtGauss_netcdf_parallel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_c48 Checking test 021 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1254,14 +1254,14 @@ Checking test 021 control_c48 results .... 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.875740 -The maximum resident set size (KB) = 672264 +The total amount of wall time = 329.615353 +The maximum resident set size (KB) = 671968 Test 021 control_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_c192 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_c192 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c192 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_c192 Checking test 022 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1272,14 +1272,14 @@ Checking test 022 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 532.415732 -The maximum resident set size (KB) = 611696 +The total amount of wall time = 529.666174 +The maximum resident set size (KB) = 612996 Test 022 control_c192 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_c384 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_c384 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c384 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_c384 Checking test 023 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1290,14 +1290,14 @@ Checking test 023 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 564.604373 -The maximum resident set size (KB) = 923992 +The total amount of wall time = 570.789389 +The maximum resident set size (KB) = 920112 Test 023 control_c384 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_c384gdas -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_c384gdas +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c384gdas +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_c384gdas Checking test 024 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1340,14 +1340,14 @@ Checking test 024 control_c384gdas 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 = 499.403760 -The maximum resident set size (KB) = 1058068 +The total amount of wall time = 498.555712 +The maximum resident set size (KB) = 1052744 Test 024 control_c384gdas PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_stochy +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_stochy Checking test 025 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1358,28 +1358,28 @@ Checking test 025 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 89.816807 -The maximum resident set size (KB) = 519784 +The total amount of wall time = 88.996307 +The maximum resident set size (KB) = 516676 Test 025 control_stochy PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_stochy_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_stochy_restart Checking test 026 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 48.770607 -The maximum resident set size (KB) = 286736 +The total amount of wall time = 48.852568 +The maximum resident set size (KB) = 285428 Test 026 control_stochy_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_lndp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_lndp Checking test 027 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1390,14 +1390,14 @@ Checking test 027 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 82.773124 -The maximum resident set size (KB) = 517012 +The total amount of wall time = 83.286444 +The maximum resident set size (KB) = 515108 Test 027 control_lndp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_iovr4 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_iovr4 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_iovr4 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_iovr4 Checking test 028 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1412,14 +1412,14 @@ Checking test 028 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 137.773244 -The maximum resident set size (KB) = 512544 +The total amount of wall time = 135.136668 +The maximum resident set size (KB) = 516700 Test 028 control_iovr4 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_iovr5 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_iovr5 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_iovr5 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_iovr5 Checking test 029 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1434,14 +1434,14 @@ Checking test 029 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 136.194817 -The maximum resident set size (KB) = 512060 +The total amount of wall time = 135.587184 +The maximum resident set size (KB) = 512248 Test 029 control_iovr5 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_p8 Checking test 030 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1488,14 +1488,14 @@ Checking test 030 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 180.375833 -The maximum resident set size (KB) = 1482300 +The total amount of wall time = 179.324120 +The maximum resident set size (KB) = 1488188 Test 030 control_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_restart_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_restart_p8 Checking test 031 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1534,14 +1534,14 @@ Checking test 031 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 99.768035 -The maximum resident set size (KB) = 654308 +The total amount of wall time = 99.231967 +The maximum resident set size (KB) = 653208 Test 031 control_restart_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_qr_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_qr_p8 Checking test 032 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1588,14 +1588,14 @@ Checking test 032 control_qr_p8 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 = 177.107372 -The maximum resident set size (KB) = 1491568 +The total amount of wall time = 177.184892 +The maximum resident set size (KB) = 1496100 Test 032 control_qr_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_restart_qr_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_restart_qr_p8 Checking test 033 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1634,14 +1634,14 @@ Checking test 033 control_restart_qr_p8 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 = 100.602764 -The maximum resident set size (KB) = 668548 +The total amount of wall time = 99.459581 +The maximum resident set size (KB) = 665780 Test 033 control_restart_qr_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_decomp_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_decomp_p8 Checking test 034 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1684,14 +1684,14 @@ Checking test 034 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 181.969260 -The maximum resident set size (KB) = 1477968 +The total amount of wall time = 181.698247 +The maximum resident set size (KB) = 1479696 Test 034 control_decomp_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_2threads_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_2threads_p8 Checking test 035 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1734,14 +1734,14 @@ Checking test 035 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 155.737008 -The maximum resident set size (KB) = 1568284 +The total amount of wall time = 157.061251 +The maximum resident set size (KB) = 1570732 Test 035 control_2threads_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_p8_lndp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_p8_lndp Checking test 036 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1760,14 +1760,14 @@ Checking test 036 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 321.949084 -The maximum resident set size (KB) = 1483716 +The total amount of wall time = 323.117434 +The maximum resident set size (KB) = 1480048 Test 036 control_p8_lndp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8_rrtmgp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_p8_rrtmgp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_rrtmgp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_p8_rrtmgp Checking test 037 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1814,14 +1814,14 @@ Checking test 037 control_p8_rrtmgp results .... 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.873279 -The maximum resident set size (KB) = 1541776 +The total amount of wall time = 234.440864 +The maximum resident set size (KB) = 1546200 Test 037 control_p8_rrtmgp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8_mynn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_p8_mynn +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_mynn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_p8_mynn Checking test 038 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1868,14 +1868,14 @@ Checking test 038 control_p8_mynn results .... 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.545186 -The maximum resident set size (KB) = 1483216 +The total amount of wall time = 180.856866 +The maximum resident set size (KB) = 1484984 Test 038 control_p8_mynn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/merra2_thompson -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/merra2_thompson +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/merra2_thompson +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/merra2_thompson Checking test 039 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1922,14 +1922,14 @@ Checking test 039 merra2_thompson results .... 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.479908 -The maximum resident set size (KB) = 1491796 +The total amount of wall time = 203.857891 +The maximum resident set size (KB) = 1491196 Test 039 merra2_thompson PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/regional_control +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/regional_control Checking test 040 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1940,28 +1940,28 @@ Checking test 040 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 291.701614 -The maximum resident set size (KB) = 649812 +The total amount of wall time = 287.056637 +The maximum resident set size (KB) = 655392 Test 040 regional_control PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/regional_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/regional_restart Checking test 041 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 156.262318 -The maximum resident set size (KB) = 651436 +The total amount of wall time = 155.769247 +The maximum resident set size (KB) = 649256 Test 041 regional_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/regional_control_qr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/regional_control_qr Checking test 042 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1972,28 +1972,28 @@ Checking test 042 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 287.441524 -The maximum resident set size (KB) = 649844 +The total amount of wall time = 288.589544 +The maximum resident set size (KB) = 655480 Test 042 regional_control_qr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/regional_restart_qr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/regional_restart_qr Checking test 043 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 156.995151 -The maximum resident set size (KB) = 651132 +The total amount of wall time = 155.717368 +The maximum resident set size (KB) = 650632 Test 043 regional_restart_qr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/regional_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/regional_decomp Checking test 044 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2004,14 +2004,14 @@ Checking test 044 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 301.601919 -The maximum resident set size (KB) = 649708 +The total amount of wall time = 303.580505 +The maximum resident set size (KB) = 651052 Test 044 regional_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/regional_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/regional_2threads Checking test 045 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2022,14 +2022,14 @@ Checking test 045 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 176.114563 -The maximum resident set size (KB) = 696060 +The total amount of wall time = 176.883901 +The maximum resident set size (KB) = 695036 Test 045 regional_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_noquilt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/regional_noquilt +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_noquilt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/regional_noquilt Checking test 046 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2037,14 +2037,14 @@ Checking test 046 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 313.537090 -The maximum resident set size (KB) = 643064 +The total amount of wall time = 313.813434 +The maximum resident set size (KB) = 644268 Test 046 regional_noquilt PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/regional_2dwrtdecomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/regional_2dwrtdecomp Checking test 047 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2055,14 +2055,14 @@ Checking test 047 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 287.503661 -The maximum resident set size (KB) = 648784 +The total amount of wall time = 287.184737 +The maximum resident set size (KB) = 649956 Test 047 regional_2dwrtdecomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/fv3_regional_wofs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/regional_wofs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/fv3_regional_wofs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/regional_wofs Checking test 048 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2073,14 +2073,14 @@ Checking test 048 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 361.643572 -The maximum resident set size (KB) = 340428 +The total amount of wall time = 363.612919 +The maximum resident set size (KB) = 338876 Test 048 regional_wofs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_ifi_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/regional_ifi_control +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_ifi_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/regional_ifi_control Checking test 049 regional_ifi_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2091,14 +2091,14 @@ Checking test 049 regional_ifi_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 324.581266 -The maximum resident set size (KB) = 653448 +The total amount of wall time = 322.114132 +The maximum resident set size (KB) = 649716 Test 049 regional_ifi_control PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_ifi_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/regional_ifi_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_ifi_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/regional_ifi_decomp Checking test 050 regional_ifi_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2109,14 +2109,14 @@ Checking test 050 regional_ifi_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 338.858598 -The maximum resident set size (KB) = 649716 +The total amount of wall time = 337.344053 +The maximum resident set size (KB) = 653288 Test 050 regional_ifi_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_ifi_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/regional_ifi_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_ifi_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/regional_ifi_2threads Checking test 051 regional_ifi_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2127,14 +2127,14 @@ Checking test 051 regional_ifi_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 197.820279 -The maximum resident set size (KB) = 694896 +The total amount of wall time = 201.223607 +The maximum resident set size (KB) = 696512 Test 051 regional_ifi_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/rap_control +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/rap_control Checking test 052 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2181,14 +2181,14 @@ Checking test 052 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 419.534701 -The maximum resident set size (KB) = 892140 +The total amount of wall time = 420.578529 +The maximum resident set size (KB) = 891920 Test 052 rap_control PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/regional_spp_sppt_shum_skeb +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_spp_sppt_shum_skeb +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/regional_spp_sppt_shum_skeb Checking test 053 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2199,14 +2199,14 @@ Checking test 053 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 243.950318 -The maximum resident set size (KB) = 989036 +The total amount of wall time = 242.079317 +The maximum resident set size (KB) = 987840 Test 053 regional_spp_sppt_shum_skeb PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/rap_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/rap_decomp Checking test 054 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2253,14 +2253,14 @@ Checking test 054 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 433.139718 -The maximum resident set size (KB) = 892296 +The total amount of wall time = 432.433369 +The maximum resident set size (KB) = 891144 Test 054 rap_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/rap_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/rap_2threads Checking test 055 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2307,14 +2307,14 @@ Checking test 055 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 387.732275 -The maximum resident set size (KB) = 963116 +The total amount of wall time = 387.696421 +The maximum resident set size (KB) = 962844 Test 055 rap_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/rap_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/rap_restart Checking test 056 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2353,14 +2353,14 @@ Checking test 056 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 211.713198 -The maximum resident set size (KB) = 644548 +The total amount of wall time = 212.608949 +The maximum resident set size (KB) = 644708 Test 056 rap_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/rap_sfcdiff +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/rap_sfcdiff Checking test 057 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2407,14 +2407,14 @@ Checking test 057 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 422.674965 -The maximum resident set size (KB) = 888728 +The total amount of wall time = 421.322643 +The maximum resident set size (KB) = 891792 Test 057 rap_sfcdiff PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/rap_sfcdiff_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/rap_sfcdiff_decomp Checking test 058 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2461,14 +2461,14 @@ Checking test 058 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 441.195515 -The maximum resident set size (KB) = 892408 +The total amount of wall time = 439.239442 +The maximum resident set size (KB) = 893800 Test 058 rap_sfcdiff_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/rap_sfcdiff_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/rap_sfcdiff_restart Checking test 059 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2507,14 +2507,14 @@ Checking test 059 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 309.631487 -The maximum resident set size (KB) = 644836 +The total amount of wall time = 310.691963 +The maximum resident set size (KB) = 638500 Test 059 rap_sfcdiff_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/hrrr_control +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/hrrr_control Checking test 060 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2561,14 +2561,14 @@ Checking test 060 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 409.065281 -The maximum resident set size (KB) = 891756 +The total amount of wall time = 406.087817 +The maximum resident set size (KB) = 885856 Test 060 hrrr_control PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/hrrr_control_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/hrrr_control_decomp Checking test 061 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2615,14 +2615,14 @@ Checking test 061 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 420.455554 -The maximum resident set size (KB) = 887380 +The total amount of wall time = 420.283746 +The maximum resident set size (KB) = 888804 Test 061 hrrr_control_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/hrrr_control_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/hrrr_control_2threads Checking test 062 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2669,14 +2669,14 @@ Checking test 062 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 375.112474 -The maximum resident set size (KB) = 959364 +The total amount of wall time = 372.711939 +The maximum resident set size (KB) = 961928 Test 062 hrrr_control_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/hrrr_control_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/hrrr_control_restart Checking test 063 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2715,14 +2715,14 @@ Checking test 063 hrrr_control_restart results .... 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.225091 -The maximum resident set size (KB) = 638820 +The total amount of wall time = 297.979299 +The maximum resident set size (KB) = 638300 Test 063 hrrr_control_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_v1beta -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/rrfs_v1beta +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1beta +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/rrfs_v1beta Checking test 064 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2769,14 +2769,14 @@ Checking test 064 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 419.801716 -The maximum resident set size (KB) = 889088 +The total amount of wall time = 417.492995 +The maximum resident set size (KB) = 885352 Test 064 rrfs_v1beta PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_v1nssl -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/rrfs_v1nssl +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1nssl +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/rrfs_v1nssl Checking test 065 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2791,14 +2791,14 @@ Checking test 065 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 484.341531 -The maximum resident set size (KB) = 572312 +The total amount of wall time = 483.886093 +The maximum resident set size (KB) = 573224 Test 065 rrfs_v1nssl PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/rrfs_v1nssl_nohailnoccn +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/rrfs_v1nssl_nohailnoccn Checking test 066 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2813,14 +2813,14 @@ Checking test 066 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 473.307993 -The maximum resident set size (KB) = 567132 +The total amount of wall time = 471.577785 +The maximum resident set size (KB) = 567096 Test 066 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/rrfs_smoke_conus13km_hrrr_warm Checking test 067 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2829,14 +2829,14 @@ Checking test 067 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 145.538792 -The maximum resident set size (KB) = 799084 +The total amount of wall time = 146.687543 +The maximum resident set size (KB) = 799496 Test 067 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 068 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2845,14 +2845,14 @@ Checking test 068 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 101.833884 -The maximum resident set size (KB) = 806260 +The total amount of wall time = 102.202141 +The maximum resident set size (KB) = 798424 Test 068 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/rrfs_conus13km_hrrr_warm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/rrfs_conus13km_hrrr_warm Checking test 069 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2861,14 +2861,14 @@ Checking test 069 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 131.879348 -The maximum resident set size (KB) = 778944 +The total amount of wall time = 132.770658 +The maximum resident set size (KB) = 775176 Test 069 rrfs_conus13km_hrrr_warm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/rrfs_smoke_conus13km_radar_tten_warm Checking test 070 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2877,26 +2877,26 @@ Checking test 070 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 146.667978 -The maximum resident set size (KB) = 801536 +The total amount of wall time = 145.709856 +The maximum resident set size (KB) = 802656 Test 070 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 071 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 67.151335 -The maximum resident set size (KB) = 758948 +The total amount of wall time = 67.361418 +The maximum resident set size (KB) = 756312 Test 071 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_csawmg -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_csawmg +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmg +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_csawmg Checking test 072 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2907,14 +2907,14 @@ Checking test 072 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 349.327691 -The maximum resident set size (KB) = 581916 +The total amount of wall time = 348.031304 +The maximum resident set size (KB) = 581556 Test 072 control_csawmg PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_csawmgt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_csawmgt +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmgt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_csawmgt Checking test 073 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2925,14 +2925,14 @@ Checking test 073 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 345.535243 -The maximum resident set size (KB) = 581696 +The total amount of wall time = 344.405784 +The maximum resident set size (KB) = 582556 Test 073 control_csawmgt PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_ras -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_ras +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_ras +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_ras Checking test 074 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2943,26 +2943,26 @@ Checking test 074 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 181.898879 -The maximum resident set size (KB) = 550952 +The total amount of wall time = 183.828599 +The maximum resident set size (KB) = 547252 Test 074 control_ras PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_wam -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_wam +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wam +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_wam Checking test 075 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 117.433340 -The maximum resident set size (KB) = 272084 +The total amount of wall time = 117.698833 +The maximum resident set size (KB) = 269300 Test 075 control_wam PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_p8_faster +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_p8_faster Checking test 076 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3009,14 +3009,14 @@ Checking test 076 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 174.139197 -The maximum resident set size (KB) = 1491308 +The total amount of wall time = 173.616392 +The maximum resident set size (KB) = 1488000 Test 076 control_p8_faster PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/regional_control_faster +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/regional_control_faster Checking test 077 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3027,56 +3027,56 @@ Checking test 077 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 282.502072 -The maximum resident set size (KB) = 655072 +The total amount of wall time = 280.485488 +The maximum resident set size (KB) = 655124 Test 077 regional_control_faster PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 078 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 903.690717 -The maximum resident set size (KB) = 827732 +The total amount of wall time = 903.232871 +The maximum resident set size (KB) = 831628 Test 078 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 079 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 522.587870 -The maximum resident set size (KB) = 830464 +The total amount of wall time = 522.874540 +The maximum resident set size (KB) = 828024 Test 079 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/rrfs_conus13km_hrrr_warm_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/rrfs_conus13km_hrrr_warm_debug Checking test 080 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 810.582302 -The maximum resident set size (KB) = 807728 +The total amount of wall time = 818.307147 +The maximum resident set size (KB) = 807100 Test 080 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_CubedSphereGrid_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_CubedSphereGrid_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_CubedSphereGrid_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_CubedSphereGrid_debug Checking test 081 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3103,334 +3103,334 @@ Checking test 081 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 167.983080 -The maximum resident set size (KB) = 675100 +The total amount of wall time = 168.596532 +The maximum resident set size (KB) = 673536 Test 081 control_CubedSphereGrid_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_wrtGauss_netcdf_parallel_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_wrtGauss_netcdf_parallel_debug Checking test 082 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 159.652080 -The maximum resident set size (KB) = 676204 +The total amount of wall time = 160.618247 +The maximum resident set size (KB) = 678448 Test 082 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_stochy_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_stochy_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_stochy_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_stochy_debug Checking test 083 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 180.810189 -The maximum resident set size (KB) = 682952 +The total amount of wall time = 181.205984 +The maximum resident set size (KB) = 682964 Test 083 control_stochy_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_lndp_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_lndp_debug Checking test 084 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 162.221115 -The maximum resident set size (KB) = 681732 +The total amount of wall time = 162.341363 +The maximum resident set size (KB) = 689048 Test 084 control_lndp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_csawmg_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_csawmg_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmg_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_csawmg_debug Checking test 085 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 258.281925 -The maximum resident set size (KB) = 715676 +The total amount of wall time = 255.664539 +The maximum resident set size (KB) = 721168 Test 085 control_csawmg_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_csawmgt_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_csawmgt_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmgt_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_csawmgt_debug Checking test 086 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 252.015563 -The maximum resident set size (KB) = 721076 +The total amount of wall time = 251.549383 +The maximum resident set size (KB) = 715532 Test 086 control_csawmgt_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_ras_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_ras_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_ras_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_ras_debug Checking test 087 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 164.495631 -The maximum resident set size (KB) = 691140 +The total amount of wall time = 164.686125 +The maximum resident set size (KB) = 694092 Test 087 control_ras_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_diag_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_diag_debug Checking test 088 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 166.878992 -The maximum resident set size (KB) = 736456 +The total amount of wall time = 164.545711 +The maximum resident set size (KB) = 736108 Test 088 control_diag_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_debug_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_debug_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_debug_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_debug_p8 Checking test 089 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 188.684206 -The maximum resident set size (KB) = 1505888 +The total amount of wall time = 186.658517 +The maximum resident set size (KB) = 1507916 Test 089 control_debug_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/regional_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/regional_debug Checking test 090 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1047.789039 -The maximum resident set size (KB) = 676624 +The total amount of wall time = 1046.512043 +The maximum resident set size (KB) = 673452 Test 090 regional_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/rap_control_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/rap_control_debug Checking test 091 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 301.696075 -The maximum resident set size (KB) = 1052244 +The total amount of wall time = 301.186876 +The maximum resident set size (KB) = 1055180 Test 091 rap_control_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/hrrr_control_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/hrrr_control_debug Checking test 092 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 294.912413 -The maximum resident set size (KB) = 1051052 +The total amount of wall time = 295.342367 +The maximum resident set size (KB) = 1049208 Test 092 hrrr_control_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/rap_unified_drag_suite_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/rap_unified_drag_suite_debug Checking test 093 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.508010 -The maximum resident set size (KB) = 1052844 +The total amount of wall time = 302.219715 +The maximum resident set size (KB) = 1056348 Test 093 rap_unified_drag_suite_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/rap_diag_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/rap_diag_debug Checking test 094 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 311.457665 -The maximum resident set size (KB) = 1135108 +The total amount of wall time = 312.844662 +The maximum resident set size (KB) = 1133696 Test 094 rap_diag_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/rap_cires_ugwp_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/rap_cires_ugwp_debug Checking test 095 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 306.743414 -The maximum resident set size (KB) = 1055128 +The total amount of wall time = 307.100092 +The maximum resident set size (KB) = 1054048 Test 095 rap_cires_ugwp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/rap_unified_ugwp_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/rap_unified_ugwp_debug Checking test 096 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 307.449126 -The maximum resident set size (KB) = 1051844 +The total amount of wall time = 307.888280 +The maximum resident set size (KB) = 1050988 Test 096 rap_unified_ugwp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/rap_lndp_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/rap_lndp_debug Checking test 097 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 303.159254 -The maximum resident set size (KB) = 1057508 +The total amount of wall time = 304.209918 +The maximum resident set size (KB) = 1054704 Test 097 rap_lndp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_flake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/rap_flake_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_flake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/rap_flake_debug Checking test 098 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.878588 -The maximum resident set size (KB) = 1053860 +The total amount of wall time = 302.186605 +The maximum resident set size (KB) = 1053208 Test 098 rap_flake_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_progcld_thompson_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/rap_progcld_thompson_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_progcld_thompson_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/rap_progcld_thompson_debug Checking test 099 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.804469 -The maximum resident set size (KB) = 1053596 +The total amount of wall time = 300.169247 +The maximum resident set size (KB) = 1054584 Test 099 rap_progcld_thompson_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_noah_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/rap_noah_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_noah_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/rap_noah_debug Checking test 100 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 295.609439 -The maximum resident set size (KB) = 1053060 +The total amount of wall time = 294.032419 +The maximum resident set size (KB) = 1046904 Test 100 rap_noah_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_sfcdiff_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/rap_sfcdiff_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/rap_sfcdiff_debug Checking test 101 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 301.315556 -The maximum resident set size (KB) = 1051752 +The total amount of wall time = 300.278755 +The maximum resident set size (KB) = 1053168 Test 101 rap_sfcdiff_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/rap_noah_sfcdiff_cires_ugwp_debug Checking test 102 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 493.995276 -The maximum resident set size (KB) = 1050132 +The total amount of wall time = 491.391589 +The maximum resident set size (KB) = 1049776 Test 102 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_v1beta_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/rrfs_v1beta_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1beta_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/rrfs_v1beta_debug Checking test 103 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 296.124586 -The maximum resident set size (KB) = 1049868 +The total amount of wall time = 296.683001 +The maximum resident set size (KB) = 1048976 Test 103 rrfs_v1beta_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_wam_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_wam_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wam_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_wam_debug Checking test 104 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 298.097363 -The maximum resident set size (KB) = 304904 +The total amount of wall time = 298.807926 +The maximum resident set size (KB) = 303200 Test 104 control_wam_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 105 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3441,14 +3441,14 @@ Checking test 105 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 232.224031 -The maximum resident set size (KB) = 882808 +The total amount of wall time = 232.360262 +The maximum resident set size (KB) = 880264 Test 105 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/rap_control_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/rap_control_dyn32_phy32 Checking test 106 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3495,14 +3495,14 @@ Checking test 106 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 353.961662 -The maximum resident set size (KB) = 772604 +The total amount of wall time = 351.001868 +The maximum resident set size (KB) = 774028 Test 106 rap_control_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/hrrr_control_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/hrrr_control_dyn32_phy32 Checking test 107 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3549,14 +3549,14 @@ Checking test 107 hrrr_control_dyn32_phy32 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 = 188.130422 -The maximum resident set size (KB) = 774048 +The total amount of wall time = 187.008818 +The maximum resident set size (KB) = 772376 Test 107 hrrr_control_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/rap_2threads_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/rap_2threads_dyn32_phy32 Checking test 108 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3603,14 +3603,14 @@ Checking test 108 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 329.056666 -The maximum resident set size (KB) = 826620 +The total amount of wall time = 328.302978 +The maximum resident set size (KB) = 832724 Test 108 rap_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/hrrr_control_2threads_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/hrrr_control_2threads_dyn32_phy32 Checking test 109 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3657,14 +3657,14 @@ Checking test 109 hrrr_control_2threads_dyn32_phy32 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 = 171.911724 -The maximum resident set size (KB) = 824100 +The total amount of wall time = 172.632144 +The maximum resident set size (KB) = 829508 Test 109 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/hrrr_control_decomp_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/hrrr_control_decomp_dyn32_phy32 Checking test 110 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3711,14 +3711,14 @@ Checking test 110 hrrr_control_decomp_dyn32_phy32 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 = 195.245801 -The maximum resident set size (KB) = 771424 +The total amount of wall time = 194.853356 +The maximum resident set size (KB) = 775596 Test 110 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/rap_restart_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/rap_restart_dyn32_phy32 Checking test 111 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3757,14 +3757,14 @@ Checking test 111 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 257.930125 -The maximum resident set size (KB) = 609160 +The total amount of wall time = 259.042549 +The maximum resident set size (KB) = 609204 Test 111 rap_restart_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/hrrr_control_restart_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/hrrr_control_restart_dyn32_phy32 Checking test 112 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3803,14 +3803,14 @@ Checking test 112 hrrr_control_restart_dyn32_phy32 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 = 97.732233 -The maximum resident set size (KB) = 606080 +The total amount of wall time = 97.129661 +The maximum resident set size (KB) = 605132 Test 112 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/rap_control_dyn64_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/rap_control_dyn64_phy32 Checking test 113 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3857,81 +3857,81 @@ Checking test 113 rap_control_dyn64_phy32 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 = 235.527532 -The maximum resident set size (KB) = 791880 +The total amount of wall time = 235.209072 +The maximum resident set size (KB) = 796052 Test 113 rap_control_dyn64_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/rap_control_debug_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/rap_control_debug_dyn32_phy32 Checking test 114 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 291.363014 -The maximum resident set size (KB) = 939400 +The total amount of wall time = 291.463545 +The maximum resident set size (KB) = 937788 Test 114 rap_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/hrrr_control_debug_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/hrrr_control_debug_dyn32_phy32 Checking test 115 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 286.727205 -The maximum resident set size (KB) = 938124 +The total amount of wall time = 286.695883 +The maximum resident set size (KB) = 935264 Test 115 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/rap_control_dyn64_phy32_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/rap_control_dyn64_phy32_debug Checking test 116 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 294.459968 -The maximum resident set size (KB) = 956232 +The total amount of wall time = 293.483945 +The maximum resident set size (KB) = 953660 Test 116 rap_control_dyn64_phy32_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/hafs_regional_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/hafs_regional_atm Checking test 117 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 269.003587 -The maximum resident set size (KB) = 824032 +The total amount of wall time = 268.748425 +The maximum resident set size (KB) = 825160 Test 117 hafs_regional_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/hafs_regional_atm_thompson_gfdlsf +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/hafs_regional_atm_thompson_gfdlsf Checking test 118 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 322.096090 -The maximum resident set size (KB) = 1179168 +The total amount of wall time = 312.883691 +The maximum resident set size (KB) = 1182976 Test 118 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/hafs_regional_atm_ocn +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/hafs_regional_atm_ocn Checking test 119 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3940,30 +3940,30 @@ Checking test 119 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 387.476404 -The maximum resident set size (KB) = 858152 +The total amount of wall time = 385.940568 +The maximum resident set size (KB) = 859996 Test 119 hafs_regional_atm_ocn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_atm_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/hafs_regional_atm_wav +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/hafs_regional_atm_wav Checking test 120 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - Comparing 20190829.060000.restart.ww3 .........OK + Comparing ufs.hafs.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.922067 -The maximum resident set size (KB) = 887356 +The total amount of wall time = 699.782499 +The maximum resident set size (KB) = 887380 Test 120 hafs_regional_atm_wav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/hafs_regional_atm_ocn_wav +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/hafs_regional_atm_ocn_wav Checking test 121 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3971,31 +3971,31 @@ Checking test 121 hafs_regional_atm_ocn_wav results .... Comparing archs.2019_241_06.a .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - Comparing 20190829.060000.restart.ww3 .........OK + Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 892.759235 -The maximum resident set size (KB) = 914132 +The total amount of wall time = 889.920464 +The maximum resident set size (KB) = 913632 Test 121 hafs_regional_atm_ocn_wav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/hafs_regional_1nest_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/hafs_regional_1nest_atm Checking test 122 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 332.415715 -The maximum resident set size (KB) = 398012 +The total amount of wall time = 333.526583 +The maximum resident set size (KB) = 396720 Test 122 hafs_regional_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/hafs_regional_telescopic_2nests_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/hafs_regional_telescopic_2nests_atm Checking test 123 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4004,28 +4004,28 @@ Checking test 123 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 401.733899 -The maximum resident set size (KB) = 400768 +The total amount of wall time = 403.276298 +The maximum resident set size (KB) = 399816 Test 123 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_global_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/hafs_global_1nest_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_global_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/hafs_global_1nest_atm Checking test 124 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 171.487002 -The maximum resident set size (KB) = 264904 +The total amount of wall time = 172.660778 +The maximum resident set size (KB) = 261148 Test 124 hafs_global_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_global_multiple_4nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/hafs_global_multiple_4nests_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_global_multiple_4nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/hafs_global_multiple_4nests_atm Checking test 125 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4043,14 +4043,14 @@ Checking test 125 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -The total amount of wall time = 489.492375 -The maximum resident set size (KB) = 345964 +The total amount of wall time = 492.792493 +The maximum resident set size (KB) = 349868 Test 125 hafs_global_multiple_4nests_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/hafs_regional_specified_moving_1nest_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/hafs_regional_specified_moving_1nest_atm Checking test 126 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4059,28 +4059,28 @@ Checking test 126 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 219.004698 -The maximum resident set size (KB) = 406380 +The total amount of wall time = 220.036329 +The maximum resident set size (KB) = 406284 Test 126 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/hafs_regional_storm_following_1nest_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/hafs_regional_storm_following_1nest_atm Checking test 127 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 206.342762 -The maximum resident set size (KB) = 406512 +The total amount of wall time = 207.760698 +The maximum resident set size (KB) = 406096 Test 127 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/hafs_regional_storm_following_1nest_atm_ocn Checking test 128 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4089,42 +4089,42 @@ Checking test 128 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 253.636364 -The maximum resident set size (KB) = 469476 +The total amount of wall time = 253.817068 +The maximum resident set size (KB) = 470024 Test 128 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/hafs_global_storm_following_1nest_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_global_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/hafs_global_storm_following_1nest_atm Checking test 129 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 84.728648 -The maximum resident set size (KB) = 279308 +The total amount of wall time = 84.990266 +The maximum resident set size (KB) = 289216 Test 129 hafs_global_storm_following_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 130 hafs_regional_storm_following_1nest_atm_ocn_debug results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK -The total amount of wall time = 818.983545 -The maximum resident set size (KB) = 491820 +The total amount of wall time = 811.267023 +The maximum resident set size (KB) = 492308 Test 130 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 131 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4135,14 +4135,14 @@ Checking test 131 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -The total amount of wall time = 504.989922 -The maximum resident set size (KB) = 523564 +The total amount of wall time = 503.573804 +The maximum resident set size (KB) = 525288 Test 131 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_docn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/hafs_regional_docn +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_docn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/hafs_regional_docn Checking test 132 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4150,14 +4150,14 @@ Checking test 132 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 369.718174 -The maximum resident set size (KB) = 861192 +The total amount of wall time = 369.241742 +The maximum resident set size (KB) = 861560 Test 132 hafs_regional_docn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_docn_oisst -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/hafs_regional_docn_oisst +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_docn_oisst +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/hafs_regional_docn_oisst Checking test 133 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4165,131 +4165,131 @@ Checking test 133 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 370.763100 -The maximum resident set size (KB) = 845428 +The total amount of wall time = 370.277897 +The maximum resident set size (KB) = 848344 Test 133 hafs_regional_docn_oisst PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_datm_cdeps -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/hafs_regional_datm_cdeps +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_datm_cdeps +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/hafs_regional_datm_cdeps Checking test 134 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -The total amount of wall time = 949.757393 -The maximum resident set size (KB) = 836876 +The total amount of wall time = 949.494035 +The maximum resident set size (KB) = 834528 Test 134 hafs_regional_datm_cdeps PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/datm_cdeps_control_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/datm_cdeps_control_cfsr Checking test 135 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 140.707284 -The maximum resident set size (KB) = 733604 +The total amount of wall time = 141.365727 +The maximum resident set size (KB) = 731840 Test 135 datm_cdeps_control_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/datm_cdeps_restart_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/datm_cdeps_restart_cfsr Checking test 136 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 85.266054 -The maximum resident set size (KB) = 728032 +The total amount of wall time = 86.002576 +The maximum resident set size (KB) = 727596 Test 136 datm_cdeps_restart_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_control_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/datm_cdeps_control_gefs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/datm_cdeps_control_gefs Checking test 137 datm_cdeps_control_gefs 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.333275 -The maximum resident set size (KB) = 616460 +The total amount of wall time = 134.203688 +The maximum resident set size (KB) = 615624 Test 137 datm_cdeps_control_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_iau_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/datm_cdeps_iau_gefs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_iau_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/datm_cdeps_iau_gefs Checking test 138 datm_cdeps_iau_gefs 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.693984 -The maximum resident set size (KB) = 611220 +The total amount of wall time = 136.835545 +The maximum resident set size (KB) = 613016 Test 138 datm_cdeps_iau_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_stochy_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/datm_cdeps_stochy_gefs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_stochy_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/datm_cdeps_stochy_gefs Checking test 139 datm_cdeps_stochy_gefs 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.769532 -The maximum resident set size (KB) = 613904 +The total amount of wall time = 137.269149 +The maximum resident set size (KB) = 613536 Test 139 datm_cdeps_stochy_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/datm_cdeps_ciceC_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_ciceC_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/datm_cdeps_ciceC_cfsr Checking test 140 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 140.635913 -The maximum resident set size (KB) = 733080 +The total amount of wall time = 141.316413 +The maximum resident set size (KB) = 736464 Test 140 datm_cdeps_ciceC_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/datm_cdeps_bulk_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_bulk_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/datm_cdeps_bulk_cfsr Checking test 141 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 142.186974 -The maximum resident set size (KB) = 736804 +The total amount of wall time = 142.315535 +The maximum resident set size (KB) = 732172 Test 141 datm_cdeps_bulk_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/datm_cdeps_bulk_gefs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_bulk_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/datm_cdeps_bulk_gefs Checking test 142 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 132.698576 -The maximum resident set size (KB) = 619548 +The total amount of wall time = 134.832154 +The maximum resident set size (KB) = 616888 Test 142 datm_cdeps_bulk_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/datm_cdeps_mx025_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_mx025_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/datm_cdeps_mx025_cfsr Checking test 143 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4298,14 +4298,14 @@ Checking test 143 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 429.131284 -The maximum resident set size (KB) = 568972 +The total amount of wall time = 429.467478 +The maximum resident set size (KB) = 568020 Test 143 datm_cdeps_mx025_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/datm_cdeps_mx025_gefs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_mx025_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/datm_cdeps_mx025_gefs Checking test 144 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4314,64 +4314,64 @@ Checking test 144 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 427.039953 -The maximum resident set size (KB) = 549480 +The total amount of wall time = 430.605490 +The maximum resident set size (KB) = 547484 Test 144 datm_cdeps_mx025_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/datm_cdeps_multiple_files_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/datm_cdeps_multiple_files_cfsr Checking test 145 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 140.543146 -The maximum resident set size (KB) = 734884 +The total amount of wall time = 141.358313 +The maximum resident set size (KB) = 734340 Test 145 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/datm_cdeps_3072x1536_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/datm_cdeps_3072x1536_cfsr Checking test 146 datm_cdeps_3072x1536_cfsr 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 = 257.926521 -The maximum resident set size (KB) = 1980852 +The total amount of wall time = 256.775533 +The maximum resident set size (KB) = 1980356 Test 146 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_gfs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/datm_cdeps_gfs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_gfs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/datm_cdeps_gfs Checking test 147 datm_cdeps_gfs 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 = 257.140875 -The maximum resident set size (KB) = 1981628 +The total amount of wall time = 256.459404 +The maximum resident set size (KB) = 1980680 Test 147 datm_cdeps_gfs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_control_cfsr_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/datm_cdeps_control_cfsr_faster +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/datm_cdeps_control_cfsr_faster Checking test 148 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 140.406446 -The maximum resident set size (KB) = 733792 +The total amount of wall time = 141.093547 +The maximum resident set size (KB) = 732832 Test 148 datm_cdeps_control_cfsr_faster PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/datm_cdeps_lnd_gswp3 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/datm_cdeps_lnd_gswp3 Checking test 149 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4380,14 +4380,14 @@ Checking test 149 datm_cdeps_lnd_gswp3 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 = 21.990838 -The maximum resident set size (KB) = 228060 +The total amount of wall time = 22.059304 +The maximum resident set size (KB) = 226840 Test 149 datm_cdeps_lnd_gswp3 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/datm_cdeps_lnd_gswp3_rst +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/datm_cdeps_lnd_gswp3_rst Checking test 150 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4396,14 +4396,14 @@ Checking test 150 datm_cdeps_lnd_gswp3_rst 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.547151 -The maximum resident set size (KB) = 229488 +The total amount of wall time = 27.270256 +The maximum resident set size (KB) = 232468 Test 150 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8_atmlnd_sbs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_p8_atmlnd_sbs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_atmlnd_sbs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_p8_atmlnd_sbs Checking test 151 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4488,14 +4488,14 @@ Checking test 151 control_p8_atmlnd_sbs 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 = 234.562679 -The maximum resident set size (KB) = 1545116 +The total amount of wall time = 234.336783 +The maximum resident set size (KB) = 1540108 Test 151 control_p8_atmlnd_sbs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_atmwav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/control_atmwav +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_atmwav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_atmwav Checking test 152 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4539,14 +4539,14 @@ Checking test 152 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -The total amount of wall time = 91.647649 -The maximum resident set size (KB) = 537712 +The total amount of wall time = 91.504838 +The maximum resident set size (KB) = 539624 Test 152 control_atmwav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/atmaero_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/atmaero_control_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/atmaero_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/atmaero_control_p8 Checking test 153 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4590,14 +4590,14 @@ Checking test 153 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 246.842657 -The maximum resident set size (KB) = 2811184 +The total amount of wall time = 245.163053 +The maximum resident set size (KB) = 2813832 Test 153 atmaero_control_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/atmaero_control_p8_rad -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/atmaero_control_p8_rad +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/atmaero_control_p8_rad +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/atmaero_control_p8_rad Checking test 154 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4641,14 +4641,14 @@ Checking test 154 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 283.414227 -The maximum resident set size (KB) = 2876660 +The total amount of wall time = 281.936632 +The maximum resident set size (KB) = 2876048 Test 154 atmaero_control_p8_rad PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/atmaero_control_p8_rad_micro +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/atmaero_control_p8_rad_micro +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/atmaero_control_p8_rad_micro Checking test 155 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4692,14 +4692,14 @@ Checking test 155 atmaero_control_p8_rad_micro results .... 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.388829 -The maximum resident set size (KB) = 2881256 +The total amount of wall time = 289.302760 +The maximum resident set size (KB) = 2884628 Test 155 atmaero_control_p8_rad_micro PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_atmaq -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/regional_atmaq +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_atmaq +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/regional_atmaq Checking test 156 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4715,14 +4715,14 @@ Checking test 156 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 681.530293 -The maximum resident set size (KB) = 1259256 +The total amount of wall time = 678.700772 +The maximum resident set size (KB) = 1260240 Test 156 regional_atmaq PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_atmaq_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/regional_atmaq_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_atmaq_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/regional_atmaq_debug Checking test 157 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4736,14 +4736,14 @@ Checking test 157 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1379.429764 -The maximum resident set size (KB) = 1293780 +The total amount of wall time = 1357.371598 +The maximum resident set size (KB) = 1294444 Test 157 regional_atmaq_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_atmaq_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_214821/regional_atmaq_faster +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_atmaq_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/regional_atmaq_faster Checking test 158 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4759,12 +4759,12 @@ Checking test 158 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 643.440873 -The maximum resident set size (KB) = 1256944 +The total amount of wall time = 633.025785 +The maximum resident set size (KB) = 1257788 Test 158 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Thu Mar 30 18:06:21 UTC 2023 -Elapsed time: 01h:36m:11s. Have a nice day! +Mon Apr 3 15:52:38 UTC 2023 +Elapsed time: 01h:41m:02s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index 3c4b9ce9ad4..fa0fe1674e5 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,21 +1,21 @@ -Thu Mar 30 11:40:41 MDT 2023 +Sun Apr 2 19:46:04 MDT 2023 Start Regression test -Compile 001 elapsed time 384 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 399 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 852 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 198 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 377 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 1075 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 854 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 851 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 619 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 563 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 359 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 012 elapsed time 299 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/control_c48 -working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/control_c48 +Compile 001 elapsed time 380 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 401 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 857 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 197 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 375 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 1086 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 855 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 853 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 640 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 568 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 357 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 012 elapsed time 294 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/control_c48 +working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/control_c48 Checking test 001 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -54,14 +54,14 @@ Checking test 001 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 818.932811 -0:The maximum resident set size (KB) = 679680 +0:The total amount of wall time = 821.382548 +0:The maximum resident set size (KB) = 679724 Test 001 control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/control_stochy -working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/control_stochy +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/control_stochy +working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/control_stochy Checking test 002 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -72,14 +72,14 @@ Checking test 002 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 177.472515 -0:The maximum resident set size (KB) = 443708 +0:The total amount of wall time = 177.669428 +0:The maximum resident set size (KB) = 443200 Test 002 control_stochy PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/control_ras -working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/control_ras +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/control_ras +working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/control_ras Checking test 003 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -90,14 +90,14 @@ Checking test 003 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 294.481336 -0:The maximum resident set size (KB) = 452036 +0:The total amount of wall time = 293.917961 +0:The maximum resident set size (KB) = 452048 Test 003 control_ras PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/control_p8 -working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/control_p8 +working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/control_p8 Checking test 004 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -144,14 +144,14 @@ Checking test 004 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 310.641262 -0:The maximum resident set size (KB) = 1224256 +0:The total amount of wall time = 310.597668 +0:The maximum resident set size (KB) = 1226276 Test 004 control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/rap_control -working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/rap_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rap_control +working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/rap_control Checking test 005 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -198,14 +198,14 @@ Checking test 005 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 710.740057 -0:The maximum resident set size (KB) = 792152 +0:The total amount of wall time = 709.949782 +0:The maximum resident set size (KB) = 792004 Test 005 rap_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/rap_control -working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/rap_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rap_control +working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/rap_decomp Checking test 006 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -252,14 +252,14 @@ Checking test 006 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 721.136864 -0:The maximum resident set size (KB) = 791864 +0:The total amount of wall time = 722.076410 +0:The maximum resident set size (KB) = 791768 Test 006 rap_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/rap_control -working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/rap_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rap_control +working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/rap_2threads Checking test 007 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -306,14 +306,14 @@ Checking test 007 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 654.142559 -0:The maximum resident set size (KB) = 865496 +0:The total amount of wall time = 654.455663 +0:The maximum resident set size (KB) = 865708 Test 007 rap_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/rap_control -working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/rap_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rap_control +working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/rap_restart Checking test 008 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -352,14 +352,14 @@ Checking test 008 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 355.456006 -0:The maximum resident set size (KB) = 539196 +0:The total amount of wall time = 355.199421 +0:The maximum resident set size (KB) = 540312 Test 008 rap_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/rap_sfcdiff -working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/rap_sfcdiff +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/rap_sfcdiff Checking test 009 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -406,14 +406,14 @@ Checking test 009 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 714.211449 -0:The maximum resident set size (KB) = 792272 +0:The total amount of wall time = 710.942566 +0:The maximum resident set size (KB) = 792244 Test 009 rap_sfcdiff PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/rap_sfcdiff -working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/rap_sfcdiff_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/rap_sfcdiff_decomp Checking test 010 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -460,14 +460,14 @@ Checking test 010 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 721.946792 -0:The maximum resident set size (KB) = 791188 +0:The total amount of wall time = 721.850591 +0:The maximum resident set size (KB) = 791572 Test 010 rap_sfcdiff_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/rap_sfcdiff -working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/rap_sfcdiff_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/rap_sfcdiff_restart Checking test 011 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -506,14 +506,14 @@ Checking test 011 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 527.290404 -0:The maximum resident set size (KB) = 544076 +0:The total amount of wall time = 528.358538 +0:The maximum resident set size (KB) = 544836 Test 011 rap_sfcdiff_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/hrrr_control -working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/hrrr_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/hrrr_control +working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/hrrr_control Checking test 012 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -560,14 +560,14 @@ Checking test 012 hrrr_control results .... Comparing 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.408073 -0:The maximum resident set size (KB) = 789908 +0:The total amount of wall time = 695.328350 +0:The maximum resident set size (KB) = 789904 Test 012 hrrr_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/hrrr_control -working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/hrrr_control_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/hrrr_control +working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/hrrr_control_2threads Checking test 013 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -614,14 +614,14 @@ Checking test 013 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 626.108333 -0:The maximum resident set size (KB) = 860664 +0:The total amount of wall time = 627.235739 +0:The maximum resident set size (KB) = 860192 Test 013 hrrr_control_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/hrrr_control -working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/hrrr_control_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/hrrr_control +working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/hrrr_control_decomp Checking test 014 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -668,14 +668,14 @@ Checking test 014 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 694.020434 -0:The maximum resident set size (KB) = 788828 +0:The total amount of wall time = 687.659274 +0:The maximum resident set size (KB) = 789164 Test 014 hrrr_control_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/hrrr_control -working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/hrrr_control_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/hrrr_control +working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/hrrr_control_restart Checking test 015 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -714,14 +714,14 @@ Checking test 015 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 509.192789 -0:The maximum resident set size (KB) = 540232 +0:The total amount of wall time = 512.255889 +0:The maximum resident set size (KB) = 540640 Test 015 hrrr_control_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/rrfs_v1beta -working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/rrfs_v1beta +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rrfs_v1beta +working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/rrfs_v1beta Checking test 016 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -768,14 +768,14 @@ Checking test 016 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 707.645306 -0:The maximum resident set size (KB) = 789128 +0:The total amount of wall time = 706.940753 +0:The maximum resident set size (KB) = 789160 Test 016 rrfs_v1beta PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/rrfs_smoke_conus13km_hrrr_warm Checking test 017 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -784,14 +784,14 @@ Checking test 017 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 231.705240 -0:The maximum resident set size (KB) = 636572 +0:The total amount of wall time = 230.363787 +0:The maximum resident set size (KB) = 636436 Test 017 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 018 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -800,14 +800,14 @@ Checking test 018 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 146.796159 -0:The maximum resident set size (KB) = 661076 +0:The total amount of wall time = 148.724746 +0:The maximum resident set size (KB) = 660668 Test 018 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/rrfs_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/rrfs_conus13km_hrrr_warm Checking test 019 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -816,14 +816,14 @@ Checking test 019 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 213.145560 -0:The maximum resident set size (KB) = 615148 +0:The total amount of wall time = 212.995745 +0:The maximum resident set size (KB) = 615860 Test 019 rrfs_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/rrfs_smoke_conus13km_radar_tten_warm Checking test 020 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -832,234 +832,234 @@ Checking test 020 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 232.542704 -0:The maximum resident set size (KB) = 639692 +0:The total amount of wall time = 234.453658 +0:The maximum resident set size (KB) = 639316 Test 020 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 021 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 110.251654 -0:The maximum resident set size (KB) = 596868 +0:The total amount of wall time = 110.568057 +0:The maximum resident set size (KB) = 596528 Test 021 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/control_diag_debug -working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/control_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/control_diag_debug +working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/control_diag_debug Checking test 022 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 88.735374 -0:The maximum resident set size (KB) = 494864 +0:The total amount of wall time = 90.103589 +0:The maximum resident set size (KB) = 494968 Test 022 control_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/regional_debug -working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/regional_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/regional_debug +working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/regional_debug Checking test 023 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 479.520762 -0:The maximum resident set size (KB) = 570760 +0:The total amount of wall time = 480.342095 +0:The maximum resident set size (KB) = 570556 Test 023 regional_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/rap_control_debug -working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/rap_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rap_control_debug +working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/rap_control_debug Checking test 024 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 151.924868 -0:The maximum resident set size (KB) = 808552 +0:The total amount of wall time = 149.863459 +0:The maximum resident set size (KB) = 809304 Test 024 rap_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/hrrr_control_debug -working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/hrrr_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/hrrr_control_debug +working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/hrrr_control_debug Checking test 025 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 147.922840 -0:The maximum resident set size (KB) = 805400 +0:The total amount of wall time = 148.664768 +0:The maximum resident set size (KB) = 805496 Test 025 hrrr_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/rap_diag_debug -working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/rap_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rap_diag_debug +working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/rap_diag_debug Checking test 026 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 158.945983 -0:The maximum resident set size (KB) = 891324 +0:The total amount of wall time = 158.504441 +0:The maximum resident set size (KB) = 891672 Test 026 rap_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/rap_noah_sfcdiff_cires_ugwp_debug Checking test 027 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 238.821340 -0:The maximum resident set size (KB) = 807276 +0:The total amount of wall time = 239.324871 +0:The maximum resident set size (KB) = 807360 Test 027 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/rap_progcld_thompson_debug -working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/rap_progcld_thompson_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rap_progcld_thompson_debug +working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/rap_progcld_thompson_debug Checking test 028 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 150.235395 -0:The maximum resident set size (KB) = 808660 +0:The total amount of wall time = 150.076881 +0:The maximum resident set size (KB) = 809008 Test 028 rap_progcld_thompson_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/rrfs_v1beta_debug -working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/rrfs_v1beta_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rrfs_v1beta_debug +working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/rrfs_v1beta_debug Checking test 029 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 149.530430 -0:The maximum resident set size (KB) = 804192 +0:The total amount of wall time = 148.748984 +0:The maximum resident set size (KB) = 804552 Test 029 rrfs_v1beta_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/control_ras_debug -working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/control_ras_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/control_ras_debug +working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/control_ras_debug Checking test 030 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 85.909266 -0:The maximum resident set size (KB) = 449252 +0:The total amount of wall time = 85.726989 +0:The maximum resident set size (KB) = 449164 Test 030 control_ras_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/control_stochy_debug -working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/control_stochy_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/control_stochy_debug +working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/control_stochy_debug Checking test 031 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 93.905845 -0:The maximum resident set size (KB) = 441544 +0:The total amount of wall time = 93.889590 +0:The maximum resident set size (KB) = 441672 Test 031 control_stochy_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/control_debug_p8 -working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/control_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/control_debug_p8 +working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/control_debug_p8 Checking test 032 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 96.512682 -0:The maximum resident set size (KB) = 1224120 +0:The total amount of wall time = 95.808155 +0:The maximum resident set size (KB) = 1224572 Test 032 control_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 033 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 444.110266 -0:The maximum resident set size (KB) = 645028 +0:The total amount of wall time = 446.750787 +0:The maximum resident set size (KB) = 644708 Test 033 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 034 rrfs_smoke_conus13km_hrrr_warm_debug_2threads 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.640513 -0:The maximum resident set size (KB) = 668912 +0:The total amount of wall time = 262.334256 +0:The maximum resident set size (KB) = 669008 Test 034 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/rrfs_conus13km_hrrr_warm_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rrfs_conus13km_hrrr_warm_debugs +working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/rrfs_conus13km_hrrr_warm_debug Checking test 035 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 400.323757 -0:The maximum resident set size (KB) = 623496 +0:The total amount of wall time = 400.708967 +0:The maximum resident set size (KB) = 623644 Test 035 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/control_wam_debug -working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/control_wam_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/control_wam_debug +working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/control_wam_debug Checking test 036 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 146.150513 -0:The maximum resident set size (KB) = 185300 +0:The total amount of wall time = 144.827467 +0:The maximum resident set size (KB) = 185388 Test 036 control_wam_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/rap_control_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/rap_control_dyn32_phy32 Checking test 037 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1106,14 +1106,14 @@ Checking test 037 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 704.672868 -0:The maximum resident set size (KB) = 673260 +0:The total amount of wall time = 702.982134 +0:The maximum resident set size (KB) = 672580 Test 037 rap_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/hrrr_control_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/hrrr_control_dyn32_phy32 Checking test 038 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1160,14 +1160,14 @@ Checking test 038 hrrr_control_dyn32_phy32 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 = 354.745069 -0:The maximum resident set size (KB) = 671200 +0:The total amount of wall time = 360.976059 +0:The maximum resident set size (KB) = 671056 Test 038 hrrr_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/rap_2threads_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/rap_2threads_dyn32_phy32 Checking test 039 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1214,14 +1214,14 @@ Checking test 039 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 638.337417 -0:The maximum resident set size (KB) = 719960 +0:The total amount of wall time = 659.431580 +0:The maximum resident set size (KB) = 719260 Test 039 rap_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/hrrr_control_2threads_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/hrrr_control_2threads_dyn32_phy32 Checking test 040 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1268,14 +1268,14 @@ Checking test 040 hrrr_control_2threads_dyn32_phy32 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 = 318.047926 -0:The maximum resident set size (KB) = 717204 +0:The total amount of wall time = 320.049603 +0:The maximum resident set size (KB) = 717092 Test 040 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/hrrr_control_decomp_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/hrrr_control_decomp_dyn32_phy32 Checking test 041 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1322,14 +1322,14 @@ Checking test 041 hrrr_control_decomp_dyn32_phy32 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 = 354.669353 -0:The maximum resident set size (KB) = 670384 +0:The total amount of wall time = 353.533037 +0:The maximum resident set size (KB) = 670452 Test 041 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/rap_restart_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/rap_restart_dyn32_phy32 Checking test 042 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1368,14 +1368,14 @@ Checking test 042 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 518.943713 -0:The maximum resident set size (KB) = 511336 +0:The total amount of wall time = 519.455517 +0:The maximum resident set size (KB) = 511656 Test 042 rap_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/hrrr_control_restart_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/hrrr_control_restart_dyn32_phy32 Checking test 043 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1414,14 +1414,14 @@ Checking test 043 hrrr_control_restart_dyn32_phy32 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 = 179.135052 -0:The maximum resident set size (KB) = 507484 +0:The total amount of wall time = 179.639970 +0:The maximum resident set size (KB) = 507544 Test 043 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/rap_control_dyn64_phy32 -working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/rap_control_dyn64_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rap_control_dyn64_phy32 +working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/rap_control_dyn64_phy32 Checking test 044 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1468,56 +1468,56 @@ Checking test 044 rap_control_dyn64_phy32 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 = 413.352836 -0:The maximum resident set size (KB) = 692720 +0:The total amount of wall time = 412.334266 +0:The maximum resident set size (KB) = 693888 Test 044 rap_control_dyn64_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/rap_control_debug_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/rap_control_debug_dyn32_phy32 Checking test 045 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 149.960472 -0:The maximum resident set size (KB) = 691188 +0:The total amount of wall time = 149.190540 +0:The maximum resident set size (KB) = 690224 Test 045 rap_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/hrrr_control_debug_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/hrrr_control_debug_dyn32_phy32 Checking test 046 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 147.279376 -0:The maximum resident set size (KB) = 688080 +0:The total amount of wall time = 146.525027 +0:The maximum resident set size (KB) = 688496 Test 046 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/rap_control_dyn64_phy32_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rap_control_debug_dyn64_phy32 +working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/rap_control_dyn64_phy32_debug Checking test 047 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 155.008488 -0:The maximum resident set size (KB) = 710612 +0:The total amount of wall time = 153.785256 +0:The maximum resident set size (KB) = 711012 Test 047 rap_control_dyn64_phy32_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/cpld_control_p8 -working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/cpld_control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/cpld_control_p8 Checking test 048 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1582,14 +1582,14 @@ Checking test 048 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 498.603226 -0:The maximum resident set size (KB) = 3164172 +0:The total amount of wall time = 499.171667 +0:The maximum resident set size (KB) = 3158748 Test 048 cpld_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/cpld_control_nowave_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/cpld_control_c96_noaero_p8 +working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/cpld_control_nowave_noaero_p8 Checking test 049 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1651,14 +1651,14 @@ Checking test 049 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 249.743402 -0:The maximum resident set size (KB) = 1240204 +0:The total amount of wall time = 246.717852 +0:The maximum resident set size (KB) = 1240676 Test 049 cpld_control_nowave_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/cpld_debug_p8 -working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/cpld_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/cpld_debug_p8 +working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/cpld_debug_p8 Checking test 050 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1711,25 +1711,25 @@ Checking test 050 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 275.756962 -0:The maximum resident set size (KB) = 3178504 +0:The total amount of wall time = 273.826383 +0:The maximum resident set size (KB) = 3177276 Test 050 cpld_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/GNU/datm_cdeps_control_cfsr -working dir = /glade/scratch/zshrader/FV3_RT/rt_3748/datm_cdeps_control_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/datm_cdeps_control_cfsr +working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/datm_cdeps_control_cfsr Checking test 051 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 178.759957 -0:The maximum resident set size (KB) = 669460 +0:The total amount of wall time = 172.990006 +0:The maximum resident set size (KB) = 672380 Test 051 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Thu Mar 30 12:13:55 MDT 2023 -Elapsed time: 00h:33m:14s. Have a nice day! +Sun Apr 2 20:23:46 MDT 2023 +Elapsed time: 00h:37m:43s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 4a3a1eac626..70bf3732a6c 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,42 +1,44 @@ -Thu Mar 30 14:08:45 MDT 2023 +Mon Apr 3 07:55:22 MDT 2023 Start Regression test -Compile 001 elapsed time 1506 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 1525 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 1377 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 468 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 409 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 1117 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 1094 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 1782 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 1075 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 993 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 011 elapsed time 935 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 800 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 1306 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 407 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 277 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 827 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 844 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 275 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 278 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 1129 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 021 elapsed time 337 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 1574 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 1118 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 024 elapsed time 425 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Test 008 compile FAIL + +Compile 001 elapsed time 1382 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1399 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 1361 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 447 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 400 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 1071 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 1102 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 1758 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 1089 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 980 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 011 elapsed time 925 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 801 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 1303 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 414 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 273 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 841 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 841 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 288 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 281 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 1120 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 021 elapsed time 347 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 1572 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 1114 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 024 elapsed time 428 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON Compile 025 elapsed time 201 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 425 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 105 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 944 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 986 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 907 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 876 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 310 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 1031 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8_mixedmode -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/cpld_control_p8_mixedmode +Compile 026 elapsed time 429 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 103 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 948 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 988 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 891 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 871 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 307 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 1033 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8_mixedmode +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -101,14 +103,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 320.874772 -0:The maximum resident set size (KB) = 2699984 +0:The total amount of wall time = 321.018608 +0:The maximum resident set size (KB) = 2698364 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_gfsv17 -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/cpld_control_gfsv17 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_gfsv17 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -172,33 +174,33 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 282.516362 -0:The maximum resident set size (KB) = 1438760 +0:The total amount of wall time = 280.756647 +0:The maximum resident set size (KB) = 1437628 Test 002 cpld_control_gfsv17 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/cpld_control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/cpld_control_p8 Checking test 003 cpld_control_p8 results .... - Comparing sfcf021.tile1.nc ............ALT CHECK......OK - Comparing sfcf021.tile2.nc ............ALT CHECK......OK - Comparing sfcf021.tile3.nc ............ALT CHECK......OK - Comparing sfcf021.tile4.nc ............ALT CHECK......OK - Comparing sfcf021.tile5.nc ............ALT CHECK......OK - Comparing sfcf021.tile6.nc ............ALT CHECK......OK + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK Comparing 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 ............ALT CHECK......OK - Comparing sfcf024.tile2.nc ............ALT CHECK......OK - Comparing sfcf024.tile3.nc ............ALT CHECK......OK - Comparing sfcf024.tile4.nc ............ALT CHECK......OK - Comparing sfcf024.tile5.nc ............ALT CHECK......OK - Comparing sfcf024.tile6.nc ............ALT CHECK......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 @@ -244,21 +246,21 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 322.996332 -0:The maximum resident set size (KB) = 2716548 +0:The total amount of wall time = 321.783469 +0:The maximum resident set size (KB) = 2715024 Test 003 cpld_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/cpld_restart_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... - Comparing sfcf024.tile1.nc ............ALT CHECK......OK - Comparing sfcf024.tile2.nc ............ALT CHECK......OK - Comparing sfcf024.tile3.nc ............ALT CHECK......OK - Comparing sfcf024.tile4.nc ............ALT CHECK......OK - Comparing sfcf024.tile5.nc ............ALT CHECK......OK - Comparing sfcf024.tile6.nc ............ALT CHECK......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 @@ -304,33 +306,33 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 187.296031 -0:The maximum resident set size (KB) = 2577996 +0:The total amount of wall time = 183.899337 +0:The maximum resident set size (KB) = 2576596 Test 004 cpld_restart_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/cpld_control_qr_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... - Comparing sfcf021.tile1.nc ............ALT CHECK......OK - Comparing sfcf021.tile2.nc ............ALT CHECK......OK - Comparing sfcf021.tile3.nc ............ALT CHECK......OK - Comparing sfcf021.tile4.nc ............ALT CHECK......OK - Comparing sfcf021.tile5.nc ............ALT CHECK......OK - Comparing sfcf021.tile6.nc ............ALT CHECK......OK + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK Comparing 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 ............ALT CHECK......OK - Comparing sfcf024.tile2.nc ............ALT CHECK......OK - Comparing sfcf024.tile3.nc ............ALT CHECK......OK - Comparing sfcf024.tile4.nc ............ALT CHECK......OK - Comparing sfcf024.tile5.nc ............ALT CHECK......OK - Comparing sfcf024.tile6.nc ............ALT CHECK......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 @@ -376,21 +378,21 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 329.465301 -0:The maximum resident set size (KB) = 2721044 +0:The total amount of wall time = 324.347370 +0:The maximum resident set size (KB) = 2719464 Test 005 cpld_control_qr_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/cpld_restart_qr_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... - Comparing sfcf024.tile1.nc ............ALT CHECK......OK - Comparing sfcf024.tile2.nc ............ALT CHECK......OK - Comparing sfcf024.tile3.nc ............ALT CHECK......OK - Comparing sfcf024.tile4.nc ............ALT CHECK......OK - Comparing sfcf024.tile5.nc ............ALT CHECK......OK - Comparing sfcf024.tile6.nc ............ALT CHECK......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 @@ -436,21 +438,21 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 203.808624 -0:The maximum resident set size (KB) = 2594696 +0:The total amount of wall time = 191.105457 +0:The maximum resident set size (KB) = 2593760 Test 006 cpld_restart_qr_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/cpld_2threads_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... - Comparing sfcf024.tile1.nc ............ALT CHECK......OK - Comparing sfcf024.tile2.nc ............ALT CHECK......OK - Comparing sfcf024.tile3.nc ............ALT CHECK......OK - Comparing sfcf024.tile4.nc ............ALT CHECK......OK - Comparing sfcf024.tile5.nc ............ALT CHECK......OK - Comparing sfcf024.tile6.nc ............ALT CHECK......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 @@ -496,21 +498,21 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 254.427509 -0:The maximum resident set size (KB) = 3177776 +0:The total amount of wall time = 251.194233 +0:The maximum resident set size (KB) = 3177724 Test 007 cpld_2threads_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/cpld_decomp_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... - Comparing sfcf024.tile1.nc ............ALT CHECK......OK - Comparing sfcf024.tile2.nc ............ALT CHECK......OK - Comparing sfcf024.tile3.nc ............ALT CHECK......OK - Comparing sfcf024.tile4.nc ............ALT CHECK......OK - Comparing sfcf024.tile5.nc ............ALT CHECK......OK - Comparing sfcf024.tile6.nc ............ALT CHECK......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 @@ -556,21 +558,21 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 314.092757 -0:The maximum resident set size (KB) = 2721724 +0:The total amount of wall time = 321.628724 +0:The maximum resident set size (KB) = 2720412 Test 008 cpld_decomp_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/cpld_mpi_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... - Comparing sfcf024.tile1.nc ............ALT CHECK......OK - Comparing sfcf024.tile2.nc ............ALT CHECK......OK - Comparing sfcf024.tile3.nc ............ALT CHECK......OK - Comparing sfcf024.tile4.nc ............ALT CHECK......OK - Comparing sfcf024.tile5.nc ............ALT CHECK......OK - Comparing sfcf024.tile6.nc ............ALT CHECK......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 @@ -616,14 +618,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 277.838630 -0:The maximum resident set size (KB) = 2681612 +0:The total amount of wall time = 275.773539 +0:The maximum resident set size (KB) = 2680568 Test 009 cpld_mpi_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_ciceC_p8 -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/cpld_control_ciceC_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_ciceC_p8 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -688,21 +690,21 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 323.252828 -0:The maximum resident set size (KB) = 2716880 +0:The total amount of wall time = 320.727504 +0:The maximum resident set size (KB) = 2715172 Test 010 cpld_control_ciceC_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/cpld_control_c192_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_c192_p8 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/cpld_control_c192_p8 Checking test 011 cpld_control_c192_p8 results .... - Comparing sfcf030.tile1.nc ............ALT CHECK......OK - Comparing sfcf030.tile2.nc ............ALT CHECK......OK - Comparing sfcf030.tile3.nc ............ALT CHECK......OK - Comparing sfcf030.tile4.nc ............ALT CHECK......OK - Comparing sfcf030.tile5.nc ............ALT CHECK......OK - Comparing sfcf030.tile6.nc ............ALT CHECK......OK + Comparing sfcf030.tile1.nc .........OK + Comparing sfcf030.tile2.nc .........OK + Comparing sfcf030.tile3.nc .........OK + Comparing sfcf030.tile4.nc .........OK + Comparing sfcf030.tile5.nc .........OK + Comparing sfcf030.tile6.nc .........OK Comparing atmf030.tile1.nc .........OK Comparing atmf030.tile2.nc .........OK Comparing atmf030.tile3.nc .........OK @@ -748,21 +750,21 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -0:The total amount of wall time = 632.857578 -0:The maximum resident set size (KB) = 3351948 +0:The total amount of wall time = 626.605472 +0:The maximum resident set size (KB) = 3350840 Test 011 cpld_control_c192_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/cpld_restart_c192_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_c192_p8 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/cpld_restart_c192_p8 Checking test 012 cpld_restart_c192_p8 results .... - Comparing sfcf030.tile1.nc ............ALT CHECK......OK - Comparing sfcf030.tile2.nc ............ALT CHECK......OK - Comparing sfcf030.tile3.nc ............ALT CHECK......OK - Comparing sfcf030.tile4.nc ............ALT CHECK......OK - Comparing sfcf030.tile5.nc ............ALT CHECK......OK - Comparing sfcf030.tile6.nc ............ALT CHECK......OK + Comparing sfcf030.tile1.nc .........OK + Comparing sfcf030.tile2.nc .........OK + Comparing sfcf030.tile3.nc .........OK + Comparing sfcf030.tile4.nc .........OK + Comparing sfcf030.tile5.nc .........OK + Comparing sfcf030.tile6.nc .........OK Comparing atmf030.tile1.nc .........OK Comparing atmf030.tile2.nc .........OK Comparing atmf030.tile3.nc .........OK @@ -808,14 +810,14 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -0:The total amount of wall time = 392.401011 -0:The maximum resident set size (KB) = 3276796 +0:The total amount of wall time = 380.835301 +0:The maximum resident set size (KB) = 3275932 Test 012 cpld_restart_c192_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_noaero_p8 -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/cpld_control_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_noaero_p8 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/cpld_control_noaero_p8 Checking test 013 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -879,14 +881,14 @@ Checking test 013 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 295.533673 -0:The maximum resident set size (KB) = 1436912 +0:The total amount of wall time = 292.658879 +0:The maximum resident set size (KB) = 1436276 Test 013 cpld_control_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/cpld_control_nowave_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_c96_noaero_p8 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/cpld_control_nowave_noaero_p8 Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -948,14 +950,14 @@ Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 196.511646 -0:The maximum resident set size (KB) = 1453328 +0:The total amount of wall time = 193.519543 +0:The maximum resident set size (KB) = 1453144 Test 014 cpld_control_nowave_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_debug_p8 -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/cpld_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_debug_p8 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/cpld_debug_p8 Checking test 015 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1008,14 +1010,14 @@ Checking test 015 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 474.086141 -0:The maximum resident set size (KB) = 2787784 +0:The total amount of wall time = 473.669252 +0:The maximum resident set size (KB) = 2786240 Test 015 cpld_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_debug_noaero_p8 -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/cpld_debug_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_debug_noaero_p8 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/cpld_debug_noaero_p8 Checking test 016 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1067,14 +1069,14 @@ Checking test 016 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 349.061686 -0:The maximum resident set size (KB) = 1461552 +0:The total amount of wall time = 348.270260 +0:The maximum resident set size (KB) = 1460536 Test 016 cpld_debug_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_noaero_p8_agrid -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/cpld_control_noaero_p8_agrid +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_noaero_p8_agrid +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/cpld_control_noaero_p8_agrid Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1136,21 +1138,21 @@ Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 255.699194 -0:The maximum resident set size (KB) = 1456892 +0:The total amount of wall time = 253.826707 +0:The maximum resident set size (KB) = 1456872 Test 017 cpld_control_noaero_p8_agrid PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_c48 -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/cpld_control_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_c48 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/cpld_control_c48 Checking test 018 cpld_control_c48 results .... - Comparing sfcf024.tile1.nc ............ALT CHECK......OK - Comparing sfcf024.tile2.nc ............ALT CHECK......OK - Comparing sfcf024.tile3.nc ............ALT CHECK......OK - Comparing sfcf024.tile4.nc ............ALT CHECK......OK - Comparing sfcf024.tile5.nc ............ALT CHECK......OK - Comparing sfcf024.tile6.nc ............ALT CHECK......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 @@ -1193,14 +1195,14 @@ Checking test 018 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 606.982728 -0:The maximum resident set size (KB) = 2586064 +0:The total amount of wall time = 606.540948 +0:The maximum resident set size (KB) = 2586656 Test 018 cpld_control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/cpld_warmstart_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_warmstart_c48 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/cpld_warmstart_c48 Checking test 019 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1250,14 +1252,14 @@ Checking test 019 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -0:The total amount of wall time = 164.261557 -0:The maximum resident set size (KB) = 2601616 +0:The total amount of wall time = 163.878597 +0:The maximum resident set size (KB) = 2601644 Test 019 cpld_warmstart_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/cpld_restart_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_warmstart_c48 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/cpld_restart_c48 Checking test 020 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1307,14 +1309,14 @@ Checking test 020 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -0:The total amount of wall time = 84.597038 -0:The maximum resident set size (KB) = 2018844 +0:The total amount of wall time = 84.981085 +0:The maximum resident set size (KB) = 2018956 Test 020 cpld_restart_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_CubedSphereGrid -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_CubedSphereGrid +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_CubedSphereGrid +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_CubedSphereGrid Checking test 021 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1341,28 +1343,28 @@ Checking test 021 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -0:The total amount of wall time = 142.611586 -0:The maximum resident set size (KB) = 454256 +0:The total amount of wall time = 143.193448 +0:The maximum resident set size (KB) = 454272 Test 021 control_CubedSphereGrid PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_CubedSphereGrid_parallel -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_CubedSphereGrid_parallel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_CubedSphereGrid_parallel +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_CubedSphereGrid_parallel Checking test 022 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK -0:The total amount of wall time = 137.084478 -0:The maximum resident set size (KB) = 454240 +0:The total amount of wall time = 138.360679 +0:The maximum resident set size (KB) = 454196 Test 022 control_CubedSphereGrid_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_latlon -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_latlon +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_latlon +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_latlon Checking test 023 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1373,32 +1375,32 @@ Checking test 023 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 146.903803 -0:The maximum resident set size (KB) = 454304 +0:The total amount of wall time = 146.285185 +0:The maximum resident set size (KB) = 454400 Test 023 control_latlon PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_wrtGauss_netcdf_parallel -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_wrtGauss_netcdf_parallel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wrtGauss_netcdf_parallel +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_wrtGauss_netcdf_parallel Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 149.945775 -0:The maximum resident set size (KB) = 454408 +0:The total amount of wall time = 152.131459 +0:The maximum resident set size (KB) = 454592 Test 024 control_wrtGauss_netcdf_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_c48 -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c48 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_c48 Checking test 025 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1437,14 +1439,14 @@ Checking test 025 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 442.990812 -0:The maximum resident set size (KB) = 633528 +0:The total amount of wall time = 444.111808 +0:The maximum resident set size (KB) = 633524 Test 025 control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_c192 -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_c192 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c192 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_c192 Checking test 026 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1455,14 +1457,14 @@ Checking test 026 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 598.721090 -0:The maximum resident set size (KB) = 560360 +0:The total amount of wall time = 596.775844 +0:The maximum resident set size (KB) = 560340 Test 026 control_c192 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_c384 -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_c384 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c384 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_c384 Checking test 027 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1473,14 +1475,14 @@ Checking test 027 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 588.149210 -0:The maximum resident set size (KB) = 899540 +0:The total amount of wall time = 590.340444 +0:The maximum resident set size (KB) = 899408 Test 027 control_c384 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_c384gdas -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_c384gdas +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c384gdas +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_c384gdas Checking test 028 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1523,14 +1525,14 @@ Checking test 028 control_c384gdas 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 = 509.590494 -0:The maximum resident set size (KB) = 1026968 +0:The total amount of wall time = 516.149382 +0:The maximum resident set size (KB) = 1026800 Test 028 control_c384gdas PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_stochy -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_stochy +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_stochy +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_stochy Checking test 029 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1541,28 +1543,28 @@ Checking test 029 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 98.223240 -0:The maximum resident set size (KB) = 459220 +0:The total amount of wall time = 97.811063 +0:The maximum resident set size (KB) = 459132 Test 029 control_stochy PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_stochy -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_stochy_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_stochy +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_stochy_restart Checking test 030 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 52.905909 -0:The maximum resident set size (KB) = 226536 +0:The total amount of wall time = 52.757201 +0:The maximum resident set size (KB) = 226520 Test 030 control_stochy_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_lndp -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_lndp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_lndp +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_lndp Checking test 031 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1573,14 +1575,14 @@ Checking test 031 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 91.361108 -0:The maximum resident set size (KB) = 458220 +0:The total amount of wall time = 89.953334 +0:The maximum resident set size (KB) = 458212 Test 031 control_lndp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_iovr4 -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_iovr4 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_iovr4 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_iovr4 Checking test 032 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1595,14 +1597,14 @@ Checking test 032 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 148.139340 -0:The maximum resident set size (KB) = 454232 +0:The total amount of wall time = 149.147166 +0:The maximum resident set size (KB) = 454780 Test 032 control_iovr4 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_iovr5 -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_iovr5 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_iovr5 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_iovr5 Checking test 033 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1617,14 +1619,14 @@ Checking test 033 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 149.097879 -0:The maximum resident set size (KB) = 454252 +0:The total amount of wall time = 148.323931 +0:The maximum resident set size (KB) = 454268 Test 033 control_iovr5 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_p8 Checking test 034 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1671,14 +1673,14 @@ Checking test 034 control_p8 results .... Comparing 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.252630 -0:The maximum resident set size (KB) = 1423892 +0:The total amount of wall time = 177.196329 +0:The maximum resident set size (KB) = 1423876 Test 034 control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_restart_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_restart_p8 Checking test 035 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1717,14 +1719,14 @@ Checking test 035 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 93.674833 -0:The maximum resident set size (KB) = 582884 +0:The total amount of wall time = 95.915221 +0:The maximum resident set size (KB) = 582856 Test 035 control_restart_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_qr_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_qr_p8 Checking test 036 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1771,14 +1773,14 @@ Checking test 036 control_qr_p8 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 = 182.384199 -0:The maximum resident set size (KB) = 1427264 +0:The total amount of wall time = 183.290583 +0:The maximum resident set size (KB) = 1427252 Test 036 control_qr_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_restart_qr_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_restart_qr_p8 Checking test 037 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1817,14 +1819,14 @@ Checking test 037 control_restart_qr_p8 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 = 98.815129 -0:The maximum resident set size (KB) = 596808 +0:The total amount of wall time = 98.786564 +0:The maximum resident set size (KB) = 596884 Test 037 control_restart_qr_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_decomp_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_decomp_p8 Checking test 038 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1867,14 +1869,14 @@ Checking test 038 control_decomp_p8 results .... Comparing 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.112863 -0:The maximum resident set size (KB) = 1418420 +0:The total amount of wall time = 186.665266 +0:The maximum resident set size (KB) = 1418400 Test 038 control_decomp_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_2threads_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_2threads_p8 Checking test 039 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1917,14 +1919,14 @@ Checking test 039 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 166.797801 -0:The maximum resident set size (KB) = 1508660 +0:The total amount of wall time = 170.215495 +0:The maximum resident set size (KB) = 1509068 Test 039 control_2threads_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8_lndp -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_p8_lndp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_lndp +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_p8_lndp Checking test 040 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1943,14 +1945,14 @@ Checking test 040 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -0:The total amount of wall time = 337.275015 -0:The maximum resident set size (KB) = 1424940 +0:The total amount of wall time = 334.123175 +0:The maximum resident set size (KB) = 1424944 Test 040 control_p8_lndp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8_rrtmgp -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_p8_rrtmgp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_rrtmgp +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_p8_rrtmgp Checking test 041 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1997,14 +1999,14 @@ Checking test 041 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 255.053618 -0:The maximum resident set size (KB) = 1480244 +0:The total amount of wall time = 245.252211 +0:The maximum resident set size (KB) = 1480228 Test 041 control_p8_rrtmgp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8_mynn -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_p8_mynn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_mynn +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_p8_mynn Checking test 042 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2051,14 +2053,14 @@ Checking test 042 control_p8_mynn results .... Comparing 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.447201 -0:The maximum resident set size (KB) = 1427928 +0:The total amount of wall time = 185.220956 +0:The maximum resident set size (KB) = 1427892 Test 042 control_p8_mynn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/merra2_thompson -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/merra2_thompson +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/merra2_thompson +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/merra2_thompson Checking test 043 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2105,14 +2107,14 @@ Checking test 043 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 206.770023 -0:The maximum resident set size (KB) = 1429664 +0:The total amount of wall time = 209.021884 +0:The maximum resident set size (KB) = 1429712 Test 043 merra2_thompson PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/regional_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/regional_control Checking test 044 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2123,28 +2125,28 @@ Checking test 044 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 342.752075 -0:The maximum resident set size (KB) = 604832 +0:The total amount of wall time = 342.522505 +0:The maximum resident set size (KB) = 604760 Test 044 regional_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/regional_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/regional_restart Checking test 045 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 175.711329 -0:The maximum resident set size (KB) = 594192 +0:The total amount of wall time = 174.575884 +0:The maximum resident set size (KB) = 594208 Test 045 regional_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/regional_control_qr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/regional_control_qr Checking test 046 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2155,28 +2157,28 @@ Checking test 046 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 329.436049 -0:The maximum resident set size (KB) = 604836 +0:The total amount of wall time = 349.583600 +0:The maximum resident set size (KB) = 604804 Test 046 regional_control_qr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/regional_restart_qr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/regional_restart_qr Checking test 047 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 173.629667 -0:The maximum resident set size (KB) = 594148 +0:The total amount of wall time = 175.192567 +0:The maximum resident set size (KB) = 594100 Test 047 regional_restart_qr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/regional_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/regional_decomp Checking test 048 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2187,14 +2189,14 @@ Checking test 048 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 349.749635 -0:The maximum resident set size (KB) = 598184 +0:The total amount of wall time = 359.757054 +0:The maximum resident set size (KB) = 598180 Test 048 regional_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/regional_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/regional_2threads Checking test 049 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2205,14 +2207,14 @@ Checking test 049 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 203.247846 -0:The maximum resident set size (KB) = 611512 +0:The total amount of wall time = 202.951735 +0:The maximum resident set size (KB) = 611416 Test 049 regional_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_noquilt -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/regional_noquilt +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_noquilt +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/regional_noquilt Checking test 050 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2220,28 +2222,28 @@ Checking test 050 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -0:The total amount of wall time = 365.303939 -0:The maximum resident set size (KB) = 599616 +0:The total amount of wall time = 364.619542 +0:The maximum resident set size (KB) = 599088 Test 050 regional_noquilt PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_netcdf_parallel -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/regional_netcdf_parallel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_netcdf_parallel +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/regional_netcdf_parallel Checking test 051 regional_netcdf_parallel 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 = 326.385068 -0:The maximum resident set size (KB) = 596692 +0:The total amount of wall time = 327.188584 +0:The maximum resident set size (KB) = 597264 Test 051 regional_netcdf_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/regional_2dwrtdecomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/regional_2dwrtdecomp Checking test 052 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2252,14 +2254,14 @@ Checking test 052 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 340.669174 -0:The maximum resident set size (KB) = 604820 +0:The total amount of wall time = 341.211799 +0:The maximum resident set size (KB) = 604832 Test 052 regional_2dwrtdecomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/fv3_regional_wofs -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/regional_wofs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/fv3_regional_wofs +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/regional_wofs Checking test 053 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2270,14 +2272,14 @@ Checking test 053 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 426.878328 -0:The maximum resident set size (KB) = 275888 +0:The total amount of wall time = 435.316594 +0:The maximum resident set size (KB) = 275808 Test 053 regional_wofs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/rap_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/rap_control Checking test 054 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2324,14 +2326,14 @@ Checking test 054 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 481.311218 -0:The maximum resident set size (KB) = 823460 +0:The total amount of wall time = 480.072617 +0:The maximum resident set size (KB) = 823544 Test 054 rap_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_spp_sppt_shum_skeb -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/regional_spp_sppt_shum_skeb +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_spp_sppt_shum_skeb +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/regional_spp_sppt_shum_skeb Checking test 055 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2342,14 +2344,14 @@ Checking test 055 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 262.045254 -0:The maximum resident set size (KB) = 952328 +0:The total amount of wall time = 260.060739 +0:The maximum resident set size (KB) = 952032 Test 055 regional_spp_sppt_shum_skeb PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/rap_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/rap_decomp Checking test 056 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2396,14 +2398,14 @@ Checking test 056 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 512.380863 -0:The maximum resident set size (KB) = 822412 +0:The total amount of wall time = 496.448497 +0:The maximum resident set size (KB) = 822316 Test 056 rap_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/rap_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/rap_2threads Checking test 057 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2450,14 +2452,14 @@ Checking test 057 rap_2threads results .... Comparing 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.743033 -0:The maximum resident set size (KB) = 893500 +0:The total amount of wall time = 454.844511 +0:The maximum resident set size (KB) = 894048 Test 057 rap_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/rap_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/rap_restart Checking test 058 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2496,14 +2498,14 @@ Checking test 058 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 241.882247 -0:The maximum resident set size (KB) = 571200 +0:The total amount of wall time = 243.492165 +0:The maximum resident set size (KB) = 571648 Test 058 rap_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_sfcdiff -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/rap_sfcdiff +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/rap_sfcdiff Checking test 059 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2550,14 +2552,14 @@ Checking test 059 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 481.975954 -0:The maximum resident set size (KB) = 823372 +0:The total amount of wall time = 483.665131 +0:The maximum resident set size (KB) = 823668 Test 059 rap_sfcdiff PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_sfcdiff -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/rap_sfcdiff_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/rap_sfcdiff_decomp Checking test 060 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2604,14 +2606,14 @@ Checking test 060 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 505.330190 -0:The maximum resident set size (KB) = 822252 +0:The total amount of wall time = 502.713340 +0:The maximum resident set size (KB) = 822316 Test 060 rap_sfcdiff_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_sfcdiff -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/rap_sfcdiff_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/rap_sfcdiff_restart Checking test 061 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2650,14 +2652,14 @@ Checking test 061 rap_sfcdiff_restart results .... Comparing 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.443574 -0:The maximum resident set size (KB) = 570788 +0:The total amount of wall time = 354.493648 +0:The maximum resident set size (KB) = 570772 Test 061 rap_sfcdiff_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/hrrr_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/hrrr_control Checking test 062 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2704,14 +2706,14 @@ Checking test 062 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 461.637244 -0:The maximum resident set size (KB) = 820708 +0:The total amount of wall time = 466.559897 +0:The maximum resident set size (KB) = 820736 Test 062 hrrr_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/hrrr_control_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/hrrr_control_decomp Checking test 063 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2758,14 +2760,14 @@ Checking test 063 hrrr_control_decomp results .... Comparing 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.207990 -0:The maximum resident set size (KB) = 820652 +0:The total amount of wall time = 482.175955 +0:The maximum resident set size (KB) = 820708 Test 063 hrrr_control_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/hrrr_control_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/hrrr_control_2threads Checking test 064 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2812,14 +2814,14 @@ Checking test 064 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 438.631980 -0:The maximum resident set size (KB) = 888376 +0:The total amount of wall time = 441.212743 +0:The maximum resident set size (KB) = 888420 Test 064 hrrr_control_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/hrrr_control_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/hrrr_control_restart Checking test 065 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2858,14 +2860,14 @@ Checking test 065 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 342.544075 -0:The maximum resident set size (KB) = 566324 +0:The total amount of wall time = 341.711004 +0:The maximum resident set size (KB) = 566612 Test 065 hrrr_control_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_v1beta -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/rrfs_v1beta +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1beta +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/rrfs_v1beta Checking test 066 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2912,14 +2914,14 @@ Checking test 066 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 478.578537 -0:The maximum resident set size (KB) = 819332 +0:The total amount of wall time = 467.017236 +0:The maximum resident set size (KB) = 820060 Test 066 rrfs_v1beta PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_v1nssl -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/rrfs_v1nssl +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1nssl +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/rrfs_v1nssl Checking test 067 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2934,14 +2936,14 @@ Checking test 067 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 586.365531 -0:The maximum resident set size (KB) = 508784 +0:The total amount of wall time = 574.350129 +0:The maximum resident set size (KB) = 509320 Test 067 rrfs_v1nssl PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/rrfs_v1nssl_nohailnoccn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/rrfs_v1nssl_nohailnoccn Checking test 068 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2956,14 +2958,14 @@ Checking test 068 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 566.201075 -0:The maximum resident set size (KB) = 502500 +0:The total amount of wall time = 557.657843 +0:The maximum resident set size (KB) = 502612 Test 068 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/rrfs_smoke_conus13km_hrrr_warm Checking test 069 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2972,14 +2974,14 @@ Checking test 069 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 153.276340 -0:The maximum resident set size (KB) = 675352 +0:The total amount of wall time = 151.611495 +0:The maximum resident set size (KB) = 675328 Test 069 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 070 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2988,14 +2990,14 @@ Checking test 070 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 94.117393 -0:The maximum resident set size (KB) = 693992 +0:The total amount of wall time = 92.381950 +0:The maximum resident set size (KB) = 694576 Test 070 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/rrfs_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/rrfs_conus13km_hrrr_warm Checking test 071 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3004,14 +3006,14 @@ Checking test 071 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 137.445112 -0:The maximum resident set size (KB) = 654084 +0:The total amount of wall time = 136.420492 +0:The maximum resident set size (KB) = 654108 Test 071 rrfs_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/rrfs_smoke_conus13km_radar_tten_warm Checking test 072 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3020,26 +3022,26 @@ Checking test 072 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 154.116878 -0:The maximum resident set size (KB) = 677936 +0:The total amount of wall time = 152.880461 +0:The maximum resident set size (KB) = 677976 Test 072 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 073 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 70.683122 -0:The maximum resident set size (KB) = 632208 +0:The total amount of wall time = 70.747897 +0:The maximum resident set size (KB) = 632268 Test 073 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_csawmg -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_csawmg +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmg +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_csawmg Checking test 074 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3050,14 +3052,14 @@ Checking test 074 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 397.852152 -0:The maximum resident set size (KB) = 527728 +0:The total amount of wall time = 398.188737 +0:The maximum resident set size (KB) = 527724 Test 074 control_csawmg PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_csawmgt -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_csawmgt +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmgt +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_csawmgt Checking test 075 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3068,14 +3070,14 @@ Checking test 075 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 394.392928 -0:The maximum resident set size (KB) = 528340 +0:The total amount of wall time = 394.556936 +0:The maximum resident set size (KB) = 528352 Test 075 control_csawmgt PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_ras -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_ras +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_ras +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_ras Checking test 076 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3086,26 +3088,26 @@ Checking test 076 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 206.650179 -0:The maximum resident set size (KB) = 491376 +0:The total amount of wall time = 204.961793 +0:The maximum resident set size (KB) = 491224 Test 076 control_ras PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_wam -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_wam +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wam +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_wam Checking test 077 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -0:The total amount of wall time = 128.151365 -0:The maximum resident set size (KB) = 206584 +0:The total amount of wall time = 129.370662 +0:The maximum resident set size (KB) = 206484 Test 077 control_wam PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8_faster -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_p8_faster +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_faster +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_p8_faster Checking test 078 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3152,14 +3154,14 @@ Checking test 078 control_p8_faster results .... Comparing 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.660276 -0:The maximum resident set size (KB) = 1423832 +0:The total amount of wall time = 173.987495 +0:The maximum resident set size (KB) = 1423824 Test 078 control_p8_faster PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control_faster -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/regional_control_faster +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control_faster +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/regional_control_faster Checking test 079 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3170,56 +3172,56 @@ Checking test 079 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 320.645621 -0:The maximum resident set size (KB) = 604580 +0:The total amount of wall time = 326.610025 +0:The maximum resident set size (KB) = 604612 Test 079 regional_control_faster PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 080 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 897.167620 -0:The maximum resident set size (KB) = 709708 +0:The total amount of wall time = 897.724326 +0:The maximum resident set size (KB) = 709660 Test 080 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 081 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 515.894294 -0:The maximum resident set size (KB) = 729904 +0:The total amount of wall time = 518.178929 +0:The maximum resident set size (KB) = 729476 Test 081 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/rrfs_conus13km_hrrr_warm_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/rrfs_conus13km_hrrr_warm_debug Checking test 082 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 794.223399 -0:The maximum resident set size (KB) = 688340 +0:The total amount of wall time = 797.233909 +0:The maximum resident set size (KB) = 688296 Test 082 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_CubedSphereGrid_debug -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_CubedSphereGrid_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_CubedSphereGrid_debug +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_CubedSphereGrid_debug Checking test 083 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3246,334 +3248,334 @@ Checking test 083 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -0:The total amount of wall time = 175.575745 -0:The maximum resident set size (KB) = 622420 +0:The total amount of wall time = 176.219711 +0:The maximum resident set size (KB) = 623116 Test 083 control_CubedSphereGrid_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_wrtGauss_netcdf_parallel_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_wrtGauss_netcdf_parallel_debug Checking test 084 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 163.776366 -0:The maximum resident set size (KB) = 620580 +0:The total amount of wall time = 163.232020 +0:The maximum resident set size (KB) = 620592 Test 084 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_stochy_debug -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_stochy_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_stochy_debug +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_stochy_debug Checking test 085 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 184.208215 -0:The maximum resident set size (KB) = 626116 +0:The total amount of wall time = 184.751016 +0:The maximum resident set size (KB) = 626144 Test 085 control_stochy_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_lndp_debug -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_lndp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_lndp_debug +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_lndp_debug Checking test 086 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 166.571663 -0:The maximum resident set size (KB) = 624908 +0:The total amount of wall time = 165.481248 +0:The maximum resident set size (KB) = 624896 Test 086 control_lndp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_csawmg_debug -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_csawmg_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmg_debug +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_csawmg_debug Checking test 087 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 256.226856 -0:The maximum resident set size (KB) = 671332 +0:The total amount of wall time = 259.709204 +0:The maximum resident set size (KB) = 671428 Test 087 control_csawmg_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_csawmgt_debug -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_csawmgt_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmgt_debug +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_csawmgt_debug Checking test 088 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 256.858167 -0:The maximum resident set size (KB) = 672304 +0:The total amount of wall time = 257.286572 +0:The maximum resident set size (KB) = 672372 Test 088 control_csawmgt_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_ras_debug -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_ras_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_ras_debug +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_ras_debug Checking test 089 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 169.775245 -0:The maximum resident set size (KB) = 635240 +0:The total amount of wall time = 172.746553 +0:The maximum resident set size (KB) = 635208 Test 089 control_ras_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_diag_debug -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_diag_debug +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_diag_debug Checking test 090 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 169.924275 -0:The maximum resident set size (KB) = 679892 +0:The total amount of wall time = 174.285989 +0:The maximum resident set size (KB) = 680288 Test 090 control_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_debug_p8 -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_debug_p8 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_debug_p8 Checking test 091 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 186.502892 -0:The maximum resident set size (KB) = 1447324 +0:The total amount of wall time = 184.474068 +0:The maximum resident set size (KB) = 1447360 Test 091 control_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_debug -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/regional_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_debug +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/regional_debug Checking test 092 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 1041.962871 -0:The maximum resident set size (KB) = 630784 +0:The total amount of wall time = 1046.393608 +0:The maximum resident set size (KB) = 630816 Test 092 regional_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_debug -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/rap_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/rap_control_debug Checking test 093 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 296.341676 -0:The maximum resident set size (KB) = 991636 +0:The total amount of wall time = 301.691945 +0:The maximum resident set size (KB) = 991820 Test 093 rap_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_debug -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/hrrr_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_debug +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/hrrr_control_debug Checking test 094 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 292.774992 -0:The maximum resident set size (KB) = 989164 +0:The total amount of wall time = 293.731134 +0:The maximum resident set size (KB) = 989104 Test 094 hrrr_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_debug -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/rap_unified_drag_suite_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/rap_unified_drag_suite_debug Checking test 095 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 296.601471 -0:The maximum resident set size (KB) = 991640 +0:The total amount of wall time = 300.073565 +0:The maximum resident set size (KB) = 991768 Test 095 rap_unified_drag_suite_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_diag_debug -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/rap_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_diag_debug +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/rap_diag_debug Checking test 096 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 309.276283 -0:The maximum resident set size (KB) = 1074836 +0:The total amount of wall time = 309.656294 +0:The maximum resident set size (KB) = 1075096 Test 096 rap_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/rap_cires_ugwp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_cires_ugwp_debug +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/rap_cires_ugwp_debug Checking test 097 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 302.908003 -0:The maximum resident set size (KB) = 990864 +0:The total amount of wall time = 301.233647 +0:The maximum resident set size (KB) = 991112 Test 097 rap_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/rap_unified_ugwp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_cires_ugwp_debug +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/rap_unified_ugwp_debug Checking test 098 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 302.996190 -0:The maximum resident set size (KB) = 991768 +0:The total amount of wall time = 308.342979 +0:The maximum resident set size (KB) = 992592 Test 098 rap_unified_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_lndp_debug -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/rap_lndp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_lndp_debug +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/rap_lndp_debug Checking test 099 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 299.319337 -0:The maximum resident set size (KB) = 993464 +0:The total amount of wall time = 298.152165 +0:The maximum resident set size (KB) = 992548 Test 099 rap_lndp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_flake_debug -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/rap_flake_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_flake_debug +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/rap_flake_debug Checking test 100 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 297.925837 -0:The maximum resident set size (KB) = 991816 +0:The total amount of wall time = 297.616574 +0:The maximum resident set size (KB) = 991720 Test 100 rap_flake_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_progcld_thompson_debug -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/rap_progcld_thompson_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_progcld_thompson_debug +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/rap_progcld_thompson_debug Checking test 101 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 296.868179 -0:The maximum resident set size (KB) = 991828 +0:The total amount of wall time = 296.728556 +0:The maximum resident set size (KB) = 991692 Test 101 rap_progcld_thompson_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_noah_debug -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/rap_noah_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_noah_debug +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/rap_noah_debug Checking test 102 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 290.613834 -0:The maximum resident set size (KB) = 989488 +0:The total amount of wall time = 289.942507 +0:The maximum resident set size (KB) = 989540 Test 102 rap_noah_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_sfcdiff_debug -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/rap_sfcdiff_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff_debug +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/rap_sfcdiff_debug Checking test 103 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 296.912919 -0:The maximum resident set size (KB) = 991380 +0:The total amount of wall time = 296.789694 +0:The maximum resident set size (KB) = 991492 Test 103 rap_sfcdiff_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/rap_noah_sfcdiff_cires_ugwp_debug Checking test 104 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 482.678258 -0:The maximum resident set size (KB) = 990212 +0:The total amount of wall time = 487.237012 +0:The maximum resident set size (KB) = 990336 Test 104 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_v1beta_debug -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/rrfs_v1beta_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1beta_debug +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/rrfs_v1beta_debug Checking test 105 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 292.308836 -0:The maximum resident set size (KB) = 988432 +0:The total amount of wall time = 293.577667 +0:The maximum resident set size (KB) = 988424 Test 105 rrfs_v1beta_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_wam_debug -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_wam_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wam_debug +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_wam_debug Checking test 106 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 307.797056 -0:The maximum resident set size (KB) = 240088 +0:The total amount of wall time = 296.745280 +0:The maximum resident set size (KB) = 240332 Test 106 control_wam_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3584,14 +3586,14 @@ Checking test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 242.246597 -0:The maximum resident set size (KB) = 851168 +0:The total amount of wall time = 246.276073 +0:The maximum resident set size (KB) = 851052 Test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/rap_control_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/rap_control_dyn32_phy32 Checking test 108 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3638,14 +3640,14 @@ Checking test 108 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 402.192335 -0:The maximum resident set size (KB) = 707880 +0:The total amount of wall time = 394.618756 +0:The maximum resident set size (KB) = 707760 Test 108 rap_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/hrrr_control_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/hrrr_control_dyn32_phy32 Checking test 109 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3692,14 +3694,14 @@ Checking test 109 hrrr_control_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 208.936609 -0:The maximum resident set size (KB) = 706524 +0:The total amount of wall time = 204.666811 +0:The maximum resident set size (KB) = 706420 Test 109 hrrr_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/rap_2threads_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/rap_2threads_dyn32_phy32 Checking test 110 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3746,14 +3748,14 @@ Checking test 110 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 382.924346 -0:The maximum resident set size (KB) = 759440 +0:The total amount of wall time = 383.963679 +0:The maximum resident set size (KB) = 759496 Test 110 rap_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/hrrr_control_2threads_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/hrrr_control_2threads_dyn32_phy32 Checking test 111 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3800,14 +3802,14 @@ Checking test 111 hrrr_control_2threads_dyn32_phy32 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 = 196.252523 -0:The maximum resident set size (KB) = 752640 +0:The total amount of wall time = 198.736870 +0:The maximum resident set size (KB) = 756904 Test 111 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/hrrr_control_decomp_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/hrrr_control_decomp_dyn32_phy32 Checking test 112 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3854,14 +3856,14 @@ Checking test 112 hrrr_control_decomp_dyn32_phy32 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 = 220.385903 -0:The maximum resident set size (KB) = 704404 +0:The total amount of wall time = 221.546232 +0:The maximum resident set size (KB) = 704412 Test 112 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/rap_restart_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/rap_restart_dyn32_phy32 Checking test 113 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3900,14 +3902,14 @@ Checking test 113 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 294.042315 -0:The maximum resident set size (KB) = 544576 +0:The total amount of wall time = 294.097855 +0:The maximum resident set size (KB) = 544468 Test 113 rap_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/hrrr_control_restart_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/hrrr_control_restart_dyn32_phy32 Checking test 114 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3946,14 +3948,14 @@ Checking test 114 hrrr_control_restart_dyn32_phy32 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 = 108.834169 -0:The maximum resident set size (KB) = 537492 +0:The total amount of wall time = 107.580176 +0:The maximum resident set size (KB) = 537560 Test 114 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_dyn64_phy32 -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/rap_control_dyn64_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn64_phy32 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/rap_control_dyn64_phy32 Checking test 115 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4000,81 +4002,81 @@ Checking test 115 rap_control_dyn64_phy32 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 = 272.251136 -0:The maximum resident set size (KB) = 730516 +0:The total amount of wall time = 272.444827 +0:The maximum resident set size (KB) = 730496 Test 115 rap_control_dyn64_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/rap_control_debug_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/rap_control_debug_dyn32_phy32 Checking test 116 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 291.440812 -0:The maximum resident set size (KB) = 877808 +0:The total amount of wall time = 295.897807 +0:The maximum resident set size (KB) = 878144 Test 116 rap_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/hrrr_control_debug_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/hrrr_control_debug_dyn32_phy32 Checking test 117 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 286.442616 -0:The maximum resident set size (KB) = 875864 +0:The total amount of wall time = 291.526902 +0:The maximum resident set size (KB) = 875956 Test 117 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/rap_control_dyn64_phy32_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug_dyn64_phy32 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/rap_control_dyn64_phy32_debug Checking test 118 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 296.310465 -0:The maximum resident set size (KB) = 894920 +0:The total amount of wall time = 299.472788 +0:The maximum resident set size (KB) = 895000 Test 118 rap_control_dyn64_phy32_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_atm -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/hafs_regional_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/hafs_regional_atm Checking test 119 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -0:The total amount of wall time = 259.111922 -0:The maximum resident set size (KB) = 743084 +0:The total amount of wall time = 260.559560 +0:The maximum resident set size (KB) = 742252 Test 119 hafs_regional_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/hafs_regional_atm_thompson_gfdlsf +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/hafs_regional_atm_thompson_gfdlsf Checking test 120 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -0:The total amount of wall time = 289.408352 -0:The maximum resident set size (KB) = 1099856 +0:The total amount of wall time = 295.025206 +0:The maximum resident set size (KB) = 1100012 Test 120 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_atm_ocn -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/hafs_regional_atm_ocn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_ocn +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/hafs_regional_atm_ocn Checking test 121 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4083,30 +4085,30 @@ Checking test 121 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 454.748565 -0:The maximum resident set size (KB) = 740984 +0:The total amount of wall time = 455.192770 +0:The maximum resident set size (KB) = 740944 Test 121 hafs_regional_atm_ocn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_atm_wav -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/hafs_regional_atm_wav +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_wav +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/hafs_regional_atm_wav Checking test 122 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - Comparing 20190829.060000.restart.ww3 .........OK + Comparing ufs.hafs.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 = 1048.642507 -0:The maximum resident set size (KB) = 769952 +0:The total amount of wall time = 1063.511316 +0:The maximum resident set size (KB) = 768960 Test 122 hafs_regional_atm_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_atm_ocn_wav -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/hafs_regional_atm_ocn_wav +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_ocn_wav +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/hafs_regional_atm_ocn_wav Checking test 123 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4114,31 +4116,31 @@ Checking test 123 hafs_regional_atm_ocn_wav results .... Comparing archs.2019_241_06.a .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - Comparing 20190829.060000.restart.ww3 .........OK + Comparing ufs.hafs.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 = 1155.858452 -0:The maximum resident set size (KB) = 792576 +0:The total amount of wall time = 1094.683601 +0:The maximum resident set size (KB) = 793104 Test 123 hafs_regional_atm_ocn_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_1nest_atm -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/hafs_regional_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_1nest_atm +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/hafs_regional_1nest_atm Checking test 124 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 375.791173 -0:The maximum resident set size (KB) = 300452 +0:The total amount of wall time = 374.587788 +0:The maximum resident set size (KB) = 300736 Test 124 hafs_regional_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/hafs_regional_telescopic_2nests_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/hafs_regional_telescopic_2nests_atm Checking test 125 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4147,28 +4149,28 @@ Checking test 125 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -0:The total amount of wall time = 430.392690 -0:The maximum resident set size (KB) = 319900 +0:The total amount of wall time = 428.124458 +0:The maximum resident set size (KB) = 320264 Test 125 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_global_1nest_atm -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/hafs_global_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_global_1nest_atm +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/hafs_global_1nest_atm Checking test 126 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 171.544391 -0:The maximum resident set size (KB) = 213572 +0:The total amount of wall time = 171.932162 +0:The maximum resident set size (KB) = 214180 Test 126 hafs_global_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_global_multiple_4nests_atm -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/hafs_global_multiple_4nests_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_global_multiple_4nests_atm +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/hafs_global_multiple_4nests_atm Checking test 127 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4186,14 +4188,14 @@ Checking test 127 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -0:The total amount of wall time = 500.696745 -0:The maximum resident set size (KB) = 302608 +0:The total amount of wall time = 484.892247 +0:The maximum resident set size (KB) = 300240 Test 127 hafs_global_multiple_4nests_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/hafs_regional_specified_moving_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/hafs_regional_specified_moving_1nest_atm Checking test 128 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4202,28 +4204,28 @@ Checking test 128 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -0:The total amount of wall time = 240.268649 -0:The maximum resident set size (KB) = 318204 +0:The total amount of wall time = 240.751910 +0:The maximum resident set size (KB) = 317936 Test 128 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/hafs_regional_storm_following_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/hafs_regional_storm_following_1nest_atm Checking test 129 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 228.172950 -0:The maximum resident set size (KB) = 318548 +0:The total amount of wall time = 227.430924 +0:The maximum resident set size (KB) = 318400 Test 129 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/hafs_regional_storm_following_1nest_atm_ocn Checking test 130 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4232,42 +4234,42 @@ Checking test 130 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -0:The total amount of wall time = 282.453055 -0:The maximum resident set size (KB) = 376224 +0:The total amount of wall time = 279.903777 +0:The maximum resident set size (KB) = 376124 Test 130 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_global_storm_following_1nest_atm -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/hafs_global_storm_following_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_global_storm_following_1nest_atm +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/hafs_global_storm_following_1nest_atm Checking test 131 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 68.943271 -0:The maximum resident set size (KB) = 233264 +0:The total amount of wall time = 67.125011 +0:The maximum resident set size (KB) = 233296 Test 131 hafs_global_storm_following_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 132 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 822.999725 -0:The maximum resident set size (KB) = 409468 +0:The total amount of wall time = 826.567695 +0:The maximum resident set size (KB) = 409072 Test 132 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 133 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4278,14 +4280,14 @@ Checking test 133 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -0:The total amount of wall time = 704.297067 -0:The maximum resident set size (KB) = 427004 +0:The total amount of wall time = 716.790689 +0:The maximum resident set size (KB) = 426600 Test 133 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_docn -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/hafs_regional_docn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_docn +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/hafs_regional_docn Checking test 134 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4293,14 +4295,14 @@ Checking test 134 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 391.952463 -0:The maximum resident set size (KB) = 755604 +0:The total amount of wall time = 378.353398 +0:The maximum resident set size (KB) = 755540 Test 134 hafs_regional_docn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_docn_oisst -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/hafs_regional_docn_oisst +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_docn_oisst +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/hafs_regional_docn_oisst Checking test 135 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4308,131 +4310,131 @@ Checking test 135 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 380.146394 -0:The maximum resident set size (KB) = 735040 +0:The total amount of wall time = 392.773487 +0:The maximum resident set size (KB) = 735224 Test 135 hafs_regional_docn_oisst PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_datm_cdeps -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/hafs_regional_datm_cdeps +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_datm_cdeps +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/hafs_regional_datm_cdeps Checking test 136 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -0:The total amount of wall time = 1276.161233 -0:The maximum resident set size (KB) = 887840 +0:The total amount of wall time = 1160.652538 +0:The maximum resident set size (KB) = 887248 Test 136 hafs_regional_datm_cdeps PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/datm_cdeps_control_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/datm_cdeps_control_cfsr Checking test 137 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 167.766498 -0:The maximum resident set size (KB) = 716680 +0:The total amount of wall time = 167.960899 +0:The maximum resident set size (KB) = 727708 Test 137 datm_cdeps_control_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/datm_cdeps_restart_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/datm_cdeps_restart_cfsr Checking test 138 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 100.898869 -0:The maximum resident set size (KB) = 716224 +0:The total amount of wall time = 100.923811 +0:The maximum resident set size (KB) = 715936 Test 138 datm_cdeps_restart_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_control_gefs -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/datm_cdeps_control_gefs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_gefs +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/datm_cdeps_control_gefs Checking test 139 datm_cdeps_control_gefs 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.670076 -0:The maximum resident set size (KB) = 607484 +0:The total amount of wall time = 160.846763 +0:The maximum resident set size (KB) = 607508 Test 139 datm_cdeps_control_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_iau_gefs -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/datm_cdeps_iau_gefs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_iau_gefs +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/datm_cdeps_iau_gefs Checking test 140 datm_cdeps_iau_gefs 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 = 164.454290 -0:The maximum resident set size (KB) = 607484 +0:The total amount of wall time = 163.209346 +0:The maximum resident set size (KB) = 607496 Test 140 datm_cdeps_iau_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_stochy_gefs -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/datm_cdeps_stochy_gefs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_stochy_gefs +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/datm_cdeps_stochy_gefs Checking test 141 datm_cdeps_stochy_gefs 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 = 164.688733 -0:The maximum resident set size (KB) = 607532 +0:The total amount of wall time = 163.830525 +0:The maximum resident set size (KB) = 607500 Test 141 datm_cdeps_stochy_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_ciceC_cfsr -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/datm_cdeps_ciceC_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_ciceC_cfsr +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/datm_cdeps_ciceC_cfsr Checking test 142 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 169.122143 -0:The maximum resident set size (KB) = 727724 +0:The total amount of wall time = 167.775543 +0:The maximum resident set size (KB) = 716688 Test 142 datm_cdeps_ciceC_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_bulk_cfsr -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/datm_cdeps_bulk_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_bulk_cfsr +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/datm_cdeps_bulk_cfsr Checking test 143 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 169.012426 -0:The maximum resident set size (KB) = 716712 +0:The total amount of wall time = 167.876101 +0:The maximum resident set size (KB) = 716696 Test 143 datm_cdeps_bulk_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_bulk_gefs -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/datm_cdeps_bulk_gefs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_bulk_gefs +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/datm_cdeps_bulk_gefs Checking test 144 datm_cdeps_bulk_gefs 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 = 161.203569 -0:The maximum resident set size (KB) = 607472 +0:The total amount of wall time = 155.505139 +0:The maximum resident set size (KB) = 607468 Test 144 datm_cdeps_bulk_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_mx025_cfsr -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/datm_cdeps_mx025_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_mx025_cfsr +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/datm_cdeps_mx025_cfsr Checking test 145 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4441,14 +4443,14 @@ Checking test 145 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 424.041391 -0:The maximum resident set size (KB) = 514328 +0:The total amount of wall time = 419.366060 +0:The maximum resident set size (KB) = 514440 Test 145 datm_cdeps_mx025_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_mx025_gefs -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/datm_cdeps_mx025_gefs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_mx025_gefs +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/datm_cdeps_mx025_gefs Checking test 146 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4457,77 +4459,77 @@ Checking test 146 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 448.683812 -0:The maximum resident set size (KB) = 494784 +0:The total amount of wall time = 414.294541 +0:The maximum resident set size (KB) = 494788 Test 146 datm_cdeps_mx025_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/datm_cdeps_multiple_files_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/datm_cdeps_multiple_files_cfsr Checking test 147 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 161.620578 -0:The maximum resident set size (KB) = 716764 +0:The total amount of wall time = 161.603854 +0:The maximum resident set size (KB) = 716748 Test 147 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/datm_cdeps_3072x1536_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/datm_cdeps_3072x1536_cfsr Checking test 148 datm_cdeps_3072x1536_cfsr 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 = 257.443345 -0:The maximum resident set size (KB) = 1940332 +0:The total amount of wall time = 241.479613 +0:The maximum resident set size (KB) = 1940300 Test 148 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_gfs -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/datm_cdeps_gfs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_gfs +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/datm_cdeps_gfs Checking test 149 datm_cdeps_gfs 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 = 255.750273 -0:The maximum resident set size (KB) = 1940300 +0:The total amount of wall time = 240.458291 +0:The maximum resident set size (KB) = 1933664 Test 149 datm_cdeps_gfs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_debug_cfsr -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/datm_cdeps_debug_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_debug_cfsr +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/datm_cdeps_debug_cfsr Checking test 150 datm_cdeps_debug_cfsr 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 = 466.665611 -0:The maximum resident set size (KB) = 706636 +0:The total amount of wall time = 457.195281 +0:The maximum resident set size (KB) = 706672 Test 150 datm_cdeps_debug_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_control_cfsr_faster -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/datm_cdeps_control_cfsr_faster +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr_faster +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/datm_cdeps_control_cfsr_faster Checking test 151 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.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 = 168.578577 -0:The maximum resident set size (KB) = 716724 +0:The total amount of wall time = 166.612110 +0:The maximum resident set size (KB) = 727792 Test 151 datm_cdeps_control_cfsr_faster PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/datm_cdeps_lnd_gswp3 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_lnd_gswp3 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/datm_cdeps_lnd_gswp3 Checking test 152 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4536,14 +4538,14 @@ Checking test 152 datm_cdeps_lnd_gswp3 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 = 11.287246 -0:The maximum resident set size (KB) = 204568 +0:The total amount of wall time = 10.257046 +0:The maximum resident set size (KB) = 208228 Test 152 datm_cdeps_lnd_gswp3 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/datm_cdeps_lnd_gswp3_rst +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_lnd_gswp3 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/datm_cdeps_lnd_gswp3_rst Checking test 153 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4552,14 +4554,14 @@ Checking test 153 datm_cdeps_lnd_gswp3_rst 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 = 15.387472 -0:The maximum resident set size (KB) = 210120 +0:The total amount of wall time = 15.509588 +0:The maximum resident set size (KB) = 208268 Test 153 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8_atmlnd_sbs -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_p8_atmlnd_sbs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_atmlnd_sbs +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_p8_atmlnd_sbs Checking test 154 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4644,14 +4646,14 @@ Checking test 154 control_p8_atmlnd_sbs 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 = 233.608333 -0:The maximum resident set size (KB) = 1462964 +0:The total amount of wall time = 233.664393 +0:The maximum resident set size (KB) = 1462940 Test 154 control_p8_atmlnd_sbs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/control_atmwav -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/control_atmwav +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_atmwav +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_atmwav Checking test 155 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4695,14 +4697,14 @@ Checking test 155 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -0:The total amount of wall time = 100.977513 -0:The maximum resident set size (KB) = 474568 +0:The total amount of wall time = 100.180884 +0:The maximum resident set size (KB) = 475236 Test 155 control_atmwav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/atmaero_control_p8 -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/atmaero_control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/atmaero_control_p8 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/atmaero_control_p8 Checking test 156 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4746,14 +4748,14 @@ Checking test 156 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 250.080174 -0:The maximum resident set size (KB) = 2704016 +0:The total amount of wall time = 253.249726 +0:The maximum resident set size (KB) = 2704032 Test 156 atmaero_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/atmaero_control_p8_rad -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/atmaero_control_p8_rad +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/atmaero_control_p8_rad +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/atmaero_control_p8_rad Checking test 157 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4797,14 +4799,14 @@ Checking test 157 atmaero_control_p8_rad results .... Comparing 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.389420 -0:The maximum resident set size (KB) = 2758092 +0:The total amount of wall time = 297.542351 +0:The maximum resident set size (KB) = 2758052 Test 157 atmaero_control_p8_rad PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/atmaero_control_p8_rad_micro -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/atmaero_control_p8_rad_micro +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/atmaero_control_p8_rad_micro +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/atmaero_control_p8_rad_micro Checking test 158 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4848,14 +4850,14 @@ Checking test 158 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 308.269046 -0:The maximum resident set size (KB) = 2764448 +0:The total amount of wall time = 310.140681 +0:The maximum resident set size (KB) = 2764484 Test 158 atmaero_control_p8_rad_micro PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_atmaq -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/regional_atmaq +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_atmaq +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/regional_atmaq Checking test 159 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4871,14 +4873,14 @@ Checking test 159 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -0:The total amount of wall time = 753.452314 -0:The maximum resident set size (KB) = 999516 +0:The total amount of wall time = 741.578007 +0:The maximum resident set size (KB) = 999528 Test 159 regional_atmaq PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_atmaq_faster -working dir = /glade/scratch/zshrader/FV3_RT/rt_26534/regional_atmaq_faster +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_atmaq_faster +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/regional_atmaq_faster Checking test 160 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4894,12 +4896,12 @@ Checking test 160 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -0:The total amount of wall time = 704.415345 -0:The maximum resident set size (KB) = 999412 +0:The total amount of wall time = 697.408164 +0:The maximum resident set size (KB) = 999356 Test 160 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Thu Mar 30 15:24:26 MDT 2023 -Elapsed time: 01h:15m:41s. Have a nice day! +Mon Apr 3 09:35:47 MDT 2023 +Elapsed time: 01h:40m:25s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index 32d0ff7181b..d2948742c11 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,42 +1,42 @@ -Thu Mar 30 13:33:29 EDT 2023 +Sun Apr 2 09:24:39 EDT 2023 Start Regression test -Compile 001 elapsed time 927 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 919 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 837 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 390 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 309 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 779 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 832 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 1122 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 786 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 742 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 011 elapsed time 735 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 709 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 920 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 310 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 332 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 687 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 697 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 244 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 239 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 765 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 021 elapsed time 305 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 953 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 808 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 024 elapsed time 309 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 277 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 340 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 201 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 817 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 776 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 786 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 790 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 302 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 920 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8_mixedmode -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/cpld_control_p8_mixedmode +Compile 001 elapsed time 915 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 915 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 824 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 353 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 334 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 782 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 782 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 1046 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 820 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 746 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 011 elapsed time 666 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 625 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 841 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 272 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 219 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 655 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 684 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 222 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 235 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 706 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 021 elapsed time 244 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 888 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 710 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 024 elapsed time 282 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 167 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 291 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 103 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 674 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 671 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 693 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 621 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 231 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 785 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8_mixedmode +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -101,14 +101,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 354.660131 - 0: The maximum resident set size (KB) = 1535244 + 0: The total amount of wall time = 337.379104 + 0: The maximum resident set size (KB) = 1533360 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_gfsv17 -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/cpld_control_gfsv17 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_gfsv17 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -172,14 +172,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 270.517015 - 0: The maximum resident set size (KB) = 1444704 + 0: The total amount of wall time = 243.804098 + 0: The maximum resident set size (KB) = 1443808 Test 002 cpld_control_gfsv17 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/cpld_control_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -244,14 +244,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 400.503709 - 0: The maximum resident set size (KB) = 1568816 + 0: The total amount of wall time = 375.275648 + 0: The maximum resident set size (KB) = 1567108 Test 003 cpld_control_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/cpld_restart_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -304,14 +304,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 243.870455 - 0: The maximum resident set size (KB) = 1018768 + 0: The total amount of wall time = 221.913359 + 0: The maximum resident set size (KB) = 1018000 Test 004 cpld_restart_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/cpld_control_qr_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -376,14 +376,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 399.315919 - 0: The maximum resident set size (KB) = 1578864 + 0: The total amount of wall time = 386.958238 + 0: The maximum resident set size (KB) = 1578516 Test 005 cpld_control_qr_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/cpld_restart_qr_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -436,14 +436,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 240.825454 - 0: The maximum resident set size (KB) = 1032732 + 0: The total amount of wall time = 234.547171 + 0: The maximum resident set size (KB) = 1031216 Test 006 cpld_restart_qr_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/cpld_2threads_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -496,14 +496,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 427.074361 - 0: The maximum resident set size (KB) = 1758276 + 0: The total amount of wall time = 396.835696 + 0: The maximum resident set size (KB) = 1762064 Test 007 cpld_2threads_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/cpld_decomp_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -556,14 +556,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 404.300273 - 0: The maximum resident set size (KB) = 1563084 + 0: The total amount of wall time = 377.292994 + 0: The maximum resident set size (KB) = 1562028 Test 008 cpld_decomp_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/cpld_mpi_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -616,14 +616,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 347.624854 - 0: The maximum resident set size (KB) = 1526744 + 0: The total amount of wall time = 313.068124 + 0: The maximum resident set size (KB) = 1526904 Test 009 cpld_mpi_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_bmark_p8 -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/cpld_bmark_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_bmark_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/cpld_bmark_p8 Checking test 010 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -671,14 +671,14 @@ Checking test 010 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 909.526947 - 0: The maximum resident set size (KB) = 2510300 + 0: The total amount of wall time = 880.657538 + 0: The maximum resident set size (KB) = 2502660 Test 010 cpld_bmark_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_bmark_p8 -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/cpld_restart_bmark_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_bmark_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/cpld_restart_bmark_p8 Checking test 011 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -726,14 +726,14 @@ Checking test 011 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 669.235366 - 0: The maximum resident set size (KB) = 2336236 + 0: The total amount of wall time = 655.415980 + 0: The maximum resident set size (KB) = 2323520 Test 011 cpld_restart_bmark_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_noaero_p8 -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/cpld_control_noaero_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_noaero_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/cpld_control_noaero_p8 Checking test 012 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -797,14 +797,14 @@ Checking test 012 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 307.461578 - 0: The maximum resident set size (KB) = 1442468 + 0: The total amount of wall time = 289.252843 + 0: The maximum resident set size (KB) = 1441076 Test 012 cpld_control_noaero_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_c96_noaero_p8 -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/cpld_control_nowave_noaero_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_c96_noaero_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/cpld_control_nowave_noaero_p8 Checking test 013 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -866,14 +866,14 @@ Checking test 013 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 318.556115 - 0: The maximum resident set size (KB) = 1474700 + 0: The total amount of wall time = 296.679556 + 0: The maximum resident set size (KB) = 1475292 Test 013 cpld_control_nowave_noaero_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_debug_p8 -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/cpld_debug_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_debug_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/cpld_debug_p8 Checking test 014 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -926,14 +926,14 @@ Checking test 014 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 607.235690 - 0: The maximum resident set size (KB) = 1595960 + 0: The total amount of wall time = 594.321638 + 0: The maximum resident set size (KB) = 1603436 Test 014 cpld_debug_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_debug_noaero_p8 -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/cpld_debug_noaero_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_debug_noaero_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/cpld_debug_noaero_p8 Checking test 015 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -985,14 +985,14 @@ Checking test 015 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 424.380613 - 0: The maximum resident set size (KB) = 1442312 + 0: The total amount of wall time = 402.331892 + 0: The maximum resident set size (KB) = 1441804 Test 015 cpld_debug_noaero_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_noaero_p8_agrid -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/cpld_control_noaero_p8_agrid +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_noaero_p8_agrid +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/cpld_control_noaero_p8_agrid Checking test 016 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1054,14 +1054,14 @@ Checking test 016 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 331.087903 - 0: The maximum resident set size (KB) = 1478140 + 0: The total amount of wall time = 298.330136 + 0: The maximum resident set size (KB) = 1478176 Test 016 cpld_control_noaero_p8_agrid PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_c48 -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/cpld_control_c48 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_c48 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/cpld_control_c48 Checking test 017 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1111,14 +1111,14 @@ Checking test 017 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 614.873827 - 0: The maximum resident set size (KB) = 2562984 + 0: The total amount of wall time = 604.869699 + 0: The maximum resident set size (KB) = 2575148 Test 017 cpld_control_c48 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_warmstart_c48 -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/cpld_warmstart_c48 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_warmstart_c48 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/cpld_warmstart_c48 Checking test 018 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1168,14 +1168,14 @@ Checking test 018 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 162.308126 - 0: The maximum resident set size (KB) = 2575184 + 0: The total amount of wall time = 160.794785 + 0: The maximum resident set size (KB) = 2588648 Test 018 cpld_warmstart_c48 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_warmstart_c48 -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/cpld_restart_c48 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_warmstart_c48 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/cpld_restart_c48 Checking test 019 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1225,14 +1225,14 @@ Checking test 019 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 93.786835 - 0: The maximum resident set size (KB) = 1989736 + 0: The total amount of wall time = 85.028201 + 0: The maximum resident set size (KB) = 2007272 Test 019 cpld_restart_c48 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8_faster -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/cpld_control_p8_faster +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8_faster +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/cpld_control_p8_faster Checking test 020 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1297,14 +1297,14 @@ Checking test 020 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 393.249795 - 0: The maximum resident set size (KB) = 1567804 + 0: The total amount of wall time = 367.618696 + 0: The maximum resident set size (KB) = 1566572 Test 020 cpld_control_p8_faster PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_CubedSphereGrid -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/control_CubedSphereGrid +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_CubedSphereGrid +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_CubedSphereGrid Checking test 021 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1331,28 +1331,28 @@ Checking test 021 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 143.810637 - 0: The maximum resident set size (KB) = 437708 + 0: The total amount of wall time = 141.617967 + 0: The maximum resident set size (KB) = 437704 Test 021 control_CubedSphereGrid PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_CubedSphereGrid_parallel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/control_CubedSphereGrid_parallel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_CubedSphereGrid_parallel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_CubedSphereGrid_parallel Checking test 022 control_CubedSphereGrid_parallel 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 = 189.202455 - 0: The maximum resident set size (KB) = 438068 + 0: The total amount of wall time = 146.339181 + 0: The maximum resident set size (KB) = 437792 Test 022 control_CubedSphereGrid_parallel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_latlon -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/control_latlon +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_latlon +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_latlon Checking test 023 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1363,14 +1363,14 @@ Checking test 023 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 146.391579 - 0: The maximum resident set size (KB) = 437872 + 0: The total amount of wall time = 147.509240 + 0: The maximum resident set size (KB) = 437732 Test 023 control_latlon PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/control_wrtGauss_netcdf_parallel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_wrtGauss_netcdf_parallel Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1381,14 +1381,14 @@ Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 202.348695 - 0: The maximum resident set size (KB) = 437816 + 0: The total amount of wall time = 148.462769 + 0: The maximum resident set size (KB) = 437716 Test 024 control_wrtGauss_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_c48 -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/control_c48 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c48 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_c48 Checking test 025 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1427,14 +1427,14 @@ Checking test 025 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 421.209655 -0: The maximum resident set size (KB) = 634780 +0: The total amount of wall time = 422.458628 +0: The maximum resident set size (KB) = 634784 Test 025 control_c48 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_c192 -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/control_c192 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c192 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_c192 Checking test 026 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1445,14 +1445,14 @@ Checking test 026 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 590.698489 - 0: The maximum resident set size (KB) = 544724 + 0: The total amount of wall time = 579.449446 + 0: The maximum resident set size (KB) = 544692 Test 026 control_c192 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_c384 -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/control_c384 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c384 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_c384 Checking test 027 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1463,14 +1463,14 @@ Checking test 027 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1116.398335 - 0: The maximum resident set size (KB) = 823096 + 0: The total amount of wall time = 1101.496469 + 0: The maximum resident set size (KB) = 823444 Test 027 control_c384 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_c384gdas -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/control_c384gdas +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c384gdas +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_c384gdas Checking test 028 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1513,14 +1513,14 @@ Checking test 028 control_c384gdas 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 = 946.437792 - 0: The maximum resident set size (KB) = 954740 + 0: The total amount of wall time = 937.409324 + 0: The maximum resident set size (KB) = 954444 Test 028 control_c384gdas PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_stochy -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/control_stochy +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_stochy +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_stochy Checking test 029 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1531,28 +1531,28 @@ Checking test 029 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 101.664406 - 0: The maximum resident set size (KB) = 441380 + 0: The total amount of wall time = 107.873376 + 0: The maximum resident set size (KB) = 441372 Test 029 control_stochy PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_stochy -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/control_stochy_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_stochy +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_stochy_restart Checking test 030 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 52.479023 - 0: The maximum resident set size (KB) = 195784 + 0: The total amount of wall time = 56.848472 + 0: The maximum resident set size (KB) = 195708 Test 030 control_stochy_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_lndp -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/control_lndp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_lndp +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_lndp Checking test 031 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1563,14 +1563,14 @@ Checking test 031 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 92.521995 - 0: The maximum resident set size (KB) = 440876 + 0: The total amount of wall time = 88.530562 + 0: The maximum resident set size (KB) = 441016 Test 031 control_lndp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_iovr4 -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/control_iovr4 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_iovr4 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_iovr4 Checking test 032 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1585,14 +1585,14 @@ Checking test 032 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 151.094709 - 0: The maximum resident set size (KB) = 437772 + 0: The total amount of wall time = 145.189935 + 0: The maximum resident set size (KB) = 437784 Test 032 control_iovr4 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_iovr5 -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/control_iovr5 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_iovr5 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_iovr5 Checking test 033 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1607,14 +1607,14 @@ Checking test 033 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 173.289795 - 0: The maximum resident set size (KB) = 437816 + 0: The total amount of wall time = 146.690051 + 0: The maximum resident set size (KB) = 437672 Test 033 control_iovr5 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/control_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_p8 Checking test 034 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1661,14 +1661,14 @@ Checking test 034 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 203.332097 - 0: The maximum resident set size (KB) = 1380064 + 0: The total amount of wall time = 199.435120 + 0: The maximum resident set size (KB) = 1380124 Test 034 control_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/control_restart_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_restart_p8 Checking test 035 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1707,14 +1707,14 @@ Checking test 035 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 113.868484 - 0: The maximum resident set size (KB) = 556668 + 0: The total amount of wall time = 109.339861 + 0: The maximum resident set size (KB) = 556640 Test 035 control_restart_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/control_qr_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_qr_p8 Checking test 036 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1761,14 +1761,14 @@ Checking test 036 control_qr_p8 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 = 202.753107 - 0: The maximum resident set size (KB) = 1383284 + 0: The total amount of wall time = 187.484069 + 0: The maximum resident set size (KB) = 1383216 Test 036 control_qr_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/control_restart_qr_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_restart_qr_p8 Checking test 037 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1807,14 +1807,14 @@ Checking test 037 control_restart_qr_p8 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 = 113.283489 - 0: The maximum resident set size (KB) = 581496 + 0: The total amount of wall time = 105.297828 + 0: The maximum resident set size (KB) = 581436 Test 037 control_restart_qr_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/control_decomp_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_decomp_p8 Checking test 038 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1857,14 +1857,14 @@ Checking test 038 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 209.766487 - 0: The maximum resident set size (KB) = 1373956 + 0: The total amount of wall time = 199.119694 + 0: The maximum resident set size (KB) = 1373992 Test 038 control_decomp_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/control_2threads_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_2threads_p8 Checking test 039 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1907,14 +1907,14 @@ Checking test 039 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 189.609388 - 0: The maximum resident set size (KB) = 1464144 + 0: The total amount of wall time = 181.332271 + 0: The maximum resident set size (KB) = 1463960 Test 039 control_2threads_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8_lndp -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/control_p8_lndp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_lndp +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_p8_lndp Checking test 040 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1933,14 +1933,14 @@ Checking test 040 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 353.432983 - 0: The maximum resident set size (KB) = 1381164 + 0: The total amount of wall time = 332.113721 + 0: The maximum resident set size (KB) = 1381152 Test 040 control_p8_lndp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8_rrtmgp -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/control_p8_rrtmgp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_rrtmgp +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_p8_rrtmgp Checking test 041 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1987,14 +1987,14 @@ Checking test 041 control_p8_rrtmgp results .... Comparing 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.800419 - 0: The maximum resident set size (KB) = 1437480 + 0: The total amount of wall time = 256.529293 + 0: The maximum resident set size (KB) = 1437508 Test 041 control_p8_rrtmgp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8_mynn -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/control_p8_mynn +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_mynn +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_p8_mynn Checking test 042 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2041,14 +2041,14 @@ Checking test 042 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 205.460321 - 0: The maximum resident set size (KB) = 1384124 + 0: The total amount of wall time = 209.338087 + 0: The maximum resident set size (KB) = 1384144 Test 042 control_p8_mynn PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/merra2_thompson -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/merra2_thompson +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/merra2_thompson +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/merra2_thompson Checking test 043 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2095,14 +2095,14 @@ Checking test 043 merra2_thompson results .... Comparing 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.040739 - 0: The maximum resident set size (KB) = 1385508 + 0: The total amount of wall time = 210.998743 + 0: The maximum resident set size (KB) = 1385524 Test 043 merra2_thompson PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/regional_control +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/regional_control Checking test 044 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2113,28 +2113,28 @@ Checking test 044 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 372.787945 - 0: The maximum resident set size (KB) = 578856 + 0: The total amount of wall time = 336.527363 + 0: The maximum resident set size (KB) = 578968 Test 044 regional_control PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/regional_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/regional_restart Checking test 045 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 176.448811 - 0: The maximum resident set size (KB) = 578584 + 0: The total amount of wall time = 172.991984 + 0: The maximum resident set size (KB) = 578924 Test 045 regional_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/regional_control_qr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/regional_control_qr Checking test 046 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2145,28 +2145,28 @@ Checking test 046 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 352.725543 - 0: The maximum resident set size (KB) = 578964 + 0: The total amount of wall time = 341.668663 + 0: The maximum resident set size (KB) = 578860 Test 046 regional_control_qr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/regional_restart_qr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/regional_restart_qr Checking test 047 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 186.317886 - 0: The maximum resident set size (KB) = 578592 + 0: The total amount of wall time = 181.600885 + 0: The maximum resident set size (KB) = 578400 Test 047 regional_restart_qr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/regional_decomp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/regional_decomp Checking test 048 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2177,14 +2177,14 @@ Checking test 048 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 346.398887 - 0: The maximum resident set size (KB) = 580756 + 0: The total amount of wall time = 347.356497 + 0: The maximum resident set size (KB) = 580732 Test 048 regional_decomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/regional_2threads +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/regional_2threads Checking test 049 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2195,14 +2195,14 @@ Checking test 049 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 220.099107 - 0: The maximum resident set size (KB) = 585352 + 0: The total amount of wall time = 199.889137 + 0: The maximum resident set size (KB) = 586140 Test 049 regional_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_noquilt -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/regional_noquilt +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_noquilt +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/regional_noquilt Checking test 050 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2210,28 +2210,28 @@ Checking test 050 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 371.085026 - 0: The maximum resident set size (KB) = 573128 + 0: The total amount of wall time = 358.079215 + 0: The maximum resident set size (KB) = 573140 Test 050 regional_noquilt PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_netcdf_parallel -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/regional_netcdf_parallel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_netcdf_parallel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/regional_netcdf_parallel Checking test 051 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 352.110650 - 0: The maximum resident set size (KB) = 578620 + 0: The total amount of wall time = 335.771778 + 0: The maximum resident set size (KB) = 578532 Test 051 regional_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/regional_2dwrtdecomp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/regional_2dwrtdecomp Checking test 052 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2242,14 +2242,14 @@ Checking test 052 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 348.466728 - 0: The maximum resident set size (KB) = 578952 + 0: The total amount of wall time = 341.785629 + 0: The maximum resident set size (KB) = 578896 Test 052 regional_2dwrtdecomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/fv3_regional_wofs -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/regional_wofs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/fv3_regional_wofs +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/regional_wofs Checking test 053 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2260,14 +2260,14 @@ Checking test 053 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 421.710683 - 0: The maximum resident set size (KB) = 263764 + 0: The total amount of wall time = 426.371150 + 0: The maximum resident set size (KB) = 263940 Test 053 regional_wofs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/rap_control +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/rap_control Checking test 054 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2314,14 +2314,14 @@ Checking test 054 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 488.192699 - 0: The maximum resident set size (KB) = 808048 + 0: The total amount of wall time = 472.430181 + 0: The maximum resident set size (KB) = 808228 Test 054 rap_control PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_spp_sppt_shum_skeb -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/regional_spp_sppt_shum_skeb +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_spp_sppt_shum_skeb +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/regional_spp_sppt_shum_skeb Checking test 055 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2332,14 +2332,14 @@ Checking test 055 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 276.231184 - 0: The maximum resident set size (KB) = 908112 + 0: The total amount of wall time = 262.620519 + 0: The maximum resident set size (KB) = 908600 Test 055 regional_spp_sppt_shum_skeb PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/rap_decomp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/rap_decomp Checking test 056 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2386,14 +2386,14 @@ Checking test 056 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 502.508227 - 0: The maximum resident set size (KB) = 806472 + 0: The total amount of wall time = 494.513841 + 0: The maximum resident set size (KB) = 806440 Test 056 rap_decomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/rap_2threads +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/rap_2threads Checking test 057 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2440,14 +2440,14 @@ Checking test 057 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 459.782906 - 0: The maximum resident set size (KB) = 875124 + 0: The total amount of wall time = 450.545995 + 0: The maximum resident set size (KB) = 875168 Test 057 rap_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/rap_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/rap_restart Checking test 058 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2486,14 +2486,14 @@ Checking test 058 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 245.059912 - 0: The maximum resident set size (KB) = 552740 + 0: The total amount of wall time = 240.842644 + 0: The maximum resident set size (KB) = 553428 Test 058 rap_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/rap_sfcdiff +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/rap_sfcdiff Checking test 059 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2540,14 +2540,14 @@ Checking test 059 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 486.899727 - 0: The maximum resident set size (KB) = 808044 + 0: The total amount of wall time = 472.640228 + 0: The maximum resident set size (KB) = 807944 Test 059 rap_sfcdiff PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/rap_sfcdiff_decomp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/rap_sfcdiff_decomp Checking test 060 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2594,14 +2594,14 @@ Checking test 060 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 507.764785 - 0: The maximum resident set size (KB) = 806500 + 0: The total amount of wall time = 496.275291 + 0: The maximum resident set size (KB) = 806372 Test 060 rap_sfcdiff_decomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/rap_sfcdiff_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/rap_sfcdiff_restart Checking test 061 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2640,14 +2640,14 @@ Checking test 061 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 356.165266 - 0: The maximum resident set size (KB) = 552376 + 0: The total amount of wall time = 360.156033 + 0: The maximum resident set size (KB) = 552524 Test 061 rap_sfcdiff_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/hrrr_control +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/hrrr_control Checking test 062 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2694,14 +2694,14 @@ Checking test 062 hrrr_control results .... Comparing 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.522405 - 0: The maximum resident set size (KB) = 806036 + 0: The total amount of wall time = 458.829252 + 0: The maximum resident set size (KB) = 805980 Test 062 hrrr_control PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/hrrr_control_decomp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/hrrr_control_decomp Checking test 063 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2748,14 +2748,14 @@ Checking test 063 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 486.746782 - 0: The maximum resident set size (KB) = 805484 + 0: The total amount of wall time = 473.522010 + 0: The maximum resident set size (KB) = 805352 Test 063 hrrr_control_decomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/hrrr_control_2threads +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/hrrr_control_2threads Checking test 064 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2802,14 +2802,14 @@ Checking test 064 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 438.603372 - 0: The maximum resident set size (KB) = 873064 + 0: The total amount of wall time = 431.019473 + 0: The maximum resident set size (KB) = 873164 Test 064 hrrr_control_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/hrrr_control_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/hrrr_control_restart Checking test 065 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2848,14 +2848,14 @@ Checking test 065 hrrr_control_restart results .... Comparing 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.470751 - 0: The maximum resident set size (KB) = 547896 + 0: The total amount of wall time = 340.062857 + 0: The maximum resident set size (KB) = 547932 Test 065 hrrr_control_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_v1beta -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/rrfs_v1beta +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1beta +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/rrfs_v1beta Checking test 066 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2902,14 +2902,14 @@ Checking test 066 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 476.775106 - 0: The maximum resident set size (KB) = 805016 + 0: The total amount of wall time = 466.812312 + 0: The maximum resident set size (KB) = 805184 Test 066 rrfs_v1beta PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_v1nssl -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/rrfs_v1nssl +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1nssl +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/rrfs_v1nssl Checking test 067 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2924,14 +2924,14 @@ Checking test 067 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 590.661374 - 0: The maximum resident set size (KB) = 493488 + 0: The total amount of wall time = 578.572173 + 0: The maximum resident set size (KB) = 493548 Test 067 rrfs_v1nssl PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/rrfs_v1nssl_nohailnoccn +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/rrfs_v1nssl_nohailnoccn Checking test 068 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2946,14 +2946,14 @@ Checking test 068 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 568.490251 - 0: The maximum resident set size (KB) = 485888 + 0: The total amount of wall time = 559.528961 + 0: The maximum resident set size (KB) = 486176 Test 068 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/rrfs_smoke_conus13km_hrrr_warm Checking test 069 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2962,14 +2962,14 @@ Checking test 069 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 190.648618 - 0: The maximum resident set size (KB) = 658128 + 0: The total amount of wall time = 173.892688 + 0: The maximum resident set size (KB) = 658096 Test 069 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 070 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2978,14 +2978,14 @@ Checking test 070 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 130.345413 - 0: The maximum resident set size (KB) = 670888 + 0: The total amount of wall time = 106.739012 + 0: The maximum resident set size (KB) = 671480 Test 070 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/rrfs_conus13km_hrrr_warm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/rrfs_conus13km_hrrr_warm Checking test 071 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2994,14 +2994,14 @@ Checking test 071 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 172.184682 - 0: The maximum resident set size (KB) = 635288 + 0: The total amount of wall time = 134.842785 + 0: The maximum resident set size (KB) = 634756 Test 071 rrfs_conus13km_hrrr_warm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/rrfs_smoke_conus13km_radar_tten_warm Checking test 072 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3010,26 +3010,26 @@ Checking test 072 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 190.917680 - 0: The maximum resident set size (KB) = 660800 + 0: The total amount of wall time = 159.554214 + 0: The maximum resident set size (KB) = 660952 Test 072 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 073 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 96.387111 - 0: The maximum resident set size (KB) = 615396 + 0: The total amount of wall time = 81.302413 + 0: The maximum resident set size (KB) = 615240 Test 073 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_csawmgt -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/control_csawmgt +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmgt +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_csawmgt Checking test 074 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3040,14 +3040,14 @@ Checking test 074 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 395.504846 - 0: The maximum resident set size (KB) = 502644 + 0: The total amount of wall time = 389.662597 + 0: The maximum resident set size (KB) = 502692 Test 074 control_csawmgt PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_ras -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/control_ras +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_ras +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_ras Checking test 075 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3058,26 +3058,26 @@ Checking test 075 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 201.640236 - 0: The maximum resident set size (KB) = 472816 + 0: The total amount of wall time = 202.450589 + 0: The maximum resident set size (KB) = 472940 Test 075 control_ras PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_wam -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/control_wam +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wam +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_wam Checking test 076 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 126.139231 - 0: The maximum resident set size (KB) = 188804 + 0: The total amount of wall time = 126.240206 + 0: The maximum resident set size (KB) = 188856 Test 076 control_wam PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8_faster -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/control_p8_faster +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_faster +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_p8_faster Checking test 077 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3124,14 +3124,14 @@ Checking test 077 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 186.820543 - 0: The maximum resident set size (KB) = 1380084 + 0: The total amount of wall time = 183.921476 + 0: The maximum resident set size (KB) = 1380068 Test 077 control_p8_faster PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control_faster -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/regional_control_faster +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control_faster +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/regional_control_faster Checking test 078 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3142,56 +3142,56 @@ Checking test 078 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 318.315236 - 0: The maximum resident set size (KB) = 578712 + 0: The total amount of wall time = 319.549164 + 0: The maximum resident set size (KB) = 578748 Test 078 regional_control_faster PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 079 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 913.704758 - 0: The maximum resident set size (KB) = 692440 + 0: The total amount of wall time = 901.752497 + 0: The maximum resident set size (KB) = 692556 Test 079 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 080 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 538.025806 - 0: The maximum resident set size (KB) = 704928 + 0: The total amount of wall time = 521.192109 + 0: The maximum resident set size (KB) = 706240 Test 080 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/rrfs_conus13km_hrrr_warm_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/rrfs_conus13km_hrrr_warm_debug Checking test 081 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 825.934387 - 0: The maximum resident set size (KB) = 667360 + 0: The total amount of wall time = 806.701897 + 0: The maximum resident set size (KB) = 667324 Test 081 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_CubedSphereGrid_debug -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/control_CubedSphereGrid_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_CubedSphereGrid_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_CubedSphereGrid_debug Checking test 082 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3218,334 +3218,334 @@ Checking test 082 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 168.437471 - 0: The maximum resident set size (KB) = 604892 + 0: The total amount of wall time = 169.809115 + 0: The maximum resident set size (KB) = 604484 Test 082 control_CubedSphereGrid_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/control_wrtGauss_netcdf_parallel_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_wrtGauss_netcdf_parallel_debug Checking test 083 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 223.680027 - 0: The maximum resident set size (KB) = 602272 + 0: The total amount of wall time = 164.146056 + 0: The maximum resident set size (KB) = 602244 Test 083 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_stochy_debug -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/control_stochy_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_stochy_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_stochy_debug Checking test 084 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 185.100701 - 0: The maximum resident set size (KB) = 607248 + 0: The total amount of wall time = 177.676328 + 0: The maximum resident set size (KB) = 607104 Test 084 control_stochy_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_lndp_debug -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/control_lndp_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_lndp_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_lndp_debug Checking test 085 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 162.382466 - 0: The maximum resident set size (KB) = 606836 + 0: The total amount of wall time = 162.121764 + 0: The maximum resident set size (KB) = 606756 Test 085 control_lndp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_csawmg_debug -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/control_csawmg_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmg_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_csawmg_debug Checking test 086 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 269.179325 - 0: The maximum resident set size (KB) = 644088 + 0: The total amount of wall time = 259.290194 + 0: The maximum resident set size (KB) = 644028 Test 086 control_csawmg_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_csawmgt_debug -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/control_csawmgt_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmgt_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_csawmgt_debug Checking test 087 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 259.584086 - 0: The maximum resident set size (KB) = 643680 + 0: The total amount of wall time = 251.494114 + 0: The maximum resident set size (KB) = 643640 Test 087 control_csawmgt_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_ras_debug -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/control_ras_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_ras_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_ras_debug Checking test 088 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 167.192508 - 0: The maximum resident set size (KB) = 615868 + 0: The total amount of wall time = 164.229631 + 0: The maximum resident set size (KB) = 615732 Test 088 control_ras_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_diag_debug -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/control_diag_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_diag_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_diag_debug Checking test 089 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 167.988475 - 0: The maximum resident set size (KB) = 661716 + 0: The total amount of wall time = 165.425065 + 0: The maximum resident set size (KB) = 661512 Test 089 control_diag_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_debug_p8 -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/control_debug_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_debug_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_debug_p8 Checking test 090 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 193.218900 - 0: The maximum resident set size (KB) = 1382832 + 0: The total amount of wall time = 179.788969 + 0: The maximum resident set size (KB) = 1382712 Test 090 control_debug_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_debug -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/regional_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/regional_debug Checking test 091 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1044.641443 - 0: The maximum resident set size (KB) = 608464 + 0: The total amount of wall time = 1049.065429 + 0: The maximum resident set size (KB) = 608436 Test 091 regional_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_debug -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/rap_control_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/rap_control_debug Checking test 092 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 298.262950 - 0: The maximum resident set size (KB) = 973044 + 0: The total amount of wall time = 292.177628 + 0: The maximum resident set size (KB) = 973008 Test 092 rap_control_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_debug -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/hrrr_control_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/hrrr_control_debug Checking test 093 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 291.182432 - 0: The maximum resident set size (KB) = 971528 + 0: The total amount of wall time = 296.805695 + 0: The maximum resident set size (KB) = 971576 Test 093 hrrr_control_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_debug -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/rap_unified_drag_suite_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/rap_unified_drag_suite_debug Checking test 094 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 295.465182 - 0: The maximum resident set size (KB) = 973144 + 0: The total amount of wall time = 296.155052 + 0: The maximum resident set size (KB) = 973132 Test 094 rap_unified_drag_suite_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_diag_debug -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/rap_diag_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_diag_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/rap_diag_debug Checking test 095 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 311.063910 - 0: The maximum resident set size (KB) = 1056896 + 0: The total amount of wall time = 310.328564 + 0: The maximum resident set size (KB) = 1056764 Test 095 rap_diag_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_cires_ugwp_debug -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/rap_cires_ugwp_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_cires_ugwp_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/rap_cires_ugwp_debug Checking test 096 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 304.208497 - 0: The maximum resident set size (KB) = 972512 + 0: The total amount of wall time = 301.325261 + 0: The maximum resident set size (KB) = 972356 Test 096 rap_cires_ugwp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_cires_ugwp_debug -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/rap_unified_ugwp_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_cires_ugwp_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/rap_unified_ugwp_debug Checking test 097 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 301.585530 - 0: The maximum resident set size (KB) = 974412 + 0: The total amount of wall time = 300.357436 + 0: The maximum resident set size (KB) = 974428 Test 097 rap_unified_ugwp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_lndp_debug -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/rap_lndp_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_lndp_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/rap_lndp_debug Checking test 098 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 300.319799 - 0: The maximum resident set size (KB) = 973832 + 0: The total amount of wall time = 297.077814 + 0: The maximum resident set size (KB) = 973532 Test 098 rap_lndp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_flake_debug -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/rap_flake_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_flake_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/rap_flake_debug Checking test 099 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 301.468220 - 0: The maximum resident set size (KB) = 972844 + 0: The total amount of wall time = 294.651839 + 0: The maximum resident set size (KB) = 973112 Test 099 rap_flake_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_progcld_thompson_debug -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/rap_progcld_thompson_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_progcld_thompson_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/rap_progcld_thompson_debug Checking test 100 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 297.331269 - 0: The maximum resident set size (KB) = 973108 + 0: The total amount of wall time = 294.316045 + 0: The maximum resident set size (KB) = 972980 Test 100 rap_progcld_thompson_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_noah_debug -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/rap_noah_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_noah_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/rap_noah_debug Checking test 101 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 304.084059 - 0: The maximum resident set size (KB) = 971836 + 0: The total amount of wall time = 288.404921 + 0: The maximum resident set size (KB) = 971624 Test 101 rap_noah_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_sfcdiff_debug -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/rap_sfcdiff_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/rap_sfcdiff_debug Checking test 102 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 296.709904 - 0: The maximum resident set size (KB) = 973036 + 0: The total amount of wall time = 294.120618 + 0: The maximum resident set size (KB) = 973104 Test 102 rap_sfcdiff_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/rap_noah_sfcdiff_cires_ugwp_debug Checking test 103 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 482.103591 - 0: The maximum resident set size (KB) = 971432 + 0: The total amount of wall time = 478.092106 + 0: The maximum resident set size (KB) = 971376 Test 103 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_v1beta_debug -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/rrfs_v1beta_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1beta_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/rrfs_v1beta_debug Checking test 104 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 290.456532 - 0: The maximum resident set size (KB) = 968960 + 0: The total amount of wall time = 289.297021 + 0: The maximum resident set size (KB) = 969088 Test 104 rrfs_v1beta_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_wam_debug -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/control_wam_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wam_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_wam_debug Checking test 105 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 295.193040 - 0: The maximum resident set size (KB) = 220444 + 0: The total amount of wall time = 293.071579 + 0: The maximum resident set size (KB) = 220312 Test 105 control_wam_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3556,14 +3556,14 @@ Checking test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 269.983197 - 0: The maximum resident set size (KB) = 803152 + 0: The total amount of wall time = 255.838639 + 0: The maximum resident set size (KB) = 802920 Test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_dyn32_phy32 -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/rap_control_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/rap_control_dyn32_phy32 Checking test 107 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3610,14 +3610,14 @@ Checking test 107 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 402.120967 - 0: The maximum resident set size (KB) = 691380 + 0: The total amount of wall time = 409.036427 + 0: The maximum resident set size (KB) = 691312 Test 107 rap_control_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/hrrr_control_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/hrrr_control_dyn32_phy32 Checking test 108 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3664,14 +3664,14 @@ Checking test 108 hrrr_control_dyn32_phy32 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 = 224.217071 - 0: The maximum resident set size (KB) = 689892 + 0: The total amount of wall time = 215.777240 + 0: The maximum resident set size (KB) = 689592 Test 108 hrrr_control_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_dyn32_phy32 -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/rap_2threads_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/rap_2threads_dyn32_phy32 Checking test 109 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3718,14 +3718,14 @@ Checking test 109 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 385.227372 - 0: The maximum resident set size (KB) = 743472 + 0: The total amount of wall time = 380.264490 + 0: The maximum resident set size (KB) = 743704 Test 109 rap_2threads_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/hrrr_control_2threads_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/hrrr_control_2threads_dyn32_phy32 Checking test 110 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3772,14 +3772,14 @@ Checking test 110 hrrr_control_2threads_dyn32_phy32 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 = 202.031306 - 0: The maximum resident set size (KB) = 741224 + 0: The total amount of wall time = 196.848230 + 0: The maximum resident set size (KB) = 741320 Test 110 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/hrrr_control_decomp_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/hrrr_control_decomp_dyn32_phy32 Checking test 111 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3826,14 +3826,14 @@ Checking test 111 hrrr_control_decomp_dyn32_phy32 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 = 222.970065 - 0: The maximum resident set size (KB) = 688516 + 0: The total amount of wall time = 218.725587 + 0: The maximum resident set size (KB) = 688356 Test 111 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_dyn32_phy32 -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/rap_restart_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/rap_restart_dyn32_phy32 Checking test 112 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3872,14 +3872,14 @@ Checking test 112 rap_restart_dyn32_phy32 results .... Comparing 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.050560 + 0: The total amount of wall time = 299.360446 0: The maximum resident set size (KB) = 526376 Test 112 rap_restart_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/hrrr_control_restart_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/hrrr_control_restart_dyn32_phy32 Checking test 113 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3918,14 +3918,14 @@ Checking test 113 hrrr_control_restart_dyn32_phy32 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 = 108.889903 - 0: The maximum resident set size (KB) = 518612 + 0: The total amount of wall time = 107.433071 + 0: The maximum resident set size (KB) = 518596 Test 113 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_dyn64_phy32 -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/rap_control_dyn64_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn64_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/rap_control_dyn64_phy32 Checking test 114 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3972,173 +3972,439 @@ Checking test 114 rap_control_dyn64_phy32 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 = 271.622746 - 0: The maximum resident set size (KB) = 713460 + 0: The total amount of wall time = 264.118057 + 0: The maximum resident set size (KB) = 713632 Test 114 rap_control_dyn64_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/rap_control_debug_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/rap_control_debug_dyn32_phy32 Checking test 115 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 294.439047 - 0: The maximum resident set size (KB) = 858448 + 0: The total amount of wall time = 285.055400 + 0: The maximum resident set size (KB) = 858384 Test 115 rap_control_debug_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/hrrr_control_debug_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/hrrr_control_debug_dyn32_phy32 Checking test 116 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 292.519738 - 0: The maximum resident set size (KB) = 855776 + 0: The total amount of wall time = 284.190927 + 0: The maximum resident set size (KB) = 855864 Test 116 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/rap_control_dyn64_phy32_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/rap_control_dyn64_phy32_debug Checking test 117 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 299.443424 - 0: The maximum resident set size (KB) = 879192 + 0: The total amount of wall time = 290.805339 + 0: The maximum resident set size (KB) = 879348 Test 117 rap_control_dyn64_phy32_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_datm_cdeps -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/hafs_regional_datm_cdeps +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/hafs_regional_atm +Checking test 118 hafs_regional_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing HURPRS.GrbF06 .........OK + + 0: The total amount of wall time = 275.247951 + 0: The maximum resident set size (KB) = 687560 + +Test 118 hafs_regional_atm PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/hafs_regional_atm_thompson_gfdlsf +Checking test 119 hafs_regional_atm_thompson_gfdlsf results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + + 0: The total amount of wall time = 315.406136 + 0: The maximum resident set size (KB) = 1039124 + +Test 119 hafs_regional_atm_thompson_gfdlsf PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_ocn +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/hafs_regional_atm_ocn +Checking test 120 hafs_regional_atm_ocn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing archv.2019_241_06.a .........OK + Comparing archs.2019_241_06.a .........OK + Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + + 0: The total amount of wall time = 450.309166 + 0: The maximum resident set size (KB) = 715640 + +Test 120 hafs_regional_atm_ocn PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_wav +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/hafs_regional_atm_wav +Checking test 121 hafs_regional_atm_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing out_grd.ww3 .........OK + Comparing out_pnt.ww3 .........OK + Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + + 0: The total amount of wall time = 949.798387 + 0: The maximum resident set size (KB) = 750040 + +Test 121 hafs_regional_atm_wav PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_ocn_wav +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/hafs_regional_atm_ocn_wav +Checking test 122 hafs_regional_atm_ocn_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing archv.2019_241_06.a .........OK + Comparing archs.2019_241_06.a .........OK + Comparing out_grd.ww3 .........OK + Comparing out_pnt.ww3 .........OK + Comparing 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 = 1039.785526 + 0: The maximum resident set size (KB) = 766104 + +Test 122 hafs_regional_atm_ocn_wav PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_1nest_atm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/hafs_regional_1nest_atm +Checking test 123 hafs_regional_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + + 0: The total amount of wall time = 391.723237 + 0: The maximum resident set size (KB) = 278784 + +Test 123 hafs_regional_1nest_atm PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/hafs_regional_telescopic_2nests_atm +Checking test 124 hafs_regional_telescopic_2nests_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing atm.nest03.f006.nc .........OK + Comparing sfc.nest03.f006.nc .........OK + + 0: The total amount of wall time = 434.164432 + 0: The maximum resident set size (KB) = 288896 + +Test 124 hafs_regional_telescopic_2nests_atm PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_global_1nest_atm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/hafs_global_1nest_atm +Checking test 125 hafs_global_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + + 0: The total amount of wall time = 180.407550 + 0: The maximum resident set size (KB) = 184088 + +Test 125 hafs_global_1nest_atm PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_global_multiple_4nests_atm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/hafs_global_multiple_4nests_atm +Checking test 126 hafs_global_multiple_4nests_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing atm.nest03.f006.nc .........OK + Comparing sfc.nest03.f006.nc .........OK + Comparing atm.nest04.f006.nc .........OK + Comparing sfc.nest04.f006.nc .........OK + Comparing atm.nest05.f006.nc .........OK + Comparing sfc.nest05.f006.nc .........OK + Comparing HURPRS.GrbF06 .........OK + Comparing HURPRS.GrbF06.nest02 .........OK + Comparing HURPRS.GrbF06.nest03 .........OK + Comparing HURPRS.GrbF06.nest04 .........OK + Comparing HURPRS.GrbF06.nest05 .........OK + + 0: The total amount of wall time = 490.987154 + 0: The maximum resident set size (KB) = 233164 + +Test 126 hafs_global_multiple_4nests_atm PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/hafs_regional_specified_moving_1nest_atm +Checking test 127 hafs_regional_specified_moving_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing HURPRS.GrbF06 .........OK + Comparing HURPRS.GrbF06.nest02 .........OK + + 0: The total amount of wall time = 241.236595 + 0: The maximum resident set size (KB) = 294512 + +Test 127 hafs_regional_specified_moving_1nest_atm PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/hafs_regional_storm_following_1nest_atm +Checking test 128 hafs_regional_storm_following_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + + 0: The total amount of wall time = 229.982224 + 0: The maximum resident set size (KB) = 294432 + +Test 128 hafs_regional_storm_following_1nest_atm PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/hafs_regional_storm_following_1nest_atm_ocn +Checking test 129 hafs_regional_storm_following_1nest_atm_ocn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing archv.2020_238_18.a .........OK + Comparing archs.2020_238_18.a .........OK + + 0: The total amount of wall time = 272.756971 + 0: The maximum resident set size (KB) = 322988 + +Test 129 hafs_regional_storm_following_1nest_atm_ocn PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_global_storm_following_1nest_atm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/hafs_global_storm_following_1nest_atm +Checking test 130 hafs_global_storm_following_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + + 0: The total amount of wall time = 69.675565 + 0: The maximum resident set size (KB) = 203112 + +Test 130 hafs_global_storm_following_1nest_atm PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/hafs_regional_storm_following_1nest_atm_ocn_debug +Checking test 131 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 781.601900 + 0: The maximum resident set size (KB) = 353772 + +Test 131 hafs_regional_storm_following_1nest_atm_ocn_debug PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 132 hafs_regional_storm_following_1nest_atm_ocn_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing archv.2020_238_18.a .........OK + Comparing archs.2020_238_18.a .........OK + Comparing out_grd.ww3 .........OK + Comparing out_pnt.ww3 .........OK + + 0: The total amount of wall time = 709.043397 + 0: The maximum resident set size (KB) = 373160 + +Test 132 hafs_regional_storm_following_1nest_atm_ocn_wav PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_docn +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/hafs_regional_docn +Checking test 133 hafs_regional_docn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK + + 0: The total amount of wall time = 398.146771 + 0: The maximum resident set size (KB) = 723860 + +Test 133 hafs_regional_docn PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_docn_oisst +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/hafs_regional_docn_oisst +Checking test 134 hafs_regional_docn_oisst results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK + + 0: The total amount of wall time = 403.310532 + 0: The maximum resident set size (KB) = 713140 + +Test 134 hafs_regional_docn_oisst PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_datm_cdeps +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/hafs_regional_datm_cdeps Checking test 135 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 1172.621769 - 0: The maximum resident set size (KB) = 809136 + 0: The total amount of wall time = 1175.684696 + 0: The maximum resident set size (KB) = 809168 -Test 118 hafs_regional_datm_cdeps PASS +Test 135 hafs_regional_datm_cdeps PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/datm_cdeps_control_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/datm_cdeps_control_cfsr Checking test 136 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 166.363550 - 0: The maximum resident set size (KB) = 715852 + 0: The total amount of wall time = 169.737674 + 0: The maximum resident set size (KB) = 715796 -Test 119 datm_cdeps_control_cfsr PASS +Test 136 datm_cdeps_control_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/datm_cdeps_restart_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/datm_cdeps_restart_cfsr Checking test 137 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 96.689626 - 0: The maximum resident set size (KB) = 716048 + 0: The total amount of wall time = 96.139395 + 0: The maximum resident set size (KB) = 708888 -Test 120 datm_cdeps_restart_cfsr PASS +Test 137 datm_cdeps_restart_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_control_gefs -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/datm_cdeps_control_gefs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_gefs +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/datm_cdeps_control_gefs Checking test 138 datm_cdeps_control_gefs 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 = 162.094019 - 0: The maximum resident set size (KB) = 602212 + 0: The total amount of wall time = 163.352836 + 0: The maximum resident set size (KB) = 598020 -Test 121 datm_cdeps_control_gefs PASS +Test 138 datm_cdeps_control_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_iau_gefs -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/datm_cdeps_iau_gefs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_iau_gefs +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/datm_cdeps_iau_gefs Checking test 139 datm_cdeps_iau_gefs 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 = 160.924738 - 0: The maximum resident set size (KB) = 600192 + 0: The total amount of wall time = 163.241148 + 0: The maximum resident set size (KB) = 598220 -Test 122 datm_cdeps_iau_gefs PASS +Test 139 datm_cdeps_iau_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_stochy_gefs -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/datm_cdeps_stochy_gefs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_stochy_gefs +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/datm_cdeps_stochy_gefs Checking test 140 datm_cdeps_stochy_gefs 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 = 163.866958 - 0: The maximum resident set size (KB) = 597408 + 0: The total amount of wall time = 164.473608 + 0: The maximum resident set size (KB) = 593432 -Test 123 datm_cdeps_stochy_gefs PASS +Test 140 datm_cdeps_stochy_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/datm_cdeps_ciceC_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_ciceC_cfsr +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/datm_cdeps_ciceC_cfsr Checking test 141 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 169.080673 - 0: The maximum resident set size (KB) = 715796 + 0: The total amount of wall time = 166.855280 + 0: The maximum resident set size (KB) = 716000 -Test 124 datm_cdeps_ciceC_cfsr PASS +Test 141 datm_cdeps_ciceC_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_bulk_cfsr -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/datm_cdeps_bulk_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_bulk_cfsr +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/datm_cdeps_bulk_cfsr Checking test 142 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 169.206393 - 0: The maximum resident set size (KB) = 706024 + 0: The total amount of wall time = 166.328408 + 0: The maximum resident set size (KB) = 715784 -Test 125 datm_cdeps_bulk_cfsr PASS +Test 142 datm_cdeps_bulk_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_bulk_gefs -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/datm_cdeps_bulk_gefs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_bulk_gefs +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/datm_cdeps_bulk_gefs Checking test 143 datm_cdeps_bulk_gefs 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 = 163.412764 - 0: The maximum resident set size (KB) = 601076 + 0: The total amount of wall time = 159.540381 + 0: The maximum resident set size (KB) = 598268 -Test 126 datm_cdeps_bulk_gefs PASS +Test 143 datm_cdeps_bulk_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_mx025_cfsr -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/datm_cdeps_mx025_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_mx025_cfsr +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/datm_cdeps_mx025_cfsr Checking test 144 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4147,143 +4413,126 @@ Checking test 144 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 428.574049 - 0: The maximum resident set size (KB) = 494344 + 0: The total amount of wall time = 472.497393 + 0: The maximum resident set size (KB) = 496572 + +Test 144 datm_cdeps_mx025_cfsr PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_mx025_gefs +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/datm_cdeps_mx025_gefs +Checking test 145 datm_cdeps_mx025_gefs results .... + Comparing RESTART/20111001.120000.MOM.res.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK + Comparing RESTART/iced.2011-10-01-43200.nc .........OK + Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK + + 0: The total amount of wall time = 447.958772 + 0: The maximum resident set size (KB) = 476216 -Test 127 datm_cdeps_mx025_cfsr PASS +Test 145 datm_cdeps_mx025_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/datm_cdeps_multiple_files_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/datm_cdeps_multiple_files_cfsr Checking test 146 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 167.810316 - 0: The maximum resident set size (KB) = 715792 + 0: The total amount of wall time = 165.839884 + 0: The maximum resident set size (KB) = 715700 -Test 128 datm_cdeps_multiple_files_cfsr PASS +Test 146 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/datm_cdeps_3072x1536_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/datm_cdeps_3072x1536_cfsr Checking test 147 datm_cdeps_3072x1536_cfsr 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 = 252.285460 - 0: The maximum resident set size (KB) = 1948112 + 0: The total amount of wall time = 255.208497 + 0: The maximum resident set size (KB) = 1948000 -Test 129 datm_cdeps_3072x1536_cfsr PASS +Test 147 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_gfs -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/datm_cdeps_gfs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_gfs +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/datm_cdeps_gfs Checking test 148 datm_cdeps_gfs 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 = 254.712674 - 0: The maximum resident set size (KB) = 1947984 + 0: The total amount of wall time = 256.625205 + 0: The maximum resident set size (KB) = 1947916 -Test 130 datm_cdeps_gfs PASS +Test 148 datm_cdeps_gfs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_debug_cfsr -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/datm_cdeps_debug_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_debug_cfsr +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/datm_cdeps_debug_cfsr Checking test 149 datm_cdeps_debug_cfsr 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 = 374.115317 - 0: The maximum resident set size (KB) = 714896 + 0: The total amount of wall time = 373.509019 + 0: The maximum resident set size (KB) = 714736 -Test 131 datm_cdeps_debug_cfsr PASS +Test 149 datm_cdeps_debug_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_control_cfsr_faster -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/datm_cdeps_control_cfsr_faster +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr_faster +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/datm_cdeps_control_cfsr_faster Checking test 150 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 166.950644 - 0: The maximum resident set size (KB) = 721412 + 0: The total amount of wall time = 169.727635 + 0: The maximum resident set size (KB) = 715688 -Test 132 datm_cdeps_control_cfsr_faster PASS +Test 150 datm_cdeps_control_cfsr_faster PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_atmwav -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_28519/control_atmwav -Checking test 154 control_atmwav results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - Comparing 20210322.180000.restart.glo_1deg .........OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/datm_cdeps_lnd_gswp3 +Checking test 151 datm_cdeps_lnd_gswp3 results .... + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 98.568332 - 0: The maximum resident set size (KB) = 451520 + 0: The total amount of wall time = 12.006396 + 0: The maximum resident set size (KB) = 153964 -Test 133 control_atmwav PASS +Test 151 datm_cdeps_lnd_gswp3 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_docn -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_35325/hafs_regional_docn -Checking test 002 hafs_regional_docn results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 399.697354 - 0: The maximum resident set size (KB) = 724220 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/datm_cdeps_lnd_gswp3_rst +Checking test 152 datm_cdeps_lnd_gswp3_rst results .... + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK + + 0: The total amount of wall time = 22.095141 + 0: The maximum resident set size (KB) = 145892 -Test 135 hafs_regional_docn PASS +Test 152 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8_atmlnd_sbs -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_35325/control_p8_atmlnd_sbs -Checking test 003 control_p8_atmlnd_sbs results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_atmlnd_sbs +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_p8_atmlnd_sbs +Checking test 153 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -4367,15 +4616,168 @@ Checking test 003 control_p8_atmlnd_sbs results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 260.599666 - 0: The maximum resident set size (KB) = 1413308 + 0: The total amount of wall time = 233.708308 + 0: The maximum resident set size (KB) = 1413572 + +Test 153 control_p8_atmlnd_sbs PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_atmwav +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_atmwav +Checking test 154 control_atmwav results .... + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + Comparing 20210322.180000.restart.glo_1deg .........OK + + 0: The total amount of wall time = 96.265012 + 0: The maximum resident set size (KB) = 451576 + +Test 154 control_atmwav PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/atmaero_control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/atmaero_control_p8 +Checking test 155 atmaero_control_p8 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 = 252.013915 + 0: The maximum resident set size (KB) = 1448192 + +Test 155 atmaero_control_p8 PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/atmaero_control_p8_rad +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/atmaero_control_p8_rad +Checking test 156 atmaero_control_p8_rad 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 = 300.133172 + 0: The maximum resident set size (KB) = 1469736 -Test 136 control_p8_atmlnd_sbs PASS +Test 156 atmaero_control_p8_rad PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/atmaero_control_p8 -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_35325/atmaero_control_p8 -Checking test 004 atmaero_control_p8 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/atmaero_control_p8_rad_micro +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/atmaero_control_p8_rad_micro +Checking test 157 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4418,15 +4820,15 @@ Checking test 004 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 276.089463 - 0: The maximum resident set size (KB) = 1448108 + 0: The total amount of wall time = 301.713659 + 0: The maximum resident set size (KB) = 1473612 -Test 137 atmaero_control_p8 PASS +Test 157 atmaero_control_p8_rad_micro PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_atmaq -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_35325/regional_atmaq -Checking test 005 regional_atmaq results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_atmaq +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/regional_atmaq +Checking test 158 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -4441,15 +4843,15 @@ Checking test 005 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 705.498555 - 0: The maximum resident set size (KB) = 965176 + 0: The total amount of wall time = 668.521100 + 0: The maximum resident set size (KB) = 964560 -Test 138 regional_atmaq PASS +Test 158 regional_atmaq PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_atmaq_faster -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_35325/regional_atmaq_faster -Checking test 006 regional_atmaq_faster results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_atmaq_faster +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/regional_atmaq_faster +Checking test 159 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -4464,25 +4866,12 @@ Checking test 006 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 641.565956 - 0: The maximum resident set size (KB) = 941320 - -Test 139 regional_atmaq_faster PASS - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_35325/hafs_regional_storm_following_1nest_atm_ocn_debug -Checking test 001 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 795.747084 - 0: The maximum resident set size (KB) = 353160 + 0: The total amount of wall time = 615.125444 + 0: The maximum resident set size (KB) = 968088 -Test 140 hafs_regional_storm_following_1nest_atm_ocn_debug PASS +Test 159 regional_atmaq_faster PASS -REGRESSION TEST SUCCESS -Thu Mar 30 22:14:04 EDT 2023 -Elapsed time: 08h:40m:52s. Have a nice day! +REGRESSION TEST WAS SUCCESSFUL +Sun Apr 2 12:40:20 EDT 2023 +Elapsed time: 03h:15m:59s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 791a083bfe8..540f2a7fcd4 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,21 +1,21 @@ -Thu Mar 30 14:18:18 UTC 2023 +Sun Apr 2 12:45:16 UTC 2023 Start Regression test Compile 001 elapsed time 185 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 189 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 328 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 002 elapsed time 188 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 332 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug Compile 004 elapsed time 102 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 186 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 397 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 328 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 324 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 265 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 230 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 153 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 012 elapsed time 114 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/control_c48 +Compile 005 elapsed time 192 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 401 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 334 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 338 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 269 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 229 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 148 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 012 elapsed time 121 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/control_c48 Checking test 001 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -54,14 +54,14 @@ Checking test 001 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 684.791706 -0: The maximum resident set size (KB) = 702668 +0: The total amount of wall time = 687.671316 +0: The maximum resident set size (KB) = 702820 Test 001 control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/control_stochy +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/control_stochy Checking test 002 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -72,14 +72,14 @@ Checking test 002 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 658.633179 - 0: The maximum resident set size (KB) = 479952 + 0: The total amount of wall time = 649.158186 + 0: The maximum resident set size (KB) = 480956 Test 002 control_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/control_ras +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/control_ras +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/control_ras Checking test 003 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -90,14 +90,14 @@ Checking test 003 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 832.483812 - 0: The maximum resident set size (KB) = 487504 + 0: The total amount of wall time = 843.327587 + 0: The maximum resident set size (KB) = 485596 Test 003 control_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/control_p8 Checking test 004 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -144,14 +144,14 @@ Checking test 004 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 889.233721 - 0: The maximum resident set size (KB) = 1235264 + 0: The total amount of wall time = 920.177696 + 0: The maximum resident set size (KB) = 1235428 Test 004 control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/rap_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/rap_control Checking test 005 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -198,14 +198,14 @@ Checking test 005 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1492.203953 - 0: The maximum resident set size (KB) = 830040 + 0: The total amount of wall time = 1484.815875 + 0: The maximum resident set size (KB) = 836708 Test 005 rap_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/rap_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/rap_decomp Checking test 006 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -252,14 +252,14 @@ Checking test 006 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1449.146238 - 0: The maximum resident set size (KB) = 833872 + 0: The total amount of wall time = 1467.071364 + 0: The maximum resident set size (KB) = 836660 Test 006 rap_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/rap_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/rap_2threads Checking test 007 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -306,14 +306,14 @@ Checking test 007 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1354.320357 - 0: The maximum resident set size (KB) = 900424 + 0: The total amount of wall time = 1369.479677 + 0: The maximum resident set size (KB) = 905860 Test 007 rap_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/rap_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/rap_restart Checking test 008 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -352,14 +352,14 @@ Checking test 008 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 723.415235 - 0: The maximum resident set size (KB) = 547700 + 0: The total amount of wall time = 727.922600 + 0: The maximum resident set size (KB) = 553896 Test 008 rap_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/rap_sfcdiff +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/rap_sfcdiff Checking test 009 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -406,14 +406,14 @@ Checking test 009 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1465.926440 - 0: The maximum resident set size (KB) = 829744 + 0: The total amount of wall time = 1477.003409 + 0: The maximum resident set size (KB) = 832576 Test 009 rap_sfcdiff PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/rap_sfcdiff_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/rap_sfcdiff_decomp Checking test 010 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -460,14 +460,14 @@ Checking test 010 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1466.695726 - 0: The maximum resident set size (KB) = 826364 + 0: The total amount of wall time = 1441.836902 + 0: The maximum resident set size (KB) = 836744 Test 010 rap_sfcdiff_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/rap_sfcdiff_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/rap_sfcdiff_restart Checking test 011 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -506,14 +506,14 @@ Checking test 011 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1088.811097 - 0: The maximum resident set size (KB) = 552972 + 0: The total amount of wall time = 1081.111183 + 0: The maximum resident set size (KB) = 551180 Test 011 rap_sfcdiff_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/hrrr_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/hrrr_control Checking test 012 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -560,14 +560,14 @@ Checking test 012 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1419.018726 - 0: The maximum resident set size (KB) = 824532 + 0: The total amount of wall time = 1433.205837 + 0: The maximum resident set size (KB) = 834528 Test 012 hrrr_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/hrrr_control_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/hrrr_control_2threads Checking test 013 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -614,14 +614,14 @@ Checking test 013 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1323.496860 - 0: The maximum resident set size (KB) = 893604 + 0: The total amount of wall time = 1308.165137 + 0: The maximum resident set size (KB) = 894128 Test 013 hrrr_control_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/hrrr_control_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/hrrr_control_decomp Checking test 014 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -668,14 +668,14 @@ Checking test 014 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1448.886648 - 0: The maximum resident set size (KB) = 825212 + 0: The total amount of wall time = 1440.303393 + 0: The maximum resident set size (KB) = 831012 Test 014 hrrr_control_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/hrrr_control_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/hrrr_control_restart Checking test 015 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -714,14 +714,14 @@ Checking test 015 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1049.535059 - 0: The maximum resident set size (KB) = 551732 + 0: The total amount of wall time = 1079.955112 + 0: The maximum resident set size (KB) = 549592 Test 015 hrrr_control_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/rrfs_v1beta +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/rrfs_v1beta Checking test 016 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -768,14 +768,14 @@ Checking test 016 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1470.334653 - 0: The maximum resident set size (KB) = 823344 + 0: The total amount of wall time = 1478.232025 + 0: The maximum resident set size (KB) = 833300 Test 016 rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/rrfs_smoke_conus13km_hrrr_warm Checking test 017 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -784,14 +784,14 @@ Checking test 017 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 790.544990 - 0: The maximum resident set size (KB) = 666824 + 0: The total amount of wall time = 771.892099 + 0: The maximum resident set size (KB) = 668424 Test 017 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 018 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -800,14 +800,14 @@ Checking test 018 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 1065.961119 - 0: The maximum resident set size (KB) = 668288 + 0: The total amount of wall time = 1066.711069 + 0: The maximum resident set size (KB) = 669248 Test 018 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/rrfs_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/rrfs_conus13km_hrrr_warm Checking test 019 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -816,14 +816,14 @@ Checking test 019 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 759.427221 - 0: The maximum resident set size (KB) = 644000 + 0: The total amount of wall time = 764.756423 + 0: The maximum resident set size (KB) = 646212 Test 019 rrfs_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/rrfs_smoke_conus13km_radar_tten_warm Checking test 020 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -832,234 +832,234 @@ Checking test 020 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 811.920119 - 0: The maximum resident set size (KB) = 676168 + 0: The total amount of wall time = 818.329647 + 0: The maximum resident set size (KB) = 672000 Test 020 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 021 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 380.261214 - 0: The maximum resident set size (KB) = 633596 + 0: The total amount of wall time = 394.262414 + 0: The maximum resident set size (KB) = 637000 Test 021 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/control_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/control_diag_debug Checking test 022 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 129.767261 - 0: The maximum resident set size (KB) = 525624 + 0: The total amount of wall time = 129.309261 + 0: The maximum resident set size (KB) = 530840 Test 022 control_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/regional_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/regional_debug Checking test 023 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 712.513732 - 0: The maximum resident set size (KB) = 595340 + 0: The total amount of wall time = 652.145078 + 0: The maximum resident set size (KB) = 593180 Test 023 regional_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/rap_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/rap_control_debug Checking test 024 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 175.814346 - 0: The maximum resident set size (KB) = 849124 + 0: The total amount of wall time = 180.418548 + 0: The maximum resident set size (KB) = 843220 Test 024 rap_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/hrrr_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/hrrr_control_debug Checking test 025 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 175.040819 - 0: The maximum resident set size (KB) = 843636 + 0: The total amount of wall time = 174.862079 + 0: The maximum resident set size (KB) = 839268 Test 025 hrrr_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/rap_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/rap_diag_debug Checking test 026 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 220.185152 - 0: The maximum resident set size (KB) = 931892 + 0: The total amount of wall time = 214.238217 + 0: The maximum resident set size (KB) = 926088 Test 026 rap_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/rap_noah_sfcdiff_cires_ugwp_debug Checking test 027 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.157997 - 0: The maximum resident set size (KB) = 848240 + 0: The total amount of wall time = 280.334824 + 0: The maximum resident set size (KB) = 845516 Test 027 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/rap_progcld_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/rap_progcld_thompson_debug Checking test 028 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 176.040716 - 0: The maximum resident set size (KB) = 849664 + 0: The total amount of wall time = 176.079048 + 0: The maximum resident set size (KB) = 840212 Test 028 rap_progcld_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/rrfs_v1beta_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/rrfs_v1beta_debug Checking test 029 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 180.950632 - 0: The maximum resident set size (KB) = 841880 + 0: The total amount of wall time = 173.850795 + 0: The maximum resident set size (KB) = 836304 Test 029 rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/control_ras_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/control_ras_debug Checking test 030 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 106.025687 - 0: The maximum resident set size (KB) = 486832 + 0: The total amount of wall time = 105.616793 + 0: The maximum resident set size (KB) = 482264 Test 030 control_ras_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/control_stochy_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/control_stochy_debug Checking test 031 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 119.963690 - 0: The maximum resident set size (KB) = 475416 + 0: The total amount of wall time = 122.220244 + 0: The maximum resident set size (KB) = 473712 Test 031 control_stochy_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/control_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/control_debug_p8 Checking test 032 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 120.295374 - 0: The maximum resident set size (KB) = 1233992 + 0: The total amount of wall time = 117.928218 + 0: The maximum resident set size (KB) = 1231176 Test 032 control_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 033 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 625.285306 - 0: The maximum resident set size (KB) = 689548 + 0: The total amount of wall time = 649.115665 + 0: The maximum resident set size (KB) = 687912 Test 033 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 034 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 749.330385 - 0: The maximum resident set size (KB) = 683280 + 0: The total amount of wall time = 725.908199 + 0: The maximum resident set size (KB) = 688536 Test 034 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/rrfs_conus13km_hrrr_warm_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rrfs_conus13km_hrrr_warm_debugs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/rrfs_conus13km_hrrr_warm_debug Checking test 035 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 599.409964 - 0: The maximum resident set size (KB) = 662292 + 0: The total amount of wall time = 581.360784 + 0: The maximum resident set size (KB) = 659996 Test 035 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/control_wam_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/control_wam_debug Checking test 036 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 186.662116 - 0: The maximum resident set size (KB) = 198104 + 0: The total amount of wall time = 185.024363 + 0: The maximum resident set size (KB) = 195104 Test 036 control_wam_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/rap_control_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/rap_control_dyn32_phy32 Checking test 037 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1106,14 +1106,14 @@ Checking test 037 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1460.926012 - 0: The maximum resident set size (KB) = 682784 + 0: The total amount of wall time = 1490.319526 + 0: The maximum resident set size (KB) = 688448 Test 037 rap_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/hrrr_control_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/hrrr_control_dyn32_phy32 Checking test 038 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1160,14 +1160,14 @@ Checking test 038 hrrr_control_dyn32_phy32 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 = 737.336100 - 0: The maximum resident set size (KB) = 683796 + 0: The total amount of wall time = 736.797336 + 0: The maximum resident set size (KB) = 683664 Test 038 hrrr_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/rap_2threads_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/rap_2threads_dyn32_phy32 Checking test 039 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1214,14 +1214,14 @@ Checking test 039 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1350.442511 - 0: The maximum resident set size (KB) = 730540 + 0: The total amount of wall time = 1374.975088 + 0: The maximum resident set size (KB) = 729204 Test 039 rap_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/hrrr_control_2threads_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/hrrr_control_2threads_dyn32_phy32 Checking test 040 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1268,14 +1268,14 @@ Checking test 040 hrrr_control_2threads_dyn32_phy32 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 = 673.877481 - 0: The maximum resident set size (KB) = 726856 + 0: The total amount of wall time = 671.721772 + 0: The maximum resident set size (KB) = 728472 Test 040 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/hrrr_control_decomp_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/hrrr_control_decomp_dyn32_phy32 Checking test 041 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1322,14 +1322,14 @@ Checking test 041 hrrr_control_decomp_dyn32_phy32 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 = 732.255928 - 0: The maximum resident set size (KB) = 687940 + 0: The total amount of wall time = 734.584201 + 0: The maximum resident set size (KB) = 683384 Test 041 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/rap_restart_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/rap_restart_dyn32_phy32 Checking test 042 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1368,14 +1368,14 @@ Checking test 042 rap_restart_dyn32_phy32 results .... Comparing 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.305334 - 0: The maximum resident set size (KB) = 516168 + 0: The total amount of wall time = 1085.169867 + 0: The maximum resident set size (KB) = 511520 Test 042 rap_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/hrrr_control_restart_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/hrrr_control_restart_dyn32_phy32 Checking test 043 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1414,14 +1414,14 @@ Checking test 043 hrrr_control_restart_dyn32_phy32 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 = 368.793082 - 0: The maximum resident set size (KB) = 508368 + 0: The total amount of wall time = 370.173063 + 0: The maximum resident set size (KB) = 511024 Test 043 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/rap_control_dyn64_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/rap_control_dyn64_phy32 Checking test 044 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1468,56 +1468,56 @@ Checking test 044 rap_control_dyn64_phy32 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 = 1073.828699 - 0: The maximum resident set size (KB) = 711488 + 0: The total amount of wall time = 1046.117433 + 0: The maximum resident set size (KB) = 708732 Test 044 rap_control_dyn64_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/rap_control_debug_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/rap_control_debug_dyn32_phy32 Checking test 045 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 176.224928 - 0: The maximum resident set size (KB) = 700400 + 0: The total amount of wall time = 176.778426 + 0: The maximum resident set size (KB) = 698776 Test 045 rap_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/hrrr_control_debug_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/hrrr_control_debug_dyn32_phy32 Checking test 046 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 170.327245 - 0: The maximum resident set size (KB) = 698012 + 0: The total amount of wall time = 178.494603 + 0: The maximum resident set size (KB) = 699988 Test 046 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/rap_control_dyn64_phy32_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rap_control_debug_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/rap_control_dyn64_phy32_debug Checking test 047 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 207.508787 - 0: The maximum resident set size (KB) = 721140 + 0: The total amount of wall time = 210.136012 + 0: The maximum resident set size (KB) = 719064 Test 047 rap_control_dyn64_phy32_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/cpld_control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/cpld_control_p8 Checking test 048 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1582,14 +1582,14 @@ Checking test 048 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1757.571790 - 0: The maximum resident set size (KB) = 1431188 + 0: The total amount of wall time = 1697.038649 + 0: The maximum resident set size (KB) = 1428632 Test 048 cpld_control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/cpld_control_nowave_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/cpld_control_c96_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/cpld_control_nowave_noaero_p8 Checking test 049 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1651,14 +1651,14 @@ Checking test 049 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 1241.292645 - 0: The maximum resident set size (KB) = 1333876 + 0: The total amount of wall time = 1227.457985 + 0: The maximum resident set size (KB) = 1334368 Test 049 cpld_control_nowave_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/cpld_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/cpld_debug_p8 Checking test 050 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1711,25 +1711,25 @@ Checking test 050 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 932.708774 - 0: The maximum resident set size (KB) = 1444396 + 0: The total amount of wall time = 894.685483 + 0: The maximum resident set size (KB) = 1449692 Test 050 cpld_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/GNU/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_22734/datm_cdeps_control_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/datm_cdeps_control_cfsr Checking test 051 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 176.013292 - 0: The maximum resident set size (KB) = 664004 + 0: The total amount of wall time = 172.776866 + 0: The maximum resident set size (KB) = 668112 Test 051 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Thu Mar 30 15:12:15 UTC 2023 -Elapsed time: 00h:53m:58s. Have a nice day! +Sun Apr 2 13:40:00 UTC 2023 +Elapsed time: 00h:54m:45s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 6cea6f86f1e..bc5de9cd482 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,42 +1,42 @@ -Thu Mar 30 14:03:57 UTC 2023 +Sun Apr 2 12:44:33 UTC 2023 Start Regression test -Compile 001 elapsed time 601 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 638 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 566 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 242 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 001 elapsed time 619 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 621 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 582 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 243 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON Compile 005 elapsed time 212 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 524 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 515 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 702 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 525 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 498 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 011 elapsed time 481 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 445 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 592 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 211 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 183 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 450 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 465 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 166 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 176 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 564 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 021 elapsed time 187 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 630 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 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 024 elapsed time 176 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 111 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 196 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 53 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 486 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 570 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 486 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 460 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 187 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 540 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8_mixedmode -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/cpld_control_p8_mixedmode +Compile 006 elapsed time 529 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 536 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 707 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 541 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 486 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 011 elapsed time 480 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 437 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 605 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 227 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 172 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 457 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 460 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 172 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 163 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 569 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 021 elapsed time 213 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 623 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 579 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 024 elapsed time 182 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 113 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 182 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 57 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 484 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 526 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 477 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 464 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 171 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 548 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8_mixedmode +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -101,14 +101,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 307.142600 - 0: The maximum resident set size (KB) = 3148088 + 0: The total amount of wall time = 308.160471 + 0: The maximum resident set size (KB) = 3151244 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_gfsv17 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/cpld_control_gfsv17 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_gfsv17 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -172,14 +172,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 222.857220 - 0: The maximum resident set size (KB) = 1731728 + 0: The total amount of wall time = 221.784633 + 0: The maximum resident set size (KB) = 1723080 Test 002 cpld_control_gfsv17 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/cpld_control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -244,14 +244,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 338.649591 - 0: The maximum resident set size (KB) = 3184152 + 0: The total amount of wall time = 336.917424 + 0: The maximum resident set size (KB) = 3174444 Test 003 cpld_control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/cpld_restart_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -304,14 +304,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 197.195333 - 0: The maximum resident set size (KB) = 3055336 + 0: The total amount of wall time = 194.191255 + 0: The maximum resident set size (KB) = 3048180 Test 004 cpld_restart_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/cpld_control_qr_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -376,14 +376,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 337.930509 - 0: The maximum resident set size (KB) = 3195044 + 0: The total amount of wall time = 337.255240 + 0: The maximum resident set size (KB) = 3196460 Test 005 cpld_control_qr_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/cpld_restart_qr_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -436,14 +436,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 199.113699 - 0: The maximum resident set size (KB) = 3065284 + 0: The total amount of wall time = 196.909686 + 0: The maximum resident set size (KB) = 3068680 Test 006 cpld_restart_qr_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/cpld_2threads_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -496,14 +496,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 346.845317 - 0: The maximum resident set size (KB) = 3507928 + 0: The total amount of wall time = 346.893769 + 0: The maximum resident set size (KB) = 3517724 Test 007 cpld_2threads_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/cpld_decomp_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -556,14 +556,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 338.138733 - 0: The maximum resident set size (KB) = 3167068 + 0: The total amount of wall time = 340.055386 + 0: The maximum resident set size (KB) = 3170560 Test 008 cpld_decomp_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/cpld_mpi_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -616,14 +616,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 277.052693 - 0: The maximum resident set size (KB) = 3022380 + 0: The total amount of wall time = 279.929277 + 0: The maximum resident set size (KB) = 3023236 Test 009 cpld_mpi_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_ciceC_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/cpld_control_ciceC_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_ciceC_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -688,14 +688,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 338.119606 - 0: The maximum resident set size (KB) = 3185284 + 0: The total amount of wall time = 339.903835 + 0: The maximum resident set size (KB) = 3185052 Test 010 cpld_control_ciceC_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/cpld_control_c192_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/cpld_control_c192_p8 Checking test 011 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -748,14 +748,14 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 585.247354 - 0: The maximum resident set size (KB) = 3254536 + 0: The total amount of wall time = 594.945909 + 0: The maximum resident set size (KB) = 3258384 Test 011 cpld_control_c192_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/cpld_restart_c192_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/cpld_restart_c192_p8 Checking test 012 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -808,14 +808,14 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 381.958524 - 0: The maximum resident set size (KB) = 3164280 + 0: The total amount of wall time = 388.316331 + 0: The maximum resident set size (KB) = 3157532 Test 012 cpld_restart_c192_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/cpld_bmark_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/cpld_bmark_p8 Checking test 013 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -863,14 +863,14 @@ Checking test 013 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 707.373865 - 0: The maximum resident set size (KB) = 4039416 + 0: The total amount of wall time = 698.555048 + 0: The maximum resident set size (KB) = 4044672 Test 013 cpld_bmark_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/cpld_restart_bmark_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/cpld_restart_bmark_p8 Checking test 014 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -918,14 +918,14 @@ Checking test 014 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 444.277907 - 0: The maximum resident set size (KB) = 3982364 + 0: The total amount of wall time = 438.627630 + 0: The maximum resident set size (KB) = 3981580 Test 014 cpld_restart_bmark_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/cpld_control_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/cpld_control_noaero_p8 Checking test 015 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -989,14 +989,14 @@ Checking test 015 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 263.217062 - 0: The maximum resident set size (KB) = 1720152 + 0: The total amount of wall time = 262.008956 + 0: The maximum resident set size (KB) = 1733240 Test 015 cpld_control_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/cpld_control_nowave_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_c96_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/cpld_control_nowave_noaero_p8 Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1058,14 +1058,14 @@ Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 259.833873 - 0: The maximum resident set size (KB) = 1767648 + 0: The total amount of wall time = 261.133107 + 0: The maximum resident set size (KB) = 1765592 Test 016 cpld_control_nowave_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/cpld_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/cpld_debug_p8 Checking test 017 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1118,14 +1118,14 @@ Checking test 017 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 649.240559 - 0: The maximum resident set size (KB) = 3244824 + 0: The total amount of wall time = 638.994153 + 0: The maximum resident set size (KB) = 3242712 Test 017 cpld_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_debug_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/cpld_debug_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_debug_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/cpld_debug_noaero_p8 Checking test 018 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1177,14 +1177,14 @@ Checking test 018 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 402.117454 - 0: The maximum resident set size (KB) = 1740092 + 0: The total amount of wall time = 399.317435 + 0: The maximum resident set size (KB) = 1747328 Test 018 cpld_debug_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_noaero_p8_agrid -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/cpld_control_noaero_p8_agrid +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_noaero_p8_agrid +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/cpld_control_noaero_p8_agrid Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1246,14 +1246,14 @@ Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 264.955329 - 0: The maximum resident set size (KB) = 1763244 + 0: The total amount of wall time = 270.701112 + 0: The maximum resident set size (KB) = 1765608 Test 019 cpld_control_noaero_p8_agrid PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/cpld_control_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_c48 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/cpld_control_c48 Checking test 020 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1303,14 +1303,14 @@ Checking test 020 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 576.858537 - 0: The maximum resident set size (KB) = 2803852 + 0: The total amount of wall time = 580.525654 + 0: The maximum resident set size (KB) = 2809392 Test 020 cpld_control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/cpld_warmstart_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_warmstart_c48 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/cpld_warmstart_c48 Checking test 021 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1360,14 +1360,14 @@ Checking test 021 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 155.663069 - 0: The maximum resident set size (KB) = 2807624 + 0: The total amount of wall time = 155.119456 + 0: The maximum resident set size (KB) = 2801400 Test 021 cpld_warmstart_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/cpld_restart_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_warmstart_c48 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/cpld_restart_c48 Checking test 022 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1417,14 +1417,14 @@ Checking test 022 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 83.780851 - 0: The maximum resident set size (KB) = 2246032 + 0: The total amount of wall time = 80.307218 + 0: The maximum resident set size (KB) = 2240964 Test 022 cpld_restart_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/cpld_control_p8_faster +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8_faster +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/cpld_control_p8_faster Checking test 023 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1489,14 +1489,14 @@ Checking test 023 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 321.376559 - 0: The maximum resident set size (KB) = 3182860 + 0: The total amount of wall time = 315.586389 + 0: The maximum resident set size (KB) = 3184172 Test 023 cpld_control_p8_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_CubedSphereGrid -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_CubedSphereGrid +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_CubedSphereGrid +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_CubedSphereGrid Checking test 024 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1523,28 +1523,28 @@ Checking test 024 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 130.793587 - 0: The maximum resident set size (KB) = 631256 + 0: The total amount of wall time = 129.480279 + 0: The maximum resident set size (KB) = 632712 Test 024 control_CubedSphereGrid PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_CubedSphereGrid_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_CubedSphereGrid_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_CubedSphereGrid_parallel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_CubedSphereGrid_parallel Checking test 025 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 128.575517 - 0: The maximum resident set size (KB) = 632532 + 0: The total amount of wall time = 127.394139 + 0: The maximum resident set size (KB) = 634788 Test 025 control_CubedSphereGrid_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_latlon -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_latlon +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_latlon +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_latlon Checking test 026 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1555,16 +1555,16 @@ Checking test 026 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 133.447189 - 0: The maximum resident set size (KB) = 628924 + 0: The total amount of wall time = 133.535390 + 0: The maximum resident set size (KB) = 630308 Test 026 control_latlon PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_wrtGauss_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_wrtGauss_netcdf_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wrtGauss_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_wrtGauss_netcdf_parallel Checking test 027 control_wrtGauss_netcdf_parallel results .... - Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK @@ -1573,14 +1573,14 @@ Checking test 027 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.810811 - 0: The maximum resident set size (KB) = 629088 + 0: The total amount of wall time = 136.512732 + 0: The maximum resident set size (KB) = 632940 Test 027 control_wrtGauss_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_c48 Checking test 028 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1619,14 +1619,14 @@ Checking test 028 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 372.049045 -0: The maximum resident set size (KB) = 820256 +0: The total amount of wall time = 370.531484 +0: The maximum resident set size (KB) = 819308 Test 028 control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_c192 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c192 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_c192 Checking test 029 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1637,14 +1637,14 @@ Checking test 029 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 526.898198 - 0: The maximum resident set size (KB) = 772312 + 0: The total amount of wall time = 523.811352 + 0: The maximum resident set size (KB) = 772760 Test 029 control_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_c384 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c384 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_c384 Checking test 030 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1655,14 +1655,14 @@ Checking test 030 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 520.661212 - 0: The maximum resident set size (KB) = 1271156 + 0: The total amount of wall time = 519.064098 + 0: The maximum resident set size (KB) = 1269960 Test 030 control_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_c384gdas -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_c384gdas +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c384gdas +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_c384gdas Checking test 031 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1705,14 +1705,14 @@ Checking test 031 control_c384gdas results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 456.681588 - 0: The maximum resident set size (KB) = 1381260 + 0: The total amount of wall time = 454.410487 + 0: The maximum resident set size (KB) = 1391568 Test 031 control_c384gdas PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_stochy +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_stochy Checking test 032 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1723,28 +1723,28 @@ Checking test 032 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 89.070107 - 0: The maximum resident set size (KB) = 631412 + 0: The total amount of wall time = 87.394307 + 0: The maximum resident set size (KB) = 634096 Test 032 control_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_stochy_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_stochy_restart Checking test 033 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 48.228840 - 0: The maximum resident set size (KB) = 486576 + 0: The total amount of wall time = 49.462750 + 0: The maximum resident set size (KB) = 490124 Test 033 control_stochy_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_lndp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_lndp +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_lndp Checking test 034 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1755,14 +1755,14 @@ Checking test 034 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 82.801681 - 0: The maximum resident set size (KB) = 633572 + 0: The total amount of wall time = 80.593222 + 0: The maximum resident set size (KB) = 633356 Test 034 control_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_iovr4 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_iovr4 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_iovr4 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_iovr4 Checking test 035 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1777,14 +1777,14 @@ Checking test 035 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.834284 - 0: The maximum resident set size (KB) = 632080 + 0: The total amount of wall time = 137.244319 + 0: The maximum resident set size (KB) = 631784 Test 035 control_iovr4 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_iovr5 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_iovr5 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_iovr5 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_iovr5 Checking test 036 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1799,14 +1799,14 @@ Checking test 036 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.833993 - 0: The maximum resident set size (KB) = 630548 + 0: The total amount of wall time = 134.888110 + 0: The maximum resident set size (KB) = 631056 Test 036 control_iovr5 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_p8 Checking test 037 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1853,14 +1853,14 @@ Checking test 037 control_p8 results .... Comparing 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.940351 - 0: The maximum resident set size (KB) = 1605052 + 0: The total amount of wall time = 165.955178 + 0: The maximum resident set size (KB) = 1601916 Test 037 control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_restart_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_restart_p8 Checking test 038 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1899,14 +1899,14 @@ Checking test 038 control_restart_p8 results .... Comparing 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.856871 - 0: The maximum resident set size (KB) = 871036 + 0: The total amount of wall time = 87.618835 + 0: The maximum resident set size (KB) = 873244 Test 038 control_restart_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_qr_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_qr_p8 Checking test 039 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1953,14 +1953,14 @@ Checking test 039 control_qr_p8 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 = 165.937577 - 0: The maximum resident set size (KB) = 1614736 + 0: The total amount of wall time = 167.591394 + 0: The maximum resident set size (KB) = 1611700 Test 039 control_qr_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_restart_qr_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_restart_qr_p8 Checking test 040 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1999,14 +1999,14 @@ Checking test 040 control_restart_qr_p8 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.546475 - 0: The maximum resident set size (KB) = 871524 + 0: The total amount of wall time = 89.486356 + 0: The maximum resident set size (KB) = 870412 Test 040 control_restart_qr_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_decomp_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_decomp_p8 Checking test 041 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2049,14 +2049,14 @@ Checking test 041 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 171.622515 - 0: The maximum resident set size (KB) = 1584640 + 0: The total amount of wall time = 172.335574 + 0: The maximum resident set size (KB) = 1591104 Test 041 control_decomp_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_2threads_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_2threads_p8 Checking test 042 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2099,14 +2099,14 @@ Checking test 042 control_2threads_p8 results .... Comparing 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.053439 - 0: The maximum resident set size (KB) = 1687088 + 0: The total amount of wall time = 155.850775 + 0: The maximum resident set size (KB) = 1696020 Test 042 control_2threads_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_p8_lndp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_lndp +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_p8_lndp Checking test 043 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2125,14 +2125,14 @@ Checking test 043 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 310.999878 - 0: The maximum resident set size (KB) = 1607184 + 0: The total amount of wall time = 310.685418 + 0: The maximum resident set size (KB) = 1605164 Test 043 control_p8_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_p8_rrtmgp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_p8_rrtmgp Checking test 044 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2179,14 +2179,14 @@ Checking test 044 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 222.268318 - 0: The maximum resident set size (KB) = 1678956 + 0: The total amount of wall time = 222.222941 + 0: The maximum resident set size (KB) = 1684588 Test 044 control_p8_rrtmgp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8_mynn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_p8_mynn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_mynn +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_p8_mynn Checking test 045 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2233,14 +2233,14 @@ Checking test 045 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 168.761832 - 0: The maximum resident set size (KB) = 1608436 + 0: The total amount of wall time = 169.009420 + 0: The maximum resident set size (KB) = 1603860 Test 045 control_p8_mynn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/merra2_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/merra2_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/merra2_thompson +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/merra2_thompson Checking test 046 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2287,14 +2287,14 @@ Checking test 046 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 189.670516 - 0: The maximum resident set size (KB) = 1615628 + 0: The total amount of wall time = 189.068260 + 0: The maximum resident set size (KB) = 1614860 Test 046 merra2_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/regional_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/regional_control Checking test 047 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2305,28 +2305,28 @@ Checking test 047 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 297.668338 - 0: The maximum resident set size (KB) = 876716 + 0: The total amount of wall time = 296.007375 + 0: The maximum resident set size (KB) = 874304 Test 047 regional_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/regional_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/regional_restart Checking test 048 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 154.031444 - 0: The maximum resident set size (KB) = 863088 + 0: The total amount of wall time = 150.719031 + 0: The maximum resident set size (KB) = 866744 Test 048 regional_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/regional_control_qr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/regional_control_qr Checking test 049 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2337,28 +2337,28 @@ Checking test 049 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 297.802342 - 0: The maximum resident set size (KB) = 873208 + 0: The total amount of wall time = 297.018613 + 0: The maximum resident set size (KB) = 872544 Test 049 regional_control_qr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/regional_restart_qr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/regional_restart_qr Checking test 050 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 152.794969 - 0: The maximum resident set size (KB) = 869480 + 0: The total amount of wall time = 150.530008 + 0: The maximum resident set size (KB) = 862000 Test 050 regional_restart_qr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/regional_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/regional_decomp Checking test 051 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2369,14 +2369,14 @@ Checking test 051 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 314.661253 - 0: The maximum resident set size (KB) = 865008 + 0: The total amount of wall time = 313.345722 + 0: The maximum resident set size (KB) = 864472 Test 051 regional_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/regional_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/regional_2threads Checking test 052 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2387,14 +2387,14 @@ Checking test 052 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 178.943816 - 0: The maximum resident set size (KB) = 854956 + 0: The total amount of wall time = 181.054317 + 0: The maximum resident set size (KB) = 844288 Test 052 regional_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_noquilt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/regional_noquilt +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_noquilt +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/regional_noquilt Checking test 053 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2402,28 +2402,28 @@ Checking test 053 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 318.844697 - 0: The maximum resident set size (KB) = 861548 + 0: The total amount of wall time = 321.512538 + 0: The maximum resident set size (KB) = 863456 Test 053 regional_noquilt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/regional_netcdf_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/regional_netcdf_parallel Checking test 054 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 292.084765 - 0: The maximum resident set size (KB) = 867952 + 0: The total amount of wall time = 292.951281 + 0: The maximum resident set size (KB) = 864192 Test 054 regional_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/regional_2dwrtdecomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/regional_2dwrtdecomp Checking test 055 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2434,14 +2434,14 @@ Checking test 055 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 301.160850 - 0: The maximum resident set size (KB) = 872540 + 0: The total amount of wall time = 296.993860 + 0: The maximum resident set size (KB) = 871536 Test 055 regional_2dwrtdecomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/fv3_regional_wofs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/regional_wofs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/fv3_regional_wofs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/regional_wofs Checking test 056 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2452,14 +2452,14 @@ Checking test 056 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 375.506937 - 0: The maximum resident set size (KB) = 632796 + 0: The total amount of wall time = 375.833207 + 0: The maximum resident set size (KB) = 630572 Test 056 regional_wofs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/rap_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/rap_control Checking test 057 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2506,14 +2506,14 @@ Checking test 057 rap_control results .... Comparing 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.225423 - 0: The maximum resident set size (KB) = 1059308 + 0: The total amount of wall time = 458.249343 + 0: The maximum resident set size (KB) = 1066044 Test 057 rap_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_spp_sppt_shum_skeb -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/regional_spp_sppt_shum_skeb +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_spp_sppt_shum_skeb +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/regional_spp_sppt_shum_skeb Checking test 058 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2524,14 +2524,14 @@ Checking test 058 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 235.332948 - 0: The maximum resident set size (KB) = 1180760 + 0: The total amount of wall time = 234.429240 + 0: The maximum resident set size (KB) = 1175760 Test 058 regional_spp_sppt_shum_skeb PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/rap_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/rap_decomp Checking test 059 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2578,14 +2578,14 @@ Checking test 059 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 477.119009 - 0: The maximum resident set size (KB) = 1007116 + 0: The total amount of wall time = 476.334710 + 0: The maximum resident set size (KB) = 1003136 Test 059 rap_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/rap_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/rap_2threads Checking test 060 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2632,14 +2632,14 @@ Checking test 060 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 432.691719 - 0: The maximum resident set size (KB) = 1134436 + 0: The total amount of wall time = 433.148054 + 0: The maximum resident set size (KB) = 1139048 Test 060 rap_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/rap_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/rap_restart Checking test 061 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2678,14 +2678,14 @@ Checking test 061 rap_restart results .... Comparing 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.021583 - 0: The maximum resident set size (KB) = 967724 + 0: The total amount of wall time = 231.352354 + 0: The maximum resident set size (KB) = 970732 Test 061 rap_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/rap_sfcdiff +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/rap_sfcdiff Checking test 062 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2732,14 +2732,14 @@ Checking test 062 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 459.889196 - 0: The maximum resident set size (KB) = 1067168 + 0: The total amount of wall time = 458.052173 + 0: The maximum resident set size (KB) = 1057484 Test 062 rap_sfcdiff PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/rap_sfcdiff_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/rap_sfcdiff_decomp Checking test 063 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2786,14 +2786,14 @@ Checking test 063 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 481.149516 - 0: The maximum resident set size (KB) = 1000992 + 0: The total amount of wall time = 479.726408 + 0: The maximum resident set size (KB) = 996168 Test 063 rap_sfcdiff_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/rap_sfcdiff_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/rap_sfcdiff_restart Checking test 064 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2832,14 +2832,14 @@ Checking test 064 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 340.125395 - 0: The maximum resident set size (KB) = 993068 + 0: The total amount of wall time = 339.573838 + 0: The maximum resident set size (KB) = 986580 Test 064 rap_sfcdiff_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/hrrr_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/hrrr_control Checking test 065 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2886,14 +2886,14 @@ Checking test 065 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 444.107914 - 0: The maximum resident set size (KB) = 1050184 + 0: The total amount of wall time = 442.601783 + 0: The maximum resident set size (KB) = 1058936 Test 065 hrrr_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/hrrr_control_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/hrrr_control_decomp Checking test 066 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2940,14 +2940,14 @@ Checking test 066 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 463.210825 - 0: The maximum resident set size (KB) = 997544 + 0: The total amount of wall time = 462.160831 + 0: The maximum resident set size (KB) = 998260 Test 066 hrrr_control_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/hrrr_control_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/hrrr_control_2threads Checking test 067 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2994,14 +2994,14 @@ Checking test 067 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 418.034122 - 0: The maximum resident set size (KB) = 1135012 + 0: The total amount of wall time = 419.004809 + 0: The maximum resident set size (KB) = 1135728 Test 067 hrrr_control_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/hrrr_control_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/hrrr_control_restart Checking test 068 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3040,14 +3040,14 @@ Checking test 068 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 329.498235 - 0: The maximum resident set size (KB) = 987852 + 0: The total amount of wall time = 328.716767 + 0: The maximum resident set size (KB) = 986024 Test 068 hrrr_control_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/rrfs_v1beta +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/rrfs_v1beta Checking test 069 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3094,14 +3094,14 @@ Checking test 069 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 453.959161 - 0: The maximum resident set size (KB) = 1055304 + 0: The total amount of wall time = 455.688055 + 0: The maximum resident set size (KB) = 1057156 Test 069 rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_v1nssl -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/rrfs_v1nssl +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1nssl +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/rrfs_v1nssl Checking test 070 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3116,14 +3116,14 @@ Checking test 070 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 534.482871 - 0: The maximum resident set size (KB) = 690512 + 0: The total amount of wall time = 532.258948 + 0: The maximum resident set size (KB) = 693956 Test 070 rrfs_v1nssl PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/rrfs_v1nssl_nohailnoccn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/rrfs_v1nssl_nohailnoccn Checking test 071 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3138,14 +3138,14 @@ Checking test 071 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 521.798147 - 0: The maximum resident set size (KB) = 758636 + 0: The total amount of wall time = 522.922134 + 0: The maximum resident set size (KB) = 758024 Test 071 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/rrfs_smoke_conus13km_hrrr_warm Checking test 072 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3154,14 +3154,14 @@ Checking test 072 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 146.167810 - 0: The maximum resident set size (KB) = 1031648 + 0: The total amount of wall time = 146.516925 + 0: The maximum resident set size (KB) = 1038608 Test 072 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 073 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3170,14 +3170,14 @@ Checking test 073 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 91.501532 - 0: The maximum resident set size (KB) = 941924 + 0: The total amount of wall time = 90.510525 + 0: The maximum resident set size (KB) = 943352 Test 073 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/rrfs_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/rrfs_conus13km_hrrr_warm Checking test 074 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3186,14 +3186,14 @@ Checking test 074 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 129.583161 - 0: The maximum resident set size (KB) = 943912 + 0: The total amount of wall time = 130.346976 + 0: The maximum resident set size (KB) = 944028 Test 074 rrfs_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/rrfs_smoke_conus13km_radar_tten_warm Checking test 075 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3202,26 +3202,26 @@ Checking test 075 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 146.323854 - 0: The maximum resident set size (KB) = 1038260 + 0: The total amount of wall time = 147.084007 + 0: The maximum resident set size (KB) = 1039300 Test 075 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 076 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 71.319471 - 0: The maximum resident set size (KB) = 932116 + 0: The total amount of wall time = 67.981284 + 0: The maximum resident set size (KB) = 934508 Test 076 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_csawmg -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_csawmg +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmg +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_csawmg Checking test 077 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3232,14 +3232,14 @@ Checking test 077 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 341.753268 - 0: The maximum resident set size (KB) = 723484 + 0: The total amount of wall time = 341.526716 + 0: The maximum resident set size (KB) = 727156 Test 077 control_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_csawmgt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_csawmgt +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmgt +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_csawmgt Checking test 078 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3250,14 +3250,14 @@ Checking test 078 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 336.858079 - 0: The maximum resident set size (KB) = 726444 + 0: The total amount of wall time = 337.254188 + 0: The maximum resident set size (KB) = 723452 Test 078 control_csawmgt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_ras +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_ras +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_ras Checking test 079 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3268,26 +3268,26 @@ Checking test 079 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 180.367357 - 0: The maximum resident set size (KB) = 720068 + 0: The total amount of wall time = 180.318165 + 0: The maximum resident set size (KB) = 720664 Test 079 control_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_wam -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_wam +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wam +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_wam Checking test 080 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 112.014470 - 0: The maximum resident set size (KB) = 633964 + 0: The total amount of wall time = 112.550827 + 0: The maximum resident set size (KB) = 643132 Test 080 control_wam PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_p8_faster +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_faster +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_p8_faster Checking test 081 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3334,14 +3334,14 @@ Checking test 081 control_p8_faster results .... Comparing 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.499868 - 0: The maximum resident set size (KB) = 1608568 + 0: The total amount of wall time = 150.458677 + 0: The maximum resident set size (KB) = 1611716 Test 081 control_p8_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/regional_control_faster +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control_faster +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/regional_control_faster Checking test 082 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3352,56 +3352,56 @@ Checking test 082 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 272.776973 - 0: The maximum resident set size (KB) = 870020 + 0: The total amount of wall time = 271.447110 + 0: The maximum resident set size (KB) = 869852 Test 082 regional_control_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 083 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 837.710450 - 0: The maximum resident set size (KB) = 1068356 + 0: The total amount of wall time = 834.970575 + 0: The maximum resident set size (KB) = 1069808 Test 083 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 084 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 477.884701 - 0: The maximum resident set size (KB) = 979496 + 0: The total amount of wall time = 468.920189 + 0: The maximum resident set size (KB) = 975952 Test 084 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/rrfs_conus13km_hrrr_warm_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/rrfs_conus13km_hrrr_warm_debug Checking test 085 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 753.157060 - 0: The maximum resident set size (KB) = 978508 + 0: The total amount of wall time = 745.942670 + 0: The maximum resident set size (KB) = 976964 Test 085 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_CubedSphereGrid_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_CubedSphereGrid_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_CubedSphereGrid_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_CubedSphereGrid_debug Checking test 086 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3428,334 +3428,334 @@ Checking test 086 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 161.905093 - 0: The maximum resident set size (KB) = 794816 + 0: The total amount of wall time = 160.855859 + 0: The maximum resident set size (KB) = 801672 Test 086 control_CubedSphereGrid_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_wrtGauss_netcdf_parallel_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_wrtGauss_netcdf_parallel_debug Checking test 087 control_wrtGauss_netcdf_parallel_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 149.042585 - 0: The maximum resident set size (KB) = 799048 + 0: The total amount of wall time = 152.584509 + 0: The maximum resident set size (KB) = 800264 Test 087 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_stochy_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_stochy_debug Checking test 088 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 172.171937 - 0: The maximum resident set size (KB) = 798988 + 0: The total amount of wall time = 168.537354 + 0: The maximum resident set size (KB) = 805240 Test 088 control_stochy_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_lndp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_lndp_debug Checking test 089 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 153.281131 - 0: The maximum resident set size (KB) = 798784 + 0: The total amount of wall time = 153.889298 + 0: The maximum resident set size (KB) = 797004 Test 089 control_lndp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_csawmg_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_csawmg_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmg_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_csawmg_debug Checking test 090 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 234.504297 - 0: The maximum resident set size (KB) = 845812 + 0: The total amount of wall time = 228.904061 + 0: The maximum resident set size (KB) = 846168 Test 090 control_csawmg_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_csawmgt_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_csawmgt_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmgt_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_csawmgt_debug Checking test 091 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 230.148925 - 0: The maximum resident set size (KB) = 847064 + 0: The total amount of wall time = 230.273245 + 0: The maximum resident set size (KB) = 844856 Test 091 control_csawmgt_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_ras_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_ras_debug Checking test 092 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 153.327677 - 0: The maximum resident set size (KB) = 806276 + 0: The total amount of wall time = 153.966954 + 0: The maximum resident set size (KB) = 812240 Test 092 control_ras_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_diag_debug Checking test 093 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 160.481968 - 0: The maximum resident set size (KB) = 854868 + 0: The total amount of wall time = 159.835089 + 0: The maximum resident set size (KB) = 859352 Test 093 control_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_debug_p8 Checking test 094 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 169.820090 - 0: The maximum resident set size (KB) = 1630396 + 0: The total amount of wall time = 170.963516 + 0: The maximum resident set size (KB) = 1620556 Test 094 control_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/regional_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/regional_debug Checking test 095 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 974.899857 - 0: The maximum resident set size (KB) = 886896 + 0: The total amount of wall time = 980.200353 + 0: The maximum resident set size (KB) = 887304 Test 095 regional_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/rap_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/rap_control_debug Checking test 096 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.877924 - 0: The maximum resident set size (KB) = 1172556 + 0: The total amount of wall time = 271.618182 + 0: The maximum resident set size (KB) = 1177116 Test 096 rap_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/hrrr_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/hrrr_control_debug Checking test 097 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.566652 - 0: The maximum resident set size (KB) = 1180064 + 0: The total amount of wall time = 268.658404 + 0: The maximum resident set size (KB) = 1173640 Test 097 hrrr_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/rap_unified_drag_suite_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/rap_unified_drag_suite_debug Checking test 098 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.198378 - 0: The maximum resident set size (KB) = 1174232 + 0: The total amount of wall time = 274.404145 + 0: The maximum resident set size (KB) = 1173260 Test 098 rap_unified_drag_suite_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/rap_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/rap_diag_debug Checking test 099 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 289.845498 - 0: The maximum resident set size (KB) = 1258216 + 0: The total amount of wall time = 289.438244 + 0: The maximum resident set size (KB) = 1258664 Test 099 rap_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/rap_cires_ugwp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/rap_cires_ugwp_debug Checking test 100 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.074067 - 0: The maximum resident set size (KB) = 1174024 + 0: The total amount of wall time = 278.541826 + 0: The maximum resident set size (KB) = 1176192 Test 100 rap_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/rap_unified_ugwp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/rap_unified_ugwp_debug Checking test 101 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 284.193340 - 0: The maximum resident set size (KB) = 1174808 + 0: The total amount of wall time = 280.236138 + 0: The maximum resident set size (KB) = 1176048 Test 101 rap_unified_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/rap_lndp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/rap_lndp_debug Checking test 102 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 282.270038 - 0: The maximum resident set size (KB) = 1179072 + 0: The total amount of wall time = 275.478989 + 0: The maximum resident set size (KB) = 1173496 Test 102 rap_lndp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_flake_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/rap_flake_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_flake_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/rap_flake_debug Checking test 103 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.376207 - 0: The maximum resident set size (KB) = 1178232 + 0: The total amount of wall time = 274.002116 + 0: The maximum resident set size (KB) = 1171912 Test 103 rap_flake_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/rap_progcld_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/rap_progcld_thompson_debug Checking test 104 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 272.877637 - 0: The maximum resident set size (KB) = 1177216 + 0: The total amount of wall time = 279.954785 + 0: The maximum resident set size (KB) = 1172860 Test 104 rap_progcld_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_noah_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/rap_noah_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_noah_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/rap_noah_debug Checking test 105 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 270.897488 - 0: The maximum resident set size (KB) = 1174928 + 0: The total amount of wall time = 271.809237 + 0: The maximum resident set size (KB) = 1175356 Test 105 rap_noah_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_sfcdiff_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/rap_sfcdiff_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/rap_sfcdiff_debug Checking test 106 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.002592 - 0: The maximum resident set size (KB) = 1174732 + 0: The total amount of wall time = 274.810854 + 0: The maximum resident set size (KB) = 1175724 Test 106 rap_sfcdiff_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/rap_noah_sfcdiff_cires_ugwp_debug Checking test 107 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 449.872032 - 0: The maximum resident set size (KB) = 1168400 + 0: The total amount of wall time = 451.872507 + 0: The maximum resident set size (KB) = 1175824 Test 107 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/rrfs_v1beta_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/rrfs_v1beta_debug Checking test 108 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.633938 - 0: The maximum resident set size (KB) = 1172984 + 0: The total amount of wall time = 267.843711 + 0: The maximum resident set size (KB) = 1169632 Test 108 rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_wam_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_wam_debug Checking test 109 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 282.035872 - 0: The maximum resident set size (KB) = 523900 + 0: The total amount of wall time = 284.932301 + 0: The maximum resident set size (KB) = 540208 Test 109 control_wam_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3766,14 +3766,14 @@ Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 216.555576 - 0: The maximum resident set size (KB) = 1082064 + 0: The total amount of wall time = 217.017312 + 0: The maximum resident set size (KB) = 1079716 Test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/rap_control_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/rap_control_dyn32_phy32 Checking test 111 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3820,14 +3820,14 @@ Checking test 111 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 380.631925 - 0: The maximum resident set size (KB) = 1001632 + 0: The total amount of wall time = 379.613457 + 0: The maximum resident set size (KB) = 993452 Test 111 rap_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/hrrr_control_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/hrrr_control_dyn32_phy32 Checking test 112 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3874,14 +3874,14 @@ Checking test 112 hrrr_control_dyn32_phy32 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 = 196.997473 - 0: The maximum resident set size (KB) = 963560 + 0: The total amount of wall time = 198.800738 + 0: The maximum resident set size (KB) = 958324 Test 112 hrrr_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/rap_2threads_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/rap_2threads_dyn32_phy32 Checking test 113 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3928,14 +3928,14 @@ Checking test 113 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 362.392862 - 0: The maximum resident set size (KB) = 1025948 + 0: The total amount of wall time = 363.952191 + 0: The maximum resident set size (KB) = 1019132 Test 113 rap_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/hrrr_control_2threads_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/hrrr_control_2threads_dyn32_phy32 Checking test 114 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3982,14 +3982,14 @@ Checking test 114 hrrr_control_2threads_dyn32_phy32 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 = 186.947364 - 0: The maximum resident set size (KB) = 1002496 + 0: The total amount of wall time = 187.909148 + 0: The maximum resident set size (KB) = 997848 Test 114 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/hrrr_control_decomp_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/hrrr_control_decomp_dyn32_phy32 Checking test 115 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4036,14 +4036,14 @@ Checking test 115 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 208.743091 - 0: The maximum resident set size (KB) = 897864 + 0: The total amount of wall time = 208.353864 + 0: The maximum resident set size (KB) = 902328 Test 115 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/rap_restart_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/rap_restart_dyn32_phy32 Checking test 116 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4082,14 +4082,14 @@ Checking test 116 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 281.618075 - 0: The maximum resident set size (KB) = 945512 + 0: The total amount of wall time = 285.484945 + 0: The maximum resident set size (KB) = 946908 Test 116 rap_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/hrrr_control_restart_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/hrrr_control_restart_dyn32_phy32 Checking test 117 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4128,14 +4128,14 @@ Checking test 117 hrrr_control_restart_dyn32_phy32 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 = 103.784972 - 0: The maximum resident set size (KB) = 869908 + 0: The total amount of wall time = 102.948888 + 0: The maximum resident set size (KB) = 865148 Test 117 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/rap_control_dyn64_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/rap_control_dyn64_phy32 Checking test 118 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4182,81 +4182,81 @@ Checking test 118 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 243.189858 - 0: The maximum resident set size (KB) = 964892 + 0: The total amount of wall time = 244.982774 + 0: The maximum resident set size (KB) = 965952 Test 118 rap_control_dyn64_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/rap_control_debug_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/rap_control_debug_dyn32_phy32 Checking test 119 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 270.123720 - 0: The maximum resident set size (KB) = 1063760 + 0: The total amount of wall time = 269.678322 + 0: The maximum resident set size (KB) = 1062476 Test 119 rap_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/hrrr_control_debug_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/hrrr_control_debug_dyn32_phy32 Checking test 120 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 265.452259 - 0: The maximum resident set size (KB) = 1058328 + 0: The total amount of wall time = 263.957398 + 0: The maximum resident set size (KB) = 1064016 Test 120 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/rap_control_dyn64_phy32_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/rap_control_dyn64_phy32_debug Checking test 121 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.460212 - 0: The maximum resident set size (KB) = 1098164 + 0: The total amount of wall time = 277.893806 + 0: The maximum resident set size (KB) = 1103676 Test 121 rap_control_dyn64_phy32_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/hafs_regional_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/hafs_regional_atm Checking test 122 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 237.568373 - 0: The maximum resident set size (KB) = 1058392 + 0: The total amount of wall time = 234.355735 + 0: The maximum resident set size (KB) = 1049508 Test 122 hafs_regional_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/hafs_regional_atm_thompson_gfdlsf +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/hafs_regional_atm_thompson_gfdlsf Checking test 123 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 311.366199 - 0: The maximum resident set size (KB) = 1419044 + 0: The total amount of wall time = 315.191707 + 0: The maximum resident set size (KB) = 1419376 Test 123 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/hafs_regional_atm_ocn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/hafs_regional_atm_ocn Checking test 124 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4265,30 +4265,30 @@ Checking test 124 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 381.833077 - 0: The maximum resident set size (KB) = 1232756 + 0: The total amount of wall time = 380.195568 + 0: The maximum resident set size (KB) = 1224544 Test 124 hafs_regional_atm_ocn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_atm_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/hafs_regional_atm_wav +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_wav +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/hafs_regional_atm_wav Checking test 125 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - Comparing 20190829.060000.restart.ww3 .........OK + Comparing ufs.hafs.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 = 737.591779 - 0: The maximum resident set size (KB) = 1255696 + 0: The total amount of wall time = 741.116061 + 0: The maximum resident set size (KB) = 1249796 Test 125 hafs_regional_atm_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/hafs_regional_atm_ocn_wav +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/hafs_regional_atm_ocn_wav Checking test 126 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4296,31 +4296,31 @@ Checking test 126 hafs_regional_atm_ocn_wav results .... Comparing archs.2019_241_06.a .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - Comparing 20190829.060000.restart.ww3 .........OK + Comparing ufs.hafs.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 = 841.617142 - 0: The maximum resident set size (KB) = 1276068 + 0: The total amount of wall time = 839.078845 + 0: The maximum resident set size (KB) = 1268888 Test 126 hafs_regional_atm_ocn_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/hafs_regional_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/hafs_regional_1nest_atm Checking test 127 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 321.306505 - 0: The maximum resident set size (KB) = 506028 + 0: The total amount of wall time = 317.316864 + 0: The maximum resident set size (KB) = 514292 Test 127 hafs_regional_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/hafs_regional_telescopic_2nests_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/hafs_regional_telescopic_2nests_atm Checking test 128 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4329,28 +4329,28 @@ Checking test 128 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 364.693803 - 0: The maximum resident set size (KB) = 514736 + 0: The total amount of wall time = 363.203838 + 0: The maximum resident set size (KB) = 518172 Test 128 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_global_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/hafs_global_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_global_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/hafs_global_1nest_atm Checking test 129 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 149.693287 - 0: The maximum resident set size (KB) = 355780 + 0: The total amount of wall time = 146.105843 + 0: The maximum resident set size (KB) = 354096 Test 129 hafs_global_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_global_multiple_4nests_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/hafs_global_multiple_4nests_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_global_multiple_4nests_atm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/hafs_global_multiple_4nests_atm Checking test 130 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4368,14 +4368,14 @@ Checking test 130 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 409.230555 - 0: The maximum resident set size (KB) = 425072 + 0: The total amount of wall time = 411.896821 + 0: The maximum resident set size (KB) = 423080 Test 130 hafs_global_multiple_4nests_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/hafs_regional_specified_moving_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/hafs_regional_specified_moving_1nest_atm Checking test 131 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4384,28 +4384,28 @@ Checking test 131 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 202.639692 - 0: The maximum resident set size (KB) = 520564 + 0: The total amount of wall time = 201.637041 + 0: The maximum resident set size (KB) = 520636 Test 131 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/hafs_regional_storm_following_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/hafs_regional_storm_following_1nest_atm Checking test 132 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 191.183657 - 0: The maximum resident set size (KB) = 521500 + 0: The total amount of wall time = 190.846695 + 0: The maximum resident set size (KB) = 527188 Test 132 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/hafs_regional_storm_following_1nest_atm_ocn Checking test 133 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4414,42 +4414,42 @@ Checking test 133 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 221.671687 - 0: The maximum resident set size (KB) = 568856 + 0: The total amount of wall time = 224.090380 + 0: The maximum resident set size (KB) = 563576 Test 133 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_global_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/hafs_global_storm_following_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_global_storm_following_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/hafs_global_storm_following_1nest_atm Checking test 134 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 58.609290 - 0: The maximum resident set size (KB) = 372860 + 0: The total amount of wall time = 58.031765 + 0: The maximum resident set size (KB) = 367180 Test 134 hafs_global_storm_following_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_debug results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 771.578917 - 0: The maximum resident set size (KB) = 588124 + 0: The total amount of wall time = 765.717282 + 0: The maximum resident set size (KB) = 586764 Test 135 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 136 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4460,14 +4460,14 @@ Checking test 136 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 480.566906 - 0: The maximum resident set size (KB) = 619888 + 0: The total amount of wall time = 481.320400 + 0: The maximum resident set size (KB) = 620324 Test 136 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_docn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/hafs_regional_docn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_docn +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/hafs_regional_docn Checking test 137 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4475,14 +4475,14 @@ Checking test 137 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 356.149539 - 0: The maximum resident set size (KB) = 1226904 + 0: The total amount of wall time = 359.508074 + 0: The maximum resident set size (KB) = 1227588 Test 137 hafs_regional_docn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_docn_oisst -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/hafs_regional_docn_oisst +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_docn_oisst +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/hafs_regional_docn_oisst Checking test 138 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4490,131 +4490,131 @@ Checking test 138 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 356.346451 - 0: The maximum resident set size (KB) = 1214696 + 0: The total amount of wall time = 358.875071 + 0: The maximum resident set size (KB) = 1214276 Test 138 hafs_regional_docn_oisst PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_datm_cdeps -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/hafs_regional_datm_cdeps +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_datm_cdeps +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/hafs_regional_datm_cdeps Checking test 139 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 946.032996 - 0: The maximum resident set size (KB) = 1041360 + 0: The total amount of wall time = 966.754142 + 0: The maximum resident set size (KB) = 1039876 Test 139 hafs_regional_datm_cdeps PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/datm_cdeps_control_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/datm_cdeps_control_cfsr Checking test 140 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 155.205284 - 0: The maximum resident set size (KB) = 1058680 + 0: The total amount of wall time = 156.564583 + 0: The maximum resident set size (KB) = 1057280 Test 140 datm_cdeps_control_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/datm_cdeps_restart_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/datm_cdeps_restart_cfsr Checking test 141 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.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.463391 - 0: The maximum resident set size (KB) = 1044932 + 0: The total amount of wall time = 92.833064 + 0: The maximum resident set size (KB) = 1011248 Test 141 datm_cdeps_restart_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/datm_cdeps_control_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/datm_cdeps_control_gefs Checking test 142 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.361499 - 0: The maximum resident set size (KB) = 958508 + 0: The total amount of wall time = 148.047662 + 0: The maximum resident set size (KB) = 970016 Test 142 datm_cdeps_control_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_iau_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/datm_cdeps_iau_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_iau_gefs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/datm_cdeps_iau_gefs Checking test 143 datm_cdeps_iau_gefs 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.962982 - 0: The maximum resident set size (KB) = 967132 + 0: The total amount of wall time = 154.276007 + 0: The maximum resident set size (KB) = 961688 Test 143 datm_cdeps_iau_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_stochy_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/datm_cdeps_stochy_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_stochy_gefs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/datm_cdeps_stochy_gefs Checking test 144 datm_cdeps_stochy_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 151.861041 - 0: The maximum resident set size (KB) = 965964 + 0: The total amount of wall time = 146.848732 + 0: The maximum resident set size (KB) = 960584 Test 144 datm_cdeps_stochy_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_ciceC_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/datm_cdeps_ciceC_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_ciceC_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/datm_cdeps_ciceC_cfsr Checking test 145 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 153.588802 - 0: The maximum resident set size (KB) = 1069640 + 0: The total amount of wall time = 154.200763 + 0: The maximum resident set size (KB) = 1059680 Test 145 datm_cdeps_ciceC_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/datm_cdeps_bulk_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/datm_cdeps_bulk_cfsr Checking test 146 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 154.782699 - 0: The maximum resident set size (KB) = 1058832 + 0: The total amount of wall time = 154.384076 + 0: The maximum resident set size (KB) = 1083480 Test 146 datm_cdeps_bulk_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/datm_cdeps_bulk_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/datm_cdeps_bulk_gefs Checking test 147 datm_cdeps_bulk_gefs 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.275618 - 0: The maximum resident set size (KB) = 968228 + 0: The total amount of wall time = 146.993248 + 0: The maximum resident set size (KB) = 964212 Test 147 datm_cdeps_bulk_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/datm_cdeps_mx025_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/datm_cdeps_mx025_cfsr Checking test 148 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4623,14 +4623,14 @@ Checking test 148 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 395.320969 - 0: The maximum resident set size (KB) = 871536 + 0: The total amount of wall time = 398.522889 + 0: The maximum resident set size (KB) = 876200 Test 148 datm_cdeps_mx025_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/datm_cdeps_mx025_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/datm_cdeps_mx025_gefs Checking test 149 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4639,77 +4639,77 @@ Checking test 149 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 397.332813 - 0: The maximum resident set size (KB) = 926324 + 0: The total amount of wall time = 397.380905 + 0: The maximum resident set size (KB) = 930916 Test 149 datm_cdeps_mx025_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/datm_cdeps_multiple_files_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/datm_cdeps_multiple_files_cfsr Checking test 150 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 153.962135 - 0: The maximum resident set size (KB) = 1058548 + 0: The total amount of wall time = 151.923359 + 0: The maximum resident set size (KB) = 1067948 Test 150 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/datm_cdeps_3072x1536_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/datm_cdeps_3072x1536_cfsr Checking test 151 datm_cdeps_3072x1536_cfsr 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.111376 - 0: The maximum resident set size (KB) = 2369404 + 0: The total amount of wall time = 226.633339 + 0: The maximum resident set size (KB) = 2312280 Test 151 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_gfs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/datm_cdeps_gfs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_gfs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/datm_cdeps_gfs Checking test 152 datm_cdeps_gfs results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 218.269599 - 0: The maximum resident set size (KB) = 2371852 + 0: The total amount of wall time = 224.587144 + 0: The maximum resident set size (KB) = 2371564 Test 152 datm_cdeps_gfs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/datm_cdeps_debug_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/datm_cdeps_debug_cfsr Checking test 153 datm_cdeps_debug_cfsr 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 = 446.786465 - 0: The maximum resident set size (KB) = 986876 + 0: The total amount of wall time = 435.285204 + 0: The maximum resident set size (KB) = 988204 Test 153 datm_cdeps_debug_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_control_cfsr_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/datm_cdeps_control_cfsr_faster +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr_faster +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/datm_cdeps_control_cfsr_faster Checking test 154 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 152.325956 - 0: The maximum resident set size (KB) = 1069960 + 0: The total amount of wall time = 153.530364 + 0: The maximum resident set size (KB) = 1062504 Test 154 datm_cdeps_control_cfsr_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/datm_cdeps_lnd_gswp3 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_lnd_gswp3 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/datm_cdeps_lnd_gswp3 Checking test 155 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4718,14 +4718,14 @@ Checking test 155 datm_cdeps_lnd_gswp3 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.215629 - 0: The maximum resident set size (KB) = 267328 + 0: The total amount of wall time = 6.730492 + 0: The maximum resident set size (KB) = 264260 Test 155 datm_cdeps_lnd_gswp3 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/datm_cdeps_lnd_gswp3_rst +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_lnd_gswp3 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/datm_cdeps_lnd_gswp3_rst Checking test 156 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4734,14 +4734,14 @@ Checking test 156 datm_cdeps_lnd_gswp3_rst 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.704865 - 0: The maximum resident set size (KB) = 273436 + 0: The total amount of wall time = 11.876085 + 0: The maximum resident set size (KB) = 263812 Test 156 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8_atmlnd_sbs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_p8_atmlnd_sbs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_atmlnd_sbs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_p8_atmlnd_sbs Checking test 157 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4826,14 +4826,14 @@ Checking test 157 control_p8_atmlnd_sbs 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 = 204.120558 - 0: The maximum resident set size (KB) = 1615716 + 0: The total amount of wall time = 203.914941 + 0: The maximum resident set size (KB) = 1608840 Test 157 control_p8_atmlnd_sbs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_atmwav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/control_atmwav +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_atmwav +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_atmwav Checking test 158 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4877,14 +4877,14 @@ Checking test 158 control_atmwav 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.233602 - 0: The maximum resident set size (KB) = 663416 + 0: The total amount of wall time = 89.345755 + 0: The maximum resident set size (KB) = 660424 Test 158 control_atmwav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/atmaero_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/atmaero_control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/atmaero_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/atmaero_control_p8 Checking test 159 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4928,14 +4928,14 @@ Checking test 159 atmaero_control_p8 results .... Comparing 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.974139 - 0: The maximum resident set size (KB) = 2977544 + 0: The total amount of wall time = 229.203582 + 0: The maximum resident set size (KB) = 2975592 Test 159 atmaero_control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/atmaero_control_p8_rad -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/atmaero_control_p8_rad +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/atmaero_control_p8_rad +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/atmaero_control_p8_rad Checking test 160 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4979,14 +4979,14 @@ Checking test 160 atmaero_control_p8_rad results .... Comparing 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.232167 - 0: The maximum resident set size (KB) = 3045920 + 0: The total amount of wall time = 280.859474 + 0: The maximum resident set size (KB) = 3042772 Test 160 atmaero_control_p8_rad PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/atmaero_control_p8_rad_micro -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/atmaero_control_p8_rad_micro +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/atmaero_control_p8_rad_micro +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/atmaero_control_p8_rad_micro Checking test 161 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5030,14 +5030,14 @@ Checking test 161 atmaero_control_p8_rad_micro results .... Comparing 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.843515 - 0: The maximum resident set size (KB) = 3054668 + 0: The total amount of wall time = 286.106403 + 0: The maximum resident set size (KB) = 3053204 Test 161 atmaero_control_p8_rad_micro PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_atmaq -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/regional_atmaq +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_atmaq +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/regional_atmaq Checking test 162 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5053,14 +5053,14 @@ Checking test 162 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 631.002126 - 0: The maximum resident set size (KB) = 1468172 + 0: The total amount of wall time = 628.654072 + 0: The maximum resident set size (KB) = 1469524 Test 162 regional_atmaq PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_atmaq_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/regional_atmaq_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_atmaq_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/regional_atmaq_debug Checking test 163 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5074,14 +5074,14 @@ Checking test 163 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1208.023667 - 0: The maximum resident set size (KB) = 1399224 + 0: The total amount of wall time = 1226.243789 + 0: The maximum resident set size (KB) = 1398516 Test 163 regional_atmaq_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_atmaq_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_4096/regional_atmaq_faster +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_atmaq_faster +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/regional_atmaq_faster Checking test 164 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5097,12 +5097,12 @@ Checking test 164 regional_atmaq_faster 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.602729 - 0: The maximum resident set size (KB) = 1471224 + 0: The total amount of wall time = 549.265792 + 0: The maximum resident set size (KB) = 1473148 Test 164 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Thu Mar 30 15:15:27 UTC 2023 -Elapsed time: 01h:11m:31s. Have a nice day! +Sun Apr 2 13:57:15 UTC 2023 +Elapsed time: 01h:12m:42s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index 3fb590e63e0..bad2e8c1f86 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,43 +1,42 @@ -Fri Mar 31 12:35:21 UTC 2023 +Mon Apr 3 01:00:27 UTC 2023 Start Regression test -Compile 001 elapsed time 1953 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 002 elapsed time 1891 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 003 elapsed time 1860 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 004 elapsed time 360 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 277 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 1521 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 007 elapsed time 1548 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 008 elapsed time 3371 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 009 elapsed time 1690 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 010 elapsed time 1615 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 011 elapsed time 1530 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 012 elapsed time 1440 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 013 elapsed time 2052 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 014 elapsed time 330 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 280 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 1460 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 017 elapsed time 1462 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 018 elapsed time 272 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 286 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 1728 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 021 elapsed time 309 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 2134 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 023 elapsed time 1643 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 024 elapsed time 320 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 025 elapsed time 149 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 312 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 027 elapsed time 117 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 028 elapsed time 1512 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 029 elapsed time 1738 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 030 elapsed time 1508 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 031 elapsed time 1448 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 032 elapsed time 312 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 1897 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8_mixedmode -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_8217/cpld_control_p8_mixedmode +Compile 001 elapsed time 2268 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 002 elapsed time 2177 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 003 elapsed time 1861 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 004 elapsed time 522 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 423 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 1936 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 007 elapsed time 1812 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 008 elapsed time 3552 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 009 elapsed time 2267 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 010 elapsed time 1861 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 011 elapsed time 1703 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 012 elapsed time 1932 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 013 elapsed time 2421 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 014 elapsed time 671 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 548 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 1621 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 017 elapsed time 1629 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 018 elapsed time 481 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 464 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 1822 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 021 elapsed time 457 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 2341 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 023 elapsed time 1777 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 024 elapsed time 377 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 025 elapsed time 295 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 417 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 027 elapsed time 180 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 028 elapsed time 1776 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 029 elapsed time 1897 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 030 elapsed time 1861 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 031 elapsed time 1846 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 032 elapsed time 883 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 2301 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8_mixedmode +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -102,14 +101,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 595.407630 - 0: The maximum resident set size (KB) = 1731236 + 0: The total amount of wall time = 1187.930317 + 0: The maximum resident set size (KB) = 1730264 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_gfsv17 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_8217/cpld_control_gfsv17 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_gfsv17 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -173,14 +172,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 427.951826 - 0: The maximum resident set size (KB) = 1615920 + 0: The total amount of wall time = 916.636491 + 0: The maximum resident set size (KB) = 1650456 Test 002 cpld_control_gfsv17 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_8217/cpld_control_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -245,14 +244,74 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 636.404599 - 0: The maximum resident set size (KB) = 1782580 + 0: The total amount of wall time = 1280.155259 + 0: The maximum resident set size (KB) = 1776512 Test 003 cpld_control_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_8217/cpld_control_qr_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/cpld_restart_p8 +Checking test 004 cpld_restart_p8 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 600.467909 + 0: The maximum resident set size (KB) = 1486268 + +Test 004 cpld_restart_p8 PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -317,14 +376,74 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 622.572282 - 0: The maximum resident set size (KB) = 1789684 + 0: The total amount of wall time = 1240.675889 + 0: The maximum resident set size (KB) = 1788000 -Test 005 cpld_control_qr_p8 PASS +Test 005 cpld_control_qr_p8 PASS Tries: 2 -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_8217/cpld_2threads_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/cpld_restart_qr_p8 +Checking test 006 cpld_restart_qr_p8 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 839.574368 + 0: The maximum resident set size (KB) = 1509920 + +Test 006 cpld_restart_qr_p8 PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -377,14 +496,74 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 635.956681 - 0: The maximum resident set size (KB) = 1987396 + 0: The total amount of wall time = 1283.780577 + 0: The maximum resident set size (KB) = 1971376 + +Test 007 cpld_2threads_p8 PASS Tries: 2 + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/cpld_decomp_p8 +Checking test 008 cpld_decomp_p8 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 1247.443273 + 0: The maximum resident set size (KB) = 1772096 -Test 007 cpld_2threads_p8 PASS +Test 008 cpld_decomp_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_8217/cpld_mpi_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -437,14 +616,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 530.467054 - 0: The maximum resident set size (KB) = 1722276 + 0: The total amount of wall time = 1179.188373 + 0: The maximum resident set size (KB) = 1727404 Test 009 cpld_mpi_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_ciceC_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_8217/cpld_control_ciceC_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_ciceC_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -509,14 +688,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 633.921824 - 0: The maximum resident set size (KB) = 1770996 + 0: The total amount of wall time = 1216.069211 + 0: The maximum resident set size (KB) = 1777828 -Test 010 cpld_control_ciceC_p8 PASS +Test 010 cpld_control_ciceC_p8 PASS Tries: 2 -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_noaero_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_8217/cpld_control_noaero_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_noaero_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/cpld_control_noaero_p8 Checking test 011 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -580,14 +759,14 @@ Checking test 011 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 515.098230 - 0: The maximum resident set size (KB) = 1624092 + 0: The total amount of wall time = 1487.954656 + 0: The maximum resident set size (KB) = 1622860 Test 011 cpld_control_noaero_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_8217/cpld_control_nowave_noaero_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_c96_noaero_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/cpld_control_nowave_noaero_p8 Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -649,14 +828,14 @@ Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 477.928168 - 0: The maximum resident set size (KB) = 1687096 + 0: The total amount of wall time = 1366.201451 + 0: The maximum resident set size (KB) = 1665832 Test 012 cpld_control_nowave_noaero_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_debug_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_8217/cpld_debug_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_debug_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/cpld_debug_p8 Checking test 013 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -709,14 +888,14 @@ Checking test 013 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 897.751246 - 0: The maximum resident set size (KB) = 1821340 + 0: The total amount of wall time = 1512.437780 + 0: The maximum resident set size (KB) = 1824908 Test 013 cpld_debug_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_debug_noaero_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_8217/cpld_debug_noaero_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_debug_noaero_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/cpld_debug_noaero_p8 Checking test 014 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -768,14 +947,83 @@ Checking test 014 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 577.139379 - 0: The maximum resident set size (KB) = 1646368 + 0: The total amount of wall time = 873.652901 + 0: The maximum resident set size (KB) = 1644712 Test 014 cpld_debug_noaero_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_c48 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_8217/cpld_control_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_noaero_p8_agrid +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/cpld_control_noaero_p8_agrid +Checking test 015 cpld_control_noaero_p8_agrid 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 = 1239.448211 + 0: The maximum resident set size (KB) = 1678864 + +Test 015 cpld_control_noaero_p8_agrid PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_c48 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/cpld_control_c48 Checking test 016 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -825,14 +1073,14 @@ Checking test 016 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 837.201729 - 0: The maximum resident set size (KB) = 2771852 + 0: The total amount of wall time = 968.933952 + 0: The maximum resident set size (KB) = 2765836 Test 016 cpld_control_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_warmstart_c48 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_8217/cpld_warmstart_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_warmstart_c48 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/cpld_warmstart_c48 Checking test 017 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -882,14 +1130,14 @@ Checking test 017 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 296.463555 - 0: The maximum resident set size (KB) = 2773972 + 0: The total amount of wall time = 480.357976 + 0: The maximum resident set size (KB) = 2766188 Test 017 cpld_warmstart_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_warmstart_c48 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_8217/cpld_restart_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_warmstart_c48 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/cpld_restart_c48 Checking test 018 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -939,15 +1187,15 @@ Checking test 018 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 125.059309 - 0: The maximum resident set size (KB) = 2205008 + 0: The total amount of wall time = 177.217862 + 0: The maximum resident set size (KB) = 2214856 Test 018 cpld_restart_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8_faster -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/cpld_control_p8_faster -Checking test 002 cpld_control_p8_faster results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8_faster +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/cpld_control_p8_faster +Checking test 019 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1011,15 +1259,15 @@ Checking test 002 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 619.710038 - 0: The maximum resident set size (KB) = 1770336 + 0: The total amount of wall time = 1101.113856 + 0: The maximum resident set size (KB) = 1766268 Test 019 cpld_control_p8_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_CubedSphereGrid -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_CubedSphereGrid -Checking test 003 control_CubedSphereGrid results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_CubedSphereGrid +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_CubedSphereGrid +Checking test 020 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1045,29 +1293,29 @@ Checking test 003 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 194.932107 - 0: The maximum resident set size (KB) = 576804 + 0: The total amount of wall time = 522.535248 + 0: The maximum resident set size (KB) = 578728 Test 020 control_CubedSphereGrid PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_CubedSphereGrid_parallel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_CubedSphereGrid_parallel -Checking test 004 control_CubedSphereGrid_parallel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_CubedSphereGrid_parallel +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_CubedSphereGrid_parallel +Checking test 021 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK + Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 202.331102 - 0: The maximum resident set size (KB) = 573980 + 0: The total amount of wall time = 546.257707 + 0: The maximum resident set size (KB) = 578996 Test 021 control_CubedSphereGrid_parallel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_latlon -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_latlon -Checking test 005 control_latlon results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_latlon +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_latlon +Checking test 022 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1077,15 +1325,15 @@ Checking test 005 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 206.514155 - 0: The maximum resident set size (KB) = 575808 + 0: The total amount of wall time = 514.637093 + 0: The maximum resident set size (KB) = 575924 Test 022 control_latlon PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_wrtGauss_netcdf_parallel -Checking test 006 control_wrtGauss_netcdf_parallel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_wrtGauss_netcdf_parallel +Checking test 023 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1095,15 +1343,15 @@ Checking test 006 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 210.948046 - 0: The maximum resident set size (KB) = 574228 + 0: The total amount of wall time = 515.923199 + 0: The maximum resident set size (KB) = 572316 Test 023 control_wrtGauss_netcdf_parallel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_c48 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_c48 -Checking test 007 control_c48 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c48 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_c48 +Checking test 024 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1141,15 +1389,15 @@ Checking test 007 control_c48 results .... Comparing 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.310545 -0: The maximum resident set size (KB) = 799284 +0: The total amount of wall time = 654.328087 +0: The maximum resident set size (KB) = 800572 Test 024 control_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_c192 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_c192 -Checking test 008 control_c192 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c192 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_c192 +Checking test 025 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1159,33 +1407,17 @@ Checking test 008 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 787.298675 - 0: The maximum resident set size (KB) = 699836 + 0: The total amount of wall time = 1294.260751 + 0: The maximum resident set size (KB) = 693588 Test 025 control_c192 PASS - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_c384 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_c384 -Checking test 009 control_c384 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 1009.031262 - 0: The maximum resident set size (KB) = 1055132 - -Test 026 control_c384 PASS +Test 026 control_c384 FAIL -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_c384gdas -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_c384gdas -Checking test 010 control_c384gdas results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c384gdas +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_c384gdas +Checking test 027 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -1227,15 +1459,15 @@ Checking test 010 control_c384gdas 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 = 885.445769 - 0: The maximum resident set size (KB) = 1206400 + 0: The total amount of wall time = 1620.904775 + 0: The maximum resident set size (KB) = 1196284 -Test 027 control_c384gdas PASS +Test 027 control_c384gdas PASS Tries: 2 -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_stochy -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_stochy -Checking test 011 control_stochy results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_stochy +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_stochy +Checking test 028 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1245,29 +1477,29 @@ Checking test 011 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 143.603676 - 0: The maximum resident set size (KB) = 581708 + 0: The total amount of wall time = 382.389479 + 0: The maximum resident set size (KB) = 579404 Test 028 control_stochy PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_stochy -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_stochy_restart -Checking test 012 control_stochy_restart results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_stochy +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_stochy_restart +Checking test 029 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 73.930431 - 0: The maximum resident set size (KB) = 398740 + 0: The total amount of wall time = 135.350117 + 0: The maximum resident set size (KB) = 400196 Test 029 control_stochy_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_lndp -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_lndp -Checking test 013 control_lndp results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_lndp +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_lndp +Checking test 030 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1277,15 +1509,15 @@ Checking test 013 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 119.719950 - 0: The maximum resident set size (KB) = 580052 + 0: The total amount of wall time = 317.662756 + 0: The maximum resident set size (KB) = 574408 Test 030 control_lndp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_iovr4 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_iovr4 -Checking test 014 control_iovr4 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_iovr4 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_iovr4 +Checking test 031 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1299,15 +1531,15 @@ Checking test 014 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 206.800471 - 0: The maximum resident set size (KB) = 573676 + 0: The total amount of wall time = 493.044938 + 0: The maximum resident set size (KB) = 576556 Test 031 control_iovr4 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_iovr5 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_iovr5 -Checking test 015 control_iovr5 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_iovr5 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_iovr5 +Checking test 032 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1321,15 +1553,15 @@ Checking test 015 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 222.000483 - 0: The maximum resident set size (KB) = 578056 + 0: The total amount of wall time = 465.193262 + 0: The maximum resident set size (KB) = 575844 Test 032 control_iovr5 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_p8 -Checking test 016 control_p8 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_p8 +Checking test 033 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1375,15 +1607,15 @@ Checking test 016 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 253.704609 - 0: The maximum resident set size (KB) = 1546392 + 0: The total amount of wall time = 422.211889 + 0: The maximum resident set size (KB) = 1536352 Test 033 control_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_restart_p8 -Checking test 017 control_restart_p8 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_restart_p8 +Checking test 034 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1421,15 +1653,15 @@ Checking test 017 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 130.078086 - 0: The maximum resident set size (KB) = 768960 + 0: The total amount of wall time = 251.481896 + 0: The maximum resident set size (KB) = 768888 Test 034 control_restart_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_qr_p8 -Checking test 018 control_qr_p8 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_qr_p8 +Checking test 035 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1475,15 +1707,15 @@ Checking test 018 control_qr_p8 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 = 238.399766 - 0: The maximum resident set size (KB) = 1549848 + 0: The total amount of wall time = 425.992683 + 0: The maximum resident set size (KB) = 1540936 Test 035 control_qr_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_restart_qr_p8 -Checking test 019 control_restart_qr_p8 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_restart_qr_p8 +Checking test 036 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1521,15 +1753,15 @@ Checking test 019 control_restart_qr_p8 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 = 135.521741 - 0: The maximum resident set size (KB) = 786796 + 0: The total amount of wall time = 316.047884 + 0: The maximum resident set size (KB) = 782812 Test 036 control_restart_qr_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_decomp_p8 -Checking test 020 control_decomp_p8 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_decomp_p8 +Checking test 037 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1571,15 +1803,15 @@ Checking test 020 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 263.491154 - 0: The maximum resident set size (KB) = 1537276 + 0: The total amount of wall time = 355.275471 + 0: The maximum resident set size (KB) = 1526360 Test 037 control_decomp_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_2threads_p8 -Checking test 021 control_2threads_p8 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_2threads_p8 +Checking test 038 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1621,15 +1853,15 @@ Checking test 021 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 238.896138 - 0: The maximum resident set size (KB) = 1622388 + 0: The total amount of wall time = 338.266716 + 0: The maximum resident set size (KB) = 1616104 Test 038 control_2threads_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8_lndp -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_p8_lndp -Checking test 022 control_p8_lndp results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_lndp +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_p8_lndp +Checking test 039 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1647,15 +1879,15 @@ Checking test 022 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 484.593778 - 0: The maximum resident set size (KB) = 1540220 + 0: The total amount of wall time = 728.032402 + 0: The maximum resident set size (KB) = 1548256 Test 039 control_p8_lndp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8_rrtmgp -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_p8_rrtmgp -Checking test 023 control_p8_rrtmgp results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_rrtmgp +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_p8_rrtmgp +Checking test 040 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1701,15 +1933,15 @@ Checking test 023 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 337.428154 - 0: The maximum resident set size (KB) = 1600600 + 0: The total amount of wall time = 496.377064 + 0: The maximum resident set size (KB) = 1611220 Test 040 control_p8_rrtmgp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8_mynn -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_p8_mynn -Checking test 024 control_p8_mynn results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_mynn +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_p8_mynn +Checking test 041 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1755,15 +1987,15 @@ Checking test 024 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 251.577176 - 0: The maximum resident set size (KB) = 1541628 + 0: The total amount of wall time = 434.159855 + 0: The maximum resident set size (KB) = 1541684 Test 041 control_p8_mynn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/merra2_thompson -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/merra2_thompson -Checking test 025 merra2_thompson results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/merra2_thompson +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/merra2_thompson +Checking test 042 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1809,15 +2041,15 @@ Checking test 025 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 280.577029 - 0: The maximum resident set size (KB) = 1546412 + 0: The total amount of wall time = 464.032666 + 0: The maximum resident set size (KB) = 1546392 Test 042 merra2_thompson PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/regional_control -Checking test 026 regional_control results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/regional_control +Checking test 043 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1827,29 +2059,29 @@ Checking test 026 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 453.843403 - 0: The maximum resident set size (KB) = 788828 + 0: The total amount of wall time = 815.399253 + 0: The maximum resident set size (KB) = 806372 Test 043 regional_control PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/regional_restart -Checking test 027 regional_restart results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/regional_restart +Checking test 044 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 323.690033 - 0: The maximum resident set size (KB) = 780308 + 0: The total amount of wall time = 512.664229 + 0: The maximum resident set size (KB) = 778412 Test 044 regional_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/regional_control_qr -Checking test 028 regional_control_qr results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/regional_control_qr +Checking test 045 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1859,29 +2091,29 @@ Checking test 028 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 442.062738 - 0: The maximum resident set size (KB) = 786028 + 0: The total amount of wall time = 771.457145 + 0: The maximum resident set size (KB) = 787240 Test 045 regional_control_qr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/regional_restart_qr -Checking test 029 regional_restart_qr results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/regional_restart_qr +Checking test 046 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 310.400858 - 0: The maximum resident set size (KB) = 777676 + 0: The total amount of wall time = 397.328340 + 0: The maximum resident set size (KB) = 780692 Test 046 regional_restart_qr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/regional_decomp -Checking test 030 regional_decomp results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/regional_decomp +Checking test 047 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1891,15 +2123,15 @@ Checking test 030 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 455.664970 - 0: The maximum resident set size (KB) = 788656 + 0: The total amount of wall time = 837.775049 + 0: The maximum resident set size (KB) = 779828 Test 047 regional_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/regional_2threads -Checking test 031 regional_2threads results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/regional_2threads +Checking test 048 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1909,44 +2141,44 @@ Checking test 031 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 305.136345 - 0: The maximum resident set size (KB) = 769228 + 0: The total amount of wall time = 666.038379 + 0: The maximum resident set size (KB) = 768460 Test 048 regional_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_noquilt -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/regional_noquilt -Checking test 032 regional_noquilt results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK - Comparing RESTART/fv_core.res.tile1_new.nc .........OK - Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_noquilt +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/regional_noquilt +Checking test 049 regional_noquilt results .... + Comparing atmos_4xdaily.nc ............MISSING baseline + Comparing fv3_history2d.nc ............MISSING baseline + Comparing fv3_history.nc ............MISSING baseline + Comparing RESTART/fv_core.res.tile1_new.nc ............MISSING baseline + Comparing RESTART/fv_tracer.res.tile1_new.nc ............MISSING baseline - 0: The total amount of wall time = 472.639644 - 0: The maximum resident set size (KB) = 770096 + 0: The total amount of wall time = 969.146288 + 0: The maximum resident set size (KB) = 771376 -Test 049 regional_noquilt PASS +Test 049 regional_noquilt FAIL Tries: 2 -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/regional_netcdf_parallel -Checking test 033 regional_netcdf_parallel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_netcdf_parallel +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/regional_netcdf_parallel +Checking test 050 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK + Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 437.654363 - 0: The maximum resident set size (KB) = 789036 + 0: The total amount of wall time = 836.130643 + 0: The maximum resident set size (KB) = 784280 Test 050 regional_netcdf_parallel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/regional_2dwrtdecomp -Checking test 034 regional_2dwrtdecomp results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/regional_2dwrtdecomp +Checking test 051 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1956,33 +2188,17 @@ Checking test 034 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 439.266588 - 0: The maximum resident set size (KB) = 789708 + 0: The total amount of wall time = 772.632845 + 0: The maximum resident set size (KB) = 788356 Test 051 regional_2dwrtdecomp PASS +Test 052 regional_wofs FAIL -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/fv3_regional_wofs -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/regional_wofs -Checking test 035 regional_wofs results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 612.688663 - 0: The maximum resident set size (KB) = 526352 - -Test 052 regional_wofs PASS - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/rap_control -Checking test 036 rap_control results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/rap_control +Checking test 053 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2028,15 +2244,15 @@ Checking test 036 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 674.206119 - 0: The maximum resident set size (KB) = 943820 + 0: The total amount of wall time = 1147.258431 + 0: The maximum resident set size (KB) = 945768 Test 053 rap_control PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/regional_spp_sppt_shum_skeb -Checking test 037 regional_spp_sppt_shum_skeb results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_spp_sppt_shum_skeb +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/regional_spp_sppt_shum_skeb +Checking test 054 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -2046,15 +2262,15 @@ Checking test 037 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 348.096794 - 0: The maximum resident set size (KB) = 1086980 + 0: The total amount of wall time = 694.206527 + 0: The maximum resident set size (KB) = 1088424 Test 054 regional_spp_sppt_shum_skeb PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/rap_decomp -Checking test 038 rap_decomp results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/rap_decomp +Checking test 055 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2100,15 +2316,15 @@ Checking test 038 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 710.595181 - 0: The maximum resident set size (KB) = 939032 + 0: The total amount of wall time = 1239.675469 + 0: The maximum resident set size (KB) = 948828 Test 055 rap_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/rap_2threads -Checking test 039 rap_2threads results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/rap_2threads +Checking test 056 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2154,15 +2370,15 @@ Checking test 039 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 663.631215 - 0: The maximum resident set size (KB) = 1018376 + 0: The total amount of wall time = 1399.832807 + 0: The maximum resident set size (KB) = 1019712 Test 056 rap_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/rap_restart -Checking test 040 rap_restart results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/rap_restart +Checking test 057 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2200,15 +2416,15 @@ Checking test 040 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 337.623719 - 0: The maximum resident set size (KB) = 829068 + 0: The total amount of wall time = 496.660531 + 0: The maximum resident set size (KB) = 824788 Test 057 rap_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/rap_sfcdiff -Checking test 041 rap_sfcdiff results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/rap_sfcdiff +Checking test 058 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2254,15 +2470,15 @@ Checking test 041 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 782.869251 - 0: The maximum resident set size (KB) = 944636 + 0: The total amount of wall time = 1219.294640 + 0: The maximum resident set size (KB) = 940680 Test 058 rap_sfcdiff PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/rap_sfcdiff_decomp -Checking test 042 rap_sfcdiff_decomp results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/rap_sfcdiff_decomp +Checking test 059 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2308,15 +2524,15 @@ Checking test 042 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 847.825960 - 0: The maximum resident set size (KB) = 952680 + 0: The total amount of wall time = 1384.574240 + 0: The maximum resident set size (KB) = 931988 Test 059 rap_sfcdiff_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/rap_sfcdiff_restart -Checking test 043 rap_sfcdiff_restart results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/rap_sfcdiff_restart +Checking test 060 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2354,15 +2570,15 @@ Checking test 043 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 535.410987 - 0: The maximum resident set size (KB) = 831044 + 0: The total amount of wall time = 702.281542 + 0: The maximum resident set size (KB) = 838212 Test 060 rap_sfcdiff_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/hrrr_control -Checking test 044 hrrr_control results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/hrrr_control +Checking test 061 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2408,15 +2624,15 @@ Checking test 044 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 771.939269 - 0: The maximum resident set size (KB) = 942156 + 0: The total amount of wall time = 1290.228603 + 0: The maximum resident set size (KB) = 941880 Test 061 hrrr_control PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/hrrr_control_decomp -Checking test 045 hrrr_control_decomp results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/hrrr_control_decomp +Checking test 062 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2462,15 +2678,15 @@ Checking test 045 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 794.701459 - 0: The maximum resident set size (KB) = 938788 + 0: The total amount of wall time = 1266.546916 + 0: The maximum resident set size (KB) = 935644 Test 062 hrrr_control_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/hrrr_control_2threads -Checking test 046 hrrr_control_2threads results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/hrrr_control_2threads +Checking test 063 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2516,15 +2732,15 @@ Checking test 046 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 763.113719 - 0: The maximum resident set size (KB) = 1012764 + 0: The total amount of wall time = 1248.876726 + 0: The maximum resident set size (KB) = 1021552 Test 063 hrrr_control_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/hrrr_control_restart -Checking test 047 hrrr_control_restart results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/hrrr_control_restart +Checking test 064 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2562,15 +2778,15 @@ Checking test 047 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 486.019593 - 0: The maximum resident set size (KB) = 828660 + 0: The total amount of wall time = 784.830135 + 0: The maximum resident set size (KB) = 830188 Test 064 hrrr_control_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_v1beta -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/rrfs_v1beta -Checking test 048 rrfs_v1beta results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1beta +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/rrfs_v1beta +Checking test 065 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2616,15 +2832,15 @@ Checking test 048 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 772.333615 - 0: The maximum resident set size (KB) = 949860 + 0: The total amount of wall time = 1267.088003 + 0: The maximum resident set size (KB) = 941044 Test 065 rrfs_v1beta PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_v1nssl -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/rrfs_v1nssl -Checking test 049 rrfs_v1nssl results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1nssl +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/rrfs_v1nssl +Checking test 066 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2638,15 +2854,15 @@ Checking test 049 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 953.481284 - 0: The maximum resident set size (KB) = 630440 + 0: The total amount of wall time = 1440.616517 + 0: The maximum resident set size (KB) = 625808 Test 066 rrfs_v1nssl PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/rrfs_v1nssl_nohailnoccn -Checking test 050 rrfs_v1nssl_nohailnoccn results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/rrfs_v1nssl_nohailnoccn +Checking test 067 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2660,15 +2876,15 @@ Checking test 050 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 985.234534 - 0: The maximum resident set size (KB) = 625780 + 0: The total amount of wall time = 1278.020603 + 0: The maximum resident set size (KB) = 633984 Test 067 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/rrfs_smoke_conus13km_hrrr_warm -Checking test 051 rrfs_smoke_conus13km_hrrr_warm results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/rrfs_smoke_conus13km_hrrr_warm +Checking test 068 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2676,15 +2892,15 @@ Checking test 051 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 297.429291 - 0: The maximum resident set size (KB) = 899756 + 0: The total amount of wall time = 385.359667 + 0: The maximum resident set size (KB) = 903080 Test 068 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/rrfs_smoke_conus13km_hrrr_warm_2threads -Checking test 052 rrfs_smoke_conus13km_hrrr_warm_2threads results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/rrfs_smoke_conus13km_hrrr_warm_2threads +Checking test 069 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2692,15 +2908,15 @@ Checking test 052 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 254.038838 - 0: The maximum resident set size (KB) = 870412 + 0: The total amount of wall time = 319.775353 + 0: The maximum resident set size (KB) = 866440 Test 069 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/rrfs_conus13km_hrrr_warm -Checking test 053 rrfs_conus13km_hrrr_warm results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/rrfs_conus13km_hrrr_warm +Checking test 070 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2708,15 +2924,15 @@ Checking test 053 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 291.492792 - 0: The maximum resident set size (KB) = 865052 + 0: The total amount of wall time = 326.459549 + 0: The maximum resident set size (KB) = 857652 Test 070 rrfs_conus13km_hrrr_warm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/rrfs_smoke_conus13km_radar_tten_warm -Checking test 054 rrfs_smoke_conus13km_radar_tten_warm results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/rrfs_smoke_conus13km_radar_tten_warm +Checking test 071 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2724,27 +2940,27 @@ Checking test 054 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 289.137292 - 0: The maximum resident set size (KB) = 912136 + 0: The total amount of wall time = 349.970597 + 0: The maximum resident set size (KB) = 918088 Test 071 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/rrfs_conus13km_hrrr_warm_restart_mismatch -Checking test 055 rrfs_conus13km_hrrr_warm_restart_mismatch results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/rrfs_conus13km_hrrr_warm_restart_mismatch +Checking test 072 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 124.872140 - 0: The maximum resident set size (KB) = 843044 + 0: The total amount of wall time = 230.868162 + 0: The maximum resident set size (KB) = 853160 Test 072 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_csawmg -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_csawmg -Checking test 056 control_csawmg results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmg +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_csawmg +Checking test 073 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2754,15 +2970,15 @@ Checking test 056 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 487.689636 - 0: The maximum resident set size (KB) = 660308 + 0: The total amount of wall time = 919.755923 + 0: The maximum resident set size (KB) = 669088 Test 073 control_csawmg PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_csawmgt -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_csawmgt -Checking test 057 control_csawmgt results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmgt +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_csawmgt +Checking test 074 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2772,15 +2988,15 @@ Checking test 057 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 474.506048 - 0: The maximum resident set size (KB) = 665268 + 0: The total amount of wall time = 943.676734 + 0: The maximum resident set size (KB) = 665792 Test 074 control_csawmgt PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_ras -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_ras -Checking test 058 control_ras results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_ras +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_ras +Checking test 075 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2790,27 +3006,27 @@ Checking test 058 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 254.807989 - 0: The maximum resident set size (KB) = 627752 + 0: The total amount of wall time = 559.926139 + 0: The maximum resident set size (KB) = 632572 Test 075 control_ras PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_wam -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_wam -Checking test 059 control_wam results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wam +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_wam +Checking test 076 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 152.306931 - 0: The maximum resident set size (KB) = 481136 + 0: The total amount of wall time = 353.615537 + 0: The maximum resident set size (KB) = 481728 Test 076 control_wam PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8_faster -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_p8_faster -Checking test 060 control_p8_faster results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_faster +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_p8_faster +Checking test 077 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2856,15 +3072,15 @@ Checking test 060 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 322.012246 - 0: The maximum resident set size (KB) = 1542572 + 0: The total amount of wall time = 353.895378 + 0: The maximum resident set size (KB) = 1540888 Test 077 control_p8_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control_faster -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/regional_control_faster -Checking test 061 regional_control_faster results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control_faster +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/regional_control_faster +Checking test 078 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2874,57 +3090,57 @@ Checking test 061 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 472.937859 - 0: The maximum resident set size (KB) = 784712 + 0: The total amount of wall time = 733.980959 + 0: The maximum resident set size (KB) = 787152 Test 078 regional_control_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/rrfs_smoke_conus13km_hrrr_warm_debug -Checking test 062 rrfs_smoke_conus13km_hrrr_warm_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/rrfs_smoke_conus13km_hrrr_warm_debug +Checking test 079 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 1106.244782 - 0: The maximum resident set size (KB) = 938764 + 0: The total amount of wall time = 1223.809276 + 0: The maximum resident set size (KB) = 932000 Test 079 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/rrfs_smoke_conus13km_hrrr_warm_debug_2threads -Checking test 063 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +Checking test 080 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 654.563884 - 0: The maximum resident set size (KB) = 896976 + 0: The total amount of wall time = 822.204000 + 0: The maximum resident set size (KB) = 896580 Test 080 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/rrfs_conus13km_hrrr_warm_debug -Checking test 064 rrfs_conus13km_hrrr_warm_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/rrfs_conus13km_hrrr_warm_debug +Checking test 081 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 990.969474 - 0: The maximum resident set size (KB) = 894652 + 0: The total amount of wall time = 1218.188553 + 0: The maximum resident set size (KB) = 894512 Test 081 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_CubedSphereGrid_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_CubedSphereGrid_debug -Checking test 065 control_CubedSphereGrid_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_CubedSphereGrid_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_CubedSphereGrid_debug +Checking test 082 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -2950,335 +3166,335 @@ Checking test 065 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 215.780816 - 0: The maximum resident set size (KB) = 741648 + 0: The total amount of wall time = 263.679241 + 0: The maximum resident set size (KB) = 740132 Test 082 control_CubedSphereGrid_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_wrtGauss_netcdf_parallel_debug -Checking test 066 control_wrtGauss_netcdf_parallel_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_wrtGauss_netcdf_parallel_debug +Checking test 083 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 212.911012 - 0: The maximum resident set size (KB) = 735336 + 0: The total amount of wall time = 279.001757 + 0: The maximum resident set size (KB) = 732076 Test 083 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_stochy_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_stochy_debug -Checking test 067 control_stochy_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_stochy_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_stochy_debug +Checking test 084 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 228.092064 - 0: The maximum resident set size (KB) = 744480 + 0: The total amount of wall time = 288.711306 + 0: The maximum resident set size (KB) = 741596 Test 084 control_stochy_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_lndp_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_lndp_debug -Checking test 068 control_lndp_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_lndp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_lndp_debug +Checking test 085 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 208.596316 - 0: The maximum resident set size (KB) = 741648 + 0: The total amount of wall time = 268.417731 + 0: The maximum resident set size (KB) = 744640 Test 085 control_lndp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_csawmg_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_csawmg_debug -Checking test 069 control_csawmg_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmg_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_csawmg_debug +Checking test 086 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 315.374329 - 0: The maximum resident set size (KB) = 790804 + 0: The total amount of wall time = 388.751142 + 0: The maximum resident set size (KB) = 791476 Test 086 control_csawmg_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_csawmgt_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_csawmgt_debug -Checking test 070 control_csawmgt_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmgt_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_csawmgt_debug +Checking test 087 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 318.761519 - 0: The maximum resident set size (KB) = 783196 + 0: The total amount of wall time = 349.195919 + 0: The maximum resident set size (KB) = 785704 Test 087 control_csawmgt_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_ras_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_ras_debug -Checking test 071 control_ras_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_ras_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_ras_debug +Checking test 088 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 206.356663 - 0: The maximum resident set size (KB) = 754452 + 0: The total amount of wall time = 297.946826 + 0: The maximum resident set size (KB) = 749172 Test 088 control_ras_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_diag_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_diag_debug -Checking test 072 control_diag_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_diag_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_diag_debug +Checking test 089 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 216.093528 - 0: The maximum resident set size (KB) = 798296 + 0: The total amount of wall time = 345.575984 + 0: The maximum resident set size (KB) = 802508 Test 089 control_diag_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_debug_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_debug_p8 -Checking test 073 control_debug_p8 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_debug_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_debug_p8 +Checking test 090 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 239.557208 - 0: The maximum resident set size (KB) = 1557448 + 0: The total amount of wall time = 284.477699 + 0: The maximum resident set size (KB) = 1557652 Test 090 control_debug_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/regional_debug -Checking test 074 regional_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/regional_debug +Checking test 091 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1395.561652 - 0: The maximum resident set size (KB) = 808548 + 0: The total amount of wall time = 1723.962942 + 0: The maximum resident set size (KB) = 810888 Test 091 regional_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/rap_control_debug -Checking test 075 rap_control_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/rap_control_debug +Checking test 092 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 409.893690 - 0: The maximum resident set size (KB) = 1117312 + 0: The total amount of wall time = 426.554602 + 0: The maximum resident set size (KB) = 1119588 Test 092 rap_control_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/hrrr_control_debug -Checking test 076 hrrr_control_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/hrrr_control_debug +Checking test 093 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 370.160576 - 0: The maximum resident set size (KB) = 1110020 + 0: The total amount of wall time = 426.838689 + 0: The maximum resident set size (KB) = 1109180 Test 093 hrrr_control_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/rap_unified_drag_suite_debug -Checking test 077 rap_unified_drag_suite_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/rap_unified_drag_suite_debug +Checking test 094 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 370.346998 - 0: The maximum resident set size (KB) = 1112492 + 0: The total amount of wall time = 438.384023 + 0: The maximum resident set size (KB) = 1113748 Test 094 rap_unified_drag_suite_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_diag_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/rap_diag_debug -Checking test 078 rap_diag_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_diag_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/rap_diag_debug +Checking test 095 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 427.042402 - 0: The maximum resident set size (KB) = 1194600 + 0: The total amount of wall time = 508.243580 + 0: The maximum resident set size (KB) = 1197080 Test 095 rap_diag_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/rap_cires_ugwp_debug -Checking test 079 rap_cires_ugwp_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/rap_cires_ugwp_debug +Checking test 096 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 402.923778 - 0: The maximum resident set size (KB) = 1112208 + 0: The total amount of wall time = 434.896535 + 0: The maximum resident set size (KB) = 1111720 Test 096 rap_cires_ugwp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/rap_unified_ugwp_debug -Checking test 080 rap_unified_ugwp_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/rap_unified_ugwp_debug +Checking test 097 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 384.977416 - 0: The maximum resident set size (KB) = 1118748 + 0: The total amount of wall time = 479.391513 + 0: The maximum resident set size (KB) = 1118896 Test 097 rap_unified_ugwp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_lndp_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/rap_lndp_debug -Checking test 081 rap_lndp_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_lndp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/rap_lndp_debug +Checking test 098 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 393.563130 - 0: The maximum resident set size (KB) = 1121284 + 0: The total amount of wall time = 452.839547 + 0: The maximum resident set size (KB) = 1113888 Test 098 rap_lndp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_flake_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/rap_flake_debug -Checking test 082 rap_flake_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_flake_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/rap_flake_debug +Checking test 099 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 399.128186 - 0: The maximum resident set size (KB) = 1118912 + 0: The total amount of wall time = 498.620731 + 0: The maximum resident set size (KB) = 1114684 Test 099 rap_flake_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_progcld_thompson_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/rap_progcld_thompson_debug -Checking test 083 rap_progcld_thompson_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_progcld_thompson_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/rap_progcld_thompson_debug +Checking test 100 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 429.224485 - 0: The maximum resident set size (KB) = 1112872 + 0: The total amount of wall time = 448.195066 + 0: The maximum resident set size (KB) = 1112716 Test 100 rap_progcld_thompson_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_noah_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/rap_noah_debug -Checking test 084 rap_noah_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_noah_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/rap_noah_debug +Checking test 101 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 433.896558 - 0: The maximum resident set size (KB) = 1107452 + 0: The total amount of wall time = 444.634780 + 0: The maximum resident set size (KB) = 1111204 Test 101 rap_noah_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_sfcdiff_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/rap_sfcdiff_debug -Checking test 085 rap_sfcdiff_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/rap_sfcdiff_debug +Checking test 102 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 448.253582 - 0: The maximum resident set size (KB) = 1109228 + 0: The total amount of wall time = 428.477888 + 0: The maximum resident set size (KB) = 1112556 Test 102 rap_sfcdiff_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 086 rap_noah_sfcdiff_cires_ugwp_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 103 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 601.437319 - 0: The maximum resident set size (KB) = 1113764 + 0: The total amount of wall time = 678.303145 + 0: The maximum resident set size (KB) = 1113228 Test 103 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_v1beta_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/rrfs_v1beta_debug -Checking test 087 rrfs_v1beta_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1beta_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/rrfs_v1beta_debug +Checking test 104 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 389.641040 - 0: The maximum resident set size (KB) = 1105232 + 0: The total amount of wall time = 404.050784 + 0: The maximum resident set size (KB) = 1109320 Test 104 rrfs_v1beta_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_wam_debug -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_wam_debug -Checking test 088 control_wam_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wam_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_wam_debug +Checking test 105 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 371.894090 - 0: The maximum resident set size (KB) = 436172 + 0: The total amount of wall time = 443.809283 + 0: The maximum resident set size (KB) = 443340 Test 105 control_wam_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/regional_spp_sppt_shum_skeb_dyn32_phy32 -Checking test 089 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -3288,15 +3504,15 @@ Checking test 089 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 335.049861 - 0: The maximum resident set size (KB) = 992664 + 0: The total amount of wall time = 709.139162 + 0: The maximum resident set size (KB) = 991500 Test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/rap_control_dyn32_phy32 -Checking test 090 rap_control_dyn32_phy32 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/rap_control_dyn32_phy32 +Checking test 107 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3342,15 +3558,15 @@ Checking test 090 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 642.664683 - 0: The maximum resident set size (KB) = 845316 + 0: The total amount of wall time = 1430.815863 + 0: The maximum resident set size (KB) = 850584 Test 107 rap_control_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/hrrr_control_dyn32_phy32 -Checking test 091 hrrr_control_dyn32_phy32 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/hrrr_control_dyn32_phy32 +Checking test 108 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3396,15 +3612,15 @@ Checking test 091 hrrr_control_dyn32_phy32 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 = 324.263144 - 0: The maximum resident set size (KB) = 830640 + 0: The total amount of wall time = 632.385094 + 0: The maximum resident set size (KB) = 827652 Test 108 hrrr_control_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/rap_2threads_dyn32_phy32 -Checking test 092 rap_2threads_dyn32_phy32 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/rap_2threads_dyn32_phy32 +Checking test 109 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3450,15 +3666,15 @@ Checking test 092 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 650.925010 - 0: The maximum resident set size (KB) = 884556 + 0: The total amount of wall time = 1497.974004 + 0: The maximum resident set size (KB) = 888892 Test 109 rap_2threads_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/hrrr_control_2threads_dyn32_phy32 -Checking test 093 hrrr_control_2threads_dyn32_phy32 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/hrrr_control_2threads_dyn32_phy32 +Checking test 110 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3504,15 +3720,15 @@ Checking test 093 hrrr_control_2threads_dyn32_phy32 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 = 364.918643 - 0: The maximum resident set size (KB) = 885492 + 0: The total amount of wall time = 684.806861 + 0: The maximum resident set size (KB) = 884192 Test 110 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/hrrr_control_decomp_dyn32_phy32 -Checking test 094 hrrr_control_decomp_dyn32_phy32 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/hrrr_control_decomp_dyn32_phy32 +Checking test 111 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3558,15 +3774,15 @@ Checking test 094 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 381.878723 - 0: The maximum resident set size (KB) = 819844 + 0: The total amount of wall time = 665.332308 + 0: The maximum resident set size (KB) = 832060 Test 111 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/rap_restart_dyn32_phy32 -Checking test 095 rap_restart_dyn32_phy32 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/rap_restart_dyn32_phy32 +Checking test 112 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3604,15 +3820,15 @@ Checking test 095 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 643.966373 - 0: The maximum resident set size (KB) = 807828 + 0: The total amount of wall time = 753.953657 + 0: The maximum resident set size (KB) = 807432 Test 112 rap_restart_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/hrrr_control_restart_dyn32_phy32 -Checking test 096 hrrr_control_restart_dyn32_phy32 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/hrrr_control_restart_dyn32_phy32 +Checking test 113 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3650,15 +3866,15 @@ Checking test 096 hrrr_control_restart_dyn32_phy32 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 = 235.139193 - 0: The maximum resident set size (KB) = 769128 + 0: The total amount of wall time = 614.031185 + 0: The maximum resident set size (KB) = 758120 Test 113 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_dyn64_phy32 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/rap_control_dyn64_phy32 -Checking test 097 rap_control_dyn64_phy32 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn64_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/rap_control_dyn64_phy32 +Checking test 114 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3704,69 +3920,72 @@ Checking test 097 rap_control_dyn64_phy32 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 = 481.806284 - 0: The maximum resident set size (KB) = 868160 + 0: The total amount of wall time = 878.822766 + 0: The maximum resident set size (KB) = 864684 Test 114 rap_control_dyn64_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/rap_control_debug_dyn32_phy32 -Checking test 098 rap_control_debug_dyn32_phy32 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/rap_control_debug_dyn32_phy32 +Checking test 115 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 367.854497 - 0: The maximum resident set size (KB) = 1001660 + 0: The total amount of wall time = 462.834700 + 0: The maximum resident set size (KB) = 1003668 Test 115 rap_control_debug_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/hrrr_control_debug_dyn32_phy32 -Checking test 099 hrrr_control_debug_dyn32_phy32 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/hrrr_control_debug_dyn32_phy32 +Checking test 116 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 362.782037 - 0: The maximum resident set size (KB) = 996488 + 0: The total amount of wall time = 536.887410 + 0: The maximum resident set size (KB) = 998896 Test 116 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/rap_control_dyn64_phy32_debug -Checking test 100 rap_control_dyn64_phy32_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/rap_control_dyn64_phy32_debug +Checking test 117 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 451.959167 - 0: The maximum resident set size (KB) = 1030856 + 0: The total amount of wall time = 594.911765 + 0: The maximum resident set size (KB) = 1033816 Test 117 rap_control_dyn64_phy32_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/hafs_regional_atm_thompson_gfdlsf -Checking test 102 hafs_regional_atm_thompson_gfdlsf results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/hafs_regional_atm +Checking test 118 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK + Comparing HURPRS.GrbF06 .........OK + + 0: The total amount of wall time = 1342.548847 + 0: The maximum resident set size (KB) = 1218956 - 0: The total amount of wall time = 846.696857 - 0: The maximum resident set size (KB) = 1575664 +Test 118 hafs_regional_atm PASS -Test 118 hafs_regional_atm_thompson_gfdlsf PASS +Test 119 hafs_regional_atm_thompson_gfdlsf FAIL -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_atm_ocn -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/hafs_regional_atm_ocn -Checking test 103 hafs_regional_atm_ocn results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_ocn +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/hafs_regional_atm_ocn +Checking test 120 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -3774,202 +3993,169 @@ Checking test 103 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 699.730398 - 0: The maximum resident set size (KB) = 1260508 - -Test 119 hafs_regional_atm_ocn PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_iovr4 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_iovr4 -Checking test 014 control_iovr4 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 206.800471 - 0: The maximum resident set size (KB) = 573676 + 0: The total amount of wall time = 1165.605709 + 0: The maximum resident set size (KB) = 1298968 -Test 120 control_iovr4 PASS +Test 120 hafs_regional_atm_ocn PASS Tries: 2 -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/hafs_regional_atm_ocn_wav -Checking test 105 hafs_regional_atm_ocn_wav results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_wav +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/hafs_regional_atm_wav +Checking test 121 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - Comparing archv.2019_241_06.a .........OK - Comparing archs.2019_241_06.a .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - Comparing 20190829.060000.restart.ww3 .........OK + Comparing ufs.hafs.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 = 1204.761276 - 0: The maximum resident set size (KB) = 1313620 + 0: The total amount of wall time = 1713.539486 + 0: The maximum resident set size (KB) = 1325076 -Test 121 hafs_regional_atm_ocn_wav PASS +Test 121 hafs_regional_atm_wav PASS Tries: 2 +Test 122 hafs_regional_atm_ocn_wav FAIL -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_docn -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/hafs_regional_docn -Checking test 106 hafs_regional_docn results .... + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_docn +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/hafs_regional_docn +Checking test 123 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 809.648488 - 0: The maximum resident set size (KB) = 1279144 + 0: The total amount of wall time = 1050.848072 + 0: The maximum resident set size (KB) = 1307152 -Test 122 hafs_regional_docn PASS +Test 123 hafs_regional_docn PASS Tries: 2 -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_docn_oisst -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/hafs_regional_docn_oisst -Checking test 107 hafs_regional_docn_oisst results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_docn_oisst +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/hafs_regional_docn_oisst +Checking test 124 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 674.633126 - 0: The maximum resident set size (KB) = 1280272 - -Test 123 hafs_regional_docn_oisst PASS + 0: The total amount of wall time = 1032.964522 + 0: The maximum resident set size (KB) = 1292868 +Test 124 hafs_regional_docn_oisst PASS Tries: 2 -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_datm_cdeps -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/hafs_regional_datm_cdeps -Checking test 108 hafs_regional_datm_cdeps results .... - Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK - Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK - Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK +Test 125 hafs_regional_datm_cdeps FAIL - 0: The total amount of wall time = 1429.212467 - 0: The maximum resident set size (KB) = 976204 -Test 124 hafs_regional_datm_cdeps PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/datm_cdeps_control_cfsr -Checking test 109 datm_cdeps_control_cfsr results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/datm_cdeps_control_cfsr +Checking test 126 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 287.154671 - 0: The maximum resident set size (KB) = 963512 + 0: The total amount of wall time = 603.831120 + 0: The maximum resident set size (KB) = 967264 -Test 125 datm_cdeps_control_cfsr PASS +Test 126 datm_cdeps_control_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/datm_cdeps_restart_cfsr -Checking test 110 datm_cdeps_restart_cfsr results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/datm_cdeps_restart_cfsr +Checking test 127 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 172.911956 - 0: The maximum resident set size (KB) = 938552 + 0: The total amount of wall time = 472.222421 + 0: The maximum resident set size (KB) = 939044 -Test 126 datm_cdeps_restart_cfsr PASS +Test 127 datm_cdeps_restart_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_control_gefs -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/datm_cdeps_control_gefs -Checking test 111 datm_cdeps_control_gefs results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/datm_cdeps_control_gefs +Checking test 128 datm_cdeps_control_gefs 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 = 278.839390 - 0: The maximum resident set size (KB) = 871192 + 0: The total amount of wall time = 731.988749 + 0: The maximum resident set size (KB) = 866976 -Test 127 datm_cdeps_control_gefs PASS +Test 128 datm_cdeps_control_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_iau_gefs -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/datm_cdeps_iau_gefs -Checking test 112 datm_cdeps_iau_gefs results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_iau_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/datm_cdeps_iau_gefs +Checking test 129 datm_cdeps_iau_gefs 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 = 294.204034 - 0: The maximum resident set size (KB) = 862168 + 0: The total amount of wall time = 633.913442 + 0: The maximum resident set size (KB) = 863372 -Test 128 datm_cdeps_iau_gefs PASS +Test 129 datm_cdeps_iau_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_stochy_gefs -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/datm_cdeps_stochy_gefs -Checking test 113 datm_cdeps_stochy_gefs results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_stochy_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/datm_cdeps_stochy_gefs +Checking test 130 datm_cdeps_stochy_gefs 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 = 274.005004 - 0: The maximum resident set size (KB) = 863956 + 0: The total amount of wall time = 744.561946 + 0: The maximum resident set size (KB) = 864148 -Test 129 datm_cdeps_stochy_gefs PASS +Test 130 datm_cdeps_stochy_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/datm_cdeps_ciceC_cfsr -Checking test 114 datm_cdeps_ciceC_cfsr results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_ciceC_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/datm_cdeps_ciceC_cfsr +Checking test 131 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 293.466241 - 0: The maximum resident set size (KB) = 967576 + 0: The total amount of wall time = 746.131084 + 0: The maximum resident set size (KB) = 969796 -Test 130 datm_cdeps_ciceC_cfsr PASS +Test 131 datm_cdeps_ciceC_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/datm_cdeps_bulk_cfsr -Checking test 115 datm_cdeps_bulk_cfsr results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_bulk_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/datm_cdeps_bulk_cfsr +Checking test 132 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 266.816228 - 0: The maximum resident set size (KB) = 964536 + 0: The total amount of wall time = 818.385175 + 0: The maximum resident set size (KB) = 961452 -Test 131 datm_cdeps_bulk_cfsr PASS +Test 132 datm_cdeps_bulk_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/datm_cdeps_bulk_gefs -Checking test 116 datm_cdeps_bulk_gefs results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_bulk_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/datm_cdeps_bulk_gefs +Checking test 133 datm_cdeps_bulk_gefs 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 = 312.326680 - 0: The maximum resident set size (KB) = 864496 + 0: The total amount of wall time = 841.510874 + 0: The maximum resident set size (KB) = 865468 -Test 132 datm_cdeps_bulk_gefs PASS +Test 133 datm_cdeps_bulk_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/datm_cdeps_mx025_cfsr -Checking test 117 datm_cdeps_mx025_cfsr results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_mx025_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/datm_cdeps_mx025_cfsr +Checking test 134 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -3977,15 +4163,15 @@ Checking test 117 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 751.487117 - 0: The maximum resident set size (KB) = 775928 + 0: The total amount of wall time = 1106.973467 + 0: The maximum resident set size (KB) = 767748 -Test 133 datm_cdeps_mx025_cfsr PASS +Test 134 datm_cdeps_mx025_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/datm_cdeps_mx025_gefs -Checking test 118 datm_cdeps_mx025_gefs results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_mx025_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/datm_cdeps_mx025_gefs +Checking test 135 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -3993,78 +4179,94 @@ Checking test 118 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 723.873950 - 0: The maximum resident set size (KB) = 738848 + 0: The total amount of wall time = 1468.397514 + 0: The maximum resident set size (KB) = 748680 -Test 134 datm_cdeps_mx025_gefs PASS +Test 135 datm_cdeps_mx025_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/datm_cdeps_multiple_files_cfsr -Checking test 119 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/datm_cdeps_multiple_files_cfsr +Checking test 136 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 248.311028 - 0: The maximum resident set size (KB) = 976544 + 0: The total amount of wall time = 691.168807 + 0: The maximum resident set size (KB) = 964456 -Test 135 datm_cdeps_multiple_files_cfsr PASS +Test 136 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/datm_cdeps_3072x1536_cfsr -Checking test 120 datm_cdeps_3072x1536_cfsr results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/datm_cdeps_3072x1536_cfsr +Checking test 137 datm_cdeps_3072x1536_cfsr 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 = 423.035693 - 0: The maximum resident set size (KB) = 2256384 + 0: The total amount of wall time = 737.249033 + 0: The maximum resident set size (KB) = 2270996 -Test 136 datm_cdeps_3072x1536_cfsr PASS +Test 137 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_gfs -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/datm_cdeps_gfs -Checking test 121 datm_cdeps_gfs results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_gfs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/datm_cdeps_gfs +Checking test 138 datm_cdeps_gfs 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 = 456.769022 - 0: The maximum resident set size (KB) = 2249744 + 0: The total amount of wall time = 1182.186169 + 0: The maximum resident set size (KB) = 2255420 -Test 137 datm_cdeps_gfs PASS +Test 138 datm_cdeps_gfs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_debug_cfsr -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/datm_cdeps_debug_cfsr -Checking test 122 datm_cdeps_debug_cfsr results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_debug_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/datm_cdeps_debug_cfsr +Checking test 139 datm_cdeps_debug_cfsr 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 = 636.258182 - 0: The maximum resident set size (KB) = 932928 + 0: The total amount of wall time = 819.698358 + 0: The maximum resident set size (KB) = 930492 -Test 138 datm_cdeps_debug_cfsr PASS +Test 139 datm_cdeps_debug_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_control_cfsr_faster -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/datm_cdeps_control_cfsr_faster -Checking test 123 datm_cdeps_control_cfsr_faster results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr_faster +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/datm_cdeps_control_cfsr_faster +Checking test 140 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.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 = 298.916008 - 0: The maximum resident set size (KB) = 972452 + 0: The total amount of wall time = 721.106849 + 0: The maximum resident set size (KB) = 965352 + +Test 140 datm_cdeps_control_cfsr_faster PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/datm_cdeps_lnd_gswp3 +Checking test 141 datm_cdeps_lnd_gswp3 results .... + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK + + 0: The total amount of wall time = 507.770898 + 0: The maximum resident set size (KB) = 253032 -Test 139 datm_cdeps_control_cfsr_faster PASS +Test 141 datm_cdeps_lnd_gswp3 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/datm_cdeps_lnd_gswp3 -Checking test 124 datm_cdeps_lnd_gswp3 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/datm_cdeps_lnd_gswp3_rst +Checking test 142 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4072,15 +4274,15 @@ Checking test 124 datm_cdeps_lnd_gswp3 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 = 19.838935 - 0: The maximum resident set size (KB) = 246596 + 0: The total amount of wall time = 253.222300 + 0: The maximum resident set size (KB) = 253128 -Test 140 datm_cdeps_lnd_gswp3 PASS +Test 142 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8_atmlnd_sbs -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_p8_atmlnd_sbs -Checking test 126 control_p8_atmlnd_sbs results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_atmlnd_sbs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_p8_atmlnd_sbs +Checking test 143 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -4164,15 +4366,15 @@ Checking test 126 control_p8_atmlnd_sbs 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 = 448.642660 - 0: The maximum resident set size (KB) = 1589012 + 0: The total amount of wall time = 886.877469 + 0: The maximum resident set size (KB) = 1582200 -Test 141 control_p8_atmlnd_sbs PASS +Test 143 control_p8_atmlnd_sbs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/control_atmwav -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/control_atmwav -Checking test 127 control_atmwav results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_atmwav +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_atmwav +Checking test 144 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -4215,15 +4417,15 @@ Checking test 127 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 145.089799 - 0: The maximum resident set size (KB) = 594720 + 0: The total amount of wall time = 740.435352 + 0: The maximum resident set size (KB) = 593960 -Test 142 control_atmwav PASS +Test 144 control_atmwav PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/atmaero_control_p8 -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/atmaero_control_p8 -Checking test 128 atmaero_control_p8 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/atmaero_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/atmaero_control_p8 +Checking test 145 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4266,15 +4468,15 @@ Checking test 128 atmaero_control_p8 results .... Comparing 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.368146 - 0: The maximum resident set size (KB) = 1632208 + 0: The total amount of wall time = 676.667086 + 0: The maximum resident set size (KB) = 1630980 -Test 143 atmaero_control_p8 PASS +Test 145 atmaero_control_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/atmaero_control_p8_rad -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/atmaero_control_p8_rad -Checking test 129 atmaero_control_p8_rad results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/atmaero_control_p8_rad +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/atmaero_control_p8_rad +Checking test 146 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4317,15 +4519,15 @@ Checking test 129 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 475.502210 - 0: The maximum resident set size (KB) = 1658316 + 0: The total amount of wall time = 690.978175 + 0: The maximum resident set size (KB) = 1656968 -Test 144 atmaero_control_p8_rad PASS +Test 146 atmaero_control_p8_rad PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/atmaero_control_p8_rad_micro -Checking test 130 atmaero_control_p8_rad_micro results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/atmaero_control_p8_rad_micro +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/atmaero_control_p8_rad_micro +Checking test 147 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4368,54 +4570,122 @@ Checking test 130 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 470.278130 - 0: The maximum resident set size (KB) = 1680844 + 0: The total amount of wall time = 1077.640635 + 0: The maximum resident set size (KB) = 1667260 -Test 145 atmaero_control_p8_rad_micro PASS +Test 147 atmaero_control_p8_rad_micro PASS +Test 148 regional_atmaq FAIL -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_atmaq -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/regional_atmaq -Checking test 131 regional_atmaq results .... - Comparing sfcf000.nc .........OK - Comparing sfcf003.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf003.nc .........OK +Test 149 regional_atmaq_faster FAIL + +FAILED TESTS: +Test control_c384 026 failed in run_test failed +Test regional_noquilt 049 failed in check_result failed +Test regional_noquilt 049 failed in run_test failed +Test regional_wofs 052 failed in run_test failed +Test hafs_regional_atm_thompson_gfdlsf 119 failed in run_test failed +Test hafs_regional_atm_ocn_wav 122 failed in run_test failed +Test hafs_regional_datm_cdeps 125 failed in run_test failed +Test regional_atmaq 148 failed in run_test failed +Test regional_atmaq_faster 149 failed in run_test failed + +REGRESSION TEST FAILED +Mon Apr 3 05:57:35 UTC 2023 +Elapsed time: 04h:57m:10s. Have a nice day! +Mon Apr 3 13:34:54 UTC 2023 +Start Regression test + +Compile 001 elapsed time 1824 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 002 elapsed time 1783 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 003 elapsed time 1585 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 004 elapsed time 2102 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Test 001 control_c384 FAIL + +Test 002 regional_wofs FAIL + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178965/hafs_regional_atm_thompson_gfdlsf +Checking test 003 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK - Comparing RESTART/20190801.180000.coupler.res .........OK - Comparing RESTART/20190801.180000.fv_core.res.nc .........OK - Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.phy_data.nc .........OK - Comparing RESTART/20190801.180000.sfc_data.nc .........OK + Comparing sfcf006.nc .........OK + + 0: The total amount of wall time = 938.702669 + 0: The maximum resident set size (KB) = 1561924 + +Test 003 hafs_regional_atm_thompson_gfdlsf PASS - 0: The total amount of wall time = 1261.303804 - 0: The maximum resident set size (KB) = 1156936 +Test 004 hafs_regional_atm_ocn_wav FAIL -Test 146 regional_atmaq PASS +Test 005 regional_atmaq FAIL +Test 006 regional_atmaq_faster FAIL -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_atmaq_faster -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_300047/regional_atmaq_faster -Checking test 132 regional_atmaq_faster results .... +FAILED TESTS: +Test control_c384 001 failed in run_test failed +Test regional_wofs 002 failed in run_test failed +Test hafs_regional_atm_ocn_wav 004 failed in run_test failed +Test regional_atmaq 005 failed in run_test failed +Test regional_atmaq_faster 006 failed in run_test failed + +REGRESSION TEST FAILED +Mon Apr 3 15:40:06 UTC 2023 +Elapsed time: 02h:05m:14s. Have a nice day! +Mon Apr 3 16:24:08 UTC 2023 +Start Regression test + +Compile 001 elapsed time 1900 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 002 elapsed time 1842 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 003 elapsed time 1657 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 004 elapsed time 2206 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c384 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_272954/control_c384 +Checking test 001 control_c384 results .... Comparing sfcf000.nc .........OK - Comparing sfcf003.nc .........OK - Comparing sfcf006.nc .........OK + Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf003.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF12 .........OK + + 0: The total amount of wall time = 1561.253900 + 0: The maximum resident set size (KB) = 1061804 + +Test 001 control_c384 PASS + +Test 002 regional_wofs FAIL + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_ocn_wav +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_272954/hafs_regional_atm_ocn_wav +Checking test 003 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK - Comparing RESTART/20190801.180000.coupler.res .........OK - Comparing RESTART/20190801.180000.fv_core.res.nc .........OK - Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.phy_data.nc .........OK - Comparing RESTART/20190801.180000.sfc_data.nc .........OK + Comparing sfcf006.nc .........OK + Comparing archv.2019_241_06.a .........OK + Comparing archs.2019_241_06.a .........OK + Comparing out_grd.ww3 .........OK + Comparing out_pnt.ww3 .........OK + Comparing 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 = 1740.569251 + 0: The maximum resident set size (KB) = 1338868 + +Test 003 hafs_regional_atm_ocn_wav PASS + +Test 004 regional_atmaq FAIL - 0: The total amount of wall time = 1088.503938 - 0: The maximum resident set size (KB) = 1162296 +Test 005 regional_atmaq_faster FAIL -Test 147 regional_atmaq_faster PASS +FAILED TESTS: +Test regional_wofs 002 failed in run_test failed +Test regional_atmaq 004 failed in run_test failed +Test regional_atmaq_faster 005 failed in run_test failed +REGRESSION TEST FAILED +Mon Apr 3 18:24:15 UTC 2023 +Elapsed time: 02h:00m:09s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index 0d91ea7f7be..1d87c987221 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,42 +1,42 @@ -Thu Mar 30 09:10:58 CDT 2023 +Sun Apr 2 08:17:03 CDT 2023 Start Regression test -Compile 001 elapsed time 783 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 795 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 690 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 283 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 266 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 637 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 636 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 852 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 642 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 612 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 011 elapsed time 566 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 496 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 764 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 341 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 272 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 546 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 554 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 265 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 265 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 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 021 elapsed time 198 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 729 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 684 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 024 elapsed time 211 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 124 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 227 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 81 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 634 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 591 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 594 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 586 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 226 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 611 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8_mixedmode -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/cpld_control_p8_mixedmode +Compile 001 elapsed time 842 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 856 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 746 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 431 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 368 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 708 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 756 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 923 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 715 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 690 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 011 elapsed time 538 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 510 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 804 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 256 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 215 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 556 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 560 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 177 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 356 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 644 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 021 elapsed time 306 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 795 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 696 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 024 elapsed time 279 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 238 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 216 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 59 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 569 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 589 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 554 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 533 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 187 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 621 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8_mixedmode +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -101,14 +101,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 311.058532 - 0: The maximum resident set size (KB) = 3150964 + 0: The total amount of wall time = 360.025994 + 0: The maximum resident set size (KB) = 3151220 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_gfsv17 -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/cpld_control_gfsv17 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_gfsv17 +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -172,14 +172,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 234.852672 - 0: The maximum resident set size (KB) = 1736616 + 0: The total amount of wall time = 264.088721 + 0: The maximum resident set size (KB) = 1718896 Test 002 cpld_control_gfsv17 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/cpld_control_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -244,14 +244,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 356.462745 - 0: The maximum resident set size (KB) = 3112304 + 0: The total amount of wall time = 464.320466 + 0: The maximum resident set size (KB) = 3180704 Test 003 cpld_control_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/cpld_restart_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -304,14 +304,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 202.075789 - 0: The maximum resident set size (KB) = 3050588 + 0: The total amount of wall time = 204.981151 + 0: The maximum resident set size (KB) = 3053592 Test 004 cpld_restart_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/cpld_control_qr_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -376,14 +376,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 351.597487 - 0: The maximum resident set size (KB) = 3188192 + 0: The total amount of wall time = 463.872271 + 0: The maximum resident set size (KB) = 3191672 Test 005 cpld_control_qr_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/cpld_restart_qr_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -436,14 +436,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 219.445944 - 0: The maximum resident set size (KB) = 3064820 + 0: The total amount of wall time = 204.302325 + 0: The maximum resident set size (KB) = 3066152 Test 006 cpld_restart_qr_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/cpld_2threads_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -496,14 +496,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 409.558236 - 0: The maximum resident set size (KB) = 3518632 + 0: The total amount of wall time = 502.710576 + 0: The maximum resident set size (KB) = 3512160 Test 007 cpld_2threads_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/cpld_decomp_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -556,14 +556,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 346.961624 - 0: The maximum resident set size (KB) = 3180936 + 0: The total amount of wall time = 469.994356 + 0: The maximum resident set size (KB) = 3175556 Test 008 cpld_decomp_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/cpld_mpi_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -616,14 +616,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 287.944218 - 0: The maximum resident set size (KB) = 3037828 + 0: The total amount of wall time = 437.120723 + 0: The maximum resident set size (KB) = 3030824 Test 009 cpld_mpi_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_ciceC_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/cpld_control_ciceC_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_ciceC_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -688,14 +688,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 348.029728 - 0: The maximum resident set size (KB) = 3176388 + 0: The total amount of wall time = 435.295417 + 0: The maximum resident set size (KB) = 3188104 Test 010 cpld_control_ciceC_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/cpld_control_c192_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_c192_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/cpld_control_c192_p8 Checking test 011 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -748,14 +748,14 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 655.659299 - 0: The maximum resident set size (KB) = 3268512 + 0: The total amount of wall time = 682.094174 + 0: The maximum resident set size (KB) = 3264132 Test 011 cpld_control_c192_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/cpld_restart_c192_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_c192_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/cpld_restart_c192_p8 Checking test 012 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -808,14 +808,14 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 439.966021 - 0: The maximum resident set size (KB) = 3165124 + 0: The total amount of wall time = 441.389530 + 0: The maximum resident set size (KB) = 3164976 Test 012 cpld_restart_c192_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_bmark_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/cpld_bmark_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_bmark_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/cpld_bmark_p8 Checking test 013 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -863,14 +863,14 @@ Checking test 013 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 878.945090 - 0: The maximum resident set size (KB) = 4030216 + 0: The total amount of wall time = 910.235389 + 0: The maximum resident set size (KB) = 3969812 Test 013 cpld_bmark_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_bmark_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/cpld_restart_bmark_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_bmark_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/cpld_restart_bmark_p8 Checking test 014 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -918,14 +918,14 @@ Checking test 014 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 545.560317 - 0: The maximum resident set size (KB) = 3933396 + 0: The total amount of wall time = 537.637430 + 0: The maximum resident set size (KB) = 3978480 Test 014 cpld_restart_bmark_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_noaero_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/cpld_control_noaero_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_noaero_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/cpld_control_noaero_p8 Checking test 015 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -989,14 +989,14 @@ Checking test 015 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 260.156320 - 0: The maximum resident set size (KB) = 1721384 + 0: The total amount of wall time = 348.570885 + 0: The maximum resident set size (KB) = 1724168 Test 015 cpld_control_noaero_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_c96_noaero_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/cpld_control_nowave_noaero_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_c96_noaero_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/cpld_control_nowave_noaero_p8 Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1058,14 +1058,14 @@ Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 262.240612 - 0: The maximum resident set size (KB) = 1755680 + 0: The total amount of wall time = 312.143126 + 0: The maximum resident set size (KB) = 1759904 Test 016 cpld_control_nowave_noaero_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_debug_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/cpld_debug_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_debug_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/cpld_debug_p8 Checking test 017 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1118,14 +1118,14 @@ Checking test 017 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 675.012589 - 0: The maximum resident set size (KB) = 3247544 + 0: The total amount of wall time = 737.837094 + 0: The maximum resident set size (KB) = 3255196 Test 017 cpld_debug_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_debug_noaero_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/cpld_debug_noaero_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_debug_noaero_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/cpld_debug_noaero_p8 Checking test 018 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1177,14 +1177,14 @@ Checking test 018 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 439.442341 - 0: The maximum resident set size (KB) = 1739272 + 0: The total amount of wall time = 424.931717 + 0: The maximum resident set size (KB) = 1744160 Test 018 cpld_debug_noaero_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_noaero_p8_agrid -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/cpld_control_noaero_p8_agrid +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_noaero_p8_agrid +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/cpld_control_noaero_p8_agrid Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1246,14 +1246,14 @@ Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 273.867236 - 0: The maximum resident set size (KB) = 1765068 + 0: The total amount of wall time = 274.027633 + 0: The maximum resident set size (KB) = 1769708 Test 019 cpld_control_noaero_p8_agrid PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_c48 -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/cpld_control_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/cpld_control_c48 Checking test 020 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1303,14 +1303,14 @@ Checking test 020 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 497.192344 - 0: The maximum resident set size (KB) = 2795480 + 0: The total amount of wall time = 496.558939 + 0: The maximum resident set size (KB) = 2812532 Test 020 cpld_control_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_warmstart_c48 -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/cpld_warmstart_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_warmstart_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/cpld_warmstart_c48 Checking test 021 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1360,14 +1360,14 @@ Checking test 021 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 135.919974 - 0: The maximum resident set size (KB) = 2802716 + 0: The total amount of wall time = 147.660447 + 0: The maximum resident set size (KB) = 2804684 Test 021 cpld_warmstart_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_warmstart_c48 -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/cpld_restart_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_warmstart_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/cpld_restart_c48 Checking test 022 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1417,14 +1417,14 @@ Checking test 022 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 77.298121 - 0: The maximum resident set size (KB) = 2244784 + 0: The total amount of wall time = 72.282015 + 0: The maximum resident set size (KB) = 2228108 Test 022 cpld_restart_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8_faster -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/cpld_control_p8_faster +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/cpld_control_p8_faster Checking test 023 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1489,14 +1489,14 @@ Checking test 023 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 326.859879 - 0: The maximum resident set size (KB) = 3177672 + 0: The total amount of wall time = 335.157784 + 0: The maximum resident set size (KB) = 3176720 Test 023 cpld_control_p8_faster PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_CubedSphereGrid -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_CubedSphereGrid +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_CubedSphereGrid +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_CubedSphereGrid Checking test 024 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1523,28 +1523,28 @@ Checking test 024 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 131.676440 - 0: The maximum resident set size (KB) = 581572 + 0: The total amount of wall time = 130.250790 + 0: The maximum resident set size (KB) = 638552 Test 024 control_CubedSphereGrid PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_CubedSphereGrid_parallel -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_CubedSphereGrid_parallel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_CubedSphereGrid_parallel +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_CubedSphereGrid_parallel Checking test 025 control_CubedSphereGrid_parallel 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 = 129.507537 - 0: The maximum resident set size (KB) = 635440 + 0: The total amount of wall time = 128.740995 + 0: The maximum resident set size (KB) = 637408 Test 025 control_CubedSphereGrid_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_latlon -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_latlon +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_latlon +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_latlon Checking test 026 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1555,32 +1555,32 @@ Checking test 026 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.990428 - 0: The maximum resident set size (KB) = 632236 + 0: The total amount of wall time = 133.381130 + 0: The maximum resident set size (KB) = 640504 Test 026 control_latlon PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_wrtGauss_netcdf_parallel -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_wrtGauss_netcdf_parallel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wrtGauss_netcdf_parallel +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_wrtGauss_netcdf_parallel Checking test 027 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 137.998859 - 0: The maximum resident set size (KB) = 634844 + 0: The total amount of wall time = 136.274915 + 0: The maximum resident set size (KB) = 634564 Test 027 control_wrtGauss_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_c48 -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_c48 Checking test 028 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1619,14 +1619,14 @@ Checking test 028 control_c48 results .... Comparing 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.434925 -0: The maximum resident set size (KB) = 822216 +0: The total amount of wall time = 349.987469 +0: The maximum resident set size (KB) = 808992 Test 028 control_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_c192 -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_c192 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c192 +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_c192 Checking test 029 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1637,14 +1637,14 @@ Checking test 029 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 526.277321 - 0: The maximum resident set size (KB) = 772480 + 0: The total amount of wall time = 547.134382 + 0: The maximum resident set size (KB) = 772468 Test 029 control_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_c384 -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_c384 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c384 +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_c384 Checking test 030 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1655,14 +1655,14 @@ Checking test 030 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 581.052564 - 0: The maximum resident set size (KB) = 1223468 + 0: The total amount of wall time = 623.780968 + 0: The maximum resident set size (KB) = 1235584 Test 030 control_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_c384gdas -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_c384gdas +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c384gdas +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_c384gdas Checking test 031 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1705,14 +1705,14 @@ Checking test 031 control_c384gdas 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 = 512.061297 - 0: The maximum resident set size (KB) = 1286604 + 0: The total amount of wall time = 550.269241 + 0: The maximum resident set size (KB) = 1339984 Test 031 control_c384gdas PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_stochy -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_stochy +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_stochy +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_stochy Checking test 032 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1723,28 +1723,28 @@ Checking test 032 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 86.711852 - 0: The maximum resident set size (KB) = 641572 + 0: The total amount of wall time = 87.358989 + 0: The maximum resident set size (KB) = 641244 Test 032 control_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_stochy -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_stochy_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_stochy +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_stochy_restart Checking test 033 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 47.544164 - 0: The maximum resident set size (KB) = 489272 + 0: The total amount of wall time = 73.630983 + 0: The maximum resident set size (KB) = 452152 Test 033 control_stochy_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_lndp -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_lndp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_lndp +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_lndp Checking test 034 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1755,14 +1755,14 @@ Checking test 034 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 84.081561 - 0: The maximum resident set size (KB) = 634968 + 0: The total amount of wall time = 82.949255 + 0: The maximum resident set size (KB) = 637848 Test 034 control_lndp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_iovr4 -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_iovr4 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_iovr4 +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_iovr4 Checking test 035 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1777,14 +1777,14 @@ Checking test 035 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 137.557634 - 0: The maximum resident set size (KB) = 636208 + 0: The total amount of wall time = 134.968310 + 0: The maximum resident set size (KB) = 631104 Test 035 control_iovr4 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_iovr5 -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_iovr5 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_iovr5 +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_iovr5 Checking test 036 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1799,14 +1799,14 @@ Checking test 036 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 138.735804 - 0: The maximum resident set size (KB) = 637784 + 0: The total amount of wall time = 135.743425 + 0: The maximum resident set size (KB) = 632612 Test 036 control_iovr5 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_p8 Checking test 037 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1853,14 +1853,14 @@ Checking test 037 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 168.930710 - 0: The maximum resident set size (KB) = 1606212 + 0: The total amount of wall time = 166.672191 + 0: The maximum resident set size (KB) = 1606336 Test 037 control_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_restart_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_restart_p8 Checking test 038 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1899,14 +1899,14 @@ Checking test 038 control_restart_p8 results .... Comparing 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.423530 - 0: The maximum resident set size (KB) = 873116 + 0: The total amount of wall time = 102.756309 + 0: The maximum resident set size (KB) = 874064 Test 038 control_restart_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_qr_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_qr_p8 Checking test 039 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1953,14 +1953,14 @@ Checking test 039 control_qr_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 170.198703 - 0: The maximum resident set size (KB) = 1611696 + 0: The total amount of wall time = 168.462476 + 0: The maximum resident set size (KB) = 1606056 Test 039 control_qr_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_restart_qr_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_restart_qr_p8 Checking test 040 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1999,14 +1999,14 @@ Checking test 040 control_restart_qr_p8 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.590195 - 0: The maximum resident set size (KB) = 865288 + 0: The total amount of wall time = 92.528934 + 0: The maximum resident set size (KB) = 871924 Test 040 control_restart_qr_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_decomp_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_decomp_p8 Checking test 041 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2049,14 +2049,14 @@ Checking test 041 control_decomp_p8 results .... Comparing 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.360028 - 0: The maximum resident set size (KB) = 1587696 + 0: The total amount of wall time = 173.626129 + 0: The maximum resident set size (KB) = 1590812 Test 041 control_decomp_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_2threads_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_2threads_p8 Checking test 042 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2099,14 +2099,14 @@ Checking test 042 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 181.370958 - 0: The maximum resident set size (KB) = 1689164 + 0: The total amount of wall time = 174.332877 + 0: The maximum resident set size (KB) = 1695544 Test 042 control_2threads_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8_lndp -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_p8_lndp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_lndp +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_p8_lndp Checking test 043 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2125,14 +2125,14 @@ Checking test 043 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 317.457693 - 0: The maximum resident set size (KB) = 1608708 + 0: The total amount of wall time = 322.781381 + 0: The maximum resident set size (KB) = 1613576 Test 043 control_p8_lndp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8_rrtmgp -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_p8_rrtmgp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_rrtmgp +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_p8_rrtmgp Checking test 044 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2179,14 +2179,14 @@ Checking test 044 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 234.258423 - 0: The maximum resident set size (KB) = 1669684 + 0: The total amount of wall time = 226.095187 + 0: The maximum resident set size (KB) = 1675292 Test 044 control_p8_rrtmgp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8_mynn -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_p8_mynn +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_mynn +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_p8_mynn Checking test 045 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2233,14 +2233,14 @@ Checking test 045 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 175.670271 - 0: The maximum resident set size (KB) = 1615080 + 0: The total amount of wall time = 169.857445 + 0: The maximum resident set size (KB) = 1614452 Test 045 control_p8_mynn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/merra2_thompson -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/merra2_thompson +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/merra2_thompson +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/merra2_thompson Checking test 046 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2287,14 +2287,14 @@ Checking test 046 merra2_thompson results .... Comparing 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.860995 - 0: The maximum resident set size (KB) = 1615560 + 0: The total amount of wall time = 189.976241 + 0: The maximum resident set size (KB) = 1611972 Test 046 merra2_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/regional_control +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/regional_control Checking test 047 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2305,28 +2305,28 @@ Checking test 047 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 297.837700 - 0: The maximum resident set size (KB) = 877316 + 0: The total amount of wall time = 317.967460 + 0: The maximum resident set size (KB) = 871500 Test 047 regional_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/regional_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/regional_restart Checking test 048 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 154.878157 - 0: The maximum resident set size (KB) = 871168 + 0: The total amount of wall time = 160.443772 + 0: The maximum resident set size (KB) = 865628 Test 048 regional_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/regional_control_qr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/regional_control_qr Checking test 049 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2337,28 +2337,28 @@ Checking test 049 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 296.657407 - 0: The maximum resident set size (KB) = 872100 + 0: The total amount of wall time = 317.147438 + 0: The maximum resident set size (KB) = 869272 Test 049 regional_control_qr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/regional_restart_qr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/regional_restart_qr Checking test 050 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 153.963477 - 0: The maximum resident set size (KB) = 865756 + 0: The total amount of wall time = 156.573514 + 0: The maximum resident set size (KB) = 864488 Test 050 regional_restart_qr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/regional_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/regional_decomp Checking test 051 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2369,14 +2369,14 @@ Checking test 051 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 313.546564 - 0: The maximum resident set size (KB) = 866236 + 0: The total amount of wall time = 322.632273 + 0: The maximum resident set size (KB) = 867232 Test 051 regional_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/regional_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/regional_2threads Checking test 052 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2387,14 +2387,14 @@ Checking test 052 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 207.639312 - 0: The maximum resident set size (KB) = 848308 + 0: The total amount of wall time = 204.198133 + 0: The maximum resident set size (KB) = 857052 Test 052 regional_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_noquilt -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/regional_noquilt +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_noquilt +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/regional_noquilt Checking test 053 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2402,28 +2402,28 @@ Checking test 053 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 317.695845 - 0: The maximum resident set size (KB) = 862128 + 0: The total amount of wall time = 321.247920 + 0: The maximum resident set size (KB) = 863532 Test 053 regional_noquilt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_netcdf_parallel -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/regional_netcdf_parallel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_netcdf_parallel +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/regional_netcdf_parallel Checking test 054 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK + Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 292.401743 - 0: The maximum resident set size (KB) = 869560 + 0: The total amount of wall time = 320.120896 + 0: The maximum resident set size (KB) = 864164 Test 054 regional_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/regional_2dwrtdecomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/regional_2dwrtdecomp Checking test 055 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2434,14 +2434,14 @@ Checking test 055 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 297.138677 - 0: The maximum resident set size (KB) = 818008 + 0: The total amount of wall time = 314.839237 + 0: The maximum resident set size (KB) = 875208 Test 055 regional_2dwrtdecomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/fv3_regional_wofs -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/regional_wofs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/fv3_regional_wofs +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/regional_wofs Checking test 056 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2452,14 +2452,14 @@ Checking test 056 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 375.544969 - 0: The maximum resident set size (KB) = 633956 + 0: The total amount of wall time = 376.170909 + 0: The maximum resident set size (KB) = 630060 Test 056 regional_wofs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/rap_control +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/rap_control Checking test 057 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2506,14 +2506,14 @@ Checking test 057 rap_control results .... Comparing 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.536248 - 0: The maximum resident set size (KB) = 1062940 + 0: The total amount of wall time = 459.666292 + 0: The maximum resident set size (KB) = 1066948 Test 057 rap_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_spp_sppt_shum_skeb -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/regional_spp_sppt_shum_skeb +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_spp_sppt_shum_skeb +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/regional_spp_sppt_shum_skeb Checking test 058 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2524,14 +2524,14 @@ Checking test 058 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 267.255093 - 0: The maximum resident set size (KB) = 1143588 + 0: The total amount of wall time = 267.680083 + 0: The maximum resident set size (KB) = 1193752 Test 058 regional_spp_sppt_shum_skeb PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/rap_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/rap_decomp Checking test 059 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2578,14 +2578,14 @@ Checking test 059 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 477.164388 - 0: The maximum resident set size (KB) = 1014196 + 0: The total amount of wall time = 481.253860 + 0: The maximum resident set size (KB) = 997008 Test 059 rap_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/rap_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/rap_2threads Checking test 060 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2632,14 +2632,14 @@ Checking test 060 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 470.356117 - 0: The maximum resident set size (KB) = 1136148 + 0: The total amount of wall time = 472.567070 + 0: The maximum resident set size (KB) = 1144472 Test 060 rap_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/rap_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/rap_restart Checking test 061 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2678,14 +2678,14 @@ Checking test 061 rap_restart results .... Comparing 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.430299 - 0: The maximum resident set size (KB) = 962300 + 0: The total amount of wall time = 231.168381 + 0: The maximum resident set size (KB) = 969516 Test 061 rap_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_sfcdiff -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/rap_sfcdiff +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/rap_sfcdiff Checking test 062 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2732,14 +2732,14 @@ Checking test 062 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 457.495147 - 0: The maximum resident set size (KB) = 1060812 + 0: The total amount of wall time = 456.847308 + 0: The maximum resident set size (KB) = 1055312 Test 062 rap_sfcdiff PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_sfcdiff -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/rap_sfcdiff_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/rap_sfcdiff_decomp Checking test 063 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2786,14 +2786,14 @@ Checking test 063 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 480.828855 - 0: The maximum resident set size (KB) = 1010676 + 0: The total amount of wall time = 480.615927 + 0: The maximum resident set size (KB) = 963220 Test 063 rap_sfcdiff_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_sfcdiff -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/rap_sfcdiff_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/rap_sfcdiff_restart Checking test 064 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2832,14 +2832,14 @@ Checking test 064 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 343.817476 - 0: The maximum resident set size (KB) = 981208 + 0: The total amount of wall time = 339.957078 + 0: The maximum resident set size (KB) = 984228 Test 064 rap_sfcdiff_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/hrrr_control +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/hrrr_control Checking test 065 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2886,14 +2886,14 @@ Checking test 065 hrrr_control results .... Comparing 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.573346 - 0: The maximum resident set size (KB) = 1001316 + 0: The total amount of wall time = 446.154843 + 0: The maximum resident set size (KB) = 1063232 Test 065 hrrr_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/hrrr_control_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/hrrr_control_decomp Checking test 066 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2940,14 +2940,14 @@ Checking test 066 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 462.419557 - 0: The maximum resident set size (KB) = 1002592 + 0: The total amount of wall time = 462.373051 + 0: The maximum resident set size (KB) = 1000404 Test 066 hrrr_control_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/hrrr_control_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/hrrr_control_2threads Checking test 067 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2994,14 +2994,14 @@ Checking test 067 hrrr_control_2threads results .... Comparing 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.277457 - 0: The maximum resident set size (KB) = 1140172 + 0: The total amount of wall time = 453.749351 + 0: The maximum resident set size (KB) = 1141144 Test 067 hrrr_control_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/hrrr_control_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/hrrr_control_restart Checking test 068 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3040,14 +3040,14 @@ Checking test 068 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 330.367109 - 0: The maximum resident set size (KB) = 977844 + 0: The total amount of wall time = 329.521139 + 0: The maximum resident set size (KB) = 987624 Test 068 hrrr_control_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_v1beta -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/rrfs_v1beta +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1beta +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/rrfs_v1beta Checking test 069 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3094,14 +3094,14 @@ Checking test 069 rrfs_v1beta results .... Comparing 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.644843 - 0: The maximum resident set size (KB) = 1067040 + 0: The total amount of wall time = 455.329131 + 0: The maximum resident set size (KB) = 1060724 Test 069 rrfs_v1beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_v1nssl -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/rrfs_v1nssl +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1nssl +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/rrfs_v1nssl Checking test 070 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3116,14 +3116,14 @@ Checking test 070 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 538.464294 - 0: The maximum resident set size (KB) = 693116 + 0: The total amount of wall time = 540.267869 + 0: The maximum resident set size (KB) = 702696 Test 070 rrfs_v1nssl PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/rrfs_v1nssl_nohailnoccn +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/rrfs_v1nssl_nohailnoccn Checking test 071 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3138,14 +3138,14 @@ Checking test 071 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 523.039355 - 0: The maximum resident set size (KB) = 758644 + 0: The total amount of wall time = 526.890775 + 0: The maximum resident set size (KB) = 760748 Test 071 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/rrfs_smoke_conus13km_hrrr_warm Checking test 072 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3154,14 +3154,14 @@ Checking test 072 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 144.632846 - 0: The maximum resident set size (KB) = 1032260 + 0: The total amount of wall time = 145.122186 + 0: The maximum resident set size (KB) = 1031784 Test 072 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 073 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3170,14 +3170,14 @@ Checking test 073 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 97.934376 - 0: The maximum resident set size (KB) = 944520 + 0: The total amount of wall time = 96.507285 + 0: The maximum resident set size (KB) = 947092 Test 073 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_conus13km_hrrr_warm -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/rrfs_conus13km_hrrr_warm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_conus13km_hrrr_warm +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/rrfs_conus13km_hrrr_warm Checking test 074 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3186,14 +3186,14 @@ Checking test 074 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 130.802221 - 0: The maximum resident set size (KB) = 901436 + 0: The total amount of wall time = 130.138969 + 0: The maximum resident set size (KB) = 943088 Test 074 rrfs_conus13km_hrrr_warm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/rrfs_smoke_conus13km_radar_tten_warm Checking test 075 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3202,26 +3202,26 @@ Checking test 075 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 147.981714 - 0: The maximum resident set size (KB) = 977504 + 0: The total amount of wall time = 148.608193 + 0: The maximum resident set size (KB) = 1040332 Test 075 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 076 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 68.583903 - 0: The maximum resident set size (KB) = 935968 + 0: The total amount of wall time = 70.893843 + 0: The maximum resident set size (KB) = 931408 Test 076 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_csawmg -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_csawmg +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmg +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_csawmg Checking test 077 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3232,14 +3232,14 @@ Checking test 077 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 342.955175 - 0: The maximum resident set size (KB) = 726756 + 0: The total amount of wall time = 345.217996 + 0: The maximum resident set size (KB) = 724976 Test 077 control_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_csawmgt -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_csawmgt +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmgt +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_csawmgt Checking test 078 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3250,14 +3250,14 @@ Checking test 078 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 339.668096 - 0: The maximum resident set size (KB) = 672928 + 0: The total amount of wall time = 339.571495 + 0: The maximum resident set size (KB) = 725844 Test 078 control_csawmgt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_ras -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_ras +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_ras +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_ras Checking test 079 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3268,26 +3268,26 @@ Checking test 079 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 182.184838 - 0: The maximum resident set size (KB) = 715400 + 0: The total amount of wall time = 181.641932 + 0: The maximum resident set size (KB) = 716588 Test 079 control_ras PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_wam -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_wam +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wam +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_wam Checking test 080 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 112.572405 - 0: The maximum resident set size (KB) = 644644 + 0: The total amount of wall time = 112.250638 + 0: The maximum resident set size (KB) = 640204 Test 080 control_wam PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8_faster -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_p8_faster +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_p8_faster Checking test 081 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3334,14 +3334,14 @@ Checking test 081 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 153.807982 - 0: The maximum resident set size (KB) = 1603052 + 0: The total amount of wall time = 153.674685 + 0: The maximum resident set size (KB) = 1608392 Test 081 control_p8_faster PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control_faster -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/regional_control_faster +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/regional_control_faster Checking test 082 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3352,56 +3352,56 @@ Checking test 082 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 271.168758 - 0: The maximum resident set size (KB) = 875056 + 0: The total amount of wall time = 270.792263 + 0: The maximum resident set size (KB) = 867896 Test 082 regional_control_faster PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 083 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 886.561081 - 0: The maximum resident set size (KB) = 1026564 + 0: The total amount of wall time = 868.817926 + 0: The maximum resident set size (KB) = 1023576 Test 083 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 084 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 495.909023 - 0: The maximum resident set size (KB) = 943756 + 0: The total amount of wall time = 494.594011 + 0: The maximum resident set size (KB) = 940592 Test 084 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/rrfs_conus13km_hrrr_warm_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/rrfs_conus13km_hrrr_warm_debug Checking test 085 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 768.534309 - 0: The maximum resident set size (KB) = 970984 + 0: The total amount of wall time = 764.497690 + 0: The maximum resident set size (KB) = 976492 Test 085 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_CubedSphereGrid_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_CubedSphereGrid_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_CubedSphereGrid_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_CubedSphereGrid_debug Checking test 086 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3428,334 +3428,334 @@ Checking test 086 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 171.536277 - 0: The maximum resident set size (KB) = 800620 + 0: The total amount of wall time = 175.839748 + 0: The maximum resident set size (KB) = 798184 Test 086 control_CubedSphereGrid_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_wrtGauss_netcdf_parallel_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_wrtGauss_netcdf_parallel_debug Checking test 087 control_wrtGauss_netcdf_parallel_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc ............ALT CHECK......OK + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 165.964688 - 0: The maximum resident set size (KB) = 799104 + 0: The total amount of wall time = 159.079318 + 0: The maximum resident set size (KB) = 794920 Test 087 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_stochy_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_stochy_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_stochy_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_stochy_debug Checking test 088 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 185.762073 - 0: The maximum resident set size (KB) = 803416 + 0: The total amount of wall time = 181.392188 + 0: The maximum resident set size (KB) = 803204 Test 088 control_stochy_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_lndp_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_lndp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_lndp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_lndp_debug Checking test 089 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 164.054328 - 0: The maximum resident set size (KB) = 806188 + 0: The total amount of wall time = 160.108254 + 0: The maximum resident set size (KB) = 794748 Test 089 control_lndp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_csawmg_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_csawmg_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmg_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_csawmg_debug Checking test 090 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 248.190782 - 0: The maximum resident set size (KB) = 846456 + 0: The total amount of wall time = 246.145341 + 0: The maximum resident set size (KB) = 847676 Test 090 control_csawmg_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_csawmgt_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_csawmgt_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmgt_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_csawmgt_debug Checking test 091 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 233.648645 - 0: The maximum resident set size (KB) = 845884 + 0: The total amount of wall time = 239.760912 + 0: The maximum resident set size (KB) = 847160 Test 091 control_csawmgt_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_ras_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_ras_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_ras_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_ras_debug Checking test 092 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 165.843301 - 0: The maximum resident set size (KB) = 809756 + 0: The total amount of wall time = 162.611085 + 0: The maximum resident set size (KB) = 810212 Test 092 control_ras_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_diag_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_diag_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_diag_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_diag_debug Checking test 093 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 167.554328 - 0: The maximum resident set size (KB) = 859704 + 0: The total amount of wall time = 172.235508 + 0: The maximum resident set size (KB) = 823460 Test 093 control_diag_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_debug_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_debug_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_debug_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_debug_p8 Checking test 094 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 181.630132 - 0: The maximum resident set size (KB) = 1620212 + 0: The total amount of wall time = 178.325941 + 0: The maximum resident set size (KB) = 1623616 Test 094 control_debug_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/regional_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/regional_debug Checking test 095 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 995.208995 - 0: The maximum resident set size (KB) = 889752 + 0: The total amount of wall time = 988.536634 + 0: The maximum resident set size (KB) = 889276 Test 095 regional_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/rap_control_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/rap_control_debug Checking test 096 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 290.171433 - 0: The maximum resident set size (KB) = 1177184 + 0: The total amount of wall time = 285.557542 + 0: The maximum resident set size (KB) = 1180944 Test 096 rap_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/hrrr_control_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/hrrr_control_debug Checking test 097 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 288.730572 - 0: The maximum resident set size (KB) = 1178584 + 0: The total amount of wall time = 284.904559 + 0: The maximum resident set size (KB) = 1177316 Test 097 hrrr_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/rap_unified_drag_suite_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/rap_unified_drag_suite_debug Checking test 098 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 288.277386 - 0: The maximum resident set size (KB) = 1174608 + 0: The total amount of wall time = 280.156018 + 0: The maximum resident set size (KB) = 1173000 Test 098 rap_unified_drag_suite_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_diag_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/rap_diag_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_diag_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/rap_diag_debug Checking test 099 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 307.733998 - 0: The maximum resident set size (KB) = 1267252 + 0: The total amount of wall time = 306.333450 + 0: The maximum resident set size (KB) = 1257848 Test 099 rap_diag_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/rap_cires_ugwp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_cires_ugwp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/rap_cires_ugwp_debug Checking test 100 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 299.548825 - 0: The maximum resident set size (KB) = 1171588 + 0: The total amount of wall time = 289.768713 + 0: The maximum resident set size (KB) = 1178548 Test 100 rap_cires_ugwp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/rap_unified_ugwp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_cires_ugwp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/rap_unified_ugwp_debug Checking test 101 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 291.797830 - 0: The maximum resident set size (KB) = 1175496 + 0: The total amount of wall time = 288.965274 + 0: The maximum resident set size (KB) = 1175864 Test 101 rap_unified_ugwp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_lndp_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/rap_lndp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_lndp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/rap_lndp_debug Checking test 102 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 293.669245 - 0: The maximum resident set size (KB) = 1179372 + 0: The total amount of wall time = 292.433463 + 0: The maximum resident set size (KB) = 1181212 Test 102 rap_lndp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_flake_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/rap_flake_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_flake_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/rap_flake_debug Checking test 103 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.218847 - 0: The maximum resident set size (KB) = 1173688 + 0: The total amount of wall time = 282.444418 + 0: The maximum resident set size (KB) = 1175932 Test 103 rap_flake_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_progcld_thompson_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/rap_progcld_thompson_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_progcld_thompson_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/rap_progcld_thompson_debug Checking test 104 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 296.165400 - 0: The maximum resident set size (KB) = 1180028 + 0: The total amount of wall time = 285.270191 + 0: The maximum resident set size (KB) = 1175608 Test 104 rap_progcld_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_noah_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/rap_noah_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_noah_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/rap_noah_debug Checking test 105 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 282.869479 - 0: The maximum resident set size (KB) = 1182124 + 0: The total amount of wall time = 287.064123 + 0: The maximum resident set size (KB) = 1142136 Test 105 rap_noah_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_sfcdiff_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/rap_sfcdiff_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/rap_sfcdiff_debug Checking test 106 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 293.749184 - 0: The maximum resident set size (KB) = 1180912 + 0: The total amount of wall time = 284.720790 + 0: The maximum resident set size (KB) = 1171736 Test 106 rap_sfcdiff_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/rap_noah_sfcdiff_cires_ugwp_debug Checking test 107 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 470.374684 - 0: The maximum resident set size (KB) = 1180816 + 0: The total amount of wall time = 476.655544 + 0: The maximum resident set size (KB) = 1178444 Test 107 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_v1beta_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/rrfs_v1beta_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1beta_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/rrfs_v1beta_debug Checking test 108 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.696820 - 0: The maximum resident set size (KB) = 1167048 + 0: The total amount of wall time = 281.983163 + 0: The maximum resident set size (KB) = 1176184 Test 108 rrfs_v1beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_wam_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_wam_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wam_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_wam_debug Checking test 109 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 295.541263 - 0: The maximum resident set size (KB) = 524740 + 0: The total amount of wall time = 290.777702 + 0: The maximum resident set size (KB) = 528672 Test 109 control_wam_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3766,14 +3766,14 @@ Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 251.779372 - 0: The maximum resident set size (KB) = 1086004 + 0: The total amount of wall time = 250.969519 + 0: The maximum resident set size (KB) = 1087632 Test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/rap_control_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/rap_control_dyn32_phy32 Checking test 111 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3820,14 +3820,14 @@ Checking test 111 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 380.722583 - 0: The maximum resident set size (KB) = 1003632 + 0: The total amount of wall time = 380.329200 + 0: The maximum resident set size (KB) = 1005060 Test 111 rap_control_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/hrrr_control_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/hrrr_control_dyn32_phy32 Checking test 112 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3874,14 +3874,14 @@ Checking test 112 hrrr_control_dyn32_phy32 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 = 196.850631 - 0: The maximum resident set size (KB) = 950028 + 0: The total amount of wall time = 197.111988 + 0: The maximum resident set size (KB) = 957640 Test 112 hrrr_control_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/rap_2threads_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/rap_2threads_dyn32_phy32 Checking test 113 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3928,14 +3928,14 @@ Checking test 113 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 398.957264 - 0: The maximum resident set size (KB) = 1024544 + 0: The total amount of wall time = 395.513768 + 0: The maximum resident set size (KB) = 1026572 Test 113 rap_2threads_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/hrrr_control_2threads_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/hrrr_control_2threads_dyn32_phy32 Checking test 114 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3982,14 +3982,14 @@ Checking test 114 hrrr_control_2threads_dyn32_phy32 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 = 206.302524 - 0: The maximum resident set size (KB) = 1005344 + 0: The total amount of wall time = 204.261548 + 0: The maximum resident set size (KB) = 999728 Test 114 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/hrrr_control_decomp_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/hrrr_control_decomp_dyn32_phy32 Checking test 115 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4036,14 +4036,14 @@ Checking test 115 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 208.062340 - 0: The maximum resident set size (KB) = 897984 + 0: The total amount of wall time = 210.028117 + 0: The maximum resident set size (KB) = 901448 Test 115 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/rap_restart_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/rap_restart_dyn32_phy32 Checking test 116 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4082,14 +4082,14 @@ Checking test 116 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 282.812693 - 0: The maximum resident set size (KB) = 951140 + 0: The total amount of wall time = 282.359329 + 0: The maximum resident set size (KB) = 916748 Test 116 rap_restart_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/hrrr_control_restart_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/hrrr_control_restart_dyn32_phy32 Checking test 117 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4128,14 +4128,14 @@ Checking test 117 hrrr_control_restart_dyn32_phy32 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 = 102.324227 - 0: The maximum resident set size (KB) = 870596 + 0: The total amount of wall time = 102.678007 + 0: The maximum resident set size (KB) = 831308 Test 117 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_dyn64_phy32 -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/rap_control_dyn64_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn64_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/rap_control_dyn64_phy32 Checking test 118 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4182,81 +4182,81 @@ Checking test 118 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 242.777655 - 0: The maximum resident set size (KB) = 941912 + 0: The total amount of wall time = 241.666500 + 0: The maximum resident set size (KB) = 966112 Test 118 rap_control_dyn64_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_debug_dyn32_phy32 -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/rap_control_debug_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/rap_control_debug_dyn32_phy32 Checking test 119 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 284.451552 - 0: The maximum resident set size (KB) = 1061992 + 0: The total amount of wall time = 277.608381 + 0: The maximum resident set size (KB) = 1066192 Test 119 rap_control_debug_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/hrrr_control_debug_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/hrrr_control_debug_dyn32_phy32 Checking test 120 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 284.402705 - 0: The maximum resident set size (KB) = 1059872 + 0: The total amount of wall time = 281.186169 + 0: The maximum resident set size (KB) = 1066164 Test 120 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_debug_dyn64_phy32 -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/rap_control_dyn64_phy32_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug_dyn64_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/rap_control_dyn64_phy32_debug Checking test 121 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 288.428808 - 0: The maximum resident set size (KB) = 1107772 + 0: The total amount of wall time = 289.449805 + 0: The maximum resident set size (KB) = 1105960 Test 121 rap_control_dyn64_phy32_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_atm -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/hafs_regional_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/hafs_regional_atm Checking test 122 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 265.759015 - 0: The maximum resident set size (KB) = 1051304 + 0: The total amount of wall time = 263.467270 + 0: The maximum resident set size (KB) = 1060952 Test 122 hafs_regional_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/hafs_regional_atm_thompson_gfdlsf +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/hafs_regional_atm_thompson_gfdlsf Checking test 123 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 408.295196 - 0: The maximum resident set size (KB) = 1400320 + 0: The total amount of wall time = 398.461310 + 0: The maximum resident set size (KB) = 1428632 Test 123 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_atm_ocn -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/hafs_regional_atm_ocn +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_ocn +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/hafs_regional_atm_ocn Checking test 124 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4265,30 +4265,30 @@ Checking test 124 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 377.556505 - 0: The maximum resident set size (KB) = 1236100 + 0: The total amount of wall time = 373.478730 + 0: The maximum resident set size (KB) = 1233468 Test 124 hafs_regional_atm_ocn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_atm_wav -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/hafs_regional_atm_wav +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_wav +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/hafs_regional_atm_wav Checking test 125 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - Comparing 20190829.060000.restart.ww3 .........OK + Comparing ufs.hafs.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 = 726.919353 - 0: The maximum resident set size (KB) = 1266144 + 0: The total amount of wall time = 722.668913 + 0: The maximum resident set size (KB) = 1286524 Test 125 hafs_regional_atm_wav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_atm_ocn_wav -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/hafs_regional_atm_ocn_wav +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_ocn_wav +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/hafs_regional_atm_ocn_wav Checking test 126 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4296,31 +4296,31 @@ Checking test 126 hafs_regional_atm_ocn_wav results .... Comparing archs.2019_241_06.a .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - Comparing 20190829.060000.restart.ww3 .........OK + Comparing ufs.hafs.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.398805 - 0: The maximum resident set size (KB) = 1225908 + 0: The total amount of wall time = 826.121638 + 0: The maximum resident set size (KB) = 1282832 Test 126 hafs_regional_atm_ocn_wav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_1nest_atm -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/hafs_regional_1nest_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/hafs_regional_1nest_atm Checking test 127 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 361.522534 - 0: The maximum resident set size (KB) = 507816 + 0: The total amount of wall time = 360.110703 + 0: The maximum resident set size (KB) = 509456 Test 127 hafs_regional_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/hafs_regional_telescopic_2nests_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/hafs_regional_telescopic_2nests_atm Checking test 128 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4329,28 +4329,28 @@ Checking test 128 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 414.007574 - 0: The maximum resident set size (KB) = 519928 + 0: The total amount of wall time = 441.193403 + 0: The maximum resident set size (KB) = 514944 Test 128 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_global_1nest_atm -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/hafs_global_1nest_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_global_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/hafs_global_1nest_atm Checking test 129 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 172.194458 - 0: The maximum resident set size (KB) = 356904 + 0: The total amount of wall time = 174.097911 + 0: The maximum resident set size (KB) = 361456 Test 129 hafs_global_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_global_multiple_4nests_atm -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/hafs_global_multiple_4nests_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_global_multiple_4nests_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/hafs_global_multiple_4nests_atm Checking test 130 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4368,14 +4368,14 @@ Checking test 130 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 461.130139 - 0: The maximum resident set size (KB) = 428728 + 0: The total amount of wall time = 462.725770 + 0: The maximum resident set size (KB) = 433444 Test 130 hafs_global_multiple_4nests_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/hafs_regional_specified_moving_1nest_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/hafs_regional_specified_moving_1nest_atm Checking test 131 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4384,28 +4384,28 @@ Checking test 131 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 228.211707 - 0: The maximum resident set size (KB) = 530644 + 0: The total amount of wall time = 229.710359 + 0: The maximum resident set size (KB) = 531524 Test 131 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/hafs_regional_storm_following_1nest_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/hafs_regional_storm_following_1nest_atm Checking test 132 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 217.402211 - 0: The maximum resident set size (KB) = 528952 + 0: The total amount of wall time = 217.700429 + 0: The maximum resident set size (KB) = 523572 Test 132 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/hafs_regional_storm_following_1nest_atm_ocn Checking test 133 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4414,42 +4414,42 @@ Checking test 133 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 288.741746 - 0: The maximum resident set size (KB) = 569016 + 0: The total amount of wall time = 287.810792 + 0: The maximum resident set size (KB) = 569428 Test 133 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_global_storm_following_1nest_atm -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/hafs_global_storm_following_1nest_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_global_storm_following_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/hafs_global_storm_following_1nest_atm Checking test 134 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 68.092813 - 0: The maximum resident set size (KB) = 369032 + 0: The total amount of wall time = 68.720297 + 0: The maximum resident set size (KB) = 374512 Test 134 hafs_global_storm_following_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 789.952451 - 0: The maximum resident set size (KB) = 606168 + 0: The total amount of wall time = 796.680035 + 0: The maximum resident set size (KB) = 594928 Test 135 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 136 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4460,14 +4460,14 @@ Checking test 136 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 535.841316 - 0: The maximum resident set size (KB) = 617380 + 0: The total amount of wall time = 538.006011 + 0: The maximum resident set size (KB) = 627856 Test 136 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_docn -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/hafs_regional_docn +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_docn +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/hafs_regional_docn Checking test 137 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4475,14 +4475,14 @@ Checking test 137 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 364.677356 - 0: The maximum resident set size (KB) = 1180356 + 0: The total amount of wall time = 357.840520 + 0: The maximum resident set size (KB) = 1243472 Test 137 hafs_regional_docn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_docn_oisst -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/hafs_regional_docn_oisst +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_docn_oisst +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/hafs_regional_docn_oisst Checking test 138 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4490,131 +4490,131 @@ Checking test 138 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 359.203480 - 0: The maximum resident set size (KB) = 1219992 + 0: The total amount of wall time = 361.481893 + 0: The maximum resident set size (KB) = 1224160 Test 138 hafs_regional_docn_oisst PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_datm_cdeps -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/hafs_regional_datm_cdeps +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_datm_cdeps +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/hafs_regional_datm_cdeps Checking test 139 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 941.559831 - 0: The maximum resident set size (KB) = 1036744 + 0: The total amount of wall time = 933.787702 + 0: The maximum resident set size (KB) = 1046832 Test 139 hafs_regional_datm_cdeps PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/datm_cdeps_control_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/datm_cdeps_control_cfsr Checking test 140 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 145.645775 - 0: The maximum resident set size (KB) = 1048792 + 0: The total amount of wall time = 146.406317 + 0: The maximum resident set size (KB) = 1065976 Test 140 datm_cdeps_control_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/datm_cdeps_restart_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/datm_cdeps_restart_cfsr Checking test 141 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 94.093936 - 0: The maximum resident set size (KB) = 1010516 + 0: The total amount of wall time = 88.071125 + 0: The maximum resident set size (KB) = 1028032 Test 141 datm_cdeps_restart_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_control_gefs -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/datm_cdeps_control_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/datm_cdeps_control_gefs Checking test 142 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 142.334809 - 0: The maximum resident set size (KB) = 961896 + 0: The total amount of wall time = 145.741395 + 0: The maximum resident set size (KB) = 947476 Test 142 datm_cdeps_control_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_iau_gefs -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/datm_cdeps_iau_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_iau_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/datm_cdeps_iau_gefs Checking test 143 datm_cdeps_iau_gefs 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.182718 - 0: The maximum resident set size (KB) = 953428 + 0: The total amount of wall time = 145.261303 + 0: The maximum resident set size (KB) = 975088 Test 143 datm_cdeps_iau_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_stochy_gefs -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/datm_cdeps_stochy_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_stochy_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/datm_cdeps_stochy_gefs Checking test 144 datm_cdeps_stochy_gefs 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.880993 - 0: The maximum resident set size (KB) = 961204 + 0: The total amount of wall time = 145.185667 + 0: The maximum resident set size (KB) = 967700 Test 144 datm_cdeps_stochy_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_ciceC_cfsr -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/datm_cdeps_ciceC_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_ciceC_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/datm_cdeps_ciceC_cfsr Checking test 145 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.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.383316 - 0: The maximum resident set size (KB) = 1059064 + 0: The total amount of wall time = 146.756048 + 0: The maximum resident set size (KB) = 1069664 Test 145 datm_cdeps_ciceC_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_bulk_cfsr -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/datm_cdeps_bulk_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_bulk_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/datm_cdeps_bulk_cfsr Checking test 146 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 145.354040 - 0: The maximum resident set size (KB) = 1049092 + 0: The total amount of wall time = 147.200393 + 0: The maximum resident set size (KB) = 1064720 Test 146 datm_cdeps_bulk_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_bulk_gefs -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/datm_cdeps_bulk_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_bulk_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/datm_cdeps_bulk_gefs Checking test 147 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 140.526539 - 0: The maximum resident set size (KB) = 964428 + 0: The total amount of wall time = 140.620915 + 0: The maximum resident set size (KB) = 966136 Test 147 datm_cdeps_bulk_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_mx025_cfsr -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/datm_cdeps_mx025_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_mx025_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/datm_cdeps_mx025_cfsr Checking test 148 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4623,14 +4623,14 @@ Checking test 148 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 432.848779 - 0: The maximum resident set size (KB) = 882564 + 0: The total amount of wall time = 436.112190 + 0: The maximum resident set size (KB) = 872016 Test 148 datm_cdeps_mx025_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_mx025_gefs -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/datm_cdeps_mx025_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_mx025_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/datm_cdeps_mx025_gefs Checking test 149 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4639,77 +4639,77 @@ Checking test 149 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 433.732868 - 0: The maximum resident set size (KB) = 935376 + 0: The total amount of wall time = 438.317972 + 0: The maximum resident set size (KB) = 936840 Test 149 datm_cdeps_mx025_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/datm_cdeps_multiple_files_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/datm_cdeps_multiple_files_cfsr Checking test 150 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 151.280865 - 0: The maximum resident set size (KB) = 1072052 + 0: The total amount of wall time = 147.428317 + 0: The maximum resident set size (KB) = 1074940 Test 150 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/datm_cdeps_3072x1536_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/datm_cdeps_3072x1536_cfsr Checking test 151 datm_cdeps_3072x1536_cfsr 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 = 204.727256 - 0: The maximum resident set size (KB) = 2365832 + 0: The total amount of wall time = 199.653139 + 0: The maximum resident set size (KB) = 2305960 Test 151 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_gfs -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/datm_cdeps_gfs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_gfs +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/datm_cdeps_gfs Checking test 152 datm_cdeps_gfs 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 = 205.332922 - 0: The maximum resident set size (KB) = 2351312 + 0: The total amount of wall time = 200.199389 + 0: The maximum resident set size (KB) = 2353672 Test 152 datm_cdeps_gfs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_debug_cfsr -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/datm_cdeps_debug_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_debug_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/datm_cdeps_debug_cfsr Checking test 153 datm_cdeps_debug_cfsr 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 = 452.844463 - 0: The maximum resident set size (KB) = 976224 + 0: The total amount of wall time = 433.731604 + 0: The maximum resident set size (KB) = 1000132 Test 153 datm_cdeps_debug_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_control_cfsr_faster -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/datm_cdeps_control_cfsr_faster +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/datm_cdeps_control_cfsr_faster Checking test 154 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 143.208315 - 0: The maximum resident set size (KB) = 1071196 + 0: The total amount of wall time = 148.437846 + 0: The maximum resident set size (KB) = 1077516 Test 154 datm_cdeps_control_cfsr_faster PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_lnd_gswp3 -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/datm_cdeps_lnd_gswp3 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_lnd_gswp3 +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/datm_cdeps_lnd_gswp3 Checking test 155 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4718,14 +4718,14 @@ Checking test 155 datm_cdeps_lnd_gswp3 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.656714 - 0: The maximum resident set size (KB) = 260416 + 0: The total amount of wall time = 7.527640 + 0: The maximum resident set size (KB) = 266672 Test 155 datm_cdeps_lnd_gswp3 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/datm_cdeps_lnd_gswp3 -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/datm_cdeps_lnd_gswp3_rst +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_lnd_gswp3 +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/datm_cdeps_lnd_gswp3_rst Checking test 156 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4734,14 +4734,14 @@ Checking test 156 datm_cdeps_lnd_gswp3_rst 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.153722 - 0: The maximum resident set size (KB) = 261336 + 0: The total amount of wall time = 13.254512 + 0: The maximum resident set size (KB) = 265172 Test 156 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8_atmlnd_sbs -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_p8_atmlnd_sbs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_atmlnd_sbs +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_p8_atmlnd_sbs Checking test 157 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4826,14 +4826,14 @@ Checking test 157 control_p8_atmlnd_sbs 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 = 204.255672 - 0: The maximum resident set size (KB) = 1608012 + 0: The total amount of wall time = 203.298471 + 0: The maximum resident set size (KB) = 1606656 Test 157 control_p8_atmlnd_sbs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/control_atmwav -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/control_atmwav +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_atmwav +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_atmwav Checking test 158 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4877,14 +4877,14 @@ Checking test 158 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 88.473338 - 0: The maximum resident set size (KB) = 663772 + 0: The total amount of wall time = 87.047530 + 0: The maximum resident set size (KB) = 670724 Test 158 control_atmwav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/atmaero_control_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/atmaero_control_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/atmaero_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/atmaero_control_p8 Checking test 159 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4928,14 +4928,14 @@ Checking test 159 atmaero_control_p8 results .... Comparing 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.887469 - 0: The maximum resident set size (KB) = 2975968 + 0: The total amount of wall time = 226.753447 + 0: The maximum resident set size (KB) = 2974084 Test 159 atmaero_control_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/atmaero_control_p8_rad -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/atmaero_control_p8_rad +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/atmaero_control_p8_rad +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/atmaero_control_p8_rad Checking test 160 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4979,14 +4979,14 @@ Checking test 160 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 280.146878 - 0: The maximum resident set size (KB) = 3051440 + 0: The total amount of wall time = 281.119158 + 0: The maximum resident set size (KB) = 3045704 Test 160 atmaero_control_p8_rad PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/atmaero_control_p8_rad_micro -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/atmaero_control_p8_rad_micro +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/atmaero_control_p8_rad_micro +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/atmaero_control_p8_rad_micro Checking test 161 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5030,14 +5030,14 @@ Checking test 161 atmaero_control_p8_rad_micro results .... Comparing 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.456283 - 0: The maximum resident set size (KB) = 3057716 + 0: The total amount of wall time = 285.167559 + 0: The maximum resident set size (KB) = 3063456 Test 161 atmaero_control_p8_rad_micro PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_atmaq -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/regional_atmaq +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_atmaq +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/regional_atmaq Checking test 162 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5053,14 +5053,14 @@ Checking test 162 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 623.230267 - 0: The maximum resident set size (KB) = 1344252 + 0: The total amount of wall time = 618.876739 + 0: The maximum resident set size (KB) = 1475488 Test 162 regional_atmaq PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_atmaq_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/regional_atmaq_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_atmaq_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/regional_atmaq_debug Checking test 163 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5074,14 +5074,14 @@ Checking test 163 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1238.568553 - 0: The maximum resident set size (KB) = 1416580 + 0: The total amount of wall time = 1249.891000 + 0: The maximum resident set size (KB) = 1409420 Test 163 regional_atmaq_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_atmaq_faster -working dir = /work/noaa/epic-ps/zshrader/rt-1646/stmp/zshrader/FV3_RT/rt_225370/regional_atmaq_faster +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_atmaq_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/regional_atmaq_faster Checking test 164 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5097,12 +5097,12 @@ Checking test 164 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 545.397838 - 0: The maximum resident set size (KB) = 1473436 + 0: The total amount of wall time = 539.677141 + 0: The maximum resident set size (KB) = 1481880 Test 164 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Thu Mar 30 10:26:36 CDT 2023 -Elapsed time: 01h:15m:39s. Have a nice day! +Sun Apr 2 09:31:51 CDT 2023 +Elapsed time: 01h:14m:50s. Have a nice day! diff --git a/tests/RegressionTests_wcoss2.intel.log b/tests/RegressionTests_wcoss2.intel.log index bd65543adce..f7094a81a1e 100644 --- a/tests/RegressionTests_wcoss2.intel.log +++ b/tests/RegressionTests_wcoss2.intel.log @@ -1,34 +1,34 @@ -Thu Mar 30 16:43:37 UTC 2023 +Mon Apr 3 17:53:26 UTC 2023 Start Regression test -Compile 001 elapsed time 583 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 1090 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 1241 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 1194 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 005 elapsed time 507 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 1300 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 524 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 008 elapsed time 983 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 009 elapsed time 468 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 693 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 1430 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 391 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 013 elapsed time 149 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 1127 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 015 elapsed time 973 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 512 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 017 elapsed time 1166 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 715 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 019 elapsed time 837 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 1158 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 670 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 022 elapsed time 1103 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 786 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 024 elapsed time 519 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 025 elapsed time 561 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8_mixedmode -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/cpld_control_p8_mixedmode +Compile 001 elapsed time 953 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 578 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 540 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 1226 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 005 elapsed time 497 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 1629 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 965 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 765 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 009 elapsed time 467 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 966 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 760 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 592 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 148 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 014 elapsed time 883 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 969 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 241 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 017 elapsed time 214 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 590 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 019 elapsed time 601 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 902 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 682 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 022 elapsed time 723 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 627 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 024 elapsed time 426 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 025 elapsed time 826 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8_mixedmode +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -93,14 +93,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 339.356527 -The maximum resident set size (KB) = 2947488 +The total amount of wall time = 337.489535 +The maximum resident set size (KB) = 2950372 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/cpld_control_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/cpld_control_p8 Checking test 002 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -165,14 +165,14 @@ Checking test 002 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 388.737483 -The maximum resident set size (KB) = 2983224 +The total amount of wall time = 384.892323 +The maximum resident set size (KB) = 2981724 Test 002 cpld_control_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/cpld_restart_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/cpld_restart_p8 Checking test 003 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -225,14 +225,14 @@ Checking test 003 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 238.375219 -The maximum resident set size (KB) = 2867060 +The total amount of wall time = 232.791247 +The maximum resident set size (KB) = 2865828 Test 003 cpld_restart_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/cpld_control_qr_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/cpld_control_qr_p8 Checking test 004 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -297,14 +297,14 @@ Checking test 004 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 389.541412 -The maximum resident set size (KB) = 3000076 +The total amount of wall time = 387.812452 +The maximum resident set size (KB) = 2992396 Test 004 cpld_control_qr_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/cpld_restart_qr_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/cpld_restart_qr_p8 Checking test 005 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -357,14 +357,14 @@ Checking test 005 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 243.206878 -The maximum resident set size (KB) = 2881052 +The total amount of wall time = 233.552347 +The maximum resident set size (KB) = 2883352 Test 005 cpld_restart_qr_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/cpld_2threads_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/cpld_2threads_p8 Checking test 006 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -417,14 +417,14 @@ Checking test 006 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 374.436641 -The maximum resident set size (KB) = 3281804 +The total amount of wall time = 366.550339 +The maximum resident set size (KB) = 3284564 Test 006 cpld_2threads_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/cpld_decomp_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/cpld_decomp_p8 Checking test 007 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -477,14 +477,14 @@ Checking test 007 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 387.568506 -The maximum resident set size (KB) = 2980852 +The total amount of wall time = 382.186434 +The maximum resident set size (KB) = 2980100 Test 007 cpld_decomp_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/cpld_mpi_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/cpld_mpi_p8 Checking test 008 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -537,14 +537,14 @@ Checking test 008 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 323.434443 -The maximum resident set size (KB) = 2915192 +The total amount of wall time = 319.237893 +The maximum resident set size (KB) = 2917724 Test 008 cpld_mpi_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_ciceC_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/cpld_control_ciceC_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_ciceC_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/cpld_control_ciceC_p8 Checking test 009 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -609,14 +609,14 @@ Checking test 009 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 385.813143 -The maximum resident set size (KB) = 2981136 +The total amount of wall time = 385.159819 +The maximum resident set size (KB) = 2986796 Test 009 cpld_control_ciceC_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_bmark_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/cpld_bmark_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_bmark_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/cpld_bmark_p8 Checking test 010 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -664,14 +664,14 @@ Checking test 010 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 947.587975 -The maximum resident set size (KB) = 3928936 +The total amount of wall time = 946.255433 +The maximum resident set size (KB) = 3927932 Test 010 cpld_bmark_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_bmark_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/cpld_restart_bmark_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_bmark_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/cpld_restart_bmark_p8 Checking test 011 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -719,14 +719,14 @@ Checking test 011 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 675.894020 -The maximum resident set size (KB) = 3902436 +The total amount of wall time = 652.011956 +The maximum resident set size (KB) = 3896808 Test 011 cpld_restart_bmark_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/cpld_control_noaero_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/cpld_control_noaero_p8 Checking test 012 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -790,14 +790,14 @@ Checking test 012 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 291.238122 -The maximum resident set size (KB) = 1576780 +The total amount of wall time = 282.253788 +The maximum resident set size (KB) = 1576148 Test 012 cpld_control_noaero_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/cpld_control_nowave_noaero_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_c96_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/cpld_control_nowave_noaero_p8 Checking test 013 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -859,14 +859,14 @@ Checking test 013 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 308.095725 -The maximum resident set size (KB) = 1635952 +The total amount of wall time = 301.544828 +The maximum resident set size (KB) = 1632772 Test 013 cpld_control_nowave_noaero_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/cpld_control_noaero_p8_agrid +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_noaero_p8_agrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/cpld_control_noaero_p8_agrid Checking test 014 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -928,14 +928,14 @@ Checking test 014 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 312.234147 -The maximum resident set size (KB) = 1633464 +The total amount of wall time = 307.188134 +The maximum resident set size (KB) = 1628496 Test 014 cpld_control_noaero_p8_agrid PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/cpld_control_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/cpld_control_c48 Checking test 015 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -985,14 +985,14 @@ Checking test 015 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 435.165742 -The maximum resident set size (KB) = 2636940 +The total amount of wall time = 437.267283 +The maximum resident set size (KB) = 2638172 Test 015 cpld_control_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/cpld_warmstart_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/cpld_warmstart_c48 Checking test 016 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1042,14 +1042,14 @@ Checking test 016 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 123.273780 -The maximum resident set size (KB) = 2650464 +The total amount of wall time = 127.094144 +The maximum resident set size (KB) = 2655636 Test 016 cpld_warmstart_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/cpld_restart_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/cpld_restart_c48 Checking test 017 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1099,14 +1099,14 @@ Checking test 017 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 67.528582 -The maximum resident set size (KB) = 2068236 +The total amount of wall time = 70.004850 +The maximum resident set size (KB) = 2064856 Test 017 cpld_restart_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/cpld_control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/cpld_control_p8_faster +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/cpld_control_p8_faster Checking test 018 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1171,14 +1171,14 @@ Checking test 018 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 384.012870 -The maximum resident set size (KB) = 2980036 +The total amount of wall time = 379.990340 +The maximum resident set size (KB) = 2980548 Test 018 cpld_control_p8_faster PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_CubedSphereGrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/control_CubedSphereGrid +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_CubedSphereGrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/control_CubedSphereGrid Checking test 019 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1205,14 +1205,14 @@ Checking test 019 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 130.483218 -The maximum resident set size (KB) = 514772 +The total amount of wall time = 130.664148 +The maximum resident set size (KB) = 513492 Test 019 control_CubedSphereGrid PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_latlon -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/control_latlon +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_latlon +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/control_latlon Checking test 020 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1223,14 +1223,14 @@ Checking test 020 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 132.606261 -The maximum resident set size (KB) = 516340 +The total amount of wall time = 133.155363 +The maximum resident set size (KB) = 516108 Test 020 control_latlon PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/control_wrtGauss_netcdf_parallel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/control_wrtGauss_netcdf_parallel Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1241,14 +1241,14 @@ Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.298354 -The maximum resident set size (KB) = 520204 +The total amount of wall time = 138.996144 +The maximum resident set size (KB) = 517432 Test 021 control_wrtGauss_netcdf_parallel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/control_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/control_c48 Checking test 022 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1287,14 +1287,14 @@ Checking test 022 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 326.180164 -The maximum resident set size (KB) = 674752 +The total amount of wall time = 327.518357 +The maximum resident set size (KB) = 675096 Test 022 control_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_c192 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/control_c192 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c192 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/control_c192 Checking test 023 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1305,14 +1305,14 @@ Checking test 023 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 529.925635 -The maximum resident set size (KB) = 617000 +The total amount of wall time = 530.723391 +The maximum resident set size (KB) = 615960 Test 023 control_c192 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_c384 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/control_c384 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c384 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/control_c384 Checking test 024 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1323,14 +1323,14 @@ Checking test 024 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 572.468467 -The maximum resident set size (KB) = 921816 +The total amount of wall time = 574.295178 +The maximum resident set size (KB) = 926916 Test 024 control_c384 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_c384gdas -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/control_c384gdas +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c384gdas +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/control_c384gdas Checking test 025 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1373,14 +1373,14 @@ Checking test 025 control_c384gdas 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 = 495.522462 -The maximum resident set size (KB) = 1055512 +The total amount of wall time = 498.610914 +The maximum resident set size (KB) = 1059256 Test 025 control_c384gdas PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/control_stochy +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/control_stochy Checking test 026 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1391,28 +1391,28 @@ Checking test 026 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 90.160810 -The maximum resident set size (KB) = 521304 +The total amount of wall time = 90.094194 +The maximum resident set size (KB) = 523264 Test 026 control_stochy PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/control_stochy_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/control_stochy_restart Checking test 027 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 48.990982 -The maximum resident set size (KB) = 291808 +The total amount of wall time = 49.404689 +The maximum resident set size (KB) = 292460 Test 027 control_stochy_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/control_lndp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/control_lndp Checking test 028 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1423,14 +1423,14 @@ Checking test 028 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 83.545430 -The maximum resident set size (KB) = 520876 +The total amount of wall time = 84.271750 +The maximum resident set size (KB) = 517696 Test 028 control_lndp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_iovr4 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/control_iovr4 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_iovr4 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/control_iovr4 Checking test 029 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1445,14 +1445,14 @@ Checking test 029 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 138.864274 -The maximum resident set size (KB) = 518420 +The total amount of wall time = 137.272839 +The maximum resident set size (KB) = 518008 Test 029 control_iovr4 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_iovr5 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/control_iovr5 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_iovr5 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/control_iovr5 Checking test 030 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1467,14 +1467,14 @@ Checking test 030 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 136.610595 -The maximum resident set size (KB) = 517008 +The total amount of wall time = 137.495265 +The maximum resident set size (KB) = 517204 Test 030 control_iovr5 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/control_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/control_p8 Checking test 031 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1521,14 +1521,14 @@ Checking test 031 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 180.111697 -The maximum resident set size (KB) = 1491636 +The total amount of wall time = 180.620164 +The maximum resident set size (KB) = 1492792 Test 031 control_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/control_restart_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/control_restart_p8 Checking test 032 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1567,14 +1567,14 @@ Checking test 032 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 101.252551 -The maximum resident set size (KB) = 656044 +The total amount of wall time = 100.435536 +The maximum resident set size (KB) = 657404 Test 032 control_restart_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/control_qr_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/control_qr_p8 Checking test 033 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1621,14 +1621,14 @@ Checking test 033 control_qr_p8 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 = 177.413551 -The maximum resident set size (KB) = 1492516 +The total amount of wall time = 179.116649 +The maximum resident set size (KB) = 1497036 Test 033 control_qr_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/control_restart_qr_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/control_restart_qr_p8 Checking test 034 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1667,14 +1667,14 @@ Checking test 034 control_restart_qr_p8 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.273538 -The maximum resident set size (KB) = 670808 +The total amount of wall time = 101.864674 +The maximum resident set size (KB) = 662832 Test 034 control_restart_qr_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/control_decomp_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/control_decomp_p8 Checking test 035 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1717,14 +1717,14 @@ Checking test 035 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 181.866662 -The maximum resident set size (KB) = 1474700 +The total amount of wall time = 182.625300 +The maximum resident set size (KB) = 1479216 Test 035 control_decomp_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/control_2threads_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/control_2threads_p8 Checking test 036 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1767,14 +1767,14 @@ Checking test 036 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 157.361175 -The maximum resident set size (KB) = 1573928 +The total amount of wall time = 156.300756 +The maximum resident set size (KB) = 1577284 Test 036 control_2threads_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/control_p8_lndp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/control_p8_lndp Checking test 037 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1793,14 +1793,14 @@ Checking test 037 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 323.208059 -The maximum resident set size (KB) = 1490060 +The total amount of wall time = 322.592086 +The maximum resident set size (KB) = 1490552 Test 037 control_p8_lndp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8_rrtmgp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/control_p8_rrtmgp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_rrtmgp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/control_p8_rrtmgp Checking test 038 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1847,14 +1847,14 @@ Checking test 038 control_p8_rrtmgp results .... 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.386219 -The maximum resident set size (KB) = 1550284 +The total amount of wall time = 236.746598 +The maximum resident set size (KB) = 1546908 Test 038 control_p8_rrtmgp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8_mynn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/control_p8_mynn +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_mynn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/control_p8_mynn Checking test 039 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1901,14 +1901,14 @@ Checking test 039 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 180.627971 -The maximum resident set size (KB) = 1483868 +The total amount of wall time = 181.527869 +The maximum resident set size (KB) = 1486568 Test 039 control_p8_mynn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/merra2_thompson -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/merra2_thompson +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/merra2_thompson +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/merra2_thompson Checking test 040 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1955,14 +1955,14 @@ Checking test 040 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 210.194255 -The maximum resident set size (KB) = 1489748 +The total amount of wall time = 205.400034 +The maximum resident set size (KB) = 1499088 Test 040 merra2_thompson PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/regional_control +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/regional_control Checking test 041 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1973,28 +1973,28 @@ Checking test 041 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 287.090084 -The maximum resident set size (KB) = 651652 +The total amount of wall time = 287.754384 +The maximum resident set size (KB) = 657372 Test 041 regional_control PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/regional_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/regional_restart Checking test 042 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 164.015793 -The maximum resident set size (KB) = 650612 +The total amount of wall time = 155.227921 +The maximum resident set size (KB) = 653956 Test 042 regional_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/regional_control_qr +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/regional_control_qr Checking test 043 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2005,28 +2005,28 @@ Checking test 043 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 288.903807 -The maximum resident set size (KB) = 657072 +The total amount of wall time = 289.669159 +The maximum resident set size (KB) = 652320 Test 043 regional_control_qr PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/regional_restart_qr +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/regional_restart_qr Checking test 044 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 161.960677 -The maximum resident set size (KB) = 654108 +The total amount of wall time = 156.158091 +The maximum resident set size (KB) = 652964 Test 044 regional_restart_qr PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/regional_decomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/regional_decomp Checking test 045 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2037,14 +2037,14 @@ Checking test 045 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 304.186242 -The maximum resident set size (KB) = 655976 +The total amount of wall time = 304.934877 +The maximum resident set size (KB) = 655468 Test 045 regional_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/regional_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/regional_2threads Checking test 046 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2055,14 +2055,14 @@ Checking test 046 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 177.418116 -The maximum resident set size (KB) = 698528 +The total amount of wall time = 177.020440 +The maximum resident set size (KB) = 694936 Test 046 regional_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_noquilt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/regional_noquilt +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_noquilt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/regional_noquilt Checking test 047 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2070,28 +2070,28 @@ Checking test 047 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 312.984505 -The maximum resident set size (KB) = 649000 +The total amount of wall time = 311.726052 +The maximum resident set size (KB) = 646316 Test 047 regional_noquilt PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/regional_netcdf_parallel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/regional_netcdf_parallel Checking test 048 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK -The total amount of wall time = 283.761438 -The maximum resident set size (KB) = 648312 +The total amount of wall time = 285.317967 +The maximum resident set size (KB) = 649340 Test 048 regional_netcdf_parallel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/regional_2dwrtdecomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/regional_2dwrtdecomp Checking test 049 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2102,14 +2102,14 @@ Checking test 049 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 292.499809 -The maximum resident set size (KB) = 655408 +The total amount of wall time = 291.744435 +The maximum resident set size (KB) = 651944 Test 049 regional_2dwrtdecomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/fv3_regional_wofs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/regional_wofs +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/fv3_regional_wofs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/regional_wofs Checking test 050 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2120,14 +2120,14 @@ Checking test 050 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 365.568894 -The maximum resident set size (KB) = 341400 +The total amount of wall time = 362.598186 +The maximum resident set size (KB) = 340768 Test 050 regional_wofs PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/rap_control +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/rap_control Checking test 051 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2174,14 +2174,14 @@ Checking test 051 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 426.398033 -The maximum resident set size (KB) = 889704 +The total amount of wall time = 420.116609 +The maximum resident set size (KB) = 894320 Test 051 rap_control PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/regional_spp_sppt_shum_skeb +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_spp_sppt_shum_skeb +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/regional_spp_sppt_shum_skeb Checking test 052 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2192,14 +2192,14 @@ Checking test 052 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 247.580329 -The maximum resident set size (KB) = 986796 +The total amount of wall time = 245.033569 +The maximum resident set size (KB) = 989992 Test 052 regional_spp_sppt_shum_skeb PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/rap_decomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/rap_decomp Checking test 053 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2246,14 +2246,14 @@ Checking test 053 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 439.570540 -The maximum resident set size (KB) = 895284 +The total amount of wall time = 436.064549 +The maximum resident set size (KB) = 892688 Test 053 rap_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/rap_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/rap_2threads Checking test 054 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2300,14 +2300,14 @@ Checking test 054 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 396.990878 -The maximum resident set size (KB) = 969480 +The total amount of wall time = 388.199920 +The maximum resident set size (KB) = 964000 Test 054 rap_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/rap_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/rap_restart Checking test 055 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2346,14 +2346,14 @@ Checking test 055 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 213.081226 -The maximum resident set size (KB) = 646632 +The total amount of wall time = 213.511333 +The maximum resident set size (KB) = 645564 Test 055 rap_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/rap_sfcdiff +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/rap_sfcdiff Checking test 056 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2400,14 +2400,14 @@ Checking test 056 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 431.579594 -The maximum resident set size (KB) = 889116 +The total amount of wall time = 422.975040 +The maximum resident set size (KB) = 891156 Test 056 rap_sfcdiff PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/rap_sfcdiff_decomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/rap_sfcdiff_decomp Checking test 057 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2454,14 +2454,14 @@ Checking test 057 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 446.110948 -The maximum resident set size (KB) = 895304 +The total amount of wall time = 436.589800 +The maximum resident set size (KB) = 893000 Test 057 rap_sfcdiff_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/rap_sfcdiff_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/rap_sfcdiff_restart Checking test 058 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2500,14 +2500,14 @@ Checking test 058 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 312.263861 -The maximum resident set size (KB) = 645312 +The total amount of wall time = 309.199751 +The maximum resident set size (KB) = 640912 Test 058 rap_sfcdiff_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/hrrr_control +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/hrrr_control Checking test 059 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2554,14 +2554,14 @@ Checking test 059 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 412.453949 -The maximum resident set size (KB) = 888108 +The total amount of wall time = 406.256367 +The maximum resident set size (KB) = 893164 Test 059 hrrr_control PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/hrrr_control_decomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/hrrr_control_decomp Checking test 060 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2608,14 +2608,14 @@ Checking test 060 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 428.910135 -The maximum resident set size (KB) = 888712 +The total amount of wall time = 420.643622 +The maximum resident set size (KB) = 892000 Test 060 hrrr_control_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/hrrr_control_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/hrrr_control_2threads Checking test 061 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2662,14 +2662,14 @@ Checking test 061 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 380.294590 -The maximum resident set size (KB) = 961836 +The total amount of wall time = 373.805934 +The maximum resident set size (KB) = 961188 Test 061 hrrr_control_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/hrrr_control_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/hrrr_control_restart Checking test 062 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2708,14 +2708,14 @@ Checking test 062 hrrr_control_restart results .... 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.757290 -The maximum resident set size (KB) = 637392 +The total amount of wall time = 300.798080 +The maximum resident set size (KB) = 639632 Test 062 hrrr_control_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_v1beta -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/rrfs_v1beta +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1beta +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/rrfs_v1beta Checking test 063 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2762,14 +2762,14 @@ Checking test 063 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 427.000330 -The maximum resident set size (KB) = 891684 +The total amount of wall time = 417.174639 +The maximum resident set size (KB) = 891016 Test 063 rrfs_v1beta PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_v1nssl -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/rrfs_v1nssl +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1nssl +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/rrfs_v1nssl Checking test 064 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2784,14 +2784,14 @@ Checking test 064 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 485.488767 -The maximum resident set size (KB) = 576532 +The total amount of wall time = 482.772214 +The maximum resident set size (KB) = 576524 Test 064 rrfs_v1nssl PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/rrfs_v1nssl_nohailnoccn +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/rrfs_v1nssl_nohailnoccn Checking test 065 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2806,14 +2806,14 @@ Checking test 065 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 471.690244 -The maximum resident set size (KB) = 569248 +The total amount of wall time = 471.478038 +The maximum resident set size (KB) = 571096 Test 065 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/rrfs_smoke_conus13km_hrrr_warm Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2822,14 +2822,14 @@ Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 148.082861 -The maximum resident set size (KB) = 801700 +The total amount of wall time = 147.672488 +The maximum resident set size (KB) = 800968 Test 066 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 067 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2838,14 +2838,14 @@ Checking test 067 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 104.206183 -The maximum resident set size (KB) = 802340 +The total amount of wall time = 103.489943 +The maximum resident set size (KB) = 805060 Test 067 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/rrfs_conus13km_hrrr_warm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/rrfs_conus13km_hrrr_warm Checking test 068 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2854,14 +2854,14 @@ Checking test 068 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 134.939888 -The maximum resident set size (KB) = 777144 +The total amount of wall time = 133.944444 +The maximum resident set size (KB) = 777520 Test 068 rrfs_conus13km_hrrr_warm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/rrfs_smoke_conus13km_radar_tten_warm Checking test 069 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2870,26 +2870,26 @@ Checking test 069 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 152.992877 -The maximum resident set size (KB) = 801708 +The total amount of wall time = 149.811496 +The maximum resident set size (KB) = 802488 Test 069 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 070 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 76.423415 -The maximum resident set size (KB) = 758968 +The total amount of wall time = 68.271797 +The maximum resident set size (KB) = 765056 Test 070 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_csawmg -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/control_csawmg +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmg +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/control_csawmg Checking test 071 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2900,14 +2900,14 @@ Checking test 071 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 348.225736 -The maximum resident set size (KB) = 587004 +The total amount of wall time = 349.624549 +The maximum resident set size (KB) = 592888 Test 071 control_csawmg PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_csawmgt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/control_csawmgt +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmgt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/control_csawmgt Checking test 072 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2918,14 +2918,14 @@ Checking test 072 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 347.946480 -The maximum resident set size (KB) = 588788 +The total amount of wall time = 346.880771 +The maximum resident set size (KB) = 587408 Test 072 control_csawmgt PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_ras -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/control_ras +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_ras +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/control_ras Checking test 073 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2936,26 +2936,26 @@ Checking test 073 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 182.525162 -The maximum resident set size (KB) = 554612 +The total amount of wall time = 186.375383 +The maximum resident set size (KB) = 557680 Test 073 control_ras PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_wam -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/control_wam +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wam +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/control_wam Checking test 074 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 118.148895 -The maximum resident set size (KB) = 289456 +The total amount of wall time = 119.951939 +The maximum resident set size (KB) = 276724 Test 074 control_wam PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/control_p8_faster +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/control_p8_faster Checking test 075 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3002,14 +3002,14 @@ Checking test 075 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 174.917617 -The maximum resident set size (KB) = 1486624 +The total amount of wall time = 175.115470 +The maximum resident set size (KB) = 1490300 Test 075 control_p8_faster PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_control_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/regional_control_faster +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/regional_control_faster Checking test 076 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3020,56 +3020,56 @@ Checking test 076 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 281.742502 -The maximum resident set size (KB) = 656560 +The total amount of wall time = 280.361293 +The maximum resident set size (KB) = 653076 Test 076 regional_control_faster PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 077 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 903.032498 -The maximum resident set size (KB) = 834644 +The total amount of wall time = 902.613044 +The maximum resident set size (KB) = 838928 Test 077 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 078 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 523.361096 -The maximum resident set size (KB) = 838952 +The total amount of wall time = 523.112094 +The maximum resident set size (KB) = 840460 Test 078 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/rrfs_conus13km_hrrr_warm_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/rrfs_conus13km_hrrr_warm_debug Checking test 079 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 809.430939 -The maximum resident set size (KB) = 818640 +The total amount of wall time = 809.636380 +The maximum resident set size (KB) = 813004 Test 079 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_CubedSphereGrid_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/control_CubedSphereGrid_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_CubedSphereGrid_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/control_CubedSphereGrid_debug Checking test 080 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3096,334 +3096,334 @@ Checking test 080 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 171.532151 -The maximum resident set size (KB) = 680448 +The total amount of wall time = 168.784719 +The maximum resident set size (KB) = 678924 Test 080 control_CubedSphereGrid_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/control_wrtGauss_netcdf_parallel_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/control_wrtGauss_netcdf_parallel_debug Checking test 081 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 159.326909 -The maximum resident set size (KB) = 678732 +The total amount of wall time = 159.553202 +The maximum resident set size (KB) = 680056 Test 081 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_stochy_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/control_stochy_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_stochy_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/control_stochy_debug Checking test 082 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 179.184390 -The maximum resident set size (KB) = 687080 +The total amount of wall time = 179.610460 +The maximum resident set size (KB) = 685428 Test 082 control_stochy_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/control_lndp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/control_lndp_debug Checking test 083 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 163.656141 -The maximum resident set size (KB) = 687416 +The total amount of wall time = 161.666562 +The maximum resident set size (KB) = 687648 Test 083 control_lndp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_csawmg_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/control_csawmg_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmg_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/control_csawmg_debug Checking test 084 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 256.520821 -The maximum resident set size (KB) = 726120 +The total amount of wall time = 256.302992 +The maximum resident set size (KB) = 727848 Test 084 control_csawmg_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_csawmgt_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/control_csawmgt_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmgt_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/control_csawmgt_debug Checking test 085 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 252.019112 -The maximum resident set size (KB) = 724212 +The total amount of wall time = 251.969692 +The maximum resident set size (KB) = 721688 Test 085 control_csawmgt_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_ras_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/control_ras_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_ras_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/control_ras_debug Checking test 086 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 164.308167 -The maximum resident set size (KB) = 692736 +The total amount of wall time = 162.493887 +The maximum resident set size (KB) = 697604 Test 086 control_ras_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/control_diag_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/control_diag_debug Checking test 087 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 165.308211 -The maximum resident set size (KB) = 740436 +The total amount of wall time = 165.222955 +The maximum resident set size (KB) = 740544 Test 087 control_diag_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_debug_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/control_debug_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_debug_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/control_debug_p8 Checking test 088 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 186.828576 -The maximum resident set size (KB) = 1506780 +The total amount of wall time = 187.678802 +The maximum resident set size (KB) = 1515860 Test 088 control_debug_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/regional_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/regional_debug Checking test 089 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1038.346426 -The maximum resident set size (KB) = 681772 +The total amount of wall time = 1040.194343 +The maximum resident set size (KB) = 678988 Test 089 regional_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/rap_control_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/rap_control_debug Checking test 090 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 299.256650 -The maximum resident set size (KB) = 1059504 +The total amount of wall time = 297.654152 +The maximum resident set size (KB) = 1062624 Test 090 rap_control_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/hrrr_control_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/hrrr_control_debug Checking test 091 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 293.385070 -The maximum resident set size (KB) = 1058336 +The total amount of wall time = 292.318389 +The maximum resident set size (KB) = 1056392 Test 091 hrrr_control_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/rap_unified_drag_suite_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/rap_unified_drag_suite_debug Checking test 092 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 304.109395 -The maximum resident set size (KB) = 1058804 +The total amount of wall time = 298.738191 +The maximum resident set size (KB) = 1060760 Test 092 rap_unified_drag_suite_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/rap_diag_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/rap_diag_debug Checking test 093 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 311.647344 -The maximum resident set size (KB) = 1141140 +The total amount of wall time = 311.078614 +The maximum resident set size (KB) = 1140616 Test 093 rap_diag_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/rap_cires_ugwp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/rap_cires_ugwp_debug Checking test 094 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 306.082215 -The maximum resident set size (KB) = 1058056 +The total amount of wall time = 304.369670 +The maximum resident set size (KB) = 1057456 Test 094 rap_cires_ugwp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/rap_unified_ugwp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/rap_unified_ugwp_debug Checking test 095 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 310.330185 -The maximum resident set size (KB) = 1054816 +The total amount of wall time = 306.242187 +The maximum resident set size (KB) = 1060280 Test 095 rap_unified_ugwp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/rap_lndp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/rap_lndp_debug Checking test 096 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 303.111996 -The maximum resident set size (KB) = 1058052 +The total amount of wall time = 301.076582 +The maximum resident set size (KB) = 1062396 Test 096 rap_lndp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_flake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/rap_flake_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_flake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/rap_flake_debug Checking test 097 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 299.621295 -The maximum resident set size (KB) = 1060992 +The total amount of wall time = 298.070780 +The maximum resident set size (KB) = 1062512 Test 097 rap_flake_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_progcld_thompson_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/rap_progcld_thompson_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_progcld_thompson_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/rap_progcld_thompson_debug Checking test 098 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 299.158222 -The maximum resident set size (KB) = 1059292 +The total amount of wall time = 298.508068 +The maximum resident set size (KB) = 1057804 Test 098 rap_progcld_thompson_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_noah_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/rap_noah_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_noah_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/rap_noah_debug Checking test 099 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.098198 -The maximum resident set size (KB) = 1054976 +The total amount of wall time = 292.929681 +The maximum resident set size (KB) = 1055588 Test 099 rap_noah_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_sfcdiff_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/rap_sfcdiff_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/rap_sfcdiff_debug Checking test 100 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.616694 -The maximum resident set size (KB) = 1060948 +The total amount of wall time = 298.766993 +The maximum resident set size (KB) = 1058564 Test 100 rap_sfcdiff_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/rap_noah_sfcdiff_cires_ugwp_debug Checking test 101 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 488.014533 -The maximum resident set size (KB) = 1056272 +The total amount of wall time = 486.670644 +The maximum resident set size (KB) = 1056772 Test 101 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rrfs_v1beta_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/rrfs_v1beta_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1beta_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/rrfs_v1beta_debug Checking test 102 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 295.913237 -The maximum resident set size (KB) = 1055732 +The total amount of wall time = 294.472843 +The maximum resident set size (KB) = 1052832 Test 102 rrfs_v1beta_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_wam_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/control_wam_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wam_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/control_wam_debug Checking test 103 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 299.793460 -The maximum resident set size (KB) = 306016 +The total amount of wall time = 298.949810 +The maximum resident set size (KB) = 309428 Test 103 control_wam_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3434,14 +3434,14 @@ Checking test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 236.320718 -The maximum resident set size (KB) = 887476 +The total amount of wall time = 234.396444 +The maximum resident set size (KB) = 892876 Test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/rap_control_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/rap_control_dyn32_phy32 Checking test 105 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3488,14 +3488,14 @@ Checking test 105 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 354.095509 -The maximum resident set size (KB) = 782644 +The total amount of wall time = 352.006667 +The maximum resident set size (KB) = 778376 Test 105 rap_control_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/hrrr_control_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/hrrr_control_dyn32_phy32 Checking test 106 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3542,14 +3542,14 @@ Checking test 106 hrrr_control_dyn32_phy32 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 = 188.160779 -The maximum resident set size (KB) = 781180 +The total amount of wall time = 188.326894 +The maximum resident set size (KB) = 777024 Test 106 hrrr_control_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/rap_2threads_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/rap_2threads_dyn32_phy32 Checking test 107 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3596,14 +3596,14 @@ Checking test 107 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 331.505108 -The maximum resident set size (KB) = 834416 +The total amount of wall time = 332.982358 +The maximum resident set size (KB) = 838084 Test 107 rap_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/hrrr_control_2threads_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/hrrr_control_2threads_dyn32_phy32 Checking test 108 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3650,14 +3650,14 @@ Checking test 108 hrrr_control_2threads_dyn32_phy32 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 = 174.287598 -The maximum resident set size (KB) = 831568 +The total amount of wall time = 173.501107 +The maximum resident set size (KB) = 832768 Test 108 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/hrrr_control_decomp_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/hrrr_control_decomp_dyn32_phy32 Checking test 109 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3704,14 +3704,14 @@ Checking test 109 hrrr_control_decomp_dyn32_phy32 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 = 198.217770 -The maximum resident set size (KB) = 778076 +The total amount of wall time = 195.850502 +The maximum resident set size (KB) = 776880 Test 109 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/rap_restart_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/rap_restart_dyn32_phy32 Checking test 110 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3750,14 +3750,14 @@ Checking test 110 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 260.651052 -The maximum resident set size (KB) = 619224 +The total amount of wall time = 257.573903 +The maximum resident set size (KB) = 617984 Test 110 rap_restart_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/hrrr_control_restart_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/hrrr_control_restart_dyn32_phy32 Checking test 111 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3796,14 +3796,14 @@ Checking test 111 hrrr_control_restart_dyn32_phy32 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 = 97.582915 -The maximum resident set size (KB) = 610740 +The total amount of wall time = 100.045619 +The maximum resident set size (KB) = 611816 Test 111 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/rap_control_dyn64_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/rap_control_dyn64_phy32 Checking test 112 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3850,81 +3850,81 @@ Checking test 112 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -The total amount of wall time = 236.832942 -The maximum resident set size (KB) = 797592 +The total amount of wall time = 239.133574 +The maximum resident set size (KB) = 797264 Test 112 rap_control_dyn64_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/rap_control_debug_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/rap_control_debug_dyn32_phy32 Checking test 113 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 293.227110 -The maximum resident set size (KB) = 943020 +The total amount of wall time = 294.782864 +The maximum resident set size (KB) = 946480 Test 113 rap_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/hrrr_control_debug_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/hrrr_control_debug_dyn32_phy32 Checking test 114 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 288.291112 -The maximum resident set size (KB) = 942104 +The total amount of wall time = 288.802565 +The maximum resident set size (KB) = 943012 Test 114 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/rap_control_dyn64_phy32_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/rap_control_dyn64_phy32_debug Checking test 115 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 301.473775 -The maximum resident set size (KB) = 961688 +The total amount of wall time = 294.637423 +The maximum resident set size (KB) = 963628 Test 115 rap_control_dyn64_phy32_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/hafs_regional_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/hafs_regional_atm Checking test 116 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 277.873298 -The maximum resident set size (KB) = 825016 +The total amount of wall time = 272.543149 +The maximum resident set size (KB) = 821908 Test 116 hafs_regional_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/hafs_regional_atm_thompson_gfdlsf +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/hafs_regional_atm_thompson_gfdlsf Checking test 117 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 326.982800 -The maximum resident set size (KB) = 1176368 +The total amount of wall time = 317.907634 +The maximum resident set size (KB) = 1176660 Test 117 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/hafs_regional_atm_ocn +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/hafs_regional_atm_ocn Checking test 118 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3933,30 +3933,30 @@ Checking test 118 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 399.416959 -The maximum resident set size (KB) = 858960 +The total amount of wall time = 394.933607 +The maximum resident set size (KB) = 858820 Test 118 hafs_regional_atm_ocn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_atm_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/hafs_regional_atm_wav +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/hafs_regional_atm_wav Checking test 119 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - Comparing 20190829.060000.restart.ww3 .........OK + Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 717.648857 -The maximum resident set size (KB) = 887676 +The total amount of wall time = 717.726338 +The maximum resident set size (KB) = 890512 Test 119 hafs_regional_atm_wav PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/hafs_regional_atm_ocn_wav +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/hafs_regional_atm_ocn_wav Checking test 120 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3964,31 +3964,31 @@ Checking test 120 hafs_regional_atm_ocn_wav results .... Comparing archs.2019_241_06.a .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - Comparing 20190829.060000.restart.ww3 .........OK + Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 911.891362 -The maximum resident set size (KB) = 914916 +The total amount of wall time = 901.915818 +The maximum resident set size (KB) = 913544 Test 120 hafs_regional_atm_ocn_wav PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/hafs_regional_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/hafs_regional_1nest_atm Checking test 121 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 331.919854 -The maximum resident set size (KB) = 393376 +The total amount of wall time = 336.764464 +The maximum resident set size (KB) = 392476 Test 121 hafs_regional_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/hafs_regional_telescopic_2nests_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/hafs_regional_telescopic_2nests_atm Checking test 122 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3997,28 +3997,28 @@ Checking test 122 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 407.095373 -The maximum resident set size (KB) = 399928 +The total amount of wall time = 412.112058 +The maximum resident set size (KB) = 402400 Test 122 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_global_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/hafs_global_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_global_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/hafs_global_1nest_atm Checking test 123 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 173.994352 -The maximum resident set size (KB) = 289456 +The total amount of wall time = 173.477461 +The maximum resident set size (KB) = 265876 Test 123 hafs_global_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_global_multiple_4nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/hafs_global_multiple_4nests_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_global_multiple_4nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/hafs_global_multiple_4nests_atm Checking test 124 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4036,14 +4036,14 @@ Checking test 124 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -The total amount of wall time = 491.399102 -The maximum resident set size (KB) = 346988 +The total amount of wall time = 490.415833 +The maximum resident set size (KB) = 345080 Test 124 hafs_global_multiple_4nests_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/hafs_regional_specified_moving_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/hafs_regional_specified_moving_1nest_atm Checking test 125 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4052,28 +4052,28 @@ Checking test 125 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 219.746341 -The maximum resident set size (KB) = 415052 +The total amount of wall time = 230.070819 +The maximum resident set size (KB) = 415308 Test 125 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/hafs_regional_storm_following_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/hafs_regional_storm_following_1nest_atm Checking test 126 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 208.225837 -The maximum resident set size (KB) = 407428 +The total amount of wall time = 210.949553 +The maximum resident set size (KB) = 407124 Test 126 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/hafs_regional_storm_following_1nest_atm_ocn Checking test 127 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4082,42 +4082,42 @@ Checking test 127 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 254.161566 -The maximum resident set size (KB) = 469588 +The total amount of wall time = 254.215894 +The maximum resident set size (KB) = 468240 Test 127 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/hafs_global_storm_following_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_global_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/hafs_global_storm_following_1nest_atm Checking test 128 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 86.136793 -The maximum resident set size (KB) = 289116 +The total amount of wall time = 85.798504 +The maximum resident set size (KB) = 288304 Test 128 hafs_global_storm_following_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 129 hafs_regional_storm_following_1nest_atm_ocn_debug results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK -The total amount of wall time = 816.250653 -The maximum resident set size (KB) = 495800 +The total amount of wall time = 824.179779 +The maximum resident set size (KB) = 496132 Test 129 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 130 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4128,14 +4128,14 @@ Checking test 130 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -The total amount of wall time = 512.772628 -The maximum resident set size (KB) = 526004 +The total amount of wall time = 507.430542 +The maximum resident set size (KB) = 523188 Test 130 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/control_p8_atmlnd_sbs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/control_p8_atmlnd_sbs +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_atmlnd_sbs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/control_p8_atmlnd_sbs Checking test 131 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4220,14 +4220,14 @@ Checking test 131 control_p8_atmlnd_sbs 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 = 239.726233 -The maximum resident set size (KB) = 1542172 +The total amount of wall time = 236.231141 +The maximum resident set size (KB) = 1540232 Test 131 control_p8_atmlnd_sbs PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/atmaero_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/atmaero_control_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/atmaero_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/atmaero_control_p8 Checking test 132 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4271,14 +4271,14 @@ Checking test 132 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 252.249460 -The maximum resident set size (KB) = 2818188 +The total amount of wall time = 247.440992 +The maximum resident set size (KB) = 2815552 Test 132 atmaero_control_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/atmaero_control_p8_rad -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/atmaero_control_p8_rad +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/atmaero_control_p8_rad +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/atmaero_control_p8_rad Checking test 133 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4322,14 +4322,14 @@ Checking test 133 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 290.114600 -The maximum resident set size (KB) = 2878688 +The total amount of wall time = 285.091655 +The maximum resident set size (KB) = 2876428 Test 133 atmaero_control_p8_rad PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/atmaero_control_p8_rad_micro +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/atmaero_control_p8_rad_micro +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/atmaero_control_p8_rad_micro Checking test 134 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4373,14 +4373,14 @@ Checking test 134 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 292.906212 -The maximum resident set size (KB) = 2886684 +The total amount of wall time = 290.444989 +The maximum resident set size (KB) = 2888124 Test 134 atmaero_control_p8_rad_micro PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_atmaq -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/regional_atmaq +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_atmaq +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/regional_atmaq Checking test 135 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4396,14 +4396,14 @@ Checking test 135 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 698.761629 -The maximum resident set size (KB) = 1267792 +The total amount of wall time = 684.924491 +The maximum resident set size (KB) = 1262932 Test 135 regional_atmaq PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_atmaq_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/regional_atmaq_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_atmaq_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/regional_atmaq_debug Checking test 136 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4417,14 +4417,14 @@ Checking test 136 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1320.355462 -The maximum resident set size (KB) = 1299784 +The total amount of wall time = 1333.629615 +The maximum resident set size (KB) = 1296148 Test 136 regional_atmaq_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230329/INTEL/regional_atmaq_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_248745/regional_atmaq_faster +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_atmaq_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/regional_atmaq_faster Checking test 137 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4440,12 +4440,12 @@ Checking test 137 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 647.905909 -The maximum resident set size (KB) = 1261780 +The total amount of wall time = 638.618207 +The maximum resident set size (KB) = 1262004 Test 137 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Thu Mar 30 17:50:25 UTC 2023 -Elapsed time: 01h:06m:49s. Have a nice day! +Mon Apr 3 19:29:03 UTC 2023 +Elapsed time: 01h:35m:38s. Have a nice day! diff --git a/tests/fv3_conf/cpld_control_run.IN b/tests/fv3_conf/cpld_control_run.IN index 009381e7541..c708bc38635 100644 --- a/tests/fv3_conf/cpld_control_run.IN +++ b/tests/fv3_conf/cpld_control_run.IN @@ -130,7 +130,8 @@ else # WAVE restart file if [[ $CPLWAV == .true. ]]; then - cp ../${DEP_RUN}${SUFFIX}/${RESTART_FILE_PREFIX}.restart.ww3 ./restart.ww3 + RFILE=ufs.cpld.ww3.r.${RESTART_FILE_SUFFIX_SECS} + cp ../${DEP_RUN}${SUFFIX}/${RFILE} . fi else diff --git a/tests/parm/nems.configure.cpld.IN b/tests/parm/nems.configure.cpld.IN index 3f4da44a0f6..7cce5c1784c 100644 --- a/tests/parm/nems.configure.cpld.IN +++ b/tests/parm/nems.configure.cpld.IN @@ -74,6 +74,7 @@ WAV_attributes:: logfile = wav.log mesh_wav = @[MESH_WAV] multigrid = @[MULTIGRID] + user_sets_restname = true :: # CMEPS warm run sequence diff --git a/tests/parm/nems.configure.cpld_esmfthreads.IN b/tests/parm/nems.configure.cpld_esmfthreads.IN index 3f4da44a0f6..7cce5c1784c 100644 --- a/tests/parm/nems.configure.cpld_esmfthreads.IN +++ b/tests/parm/nems.configure.cpld_esmfthreads.IN @@ -74,6 +74,7 @@ WAV_attributes:: logfile = wav.log mesh_wav = @[MESH_WAV] multigrid = @[MULTIGRID] + user_sets_restname = true :: # CMEPS warm run sequence diff --git a/tests/parm/nems.configure.cpld_noaero.IN b/tests/parm/nems.configure.cpld_noaero.IN index d12b8e836d2..e3a46f79570 100644 --- a/tests/parm/nems.configure.cpld_noaero.IN +++ b/tests/parm/nems.configure.cpld_noaero.IN @@ -67,6 +67,7 @@ WAV_attributes:: logfile = wav.log mesh_wav = @[MESH_WAV] multigrid = @[MULTIGRID] + user_sets_restname = true :: # CMEPS warm run sequence diff --git a/tests/parm/nems.configure.cpld_noaero_outwav.IN b/tests/parm/nems.configure.cpld_noaero_outwav.IN index bd0b82a57ff..5b2ab401b63 100644 --- a/tests/parm/nems.configure.cpld_noaero_outwav.IN +++ b/tests/parm/nems.configure.cpld_noaero_outwav.IN @@ -61,6 +61,7 @@ WAV_attributes:: logfile = wav.log mesh_wav = @[MESH_WAV] multigrid = @[MULTIGRID] + user_sets_restname = true :: # CMEPS warm run sequence diff --git a/tests/parm/nems.configure.hafs_atm_ocn_wav.IN b/tests/parm/nems.configure.hafs_atm_ocn_wav.IN index 1953903040f..87851452579 100644 --- a/tests/parm/nems.configure.hafs_atm_ocn_wav.IN +++ b/tests/parm/nems.configure.hafs_atm_ocn_wav.IN @@ -86,6 +86,7 @@ WAV_attributes:: merge_import = .true. mesh_wav = @[MESH_WAV] multigrid = @[MULTIGRID] + user_sets_restname = true :: # Run Sequence # diff --git a/tests/parm/nems.configure.hafs_atm_wav.IN b/tests/parm/nems.configure.hafs_atm_wav.IN index dce5544c31b..56cc2ac9dd7 100644 --- a/tests/parm/nems.configure.hafs_atm_wav.IN +++ b/tests/parm/nems.configure.hafs_atm_wav.IN @@ -55,6 +55,7 @@ WAV_attributes:: merge_import = .true. mesh_wav = @[MESH_WAV] multigrid = @[MULTIGRID] + user_sets_restname = true :: # Run Sequence # diff --git a/tests/rt.conf b/tests/rt.conf index 18cab11153b..2921b397b5b 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -82,10 +82,10 @@ RUN | regional_control_qr RUN | regional_restart_qr | | | regional_control_qr RUN | regional_decomp | | | RUN | regional_2threads | | | -RUN | regional_noquilt | | fv3 | +RUN | regional_noquilt | - jet.intel | fv3 | RUN | regional_netcdf_parallel | - acorn.intel | fv3 | RUN | regional_2dwrtdecomp | | | -RUN | regional_wofs | | fv3 | +RUN | regional_wofs | - jet.intel | fv3 | COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DREQUIRE_IFI=ON | + acorn.intel | fv3 | RUN | regional_ifi_control | + acorn.intel | fv3 | @@ -229,7 +229,7 @@ RUN | hafs_regional_storm_following_1nest_atm_ocn_wav COMPILE | -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON | - wcoss2.intel | fv3 | RUN | hafs_regional_docn | - wcoss2.intel | fv3 | RUN | hafs_regional_docn_oisst | - wcoss2.intel | fv3 | -RUN | hafs_regional_datm_cdeps | - wcoss2.intel | fv3 | +RUN | hafs_regional_datm_cdeps | - wcoss2.intel -jet.intel | fv3 | ################################################################################################################################################################################### # CDEPS Data Atmosphere tests # @@ -295,9 +295,9 @@ RUN | atmaero_control_p8_rad_micro ################################################################################################################################################################################### COMPILE | -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON | | fv3 | -RUN | regional_atmaq | | fv3 | +RUN | regional_atmaq | - jet.intel | fv3 | COMPILE | -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON | | fv3 | RUN | regional_atmaq_debug | - jet.intel gaea.intel cheyenne.intel | fv3 | COMPILE | -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON | | fv3 | -RUN | regional_atmaq_faster | | fv3 | +RUN | regional_atmaq_faster | - jet.intel | fv3 | diff --git a/tests/rt.sh b/tests/rt.sh index 1ca913fde9a..1e04daa9806 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -446,7 +446,7 @@ if [[ $TESTS_FILE =~ '35d' ]] || [[ $TESTS_FILE =~ 'weekly' ]]; then fi -BL_DATE=20230329 +BL_DATE=20230401 RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-${BL_DATE}/${RT_COMPILER^^}} diff --git a/tests/tests/hafs_regional_atm_ocn_wav b/tests/tests/hafs_regional_atm_ocn_wav index 251dbbaba55..9c3f0dfbcc3 100644 --- a/tests/tests/hafs_regional_atm_ocn_wav +++ b/tests/tests/hafs_regional_atm_ocn_wav @@ -14,7 +14,7 @@ export LIST_FILES="atmf006.nc \ archs.2019_241_06.a \ out_grd.ww3 \ out_pnt.ww3 \ - 20190829.060000.restart.ww3 \ + ufs.hafs.ww3.r.2019-08-29-21600 \ ufs.hafs.cpl.r.2019-08-29-21600.nc" export_fv3 diff --git a/tests/tests/hafs_regional_atm_wav b/tests/tests/hafs_regional_atm_wav index 73830aba29b..cd1a8d57c5c 100644 --- a/tests/tests/hafs_regional_atm_wav +++ b/tests/tests/hafs_regional_atm_wav @@ -12,7 +12,7 @@ export LIST_FILES="atmf006.nc \ sfcf006.nc \ out_grd.ww3 \ out_pnt.ww3 \ - 20190829.060000.restart.ww3 \ + ufs.hafs.ww3.r.2019-08-29-21600 \ ufs.hafs.cpl.r.2019-08-29-21600.nc" export_fv3 From 9be84651093e7e0988582839fbb99f6146df4e73 Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Wed, 5 Apr 2023 10:42:08 -0600 Subject: [PATCH 16/30] Remove requirement for esmf and mapl debug versions, remove DEBUG_LINKMPI (#1681) * Remove DEBUG_LINKMPI logic --- CMakeLists.txt | 2 - cmake/Intel.cmake | 7 - cmake/configure_acorn.cmake | 1 - cmake/configure_cheyenne.intel.cmake | 1 - cmake/configure_gaea.intel.cmake | 1 - cmake/configure_macosx.intel.cmake | 1 - cmake/configure_wcoss2.cmake | 1 - doc/UsersGuide/source/ConfigParameters.rst | 1 - modulefiles/ufs_acorn.intel_debug.lua | 39 - modulefiles/ufs_cheyenne.gnu_debug.lua | 43 - modulefiles/ufs_cheyenne.intel_debug.lua | 44 - modulefiles/ufs_common_debug.lua | 56 - modulefiles/ufs_expanse.intel_debug | 32 - modulefiles/ufs_gaea.intel_debug.lua | 35 - modulefiles/ufs_hera.gnu_debug.lua | 36 - modulefiles/ufs_hera.intel_debug.lua | 42 - modulefiles/ufs_jet.intel_debug.lua | 37 - modulefiles/ufs_linux.gnu_debug | 47 - modulefiles/ufs_macosx.gnu_debug | 24 - modulefiles/ufs_macosx.intel_debug | 24 - modulefiles/ufs_orion.intel_debug.lua | 33 - modulefiles/ufs_s4.intel_debug.lua | 30 - modulefiles/ufs_wcoss2.intel_debug.lua | 86 - tests/RegressionTests_acorn.intel.log | 1016 ++-- tests/RegressionTests_cheyenne.gnu.log | 332 +- tests/RegressionTests_cheyenne.intel.log | 1024 ++-- tests/RegressionTests_gaea.intel.log | 1016 ++-- tests/RegressionTests_hera.gnu.log | 336 +- tests/RegressionTests_hera.intel.log | 1054 ++-- tests/RegressionTests_jet.intel.log | 6261 ++++++++++---------- tests/RegressionTests_orion.intel.log | 1070 ++-- tests/RegressionTests_wcoss2.intel.log | 878 +-- tests/compile.sh | 19 +- tests/fv3_conf/compile_qsub.IN_wcoss2 | 2 +- 34 files changed, 6527 insertions(+), 7104 deletions(-) delete mode 100644 modulefiles/ufs_acorn.intel_debug.lua delete mode 100644 modulefiles/ufs_cheyenne.gnu_debug.lua delete mode 100644 modulefiles/ufs_cheyenne.intel_debug.lua delete mode 100644 modulefiles/ufs_common_debug.lua delete mode 100644 modulefiles/ufs_expanse.intel_debug delete mode 100644 modulefiles/ufs_gaea.intel_debug.lua delete mode 100644 modulefiles/ufs_hera.gnu_debug.lua delete mode 100644 modulefiles/ufs_hera.intel_debug.lua delete mode 100644 modulefiles/ufs_jet.intel_debug.lua delete mode 100644 modulefiles/ufs_linux.gnu_debug delete mode 100644 modulefiles/ufs_macosx.gnu_debug delete mode 100644 modulefiles/ufs_macosx.intel_debug delete mode 100644 modulefiles/ufs_orion.intel_debug.lua delete mode 100644 modulefiles/ufs_s4.intel_debug.lua delete mode 100644 modulefiles/ufs_wcoss2.intel_debug.lua mode change 100644 => 100755 tests/RegressionTests_orion.intel.log diff --git a/CMakeLists.txt b/CMakeLists.txt index ea8664a18a5..91fa89b8060 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -62,7 +62,6 @@ set(AVX2 ON CACHE BOOL "Enable AVX2 instruction set") set(AVX OFF CACHE BOOL "Enable AVX-I instruction set") set(SIMDMULTIARCH OFF CACHE BOOL "Enable multi-target SIMD instruction sets") set(DEBUG OFF CACHE BOOL "Enable DEBUG mode") -set(DEBUG_LINKMPI ON CACHE BOOL "Enable linkmpi option when DEBUG mode is on") set(DISABLE_FMA OFF CACHE BOOL "Disable Fused Multiply-Add instructions (workaround needed for AMD EPYC)" FORCE) set(INLINE_POST ON CACHE BOOL "Enable inline post") set(MULTI_GASES OFF CACHE BOOL "Enable MULTI_GASES") @@ -111,7 +110,6 @@ message("CCPP_32BIT ....... ${CCPP_32BIT}") message("AVX2 ............. ${AVX2}") message("SIMDMULTIARCH .... ${SIMDMULTIARCH}") message("DEBUG ............ ${DEBUG}") -message("DEBUG_LINKMPI .... ${DEBUG_LINKMPI}") message("INLINE_POST ...... ${INLINE_POST}") message("MULTI_GASES ...... ${MULTI_GASES}") message("MOVING_NEST ...... ${MOVING_NEST}") diff --git a/cmake/Intel.cmake b/cmake/Intel.cmake index ac9cbabd4eb..ca38182b454 100644 --- a/cmake/Intel.cmake +++ b/cmake/Intel.cmake @@ -8,13 +8,6 @@ endif() if(DEBUG) add_definitions(-DDEBUG) set(CMAKE_Fortran_FLAGS_DEBUG "${CMAKE_Fortran_FLAGS_DEBUG} -O0 -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -ftrapuv -init=snan,arrays") - if(DEBUG_LINKMPI) - if(OPENMP) - set(CMAKE_Fortran_FLAGS_DEBUG "${CMAKE_Fortran_FLAGS_DEBUG} -link_mpi=dbg_mt") - else() - set(CMAKE_Fortran_FLAGS_DEBUG "${CMAKE_Fortran_FLAGS_DEBUG} -link_mpi=dbg") - endif() - endif() set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -O0 -ftrapuv") else() if(FASTER) diff --git a/cmake/configure_acorn.cmake b/cmake/configure_acorn.cmake index aba198af7e0..016ab1e8b62 100644 --- a/cmake/configure_acorn.cmake +++ b/cmake/configure_acorn.cmake @@ -1,5 +1,4 @@ set(PARALLEL_NETCDF ON CACHE BOOL "Enable parallel NetCDF" FORCE) -set(DEBUG_LINKMPI OFF CACHE BOOL "Enable linkmpi option when DEBUG mode is on" FORCE) set(AVX2 OFF CACHE BOOL "Enable AVX2 instruction set" FORCE) if(FASTER) diff --git a/cmake/configure_cheyenne.intel.cmake b/cmake/configure_cheyenne.intel.cmake index 31f88424f76..8f1ffe0d011 100644 --- a/cmake/configure_cheyenne.intel.cmake +++ b/cmake/configure_cheyenne.intel.cmake @@ -1,2 +1 @@ set(PARALLEL_NETCDF ON CACHE BOOL "Enable parallel NetCDF" FORCE) -set(DEBUG_LINKMPI OFF CACHE BOOL "Enable linkmpi option when DEBUG mode is on" FORCE) diff --git a/cmake/configure_gaea.intel.cmake b/cmake/configure_gaea.intel.cmake index f66c5096d3f..6037c6379fd 100644 --- a/cmake/configure_gaea.intel.cmake +++ b/cmake/configure_gaea.intel.cmake @@ -1,5 +1,4 @@ set(PARALLEL_NETCDF ON CACHE BOOL "Enable parallel NetCDF" FORCE) -set(DEBUG_LINKMPI OFF CACHE BOOL "Enable linkmpi option when DEBUG mode is on" FORCE) set(MOM6_Extra_FORTRAN_FLAGS "-xsse2") set(HYCOM_Extra_FORTRAN_FLAGS "-xSSE4.2") set(HYCOM_Extra_C_FLAGS "-xSSE4.2") \ No newline at end of file diff --git a/cmake/configure_macosx.intel.cmake b/cmake/configure_macosx.intel.cmake index ee238ab301a..92b8ecb75e5 100644 --- a/cmake/configure_macosx.intel.cmake +++ b/cmake/configure_macosx.intel.cmake @@ -1,2 +1 @@ set(PARALLEL_NETCDF ON CACHE BOOL "Enable parallel NetCDF" FORCE) -set(DEBUG_LINKMPI OFF CACHE BOOL "Enable linkmpi option when DEBUG mode is on" FORCE) diff --git a/cmake/configure_wcoss2.cmake b/cmake/configure_wcoss2.cmake index aba198af7e0..016ab1e8b62 100644 --- a/cmake/configure_wcoss2.cmake +++ b/cmake/configure_wcoss2.cmake @@ -1,5 +1,4 @@ set(PARALLEL_NETCDF ON CACHE BOOL "Enable parallel NetCDF" FORCE) -set(DEBUG_LINKMPI OFF CACHE BOOL "Enable linkmpi option when DEBUG mode is on" FORCE) set(AVX2 OFF CACHE BOOL "Enable AVX2 instruction set" FORCE) if(FASTER) diff --git a/doc/UsersGuide/source/ConfigParameters.rst b/doc/UsersGuide/source/ConfigParameters.rst index 6aa6e4eada2..0fb08814110 100644 --- a/doc/UsersGuide/source/ConfigParameters.rst +++ b/doc/UsersGuide/source/ConfigParameters.rst @@ -169,7 +169,6 @@ Other Build Options set(AVX2 ON CACHE BOOL "Enable AVX2 instruction set") set(AVX OFF CACHE BOOL "Enable AVX-I instruction set") set(SIMDMULTIARCH OFF CACHE BOOL "Enable multi-target SIMD instruction sets") - set(DEBUG_LINKMPI ON CACHE BOOL "Enable linkmpi option when DEBUG mode is on") set(INLINE_POST OFF CACHE BOOL "Enable inline post") set(OPENMP ON CACHE BOOL "Enable OpenMP threading") set(PARALLEL_NETCDF OFF CACHE BOOL "Enable parallel NetCDF") diff --git a/modulefiles/ufs_acorn.intel_debug.lua b/modulefiles/ufs_acorn.intel_debug.lua deleted file mode 100644 index c2c24709d99..00000000000 --- a/modulefiles/ufs_acorn.intel_debug.lua +++ /dev/null @@ -1,39 +0,0 @@ -help([[ -Load environment to build UFS on Acorn with Intel compiler -]]) - -PrgEnv_intel_ver=os.getenv("PrgEnv_intel_ver") or "8.1.0" -load(pathJoin("PrgEnv-intel", PrgEnv_intel_ver)) - -intel_ver=os.getenv("intel_ver") or "19.1.3.304" -load(pathJoin("intel", intel_ver)) - -craype_ver=os.getenv("craype_ver") or "2.7.13" -load(pathJoin("craype", craype_ver)) - -cray_mpich_ver=os.getenv("cray_mpich_ver") or "8.1.9" -load(pathJoin("cray-mpich", cray_mpich_ver)) - -cmake_ver=os.getenv("cmake_ver") or "3.20.2" -load(pathJoin("cmake", cmake_ver)) - -prepend_path("MODULEPATH", "/lfs/h1/emc/nceplibs/noscrub/hpc-stack/libs/hpc-stack/modulefiles/stack") - -hpc_ver=os.getenv("hpc_ver") or "1.2.0" -hpc_intel_ver=os.getenv("hpc_intel_ver") or "19.1.3.304" -hpc_cray_mpich_ver=os.getenv("hpc_cray_mpich_ver") or "8.1.9" -load(pathJoin("hpc", hpc_ver)) -load(pathJoin("hpc-intel", hpc_intel_ver)) -load(pathJoin("hpc-cray-mpich", hpc_cray_mpich_ver)) - -load("ufs_common_debug") - -prepend_path("MODULEPATH", "/lfs/h1/emc/nceplibs/noscrub/UPP_IFI/modulefiles") -load("ifi/20230118-intel-19.1.3.304") - -setenv("CC", "cc") -setenv("CXX", "CC") -setenv("FC", "ftn") -setenv("CMAKE_Platform", "acorn") - -whatis("Description: UFS build environment") diff --git a/modulefiles/ufs_cheyenne.gnu_debug.lua b/modulefiles/ufs_cheyenne.gnu_debug.lua deleted file mode 100644 index 81c8df61d52..00000000000 --- a/modulefiles/ufs_cheyenne.gnu_debug.lua +++ /dev/null @@ -1,43 +0,0 @@ -help([[ -loads UFS Model prerequisites for Cheyenne/GNU Debugging -]]) - -cmake_ver=os.getenv("cmake_ver") or "3.22.0" -load(pathJoin("cmake", cmake_ver)) - -python_ver=os.getenv("python_ver") or "3.7.9" -load(pathJoin("python", python_ver)) - -ncarenv_ver=os.getenv("ncarenv_ver") or "1.3" -load(pathJoin("ncarenv", ncarenv_ver)) - -gnu_ver=os.getenv("gnu_ver") or "10.1.0" -load(pathJoin("gnu", gnu_ver)) - -mpt_ver=os.getenv("mpt_ver") or "2.25" -load(pathJoin("mpt", mpt_ver)) - -ncarcompilers_ver=os.getenv("ncarcompilers_ver") or "0.5.0" -load(pathJoin("ncarcompilers", ncarcompilers_ver)) - -unload("netcdf") - -prepend_path("MODULEPATH", "/glade/work/epicufsrt/contrib/hpc-stack/gnu10.1.0/modulefiles/stack") - -hpc_ver=os.getenv("hpc_ver") or "1.2.0" -load(pathJoin("hpc", hpc_ver)) - -hpc_gnu_ver=os.getenv("hpc_gnu_ver") or "10.1.0" -load(pathJoin("hpc-gnu", hpc_gnu_ver)) - -hpc_mpt_ver=os.getenv("hpc_mpt_ver") or "2.25" -load(pathJoin("hpc-mpt", hpc_mpt_ver)) - -load("ufs_common_debug") - -setenv("CC", "mpicc") -setenv("CXX", "mpicxx") -setenv("FC", "mpif90") -setenv("CMAKE_Platform", "cheyenne.gnu") - -whatis("Description: UFS build environment") diff --git a/modulefiles/ufs_cheyenne.intel_debug.lua b/modulefiles/ufs_cheyenne.intel_debug.lua deleted file mode 100644 index b3bd0dd112d..00000000000 --- a/modulefiles/ufs_cheyenne.intel_debug.lua +++ /dev/null @@ -1,44 +0,0 @@ -help([[ -loads UFS Model prerequisites for Cheyenne/Intel Debugging -]]) - -cmake_ver=os.getenv("cmake_ver") or "3.22.0" -load(pathJoin("cmake", cmake_ver)) - -python_ver=os.getenv("python_ver") or "3.7.9" -load(pathJoin("python", python)) - ---load programming environment -ncarenv_ver=os.getenv("ncarenv_ver") or "1.3" -load(pathJoin("ncarenv", ncarenv_ver)) - -intel_ver=os.getenv("intel_ver") or "2022.1" -load(pathJoin("intel", intel_ver)) - -mpt_ver=os.getenv("mpt_ver") or "2.25" -load(pathJoin("mpt", mpt_ver)) - -ncarcompilers_ver=os.getenv("ncarcompilers_ver") or "0.5.0" -load(pathJoin("ncarcompilers", ncarcompilers_ver)) - -unload("netcdf") - -prepend_path("MODULEPATH", "/glade/work/epicufsrt/contrib/hpc-stack/intel2022.1/modulefiles/stack") - -hpc_ver=os.getenv("hpc_ver") or "1.2.0" -load(pathJoin("hpc", hpc_ver)) - -hpc_intel_ver=os.getenv("hpc_intel_ver") or "2022.1" -load(pathJoin("hpc-intel", hpc_intel_ver)) - -hpc_mpt_ver=os.getenv("hpc_mpt_ver") or "2.25" -load(pathJoin("hpc-mpt", hpc_mpt_ver)) - -load("ufs_common_debug") - -setenv("CC", "mpicc") -setenv("CXX", "mpicxx") -setenv("FC", "mpif90") -setenv("CMAKE_Platform", "cheyenne.intel") - -whatis("Description: UFS build environment") diff --git a/modulefiles/ufs_common_debug.lua b/modulefiles/ufs_common_debug.lua deleted file mode 100644 index d9191bfd01b..00000000000 --- a/modulefiles/ufs_common_debug.lua +++ /dev/null @@ -1,56 +0,0 @@ -help([[ -loads UFS Model common libraries for debug -]]) - -jasper_ver=os.getenv("jasper_ver") or "2.0.25" -load(pathJoin("jasper", jasper_ver)) - -zlib_ver=os.getenv("zlib_ver") or "1.2.11" -load(pathJoin("zlib", zlib_ver)) - -libpng_ver=os.getenv("libpng_ver") or "1.6.37" -load(pathJoin("libpng", libpng_ver)) - -hdf5_ver=os.getenv("hdf5_ver") or "1.10.6" -load(pathJoin("hdf5", hdf5_ver)) - -netcdf_ver=os.getenv("netcdf_ver") or "4.7.4" -load(pathJoin("netcdf", netcdf_ver)) - -pio_ver=os.getenv("pio_ver") or "2.5.7" -load(pathJoin("pio", pio_ver)) - -esmf_ver=os.getenv("esmf_ver") or "8.3.0b09-debug" -load(pathJoin("esmf", esmf_ver)) - -fms_ver=os.getenv("fms_ver") or "2022.04" -load(pathJoin("fms",fms_ver)) - -bacio_ver=os.getenv("bacio_ver") or "2.4.1" -load(pathJoin("bacio", bacio_ver)) - -crtm_ver=os.getenv("crtm_ver") or "2.4.0" -load(pathJoin("crtm", crtm_ver)) - -g2_ver=os.getenv("g2_ver") or "3.4.5" -load(pathJoin("g2", g2_ver)) - -g2tmpl_ver=os.getenv("g2tmpl_ver") or "1.10.2" -load(pathJoin("g2tmpl", g2tmpl_ver)) - -ip_ver=os.getenv("ip_ver") or "3.3.3" -load(pathJoin("ip", ip_ver)) - -sp_ver=os.getenv("sp_ver") or "2.3.3" -load(pathJoin("sp", sp_ver)) - -w3emc_ver=os.getenv("w3emc_ver") or "2.9.2" -load(pathJoin("w3emc", w3emc_ver)) - -gftl_shared_ver=os.getenv("gftl_shared_ver") or "v1.5.0" -load(pathJoin("gftl-shared", gftl_shared_ver)) - -mapl_ver=os.getenv("mapl_ver") or "2.22.0-esmf-8.3.0b09" -load(pathJoin("mapl", mapl_ver)) - -whatis("Description: UFS build environment common libraries for debug") diff --git a/modulefiles/ufs_expanse.intel_debug b/modulefiles/ufs_expanse.intel_debug deleted file mode 100644 index be5ae67a0df..00000000000 --- a/modulefiles/ufs_expanse.intel_debug +++ /dev/null @@ -1,32 +0,0 @@ -#%Module - -proc ModulesHelp {} { - puts stderr "\tcit - loads modules required for building and running UFS Model on Expanse/Intel" -} - -module-whatis "loads UFS Model prerequisites for Expanse/Intel" - -module load slurm/expanse/20.02.3 -module load cpu/0.15.4 -module load intel/19.1.1.217 -module load intel-mpi/2019.8.254 -module load python/3.8.5 -module load cmake/3.18.2 - -module use module use /expanse/lustre/scratch/domh/temp_project/hpc-stack-20210929/modulefiles/stack - -module load hpc/1.2.0 - -module load hpc-intel/19.1.1.217 -module load hpc-intel-mpi/2019.8.254 - -module load jasper/2.0.25 -module load zlib/1.2.11 -module load png/1.6.35 - -module load ufs_common_debug - -setenv CC mpiicc -setenv CXX mpiicpc -setenv FC mpiifort -setenv CMAKE_Platform expanse.intel diff --git a/modulefiles/ufs_gaea.intel_debug.lua b/modulefiles/ufs_gaea.intel_debug.lua deleted file mode 100644 index a7445cea92d..00000000000 --- a/modulefiles/ufs_gaea.intel_debug.lua +++ /dev/null @@ -1,35 +0,0 @@ -help([[ - This module loads libraries required for building and running UFS Weather Model - on the NOAA RDHPC machine Gaea using Intel-2022.1.2 -]]) - -whatis([===[Loads libraries needed for building the UFS Weather Model and debug on Gaea ]===]) - -prepend_path("MODULEPATH", "/lustre/f2/dev/role.epic/contrib/modulefiles") -load(pathJoin("miniconda3",os.getenv("miniconda_ver") or "4.12.0")) - -load(pathJoin("cmake", os.getenv("cmake_ver") or "3.20.1")) - -prepend_path("MODULEPATH","/lustre/f2/dev/role.epic/contrib/hpc-stack/intel-2021.3.0_noarch/modulefiles/stack") -load(pathJoin("hpc", os.getenv("hpc_ver") or "1.2.0")) -load(pathJoin("intel", os.getenv("intel_ver") or "2021.3.0")) -load(pathJoin("hpc-intel", os.getenv("hpc_intel_ver") or "2021.3.0")) -load(pathJoin("hpc-cray-mpich", os.getenv("hpc_cray_mpich_ver") or "7.7.11")) -load(pathJoin("gcc", os.getenv("gcc_ver") or "8.3.0")) -load(pathJoin("libpng", os.getenv("libpng_ver") or "1.6.37")) - --- needed for WW3 build -load(pathJoin("gcc", os.getenv("gcc_ver") or "8.3.0")) --- Needed at runtime: -load("alps") -load("rocoto") - -load("ufs_common_debug") - -setenv("CC","cc") -setenv("FC","ftn") -setenv("CXX","CC") -setenv("CMAKE_C_COMPILER","cc") -setenv("CMAKE_CXX_COMPILER","CC") -setenv("CMAKE_Fortran_COMPILER","ftn") -setenv("CMAKE_Platform","gaea.intel") diff --git a/modulefiles/ufs_hera.gnu_debug.lua b/modulefiles/ufs_hera.gnu_debug.lua deleted file mode 100644 index d0ce5d11941..00000000000 --- a/modulefiles/ufs_hera.gnu_debug.lua +++ /dev/null @@ -1,36 +0,0 @@ -help([[ -loads UFS Model prerequisites for Hera/GNU Debugging -]]) - -prepend_path("MODULEPATH", "/scratch1/NCEPDEV/nems/role.epic/miniconda3/modulefiles") -miniconda3_ver=os.getenv("miniconda3_ver") or "4.12.0" -load(pathJoin("miniconda3", miniconda3_ver)) - -prepend_path("MODULEPATH", "/contrib/sutils/modulefiles") -load("sutils") - -cmake_ver=os.getenv("cmake_ver") or "3.20.1" -load(pathJoin("cmake", cmake_ver)) - -gnu_ver=os.getenv("gnu_ver") or "9.2.0" -load(pathJoin("gnu", gnu_ver)) - -prepend_path("MODULEPATH", "/scratch1/NCEPDEV/nems/role.epic/hpc-stack/libs/gnu-9.2/modulefiles/stack") - -hpc_ver=os.getenv("hpc_ver") or "1.2.0" -load(pathJoin("hpc", hpc_ver)) - -hpc_gnu_ver=os.getenv("hpc_gnu_ver") or "9.2" -load(pathJoin("hpc-gnu", hpc_gnu_ver)) - -hpc_mpich_ver=os.getenv("hpc_mpich_ver") or "3.3.2" -load(pathJoin("hpc-mpich", hpc_mpich_ver)) - -load("ufs_common_debug") - -setenv("CC", "mpicc") -setenv("CXX", "mpicxx") -setenv("FC", "mpif90") -setenv("CMAKE_Platform", "hera.gnu") - -whatis("Description: UFS build environment") diff --git a/modulefiles/ufs_hera.intel_debug.lua b/modulefiles/ufs_hera.intel_debug.lua deleted file mode 100644 index cc4ae9e9839..00000000000 --- a/modulefiles/ufs_hera.intel_debug.lua +++ /dev/null @@ -1,42 +0,0 @@ -help([[ -loads UFS Model prerequisites for Hera/Intel Debugging -]]) - -prepend_path("MODULEPATH", "/scratch1/NCEPDEV/nems/role.epic/miniconda3/modulefiles") -miniconda3_ver=os.getenv("miniconda3_ver") or "4.12.0" -load(pathJoin("miniconda3", miniconda3_ver)) - -prepend_path("MODULEPATH", "/contrib/sutils/modulefiles") -load("sutils") - -cmake_ver=os.getenv("cmake_ver") or "3.20.1" -load(pathJoin("cmake", cmake_ver)) - -intel_ver=os.getenv("intel_ver") or "2022.1.2" -load(pathJoin("intel", intel_ver)) - -impi_ver=os.getenv("impi_ver") or "2022.1.2" -load(pathJoin("impi", impi_ver)) - -prepend_path("MODULEPATH", "/scratch1/NCEPDEV/nems/role.epic/hpc-stack/libs/intel-2022.1.2/modulefiles/stack") - -hpc_ver=os.getenv("hpc_ver") or "1.2.0" -load(pathJoin("hpc", hpc_ver)) - -hpc_intel_ver=os.getenv("hpc_intel_ver") or "2022.1.2" -load(pathJoin("hpc-intel", hpc_intel_ver)) - -hpc_impi_ver=os.getenv("hpc_impi_ver") or "2022.1.2" -load(pathJoin("hpc-impi", hpc_impi_ver)) - -load("ufs_common_debug") - -setenv("CC", "mpiicc") -setenv("CXX", "mpiicpc") -setenv("FC", "mpiifort") -setenv("CMAKE_Platform", "hera.intel") - -prepend_path("MODULEPATH", "/scratch2/BMC/ifi/modulefiles") -try_load("ifi/20230118-intel-2022.1.2") - -whatis("Description: UFS build environment") diff --git a/modulefiles/ufs_jet.intel_debug.lua b/modulefiles/ufs_jet.intel_debug.lua deleted file mode 100644 index 4b07640c795..00000000000 --- a/modulefiles/ufs_jet.intel_debug.lua +++ /dev/null @@ -1,37 +0,0 @@ -help([[ -loads UFS Model prerequisites for Jet/Intel Debugging -]]) - -prepend_path("MODULEPATH", "/contrib/sutils/modulefiles") -load("sutils") - -cmake_ver=os.getenv("cmake_ver") or "3.20.1" -load(pathJoin("cmake", cmake_ver)) - -prepend_path("MODULEPATH", "/mnt/lfs4/HFIP/hfv3gfs/role.epic/miniconda3/modulefiles") -miniconda3_ver=os.getenv("miniconda3_ver") or "4.12.0" -load(pathJoin("miniconda3", miniconda3_ver)) - - -prepend_path("MODULEPATH", "/mnt/lfs4/HFIP/hfv3gfs/role.epic/hpc-stack/libs/intel-2022.1.2/modulefiles/stack") - -hpc_ver=os.getenv("hpc_ver") or "1.2.0" -load(pathJoin("hpc", hpc_ver)) - -hpc_intel_ver=os.getenv("hpc_intel_ver") or "2022.1.2" -load(pathJoin("hpc-intel", hpc_intel_ver)) - -hpc_impi_ver=os.getenv("hpc_impi_ver") or "2022.1.2" -load(pathJoin("hpc-impi", hpc_impi_ver)) - -load("ufs_common_debug") - -setenv("CC", "mpiicc") -setenv("CXX", "mpiicpc") -setenv("FC", "mpiifort") -setenv("CMAKE_Platform", "jet.intel") - -prepend_path("MODULEPATH", "/lfs4/BMC/ifi/modulefiles") -try_load("ifi/20230118-intel-2022.1.2") - -whatis("Description: UFS build environment") diff --git a/modulefiles/ufs_linux.gnu_debug b/modulefiles/ufs_linux.gnu_debug deleted file mode 100644 index 41c3588f9fc..00000000000 --- a/modulefiles/ufs_linux.gnu_debug +++ /dev/null @@ -1,47 +0,0 @@ -#!/bin/bash - -#%Module###################################################################### -## -## UFS prerequisites: Linux (tested: Ubuntu) with gcc/gfortran compilers - -echo "Setting environment variables for NEMSfv3gfs on Linux with gcc/gfortran" - -## -## load programming environment: compiler, flags, paths -## -export CC=${CC:-mpicc} -export CXX=${CXX:-mpicxx} -export F77=${F77:-mpif77} -export F90=${F90:-mpif90} -export FC=${FC:-mpif90} - -## -## set up variables for ../cmake/configure_linux.gnu.cmake -## -export CMAKE_Platform=linux.gnu - -## -## use own NetCDF library -## -export NETCDF=${NETCDF:-/home/builder/opt} - -## -## use SIONlib library if installed and environment variable is set -## -SIONLIB=${SIONLIB:-} -if [ ! "x$SIONLIB" == "x" ]; then - echo "Use SIONlib installation in ${SIONLIB}" - export SIONLIB_INC="-I${SIONLIB}/include -I${SIONLIB}/include/mod_64" - export SIONLIB_LIB="-L${SIONLIB}/lib -lsionmpi_f90_64 -lsionser_f90_64 -lsionmpi_64 -lsiongen_64 -lsionser_64 -lsioncom_64 -lsioncom_64_lock_none" -fi - -## -## use pre-compiled EMSF library for above compiler / MPI combination -## -export ESMFMKFILE=${ESMFMKFILE:-/home/builder/opt/lib/esmf.mk} - -## -## NCEP libraries (need to download and build manually, see doc/README_{UBUNTU,CENTOS,...}.txt and https://github.com/NCAR/NCEPlibs) -## -export NCEPLIBS_DIR=${NCEPLIBS_DIR:-/home/builder/opt} -export CMAKE_PREFIX_PATH=${NCEPLIBS_DIR} diff --git a/modulefiles/ufs_macosx.gnu_debug b/modulefiles/ufs_macosx.gnu_debug deleted file mode 100644 index 63f7ac2081f..00000000000 --- a/modulefiles/ufs_macosx.gnu_debug +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/bash - -#%Module###################################################################### -## -## UFS prerequisites: MACOSX with clang/gfortran compilers - -echo "Setting environment variables for NEMSfv3gfs on MACOSX with gcc/gfortran or clang/gfortran" - -## -## load programming environment: compiler, flags, paths -## -export CC=${MPICC:-mpicc} -export CXX=${MPICXX:-mpicxx} -export F77=${MPIF77:-mpif77} -export F90=${MPIF90:-mpif90} -export FC=${MPIFORT:-mpifort} -export CPP=${CPP:-"${F90} -E -x f95-cpp-input"} -export MPICC=${MPICC:-mpicc} -export MPIF90=${MPIF90:-mpif90} - -## -## load cmake -## -export CMAKE_Platform=macosx.gnu diff --git a/modulefiles/ufs_macosx.intel_debug b/modulefiles/ufs_macosx.intel_debug deleted file mode 100644 index 42a9a7a9d47..00000000000 --- a/modulefiles/ufs_macosx.intel_debug +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/bash - -#%Module###################################################################### -## -## UFS prerequisites: MACOSX with clang/gfortran compilers - -echo "Setting environment variables for NEMSfv3gfs on MACOSX with icc/ifort" - -## -## load programming environment: compiler, flags, paths -## -export CC=${MPICC:-mpicc} -export CXX=${MPICXX:-mpicxx} -export F77=${MPIF77:-mpif77} -export F90=${MPIF90:-mpif90} -export FC=${MPIFORT:-mpifort} -export CPP=${CPP:-"${F90} -E -x f95-cpp-input"} -export MPICC=${MPICC:-mpicc} -export MPIF90=${MPIF90:-mpif90} - -## -## load cmake -## -export CMAKE_Platform=macosx.intel diff --git a/modulefiles/ufs_orion.intel_debug.lua b/modulefiles/ufs_orion.intel_debug.lua deleted file mode 100644 index 99e76175b91..00000000000 --- a/modulefiles/ufs_orion.intel_debug.lua +++ /dev/null @@ -1,33 +0,0 @@ -help([[ -loads UFS Model prerequisites for Orion/Intel Debugging -]]) - -load("contrib") -load("noaatools") - -cmake_ver=os.getenv("cmake_ver") or "3.22.1" -load(pathJoin("cmake", cmake_ver)) - -prepend_path("MODULEPATH", "/work/noaa/epic-ps/role-epic-ps/miniconda3/modulefiles") -miniconda3_ver=os.getenv("miniconda3_ver") or "4.12.0" -load(pathJoin("miniconda3", miniconda3_ver)) - -prepend_path("MODULEPATH", "/work/noaa/epic-ps/role-epic-ps/hpc-stack/libs/intel-2022.1.2/modulefiles/stack") - -hpc_ver=os.getenv("hpc_ver") or "1.2.0" -load(pathJoin("hpc", hpc_ver)) - -hpc_intel_ver=os.getenv("hpc_intel_ver") or "2022.1.2" -load(pathJoin("hpc-intel", hpc_intel_ver)) - -hpc_impi_ver=os.getenv("hpc_impi_ver") or "2022.1.2" -load(pathJoin("hpc-impi", hpc_impi_ver)) - -load("ufs_common_debug") - -setenv("CC", "mpiicc") -setenv("CXX", "mpiicpc") -setenv("FC", "mpiifort") -setenv("CMAKE_Platform", "orion.intel") - -whatis("Description: UFS build environment") diff --git a/modulefiles/ufs_s4.intel_debug.lua b/modulefiles/ufs_s4.intel_debug.lua deleted file mode 100644 index 285ddc203e3..00000000000 --- a/modulefiles/ufs_s4.intel_debug.lua +++ /dev/null @@ -1,30 +0,0 @@ -help([[ -loads UFS Model prerequisites for S4 -]]) - -miniconda3_ver=os.getenv("miniconda3_ver") or "3.8-s4" -load(pathJoin("miniconda", miniconda3_ver)) - -license_ver=os.getenv("license_ver") or "S4" -load(pathJoin("license_intel",license_ver)) - - -prepend_path("MODULEPATH", "/data/prod/hpc-stack/modulefiles/stack") - -hpc_ver=os.getenv("hpc_ver") or "1.1.0" -load(pathJoin("hpc", hpc_ver)) - -hpc_intel_ver=os.getenv("hpc_intel_ver") or "2022.1" -load(pathJoin("hpc-intel", hpc_intel_ver)) - -hpc_impi_ver=os.getenv("hpc_impi_ver") or "2022.1" -load(pathJoin("hpc-impi", hpc_impi_ver)) - -load("ufs_common_debug") - -setenv("CC", "mpiicc") -setenv("CXX", "mpiicpc") -setenv("FC", "mpiifort") -setenv("CMAKE_Platform", "s4.intel") - -whatis("Description: UFS build environment") diff --git a/modulefiles/ufs_wcoss2.intel_debug.lua b/modulefiles/ufs_wcoss2.intel_debug.lua deleted file mode 100644 index 697a952ad48..00000000000 --- a/modulefiles/ufs_wcoss2.intel_debug.lua +++ /dev/null @@ -1,86 +0,0 @@ -help([[ -loads UFS Model prerequisites on Cactus and Dogwood -]]) - --- First, look for libraries on "prod" space -PrgEnv_intel_ver=os.getenv("PrgEnv_intel_ver") or "8.1.0" -load(pathJoin("PrgEnv-intel", PrgEnv_intel_ver)) - -intel_ver=os.getenv("intel_ver") or "19.1.3.304" -load(pathJoin("intel", intel_ver)) - -craype_ver=os.getenv("craype_ver") or "2.7.13" -load(pathJoin("craype", craype_ver)) - -cray_mpich_ver=os.getenv("cray_mpich_ver") or "8.1.7" -load(pathJoin("cray-mpich", cray_mpich_ver)) - -cmake_ver=os.getenv("cmake_ver") or "3.20.2" -load(pathJoin("cmake", cmake_ver)) - -jasper_ver=os.getenv("jasper_ver") or "2.0.25" -load(pathJoin("jasper", jasper_ver)) - -zlib_ver=os.getenv("zlib_ver") or "1.2.11" -load(pathJoin("zlib", zlib_ver)) - -libpng_ver=os.getenv("libpng_ver") or "1.6.37" -load(pathJoin("libpng", libpng_ver)) - -hdf5_ver=os.getenv("hdf5_ver") or "1.10.6" -load(pathJoin("hdf5", hdf5_ver)) - -netcdf_ver=os.getenv("netcdf_ver") or "4.7.4" -load(pathJoin("netcdf", netcdf_ver)) - -fms_ver=os.getenv("fms_ver") or "2022.04" -load(pathJoin("fms", fms_ver)) - -bacio_ver=os.getenv("bacio_ver") or "2.4.1" -load(pathJoin("bacio", bacio_ver)) - -crtm_ver=os.getenv("crtm_ver") or "2.4.0" -load(pathJoin("crtm", crtm_ver)) - -g2_ver=os.getenv("g2_ver") or "3.4.5" -load(pathJoin("g2", g2_ver)) - -g2tmpl_ver=os.getenv("g2tmpl_ver") or "1.10.2" -load(pathJoin("g2tmpl", g2tmpl_ver)) - -ip_ver=os.getenv("ip_ver") or "3.3.3" -load(pathJoin("ip", ip_ver)) - -sp_ver=os.getenv("sp_ver") or "2.3.3" -load(pathJoin("sp", sp_ver)) - -w3emc_ver=os.getenv("w3emc_ver") or "2.9.2" -load(pathJoin("w3emc", w3emc_ver)) - --- Seond, look for libraries in "para" -setenv("HPC_OPT", "/apps/ops/para/libs") -prepend_path("MODULEPATH", "/apps/ops/para/libs/modulefiles/compiler/intel/19.1.3.304") -prepend_path("MODULEPATH", "/apps/ops/para/libs/modulefiles/mpi/intel/19.1.3.304/cray-mpich/8.1.7") - -pio_ver=os.getenv("pio_ver") or "2.5.7" -load(pathJoin("pio", pio_ver)) - --- Finally, look for libraries in "dev" space -prepend_path("MODULEPATH", "/apps/dev/lmodules/intel/19.1.3.304") -prepend_path("MODULEPATH", "/apps/dev/modulefiles/mpi/intel/19.1.3.304/cray-mpich/8.1.9") - -gftl_shared_ver=os.getenv("gftl_shared_ver") or "1.5.0" -load(pathJoin("gftl_shared", gftl_shared_ver)) - -esmf_ver=os.getenv("esmf_ver") or "8.3.0b09-debug" -load(pathJoin("esmf", esmf_ver)) - -mapl_ver=os.getenv("mapl_ver") or "2.23.1-esmf-8.3.0b09" -load(pathJoin("mapl", mapl_ver)) - -setenv("CC", "cc") -setenv("CXX", "CC") -setenv("FC", "ftn") -setenv("CMAKE_Platform", "wcoss2") - -whatis("Description: UFS build environment") diff --git a/tests/RegressionTests_acorn.intel.log b/tests/RegressionTests_acorn.intel.log index 4bf098ae74a..ce5ca4e452d 100644 --- a/tests/RegressionTests_acorn.intel.log +++ b/tests/RegressionTests_acorn.intel.log @@ -1,40 +1,40 @@ -Mon Apr 3 14:11:37 UTC 2023 +Tue Apr 4 16:57:18 UTC 2023 Start Regression test -Compile 001 elapsed time 545 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 1030 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 515 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 483 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 005 elapsed time 489 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 641 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 1279 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 008 elapsed time 986 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 1653 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 010 elapsed time 1084 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 578 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 1700 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 645 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 965 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 439 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 499 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 339 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 307 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 485 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 020 elapsed time 810 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 021 elapsed time 733 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 022 elapsed time 658 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 023 elapsed time 345 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 024 elapsed time 317 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 202 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 026 elapsed time 518 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 027 elapsed time 881 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 634 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 445 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 206 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 031 elapsed time 690 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 544 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1063 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 996 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 1443 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 005 elapsed time 483 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 1469 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 926 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 472 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 906 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 010 elapsed time 451 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 1001 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 1224 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 655 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 014 elapsed time 1062 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 517 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 490 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 642 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 215 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 631 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 020 elapsed time 344 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 021 elapsed time 620 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 022 elapsed time 1035 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 023 elapsed time 227 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 024 elapsed time 225 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 265 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 026 elapsed time 703 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 027 elapsed time 487 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 737 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 446 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 471 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 031 elapsed time 783 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8_mixedmode -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/cpld_control_p8_mixedmode +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -99,14 +99,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 334.997418 -The maximum resident set size (KB) = 2950216 +The total amount of wall time = 333.894269 +The maximum resident set size (KB) = 2948140 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_gfsv17 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/cpld_control_gfsv17 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -170,14 +170,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 258.245295 -The maximum resident set size (KB) = 1572760 +The total amount of wall time = 256.446109 +The maximum resident set size (KB) = 1586584 Test 002 cpld_control_gfsv17 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -242,14 +242,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 389.078866 -The maximum resident set size (KB) = 2979724 +The total amount of wall time = 388.635246 +The maximum resident set size (KB) = 2977028 Test 003 cpld_control_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/cpld_restart_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -302,14 +302,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 230.014852 -The maximum resident set size (KB) = 2872528 +The total amount of wall time = 230.723597 +The maximum resident set size (KB) = 2864252 Test 004 cpld_restart_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/cpld_control_qr_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -374,14 +374,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 389.988750 -The maximum resident set size (KB) = 2991564 +The total amount of wall time = 388.225650 +The maximum resident set size (KB) = 2992740 Test 005 cpld_control_qr_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/cpld_restart_qr_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -434,14 +434,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 233.661648 -The maximum resident set size (KB) = 2881836 +The total amount of wall time = 233.226386 +The maximum resident set size (KB) = 2878468 Test 006 cpld_restart_qr_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/cpld_2threads_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -494,14 +494,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 367.455681 -The maximum resident set size (KB) = 3286572 +The total amount of wall time = 368.901820 +The maximum resident set size (KB) = 3280408 Test 007 cpld_2threads_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/cpld_decomp_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -554,14 +554,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 381.271551 -The maximum resident set size (KB) = 2976824 +The total amount of wall time = 380.847937 +The maximum resident set size (KB) = 2977384 Test 008 cpld_decomp_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/cpld_mpi_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -614,14 +614,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 317.288158 -The maximum resident set size (KB) = 2909716 +The total amount of wall time = 320.879315 +The maximum resident set size (KB) = 2910584 Test 009 cpld_mpi_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_ciceC_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/cpld_control_ciceC_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -686,14 +686,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 386.900317 -The maximum resident set size (KB) = 2981428 +The total amount of wall time = 383.119990 +The maximum resident set size (KB) = 2981316 Test 010 cpld_control_ciceC_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/cpld_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/cpld_control_noaero_p8 Checking test 011 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -757,14 +757,14 @@ Checking test 011 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 285.504284 -The maximum resident set size (KB) = 1570096 +The total amount of wall time = 283.572160 +The maximum resident set size (KB) = 1578632 Test 011 cpld_control_noaero_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/cpld_control_nowave_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/cpld_control_nowave_noaero_p8 Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -826,14 +826,14 @@ Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 302.585115 -The maximum resident set size (KB) = 1627832 +The total amount of wall time = 298.848221 +The maximum resident set size (KB) = 1624940 Test 012 cpld_control_nowave_noaero_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/cpld_control_noaero_p8_agrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/cpld_control_noaero_p8_agrid Checking test 013 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -895,14 +895,14 @@ Checking test 013 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 308.722129 -The maximum resident set size (KB) = 1619428 +The total amount of wall time = 307.724463 +The maximum resident set size (KB) = 1630448 Test 013 cpld_control_noaero_p8_agrid PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/cpld_control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/cpld_control_c48 Checking test 014 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -952,14 +952,14 @@ Checking test 014 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 436.419764 -The maximum resident set size (KB) = 2636152 +The total amount of wall time = 434.028333 +The maximum resident set size (KB) = 2635280 Test 014 cpld_control_c48 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/cpld_warmstart_c48 Checking test 015 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1009,14 +1009,14 @@ Checking test 015 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 124.706287 -The maximum resident set size (KB) = 2650428 +The total amount of wall time = 124.601709 +The maximum resident set size (KB) = 2650444 Test 015 cpld_warmstart_c48 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/cpld_restart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/cpld_restart_c48 Checking test 016 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1066,14 +1066,14 @@ Checking test 016 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 68.763579 -The maximum resident set size (KB) = 2067608 +The total amount of wall time = 67.324046 +The maximum resident set size (KB) = 2065912 Test 016 cpld_restart_c48 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/cpld_control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/cpld_control_p8_faster Checking test 017 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1138,14 +1138,14 @@ Checking test 017 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 380.296637 -The maximum resident set size (KB) = 2980856 +The total amount of wall time = 378.970860 +The maximum resident set size (KB) = 2980864 Test 017 cpld_control_p8_faster PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_CubedSphereGrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_CubedSphereGrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_CubedSphereGrid Checking test 018 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1172,14 +1172,14 @@ Checking test 018 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 128.962422 -The maximum resident set size (KB) = 510792 +The total amount of wall time = 132.854017 +The maximum resident set size (KB) = 513124 Test 018 control_CubedSphereGrid PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_latlon -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_latlon +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_latlon Checking test 019 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1190,14 +1190,14 @@ Checking test 019 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 132.852461 -The maximum resident set size (KB) = 512444 +The total amount of wall time = 132.914588 +The maximum resident set size (KB) = 514660 Test 019 control_latlon PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_wrtGauss_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_wrtGauss_netcdf_parallel Checking test 020 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1208,14 +1208,14 @@ Checking test 020 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.060205 -The maximum resident set size (KB) = 514108 +The total amount of wall time = 136.210779 +The maximum resident set size (KB) = 512972 Test 020 control_wrtGauss_netcdf_parallel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_c48 Checking test 021 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1254,14 +1254,14 @@ Checking test 021 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 329.615353 -The maximum resident set size (KB) = 671968 +The total amount of wall time = 330.046888 +The maximum resident set size (KB) = 672696 Test 021 control_c48 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c192 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_c192 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_c192 Checking test 022 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1272,14 +1272,14 @@ Checking test 022 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 529.666174 -The maximum resident set size (KB) = 612996 +The total amount of wall time = 533.389812 +The maximum resident set size (KB) = 614384 Test 022 control_c192 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c384 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_c384 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_c384 Checking test 023 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1290,14 +1290,14 @@ Checking test 023 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 570.789389 -The maximum resident set size (KB) = 920112 +The total amount of wall time = 569.161317 +The maximum resident set size (KB) = 924492 Test 023 control_c384 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c384gdas -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_c384gdas +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_c384gdas Checking test 024 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1340,14 +1340,14 @@ Checking test 024 control_c384gdas 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 = 498.555712 -The maximum resident set size (KB) = 1052744 +The total amount of wall time = 499.272373 +The maximum resident set size (KB) = 1056680 Test 024 control_c384gdas PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_stochy Checking test 025 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1358,28 +1358,28 @@ Checking test 025 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 88.996307 -The maximum resident set size (KB) = 516676 +The total amount of wall time = 89.473727 +The maximum resident set size (KB) = 516768 Test 025 control_stochy PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_stochy_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_stochy_restart Checking test 026 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 48.852568 -The maximum resident set size (KB) = 285428 +The total amount of wall time = 49.371650 +The maximum resident set size (KB) = 285436 Test 026 control_stochy_restart PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_lndp Checking test 027 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1390,14 +1390,14 @@ Checking test 027 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 83.286444 -The maximum resident set size (KB) = 515108 +The total amount of wall time = 84.769566 +The maximum resident set size (KB) = 515024 Test 027 control_lndp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_iovr4 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_iovr4 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_iovr4 Checking test 028 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1412,14 +1412,14 @@ Checking test 028 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.136668 -The maximum resident set size (KB) = 516700 +The total amount of wall time = 135.996800 +The maximum resident set size (KB) = 513012 Test 028 control_iovr4 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_iovr5 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_iovr5 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_iovr5 Checking test 029 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1434,14 +1434,14 @@ Checking test 029 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.587184 -The maximum resident set size (KB) = 512248 +The total amount of wall time = 138.685883 +The maximum resident set size (KB) = 516960 Test 029 control_iovr5 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_p8 Checking test 030 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1488,14 +1488,14 @@ Checking test 030 control_p8 results .... 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.324120 -The maximum resident set size (KB) = 1488188 +The total amount of wall time = 178.728244 +The maximum resident set size (KB) = 1482820 Test 030 control_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_restart_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_restart_p8 Checking test 031 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1534,14 +1534,14 @@ Checking test 031 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 99.231967 -The maximum resident set size (KB) = 653208 +The total amount of wall time = 100.065541 +The maximum resident set size (KB) = 651544 Test 031 control_restart_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_qr_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_qr_p8 Checking test 032 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1588,14 +1588,14 @@ Checking test 032 control_qr_p8 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 = 177.184892 -The maximum resident set size (KB) = 1496100 +The total amount of wall time = 179.084801 +The maximum resident set size (KB) = 1499384 Test 032 control_qr_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_restart_qr_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_restart_qr_p8 Checking test 033 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1634,14 +1634,14 @@ Checking test 033 control_restart_qr_p8 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 = 99.459581 -The maximum resident set size (KB) = 665780 +The total amount of wall time = 99.882007 +The maximum resident set size (KB) = 661344 Test 033 control_restart_qr_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_decomp_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_decomp_p8 Checking test 034 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1684,14 +1684,14 @@ Checking test 034 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 181.698247 -The maximum resident set size (KB) = 1479696 +The total amount of wall time = 182.233626 +The maximum resident set size (KB) = 1482508 Test 034 control_decomp_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_2threads_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_2threads_p8 Checking test 035 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1734,14 +1734,14 @@ Checking test 035 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 157.061251 -The maximum resident set size (KB) = 1570732 +The total amount of wall time = 155.386124 +The maximum resident set size (KB) = 1566480 Test 035 control_2threads_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_p8_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_p8_lndp Checking test 036 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1760,14 +1760,14 @@ Checking test 036 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 323.117434 -The maximum resident set size (KB) = 1480048 +The total amount of wall time = 323.425835 +The maximum resident set size (KB) = 1482900 Test 036 control_p8_lndp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_rrtmgp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_p8_rrtmgp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_p8_rrtmgp Checking test 037 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1814,14 +1814,14 @@ Checking test 037 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 234.440864 -The maximum resident set size (KB) = 1546200 +The total amount of wall time = 235.438850 +The maximum resident set size (KB) = 1544508 Test 037 control_p8_rrtmgp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_mynn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_p8_mynn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_p8_mynn Checking test 038 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1868,14 +1868,14 @@ Checking test 038 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 180.856866 -The maximum resident set size (KB) = 1484984 +The total amount of wall time = 180.755050 +The maximum resident set size (KB) = 1485408 Test 038 control_p8_mynn PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/merra2_thompson -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/merra2_thompson +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/merra2_thompson Checking test 039 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1922,14 +1922,14 @@ Checking test 039 merra2_thompson results .... 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.857891 -The maximum resident set size (KB) = 1491196 +The total amount of wall time = 204.004458 +The maximum resident set size (KB) = 1500384 Test 039 merra2_thompson PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/regional_control Checking test 040 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1940,28 +1940,28 @@ Checking test 040 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 287.056637 -The maximum resident set size (KB) = 655392 +The total amount of wall time = 285.965268 +The maximum resident set size (KB) = 649104 Test 040 regional_control PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/regional_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/regional_restart Checking test 041 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 155.769247 -The maximum resident set size (KB) = 649256 +The total amount of wall time = 154.051274 +The maximum resident set size (KB) = 651512 Test 041 regional_restart PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/regional_control_qr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/regional_control_qr Checking test 042 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1972,28 +1972,28 @@ Checking test 042 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 288.589544 -The maximum resident set size (KB) = 655480 +The total amount of wall time = 291.930242 +The maximum resident set size (KB) = 649944 Test 042 regional_control_qr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/regional_restart_qr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/regional_restart_qr Checking test 043 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 155.717368 -The maximum resident set size (KB) = 650632 +The total amount of wall time = 153.451424 +The maximum resident set size (KB) = 648392 Test 043 regional_restart_qr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/regional_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/regional_decomp Checking test 044 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2004,14 +2004,14 @@ Checking test 044 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 303.580505 -The maximum resident set size (KB) = 651052 +The total amount of wall time = 306.196388 +The maximum resident set size (KB) = 655624 Test 044 regional_decomp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/regional_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/regional_2threads Checking test 045 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2022,14 +2022,14 @@ Checking test 045 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 176.883901 -The maximum resident set size (KB) = 695036 +The total amount of wall time = 176.071628 +The maximum resident set size (KB) = 693744 Test 045 regional_2threads PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_noquilt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/regional_noquilt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/regional_noquilt Checking test 046 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2037,14 +2037,14 @@ Checking test 046 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 313.813434 -The maximum resident set size (KB) = 644268 +The total amount of wall time = 311.255236 +The maximum resident set size (KB) = 647944 Test 046 regional_noquilt PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/regional_2dwrtdecomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/regional_2dwrtdecomp Checking test 047 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2055,14 +2055,14 @@ Checking test 047 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 287.184737 -The maximum resident set size (KB) = 649956 +The total amount of wall time = 288.276957 +The maximum resident set size (KB) = 653596 Test 047 regional_2dwrtdecomp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/fv3_regional_wofs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/regional_wofs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/regional_wofs Checking test 048 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2073,14 +2073,14 @@ Checking test 048 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 363.612919 -The maximum resident set size (KB) = 338876 +The total amount of wall time = 365.035544 +The maximum resident set size (KB) = 339020 Test 048 regional_wofs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_ifi_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/regional_ifi_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/regional_ifi_control Checking test 049 regional_ifi_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2091,14 +2091,14 @@ Checking test 049 regional_ifi_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 322.114132 -The maximum resident set size (KB) = 649716 +The total amount of wall time = 328.200746 +The maximum resident set size (KB) = 654768 Test 049 regional_ifi_control PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_ifi_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/regional_ifi_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/regional_ifi_decomp Checking test 050 regional_ifi_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2109,14 +2109,14 @@ Checking test 050 regional_ifi_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 337.344053 -The maximum resident set size (KB) = 653288 +The total amount of wall time = 338.876959 +The maximum resident set size (KB) = 654904 Test 050 regional_ifi_decomp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_ifi_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/regional_ifi_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/regional_ifi_2threads Checking test 051 regional_ifi_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2127,14 +2127,14 @@ Checking test 051 regional_ifi_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 201.223607 -The maximum resident set size (KB) = 696512 +The total amount of wall time = 203.953005 +The maximum resident set size (KB) = 694708 Test 051 regional_ifi_2threads PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/rap_control Checking test 052 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2181,14 +2181,14 @@ Checking test 052 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 420.578529 -The maximum resident set size (KB) = 891920 +The total amount of wall time = 419.990699 +The maximum resident set size (KB) = 891328 Test 052 rap_control PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/regional_spp_sppt_shum_skeb +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/regional_spp_sppt_shum_skeb Checking test 053 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2199,14 +2199,14 @@ Checking test 053 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 242.079317 -The maximum resident set size (KB) = 987840 +The total amount of wall time = 241.439624 +The maximum resident set size (KB) = 988404 Test 053 regional_spp_sppt_shum_skeb PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/rap_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/rap_decomp Checking test 054 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2253,14 +2253,14 @@ Checking test 054 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 432.433369 -The maximum resident set size (KB) = 891144 +The total amount of wall time = 436.186050 +The maximum resident set size (KB) = 891848 Test 054 rap_decomp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/rap_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/rap_2threads Checking test 055 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2307,14 +2307,14 @@ Checking test 055 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 387.696421 -The maximum resident set size (KB) = 962844 +The total amount of wall time = 387.965274 +The maximum resident set size (KB) = 968416 Test 055 rap_2threads PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/rap_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/rap_restart Checking test 056 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2353,14 +2353,14 @@ Checking test 056 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 212.608949 -The maximum resident set size (KB) = 644708 +The total amount of wall time = 213.393829 +The maximum resident set size (KB) = 639736 Test 056 rap_restart PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/rap_sfcdiff Checking test 057 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2407,14 +2407,14 @@ Checking test 057 rap_sfcdiff results .... 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.322643 -The maximum resident set size (KB) = 891792 +The total amount of wall time = 421.170376 +The maximum resident set size (KB) = 889364 Test 057 rap_sfcdiff PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/rap_sfcdiff_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/rap_sfcdiff_decomp Checking test 058 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2461,14 +2461,14 @@ Checking test 058 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 439.239442 -The maximum resident set size (KB) = 893800 +The total amount of wall time = 437.182906 +The maximum resident set size (KB) = 892768 Test 058 rap_sfcdiff_decomp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/rap_sfcdiff_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/rap_sfcdiff_restart Checking test 059 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2507,14 +2507,14 @@ Checking test 059 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 310.691963 -The maximum resident set size (KB) = 638500 +The total amount of wall time = 310.943065 +The maximum resident set size (KB) = 642928 Test 059 rap_sfcdiff_restart PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/hrrr_control Checking test 060 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2561,14 +2561,14 @@ Checking test 060 hrrr_control results .... 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.087817 -The maximum resident set size (KB) = 885856 +The total amount of wall time = 406.112154 +The maximum resident set size (KB) = 889296 Test 060 hrrr_control PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/hrrr_control_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/hrrr_control_decomp Checking test 061 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2615,14 +2615,14 @@ Checking test 061 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 420.283746 -The maximum resident set size (KB) = 888804 +The total amount of wall time = 420.048420 +The maximum resident set size (KB) = 885200 Test 061 hrrr_control_decomp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/hrrr_control_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/hrrr_control_2threads Checking test 062 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2669,14 +2669,14 @@ Checking test 062 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 372.711939 -The maximum resident set size (KB) = 961928 +The total amount of wall time = 373.357172 +The maximum resident set size (KB) = 952244 Test 062 hrrr_control_2threads PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/hrrr_control_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/hrrr_control_restart Checking test 063 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2715,14 +2715,14 @@ Checking test 063 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 297.979299 -The maximum resident set size (KB) = 638300 +The total amount of wall time = 297.778806 +The maximum resident set size (KB) = 641052 Test 063 hrrr_control_restart PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1beta -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/rrfs_v1beta +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/rrfs_v1beta Checking test 064 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2769,14 +2769,14 @@ Checking test 064 rrfs_v1beta results .... 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.492995 -The maximum resident set size (KB) = 885352 +The total amount of wall time = 416.600700 +The maximum resident set size (KB) = 892180 Test 064 rrfs_v1beta PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1nssl -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/rrfs_v1nssl +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/rrfs_v1nssl Checking test 065 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2791,14 +2791,14 @@ Checking test 065 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 483.886093 -The maximum resident set size (KB) = 573224 +The total amount of wall time = 490.429662 +The maximum resident set size (KB) = 574508 Test 065 rrfs_v1nssl PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/rrfs_v1nssl_nohailnoccn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/rrfs_v1nssl_nohailnoccn Checking test 066 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2813,14 +2813,14 @@ Checking test 066 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 471.577785 -The maximum resident set size (KB) = 567096 +The total amount of wall time = 469.257455 +The maximum resident set size (KB) = 569140 Test 066 rrfs_v1nssl_nohailnoccn PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/rrfs_smoke_conus13km_hrrr_warm Checking test 067 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2829,14 +2829,14 @@ Checking test 067 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 146.687543 -The maximum resident set size (KB) = 799496 +The total amount of wall time = 146.417996 +The maximum resident set size (KB) = 796580 Test 067 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/rrfs_smoke_conus13km_hrrr_warm_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 068 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2845,14 +2845,14 @@ Checking test 068 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 102.202141 -The maximum resident set size (KB) = 798424 +The total amount of wall time = 103.848783 +The maximum resident set size (KB) = 800600 Test 068 rrfs_smoke_conus13km_hrrr_warm_2threads PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/rrfs_conus13km_hrrr_warm Checking test 069 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2861,14 +2861,14 @@ Checking test 069 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 132.770658 -The maximum resident set size (KB) = 775176 +The total amount of wall time = 131.680305 +The maximum resident set size (KB) = 775040 Test 069 rrfs_conus13km_hrrr_warm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/rrfs_smoke_conus13km_radar_tten_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/rrfs_smoke_conus13km_radar_tten_warm Checking test 070 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2877,26 +2877,26 @@ Checking test 070 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 145.709856 -The maximum resident set size (KB) = 802656 +The total amount of wall time = 145.884018 +The maximum resident set size (KB) = 800656 Test 070 rrfs_smoke_conus13km_radar_tten_warm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 071 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 67.361418 -The maximum resident set size (KB) = 756312 +The total amount of wall time = 67.346531 +The maximum resident set size (KB) = 757780 Test 071 rrfs_conus13km_hrrr_warm_restart_mismatch PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmg -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_csawmg +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_csawmg Checking test 072 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2907,14 +2907,14 @@ Checking test 072 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 348.031304 -The maximum resident set size (KB) = 581556 +The total amount of wall time = 351.963791 +The maximum resident set size (KB) = 579776 Test 072 control_csawmg PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmgt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_csawmgt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_csawmgt Checking test 073 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2925,14 +2925,14 @@ Checking test 073 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 344.405784 -The maximum resident set size (KB) = 582556 +The total amount of wall time = 346.317862 +The maximum resident set size (KB) = 580244 Test 073 control_csawmgt PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_ras -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_ras +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_ras Checking test 074 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2943,26 +2943,26 @@ Checking test 074 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 183.828599 -The maximum resident set size (KB) = 547252 +The total amount of wall time = 182.082405 +The maximum resident set size (KB) = 549084 Test 074 control_ras PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wam -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_wam +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_wam Checking test 075 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 117.698833 -The maximum resident set size (KB) = 269300 +The total amount of wall time = 118.196285 +The maximum resident set size (KB) = 270036 Test 075 control_wam PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_p8_faster Checking test 076 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3009,14 +3009,14 @@ Checking test 076 control_p8_faster results .... 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.616392 -The maximum resident set size (KB) = 1488000 +The total amount of wall time = 174.352703 +The maximum resident set size (KB) = 1495232 Test 076 control_p8_faster PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/regional_control_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/regional_control_faster Checking test 077 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3027,56 +3027,56 @@ Checking test 077 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 280.485488 -The maximum resident set size (KB) = 655124 +The total amount of wall time = 277.730164 +The maximum resident set size (KB) = 650480 Test 077 regional_control_faster PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 078 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 903.232871 -The maximum resident set size (KB) = 831628 +The total amount of wall time = 898.591308 +The maximum resident set size (KB) = 830232 Test 078 rrfs_smoke_conus13km_hrrr_warm_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 079 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 522.874540 -The maximum resident set size (KB) = 828024 +The total amount of wall time = 517.912398 +The maximum resident set size (KB) = 832484 Test 079 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/rrfs_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/rrfs_conus13km_hrrr_warm_debug Checking test 080 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 818.307147 -The maximum resident set size (KB) = 807100 +The total amount of wall time = 815.337621 +The maximum resident set size (KB) = 803032 Test 080 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_CubedSphereGrid_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_CubedSphereGrid_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_CubedSphereGrid_debug Checking test 081 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3103,334 +3103,334 @@ Checking test 081 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 168.596532 -The maximum resident set size (KB) = 673536 +The total amount of wall time = 158.423986 +The maximum resident set size (KB) = 671636 Test 081 control_CubedSphereGrid_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_wrtGauss_netcdf_parallel_debug Checking test 082 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 160.618247 -The maximum resident set size (KB) = 678448 +The total amount of wall time = 156.943350 +The maximum resident set size (KB) = 679496 Test 082 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_stochy_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_stochy_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_stochy_debug Checking test 083 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 181.205984 -The maximum resident set size (KB) = 682964 +The total amount of wall time = 178.559257 +The maximum resident set size (KB) = 678996 Test 083 control_stochy_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_lndp_debug Checking test 084 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 162.341363 -The maximum resident set size (KB) = 689048 +The total amount of wall time = 159.092019 +The maximum resident set size (KB) = 679880 Test 084 control_lndp_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmg_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_csawmg_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_csawmg_debug Checking test 085 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 255.664539 -The maximum resident set size (KB) = 721168 +The total amount of wall time = 253.726500 +The maximum resident set size (KB) = 721268 Test 085 control_csawmg_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmgt_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_csawmgt_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_csawmgt_debug Checking test 086 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 251.549383 -The maximum resident set size (KB) = 715532 +The total amount of wall time = 248.773658 +The maximum resident set size (KB) = 714764 Test 086 control_csawmgt_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_ras_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_ras_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_ras_debug Checking test 087 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 164.686125 -The maximum resident set size (KB) = 694092 +The total amount of wall time = 160.731330 +The maximum resident set size (KB) = 687492 Test 087 control_ras_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_diag_debug Checking test 088 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 164.545711 -The maximum resident set size (KB) = 736108 +The total amount of wall time = 161.160245 +The maximum resident set size (KB) = 733952 Test 088 control_diag_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_debug_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_debug_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_debug_p8 Checking test 089 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 186.658517 -The maximum resident set size (KB) = 1507916 +The total amount of wall time = 184.847289 +The maximum resident set size (KB) = 1503316 Test 089 control_debug_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/regional_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/regional_debug Checking test 090 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1046.512043 -The maximum resident set size (KB) = 673452 +The total amount of wall time = 1039.801052 +The maximum resident set size (KB) = 673440 Test 090 regional_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/rap_control_debug Checking test 091 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 301.186876 -The maximum resident set size (KB) = 1055180 +The total amount of wall time = 294.421621 +The maximum resident set size (KB) = 1051744 Test 091 rap_control_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/hrrr_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/hrrr_control_debug Checking test 092 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 295.342367 -The maximum resident set size (KB) = 1049208 +The total amount of wall time = 289.369885 +The maximum resident set size (KB) = 1049008 Test 092 hrrr_control_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/rap_unified_drag_suite_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/rap_unified_drag_suite_debug Checking test 093 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 302.219715 -The maximum resident set size (KB) = 1056348 +The total amount of wall time = 296.678268 +The maximum resident set size (KB) = 1052756 Test 093 rap_unified_drag_suite_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/rap_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/rap_diag_debug Checking test 094 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 312.844662 -The maximum resident set size (KB) = 1133696 +The total amount of wall time = 307.489940 +The maximum resident set size (KB) = 1133624 Test 094 rap_diag_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/rap_cires_ugwp_debug Checking test 095 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 307.100092 -The maximum resident set size (KB) = 1054048 +The total amount of wall time = 301.779457 +The maximum resident set size (KB) = 1052936 Test 095 rap_cires_ugwp_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/rap_unified_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/rap_unified_ugwp_debug Checking test 096 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 307.888280 -The maximum resident set size (KB) = 1050988 +The total amount of wall time = 302.681253 +The maximum resident set size (KB) = 1050484 Test 096 rap_unified_ugwp_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/rap_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/rap_lndp_debug Checking test 097 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 304.209918 -The maximum resident set size (KB) = 1054704 +The total amount of wall time = 300.993905 +The maximum resident set size (KB) = 1052692 Test 097 rap_lndp_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_flake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/rap_flake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/rap_flake_debug Checking test 098 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 302.186605 -The maximum resident set size (KB) = 1053208 +The total amount of wall time = 296.404404 +The maximum resident set size (KB) = 1051608 Test 098 rap_flake_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_progcld_thompson_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/rap_progcld_thompson_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/rap_progcld_thompson_debug Checking test 099 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.169247 -The maximum resident set size (KB) = 1054584 +The total amount of wall time = 297.262611 +The maximum resident set size (KB) = 1050248 Test 099 rap_progcld_thompson_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_noah_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/rap_noah_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/rap_noah_debug Checking test 100 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 294.032419 -The maximum resident set size (KB) = 1046904 +The total amount of wall time = 288.355959 +The maximum resident set size (KB) = 1046348 Test 100 rap_noah_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/rap_sfcdiff_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/rap_sfcdiff_debug Checking test 101 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.278755 -The maximum resident set size (KB) = 1053168 +The total amount of wall time = 294.219660 +The maximum resident set size (KB) = 1052476 Test 101 rap_sfcdiff_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/rap_noah_sfcdiff_cires_ugwp_debug Checking test 102 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 491.391589 -The maximum resident set size (KB) = 1049776 +The total amount of wall time = 483.703823 +The maximum resident set size (KB) = 1052288 Test 102 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1beta_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/rrfs_v1beta_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/rrfs_v1beta_debug Checking test 103 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 296.683001 -The maximum resident set size (KB) = 1048976 +The total amount of wall time = 292.250563 +The maximum resident set size (KB) = 1050996 Test 103 rrfs_v1beta_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wam_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_wam_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_wam_debug Checking test 104 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 298.807926 -The maximum resident set size (KB) = 303200 +The total amount of wall time = 295.707284 +The maximum resident set size (KB) = 302664 Test 104 control_wam_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 105 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3441,14 +3441,14 @@ Checking test 105 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 232.360262 -The maximum resident set size (KB) = 880264 +The total amount of wall time = 231.314468 +The maximum resident set size (KB) = 884084 Test 105 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/rap_control_dyn32_phy32 Checking test 106 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3495,14 +3495,14 @@ Checking test 106 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 351.001868 -The maximum resident set size (KB) = 774028 +The total amount of wall time = 356.480610 +The maximum resident set size (KB) = 774160 Test 106 rap_control_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/hrrr_control_dyn32_phy32 Checking test 107 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3549,14 +3549,14 @@ Checking test 107 hrrr_control_dyn32_phy32 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 = 187.008818 -The maximum resident set size (KB) = 772376 +The total amount of wall time = 187.776794 +The maximum resident set size (KB) = 771912 Test 107 hrrr_control_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/rap_2threads_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/rap_2threads_dyn32_phy32 Checking test 108 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3603,14 +3603,14 @@ Checking test 108 rap_2threads_dyn32_phy32 results .... 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.302978 -The maximum resident set size (KB) = 832724 +The total amount of wall time = 328.651068 +The maximum resident set size (KB) = 832776 Test 108 rap_2threads_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/hrrr_control_2threads_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/hrrr_control_2threads_dyn32_phy32 Checking test 109 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3657,14 +3657,14 @@ Checking test 109 hrrr_control_2threads_dyn32_phy32 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 = 172.632144 -The maximum resident set size (KB) = 829508 +The total amount of wall time = 173.178345 +The maximum resident set size (KB) = 825912 Test 109 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/hrrr_control_decomp_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/hrrr_control_decomp_dyn32_phy32 Checking test 110 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3711,14 +3711,14 @@ Checking test 110 hrrr_control_decomp_dyn32_phy32 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 = 194.853356 -The maximum resident set size (KB) = 775596 +The total amount of wall time = 194.560015 +The maximum resident set size (KB) = 776576 Test 110 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/rap_restart_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/rap_restart_dyn32_phy32 Checking test 111 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3757,14 +3757,14 @@ Checking test 111 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 259.042549 -The maximum resident set size (KB) = 609204 +The total amount of wall time = 257.971421 +The maximum resident set size (KB) = 611308 Test 111 rap_restart_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/hrrr_control_restart_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/hrrr_control_restart_dyn32_phy32 Checking test 112 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3803,14 +3803,14 @@ Checking test 112 hrrr_control_restart_dyn32_phy32 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 = 97.129661 -The maximum resident set size (KB) = 605132 +The total amount of wall time = 97.461173 +The maximum resident set size (KB) = 605340 Test 112 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/rap_control_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/rap_control_dyn64_phy32 Checking test 113 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3857,81 +3857,81 @@ Checking test 113 rap_control_dyn64_phy32 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 = 235.209072 -The maximum resident set size (KB) = 796052 +The total amount of wall time = 234.884387 +The maximum resident set size (KB) = 790236 Test 113 rap_control_dyn64_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/rap_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/rap_control_debug_dyn32_phy32 Checking test 114 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 291.463545 -The maximum resident set size (KB) = 937788 +The total amount of wall time = 294.365822 +The maximum resident set size (KB) = 938536 Test 114 rap_control_debug_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/hrrr_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/hrrr_control_debug_dyn32_phy32 Checking test 115 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 286.695883 -The maximum resident set size (KB) = 935264 +The total amount of wall time = 287.562534 +The maximum resident set size (KB) = 934960 Test 115 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/rap_control_dyn64_phy32_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/rap_control_dyn64_phy32_debug Checking test 116 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 293.483945 -The maximum resident set size (KB) = 953660 +The total amount of wall time = 291.138156 +The maximum resident set size (KB) = 954436 Test 116 rap_control_dyn64_phy32_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/hafs_regional_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/hafs_regional_atm Checking test 117 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 268.748425 -The maximum resident set size (KB) = 825160 +The total amount of wall time = 270.252948 +The maximum resident set size (KB) = 821304 Test 117 hafs_regional_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/hafs_regional_atm_thompson_gfdlsf Checking test 118 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 312.883691 -The maximum resident set size (KB) = 1182976 +The total amount of wall time = 312.708842 +The maximum resident set size (KB) = 1180964 Test 118 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/hafs_regional_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/hafs_regional_atm_ocn Checking test 119 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3940,14 +3940,14 @@ Checking test 119 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 385.940568 -The maximum resident set size (KB) = 859996 +The total amount of wall time = 387.086668 +The maximum resident set size (KB) = 860240 Test 119 hafs_regional_atm_ocn PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/hafs_regional_atm_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/hafs_regional_atm_wav Checking test 120 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3956,14 +3956,14 @@ Checking test 120 hafs_regional_atm_wav 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 = 699.782499 -The maximum resident set size (KB) = 887380 +The total amount of wall time = 699.994175 +The maximum resident set size (KB) = 884964 Test 120 hafs_regional_atm_wav PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/hafs_regional_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/hafs_regional_atm_ocn_wav Checking test 121 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3974,28 +3974,28 @@ Checking test 121 hafs_regional_atm_ocn_wav 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 = 889.920464 -The maximum resident set size (KB) = 913632 +The total amount of wall time = 893.494691 +The maximum resident set size (KB) = 912392 Test 121 hafs_regional_atm_ocn_wav PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/hafs_regional_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/hafs_regional_1nest_atm Checking test 122 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 333.526583 -The maximum resident set size (KB) = 396720 +The total amount of wall time = 330.834910 +The maximum resident set size (KB) = 392336 Test 122 hafs_regional_1nest_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/hafs_regional_telescopic_2nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/hafs_regional_telescopic_2nests_atm Checking test 123 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4004,28 +4004,28 @@ Checking test 123 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 403.276298 -The maximum resident set size (KB) = 399816 +The total amount of wall time = 403.222030 +The maximum resident set size (KB) = 404948 Test 123 hafs_regional_telescopic_2nests_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_global_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/hafs_global_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/hafs_global_1nest_atm Checking test 124 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 172.660778 -The maximum resident set size (KB) = 261148 +The total amount of wall time = 171.648060 +The maximum resident set size (KB) = 271496 Test 124 hafs_global_1nest_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_global_multiple_4nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/hafs_global_multiple_4nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/hafs_global_multiple_4nests_atm Checking test 125 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4043,14 +4043,14 @@ Checking test 125 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -The total amount of wall time = 492.792493 -The maximum resident set size (KB) = 349868 +The total amount of wall time = 489.348766 +The maximum resident set size (KB) = 346244 Test 125 hafs_global_multiple_4nests_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/hafs_regional_specified_moving_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/hafs_regional_specified_moving_1nest_atm Checking test 126 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4059,28 +4059,28 @@ Checking test 126 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 220.036329 -The maximum resident set size (KB) = 406284 +The total amount of wall time = 219.877819 +The maximum resident set size (KB) = 406276 Test 126 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/hafs_regional_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/hafs_regional_storm_following_1nest_atm Checking test 127 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 207.760698 -The maximum resident set size (KB) = 406096 +The total amount of wall time = 205.506280 +The maximum resident set size (KB) = 413604 Test 127 hafs_regional_storm_following_1nest_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/hafs_regional_storm_following_1nest_atm_ocn Checking test 128 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4089,42 +4089,42 @@ Checking test 128 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 253.817068 -The maximum resident set size (KB) = 470024 +The total amount of wall time = 252.927257 +The maximum resident set size (KB) = 470340 Test 128 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/hafs_global_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/hafs_global_storm_following_1nest_atm Checking test 129 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 84.990266 -The maximum resident set size (KB) = 289216 +The total amount of wall time = 84.818469 +The maximum resident set size (KB) = 287388 Test 129 hafs_global_storm_following_1nest_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 130 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 811.267023 -The maximum resident set size (KB) = 492308 +The total amount of wall time = 803.118928 +The maximum resident set size (KB) = 488136 Test 130 hafs_regional_storm_following_1nest_atm_ocn_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 131 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4135,14 +4135,14 @@ Checking test 131 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -The total amount of wall time = 503.573804 -The maximum resident set size (KB) = 525288 +The total amount of wall time = 502.213328 +The maximum resident set size (KB) = 525936 Test 131 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_docn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/hafs_regional_docn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/hafs_regional_docn Checking test 132 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4150,14 +4150,14 @@ Checking test 132 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 369.241742 -The maximum resident set size (KB) = 861560 +The total amount of wall time = 369.089194 +The maximum resident set size (KB) = 864380 Test 132 hafs_regional_docn PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_docn_oisst -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/hafs_regional_docn_oisst +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/hafs_regional_docn_oisst Checking test 133 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4165,131 +4165,131 @@ Checking test 133 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 370.277897 -The maximum resident set size (KB) = 848344 +The total amount of wall time = 371.937460 +The maximum resident set size (KB) = 845852 Test 133 hafs_regional_docn_oisst PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_datm_cdeps -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/hafs_regional_datm_cdeps +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/hafs_regional_datm_cdeps Checking test 134 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -The total amount of wall time = 949.494035 -The maximum resident set size (KB) = 834528 +The total amount of wall time = 945.007987 +The maximum resident set size (KB) = 870184 Test 134 hafs_regional_datm_cdeps PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/datm_cdeps_control_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/datm_cdeps_control_cfsr Checking test 135 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.365727 -The maximum resident set size (KB) = 731840 +The total amount of wall time = 140.892322 +The maximum resident set size (KB) = 733440 Test 135 datm_cdeps_control_cfsr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/datm_cdeps_restart_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/datm_cdeps_restart_cfsr Checking test 136 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 86.002576 -The maximum resident set size (KB) = 727596 +The total amount of wall time = 85.733053 +The maximum resident set size (KB) = 708648 Test 136 datm_cdeps_restart_cfsr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/datm_cdeps_control_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/datm_cdeps_control_gefs Checking test 137 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 134.203688 -The maximum resident set size (KB) = 615624 +The total amount of wall time = 134.529221 +The maximum resident set size (KB) = 613464 Test 137 datm_cdeps_control_gefs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_iau_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/datm_cdeps_iau_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/datm_cdeps_iau_gefs Checking test 138 datm_cdeps_iau_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 136.835545 -The maximum resident set size (KB) = 613016 +The total amount of wall time = 136.652997 +The maximum resident set size (KB) = 613344 Test 138 datm_cdeps_iau_gefs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_stochy_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/datm_cdeps_stochy_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/datm_cdeps_stochy_gefs Checking test 139 datm_cdeps_stochy_gefs 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.269149 -The maximum resident set size (KB) = 613536 +The total amount of wall time = 138.689183 +The maximum resident set size (KB) = 611544 Test 139 datm_cdeps_stochy_gefs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/datm_cdeps_ciceC_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/datm_cdeps_ciceC_cfsr Checking test 140 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.316413 -The maximum resident set size (KB) = 736464 +The total amount of wall time = 141.572428 +The maximum resident set size (KB) = 736152 Test 140 datm_cdeps_ciceC_cfsr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/datm_cdeps_bulk_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/datm_cdeps_bulk_cfsr Checking test 141 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 142.315535 -The maximum resident set size (KB) = 732172 +The total amount of wall time = 142.086273 +The maximum resident set size (KB) = 731260 Test 141 datm_cdeps_bulk_cfsr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/datm_cdeps_bulk_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/datm_cdeps_bulk_gefs Checking test 142 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 134.832154 -The maximum resident set size (KB) = 616888 +The total amount of wall time = 133.674853 +The maximum resident set size (KB) = 620296 Test 142 datm_cdeps_bulk_gefs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/datm_cdeps_mx025_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/datm_cdeps_mx025_cfsr Checking test 143 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4298,14 +4298,14 @@ Checking test 143 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 429.467478 -The maximum resident set size (KB) = 568020 +The total amount of wall time = 433.405339 +The maximum resident set size (KB) = 571736 Test 143 datm_cdeps_mx025_cfsr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/datm_cdeps_mx025_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/datm_cdeps_mx025_gefs Checking test 144 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4314,64 +4314,64 @@ Checking test 144 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 430.605490 -The maximum resident set size (KB) = 547484 +The total amount of wall time = 427.566440 +The maximum resident set size (KB) = 546216 Test 144 datm_cdeps_mx025_gefs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/datm_cdeps_multiple_files_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/datm_cdeps_multiple_files_cfsr Checking test 145 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.358313 -The maximum resident set size (KB) = 734340 +The total amount of wall time = 141.581154 +The maximum resident set size (KB) = 731628 Test 145 datm_cdeps_multiple_files_cfsr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/datm_cdeps_3072x1536_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/datm_cdeps_3072x1536_cfsr Checking test 146 datm_cdeps_3072x1536_cfsr 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 = 256.775533 -The maximum resident set size (KB) = 1980356 +The total amount of wall time = 256.743173 +The maximum resident set size (KB) = 1984292 Test 146 datm_cdeps_3072x1536_cfsr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_gfs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/datm_cdeps_gfs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/datm_cdeps_gfs Checking test 147 datm_cdeps_gfs 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 = 256.459404 -The maximum resident set size (KB) = 1980680 +The total amount of wall time = 256.618902 +The maximum resident set size (KB) = 1979900 Test 147 datm_cdeps_gfs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/datm_cdeps_control_cfsr_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/datm_cdeps_control_cfsr_faster Checking test 148 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.093547 -The maximum resident set size (KB) = 732832 +The total amount of wall time = 141.558059 +The maximum resident set size (KB) = 723168 Test 148 datm_cdeps_control_cfsr_faster PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/datm_cdeps_lnd_gswp3 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/datm_cdeps_lnd_gswp3 Checking test 149 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4380,14 +4380,14 @@ Checking test 149 datm_cdeps_lnd_gswp3 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.059304 -The maximum resident set size (KB) = 226840 +The total amount of wall time = 22.317171 +The maximum resident set size (KB) = 223892 Test 149 datm_cdeps_lnd_gswp3 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/datm_cdeps_lnd_gswp3_rst +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/datm_cdeps_lnd_gswp3_rst Checking test 150 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4396,14 +4396,14 @@ Checking test 150 datm_cdeps_lnd_gswp3_rst 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.270256 -The maximum resident set size (KB) = 232468 +The total amount of wall time = 27.282673 +The maximum resident set size (KB) = 229720 Test 150 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_atmlnd_sbs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_p8_atmlnd_sbs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_p8_atmlnd_sbs Checking test 151 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4488,14 +4488,14 @@ Checking test 151 control_p8_atmlnd_sbs 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 = 234.336783 -The maximum resident set size (KB) = 1540108 +The total amount of wall time = 235.536376 +The maximum resident set size (KB) = 1537080 Test 151 control_p8_atmlnd_sbs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_atmwav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/control_atmwav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_atmwav Checking test 152 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4539,14 +4539,14 @@ Checking test 152 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -The total amount of wall time = 91.504838 -The maximum resident set size (KB) = 539624 +The total amount of wall time = 91.923576 +The maximum resident set size (KB) = 543720 Test 152 control_atmwav PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/atmaero_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/atmaero_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/atmaero_control_p8 Checking test 153 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4590,14 +4590,14 @@ Checking test 153 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 245.163053 -The maximum resident set size (KB) = 2813832 +The total amount of wall time = 245.369333 +The maximum resident set size (KB) = 2814140 Test 153 atmaero_control_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/atmaero_control_p8_rad -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/atmaero_control_p8_rad +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/atmaero_control_p8_rad Checking test 154 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4641,14 +4641,14 @@ Checking test 154 atmaero_control_p8_rad results .... 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.936632 -The maximum resident set size (KB) = 2876048 +The total amount of wall time = 282.452363 +The maximum resident set size (KB) = 2877168 Test 154 atmaero_control_p8_rad PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/atmaero_control_p8_rad_micro +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/atmaero_control_p8_rad_micro Checking test 155 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4692,14 +4692,14 @@ Checking test 155 atmaero_control_p8_rad_micro results .... 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.302760 -The maximum resident set size (KB) = 2884628 +The total amount of wall time = 288.100152 +The maximum resident set size (KB) = 2883024 Test 155 atmaero_control_p8_rad_micro PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_atmaq -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/regional_atmaq +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/regional_atmaq Checking test 156 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4715,14 +4715,14 @@ Checking test 156 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 678.700772 -The maximum resident set size (KB) = 1260240 +The total amount of wall time = 681.846667 +The maximum resident set size (KB) = 1261656 Test 156 regional_atmaq PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_atmaq_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/regional_atmaq_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/regional_atmaq_debug Checking test 157 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4736,14 +4736,14 @@ Checking test 157 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1357.371598 -The maximum resident set size (KB) = 1294444 +The total amount of wall time = 1291.962206 +The maximum resident set size (KB) = 1286184 Test 157 regional_atmaq_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_atmaq_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135385/regional_atmaq_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/regional_atmaq_faster Checking test 158 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4759,12 +4759,12 @@ Checking test 158 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 633.025785 -The maximum resident set size (KB) = 1257788 +The total amount of wall time = 636.001682 +The maximum resident set size (KB) = 1254812 Test 158 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Mon Apr 3 15:52:38 UTC 2023 -Elapsed time: 01h:41m:02s. Have a nice day! +Tue Apr 4 18:38:58 UTC 2023 +Elapsed time: 01h:41m:40s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index fa0fe1674e5..a5e20f38a5d 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,21 +1,21 @@ -Sun Apr 2 19:46:04 MDT 2023 +Tue Apr 4 14:38:30 MDT 2023 Start Regression test -Compile 001 elapsed time 380 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 401 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 857 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 197 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 375 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 1086 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 855 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 853 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 640 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 001 elapsed time 377 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 391 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 845 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 188 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 376 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 1082 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 843 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 842 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 667 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON Compile 010 elapsed time 568 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 357 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 012 elapsed time 294 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 343 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 012 elapsed time 298 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/control_c48 -working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/control_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/control_c48 Checking test 001 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -54,14 +54,14 @@ Checking test 001 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 821.382548 -0:The maximum resident set size (KB) = 679724 +0:The total amount of wall time = 820.599777 +0:The maximum resident set size (KB) = 680316 Test 001 control_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/control_stochy -working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/control_stochy +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/control_stochy Checking test 002 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -72,14 +72,14 @@ Checking test 002 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 177.669428 -0:The maximum resident set size (KB) = 443200 +0:The total amount of wall time = 178.319353 +0:The maximum resident set size (KB) = 443268 Test 002 control_stochy PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/control_ras -working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/control_ras +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/control_ras Checking test 003 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -90,14 +90,14 @@ Checking test 003 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 293.917961 +0:The total amount of wall time = 294.857407 0:The maximum resident set size (KB) = 452048 Test 003 control_ras PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/control_p8 -working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/control_p8 Checking test 004 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -144,14 +144,14 @@ Checking test 004 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 310.597668 -0:The maximum resident set size (KB) = 1226276 +0:The total amount of wall time = 309.429318 +0:The maximum resident set size (KB) = 1224872 Test 004 control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rap_control -working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/rap_control Checking test 005 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -198,14 +198,14 @@ Checking test 005 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 709.949782 -0:The maximum resident set size (KB) = 792004 +0:The total amount of wall time = 713.080435 +0:The maximum resident set size (KB) = 792120 Test 005 rap_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rap_control -working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/rap_decomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/rap_decomp Checking test 006 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -252,14 +252,14 @@ Checking test 006 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 722.076410 -0:The maximum resident set size (KB) = 791768 +0:The total amount of wall time = 718.908863 +0:The maximum resident set size (KB) = 791504 Test 006 rap_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rap_control -working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/rap_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/rap_2threads Checking test 007 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -306,14 +306,14 @@ Checking test 007 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 654.455663 -0:The maximum resident set size (KB) = 865708 +0:The total amount of wall time = 653.566586 +0:The maximum resident set size (KB) = 865916 Test 007 rap_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rap_control -working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/rap_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/rap_restart Checking test 008 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -352,14 +352,14 @@ Checking test 008 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 355.199421 -0:The maximum resident set size (KB) = 540312 +0:The total amount of wall time = 353.713698 +0:The maximum resident set size (KB) = 539216 Test 008 rap_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/rap_sfcdiff Checking test 009 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -406,14 +406,14 @@ Checking test 009 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 710.942566 -0:The maximum resident set size (KB) = 792244 +0:The total amount of wall time = 713.819644 +0:The maximum resident set size (KB) = 792264 Test 009 rap_sfcdiff PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/rap_sfcdiff_decomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/rap_sfcdiff_decomp Checking test 010 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -460,14 +460,14 @@ Checking test 010 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 721.850591 -0:The maximum resident set size (KB) = 791572 +0:The total amount of wall time = 725.996316 +0:The maximum resident set size (KB) = 791224 Test 010 rap_sfcdiff_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/rap_sfcdiff_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/rap_sfcdiff_restart Checking test 011 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -506,14 +506,14 @@ Checking test 011 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 528.358538 -0:The maximum resident set size (KB) = 544836 +0:The total amount of wall time = 527.544448 +0:The maximum resident set size (KB) = 544200 Test 011 rap_sfcdiff_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/hrrr_control -working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/hrrr_control Checking test 012 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -560,14 +560,14 @@ Checking test 012 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 695.328350 -0:The maximum resident set size (KB) = 789904 +0:The total amount of wall time = 688.455187 +0:The maximum resident set size (KB) = 789496 Test 012 hrrr_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/hrrr_control -working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/hrrr_control_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/hrrr_control_2threads Checking test 013 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -614,14 +614,14 @@ Checking test 013 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 627.235739 -0:The maximum resident set size (KB) = 860192 +0:The total amount of wall time = 626.935624 +0:The maximum resident set size (KB) = 860664 Test 013 hrrr_control_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/hrrr_control -working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/hrrr_control_decomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/hrrr_control_decomp Checking test 014 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -668,14 +668,14 @@ Checking test 014 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 687.659274 -0:The maximum resident set size (KB) = 789164 +0:The total amount of wall time = 692.376646 +0:The maximum resident set size (KB) = 788828 Test 014 hrrr_control_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/hrrr_control -working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/hrrr_control_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/hrrr_control_restart Checking test 015 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -714,14 +714,14 @@ Checking test 015 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 512.255889 -0:The maximum resident set size (KB) = 540640 +0:The total amount of wall time = 511.542659 +0:The maximum resident set size (KB) = 540212 Test 015 hrrr_control_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rrfs_v1beta -working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/rrfs_v1beta +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/rrfs_v1beta Checking test 016 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -768,14 +768,14 @@ Checking test 016 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 706.940753 -0:The maximum resident set size (KB) = 789160 +0:The total amount of wall time = 706.727745 +0:The maximum resident set size (KB) = 789248 Test 016 rrfs_v1beta PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/rrfs_smoke_conus13km_hrrr_warm Checking test 017 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -784,14 +784,14 @@ Checking test 017 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 230.363787 -0:The maximum resident set size (KB) = 636436 +0:The total amount of wall time = 233.678570 +0:The maximum resident set size (KB) = 636556 Test 017 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/rrfs_smoke_conus13km_hrrr_warm_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 018 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -800,14 +800,14 @@ Checking test 018 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 148.724746 -0:The maximum resident set size (KB) = 660668 +0:The total amount of wall time = 147.153086 +0:The maximum resident set size (KB) = 655556 Test 018 rrfs_smoke_conus13km_hrrr_warm_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/rrfs_conus13km_hrrr_warm Checking test 019 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -816,14 +816,14 @@ Checking test 019 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 212.995745 -0:The maximum resident set size (KB) = 615860 +0:The total amount of wall time = 211.279345 +0:The maximum resident set size (KB) = 615468 Test 019 rrfs_conus13km_hrrr_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/rrfs_smoke_conus13km_radar_tten_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/rrfs_smoke_conus13km_radar_tten_warm Checking test 020 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -832,234 +832,234 @@ Checking test 020 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 234.453658 -0:The maximum resident set size (KB) = 639316 +0:The total amount of wall time = 234.482115 +0:The maximum resident set size (KB) = 639336 Test 020 rrfs_smoke_conus13km_radar_tten_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 021 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 110.568057 -0:The maximum resident set size (KB) = 596528 +0:The total amount of wall time = 110.071406 +0:The maximum resident set size (KB) = 596320 Test 021 rrfs_conus13km_hrrr_warm_restart_mismatch PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/control_diag_debug -working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/control_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/control_diag_debug Checking test 022 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 90.103589 -0:The maximum resident set size (KB) = 494968 +0:The total amount of wall time = 83.343818 +0:The maximum resident set size (KB) = 491608 Test 022 control_diag_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/regional_debug -working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/regional_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/regional_debug Checking test 023 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 480.342095 -0:The maximum resident set size (KB) = 570556 +0:The total amount of wall time = 478.997737 +0:The maximum resident set size (KB) = 567248 Test 023 regional_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rap_control_debug -working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/rap_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/rap_control_debug Checking test 024 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 149.863459 -0:The maximum resident set size (KB) = 809304 +0:The total amount of wall time = 145.735045 +0:The maximum resident set size (KB) = 805516 Test 024 rap_control_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/hrrr_control_debug -working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/hrrr_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/hrrr_control_debug Checking test 025 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 148.664768 -0:The maximum resident set size (KB) = 805496 +0:The total amount of wall time = 142.857558 +0:The maximum resident set size (KB) = 801808 Test 025 hrrr_control_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rap_diag_debug -working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/rap_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/rap_diag_debug Checking test 026 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 158.504441 -0:The maximum resident set size (KB) = 891672 +0:The total amount of wall time = 155.309621 +0:The maximum resident set size (KB) = 888500 Test 026 rap_diag_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/rap_noah_sfcdiff_cires_ugwp_debug Checking test 027 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 239.324871 -0:The maximum resident set size (KB) = 807360 +0:The total amount of wall time = 239.835925 +0:The maximum resident set size (KB) = 804184 Test 027 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rap_progcld_thompson_debug -working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/rap_progcld_thompson_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/rap_progcld_thompson_debug Checking test 028 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 150.076881 -0:The maximum resident set size (KB) = 809008 +0:The total amount of wall time = 145.613986 +0:The maximum resident set size (KB) = 805428 Test 028 rap_progcld_thompson_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rrfs_v1beta_debug -working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/rrfs_v1beta_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/rrfs_v1beta_debug Checking test 029 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 148.748984 -0:The maximum resident set size (KB) = 804552 +0:The total amount of wall time = 143.850121 +0:The maximum resident set size (KB) = 800940 Test 029 rrfs_v1beta_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/control_ras_debug -working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/control_ras_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/control_ras_debug Checking test 030 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 85.726989 -0:The maximum resident set size (KB) = 449164 +0:The total amount of wall time = 80.454488 +0:The maximum resident set size (KB) = 446016 Test 030 control_ras_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/control_stochy_debug -working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/control_stochy_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/control_stochy_debug Checking test 031 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 93.889590 -0:The maximum resident set size (KB) = 441672 +0:The total amount of wall time = 88.264750 +0:The maximum resident set size (KB) = 438392 Test 031 control_stochy_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/control_debug_p8 -working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/control_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/control_debug_p8 Checking test 032 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 95.808155 -0:The maximum resident set size (KB) = 1224572 +0:The total amount of wall time = 90.680233 +0:The maximum resident set size (KB) = 1221416 Test 032 control_debug_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 033 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 446.750787 -0:The maximum resident set size (KB) = 644708 +0:The total amount of wall time = 439.492326 +0:The maximum resident set size (KB) = 641612 Test 033 rrfs_smoke_conus13km_hrrr_warm_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 034 rrfs_smoke_conus13km_hrrr_warm_debug_2threads 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.334256 -0:The maximum resident set size (KB) = 669008 +0:The total amount of wall time = 259.042542 +0:The maximum resident set size (KB) = 660612 Test 034 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/rrfs_conus13km_hrrr_warm_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/rrfs_conus13km_hrrr_warm_debug Checking test 035 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 400.708967 -0:The maximum resident set size (KB) = 623644 +0:The total amount of wall time = 398.932235 +0:The maximum resident set size (KB) = 619956 Test 035 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/control_wam_debug -working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/control_wam_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/control_wam_debug Checking test 036 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 144.827467 -0:The maximum resident set size (KB) = 185388 +0:The total amount of wall time = 143.410405 +0:The maximum resident set size (KB) = 182220 Test 036 control_wam_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/rap_control_dyn32_phy32 Checking test 037 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1106,14 +1106,14 @@ Checking test 037 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 702.982134 -0:The maximum resident set size (KB) = 672580 +0:The total amount of wall time = 703.321888 +0:The maximum resident set size (KB) = 672148 Test 037 rap_control_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/hrrr_control_dyn32_phy32 Checking test 038 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1160,14 +1160,14 @@ Checking test 038 hrrr_control_dyn32_phy32 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 = 360.976059 -0:The maximum resident set size (KB) = 671056 +0:The total amount of wall time = 355.128153 +0:The maximum resident set size (KB) = 670720 Test 038 hrrr_control_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/rap_2threads_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/rap_2threads_dyn32_phy32 Checking test 039 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1214,14 +1214,14 @@ Checking test 039 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 659.431580 -0:The maximum resident set size (KB) = 719260 +0:The total amount of wall time = 641.772632 +0:The maximum resident set size (KB) = 719876 Test 039 rap_2threads_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/hrrr_control_2threads_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/hrrr_control_2threads_dyn32_phy32 Checking test 040 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1268,14 +1268,14 @@ Checking test 040 hrrr_control_2threads_dyn32_phy32 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 = 320.049603 -0:The maximum resident set size (KB) = 717092 +0:The total amount of wall time = 317.315899 +0:The maximum resident set size (KB) = 717156 Test 040 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/hrrr_control_decomp_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/hrrr_control_decomp_dyn32_phy32 Checking test 041 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1322,14 +1322,14 @@ Checking test 041 hrrr_control_decomp_dyn32_phy32 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 = 353.533037 -0:The maximum resident set size (KB) = 670452 +0:The total amount of wall time = 353.212610 +0:The maximum resident set size (KB) = 669760 Test 041 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/rap_restart_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/rap_restart_dyn32_phy32 Checking test 042 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1368,14 +1368,14 @@ Checking test 042 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 519.455517 -0:The maximum resident set size (KB) = 511656 +0:The total amount of wall time = 519.634086 +0:The maximum resident set size (KB) = 511388 Test 042 rap_restart_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/hrrr_control_restart_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/hrrr_control_restart_dyn32_phy32 Checking test 043 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1414,14 +1414,14 @@ Checking test 043 hrrr_control_restart_dyn32_phy32 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 = 179.639970 -0:The maximum resident set size (KB) = 507544 +0:The total amount of wall time = 179.670973 +0:The maximum resident set size (KB) = 508448 Test 043 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rap_control_dyn64_phy32 -working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/rap_control_dyn64_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/rap_control_dyn64_phy32 Checking test 044 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1468,56 +1468,56 @@ Checking test 044 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 412.334266 -0:The maximum resident set size (KB) = 693888 +0:The total amount of wall time = 415.751391 +0:The maximum resident set size (KB) = 694208 Test 044 rap_control_dyn64_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/rap_control_debug_dyn32_phy32 Checking test 045 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 149.190540 -0:The maximum resident set size (KB) = 690224 +0:The total amount of wall time = 143.994573 +0:The maximum resident set size (KB) = 687900 Test 045 rap_control_debug_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/hrrr_control_debug_dyn32_phy32 Checking test 046 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 146.525027 -0:The maximum resident set size (KB) = 688496 +0:The total amount of wall time = 140.793065 +0:The maximum resident set size (KB) = 683948 Test 046 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/rap_control_dyn64_phy32_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/rap_control_dyn64_phy32_debug Checking test 047 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 153.785256 -0:The maximum resident set size (KB) = 711012 +0:The total amount of wall time = 147.984731 +0:The maximum resident set size (KB) = 707056 Test 047 rap_control_dyn64_phy32_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/cpld_control_p8 Checking test 048 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1582,14 +1582,14 @@ Checking test 048 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 499.171667 -0:The maximum resident set size (KB) = 3158748 +0:The total amount of wall time = 493.631418 +0:The maximum resident set size (KB) = 3159256 Test 048 cpld_control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/cpld_control_nowave_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/cpld_control_nowave_noaero_p8 Checking test 049 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1651,14 +1651,14 @@ Checking test 049 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 246.717852 -0:The maximum resident set size (KB) = 1240676 +0:The total amount of wall time = 249.826197 +0:The maximum resident set size (KB) = 1240724 Test 049 cpld_control_nowave_noaero_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/cpld_debug_p8 -working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/cpld_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/cpld_debug_p8 Checking test 050 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1711,25 +1711,25 @@ Checking test 050 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 273.826383 -0:The maximum resident set size (KB) = 3177276 +0:The total amount of wall time = 200.293996 +0:The maximum resident set size (KB) = 3173280 Test 050 cpld_debug_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/datm_cdeps_control_cfsr -working dir = /glade/scratch/jongkim/rt-1692-gnu/jongkim/FV3_RT/rt_27302/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/datm_cdeps_control_cfsr Checking test 051 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 172.990006 -0:The maximum resident set size (KB) = 672380 +0:The total amount of wall time = 173.751477 +0:The maximum resident set size (KB) = 671512 Test 051 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Sun Apr 2 20:23:46 MDT 2023 -Elapsed time: 00h:37m:43s. Have a nice day! +Tue Apr 4 15:34:29 MDT 2023 +Elapsed time: 00h:55m:59s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 70bf3732a6c..1806b437737 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,44 +1,42 @@ -Mon Apr 3 07:55:22 MDT 2023 +Wed Apr 5 07:21:39 MDT 2023 Start Regression test -Test 008 compile FAIL - -Compile 001 elapsed time 1382 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 1399 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 1361 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 447 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 400 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 1071 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 1102 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 1758 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 1089 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 980 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 011 elapsed time 925 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 801 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 1303 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 414 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 273 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 001 elapsed time 1402 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1422 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 1374 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 457 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 393 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 1061 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 1067 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 1760 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 1070 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 984 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 011 elapsed time 911 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 814 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 1292 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 408 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 270 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug Compile 016 elapsed time 841 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 841 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 288 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 281 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 1120 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 021 elapsed time 347 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 1572 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 1114 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 017 elapsed time 822 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 281 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 274 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 1130 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 021 elapsed time 346 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 1599 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 1100 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 024 elapsed time 428 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 201 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 429 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 103 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 025 elapsed time 204 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 428 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 111 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile 028 elapsed time 948 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile 029 elapsed time 988 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 891 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 871 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 307 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 1033 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 893 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 862 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 312 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 1055 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8_mixedmode -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/cpld_control_p8_mixedmode +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -103,14 +101,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 321.018608 -0:The maximum resident set size (KB) = 2698364 +0:The total amount of wall time = 321.137180 +0:The maximum resident set size (KB) = 2698376 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_gfsv17 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/cpld_control_gfsv17 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -174,14 +172,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 280.756647 -0:The maximum resident set size (KB) = 1437628 +0:The total amount of wall time = 282.381043 +0:The maximum resident set size (KB) = 1437668 Test 002 cpld_control_gfsv17 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -246,14 +244,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 321.783469 -0:The maximum resident set size (KB) = 2715024 +0:The total amount of wall time = 322.676671 +0:The maximum resident set size (KB) = 2715496 Test 003 cpld_control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/cpld_restart_p8 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -306,14 +304,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 183.899337 -0:The maximum resident set size (KB) = 2576596 +0:The total amount of wall time = 179.497691 +0:The maximum resident set size (KB) = 2576524 Test 004 cpld_restart_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/cpld_control_qr_p8 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -378,14 +376,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 324.347370 -0:The maximum resident set size (KB) = 2719464 +0:The total amount of wall time = 327.987561 +0:The maximum resident set size (KB) = 2719752 Test 005 cpld_control_qr_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/cpld_restart_qr_p8 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -438,14 +436,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 191.105457 -0:The maximum resident set size (KB) = 2593760 +0:The total amount of wall time = 194.039081 +0:The maximum resident set size (KB) = 2593712 Test 006 cpld_restart_qr_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/cpld_2threads_p8 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -498,14 +496,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 251.194233 -0:The maximum resident set size (KB) = 3177724 +0:The total amount of wall time = 249.612234 +0:The maximum resident set size (KB) = 3177832 Test 007 cpld_2threads_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/cpld_decomp_p8 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -558,14 +556,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 321.628724 -0:The maximum resident set size (KB) = 2720412 +0:The total amount of wall time = 324.365028 +0:The maximum resident set size (KB) = 2720216 Test 008 cpld_decomp_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/cpld_mpi_p8 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -618,14 +616,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 275.773539 -0:The maximum resident set size (KB) = 2680568 +0:The total amount of wall time = 273.173568 +0:The maximum resident set size (KB) = 2680708 Test 009 cpld_mpi_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_ciceC_p8 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/cpld_control_ciceC_p8 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -690,14 +688,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 320.727504 -0:The maximum resident set size (KB) = 2715172 +0:The total amount of wall time = 322.791008 +0:The maximum resident set size (KB) = 2715076 Test 010 cpld_control_ciceC_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/cpld_control_c192_p8 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/cpld_control_c192_p8 Checking test 011 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -750,14 +748,14 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -0:The total amount of wall time = 626.605472 -0:The maximum resident set size (KB) = 3350840 +0:The total amount of wall time = 630.123238 +0:The maximum resident set size (KB) = 3352412 Test 011 cpld_control_c192_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/cpld_restart_c192_p8 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/cpld_restart_c192_p8 Checking test 012 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -810,14 +808,14 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -0:The total amount of wall time = 380.835301 -0:The maximum resident set size (KB) = 3275932 +0:The total amount of wall time = 384.008355 +0:The maximum resident set size (KB) = 3276008 Test 012 cpld_restart_c192_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_noaero_p8 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/cpld_control_noaero_p8 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/cpld_control_noaero_p8 Checking test 013 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -881,14 +879,14 @@ Checking test 013 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 292.658879 -0:The maximum resident set size (KB) = 1436276 +0:The total amount of wall time = 281.932646 +0:The maximum resident set size (KB) = 1435796 Test 013 cpld_control_noaero_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/cpld_control_nowave_noaero_p8 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/cpld_control_nowave_noaero_p8 Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -950,14 +948,14 @@ Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 193.519543 -0:The maximum resident set size (KB) = 1453144 +0:The total amount of wall time = 195.123588 +0:The maximum resident set size (KB) = 1453132 Test 014 cpld_control_nowave_noaero_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_debug_p8 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/cpld_debug_p8 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/cpld_debug_p8 Checking test 015 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1010,14 +1008,14 @@ Checking test 015 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 473.669252 -0:The maximum resident set size (KB) = 2786240 +0:The total amount of wall time = 473.788324 +0:The maximum resident set size (KB) = 2786256 Test 015 cpld_debug_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_debug_noaero_p8 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/cpld_debug_noaero_p8 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/cpld_debug_noaero_p8 Checking test 016 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1069,14 +1067,14 @@ Checking test 016 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 348.270260 -0:The maximum resident set size (KB) = 1460536 +0:The total amount of wall time = 349.098175 +0:The maximum resident set size (KB) = 1460448 Test 016 cpld_debug_noaero_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_noaero_p8_agrid -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/cpld_control_noaero_p8_agrid +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/cpld_control_noaero_p8_agrid Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1138,14 +1136,14 @@ Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 253.826707 -0:The maximum resident set size (KB) = 1456872 +0:The total amount of wall time = 253.383462 +0:The maximum resident set size (KB) = 1456916 Test 017 cpld_control_noaero_p8_agrid PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_c48 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/cpld_control_c48 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/cpld_control_c48 Checking test 018 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1195,14 +1193,14 @@ Checking test 018 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 606.540948 -0:The maximum resident set size (KB) = 2586656 +0:The total amount of wall time = 606.355329 +0:The maximum resident set size (KB) = 2586468 Test 018 cpld_control_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/cpld_warmstart_c48 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/cpld_warmstart_c48 Checking test 019 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1252,14 +1250,14 @@ Checking test 019 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -0:The total amount of wall time = 163.878597 -0:The maximum resident set size (KB) = 2601644 +0:The total amount of wall time = 160.899883 +0:The maximum resident set size (KB) = 2601728 Test 019 cpld_warmstart_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/cpld_restart_c48 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/cpld_restart_c48 Checking test 020 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1309,14 +1307,14 @@ Checking test 020 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -0:The total amount of wall time = 84.981085 -0:The maximum resident set size (KB) = 2018956 +0:The total amount of wall time = 84.320303 +0:The maximum resident set size (KB) = 2018996 Test 020 cpld_restart_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_CubedSphereGrid -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_CubedSphereGrid +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_CubedSphereGrid Checking test 021 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1343,28 +1341,28 @@ Checking test 021 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -0:The total amount of wall time = 143.193448 -0:The maximum resident set size (KB) = 454272 +0:The total amount of wall time = 142.242822 +0:The maximum resident set size (KB) = 454236 Test 021 control_CubedSphereGrid PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_CubedSphereGrid_parallel -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_CubedSphereGrid_parallel +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_CubedSphereGrid_parallel Checking test 022 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK -0:The total amount of wall time = 138.360679 -0:The maximum resident set size (KB) = 454196 +0:The total amount of wall time = 139.303421 +0:The maximum resident set size (KB) = 454316 Test 022 control_CubedSphereGrid_parallel PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_latlon -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_latlon +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_latlon Checking test 023 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1375,32 +1373,32 @@ Checking test 023 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 146.285185 -0:The maximum resident set size (KB) = 454400 +0:The total amount of wall time = 147.179208 +0:The maximum resident set size (KB) = 454324 Test 023 control_latlon PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wrtGauss_netcdf_parallel -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_wrtGauss_netcdf_parallel +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_wrtGauss_netcdf_parallel Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 152.131459 -0:The maximum resident set size (KB) = 454592 +0:The total amount of wall time = 146.255723 +0:The maximum resident set size (KB) = 454144 Test 024 control_wrtGauss_netcdf_parallel PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c48 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_c48 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_c48 Checking test 025 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1439,14 +1437,14 @@ Checking test 025 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 444.111808 -0:The maximum resident set size (KB) = 633524 +0:The total amount of wall time = 445.439839 +0:The maximum resident set size (KB) = 633504 Test 025 control_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c192 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_c192 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_c192 Checking test 026 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1457,14 +1455,14 @@ Checking test 026 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 596.775844 -0:The maximum resident set size (KB) = 560340 +0:The total amount of wall time = 592.687492 +0:The maximum resident set size (KB) = 560296 Test 026 control_c192 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c384 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_c384 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_c384 Checking test 027 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1475,14 +1473,14 @@ Checking test 027 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 590.340444 -0:The maximum resident set size (KB) = 899408 +0:The total amount of wall time = 587.230337 +0:The maximum resident set size (KB) = 899416 Test 027 control_c384 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c384gdas -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_c384gdas +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_c384gdas Checking test 028 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1525,14 +1523,14 @@ Checking test 028 control_c384gdas 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 = 516.149382 -0:The maximum resident set size (KB) = 1026800 +0:The total amount of wall time = 515.345418 +0:The maximum resident set size (KB) = 1026748 Test 028 control_c384gdas PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_stochy -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_stochy +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_stochy Checking test 029 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1543,28 +1541,28 @@ Checking test 029 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 97.811063 -0:The maximum resident set size (KB) = 459132 +0:The total amount of wall time = 99.302487 +0:The maximum resident set size (KB) = 459204 Test 029 control_stochy PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_stochy -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_stochy_restart +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_stochy_restart Checking test 030 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 52.757201 -0:The maximum resident set size (KB) = 226520 +0:The total amount of wall time = 52.931530 +0:The maximum resident set size (KB) = 226724 Test 030 control_stochy_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_lndp -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_lndp +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_lndp Checking test 031 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1575,14 +1573,14 @@ Checking test 031 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 89.953334 -0:The maximum resident set size (KB) = 458212 +0:The total amount of wall time = 91.497226 +0:The maximum resident set size (KB) = 458180 Test 031 control_lndp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_iovr4 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_iovr4 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_iovr4 Checking test 032 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1597,14 +1595,14 @@ Checking test 032 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 149.147166 -0:The maximum resident set size (KB) = 454780 +0:The total amount of wall time = 145.035231 +0:The maximum resident set size (KB) = 454240 Test 032 control_iovr4 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_iovr5 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_iovr5 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_iovr5 Checking test 033 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1619,14 +1617,14 @@ Checking test 033 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 148.323931 -0:The maximum resident set size (KB) = 454268 +0:The total amount of wall time = 148.580217 +0:The maximum resident set size (KB) = 454288 Test 033 control_iovr5 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_p8 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_p8 Checking test 034 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1673,14 +1671,14 @@ Checking test 034 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 177.196329 -0:The maximum resident set size (KB) = 1423876 +0:The total amount of wall time = 177.535429 +0:The maximum resident set size (KB) = 1423884 Test 034 control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_restart_p8 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_restart_p8 Checking test 035 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1719,14 +1717,14 @@ Checking test 035 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 95.915221 -0:The maximum resident set size (KB) = 582856 +0:The total amount of wall time = 95.606583 +0:The maximum resident set size (KB) = 582888 Test 035 control_restart_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_qr_p8 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_qr_p8 Checking test 036 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1773,14 +1771,14 @@ Checking test 036 control_qr_p8 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 = 183.290583 -0:The maximum resident set size (KB) = 1427252 +0:The total amount of wall time = 177.579240 +0:The maximum resident set size (KB) = 1427204 Test 036 control_qr_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_restart_qr_p8 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_restart_qr_p8 Checking test 037 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1819,14 +1817,14 @@ Checking test 037 control_restart_qr_p8 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 = 98.786564 -0:The maximum resident set size (KB) = 596884 +0:The total amount of wall time = 98.386638 +0:The maximum resident set size (KB) = 596840 Test 037 control_restart_qr_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_decomp_p8 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_decomp_p8 Checking test 038 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1869,14 +1867,14 @@ Checking test 038 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 186.665266 -0:The maximum resident set size (KB) = 1418400 +0:The total amount of wall time = 188.240563 +0:The maximum resident set size (KB) = 1418364 Test 038 control_decomp_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_2threads_p8 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_2threads_p8 Checking test 039 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1919,14 +1917,14 @@ Checking test 039 control_2threads_p8 results .... Comparing 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.215495 -0:The maximum resident set size (KB) = 1509068 +0:The total amount of wall time = 172.911058 +0:The maximum resident set size (KB) = 1510196 Test 039 control_2threads_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_lndp -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_p8_lndp +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_p8_lndp Checking test 040 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1945,14 +1943,14 @@ Checking test 040 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -0:The total amount of wall time = 334.123175 -0:The maximum resident set size (KB) = 1424944 +0:The total amount of wall time = 326.627746 +0:The maximum resident set size (KB) = 1424932 Test 040 control_p8_lndp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_rrtmgp -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_p8_rrtmgp +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_p8_rrtmgp Checking test 041 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1999,14 +1997,14 @@ Checking test 041 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 245.252211 -0:The maximum resident set size (KB) = 1480228 +0:The total amount of wall time = 247.024743 +0:The maximum resident set size (KB) = 1480252 Test 041 control_p8_rrtmgp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_mynn -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_p8_mynn +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_p8_mynn Checking test 042 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2053,14 +2051,14 @@ Checking test 042 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 185.220956 -0:The maximum resident set size (KB) = 1427892 +0:The total amount of wall time = 181.724408 +0:The maximum resident set size (KB) = 1427936 Test 042 control_p8_mynn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/merra2_thompson -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/merra2_thompson +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/merra2_thompson Checking test 043 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2107,14 +2105,14 @@ Checking test 043 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 209.021884 -0:The maximum resident set size (KB) = 1429712 +0:The total amount of wall time = 207.162754 +0:The maximum resident set size (KB) = 1429664 Test 043 merra2_thompson PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/regional_control +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/regional_control Checking test 044 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2125,28 +2123,28 @@ Checking test 044 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 342.522505 +0:The total amount of wall time = 329.885819 0:The maximum resident set size (KB) = 604760 Test 044 regional_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/regional_restart +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/regional_restart Checking test 045 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 174.575884 -0:The maximum resident set size (KB) = 594208 +0:The total amount of wall time = 176.928235 +0:The maximum resident set size (KB) = 594136 Test 045 regional_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/regional_control_qr +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/regional_control_qr Checking test 046 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2157,28 +2155,28 @@ Checking test 046 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 349.583600 -0:The maximum resident set size (KB) = 604804 +0:The total amount of wall time = 343.389652 +0:The maximum resident set size (KB) = 604792 Test 046 regional_control_qr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/regional_restart_qr +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/regional_restart_qr Checking test 047 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 175.192567 -0:The maximum resident set size (KB) = 594100 +0:The total amount of wall time = 174.284573 +0:The maximum resident set size (KB) = 594132 Test 047 regional_restart_qr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/regional_decomp +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/regional_decomp Checking test 048 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2189,14 +2187,14 @@ Checking test 048 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 359.757054 -0:The maximum resident set size (KB) = 598180 +0:The total amount of wall time = 357.391937 +0:The maximum resident set size (KB) = 598188 Test 048 regional_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/regional_2threads +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/regional_2threads Checking test 049 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2207,14 +2205,14 @@ Checking test 049 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 202.951735 -0:The maximum resident set size (KB) = 611416 +0:The total amount of wall time = 201.131767 +0:The maximum resident set size (KB) = 611472 Test 049 regional_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_noquilt -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/regional_noquilt +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/regional_noquilt Checking test 050 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2222,28 +2220,28 @@ Checking test 050 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -0:The total amount of wall time = 364.619542 -0:The maximum resident set size (KB) = 599088 +0:The total amount of wall time = 366.008375 +0:The maximum resident set size (KB) = 599036 Test 050 regional_noquilt PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_netcdf_parallel -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/regional_netcdf_parallel +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/regional_netcdf_parallel Checking test 051 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK -0:The total amount of wall time = 327.188584 -0:The maximum resident set size (KB) = 597264 +0:The total amount of wall time = 337.452700 +0:The maximum resident set size (KB) = 596676 Test 051 regional_netcdf_parallel PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/regional_2dwrtdecomp +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/regional_2dwrtdecomp Checking test 052 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2254,14 +2252,14 @@ Checking test 052 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 341.211799 -0:The maximum resident set size (KB) = 604832 +0:The total amount of wall time = 342.014175 +0:The maximum resident set size (KB) = 604808 Test 052 regional_2dwrtdecomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/fv3_regional_wofs -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/regional_wofs +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/regional_wofs Checking test 053 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2272,14 +2270,14 @@ Checking test 053 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 435.316594 -0:The maximum resident set size (KB) = 275808 +0:The total amount of wall time = 415.564332 +0:The maximum resident set size (KB) = 275804 Test 053 regional_wofs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/rap_control +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/rap_control Checking test 054 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2326,14 +2324,14 @@ Checking test 054 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 480.072617 -0:The maximum resident set size (KB) = 823544 +0:The total amount of wall time = 479.881069 +0:The maximum resident set size (KB) = 823552 Test 054 rap_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_spp_sppt_shum_skeb -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/regional_spp_sppt_shum_skeb +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/regional_spp_sppt_shum_skeb Checking test 055 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2344,14 +2342,14 @@ Checking test 055 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 260.060739 -0:The maximum resident set size (KB) = 952032 +0:The total amount of wall time = 257.077538 +0:The maximum resident set size (KB) = 952320 Test 055 regional_spp_sppt_shum_skeb PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/rap_decomp +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/rap_decomp Checking test 056 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2398,14 +2396,14 @@ Checking test 056 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 496.448497 -0:The maximum resident set size (KB) = 822316 +0:The total amount of wall time = 500.994130 +0:The maximum resident set size (KB) = 822484 Test 056 rap_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/rap_2threads +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/rap_2threads Checking test 057 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2452,14 +2450,14 @@ Checking test 057 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 454.844511 -0:The maximum resident set size (KB) = 894048 +0:The total amount of wall time = 459.707423 +0:The maximum resident set size (KB) = 893424 Test 057 rap_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/rap_restart +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/rap_restart Checking test 058 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2498,14 +2496,14 @@ Checking test 058 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 243.492165 -0:The maximum resident set size (KB) = 571648 +0:The total amount of wall time = 240.075199 +0:The maximum resident set size (KB) = 571268 Test 058 rap_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/rap_sfcdiff Checking test 059 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2552,14 +2550,14 @@ Checking test 059 rap_sfcdiff results .... Comparing 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.665131 -0:The maximum resident set size (KB) = 823668 +0:The total amount of wall time = 471.917613 +0:The maximum resident set size (KB) = 823436 Test 059 rap_sfcdiff PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/rap_sfcdiff_decomp +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/rap_sfcdiff_decomp Checking test 060 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2606,14 +2604,14 @@ Checking test 060 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 502.713340 -0:The maximum resident set size (KB) = 822316 +0:The total amount of wall time = 506.638140 +0:The maximum resident set size (KB) = 822356 Test 060 rap_sfcdiff_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/rap_sfcdiff_restart +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/rap_sfcdiff_restart Checking test 061 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2652,14 +2650,14 @@ Checking test 061 rap_sfcdiff_restart results .... Comparing 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.493648 -0:The maximum resident set size (KB) = 570772 +0:The total amount of wall time = 354.495469 +0:The maximum resident set size (KB) = 570564 Test 061 rap_sfcdiff_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/hrrr_control +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/hrrr_control Checking test 062 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2706,14 +2704,14 @@ Checking test 062 hrrr_control results .... Comparing 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.559897 -0:The maximum resident set size (KB) = 820736 +0:The total amount of wall time = 454.770807 +0:The maximum resident set size (KB) = 820916 Test 062 hrrr_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/hrrr_control_decomp +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/hrrr_control_decomp Checking test 063 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2760,14 +2758,14 @@ Checking test 063 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 482.175955 -0:The maximum resident set size (KB) = 820708 +0:The total amount of wall time = 483.203411 +0:The maximum resident set size (KB) = 820688 Test 063 hrrr_control_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/hrrr_control_2threads +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/hrrr_control_2threads Checking test 064 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2814,14 +2812,14 @@ Checking test 064 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 441.212743 -0:The maximum resident set size (KB) = 888420 +0:The total amount of wall time = 437.076515 +0:The maximum resident set size (KB) = 888436 Test 064 hrrr_control_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/hrrr_control_restart +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/hrrr_control_restart Checking test 065 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2860,14 +2858,14 @@ Checking test 065 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 341.711004 -0:The maximum resident set size (KB) = 566612 +0:The total amount of wall time = 345.549158 +0:The maximum resident set size (KB) = 566392 Test 065 hrrr_control_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1beta -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/rrfs_v1beta +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/rrfs_v1beta Checking test 066 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2914,14 +2912,14 @@ Checking test 066 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 467.017236 -0:The maximum resident set size (KB) = 820060 +0:The total amount of wall time = 473.785125 +0:The maximum resident set size (KB) = 819404 Test 066 rrfs_v1beta PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1nssl -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/rrfs_v1nssl +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/rrfs_v1nssl Checking test 067 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2936,14 +2934,14 @@ Checking test 067 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 574.350129 -0:The maximum resident set size (KB) = 509320 +0:The total amount of wall time = 587.200263 +0:The maximum resident set size (KB) = 508812 Test 067 rrfs_v1nssl PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/rrfs_v1nssl_nohailnoccn +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/rrfs_v1nssl_nohailnoccn Checking test 068 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2958,14 +2956,14 @@ Checking test 068 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 557.657843 -0:The maximum resident set size (KB) = 502612 +0:The total amount of wall time = 570.254322 +0:The maximum resident set size (KB) = 502700 Test 068 rrfs_v1nssl_nohailnoccn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/rrfs_smoke_conus13km_hrrr_warm Checking test 069 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2974,14 +2972,14 @@ Checking test 069 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 151.611495 -0:The maximum resident set size (KB) = 675328 +0:The total amount of wall time = 152.632535 +0:The maximum resident set size (KB) = 675300 Test 069 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/rrfs_smoke_conus13km_hrrr_warm_2threads +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 070 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2990,14 +2988,14 @@ Checking test 070 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 92.381950 -0:The maximum resident set size (KB) = 694576 +0:The total amount of wall time = 93.027499 +0:The maximum resident set size (KB) = 693976 Test 070 rrfs_smoke_conus13km_hrrr_warm_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/rrfs_conus13km_hrrr_warm Checking test 071 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3006,14 +3004,14 @@ Checking test 071 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 136.420492 -0:The maximum resident set size (KB) = 654108 +0:The total amount of wall time = 136.917599 +0:The maximum resident set size (KB) = 654128 Test 071 rrfs_conus13km_hrrr_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/rrfs_smoke_conus13km_radar_tten_warm +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/rrfs_smoke_conus13km_radar_tten_warm Checking test 072 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3022,26 +3020,26 @@ Checking test 072 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 152.880461 -0:The maximum resident set size (KB) = 677976 +0:The total amount of wall time = 153.473826 +0:The maximum resident set size (KB) = 677960 Test 072 rrfs_smoke_conus13km_radar_tten_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 073 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 70.747897 -0:The maximum resident set size (KB) = 632268 +0:The total amount of wall time = 71.114562 +0:The maximum resident set size (KB) = 632232 Test 073 rrfs_conus13km_hrrr_warm_restart_mismatch PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmg -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_csawmg +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_csawmg Checking test 074 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3052,14 +3050,14 @@ Checking test 074 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 398.188737 -0:The maximum resident set size (KB) = 527724 +0:The total amount of wall time = 402.007846 +0:The maximum resident set size (KB) = 527728 Test 074 control_csawmg PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmgt -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_csawmgt +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_csawmgt Checking test 075 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3070,14 +3068,14 @@ Checking test 075 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 394.556936 -0:The maximum resident set size (KB) = 528352 +0:The total amount of wall time = 374.515397 +0:The maximum resident set size (KB) = 528360 Test 075 control_csawmgt PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_ras -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_ras +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_ras Checking test 076 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3088,26 +3086,26 @@ Checking test 076 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 204.961793 -0:The maximum resident set size (KB) = 491224 +0:The total amount of wall time = 206.368983 +0:The maximum resident set size (KB) = 491280 Test 076 control_ras PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wam -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_wam +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_wam Checking test 077 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -0:The total amount of wall time = 129.370662 -0:The maximum resident set size (KB) = 206484 +0:The total amount of wall time = 128.924786 +0:The maximum resident set size (KB) = 206268 Test 077 control_wam PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_faster -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_p8_faster +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_p8_faster Checking test 078 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3154,14 +3152,14 @@ Checking test 078 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 173.987495 -0:The maximum resident set size (KB) = 1423824 +0:The total amount of wall time = 167.788403 +0:The maximum resident set size (KB) = 1423772 Test 078 control_p8_faster PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control_faster -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/regional_control_faster +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/regional_control_faster Checking test 079 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3172,56 +3170,56 @@ Checking test 079 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 326.610025 -0:The maximum resident set size (KB) = 604612 +0:The total amount of wall time = 320.128547 +0:The maximum resident set size (KB) = 604608 Test 079 regional_control_faster PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 080 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 897.724326 -0:The maximum resident set size (KB) = 709660 +0:The total amount of wall time = 893.379856 +0:The maximum resident set size (KB) = 709744 Test 080 rrfs_smoke_conus13km_hrrr_warm_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 081 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 518.178929 -0:The maximum resident set size (KB) = 729476 +0:The total amount of wall time = 514.974699 +0:The maximum resident set size (KB) = 729596 Test 081 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/rrfs_conus13km_hrrr_warm_debug +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/rrfs_conus13km_hrrr_warm_debug Checking test 082 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 797.233909 -0:The maximum resident set size (KB) = 688296 +0:The total amount of wall time = 791.244085 +0:The maximum resident set size (KB) = 688224 Test 082 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_CubedSphereGrid_debug -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_CubedSphereGrid_debug +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_CubedSphereGrid_debug Checking test 083 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3248,334 +3246,334 @@ Checking test 083 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -0:The total amount of wall time = 176.219711 -0:The maximum resident set size (KB) = 623116 +0:The total amount of wall time = 174.760886 +0:The maximum resident set size (KB) = 622476 Test 083 control_CubedSphereGrid_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_wrtGauss_netcdf_parallel_debug +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_wrtGauss_netcdf_parallel_debug Checking test 084 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 163.232020 -0:The maximum resident set size (KB) = 620592 +0:The total amount of wall time = 165.182402 +0:The maximum resident set size (KB) = 620604 Test 084 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_stochy_debug -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_stochy_debug +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_stochy_debug Checking test 085 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 184.751016 -0:The maximum resident set size (KB) = 626144 +0:The total amount of wall time = 183.835581 +0:The maximum resident set size (KB) = 626064 Test 085 control_stochy_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_lndp_debug -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_lndp_debug +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_lndp_debug Checking test 086 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 165.481248 -0:The maximum resident set size (KB) = 624896 +0:The total amount of wall time = 165.823979 +0:The maximum resident set size (KB) = 624912 Test 086 control_lndp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmg_debug -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_csawmg_debug +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_csawmg_debug Checking test 087 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 259.709204 +0:The total amount of wall time = 255.636941 0:The maximum resident set size (KB) = 671428 Test 087 control_csawmg_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmgt_debug -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_csawmgt_debug +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_csawmgt_debug Checking test 088 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 257.286572 -0:The maximum resident set size (KB) = 672372 +0:The total amount of wall time = 252.497551 +0:The maximum resident set size (KB) = 672348 Test 088 control_csawmgt_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_ras_debug -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_ras_debug +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_ras_debug Checking test 089 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 172.746553 -0:The maximum resident set size (KB) = 635208 +0:The total amount of wall time = 167.195048 +0:The maximum resident set size (KB) = 635204 Test 089 control_ras_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_diag_debug -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_diag_debug +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_diag_debug Checking test 090 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 174.285989 -0:The maximum resident set size (KB) = 680288 +0:The total amount of wall time = 169.336971 +0:The maximum resident set size (KB) = 679936 Test 090 control_diag_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_debug_p8 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_debug_p8 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_debug_p8 Checking test 091 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 184.474068 -0:The maximum resident set size (KB) = 1447360 +0:The total amount of wall time = 183.495324 +0:The maximum resident set size (KB) = 1447344 Test 091 control_debug_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_debug -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/regional_debug +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/regional_debug Checking test 092 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 1046.393608 -0:The maximum resident set size (KB) = 630816 +0:The total amount of wall time = 1040.007761 +0:The maximum resident set size (KB) = 630768 Test 092 regional_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/rap_control_debug +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/rap_control_debug Checking test 093 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 301.691945 -0:The maximum resident set size (KB) = 991820 +0:The total amount of wall time = 295.464097 +0:The maximum resident set size (KB) = 991692 Test 093 rap_control_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_debug -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/hrrr_control_debug +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/hrrr_control_debug Checking test 094 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 293.731134 -0:The maximum resident set size (KB) = 989104 +0:The total amount of wall time = 290.703305 +0:The maximum resident set size (KB) = 989204 Test 094 hrrr_control_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/rap_unified_drag_suite_debug +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/rap_unified_drag_suite_debug Checking test 095 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 300.073565 -0:The maximum resident set size (KB) = 991768 +0:The total amount of wall time = 299.258328 +0:The maximum resident set size (KB) = 991712 Test 095 rap_unified_drag_suite_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_diag_debug -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/rap_diag_debug +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/rap_diag_debug Checking test 096 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 309.656294 -0:The maximum resident set size (KB) = 1075096 +0:The total amount of wall time = 308.634237 +0:The maximum resident set size (KB) = 1074872 Test 096 rap_diag_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/rap_cires_ugwp_debug +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/rap_cires_ugwp_debug Checking test 097 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 301.233647 -0:The maximum resident set size (KB) = 991112 +0:The total amount of wall time = 301.984344 +0:The maximum resident set size (KB) = 990864 Test 097 rap_cires_ugwp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/rap_unified_ugwp_debug +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/rap_unified_ugwp_debug Checking test 098 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 308.342979 -0:The maximum resident set size (KB) = 992592 +0:The total amount of wall time = 302.611340 +0:The maximum resident set size (KB) = 991796 Test 098 rap_unified_ugwp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_lndp_debug -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/rap_lndp_debug +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/rap_lndp_debug Checking test 099 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 298.152165 -0:The maximum resident set size (KB) = 992548 +0:The total amount of wall time = 298.395932 +0:The maximum resident set size (KB) = 992444 Test 099 rap_lndp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_flake_debug -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/rap_flake_debug +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/rap_flake_debug Checking test 100 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 297.616574 -0:The maximum resident set size (KB) = 991720 +0:The total amount of wall time = 296.040198 +0:The maximum resident set size (KB) = 991680 Test 100 rap_flake_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_progcld_thompson_debug -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/rap_progcld_thompson_debug +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/rap_progcld_thompson_debug Checking test 101 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 296.728556 -0:The maximum resident set size (KB) = 991692 +0:The total amount of wall time = 296.156020 +0:The maximum resident set size (KB) = 991680 Test 101 rap_progcld_thompson_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_noah_debug -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/rap_noah_debug +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/rap_noah_debug Checking test 102 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 289.942507 -0:The maximum resident set size (KB) = 989540 +0:The total amount of wall time = 290.392572 +0:The maximum resident set size (KB) = 989424 Test 102 rap_noah_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff_debug -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/rap_sfcdiff_debug +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/rap_sfcdiff_debug Checking test 103 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 296.789694 -0:The maximum resident set size (KB) = 991492 +0:The total amount of wall time = 300.636610 +0:The maximum resident set size (KB) = 991516 Test 103 rap_sfcdiff_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/rap_noah_sfcdiff_cires_ugwp_debug Checking test 104 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 487.237012 -0:The maximum resident set size (KB) = 990336 +0:The total amount of wall time = 483.528110 +0:The maximum resident set size (KB) = 990340 Test 104 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1beta_debug -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/rrfs_v1beta_debug +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/rrfs_v1beta_debug Checking test 105 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 293.577667 -0:The maximum resident set size (KB) = 988424 +0:The total amount of wall time = 291.611883 +0:The maximum resident set size (KB) = 988308 Test 105 rrfs_v1beta_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wam_debug -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_wam_debug +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_wam_debug Checking test 106 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 296.745280 -0:The maximum resident set size (KB) = 240332 +0:The total amount of wall time = 297.544334 +0:The maximum resident set size (KB) = 240124 Test 106 control_wam_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3586,14 +3584,14 @@ Checking test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 246.276073 -0:The maximum resident set size (KB) = 851052 +0:The total amount of wall time = 244.662621 +0:The maximum resident set size (KB) = 850984 Test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/rap_control_dyn32_phy32 Checking test 108 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3640,14 +3638,14 @@ Checking test 108 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 394.618756 -0:The maximum resident set size (KB) = 707760 +0:The total amount of wall time = 400.513751 +0:The maximum resident set size (KB) = 707792 Test 108 rap_control_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/hrrr_control_dyn32_phy32 Checking test 109 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3694,14 +3692,14 @@ Checking test 109 hrrr_control_dyn32_phy32 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 = 204.666811 -0:The maximum resident set size (KB) = 706420 +0:The total amount of wall time = 208.093849 +0:The maximum resident set size (KB) = 706460 Test 109 hrrr_control_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/rap_2threads_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/rap_2threads_dyn32_phy32 Checking test 110 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3748,14 +3746,14 @@ Checking test 110 rap_2threads_dyn32_phy32 results .... Comparing 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.963679 -0:The maximum resident set size (KB) = 759496 +0:The total amount of wall time = 382.886839 +0:The maximum resident set size (KB) = 759488 Test 110 rap_2threads_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/hrrr_control_2threads_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/hrrr_control_2threads_dyn32_phy32 Checking test 111 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3802,14 +3800,14 @@ Checking test 111 hrrr_control_2threads_dyn32_phy32 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 = 198.736870 -0:The maximum resident set size (KB) = 756904 +0:The total amount of wall time = 197.766082 +0:The maximum resident set size (KB) = 756364 Test 111 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/hrrr_control_decomp_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/hrrr_control_decomp_dyn32_phy32 Checking test 112 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3856,14 +3854,14 @@ Checking test 112 hrrr_control_decomp_dyn32_phy32 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 = 221.546232 -0:The maximum resident set size (KB) = 704412 +0:The total amount of wall time = 216.189777 +0:The maximum resident set size (KB) = 704320 Test 112 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/rap_restart_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/rap_restart_dyn32_phy32 Checking test 113 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3902,14 +3900,14 @@ Checking test 113 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 294.097855 -0:The maximum resident set size (KB) = 544468 +0:The total amount of wall time = 294.825189 +0:The maximum resident set size (KB) = 544552 Test 113 rap_restart_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/hrrr_control_restart_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/hrrr_control_restart_dyn32_phy32 Checking test 114 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3948,14 +3946,14 @@ Checking test 114 hrrr_control_restart_dyn32_phy32 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 = 107.580176 -0:The maximum resident set size (KB) = 537560 +0:The total amount of wall time = 107.139310 +0:The maximum resident set size (KB) = 537324 Test 114 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn64_phy32 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/rap_control_dyn64_phy32 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/rap_control_dyn64_phy32 Checking test 115 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4002,81 +4000,81 @@ Checking test 115 rap_control_dyn64_phy32 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 = 272.444827 -0:The maximum resident set size (KB) = 730496 +0:The total amount of wall time = 271.431834 +0:The maximum resident set size (KB) = 730872 Test 115 rap_control_dyn64_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/rap_control_debug_dyn32_phy32 Checking test 116 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 295.897807 -0:The maximum resident set size (KB) = 878144 +0:The total amount of wall time = 289.811275 +0:The maximum resident set size (KB) = 877912 Test 116 rap_control_debug_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/hrrr_control_debug_dyn32_phy32 Checking test 117 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 291.526902 -0:The maximum resident set size (KB) = 875956 +0:The total amount of wall time = 286.678889 +0:The maximum resident set size (KB) = 875864 Test 117 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/rap_control_dyn64_phy32_debug +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/rap_control_dyn64_phy32_debug Checking test 118 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 299.472788 -0:The maximum resident set size (KB) = 895000 +0:The total amount of wall time = 295.062317 +0:The maximum resident set size (KB) = 894980 Test 118 rap_control_dyn64_phy32_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/hafs_regional_atm +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/hafs_regional_atm Checking test 119 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -0:The total amount of wall time = 260.559560 -0:The maximum resident set size (KB) = 742252 +0:The total amount of wall time = 260.515452 +0:The maximum resident set size (KB) = 742872 Test 119 hafs_regional_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/hafs_regional_atm_thompson_gfdlsf +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/hafs_regional_atm_thompson_gfdlsf Checking test 120 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -0:The total amount of wall time = 295.025206 -0:The maximum resident set size (KB) = 1100012 +0:The total amount of wall time = 286.507125 +0:The maximum resident set size (KB) = 1099796 Test 120 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_ocn -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/hafs_regional_atm_ocn +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/hafs_regional_atm_ocn Checking test 121 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4085,14 +4083,14 @@ Checking test 121 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 455.192770 -0:The maximum resident set size (KB) = 740944 +0:The total amount of wall time = 454.204147 +0:The maximum resident set size (KB) = 740940 Test 121 hafs_regional_atm_ocn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_wav -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/hafs_regional_atm_wav +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/hafs_regional_atm_wav Checking test 122 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4101,14 +4099,14 @@ Checking test 122 hafs_regional_atm_wav 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 = 1063.511316 -0:The maximum resident set size (KB) = 768960 +0:The total amount of wall time = 1063.932625 +0:The maximum resident set size (KB) = 768892 Test 122 hafs_regional_atm_wav PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_ocn_wav -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/hafs_regional_atm_ocn_wav +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/hafs_regional_atm_ocn_wav Checking test 123 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4119,28 +4117,28 @@ Checking test 123 hafs_regional_atm_ocn_wav 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 = 1094.683601 -0:The maximum resident set size (KB) = 793104 +0:The total amount of wall time = 1109.817702 +0:The maximum resident set size (KB) = 792272 Test 123 hafs_regional_atm_ocn_wav PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_1nest_atm -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/hafs_regional_1nest_atm +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/hafs_regional_1nest_atm Checking test 124 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 374.587788 -0:The maximum resident set size (KB) = 300736 +0:The total amount of wall time = 375.837009 +0:The maximum resident set size (KB) = 300240 Test 124 hafs_regional_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/hafs_regional_telescopic_2nests_atm +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/hafs_regional_telescopic_2nests_atm Checking test 125 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4149,28 +4147,28 @@ Checking test 125 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -0:The total amount of wall time = 428.124458 -0:The maximum resident set size (KB) = 320264 +0:The total amount of wall time = 430.117462 +0:The maximum resident set size (KB) = 320400 Test 125 hafs_regional_telescopic_2nests_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_global_1nest_atm -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/hafs_global_1nest_atm +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/hafs_global_1nest_atm Checking test 126 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 171.932162 -0:The maximum resident set size (KB) = 214180 +0:The total amount of wall time = 172.493207 +0:The maximum resident set size (KB) = 214440 Test 126 hafs_global_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_global_multiple_4nests_atm -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/hafs_global_multiple_4nests_atm +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/hafs_global_multiple_4nests_atm Checking test 127 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4188,14 +4186,14 @@ Checking test 127 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -0:The total amount of wall time = 484.892247 -0:The maximum resident set size (KB) = 300240 +0:The total amount of wall time = 481.055078 +0:The maximum resident set size (KB) = 302540 Test 127 hafs_global_multiple_4nests_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/hafs_regional_specified_moving_1nest_atm +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/hafs_regional_specified_moving_1nest_atm Checking test 128 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4204,28 +4202,28 @@ Checking test 128 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -0:The total amount of wall time = 240.751910 -0:The maximum resident set size (KB) = 317936 +0:The total amount of wall time = 239.623153 +0:The maximum resident set size (KB) = 317732 Test 128 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/hafs_regional_storm_following_1nest_atm +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/hafs_regional_storm_following_1nest_atm Checking test 129 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 227.430924 -0:The maximum resident set size (KB) = 318400 +0:The total amount of wall time = 227.855172 +0:The maximum resident set size (KB) = 318424 Test 129 hafs_regional_storm_following_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/hafs_regional_storm_following_1nest_atm_ocn +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/hafs_regional_storm_following_1nest_atm_ocn Checking test 130 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4234,42 +4232,42 @@ Checking test 130 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -0:The total amount of wall time = 279.903777 -0:The maximum resident set size (KB) = 376124 +0:The total amount of wall time = 282.661546 +0:The maximum resident set size (KB) = 376092 Test 130 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_global_storm_following_1nest_atm -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/hafs_global_storm_following_1nest_atm +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/hafs_global_storm_following_1nest_atm Checking test 131 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 67.125011 -0:The maximum resident set size (KB) = 233296 +0:The total amount of wall time = 66.405303 +0:The maximum resident set size (KB) = 233228 Test 131 hafs_global_storm_following_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 132 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 826.567695 -0:The maximum resident set size (KB) = 409072 +0:The total amount of wall time = 820.813293 +0:The maximum resident set size (KB) = 409192 Test 132 hafs_regional_storm_following_1nest_atm_ocn_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 133 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4280,14 +4278,14 @@ Checking test 133 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -0:The total amount of wall time = 716.790689 -0:The maximum resident set size (KB) = 426600 +0:The total amount of wall time = 728.494522 +0:The maximum resident set size (KB) = 427132 Test 133 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_docn -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/hafs_regional_docn +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/hafs_regional_docn Checking test 134 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4295,14 +4293,14 @@ Checking test 134 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 378.353398 -0:The maximum resident set size (KB) = 755540 +0:The total amount of wall time = 390.354770 +0:The maximum resident set size (KB) = 755644 Test 134 hafs_regional_docn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_docn_oisst -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/hafs_regional_docn_oisst +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/hafs_regional_docn_oisst Checking test 135 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4310,131 +4308,131 @@ Checking test 135 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 392.773487 -0:The maximum resident set size (KB) = 735224 +0:The total amount of wall time = 384.793086 +0:The maximum resident set size (KB) = 734820 Test 135 hafs_regional_docn_oisst PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_datm_cdeps -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/hafs_regional_datm_cdeps +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/hafs_regional_datm_cdeps Checking test 136 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -0:The total amount of wall time = 1160.652538 -0:The maximum resident set size (KB) = 887248 +0:The total amount of wall time = 1270.316973 +0:The maximum resident set size (KB) = 887816 Test 136 hafs_regional_datm_cdeps PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/datm_cdeps_control_cfsr +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/datm_cdeps_control_cfsr Checking test 137 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 167.960899 -0:The maximum resident set size (KB) = 727708 +0:The total amount of wall time = 167.131182 +0:The maximum resident set size (KB) = 716760 Test 137 datm_cdeps_control_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/datm_cdeps_restart_cfsr +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/datm_cdeps_restart_cfsr Checking test 138 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 100.923811 -0:The maximum resident set size (KB) = 715936 +0:The total amount of wall time = 97.734442 +0:The maximum resident set size (KB) = 715920 Test 138 datm_cdeps_restart_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_gefs -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/datm_cdeps_control_gefs +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/datm_cdeps_control_gefs Checking test 139 datm_cdeps_control_gefs 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 = 160.846763 -0:The maximum resident set size (KB) = 607508 +0:The total amount of wall time = 160.563474 +0:The maximum resident set size (KB) = 607524 Test 139 datm_cdeps_control_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_iau_gefs -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/datm_cdeps_iau_gefs +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/datm_cdeps_iau_gefs Checking test 140 datm_cdeps_iau_gefs 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 = 163.209346 +0:The total amount of wall time = 159.997009 0:The maximum resident set size (KB) = 607496 Test 140 datm_cdeps_iau_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_stochy_gefs -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/datm_cdeps_stochy_gefs +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/datm_cdeps_stochy_gefs Checking test 141 datm_cdeps_stochy_gefs 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 = 163.830525 -0:The maximum resident set size (KB) = 607500 +0:The total amount of wall time = 158.966890 +0:The maximum resident set size (KB) = 607488 Test 141 datm_cdeps_stochy_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_ciceC_cfsr -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/datm_cdeps_ciceC_cfsr +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/datm_cdeps_ciceC_cfsr Checking test 142 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 167.775543 -0:The maximum resident set size (KB) = 716688 +0:The total amount of wall time = 163.011154 +0:The maximum resident set size (KB) = 716724 Test 142 datm_cdeps_ciceC_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_bulk_cfsr -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/datm_cdeps_bulk_cfsr +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/datm_cdeps_bulk_cfsr Checking test 143 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 167.876101 -0:The maximum resident set size (KB) = 716696 +0:The total amount of wall time = 168.337924 +0:The maximum resident set size (KB) = 727816 Test 143 datm_cdeps_bulk_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_bulk_gefs -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/datm_cdeps_bulk_gefs +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/datm_cdeps_bulk_gefs Checking test 144 datm_cdeps_bulk_gefs 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.505139 -0:The maximum resident set size (KB) = 607468 +0:The total amount of wall time = 160.044128 +0:The maximum resident set size (KB) = 607508 Test 144 datm_cdeps_bulk_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_mx025_cfsr -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/datm_cdeps_mx025_cfsr +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/datm_cdeps_mx025_cfsr Checking test 145 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4443,14 +4441,14 @@ Checking test 145 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 419.366060 -0:The maximum resident set size (KB) = 514440 +0:The total amount of wall time = 635.713472 +0:The maximum resident set size (KB) = 514376 Test 145 datm_cdeps_mx025_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_mx025_gefs -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/datm_cdeps_mx025_gefs +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/datm_cdeps_mx025_gefs Checking test 146 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4459,77 +4457,77 @@ Checking test 146 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 414.294541 -0:The maximum resident set size (KB) = 494788 +0:The total amount of wall time = 399.815293 +0:The maximum resident set size (KB) = 494756 Test 146 datm_cdeps_mx025_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/datm_cdeps_multiple_files_cfsr +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/datm_cdeps_multiple_files_cfsr Checking test 147 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 161.603854 -0:The maximum resident set size (KB) = 716748 +0:The total amount of wall time = 166.580329 +0:The maximum resident set size (KB) = 727796 Test 147 datm_cdeps_multiple_files_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/datm_cdeps_3072x1536_cfsr +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/datm_cdeps_3072x1536_cfsr Checking test 148 datm_cdeps_3072x1536_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 241.479613 -0:The maximum resident set size (KB) = 1940300 +0:The total amount of wall time = 268.591926 +0:The maximum resident set size (KB) = 1942044 Test 148 datm_cdeps_3072x1536_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_gfs -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/datm_cdeps_gfs +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/datm_cdeps_gfs Checking test 149 datm_cdeps_gfs 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 = 240.458291 -0:The maximum resident set size (KB) = 1933664 +0:The total amount of wall time = 255.404729 +0:The maximum resident set size (KB) = 1942032 Test 149 datm_cdeps_gfs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_debug_cfsr -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/datm_cdeps_debug_cfsr +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/datm_cdeps_debug_cfsr Checking test 150 datm_cdeps_debug_cfsr 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 = 457.195281 -0:The maximum resident set size (KB) = 706672 +0:The total amount of wall time = 458.091805 +0:The maximum resident set size (KB) = 706676 Test 150 datm_cdeps_debug_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr_faster -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/datm_cdeps_control_cfsr_faster +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/datm_cdeps_control_cfsr_faster Checking test 151 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 166.612110 -0:The maximum resident set size (KB) = 727792 +0:The total amount of wall time = 161.503214 +0:The maximum resident set size (KB) = 716732 Test 151 datm_cdeps_control_cfsr_faster PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/datm_cdeps_lnd_gswp3 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/datm_cdeps_lnd_gswp3 Checking test 152 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4538,14 +4536,14 @@ Checking test 152 datm_cdeps_lnd_gswp3 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 = 10.257046 -0:The maximum resident set size (KB) = 208228 +0:The total amount of wall time = 10.817644 +0:The maximum resident set size (KB) = 208284 Test 152 datm_cdeps_lnd_gswp3 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/datm_cdeps_lnd_gswp3_rst +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/datm_cdeps_lnd_gswp3_rst Checking test 153 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4554,14 +4552,14 @@ Checking test 153 datm_cdeps_lnd_gswp3_rst 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 = 15.509588 -0:The maximum resident set size (KB) = 208268 +0:The total amount of wall time = 18.171549 +0:The maximum resident set size (KB) = 208244 Test 153 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_atmlnd_sbs -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_p8_atmlnd_sbs +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_p8_atmlnd_sbs Checking test 154 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4646,14 +4644,14 @@ Checking test 154 control_p8_atmlnd_sbs 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 = 233.664393 -0:The maximum resident set size (KB) = 1462940 +0:The total amount of wall time = 236.480164 +0:The maximum resident set size (KB) = 1462952 Test 154 control_p8_atmlnd_sbs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_atmwav -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/control_atmwav +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_atmwav Checking test 155 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4697,14 +4695,14 @@ Checking test 155 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -0:The total amount of wall time = 100.180884 -0:The maximum resident set size (KB) = 475236 +0:The total amount of wall time = 99.475172 +0:The maximum resident set size (KB) = 474672 Test 155 control_atmwav PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/atmaero_control_p8 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/atmaero_control_p8 +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/atmaero_control_p8 Checking test 156 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4748,14 +4746,14 @@ Checking test 156 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 253.249726 +0:The total amount of wall time = 252.529039 0:The maximum resident set size (KB) = 2704032 Test 156 atmaero_control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/atmaero_control_p8_rad -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/atmaero_control_p8_rad +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/atmaero_control_p8_rad Checking test 157 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4799,14 +4797,14 @@ Checking test 157 atmaero_control_p8_rad results .... Comparing 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.542351 -0:The maximum resident set size (KB) = 2758052 +0:The total amount of wall time = 304.076076 +0:The maximum resident set size (KB) = 2758200 Test 157 atmaero_control_p8_rad PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/atmaero_control_p8_rad_micro -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/atmaero_control_p8_rad_micro +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/atmaero_control_p8_rad_micro Checking test 158 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4850,14 +4848,14 @@ Checking test 158 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 310.140681 -0:The maximum resident set size (KB) = 2764484 +0:The total amount of wall time = 308.769709 +0:The maximum resident set size (KB) = 2764536 Test 158 atmaero_control_p8_rad_micro PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_atmaq -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/regional_atmaq +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/regional_atmaq Checking test 159 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4873,14 +4871,14 @@ Checking test 159 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -0:The total amount of wall time = 741.578007 -0:The maximum resident set size (KB) = 999528 +0:The total amount of wall time = 748.768065 +0:The maximum resident set size (KB) = 999408 Test 159 regional_atmaq PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_atmaq_faster -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_8336/regional_atmaq_faster +working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/regional_atmaq_faster Checking test 160 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4896,12 +4894,12 @@ Checking test 160 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -0:The total amount of wall time = 697.408164 -0:The maximum resident set size (KB) = 999356 +0:The total amount of wall time = 697.431372 +0:The maximum resident set size (KB) = 999452 Test 160 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Mon Apr 3 09:35:47 MDT 2023 -Elapsed time: 01h:40m:25s. Have a nice day! +Wed Apr 5 08:45:59 MDT 2023 +Elapsed time: 01h:24m:20s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index d2948742c11..604e316f6f2 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,42 +1,42 @@ -Sun Apr 2 09:24:39 EDT 2023 +Tue Apr 4 16:31:44 EDT 2023 Start Regression test -Compile 001 elapsed time 915 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 915 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 824 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 353 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 334 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 782 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 782 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 1046 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 820 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 746 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 011 elapsed time 666 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 625 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 841 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 272 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 219 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 655 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 684 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 222 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 235 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 706 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 001 elapsed time 795 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 861 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 775 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 302 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 267 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 733 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 707 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 984 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 748 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 705 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 650 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 621 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 856 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 241 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 186 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 617 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 633 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 202 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 193 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 697 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 021 elapsed time 244 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 888 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 710 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 024 elapsed time 282 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 167 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 291 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 103 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 674 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 671 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 693 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 621 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 231 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 785 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 022 elapsed time 865 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 670 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 024 elapsed time 251 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 158 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 259 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 101 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 660 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 658 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 629 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 615 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 217 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 767 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8_mixedmode -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/cpld_control_p8_mixedmode +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -101,14 +101,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 337.379104 - 0: The maximum resident set size (KB) = 1533360 + 0: The total amount of wall time = 357.180392 + 0: The maximum resident set size (KB) = 1532748 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_gfsv17 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/cpld_control_gfsv17 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -172,14 +172,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 243.804098 - 0: The maximum resident set size (KB) = 1443808 + 0: The total amount of wall time = 268.740152 + 0: The maximum resident set size (KB) = 1443748 Test 002 cpld_control_gfsv17 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/cpld_control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -244,14 +244,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 375.275648 - 0: The maximum resident set size (KB) = 1567108 + 0: The total amount of wall time = 412.901047 + 0: The maximum resident set size (KB) = 1567064 Test 003 cpld_control_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/cpld_restart_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -304,14 +304,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 221.913359 - 0: The maximum resident set size (KB) = 1018000 + 0: The total amount of wall time = 248.523058 + 0: The maximum resident set size (KB) = 1018076 Test 004 cpld_restart_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/cpld_control_qr_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -376,14 +376,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 386.958238 - 0: The maximum resident set size (KB) = 1578516 + 0: The total amount of wall time = 400.865522 + 0: The maximum resident set size (KB) = 1577372 Test 005 cpld_control_qr_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/cpld_restart_qr_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -436,14 +436,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 234.547171 - 0: The maximum resident set size (KB) = 1031216 + 0: The total amount of wall time = 245.151541 + 0: The maximum resident set size (KB) = 1031252 Test 006 cpld_restart_qr_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/cpld_2threads_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -496,14 +496,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 396.835696 - 0: The maximum resident set size (KB) = 1762064 + 0: The total amount of wall time = 426.065732 + 0: The maximum resident set size (KB) = 1762264 Test 007 cpld_2threads_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/cpld_decomp_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -556,14 +556,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 377.292994 - 0: The maximum resident set size (KB) = 1562028 + 0: The total amount of wall time = 404.907887 + 0: The maximum resident set size (KB) = 1562448 Test 008 cpld_decomp_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/cpld_mpi_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -616,14 +616,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 313.068124 - 0: The maximum resident set size (KB) = 1526904 + 0: The total amount of wall time = 340.140300 + 0: The maximum resident set size (KB) = 1526800 Test 009 cpld_mpi_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_bmark_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/cpld_bmark_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/cpld_bmark_p8 Checking test 010 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -671,14 +671,14 @@ Checking test 010 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 880.657538 - 0: The maximum resident set size (KB) = 2502660 + 0: The total amount of wall time = 900.381377 + 0: The maximum resident set size (KB) = 2503784 Test 010 cpld_bmark_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_bmark_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/cpld_restart_bmark_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/cpld_restart_bmark_p8 Checking test 011 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -726,14 +726,14 @@ Checking test 011 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 655.415980 - 0: The maximum resident set size (KB) = 2323520 + 0: The total amount of wall time = 689.236425 + 0: The maximum resident set size (KB) = 2328580 Test 011 cpld_restart_bmark_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_noaero_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/cpld_control_noaero_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/cpld_control_noaero_p8 Checking test 012 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -797,14 +797,14 @@ Checking test 012 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 289.252843 - 0: The maximum resident set size (KB) = 1441076 + 0: The total amount of wall time = 308.979168 + 0: The maximum resident set size (KB) = 1441460 Test 012 cpld_control_noaero_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_c96_noaero_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/cpld_control_nowave_noaero_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/cpld_control_nowave_noaero_p8 Checking test 013 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -866,14 +866,14 @@ Checking test 013 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 296.679556 - 0: The maximum resident set size (KB) = 1475292 + 0: The total amount of wall time = 316.439413 + 0: The maximum resident set size (KB) = 1475200 Test 013 cpld_control_nowave_noaero_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_debug_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/cpld_debug_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/cpld_debug_p8 Checking test 014 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -926,14 +926,14 @@ Checking test 014 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 594.321638 - 0: The maximum resident set size (KB) = 1603436 + 0: The total amount of wall time = 550.382163 + 0: The maximum resident set size (KB) = 1595408 Test 014 cpld_debug_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_debug_noaero_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/cpld_debug_noaero_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/cpld_debug_noaero_p8 Checking test 015 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -985,14 +985,14 @@ Checking test 015 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 402.331892 - 0: The maximum resident set size (KB) = 1441804 + 0: The total amount of wall time = 388.829217 + 0: The maximum resident set size (KB) = 1441620 Test 015 cpld_debug_noaero_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_noaero_p8_agrid -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/cpld_control_noaero_p8_agrid +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/cpld_control_noaero_p8_agrid Checking test 016 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1054,14 +1054,14 @@ Checking test 016 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 298.330136 - 0: The maximum resident set size (KB) = 1478176 + 0: The total amount of wall time = 326.975937 + 0: The maximum resident set size (KB) = 1477684 Test 016 cpld_control_noaero_p8_agrid PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_c48 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/cpld_control_c48 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/cpld_control_c48 Checking test 017 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1111,14 +1111,14 @@ Checking test 017 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 604.869699 + 0: The total amount of wall time = 600.385255 0: The maximum resident set size (KB) = 2575148 Test 017 cpld_control_c48 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_warmstart_c48 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/cpld_warmstart_c48 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/cpld_warmstart_c48 Checking test 018 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1168,14 +1168,14 @@ Checking test 018 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 160.794785 - 0: The maximum resident set size (KB) = 2588648 + 0: The total amount of wall time = 161.780587 + 0: The maximum resident set size (KB) = 2575104 Test 018 cpld_warmstart_c48 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_warmstart_c48 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/cpld_restart_c48 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/cpld_restart_c48 Checking test 019 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1225,14 +1225,14 @@ Checking test 019 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 85.028201 - 0: The maximum resident set size (KB) = 2007272 + 0: The total amount of wall time = 85.475828 + 0: The maximum resident set size (KB) = 2007552 Test 019 cpld_restart_c48 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8_faster -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/cpld_control_p8_faster +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/cpld_control_p8_faster Checking test 020 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1297,14 +1297,14 @@ Checking test 020 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 367.618696 - 0: The maximum resident set size (KB) = 1566572 + 0: The total amount of wall time = 393.251096 + 0: The maximum resident set size (KB) = 1567508 Test 020 cpld_control_p8_faster PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_CubedSphereGrid -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_CubedSphereGrid +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_CubedSphereGrid Checking test 021 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1331,28 +1331,28 @@ Checking test 021 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 141.617967 - 0: The maximum resident set size (KB) = 437704 + 0: The total amount of wall time = 144.841005 + 0: The maximum resident set size (KB) = 437712 Test 021 control_CubedSphereGrid PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_CubedSphereGrid_parallel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_CubedSphereGrid_parallel +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_CubedSphereGrid_parallel Checking test 022 control_CubedSphereGrid_parallel 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 = 146.339181 - 0: The maximum resident set size (KB) = 437792 + 0: The total amount of wall time = 157.769566 + 0: The maximum resident set size (KB) = 437808 Test 022 control_CubedSphereGrid_parallel PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_latlon -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_latlon +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_latlon Checking test 023 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1363,14 +1363,14 @@ Checking test 023 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 147.509240 - 0: The maximum resident set size (KB) = 437732 + 0: The total amount of wall time = 147.976662 + 0: The maximum resident set size (KB) = 437876 Test 023 control_latlon PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_wrtGauss_netcdf_parallel +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_wrtGauss_netcdf_parallel Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1381,14 +1381,14 @@ Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 148.462769 - 0: The maximum resident set size (KB) = 437716 + 0: The total amount of wall time = 167.631238 + 0: The maximum resident set size (KB) = 437868 Test 024 control_wrtGauss_netcdf_parallel PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c48 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_c48 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_c48 Checking test 025 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1427,14 +1427,14 @@ Checking test 025 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 422.458628 -0: The maximum resident set size (KB) = 634784 +0: The total amount of wall time = 421.708761 +0: The maximum resident set size (KB) = 634276 Test 025 control_c48 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c192 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_c192 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_c192 Checking test 026 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1445,14 +1445,14 @@ Checking test 026 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 579.449446 - 0: The maximum resident set size (KB) = 544692 + 0: The total amount of wall time = 586.148834 + 0: The maximum resident set size (KB) = 544192 Test 026 control_c192 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c384 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_c384 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_c384 Checking test 027 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1463,14 +1463,14 @@ Checking test 027 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1101.496469 - 0: The maximum resident set size (KB) = 823444 + 0: The total amount of wall time = 1114.684260 + 0: The maximum resident set size (KB) = 823104 Test 027 control_c384 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c384gdas -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_c384gdas +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_c384gdas Checking test 028 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1513,14 +1513,14 @@ Checking test 028 control_c384gdas 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 = 937.409324 - 0: The maximum resident set size (KB) = 954444 + 0: The total amount of wall time = 943.439122 + 0: The maximum resident set size (KB) = 954560 Test 028 control_c384gdas PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_stochy -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_stochy +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_stochy Checking test 029 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1531,28 +1531,28 @@ Checking test 029 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 107.873376 - 0: The maximum resident set size (KB) = 441372 + 0: The total amount of wall time = 111.855983 + 0: The maximum resident set size (KB) = 441376 Test 029 control_stochy PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_stochy -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_stochy_restart +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_stochy_restart Checking test 030 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 56.848472 - 0: The maximum resident set size (KB) = 195708 + 0: The total amount of wall time = 52.785540 + 0: The maximum resident set size (KB) = 195600 Test 030 control_stochy_restart PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_lndp -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_lndp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_lndp Checking test 031 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1563,14 +1563,14 @@ Checking test 031 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 88.530562 - 0: The maximum resident set size (KB) = 441016 + 0: The total amount of wall time = 95.102561 + 0: The maximum resident set size (KB) = 441084 Test 031 control_lndp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_iovr4 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_iovr4 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_iovr4 Checking test 032 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1585,14 +1585,14 @@ Checking test 032 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 145.189935 - 0: The maximum resident set size (KB) = 437784 + 0: The total amount of wall time = 154.849317 + 0: The maximum resident set size (KB) = 437760 Test 032 control_iovr4 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_iovr5 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_iovr5 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_iovr5 Checking test 033 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1607,14 +1607,14 @@ Checking test 033 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 146.690051 + 0: The total amount of wall time = 152.691041 0: The maximum resident set size (KB) = 437672 Test 033 control_iovr5 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_p8 Checking test 034 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1661,14 +1661,14 @@ Checking test 034 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 199.435120 - 0: The maximum resident set size (KB) = 1380124 + 0: The total amount of wall time = 205.295758 + 0: The maximum resident set size (KB) = 1380156 Test 034 control_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_restart_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_restart_p8 Checking test 035 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1707,14 +1707,14 @@ Checking test 035 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 109.339861 - 0: The maximum resident set size (KB) = 556640 + 0: The total amount of wall time = 113.245528 + 0: The maximum resident set size (KB) = 556620 Test 035 control_restart_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_qr_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_qr_p8 Checking test 036 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1761,14 +1761,14 @@ Checking test 036 control_qr_p8 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 = 187.484069 - 0: The maximum resident set size (KB) = 1383216 + 0: The total amount of wall time = 202.713852 + 0: The maximum resident set size (KB) = 1383276 Test 036 control_qr_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_restart_qr_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_restart_qr_p8 Checking test 037 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1807,14 +1807,14 @@ Checking test 037 control_restart_qr_p8 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 = 105.297828 - 0: The maximum resident set size (KB) = 581436 + 0: The total amount of wall time = 110.063643 + 0: The maximum resident set size (KB) = 581544 Test 037 control_restart_qr_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_decomp_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_decomp_p8 Checking test 038 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1857,14 +1857,14 @@ Checking test 038 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 199.119694 + 0: The total amount of wall time = 211.887641 0: The maximum resident set size (KB) = 1373992 Test 038 control_decomp_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_2threads_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_2threads_p8 Checking test 039 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1907,14 +1907,14 @@ Checking test 039 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 181.332271 - 0: The maximum resident set size (KB) = 1463960 + 0: The total amount of wall time = 189.451820 + 0: The maximum resident set size (KB) = 1463948 Test 039 control_2threads_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_lndp -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_p8_lndp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_p8_lndp Checking test 040 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1933,14 +1933,14 @@ Checking test 040 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 332.113721 - 0: The maximum resident set size (KB) = 1381152 + 0: The total amount of wall time = 354.499699 + 0: The maximum resident set size (KB) = 1381216 Test 040 control_p8_lndp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_rrtmgp -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_p8_rrtmgp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_p8_rrtmgp Checking test 041 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1987,14 +1987,14 @@ Checking test 041 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 256.529293 - 0: The maximum resident set size (KB) = 1437508 + 0: The total amount of wall time = 265.683741 + 0: The maximum resident set size (KB) = 1437492 Test 041 control_p8_rrtmgp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_mynn -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_p8_mynn +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_p8_mynn Checking test 042 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2041,14 +2041,14 @@ Checking test 042 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 209.338087 - 0: The maximum resident set size (KB) = 1384144 + 0: The total amount of wall time = 201.595611 + 0: The maximum resident set size (KB) = 1384152 Test 042 control_p8_mynn PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/merra2_thompson -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/merra2_thompson +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/merra2_thompson Checking test 043 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2095,14 +2095,14 @@ Checking test 043 merra2_thompson results .... Comparing 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.998743 - 0: The maximum resident set size (KB) = 1385524 + 0: The total amount of wall time = 227.357841 + 0: The maximum resident set size (KB) = 1385544 Test 043 merra2_thompson PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/regional_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/regional_control Checking test 044 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2113,28 +2113,28 @@ Checking test 044 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 336.527363 - 0: The maximum resident set size (KB) = 578968 + 0: The total amount of wall time = 348.292561 + 0: The maximum resident set size (KB) = 578860 Test 044 regional_control PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/regional_restart +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/regional_restart Checking test 045 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 172.991984 - 0: The maximum resident set size (KB) = 578924 + 0: The total amount of wall time = 184.511074 + 0: The maximum resident set size (KB) = 578400 Test 045 regional_restart PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/regional_control_qr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/regional_control_qr Checking test 046 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2145,28 +2145,28 @@ Checking test 046 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 341.668663 - 0: The maximum resident set size (KB) = 578860 + 0: The total amount of wall time = 341.866450 + 0: The maximum resident set size (KB) = 578908 Test 046 regional_control_qr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/regional_restart_qr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/regional_restart_qr Checking test 047 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 181.600885 - 0: The maximum resident set size (KB) = 578400 + 0: The total amount of wall time = 175.298188 + 0: The maximum resident set size (KB) = 578532 Test 047 regional_restart_qr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/regional_decomp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/regional_decomp Checking test 048 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2177,14 +2177,14 @@ Checking test 048 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 347.356497 - 0: The maximum resident set size (KB) = 580732 + 0: The total amount of wall time = 364.027870 + 0: The maximum resident set size (KB) = 580656 Test 048 regional_decomp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/regional_2threads +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/regional_2threads Checking test 049 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2195,14 +2195,14 @@ Checking test 049 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 199.889137 - 0: The maximum resident set size (KB) = 586140 + 0: The total amount of wall time = 218.914335 + 0: The maximum resident set size (KB) = 586316 Test 049 regional_2threads PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_noquilt -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/regional_noquilt +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/regional_noquilt Checking test 050 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2210,28 +2210,28 @@ Checking test 050 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 358.079215 - 0: The maximum resident set size (KB) = 573140 + 0: The total amount of wall time = 372.945624 + 0: The maximum resident set size (KB) = 573120 Test 050 regional_noquilt PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_netcdf_parallel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/regional_netcdf_parallel +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/regional_netcdf_parallel Checking test 051 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 335.771778 - 0: The maximum resident set size (KB) = 578532 + 0: The total amount of wall time = 351.714845 + 0: The maximum resident set size (KB) = 578608 Test 051 regional_netcdf_parallel PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/regional_2dwrtdecomp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/regional_2dwrtdecomp Checking test 052 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2242,14 +2242,14 @@ Checking test 052 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 341.785629 - 0: The maximum resident set size (KB) = 578896 + 0: The total amount of wall time = 345.656395 + 0: The maximum resident set size (KB) = 578916 Test 052 regional_2dwrtdecomp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/fv3_regional_wofs -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/regional_wofs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/regional_wofs Checking test 053 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2260,14 +2260,14 @@ Checking test 053 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 426.371150 - 0: The maximum resident set size (KB) = 263940 + 0: The total amount of wall time = 420.031323 + 0: The maximum resident set size (KB) = 263888 Test 053 regional_wofs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/rap_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/rap_control Checking test 054 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2314,14 +2314,14 @@ Checking test 054 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 472.430181 - 0: The maximum resident set size (KB) = 808228 + 0: The total amount of wall time = 478.440323 + 0: The maximum resident set size (KB) = 808240 Test 054 rap_control PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_spp_sppt_shum_skeb -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/regional_spp_sppt_shum_skeb +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/regional_spp_sppt_shum_skeb Checking test 055 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2332,14 +2332,14 @@ Checking test 055 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 262.620519 - 0: The maximum resident set size (KB) = 908600 + 0: The total amount of wall time = 284.556770 + 0: The maximum resident set size (KB) = 908332 Test 055 regional_spp_sppt_shum_skeb PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/rap_decomp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/rap_decomp Checking test 056 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2386,14 +2386,14 @@ Checking test 056 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 494.513841 - 0: The maximum resident set size (KB) = 806440 + 0: The total amount of wall time = 504.352836 + 0: The maximum resident set size (KB) = 806300 Test 056 rap_decomp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/rap_2threads +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/rap_2threads Checking test 057 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2440,14 +2440,14 @@ Checking test 057 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 450.545995 - 0: The maximum resident set size (KB) = 875168 + 0: The total amount of wall time = 459.551340 + 0: The maximum resident set size (KB) = 878796 Test 057 rap_2threads PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/rap_restart +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/rap_restart Checking test 058 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2486,14 +2486,14 @@ Checking test 058 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 240.842644 - 0: The maximum resident set size (KB) = 553428 + 0: The total amount of wall time = 247.394099 + 0: The maximum resident set size (KB) = 552612 Test 058 rap_restart PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/rap_sfcdiff +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/rap_sfcdiff Checking test 059 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2540,14 +2540,14 @@ Checking test 059 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 472.640228 - 0: The maximum resident set size (KB) = 807944 + 0: The total amount of wall time = 483.579188 + 0: The maximum resident set size (KB) = 807796 Test 059 rap_sfcdiff PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/rap_sfcdiff_decomp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/rap_sfcdiff_decomp Checking test 060 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2594,14 +2594,14 @@ Checking test 060 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 496.275291 - 0: The maximum resident set size (KB) = 806372 + 0: The total amount of wall time = 511.033553 + 0: The maximum resident set size (KB) = 806436 Test 060 rap_sfcdiff_decomp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/rap_sfcdiff_restart +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/rap_sfcdiff_restart Checking test 061 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2640,14 +2640,14 @@ Checking test 061 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 360.156033 - 0: The maximum resident set size (KB) = 552524 + 0: The total amount of wall time = 356.217382 + 0: The maximum resident set size (KB) = 552204 Test 061 rap_sfcdiff_restart PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/hrrr_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/hrrr_control Checking test 062 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2694,14 +2694,14 @@ Checking test 062 hrrr_control results .... Comparing 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.829252 - 0: The maximum resident set size (KB) = 805980 + 0: The total amount of wall time = 463.499455 + 0: The maximum resident set size (KB) = 806100 Test 062 hrrr_control PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/hrrr_control_decomp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/hrrr_control_decomp Checking test 063 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2748,14 +2748,14 @@ Checking test 063 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 473.522010 - 0: The maximum resident set size (KB) = 805352 + 0: The total amount of wall time = 482.124942 + 0: The maximum resident set size (KB) = 803608 Test 063 hrrr_control_decomp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/hrrr_control_2threads +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/hrrr_control_2threads Checking test 064 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2802,14 +2802,14 @@ Checking test 064 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 431.019473 - 0: The maximum resident set size (KB) = 873164 + 0: The total amount of wall time = 439.558931 + 0: The maximum resident set size (KB) = 875160 Test 064 hrrr_control_2threads PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/hrrr_control_restart +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/hrrr_control_restart Checking test 065 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2848,14 +2848,14 @@ Checking test 065 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 340.062857 - 0: The maximum resident set size (KB) = 547932 + 0: The total amount of wall time = 346.908481 + 0: The maximum resident set size (KB) = 548092 Test 065 hrrr_control_restart PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1beta -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/rrfs_v1beta +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/rrfs_v1beta Checking test 066 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2902,14 +2902,14 @@ Checking test 066 rrfs_v1beta results .... Comparing 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.812312 - 0: The maximum resident set size (KB) = 805184 + 0: The total amount of wall time = 475.954634 + 0: The maximum resident set size (KB) = 804948 Test 066 rrfs_v1beta PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1nssl -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/rrfs_v1nssl +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/rrfs_v1nssl Checking test 067 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2924,14 +2924,14 @@ Checking test 067 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 578.572173 - 0: The maximum resident set size (KB) = 493548 + 0: The total amount of wall time = 583.983896 + 0: The maximum resident set size (KB) = 493524 Test 067 rrfs_v1nssl PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/rrfs_v1nssl_nohailnoccn +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/rrfs_v1nssl_nohailnoccn Checking test 068 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2946,14 +2946,14 @@ Checking test 068 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 559.528961 - 0: The maximum resident set size (KB) = 486176 + 0: The total amount of wall time = 564.678827 + 0: The maximum resident set size (KB) = 486012 Test 068 rrfs_v1nssl_nohailnoccn PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/rrfs_smoke_conus13km_hrrr_warm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/rrfs_smoke_conus13km_hrrr_warm Checking test 069 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2962,14 +2962,14 @@ Checking test 069 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 173.892688 - 0: The maximum resident set size (KB) = 658096 + 0: The total amount of wall time = 188.163477 + 0: The maximum resident set size (KB) = 658000 Test 069 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/rrfs_smoke_conus13km_hrrr_warm_2threads +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 070 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2978,14 +2978,14 @@ Checking test 070 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 106.739012 - 0: The maximum resident set size (KB) = 671480 + 0: The total amount of wall time = 127.933594 + 0: The maximum resident set size (KB) = 671280 Test 070 rrfs_smoke_conus13km_hrrr_warm_2threads PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/rrfs_conus13km_hrrr_warm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/rrfs_conus13km_hrrr_warm Checking test 071 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2994,14 +2994,14 @@ Checking test 071 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 134.842785 - 0: The maximum resident set size (KB) = 634756 + 0: The total amount of wall time = 170.974179 + 0: The maximum resident set size (KB) = 634820 Test 071 rrfs_conus13km_hrrr_warm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/rrfs_smoke_conus13km_radar_tten_warm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/rrfs_smoke_conus13km_radar_tten_warm Checking test 072 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3010,26 +3010,26 @@ Checking test 072 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 159.554214 - 0: The maximum resident set size (KB) = 660952 + 0: The total amount of wall time = 191.033624 + 0: The maximum resident set size (KB) = 660948 Test 072 rrfs_smoke_conus13km_radar_tten_warm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 073 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 81.302413 - 0: The maximum resident set size (KB) = 615240 + 0: The total amount of wall time = 89.622313 + 0: The maximum resident set size (KB) = 615188 Test 073 rrfs_conus13km_hrrr_warm_restart_mismatch PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmgt -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_csawmgt +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_csawmgt Checking test 074 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3040,14 +3040,14 @@ Checking test 074 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 389.662597 - 0: The maximum resident set size (KB) = 502692 + 0: The total amount of wall time = 396.312295 + 0: The maximum resident set size (KB) = 502580 Test 074 control_csawmgt PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_ras -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_ras +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_ras Checking test 075 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3058,26 +3058,26 @@ Checking test 075 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 202.450589 - 0: The maximum resident set size (KB) = 472940 + 0: The total amount of wall time = 201.812690 + 0: The maximum resident set size (KB) = 472880 Test 075 control_ras PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wam -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_wam +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_wam Checking test 076 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 126.240206 - 0: The maximum resident set size (KB) = 188856 + 0: The total amount of wall time = 127.066357 + 0: The maximum resident set size (KB) = 189004 Test 076 control_wam PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_faster -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_p8_faster +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_p8_faster Checking test 077 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3124,14 +3124,14 @@ Checking test 077 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 183.921476 - 0: The maximum resident set size (KB) = 1380068 + 0: The total amount of wall time = 193.763667 + 0: The maximum resident set size (KB) = 1380124 Test 077 control_p8_faster PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control_faster -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/regional_control_faster +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/regional_control_faster Checking test 078 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3142,56 +3142,56 @@ Checking test 078 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 319.549164 - 0: The maximum resident set size (KB) = 578748 + 0: The total amount of wall time = 330.649901 + 0: The maximum resident set size (KB) = 578816 Test 078 regional_control_faster PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 079 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 901.752497 - 0: The maximum resident set size (KB) = 692556 + 0: The total amount of wall time = 912.761522 + 0: The maximum resident set size (KB) = 689924 Test 079 rrfs_smoke_conus13km_hrrr_warm_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 080 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 521.192109 - 0: The maximum resident set size (KB) = 706240 + 0: The total amount of wall time = 531.483036 + 0: The maximum resident set size (KB) = 703388 Test 080 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/rrfs_conus13km_hrrr_warm_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/rrfs_conus13km_hrrr_warm_debug Checking test 081 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 806.701897 - 0: The maximum resident set size (KB) = 667324 + 0: The total amount of wall time = 819.221316 + 0: The maximum resident set size (KB) = 664728 Test 081 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_CubedSphereGrid_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_CubedSphereGrid_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_CubedSphereGrid_debug Checking test 082 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3218,334 +3218,334 @@ Checking test 082 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 169.809115 - 0: The maximum resident set size (KB) = 604484 + 0: The total amount of wall time = 158.319363 + 0: The maximum resident set size (KB) = 601960 Test 082 control_CubedSphereGrid_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_wrtGauss_netcdf_parallel_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_wrtGauss_netcdf_parallel_debug Checking test 083 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 164.146056 - 0: The maximum resident set size (KB) = 602244 + 0: The total amount of wall time = 167.537276 + 0: The maximum resident set size (KB) = 599540 Test 083 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_stochy_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_stochy_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_stochy_debug Checking test 084 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 177.676328 - 0: The maximum resident set size (KB) = 607104 + 0: The total amount of wall time = 179.824942 + 0: The maximum resident set size (KB) = 604636 Test 084 control_stochy_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_lndp_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_lndp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_lndp_debug Checking test 085 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 162.121764 - 0: The maximum resident set size (KB) = 606756 + 0: The total amount of wall time = 162.863078 + 0: The maximum resident set size (KB) = 604080 Test 085 control_lndp_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmg_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_csawmg_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_csawmg_debug Checking test 086 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 259.290194 - 0: The maximum resident set size (KB) = 644028 + 0: The total amount of wall time = 262.566109 + 0: The maximum resident set size (KB) = 641384 Test 086 control_csawmg_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmgt_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_csawmgt_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_csawmgt_debug Checking test 087 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 251.494114 - 0: The maximum resident set size (KB) = 643640 + 0: The total amount of wall time = 259.979746 + 0: The maximum resident set size (KB) = 641000 Test 087 control_csawmgt_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_ras_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_ras_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_ras_debug Checking test 088 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 164.229631 - 0: The maximum resident set size (KB) = 615732 + 0: The total amount of wall time = 160.875246 + 0: The maximum resident set size (KB) = 613120 Test 088 control_ras_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_diag_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_diag_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_diag_debug Checking test 089 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 165.425065 - 0: The maximum resident set size (KB) = 661512 + 0: The total amount of wall time = 163.590737 + 0: The maximum resident set size (KB) = 659080 Test 089 control_diag_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_debug_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_debug_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_debug_p8 Checking test 090 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 179.788969 - 0: The maximum resident set size (KB) = 1382712 + 0: The total amount of wall time = 191.322286 + 0: The maximum resident set size (KB) = 1382744 Test 090 control_debug_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/regional_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/regional_debug Checking test 091 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1049.065429 - 0: The maximum resident set size (KB) = 608436 + 0: The total amount of wall time = 1051.350958 + 0: The maximum resident set size (KB) = 605936 Test 091 regional_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/rap_control_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/rap_control_debug Checking test 092 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 292.177628 - 0: The maximum resident set size (KB) = 973008 + 0: The total amount of wall time = 299.025670 + 0: The maximum resident set size (KB) = 970296 Test 092 rap_control_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/hrrr_control_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/hrrr_control_debug Checking test 093 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 296.805695 - 0: The maximum resident set size (KB) = 971576 + 0: The total amount of wall time = 285.632021 + 0: The maximum resident set size (KB) = 968704 Test 093 hrrr_control_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/rap_unified_drag_suite_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/rap_unified_drag_suite_debug Checking test 094 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 296.155052 - 0: The maximum resident set size (KB) = 973132 + 0: The total amount of wall time = 290.896758 + 0: The maximum resident set size (KB) = 970348 Test 094 rap_unified_drag_suite_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_diag_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/rap_diag_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/rap_diag_debug Checking test 095 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 310.328564 - 0: The maximum resident set size (KB) = 1056764 + 0: The total amount of wall time = 304.702126 + 0: The maximum resident set size (KB) = 1054168 Test 095 rap_diag_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_cires_ugwp_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/rap_cires_ugwp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/rap_cires_ugwp_debug Checking test 096 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 301.325261 - 0: The maximum resident set size (KB) = 972356 + 0: The total amount of wall time = 298.693221 + 0: The maximum resident set size (KB) = 969808 Test 096 rap_cires_ugwp_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_cires_ugwp_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/rap_unified_ugwp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/rap_unified_ugwp_debug Checking test 097 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 300.357436 - 0: The maximum resident set size (KB) = 974428 + 0: The total amount of wall time = 299.342275 + 0: The maximum resident set size (KB) = 971828 Test 097 rap_unified_ugwp_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_lndp_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/rap_lndp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/rap_lndp_debug Checking test 098 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 297.077814 - 0: The maximum resident set size (KB) = 973532 + 0: The total amount of wall time = 297.034272 + 0: The maximum resident set size (KB) = 971044 Test 098 rap_lndp_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_flake_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/rap_flake_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/rap_flake_debug Checking test 099 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 294.651839 - 0: The maximum resident set size (KB) = 973112 + 0: The total amount of wall time = 296.141911 + 0: The maximum resident set size (KB) = 970080 Test 099 rap_flake_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_progcld_thompson_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/rap_progcld_thompson_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/rap_progcld_thompson_debug Checking test 100 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 294.316045 - 0: The maximum resident set size (KB) = 972980 + 0: The total amount of wall time = 292.242607 + 0: The maximum resident set size (KB) = 970364 Test 100 rap_progcld_thompson_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_noah_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/rap_noah_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/rap_noah_debug Checking test 101 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 288.404921 - 0: The maximum resident set size (KB) = 971624 + 0: The total amount of wall time = 287.864525 + 0: The maximum resident set size (KB) = 969048 Test 101 rap_noah_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/rap_sfcdiff_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/rap_sfcdiff_debug Checking test 102 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 294.120618 - 0: The maximum resident set size (KB) = 973104 + 0: The total amount of wall time = 292.058582 + 0: The maximum resident set size (KB) = 970460 Test 102 rap_sfcdiff_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/rap_noah_sfcdiff_cires_ugwp_debug Checking test 103 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 478.092106 - 0: The maximum resident set size (KB) = 971376 + 0: The total amount of wall time = 476.822290 + 0: The maximum resident set size (KB) = 968660 Test 103 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1beta_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/rrfs_v1beta_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/rrfs_v1beta_debug Checking test 104 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 289.297021 - 0: The maximum resident set size (KB) = 969088 + 0: The total amount of wall time = 285.610290 + 0: The maximum resident set size (KB) = 966312 Test 104 rrfs_v1beta_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wam_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_wam_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_wam_debug Checking test 105 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 293.071579 - 0: The maximum resident set size (KB) = 220312 + 0: The total amount of wall time = 293.232611 + 0: The maximum resident set size (KB) = 217500 Test 105 control_wam_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3556,14 +3556,14 @@ Checking test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 255.838639 - 0: The maximum resident set size (KB) = 802920 + 0: The total amount of wall time = 259.940377 + 0: The maximum resident set size (KB) = 802896 Test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn32_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/rap_control_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/rap_control_dyn32_phy32 Checking test 107 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3610,14 +3610,14 @@ Checking test 107 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 409.036427 - 0: The maximum resident set size (KB) = 691312 + 0: The total amount of wall time = 399.552504 + 0: The maximum resident set size (KB) = 691496 Test 107 rap_control_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/hrrr_control_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/hrrr_control_dyn32_phy32 Checking test 108 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3664,14 +3664,14 @@ Checking test 108 hrrr_control_dyn32_phy32 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 = 215.777240 - 0: The maximum resident set size (KB) = 689592 + 0: The total amount of wall time = 215.201719 + 0: The maximum resident set size (KB) = 689764 Test 108 hrrr_control_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn32_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/rap_2threads_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/rap_2threads_dyn32_phy32 Checking test 109 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3718,14 +3718,14 @@ Checking test 109 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 380.264490 - 0: The maximum resident set size (KB) = 743704 + 0: The total amount of wall time = 388.716864 + 0: The maximum resident set size (KB) = 743604 Test 109 rap_2threads_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/hrrr_control_2threads_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/hrrr_control_2threads_dyn32_phy32 Checking test 110 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3772,14 +3772,14 @@ Checking test 110 hrrr_control_2threads_dyn32_phy32 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 = 196.848230 - 0: The maximum resident set size (KB) = 741320 + 0: The total amount of wall time = 204.084899 + 0: The maximum resident set size (KB) = 740752 Test 110 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/hrrr_control_decomp_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/hrrr_control_decomp_dyn32_phy32 Checking test 111 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3826,14 +3826,14 @@ Checking test 111 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 218.725587 - 0: The maximum resident set size (KB) = 688356 + 0: The total amount of wall time = 223.717672 + 0: The maximum resident set size (KB) = 688448 Test 111 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn32_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/rap_restart_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/rap_restart_dyn32_phy32 Checking test 112 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3872,14 +3872,14 @@ Checking test 112 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 299.360446 - 0: The maximum resident set size (KB) = 526376 + 0: The total amount of wall time = 294.665414 + 0: The maximum resident set size (KB) = 525308 Test 112 rap_restart_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/hrrr_control_restart_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/hrrr_control_restart_dyn32_phy32 Checking test 113 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3918,14 +3918,14 @@ Checking test 113 hrrr_control_restart_dyn32_phy32 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 = 107.433071 - 0: The maximum resident set size (KB) = 518596 + 0: The total amount of wall time = 113.886588 + 0: The maximum resident set size (KB) = 518392 Test 113 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn64_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/rap_control_dyn64_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/rap_control_dyn64_phy32 Checking test 114 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3972,81 +3972,81 @@ Checking test 114 rap_control_dyn64_phy32 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 = 264.118057 - 0: The maximum resident set size (KB) = 713632 + 0: The total amount of wall time = 270.868404 + 0: The maximum resident set size (KB) = 713520 Test 114 rap_control_dyn64_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/rap_control_debug_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/rap_control_debug_dyn32_phy32 Checking test 115 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 285.055400 - 0: The maximum resident set size (KB) = 858384 + 0: The total amount of wall time = 288.011917 + 0: The maximum resident set size (KB) = 855384 Test 115 rap_control_debug_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/hrrr_control_debug_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/hrrr_control_debug_dyn32_phy32 Checking test 116 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 284.190927 - 0: The maximum resident set size (KB) = 855864 + 0: The total amount of wall time = 285.768462 + 0: The maximum resident set size (KB) = 852920 Test 116 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/rap_control_dyn64_phy32_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/rap_control_dyn64_phy32_debug Checking test 117 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 290.805339 - 0: The maximum resident set size (KB) = 879348 + 0: The total amount of wall time = 300.235043 + 0: The maximum resident set size (KB) = 876420 Test 117 rap_control_dyn64_phy32_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/hafs_regional_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/hafs_regional_atm Checking test 118 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 275.247951 - 0: The maximum resident set size (KB) = 687560 + 0: The total amount of wall time = 274.687226 + 0: The maximum resident set size (KB) = 688252 Test 118 hafs_regional_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/hafs_regional_atm_thompson_gfdlsf +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/hafs_regional_atm_thompson_gfdlsf Checking test 119 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 315.406136 - 0: The maximum resident set size (KB) = 1039124 + 0: The total amount of wall time = 311.741516 + 0: The maximum resident set size (KB) = 1039580 Test 119 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_ocn -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/hafs_regional_atm_ocn +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/hafs_regional_atm_ocn Checking test 120 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4055,14 +4055,14 @@ Checking test 120 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 450.309166 - 0: The maximum resident set size (KB) = 715640 + 0: The total amount of wall time = 450.842459 + 0: The maximum resident set size (KB) = 715392 Test 120 hafs_regional_atm_ocn PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_wav -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/hafs_regional_atm_wav +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/hafs_regional_atm_wav Checking test 121 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4071,14 +4071,14 @@ Checking test 121 hafs_regional_atm_wav 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 = 949.798387 - 0: The maximum resident set size (KB) = 750040 + 0: The total amount of wall time = 947.300811 + 0: The maximum resident set size (KB) = 750196 Test 121 hafs_regional_atm_wav PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_ocn_wav -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/hafs_regional_atm_ocn_wav +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/hafs_regional_atm_ocn_wav Checking test 122 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4089,28 +4089,28 @@ Checking test 122 hafs_regional_atm_ocn_wav 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 = 1039.785526 + 0: The total amount of wall time = 1043.709817 0: The maximum resident set size (KB) = 766104 Test 122 hafs_regional_atm_ocn_wav PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_1nest_atm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/hafs_regional_1nest_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/hafs_regional_1nest_atm Checking test 123 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 391.723237 - 0: The maximum resident set size (KB) = 278784 + 0: The total amount of wall time = 379.105726 + 0: The maximum resident set size (KB) = 279440 Test 123 hafs_regional_1nest_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/hafs_regional_telescopic_2nests_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/hafs_regional_telescopic_2nests_atm Checking test 124 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4119,28 +4119,28 @@ Checking test 124 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 434.164432 - 0: The maximum resident set size (KB) = 288896 + 0: The total amount of wall time = 432.965275 + 0: The maximum resident set size (KB) = 286732 Test 124 hafs_regional_telescopic_2nests_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_global_1nest_atm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/hafs_global_1nest_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/hafs_global_1nest_atm Checking test 125 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 180.407550 - 0: The maximum resident set size (KB) = 184088 + 0: The total amount of wall time = 175.669917 + 0: The maximum resident set size (KB) = 184344 Test 125 hafs_global_1nest_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_global_multiple_4nests_atm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/hafs_global_multiple_4nests_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/hafs_global_multiple_4nests_atm Checking test 126 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4158,14 +4158,14 @@ Checking test 126 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 490.987154 - 0: The maximum resident set size (KB) = 233164 + 0: The total amount of wall time = 518.867528 + 0: The maximum resident set size (KB) = 232868 Test 126 hafs_global_multiple_4nests_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/hafs_regional_specified_moving_1nest_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/hafs_regional_specified_moving_1nest_atm Checking test 127 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4174,28 +4174,28 @@ Checking test 127 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 241.236595 - 0: The maximum resident set size (KB) = 294512 + 0: The total amount of wall time = 242.919793 + 0: The maximum resident set size (KB) = 296172 Test 127 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/hafs_regional_storm_following_1nest_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/hafs_regional_storm_following_1nest_atm Checking test 128 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 229.982224 - 0: The maximum resident set size (KB) = 294432 + 0: The total amount of wall time = 232.304300 + 0: The maximum resident set size (KB) = 295784 Test 128 hafs_regional_storm_following_1nest_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/hafs_regional_storm_following_1nest_atm_ocn Checking test 129 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4204,42 +4204,42 @@ Checking test 129 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 272.756971 - 0: The maximum resident set size (KB) = 322988 + 0: The total amount of wall time = 273.599583 + 0: The maximum resident set size (KB) = 323088 Test 129 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/hafs_global_storm_following_1nest_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/hafs_global_storm_following_1nest_atm Checking test 130 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 69.675565 - 0: The maximum resident set size (KB) = 203112 + 0: The total amount of wall time = 77.977986 + 0: The maximum resident set size (KB) = 203180 Test 130 hafs_global_storm_following_1nest_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 131 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 781.601900 - 0: The maximum resident set size (KB) = 353772 + 0: The total amount of wall time = 777.363060 + 0: The maximum resident set size (KB) = 348788 Test 131 hafs_regional_storm_following_1nest_atm_ocn_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 132 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4250,14 +4250,14 @@ Checking test 132 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 709.043397 - 0: The maximum resident set size (KB) = 373160 + 0: The total amount of wall time = 710.350544 + 0: The maximum resident set size (KB) = 371904 Test 132 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_docn -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/hafs_regional_docn +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/hafs_regional_docn Checking test 133 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4265,14 +4265,14 @@ Checking test 133 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 398.146771 - 0: The maximum resident set size (KB) = 723860 + 0: The total amount of wall time = 399.794206 + 0: The maximum resident set size (KB) = 724464 Test 133 hafs_regional_docn PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_docn_oisst -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/hafs_regional_docn_oisst +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/hafs_regional_docn_oisst Checking test 134 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4280,131 +4280,131 @@ Checking test 134 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 403.310532 - 0: The maximum resident set size (KB) = 713140 + 0: The total amount of wall time = 405.125127 + 0: The maximum resident set size (KB) = 713236 Test 134 hafs_regional_docn_oisst PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_datm_cdeps -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/hafs_regional_datm_cdeps +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/hafs_regional_datm_cdeps Checking test 135 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 1175.684696 - 0: The maximum resident set size (KB) = 809168 + 0: The total amount of wall time = 1169.622234 + 0: The maximum resident set size (KB) = 808912 Test 135 hafs_regional_datm_cdeps PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/datm_cdeps_control_cfsr Checking test 136 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 169.737674 - 0: The maximum resident set size (KB) = 715796 + 0: The total amount of wall time = 168.974358 + 0: The maximum resident set size (KB) = 715684 Test 136 datm_cdeps_control_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/datm_cdeps_restart_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/datm_cdeps_restart_cfsr Checking test 137 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 96.139395 - 0: The maximum resident set size (KB) = 708888 + 0: The total amount of wall time = 110.459637 + 0: The maximum resident set size (KB) = 697268 Test 137 datm_cdeps_restart_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_gefs -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/datm_cdeps_control_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/datm_cdeps_control_gefs Checking test 138 datm_cdeps_control_gefs 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 = 163.352836 - 0: The maximum resident set size (KB) = 598020 + 0: The total amount of wall time = 161.280442 + 0: The maximum resident set size (KB) = 601812 Test 138 datm_cdeps_control_gefs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_iau_gefs -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/datm_cdeps_iau_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/datm_cdeps_iau_gefs Checking test 139 datm_cdeps_iau_gefs 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 = 163.241148 - 0: The maximum resident set size (KB) = 598220 + 0: The total amount of wall time = 162.455959 + 0: The maximum resident set size (KB) = 597984 Test 139 datm_cdeps_iau_gefs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_stochy_gefs -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/datm_cdeps_stochy_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/datm_cdeps_stochy_gefs Checking test 140 datm_cdeps_stochy_gefs 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 = 164.473608 - 0: The maximum resident set size (KB) = 593432 + 0: The total amount of wall time = 168.142477 + 0: The maximum resident set size (KB) = 601864 Test 140 datm_cdeps_stochy_gefs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/datm_cdeps_ciceC_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/datm_cdeps_ciceC_cfsr Checking test 141 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 166.855280 - 0: The maximum resident set size (KB) = 716000 + 0: The total amount of wall time = 166.596899 + 0: The maximum resident set size (KB) = 715664 Test 141 datm_cdeps_ciceC_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_bulk_cfsr -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/datm_cdeps_bulk_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/datm_cdeps_bulk_cfsr Checking test 142 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 166.328408 - 0: The maximum resident set size (KB) = 715784 + 0: The total amount of wall time = 167.807843 + 0: The maximum resident set size (KB) = 715756 Test 142 datm_cdeps_bulk_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_bulk_gefs -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/datm_cdeps_bulk_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/datm_cdeps_bulk_gefs Checking test 143 datm_cdeps_bulk_gefs 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 = 159.540381 - 0: The maximum resident set size (KB) = 598268 + 0: The total amount of wall time = 159.852490 + 0: The maximum resident set size (KB) = 598292 Test 143 datm_cdeps_bulk_gefs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_mx025_cfsr -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/datm_cdeps_mx025_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/datm_cdeps_mx025_cfsr Checking test 144 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4413,14 +4413,14 @@ Checking test 144 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 472.497393 - 0: The maximum resident set size (KB) = 496572 + 0: The total amount of wall time = 479.149155 + 0: The maximum resident set size (KB) = 494588 Test 144 datm_cdeps_mx025_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_mx025_gefs -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/datm_cdeps_mx025_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/datm_cdeps_mx025_gefs Checking test 145 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4429,77 +4429,77 @@ Checking test 145 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 447.958772 - 0: The maximum resident set size (KB) = 476216 + 0: The total amount of wall time = 463.921989 + 0: The maximum resident set size (KB) = 476520 Test 145 datm_cdeps_mx025_gefs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/datm_cdeps_multiple_files_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/datm_cdeps_multiple_files_cfsr Checking test 146 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 165.839884 - 0: The maximum resident set size (KB) = 715700 + 0: The total amount of wall time = 167.873059 + 0: The maximum resident set size (KB) = 715804 Test 146 datm_cdeps_multiple_files_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/datm_cdeps_3072x1536_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/datm_cdeps_3072x1536_cfsr Checking test 147 datm_cdeps_3072x1536_cfsr 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 = 255.208497 - 0: The maximum resident set size (KB) = 1948000 + 0: The total amount of wall time = 252.706091 + 0: The maximum resident set size (KB) = 1952152 Test 147 datm_cdeps_3072x1536_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_gfs -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/datm_cdeps_gfs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/datm_cdeps_gfs Checking test 148 datm_cdeps_gfs 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 = 256.625205 - 0: The maximum resident set size (KB) = 1947916 + 0: The total amount of wall time = 249.204991 + 0: The maximum resident set size (KB) = 1947956 Test 148 datm_cdeps_gfs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_debug_cfsr -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/datm_cdeps_debug_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/datm_cdeps_debug_cfsr Checking test 149 datm_cdeps_debug_cfsr 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 = 373.509019 - 0: The maximum resident set size (KB) = 714736 + 0: The total amount of wall time = 372.355614 + 0: The maximum resident set size (KB) = 711456 Test 149 datm_cdeps_debug_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr_faster -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/datm_cdeps_control_cfsr_faster +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/datm_cdeps_control_cfsr_faster Checking test 150 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 169.727635 - 0: The maximum resident set size (KB) = 715688 + 0: The total amount of wall time = 170.619360 + 0: The maximum resident set size (KB) = 721388 Test 150 datm_cdeps_control_cfsr_faster PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/datm_cdeps_lnd_gswp3 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/datm_cdeps_lnd_gswp3 Checking test 151 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4508,14 +4508,14 @@ Checking test 151 datm_cdeps_lnd_gswp3 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.006396 - 0: The maximum resident set size (KB) = 153964 + 0: The total amount of wall time = 25.574801 + 0: The maximum resident set size (KB) = 149812 Test 151 datm_cdeps_lnd_gswp3 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/datm_cdeps_lnd_gswp3_rst +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/datm_cdeps_lnd_gswp3_rst Checking test 152 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4524,14 +4524,14 @@ Checking test 152 datm_cdeps_lnd_gswp3_rst 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 = 22.095141 - 0: The maximum resident set size (KB) = 145892 + 0: The total amount of wall time = 22.006799 + 0: The maximum resident set size (KB) = 153824 Test 152 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_atmlnd_sbs -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_p8_atmlnd_sbs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_p8_atmlnd_sbs Checking test 153 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4616,14 +4616,14 @@ Checking test 153 control_p8_atmlnd_sbs 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 = 233.708308 - 0: The maximum resident set size (KB) = 1413572 + 0: The total amount of wall time = 251.957896 + 0: The maximum resident set size (KB) = 1413552 Test 153 control_p8_atmlnd_sbs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_atmwav -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/control_atmwav +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_atmwav Checking test 154 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4667,14 +4667,14 @@ Checking test 154 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 96.265012 - 0: The maximum resident set size (KB) = 451576 + 0: The total amount of wall time = 101.885400 + 0: The maximum resident set size (KB) = 451540 Test 154 control_atmwav PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/atmaero_control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/atmaero_control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/atmaero_control_p8 Checking test 155 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4718,14 +4718,14 @@ Checking test 155 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 252.013915 - 0: The maximum resident set size (KB) = 1448192 + 0: The total amount of wall time = 276.804989 + 0: The maximum resident set size (KB) = 1448168 Test 155 atmaero_control_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/atmaero_control_p8_rad -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/atmaero_control_p8_rad +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/atmaero_control_p8_rad Checking test 156 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4769,14 +4769,14 @@ Checking test 156 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 300.133172 - 0: The maximum resident set size (KB) = 1469736 + 0: The total amount of wall time = 312.117297 + 0: The maximum resident set size (KB) = 1469924 Test 156 atmaero_control_p8_rad PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/atmaero_control_p8_rad_micro -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/atmaero_control_p8_rad_micro +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/atmaero_control_p8_rad_micro Checking test 157 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4820,14 +4820,14 @@ Checking test 157 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 301.713659 - 0: The maximum resident set size (KB) = 1473612 + 0: The total amount of wall time = 311.603849 + 0: The maximum resident set size (KB) = 1473216 Test 157 atmaero_control_p8_rad_micro PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_atmaq -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/regional_atmaq +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/regional_atmaq Checking test 158 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4843,14 +4843,14 @@ Checking test 158 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 668.521100 - 0: The maximum resident set size (KB) = 964560 + 0: The total amount of wall time = 694.903134 + 0: The maximum resident set size (KB) = 960424 Test 158 regional_atmaq PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_atmaq_faster -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_10225/regional_atmaq_faster +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/regional_atmaq_faster Checking test 159 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4866,12 +4866,12 @@ Checking test 159 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 615.125444 - 0: The maximum resident set size (KB) = 968088 + 0: The total amount of wall time = 645.618525 + 0: The maximum resident set size (KB) = 961328 Test 159 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Sun Apr 2 12:40:20 EDT 2023 -Elapsed time: 03h:15m:59s. Have a nice day! +Wed Apr 5 04:49:33 EDT 2023 +Elapsed time: 12h:18m:03s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 540f2a7fcd4..ce3abcfa8f0 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,21 +1,21 @@ -Sun Apr 2 12:45:16 UTC 2023 +Tue Apr 4 20:32:10 UTC 2023 Start Regression test -Compile 001 elapsed time 185 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 188 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 332 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 102 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 192 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 401 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 334 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 338 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 269 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 001 elapsed time 182 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 187 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 318 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 96 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 189 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 392 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 320 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 317 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 263 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON Compile 010 elapsed time 229 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 148 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 012 elapsed time 121 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 141 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 012 elapsed time 107 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/control_c48 Checking test 001 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -54,14 +54,14 @@ Checking test 001 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 687.671316 -0: The maximum resident set size (KB) = 702820 +0: The total amount of wall time = 683.397105 +0: The maximum resident set size (KB) = 703248 Test 001 control_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/control_stochy Checking test 002 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -72,14 +72,14 @@ Checking test 002 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 649.158186 - 0: The maximum resident set size (KB) = 480956 + 0: The total amount of wall time = 639.063702 + 0: The maximum resident set size (KB) = 476260 Test 002 control_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/control_ras -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/control_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/control_ras Checking test 003 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -90,14 +90,14 @@ Checking test 003 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 843.327587 - 0: The maximum resident set size (KB) = 485596 + 0: The total amount of wall time = 847.903292 + 0: The maximum resident set size (KB) = 489188 Test 003 control_ras PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/control_p8 Checking test 004 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -144,14 +144,14 @@ Checking test 004 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 920.177696 - 0: The maximum resident set size (KB) = 1235428 + 0: The total amount of wall time = 897.342467 + 0: The maximum resident set size (KB) = 1231404 Test 004 control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/rap_control Checking test 005 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -198,14 +198,14 @@ Checking test 005 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1484.815875 - 0: The maximum resident set size (KB) = 836708 + 0: The total amount of wall time = 1470.795958 + 0: The maximum resident set size (KB) = 831256 Test 005 rap_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/rap_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/rap_decomp Checking test 006 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -252,14 +252,14 @@ Checking test 006 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1467.071364 - 0: The maximum resident set size (KB) = 836660 + 0: The total amount of wall time = 1472.997787 + 0: The maximum resident set size (KB) = 832444 Test 006 rap_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/rap_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/rap_2threads Checking test 007 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -306,14 +306,14 @@ Checking test 007 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1369.479677 - 0: The maximum resident set size (KB) = 905860 + 0: The total amount of wall time = 1361.599251 + 0: The maximum resident set size (KB) = 896444 Test 007 rap_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/rap_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/rap_restart Checking test 008 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -352,14 +352,14 @@ Checking test 008 rap_restart results .... Comparing 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.922600 - 0: The maximum resident set size (KB) = 553896 + 0: The total amount of wall time = 729.186030 + 0: The maximum resident set size (KB) = 550440 Test 008 rap_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/rap_sfcdiff Checking test 009 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -406,14 +406,14 @@ Checking test 009 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1477.003409 - 0: The maximum resident set size (KB) = 832576 + 0: The total amount of wall time = 1500.103813 + 0: The maximum resident set size (KB) = 834164 Test 009 rap_sfcdiff PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/rap_sfcdiff_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/rap_sfcdiff_decomp Checking test 010 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -460,14 +460,14 @@ Checking test 010 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1441.836902 - 0: The maximum resident set size (KB) = 836744 + 0: The total amount of wall time = 1447.968623 + 0: The maximum resident set size (KB) = 827472 Test 010 rap_sfcdiff_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/rap_sfcdiff_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/rap_sfcdiff_restart Checking test 011 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -506,14 +506,14 @@ Checking test 011 rap_sfcdiff_restart results .... Comparing 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.111183 - 0: The maximum resident set size (KB) = 551180 + 0: The total amount of wall time = 1071.438634 + 0: The maximum resident set size (KB) = 555612 Test 011 rap_sfcdiff_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/hrrr_control Checking test 012 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -560,14 +560,14 @@ Checking test 012 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1433.205837 - 0: The maximum resident set size (KB) = 834528 + 0: The total amount of wall time = 1464.810259 + 0: The maximum resident set size (KB) = 825600 Test 012 hrrr_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/hrrr_control_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/hrrr_control_2threads Checking test 013 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -614,14 +614,14 @@ Checking test 013 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1308.165137 - 0: The maximum resident set size (KB) = 894128 + 0: The total amount of wall time = 1307.931503 + 0: The maximum resident set size (KB) = 895556 Test 013 hrrr_control_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/hrrr_control_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/hrrr_control_decomp Checking test 014 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -668,14 +668,14 @@ Checking test 014 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1440.303393 - 0: The maximum resident set size (KB) = 831012 + 0: The total amount of wall time = 1411.234049 + 0: The maximum resident set size (KB) = 829376 Test 014 hrrr_control_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/hrrr_control_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/hrrr_control_restart Checking test 015 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -714,14 +714,14 @@ Checking test 015 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1079.955112 - 0: The maximum resident set size (KB) = 549592 + 0: The total amount of wall time = 1050.289434 + 0: The maximum resident set size (KB) = 548156 Test 015 hrrr_control_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/rrfs_v1beta Checking test 016 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -768,14 +768,14 @@ Checking test 016 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1478.232025 - 0: The maximum resident set size (KB) = 833300 + 0: The total amount of wall time = 1467.047055 + 0: The maximum resident set size (KB) = 831512 Test 016 rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/rrfs_smoke_conus13km_hrrr_warm Checking test 017 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -784,14 +784,14 @@ Checking test 017 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 771.892099 - 0: The maximum resident set size (KB) = 668424 + 0: The total amount of wall time = 797.173399 + 0: The maximum resident set size (KB) = 675032 Test 017 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/rrfs_smoke_conus13km_hrrr_warm_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 018 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -800,14 +800,14 @@ Checking test 018 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 1066.711069 - 0: The maximum resident set size (KB) = 669248 + 0: The total amount of wall time = 1089.386046 + 0: The maximum resident set size (KB) = 666072 Test 018 rrfs_smoke_conus13km_hrrr_warm_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/rrfs_conus13km_hrrr_warm Checking test 019 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -816,14 +816,14 @@ Checking test 019 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 764.756423 - 0: The maximum resident set size (KB) = 646212 + 0: The total amount of wall time = 761.992259 + 0: The maximum resident set size (KB) = 643956 Test 019 rrfs_conus13km_hrrr_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/rrfs_smoke_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/rrfs_smoke_conus13km_radar_tten_warm Checking test 020 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -832,234 +832,234 @@ Checking test 020 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 818.329647 - 0: The maximum resident set size (KB) = 672000 + 0: The total amount of wall time = 751.299886 + 0: The maximum resident set size (KB) = 672480 Test 020 rrfs_smoke_conus13km_radar_tten_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 021 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 394.262414 - 0: The maximum resident set size (KB) = 637000 + 0: The total amount of wall time = 361.716334 + 0: The maximum resident set size (KB) = 633972 Test 021 rrfs_conus13km_hrrr_warm_restart_mismatch PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/control_diag_debug Checking test 022 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 129.309261 - 0: The maximum resident set size (KB) = 530840 + 0: The total amount of wall time = 124.004075 + 0: The maximum resident set size (KB) = 523472 Test 022 control_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/regional_debug Checking test 023 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 652.145078 - 0: The maximum resident set size (KB) = 593180 + 0: The total amount of wall time = 763.770937 + 0: The maximum resident set size (KB) = 592152 Test 023 regional_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/rap_control_debug Checking test 024 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 180.418548 - 0: The maximum resident set size (KB) = 843220 + 0: The total amount of wall time = 172.805239 + 0: The maximum resident set size (KB) = 844304 Test 024 rap_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/hrrr_control_debug Checking test 025 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 174.862079 - 0: The maximum resident set size (KB) = 839268 + 0: The total amount of wall time = 170.542022 + 0: The maximum resident set size (KB) = 842212 Test 025 hrrr_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/rap_diag_debug Checking test 026 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 214.238217 - 0: The maximum resident set size (KB) = 926088 + 0: The total amount of wall time = 213.852956 + 0: The maximum resident set size (KB) = 925832 Test 026 rap_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/rap_noah_sfcdiff_cires_ugwp_debug Checking test 027 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.334824 - 0: The maximum resident set size (KB) = 845516 + 0: The total amount of wall time = 271.178242 + 0: The maximum resident set size (KB) = 838352 Test 027 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/rap_progcld_thompson_debug Checking test 028 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 176.079048 - 0: The maximum resident set size (KB) = 840212 + 0: The total amount of wall time = 170.047866 + 0: The maximum resident set size (KB) = 840296 Test 028 rap_progcld_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/rrfs_v1beta_debug Checking test 029 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 173.850795 - 0: The maximum resident set size (KB) = 836304 + 0: The total amount of wall time = 173.370121 + 0: The maximum resident set size (KB) = 839320 Test 029 rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/control_ras_debug Checking test 030 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 105.616793 - 0: The maximum resident set size (KB) = 482264 + 0: The total amount of wall time = 101.413717 + 0: The maximum resident set size (KB) = 479880 Test 030 control_ras_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/control_stochy_debug Checking test 031 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 122.220244 - 0: The maximum resident set size (KB) = 473712 + 0: The total amount of wall time = 113.332665 + 0: The maximum resident set size (KB) = 471360 Test 031 control_stochy_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/control_debug_p8 Checking test 032 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 117.928218 - 0: The maximum resident set size (KB) = 1231176 + 0: The total amount of wall time = 118.143250 + 0: The maximum resident set size (KB) = 1228888 Test 032 control_debug_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 033 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 649.115665 - 0: The maximum resident set size (KB) = 687912 + 0: The total amount of wall time = 654.106460 + 0: The maximum resident set size (KB) = 673036 Test 033 rrfs_smoke_conus13km_hrrr_warm_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 034 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 725.908199 - 0: The maximum resident set size (KB) = 688536 + 0: The total amount of wall time = 738.018372 + 0: The maximum resident set size (KB) = 681972 Test 034 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/rrfs_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/rrfs_conus13km_hrrr_warm_debug Checking test 035 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 581.360784 - 0: The maximum resident set size (KB) = 659996 + 0: The total amount of wall time = 571.059740 + 0: The maximum resident set size (KB) = 655240 Test 035 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/control_wam_debug Checking test 036 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 185.024363 - 0: The maximum resident set size (KB) = 195104 + 0: The total amount of wall time = 181.450437 + 0: The maximum resident set size (KB) = 192840 Test 036 control_wam_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/rap_control_dyn32_phy32 Checking test 037 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1106,14 +1106,14 @@ Checking test 037 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1490.319526 - 0: The maximum resident set size (KB) = 688448 + 0: The total amount of wall time = 1449.982207 + 0: The maximum resident set size (KB) = 692124 Test 037 rap_control_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/hrrr_control_dyn32_phy32 Checking test 038 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1160,14 +1160,14 @@ Checking test 038 hrrr_control_dyn32_phy32 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 = 736.797336 - 0: The maximum resident set size (KB) = 683664 + 0: The total amount of wall time = 755.052417 + 0: The maximum resident set size (KB) = 685100 Test 038 hrrr_control_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/rap_2threads_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/rap_2threads_dyn32_phy32 Checking test 039 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1214,14 +1214,14 @@ Checking test 039 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1374.975088 - 0: The maximum resident set size (KB) = 729204 + 0: The total amount of wall time = 1326.829281 + 0: The maximum resident set size (KB) = 731340 Test 039 rap_2threads_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/hrrr_control_2threads_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/hrrr_control_2threads_dyn32_phy32 Checking test 040 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1268,14 +1268,14 @@ Checking test 040 hrrr_control_2threads_dyn32_phy32 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 = 671.721772 - 0: The maximum resident set size (KB) = 728472 + 0: The total amount of wall time = 685.353341 + 0: The maximum resident set size (KB) = 725956 Test 040 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/hrrr_control_decomp_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/hrrr_control_decomp_dyn32_phy32 Checking test 041 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1322,14 +1322,14 @@ Checking test 041 hrrr_control_decomp_dyn32_phy32 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 = 734.584201 - 0: The maximum resident set size (KB) = 683384 + 0: The total amount of wall time = 729.898284 + 0: The maximum resident set size (KB) = 688376 Test 041 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/rap_restart_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/rap_restart_dyn32_phy32 Checking test 042 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1368,14 +1368,14 @@ Checking test 042 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1085.169867 - 0: The maximum resident set size (KB) = 511520 + 0: The total amount of wall time = 1082.552338 + 0: The maximum resident set size (KB) = 512808 Test 042 rap_restart_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/hrrr_control_restart_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/hrrr_control_restart_dyn32_phy32 Checking test 043 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1414,14 +1414,14 @@ Checking test 043 hrrr_control_restart_dyn32_phy32 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 = 370.173063 - 0: The maximum resident set size (KB) = 511024 + 0: The total amount of wall time = 372.180472 + 0: The maximum resident set size (KB) = 512484 Test 043 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/rap_control_dyn64_phy32 Checking test 044 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1468,56 +1468,56 @@ Checking test 044 rap_control_dyn64_phy32 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 = 1046.117433 - 0: The maximum resident set size (KB) = 708732 + 0: The total amount of wall time = 1067.807606 + 0: The maximum resident set size (KB) = 710608 Test 044 rap_control_dyn64_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/rap_control_debug_dyn32_phy32 Checking test 045 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 176.778426 - 0: The maximum resident set size (KB) = 698776 + 0: The total amount of wall time = 173.332915 + 0: The maximum resident set size (KB) = 697784 Test 045 rap_control_debug_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/hrrr_control_debug_dyn32_phy32 Checking test 046 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 178.494603 - 0: The maximum resident set size (KB) = 699988 + 0: The total amount of wall time = 172.129618 + 0: The maximum resident set size (KB) = 701888 Test 046 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/rap_control_dyn64_phy32_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/rap_control_dyn64_phy32_debug Checking test 047 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 210.136012 - 0: The maximum resident set size (KB) = 719064 + 0: The total amount of wall time = 201.131825 + 0: The maximum resident set size (KB) = 718704 Test 047 rap_control_dyn64_phy32_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/cpld_control_p8 Checking test 048 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1582,14 +1582,14 @@ Checking test 048 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1697.038649 - 0: The maximum resident set size (KB) = 1428632 + 0: The total amount of wall time = 1698.237453 + 0: The maximum resident set size (KB) = 1431744 -Test 048 cpld_control_p8 PASS +Test 048 cpld_control_p8 PASS Tries: 2 baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/cpld_control_nowave_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/cpld_control_nowave_noaero_p8 Checking test 049 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1651,14 +1651,14 @@ Checking test 049 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 1227.457985 - 0: The maximum resident set size (KB) = 1334368 + 0: The total amount of wall time = 1223.855477 + 0: The maximum resident set size (KB) = 1333348 Test 049 cpld_control_nowave_noaero_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/cpld_debug_p8 Checking test 050 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1711,25 +1711,25 @@ Checking test 050 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 894.685483 - 0: The maximum resident set size (KB) = 1449692 + 0: The total amount of wall time = 779.887335 + 0: The maximum resident set size (KB) = 1436752 Test 050 cpld_debug_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_28119/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/datm_cdeps_control_cfsr Checking test 051 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 172.776866 - 0: The maximum resident set size (KB) = 668112 + 0: The total amount of wall time = 173.993511 + 0: The maximum resident set size (KB) = 667508 Test 051 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Sun Apr 2 13:40:00 UTC 2023 -Elapsed time: 00h:54m:45s. Have a nice day! +Tue Apr 4 21:44:13 UTC 2023 +Elapsed time: 01h:12m:03s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index bc5de9cd482..65ab2b6ba88 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,42 +1,42 @@ -Sun Apr 2 12:44:33 UTC 2023 +Tue Apr 4 20:18:41 UTC 2023 Start Regression test -Compile 001 elapsed time 619 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 621 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 582 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 243 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 212 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 001 elapsed time 599 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 611 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 583 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 232 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 223 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON Compile 006 elapsed time 529 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 536 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 707 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 541 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 486 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 011 elapsed time 480 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 437 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 605 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 227 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 172 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 007 elapsed time 523 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 722 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 525 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 491 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 011 elapsed time 483 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 438 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 610 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 207 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 156 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug Compile 016 elapsed time 457 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 460 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 172 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 163 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 569 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 021 elapsed time 213 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 623 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 579 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 024 elapsed time 182 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 113 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 182 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 57 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 484 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 526 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 477 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 464 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 171 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 548 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 461 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 167 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 161 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 536 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 021 elapsed time 190 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 619 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 582 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 024 elapsed time 180 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 101 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 177 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 52 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 477 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 515 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 465 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 458 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 160 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 560 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8_mixedmode -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/cpld_control_p8_mixedmode +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -101,14 +101,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 308.160471 - 0: The maximum resident set size (KB) = 3151244 + 0: The total amount of wall time = 308.536932 + 0: The maximum resident set size (KB) = 3138724 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_gfsv17 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/cpld_control_gfsv17 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -172,14 +172,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 221.784633 - 0: The maximum resident set size (KB) = 1723080 + 0: The total amount of wall time = 221.412045 + 0: The maximum resident set size (KB) = 1734788 Test 002 cpld_control_gfsv17 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -244,14 +244,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 336.917424 - 0: The maximum resident set size (KB) = 3174444 + 0: The total amount of wall time = 336.739876 + 0: The maximum resident set size (KB) = 3184944 Test 003 cpld_control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/cpld_restart_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -304,14 +304,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 194.191255 - 0: The maximum resident set size (KB) = 3048180 + 0: The total amount of wall time = 195.432743 + 0: The maximum resident set size (KB) = 3051544 Test 004 cpld_restart_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/cpld_control_qr_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -376,14 +376,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 337.255240 - 0: The maximum resident set size (KB) = 3196460 + 0: The total amount of wall time = 338.511229 + 0: The maximum resident set size (KB) = 3192400 Test 005 cpld_control_qr_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/cpld_restart_qr_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -436,14 +436,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 196.909686 - 0: The maximum resident set size (KB) = 3068680 + 0: The total amount of wall time = 200.080186 + 0: The maximum resident set size (KB) = 3060504 Test 006 cpld_restart_qr_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/cpld_2threads_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -496,14 +496,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 346.893769 - 0: The maximum resident set size (KB) = 3517724 + 0: The total amount of wall time = 346.019076 + 0: The maximum resident set size (KB) = 3511920 Test 007 cpld_2threads_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/cpld_decomp_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -556,14 +556,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 340.055386 - 0: The maximum resident set size (KB) = 3170560 + 0: The total amount of wall time = 341.628049 + 0: The maximum resident set size (KB) = 3173112 Test 008 cpld_decomp_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/cpld_mpi_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -616,14 +616,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 279.929277 - 0: The maximum resident set size (KB) = 3023236 + 0: The total amount of wall time = 279.054918 + 0: The maximum resident set size (KB) = 3028520 Test 009 cpld_mpi_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_ciceC_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/cpld_control_ciceC_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -688,14 +688,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 339.903835 - 0: The maximum resident set size (KB) = 3185052 + 0: The total amount of wall time = 340.973763 + 0: The maximum resident set size (KB) = 3176348 Test 010 cpld_control_ciceC_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/cpld_control_c192_p8 Checking test 011 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -748,14 +748,14 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 594.945909 - 0: The maximum resident set size (KB) = 3258384 + 0: The total amount of wall time = 592.616813 + 0: The maximum resident set size (KB) = 3260956 Test 011 cpld_control_c192_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/cpld_restart_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/cpld_restart_c192_p8 Checking test 012 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -808,14 +808,14 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 388.316331 - 0: The maximum resident set size (KB) = 3157532 + 0: The total amount of wall time = 392.927794 + 0: The maximum resident set size (KB) = 3157776 Test 012 cpld_restart_c192_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/cpld_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/cpld_bmark_p8 Checking test 013 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -863,14 +863,14 @@ Checking test 013 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 698.555048 - 0: The maximum resident set size (KB) = 4044672 + 0: The total amount of wall time = 717.654033 + 0: The maximum resident set size (KB) = 4076588 Test 013 cpld_bmark_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/cpld_restart_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/cpld_restart_bmark_p8 Checking test 014 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -918,14 +918,14 @@ Checking test 014 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 438.627630 - 0: The maximum resident set size (KB) = 3981580 + 0: The total amount of wall time = 438.836899 + 0: The maximum resident set size (KB) = 3967568 Test 014 cpld_restart_bmark_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/cpld_control_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/cpld_control_noaero_p8 Checking test 015 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -989,14 +989,14 @@ Checking test 015 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 262.008956 - 0: The maximum resident set size (KB) = 1733240 + 0: The total amount of wall time = 262.670274 + 0: The maximum resident set size (KB) = 1720696 Test 015 cpld_control_noaero_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/cpld_control_nowave_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/cpld_control_nowave_noaero_p8 Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1058,14 +1058,14 @@ Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 261.133107 - 0: The maximum resident set size (KB) = 1765592 + 0: The total amount of wall time = 258.972898 + 0: The maximum resident set size (KB) = 1767196 Test 016 cpld_control_nowave_noaero_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/cpld_debug_p8 Checking test 017 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1118,14 +1118,14 @@ Checking test 017 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 638.994153 - 0: The maximum resident set size (KB) = 3242712 + 0: The total amount of wall time = 520.595129 + 0: The maximum resident set size (KB) = 3233848 Test 017 cpld_debug_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_debug_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/cpld_debug_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/cpld_debug_noaero_p8 Checking test 018 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1177,14 +1177,14 @@ Checking test 018 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 399.317435 - 0: The maximum resident set size (KB) = 1747328 + 0: The total amount of wall time = 352.055908 + 0: The maximum resident set size (KB) = 1739256 Test 018 cpld_debug_noaero_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_noaero_p8_agrid -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/cpld_control_noaero_p8_agrid +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/cpld_control_noaero_p8_agrid Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1246,14 +1246,14 @@ Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 270.701112 - 0: The maximum resident set size (KB) = 1765608 + 0: The total amount of wall time = 268.299916 + 0: The maximum resident set size (KB) = 1757628 Test 019 cpld_control_noaero_p8_agrid PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_c48 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/cpld_control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/cpld_control_c48 Checking test 020 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1303,14 +1303,14 @@ Checking test 020 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 580.525654 - 0: The maximum resident set size (KB) = 2809392 + 0: The total amount of wall time = 571.875844 + 0: The maximum resident set size (KB) = 2807432 Test 020 cpld_control_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/cpld_warmstart_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/cpld_warmstart_c48 Checking test 021 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1360,14 +1360,14 @@ Checking test 021 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 155.119456 - 0: The maximum resident set size (KB) = 2801400 + 0: The total amount of wall time = 154.427230 + 0: The maximum resident set size (KB) = 2804196 Test 021 cpld_warmstart_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/cpld_restart_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/cpld_restart_c48 Checking test 022 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1417,14 +1417,14 @@ Checking test 022 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 80.307218 - 0: The maximum resident set size (KB) = 2240964 + 0: The total amount of wall time = 79.618862 + 0: The maximum resident set size (KB) = 2237060 Test 022 cpld_restart_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8_faster -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/cpld_control_p8_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/cpld_control_p8_faster Checking test 023 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1489,14 +1489,14 @@ Checking test 023 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 315.586389 - 0: The maximum resident set size (KB) = 3184172 + 0: The total amount of wall time = 322.899293 + 0: The maximum resident set size (KB) = 3183684 Test 023 cpld_control_p8_faster PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_CubedSphereGrid -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_CubedSphereGrid +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_CubedSphereGrid Checking test 024 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1523,28 +1523,28 @@ Checking test 024 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 129.480279 - 0: The maximum resident set size (KB) = 632712 + 0: The total amount of wall time = 131.347880 + 0: The maximum resident set size (KB) = 633592 Test 024 control_CubedSphereGrid PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_CubedSphereGrid_parallel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_CubedSphereGrid_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_CubedSphereGrid_parallel Checking test 025 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc .........OK + Comparing atmf024.nc ............ALT CHECK......OK - 0: The total amount of wall time = 127.394139 - 0: The maximum resident set size (KB) = 634788 + 0: The total amount of wall time = 128.375007 + 0: The maximum resident set size (KB) = 633740 Test 025 control_CubedSphereGrid_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_latlon -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_latlon +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_latlon Checking test 026 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1555,14 +1555,14 @@ Checking test 026 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 133.535390 - 0: The maximum resident set size (KB) = 630308 + 0: The total amount of wall time = 134.731523 + 0: The maximum resident set size (KB) = 628216 Test 026 control_latlon PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wrtGauss_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_wrtGauss_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_wrtGauss_netcdf_parallel Checking test 027 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1573,14 +1573,14 @@ Checking test 027 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.512732 - 0: The maximum resident set size (KB) = 632940 + 0: The total amount of wall time = 136.367766 + 0: The maximum resident set size (KB) = 628816 Test 027 control_wrtGauss_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_c48 Checking test 028 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1619,14 +1619,14 @@ Checking test 028 control_c48 results .... Comparing 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.531484 -0: The maximum resident set size (KB) = 819308 +0: The total amount of wall time = 367.058233 +0: The maximum resident set size (KB) = 824604 Test 028 control_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c192 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_c192 Checking test 029 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1637,14 +1637,14 @@ Checking test 029 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 523.811352 - 0: The maximum resident set size (KB) = 772760 + 0: The total amount of wall time = 530.507212 + 0: The maximum resident set size (KB) = 771068 Test 029 control_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c384 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_c384 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_c384 Checking test 030 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1655,14 +1655,14 @@ Checking test 030 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 519.064098 - 0: The maximum resident set size (KB) = 1269960 + 0: The total amount of wall time = 524.378755 + 0: The maximum resident set size (KB) = 1268792 Test 030 control_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c384gdas -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_c384gdas +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_c384gdas Checking test 031 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1705,14 +1705,14 @@ Checking test 031 control_c384gdas 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 = 454.410487 - 0: The maximum resident set size (KB) = 1391568 + 0: The total amount of wall time = 452.140046 + 0: The maximum resident set size (KB) = 1375392 Test 031 control_c384gdas PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_stochy Checking test 032 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1723,28 +1723,28 @@ Checking test 032 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 87.394307 - 0: The maximum resident set size (KB) = 634096 + 0: The total amount of wall time = 87.215729 + 0: The maximum resident set size (KB) = 634604 Test 032 control_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_stochy_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_stochy_restart Checking test 033 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 49.462750 - 0: The maximum resident set size (KB) = 490124 + 0: The total amount of wall time = 48.064360 + 0: The maximum resident set size (KB) = 489036 Test 033 control_stochy_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_lndp -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_lndp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_lndp Checking test 034 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1755,14 +1755,14 @@ Checking test 034 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 80.593222 - 0: The maximum resident set size (KB) = 633356 + 0: The total amount of wall time = 81.571845 + 0: The maximum resident set size (KB) = 635220 Test 034 control_lndp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_iovr4 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_iovr4 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_iovr4 Checking test 035 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1777,14 +1777,14 @@ Checking test 035 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 137.244319 - 0: The maximum resident set size (KB) = 631784 + 0: The total amount of wall time = 134.391575 + 0: The maximum resident set size (KB) = 630552 Test 035 control_iovr4 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_iovr5 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_iovr5 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_iovr5 Checking test 036 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1799,14 +1799,14 @@ Checking test 036 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.888110 - 0: The maximum resident set size (KB) = 631056 + 0: The total amount of wall time = 135.942825 + 0: The maximum resident set size (KB) = 632992 Test 036 control_iovr5 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_p8 Checking test 037 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1853,14 +1853,14 @@ Checking test 037 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 165.955178 - 0: The maximum resident set size (KB) = 1601916 + 0: The total amount of wall time = 166.676964 + 0: The maximum resident set size (KB) = 1612224 Test 037 control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_restart_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_restart_p8 Checking test 038 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1899,14 +1899,14 @@ Checking test 038 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 87.618835 - 0: The maximum resident set size (KB) = 873244 + 0: The total amount of wall time = 87.853216 + 0: The maximum resident set size (KB) = 864496 Test 038 control_restart_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_qr_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_qr_p8 Checking test 039 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1953,14 +1953,14 @@ Checking test 039 control_qr_p8 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.591394 - 0: The maximum resident set size (KB) = 1611700 + 0: The total amount of wall time = 166.760019 + 0: The maximum resident set size (KB) = 1606180 Test 039 control_qr_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_restart_qr_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_restart_qr_p8 Checking test 040 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1999,14 +1999,14 @@ Checking test 040 control_restart_qr_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 89.486356 - 0: The maximum resident set size (KB) = 870412 + 0: The total amount of wall time = 88.971470 + 0: The maximum resident set size (KB) = 867672 Test 040 control_restart_qr_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_decomp_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_decomp_p8 Checking test 041 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2049,14 +2049,14 @@ Checking test 041 control_decomp_p8 results .... Comparing 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.335574 - 0: The maximum resident set size (KB) = 1591104 + 0: The total amount of wall time = 173.964742 + 0: The maximum resident set size (KB) = 1594772 Test 041 control_decomp_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_2threads_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_2threads_p8 Checking test 042 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2099,14 +2099,14 @@ Checking test 042 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 155.850775 - 0: The maximum resident set size (KB) = 1696020 + 0: The total amount of wall time = 159.363004 + 0: The maximum resident set size (KB) = 1694548 Test 042 control_2threads_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_lndp -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_p8_lndp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_p8_lndp Checking test 043 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2125,14 +2125,14 @@ Checking test 043 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 310.685418 - 0: The maximum resident set size (KB) = 1605164 + 0: The total amount of wall time = 310.225187 + 0: The maximum resident set size (KB) = 1612648 Test 043 control_p8_lndp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_p8_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_p8_rrtmgp Checking test 044 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2179,14 +2179,14 @@ Checking test 044 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 222.222941 - 0: The maximum resident set size (KB) = 1684588 + 0: The total amount of wall time = 224.865618 + 0: The maximum resident set size (KB) = 1678408 Test 044 control_p8_rrtmgp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_mynn -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_p8_mynn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_p8_mynn Checking test 045 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2233,14 +2233,14 @@ Checking test 045 control_p8_mynn results .... Comparing 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.009420 - 0: The maximum resident set size (KB) = 1603860 + 0: The total amount of wall time = 170.971711 + 0: The maximum resident set size (KB) = 1610824 Test 045 control_p8_mynn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/merra2_thompson -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/merra2_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/merra2_thompson Checking test 046 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2287,14 +2287,14 @@ Checking test 046 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 189.068260 - 0: The maximum resident set size (KB) = 1614860 + 0: The total amount of wall time = 189.045727 + 0: The maximum resident set size (KB) = 1610468 Test 046 merra2_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/regional_control Checking test 047 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2305,28 +2305,28 @@ Checking test 047 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 296.007375 - 0: The maximum resident set size (KB) = 874304 + 0: The total amount of wall time = 297.712900 + 0: The maximum resident set size (KB) = 869240 Test 047 regional_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/regional_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/regional_restart Checking test 048 regional_restart 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.719031 - 0: The maximum resident set size (KB) = 866744 + 0: The total amount of wall time = 151.764963 + 0: The maximum resident set size (KB) = 864368 Test 048 regional_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/regional_control_qr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/regional_control_qr Checking test 049 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2337,28 +2337,28 @@ Checking test 049 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 297.018613 - 0: The maximum resident set size (KB) = 872544 + 0: The total amount of wall time = 297.466769 + 0: The maximum resident set size (KB) = 870104 Test 049 regional_control_qr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/regional_restart_qr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/regional_restart_qr Checking test 050 regional_restart_qr 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.530008 - 0: The maximum resident set size (KB) = 862000 + 0: The total amount of wall time = 150.744334 + 0: The maximum resident set size (KB) = 864892 Test 050 regional_restart_qr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/regional_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/regional_decomp Checking test 051 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2369,14 +2369,14 @@ Checking test 051 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 313.345722 - 0: The maximum resident set size (KB) = 864472 + 0: The total amount of wall time = 311.589200 + 0: The maximum resident set size (KB) = 864336 Test 051 regional_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/regional_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/regional_2threads Checking test 052 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2387,14 +2387,14 @@ Checking test 052 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 181.054317 - 0: The maximum resident set size (KB) = 844288 + 0: The total amount of wall time = 182.054079 + 0: The maximum resident set size (KB) = 849328 Test 052 regional_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_noquilt -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/regional_noquilt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/regional_noquilt Checking test 053 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2402,28 +2402,28 @@ Checking test 053 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 321.512538 - 0: The maximum resident set size (KB) = 863456 + 0: The total amount of wall time = 319.575525 + 0: The maximum resident set size (KB) = 860780 Test 053 regional_noquilt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/regional_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/regional_netcdf_parallel Checking test 054 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 292.951281 - 0: The maximum resident set size (KB) = 864192 + 0: The total amount of wall time = 293.604684 + 0: The maximum resident set size (KB) = 867100 Test 054 regional_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/regional_2dwrtdecomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/regional_2dwrtdecomp Checking test 055 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2434,14 +2434,14 @@ Checking test 055 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 296.993860 - 0: The maximum resident set size (KB) = 871536 + 0: The total amount of wall time = 294.925973 + 0: The maximum resident set size (KB) = 873900 Test 055 regional_2dwrtdecomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/fv3_regional_wofs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/regional_wofs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/regional_wofs Checking test 056 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2452,14 +2452,14 @@ Checking test 056 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 375.833207 - 0: The maximum resident set size (KB) = 630572 + 0: The total amount of wall time = 373.295537 + 0: The maximum resident set size (KB) = 631936 Test 056 regional_wofs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/rap_control Checking test 057 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2506,14 +2506,14 @@ Checking test 057 rap_control results .... Comparing 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.249343 - 0: The maximum resident set size (KB) = 1066044 + 0: The total amount of wall time = 456.501241 + 0: The maximum resident set size (KB) = 1057104 Test 057 rap_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_spp_sppt_shum_skeb -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/regional_spp_sppt_shum_skeb +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/regional_spp_sppt_shum_skeb Checking test 058 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2524,14 +2524,14 @@ Checking test 058 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 234.429240 - 0: The maximum resident set size (KB) = 1175760 + 0: The total amount of wall time = 229.127483 + 0: The maximum resident set size (KB) = 1186684 Test 058 regional_spp_sppt_shum_skeb PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/rap_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/rap_decomp Checking test 059 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2578,14 +2578,14 @@ Checking test 059 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 476.334710 - 0: The maximum resident set size (KB) = 1003136 + 0: The total amount of wall time = 478.196024 + 0: The maximum resident set size (KB) = 1001904 Test 059 rap_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/rap_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/rap_2threads Checking test 060 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2632,14 +2632,14 @@ Checking test 060 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 433.148054 - 0: The maximum resident set size (KB) = 1139048 + 0: The total amount of wall time = 431.597195 + 0: The maximum resident set size (KB) = 1145608 Test 060 rap_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/rap_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/rap_restart Checking test 061 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2678,14 +2678,14 @@ Checking test 061 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 231.352354 - 0: The maximum resident set size (KB) = 970732 + 0: The total amount of wall time = 231.235470 + 0: The maximum resident set size (KB) = 969724 Test 061 rap_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/rap_sfcdiff Checking test 062 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2732,14 +2732,14 @@ Checking test 062 rap_sfcdiff results .... Comparing 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.052173 - 0: The maximum resident set size (KB) = 1057484 + 0: The total amount of wall time = 460.340832 + 0: The maximum resident set size (KB) = 1060008 Test 062 rap_sfcdiff PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/rap_sfcdiff_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/rap_sfcdiff_decomp Checking test 063 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2786,14 +2786,14 @@ Checking test 063 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 479.726408 - 0: The maximum resident set size (KB) = 996168 + 0: The total amount of wall time = 480.843113 + 0: The maximum resident set size (KB) = 1002016 Test 063 rap_sfcdiff_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/rap_sfcdiff_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/rap_sfcdiff_restart Checking test 064 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2832,14 +2832,14 @@ Checking test 064 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 339.573838 - 0: The maximum resident set size (KB) = 986580 + 0: The total amount of wall time = 339.198877 + 0: The maximum resident set size (KB) = 988920 Test 064 rap_sfcdiff_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/hrrr_control Checking test 065 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2886,14 +2886,14 @@ Checking test 065 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 442.601783 - 0: The maximum resident set size (KB) = 1058936 + 0: The total amount of wall time = 443.339206 + 0: The maximum resident set size (KB) = 1061160 Test 065 hrrr_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/hrrr_control_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/hrrr_control_decomp Checking test 066 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2940,14 +2940,14 @@ Checking test 066 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 462.160831 - 0: The maximum resident set size (KB) = 998260 + 0: The total amount of wall time = 463.749292 + 0: The maximum resident set size (KB) = 996028 Test 066 hrrr_control_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/hrrr_control_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/hrrr_control_2threads Checking test 067 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2994,14 +2994,14 @@ Checking test 067 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 419.004809 - 0: The maximum resident set size (KB) = 1135728 + 0: The total amount of wall time = 419.026791 + 0: The maximum resident set size (KB) = 1138784 Test 067 hrrr_control_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/hrrr_control_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/hrrr_control_restart Checking test 068 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3040,14 +3040,14 @@ Checking test 068 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 328.716767 - 0: The maximum resident set size (KB) = 986024 + 0: The total amount of wall time = 331.630066 + 0: The maximum resident set size (KB) = 979248 Test 068 hrrr_control_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/rrfs_v1beta Checking test 069 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3094,14 +3094,14 @@ Checking test 069 rrfs_v1beta results .... Comparing 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.688055 - 0: The maximum resident set size (KB) = 1057156 + 0: The total amount of wall time = 456.023154 + 0: The maximum resident set size (KB) = 1053148 Test 069 rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1nssl -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/rrfs_v1nssl +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/rrfs_v1nssl Checking test 070 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3116,14 +3116,14 @@ Checking test 070 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 532.258948 - 0: The maximum resident set size (KB) = 693956 + 0: The total amount of wall time = 536.785629 + 0: The maximum resident set size (KB) = 692372 Test 070 rrfs_v1nssl PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/rrfs_v1nssl_nohailnoccn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/rrfs_v1nssl_nohailnoccn Checking test 071 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3138,14 +3138,14 @@ Checking test 071 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 522.922134 - 0: The maximum resident set size (KB) = 758024 + 0: The total amount of wall time = 526.569807 + 0: The maximum resident set size (KB) = 748864 Test 071 rrfs_v1nssl_nohailnoccn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/rrfs_smoke_conus13km_hrrr_warm Checking test 072 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3154,14 +3154,14 @@ Checking test 072 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 146.516925 - 0: The maximum resident set size (KB) = 1038608 + 0: The total amount of wall time = 144.210394 + 0: The maximum resident set size (KB) = 1001904 Test 072 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/rrfs_smoke_conus13km_hrrr_warm_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 073 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3170,14 +3170,14 @@ Checking test 073 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 90.510525 - 0: The maximum resident set size (KB) = 943352 + 0: The total amount of wall time = 88.778983 + 0: The maximum resident set size (KB) = 941452 Test 073 rrfs_smoke_conus13km_hrrr_warm_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/rrfs_conus13km_hrrr_warm Checking test 074 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3186,14 +3186,14 @@ Checking test 074 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 130.346976 - 0: The maximum resident set size (KB) = 944028 + 0: The total amount of wall time = 128.291378 + 0: The maximum resident set size (KB) = 941628 Test 074 rrfs_conus13km_hrrr_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/rrfs_smoke_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/rrfs_smoke_conus13km_radar_tten_warm Checking test 075 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3202,26 +3202,26 @@ Checking test 075 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 147.084007 - 0: The maximum resident set size (KB) = 1039300 + 0: The total amount of wall time = 146.213712 + 0: The maximum resident set size (KB) = 1038052 Test 075 rrfs_smoke_conus13km_radar_tten_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 076 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 67.981284 - 0: The maximum resident set size (KB) = 934508 + 0: The total amount of wall time = 69.153911 + 0: The maximum resident set size (KB) = 930288 Test 076 rrfs_conus13km_hrrr_warm_restart_mismatch PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmg -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_csawmg +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_csawmg Checking test 077 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3232,14 +3232,14 @@ Checking test 077 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 341.526716 - 0: The maximum resident set size (KB) = 727156 + 0: The total amount of wall time = 342.102508 + 0: The maximum resident set size (KB) = 721684 Test 077 control_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmgt -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_csawmgt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_csawmgt Checking test 078 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3250,14 +3250,14 @@ Checking test 078 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 337.254188 - 0: The maximum resident set size (KB) = 723452 + 0: The total amount of wall time = 337.978821 + 0: The maximum resident set size (KB) = 720200 Test 078 control_csawmgt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_ras -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_ras Checking test 079 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3268,26 +3268,26 @@ Checking test 079 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 180.318165 - 0: The maximum resident set size (KB) = 720664 + 0: The total amount of wall time = 182.090368 + 0: The maximum resident set size (KB) = 725284 Test 079 control_ras PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wam -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_wam +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_wam Checking test 080 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 112.550827 - 0: The maximum resident set size (KB) = 643132 + 0: The total amount of wall time = 111.218371 + 0: The maximum resident set size (KB) = 641076 Test 080 control_wam PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_faster -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_p8_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_p8_faster Checking test 081 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3334,14 +3334,14 @@ Checking test 081 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 150.458677 - 0: The maximum resident set size (KB) = 1611716 + 0: The total amount of wall time = 152.394630 + 0: The maximum resident set size (KB) = 1592712 Test 081 control_p8_faster PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control_faster -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/regional_control_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/regional_control_faster Checking test 082 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3352,56 +3352,56 @@ Checking test 082 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 271.447110 - 0: The maximum resident set size (KB) = 869852 + 0: The total amount of wall time = 273.604774 + 0: The maximum resident set size (KB) = 867808 Test 082 regional_control_faster PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 083 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 834.970575 - 0: The maximum resident set size (KB) = 1069808 + 0: The total amount of wall time = 829.172773 + 0: The maximum resident set size (KB) = 1016984 Test 083 rrfs_smoke_conus13km_hrrr_warm_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 084 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 468.920189 - 0: The maximum resident set size (KB) = 975952 + 0: The total amount of wall time = 469.094874 + 0: The maximum resident set size (KB) = 966472 Test 084 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/rrfs_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/rrfs_conus13km_hrrr_warm_debug Checking test 085 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 745.942670 - 0: The maximum resident set size (KB) = 976964 + 0: The total amount of wall time = 713.145239 + 0: The maximum resident set size (KB) = 970840 Test 085 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_CubedSphereGrid_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_CubedSphereGrid_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_CubedSphereGrid_debug Checking test 086 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3428,334 +3428,334 @@ Checking test 086 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 160.855859 - 0: The maximum resident set size (KB) = 801672 + 0: The total amount of wall time = 140.366795 + 0: The maximum resident set size (KB) = 796068 Test 086 control_CubedSphereGrid_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_wrtGauss_netcdf_parallel_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_wrtGauss_netcdf_parallel_debug Checking test 087 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 152.584509 - 0: The maximum resident set size (KB) = 800264 + 0: The total amount of wall time = 143.721508 + 0: The maximum resident set size (KB) = 784196 Test 087 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_stochy_debug Checking test 088 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 168.537354 - 0: The maximum resident set size (KB) = 805240 + 0: The total amount of wall time = 160.879106 + 0: The maximum resident set size (KB) = 794472 Test 088 control_stochy_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_lndp_debug Checking test 089 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 153.889298 - 0: The maximum resident set size (KB) = 797004 + 0: The total amount of wall time = 148.229266 + 0: The maximum resident set size (KB) = 799760 Test 089 control_lndp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmg_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_csawmg_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_csawmg_debug Checking test 090 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 228.904061 - 0: The maximum resident set size (KB) = 846168 + 0: The total amount of wall time = 226.951401 + 0: The maximum resident set size (KB) = 839256 Test 090 control_csawmg_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmgt_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_csawmgt_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_csawmgt_debug Checking test 091 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 230.273245 - 0: The maximum resident set size (KB) = 844856 + 0: The total amount of wall time = 222.840220 + 0: The maximum resident set size (KB) = 837660 Test 091 control_csawmgt_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_ras_debug Checking test 092 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 153.966954 - 0: The maximum resident set size (KB) = 812240 + 0: The total amount of wall time = 146.919467 + 0: The maximum resident set size (KB) = 794776 Test 092 control_ras_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_diag_debug Checking test 093 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 159.835089 - 0: The maximum resident set size (KB) = 859352 + 0: The total amount of wall time = 149.562239 + 0: The maximum resident set size (KB) = 847432 Test 093 control_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_debug_p8 Checking test 094 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 170.963516 - 0: The maximum resident set size (KB) = 1620556 + 0: The total amount of wall time = 160.124003 + 0: The maximum resident set size (KB) = 1621840 Test 094 control_debug_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/regional_debug Checking test 095 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 980.200353 - 0: The maximum resident set size (KB) = 887304 + 0: The total amount of wall time = 967.571339 + 0: The maximum resident set size (KB) = 899872 Test 095 regional_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/rap_control_debug Checking test 096 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.618182 - 0: The maximum resident set size (KB) = 1177116 + 0: The total amount of wall time = 266.065005 + 0: The maximum resident set size (KB) = 1170888 Test 096 rap_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/hrrr_control_debug Checking test 097 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 268.658404 - 0: The maximum resident set size (KB) = 1173640 + 0: The total amount of wall time = 261.035257 + 0: The maximum resident set size (KB) = 1169208 Test 097 hrrr_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/rap_unified_drag_suite_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/rap_unified_drag_suite_debug Checking test 098 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.404145 - 0: The maximum resident set size (KB) = 1173260 + 0: The total amount of wall time = 266.710858 + 0: The maximum resident set size (KB) = 1171060 Test 098 rap_unified_drag_suite_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/rap_diag_debug Checking test 099 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 289.438244 - 0: The maximum resident set size (KB) = 1258664 + 0: The total amount of wall time = 277.381894 + 0: The maximum resident set size (KB) = 1246964 Test 099 rap_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/rap_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/rap_cires_ugwp_debug Checking test 100 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 278.541826 - 0: The maximum resident set size (KB) = 1176192 + 0: The total amount of wall time = 273.357385 + 0: The maximum resident set size (KB) = 1169256 Test 100 rap_cires_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/rap_unified_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/rap_unified_ugwp_debug Checking test 101 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.236138 - 0: The maximum resident set size (KB) = 1176048 + 0: The total amount of wall time = 271.534961 + 0: The maximum resident set size (KB) = 1170504 Test 101 rap_unified_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/rap_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/rap_lndp_debug Checking test 102 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.478989 - 0: The maximum resident set size (KB) = 1173496 + 0: The total amount of wall time = 267.207922 + 0: The maximum resident set size (KB) = 1169620 Test 102 rap_lndp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_flake_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/rap_flake_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/rap_flake_debug Checking test 103 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.002116 - 0: The maximum resident set size (KB) = 1171912 + 0: The total amount of wall time = 264.759427 + 0: The maximum resident set size (KB) = 1166284 Test 103 rap_flake_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/rap_progcld_thompson_debug Checking test 104 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.954785 - 0: The maximum resident set size (KB) = 1172860 + 0: The total amount of wall time = 271.418668 + 0: The maximum resident set size (KB) = 1166640 Test 104 rap_progcld_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_noah_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/rap_noah_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/rap_noah_debug Checking test 105 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.809237 - 0: The maximum resident set size (KB) = 1175356 + 0: The total amount of wall time = 264.196245 + 0: The maximum resident set size (KB) = 1166732 Test 105 rap_noah_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/rap_sfcdiff_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/rap_sfcdiff_debug Checking test 106 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.810854 - 0: The maximum resident set size (KB) = 1175724 + 0: The total amount of wall time = 266.423196 + 0: The maximum resident set size (KB) = 1170808 Test 106 rap_sfcdiff_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/rap_noah_sfcdiff_cires_ugwp_debug Checking test 107 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 451.872507 - 0: The maximum resident set size (KB) = 1175824 + 0: The total amount of wall time = 442.876251 + 0: The maximum resident set size (KB) = 1169780 Test 107 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/rrfs_v1beta_debug Checking test 108 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 267.843711 - 0: The maximum resident set size (KB) = 1169632 + 0: The total amount of wall time = 265.140956 + 0: The maximum resident set size (KB) = 1164184 Test 108 rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_wam_debug Checking test 109 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 284.932301 - 0: The maximum resident set size (KB) = 540208 + 0: The total amount of wall time = 278.653711 + 0: The maximum resident set size (KB) = 524224 Test 109 control_wam_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3766,14 +3766,14 @@ Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 217.017312 - 0: The maximum resident set size (KB) = 1079716 + 0: The total amount of wall time = 218.484976 + 0: The maximum resident set size (KB) = 1078380 Test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/rap_control_dyn32_phy32 Checking test 111 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3820,14 +3820,14 @@ Checking test 111 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 379.613457 - 0: The maximum resident set size (KB) = 993452 + 0: The total amount of wall time = 379.066202 + 0: The maximum resident set size (KB) = 1003248 Test 111 rap_control_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/hrrr_control_dyn32_phy32 Checking test 112 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3874,14 +3874,14 @@ Checking test 112 hrrr_control_dyn32_phy32 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 = 198.800738 - 0: The maximum resident set size (KB) = 958324 + 0: The total amount of wall time = 197.019970 + 0: The maximum resident set size (KB) = 957120 Test 112 hrrr_control_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/rap_2threads_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/rap_2threads_dyn32_phy32 Checking test 113 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3928,14 +3928,14 @@ Checking test 113 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 363.952191 - 0: The maximum resident set size (KB) = 1019132 + 0: The total amount of wall time = 364.658871 + 0: The maximum resident set size (KB) = 1016476 Test 113 rap_2threads_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/hrrr_control_2threads_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/hrrr_control_2threads_dyn32_phy32 Checking test 114 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3982,14 +3982,14 @@ Checking test 114 hrrr_control_2threads_dyn32_phy32 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 = 187.909148 - 0: The maximum resident set size (KB) = 997848 + 0: The total amount of wall time = 186.894378 + 0: The maximum resident set size (KB) = 1000592 Test 114 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/hrrr_control_decomp_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/hrrr_control_decomp_dyn32_phy32 Checking test 115 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4036,14 +4036,14 @@ Checking test 115 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 208.353864 - 0: The maximum resident set size (KB) = 902328 + 0: The total amount of wall time = 210.146228 + 0: The maximum resident set size (KB) = 890664 Test 115 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/rap_restart_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/rap_restart_dyn32_phy32 Checking test 116 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4082,14 +4082,14 @@ Checking test 116 rap_restart_dyn32_phy32 results .... Comparing 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.484945 - 0: The maximum resident set size (KB) = 946908 + 0: The total amount of wall time = 281.677445 + 0: The maximum resident set size (KB) = 942492 Test 116 rap_restart_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/hrrr_control_restart_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/hrrr_control_restart_dyn32_phy32 Checking test 117 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4128,14 +4128,14 @@ Checking test 117 hrrr_control_restart_dyn32_phy32 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 = 102.948888 - 0: The maximum resident set size (KB) = 865148 + 0: The total amount of wall time = 102.069878 + 0: The maximum resident set size (KB) = 864676 Test 117 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/rap_control_dyn64_phy32 Checking test 118 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4182,81 +4182,81 @@ Checking test 118 rap_control_dyn64_phy32 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 = 244.982774 - 0: The maximum resident set size (KB) = 965952 + 0: The total amount of wall time = 243.642829 + 0: The maximum resident set size (KB) = 968300 Test 118 rap_control_dyn64_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/rap_control_debug_dyn32_phy32 Checking test 119 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 269.678322 - 0: The maximum resident set size (KB) = 1062476 + 0: The total amount of wall time = 263.599410 + 0: The maximum resident set size (KB) = 1062116 Test 119 rap_control_debug_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/hrrr_control_debug_dyn32_phy32 Checking test 120 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 263.957398 - 0: The maximum resident set size (KB) = 1064016 + 0: The total amount of wall time = 259.209856 + 0: The maximum resident set size (KB) = 1056296 Test 120 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/rap_control_dyn64_phy32_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/rap_control_dyn64_phy32_debug Checking test 121 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.893806 - 0: The maximum resident set size (KB) = 1103676 + 0: The total amount of wall time = 268.095263 + 0: The maximum resident set size (KB) = 1096532 Test 121 rap_control_dyn64_phy32_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/hafs_regional_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/hafs_regional_atm Checking test 122 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 234.355735 - 0: The maximum resident set size (KB) = 1049508 + 0: The total amount of wall time = 233.109998 + 0: The maximum resident set size (KB) = 1050876 Test 122 hafs_regional_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/hafs_regional_atm_thompson_gfdlsf +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/hafs_regional_atm_thompson_gfdlsf Checking test 123 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 315.191707 - 0: The maximum resident set size (KB) = 1419376 + 0: The total amount of wall time = 309.722423 + 0: The maximum resident set size (KB) = 1415380 Test 123 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/hafs_regional_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/hafs_regional_atm_ocn Checking test 124 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4265,14 +4265,14 @@ Checking test 124 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 380.195568 - 0: The maximum resident set size (KB) = 1224544 + 0: The total amount of wall time = 374.183928 + 0: The maximum resident set size (KB) = 1226112 Test 124 hafs_regional_atm_ocn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_wav -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/hafs_regional_atm_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/hafs_regional_atm_wav Checking test 125 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4281,14 +4281,14 @@ Checking test 125 hafs_regional_atm_wav 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 = 741.116061 - 0: The maximum resident set size (KB) = 1249796 + 0: The total amount of wall time = 741.416599 + 0: The maximum resident set size (KB) = 1252092 Test 125 hafs_regional_atm_wav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/hafs_regional_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/hafs_regional_atm_ocn_wav Checking test 126 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4299,28 +4299,28 @@ Checking test 126 hafs_regional_atm_ocn_wav 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 = 839.078845 - 0: The maximum resident set size (KB) = 1268888 + 0: The total amount of wall time = 839.141562 + 0: The maximum resident set size (KB) = 1272948 Test 126 hafs_regional_atm_ocn_wav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/hafs_regional_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/hafs_regional_1nest_atm Checking test 127 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 317.316864 - 0: The maximum resident set size (KB) = 514292 + 0: The total amount of wall time = 320.232368 + 0: The maximum resident set size (KB) = 504140 Test 127 hafs_regional_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/hafs_regional_telescopic_2nests_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/hafs_regional_telescopic_2nests_atm Checking test 128 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4329,28 +4329,28 @@ Checking test 128 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 363.203838 - 0: The maximum resident set size (KB) = 518172 + 0: The total amount of wall time = 362.850062 + 0: The maximum resident set size (KB) = 512448 Test 128 hafs_regional_telescopic_2nests_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_global_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/hafs_global_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/hafs_global_1nest_atm Checking test 129 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 146.105843 - 0: The maximum resident set size (KB) = 354096 + 0: The total amount of wall time = 147.442166 + 0: The maximum resident set size (KB) = 352500 Test 129 hafs_global_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_global_multiple_4nests_atm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/hafs_global_multiple_4nests_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/hafs_global_multiple_4nests_atm Checking test 130 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4368,14 +4368,14 @@ Checking test 130 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 411.896821 - 0: The maximum resident set size (KB) = 423080 + 0: The total amount of wall time = 416.033815 + 0: The maximum resident set size (KB) = 425240 Test 130 hafs_global_multiple_4nests_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/hafs_regional_specified_moving_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/hafs_regional_specified_moving_1nest_atm Checking test 131 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4384,28 +4384,28 @@ Checking test 131 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 201.637041 - 0: The maximum resident set size (KB) = 520636 + 0: The total amount of wall time = 202.213376 + 0: The maximum resident set size (KB) = 518280 Test 131 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/hafs_regional_storm_following_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/hafs_regional_storm_following_1nest_atm Checking test 132 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 190.846695 - 0: The maximum resident set size (KB) = 527188 + 0: The total amount of wall time = 190.660281 + 0: The maximum resident set size (KB) = 518764 Test 132 hafs_regional_storm_following_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/hafs_regional_storm_following_1nest_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/hafs_regional_storm_following_1nest_atm_ocn Checking test 133 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4414,42 +4414,42 @@ Checking test 133 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 224.090380 - 0: The maximum resident set size (KB) = 563576 + 0: The total amount of wall time = 221.013475 + 0: The maximum resident set size (KB) = 569464 Test 133 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_global_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/hafs_global_storm_following_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/hafs_global_storm_following_1nest_atm Checking test 134 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 58.031765 - 0: The maximum resident set size (KB) = 367180 + 0: The total amount of wall time = 58.425813 + 0: The maximum resident set size (KB) = 374184 Test 134 hafs_global_storm_following_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 765.717282 - 0: The maximum resident set size (KB) = 586764 + 0: The total amount of wall time = 719.575293 + 0: The maximum resident set size (KB) = 569196 Test 135 hafs_regional_storm_following_1nest_atm_ocn_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 136 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4460,14 +4460,14 @@ Checking test 136 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 481.320400 - 0: The maximum resident set size (KB) = 620324 + 0: The total amount of wall time = 478.701472 + 0: The maximum resident set size (KB) = 640076 Test 136 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_docn -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/hafs_regional_docn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/hafs_regional_docn Checking test 137 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4475,14 +4475,14 @@ Checking test 137 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 359.508074 - 0: The maximum resident set size (KB) = 1227588 + 0: The total amount of wall time = 359.246037 + 0: The maximum resident set size (KB) = 1230184 Test 137 hafs_regional_docn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_docn_oisst -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/hafs_regional_docn_oisst +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/hafs_regional_docn_oisst Checking test 138 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4490,131 +4490,131 @@ Checking test 138 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 358.875071 - 0: The maximum resident set size (KB) = 1214276 + 0: The total amount of wall time = 361.440587 + 0: The maximum resident set size (KB) = 1216848 Test 138 hafs_regional_docn_oisst PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_datm_cdeps -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/hafs_regional_datm_cdeps +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/hafs_regional_datm_cdeps Checking test 139 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 966.754142 - 0: The maximum resident set size (KB) = 1039876 + 0: The total amount of wall time = 931.356491 + 0: The maximum resident set size (KB) = 1039688 Test 139 hafs_regional_datm_cdeps PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/datm_cdeps_control_cfsr Checking test 140 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 156.564583 - 0: The maximum resident set size (KB) = 1057280 + 0: The total amount of wall time = 154.148484 + 0: The maximum resident set size (KB) = 1057460 Test 140 datm_cdeps_control_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/datm_cdeps_restart_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/datm_cdeps_restart_cfsr Checking test 141 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 92.833064 - 0: The maximum resident set size (KB) = 1011248 + 0: The total amount of wall time = 90.113398 + 0: The maximum resident set size (KB) = 1011068 Test 141 datm_cdeps_restart_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/datm_cdeps_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/datm_cdeps_control_gefs Checking test 142 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.047662 - 0: The maximum resident set size (KB) = 970016 + 0: The total amount of wall time = 149.992715 + 0: The maximum resident set size (KB) = 960484 Test 142 datm_cdeps_control_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_iau_gefs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/datm_cdeps_iau_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/datm_cdeps_iau_gefs Checking test 143 datm_cdeps_iau_gefs 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 = 154.276007 - 0: The maximum resident set size (KB) = 961688 + 0: The total amount of wall time = 150.073489 + 0: The maximum resident set size (KB) = 974612 Test 143 datm_cdeps_iau_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_stochy_gefs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/datm_cdeps_stochy_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/datm_cdeps_stochy_gefs Checking test 144 datm_cdeps_stochy_gefs 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.848732 - 0: The maximum resident set size (KB) = 960584 + 0: The total amount of wall time = 152.580902 + 0: The maximum resident set size (KB) = 964428 Test 144 datm_cdeps_stochy_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_ciceC_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/datm_cdeps_ciceC_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/datm_cdeps_ciceC_cfsr Checking test 145 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 154.200763 - 0: The maximum resident set size (KB) = 1059680 + 0: The total amount of wall time = 155.248318 + 0: The maximum resident set size (KB) = 1056868 Test 145 datm_cdeps_ciceC_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/datm_cdeps_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/datm_cdeps_bulk_cfsr Checking test 146 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 154.384076 - 0: The maximum resident set size (KB) = 1083480 + 0: The total amount of wall time = 154.426988 + 0: The maximum resident set size (KB) = 1071396 Test 146 datm_cdeps_bulk_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/datm_cdeps_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/datm_cdeps_bulk_gefs Checking test 147 datm_cdeps_bulk_gefs 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.993248 - 0: The maximum resident set size (KB) = 964212 + 0: The total amount of wall time = 146.857586 + 0: The maximum resident set size (KB) = 958264 Test 147 datm_cdeps_bulk_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/datm_cdeps_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/datm_cdeps_mx025_cfsr Checking test 148 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4623,14 +4623,14 @@ Checking test 148 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 398.522889 - 0: The maximum resident set size (KB) = 876200 + 0: The total amount of wall time = 442.095809 + 0: The maximum resident set size (KB) = 879048 Test 148 datm_cdeps_mx025_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/datm_cdeps_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/datm_cdeps_mx025_gefs Checking test 149 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4639,77 +4639,77 @@ Checking test 149 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 397.380905 - 0: The maximum resident set size (KB) = 930916 + 0: The total amount of wall time = 415.595386 + 0: The maximum resident set size (KB) = 931852 Test 149 datm_cdeps_mx025_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/datm_cdeps_multiple_files_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/datm_cdeps_multiple_files_cfsr Checking test 150 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 151.923359 - 0: The maximum resident set size (KB) = 1067948 + 0: The total amount of wall time = 153.138454 + 0: The maximum resident set size (KB) = 1071876 Test 150 datm_cdeps_multiple_files_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/datm_cdeps_3072x1536_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/datm_cdeps_3072x1536_cfsr Checking test 151 datm_cdeps_3072x1536_cfsr 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 = 226.633339 - 0: The maximum resident set size (KB) = 2312280 + 0: The total amount of wall time = 217.780644 + 0: The maximum resident set size (KB) = 2364600 Test 151 datm_cdeps_3072x1536_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_gfs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/datm_cdeps_gfs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/datm_cdeps_gfs Checking test 152 datm_cdeps_gfs 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 = 224.587144 - 0: The maximum resident set size (KB) = 2371564 + 0: The total amount of wall time = 221.970108 + 0: The maximum resident set size (KB) = 2372240 Test 152 datm_cdeps_gfs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/datm_cdeps_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/datm_cdeps_debug_cfsr Checking test 153 datm_cdeps_debug_cfsr 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 = 435.285204 - 0: The maximum resident set size (KB) = 988204 + 0: The total amount of wall time = 355.518930 + 0: The maximum resident set size (KB) = 980536 Test 153 datm_cdeps_debug_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr_faster -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/datm_cdeps_control_cfsr_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/datm_cdeps_control_cfsr_faster Checking test 154 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 153.530364 - 0: The maximum resident set size (KB) = 1062504 + 0: The total amount of wall time = 155.245582 + 0: The maximum resident set size (KB) = 1073428 Test 154 datm_cdeps_control_cfsr_faster PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/datm_cdeps_lnd_gswp3 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/datm_cdeps_lnd_gswp3 Checking test 155 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4718,14 +4718,14 @@ Checking test 155 datm_cdeps_lnd_gswp3 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 = 6.730492 - 0: The maximum resident set size (KB) = 264260 + 0: The total amount of wall time = 7.008973 + 0: The maximum resident set size (KB) = 262896 Test 155 datm_cdeps_lnd_gswp3 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/datm_cdeps_lnd_gswp3_rst +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/datm_cdeps_lnd_gswp3_rst Checking test 156 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4734,14 +4734,14 @@ Checking test 156 datm_cdeps_lnd_gswp3_rst 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 = 11.876085 - 0: The maximum resident set size (KB) = 263812 + 0: The total amount of wall time = 13.140404 + 0: The maximum resident set size (KB) = 264396 Test 156 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_atmlnd_sbs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_p8_atmlnd_sbs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_p8_atmlnd_sbs Checking test 157 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4826,14 +4826,14 @@ Checking test 157 control_p8_atmlnd_sbs 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.914941 - 0: The maximum resident set size (KB) = 1608840 + 0: The total amount of wall time = 206.302628 + 0: The maximum resident set size (KB) = 1600864 Test 157 control_p8_atmlnd_sbs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_atmwav -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/control_atmwav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_atmwav Checking test 158 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4877,14 +4877,14 @@ Checking test 158 control_atmwav 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.345755 - 0: The maximum resident set size (KB) = 660424 + 0: The total amount of wall time = 88.414545 + 0: The maximum resident set size (KB) = 663760 Test 158 control_atmwav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/atmaero_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/atmaero_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/atmaero_control_p8 Checking test 159 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4928,14 +4928,14 @@ Checking test 159 atmaero_control_p8 results .... Comparing 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.203582 - 0: The maximum resident set size (KB) = 2975592 + 0: The total amount of wall time = 231.456058 + 0: The maximum resident set size (KB) = 2973528 Test 159 atmaero_control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/atmaero_control_p8_rad -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/atmaero_control_p8_rad +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/atmaero_control_p8_rad Checking test 160 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4979,14 +4979,14 @@ Checking test 160 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 280.859474 - 0: The maximum resident set size (KB) = 3042772 + 0: The total amount of wall time = 281.032355 + 0: The maximum resident set size (KB) = 3044124 Test 160 atmaero_control_p8_rad PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/atmaero_control_p8_rad_micro -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/atmaero_control_p8_rad_micro +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/atmaero_control_p8_rad_micro Checking test 161 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5030,14 +5030,14 @@ Checking test 161 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 286.106403 - 0: The maximum resident set size (KB) = 3053204 + 0: The total amount of wall time = 289.221367 + 0: The maximum resident set size (KB) = 3056316 Test 161 atmaero_control_p8_rad_micro PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_atmaq -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/regional_atmaq +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/regional_atmaq Checking test 162 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5053,14 +5053,14 @@ Checking test 162 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 628.654072 - 0: The maximum resident set size (KB) = 1469524 + 0: The total amount of wall time = 649.096086 + 0: The maximum resident set size (KB) = 1467256 Test 162 regional_atmaq PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_atmaq_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/regional_atmaq_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/regional_atmaq_debug Checking test 163 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5074,14 +5074,14 @@ Checking test 163 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1226.243789 - 0: The maximum resident set size (KB) = 1398516 + 0: The total amount of wall time = 1178.167822 + 0: The maximum resident set size (KB) = 1388852 Test 163 regional_atmaq_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_atmaq_faster -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_21228/regional_atmaq_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/regional_atmaq_faster Checking test 164 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5097,12 +5097,12 @@ Checking test 164 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 549.265792 - 0: The maximum resident set size (KB) = 1473148 + 0: The total amount of wall time = 574.357557 + 0: The maximum resident set size (KB) = 1458436 Test 164 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Sun Apr 2 13:57:15 UTC 2023 -Elapsed time: 01h:12m:42s. Have a nice day! +Tue Apr 4 21:35:56 UTC 2023 +Elapsed time: 01h:17m:16s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index bad2e8c1f86..83d52cf5d94 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,43 +1,45 @@ -Mon Apr 3 01:00:27 UTC 2023 +Wed Apr 5 02:52:46 UTC 2023 Start Regression test -Compile 001 elapsed time 2268 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 002 elapsed time 2177 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 003 elapsed time 1861 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 004 elapsed time 522 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 423 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 1936 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 007 elapsed time 1812 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 008 elapsed time 3552 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 009 elapsed time 2267 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 010 elapsed time 1861 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 011 elapsed time 1703 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 012 elapsed time 1932 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 013 elapsed time 2421 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 014 elapsed time 671 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 548 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 1621 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 017 elapsed time 1629 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 018 elapsed time 481 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 464 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 1822 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 021 elapsed time 457 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 2341 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 023 elapsed time 1777 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 024 elapsed time 377 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 025 elapsed time 295 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 417 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 027 elapsed time 180 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 028 elapsed time 1776 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 029 elapsed time 1897 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 030 elapsed time 1861 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 031 elapsed time 1846 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 032 elapsed time 883 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 2301 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 001 elapsed time 2264 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 002 elapsed time 2086 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 003 elapsed time 1857 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 004 elapsed time 485 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 446 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 1656 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 007 elapsed time 1581 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 008 elapsed time 3966 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 009 elapsed time 2427 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 010 elapsed time 2701 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 011 elapsed time 2264 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 012 elapsed time 2191 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 013 elapsed time 3058 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 014 elapsed time 537 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 409 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 1835 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 017 elapsed time 1968 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 018 elapsed time 839 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 435 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 1667 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 021 elapsed time 609 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 3664 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 023 elapsed time 2057 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 024 elapsed time 418 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 025 elapsed time 315 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 1243 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 027 elapsed time 1155 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 028 elapsed time 2900 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 029 elapsed time 2662 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 030 elapsed time 2778 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 031 elapsed time 2039 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 032 elapsed time 608 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 2105 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Test 001 cpld_control_p8_mixedmode FAIL -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8_mixedmode -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/cpld_control_p8_mixedmode -Checking test 001 cpld_control_p8_mixedmode results .... + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_gfsv17 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/cpld_control_gfsv17 +Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -62,7 +64,6 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -101,27 +102,23 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1187.930317 - 0: The maximum resident set size (KB) = 1730264 + 0: The total amount of wall time = 1661.812533 + 0: The maximum resident set size (KB) = 1641096 -Test 001 cpld_control_p8_mixedmode PASS +Test 002 cpld_control_gfsv17 PASS +Test 003 cpld_control_p8 FAIL -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_gfsv17 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/cpld_control_gfsv17 -Checking test 002 cpld_control_gfsv17 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 +Test 005 cpld_control_qr_p8 FAIL + +Test 007 cpld_2threads_p8 FAIL + +Test 008 cpld_decomp_p8 FAIL + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/cpld_mpi_p8 +Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -134,6 +131,7 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -172,15 +170,15 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 916.636491 - 0: The maximum resident set size (KB) = 1650456 + 0: The total amount of wall time = 1699.619713 + 0: The maximum resident set size (KB) = 1740280 -Test 002 cpld_control_gfsv17 PASS +Test 009 cpld_mpi_p8 PASS Tries: 2 -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/cpld_control_p8 -Checking test 003 cpld_control_p8 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_ciceC_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/cpld_control_ciceC_p8 +Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -244,15 +242,29 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1280.155259 - 0: The maximum resident set size (KB) = 1776512 + 0: The total amount of wall time = 1708.861815 + 0: The maximum resident set size (KB) = 1774864 + +Test 010 cpld_control_ciceC_p8 PASS Tries: 2 -Test 003 cpld_control_p8 PASS +Test 011 cpld_control_noaero_p8 FAIL -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/cpld_restart_p8 -Checking test 004 cpld_restart_p8 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_c96_noaero_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/cpld_control_nowave_noaero_p8 +Checking test 012 cpld_control_nowave_noaero_p8 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 @@ -265,7 +277,6 @@ Checking test 004 cpld_restart_p8 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -301,30 +312,137 @@ Checking test 004 cpld_restart_p8 results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 600.467909 - 0: The maximum resident set size (KB) = 1486268 + 0: The total amount of wall time = 1691.051744 + 0: The maximum resident set size (KB) = 1671100 -Test 004 cpld_restart_p8 PASS +Test 012 cpld_control_nowave_noaero_p8 PASS Tries: 2 -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/cpld_control_qr_p8 -Checking test 005 cpld_control_qr_p8 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 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_debug_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/cpld_debug_p8 +Checking test 013 cpld_debug_p8 results .... + Comparing sfcf003.tile1.nc .........OK + Comparing sfcf003.tile2.nc .........OK + Comparing sfcf003.tile3.nc .........OK + Comparing sfcf003.tile4.nc .........OK + Comparing sfcf003.tile5.nc .........OK + Comparing sfcf003.tile6.nc .........OK + Comparing atmf003.tile1.nc .........OK + Comparing atmf003.tile2.nc .........OK + Comparing atmf003.tile3.nc .........OK + Comparing atmf003.tile4.nc .........OK + Comparing atmf003.tile5.nc .........OK + Comparing atmf003.tile6.nc .........OK + Comparing gocart.inst_aod.20210322_0900z.nc4 .........OK + Comparing RESTART/20210322.090000.coupler.res .........OK + Comparing RESTART/20210322.090000.fv_core.res.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-22-32400.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK + Comparing 20210322.090000.out_pnt.ww3 .........OK + Comparing 20210322.090000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 936.244934 + 0: The maximum resident set size (KB) = 1835996 + +Test 013 cpld_debug_p8 PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_debug_noaero_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/cpld_debug_noaero_p8 +Checking test 014 cpld_debug_noaero_p8 results .... + Comparing sfcf003.tile1.nc .........OK + Comparing sfcf003.tile2.nc .........OK + Comparing sfcf003.tile3.nc .........OK + Comparing sfcf003.tile4.nc .........OK + Comparing sfcf003.tile5.nc .........OK + Comparing sfcf003.tile6.nc .........OK + Comparing atmf003.tile1.nc .........OK + Comparing atmf003.tile2.nc .........OK + Comparing atmf003.tile3.nc .........OK + Comparing atmf003.tile4.nc .........OK + Comparing atmf003.tile5.nc .........OK + Comparing atmf003.tile6.nc .........OK + Comparing RESTART/20210322.090000.coupler.res .........OK + Comparing RESTART/20210322.090000.fv_core.res.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-22-32400.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK + Comparing 20210322.090000.out_pnt.ww3 .........OK + Comparing 20210322.090000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 586.130891 + 0: The maximum resident set size (KB) = 1635140 + +Test 014 cpld_debug_noaero_p8 PASS + +Test 015 cpld_control_noaero_p8_agrid FAIL + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_c48 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/cpld_control_c48 +Checking test 016 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -337,114 +455,177 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1240.675889 - 0: The maximum resident set size (KB) = 1788000 + 0: The total amount of wall time = 1380.068777 + 0: The maximum resident set size (KB) = 2765792 -Test 005 cpld_control_qr_p8 PASS Tries: 2 +Test 016 cpld_control_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/cpld_restart_qr_p8 -Checking test 006 cpld_restart_qr_p8 results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_warmstart_c48 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/cpld_warmstart_c48 +Checking test 017 cpld_warmstart_c48 results .... + Comparing sfcf006.tile1.nc .........OK + Comparing sfcf006.tile2.nc .........OK + Comparing sfcf006.tile3.nc .........OK + Comparing sfcf006.tile4.nc .........OK + Comparing sfcf006.tile5.nc .........OK + Comparing sfcf006.tile6.nc .........OK + Comparing atmf006.tile1.nc .........OK + Comparing atmf006.tile2.nc .........OK + Comparing atmf006.tile3.nc .........OK + Comparing atmf006.tile4.nc .........OK + Comparing atmf006.tile5.nc .........OK + Comparing atmf006.tile6.nc .........OK + Comparing RESTART/20210323.120000.coupler.res .........OK + Comparing RESTART/20210323.120000.fv_core.res.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 839.574368 - 0: The maximum resident set size (KB) = 1509920 + 0: The total amount of wall time = 314.717023 + 0: The maximum resident set size (KB) = 2762184 -Test 006 cpld_restart_qr_p8 PASS +Test 017 cpld_warmstart_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/cpld_2threads_p8 -Checking test 007 cpld_2threads_p8 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_warmstart_c48 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/cpld_restart_c48 +Checking test 018 cpld_restart_c48 results .... + Comparing sfcf006.tile1.nc .........OK + Comparing sfcf006.tile2.nc .........OK + Comparing sfcf006.tile3.nc .........OK + Comparing sfcf006.tile4.nc .........OK + Comparing sfcf006.tile5.nc .........OK + Comparing sfcf006.tile6.nc .........OK + Comparing atmf006.tile1.nc .........OK + Comparing atmf006.tile2.nc .........OK + Comparing atmf006.tile3.nc .........OK + Comparing atmf006.tile4.nc .........OK + Comparing atmf006.tile5.nc .........OK + Comparing atmf006.tile6.nc .........OK + Comparing RESTART/20210323.120000.coupler.res .........OK + Comparing RESTART/20210323.120000.fv_core.res.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK + + 0: The total amount of wall time = 292.382873 + 0: The maximum resident set size (KB) = 2212040 + +Test 018 cpld_restart_c48 PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8_faster +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/cpld_control_p8_faster +Checking test 019 cpld_control_p8_faster 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 @@ -496,28 +677,103 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1283.780577 - 0: The maximum resident set size (KB) = 1971376 + 0: The total amount of wall time = 1601.713966 + 0: The maximum resident set size (KB) = 1792068 -Test 007 cpld_2threads_p8 PASS Tries: 2 +Test 019 cpld_control_p8_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/cpld_decomp_p8 -Checking test 008 cpld_decomp_p8 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_CubedSphereGrid +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/control_CubedSphereGrid +Checking test 020 control_CubedSphereGrid results .... + Comparing sfcf000.tile1.nc .........OK + Comparing sfcf000.tile2.nc .........OK + Comparing sfcf000.tile3.nc .........OK + Comparing sfcf000.tile4.nc .........OK + Comparing sfcf000.tile5.nc .........OK + Comparing sfcf000.tile6.nc .........OK Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK Comparing sfcf024.tile4.nc .........OK Comparing sfcf024.tile5.nc .........OK Comparing sfcf024.tile6.nc .........OK + Comparing atmf000.tile1.nc .........OK + Comparing atmf000.tile2.nc .........OK + Comparing atmf000.tile3.nc .........OK + Comparing atmf000.tile4.nc .........OK + Comparing atmf000.tile5.nc .........OK + Comparing atmf000.tile6.nc .........OK Comparing atmf024.tile1.nc .........OK Comparing atmf024.tile2.nc .........OK Comparing atmf024.tile3.nc .........OK Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + + 0: The total amount of wall time = 1378.924290 + 0: The maximum resident set size (KB) = 578872 + +Test 020 control_CubedSphereGrid PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_CubedSphereGrid_parallel +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/control_CubedSphereGrid_parallel +Checking test 021 control_CubedSphereGrid_parallel 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 = 1275.458310 + 0: The maximum resident set size (KB) = 584020 + +Test 021 control_CubedSphereGrid_parallel PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_latlon +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/control_latlon +Checking test 022 control_latlon results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + + 0: The total amount of wall time = 1281.670639 + 0: The maximum resident set size (KB) = 577776 + +Test 022 control_latlon PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/control_wrtGauss_netcdf_parallel +Checking test 023 control_wrtGauss_netcdf_parallel results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + + 0: The total amount of wall time = 1241.538179 + 0: The maximum resident set size (KB) = 575840 + +Test 023 control_wrtGauss_netcdf_parallel PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c48 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/control_c48 +Checking test 024 control_c48 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -550,177 +806,128 @@ Checking test 008 cpld_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1247.443273 - 0: The maximum resident set size (KB) = 1772096 +0: The total amount of wall time = 905.598413 +0: The maximum resident set size (KB) = 798264 -Test 008 cpld_decomp_p8 PASS +Test 024 control_c48 PASS +Test 025 control_c192 FAIL -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/cpld_mpi_p8 -Checking test 009 cpld_mpi_p8 results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK +Test 026 control_c384 FAIL - 0: The total amount of wall time = 1179.188373 - 0: The maximum resident set size (KB) = 1727404 +Test 027 control_c384gdas FAIL -Test 009 cpld_mpi_p8 PASS +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_stochy +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/control_stochy +Checking test 028 control_stochy results .... + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF12 .........OK -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_ciceC_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/cpld_control_ciceC_p8 -Checking test 010 cpld_control_ciceC_p8 results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK + 0: The total amount of wall time = 1106.434268 + 0: The maximum resident set size (KB) = 583904 - 0: The total amount of wall time = 1216.069211 - 0: The maximum resident set size (KB) = 1777828 +Test 028 control_stochy PASS -Test 010 cpld_control_ciceC_p8 PASS Tries: 2 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_stochy +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/control_stochy_restart +Checking test 029 control_stochy_restart results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_noaero_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/cpld_control_noaero_p8 -Checking test 011 cpld_control_noaero_p8 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 + 0: The total amount of wall time = 194.457181 + 0: The maximum resident set size (KB) = 401636 + +Test 029 control_stochy_restart PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_lndp +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/control_lndp +Checking test 030 control_lndp results .... + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF12 .........OK + + 0: The total amount of wall time = 1058.038737 + 0: The maximum resident set size (KB) = 578488 + +Test 030 control_lndp PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_iovr4 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/control_iovr4 +Checking test 031 control_iovr4 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + + 0: The total amount of wall time = 1326.799996 + 0: The maximum resident set size (KB) = 580384 + +Test 031 control_iovr4 PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_iovr5 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/control_iovr5 +Checking test 032 control_iovr5 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + + 0: The total amount of wall time = 1397.285635 + 0: The maximum resident set size (KB) = 575644 + +Test 032 control_iovr5 PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/control_p8 +Checking test 033 control_p8 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -753,45 +960,20 @@ Checking test 011 cpld_control_noaero_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1487.954656 - 0: The maximum resident set size (KB) = 1622860 + 0: The total amount of wall time = 633.081155 + 0: The maximum resident set size (KB) = 1535544 -Test 011 cpld_control_noaero_p8 PASS +Test 033 control_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/cpld_control_nowave_noaero_p8 -Checking test 012 cpld_control_nowave_noaero_p8 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 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/control_restart_p8 +Checking test 034 control_restart_p8 results .... + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -824,162 +1006,124 @@ Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing 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 = 1366.201451 - 0: The maximum resident set size (KB) = 1665832 + 0: The total amount of wall time = 331.216141 + 0: The maximum resident set size (KB) = 778528 -Test 012 cpld_control_nowave_noaero_p8 PASS +Test 034 control_restart_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_debug_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/cpld_debug_p8 -Checking test 013 cpld_debug_p8 results .... - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing gocart.inst_aod.20210322_0900z.nc4 .........OK - Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-32400.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK - Comparing 20210322.090000.out_pnt.ww3 .........OK - Comparing 20210322.090000.out_grd.ww3 .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/control_qr_p8 +Checking test 035 control_qr_p8 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 1512.437780 - 0: The maximum resident set size (KB) = 1824908 + 0: The total amount of wall time = 1222.370960 + 0: The maximum resident set size (KB) = 1551856 -Test 013 cpld_debug_p8 PASS +Test 035 control_qr_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_debug_noaero_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/cpld_debug_noaero_p8 -Checking test 014 cpld_debug_noaero_p8 results .... - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-32400.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK - Comparing 20210322.090000.out_pnt.ww3 .........OK - Comparing 20210322.090000.out_grd.ww3 .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/control_restart_qr_p8 +Checking test 036 control_restart_qr_p8 results .... + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 873.652901 - 0: The maximum resident set size (KB) = 1644712 + 0: The total amount of wall time = 410.344437 + 0: The maximum resident set size (KB) = 798472 -Test 014 cpld_debug_noaero_p8 PASS +Test 036 control_restart_qr_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/cpld_control_noaero_p8_agrid -Checking test 015 cpld_control_noaero_p8_agrid 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 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/control_decomp_p8 +Checking test 037 control_decomp_p8 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -1012,31 +1156,24 @@ Checking test 015 cpld_control_noaero_p8_agrid results .... Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing 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 = 1239.448211 - 0: The maximum resident set size (KB) = 1678864 + 0: The total amount of wall time = 582.538337 + 0: The maximum resident set size (KB) = 1525728 -Test 015 cpld_control_noaero_p8_agrid PASS +Test 037 control_decomp_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_c48 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/cpld_control_c48 -Checking test 016 cpld_control_c48 results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/control_2threads_p8 +Checking test 038 control_2threads_p8 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -1069,158 +1206,54 @@ Checking test 016 cpld_control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing 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 = 968.933952 - 0: The maximum resident set size (KB) = 2765836 + 0: The total amount of wall time = 589.502941 + 0: The maximum resident set size (KB) = 1628520 -Test 016 cpld_control_c48 PASS +Test 038 control_2threads_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_warmstart_c48 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/cpld_warmstart_c48 -Checking test 017 cpld_warmstart_c48 results .... - Comparing sfcf006.tile1.nc .........OK - Comparing sfcf006.tile2.nc .........OK - Comparing sfcf006.tile3.nc .........OK - Comparing sfcf006.tile4.nc .........OK - Comparing sfcf006.tile5.nc .........OK - Comparing sfcf006.tile6.nc .........OK - Comparing atmf006.tile1.nc .........OK - Comparing atmf006.tile2.nc .........OK - Comparing atmf006.tile3.nc .........OK - Comparing atmf006.tile4.nc .........OK - Comparing atmf006.tile5.nc .........OK - Comparing atmf006.tile6.nc .........OK - Comparing RESTART/20210323.120000.coupler.res .........OK - Comparing RESTART/20210323.120000.fv_core.res.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - - 0: The total amount of wall time = 480.357976 - 0: The maximum resident set size (KB) = 2766188 - -Test 017 cpld_warmstart_c48 PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_warmstart_c48 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/cpld_restart_c48 -Checking test 018 cpld_restart_c48 results .... - Comparing sfcf006.tile1.nc .........OK - Comparing sfcf006.tile2.nc .........OK - Comparing sfcf006.tile3.nc .........OK - Comparing sfcf006.tile4.nc .........OK - Comparing sfcf006.tile5.nc .........OK - Comparing sfcf006.tile6.nc .........OK - Comparing atmf006.tile1.nc .........OK - Comparing atmf006.tile2.nc .........OK - Comparing atmf006.tile3.nc .........OK - Comparing atmf006.tile4.nc .........OK - Comparing atmf006.tile5.nc .........OK - Comparing atmf006.tile6.nc .........OK - Comparing RESTART/20210323.120000.coupler.res .........OK - Comparing RESTART/20210323.120000.fv_core.res.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_lndp +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/control_p8_lndp +Checking test 039 control_p8_lndp results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing sfcf048.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing atmf048.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSFLX.GrbF48 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 177.217862 - 0: The maximum resident set size (KB) = 2214856 + 0: The total amount of wall time = 1475.047910 + 0: The maximum resident set size (KB) = 1540072 -Test 018 cpld_restart_c48 PASS +Test 039 control_p8_lndp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8_faster -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/cpld_control_p8_faster -Checking test 019 cpld_control_p8_faster results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_rrtmgp +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/control_p8_rrtmgp +Checking test 040 control_p8_rrtmgp results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -1253,109 +1286,28 @@ Checking test 019 cpld_control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 1101.113856 - 0: The maximum resident set size (KB) = 1766268 - -Test 019 cpld_control_p8_faster PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_CubedSphereGrid -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_CubedSphereGrid -Checking test 020 control_CubedSphereGrid results .... - Comparing sfcf000.tile1.nc .........OK - Comparing sfcf000.tile2.nc .........OK - Comparing sfcf000.tile3.nc .........OK - Comparing sfcf000.tile4.nc .........OK - Comparing sfcf000.tile5.nc .........OK - Comparing sfcf000.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf000.tile1.nc .........OK - Comparing atmf000.tile2.nc .........OK - Comparing atmf000.tile3.nc .........OK - Comparing atmf000.tile4.nc .........OK - Comparing atmf000.tile5.nc .........OK - Comparing atmf000.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - - 0: The total amount of wall time = 522.535248 - 0: The maximum resident set size (KB) = 578728 - -Test 020 control_CubedSphereGrid PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_CubedSphereGrid_parallel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_CubedSphereGrid_parallel -Checking test 021 control_CubedSphereGrid_parallel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc .........OK - 0: The total amount of wall time = 546.257707 - 0: The maximum resident set size (KB) = 578996 + 0: The total amount of wall time = 827.641733 + 0: The maximum resident set size (KB) = 1603532 -Test 021 control_CubedSphereGrid_parallel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_latlon -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_latlon -Checking test 022 control_latlon results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 514.637093 - 0: The maximum resident set size (KB) = 575924 - -Test 022 control_latlon PASS +Test 040 control_p8_rrtmgp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_wrtGauss_netcdf_parallel -Checking test 023 control_wrtGauss_netcdf_parallel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_mynn +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/control_p8_mynn +Checking test 041 control_p8_mynn results .... Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 515.923199 - 0: The maximum resident set size (KB) = 572316 - -Test 023 control_wrtGauss_netcdf_parallel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c48 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_c48 -Checking test 024 control_c48 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -1389,191 +1341,125 @@ Checking test 024 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 654.328087 -0: The maximum resident set size (KB) = 800572 + 0: The total amount of wall time = 875.621593 + 0: The maximum resident set size (KB) = 1563352 -Test 024 control_c48 PASS +Test 041 control_p8_mynn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c192 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_c192 -Checking test 025 control_c192 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/merra2_thompson +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/merra2_thompson +Checking test 042 merra2_thompson results .... Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1294.260751 - 0: The maximum resident set size (KB) = 693588 - -Test 025 control_c192 PASS - -Test 026 control_c384 FAIL - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c384gdas -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_c384gdas -Checking test 027 control_c384gdas results .... - Comparing sfcf000.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf006.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF06 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF06 .........OK - Comparing RESTART/20210322.060000.coupler.res .........OK - Comparing RESTART/20210322.060000.fv_core.res.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 1620.904775 - 0: The maximum resident set size (KB) = 1196284 - -Test 027 control_c384gdas PASS Tries: 2 - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_stochy -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_stochy -Checking test 028 control_stochy results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK + 0: The total amount of wall time = 1001.638221 + 0: The maximum resident set size (KB) = 1550216 - 0: The total amount of wall time = 382.389479 - 0: The maximum resident set size (KB) = 579404 +Test 042 merra2_thompson PASS -Test 028 control_stochy PASS +Test 043 regional_control FAIL +Test 045 regional_control_qr FAIL -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_stochy -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_stochy_restart -Checking test 029 control_stochy_restart results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK +Test 047 regional_decomp FAIL - 0: The total amount of wall time = 135.350117 - 0: The maximum resident set size (KB) = 400196 +Test 048 regional_2threads FAIL -Test 029 control_stochy_restart PASS +Test 049 regional_netcdf_parallel FAIL +Test 050 regional_2dwrtdecomp FAIL -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_lndp -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_lndp -Checking test 030 control_lndp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK +Test 051 rap_control FAIL - 0: The total amount of wall time = 317.662756 - 0: The maximum resident set size (KB) = 574408 -Test 030 control_lndp PASS +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_spp_sppt_shum_skeb +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/regional_spp_sppt_shum_skeb +Checking test 052 regional_spp_sppt_shum_skeb results .... + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF01 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF01 .........OK + 0: The total amount of wall time = 795.019961 + 0: The maximum resident set size (KB) = 1089404 -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_iovr4 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_iovr4 -Checking test 031 control_iovr4 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK +Test 052 regional_spp_sppt_shum_skeb PASS Tries: 2 - 0: The total amount of wall time = 493.044938 - 0: The maximum resident set size (KB) = 576556 +Test 053 rap_decomp FAIL -Test 031 control_iovr4 PASS +Test 054 rap_2threads FAIL +Test 056 rap_sfcdiff FAIL -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_iovr5 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_iovr5 -Checking test 032 control_iovr5 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK +Test 057 rap_sfcdiff_decomp FAIL - 0: The total amount of wall time = 465.193262 - 0: The maximum resident set size (KB) = 575844 +Test 059 hrrr_control FAIL -Test 032 control_iovr5 PASS +Test 060 hrrr_control_decomp FAIL -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_p8 -Checking test 033 control_p8 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/hrrr_control_2threads +Checking test 061 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -1607,19 +1493,27 @@ Checking test 033 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 422.211889 - 0: The maximum resident set size (KB) = 1536352 + 0: The total amount of wall time = 1694.790748 + 0: The maximum resident set size (KB) = 1019528 -Test 033 control_p8 PASS +Test 061 hrrr_control_2threads PASS Tries: 2 -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_restart_p8 -Checking test 034 control_restart_p8 results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1beta +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/rrfs_v1beta +Checking test 063 rrfs_v1beta results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -1653,295 +1547,185 @@ Checking test 034 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 251.481896 - 0: The maximum resident set size (KB) = 768888 + 0: The total amount of wall time = 1214.007585 + 0: The maximum resident set size (KB) = 953068 -Test 034 control_restart_p8 PASS +Test 063 rrfs_v1beta PASS Tries: 2 -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_qr_p8 -Checking test 035 control_qr_p8 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1nssl +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/rrfs_v1nssl +Checking test 064 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 425.992683 - 0: The maximum resident set size (KB) = 1540936 + 0: The total amount of wall time = 1435.434453 + 0: The maximum resident set size (KB) = 636804 -Test 035 control_qr_p8 PASS +Test 064 rrfs_v1nssl PASS Tries: 2 -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_restart_qr_p8 -Checking test 036 control_restart_qr_p8 results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/rrfs_v1nssl_nohailnoccn +Checking test 065 rrfs_v1nssl_nohailnoccn results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 316.047884 - 0: The maximum resident set size (KB) = 782812 + 0: The total amount of wall time = 1315.360955 + 0: The maximum resident set size (KB) = 629264 -Test 036 control_restart_qr_p8 PASS +Test 065 rrfs_v1nssl_nohailnoccn PASS Tries: 2 -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_decomp_p8 -Checking test 037 control_decomp_p8 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/rrfs_smoke_conus13km_hrrr_warm +Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK - 0: The total amount of wall time = 355.275471 - 0: The maximum resident set size (KB) = 1526360 + 0: The total amount of wall time = 1347.863417 + 0: The maximum resident set size (KB) = 898628 -Test 037 control_decomp_p8 PASS +Test 066 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_2threads_p8 -Checking test 038 control_2threads_p8 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/rrfs_smoke_conus13km_hrrr_warm_2threads +Checking test 067 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK - 0: The total amount of wall time = 338.266716 - 0: The maximum resident set size (KB) = 1616104 + 0: The total amount of wall time = 1186.267058 + 0: The maximum resident set size (KB) = 866752 -Test 038 control_2threads_p8 PASS +Test 067 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_lndp -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_p8_lndp -Checking test 039 control_p8_lndp results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/rrfs_conus13km_hrrr_warm +Checking test 068 rrfs_conus13km_hrrr_warm 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 + + 0: The total amount of wall time = 528.957764 + 0: The maximum resident set size (KB) = 864464 + +Test 068 rrfs_conus13km_hrrr_warm PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/rrfs_smoke_conus13km_radar_tten_warm +Checking test 069 rrfs_smoke_conus13km_radar_tten_warm 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 + + 0: The total amount of wall time = 524.429686 + 0: The maximum resident set size (KB) = 909920 + +Test 069 rrfs_smoke_conus13km_radar_tten_warm PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/rrfs_conus13km_hrrr_warm_restart_mismatch +Checking test 070 rrfs_conus13km_hrrr_warm_restart_mismatch results .... + Comparing sfcf002.nc .........OK + Comparing atmf002.nc .........OK + + 0: The total amount of wall time = 141.616788 + 0: The maximum resident set size (KB) = 844520 + +Test 070 rrfs_conus13km_hrrr_warm_restart_mismatch PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmg +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/control_csawmg +Checking test 071 control_csawmg results .... Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK - Comparing sfcf048.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK Comparing atmf024.nc .........OK - Comparing atmf048.nc .........OK Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK - Comparing GFSFLX.GrbF48 .........OK Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 728.032402 - 0: The maximum resident set size (KB) = 1548256 + 0: The total amount of wall time = 1208.780362 + 0: The maximum resident set size (KB) = 670060 -Test 039 control_p8_lndp PASS +Test 071 control_csawmg PASS +Test 072 control_csawmgt FAIL -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_rrtmgp -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_p8_rrtmgp -Checking test 040 control_p8_rrtmgp results .... + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_ras +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/control_ras +Checking test 073 control_ras results .... Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 496.377064 - 0: The maximum resident set size (KB) = 1611220 + 0: The total amount of wall time = 1392.463929 + 0: The maximum resident set size (KB) = 638648 -Test 040 control_p8_rrtmgp PASS +Test 073 control_ras PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_mynn -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_p8_mynn -Checking test 041 control_p8_mynn results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wam +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/control_wam +Checking test 074 control_wam results .... + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK + + 0: The total amount of wall time = 1150.814583 + 0: The maximum resident set size (KB) = 482648 + +Test 074 control_wam PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_faster +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/control_p8_faster +Checking test 075 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1987,444 +1771,447 @@ Checking test 041 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 434.159855 - 0: The maximum resident set size (KB) = 1541684 + 0: The total amount of wall time = 1598.494205 + 0: The maximum resident set size (KB) = 1535488 -Test 041 control_p8_mynn PASS +Test 075 control_p8_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/merra2_thompson -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/merra2_thompson -Checking test 042 merra2_thompson results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control_faster +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/regional_control_faster +Checking test 076 regional_control_faster results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK + + 0: The total amount of wall time = 856.035607 + 0: The maximum resident set size (KB) = 791848 + +Test 076 regional_control_faster PASS Tries: 2 + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/rrfs_smoke_conus13km_hrrr_warm_debug +Checking test 077 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 464.032666 - 0: The maximum resident set size (KB) = 1546392 + 0: The total amount of wall time = 1214.345520 + 0: The maximum resident set size (KB) = 927592 -Test 042 merra2_thompson PASS +Test 077 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/regional_control -Checking test 043 regional_control results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +Checking test 078 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 815.399253 - 0: The maximum resident set size (KB) = 806372 + 0: The total amount of wall time = 1144.037296 + 0: The maximum resident set size (KB) = 887720 -Test 043 regional_control PASS +Test 078 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/regional_restart -Checking test 044 regional_restart results .... - Comparing dynf006.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF06 .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/rrfs_conus13km_hrrr_warm_debug +Checking test 079 rrfs_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 512.664229 - 0: The maximum resident set size (KB) = 778412 + 0: The total amount of wall time = 1165.708022 + 0: The maximum resident set size (KB) = 887788 -Test 044 regional_restart PASS +Test 079 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/regional_control_qr -Checking test 045 regional_control_qr results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_CubedSphereGrid_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/control_CubedSphereGrid_debug +Checking test 080 control_CubedSphereGrid_debug results .... + Comparing sfcf000.tile1.nc .........OK + Comparing sfcf000.tile2.nc .........OK + Comparing sfcf000.tile3.nc .........OK + Comparing sfcf000.tile4.nc .........OK + Comparing sfcf000.tile5.nc .........OK + Comparing sfcf000.tile6.nc .........OK + Comparing sfcf001.tile1.nc .........OK + Comparing sfcf001.tile2.nc .........OK + Comparing sfcf001.tile3.nc .........OK + Comparing sfcf001.tile4.nc .........OK + Comparing sfcf001.tile5.nc .........OK + Comparing sfcf001.tile6.nc .........OK + Comparing atmf000.tile1.nc .........OK + Comparing atmf000.tile2.nc .........OK + Comparing atmf000.tile3.nc .........OK + Comparing atmf000.tile4.nc .........OK + Comparing atmf000.tile5.nc .........OK + Comparing atmf000.tile6.nc .........OK + Comparing atmf001.tile1.nc .........OK + Comparing atmf001.tile2.nc .........OK + Comparing atmf001.tile3.nc .........OK + Comparing atmf001.tile4.nc .........OK + Comparing atmf001.tile5.nc .........OK + Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 771.457145 - 0: The maximum resident set size (KB) = 787240 + 0: The total amount of wall time = 1282.955098 + 0: The maximum resident set size (KB) = 738120 -Test 045 regional_control_qr PASS +Test 080 control_CubedSphereGrid_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/regional_restart_qr -Checking test 046 regional_restart_qr results .... - Comparing dynf006.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF06 .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/control_wrtGauss_netcdf_parallel_debug +Checking test 081 control_wrtGauss_netcdf_parallel_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 397.328340 - 0: The maximum resident set size (KB) = 780692 + 0: The total amount of wall time = 856.252210 + 0: The maximum resident set size (KB) = 734764 -Test 046 regional_restart_qr PASS +Test 081 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/regional_decomp -Checking test 047 regional_decomp results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_stochy_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/control_stochy_debug +Checking test 082 control_stochy_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 837.775049 - 0: The maximum resident set size (KB) = 779828 + 0: The total amount of wall time = 1122.741673 + 0: The maximum resident set size (KB) = 739776 -Test 047 regional_decomp PASS +Test 082 control_stochy_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/regional_2threads -Checking test 048 regional_2threads results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_lndp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/control_lndp_debug +Checking test 083 control_lndp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 666.038379 - 0: The maximum resident set size (KB) = 768460 + 0: The total amount of wall time = 1063.353786 + 0: The maximum resident set size (KB) = 737156 -Test 048 regional_2threads PASS +Test 083 control_lndp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_noquilt -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/regional_noquilt -Checking test 049 regional_noquilt results .... - Comparing atmos_4xdaily.nc ............MISSING baseline - Comparing fv3_history2d.nc ............MISSING baseline - Comparing fv3_history.nc ............MISSING baseline - Comparing RESTART/fv_core.res.tile1_new.nc ............MISSING baseline - Comparing RESTART/fv_tracer.res.tile1_new.nc ............MISSING baseline +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmg_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/control_csawmg_debug +Checking test 084 control_csawmg_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 969.146288 - 0: The maximum resident set size (KB) = 771376 + 0: The total amount of wall time = 864.955314 + 0: The maximum resident set size (KB) = 780796 -Test 049 regional_noquilt FAIL Tries: 2 +Test 084 control_csawmg_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/regional_netcdf_parallel -Checking test 050 regional_netcdf_parallel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmgt_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/control_csawmgt_debug +Checking test 085 control_csawmgt_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 836.130643 - 0: The maximum resident set size (KB) = 784280 + 0: The total amount of wall time = 374.416205 + 0: The maximum resident set size (KB) = 784488 -Test 050 regional_netcdf_parallel PASS +Test 085 control_csawmgt_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/regional_2dwrtdecomp -Checking test 051 regional_2dwrtdecomp results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_ras_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/control_ras_debug +Checking test 086 control_ras_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 1020.750919 + 0: The maximum resident set size (KB) = 741684 + +Test 086 control_ras_debug PASS + - 0: The total amount of wall time = 772.632845 - 0: The maximum resident set size (KB) = 788356 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_diag_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/control_diag_debug +Checking test 087 control_diag_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -Test 051 regional_2dwrtdecomp PASS + 0: The total amount of wall time = 341.291090 + 0: The maximum resident set size (KB) = 791688 -Test 052 regional_wofs FAIL +Test 087 control_diag_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/rap_control -Checking test 053 rap_control results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_debug_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/control_debug_p8 +Checking test 088 control_debug_p8 results .... Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 1147.258431 - 0: The maximum resident set size (KB) = 945768 + 0: The total amount of wall time = 276.519420 + 0: The maximum resident set size (KB) = 1557552 -Test 053 rap_control PASS +Test 088 control_debug_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/regional_spp_sppt_shum_skeb -Checking test 054 regional_spp_sppt_shum_skeb results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/regional_debug +Checking test 089 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF01 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 694.206527 - 0: The maximum resident set size (KB) = 1088424 + 0: The total amount of wall time = 1726.935170 + 0: The maximum resident set size (KB) = 800540 -Test 054 regional_spp_sppt_shum_skeb PASS +Test 089 regional_debug PASS Tries: 2 -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/rap_decomp -Checking test 055 rap_decomp results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/rap_control_debug +Checking test 090 rap_control_debug results .... Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 1239.675469 - 0: The maximum resident set size (KB) = 948828 + 0: The total amount of wall time = 431.780390 + 0: The maximum resident set size (KB) = 1107684 -Test 055 rap_decomp PASS +Test 090 rap_control_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/rap_2threads -Checking test 056 rap_2threads results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/hrrr_control_debug +Checking test 091 hrrr_control_debug results .... Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 1399.832807 - 0: The maximum resident set size (KB) = 1019712 + 0: The total amount of wall time = 411.674754 + 0: The maximum resident set size (KB) = 1104200 -Test 056 rap_2threads PASS +Test 091 hrrr_control_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/rap_restart -Checking test 057 rap_restart results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/rap_unified_drag_suite_debug +Checking test 092 rap_unified_drag_suite_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 496.660531 - 0: The maximum resident set size (KB) = 824788 + 0: The total amount of wall time = 502.123144 + 0: The maximum resident set size (KB) = 1111516 -Test 057 rap_restart PASS +Test 092 rap_unified_drag_suite_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/rap_sfcdiff -Checking test 058 rap_sfcdiff results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_diag_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/rap_diag_debug +Checking test 093 rap_diag_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 548.045770 + 0: The maximum resident set size (KB) = 1190892 + +Test 093 rap_diag_debug PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/rap_cires_ugwp_debug +Checking test 094 rap_cires_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 487.199029 + 0: The maximum resident set size (KB) = 1107860 + +Test 094 rap_cires_ugwp_debug PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/rap_unified_ugwp_debug +Checking test 095 rap_unified_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 472.831710 + 0: The maximum resident set size (KB) = 1114232 + +Test 095 rap_unified_ugwp_debug PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_lndp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/rap_lndp_debug +Checking test 096 rap_lndp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 465.128221 + 0: The maximum resident set size (KB) = 1107464 + +Test 096 rap_lndp_debug PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_flake_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/rap_flake_debug +Checking test 097 rap_flake_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 441.035093 + 0: The maximum resident set size (KB) = 1105932 + +Test 097 rap_flake_debug PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_progcld_thompson_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/rap_progcld_thompson_debug +Checking test 098 rap_progcld_thompson_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 461.765775 + 0: The maximum resident set size (KB) = 1113988 + +Test 098 rap_progcld_thompson_debug PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_noah_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/rap_noah_debug +Checking test 099 rap_noah_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 469.725230 + 0: The maximum resident set size (KB) = 1105920 + +Test 099 rap_noah_debug PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/rap_sfcdiff_debug +Checking test 100 rap_sfcdiff_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 440.389232 + 0: The maximum resident set size (KB) = 1110756 + +Test 100 rap_sfcdiff_debug PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 101 rap_noah_sfcdiff_cires_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 676.257971 + 0: The maximum resident set size (KB) = 1112932 + +Test 101 rap_noah_sfcdiff_cires_ugwp_debug PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1beta_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/rrfs_v1beta_debug +Checking test 102 rrfs_v1beta_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 406.713817 + 0: The maximum resident set size (KB) = 1104604 + +Test 102 rrfs_v1beta_debug PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wam_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/control_wam_debug +Checking test 103 control_wam_debug results .... + Comparing sfcf019.nc .........OK + Comparing atmf019.nc .........OK + + 0: The total amount of wall time = 464.628919 + 0: The maximum resident set size (KB) = 439704 + +Test 103 control_wam_debug PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF01 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF01 .........OK + + 0: The total amount of wall time = 596.782660 + 0: The maximum resident set size (KB) = 986452 + +Test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/rap_control_dyn32_phy32 +Checking test 105 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2470,15 +2257,69 @@ Checking test 058 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1219.294640 - 0: The maximum resident set size (KB) = 940680 + 0: The total amount of wall time = 1780.129820 + 0: The maximum resident set size (KB) = 846892 -Test 058 rap_sfcdiff PASS +Test 105 rap_control_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/rap_sfcdiff_decomp -Checking test 059 rap_sfcdiff_decomp results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/hrrr_control_dyn32_phy32 +Checking test 106 hrrr_control_dyn32_phy32 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 = 451.456430 + 0: The maximum resident set size (KB) = 828284 + +Test 106 hrrr_control_dyn32_phy32 PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/rap_2threads_dyn32_phy32 +Checking test 107 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2524,66 +2365,20 @@ Checking test 059 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1384.574240 - 0: The maximum resident set size (KB) = 931988 + 0: The total amount of wall time = 1394.144665 + 0: The maximum resident set size (KB) = 890144 -Test 059 rap_sfcdiff_decomp PASS +Test 107 rap_2threads_dyn32_phy32 PASS Tries: 2 -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/rap_sfcdiff_restart -Checking test 060 rap_sfcdiff_restart results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/hrrr_control_2threads_dyn32_phy32 +Checking test 108 hrrr_control_2threads_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 702.281542 - 0: The maximum resident set size (KB) = 838212 - -Test 060 rap_sfcdiff_restart PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/hrrr_control -Checking test 061 hrrr_control results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK @@ -2591,48 +2386,48 @@ Checking test 061 hrrr_control results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + 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 = 1290.228603 - 0: The maximum resident set size (KB) = 941880 + 0: The total amount of wall time = 493.155679 + 0: The maximum resident set size (KB) = 892232 -Test 061 hrrr_control PASS +Test 108 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/hrrr_control_decomp -Checking test 062 hrrr_control_decomp results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/hrrr_control_decomp_dyn32_phy32 +Checking test 109 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2645,59 +2440,51 @@ Checking test 062 hrrr_control_decomp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + 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 = 1266.546916 - 0: The maximum resident set size (KB) = 935644 + 0: The total amount of wall time = 478.508926 + 0: The maximum resident set size (KB) = 818268 -Test 062 hrrr_control_decomp PASS +Test 109 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/hrrr_control_2threads -Checking test 063 hrrr_control_2threads results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/rap_restart_dyn32_phy32 +Checking test 110 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK @@ -2732,115 +2519,61 @@ Checking test 063 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1248.876726 - 0: The maximum resident set size (KB) = 1021552 + 0: The total amount of wall time = 1052.747955 + 0: The maximum resident set size (KB) = 835016 -Test 063 hrrr_control_2threads PASS +Test 110 rap_restart_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/hrrr_control_restart -Checking test 064 hrrr_control_restart results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/hrrr_control_restart_dyn32_phy32 +Checking test 111 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + 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 = 784.830135 - 0: The maximum resident set size (KB) = 830188 + 0: The total amount of wall time = 591.444643 + 0: The maximum resident set size (KB) = 765964 -Test 064 hrrr_control_restart PASS +Test 111 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1beta -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/rrfs_v1beta -Checking test 065 rrfs_v1beta results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 1267.088003 - 0: The maximum resident set size (KB) = 941044 - -Test 065 rrfs_v1beta PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1nssl -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/rrfs_v1nssl -Checking test 066 rrfs_v1nssl results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn64_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/rap_control_dyn64_phy32 +Checking test 112 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2853,731 +2586,499 @@ Checking test 066 rrfs_v1nssl results .... 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 = 1440.616517 - 0: The maximum resident set size (KB) = 625808 + 0: The total amount of wall time = 594.067406 + 0: The maximum resident set size (KB) = 864088 -Test 066 rrfs_v1nssl PASS +Test 112 rap_control_dyn64_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/rrfs_v1nssl_nohailnoccn -Checking test 067 rrfs_v1nssl_nohailnoccn results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/rap_control_debug_dyn32_phy32 +Checking test 113 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK + Comparing sfcf001.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 atmf001.nc .........OK - 0: The total amount of wall time = 1278.020603 - 0: The maximum resident set size (KB) = 633984 + 0: The total amount of wall time = 421.329429 + 0: The maximum resident set size (KB) = 988816 -Test 067 rrfs_v1nssl_nohailnoccn PASS +Test 113 rap_control_debug_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/rrfs_smoke_conus13km_hrrr_warm -Checking test 068 rrfs_smoke_conus13km_hrrr_warm results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/hrrr_control_debug_dyn32_phy32 +Checking test 114 hrrr_control_debug_dyn32_phy32 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 - 0: The total amount of wall time = 385.359667 - 0: The maximum resident set size (KB) = 903080 + 0: The total amount of wall time = 438.689701 + 0: The maximum resident set size (KB) = 996016 -Test 068 rrfs_smoke_conus13km_hrrr_warm PASS +Test 114 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/rrfs_smoke_conus13km_hrrr_warm_2threads -Checking test 069 rrfs_smoke_conus13km_hrrr_warm_2threads results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/rap_control_dyn64_phy32_debug +Checking test 115 rap_control_dyn64_phy32_debug 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 - 0: The total amount of wall time = 319.775353 - 0: The maximum resident set size (KB) = 866440 + 0: The total amount of wall time = 450.524264 + 0: The maximum resident set size (KB) = 1025700 -Test 069 rrfs_smoke_conus13km_hrrr_warm_2threads PASS +Test 115 rap_control_dyn64_phy32_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/rrfs_conus13km_hrrr_warm -Checking test 070 rrfs_conus13km_hrrr_warm 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 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/hafs_regional_atm +Checking test 116 hafs_regional_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 326.459549 - 0: The maximum resident set size (KB) = 857652 + 0: The total amount of wall time = 1694.943842 + 0: The maximum resident set size (KB) = 1213616 -Test 070 rrfs_conus13km_hrrr_warm PASS +Test 116 hafs_regional_atm PASS +Test 117 hafs_regional_atm_thompson_gfdlsf FAIL -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/rrfs_smoke_conus13km_radar_tten_warm -Checking test 071 rrfs_smoke_conus13km_radar_tten_warm 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 - 0: The total amount of wall time = 349.970597 - 0: The maximum resident set size (KB) = 918088 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_ocn +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/hafs_regional_atm_ocn +Checking test 118 hafs_regional_atm_ocn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing archv.2019_241_06.a .........OK + Comparing archs.2019_241_06.a .........OK + Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -Test 071 rrfs_smoke_conus13km_radar_tten_warm PASS + 0: The total amount of wall time = 1368.509865 + 0: The maximum resident set size (KB) = 1296760 +Test 118 hafs_regional_atm_ocn PASS Tries: 2 -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/rrfs_conus13km_hrrr_warm_restart_mismatch -Checking test 072 rrfs_conus13km_hrrr_warm_restart_mismatch results .... - Comparing sfcf002.nc .........OK - Comparing atmf002.nc .........OK - 0: The total amount of wall time = 230.868162 - 0: The maximum resident set size (KB) = 853160 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_wav +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/hafs_regional_atm_wav +Checking test 119 hafs_regional_atm_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing out_grd.ww3 .........OK + Comparing out_pnt.ww3 .........OK + Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -Test 072 rrfs_conus13km_hrrr_warm_restart_mismatch PASS + 0: The total amount of wall time = 1575.495706 + 0: The maximum resident set size (KB) = 1323912 +Test 119 hafs_regional_atm_wav PASS Tries: 2 -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmg -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_csawmg -Checking test 073 control_csawmg 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 +Test 120 hafs_regional_atm_ocn_wav FAIL - 0: The total amount of wall time = 919.755923 - 0: The maximum resident set size (KB) = 669088 -Test 073 control_csawmg PASS +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_docn +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/hafs_regional_docn +Checking test 121 hafs_regional_docn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK + 0: The total amount of wall time = 1344.638239 + 0: The maximum resident set size (KB) = 1298212 -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmgt -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_csawmgt -Checking test 074 control_csawmgt 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 +Test 121 hafs_regional_docn PASS Tries: 2 - 0: The total amount of wall time = 943.676734 - 0: The maximum resident set size (KB) = 665792 -Test 074 control_csawmgt PASS +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_docn_oisst +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/hafs_regional_docn_oisst +Checking test 122 hafs_regional_docn_oisst results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK + 0: The total amount of wall time = 1334.328579 + 0: The maximum resident set size (KB) = 1288364 -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_ras -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_ras -Checking test 075 control_ras 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 +Test 122 hafs_regional_docn_oisst PASS Tries: 2 - 0: The total amount of wall time = 559.926139 - 0: The maximum resident set size (KB) = 632572 -Test 075 control_ras PASS +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/datm_cdeps_control_cfsr +Checking test 123 datm_cdeps_control_cfsr results .... + Comparing RESTART/20111002.000000.MOM.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 = 1087.118783 + 0: The maximum resident set size (KB) = 965352 -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wam -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_wam -Checking test 076 control_wam results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK +Test 123 datm_cdeps_control_cfsr PASS - 0: The total amount of wall time = 353.615537 - 0: The maximum resident set size (KB) = 481728 -Test 076 control_wam PASS +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/datm_cdeps_restart_cfsr +Checking test 124 datm_cdeps_restart_cfsr results .... + Comparing RESTART/20111002.000000.MOM.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 = 387.460815 + 0: The maximum resident set size (KB) = 939572 -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_faster -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_p8_faster -Checking test 077 control_p8_faster results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK +Test 124 datm_cdeps_restart_cfsr PASS - 0: The total amount of wall time = 353.895378 - 0: The maximum resident set size (KB) = 1540888 -Test 077 control_p8_faster PASS +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/datm_cdeps_control_gefs +Checking test 125 datm_cdeps_control_gefs 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 = 1135.717341 + 0: The maximum resident set size (KB) = 877052 -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control_faster -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/regional_control_faster -Checking test 078 regional_control_faster results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK +Test 125 datm_cdeps_control_gefs PASS - 0: The total amount of wall time = 733.980959 - 0: The maximum resident set size (KB) = 787152 -Test 078 regional_control_faster PASS +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_iau_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/datm_cdeps_iau_gefs +Checking test 126 datm_cdeps_iau_gefs 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 = 1201.116470 + 0: The maximum resident set size (KB) = 868448 -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/rrfs_smoke_conus13km_hrrr_warm_debug -Checking test 079 rrfs_smoke_conus13km_hrrr_warm_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +Test 126 datm_cdeps_iau_gefs PASS - 0: The total amount of wall time = 1223.809276 - 0: The maximum resident set size (KB) = 932000 -Test 079 rrfs_smoke_conus13km_hrrr_warm_debug PASS +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_stochy_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/datm_cdeps_stochy_gefs +Checking test 127 datm_cdeps_stochy_gefs 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 = 1360.066016 + 0: The maximum resident set size (KB) = 867648 -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/rrfs_smoke_conus13km_hrrr_warm_debug_2threads -Checking test 080 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 822.204000 - 0: The maximum resident set size (KB) = 896580 - -Test 080 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/rrfs_conus13km_hrrr_warm_debug -Checking test 081 rrfs_conus13km_hrrr_warm_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 1218.188553 - 0: The maximum resident set size (KB) = 894512 - -Test 081 rrfs_conus13km_hrrr_warm_debug PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_CubedSphereGrid_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_CubedSphereGrid_debug -Checking test 082 control_CubedSphereGrid_debug results .... - Comparing sfcf000.tile1.nc .........OK - Comparing sfcf000.tile2.nc .........OK - Comparing sfcf000.tile3.nc .........OK - Comparing sfcf000.tile4.nc .........OK - Comparing sfcf000.tile5.nc .........OK - Comparing sfcf000.tile6.nc .........OK - Comparing sfcf001.tile1.nc .........OK - Comparing sfcf001.tile2.nc .........OK - Comparing sfcf001.tile3.nc .........OK - Comparing sfcf001.tile4.nc .........OK - Comparing sfcf001.tile5.nc .........OK - Comparing sfcf001.tile6.nc .........OK - Comparing atmf000.tile1.nc .........OK - Comparing atmf000.tile2.nc .........OK - Comparing atmf000.tile3.nc .........OK - Comparing atmf000.tile4.nc .........OK - Comparing atmf000.tile5.nc .........OK - Comparing atmf000.tile6.nc .........OK - Comparing atmf001.tile1.nc .........OK - Comparing atmf001.tile2.nc .........OK - Comparing atmf001.tile3.nc .........OK - Comparing atmf001.tile4.nc .........OK - Comparing atmf001.tile5.nc .........OK - Comparing atmf001.tile6.nc .........OK - - 0: The total amount of wall time = 263.679241 - 0: The maximum resident set size (KB) = 740132 +Test 127 datm_cdeps_stochy_gefs PASS -Test 082 control_CubedSphereGrid_debug PASS +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_ciceC_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/datm_cdeps_ciceC_cfsr +Checking test 128 datm_cdeps_ciceC_cfsr results .... + Comparing RESTART/20111002.000000.MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_wrtGauss_netcdf_parallel_debug -Checking test 083 control_wrtGauss_netcdf_parallel_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 279.001757 - 0: The maximum resident set size (KB) = 732076 + 0: The total amount of wall time = 1255.862955 + 0: The maximum resident set size (KB) = 964240 -Test 083 control_wrtGauss_netcdf_parallel_debug PASS +Test 128 datm_cdeps_ciceC_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_stochy_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_stochy_debug -Checking test 084 control_stochy_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_bulk_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/datm_cdeps_bulk_cfsr +Checking test 129 datm_cdeps_bulk_cfsr results .... + Comparing RESTART/20111002.000000.MOM.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 = 288.711306 - 0: The maximum resident set size (KB) = 741596 + 0: The total amount of wall time = 1225.087249 + 0: The maximum resident set size (KB) = 974720 -Test 084 control_stochy_debug PASS +Test 129 datm_cdeps_bulk_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_lndp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_lndp_debug -Checking test 085 control_lndp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_bulk_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/datm_cdeps_bulk_gefs +Checking test 130 datm_cdeps_bulk_gefs 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 = 268.417731 - 0: The maximum resident set size (KB) = 744640 + 0: The total amount of wall time = 1320.175681 + 0: The maximum resident set size (KB) = 860192 -Test 085 control_lndp_debug PASS +Test 130 datm_cdeps_bulk_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmg_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_csawmg_debug -Checking test 086 control_csawmg_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_mx025_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/datm_cdeps_mx025_cfsr +Checking test 131 datm_cdeps_mx025_cfsr results .... + Comparing RESTART/20111001.120000.MOM.res.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK + Comparing RESTART/iced.2011-10-01-43200.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 388.751142 - 0: The maximum resident set size (KB) = 791476 + 0: The total amount of wall time = 1242.818334 + 0: The maximum resident set size (KB) = 764856 -Test 086 control_csawmg_debug PASS +Test 131 datm_cdeps_mx025_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmgt_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_csawmgt_debug -Checking test 087 control_csawmgt_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_mx025_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/datm_cdeps_mx025_gefs +Checking test 132 datm_cdeps_mx025_gefs results .... + Comparing RESTART/20111001.120000.MOM.res.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK + Comparing RESTART/iced.2011-10-01-43200.nc .........OK + Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 349.195919 - 0: The maximum resident set size (KB) = 785704 + 0: The total amount of wall time = 1127.219097 + 0: The maximum resident set size (KB) = 736248 -Test 087 control_csawmgt_debug PASS +Test 132 datm_cdeps_mx025_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_ras_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_ras_debug -Checking test 088 control_ras_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/datm_cdeps_multiple_files_cfsr +Checking test 133 datm_cdeps_multiple_files_cfsr results .... + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 297.946826 - 0: The maximum resident set size (KB) = 749172 + 0: The total amount of wall time = 1298.882656 + 0: The maximum resident set size (KB) = 965312 -Test 088 control_ras_debug PASS +Test 133 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_diag_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_diag_debug -Checking test 089 control_diag_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/datm_cdeps_3072x1536_cfsr +Checking test 134 datm_cdeps_3072x1536_cfsr 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 = 345.575984 - 0: The maximum resident set size (KB) = 802508 + 0: The total amount of wall time = 770.025556 + 0: The maximum resident set size (KB) = 2258940 -Test 089 control_diag_debug PASS +Test 134 datm_cdeps_3072x1536_cfsr PASS Tries: 2 -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_debug_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_debug_p8 -Checking test 090 control_debug_p8 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_gfs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/datm_cdeps_gfs +Checking test 135 datm_cdeps_gfs 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 = 284.477699 - 0: The maximum resident set size (KB) = 1557652 + 0: The total amount of wall time = 1113.432991 + 0: The maximum resident set size (KB) = 2256328 -Test 090 control_debug_p8 PASS +Test 135 datm_cdeps_gfs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/regional_debug -Checking test 091 regional_debug results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_debug_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/datm_cdeps_debug_cfsr +Checking test 136 datm_cdeps_debug_cfsr 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 = 1723.962942 - 0: The maximum resident set size (KB) = 810888 + 0: The total amount of wall time = 743.557559 + 0: The maximum resident set size (KB) = 918544 -Test 091 regional_debug PASS +Test 136 datm_cdeps_debug_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/rap_control_debug -Checking test 092 rap_control_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr_faster +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/datm_cdeps_control_cfsr_faster +Checking test 137 datm_cdeps_control_cfsr_faster results .... + Comparing RESTART/20111002.000000.MOM.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 = 426.554602 - 0: The maximum resident set size (KB) = 1119588 + 0: The total amount of wall time = 655.650845 + 0: The maximum resident set size (KB) = 970936 -Test 092 rap_control_debug PASS +Test 137 datm_cdeps_control_cfsr_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/hrrr_control_debug -Checking test 093 hrrr_control_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/datm_cdeps_lnd_gswp3 +Checking test 138 datm_cdeps_lnd_gswp3 results .... + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 426.838689 - 0: The maximum resident set size (KB) = 1109180 + 0: The total amount of wall time = 130.758377 + 0: The maximum resident set size (KB) = 241040 -Test 093 hrrr_control_debug PASS +Test 138 datm_cdeps_lnd_gswp3 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/rap_unified_drag_suite_debug -Checking test 094 rap_unified_drag_suite_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/datm_cdeps_lnd_gswp3_rst +Checking test 139 datm_cdeps_lnd_gswp3_rst results .... + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 438.384023 - 0: The maximum resident set size (KB) = 1113748 + 0: The total amount of wall time = 80.341416 + 0: The maximum resident set size (KB) = 247784 -Test 094 rap_unified_drag_suite_debug PASS +Test 139 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_diag_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/rap_diag_debug -Checking test 095 rap_diag_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_atmlnd_sbs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/control_p8_atmlnd_sbs +Checking test 140 control_p8_atmlnd_sbs results .... + Comparing sfcf000.tile1.nc .........OK + Comparing sfcf000.tile2.nc .........OK + Comparing sfcf000.tile3.nc .........OK + Comparing sfcf000.tile4.nc .........OK + Comparing sfcf000.tile5.nc .........OK + Comparing sfcf000.tile6.nc .........OK + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf000.tile1.nc .........OK + Comparing atmf000.tile2.nc .........OK + Comparing atmf000.tile3.nc .........OK + Comparing atmf000.tile4.nc .........OK + Comparing atmf000.tile5.nc .........OK + Comparing atmf000.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing ufs.cpld.cpl.hi.lnd.2021-03-22-43200.nc .........OK + Comparing ufs.cpld.cpl.hi.lnd.2021-03-23-21600.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile6.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 508.243580 - 0: The maximum resident set size (KB) = 1197080 + 0: The total amount of wall time = 1055.983459 + 0: The maximum resident set size (KB) = 1588112 -Test 095 rap_diag_debug PASS +Test 140 control_p8_atmlnd_sbs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/rap_cires_ugwp_debug -Checking test 096 rap_cires_ugwp_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_atmwav +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/control_atmwav +Checking test 141 control_atmwav results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK + Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 434.896535 - 0: The maximum resident set size (KB) = 1111720 - -Test 096 rap_cires_ugwp_debug PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/rap_unified_ugwp_debug -Checking test 097 rap_unified_ugwp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 479.391513 - 0: The maximum resident set size (KB) = 1118896 - -Test 097 rap_unified_ugwp_debug PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_lndp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/rap_lndp_debug -Checking test 098 rap_lndp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 452.839547 - 0: The maximum resident set size (KB) = 1113888 - -Test 098 rap_lndp_debug PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_flake_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/rap_flake_debug -Checking test 099 rap_flake_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 498.620731 - 0: The maximum resident set size (KB) = 1114684 - -Test 099 rap_flake_debug PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_progcld_thompson_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/rap_progcld_thompson_debug -Checking test 100 rap_progcld_thompson_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 448.195066 - 0: The maximum resident set size (KB) = 1112716 - -Test 100 rap_progcld_thompson_debug PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_noah_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/rap_noah_debug -Checking test 101 rap_noah_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 444.634780 - 0: The maximum resident set size (KB) = 1111204 - -Test 101 rap_noah_debug PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/rap_sfcdiff_debug -Checking test 102 rap_sfcdiff_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 428.477888 - 0: The maximum resident set size (KB) = 1112556 - -Test 102 rap_sfcdiff_debug PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 103 rap_noah_sfcdiff_cires_ugwp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 678.303145 - 0: The maximum resident set size (KB) = 1113228 - -Test 103 rap_noah_sfcdiff_cires_ugwp_debug PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1beta_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/rrfs_v1beta_debug -Checking test 104 rrfs_v1beta_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 404.050784 - 0: The maximum resident set size (KB) = 1109320 - -Test 104 rrfs_v1beta_debug PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wam_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_wam_debug -Checking test 105 control_wam_debug results .... - Comparing sfcf019.nc .........OK - Comparing atmf019.nc .........OK - - 0: The total amount of wall time = 443.809283 - 0: The maximum resident set size (KB) = 443340 - -Test 105 control_wam_debug PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/regional_spp_sppt_shum_skeb_dyn32_phy32 -Checking test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF01 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF01 .........OK - - 0: The total amount of wall time = 709.139162 - 0: The maximum resident set size (KB) = 991500 - -Test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/rap_control_dyn32_phy32 -Checking test 107 rap_control_dyn32_phy32 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 1430.815863 - 0: The maximum resident set size (KB) = 850584 - -Test 107 rap_control_dyn32_phy32 PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/hrrr_control_dyn32_phy32 -Checking test 108 hrrr_control_dyn32_phy32 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 @@ -3611,28 +3112,26 @@ Checking test 108 hrrr_control_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 632.385094 - 0: The maximum resident set size (KB) = 827652 + 0: The total amount of wall time = 453.144823 + 0: The maximum resident set size (KB) = 596360 -Test 108 hrrr_control_dyn32_phy32 PASS +Test 141 control_atmwav PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/rap_2threads_dyn32_phy32 -Checking test 109 rap_2threads_dyn32_phy32 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/atmaero_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/atmaero_control_p8 +Checking test 142 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK + Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK + Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK + Comparing 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 @@ -3666,127 +3165,184 @@ Checking test 109 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1497.974004 - 0: The maximum resident set size (KB) = 888892 + 0: The total amount of wall time = 1077.189415 + 0: The maximum resident set size (KB) = 1630820 -Test 109 rap_2threads_dyn32_phy32 PASS +Test 142 atmaero_control_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/hrrr_control_2threads_dyn32_phy32 -Checking test 110 hrrr_control_2threads_dyn32_phy32 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/atmaero_control_p8_rad +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/atmaero_control_p8_rad +Checking test 143 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK + Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK + Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 684.806861 - 0: The maximum resident set size (KB) = 884192 + 0: The total amount of wall time = 1016.115144 + 0: The maximum resident set size (KB) = 1661888 -Test 110 hrrr_control_2threads_dyn32_phy32 PASS +Test 143 atmaero_control_p8_rad PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/hrrr_control_decomp_dyn32_phy32 -Checking test 111 hrrr_control_decomp_dyn32_phy32 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/atmaero_control_p8_rad_micro +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/atmaero_control_p8_rad_micro +Checking test 144 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK + Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK + Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 665.332308 - 0: The maximum resident set size (KB) = 832060 + 0: The total amount of wall time = 1087.056056 + 0: The maximum resident set size (KB) = 1669996 -Test 111 hrrr_control_decomp_dyn32_phy32 PASS +Test 144 atmaero_control_p8_rad_micro PASS +FAILED TESTS: +Test cpld_control_p8_mixedmode 001 failed in run_test failed +Test cpld_control_p8 003 failed in run_test failed +Test cpld_control_qr_p8 005 failed in run_test failed +Test cpld_2threads_p8 007 failed in run_test failed +Test cpld_decomp_p8 008 failed in run_test failed +Test cpld_control_noaero_p8 011 failed in run_test failed +Test cpld_control_noaero_p8_agrid 015 failed in run_test failed +Test control_c192 025 failed in run_test failed +Test control_c384 026 failed in run_test failed +Test control_c384gdas 027 failed in run_test failed +Test regional_control 043 failed in run_test failed +Test regional_control_qr 045 failed in run_test failed +Test regional_decomp 047 failed in run_test failed +Test regional_2threads 048 failed in run_test failed +Test regional_netcdf_parallel 049 failed in run_test failed +Test regional_2dwrtdecomp 050 failed in run_test failed +Test rap_control 051 failed in run_test failed +Test rap_decomp 053 failed in run_test failed +Test rap_2threads 054 failed in run_test failed +Test rap_sfcdiff 056 failed in run_test failed +Test rap_sfcdiff_decomp 057 failed in run_test failed +Test hrrr_control 059 failed in run_test failed +Test hrrr_control_decomp 060 failed in run_test failed +Test control_csawmgt 072 failed in run_test failed +Test hafs_regional_atm_thompson_gfdlsf 117 failed in run_test failed +Test hafs_regional_atm_ocn_wav 120 failed in run_test failed -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/rap_restart_dyn32_phy32 -Checking test 112 rap_restart_dyn32_phy32 results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK +REGRESSION TEST FAILED +Wed Apr 5 07:20:24 UTC 2023 +Elapsed time: 04h:27m:39s. Have a nice day! +Wed Apr 5 12:57:53 UTC 2023 +Start Regression test + +Compile 001 elapsed time 1848 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 002 elapsed time 2010 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 003 elapsed time 1707 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 004 elapsed time 1578 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 005 elapsed time 1751 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 006 elapsed time 1637 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 007 elapsed time 1563 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 008 elapsed time 1688 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 + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8_mixedmode +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_101927/cpld_control_p8_mixedmode +Checking test 001 cpld_control_p8_mixedmode results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -3819,506 +3375,983 @@ Checking test 112 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 753.953657 - 0: The maximum resident set size (KB) = 807432 + 0: The total amount of wall time = 594.659572 + 0: The maximum resident set size (KB) = 1728264 -Test 112 rap_restart_dyn32_phy32 PASS +Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/hrrr_control_restart_dyn32_phy32 -Checking test 113 hrrr_control_restart_dyn32_phy32 results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........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 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_101927/cpld_control_p8 +Checking test 002 cpld_control_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 614.031185 - 0: The maximum resident set size (KB) = 758120 + 0: The total amount of wall time = 610.276910 + 0: The maximum resident set size (KB) = 1769544 -Test 113 hrrr_control_restart_dyn32_phy32 PASS +Test 002 cpld_control_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn64_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/rap_control_dyn64_phy32 -Checking test 114 rap_control_dyn64_phy32 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 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_101927/cpld_restart_p8 +Checking test 003 cpld_restart_p8 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 394.928600 + 0: The maximum resident set size (KB) = 1496776 + +Test 003 cpld_restart_p8 PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_101927/cpld_control_qr_p8 +Checking test 004 cpld_control_qr_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 736.870818 + 0: The maximum resident set size (KB) = 1779800 + +Test 004 cpld_control_qr_p8 PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_101927/cpld_restart_qr_p8 +Checking test 005 cpld_restart_qr_p8 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 488.841729 + 0: The maximum resident set size (KB) = 1507584 + +Test 005 cpld_restart_qr_p8 PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_101927/cpld_2threads_p8 +Checking test 006 cpld_2threads_p8 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 734.396126 + 0: The maximum resident set size (KB) = 1966304 + +Test 006 cpld_2threads_p8 PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_101927/cpld_decomp_p8 +Checking test 007 cpld_decomp_p8 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 641.387735 + 0: The maximum resident set size (KB) = 1779744 + +Test 007 cpld_decomp_p8 PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_noaero_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_101927/cpld_control_noaero_p8 +Checking test 008 cpld_control_noaero_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 500.736224 + 0: The maximum resident set size (KB) = 1623072 + +Test 008 cpld_control_noaero_p8 PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_noaero_p8_agrid +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_101927/cpld_control_noaero_p8_agrid +Checking test 009 cpld_control_noaero_p8_agrid 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 = 878.822766 - 0: The maximum resident set size (KB) = 864684 + 0: The total amount of wall time = 632.258469 + 0: The maximum resident set size (KB) = 1666992 -Test 114 rap_control_dyn64_phy32 PASS +Test 009 cpld_control_noaero_p8_agrid PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/rap_control_debug_dyn32_phy32 -Checking test 115 rap_control_debug_dyn32_phy32 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c192 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_101927/control_c192 +Checking test 010 control_c192 results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK + Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 462.834700 - 0: The maximum resident set size (KB) = 1003668 + 0: The total amount of wall time = 912.012071 + 0: The maximum resident set size (KB) = 686256 -Test 115 rap_control_debug_dyn32_phy32 PASS +Test 010 control_c192 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/hrrr_control_debug_dyn32_phy32 -Checking test 116 hrrr_control_debug_dyn32_phy32 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c384 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_101927/control_c384 +Checking test 011 control_c384 results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK + Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 536.887410 - 0: The maximum resident set size (KB) = 998896 + 0: The total amount of wall time = 1183.837046 + 0: The maximum resident set size (KB) = 1055448 -Test 116 hrrr_control_debug_dyn32_phy32 PASS +Test 011 control_c384 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/rap_control_dyn64_phy32_debug -Checking test 117 rap_control_dyn64_phy32_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c384gdas +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_101927/control_c384gdas +Checking test 012 control_c384gdas results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 594.911765 - 0: The maximum resident set size (KB) = 1033816 - -Test 117 rap_control_dyn64_phy32_debug PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/hafs_regional_atm -Checking test 118 hafs_regional_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing HURPRS.GrbF06 .........OK - - 0: The total amount of wall time = 1342.548847 - 0: The maximum resident set size (KB) = 1218956 - -Test 118 hafs_regional_atm PASS - -Test 119 hafs_regional_atm_thompson_gfdlsf FAIL - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_ocn -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/hafs_regional_atm_ocn -Checking test 120 hafs_regional_atm_ocn results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing archv.2019_241_06.a .........OK - Comparing archs.2019_241_06.a .........OK - Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - - 0: The total amount of wall time = 1165.605709 - 0: The maximum resident set size (KB) = 1298968 - -Test 120 hafs_regional_atm_ocn PASS Tries: 2 - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_wav -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/hafs_regional_atm_wav -Checking test 121 hafs_regional_atm_wav results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing out_grd.ww3 .........OK - Comparing out_pnt.ww3 .........OK - Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - - 0: The total amount of wall time = 1713.539486 - 0: The maximum resident set size (KB) = 1325076 - -Test 121 hafs_regional_atm_wav PASS Tries: 2 - -Test 122 hafs_regional_atm_ocn_wav FAIL - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_docn -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/hafs_regional_docn -Checking test 123 hafs_regional_docn results .... - Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - - 0: The total amount of wall time = 1050.848072 - 0: The maximum resident set size (KB) = 1307152 - -Test 123 hafs_regional_docn PASS Tries: 2 - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_docn_oisst -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/hafs_regional_docn_oisst -Checking test 124 hafs_regional_docn_oisst results .... + Comparing atmf000.nc .........OK Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - - 0: The total amount of wall time = 1032.964522 - 0: The maximum resident set size (KB) = 1292868 - -Test 124 hafs_regional_docn_oisst PASS Tries: 2 - -Test 125 hafs_regional_datm_cdeps FAIL - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/datm_cdeps_control_cfsr -Checking test 126 datm_cdeps_control_cfsr results .... - Comparing RESTART/20111002.000000.MOM.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 = 603.831120 - 0: The maximum resident set size (KB) = 967264 - -Test 126 datm_cdeps_control_cfsr PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/datm_cdeps_restart_cfsr -Checking test 127 datm_cdeps_restart_cfsr results .... - Comparing RESTART/20111002.000000.MOM.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 = 472.222421 - 0: The maximum resident set size (KB) = 939044 - -Test 127 datm_cdeps_restart_cfsr PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/datm_cdeps_control_gefs -Checking test 128 datm_cdeps_control_gefs 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 = 731.988749 - 0: The maximum resident set size (KB) = 866976 - -Test 128 datm_cdeps_control_gefs PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_iau_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/datm_cdeps_iau_gefs -Checking test 129 datm_cdeps_iau_gefs 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 = 633.913442 - 0: The maximum resident set size (KB) = 863372 - -Test 129 datm_cdeps_iau_gefs PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_stochy_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/datm_cdeps_stochy_gefs -Checking test 130 datm_cdeps_stochy_gefs 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 + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF06 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF06 .........OK + Comparing RESTART/20210322.060000.coupler.res .........OK + Comparing RESTART/20210322.060000.fv_core.res.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 744.561946 - 0: The maximum resident set size (KB) = 864148 + 0: The total amount of wall time = 1061.696461 + 0: The maximum resident set size (KB) = 1195600 -Test 130 datm_cdeps_stochy_gefs PASS +Test 012 control_c384gdas PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/datm_cdeps_ciceC_cfsr -Checking test 131 datm_cdeps_ciceC_cfsr results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_101927/regional_control +Checking test 013 regional_control results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 746.131084 - 0: The maximum resident set size (KB) = 969796 + 0: The total amount of wall time = 523.068662 + 0: The maximum resident set size (KB) = 781876 -Test 131 datm_cdeps_ciceC_cfsr PASS +Test 013 regional_control PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/datm_cdeps_bulk_cfsr -Checking test 132 datm_cdeps_bulk_cfsr results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_101927/regional_restart +Checking test 014 regional_restart results .... + Comparing dynf006.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 818.385175 - 0: The maximum resident set size (KB) = 961452 + 0: The total amount of wall time = 276.454109 + 0: The maximum resident set size (KB) = 776672 -Test 132 datm_cdeps_bulk_cfsr PASS +Test 014 regional_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/datm_cdeps_bulk_gefs -Checking test 133 datm_cdeps_bulk_gefs 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 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_101927/regional_control_qr +Checking test 015 regional_control_qr results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 841.510874 - 0: The maximum resident set size (KB) = 865468 + 0: The total amount of wall time = 552.922049 + 0: The maximum resident set size (KB) = 783728 -Test 133 datm_cdeps_bulk_gefs PASS +Test 015 regional_control_qr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/datm_cdeps_mx025_cfsr -Checking test 134 datm_cdeps_mx025_cfsr results .... - Comparing RESTART/20111001.120000.MOM.res.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK - Comparing RESTART/iced.2011-10-01-43200.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_101927/regional_restart_qr +Checking test 016 regional_restart_qr results .... + Comparing dynf006.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 1106.973467 - 0: The maximum resident set size (KB) = 767748 + 0: The total amount of wall time = 263.543983 + 0: The maximum resident set size (KB) = 778692 -Test 134 datm_cdeps_mx025_cfsr PASS +Test 016 regional_restart_qr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/datm_cdeps_mx025_gefs -Checking test 135 datm_cdeps_mx025_gefs results .... - Comparing RESTART/20111001.120000.MOM.res.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK - Comparing RESTART/iced.2011-10-01-43200.nc .........OK - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_101927/regional_decomp +Checking test 017 regional_decomp results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 1468.397514 - 0: The maximum resident set size (KB) = 748680 + 0: The total amount of wall time = 552.393753 + 0: The maximum resident set size (KB) = 779968 -Test 135 datm_cdeps_mx025_gefs PASS +Test 017 regional_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/datm_cdeps_multiple_files_cfsr -Checking test 136 datm_cdeps_multiple_files_cfsr results .... - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_101927/regional_2threads +Checking test 018 regional_2threads results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 691.168807 - 0: The maximum resident set size (KB) = 964456 + 0: The total amount of wall time = 487.287434 + 0: The maximum resident set size (KB) = 768896 -Test 136 datm_cdeps_multiple_files_cfsr PASS +Test 018 regional_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/datm_cdeps_3072x1536_cfsr -Checking test 137 datm_cdeps_3072x1536_cfsr 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 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_netcdf_parallel +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_101927/regional_netcdf_parallel +Checking test 019 regional_netcdf_parallel results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK - 0: The total amount of wall time = 737.249033 - 0: The maximum resident set size (KB) = 2270996 + 0: The total amount of wall time = 543.507982 + 0: The maximum resident set size (KB) = 781636 -Test 137 datm_cdeps_3072x1536_cfsr PASS +Test 019 regional_netcdf_parallel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_gfs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/datm_cdeps_gfs -Checking test 138 datm_cdeps_gfs 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 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_101927/regional_2dwrtdecomp +Checking test 020 regional_2dwrtdecomp results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 1182.186169 - 0: The maximum resident set size (KB) = 2255420 + 0: The total amount of wall time = 566.988359 + 0: The maximum resident set size (KB) = 792084 -Test 138 datm_cdeps_gfs PASS +Test 020 regional_2dwrtdecomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_debug_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/datm_cdeps_debug_cfsr -Checking test 139 datm_cdeps_debug_cfsr 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 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_101927/rap_control +Checking test 021 rap_control results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 819.698358 - 0: The maximum resident set size (KB) = 930492 + 0: The total amount of wall time = 726.706356 + 0: The maximum resident set size (KB) = 946120 -Test 139 datm_cdeps_debug_cfsr PASS +Test 021 rap_control PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr_faster -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/datm_cdeps_control_cfsr_faster -Checking test 140 datm_cdeps_control_cfsr_faster results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_101927/rap_decomp +Checking test 022 rap_decomp results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 721.106849 - 0: The maximum resident set size (KB) = 965352 + 0: The total amount of wall time = 821.575170 + 0: The maximum resident set size (KB) = 948592 -Test 140 datm_cdeps_control_cfsr_faster PASS +Test 022 rap_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/datm_cdeps_lnd_gswp3 -Checking test 141 datm_cdeps_lnd_gswp3 results .... - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_101927/rap_2threads +Checking test 023 rap_2threads results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 507.770898 - 0: The maximum resident set size (KB) = 253032 + 0: The total amount of wall time = 801.840163 + 0: The maximum resident set size (KB) = 1026332 -Test 141 datm_cdeps_lnd_gswp3 PASS +Test 023 rap_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/datm_cdeps_lnd_gswp3_rst -Checking test 142 datm_cdeps_lnd_gswp3_rst results .... - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_101927/rap_restart +Checking test 024 rap_restart results .... + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 253.222300 - 0: The maximum resident set size (KB) = 253128 + 0: The total amount of wall time = 434.972511 + 0: The maximum resident set size (KB) = 829732 -Test 142 datm_cdeps_lnd_gswp3_rst PASS +Test 024 rap_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_atmlnd_sbs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_p8_atmlnd_sbs -Checking test 143 control_p8_atmlnd_sbs results .... - Comparing sfcf000.tile1.nc .........OK - Comparing sfcf000.tile2.nc .........OK - Comparing sfcf000.tile3.nc .........OK - Comparing sfcf000.tile4.nc .........OK - Comparing sfcf000.tile5.nc .........OK - Comparing sfcf000.tile6.nc .........OK - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf000.tile1.nc .........OK - Comparing atmf000.tile2.nc .........OK - Comparing atmf000.tile3.nc .........OK - Comparing atmf000.tile4.nc .........OK - Comparing atmf000.tile5.nc .........OK - Comparing atmf000.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_101927/rap_sfcdiff +Checking test 025 rap_sfcdiff results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -4351,90 +4384,74 @@ Checking test 143 control_p8_atmlnd_sbs results .... Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing ufs.cpld.cpl.hi.lnd.2021-03-22-43200.nc .........OK - Comparing ufs.cpld.cpl.hi.lnd.2021-03-23-21600.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile6.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 886.877469 - 0: The maximum resident set size (KB) = 1582200 + 0: The total amount of wall time = 797.990306 + 0: The maximum resident set size (KB) = 952744 -Test 143 control_p8_atmlnd_sbs PASS +Test 025 rap_sfcdiff PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_atmwav -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/control_atmwav -Checking test 144 control_atmwav results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_101927/rap_sfcdiff_decomp +Checking test 026 rap_sfcdiff_decomp 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 - Comparing 20210322.180000.restart.glo_1deg .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 740.435352 - 0: The maximum resident set size (KB) = 593960 + 0: The total amount of wall time = 788.359164 + 0: The maximum resident set size (KB) = 934580 -Test 144 control_atmwav PASS +Test 026 rap_sfcdiff_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/atmaero_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/atmaero_control_p8 -Checking test 145 atmaero_control_p8 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 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_101927/rap_sfcdiff_restart +Checking test 027 rap_sfcdiff_restart results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -4468,24 +4485,27 @@ Checking test 145 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 676.667086 - 0: The maximum resident set size (KB) = 1630980 + 0: The total amount of wall time = 541.180879 + 0: The maximum resident set size (KB) = 830088 -Test 145 atmaero_control_p8 PASS +Test 027 rap_sfcdiff_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/atmaero_control_p8_rad -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/atmaero_control_p8_rad -Checking test 146 atmaero_control_p8_rad results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_101927/hrrr_control +Checking test 028 hrrr_control results .... Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -4519,24 +4539,27 @@ Checking test 146 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 690.978175 - 0: The maximum resident set size (KB) = 1656968 + 0: The total amount of wall time = 850.956940 + 0: The maximum resident set size (KB) = 944024 -Test 146 atmaero_control_p8_rad PASS +Test 028 hrrr_control PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_303681/atmaero_control_p8_rad_micro -Checking test 147 atmaero_control_p8_rad_micro results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_101927/hrrr_control_decomp +Checking test 029 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -4570,99 +4593,145 @@ Checking test 147 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1077.640635 - 0: The maximum resident set size (KB) = 1667260 - -Test 147 atmaero_control_p8_rad_micro PASS - -Test 148 regional_atmaq FAIL - -Test 149 regional_atmaq_faster FAIL - -FAILED TESTS: -Test control_c384 026 failed in run_test failed -Test regional_noquilt 049 failed in check_result failed -Test regional_noquilt 049 failed in run_test failed -Test regional_wofs 052 failed in run_test failed -Test hafs_regional_atm_thompson_gfdlsf 119 failed in run_test failed -Test hafs_regional_atm_ocn_wav 122 failed in run_test failed -Test hafs_regional_datm_cdeps 125 failed in run_test failed -Test regional_atmaq 148 failed in run_test failed -Test regional_atmaq_faster 149 failed in run_test failed - -REGRESSION TEST FAILED -Mon Apr 3 05:57:35 UTC 2023 -Elapsed time: 04h:57m:10s. Have a nice day! -Mon Apr 3 13:34:54 UTC 2023 -Start Regression test - -Compile 001 elapsed time 1824 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 002 elapsed time 1783 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 003 elapsed time 1585 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 004 elapsed time 2102 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Test 001 control_c384 FAIL - -Test 002 regional_wofs FAIL + 0: The total amount of wall time = 844.562367 + 0: The maximum resident set size (KB) = 932616 +Test 029 hrrr_control_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_178965/hafs_regional_atm_thompson_gfdlsf -Checking test 003 hafs_regional_atm_thompson_gfdlsf results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 938.702669 - 0: The maximum resident set size (KB) = 1561924 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_101927/hrrr_control_2threads +Checking test 030 hrrr_control_2threads results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -Test 003 hafs_regional_atm_thompson_gfdlsf PASS + 0: The total amount of wall time = 695.437748 + 0: The maximum resident set size (KB) = 1018556 -Test 004 hafs_regional_atm_ocn_wav FAIL +Test 030 hrrr_control_2threads PASS -Test 005 regional_atmaq FAIL -Test 006 regional_atmaq_faster FAIL +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_101927/hrrr_control_restart +Checking test 031 hrrr_control_restart results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -FAILED TESTS: -Test control_c384 001 failed in run_test failed -Test regional_wofs 002 failed in run_test failed -Test hafs_regional_atm_ocn_wav 004 failed in run_test failed -Test regional_atmaq 005 failed in run_test failed -Test regional_atmaq_faster 006 failed in run_test failed + 0: The total amount of wall time = 495.547732 + 0: The maximum resident set size (KB) = 833088 -REGRESSION TEST FAILED -Mon Apr 3 15:40:06 UTC 2023 -Elapsed time: 02h:05m:14s. Have a nice day! -Mon Apr 3 16:24:08 UTC 2023 -Start Regression test +Test 031 hrrr_control_restart PASS -Compile 001 elapsed time 1900 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 002 elapsed time 1842 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 003 elapsed time 1657 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 004 elapsed time 2206 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c384 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_272954/control_c384 -Checking test 001 control_c384 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmg +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_101927/control_csawmg +Checking test 032 control_csawmg results .... Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK + Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK + Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK + Comparing GFSPRS.GrbF24 .........OK + + 0: The total amount of wall time = 595.270653 + 0: The maximum resident set size (KB) = 669988 + +Test 032 control_csawmg PASS - 0: The total amount of wall time = 1561.253900 - 0: The maximum resident set size (KB) = 1061804 -Test 001 control_c384 PASS +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_101927/hafs_regional_atm_thompson_gfdlsf +Checking test 033 hafs_regional_atm_thompson_gfdlsf results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + + 0: The total amount of wall time = 766.139480 + 0: The maximum resident set size (KB) = 1582728 -Test 002 regional_wofs FAIL +Test 033 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_272954/hafs_regional_atm_ocn_wav -Checking test 003 hafs_regional_atm_ocn_wav results .... +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_101927/hafs_regional_atm_ocn_wav +Checking test 034 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4672,20 +4741,12 @@ Checking test 003 hafs_regional_atm_ocn_wav 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 = 1740.569251 - 0: The maximum resident set size (KB) = 1338868 + 0: The total amount of wall time = 1215.032704 + 0: The maximum resident set size (KB) = 1341116 -Test 003 hafs_regional_atm_ocn_wav PASS +Test 034 hafs_regional_atm_ocn_wav PASS -Test 004 regional_atmaq FAIL -Test 005 regional_atmaq_faster FAIL - -FAILED TESTS: -Test regional_wofs 002 failed in run_test failed -Test regional_atmaq 004 failed in run_test failed -Test regional_atmaq_faster 005 failed in run_test failed - -REGRESSION TEST FAILED -Mon Apr 3 18:24:15 UTC 2023 -Elapsed time: 02h:00m:09s. Have a nice day! +REGRESSION TEST WAS SUCCESSFUL +Wed Apr 5 15:39:12 UTC 2023 +Elapsed time: 02h:41m:21s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log old mode 100644 new mode 100755 index 1d87c987221..9fc912c3390 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,42 +1,42 @@ -Sun Apr 2 08:17:03 CDT 2023 +Tue Apr 4 15:57:06 CDT 2023 Start Regression test -Compile 001 elapsed time 842 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 856 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 746 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 431 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 368 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 708 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 756 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 923 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 715 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 690 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 011 elapsed time 538 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 510 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 804 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 256 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 215 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 556 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 560 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 177 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 356 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 644 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 021 elapsed time 306 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 795 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 696 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 024 elapsed time 279 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 238 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 216 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 59 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 569 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 589 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 554 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 533 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 187 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 621 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 742 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 745 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 714 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 274 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 258 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 663 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 648 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 849 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 708 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 587 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 011 elapsed time 569 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 506 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 706 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 213 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 170 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 524 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 524 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 168 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 161 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 575 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 021 elapsed time 205 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 743 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 630 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 024 elapsed time 235 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 120 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 197 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 94 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 577 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 570 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 562 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 519 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 179 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 575 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8_mixedmode -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/cpld_control_p8_mixedmode +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -101,14 +101,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 360.025994 - 0: The maximum resident set size (KB) = 3151220 + 0: The total amount of wall time = 304.626902 + 0: The maximum resident set size (KB) = 3144308 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_gfsv17 -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/cpld_control_gfsv17 +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -172,14 +172,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 264.088721 - 0: The maximum resident set size (KB) = 1718896 + 0: The total amount of wall time = 225.371768 + 0: The maximum resident set size (KB) = 1729900 Test 002 cpld_control_gfsv17 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/cpld_control_p8 +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -244,14 +244,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 464.320466 - 0: The maximum resident set size (KB) = 3180704 + 0: The total amount of wall time = 342.441401 + 0: The maximum resident set size (KB) = 3183740 Test 003 cpld_control_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/cpld_restart_p8 +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -304,14 +304,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 204.981151 - 0: The maximum resident set size (KB) = 3053592 + 0: The total amount of wall time = 208.830780 + 0: The maximum resident set size (KB) = 3056616 Test 004 cpld_restart_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/cpld_control_qr_p8 +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -376,14 +376,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 463.872271 - 0: The maximum resident set size (KB) = 3191672 + 0: The total amount of wall time = 346.491504 + 0: The maximum resident set size (KB) = 3197436 Test 005 cpld_control_qr_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/cpld_restart_qr_p8 +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -436,14 +436,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 204.302325 - 0: The maximum resident set size (KB) = 3066152 + 0: The total amount of wall time = 212.540949 + 0: The maximum resident set size (KB) = 3062368 Test 006 cpld_restart_qr_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/cpld_2threads_p8 +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -496,14 +496,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 502.710576 - 0: The maximum resident set size (KB) = 3512160 + 0: The total amount of wall time = 404.502142 + 0: The maximum resident set size (KB) = 3513792 Test 007 cpld_2threads_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/cpld_decomp_p8 +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -556,14 +556,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 469.994356 - 0: The maximum resident set size (KB) = 3175556 + 0: The total amount of wall time = 343.366491 + 0: The maximum resident set size (KB) = 3173816 Test 008 cpld_decomp_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/cpld_mpi_p8 +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -616,14 +616,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 437.120723 - 0: The maximum resident set size (KB) = 3030824 + 0: The total amount of wall time = 281.338636 + 0: The maximum resident set size (KB) = 3036628 Test 009 cpld_mpi_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_ciceC_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/cpld_control_ciceC_p8 +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -688,14 +688,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 435.295417 - 0: The maximum resident set size (KB) = 3188104 + 0: The total amount of wall time = 341.884353 + 0: The maximum resident set size (KB) = 3181920 Test 010 cpld_control_ciceC_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/cpld_control_c192_p8 +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/cpld_control_c192_p8 Checking test 011 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -748,14 +748,14 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 682.094174 - 0: The maximum resident set size (KB) = 3264132 + 0: The total amount of wall time = 640.202535 + 0: The maximum resident set size (KB) = 3260324 Test 011 cpld_control_c192_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/cpld_restart_c192_p8 +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/cpld_restart_c192_p8 Checking test 012 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -808,14 +808,14 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 441.389530 - 0: The maximum resident set size (KB) = 3164976 + 0: The total amount of wall time = 447.283318 + 0: The maximum resident set size (KB) = 3165420 Test 012 cpld_restart_c192_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_bmark_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/cpld_bmark_p8 +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/cpld_bmark_p8 Checking test 013 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -863,14 +863,14 @@ Checking test 013 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 910.235389 - 0: The maximum resident set size (KB) = 3969812 + 0: The total amount of wall time = 864.770441 + 0: The maximum resident set size (KB) = 4050356 Test 013 cpld_bmark_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_bmark_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/cpld_restart_bmark_p8 +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/cpld_restart_bmark_p8 Checking test 014 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -918,14 +918,14 @@ Checking test 014 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 537.637430 - 0: The maximum resident set size (KB) = 3978480 + 0: The total amount of wall time = 570.921874 + 0: The maximum resident set size (KB) = 3974828 Test 014 cpld_restart_bmark_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_noaero_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/cpld_control_noaero_p8 +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/cpld_control_noaero_p8 Checking test 015 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -989,14 +989,14 @@ Checking test 015 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 348.570885 - 0: The maximum resident set size (KB) = 1724168 + 0: The total amount of wall time = 256.828714 + 0: The maximum resident set size (KB) = 1727224 Test 015 cpld_control_noaero_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_c96_noaero_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/cpld_control_nowave_noaero_p8 +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/cpld_control_nowave_noaero_p8 Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1058,14 +1058,14 @@ Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 312.143126 - 0: The maximum resident set size (KB) = 1759904 + 0: The total amount of wall time = 258.433973 + 0: The maximum resident set size (KB) = 1764408 Test 016 cpld_control_nowave_noaero_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_debug_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/cpld_debug_p8 +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/cpld_debug_p8 Checking test 017 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1118,14 +1118,14 @@ Checking test 017 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 737.837094 - 0: The maximum resident set size (KB) = 3255196 + 0: The total amount of wall time = 555.238799 + 0: The maximum resident set size (KB) = 3243680 Test 017 cpld_debug_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_debug_noaero_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/cpld_debug_noaero_p8 +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/cpld_debug_noaero_p8 Checking test 018 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1177,14 +1177,14 @@ Checking test 018 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 424.931717 - 0: The maximum resident set size (KB) = 1744160 + 0: The total amount of wall time = 381.760262 + 0: The maximum resident set size (KB) = 1728984 Test 018 cpld_debug_noaero_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_noaero_p8_agrid -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/cpld_control_noaero_p8_agrid +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/cpld_control_noaero_p8_agrid Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1246,14 +1246,14 @@ Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 274.027633 - 0: The maximum resident set size (KB) = 1769708 + 0: The total amount of wall time = 264.822934 + 0: The maximum resident set size (KB) = 1763528 Test 019 cpld_control_noaero_p8_agrid PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_c48 -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/cpld_control_c48 +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/cpld_control_c48 Checking test 020 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1303,14 +1303,14 @@ Checking test 020 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 496.558939 - 0: The maximum resident set size (KB) = 2812532 + 0: The total amount of wall time = 498.826470 + 0: The maximum resident set size (KB) = 2814516 Test 020 cpld_control_c48 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_warmstart_c48 -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/cpld_warmstart_c48 +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/cpld_warmstart_c48 Checking test 021 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1360,14 +1360,14 @@ Checking test 021 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 147.660447 - 0: The maximum resident set size (KB) = 2804684 + 0: The total amount of wall time = 139.378688 + 0: The maximum resident set size (KB) = 2810300 Test 021 cpld_warmstart_c48 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_warmstart_c48 -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/cpld_restart_c48 +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/cpld_restart_c48 Checking test 022 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1417,14 +1417,14 @@ Checking test 022 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 72.282015 - 0: The maximum resident set size (KB) = 2228108 + 0: The total amount of wall time = 74.529578 + 0: The maximum resident set size (KB) = 2241592 Test 022 cpld_restart_c48 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/cpld_control_p8_faster +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/cpld_control_p8_faster Checking test 023 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1489,14 +1489,14 @@ Checking test 023 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 335.157784 - 0: The maximum resident set size (KB) = 3176720 + 0: The total amount of wall time = 322.336123 + 0: The maximum resident set size (KB) = 3184772 Test 023 cpld_control_p8_faster PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_CubedSphereGrid -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_CubedSphereGrid +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_CubedSphereGrid Checking test 024 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1523,28 +1523,28 @@ Checking test 024 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 130.250790 - 0: The maximum resident set size (KB) = 638552 + 0: The total amount of wall time = 130.081163 + 0: The maximum resident set size (KB) = 636680 Test 024 control_CubedSphereGrid PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_CubedSphereGrid_parallel -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_CubedSphereGrid_parallel +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_CubedSphereGrid_parallel Checking test 025 control_CubedSphereGrid_parallel results .... 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.740995 - 0: The maximum resident set size (KB) = 637408 + 0: The total amount of wall time = 127.099535 + 0: The maximum resident set size (KB) = 634820 Test 025 control_CubedSphereGrid_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_latlon -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_latlon +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_latlon Checking test 026 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1555,32 +1555,32 @@ Checking test 026 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 133.381130 - 0: The maximum resident set size (KB) = 640504 + 0: The total amount of wall time = 132.492008 + 0: The maximum resident set size (KB) = 633592 Test 026 control_latlon PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wrtGauss_netcdf_parallel -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_wrtGauss_netcdf_parallel +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_wrtGauss_netcdf_parallel Checking test 027 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.274915 - 0: The maximum resident set size (KB) = 634564 + 0: The total amount of wall time = 137.296062 + 0: The maximum resident set size (KB) = 597796 Test 027 control_wrtGauss_netcdf_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c48 -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_c48 +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_c48 Checking test 028 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1619,14 +1619,14 @@ Checking test 028 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 349.987469 -0: The maximum resident set size (KB) = 808992 +0: The total amount of wall time = 344.953404 +0: The maximum resident set size (KB) = 819084 Test 028 control_c48 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c192 -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_c192 +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_c192 Checking test 029 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1637,14 +1637,14 @@ Checking test 029 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 547.134382 - 0: The maximum resident set size (KB) = 772468 + 0: The total amount of wall time = 523.543244 + 0: The maximum resident set size (KB) = 773912 Test 029 control_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c384 -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_c384 +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_c384 Checking test 030 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1655,14 +1655,14 @@ Checking test 030 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 623.780968 - 0: The maximum resident set size (KB) = 1235584 + 0: The total amount of wall time = 575.494634 + 0: The maximum resident set size (KB) = 1232068 Test 030 control_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c384gdas -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_c384gdas +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_c384gdas Checking test 031 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1705,14 +1705,14 @@ Checking test 031 control_c384gdas 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 = 550.269241 - 0: The maximum resident set size (KB) = 1339984 + 0: The total amount of wall time = 504.706752 + 0: The maximum resident set size (KB) = 1350428 Test 031 control_c384gdas PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_stochy -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_stochy +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_stochy Checking test 032 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1723,28 +1723,28 @@ Checking test 032 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 87.358989 - 0: The maximum resident set size (KB) = 641244 + 0: The total amount of wall time = 89.287979 + 0: The maximum resident set size (KB) = 638744 Test 032 control_stochy PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_stochy -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_stochy_restart +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_stochy_restart Checking test 033 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 73.630983 - 0: The maximum resident set size (KB) = 452152 + 0: The total amount of wall time = 46.913794 + 0: The maximum resident set size (KB) = 487456 Test 033 control_stochy_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_lndp -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_lndp +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_lndp Checking test 034 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1755,14 +1755,14 @@ Checking test 034 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 82.949255 - 0: The maximum resident set size (KB) = 637848 + 0: The total amount of wall time = 81.830117 + 0: The maximum resident set size (KB) = 635724 Test 034 control_lndp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_iovr4 -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_iovr4 +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_iovr4 Checking test 035 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1777,14 +1777,14 @@ Checking test 035 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.968310 - 0: The maximum resident set size (KB) = 631104 + 0: The total amount of wall time = 133.997741 + 0: The maximum resident set size (KB) = 636908 Test 035 control_iovr4 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_iovr5 -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_iovr5 +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_iovr5 Checking test 036 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1799,14 +1799,14 @@ Checking test 036 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.743425 - 0: The maximum resident set size (KB) = 632612 + 0: The total amount of wall time = 134.625556 + 0: The maximum resident set size (KB) = 631560 Test 036 control_iovr5 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_p8 +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_p8 Checking test 037 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1853,14 +1853,14 @@ Checking test 037 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 166.672191 - 0: The maximum resident set size (KB) = 1606336 + 0: The total amount of wall time = 166.856564 + 0: The maximum resident set size (KB) = 1608556 Test 037 control_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_restart_p8 +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_restart_p8 Checking test 038 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1899,14 +1899,14 @@ Checking test 038 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 102.756309 - 0: The maximum resident set size (KB) = 874064 + 0: The total amount of wall time = 98.023404 + 0: The maximum resident set size (KB) = 869344 Test 038 control_restart_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_qr_p8 +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_qr_p8 Checking test 039 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1953,14 +1953,14 @@ Checking test 039 control_qr_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 168.462476 - 0: The maximum resident set size (KB) = 1606056 + 0: The total amount of wall time = 167.217987 + 0: The maximum resident set size (KB) = 1609100 Test 039 control_qr_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_restart_qr_p8 +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_restart_qr_p8 Checking test 040 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1999,14 +1999,14 @@ Checking test 040 control_restart_qr_p8 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 = 92.528934 - 0: The maximum resident set size (KB) = 871924 + 0: The total amount of wall time = 90.852057 + 0: The maximum resident set size (KB) = 863548 Test 040 control_restart_qr_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_decomp_p8 +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_decomp_p8 Checking test 041 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2049,14 +2049,14 @@ Checking test 041 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 173.626129 - 0: The maximum resident set size (KB) = 1590812 + 0: The total amount of wall time = 174.967039 + 0: The maximum resident set size (KB) = 1589572 Test 041 control_decomp_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_2threads_p8 +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_2threads_p8 Checking test 042 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2099,14 +2099,14 @@ Checking test 042 control_2threads_p8 results .... Comparing 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.332877 - 0: The maximum resident set size (KB) = 1695544 + 0: The total amount of wall time = 176.215985 + 0: The maximum resident set size (KB) = 1693324 Test 042 control_2threads_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_lndp -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_p8_lndp +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_p8_lndp Checking test 043 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2125,14 +2125,14 @@ Checking test 043 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 322.781381 - 0: The maximum resident set size (KB) = 1613576 + 0: The total amount of wall time = 314.132371 + 0: The maximum resident set size (KB) = 1602164 Test 043 control_p8_lndp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_rrtmgp -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_p8_rrtmgp +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_p8_rrtmgp Checking test 044 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2179,14 +2179,14 @@ Checking test 044 control_p8_rrtmgp results .... Comparing 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.095187 - 0: The maximum resident set size (KB) = 1675292 + 0: The total amount of wall time = 233.946571 + 0: The maximum resident set size (KB) = 1674632 Test 044 control_p8_rrtmgp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_mynn -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_p8_mynn +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_p8_mynn Checking test 045 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2233,14 +2233,14 @@ Checking test 045 control_p8_mynn results .... Comparing 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.857445 - 0: The maximum resident set size (KB) = 1614452 + 0: The total amount of wall time = 173.000245 + 0: The maximum resident set size (KB) = 1616412 Test 045 control_p8_mynn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/merra2_thompson -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/merra2_thompson +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/merra2_thompson Checking test 046 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2287,14 +2287,14 @@ Checking test 046 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 189.976241 - 0: The maximum resident set size (KB) = 1611972 + 0: The total amount of wall time = 191.806001 + 0: The maximum resident set size (KB) = 1617776 Test 046 merra2_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/regional_control +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/regional_control Checking test 047 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2305,28 +2305,28 @@ Checking test 047 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 317.967460 - 0: The maximum resident set size (KB) = 871500 + 0: The total amount of wall time = 297.119810 + 0: The maximum resident set size (KB) = 870220 Test 047 regional_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/regional_restart +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/regional_restart Checking test 048 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 160.443772 - 0: The maximum resident set size (KB) = 865628 + 0: The total amount of wall time = 151.455406 + 0: The maximum resident set size (KB) = 863796 Test 048 regional_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/regional_control_qr +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/regional_control_qr Checking test 049 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2337,28 +2337,28 @@ Checking test 049 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 317.147438 - 0: The maximum resident set size (KB) = 869272 + 0: The total amount of wall time = 297.983647 + 0: The maximum resident set size (KB) = 876236 Test 049 regional_control_qr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/regional_restart_qr +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/regional_restart_qr Checking test 050 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 156.573514 - 0: The maximum resident set size (KB) = 864488 + 0: The total amount of wall time = 163.175244 + 0: The maximum resident set size (KB) = 863864 Test 050 regional_restart_qr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/regional_decomp +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/regional_decomp Checking test 051 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2369,14 +2369,14 @@ Checking test 051 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 322.632273 - 0: The maximum resident set size (KB) = 867232 + 0: The total amount of wall time = 316.511315 + 0: The maximum resident set size (KB) = 866928 Test 051 regional_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/regional_2threads +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/regional_2threads Checking test 052 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2387,14 +2387,14 @@ Checking test 052 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 204.198133 - 0: The maximum resident set size (KB) = 857052 + 0: The total amount of wall time = 206.851909 + 0: The maximum resident set size (KB) = 854824 Test 052 regional_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_noquilt -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/regional_noquilt +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/regional_noquilt Checking test 053 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2402,28 +2402,28 @@ Checking test 053 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 321.247920 - 0: The maximum resident set size (KB) = 863532 + 0: The total amount of wall time = 317.008747 + 0: The maximum resident set size (KB) = 862944 Test 053 regional_noquilt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_netcdf_parallel -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/regional_netcdf_parallel +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/regional_netcdf_parallel Checking test 054 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 320.120896 - 0: The maximum resident set size (KB) = 864164 + 0: The total amount of wall time = 291.581013 + 0: The maximum resident set size (KB) = 874852 Test 054 regional_netcdf_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/regional_2dwrtdecomp +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/regional_2dwrtdecomp Checking test 055 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2434,14 +2434,14 @@ Checking test 055 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 314.839237 - 0: The maximum resident set size (KB) = 875208 + 0: The total amount of wall time = 295.988000 + 0: The maximum resident set size (KB) = 877012 Test 055 regional_2dwrtdecomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/fv3_regional_wofs -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/regional_wofs +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/regional_wofs Checking test 056 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2452,14 +2452,14 @@ Checking test 056 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 376.170909 - 0: The maximum resident set size (KB) = 630060 + 0: The total amount of wall time = 373.065419 + 0: The maximum resident set size (KB) = 631724 Test 056 regional_wofs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/rap_control +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/rap_control Checking test 057 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2506,14 +2506,14 @@ Checking test 057 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 459.666292 - 0: The maximum resident set size (KB) = 1066948 + 0: The total amount of wall time = 460.891472 + 0: The maximum resident set size (KB) = 1058396 Test 057 rap_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_spp_sppt_shum_skeb -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/regional_spp_sppt_shum_skeb +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/regional_spp_sppt_shum_skeb Checking test 058 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2524,14 +2524,14 @@ Checking test 058 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 267.680083 - 0: The maximum resident set size (KB) = 1193752 + 0: The total amount of wall time = 263.983160 + 0: The maximum resident set size (KB) = 1184368 Test 058 regional_spp_sppt_shum_skeb PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/rap_decomp +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/rap_decomp Checking test 059 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2578,14 +2578,14 @@ Checking test 059 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 481.253860 - 0: The maximum resident set size (KB) = 997008 + 0: The total amount of wall time = 480.255621 + 0: The maximum resident set size (KB) = 1000232 Test 059 rap_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/rap_2threads +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/rap_2threads Checking test 060 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2632,14 +2632,14 @@ Checking test 060 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 472.567070 - 0: The maximum resident set size (KB) = 1144472 + 0: The total amount of wall time = 467.489313 + 0: The maximum resident set size (KB) = 1138392 Test 060 rap_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/rap_restart +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/rap_restart Checking test 061 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2678,14 +2678,14 @@ Checking test 061 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 231.168381 - 0: The maximum resident set size (KB) = 969516 + 0: The total amount of wall time = 230.984001 + 0: The maximum resident set size (KB) = 973900 Test 061 rap_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/rap_sfcdiff +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/rap_sfcdiff Checking test 062 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2732,14 +2732,14 @@ Checking test 062 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 456.847308 - 0: The maximum resident set size (KB) = 1055312 + 0: The total amount of wall time = 459.752732 + 0: The maximum resident set size (KB) = 1064168 Test 062 rap_sfcdiff PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/rap_sfcdiff_decomp +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/rap_sfcdiff_decomp Checking test 063 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2786,14 +2786,14 @@ Checking test 063 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 480.615927 - 0: The maximum resident set size (KB) = 963220 + 0: The total amount of wall time = 484.880596 + 0: The maximum resident set size (KB) = 1005596 Test 063 rap_sfcdiff_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/rap_sfcdiff_restart +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/rap_sfcdiff_restart Checking test 064 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2832,14 +2832,14 @@ Checking test 064 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 339.957078 - 0: The maximum resident set size (KB) = 984228 + 0: The total amount of wall time = 341.523985 + 0: The maximum resident set size (KB) = 988816 Test 064 rap_sfcdiff_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/hrrr_control +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/hrrr_control Checking test 065 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2886,14 +2886,14 @@ Checking test 065 hrrr_control results .... Comparing 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.154843 - 0: The maximum resident set size (KB) = 1063232 + 0: The total amount of wall time = 443.844419 + 0: The maximum resident set size (KB) = 1055140 Test 065 hrrr_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/hrrr_control_decomp +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/hrrr_control_decomp Checking test 066 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2940,14 +2940,14 @@ Checking test 066 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 462.373051 - 0: The maximum resident set size (KB) = 1000404 + 0: The total amount of wall time = 462.550153 + 0: The maximum resident set size (KB) = 998312 Test 066 hrrr_control_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/hrrr_control_2threads +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/hrrr_control_2threads Checking test 067 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2994,14 +2994,14 @@ Checking test 067 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 453.749351 - 0: The maximum resident set size (KB) = 1141144 + 0: The total amount of wall time = 455.857122 + 0: The maximum resident set size (KB) = 1143328 Test 067 hrrr_control_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/hrrr_control_restart +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/hrrr_control_restart Checking test 068 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3040,14 +3040,14 @@ Checking test 068 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 329.521139 - 0: The maximum resident set size (KB) = 987624 + 0: The total amount of wall time = 330.784166 + 0: The maximum resident set size (KB) = 978316 Test 068 hrrr_control_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1beta -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/rrfs_v1beta +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/rrfs_v1beta Checking test 069 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3094,14 +3094,14 @@ Checking test 069 rrfs_v1beta results .... Comparing 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.329131 - 0: The maximum resident set size (KB) = 1060724 + 0: The total amount of wall time = 453.558637 + 0: The maximum resident set size (KB) = 1059772 Test 069 rrfs_v1beta PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1nssl -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/rrfs_v1nssl +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/rrfs_v1nssl Checking test 070 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3116,14 +3116,14 @@ Checking test 070 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 540.267869 - 0: The maximum resident set size (KB) = 702696 + 0: The total amount of wall time = 539.554805 + 0: The maximum resident set size (KB) = 694976 Test 070 rrfs_v1nssl PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/rrfs_v1nssl_nohailnoccn +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/rrfs_v1nssl_nohailnoccn Checking test 071 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3138,14 +3138,14 @@ Checking test 071 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 526.890775 - 0: The maximum resident set size (KB) = 760748 + 0: The total amount of wall time = 527.349649 + 0: The maximum resident set size (KB) = 718072 Test 071 rrfs_v1nssl_nohailnoccn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/rrfs_smoke_conus13km_hrrr_warm +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/rrfs_smoke_conus13km_hrrr_warm Checking test 072 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3154,14 +3154,14 @@ Checking test 072 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 145.122186 - 0: The maximum resident set size (KB) = 1031784 + 0: The total amount of wall time = 145.504396 + 0: The maximum resident set size (KB) = 1035876 Test 072 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/rrfs_smoke_conus13km_hrrr_warm_2threads +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 073 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3170,14 +3170,14 @@ Checking test 073 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 96.507285 - 0: The maximum resident set size (KB) = 947092 + 0: The total amount of wall time = 96.429205 + 0: The maximum resident set size (KB) = 949200 Test 073 rrfs_smoke_conus13km_hrrr_warm_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_conus13km_hrrr_warm -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/rrfs_conus13km_hrrr_warm +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/rrfs_conus13km_hrrr_warm Checking test 074 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3186,14 +3186,14 @@ Checking test 074 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 130.138969 - 0: The maximum resident set size (KB) = 943088 + 0: The total amount of wall time = 128.155778 + 0: The maximum resident set size (KB) = 945296 Test 074 rrfs_conus13km_hrrr_warm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/rrfs_smoke_conus13km_radar_tten_warm +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/rrfs_smoke_conus13km_radar_tten_warm Checking test 075 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3202,26 +3202,26 @@ Checking test 075 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 148.608193 - 0: The maximum resident set size (KB) = 1040332 + 0: The total amount of wall time = 148.194477 + 0: The maximum resident set size (KB) = 1001188 Test 075 rrfs_smoke_conus13km_radar_tten_warm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 076 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 70.893843 - 0: The maximum resident set size (KB) = 931408 + 0: The total amount of wall time = 72.458020 + 0: The maximum resident set size (KB) = 933252 Test 076 rrfs_conus13km_hrrr_warm_restart_mismatch PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmg -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_csawmg +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_csawmg Checking test 077 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3232,14 +3232,14 @@ Checking test 077 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 345.217996 - 0: The maximum resident set size (KB) = 724976 + 0: The total amount of wall time = 351.458150 + 0: The maximum resident set size (KB) = 721184 Test 077 control_csawmg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmgt -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_csawmgt +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_csawmgt Checking test 078 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3250,14 +3250,14 @@ Checking test 078 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 339.571495 - 0: The maximum resident set size (KB) = 725844 + 0: The total amount of wall time = 340.589205 + 0: The maximum resident set size (KB) = 726476 Test 078 control_csawmgt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_ras -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_ras +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_ras Checking test 079 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3268,26 +3268,26 @@ Checking test 079 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 181.641932 - 0: The maximum resident set size (KB) = 716588 + 0: The total amount of wall time = 181.379370 + 0: The maximum resident set size (KB) = 718940 Test 079 control_ras PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wam -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_wam +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_wam Checking test 080 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 112.250638 - 0: The maximum resident set size (KB) = 640204 + 0: The total amount of wall time = 115.428438 + 0: The maximum resident set size (KB) = 642096 Test 080 control_wam PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_p8_faster +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_p8_faster Checking test 081 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3334,14 +3334,14 @@ Checking test 081 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 153.674685 - 0: The maximum resident set size (KB) = 1608392 + 0: The total amount of wall time = 154.890469 + 0: The maximum resident set size (KB) = 1606168 Test 081 control_p8_faster PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/regional_control_faster +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/regional_control_faster Checking test 082 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3352,56 +3352,56 @@ Checking test 082 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 270.792263 - 0: The maximum resident set size (KB) = 867896 + 0: The total amount of wall time = 269.242048 + 0: The maximum resident set size (KB) = 873180 Test 082 regional_control_faster PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 083 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 868.817926 - 0: The maximum resident set size (KB) = 1023576 + 0: The total amount of wall time = 835.901918 + 0: The maximum resident set size (KB) = 1058864 Test 083 rrfs_smoke_conus13km_hrrr_warm_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 084 rrfs_smoke_conus13km_hrrr_warm_debug_2threads 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.594011 - 0: The maximum resident set size (KB) = 940592 + 0: The total amount of wall time = 477.543740 + 0: The maximum resident set size (KB) = 974096 Test 084 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/rrfs_conus13km_hrrr_warm_debug +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/rrfs_conus13km_hrrr_warm_debug Checking test 085 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 764.497690 - 0: The maximum resident set size (KB) = 976492 + 0: The total amount of wall time = 751.328130 + 0: The maximum resident set size (KB) = 977852 Test 085 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_CubedSphereGrid_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_CubedSphereGrid_debug +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_CubedSphereGrid_debug Checking test 086 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3428,334 +3428,334 @@ Checking test 086 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 175.839748 - 0: The maximum resident set size (KB) = 798184 + 0: The total amount of wall time = 150.806863 + 0: The maximum resident set size (KB) = 799228 Test 086 control_CubedSphereGrid_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_wrtGauss_netcdf_parallel_debug +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_wrtGauss_netcdf_parallel_debug Checking test 087 control_wrtGauss_netcdf_parallel_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 159.079318 - 0: The maximum resident set size (KB) = 794920 + 0: The total amount of wall time = 147.491315 + 0: The maximum resident set size (KB) = 789732 Test 087 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_stochy_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_stochy_debug +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_stochy_debug Checking test 088 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 181.392188 - 0: The maximum resident set size (KB) = 803204 + 0: The total amount of wall time = 172.575510 + 0: The maximum resident set size (KB) = 798260 Test 088 control_stochy_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_lndp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_lndp_debug +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_lndp_debug Checking test 089 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 160.108254 - 0: The maximum resident set size (KB) = 794748 + 0: The total amount of wall time = 152.700226 + 0: The maximum resident set size (KB) = 794796 Test 089 control_lndp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmg_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_csawmg_debug +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_csawmg_debug Checking test 090 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 246.145341 - 0: The maximum resident set size (KB) = 847676 + 0: The total amount of wall time = 228.838522 + 0: The maximum resident set size (KB) = 842760 Test 090 control_csawmg_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmgt_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_csawmgt_debug +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_csawmgt_debug Checking test 091 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 239.760912 - 0: The maximum resident set size (KB) = 847160 + 0: The total amount of wall time = 226.476556 + 0: The maximum resident set size (KB) = 844924 Test 091 control_csawmgt_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_ras_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_ras_debug +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_ras_debug Checking test 092 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 162.611085 - 0: The maximum resident set size (KB) = 810212 + 0: The total amount of wall time = 158.151449 + 0: The maximum resident set size (KB) = 806900 Test 092 control_ras_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_diag_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_diag_debug +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_diag_debug Checking test 093 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 172.235508 - 0: The maximum resident set size (KB) = 823460 + 0: The total amount of wall time = 152.548079 + 0: The maximum resident set size (KB) = 851720 Test 093 control_diag_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_debug_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_debug_p8 +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_debug_p8 Checking test 094 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 178.325941 - 0: The maximum resident set size (KB) = 1623616 + 0: The total amount of wall time = 177.035419 + 0: The maximum resident set size (KB) = 1625036 Test 094 control_debug_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/regional_debug +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/regional_debug Checking test 095 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 988.536634 - 0: The maximum resident set size (KB) = 889276 + 0: The total amount of wall time = 1015.667247 + 0: The maximum resident set size (KB) = 881516 Test 095 regional_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/rap_control_debug +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/rap_control_debug Checking test 096 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 285.557542 - 0: The maximum resident set size (KB) = 1180944 + 0: The total amount of wall time = 280.531066 + 0: The maximum resident set size (KB) = 1172932 Test 096 rap_control_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/hrrr_control_debug +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/hrrr_control_debug Checking test 097 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 284.904559 - 0: The maximum resident set size (KB) = 1177316 + 0: The total amount of wall time = 275.160640 + 0: The maximum resident set size (KB) = 1166536 Test 097 hrrr_control_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/rap_unified_drag_suite_debug +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/rap_unified_drag_suite_debug Checking test 098 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.156018 - 0: The maximum resident set size (KB) = 1173000 + 0: The total amount of wall time = 275.538266 + 0: The maximum resident set size (KB) = 1181256 Test 098 rap_unified_drag_suite_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_diag_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/rap_diag_debug +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/rap_diag_debug Checking test 099 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 306.333450 - 0: The maximum resident set size (KB) = 1257848 + 0: The total amount of wall time = 287.340272 + 0: The maximum resident set size (KB) = 1255588 Test 099 rap_diag_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/rap_cires_ugwp_debug +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/rap_cires_ugwp_debug Checking test 100 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 289.768713 - 0: The maximum resident set size (KB) = 1178548 + 0: The total amount of wall time = 281.795101 + 0: The maximum resident set size (KB) = 1167848 Test 100 rap_cires_ugwp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/rap_unified_ugwp_debug +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/rap_unified_ugwp_debug Checking test 101 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 288.965274 - 0: The maximum resident set size (KB) = 1175864 + 0: The total amount of wall time = 280.439562 + 0: The maximum resident set size (KB) = 1172084 Test 101 rap_unified_ugwp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_lndp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/rap_lndp_debug +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/rap_lndp_debug Checking test 102 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 292.433463 - 0: The maximum resident set size (KB) = 1181212 + 0: The total amount of wall time = 275.058865 + 0: The maximum resident set size (KB) = 1174020 Test 102 rap_lndp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_flake_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/rap_flake_debug +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/rap_flake_debug Checking test 103 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 282.444418 - 0: The maximum resident set size (KB) = 1175932 + 0: The total amount of wall time = 274.480149 + 0: The maximum resident set size (KB) = 1172964 Test 103 rap_flake_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_progcld_thompson_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/rap_progcld_thompson_debug +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/rap_progcld_thompson_debug Checking test 104 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 285.270191 - 0: The maximum resident set size (KB) = 1175608 + 0: The total amount of wall time = 279.987479 + 0: The maximum resident set size (KB) = 1171308 Test 104 rap_progcld_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_noah_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/rap_noah_debug +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/rap_noah_debug Checking test 105 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 287.064123 - 0: The maximum resident set size (KB) = 1142136 + 0: The total amount of wall time = 270.919777 + 0: The maximum resident set size (KB) = 1170376 Test 105 rap_noah_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/rap_sfcdiff_debug +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/rap_sfcdiff_debug Checking test 106 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 284.720790 - 0: The maximum resident set size (KB) = 1171736 + 0: The total amount of wall time = 276.289810 + 0: The maximum resident set size (KB) = 1172352 Test 106 rap_sfcdiff_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/rap_noah_sfcdiff_cires_ugwp_debug Checking test 107 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 476.655544 - 0: The maximum resident set size (KB) = 1178444 + 0: The total amount of wall time = 452.012400 + 0: The maximum resident set size (KB) = 1171032 Test 107 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1beta_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/rrfs_v1beta_debug +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/rrfs_v1beta_debug Checking test 108 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.983163 - 0: The maximum resident set size (KB) = 1176184 + 0: The total amount of wall time = 274.104127 + 0: The maximum resident set size (KB) = 1168568 Test 108 rrfs_v1beta_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wam_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_wam_debug +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_wam_debug Checking test 109 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 290.777702 - 0: The maximum resident set size (KB) = 528672 + 0: The total amount of wall time = 284.324104 + 0: The maximum resident set size (KB) = 518200 Test 109 control_wam_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3766,14 +3766,14 @@ Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 250.969519 - 0: The maximum resident set size (KB) = 1087632 + 0: The total amount of wall time = 249.255747 + 0: The maximum resident set size (KB) = 1075076 Test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/rap_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/rap_control_dyn32_phy32 Checking test 111 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3820,14 +3820,14 @@ Checking test 111 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 380.329200 - 0: The maximum resident set size (KB) = 1005060 + 0: The total amount of wall time = 380.687890 + 0: The maximum resident set size (KB) = 1005224 Test 111 rap_control_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/hrrr_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/hrrr_control_dyn32_phy32 Checking test 112 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3874,14 +3874,14 @@ Checking test 112 hrrr_control_dyn32_phy32 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 = 197.111988 - 0: The maximum resident set size (KB) = 957640 + 0: The total amount of wall time = 199.123317 + 0: The maximum resident set size (KB) = 956984 Test 112 hrrr_control_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/rap_2threads_dyn32_phy32 +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/rap_2threads_dyn32_phy32 Checking test 113 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3928,14 +3928,14 @@ Checking test 113 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 395.513768 - 0: The maximum resident set size (KB) = 1026572 + 0: The total amount of wall time = 398.994809 + 0: The maximum resident set size (KB) = 1021752 Test 113 rap_2threads_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/hrrr_control_2threads_dyn32_phy32 +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/hrrr_control_2threads_dyn32_phy32 Checking test 114 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3982,14 +3982,14 @@ Checking test 114 hrrr_control_2threads_dyn32_phy32 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 = 204.261548 - 0: The maximum resident set size (KB) = 999728 + 0: The total amount of wall time = 208.341774 + 0: The maximum resident set size (KB) = 1006944 Test 114 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/hrrr_control_decomp_dyn32_phy32 +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/hrrr_control_decomp_dyn32_phy32 Checking test 115 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4036,14 +4036,14 @@ Checking test 115 hrrr_control_decomp_dyn32_phy32 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 = 210.028117 - 0: The maximum resident set size (KB) = 901448 + 0: The total amount of wall time = 210.092876 + 0: The maximum resident set size (KB) = 902668 Test 115 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/rap_restart_dyn32_phy32 +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/rap_restart_dyn32_phy32 Checking test 116 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4082,14 +4082,14 @@ Checking test 116 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 282.359329 - 0: The maximum resident set size (KB) = 916748 + 0: The total amount of wall time = 283.113512 + 0: The maximum resident set size (KB) = 951156 Test 116 rap_restart_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/hrrr_control_restart_dyn32_phy32 +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/hrrr_control_restart_dyn32_phy32 Checking test 117 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4128,14 +4128,14 @@ Checking test 117 hrrr_control_restart_dyn32_phy32 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 = 102.678007 - 0: The maximum resident set size (KB) = 831308 + 0: The total amount of wall time = 103.306238 + 0: The maximum resident set size (KB) = 860800 Test 117 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn64_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/rap_control_dyn64_phy32 +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/rap_control_dyn64_phy32 Checking test 118 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4182,81 +4182,81 @@ Checking test 118 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 241.666500 - 0: The maximum resident set size (KB) = 966112 + 0: The total amount of wall time = 244.286744 + 0: The maximum resident set size (KB) = 961304 Test 118 rap_control_dyn64_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/rap_control_debug_dyn32_phy32 +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/rap_control_debug_dyn32_phy32 Checking test 119 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.608381 - 0: The maximum resident set size (KB) = 1066192 + 0: The total amount of wall time = 271.932905 + 0: The maximum resident set size (KB) = 1064332 Test 119 rap_control_debug_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/hrrr_control_debug_dyn32_phy32 +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/hrrr_control_debug_dyn32_phy32 Checking test 120 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.186169 - 0: The maximum resident set size (KB) = 1066164 + 0: The total amount of wall time = 265.149639 + 0: The maximum resident set size (KB) = 1053896 Test 120 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug_dyn64_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/rap_control_dyn64_phy32_debug +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/rap_control_dyn64_phy32_debug Checking test 121 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 289.449805 - 0: The maximum resident set size (KB) = 1105960 + 0: The total amount of wall time = 282.629739 + 0: The maximum resident set size (KB) = 1105800 Test 121 rap_control_dyn64_phy32_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/hafs_regional_atm +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/hafs_regional_atm Checking test 122 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 263.467270 - 0: The maximum resident set size (KB) = 1060952 + 0: The total amount of wall time = 267.605223 + 0: The maximum resident set size (KB) = 1059260 Test 122 hafs_regional_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/hafs_regional_atm_thompson_gfdlsf +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/hafs_regional_atm_thompson_gfdlsf Checking test 123 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 398.461310 - 0: The maximum resident set size (KB) = 1428632 + 0: The total amount of wall time = 402.628999 + 0: The maximum resident set size (KB) = 1423388 Test 123 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_ocn -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/hafs_regional_atm_ocn +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/hafs_regional_atm_ocn Checking test 124 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4265,14 +4265,14 @@ Checking test 124 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 373.478730 - 0: The maximum resident set size (KB) = 1233468 + 0: The total amount of wall time = 377.563025 + 0: The maximum resident set size (KB) = 1232612 Test 124 hafs_regional_atm_ocn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_wav -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/hafs_regional_atm_wav +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/hafs_regional_atm_wav Checking test 125 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4281,14 +4281,14 @@ Checking test 125 hafs_regional_atm_wav results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 722.668913 - 0: The maximum resident set size (KB) = 1286524 + 0: The total amount of wall time = 720.969002 + 0: The maximum resident set size (KB) = 1256212 Test 125 hafs_regional_atm_wav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_ocn_wav -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/hafs_regional_atm_ocn_wav +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/hafs_regional_atm_ocn_wav Checking test 126 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4299,28 +4299,28 @@ Checking test 126 hafs_regional_atm_ocn_wav results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 826.121638 - 0: The maximum resident set size (KB) = 1282832 + 0: The total amount of wall time = 827.576520 + 0: The maximum resident set size (KB) = 1279556 Test 126 hafs_regional_atm_ocn_wav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/hafs_regional_1nest_atm +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/hafs_regional_1nest_atm Checking test 127 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 360.110703 - 0: The maximum resident set size (KB) = 509456 + 0: The total amount of wall time = 409.454332 + 0: The maximum resident set size (KB) = 511984 Test 127 hafs_regional_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/hafs_regional_telescopic_2nests_atm +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/hafs_regional_telescopic_2nests_atm Checking test 128 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4329,28 +4329,28 @@ Checking test 128 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 441.193403 - 0: The maximum resident set size (KB) = 514944 + 0: The total amount of wall time = 413.967064 + 0: The maximum resident set size (KB) = 514376 Test 128 hafs_regional_telescopic_2nests_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_global_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/hafs_global_1nest_atm +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/hafs_global_1nest_atm Checking test 129 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 174.097911 - 0: The maximum resident set size (KB) = 361456 + 0: The total amount of wall time = 175.918088 + 0: The maximum resident set size (KB) = 362516 Test 129 hafs_global_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_global_multiple_4nests_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/hafs_global_multiple_4nests_atm +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/hafs_global_multiple_4nests_atm Checking test 130 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4368,14 +4368,14 @@ Checking test 130 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 462.725770 - 0: The maximum resident set size (KB) = 433444 + 0: The total amount of wall time = 464.700173 + 0: The maximum resident set size (KB) = 431128 Test 130 hafs_global_multiple_4nests_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/hafs_regional_specified_moving_1nest_atm +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/hafs_regional_specified_moving_1nest_atm Checking test 131 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4384,28 +4384,28 @@ Checking test 131 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 229.710359 - 0: The maximum resident set size (KB) = 531524 + 0: The total amount of wall time = 228.124507 + 0: The maximum resident set size (KB) = 529424 Test 131 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/hafs_regional_storm_following_1nest_atm +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/hafs_regional_storm_following_1nest_atm Checking test 132 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 217.700429 - 0: The maximum resident set size (KB) = 523572 + 0: The total amount of wall time = 219.558469 + 0: The maximum resident set size (KB) = 526944 Test 132 hafs_regional_storm_following_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/hafs_regional_storm_following_1nest_atm_ocn +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/hafs_regional_storm_following_1nest_atm_ocn Checking test 133 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4414,42 +4414,42 @@ Checking test 133 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 287.810792 - 0: The maximum resident set size (KB) = 569428 + 0: The total amount of wall time = 286.913894 + 0: The maximum resident set size (KB) = 568696 Test 133 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_global_storm_following_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/hafs_global_storm_following_1nest_atm +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/hafs_global_storm_following_1nest_atm Checking test 134 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 68.720297 - 0: The maximum resident set size (KB) = 374512 + 0: The total amount of wall time = 67.824454 + 0: The maximum resident set size (KB) = 372456 Test 134 hafs_global_storm_following_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 796.680035 - 0: The maximum resident set size (KB) = 594928 + 0: The total amount of wall time = 738.215394 + 0: The maximum resident set size (KB) = 587752 Test 135 hafs_regional_storm_following_1nest_atm_ocn_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 136 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4460,14 +4460,14 @@ Checking test 136 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 538.006011 - 0: The maximum resident set size (KB) = 627856 + 0: The total amount of wall time = 537.764049 + 0: The maximum resident set size (KB) = 624012 Test 136 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_docn -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/hafs_regional_docn +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/hafs_regional_docn Checking test 137 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4475,14 +4475,14 @@ Checking test 137 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 357.840520 - 0: The maximum resident set size (KB) = 1243472 + 0: The total amount of wall time = 357.335276 + 0: The maximum resident set size (KB) = 1244548 Test 137 hafs_regional_docn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_docn_oisst -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/hafs_regional_docn_oisst +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/hafs_regional_docn_oisst Checking test 138 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4490,131 +4490,131 @@ Checking test 138 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 361.481893 - 0: The maximum resident set size (KB) = 1224160 + 0: The total amount of wall time = 362.327306 + 0: The maximum resident set size (KB) = 1222664 Test 138 hafs_regional_docn_oisst PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_datm_cdeps -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/hafs_regional_datm_cdeps +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/hafs_regional_datm_cdeps Checking test 139 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 933.787702 - 0: The maximum resident set size (KB) = 1046832 + 0: The total amount of wall time = 930.489005 + 0: The maximum resident set size (KB) = 1036532 Test 139 hafs_regional_datm_cdeps PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/datm_cdeps_control_cfsr +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/datm_cdeps_control_cfsr Checking test 140 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.406317 - 0: The maximum resident set size (KB) = 1065976 + 0: The total amount of wall time = 144.980958 + 0: The maximum resident set size (KB) = 1083932 Test 140 datm_cdeps_control_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/datm_cdeps_restart_cfsr +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/datm_cdeps_restart_cfsr Checking test 141 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 88.071125 - 0: The maximum resident set size (KB) = 1028032 + 0: The total amount of wall time = 91.355240 + 0: The maximum resident set size (KB) = 1004500 Test 141 datm_cdeps_restart_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/datm_cdeps_control_gefs +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/datm_cdeps_control_gefs Checking test 142 datm_cdeps_control_gefs 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.741395 - 0: The maximum resident set size (KB) = 947476 + 0: The total amount of wall time = 144.719741 + 0: The maximum resident set size (KB) = 966696 Test 142 datm_cdeps_control_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_iau_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/datm_cdeps_iau_gefs +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/datm_cdeps_iau_gefs Checking test 143 datm_cdeps_iau_gefs 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.261303 - 0: The maximum resident set size (KB) = 975088 + 0: The total amount of wall time = 145.641809 + 0: The maximum resident set size (KB) = 961984 Test 143 datm_cdeps_iau_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_stochy_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/datm_cdeps_stochy_gefs +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/datm_cdeps_stochy_gefs Checking test 144 datm_cdeps_stochy_gefs 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.185667 - 0: The maximum resident set size (KB) = 967700 + 0: The total amount of wall time = 150.074424 + 0: The maximum resident set size (KB) = 967048 Test 144 datm_cdeps_stochy_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_ciceC_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/datm_cdeps_ciceC_cfsr +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/datm_cdeps_ciceC_cfsr Checking test 145 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.756048 - 0: The maximum resident set size (KB) = 1069664 + 0: The total amount of wall time = 150.564952 + 0: The maximum resident set size (KB) = 1066160 Test 145 datm_cdeps_ciceC_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_bulk_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/datm_cdeps_bulk_cfsr +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/datm_cdeps_bulk_cfsr Checking test 146 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.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.200393 - 0: The maximum resident set size (KB) = 1064720 + 0: The total amount of wall time = 146.224058 + 0: The maximum resident set size (KB) = 1074676 Test 146 datm_cdeps_bulk_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_bulk_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/datm_cdeps_bulk_gefs +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/datm_cdeps_bulk_gefs Checking test 147 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 140.620915 - 0: The maximum resident set size (KB) = 966136 + 0: The total amount of wall time = 143.298302 + 0: The maximum resident set size (KB) = 968016 Test 147 datm_cdeps_bulk_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_mx025_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/datm_cdeps_mx025_cfsr +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/datm_cdeps_mx025_cfsr Checking test 148 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4623,14 +4623,14 @@ Checking test 148 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 436.112190 - 0: The maximum resident set size (KB) = 872016 + 0: The total amount of wall time = 432.418700 + 0: The maximum resident set size (KB) = 884760 Test 148 datm_cdeps_mx025_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_mx025_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/datm_cdeps_mx025_gefs +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/datm_cdeps_mx025_gefs Checking test 149 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4639,77 +4639,77 @@ Checking test 149 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 438.317972 - 0: The maximum resident set size (KB) = 936840 + 0: The total amount of wall time = 434.695721 + 0: The maximum resident set size (KB) = 932432 Test 149 datm_cdeps_mx025_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/datm_cdeps_multiple_files_cfsr +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/datm_cdeps_multiple_files_cfsr Checking test 150 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 147.428317 - 0: The maximum resident set size (KB) = 1074940 + 0: The total amount of wall time = 147.602856 + 0: The maximum resident set size (KB) = 1066308 Test 150 datm_cdeps_multiple_files_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/datm_cdeps_3072x1536_cfsr +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/datm_cdeps_3072x1536_cfsr Checking test 151 datm_cdeps_3072x1536_cfsr 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 = 199.653139 - 0: The maximum resident set size (KB) = 2305960 + 0: The total amount of wall time = 196.676913 + 0: The maximum resident set size (KB) = 2359608 Test 151 datm_cdeps_3072x1536_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_gfs -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/datm_cdeps_gfs +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/datm_cdeps_gfs Checking test 152 datm_cdeps_gfs 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 = 200.199389 - 0: The maximum resident set size (KB) = 2353672 + 0: The total amount of wall time = 199.690965 + 0: The maximum resident set size (KB) = 2306252 Test 152 datm_cdeps_gfs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_debug_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/datm_cdeps_debug_cfsr +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/datm_cdeps_debug_cfsr Checking test 153 datm_cdeps_debug_cfsr 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 = 433.731604 - 0: The maximum resident set size (KB) = 1000132 + 0: The total amount of wall time = 354.543896 + 0: The maximum resident set size (KB) = 1002112 Test 153 datm_cdeps_debug_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/datm_cdeps_control_cfsr_faster +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/datm_cdeps_control_cfsr_faster Checking test 154 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.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.437846 - 0: The maximum resident set size (KB) = 1077516 + 0: The total amount of wall time = 148.439132 + 0: The maximum resident set size (KB) = 1073256 Test 154 datm_cdeps_control_cfsr_faster PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_lnd_gswp3 -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/datm_cdeps_lnd_gswp3 +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/datm_cdeps_lnd_gswp3 Checking test 155 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4718,14 +4718,14 @@ Checking test 155 datm_cdeps_lnd_gswp3 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.527640 - 0: The maximum resident set size (KB) = 266672 + 0: The total amount of wall time = 6.778732 + 0: The maximum resident set size (KB) = 266244 Test 155 datm_cdeps_lnd_gswp3 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_lnd_gswp3 -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/datm_cdeps_lnd_gswp3_rst +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/datm_cdeps_lnd_gswp3_rst Checking test 156 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4734,14 +4734,14 @@ Checking test 156 datm_cdeps_lnd_gswp3_rst 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.254512 - 0: The maximum resident set size (KB) = 265172 + 0: The total amount of wall time = 15.310818 + 0: The maximum resident set size (KB) = 261688 Test 156 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_atmlnd_sbs -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_p8_atmlnd_sbs +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_p8_atmlnd_sbs Checking test 157 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4826,14 +4826,14 @@ Checking test 157 control_p8_atmlnd_sbs 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.298471 - 0: The maximum resident set size (KB) = 1606656 + 0: The total amount of wall time = 202.672746 + 0: The maximum resident set size (KB) = 1624608 Test 157 control_p8_atmlnd_sbs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_atmwav -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/control_atmwav +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_atmwav Checking test 158 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4877,14 +4877,14 @@ Checking test 158 control_atmwav 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.047530 - 0: The maximum resident set size (KB) = 670724 + 0: The total amount of wall time = 87.464389 + 0: The maximum resident set size (KB) = 655432 Test 158 control_atmwav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/atmaero_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/atmaero_control_p8 +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/atmaero_control_p8 Checking test 159 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4928,14 +4928,14 @@ Checking test 159 atmaero_control_p8 results .... Comparing 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.753447 - 0: The maximum resident set size (KB) = 2974084 + 0: The total amount of wall time = 231.028183 + 0: The maximum resident set size (KB) = 2977260 Test 159 atmaero_control_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/atmaero_control_p8_rad -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/atmaero_control_p8_rad +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/atmaero_control_p8_rad Checking test 160 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4979,14 +4979,14 @@ Checking test 160 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 281.119158 - 0: The maximum resident set size (KB) = 3045704 + 0: The total amount of wall time = 282.592379 + 0: The maximum resident set size (KB) = 3040244 Test 160 atmaero_control_p8_rad PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/atmaero_control_p8_rad_micro -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/atmaero_control_p8_rad_micro +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/atmaero_control_p8_rad_micro Checking test 161 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5030,14 +5030,14 @@ Checking test 161 atmaero_control_p8_rad_micro results .... Comparing 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.167559 - 0: The maximum resident set size (KB) = 3063456 + 0: The total amount of wall time = 285.152698 + 0: The maximum resident set size (KB) = 3059644 Test 161 atmaero_control_p8_rad_micro PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_atmaq -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/regional_atmaq +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/regional_atmaq Checking test 162 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5053,14 +5053,14 @@ Checking test 162 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 618.876739 - 0: The maximum resident set size (KB) = 1475488 + 0: The total amount of wall time = 620.569743 + 0: The maximum resident set size (KB) = 1472188 Test 162 regional_atmaq PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_atmaq_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/regional_atmaq_debug +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/regional_atmaq_debug Checking test 163 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5074,14 +5074,14 @@ Checking test 163 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1249.891000 - 0: The maximum resident set size (KB) = 1409420 + 0: The total amount of wall time = 1241.721216 + 0: The maximum resident set size (KB) = 1424252 Test 163 regional_atmaq_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_atmaq_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1692/stmp/jongkim/FV3_RT/rt_98941/regional_atmaq_faster +working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/regional_atmaq_faster Checking test 164 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5097,12 +5097,12 @@ Checking test 164 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 539.677141 - 0: The maximum resident set size (KB) = 1481880 + 0: The total amount of wall time = 541.104364 + 0: The maximum resident set size (KB) = 1340492 Test 164 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Sun Apr 2 09:31:51 CDT 2023 -Elapsed time: 01h:14m:50s. Have a nice day! +Tue Apr 4 17:49:00 CDT 2023 +Elapsed time: 01h:51m:54s. Have a nice day! diff --git a/tests/RegressionTests_wcoss2.intel.log b/tests/RegressionTests_wcoss2.intel.log index f7094a81a1e..592f93299c1 100644 --- a/tests/RegressionTests_wcoss2.intel.log +++ b/tests/RegressionTests_wcoss2.intel.log @@ -1,34 +1,34 @@ -Mon Apr 3 17:53:26 UTC 2023 +Tue Apr 4 18:55:17 UTC 2023 Start Regression test -Compile 001 elapsed time 953 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 578 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 540 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 1226 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 005 elapsed time 497 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 1629 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 965 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 008 elapsed time 765 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 009 elapsed time 467 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 966 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 760 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 592 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 013 elapsed time 148 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 883 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 015 elapsed time 969 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 241 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 017 elapsed time 214 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 590 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 019 elapsed time 601 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 902 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 682 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 022 elapsed time 723 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 627 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 024 elapsed time 426 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 025 elapsed time 826 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 604 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 602 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 590 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 539 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 005 elapsed time 1513 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 715 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 1253 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 1769 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 009 elapsed time 1404 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 1030 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 645 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 284 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 217 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 014 elapsed time 1128 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 1005 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 467 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 017 elapsed time 289 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 702 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 019 elapsed time 487 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 889 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 677 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 022 elapsed time 674 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 684 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 024 elapsed time 294 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 025 elapsed time 623 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8_mixedmode -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/cpld_control_p8_mixedmode +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -93,14 +93,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 337.489535 -The maximum resident set size (KB) = 2950372 +The total amount of wall time = 333.353732 +The maximum resident set size (KB) = 2947836 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/cpld_control_p8 Checking test 002 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -165,14 +165,14 @@ Checking test 002 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 384.892323 -The maximum resident set size (KB) = 2981724 +The total amount of wall time = 383.680534 +The maximum resident set size (KB) = 2981280 Test 002 cpld_control_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/cpld_restart_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/cpld_restart_p8 Checking test 003 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -225,14 +225,14 @@ Checking test 003 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 232.791247 -The maximum resident set size (KB) = 2865828 +The total amount of wall time = 237.168266 +The maximum resident set size (KB) = 2865368 Test 003 cpld_restart_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/cpld_control_qr_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/cpld_control_qr_p8 Checking test 004 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -297,14 +297,14 @@ Checking test 004 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 387.812452 -The maximum resident set size (KB) = 2992396 +The total amount of wall time = 385.660359 +The maximum resident set size (KB) = 2992832 Test 004 cpld_control_qr_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/cpld_restart_qr_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/cpld_restart_qr_p8 Checking test 005 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -357,14 +357,14 @@ Checking test 005 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 233.552347 -The maximum resident set size (KB) = 2883352 +The total amount of wall time = 240.378312 +The maximum resident set size (KB) = 2879316 Test 005 cpld_restart_qr_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/cpld_2threads_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/cpld_2threads_p8 Checking test 006 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -417,14 +417,14 @@ Checking test 006 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 366.550339 -The maximum resident set size (KB) = 3284564 +The total amount of wall time = 364.925112 +The maximum resident set size (KB) = 3283308 Test 006 cpld_2threads_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/cpld_decomp_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/cpld_decomp_p8 Checking test 007 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -477,14 +477,14 @@ Checking test 007 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 382.186434 -The maximum resident set size (KB) = 2980100 +The total amount of wall time = 381.607684 +The maximum resident set size (KB) = 2978168 Test 007 cpld_decomp_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/cpld_mpi_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/cpld_mpi_p8 Checking test 008 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -537,14 +537,14 @@ Checking test 008 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 319.237893 -The maximum resident set size (KB) = 2917724 +The total amount of wall time = 317.109409 +The maximum resident set size (KB) = 2909552 Test 008 cpld_mpi_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_ciceC_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/cpld_control_ciceC_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/cpld_control_ciceC_p8 Checking test 009 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -609,14 +609,14 @@ Checking test 009 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 385.159819 -The maximum resident set size (KB) = 2986796 +The total amount of wall time = 383.279111 +The maximum resident set size (KB) = 2979052 Test 009 cpld_control_ciceC_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_bmark_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/cpld_bmark_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/cpld_bmark_p8 Checking test 010 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -664,14 +664,14 @@ Checking test 010 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 946.255433 -The maximum resident set size (KB) = 3927932 +The total amount of wall time = 971.185959 +The maximum resident set size (KB) = 3918420 Test 010 cpld_bmark_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_bmark_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/cpld_restart_bmark_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/cpld_restart_bmark_p8 Checking test 011 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -719,14 +719,14 @@ Checking test 011 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 652.011956 -The maximum resident set size (KB) = 3896808 +The total amount of wall time = 653.061924 +The maximum resident set size (KB) = 3889636 Test 011 cpld_restart_bmark_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/cpld_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/cpld_control_noaero_p8 Checking test 012 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -790,14 +790,14 @@ Checking test 012 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 282.253788 -The maximum resident set size (KB) = 1576148 +The total amount of wall time = 282.989842 +The maximum resident set size (KB) = 1582196 Test 012 cpld_control_noaero_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/cpld_control_nowave_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/cpld_control_nowave_noaero_p8 Checking test 013 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -859,14 +859,14 @@ Checking test 013 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 301.544828 -The maximum resident set size (KB) = 1632772 +The total amount of wall time = 300.162818 +The maximum resident set size (KB) = 1627024 Test 013 cpld_control_nowave_noaero_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/cpld_control_noaero_p8_agrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/cpld_control_noaero_p8_agrid Checking test 014 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -928,14 +928,14 @@ Checking test 014 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 307.188134 -The maximum resident set size (KB) = 1628496 +The total amount of wall time = 306.718395 +The maximum resident set size (KB) = 1632532 Test 014 cpld_control_noaero_p8_agrid PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/cpld_control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/cpld_control_c48 Checking test 015 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -985,14 +985,14 @@ Checking test 015 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 437.267283 -The maximum resident set size (KB) = 2638172 +The total amount of wall time = 440.861398 +The maximum resident set size (KB) = 2642448 Test 015 cpld_control_c48 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/cpld_warmstart_c48 Checking test 016 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1042,14 +1042,14 @@ Checking test 016 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 127.094144 -The maximum resident set size (KB) = 2655636 +The total amount of wall time = 131.843245 +The maximum resident set size (KB) = 2653200 Test 016 cpld_warmstart_c48 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/cpld_restart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/cpld_restart_c48 Checking test 017 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1099,14 +1099,14 @@ Checking test 017 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 70.004850 -The maximum resident set size (KB) = 2064856 +The total amount of wall time = 68.164885 +The maximum resident set size (KB) = 2068788 Test 017 cpld_restart_c48 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/cpld_control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/cpld_control_p8_faster Checking test 018 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1171,14 +1171,14 @@ Checking test 018 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 379.990340 -The maximum resident set size (KB) = 2980548 +The total amount of wall time = 382.218175 +The maximum resident set size (KB) = 2985436 Test 018 cpld_control_p8_faster PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_CubedSphereGrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/control_CubedSphereGrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/control_CubedSphereGrid Checking test 019 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1205,14 +1205,14 @@ Checking test 019 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 130.664148 -The maximum resident set size (KB) = 513492 +The total amount of wall time = 130.677929 +The maximum resident set size (KB) = 517408 Test 019 control_CubedSphereGrid PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_latlon -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/control_latlon +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/control_latlon Checking test 020 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1223,14 +1223,14 @@ Checking test 020 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 133.155363 -The maximum resident set size (KB) = 516108 +The total amount of wall time = 132.738227 +The maximum resident set size (KB) = 516748 Test 020 control_latlon PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/control_wrtGauss_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/control_wrtGauss_netcdf_parallel Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1241,14 +1241,14 @@ Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 138.996144 -The maximum resident set size (KB) = 517432 +The total amount of wall time = 136.585300 +The maximum resident set size (KB) = 515424 Test 021 control_wrtGauss_netcdf_parallel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/control_c48 Checking test 022 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1287,14 +1287,14 @@ Checking test 022 control_c48 results .... 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.518357 -The maximum resident set size (KB) = 675096 +The total amount of wall time = 327.872845 +The maximum resident set size (KB) = 675444 Test 022 control_c48 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c192 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/control_c192 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/control_c192 Checking test 023 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1305,14 +1305,14 @@ Checking test 023 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 530.723391 -The maximum resident set size (KB) = 615960 +The total amount of wall time = 531.105568 +The maximum resident set size (KB) = 616040 Test 023 control_c192 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c384 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/control_c384 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/control_c384 Checking test 024 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1323,14 +1323,14 @@ Checking test 024 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 574.295178 -The maximum resident set size (KB) = 926916 +The total amount of wall time = 567.237261 +The maximum resident set size (KB) = 930428 Test 024 control_c384 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c384gdas -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/control_c384gdas +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/control_c384gdas Checking test 025 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1373,14 +1373,14 @@ Checking test 025 control_c384gdas 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 = 498.610914 -The maximum resident set size (KB) = 1059256 +The total amount of wall time = 504.088803 +The maximum resident set size (KB) = 1061080 Test 025 control_c384gdas PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/control_stochy Checking test 026 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1391,28 +1391,28 @@ Checking test 026 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 90.094194 -The maximum resident set size (KB) = 523264 +The total amount of wall time = 90.485068 +The maximum resident set size (KB) = 526708 Test 026 control_stochy PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/control_stochy_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/control_stochy_restart Checking test 027 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 49.404689 -The maximum resident set size (KB) = 292460 +The total amount of wall time = 49.469487 +The maximum resident set size (KB) = 291224 Test 027 control_stochy_restart PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/control_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/control_lndp Checking test 028 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1423,14 +1423,14 @@ Checking test 028 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 84.271750 -The maximum resident set size (KB) = 517696 +The total amount of wall time = 84.452975 +The maximum resident set size (KB) = 519500 Test 028 control_lndp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_iovr4 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/control_iovr4 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/control_iovr4 Checking test 029 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1445,14 +1445,14 @@ Checking test 029 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 137.272839 -The maximum resident set size (KB) = 518008 +The total amount of wall time = 137.327198 +The maximum resident set size (KB) = 517468 Test 029 control_iovr4 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_iovr5 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/control_iovr5 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/control_iovr5 Checking test 030 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1467,14 +1467,14 @@ Checking test 030 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 137.495265 -The maximum resident set size (KB) = 517204 +The total amount of wall time = 136.527186 +The maximum resident set size (KB) = 520276 Test 030 control_iovr5 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/control_p8 Checking test 031 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1521,14 +1521,14 @@ Checking test 031 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 180.620164 -The maximum resident set size (KB) = 1492792 +The total amount of wall time = 183.246880 +The maximum resident set size (KB) = 1485428 Test 031 control_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/control_restart_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/control_restart_p8 Checking test 032 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1567,14 +1567,14 @@ Checking test 032 control_restart_p8 results .... 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.435536 -The maximum resident set size (KB) = 657404 +The total amount of wall time = 99.588722 +The maximum resident set size (KB) = 655428 Test 032 control_restart_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/control_qr_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/control_qr_p8 Checking test 033 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1621,14 +1621,14 @@ Checking test 033 control_qr_p8 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 = 179.116649 -The maximum resident set size (KB) = 1497036 +The total amount of wall time = 183.023966 +The maximum resident set size (KB) = 1497436 Test 033 control_qr_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/control_restart_qr_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/control_restart_qr_p8 Checking test 034 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1667,14 +1667,14 @@ Checking test 034 control_restart_qr_p8 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 = 101.864674 -The maximum resident set size (KB) = 662832 +The total amount of wall time = 100.761476 +The maximum resident set size (KB) = 667512 Test 034 control_restart_qr_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/control_decomp_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/control_decomp_p8 Checking test 035 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1717,14 +1717,14 @@ Checking test 035 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 182.625300 -The maximum resident set size (KB) = 1479216 +The total amount of wall time = 188.630372 +The maximum resident set size (KB) = 1483496 Test 035 control_decomp_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/control_2threads_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/control_2threads_p8 Checking test 036 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1767,14 +1767,14 @@ Checking test 036 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 156.300756 -The maximum resident set size (KB) = 1577284 +The total amount of wall time = 160.048484 +The maximum resident set size (KB) = 1571336 Test 036 control_2threads_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/control_p8_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/control_p8_lndp Checking test 037 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1793,14 +1793,14 @@ Checking test 037 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 322.592086 -The maximum resident set size (KB) = 1490552 +The total amount of wall time = 321.848372 +The maximum resident set size (KB) = 1485160 Test 037 control_p8_lndp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_rrtmgp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/control_p8_rrtmgp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/control_p8_rrtmgp Checking test 038 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1847,14 +1847,14 @@ Checking test 038 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 236.746598 -The maximum resident set size (KB) = 1546908 +The total amount of wall time = 238.431170 +The maximum resident set size (KB) = 1545424 Test 038 control_p8_rrtmgp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_mynn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/control_p8_mynn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/control_p8_mynn Checking test 039 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1901,14 +1901,14 @@ Checking test 039 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 181.527869 -The maximum resident set size (KB) = 1486568 +The total amount of wall time = 183.812620 +The maximum resident set size (KB) = 1486928 Test 039 control_p8_mynn PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/merra2_thompson -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/merra2_thompson +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/merra2_thompson Checking test 040 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1955,14 +1955,14 @@ Checking test 040 merra2_thompson results .... 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.400034 -The maximum resident set size (KB) = 1499088 +The total amount of wall time = 206.601958 +The maximum resident set size (KB) = 1493016 Test 040 merra2_thompson PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/regional_control Checking test 041 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1973,28 +1973,28 @@ Checking test 041 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 287.754384 -The maximum resident set size (KB) = 657372 +The total amount of wall time = 288.059998 +The maximum resident set size (KB) = 651904 Test 041 regional_control PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/regional_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/regional_restart Checking test 042 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 155.227921 -The maximum resident set size (KB) = 653956 +The total amount of wall time = 159.446715 +The maximum resident set size (KB) = 653164 Test 042 regional_restart PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/regional_control_qr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/regional_control_qr Checking test 043 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2005,28 +2005,28 @@ Checking test 043 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 289.669159 -The maximum resident set size (KB) = 652320 +The total amount of wall time = 288.155027 +The maximum resident set size (KB) = 656560 Test 043 regional_control_qr PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/regional_restart_qr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/regional_restart_qr Checking test 044 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 156.158091 -The maximum resident set size (KB) = 652964 +The total amount of wall time = 158.658193 +The maximum resident set size (KB) = 651996 Test 044 regional_restart_qr PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/regional_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/regional_decomp Checking test 045 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2037,14 +2037,14 @@ Checking test 045 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 304.934877 -The maximum resident set size (KB) = 655468 +The total amount of wall time = 311.630567 +The maximum resident set size (KB) = 654812 Test 045 regional_decomp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/regional_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/regional_2threads Checking test 046 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2055,14 +2055,14 @@ Checking test 046 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 177.020440 -The maximum resident set size (KB) = 694936 +The total amount of wall time = 183.851510 +The maximum resident set size (KB) = 691524 Test 046 regional_2threads PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_noquilt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/regional_noquilt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/regional_noquilt Checking test 047 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2070,28 +2070,28 @@ Checking test 047 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 311.726052 -The maximum resident set size (KB) = 646316 +The total amount of wall time = 326.259075 +The maximum resident set size (KB) = 644928 Test 047 regional_noquilt PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/regional_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/regional_netcdf_parallel Checking test 048 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK -The total amount of wall time = 285.317967 -The maximum resident set size (KB) = 649340 +The total amount of wall time = 285.697158 +The maximum resident set size (KB) = 653512 Test 048 regional_netcdf_parallel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/regional_2dwrtdecomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/regional_2dwrtdecomp Checking test 049 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2102,14 +2102,14 @@ Checking test 049 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 291.744435 -The maximum resident set size (KB) = 651944 +The total amount of wall time = 301.533478 +The maximum resident set size (KB) = 657576 Test 049 regional_2dwrtdecomp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/fv3_regional_wofs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/regional_wofs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/regional_wofs Checking test 050 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2120,14 +2120,14 @@ Checking test 050 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 362.598186 -The maximum resident set size (KB) = 340768 +The total amount of wall time = 363.075807 +The maximum resident set size (KB) = 342784 Test 050 regional_wofs PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/rap_control Checking test 051 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2174,14 +2174,14 @@ Checking test 051 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 420.116609 -The maximum resident set size (KB) = 894320 +The total amount of wall time = 419.512065 +The maximum resident set size (KB) = 893308 Test 051 rap_control PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/regional_spp_sppt_shum_skeb +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/regional_spp_sppt_shum_skeb Checking test 052 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2192,14 +2192,14 @@ Checking test 052 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 245.033569 -The maximum resident set size (KB) = 989992 +The total amount of wall time = 245.877082 +The maximum resident set size (KB) = 991084 Test 052 regional_spp_sppt_shum_skeb PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/rap_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/rap_decomp Checking test 053 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2246,14 +2246,14 @@ Checking test 053 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 436.064549 -The maximum resident set size (KB) = 892688 +The total amount of wall time = 431.647290 +The maximum resident set size (KB) = 891044 Test 053 rap_decomp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/rap_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/rap_2threads Checking test 054 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2300,14 +2300,14 @@ Checking test 054 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 388.199920 -The maximum resident set size (KB) = 964000 +The total amount of wall time = 387.090083 +The maximum resident set size (KB) = 962012 Test 054 rap_2threads PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/rap_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/rap_restart Checking test 055 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2346,14 +2346,14 @@ Checking test 055 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 213.511333 -The maximum resident set size (KB) = 645564 +The total amount of wall time = 213.356887 +The maximum resident set size (KB) = 645860 Test 055 rap_restart PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/rap_sfcdiff Checking test 056 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2400,14 +2400,14 @@ Checking test 056 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 422.975040 -The maximum resident set size (KB) = 891156 +The total amount of wall time = 420.506154 +The maximum resident set size (KB) = 892640 Test 056 rap_sfcdiff PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/rap_sfcdiff_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/rap_sfcdiff_decomp Checking test 057 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2454,14 +2454,14 @@ Checking test 057 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 436.589800 -The maximum resident set size (KB) = 893000 +The total amount of wall time = 445.871513 +The maximum resident set size (KB) = 892864 Test 057 rap_sfcdiff_decomp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/rap_sfcdiff_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/rap_sfcdiff_restart Checking test 058 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2500,14 +2500,14 @@ Checking test 058 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 309.199751 -The maximum resident set size (KB) = 640912 +The total amount of wall time = 310.333809 +The maximum resident set size (KB) = 644816 Test 058 rap_sfcdiff_restart PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/hrrr_control Checking test 059 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2554,14 +2554,14 @@ Checking test 059 hrrr_control results .... 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.256367 -The maximum resident set size (KB) = 893164 +The total amount of wall time = 406.012136 +The maximum resident set size (KB) = 893140 Test 059 hrrr_control PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/hrrr_control_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/hrrr_control_decomp Checking test 060 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2608,14 +2608,14 @@ Checking test 060 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 420.643622 -The maximum resident set size (KB) = 892000 +The total amount of wall time = 419.443830 +The maximum resident set size (KB) = 891808 Test 060 hrrr_control_decomp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/hrrr_control_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/hrrr_control_2threads Checking test 061 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2662,14 +2662,14 @@ Checking test 061 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 373.805934 -The maximum resident set size (KB) = 961188 +The total amount of wall time = 374.536337 +The maximum resident set size (KB) = 959012 Test 061 hrrr_control_2threads PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/hrrr_control_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/hrrr_control_restart Checking test 062 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2708,14 +2708,14 @@ Checking test 062 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 300.798080 -The maximum resident set size (KB) = 639632 +The total amount of wall time = 298.958718 +The maximum resident set size (KB) = 640244 Test 062 hrrr_control_restart PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1beta -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/rrfs_v1beta +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/rrfs_v1beta Checking test 063 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2762,14 +2762,14 @@ Checking test 063 rrfs_v1beta results .... 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.174639 -The maximum resident set size (KB) = 891016 +The total amount of wall time = 420.327840 +The maximum resident set size (KB) = 888608 Test 063 rrfs_v1beta PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1nssl -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/rrfs_v1nssl +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/rrfs_v1nssl Checking test 064 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2784,14 +2784,14 @@ Checking test 064 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 482.772214 -The maximum resident set size (KB) = 576524 +The total amount of wall time = 487.355895 +The maximum resident set size (KB) = 576624 Test 064 rrfs_v1nssl PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/rrfs_v1nssl_nohailnoccn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/rrfs_v1nssl_nohailnoccn Checking test 065 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2806,14 +2806,14 @@ Checking test 065 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 471.478038 -The maximum resident set size (KB) = 571096 +The total amount of wall time = 469.610682 +The maximum resident set size (KB) = 568848 Test 065 rrfs_v1nssl_nohailnoccn PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/rrfs_smoke_conus13km_hrrr_warm Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2822,14 +2822,14 @@ Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 147.672488 -The maximum resident set size (KB) = 800968 +The total amount of wall time = 147.490671 +The maximum resident set size (KB) = 801584 Test 066 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/rrfs_smoke_conus13km_hrrr_warm_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 067 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2838,14 +2838,14 @@ Checking test 067 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 103.489943 -The maximum resident set size (KB) = 805060 +The total amount of wall time = 103.480400 +The maximum resident set size (KB) = 803096 Test 067 rrfs_smoke_conus13km_hrrr_warm_2threads PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/rrfs_conus13km_hrrr_warm Checking test 068 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2854,14 +2854,14 @@ Checking test 068 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 133.944444 -The maximum resident set size (KB) = 777520 +The total amount of wall time = 133.913167 +The maximum resident set size (KB) = 778744 Test 068 rrfs_conus13km_hrrr_warm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/rrfs_smoke_conus13km_radar_tten_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/rrfs_smoke_conus13km_radar_tten_warm Checking test 069 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2870,26 +2870,26 @@ Checking test 069 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 149.811496 -The maximum resident set size (KB) = 802488 +The total amount of wall time = 151.405049 +The maximum resident set size (KB) = 801252 Test 069 rrfs_smoke_conus13km_radar_tten_warm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 070 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 68.271797 -The maximum resident set size (KB) = 765056 +The total amount of wall time = 67.930250 +The maximum resident set size (KB) = 759984 Test 070 rrfs_conus13km_hrrr_warm_restart_mismatch PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmg -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/control_csawmg +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/control_csawmg Checking test 071 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2900,14 +2900,14 @@ Checking test 071 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 349.624549 -The maximum resident set size (KB) = 592888 +The total amount of wall time = 346.750302 +The maximum resident set size (KB) = 587044 Test 071 control_csawmg PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmgt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/control_csawmgt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/control_csawmgt Checking test 072 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2918,14 +2918,14 @@ Checking test 072 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 346.880771 -The maximum resident set size (KB) = 587408 +The total amount of wall time = 343.630575 +The maximum resident set size (KB) = 585656 Test 072 control_csawmgt PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_ras -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/control_ras +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/control_ras Checking test 073 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2936,26 +2936,26 @@ Checking test 073 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 186.375383 -The maximum resident set size (KB) = 557680 +The total amount of wall time = 183.408393 +The maximum resident set size (KB) = 556564 Test 073 control_ras PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wam -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/control_wam +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/control_wam Checking test 074 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 119.951939 -The maximum resident set size (KB) = 276724 +The total amount of wall time = 117.767828 +The maximum resident set size (KB) = 354232 Test 074 control_wam PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/control_p8_faster Checking test 075 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3002,14 +3002,14 @@ Checking test 075 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 175.115470 -The maximum resident set size (KB) = 1490300 +The total amount of wall time = 176.327798 +The maximum resident set size (KB) = 1494292 Test 075 control_p8_faster PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/regional_control_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/regional_control_faster Checking test 076 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3020,56 +3020,56 @@ Checking test 076 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 280.361293 -The maximum resident set size (KB) = 653076 +The total amount of wall time = 284.603265 +The maximum resident set size (KB) = 658828 Test 076 regional_control_faster PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 077 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 902.613044 -The maximum resident set size (KB) = 838928 +The total amount of wall time = 919.945169 +The maximum resident set size (KB) = 830124 Test 077 rrfs_smoke_conus13km_hrrr_warm_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 078 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 523.112094 -The maximum resident set size (KB) = 840460 +The total amount of wall time = 525.455984 +The maximum resident set size (KB) = 832144 Test 078 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/rrfs_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/rrfs_conus13km_hrrr_warm_debug Checking test 079 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 809.636380 -The maximum resident set size (KB) = 813004 +The total amount of wall time = 807.373344 +The maximum resident set size (KB) = 804252 Test 079 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_CubedSphereGrid_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/control_CubedSphereGrid_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/control_CubedSphereGrid_debug Checking test 080 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3096,334 +3096,334 @@ Checking test 080 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 168.784719 -The maximum resident set size (KB) = 678924 +The total amount of wall time = 159.753943 +The maximum resident set size (KB) = 673260 Test 080 control_CubedSphereGrid_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/control_wrtGauss_netcdf_parallel_debug Checking test 081 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 159.553202 -The maximum resident set size (KB) = 680056 +The total amount of wall time = 159.998413 +The maximum resident set size (KB) = 674360 Test 081 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_stochy_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/control_stochy_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/control_stochy_debug Checking test 082 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 179.610460 -The maximum resident set size (KB) = 685428 +The total amount of wall time = 179.275465 +The maximum resident set size (KB) = 681744 Test 082 control_stochy_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/control_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/control_lndp_debug Checking test 083 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 161.666562 -The maximum resident set size (KB) = 687648 +The total amount of wall time = 161.380807 +The maximum resident set size (KB) = 688468 Test 083 control_lndp_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmg_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/control_csawmg_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/control_csawmg_debug Checking test 084 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 256.302992 -The maximum resident set size (KB) = 727848 +The total amount of wall time = 255.567715 +The maximum resident set size (KB) = 722260 Test 084 control_csawmg_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmgt_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/control_csawmgt_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/control_csawmgt_debug Checking test 085 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 251.969692 -The maximum resident set size (KB) = 721688 +The total amount of wall time = 251.388928 +The maximum resident set size (KB) = 721784 Test 085 control_csawmgt_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_ras_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/control_ras_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/control_ras_debug Checking test 086 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 162.493887 -The maximum resident set size (KB) = 697604 +The total amount of wall time = 164.068227 +The maximum resident set size (KB) = 690432 Test 086 control_ras_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/control_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/control_diag_debug Checking test 087 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 165.222955 -The maximum resident set size (KB) = 740544 +The total amount of wall time = 164.895503 +The maximum resident set size (KB) = 734632 Test 087 control_diag_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_debug_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/control_debug_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/control_debug_p8 Checking test 088 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 187.678802 -The maximum resident set size (KB) = 1515860 +The total amount of wall time = 186.210026 +The maximum resident set size (KB) = 1505972 Test 088 control_debug_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/regional_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/regional_debug Checking test 089 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1040.194343 -The maximum resident set size (KB) = 678988 +The total amount of wall time = 1039.310289 +The maximum resident set size (KB) = 675692 Test 089 regional_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/rap_control_debug Checking test 090 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.654152 -The maximum resident set size (KB) = 1062624 +The total amount of wall time = 296.536180 +The maximum resident set size (KB) = 1055532 Test 090 rap_control_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/hrrr_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/hrrr_control_debug Checking test 091 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 292.318389 -The maximum resident set size (KB) = 1056392 +The total amount of wall time = 291.298851 +The maximum resident set size (KB) = 1048084 Test 091 hrrr_control_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/rap_unified_drag_suite_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/rap_unified_drag_suite_debug Checking test 092 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.738191 -The maximum resident set size (KB) = 1060760 +The total amount of wall time = 297.609551 +The maximum resident set size (KB) = 1056028 Test 092 rap_unified_drag_suite_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/rap_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/rap_diag_debug Checking test 093 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 311.078614 -The maximum resident set size (KB) = 1140616 +The total amount of wall time = 307.773738 +The maximum resident set size (KB) = 1139000 Test 093 rap_diag_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/rap_cires_ugwp_debug Checking test 094 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 304.369670 -The maximum resident set size (KB) = 1057456 +The total amount of wall time = 302.779215 +The maximum resident set size (KB) = 1053140 Test 094 rap_cires_ugwp_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/rap_unified_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/rap_unified_ugwp_debug Checking test 095 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 306.242187 -The maximum resident set size (KB) = 1060280 +The total amount of wall time = 304.318843 +The maximum resident set size (KB) = 1055120 Test 095 rap_unified_ugwp_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/rap_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/rap_lndp_debug Checking test 096 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 301.076582 -The maximum resident set size (KB) = 1062396 +The total amount of wall time = 298.880772 +The maximum resident set size (KB) = 1052800 Test 096 rap_lndp_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_flake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/rap_flake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/rap_flake_debug Checking test 097 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.070780 -The maximum resident set size (KB) = 1062512 +The total amount of wall time = 296.529590 +The maximum resident set size (KB) = 1053588 Test 097 rap_flake_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_progcld_thompson_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/rap_progcld_thompson_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/rap_progcld_thompson_debug Checking test 098 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.508068 -The maximum resident set size (KB) = 1057804 +The total amount of wall time = 297.022986 +The maximum resident set size (KB) = 1051492 Test 098 rap_progcld_thompson_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_noah_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/rap_noah_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/rap_noah_debug Checking test 099 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 292.929681 -The maximum resident set size (KB) = 1055588 +The total amount of wall time = 290.461002 +The maximum resident set size (KB) = 1054368 Test 099 rap_noah_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/rap_sfcdiff_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/rap_sfcdiff_debug Checking test 100 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.766993 -The maximum resident set size (KB) = 1058564 +The total amount of wall time = 296.870818 +The maximum resident set size (KB) = 1054136 Test 100 rap_sfcdiff_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/rap_noah_sfcdiff_cires_ugwp_debug Checking test 101 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 486.670644 -The maximum resident set size (KB) = 1056772 +The total amount of wall time = 487.799361 +The maximum resident set size (KB) = 1055536 Test 101 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1beta_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/rrfs_v1beta_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/rrfs_v1beta_debug Checking test 102 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 294.472843 -The maximum resident set size (KB) = 1052832 +The total amount of wall time = 290.357311 +The maximum resident set size (KB) = 1048416 Test 102 rrfs_v1beta_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wam_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/control_wam_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/control_wam_debug Checking test 103 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 298.949810 -The maximum resident set size (KB) = 309428 +The total amount of wall time = 298.839148 +The maximum resident set size (KB) = 487108 Test 103 control_wam_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3434,14 +3434,14 @@ Checking test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 234.396444 -The maximum resident set size (KB) = 892876 +The total amount of wall time = 232.756036 +The maximum resident set size (KB) = 892812 Test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/rap_control_dyn32_phy32 Checking test 105 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3488,14 +3488,14 @@ Checking test 105 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 352.006667 -The maximum resident set size (KB) = 778376 +The total amount of wall time = 351.888491 +The maximum resident set size (KB) = 782264 Test 105 rap_control_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/hrrr_control_dyn32_phy32 Checking test 106 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3542,14 +3542,14 @@ Checking test 106 hrrr_control_dyn32_phy32 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 = 188.326894 -The maximum resident set size (KB) = 777024 +The total amount of wall time = 188.046014 +The maximum resident set size (KB) = 777980 Test 106 hrrr_control_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/rap_2threads_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/rap_2threads_dyn32_phy32 Checking test 107 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3596,14 +3596,14 @@ Checking test 107 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 332.982358 -The maximum resident set size (KB) = 838084 +The total amount of wall time = 327.221302 +The maximum resident set size (KB) = 835668 Test 107 rap_2threads_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/hrrr_control_2threads_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/hrrr_control_2threads_dyn32_phy32 Checking test 108 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3650,14 +3650,14 @@ Checking test 108 hrrr_control_2threads_dyn32_phy32 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 = 173.501107 -The maximum resident set size (KB) = 832768 +The total amount of wall time = 172.691398 +The maximum resident set size (KB) = 830852 Test 108 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/hrrr_control_decomp_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/hrrr_control_decomp_dyn32_phy32 Checking test 109 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3704,14 +3704,14 @@ Checking test 109 hrrr_control_decomp_dyn32_phy32 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 = 195.850502 -The maximum resident set size (KB) = 776880 +The total amount of wall time = 194.872778 +The maximum resident set size (KB) = 779176 Test 109 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/rap_restart_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/rap_restart_dyn32_phy32 Checking test 110 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3750,14 +3750,14 @@ Checking test 110 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 257.573903 -The maximum resident set size (KB) = 617984 +The total amount of wall time = 257.764094 +The maximum resident set size (KB) = 619112 Test 110 rap_restart_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/hrrr_control_restart_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/hrrr_control_restart_dyn32_phy32 Checking test 111 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3796,14 +3796,14 @@ Checking test 111 hrrr_control_restart_dyn32_phy32 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 = 100.045619 -The maximum resident set size (KB) = 611816 +The total amount of wall time = 96.913280 +The maximum resident set size (KB) = 612500 Test 111 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/rap_control_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/rap_control_dyn64_phy32 Checking test 112 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3850,81 +3850,81 @@ Checking test 112 rap_control_dyn64_phy32 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 = 239.133574 -The maximum resident set size (KB) = 797264 +The total amount of wall time = 235.500920 +The maximum resident set size (KB) = 794836 Test 112 rap_control_dyn64_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/rap_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/rap_control_debug_dyn32_phy32 Checking test 113 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 294.782864 -The maximum resident set size (KB) = 946480 +The total amount of wall time = 288.767849 +The maximum resident set size (KB) = 941732 Test 113 rap_control_debug_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/hrrr_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/hrrr_control_debug_dyn32_phy32 Checking test 114 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 288.802565 -The maximum resident set size (KB) = 943012 +The total amount of wall time = 287.892186 +The maximum resident set size (KB) = 938492 Test 114 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/rap_control_dyn64_phy32_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/rap_control_dyn64_phy32_debug Checking test 115 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 294.637423 -The maximum resident set size (KB) = 963628 +The total amount of wall time = 296.409123 +The maximum resident set size (KB) = 961048 Test 115 rap_control_dyn64_phy32_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/hafs_regional_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/hafs_regional_atm Checking test 116 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 272.543149 -The maximum resident set size (KB) = 821908 +The total amount of wall time = 271.656614 +The maximum resident set size (KB) = 821880 Test 116 hafs_regional_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/hafs_regional_atm_thompson_gfdlsf Checking test 117 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 317.907634 -The maximum resident set size (KB) = 1176660 +The total amount of wall time = 317.519026 +The maximum resident set size (KB) = 1177968 Test 117 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/hafs_regional_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/hafs_regional_atm_ocn Checking test 118 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3933,14 +3933,14 @@ Checking test 118 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 394.933607 -The maximum resident set size (KB) = 858820 +The total amount of wall time = 393.394290 +The maximum resident set size (KB) = 859156 Test 118 hafs_regional_atm_ocn PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/hafs_regional_atm_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/hafs_regional_atm_wav Checking test 119 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3949,14 +3949,14 @@ Checking test 119 hafs_regional_atm_wav 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 = 717.726338 -The maximum resident set size (KB) = 890512 +The total amount of wall time = 711.885205 +The maximum resident set size (KB) = 888132 Test 119 hafs_regional_atm_wav PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/hafs_regional_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/hafs_regional_atm_ocn_wav Checking test 120 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3967,28 +3967,28 @@ Checking test 120 hafs_regional_atm_ocn_wav 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 = 901.915818 -The maximum resident set size (KB) = 913544 +The total amount of wall time = 908.281276 +The maximum resident set size (KB) = 914960 Test 120 hafs_regional_atm_ocn_wav PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/hafs_regional_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/hafs_regional_1nest_atm Checking test 121 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 336.764464 -The maximum resident set size (KB) = 392476 +The total amount of wall time = 334.778105 +The maximum resident set size (KB) = 394352 Test 121 hafs_regional_1nest_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/hafs_regional_telescopic_2nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/hafs_regional_telescopic_2nests_atm Checking test 122 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3997,28 +3997,28 @@ Checking test 122 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 412.112058 -The maximum resident set size (KB) = 402400 +The total amount of wall time = 405.011124 +The maximum resident set size (KB) = 401452 Test 122 hafs_regional_telescopic_2nests_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_global_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/hafs_global_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/hafs_global_1nest_atm Checking test 123 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 173.477461 -The maximum resident set size (KB) = 265876 +The total amount of wall time = 172.789896 +The maximum resident set size (KB) = 265148 Test 123 hafs_global_1nest_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_global_multiple_4nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/hafs_global_multiple_4nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/hafs_global_multiple_4nests_atm Checking test 124 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4036,14 +4036,14 @@ Checking test 124 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -The total amount of wall time = 490.415833 -The maximum resident set size (KB) = 345080 +The total amount of wall time = 490.794256 +The maximum resident set size (KB) = 344136 Test 124 hafs_global_multiple_4nests_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/hafs_regional_specified_moving_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/hafs_regional_specified_moving_1nest_atm Checking test 125 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4052,28 +4052,28 @@ Checking test 125 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 230.070819 -The maximum resident set size (KB) = 415308 +The total amount of wall time = 219.910249 +The maximum resident set size (KB) = 406184 Test 125 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/hafs_regional_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/hafs_regional_storm_following_1nest_atm Checking test 126 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 210.949553 -The maximum resident set size (KB) = 407124 +The total amount of wall time = 206.921008 +The maximum resident set size (KB) = 408708 Test 126 hafs_regional_storm_following_1nest_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/hafs_regional_storm_following_1nest_atm_ocn Checking test 127 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4082,42 +4082,42 @@ Checking test 127 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 254.215894 -The maximum resident set size (KB) = 468240 +The total amount of wall time = 253.652873 +The maximum resident set size (KB) = 467364 Test 127 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/hafs_global_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/hafs_global_storm_following_1nest_atm Checking test 128 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 85.798504 -The maximum resident set size (KB) = 288304 +The total amount of wall time = 86.098605 +The maximum resident set size (KB) = 281208 Test 128 hafs_global_storm_following_1nest_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 129 hafs_regional_storm_following_1nest_atm_ocn_debug results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK -The total amount of wall time = 824.179779 -The maximum resident set size (KB) = 496132 +The total amount of wall time = 807.129268 +The maximum resident set size (KB) = 498036 Test 129 hafs_regional_storm_following_1nest_atm_ocn_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 130 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4128,14 +4128,14 @@ Checking test 130 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -The total amount of wall time = 507.430542 -The maximum resident set size (KB) = 523188 +The total amount of wall time = 505.381326 +The maximum resident set size (KB) = 521472 Test 130 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_atmlnd_sbs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/control_p8_atmlnd_sbs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/control_p8_atmlnd_sbs Checking test 131 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4220,14 +4220,14 @@ Checking test 131 control_p8_atmlnd_sbs 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 = 236.231141 -The maximum resident set size (KB) = 1540232 +The total amount of wall time = 238.497700 +The maximum resident set size (KB) = 1541964 Test 131 control_p8_atmlnd_sbs PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/atmaero_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/atmaero_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/atmaero_control_p8 Checking test 132 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4271,14 +4271,14 @@ Checking test 132 atmaero_control_p8 results .... 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.440992 -The maximum resident set size (KB) = 2815552 +The total amount of wall time = 249.812914 +The maximum resident set size (KB) = 2815360 Test 132 atmaero_control_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/atmaero_control_p8_rad -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/atmaero_control_p8_rad +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/atmaero_control_p8_rad Checking test 133 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4322,14 +4322,14 @@ Checking test 133 atmaero_control_p8_rad results .... 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.091655 -The maximum resident set size (KB) = 2876428 +The total amount of wall time = 283.886965 +The maximum resident set size (KB) = 2876084 Test 133 atmaero_control_p8_rad PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/atmaero_control_p8_rad_micro +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/atmaero_control_p8_rad_micro Checking test 134 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4373,14 +4373,14 @@ Checking test 134 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 290.444989 -The maximum resident set size (KB) = 2888124 +The total amount of wall time = 298.744649 +The maximum resident set size (KB) = 2889628 Test 134 atmaero_control_p8_rad_micro PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_atmaq -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/regional_atmaq +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/regional_atmaq Checking test 135 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4396,14 +4396,14 @@ Checking test 135 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 684.924491 -The maximum resident set size (KB) = 1262932 +The total amount of wall time = 681.279393 +The maximum resident set size (KB) = 1268920 Test 135 regional_atmaq PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_atmaq_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/regional_atmaq_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/regional_atmaq_debug Checking test 136 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4417,14 +4417,14 @@ Checking test 136 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1333.629615 -The maximum resident set size (KB) = 1296148 +The total amount of wall time = 1288.006908 +The maximum resident set size (KB) = 1293640 Test 136 regional_atmaq_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_atmaq_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_174598/regional_atmaq_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/regional_atmaq_faster Checking test 137 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4440,12 +4440,12 @@ Checking test 137 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 638.618207 -The maximum resident set size (KB) = 1262004 +The total amount of wall time = 636.916746 +The maximum resident set size (KB) = 1255876 Test 137 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Mon Apr 3 19:29:03 UTC 2023 -Elapsed time: 01h:35m:38s. Have a nice day! +Tue Apr 4 20:05:14 UTC 2023 +Elapsed time: 01h:09m:58s. Have a nice day! diff --git a/tests/compile.sh b/tests/compile.sh index b858a7e0d9c..56249c35005 100755 --- a/tests/compile.sh +++ b/tests/compile.sh @@ -63,11 +63,6 @@ else # Load fv3 module module use $PATHTR/modulefiles modulefile="ufs_${MACHINE_ID}" - if [[ "${MAKE_OPT}" == *"-DDEBUG=ON"* ]]; then - if [[ -f $PATHTR/modulefiles/ufs_${MACHINE_ID}_debug ]] || [[ -f $PATHTR/modulefiles/ufs_${MACHINE_ID}_debug.lua ]]; then - modulefile="ufs_${MACHINE_ID}_debug" - fi - fi module load $modulefile module list fi @@ -131,18 +126,10 @@ export CMAKE_FLAGS bash -x ${PATHTR}/build.sh mv ${BUILD_DIR}/ufs_model ${PATHTR}/tests/${BUILD_NAME}.exe -if [[ "${MAKE_OPT}" == "-DDEBUG=ON" ]]; then - if [[ $MACHINE_ID == linux.* ]]; then - cp ${PATHTR}/modulefiles/ufs_${MACHINE_ID}_debug ${PATHTR}/tests/modules.${BUILD_NAME} - else - cp ${PATHTR}/modulefiles/ufs_${MACHINE_ID}_debug.lua ${PATHTR}/tests/modules.${BUILD_NAME}.lua - fi +if [[ $MACHINE_ID == linux.* ]]; then + cp ${PATHTR}/modulefiles/ufs_${MACHINE_ID} ${PATHTR}/tests/modules.${BUILD_NAME} else - if [[ $MACHINE_ID == linux.* ]]; then - cp ${PATHTR}/modulefiles/ufs_${MACHINE_ID} ${PATHTR}/tests/modules.${BUILD_NAME} - else - cp ${PATHTR}/modulefiles/ufs_${MACHINE_ID}.lua ${PATHTR}/tests/modules.${BUILD_NAME}.lua - fi + cp ${PATHTR}/modulefiles/ufs_${MACHINE_ID}.lua ${PATHTR}/tests/modules.${BUILD_NAME}.lua fi if [ $clean_after = YES ] ; then diff --git a/tests/fv3_conf/compile_qsub.IN_wcoss2 b/tests/fv3_conf/compile_qsub.IN_wcoss2 index ffa08d45542..b2fc1510418 100644 --- a/tests/fv3_conf/compile_qsub.IN_wcoss2 +++ b/tests/fv3_conf/compile_qsub.IN_wcoss2 @@ -6,7 +6,7 @@ #PBS -A @[ACCNR] #PBS -q @[QUEUE] #PBS -l select=1:ncpus=8:mpiprocs=1:mem=32G -#PBS -l walltime=00:30:00 +#PBS -l walltime=00:45:00 set -eux From b6146cd3f797d74d60e040dbdbd51d5e4bccbf92 Mon Sep 17 00:00:00 2001 From: lisa-bengtsson <54411948+lisa-bengtsson@users.noreply.github.com> Date: Thu, 6 Apr 2023 13:24:26 -0600 Subject: [PATCH 17/30] Bugfix for convection (prog closure) and gravity wave drag (for stochastic perturbations) needed for GFS/GEFS prototypes (#1677) * Bugfix for convection (prog closure) and gravity wave drag (for stochastic perturbations) needed for GFS/GEFS prototypes Co-authored-by: Michael Toy --- FV3 | 2 +- tests/RegressionTests_acorn.intel.log | 1334 ++--- tests/RegressionTests_cheyenne.gnu.log | 434 +- tests/RegressionTests_cheyenne.intel.log | 1358 ++--- tests/RegressionTests_gaea.intel.log | 1388 +++-- tests/RegressionTests_hera.gnu.log | 580 +- tests/RegressionTests_hera.intel.log | 1598 +++--- tests/RegressionTests_jet.intel.log | 6290 +++++++++++----------- tests/RegressionTests_orion.intel.log | 1390 ++--- tests/RegressionTests_wcoss2.intel.log | 1154 ++-- tests/rt.sh | 2 +- 11 files changed, 7707 insertions(+), 7823 deletions(-) diff --git a/FV3 b/FV3 index 0a7cbe91291..decb0b9baa8 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 0a7cbe91291a43e4c835120ad4cc6ad596fd6be9 +Subproject commit decb0b9baa89e30885d00be208aa476667fe9922 diff --git a/tests/RegressionTests_acorn.intel.log b/tests/RegressionTests_acorn.intel.log index ce5ca4e452d..337a906abb4 100644 --- a/tests/RegressionTests_acorn.intel.log +++ b/tests/RegressionTests_acorn.intel.log @@ -1,40 +1,40 @@ -Tue Apr 4 16:57:18 UTC 2023 +Thu Apr 6 00:41:57 UTC 2023 Start Regression test -Compile 001 elapsed time 544 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 1063 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 996 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 1443 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 005 elapsed time 483 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 1469 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 926 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 008 elapsed time 472 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 906 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 010 elapsed time 451 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 1001 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 1224 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 655 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 1062 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 517 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 490 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 642 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 215 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 631 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 020 elapsed time 344 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 021 elapsed time 620 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 022 elapsed time 1035 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 023 elapsed time 227 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 024 elapsed time 225 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 265 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 026 elapsed time 703 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 027 elapsed time 487 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 737 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 446 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 471 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 031 elapsed time 783 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8_mixedmode -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/cpld_control_p8_mixedmode +Compile 001 elapsed time 541 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 995 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 507 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 636 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 005 elapsed time 1113 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 629 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 1369 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 955 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 454 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 010 elapsed time 1422 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 458 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 1937 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 644 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 014 elapsed time 422 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 463 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 587 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 302 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 694 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 510 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 020 elapsed time 234 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 021 elapsed time 946 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 022 elapsed time 868 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 023 elapsed time 226 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 024 elapsed time 830 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 54 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 026 elapsed time 849 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 027 elapsed time 678 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 512 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 1039 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 428 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 031 elapsed time 635 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8_mixedmode +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -99,14 +99,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 333.894269 -The maximum resident set size (KB) = 2948140 +The total amount of wall time = 335.452607 +The maximum resident set size (KB) = 2949752 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_gfsv17 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/cpld_control_gfsv17 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_gfsv17 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -170,14 +170,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 256.446109 -The maximum resident set size (KB) = 1586584 +The total amount of wall time = 257.860119 +The maximum resident set size (KB) = 1578796 Test 002 cpld_control_gfsv17 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/cpld_control_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -242,14 +242,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 388.635246 -The maximum resident set size (KB) = 2977028 +The total amount of wall time = 385.655582 +The maximum resident set size (KB) = 2978656 Test 003 cpld_control_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/cpld_restart_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -302,14 +302,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 230.723597 -The maximum resident set size (KB) = 2864252 +The total amount of wall time = 229.881767 +The maximum resident set size (KB) = 2868880 Test 004 cpld_restart_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/cpld_control_qr_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -374,14 +374,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 388.225650 -The maximum resident set size (KB) = 2992740 +The total amount of wall time = 386.970199 +The maximum resident set size (KB) = 2992180 Test 005 cpld_control_qr_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/cpld_restart_qr_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -434,14 +434,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 233.226386 -The maximum resident set size (KB) = 2878468 +The total amount of wall time = 234.280971 +The maximum resident set size (KB) = 2883424 Test 006 cpld_restart_qr_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/cpld_2threads_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -494,14 +494,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 368.901820 -The maximum resident set size (KB) = 3280408 +The total amount of wall time = 367.906468 +The maximum resident set size (KB) = 3284924 Test 007 cpld_2threads_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/cpld_decomp_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -554,14 +554,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 380.847937 -The maximum resident set size (KB) = 2977384 +The total amount of wall time = 378.560601 +The maximum resident set size (KB) = 2980176 Test 008 cpld_decomp_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/cpld_mpi_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -614,14 +614,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 320.879315 -The maximum resident set size (KB) = 2910584 +The total amount of wall time = 317.122989 +The maximum resident set size (KB) = 2914288 Test 009 cpld_mpi_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_ciceC_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/cpld_control_ciceC_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_ciceC_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -686,14 +686,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 383.119990 -The maximum resident set size (KB) = 2981316 +The total amount of wall time = 384.373833 +The maximum resident set size (KB) = 2978080 Test 010 cpld_control_ciceC_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/cpld_control_noaero_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/cpld_control_noaero_p8 Checking test 011 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -757,14 +757,14 @@ Checking test 011 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 283.572160 -The maximum resident set size (KB) = 1578632 +The total amount of wall time = 283.796362 +The maximum resident set size (KB) = 1576300 Test 011 cpld_control_noaero_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/cpld_control_nowave_noaero_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_c96_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/cpld_control_nowave_noaero_p8 Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -826,14 +826,14 @@ Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 298.848221 -The maximum resident set size (KB) = 1624940 +The total amount of wall time = 300.876274 +The maximum resident set size (KB) = 1623096 Test 012 cpld_control_nowave_noaero_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/cpld_control_noaero_p8_agrid +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_noaero_p8_agrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/cpld_control_noaero_p8_agrid Checking test 013 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -895,14 +895,14 @@ Checking test 013 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 307.724463 -The maximum resident set size (KB) = 1630448 +The total amount of wall time = 307.612743 +The maximum resident set size (KB) = 1619896 Test 013 cpld_control_noaero_p8_agrid PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/cpld_control_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/cpld_control_c48 Checking test 014 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -952,14 +952,14 @@ Checking test 014 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 434.028333 -The maximum resident set size (KB) = 2635280 +The total amount of wall time = 432.219191 +The maximum resident set size (KB) = 2640780 Test 014 cpld_control_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/cpld_warmstart_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/cpld_warmstart_c48 Checking test 015 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1009,14 +1009,14 @@ Checking test 015 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 124.601709 -The maximum resident set size (KB) = 2650444 +The total amount of wall time = 120.038728 +The maximum resident set size (KB) = 2650412 Test 015 cpld_warmstart_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/cpld_restart_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/cpld_restart_c48 Checking test 016 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1066,14 +1066,14 @@ Checking test 016 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 67.324046 -The maximum resident set size (KB) = 2065912 +The total amount of wall time = 67.104734 +The maximum resident set size (KB) = 2066156 Test 016 cpld_restart_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/cpld_control_p8_faster +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/cpld_control_p8_faster Checking test 017 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1138,14 +1138,14 @@ Checking test 017 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 378.970860 -The maximum resident set size (KB) = 2980864 +The total amount of wall time = 379.680625 +The maximum resident set size (KB) = 2981716 Test 017 cpld_control_p8_faster PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_CubedSphereGrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_CubedSphereGrid +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_CubedSphereGrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_CubedSphereGrid Checking test 018 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1172,14 +1172,14 @@ Checking test 018 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 132.854017 -The maximum resident set size (KB) = 513124 +The total amount of wall time = 128.962632 +The maximum resident set size (KB) = 508480 Test 018 control_CubedSphereGrid PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_latlon -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_latlon +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_latlon +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_latlon Checking test 019 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1190,14 +1190,14 @@ Checking test 019 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 132.914588 -The maximum resident set size (KB) = 514660 +The total amount of wall time = 132.275624 +The maximum resident set size (KB) = 515492 Test 019 control_latlon PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_wrtGauss_netcdf_parallel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_wrtGauss_netcdf_parallel Checking test 020 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1208,14 +1208,14 @@ Checking test 020 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 136.210779 -The maximum resident set size (KB) = 512972 +The total amount of wall time = 134.284691 +The maximum resident set size (KB) = 513016 Test 020 control_wrtGauss_netcdf_parallel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_c48 Checking test 021 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1254,14 +1254,14 @@ Checking test 021 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 330.046888 -The maximum resident set size (KB) = 672696 +The total amount of wall time = 328.312079 +The maximum resident set size (KB) = 670152 Test 021 control_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c192 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_c192 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c192 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_c192 Checking test 022 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1272,14 +1272,14 @@ Checking test 022 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 533.389812 -The maximum resident set size (KB) = 614384 +The total amount of wall time = 528.583998 +The maximum resident set size (KB) = 613064 Test 022 control_c192 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c384 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_c384 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c384 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_c384 Checking test 023 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1290,14 +1290,14 @@ Checking test 023 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 569.161317 -The maximum resident set size (KB) = 924492 +The total amount of wall time = 564.483894 +The maximum resident set size (KB) = 927132 Test 023 control_c384 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c384gdas -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_c384gdas +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c384gdas +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_c384gdas Checking test 024 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1340,14 +1340,14 @@ Checking test 024 control_c384gdas 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 = 499.272373 -The maximum resident set size (KB) = 1056680 +The total amount of wall time = 498.053276 +The maximum resident set size (KB) = 1057412 Test 024 control_c384gdas PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_stochy +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_stochy Checking test 025 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1358,28 +1358,28 @@ Checking test 025 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 89.473727 -The maximum resident set size (KB) = 516768 +The total amount of wall time = 89.155902 +The maximum resident set size (KB) = 520128 Test 025 control_stochy PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_stochy_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_stochy_restart Checking test 026 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 49.371650 -The maximum resident set size (KB) = 285436 +The total amount of wall time = 48.798554 +The maximum resident set size (KB) = 287468 Test 026 control_stochy_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_lndp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_lndp Checking test 027 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1390,14 +1390,14 @@ Checking test 027 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 84.769566 -The maximum resident set size (KB) = 515024 +The total amount of wall time = 83.139475 +The maximum resident set size (KB) = 516896 Test 027 control_lndp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_iovr4 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_iovr4 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_iovr4 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_iovr4 Checking test 028 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1412,14 +1412,14 @@ Checking test 028 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.996800 -The maximum resident set size (KB) = 513012 +The total amount of wall time = 135.653904 +The maximum resident set size (KB) = 515544 Test 028 control_iovr4 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_iovr5 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_iovr5 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_iovr5 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_iovr5 Checking test 029 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1434,14 +1434,14 @@ Checking test 029 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 138.685883 -The maximum resident set size (KB) = 516960 +The total amount of wall time = 135.296271 +The maximum resident set size (KB) = 512604 Test 029 control_iovr5 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_p8 Checking test 030 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1488,14 +1488,14 @@ Checking test 030 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 178.728244 -The maximum resident set size (KB) = 1482820 +The total amount of wall time = 180.870996 +The maximum resident set size (KB) = 1488040 Test 030 control_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_restart_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_restart_p8 Checking test 031 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1534,14 +1534,14 @@ Checking test 031 control_restart_p8 results .... 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.065541 -The maximum resident set size (KB) = 651544 +The total amount of wall time = 100.738403 +The maximum resident set size (KB) = 652348 Test 031 control_restart_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_qr_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_qr_p8 Checking test 032 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1588,14 +1588,14 @@ Checking test 032 control_qr_p8 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 = 179.084801 -The maximum resident set size (KB) = 1499384 +The total amount of wall time = 176.476591 +The maximum resident set size (KB) = 1489460 Test 032 control_qr_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_restart_qr_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_restart_qr_p8 Checking test 033 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1634,14 +1634,14 @@ Checking test 033 control_restart_qr_p8 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 = 99.882007 -The maximum resident set size (KB) = 661344 +The total amount of wall time = 101.521318 +The maximum resident set size (KB) = 662272 Test 033 control_restart_qr_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_decomp_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_decomp_p8 Checking test 034 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1684,14 +1684,14 @@ Checking test 034 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 182.233626 -The maximum resident set size (KB) = 1482508 +The total amount of wall time = 182.522694 +The maximum resident set size (KB) = 1481712 Test 034 control_decomp_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_2threads_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_2threads_p8 Checking test 035 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1734,14 +1734,14 @@ Checking test 035 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 155.386124 -The maximum resident set size (KB) = 1566480 +The total amount of wall time = 155.601972 +The maximum resident set size (KB) = 1572184 Test 035 control_2threads_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_p8_lndp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_p8_lndp Checking test 036 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1760,14 +1760,14 @@ Checking test 036 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 323.425835 -The maximum resident set size (KB) = 1482900 +The total amount of wall time = 321.134673 +The maximum resident set size (KB) = 1489724 Test 036 control_p8_lndp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_rrtmgp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_p8_rrtmgp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_rrtmgp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_p8_rrtmgp Checking test 037 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1814,14 +1814,14 @@ Checking test 037 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 235.438850 -The maximum resident set size (KB) = 1544508 +The total amount of wall time = 235.267253 +The maximum resident set size (KB) = 1543740 Test 037 control_p8_rrtmgp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_mynn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_p8_mynn +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_mynn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_p8_mynn Checking test 038 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1868,14 +1868,14 @@ Checking test 038 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 180.755050 -The maximum resident set size (KB) = 1485408 +The total amount of wall time = 180.918649 +The maximum resident set size (KB) = 1482184 Test 038 control_p8_mynn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/merra2_thompson -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/merra2_thompson +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/merra2_thompson +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/merra2_thompson Checking test 039 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1922,14 +1922,14 @@ Checking test 039 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 204.004458 -The maximum resident set size (KB) = 1500384 +The total amount of wall time = 204.764284 +The maximum resident set size (KB) = 1492256 Test 039 merra2_thompson PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/regional_control +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/regional_control Checking test 040 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1940,28 +1940,28 @@ Checking test 040 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 285.965268 -The maximum resident set size (KB) = 649104 +The total amount of wall time = 286.074198 +The maximum resident set size (KB) = 650040 Test 040 regional_control PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/regional_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/regional_restart Checking test 041 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 154.051274 -The maximum resident set size (KB) = 651512 +The total amount of wall time = 156.093537 +The maximum resident set size (KB) = 650840 Test 041 regional_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/regional_control_qr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/regional_control_qr Checking test 042 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1972,28 +1972,28 @@ Checking test 042 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 291.930242 -The maximum resident set size (KB) = 649944 +The total amount of wall time = 286.663600 +The maximum resident set size (KB) = 653756 Test 042 regional_control_qr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/regional_restart_qr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/regional_restart_qr Checking test 043 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 153.451424 -The maximum resident set size (KB) = 648392 +The total amount of wall time = 154.867970 +The maximum resident set size (KB) = 650280 Test 043 regional_restart_qr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/regional_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/regional_decomp Checking test 044 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2004,14 +2004,14 @@ Checking test 044 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 306.196388 -The maximum resident set size (KB) = 655624 +The total amount of wall time = 302.830543 +The maximum resident set size (KB) = 654244 Test 044 regional_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/regional_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/regional_2threads Checking test 045 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2022,14 +2022,14 @@ Checking test 045 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 176.071628 -The maximum resident set size (KB) = 693744 +The total amount of wall time = 176.642564 +The maximum resident set size (KB) = 701200 Test 045 regional_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_noquilt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/regional_noquilt +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_noquilt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/regional_noquilt Checking test 046 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2037,14 +2037,14 @@ Checking test 046 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 311.255236 -The maximum resident set size (KB) = 647944 +The total amount of wall time = 309.703811 +The maximum resident set size (KB) = 643476 Test 046 regional_noquilt PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/regional_2dwrtdecomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/regional_2dwrtdecomp Checking test 047 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2055,14 +2055,14 @@ Checking test 047 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 288.276957 -The maximum resident set size (KB) = 653596 +The total amount of wall time = 286.272522 +The maximum resident set size (KB) = 654952 Test 047 regional_2dwrtdecomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/fv3_regional_wofs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/regional_wofs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/fv3_regional_wofs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/regional_wofs Checking test 048 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2073,14 +2073,14 @@ Checking test 048 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 365.035544 -The maximum resident set size (KB) = 339020 +The total amount of wall time = 363.911291 +The maximum resident set size (KB) = 340404 Test 048 regional_wofs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_ifi_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/regional_ifi_control +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_ifi_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/regional_ifi_control Checking test 049 regional_ifi_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2091,14 +2091,14 @@ Checking test 049 regional_ifi_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 328.200746 -The maximum resident set size (KB) = 654768 +The total amount of wall time = 317.056384 +The maximum resident set size (KB) = 653780 Test 049 regional_ifi_control PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_ifi_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/regional_ifi_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_ifi_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/regional_ifi_decomp Checking test 050 regional_ifi_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2109,14 +2109,14 @@ Checking test 050 regional_ifi_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 338.876959 -The maximum resident set size (KB) = 654904 +The total amount of wall time = 338.477401 +The maximum resident set size (KB) = 647636 Test 050 regional_ifi_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_ifi_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/regional_ifi_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_ifi_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/regional_ifi_2threads Checking test 051 regional_ifi_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2127,14 +2127,14 @@ Checking test 051 regional_ifi_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 203.953005 -The maximum resident set size (KB) = 694708 +The total amount of wall time = 195.115343 +The maximum resident set size (KB) = 694660 Test 051 regional_ifi_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/rap_control +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rap_control Checking test 052 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2181,14 +2181,14 @@ Checking test 052 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 419.990699 -The maximum resident set size (KB) = 891328 +The total amount of wall time = 417.389161 +The maximum resident set size (KB) = 888892 Test 052 rap_control PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/regional_spp_sppt_shum_skeb +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_spp_sppt_shum_skeb +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/regional_spp_sppt_shum_skeb Checking test 053 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2199,14 +2199,14 @@ Checking test 053 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 241.439624 -The maximum resident set size (KB) = 988404 +The total amount of wall time = 243.064927 +The maximum resident set size (KB) = 988528 Test 053 regional_spp_sppt_shum_skeb PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/rap_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rap_decomp Checking test 054 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2253,14 +2253,14 @@ Checking test 054 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 436.186050 -The maximum resident set size (KB) = 891848 +The total amount of wall time = 431.734075 +The maximum resident set size (KB) = 895648 Test 054 rap_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/rap_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rap_2threads Checking test 055 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2307,14 +2307,14 @@ Checking test 055 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 387.965274 -The maximum resident set size (KB) = 968416 +The total amount of wall time = 386.888047 +The maximum resident set size (KB) = 963420 Test 055 rap_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/rap_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rap_restart Checking test 056 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2353,14 +2353,14 @@ Checking test 056 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 213.393829 -The maximum resident set size (KB) = 639736 +The total amount of wall time = 212.922792 +The maximum resident set size (KB) = 644880 Test 056 rap_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/rap_sfcdiff +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rap_sfcdiff Checking test 057 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2407,14 +2407,14 @@ Checking test 057 rap_sfcdiff results .... 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.170376 -The maximum resident set size (KB) = 889364 +The total amount of wall time = 420.127991 +The maximum resident set size (KB) = 891876 Test 057 rap_sfcdiff PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/rap_sfcdiff_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rap_sfcdiff_decomp Checking test 058 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2461,14 +2461,14 @@ Checking test 058 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 437.182906 -The maximum resident set size (KB) = 892768 +The total amount of wall time = 437.470009 +The maximum resident set size (KB) = 895660 Test 058 rap_sfcdiff_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/rap_sfcdiff_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rap_sfcdiff_restart Checking test 059 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2507,14 +2507,14 @@ Checking test 059 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 310.943065 -The maximum resident set size (KB) = 642928 +The total amount of wall time = 308.566418 +The maximum resident set size (KB) = 641440 Test 059 rap_sfcdiff_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/hrrr_control +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hrrr_control Checking test 060 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2561,14 +2561,14 @@ Checking test 060 hrrr_control results .... 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.112154 -The maximum resident set size (KB) = 889296 +The total amount of wall time = 406.324245 +The maximum resident set size (KB) = 893924 Test 060 hrrr_control PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/hrrr_control_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hrrr_control_decomp Checking test 061 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2615,14 +2615,14 @@ Checking test 061 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 420.048420 -The maximum resident set size (KB) = 885200 +The total amount of wall time = 420.435492 +The maximum resident set size (KB) = 888212 Test 061 hrrr_control_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/hrrr_control_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hrrr_control_2threads Checking test 062 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2669,14 +2669,14 @@ Checking test 062 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 373.357172 -The maximum resident set size (KB) = 952244 +The total amount of wall time = 373.948212 +The maximum resident set size (KB) = 954908 Test 062 hrrr_control_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/hrrr_control_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hrrr_control_restart Checking test 063 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2715,14 +2715,14 @@ Checking test 063 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 297.778806 -The maximum resident set size (KB) = 641052 +The total amount of wall time = 297.133889 +The maximum resident set size (KB) = 635420 Test 063 hrrr_control_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1beta -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/rrfs_v1beta +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1beta +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rrfs_v1beta Checking test 064 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2769,14 +2769,14 @@ Checking test 064 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 416.600700 -The maximum resident set size (KB) = 892180 +The total amount of wall time = 417.598356 +The maximum resident set size (KB) = 889492 Test 064 rrfs_v1beta PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1nssl -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/rrfs_v1nssl +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1nssl +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rrfs_v1nssl Checking test 065 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2791,14 +2791,14 @@ Checking test 065 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 490.429662 -The maximum resident set size (KB) = 574508 +The total amount of wall time = 482.615099 +The maximum resident set size (KB) = 580268 Test 065 rrfs_v1nssl PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/rrfs_v1nssl_nohailnoccn +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rrfs_v1nssl_nohailnoccn Checking test 066 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2813,14 +2813,14 @@ Checking test 066 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 469.257455 -The maximum resident set size (KB) = 569140 +The total amount of wall time = 470.328811 +The maximum resident set size (KB) = 570120 Test 066 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rrfs_smoke_conus13km_hrrr_warm Checking test 067 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2829,14 +2829,14 @@ Checking test 067 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 146.417996 -The maximum resident set size (KB) = 796580 +The total amount of wall time = 145.325644 +The maximum resident set size (KB) = 798328 Test 067 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 068 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2845,14 +2845,14 @@ Checking test 068 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 103.848783 -The maximum resident set size (KB) = 800600 +The total amount of wall time = 102.299906 +The maximum resident set size (KB) = 801572 Test 068 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/rrfs_conus13km_hrrr_warm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rrfs_conus13km_hrrr_warm Checking test 069 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2861,14 +2861,14 @@ Checking test 069 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 131.680305 -The maximum resident set size (KB) = 775040 +The total amount of wall time = 132.516360 +The maximum resident set size (KB) = 779616 Test 069 rrfs_conus13km_hrrr_warm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rrfs_smoke_conus13km_radar_tten_warm Checking test 070 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2877,26 +2877,26 @@ Checking test 070 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 145.884018 -The maximum resident set size (KB) = 800656 +The total amount of wall time = 145.999481 +The maximum resident set size (KB) = 802208 Test 070 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 071 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 67.346531 -The maximum resident set size (KB) = 757780 +The total amount of wall time = 66.984009 +The maximum resident set size (KB) = 759568 Test 071 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmg -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_csawmg +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmg +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_csawmg Checking test 072 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2907,14 +2907,14 @@ Checking test 072 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 351.963791 -The maximum resident set size (KB) = 579776 +The total amount of wall time = 345.673881 +The maximum resident set size (KB) = 581988 Test 072 control_csawmg PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmgt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_csawmgt +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmgt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_csawmgt Checking test 073 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2925,14 +2925,14 @@ Checking test 073 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 346.317862 -The maximum resident set size (KB) = 580244 +The total amount of wall time = 343.629558 +The maximum resident set size (KB) = 581384 Test 073 control_csawmgt PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_ras -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_ras +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_ras +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_ras Checking test 074 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2943,26 +2943,26 @@ Checking test 074 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 182.082405 -The maximum resident set size (KB) = 549084 +The total amount of wall time = 181.156638 +The maximum resident set size (KB) = 550124 Test 074 control_ras PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wam -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_wam +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wam +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_wam Checking test 075 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 118.196285 -The maximum resident set size (KB) = 270036 +The total amount of wall time = 117.489758 +The maximum resident set size (KB) = 270532 Test 075 control_wam PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_p8_faster +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_p8_faster Checking test 076 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3009,14 +3009,14 @@ Checking test 076 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 174.352703 -The maximum resident set size (KB) = 1495232 +The total amount of wall time = 175.104337 +The maximum resident set size (KB) = 1483688 Test 076 control_p8_faster PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/regional_control_faster +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/regional_control_faster Checking test 077 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3027,56 +3027,56 @@ Checking test 077 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 277.730164 -The maximum resident set size (KB) = 650480 +The total amount of wall time = 278.965134 +The maximum resident set size (KB) = 655076 Test 077 regional_control_faster PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 078 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 898.591308 -The maximum resident set size (KB) = 830232 +The total amount of wall time = 902.448484 +The maximum resident set size (KB) = 833572 Test 078 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 079 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 517.912398 -The maximum resident set size (KB) = 832484 +The total amount of wall time = 521.833413 +The maximum resident set size (KB) = 831492 Test 079 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/rrfs_conus13km_hrrr_warm_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rrfs_conus13km_hrrr_warm_debug Checking test 080 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 815.337621 -The maximum resident set size (KB) = 803032 +The total amount of wall time = 804.590450 +The maximum resident set size (KB) = 810844 Test 080 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_CubedSphereGrid_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_CubedSphereGrid_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_CubedSphereGrid_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_CubedSphereGrid_debug Checking test 081 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3103,334 +3103,334 @@ Checking test 081 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 158.423986 -The maximum resident set size (KB) = 671636 +The total amount of wall time = 156.005302 +The maximum resident set size (KB) = 674020 Test 081 control_CubedSphereGrid_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_wrtGauss_netcdf_parallel_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_wrtGauss_netcdf_parallel_debug Checking test 082 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 156.943350 -The maximum resident set size (KB) = 679496 +The total amount of wall time = 156.357020 +The maximum resident set size (KB) = 673340 Test 082 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_stochy_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_stochy_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_stochy_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_stochy_debug Checking test 083 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 178.559257 -The maximum resident set size (KB) = 678996 +The total amount of wall time = 177.537699 +The maximum resident set size (KB) = 682796 Test 083 control_stochy_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_lndp_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_lndp_debug Checking test 084 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 159.092019 -The maximum resident set size (KB) = 679880 +The total amount of wall time = 159.637719 +The maximum resident set size (KB) = 679300 Test 084 control_lndp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmg_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_csawmg_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmg_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_csawmg_debug Checking test 085 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 253.726500 -The maximum resident set size (KB) = 721268 +The total amount of wall time = 252.482838 +The maximum resident set size (KB) = 720352 Test 085 control_csawmg_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmgt_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_csawmgt_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmgt_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_csawmgt_debug Checking test 086 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 248.773658 -The maximum resident set size (KB) = 714764 +The total amount of wall time = 251.254539 +The maximum resident set size (KB) = 719624 Test 086 control_csawmgt_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_ras_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_ras_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_ras_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_ras_debug Checking test 087 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 160.731330 -The maximum resident set size (KB) = 687492 +The total amount of wall time = 160.674018 +The maximum resident set size (KB) = 686804 Test 087 control_ras_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_diag_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_diag_debug Checking test 088 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 161.160245 -The maximum resident set size (KB) = 733952 +The total amount of wall time = 160.666019 +The maximum resident set size (KB) = 734384 Test 088 control_diag_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_debug_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_debug_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_debug_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_debug_p8 Checking test 089 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 184.847289 -The maximum resident set size (KB) = 1503316 +The total amount of wall time = 183.147909 +The maximum resident set size (KB) = 1501236 Test 089 control_debug_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/regional_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/regional_debug Checking test 090 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1039.801052 -The maximum resident set size (KB) = 673440 +The total amount of wall time = 1036.297992 +The maximum resident set size (KB) = 673608 Test 090 regional_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/rap_control_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rap_control_debug Checking test 091 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 294.421621 -The maximum resident set size (KB) = 1051744 +The total amount of wall time = 294.182640 +The maximum resident set size (KB) = 1051428 Test 091 rap_control_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/hrrr_control_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hrrr_control_debug Checking test 092 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 289.369885 -The maximum resident set size (KB) = 1049008 +The total amount of wall time = 289.508009 +The maximum resident set size (KB) = 1047860 Test 092 hrrr_control_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/rap_unified_drag_suite_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rap_unified_drag_suite_debug Checking test 093 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 296.678268 -The maximum resident set size (KB) = 1052756 +The total amount of wall time = 294.557887 +The maximum resident set size (KB) = 1052268 Test 093 rap_unified_drag_suite_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/rap_diag_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rap_diag_debug Checking test 094 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 307.489940 -The maximum resident set size (KB) = 1133624 +The total amount of wall time = 305.168098 +The maximum resident set size (KB) = 1135456 Test 094 rap_diag_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/rap_cires_ugwp_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rap_cires_ugwp_debug Checking test 095 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 301.779457 -The maximum resident set size (KB) = 1052936 +The total amount of wall time = 302.070547 +The maximum resident set size (KB) = 1051924 Test 095 rap_cires_ugwp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/rap_unified_ugwp_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rap_unified_ugwp_debug Checking test 096 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 302.681253 -The maximum resident set size (KB) = 1050484 +The total amount of wall time = 302.165023 +The maximum resident set size (KB) = 1052008 Test 096 rap_unified_ugwp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/rap_lndp_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rap_lndp_debug Checking test 097 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.993905 -The maximum resident set size (KB) = 1052692 +The total amount of wall time = 297.616050 +The maximum resident set size (KB) = 1054032 Test 097 rap_lndp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_flake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/rap_flake_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_flake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rap_flake_debug Checking test 098 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 296.404404 -The maximum resident set size (KB) = 1051608 +The total amount of wall time = 296.615537 +The maximum resident set size (KB) = 1052716 Test 098 rap_flake_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_progcld_thompson_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/rap_progcld_thompson_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_progcld_thompson_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rap_progcld_thompson_debug Checking test 099 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.262611 -The maximum resident set size (KB) = 1050248 +The total amount of wall time = 296.304327 +The maximum resident set size (KB) = 1054452 Test 099 rap_progcld_thompson_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_noah_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/rap_noah_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_noah_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rap_noah_debug Checking test 100 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 288.355959 -The maximum resident set size (KB) = 1046348 +The total amount of wall time = 289.348445 +The maximum resident set size (KB) = 1052176 Test 100 rap_noah_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/rap_sfcdiff_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rap_sfcdiff_debug Checking test 101 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 294.219660 -The maximum resident set size (KB) = 1052476 +The total amount of wall time = 294.963002 +The maximum resident set size (KB) = 1051676 Test 101 rap_sfcdiff_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rap_noah_sfcdiff_cires_ugwp_debug Checking test 102 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 483.703823 -The maximum resident set size (KB) = 1052288 +The total amount of wall time = 484.479149 +The maximum resident set size (KB) = 1050808 Test 102 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1beta_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/rrfs_v1beta_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1beta_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rrfs_v1beta_debug Checking test 103 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 292.250563 -The maximum resident set size (KB) = 1050996 +The total amount of wall time = 291.789073 +The maximum resident set size (KB) = 1044132 Test 103 rrfs_v1beta_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wam_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_wam_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wam_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_wam_debug Checking test 104 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 295.707284 -The maximum resident set size (KB) = 302664 +The total amount of wall time = 294.944046 +The maximum resident set size (KB) = 302852 Test 104 control_wam_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 105 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3441,14 +3441,14 @@ Checking test 105 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 231.314468 -The maximum resident set size (KB) = 884084 +The total amount of wall time = 232.262912 +The maximum resident set size (KB) = 884244 Test 105 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/rap_control_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rap_control_dyn32_phy32 Checking test 106 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3495,14 +3495,14 @@ Checking test 106 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 356.480610 -The maximum resident set size (KB) = 774160 +The total amount of wall time = 353.085343 +The maximum resident set size (KB) = 773120 Test 106 rap_control_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/hrrr_control_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hrrr_control_dyn32_phy32 Checking test 107 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3549,14 +3549,14 @@ Checking test 107 hrrr_control_dyn32_phy32 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 = 187.776794 -The maximum resident set size (KB) = 771912 +The total amount of wall time = 187.687083 +The maximum resident set size (KB) = 772400 Test 107 hrrr_control_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/rap_2threads_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rap_2threads_dyn32_phy32 Checking test 108 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3603,14 +3603,14 @@ Checking test 108 rap_2threads_dyn32_phy32 results .... 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.651068 -The maximum resident set size (KB) = 832776 +The total amount of wall time = 329.796956 +The maximum resident set size (KB) = 824408 Test 108 rap_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/hrrr_control_2threads_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hrrr_control_2threads_dyn32_phy32 Checking test 109 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3657,14 +3657,14 @@ Checking test 109 hrrr_control_2threads_dyn32_phy32 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 = 173.178345 -The maximum resident set size (KB) = 825912 +The total amount of wall time = 173.462845 +The maximum resident set size (KB) = 826980 Test 109 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/hrrr_control_decomp_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hrrr_control_decomp_dyn32_phy32 Checking test 110 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3711,14 +3711,14 @@ Checking test 110 hrrr_control_decomp_dyn32_phy32 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 = 194.560015 -The maximum resident set size (KB) = 776576 +The total amount of wall time = 194.751025 +The maximum resident set size (KB) = 774600 Test 110 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/rap_restart_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rap_restart_dyn32_phy32 Checking test 111 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3757,14 +3757,14 @@ Checking test 111 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 257.971421 -The maximum resident set size (KB) = 611308 +The total amount of wall time = 257.440515 +The maximum resident set size (KB) = 610916 Test 111 rap_restart_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/hrrr_control_restart_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hrrr_control_restart_dyn32_phy32 Checking test 112 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3803,14 +3803,14 @@ Checking test 112 hrrr_control_restart_dyn32_phy32 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 = 97.461173 -The maximum resident set size (KB) = 605340 +The total amount of wall time = 97.316650 +The maximum resident set size (KB) = 603444 Test 112 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/rap_control_dyn64_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rap_control_dyn64_phy32 Checking test 113 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3857,81 +3857,81 @@ Checking test 113 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -The total amount of wall time = 234.884387 -The maximum resident set size (KB) = 790236 +The total amount of wall time = 233.475473 +The maximum resident set size (KB) = 794276 Test 113 rap_control_dyn64_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/rap_control_debug_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rap_control_debug_dyn32_phy32 Checking test 114 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 294.365822 -The maximum resident set size (KB) = 938536 +The total amount of wall time = 291.619883 +The maximum resident set size (KB) = 939768 Test 114 rap_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/hrrr_control_debug_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hrrr_control_debug_dyn32_phy32 Checking test 115 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 287.562534 -The maximum resident set size (KB) = 934960 +The total amount of wall time = 287.925518 +The maximum resident set size (KB) = 935192 Test 115 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/rap_control_dyn64_phy32_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rap_control_dyn64_phy32_debug Checking test 116 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 291.138156 -The maximum resident set size (KB) = 954436 +The total amount of wall time = 292.139846 +The maximum resident set size (KB) = 954320 Test 116 rap_control_dyn64_phy32_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/hafs_regional_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hafs_regional_atm Checking test 117 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 270.252948 -The maximum resident set size (KB) = 821304 +The total amount of wall time = 268.260161 +The maximum resident set size (KB) = 822664 Test 117 hafs_regional_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/hafs_regional_atm_thompson_gfdlsf +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hafs_regional_atm_thompson_gfdlsf Checking test 118 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 312.708842 -The maximum resident set size (KB) = 1180964 +The total amount of wall time = 311.003520 +The maximum resident set size (KB) = 1179636 Test 118 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/hafs_regional_atm_ocn +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hafs_regional_atm_ocn Checking test 119 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3940,14 +3940,14 @@ Checking test 119 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 387.086668 -The maximum resident set size (KB) = 860240 +The total amount of wall time = 387.311681 +The maximum resident set size (KB) = 858168 Test 119 hafs_regional_atm_ocn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/hafs_regional_atm_wav +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hafs_regional_atm_wav Checking test 120 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3956,14 +3956,14 @@ Checking test 120 hafs_regional_atm_wav 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 = 699.994175 -The maximum resident set size (KB) = 884964 +The total amount of wall time = 697.989974 +The maximum resident set size (KB) = 883700 Test 120 hafs_regional_atm_wav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/hafs_regional_atm_ocn_wav +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hafs_regional_atm_ocn_wav Checking test 121 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3974,28 +3974,28 @@ Checking test 121 hafs_regional_atm_ocn_wav 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 = 893.494691 -The maximum resident set size (KB) = 912392 +The total amount of wall time = 891.805177 +The maximum resident set size (KB) = 913896 Test 121 hafs_regional_atm_ocn_wav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/hafs_regional_1nest_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hafs_regional_1nest_atm Checking test 122 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 330.834910 -The maximum resident set size (KB) = 392336 +The total amount of wall time = 332.451163 +The maximum resident set size (KB) = 392756 Test 122 hafs_regional_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/hafs_regional_telescopic_2nests_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hafs_regional_telescopic_2nests_atm Checking test 123 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4004,28 +4004,28 @@ Checking test 123 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 403.222030 -The maximum resident set size (KB) = 404948 +The total amount of wall time = 403.835313 +The maximum resident set size (KB) = 401740 Test 123 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_global_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/hafs_global_1nest_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_global_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hafs_global_1nest_atm Checking test 124 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 171.648060 -The maximum resident set size (KB) = 271496 +The total amount of wall time = 172.804741 +The maximum resident set size (KB) = 268004 Test 124 hafs_global_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_global_multiple_4nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/hafs_global_multiple_4nests_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_global_multiple_4nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hafs_global_multiple_4nests_atm Checking test 125 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4043,14 +4043,14 @@ Checking test 125 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -The total amount of wall time = 489.348766 -The maximum resident set size (KB) = 346244 +The total amount of wall time = 491.903615 +The maximum resident set size (KB) = 349000 Test 125 hafs_global_multiple_4nests_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/hafs_regional_specified_moving_1nest_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hafs_regional_specified_moving_1nest_atm Checking test 126 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4059,28 +4059,28 @@ Checking test 126 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 219.877819 -The maximum resident set size (KB) = 406276 +The total amount of wall time = 218.770495 +The maximum resident set size (KB) = 403076 Test 126 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/hafs_regional_storm_following_1nest_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hafs_regional_storm_following_1nest_atm Checking test 127 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 205.506280 -The maximum resident set size (KB) = 413604 +The total amount of wall time = 206.754989 +The maximum resident set size (KB) = 405624 Test 127 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hafs_regional_storm_following_1nest_atm_ocn Checking test 128 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4089,42 +4089,42 @@ Checking test 128 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 252.927257 -The maximum resident set size (KB) = 470340 +The total amount of wall time = 251.971413 +The maximum resident set size (KB) = 469324 Test 128 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/hafs_global_storm_following_1nest_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_global_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hafs_global_storm_following_1nest_atm Checking test 129 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 84.818469 -The maximum resident set size (KB) = 287388 +The total amount of wall time = 84.501640 +The maximum resident set size (KB) = 292060 Test 129 hafs_global_storm_following_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 130 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 803.118928 -The maximum resident set size (KB) = 488136 +The total amount of wall time = 803.347739 +The maximum resident set size (KB) = 487756 Test 130 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 131 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4135,14 +4135,14 @@ Checking test 131 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -The total amount of wall time = 502.213328 -The maximum resident set size (KB) = 525936 +The total amount of wall time = 504.689227 +The maximum resident set size (KB) = 526660 Test 131 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_docn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/hafs_regional_docn +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_docn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hafs_regional_docn Checking test 132 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4150,14 +4150,14 @@ Checking test 132 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 369.089194 -The maximum resident set size (KB) = 864380 +The total amount of wall time = 371.121365 +The maximum resident set size (KB) = 864104 Test 132 hafs_regional_docn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_docn_oisst -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/hafs_regional_docn_oisst +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_docn_oisst +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hafs_regional_docn_oisst Checking test 133 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4165,131 +4165,131 @@ Checking test 133 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 371.937460 -The maximum resident set size (KB) = 845852 +The total amount of wall time = 372.439464 +The maximum resident set size (KB) = 845564 Test 133 hafs_regional_docn_oisst PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_datm_cdeps -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/hafs_regional_datm_cdeps +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_datm_cdeps +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hafs_regional_datm_cdeps Checking test 134 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -The total amount of wall time = 945.007987 -The maximum resident set size (KB) = 870184 +The total amount of wall time = 945.696910 +The maximum resident set size (KB) = 837392 Test 134 hafs_regional_datm_cdeps PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/datm_cdeps_control_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/datm_cdeps_control_cfsr Checking test 135 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 140.892322 -The maximum resident set size (KB) = 733440 +The total amount of wall time = 140.522875 +The maximum resident set size (KB) = 734492 Test 135 datm_cdeps_control_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/datm_cdeps_restart_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/datm_cdeps_restart_cfsr Checking test 136 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 85.733053 -The maximum resident set size (KB) = 708648 +The total amount of wall time = 85.928645 +The maximum resident set size (KB) = 727980 Test 136 datm_cdeps_restart_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/datm_cdeps_control_gefs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/datm_cdeps_control_gefs Checking test 137 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 134.529221 -The maximum resident set size (KB) = 613464 +The total amount of wall time = 132.977160 +The maximum resident set size (KB) = 614096 Test 137 datm_cdeps_control_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_iau_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/datm_cdeps_iau_gefs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_iau_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/datm_cdeps_iau_gefs Checking test 138 datm_cdeps_iau_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 136.652997 -The maximum resident set size (KB) = 613344 +The total amount of wall time = 136.585504 +The maximum resident set size (KB) = 615380 Test 138 datm_cdeps_iau_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_stochy_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/datm_cdeps_stochy_gefs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_stochy_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/datm_cdeps_stochy_gefs Checking test 139 datm_cdeps_stochy_gefs 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.689183 -The maximum resident set size (KB) = 611544 +The total amount of wall time = 137.691698 +The maximum resident set size (KB) = 611656 Test 139 datm_cdeps_stochy_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/datm_cdeps_ciceC_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_ciceC_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/datm_cdeps_ciceC_cfsr Checking test 140 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.572428 -The maximum resident set size (KB) = 736152 +The total amount of wall time = 141.048303 +The maximum resident set size (KB) = 733524 Test 140 datm_cdeps_ciceC_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/datm_cdeps_bulk_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_bulk_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/datm_cdeps_bulk_cfsr Checking test 141 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 142.086273 -The maximum resident set size (KB) = 731260 +The total amount of wall time = 141.756242 +The maximum resident set size (KB) = 736392 Test 141 datm_cdeps_bulk_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/datm_cdeps_bulk_gefs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_bulk_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/datm_cdeps_bulk_gefs Checking test 142 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 133.674853 -The maximum resident set size (KB) = 620296 +The total amount of wall time = 133.750868 +The maximum resident set size (KB) = 612776 Test 142 datm_cdeps_bulk_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/datm_cdeps_mx025_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_mx025_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/datm_cdeps_mx025_cfsr Checking test 143 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4298,14 +4298,14 @@ Checking test 143 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 433.405339 -The maximum resident set size (KB) = 571736 +The total amount of wall time = 430.648954 +The maximum resident set size (KB) = 568860 Test 143 datm_cdeps_mx025_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/datm_cdeps_mx025_gefs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_mx025_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/datm_cdeps_mx025_gefs Checking test 144 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4314,64 +4314,64 @@ Checking test 144 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 427.566440 -The maximum resident set size (KB) = 546216 +The total amount of wall time = 425.907536 +The maximum resident set size (KB) = 550112 Test 144 datm_cdeps_mx025_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/datm_cdeps_multiple_files_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/datm_cdeps_multiple_files_cfsr Checking test 145 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.581154 -The maximum resident set size (KB) = 731628 +The total amount of wall time = 140.434639 +The maximum resident set size (KB) = 737636 Test 145 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/datm_cdeps_3072x1536_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/datm_cdeps_3072x1536_cfsr Checking test 146 datm_cdeps_3072x1536_cfsr 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 = 256.743173 -The maximum resident set size (KB) = 1984292 +The total amount of wall time = 257.571050 +The maximum resident set size (KB) = 1978840 Test 146 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_gfs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/datm_cdeps_gfs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_gfs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/datm_cdeps_gfs Checking test 147 datm_cdeps_gfs 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 = 256.618902 -The maximum resident set size (KB) = 1979900 +The total amount of wall time = 257.602193 +The maximum resident set size (KB) = 1978592 Test 147 datm_cdeps_gfs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/datm_cdeps_control_cfsr_faster +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_cfsr_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/datm_cdeps_control_cfsr_faster Checking test 148 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.558059 -The maximum resident set size (KB) = 723168 +The total amount of wall time = 141.768437 +The maximum resident set size (KB) = 736748 Test 148 datm_cdeps_control_cfsr_faster PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/datm_cdeps_lnd_gswp3 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/datm_cdeps_lnd_gswp3 Checking test 149 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4380,14 +4380,14 @@ Checking test 149 datm_cdeps_lnd_gswp3 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.317171 -The maximum resident set size (KB) = 223892 +The total amount of wall time = 21.956515 +The maximum resident set size (KB) = 231120 Test 149 datm_cdeps_lnd_gswp3 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/datm_cdeps_lnd_gswp3_rst +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/datm_cdeps_lnd_gswp3_rst Checking test 150 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4396,14 +4396,14 @@ Checking test 150 datm_cdeps_lnd_gswp3_rst 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.282673 -The maximum resident set size (KB) = 229720 +The total amount of wall time = 27.390248 +The maximum resident set size (KB) = 226688 Test 150 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_atmlnd_sbs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_p8_atmlnd_sbs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_atmlnd_sbs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_p8_atmlnd_sbs Checking test 151 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4488,14 +4488,14 @@ Checking test 151 control_p8_atmlnd_sbs 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.536376 -The maximum resident set size (KB) = 1537080 +The total amount of wall time = 235.300224 +The maximum resident set size (KB) = 1550436 Test 151 control_p8_atmlnd_sbs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_atmwav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/control_atmwav +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_atmwav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_atmwav Checking test 152 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4539,14 +4539,14 @@ Checking test 152 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -The total amount of wall time = 91.923576 -The maximum resident set size (KB) = 543720 +The total amount of wall time = 90.171023 +The maximum resident set size (KB) = 539360 Test 152 control_atmwav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/atmaero_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/atmaero_control_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/atmaero_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/atmaero_control_p8 Checking test 153 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4590,14 +4590,14 @@ Checking test 153 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 245.369333 -The maximum resident set size (KB) = 2814140 +The total amount of wall time = 245.964017 +The maximum resident set size (KB) = 2814272 Test 153 atmaero_control_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/atmaero_control_p8_rad -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/atmaero_control_p8_rad +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/atmaero_control_p8_rad +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/atmaero_control_p8_rad Checking test 154 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4641,14 +4641,14 @@ Checking test 154 atmaero_control_p8_rad results .... 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.452363 -The maximum resident set size (KB) = 2877168 +The total amount of wall time = 281.685724 +The maximum resident set size (KB) = 2874372 Test 154 atmaero_control_p8_rad PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/atmaero_control_p8_rad_micro +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/atmaero_control_p8_rad_micro +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/atmaero_control_p8_rad_micro Checking test 155 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4692,14 +4692,14 @@ Checking test 155 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 288.100152 -The maximum resident set size (KB) = 2883024 +The total amount of wall time = 287.908833 +The maximum resident set size (KB) = 2885156 Test 155 atmaero_control_p8_rad_micro PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_atmaq -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/regional_atmaq +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_atmaq +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/regional_atmaq Checking test 156 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4715,14 +4715,14 @@ Checking test 156 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 681.846667 -The maximum resident set size (KB) = 1261656 +The total amount of wall time = 688.968888 +The maximum resident set size (KB) = 1257132 Test 156 regional_atmaq PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_atmaq_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/regional_atmaq_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_atmaq_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/regional_atmaq_debug Checking test 157 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4736,14 +4736,14 @@ Checking test 157 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1291.962206 -The maximum resident set size (KB) = 1286184 +The total amount of wall time = 1310.809363 +The maximum resident set size (KB) = 1289336 Test 157 regional_atmaq_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_atmaq_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_233822/regional_atmaq_faster +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_atmaq_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/regional_atmaq_faster Checking test 158 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4759,12 +4759,12 @@ Checking test 158 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 636.001682 -The maximum resident set size (KB) = 1254812 +The total amount of wall time = 649.327746 +The maximum resident set size (KB) = 1257280 Test 158 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Tue Apr 4 18:38:58 UTC 2023 -Elapsed time: 01h:41m:40s. Have a nice day! +Thu Apr 6 02:20:16 UTC 2023 +Elapsed time: 01h:38m:20s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index a5e20f38a5d..c561f7d4790 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,21 +1,21 @@ -Tue Apr 4 14:38:30 MDT 2023 +Wed Apr 5 20:08:19 MDT 2023 Start Regression test -Compile 001 elapsed time 377 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 391 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 845 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 188 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 376 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 1082 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 843 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 842 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 667 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 568 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 343 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 001 elapsed time 386 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 402 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 853 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 190 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 380 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 1079 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 846 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 845 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 627 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 567 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 350 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON Compile 012 elapsed time 298 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/control_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/control_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/control_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/control_c48 Checking test 001 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -54,14 +54,14 @@ Checking test 001 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 820.599777 -0:The maximum resident set size (KB) = 680316 +0:The total amount of wall time = 820.203183 +0:The maximum resident set size (KB) = 679744 Test 001 control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/control_stochy +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/control_stochy +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/control_stochy Checking test 002 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -72,14 +72,14 @@ Checking test 002 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 178.319353 -0:The maximum resident set size (KB) = 443268 +0:The total amount of wall time = 173.719421 +0:The maximum resident set size (KB) = 443696 Test 002 control_stochy PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/control_ras -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/control_ras +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/control_ras +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/control_ras Checking test 003 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -90,14 +90,14 @@ Checking test 003 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 294.857407 -0:The maximum resident set size (KB) = 452048 +0:The total amount of wall time = 294.337464 +0:The maximum resident set size (KB) = 452180 Test 003 control_ras PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/control_p8 Checking test 004 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -144,14 +144,14 @@ Checking test 004 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 309.429318 -0:The maximum resident set size (KB) = 1224872 +0:The total amount of wall time = 311.621845 +0:The maximum resident set size (KB) = 1224584 Test 004 control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/rap_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rap_control Checking test 005 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -198,14 +198,14 @@ Checking test 005 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 713.080435 -0:The maximum resident set size (KB) = 792120 +0:The total amount of wall time = 713.539688 +0:The maximum resident set size (KB) = 791684 Test 005 rap_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/rap_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rap_decomp Checking test 006 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -252,14 +252,14 @@ Checking test 006 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 718.908863 -0:The maximum resident set size (KB) = 791504 +0:The total amount of wall time = 719.556774 +0:The maximum resident set size (KB) = 791432 Test 006 rap_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/rap_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rap_2threads Checking test 007 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -306,14 +306,14 @@ Checking test 007 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 653.566586 -0:The maximum resident set size (KB) = 865916 +0:The total amount of wall time = 651.838869 +0:The maximum resident set size (KB) = 865472 Test 007 rap_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/rap_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rap_restart Checking test 008 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -352,14 +352,14 @@ Checking test 008 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 353.713698 -0:The maximum resident set size (KB) = 539216 +0:The total amount of wall time = 354.592846 +0:The maximum resident set size (KB) = 538952 Test 008 rap_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/rap_sfcdiff +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rap_sfcdiff Checking test 009 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -406,14 +406,14 @@ Checking test 009 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 713.819644 -0:The maximum resident set size (KB) = 792264 +0:The total amount of wall time = 714.606022 +0:The maximum resident set size (KB) = 791976 Test 009 rap_sfcdiff PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/rap_sfcdiff_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rap_sfcdiff_decomp Checking test 010 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -460,14 +460,14 @@ Checking test 010 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 725.996316 -0:The maximum resident set size (KB) = 791224 +0:The total amount of wall time = 718.158590 +0:The maximum resident set size (KB) = 791308 Test 010 rap_sfcdiff_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/rap_sfcdiff_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rap_sfcdiff_restart Checking test 011 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -506,14 +506,14 @@ Checking test 011 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 527.544448 -0:The maximum resident set size (KB) = 544200 +0:The total amount of wall time = 522.172457 +0:The maximum resident set size (KB) = 544484 Test 011 rap_sfcdiff_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/hrrr_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/hrrr_control Checking test 012 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -560,14 +560,14 @@ Checking test 012 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 688.455187 -0:The maximum resident set size (KB) = 789496 +0:The total amount of wall time = 690.323702 +0:The maximum resident set size (KB) = 789092 Test 012 hrrr_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/hrrr_control_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/hrrr_control_2threads Checking test 013 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -614,14 +614,14 @@ Checking test 013 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 626.935624 -0:The maximum resident set size (KB) = 860664 +0:The total amount of wall time = 626.869514 +0:The maximum resident set size (KB) = 860244 Test 013 hrrr_control_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/hrrr_control_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/hrrr_control_decomp Checking test 014 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -668,14 +668,14 @@ Checking test 014 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 692.376646 -0:The maximum resident set size (KB) = 788828 +0:The total amount of wall time = 686.208501 +0:The maximum resident set size (KB) = 788848 Test 014 hrrr_control_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/hrrr_control_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/hrrr_control_restart Checking test 015 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -714,14 +714,14 @@ Checking test 015 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 511.542659 -0:The maximum resident set size (KB) = 540212 +0:The total amount of wall time = 510.286175 +0:The maximum resident set size (KB) = 540244 Test 015 hrrr_control_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rrfs_v1beta -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/rrfs_v1beta +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rrfs_v1beta +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rrfs_v1beta Checking test 016 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -768,14 +768,14 @@ Checking test 016 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 706.727745 -0:The maximum resident set size (KB) = 789248 +0:The total amount of wall time = 704.339533 +0:The maximum resident set size (KB) = 788808 Test 016 rrfs_v1beta PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rrfs_smoke_conus13km_hrrr_warm Checking test 017 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -784,14 +784,14 @@ Checking test 017 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 233.678570 -0:The maximum resident set size (KB) = 636556 +0:The total amount of wall time = 232.389544 +0:The maximum resident set size (KB) = 636952 Test 017 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 018 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -800,14 +800,14 @@ Checking test 018 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 147.153086 -0:The maximum resident set size (KB) = 655556 +0:The total amount of wall time = 152.802218 +0:The maximum resident set size (KB) = 661268 Test 018 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/rrfs_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rrfs_conus13km_hrrr_warm Checking test 019 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -816,14 +816,14 @@ Checking test 019 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 211.279345 -0:The maximum resident set size (KB) = 615468 +0:The total amount of wall time = 211.684320 +0:The maximum resident set size (KB) = 615484 Test 019 rrfs_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rrfs_smoke_conus13km_radar_tten_warm Checking test 020 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -832,234 +832,234 @@ Checking test 020 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 234.482115 -0:The maximum resident set size (KB) = 639336 +0:The total amount of wall time = 234.499074 +0:The maximum resident set size (KB) = 639300 Test 020 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 021 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 110.071406 -0:The maximum resident set size (KB) = 596320 +0:The total amount of wall time = 110.653052 +0:The maximum resident set size (KB) = 596520 Test 021 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/control_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/control_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/control_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/control_diag_debug Checking test 022 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 83.343818 -0:The maximum resident set size (KB) = 491608 +0:The total amount of wall time = 82.360775 +0:The maximum resident set size (KB) = 492040 Test 022 control_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/regional_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/regional_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/regional_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/regional_debug Checking test 023 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 478.997737 -0:The maximum resident set size (KB) = 567248 +0:The total amount of wall time = 475.298683 +0:The maximum resident set size (KB) = 567272 Test 023 regional_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/rap_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rap_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rap_control_debug Checking test 024 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 145.735045 -0:The maximum resident set size (KB) = 805516 +0:The total amount of wall time = 145.297581 +0:The maximum resident set size (KB) = 805572 Test 024 rap_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/hrrr_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/hrrr_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/hrrr_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/hrrr_control_debug Checking test 025 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 142.857558 -0:The maximum resident set size (KB) = 801808 +0:The total amount of wall time = 142.177776 +0:The maximum resident set size (KB) = 801432 Test 025 hrrr_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rap_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/rap_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rap_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rap_diag_debug Checking test 026 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 155.309621 -0:The maximum resident set size (KB) = 888500 +0:The total amount of wall time = 152.245369 +0:The maximum resident set size (KB) = 887972 Test 026 rap_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rap_noah_sfcdiff_cires_ugwp_debug Checking test 027 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 239.835925 -0:The maximum resident set size (KB) = 804184 +0:The total amount of wall time = 233.467355 +0:The maximum resident set size (KB) = 804560 Test 027 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rap_progcld_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/rap_progcld_thompson_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rap_progcld_thompson_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rap_progcld_thompson_debug Checking test 028 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 145.613986 +0:The total amount of wall time = 145.127812 0:The maximum resident set size (KB) = 805428 Test 028 rap_progcld_thompson_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rrfs_v1beta_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/rrfs_v1beta_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rrfs_v1beta_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rrfs_v1beta_debug Checking test 029 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 143.850121 -0:The maximum resident set size (KB) = 800940 +0:The total amount of wall time = 143.939482 +0:The maximum resident set size (KB) = 801108 Test 029 rrfs_v1beta_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/control_ras_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/control_ras_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/control_ras_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/control_ras_debug Checking test 030 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 80.454488 -0:The maximum resident set size (KB) = 446016 +0:The total amount of wall time = 80.234776 +0:The maximum resident set size (KB) = 446312 Test 030 control_ras_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/control_stochy_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/control_stochy_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/control_stochy_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/control_stochy_debug Checking test 031 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 88.264750 -0:The maximum resident set size (KB) = 438392 +0:The total amount of wall time = 88.389506 +0:The maximum resident set size (KB) = 438764 Test 031 control_stochy_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/control_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/control_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/control_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/control_debug_p8 Checking test 032 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 90.680233 -0:The maximum resident set size (KB) = 1221416 +0:The total amount of wall time = 90.483329 +0:The maximum resident set size (KB) = 1220984 Test 032 control_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 033 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 439.492326 -0:The maximum resident set size (KB) = 641612 +0:The total amount of wall time = 435.166829 +0:The maximum resident set size (KB) = 641652 Test 033 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 034 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 259.042542 -0:The maximum resident set size (KB) = 660612 +0:The total amount of wall time = 255.594807 +0:The maximum resident set size (KB) = 660812 Test 034 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/rrfs_conus13km_hrrr_warm_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rrfs_conus13km_hrrr_warm_debugs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rrfs_conus13km_hrrr_warm_debug Checking test 035 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 398.932235 -0:The maximum resident set size (KB) = 619956 +0:The total amount of wall time = 394.597782 +0:The maximum resident set size (KB) = 620416 Test 035 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/control_wam_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/control_wam_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/control_wam_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/control_wam_debug Checking test 036 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 143.410405 -0:The maximum resident set size (KB) = 182220 +0:The total amount of wall time = 139.234828 +0:The maximum resident set size (KB) = 182304 Test 036 control_wam_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/rap_control_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rap_control_dyn32_phy32 Checking test 037 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1106,14 +1106,14 @@ Checking test 037 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 703.321888 -0:The maximum resident set size (KB) = 672148 +0:The total amount of wall time = 700.957115 +0:The maximum resident set size (KB) = 673280 Test 037 rap_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/hrrr_control_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/hrrr_control_dyn32_phy32 Checking test 038 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1160,14 +1160,14 @@ Checking test 038 hrrr_control_dyn32_phy32 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 = 355.128153 -0:The maximum resident set size (KB) = 670720 +0:The total amount of wall time = 355.835023 +0:The maximum resident set size (KB) = 670832 Test 038 hrrr_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/rap_2threads_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rap_2threads_dyn32_phy32 Checking test 039 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1214,14 +1214,14 @@ Checking test 039 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 641.772632 -0:The maximum resident set size (KB) = 719876 +0:The total amount of wall time = 638.283018 +0:The maximum resident set size (KB) = 719624 Test 039 rap_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/hrrr_control_2threads_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/hrrr_control_2threads_dyn32_phy32 Checking test 040 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1268,14 +1268,14 @@ Checking test 040 hrrr_control_2threads_dyn32_phy32 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 = 317.315899 -0:The maximum resident set size (KB) = 717156 +0:The total amount of wall time = 320.044041 +0:The maximum resident set size (KB) = 716676 Test 040 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/hrrr_control_decomp_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/hrrr_control_decomp_dyn32_phy32 Checking test 041 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1322,14 +1322,14 @@ Checking test 041 hrrr_control_decomp_dyn32_phy32 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 = 353.212610 -0:The maximum resident set size (KB) = 669760 +0:The total amount of wall time = 353.921498 +0:The maximum resident set size (KB) = 670752 Test 041 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/rap_restart_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rap_restart_dyn32_phy32 Checking test 042 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1368,14 +1368,14 @@ Checking test 042 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 519.634086 -0:The maximum resident set size (KB) = 511388 +0:The total amount of wall time = 518.811221 +0:The maximum resident set size (KB) = 511312 Test 042 rap_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/hrrr_control_restart_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/hrrr_control_restart_dyn32_phy32 Checking test 043 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1414,14 +1414,14 @@ Checking test 043 hrrr_control_restart_dyn32_phy32 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 = 179.670973 -0:The maximum resident set size (KB) = 508448 +0:The total amount of wall time = 179.870658 +0:The maximum resident set size (KB) = 507124 Test 043 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rap_control_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/rap_control_dyn64_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rap_control_dyn64_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rap_control_dyn64_phy32 Checking test 044 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1468,56 +1468,56 @@ Checking test 044 rap_control_dyn64_phy32 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 = 415.751391 -0:The maximum resident set size (KB) = 694208 +0:The total amount of wall time = 412.280473 +0:The maximum resident set size (KB) = 692856 Test 044 rap_control_dyn64_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/rap_control_debug_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rap_control_debug_dyn32_phy32 Checking test 045 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 143.994573 -0:The maximum resident set size (KB) = 687900 +0:The total amount of wall time = 144.140106 +0:The maximum resident set size (KB) = 687848 Test 045 rap_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/hrrr_control_debug_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/hrrr_control_debug_dyn32_phy32 Checking test 046 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 140.793065 -0:The maximum resident set size (KB) = 683948 +0:The total amount of wall time = 140.445142 +0:The maximum resident set size (KB) = 684340 Test 046 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/rap_control_dyn64_phy32_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rap_control_debug_dyn64_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rap_control_dyn64_phy32_debug Checking test 047 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 147.984731 -0:The maximum resident set size (KB) = 707056 +0:The total amount of wall time = 147.804961 +0:The maximum resident set size (KB) = 707604 Test 047 rap_control_dyn64_phy32_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/cpld_control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/cpld_control_p8 Checking test 048 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1582,14 +1582,14 @@ Checking test 048 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 493.631418 -0:The maximum resident set size (KB) = 3159256 +0:The total amount of wall time = 501.776562 +0:The maximum resident set size (KB) = 3158772 Test 048 cpld_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/cpld_control_nowave_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/cpld_control_c96_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/cpld_control_nowave_noaero_p8 Checking test 049 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1651,14 +1651,14 @@ Checking test 049 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 249.826197 -0:The maximum resident set size (KB) = 1240724 +0:The total amount of wall time = 250.062030 +0:The maximum resident set size (KB) = 1240384 Test 049 cpld_control_nowave_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/cpld_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/cpld_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/cpld_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/cpld_debug_p8 Checking test 050 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1711,25 +1711,25 @@ Checking test 050 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 200.293996 -0:The maximum resident set size (KB) = 3173280 +0:The total amount of wall time = 201.137488 +0:The maximum resident set size (KB) = 3173204 Test 050 cpld_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/GNU/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54803/datm_cdeps_control_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/datm_cdeps_control_cfsr Checking test 051 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 173.751477 -0:The maximum resident set size (KB) = 671512 +0:The total amount of wall time = 178.653315 +0:The maximum resident set size (KB) = 676068 Test 051 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Tue Apr 4 15:34:29 MDT 2023 -Elapsed time: 00h:55m:59s. Have a nice day! +Wed Apr 5 20:41:10 MDT 2023 +Elapsed time: 00h:32m:51s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 1806b437737..d1d7b60cbb5 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,42 +1,42 @@ -Wed Apr 5 07:21:39 MDT 2023 +Wed Apr 5 19:53:24 MDT 2023 Start Regression test -Compile 001 elapsed time 1402 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 1422 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 1374 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 457 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 393 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 1061 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 1067 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 1760 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 1070 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 984 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 011 elapsed time 911 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 814 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 1292 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 408 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 270 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 841 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 822 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 281 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 274 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 1130 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 021 elapsed time 346 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 1599 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 1100 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 024 elapsed time 428 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 204 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 428 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 111 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 948 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 988 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 893 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 862 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 312 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 1055 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8_mixedmode -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/cpld_control_p8_mixedmode +Compile 001 elapsed time 1504 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1394 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 1365 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 450 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 390 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 1062 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 1075 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 1799 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 1066 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 975 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 011 elapsed time 921 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 804 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 1300 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 392 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 258 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 839 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 838 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 274 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 279 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 1125 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 021 elapsed time 338 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 1572 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 1105 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 024 elapsed time 436 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 195 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 433 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 109 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 955 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 978 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 895 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 876 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 291 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 1044 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8_mixedmode +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -101,14 +101,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 321.137180 -0:The maximum resident set size (KB) = 2698376 +0:The total amount of wall time = 309.701780 +0:The maximum resident set size (KB) = 2698496 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_gfsv17 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/cpld_control_gfsv17 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_gfsv17 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -172,14 +172,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 282.381043 -0:The maximum resident set size (KB) = 1437668 +0:The total amount of wall time = 283.089224 +0:The maximum resident set size (KB) = 1437292 Test 002 cpld_control_gfsv17 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/cpld_control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -244,14 +244,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 322.676671 -0:The maximum resident set size (KB) = 2715496 +0:The total amount of wall time = 321.490867 +0:The maximum resident set size (KB) = 2715308 Test 003 cpld_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/cpld_restart_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -304,14 +304,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 179.497691 -0:The maximum resident set size (KB) = 2576524 +0:The total amount of wall time = 185.820314 +0:The maximum resident set size (KB) = 2576604 Test 004 cpld_restart_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/cpld_control_qr_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -376,14 +376,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 327.987561 -0:The maximum resident set size (KB) = 2719752 +0:The total amount of wall time = 318.031019 +0:The maximum resident set size (KB) = 2719620 Test 005 cpld_control_qr_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/cpld_restart_qr_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -436,14 +436,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 194.039081 -0:The maximum resident set size (KB) = 2593712 +0:The total amount of wall time = 200.015582 +0:The maximum resident set size (KB) = 2593588 Test 006 cpld_restart_qr_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/cpld_2threads_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -496,14 +496,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 249.612234 -0:The maximum resident set size (KB) = 3177832 +0:The total amount of wall time = 249.604068 +0:The maximum resident set size (KB) = 3178180 Test 007 cpld_2threads_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/cpld_decomp_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -556,14 +556,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 324.365028 -0:The maximum resident set size (KB) = 2720216 +0:The total amount of wall time = 313.000753 +0:The maximum resident set size (KB) = 2720616 Test 008 cpld_decomp_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/cpld_mpi_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -616,14 +616,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 273.173568 -0:The maximum resident set size (KB) = 2680708 +0:The total amount of wall time = 276.892139 +0:The maximum resident set size (KB) = 2680356 Test 009 cpld_mpi_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_ciceC_p8 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/cpld_control_ciceC_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_ciceC_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -688,14 +688,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 322.791008 -0:The maximum resident set size (KB) = 2715076 +0:The total amount of wall time = 323.824721 +0:The maximum resident set size (KB) = 2715796 Test 010 cpld_control_ciceC_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/cpld_control_c192_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_c192_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/cpld_control_c192_p8 Checking test 011 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -748,14 +748,14 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -0:The total amount of wall time = 630.123238 -0:The maximum resident set size (KB) = 3352412 +0:The total amount of wall time = 659.097717 +0:The maximum resident set size (KB) = 3353776 Test 011 cpld_control_c192_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/cpld_restart_c192_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_c192_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/cpld_restart_c192_p8 Checking test 012 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -808,14 +808,14 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -0:The total amount of wall time = 384.008355 -0:The maximum resident set size (KB) = 3276008 +0:The total amount of wall time = 385.385539 +0:The maximum resident set size (KB) = 3275792 Test 012 cpld_restart_c192_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_noaero_p8 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/cpld_control_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/cpld_control_noaero_p8 Checking test 013 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -879,14 +879,14 @@ Checking test 013 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 281.932646 -0:The maximum resident set size (KB) = 1435796 +0:The total amount of wall time = 296.221875 +0:The maximum resident set size (KB) = 1435740 Test 013 cpld_control_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/cpld_control_nowave_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_c96_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/cpld_control_nowave_noaero_p8 Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -948,14 +948,14 @@ Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 195.123588 -0:The maximum resident set size (KB) = 1453132 +0:The total amount of wall time = 196.295655 +0:The maximum resident set size (KB) = 1453148 Test 014 cpld_control_nowave_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_debug_p8 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/cpld_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/cpld_debug_p8 Checking test 015 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1008,14 +1008,14 @@ Checking test 015 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 473.788324 -0:The maximum resident set size (KB) = 2786256 +0:The total amount of wall time = 350.661610 +0:The maximum resident set size (KB) = 2779076 Test 015 cpld_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_debug_noaero_p8 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/cpld_debug_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_debug_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/cpld_debug_noaero_p8 Checking test 016 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1067,14 +1067,14 @@ Checking test 016 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 349.098175 -0:The maximum resident set size (KB) = 1460448 +0:The total amount of wall time = 299.831612 +0:The maximum resident set size (KB) = 1453784 Test 016 cpld_debug_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_noaero_p8_agrid -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/cpld_control_noaero_p8_agrid +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_noaero_p8_agrid +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/cpld_control_noaero_p8_agrid Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1136,14 +1136,14 @@ Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 253.383462 -0:The maximum resident set size (KB) = 1456916 +0:The total amount of wall time = 250.687164 +0:The maximum resident set size (KB) = 1456844 Test 017 cpld_control_noaero_p8_agrid PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_c48 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/cpld_control_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/cpld_control_c48 Checking test 018 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1193,14 +1193,14 @@ Checking test 018 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 606.355329 -0:The maximum resident set size (KB) = 2586468 +0:The total amount of wall time = 606.256689 +0:The maximum resident set size (KB) = 2586252 Test 018 cpld_control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/cpld_warmstart_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_warmstart_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/cpld_warmstart_c48 Checking test 019 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1250,14 +1250,14 @@ Checking test 019 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -0:The total amount of wall time = 160.899883 -0:The maximum resident set size (KB) = 2601728 +0:The total amount of wall time = 161.745036 +0:The maximum resident set size (KB) = 2601736 Test 019 cpld_warmstart_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/cpld_restart_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_warmstart_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/cpld_restart_c48 Checking test 020 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1307,14 +1307,14 @@ Checking test 020 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -0:The total amount of wall time = 84.320303 -0:The maximum resident set size (KB) = 2018996 +0:The total amount of wall time = 85.573502 +0:The maximum resident set size (KB) = 2018796 Test 020 cpld_restart_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_CubedSphereGrid -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_CubedSphereGrid +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_CubedSphereGrid +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_CubedSphereGrid Checking test 021 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1341,28 +1341,28 @@ Checking test 021 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -0:The total amount of wall time = 142.242822 -0:The maximum resident set size (KB) = 454236 +0:The total amount of wall time = 142.261114 +0:The maximum resident set size (KB) = 454228 Test 021 control_CubedSphereGrid PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_CubedSphereGrid_parallel -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_CubedSphereGrid_parallel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_CubedSphereGrid_parallel +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_CubedSphereGrid_parallel Checking test 022 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK -0:The total amount of wall time = 139.303421 -0:The maximum resident set size (KB) = 454316 +0:The total amount of wall time = 136.828167 +0:The maximum resident set size (KB) = 454064 Test 022 control_CubedSphereGrid_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_latlon -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_latlon +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_latlon +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_latlon Checking test 023 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1373,32 +1373,32 @@ Checking test 023 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 147.179208 -0:The maximum resident set size (KB) = 454324 +0:The total amount of wall time = 146.126792 +0:The maximum resident set size (KB) = 454148 Test 023 control_latlon PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wrtGauss_netcdf_parallel -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_wrtGauss_netcdf_parallel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wrtGauss_netcdf_parallel +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_wrtGauss_netcdf_parallel Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 146.255723 -0:The maximum resident set size (KB) = 454144 +0:The total amount of wall time = 149.940324 +0:The maximum resident set size (KB) = 454168 Test 024 control_wrtGauss_netcdf_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c48 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_c48 Checking test 025 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1437,14 +1437,14 @@ Checking test 025 control_c48 results .... Comparing 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.439839 -0:The maximum resident set size (KB) = 633504 +0:The total amount of wall time = 441.953889 +0:The maximum resident set size (KB) = 633472 Test 025 control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c192 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_c192 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c192 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_c192 Checking test 026 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1455,14 +1455,14 @@ Checking test 026 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 592.687492 -0:The maximum resident set size (KB) = 560296 +0:The total amount of wall time = 594.984723 +0:The maximum resident set size (KB) = 560256 Test 026 control_c192 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c384 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_c384 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c384 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_c384 Checking test 027 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1473,14 +1473,14 @@ Checking test 027 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 587.230337 -0:The maximum resident set size (KB) = 899416 +0:The total amount of wall time = 586.059219 +0:The maximum resident set size (KB) = 899104 Test 027 control_c384 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c384gdas -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_c384gdas +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c384gdas +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_c384gdas Checking test 028 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1523,14 +1523,14 @@ Checking test 028 control_c384gdas 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 = 515.345418 -0:The maximum resident set size (KB) = 1026748 +0:The total amount of wall time = 513.566833 +0:The maximum resident set size (KB) = 1026848 Test 028 control_c384gdas PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_stochy -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_stochy +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_stochy +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_stochy Checking test 029 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1541,28 +1541,28 @@ Checking test 029 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 99.302487 -0:The maximum resident set size (KB) = 459204 +0:The total amount of wall time = 98.259702 +0:The maximum resident set size (KB) = 459112 Test 029 control_stochy PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_stochy -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_stochy_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_stochy +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_stochy_restart Checking test 030 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 52.931530 -0:The maximum resident set size (KB) = 226724 +0:The total amount of wall time = 53.354821 +0:The maximum resident set size (KB) = 226508 Test 030 control_stochy_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_lndp -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_lndp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_lndp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_lndp Checking test 031 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1573,14 +1573,14 @@ Checking test 031 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 91.497226 -0:The maximum resident set size (KB) = 458180 +0:The total amount of wall time = 88.675563 +0:The maximum resident set size (KB) = 458152 Test 031 control_lndp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_iovr4 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_iovr4 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_iovr4 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_iovr4 Checking test 032 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1595,14 +1595,14 @@ Checking test 032 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 145.035231 -0:The maximum resident set size (KB) = 454240 +0:The total amount of wall time = 148.035047 +0:The maximum resident set size (KB) = 454256 Test 032 control_iovr4 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_iovr5 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_iovr5 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_iovr5 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_iovr5 Checking test 033 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1617,14 +1617,14 @@ Checking test 033 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 148.580217 -0:The maximum resident set size (KB) = 454288 +0:The total amount of wall time = 147.883385 +0:The maximum resident set size (KB) = 454260 Test 033 control_iovr5 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_p8 Checking test 034 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1671,14 +1671,14 @@ Checking test 034 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 177.535429 -0:The maximum resident set size (KB) = 1423884 +0:The total amount of wall time = 181.133109 +0:The maximum resident set size (KB) = 1423832 Test 034 control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_restart_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_restart_p8 Checking test 035 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1717,14 +1717,14 @@ Checking test 035 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 95.606583 -0:The maximum resident set size (KB) = 582888 +0:The total amount of wall time = 96.261395 +0:The maximum resident set size (KB) = 582824 Test 035 control_restart_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_qr_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_qr_p8 Checking test 036 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1771,14 +1771,14 @@ Checking test 036 control_qr_p8 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 = 177.579240 -0:The maximum resident set size (KB) = 1427204 +0:The total amount of wall time = 183.118070 +0:The maximum resident set size (KB) = 1427208 Test 036 control_qr_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_restart_qr_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_restart_qr_p8 Checking test 037 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1817,14 +1817,14 @@ Checking test 037 control_restart_qr_p8 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 = 98.386638 -0:The maximum resident set size (KB) = 596840 +0:The total amount of wall time = 98.433149 +0:The maximum resident set size (KB) = 596824 Test 037 control_restart_qr_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_decomp_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_decomp_p8 Checking test 038 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1867,14 +1867,14 @@ Checking test 038 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 188.240563 -0:The maximum resident set size (KB) = 1418364 +0:The total amount of wall time = 184.077411 +0:The maximum resident set size (KB) = 1418344 Test 038 control_decomp_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_2threads_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_2threads_p8 Checking test 039 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1917,14 +1917,14 @@ Checking test 039 control_2threads_p8 results .... Comparing 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.911058 -0:The maximum resident set size (KB) = 1510196 +0:The total amount of wall time = 171.038032 +0:The maximum resident set size (KB) = 1510220 Test 039 control_2threads_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_lndp -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_p8_lndp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_lndp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_p8_lndp Checking test 040 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1943,14 +1943,14 @@ Checking test 040 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -0:The total amount of wall time = 326.627746 -0:The maximum resident set size (KB) = 1424932 +0:The total amount of wall time = 336.895002 +0:The maximum resident set size (KB) = 1424868 Test 040 control_p8_lndp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_rrtmgp -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_p8_rrtmgp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_rrtmgp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_p8_rrtmgp Checking test 041 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1997,14 +1997,14 @@ Checking test 041 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 247.024743 -0:The maximum resident set size (KB) = 1480252 +0:The total amount of wall time = 253.217866 +0:The maximum resident set size (KB) = 1480228 Test 041 control_p8_rrtmgp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_mynn -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_p8_mynn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_mynn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_p8_mynn Checking test 042 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2051,14 +2051,14 @@ Checking test 042 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 181.724408 -0:The maximum resident set size (KB) = 1427936 +0:The total amount of wall time = 184.481915 +0:The maximum resident set size (KB) = 1427880 Test 042 control_p8_mynn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/merra2_thompson -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/merra2_thompson +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/merra2_thompson +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/merra2_thompson Checking test 043 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2105,14 +2105,14 @@ Checking test 043 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 207.162754 -0:The maximum resident set size (KB) = 1429664 +0:The total amount of wall time = 210.444699 +0:The maximum resident set size (KB) = 1429604 Test 043 merra2_thompson PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/regional_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/regional_control Checking test 044 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2123,28 +2123,28 @@ Checking test 044 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 329.885819 -0:The maximum resident set size (KB) = 604760 +0:The total amount of wall time = 341.914507 +0:The maximum resident set size (KB) = 604752 Test 044 regional_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/regional_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/regional_restart Checking test 045 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 176.928235 -0:The maximum resident set size (KB) = 594136 +0:The total amount of wall time = 172.808086 +0:The maximum resident set size (KB) = 594044 Test 045 regional_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/regional_control_qr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/regional_control_qr Checking test 046 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2155,28 +2155,28 @@ Checking test 046 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 343.389652 -0:The maximum resident set size (KB) = 604792 +0:The total amount of wall time = 343.609119 +0:The maximum resident set size (KB) = 604768 Test 046 regional_control_qr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/regional_restart_qr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/regional_restart_qr Checking test 047 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 174.284573 -0:The maximum resident set size (KB) = 594132 +0:The total amount of wall time = 169.265220 +0:The maximum resident set size (KB) = 594116 Test 047 regional_restart_qr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/regional_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/regional_decomp Checking test 048 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2187,14 +2187,14 @@ Checking test 048 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 357.391937 -0:The maximum resident set size (KB) = 598188 +0:The total amount of wall time = 357.856326 +0:The maximum resident set size (KB) = 598768 Test 048 regional_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/regional_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/regional_2threads Checking test 049 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2205,14 +2205,14 @@ Checking test 049 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 201.131767 -0:The maximum resident set size (KB) = 611472 +0:The total amount of wall time = 201.158100 +0:The maximum resident set size (KB) = 611264 Test 049 regional_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_noquilt -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/regional_noquilt +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_noquilt +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/regional_noquilt Checking test 050 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2220,28 +2220,28 @@ Checking test 050 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -0:The total amount of wall time = 366.008375 -0:The maximum resident set size (KB) = 599036 +0:The total amount of wall time = 366.968820 +0:The maximum resident set size (KB) = 598964 Test 050 regional_noquilt PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_netcdf_parallel -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/regional_netcdf_parallel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_netcdf_parallel +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/regional_netcdf_parallel Checking test 051 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK + Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf006.nc .........OK -0:The total amount of wall time = 337.452700 -0:The maximum resident set size (KB) = 596676 +0:The total amount of wall time = 338.654586 +0:The maximum resident set size (KB) = 596592 Test 051 regional_netcdf_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/regional_2dwrtdecomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/regional_2dwrtdecomp Checking test 052 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2252,14 +2252,14 @@ Checking test 052 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 342.014175 -0:The maximum resident set size (KB) = 604808 +0:The total amount of wall time = 341.761167 +0:The maximum resident set size (KB) = 604644 Test 052 regional_2dwrtdecomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/fv3_regional_wofs -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/regional_wofs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/fv3_regional_wofs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/regional_wofs Checking test 053 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2270,14 +2270,14 @@ Checking test 053 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 415.564332 -0:The maximum resident set size (KB) = 275804 +0:The total amount of wall time = 416.725922 +0:The maximum resident set size (KB) = 275760 Test 053 regional_wofs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/rap_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rap_control Checking test 054 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2324,14 +2324,14 @@ Checking test 054 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 479.881069 -0:The maximum resident set size (KB) = 823552 +0:The total amount of wall time = 481.483324 +0:The maximum resident set size (KB) = 823492 Test 054 rap_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_spp_sppt_shum_skeb -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/regional_spp_sppt_shum_skeb +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_spp_sppt_shum_skeb +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/regional_spp_sppt_shum_skeb Checking test 055 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2342,14 +2342,14 @@ Checking test 055 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 257.077538 -0:The maximum resident set size (KB) = 952320 +0:The total amount of wall time = 255.751789 +0:The maximum resident set size (KB) = 952244 Test 055 regional_spp_sppt_shum_skeb PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/rap_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rap_decomp Checking test 056 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2396,14 +2396,14 @@ Checking test 056 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 500.994130 -0:The maximum resident set size (KB) = 822484 +0:The total amount of wall time = 504.293135 +0:The maximum resident set size (KB) = 822388 Test 056 rap_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/rap_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rap_2threads Checking test 057 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2450,14 +2450,14 @@ Checking test 057 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 459.707423 -0:The maximum resident set size (KB) = 893424 +0:The total amount of wall time = 453.278523 +0:The maximum resident set size (KB) = 893380 Test 057 rap_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/rap_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rap_restart Checking test 058 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2496,14 +2496,14 @@ Checking test 058 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 240.075199 -0:The maximum resident set size (KB) = 571268 +0:The total amount of wall time = 241.238889 +0:The maximum resident set size (KB) = 571260 Test 058 rap_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/rap_sfcdiff +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rap_sfcdiff Checking test 059 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2550,14 +2550,14 @@ Checking test 059 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 471.917613 -0:The maximum resident set size (KB) = 823436 +0:The total amount of wall time = 480.166461 +0:The maximum resident set size (KB) = 823420 Test 059 rap_sfcdiff PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/rap_sfcdiff_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rap_sfcdiff_decomp Checking test 060 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2604,14 +2604,14 @@ Checking test 060 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 506.638140 -0:The maximum resident set size (KB) = 822356 +0:The total amount of wall time = 502.525194 +0:The maximum resident set size (KB) = 822296 Test 060 rap_sfcdiff_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/rap_sfcdiff_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rap_sfcdiff_restart Checking test 061 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2650,14 +2650,14 @@ Checking test 061 rap_sfcdiff_restart results .... Comparing 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.495469 -0:The maximum resident set size (KB) = 570564 +0:The total amount of wall time = 355.742087 +0:The maximum resident set size (KB) = 570816 Test 061 rap_sfcdiff_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/hrrr_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hrrr_control Checking test 062 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2704,14 +2704,14 @@ Checking test 062 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 454.770807 -0:The maximum resident set size (KB) = 820916 +0:The total amount of wall time = 465.028529 +0:The maximum resident set size (KB) = 820884 Test 062 hrrr_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/hrrr_control_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hrrr_control_decomp Checking test 063 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2758,14 +2758,14 @@ Checking test 063 hrrr_control_decomp results .... Comparing 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.203411 -0:The maximum resident set size (KB) = 820688 +0:The total amount of wall time = 484.130375 +0:The maximum resident set size (KB) = 820768 Test 063 hrrr_control_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/hrrr_control_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hrrr_control_2threads Checking test 064 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2812,14 +2812,14 @@ Checking test 064 hrrr_control_2threads results .... Comparing 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.076515 -0:The maximum resident set size (KB) = 888436 +0:The total amount of wall time = 437.700287 +0:The maximum resident set size (KB) = 888312 Test 064 hrrr_control_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/hrrr_control_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hrrr_control_restart Checking test 065 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2858,14 +2858,14 @@ Checking test 065 hrrr_control_restart results .... Comparing 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.549158 -0:The maximum resident set size (KB) = 566392 +0:The total amount of wall time = 344.173017 +0:The maximum resident set size (KB) = 566540 Test 065 hrrr_control_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1beta -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/rrfs_v1beta +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1beta +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rrfs_v1beta Checking test 066 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2912,14 +2912,14 @@ Checking test 066 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 473.785125 -0:The maximum resident set size (KB) = 819404 +0:The total amount of wall time = 473.084398 +0:The maximum resident set size (KB) = 819496 Test 066 rrfs_v1beta PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1nssl -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/rrfs_v1nssl +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1nssl +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rrfs_v1nssl Checking test 067 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2934,14 +2934,14 @@ Checking test 067 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 587.200263 -0:The maximum resident set size (KB) = 508812 +0:The total amount of wall time = 585.464611 +0:The maximum resident set size (KB) = 508724 Test 067 rrfs_v1nssl PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/rrfs_v1nssl_nohailnoccn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rrfs_v1nssl_nohailnoccn Checking test 068 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2956,14 +2956,14 @@ Checking test 068 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 570.254322 -0:The maximum resident set size (KB) = 502700 +0:The total amount of wall time = 571.605504 +0:The maximum resident set size (KB) = 502580 Test 068 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rrfs_smoke_conus13km_hrrr_warm Checking test 069 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2972,14 +2972,14 @@ Checking test 069 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 152.632535 -0:The maximum resident set size (KB) = 675300 +0:The total amount of wall time = 152.059894 +0:The maximum resident set size (KB) = 675272 Test 069 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 070 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2988,14 +2988,14 @@ Checking test 070 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 93.027499 -0:The maximum resident set size (KB) = 693976 +0:The total amount of wall time = 92.026044 +0:The maximum resident set size (KB) = 693924 Test 070 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/rrfs_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rrfs_conus13km_hrrr_warm Checking test 071 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3004,14 +3004,14 @@ Checking test 071 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 136.917599 -0:The maximum resident set size (KB) = 654128 +0:The total amount of wall time = 134.932818 +0:The maximum resident set size (KB) = 654140 Test 071 rrfs_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rrfs_smoke_conus13km_radar_tten_warm Checking test 072 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3020,26 +3020,26 @@ Checking test 072 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 153.473826 -0:The maximum resident set size (KB) = 677960 +0:The total amount of wall time = 150.207148 +0:The maximum resident set size (KB) = 677924 Test 072 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 073 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 71.114562 -0:The maximum resident set size (KB) = 632232 +0:The total amount of wall time = 70.662713 +0:The maximum resident set size (KB) = 632272 Test 073 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmg -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_csawmg +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmg +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_csawmg Checking test 074 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3050,14 +3050,14 @@ Checking test 074 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 402.007846 -0:The maximum resident set size (KB) = 527728 +0:The total amount of wall time = 398.493041 +0:The maximum resident set size (KB) = 527696 Test 074 control_csawmg PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmgt -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_csawmgt +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmgt +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_csawmgt Checking test 075 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3068,14 +3068,14 @@ Checking test 075 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 374.515397 -0:The maximum resident set size (KB) = 528360 +0:The total amount of wall time = 393.338022 +0:The maximum resident set size (KB) = 528312 Test 075 control_csawmgt PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_ras -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_ras +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_ras +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_ras Checking test 076 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3086,26 +3086,26 @@ Checking test 076 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 206.368983 -0:The maximum resident set size (KB) = 491280 +0:The total amount of wall time = 205.039259 +0:The maximum resident set size (KB) = 491224 Test 076 control_ras PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wam -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_wam +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wam +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_wam Checking test 077 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -0:The total amount of wall time = 128.924786 -0:The maximum resident set size (KB) = 206268 +0:The total amount of wall time = 129.415496 +0:The maximum resident set size (KB) = 206388 Test 077 control_wam PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_faster -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_p8_faster +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_faster +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_p8_faster Checking test 078 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3152,14 +3152,14 @@ Checking test 078 control_p8_faster results .... Comparing 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.788403 -0:The maximum resident set size (KB) = 1423772 +0:The total amount of wall time = 171.055975 +0:The maximum resident set size (KB) = 1423796 Test 078 control_p8_faster PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control_faster -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/regional_control_faster +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control_faster +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/regional_control_faster Checking test 079 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3170,56 +3170,56 @@ Checking test 079 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 320.128547 -0:The maximum resident set size (KB) = 604608 +0:The total amount of wall time = 320.972279 +0:The maximum resident set size (KB) = 604616 Test 079 regional_control_faster PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 080 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 893.379856 -0:The maximum resident set size (KB) = 709744 +0:The total amount of wall time = 876.382640 +0:The maximum resident set size (KB) = 704740 Test 080 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 081 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 514.974699 -0:The maximum resident set size (KB) = 729596 +0:The total amount of wall time = 499.436278 +0:The maximum resident set size (KB) = 724388 Test 081 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/rrfs_conus13km_hrrr_warm_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rrfs_conus13km_hrrr_warm_debug Checking test 082 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 791.244085 -0:The maximum resident set size (KB) = 688224 +0:The total amount of wall time = 776.409066 +0:The maximum resident set size (KB) = 683336 Test 082 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_CubedSphereGrid_debug -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_CubedSphereGrid_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_CubedSphereGrid_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_CubedSphereGrid_debug Checking test 083 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3246,334 +3246,334 @@ Checking test 083 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -0:The total amount of wall time = 174.760886 -0:The maximum resident set size (KB) = 622476 +0:The total amount of wall time = 155.483877 +0:The maximum resident set size (KB) = 617540 Test 083 control_CubedSphereGrid_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_wrtGauss_netcdf_parallel_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_wrtGauss_netcdf_parallel_debug Checking test 084 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 165.182402 -0:The maximum resident set size (KB) = 620604 +0:The total amount of wall time = 156.368436 +0:The maximum resident set size (KB) = 615668 Test 084 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_stochy_debug -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_stochy_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_stochy_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_stochy_debug Checking test 085 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 183.835581 -0:The maximum resident set size (KB) = 626064 +0:The total amount of wall time = 175.355286 +0:The maximum resident set size (KB) = 621260 Test 085 control_stochy_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_lndp_debug -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_lndp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_lndp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_lndp_debug Checking test 086 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 165.823979 -0:The maximum resident set size (KB) = 624912 +0:The total amount of wall time = 157.102728 +0:The maximum resident set size (KB) = 619920 Test 086 control_lndp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmg_debug -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_csawmg_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmg_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_csawmg_debug Checking test 087 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 255.636941 -0:The maximum resident set size (KB) = 671428 +0:The total amount of wall time = 248.676896 +0:The maximum resident set size (KB) = 666380 Test 087 control_csawmg_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmgt_debug -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_csawmgt_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmgt_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_csawmgt_debug Checking test 088 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 252.497551 -0:The maximum resident set size (KB) = 672348 +0:The total amount of wall time = 245.976095 +0:The maximum resident set size (KB) = 667364 Test 088 control_csawmgt_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_ras_debug -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_ras_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_ras_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_ras_debug Checking test 089 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 167.195048 -0:The maximum resident set size (KB) = 635204 +0:The total amount of wall time = 159.627589 +0:The maximum resident set size (KB) = 630316 Test 089 control_ras_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_diag_debug -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_diag_debug Checking test 090 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 169.336971 -0:The maximum resident set size (KB) = 679936 +0:The total amount of wall time = 160.344232 +0:The maximum resident set size (KB) = 674984 Test 090 control_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_debug_p8 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_debug_p8 Checking test 091 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 183.495324 -0:The maximum resident set size (KB) = 1447344 +0:The total amount of wall time = 175.839485 +0:The maximum resident set size (KB) = 1442372 Test 091 control_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_debug -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/regional_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/regional_debug Checking test 092 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 1040.007761 -0:The maximum resident set size (KB) = 630768 +0:The total amount of wall time = 1034.438480 +0:The maximum resident set size (KB) = 625872 Test 092 regional_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/rap_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rap_control_debug Checking test 093 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 295.464097 -0:The maximum resident set size (KB) = 991692 +0:The total amount of wall time = 286.127705 +0:The maximum resident set size (KB) = 986612 Test 093 rap_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_debug -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/hrrr_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hrrr_control_debug Checking test 094 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 290.703305 -0:The maximum resident set size (KB) = 989204 +0:The total amount of wall time = 280.785839 +0:The maximum resident set size (KB) = 984124 Test 094 hrrr_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/rap_unified_drag_suite_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rap_unified_drag_suite_debug Checking test 095 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 299.258328 -0:The maximum resident set size (KB) = 991712 +0:The total amount of wall time = 286.486253 +0:The maximum resident set size (KB) = 986580 Test 095 rap_unified_drag_suite_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_diag_debug -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/rap_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rap_diag_debug Checking test 096 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 308.634237 -0:The maximum resident set size (KB) = 1074872 +0:The total amount of wall time = 298.300461 +0:The maximum resident set size (KB) = 1069832 Test 096 rap_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/rap_cires_ugwp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rap_cires_ugwp_debug Checking test 097 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 301.984344 -0:The maximum resident set size (KB) = 990864 +0:The total amount of wall time = 292.650670 +0:The maximum resident set size (KB) = 985824 Test 097 rap_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/rap_unified_ugwp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rap_unified_ugwp_debug Checking test 098 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 302.611340 -0:The maximum resident set size (KB) = 991796 +0:The total amount of wall time = 293.799461 +0:The maximum resident set size (KB) = 986628 Test 098 rap_unified_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_lndp_debug -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/rap_lndp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_lndp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rap_lndp_debug Checking test 099 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 298.395932 -0:The maximum resident set size (KB) = 992444 +0:The total amount of wall time = 289.381618 +0:The maximum resident set size (KB) = 987236 Test 099 rap_lndp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_flake_debug -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/rap_flake_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_flake_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rap_flake_debug Checking test 100 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 296.040198 -0:The maximum resident set size (KB) = 991680 +0:The total amount of wall time = 286.769912 +0:The maximum resident set size (KB) = 986660 Test 100 rap_flake_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_progcld_thompson_debug -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/rap_progcld_thompson_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_progcld_thompson_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rap_progcld_thompson_debug Checking test 101 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 296.156020 -0:The maximum resident set size (KB) = 991680 +0:The total amount of wall time = 287.499419 +0:The maximum resident set size (KB) = 986604 Test 101 rap_progcld_thompson_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_noah_debug -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/rap_noah_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_noah_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rap_noah_debug Checking test 102 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 290.392572 -0:The maximum resident set size (KB) = 989424 +0:The total amount of wall time = 281.623663 +0:The maximum resident set size (KB) = 984676 Test 102 rap_noah_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff_debug -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/rap_sfcdiff_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rap_sfcdiff_debug Checking test 103 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 300.636610 -0:The maximum resident set size (KB) = 991516 +0:The total amount of wall time = 287.815818 +0:The maximum resident set size (KB) = 986448 Test 103 rap_sfcdiff_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rap_noah_sfcdiff_cires_ugwp_debug Checking test 104 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 483.528110 -0:The maximum resident set size (KB) = 990340 +0:The total amount of wall time = 472.512388 +0:The maximum resident set size (KB) = 985336 Test 104 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1beta_debug -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/rrfs_v1beta_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1beta_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rrfs_v1beta_debug Checking test 105 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 291.611883 -0:The maximum resident set size (KB) = 988308 +0:The total amount of wall time = 282.087359 +0:The maximum resident set size (KB) = 983372 Test 105 rrfs_v1beta_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wam_debug -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_wam_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wam_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_wam_debug Checking test 106 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 297.544334 -0:The maximum resident set size (KB) = 240124 +0:The total amount of wall time = 289.522466 +0:The maximum resident set size (KB) = 235520 Test 106 control_wam_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3584,14 +3584,14 @@ Checking test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 244.662621 -0:The maximum resident set size (KB) = 850984 +0:The total amount of wall time = 247.231183 +0:The maximum resident set size (KB) = 851076 Test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/rap_control_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rap_control_dyn32_phy32 Checking test 108 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3638,14 +3638,14 @@ Checking test 108 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 400.513751 -0:The maximum resident set size (KB) = 707792 +0:The total amount of wall time = 398.190885 +0:The maximum resident set size (KB) = 707816 Test 108 rap_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/hrrr_control_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hrrr_control_dyn32_phy32 Checking test 109 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3692,14 +3692,14 @@ Checking test 109 hrrr_control_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 208.093849 -0:The maximum resident set size (KB) = 706460 +0:The total amount of wall time = 206.984849 +0:The maximum resident set size (KB) = 706532 Test 109 hrrr_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/rap_2threads_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rap_2threads_dyn32_phy32 Checking test 110 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3746,14 +3746,14 @@ Checking test 110 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 382.886839 -0:The maximum resident set size (KB) = 759488 +0:The total amount of wall time = 380.915217 +0:The maximum resident set size (KB) = 759352 Test 110 rap_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/hrrr_control_2threads_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hrrr_control_2threads_dyn32_phy32 Checking test 111 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3800,14 +3800,14 @@ Checking test 111 hrrr_control_2threads_dyn32_phy32 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 = 197.766082 -0:The maximum resident set size (KB) = 756364 +0:The total amount of wall time = 198.610402 +0:The maximum resident set size (KB) = 756524 Test 111 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/hrrr_control_decomp_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hrrr_control_decomp_dyn32_phy32 Checking test 112 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3854,14 +3854,14 @@ Checking test 112 hrrr_control_decomp_dyn32_phy32 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 = 216.189777 -0:The maximum resident set size (KB) = 704320 +0:The total amount of wall time = 219.168226 +0:The maximum resident set size (KB) = 704292 Test 112 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/rap_restart_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rap_restart_dyn32_phy32 Checking test 113 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3900,14 +3900,14 @@ Checking test 113 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 294.825189 -0:The maximum resident set size (KB) = 544552 +0:The total amount of wall time = 294.310581 +0:The maximum resident set size (KB) = 544664 Test 113 rap_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/hrrr_control_restart_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hrrr_control_restart_dyn32_phy32 Checking test 114 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3946,14 +3946,14 @@ Checking test 114 hrrr_control_restart_dyn32_phy32 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 = 107.139310 -0:The maximum resident set size (KB) = 537324 +0:The total amount of wall time = 107.228012 +0:The maximum resident set size (KB) = 537556 Test 114 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn64_phy32 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/rap_control_dyn64_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn64_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rap_control_dyn64_phy32 Checking test 115 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4000,81 +4000,81 @@ Checking test 115 rap_control_dyn64_phy32 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 = 271.431834 -0:The maximum resident set size (KB) = 730872 +0:The total amount of wall time = 271.434089 +0:The maximum resident set size (KB) = 730416 Test 115 rap_control_dyn64_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/rap_control_debug_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rap_control_debug_dyn32_phy32 Checking test 116 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 289.811275 -0:The maximum resident set size (KB) = 877912 +0:The total amount of wall time = 281.855615 +0:The maximum resident set size (KB) = 872940 Test 116 rap_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/hrrr_control_debug_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hrrr_control_debug_dyn32_phy32 Checking test 117 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 286.678889 -0:The maximum resident set size (KB) = 875864 +0:The total amount of wall time = 276.912328 +0:The maximum resident set size (KB) = 871068 Test 117 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/rap_control_dyn64_phy32_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug_dyn64_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rap_control_dyn64_phy32_debug Checking test 118 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 295.062317 -0:The maximum resident set size (KB) = 894980 +0:The total amount of wall time = 286.346018 +0:The maximum resident set size (KB) = 890040 Test 118 rap_control_dyn64_phy32_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/hafs_regional_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hafs_regional_atm Checking test 119 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -0:The total amount of wall time = 260.515452 -0:The maximum resident set size (KB) = 742872 +0:The total amount of wall time = 257.111262 +0:The maximum resident set size (KB) = 742732 Test 119 hafs_regional_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/hafs_regional_atm_thompson_gfdlsf +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hafs_regional_atm_thompson_gfdlsf Checking test 120 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -0:The total amount of wall time = 286.507125 -0:The maximum resident set size (KB) = 1099796 +0:The total amount of wall time = 286.662113 +0:The maximum resident set size (KB) = 1100028 Test 120 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_ocn -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/hafs_regional_atm_ocn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_ocn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hafs_regional_atm_ocn Checking test 121 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4083,14 +4083,14 @@ Checking test 121 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 454.204147 -0:The maximum resident set size (KB) = 740940 +0:The total amount of wall time = 445.924103 +0:The maximum resident set size (KB) = 741340 Test 121 hafs_regional_atm_ocn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_wav -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/hafs_regional_atm_wav +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_wav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hafs_regional_atm_wav Checking test 122 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4099,14 +4099,14 @@ Checking test 122 hafs_regional_atm_wav 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 = 1063.932625 -0:The maximum resident set size (KB) = 768892 +0:The total amount of wall time = 1071.037702 +0:The maximum resident set size (KB) = 772384 Test 122 hafs_regional_atm_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_ocn_wav -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/hafs_regional_atm_ocn_wav +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_ocn_wav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hafs_regional_atm_ocn_wav Checking test 123 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4117,28 +4117,28 @@ Checking test 123 hafs_regional_atm_ocn_wav 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 = 1109.817702 -0:The maximum resident set size (KB) = 792272 +0:The total amount of wall time = 1135.356698 +0:The maximum resident set size (KB) = 792808 Test 123 hafs_regional_atm_ocn_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_1nest_atm -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/hafs_regional_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hafs_regional_1nest_atm Checking test 124 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 375.837009 -0:The maximum resident set size (KB) = 300240 +0:The total amount of wall time = 377.984817 +0:The maximum resident set size (KB) = 300960 Test 124 hafs_regional_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/hafs_regional_telescopic_2nests_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hafs_regional_telescopic_2nests_atm Checking test 125 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4147,28 +4147,28 @@ Checking test 125 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -0:The total amount of wall time = 430.117462 -0:The maximum resident set size (KB) = 320400 +0:The total amount of wall time = 416.045393 +0:The maximum resident set size (KB) = 320476 Test 125 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_global_1nest_atm -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/hafs_global_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_global_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hafs_global_1nest_atm Checking test 126 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 172.493207 -0:The maximum resident set size (KB) = 214440 +0:The total amount of wall time = 168.418279 +0:The maximum resident set size (KB) = 213828 Test 126 hafs_global_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_global_multiple_4nests_atm -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/hafs_global_multiple_4nests_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_global_multiple_4nests_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hafs_global_multiple_4nests_atm Checking test 127 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4186,14 +4186,14 @@ Checking test 127 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -0:The total amount of wall time = 481.055078 -0:The maximum resident set size (KB) = 302540 +0:The total amount of wall time = 478.751468 +0:The maximum resident set size (KB) = 300396 Test 127 hafs_global_multiple_4nests_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/hafs_regional_specified_moving_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hafs_regional_specified_moving_1nest_atm Checking test 128 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4202,28 +4202,28 @@ Checking test 128 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -0:The total amount of wall time = 239.623153 -0:The maximum resident set size (KB) = 317732 +0:The total amount of wall time = 240.445034 +0:The maximum resident set size (KB) = 318476 Test 128 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/hafs_regional_storm_following_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hafs_regional_storm_following_1nest_atm Checking test 129 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 227.855172 -0:The maximum resident set size (KB) = 318424 +0:The total amount of wall time = 227.256588 +0:The maximum resident set size (KB) = 318192 Test 129 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hafs_regional_storm_following_1nest_atm_ocn Checking test 130 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4232,42 +4232,42 @@ Checking test 130 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -0:The total amount of wall time = 282.661546 -0:The maximum resident set size (KB) = 376092 +0:The total amount of wall time = 281.301358 +0:The maximum resident set size (KB) = 376256 Test 130 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_global_storm_following_1nest_atm -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/hafs_global_storm_following_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_global_storm_following_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hafs_global_storm_following_1nest_atm Checking test 131 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 66.405303 -0:The maximum resident set size (KB) = 233228 +0:The total amount of wall time = 66.666957 +0:The maximum resident set size (KB) = 233324 Test 131 hafs_global_storm_following_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 132 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 820.813293 -0:The maximum resident set size (KB) = 409192 +0:The total amount of wall time = 765.308407 +0:The maximum resident set size (KB) = 402772 Test 132 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 133 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4278,14 +4278,14 @@ Checking test 133 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -0:The total amount of wall time = 728.494522 -0:The maximum resident set size (KB) = 427132 +0:The total amount of wall time = 764.976041 +0:The maximum resident set size (KB) = 427540 Test 133 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_docn -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/hafs_regional_docn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_docn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hafs_regional_docn Checking test 134 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4293,14 +4293,14 @@ Checking test 134 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 390.354770 -0:The maximum resident set size (KB) = 755644 +0:The total amount of wall time = 392.775974 +0:The maximum resident set size (KB) = 755340 Test 134 hafs_regional_docn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_docn_oisst -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/hafs_regional_docn_oisst +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_docn_oisst +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hafs_regional_docn_oisst Checking test 135 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4308,131 +4308,131 @@ Checking test 135 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 384.793086 -0:The maximum resident set size (KB) = 734820 +0:The total amount of wall time = 394.359153 +0:The maximum resident set size (KB) = 735280 Test 135 hafs_regional_docn_oisst PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_datm_cdeps -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/hafs_regional_datm_cdeps +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_datm_cdeps +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hafs_regional_datm_cdeps Checking test 136 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -0:The total amount of wall time = 1270.316973 -0:The maximum resident set size (KB) = 887816 +0:The total amount of wall time = 1274.600899 +0:The maximum resident set size (KB) = 887832 Test 136 hafs_regional_datm_cdeps PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/datm_cdeps_control_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/datm_cdeps_control_cfsr Checking test 137 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 167.131182 -0:The maximum resident set size (KB) = 716760 +0:The total amount of wall time = 167.353908 +0:The maximum resident set size (KB) = 716720 Test 137 datm_cdeps_control_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/datm_cdeps_restart_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/datm_cdeps_restart_cfsr Checking test 138 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 97.734442 -0:The maximum resident set size (KB) = 715920 +0:The total amount of wall time = 96.431899 +0:The maximum resident set size (KB) = 704880 Test 138 datm_cdeps_restart_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_gefs -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/datm_cdeps_control_gefs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/datm_cdeps_control_gefs Checking test 139 datm_cdeps_control_gefs 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 = 160.563474 -0:The maximum resident set size (KB) = 607524 +0:The total amount of wall time = 155.089038 +0:The maximum resident set size (KB) = 607448 Test 139 datm_cdeps_control_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_iau_gefs -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/datm_cdeps_iau_gefs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_iau_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/datm_cdeps_iau_gefs Checking test 140 datm_cdeps_iau_gefs 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 = 159.997009 -0:The maximum resident set size (KB) = 607496 +0:The total amount of wall time = 163.632369 +0:The maximum resident set size (KB) = 607440 Test 140 datm_cdeps_iau_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_stochy_gefs -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/datm_cdeps_stochy_gefs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_stochy_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/datm_cdeps_stochy_gefs Checking test 141 datm_cdeps_stochy_gefs 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 = 158.966890 -0:The maximum resident set size (KB) = 607488 +0:The total amount of wall time = 163.602109 +0:The maximum resident set size (KB) = 607480 Test 141 datm_cdeps_stochy_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_ciceC_cfsr -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/datm_cdeps_ciceC_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_ciceC_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/datm_cdeps_ciceC_cfsr Checking test 142 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 163.011154 -0:The maximum resident set size (KB) = 716724 +0:The total amount of wall time = 162.790671 +0:The maximum resident set size (KB) = 716720 Test 142 datm_cdeps_ciceC_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_bulk_cfsr -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/datm_cdeps_bulk_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_bulk_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/datm_cdeps_bulk_cfsr Checking test 143 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 168.337924 -0:The maximum resident set size (KB) = 727816 +0:The total amount of wall time = 168.705344 +0:The maximum resident set size (KB) = 716732 Test 143 datm_cdeps_bulk_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_bulk_gefs -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/datm_cdeps_bulk_gefs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_bulk_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/datm_cdeps_bulk_gefs Checking test 144 datm_cdeps_bulk_gefs 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 = 160.044128 -0:The maximum resident set size (KB) = 607508 +0:The total amount of wall time = 160.090251 +0:The maximum resident set size (KB) = 607472 Test 144 datm_cdeps_bulk_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_mx025_cfsr -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/datm_cdeps_mx025_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_mx025_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/datm_cdeps_mx025_cfsr Checking test 145 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4441,14 +4441,14 @@ Checking test 145 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 635.713472 -0:The maximum resident set size (KB) = 514376 +0:The total amount of wall time = 430.324675 +0:The maximum resident set size (KB) = 514312 Test 145 datm_cdeps_mx025_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_mx025_gefs -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/datm_cdeps_mx025_gefs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_mx025_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/datm_cdeps_mx025_gefs Checking test 146 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4457,77 +4457,77 @@ Checking test 146 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 399.815293 -0:The maximum resident set size (KB) = 494756 +0:The total amount of wall time = 416.023203 +0:The maximum resident set size (KB) = 494812 Test 146 datm_cdeps_mx025_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/datm_cdeps_multiple_files_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/datm_cdeps_multiple_files_cfsr Checking test 147 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 166.580329 -0:The maximum resident set size (KB) = 727796 +0:The total amount of wall time = 166.521079 +0:The maximum resident set size (KB) = 716712 Test 147 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/datm_cdeps_3072x1536_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/datm_cdeps_3072x1536_cfsr Checking test 148 datm_cdeps_3072x1536_cfsr 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 = 268.591926 -0:The maximum resident set size (KB) = 1942044 +0:The total amount of wall time = 272.326236 +0:The maximum resident set size (KB) = 1910040 Test 148 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_gfs -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/datm_cdeps_gfs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_gfs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/datm_cdeps_gfs Checking test 149 datm_cdeps_gfs 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 = 255.404729 -0:The maximum resident set size (KB) = 1942032 +0:The total amount of wall time = 270.205127 +0:The maximum resident set size (KB) = 1941108 Test 149 datm_cdeps_gfs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_debug_cfsr -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/datm_cdeps_debug_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_debug_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/datm_cdeps_debug_cfsr Checking test 150 datm_cdeps_debug_cfsr 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 = 458.091805 -0:The maximum resident set size (KB) = 706676 +0:The total amount of wall time = 369.680257 +0:The maximum resident set size (KB) = 711800 Test 150 datm_cdeps_debug_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr_faster -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/datm_cdeps_control_cfsr_faster +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_cfsr_faster +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/datm_cdeps_control_cfsr_faster Checking test 151 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 161.503214 -0:The maximum resident set size (KB) = 716732 +0:The total amount of wall time = 167.009432 +0:The maximum resident set size (KB) = 716736 Test 151 datm_cdeps_control_cfsr_faster PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/datm_cdeps_lnd_gswp3 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_lnd_gswp3 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/datm_cdeps_lnd_gswp3 Checking test 152 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4536,14 +4536,14 @@ Checking test 152 datm_cdeps_lnd_gswp3 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 = 10.817644 -0:The maximum resident set size (KB) = 208284 +0:The total amount of wall time = 10.268181 +0:The maximum resident set size (KB) = 208208 Test 152 datm_cdeps_lnd_gswp3 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/datm_cdeps_lnd_gswp3_rst +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_lnd_gswp3 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/datm_cdeps_lnd_gswp3_rst Checking test 153 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4552,14 +4552,14 @@ Checking test 153 datm_cdeps_lnd_gswp3_rst 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.171549 -0:The maximum resident set size (KB) = 208244 +0:The total amount of wall time = 15.797231 +0:The maximum resident set size (KB) = 210100 Test 153 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_atmlnd_sbs -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_p8_atmlnd_sbs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_atmlnd_sbs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_p8_atmlnd_sbs Checking test 154 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4644,14 +4644,14 @@ Checking test 154 control_p8_atmlnd_sbs 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 = 236.480164 -0:The maximum resident set size (KB) = 1462952 +0:The total amount of wall time = 233.907252 +0:The maximum resident set size (KB) = 1463656 Test 154 control_p8_atmlnd_sbs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/control_atmwav -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/control_atmwav +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_atmwav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_atmwav Checking test 155 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4695,14 +4695,14 @@ Checking test 155 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -0:The total amount of wall time = 99.475172 -0:The maximum resident set size (KB) = 474672 +0:The total amount of wall time = 98.498594 +0:The maximum resident set size (KB) = 474544 Test 155 control_atmwav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/atmaero_control_p8 -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/atmaero_control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/atmaero_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/atmaero_control_p8 Checking test 156 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4746,14 +4746,14 @@ Checking test 156 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 252.529039 -0:The maximum resident set size (KB) = 2704032 +0:The total amount of wall time = 251.933333 +0:The maximum resident set size (KB) = 2704072 Test 156 atmaero_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/atmaero_control_p8_rad -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/atmaero_control_p8_rad +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/atmaero_control_p8_rad +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/atmaero_control_p8_rad Checking test 157 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4797,14 +4797,14 @@ Checking test 157 atmaero_control_p8_rad results .... Comparing 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.076076 -0:The maximum resident set size (KB) = 2758200 +0:The total amount of wall time = 302.772368 +0:The maximum resident set size (KB) = 2757948 Test 157 atmaero_control_p8_rad PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/atmaero_control_p8_rad_micro -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/atmaero_control_p8_rad_micro +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/atmaero_control_p8_rad_micro +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/atmaero_control_p8_rad_micro Checking test 158 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4848,14 +4848,14 @@ Checking test 158 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 308.769709 -0:The maximum resident set size (KB) = 2764536 +0:The total amount of wall time = 308.750670 +0:The maximum resident set size (KB) = 2764528 Test 158 atmaero_control_p8_rad_micro PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_atmaq -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/regional_atmaq +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_atmaq +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/regional_atmaq Checking test 159 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4871,14 +4871,14 @@ Checking test 159 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -0:The total amount of wall time = 748.768065 -0:The maximum resident set size (KB) = 999408 +0:The total amount of wall time = 748.876288 +0:The maximum resident set size (KB) = 999612 Test 159 regional_atmaq PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_atmaq_faster -working dir = /glade/scratch/jongkim/rt-1692-intel/jongkim/FV3_RT/rt_37450/regional_atmaq_faster +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_atmaq_faster +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/regional_atmaq_faster Checking test 160 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4894,12 +4894,12 @@ Checking test 160 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -0:The total amount of wall time = 697.431372 -0:The maximum resident set size (KB) = 999452 +0:The total amount of wall time = 696.342729 +0:The maximum resident set size (KB) = 999192 Test 160 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Wed Apr 5 08:45:59 MDT 2023 -Elapsed time: 01h:24m:20s. Have a nice day! +Wed Apr 5 21:06:53 MDT 2023 +Elapsed time: 01h:13m:29s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index 604e316f6f2..dbee0d7207b 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,42 +1,39 @@ -Tue Apr 4 16:31:44 EDT 2023 -Start Regression test - -Compile 001 elapsed time 795 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 861 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 775 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 302 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 267 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 733 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 707 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 984 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 748 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 705 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 650 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 621 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 856 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 241 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 186 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 617 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 633 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 202 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 193 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 697 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 021 elapsed time 244 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 865 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 670 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 024 elapsed time 251 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 001 elapsed time 860 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 941 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 786 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 322 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 275 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 773 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 777 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 1033 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 742 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 723 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 011 elapsed time 654 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 713 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 928 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 263 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 215 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 657 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 624 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 211 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 213 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 736 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 021 elapsed time 259 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 938 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 708 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 024 elapsed time 291 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON Compile 025 elapsed time 158 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 259 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 101 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 660 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 658 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 629 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 615 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 217 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 767 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8_mixedmode -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/cpld_control_p8_mixedmode +Compile 026 elapsed time 277 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 121 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 681 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 690 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 661 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 700 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 212 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 794 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8_mixedmode +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -101,14 +98,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 357.180392 - 0: The maximum resident set size (KB) = 1532748 + 0: The total amount of wall time = 356.527283 + 0: The maximum resident set size (KB) = 1533808 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_gfsv17 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/cpld_control_gfsv17 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_gfsv17 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -172,14 +169,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 268.740152 - 0: The maximum resident set size (KB) = 1443748 + 0: The total amount of wall time = 262.280992 + 0: The maximum resident set size (KB) = 1443240 Test 002 cpld_control_gfsv17 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/cpld_control_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -244,14 +241,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 412.901047 - 0: The maximum resident set size (KB) = 1567064 + 0: The total amount of wall time = 396.799377 + 0: The maximum resident set size (KB) = 1567236 Test 003 cpld_control_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/cpld_restart_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -304,14 +301,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 248.523058 - 0: The maximum resident set size (KB) = 1018076 + 0: The total amount of wall time = 256.489499 + 0: The maximum resident set size (KB) = 1018056 Test 004 cpld_restart_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/cpld_control_qr_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -376,14 +373,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 400.865522 - 0: The maximum resident set size (KB) = 1577372 + 0: The total amount of wall time = 400.579192 + 0: The maximum resident set size (KB) = 1577380 Test 005 cpld_control_qr_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/cpld_restart_qr_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -436,14 +433,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 245.151541 - 0: The maximum resident set size (KB) = 1031252 + 0: The total amount of wall time = 243.722010 + 0: The maximum resident set size (KB) = 1031596 Test 006 cpld_restart_qr_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/cpld_2threads_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -496,14 +493,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 426.065732 - 0: The maximum resident set size (KB) = 1762264 + 0: The total amount of wall time = 435.085387 + 0: The maximum resident set size (KB) = 1759368 Test 007 cpld_2threads_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/cpld_decomp_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -556,14 +553,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 404.907887 - 0: The maximum resident set size (KB) = 1562448 + 0: The total amount of wall time = 414.716299 + 0: The maximum resident set size (KB) = 1561860 Test 008 cpld_decomp_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/cpld_mpi_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -616,14 +613,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 340.140300 - 0: The maximum resident set size (KB) = 1526800 + 0: The total amount of wall time = 351.404805 + 0: The maximum resident set size (KB) = 1526048 Test 009 cpld_mpi_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_bmark_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/cpld_bmark_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_bmark_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/cpld_bmark_p8 Checking test 010 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -671,69 +668,14 @@ Checking test 010 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 900.381377 - 0: The maximum resident set size (KB) = 2503784 + 0: The total amount of wall time = 825.488595 + 0: The maximum resident set size (KB) = 2503472 Test 010 cpld_bmark_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_bmark_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/cpld_restart_bmark_p8 -Checking test 011 cpld_restart_bmark_p8 results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK - Comparing GFSFLX.GrbF06 .........OK - Comparing GFSPRS.GrbF06 .........OK - Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK - Comparing RESTART/20130401.060000.coupler.res .........OK - Comparing RESTART/20130401.060000.fv_core.res.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20130401.060000.MOM.res.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_1.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_2.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - Comparing 20130401.060000.out_pnt.ww3 .........OK - Comparing 20130401.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 689.236425 - 0: The maximum resident set size (KB) = 2328580 - -Test 011 cpld_restart_bmark_p8 PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_noaero_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/cpld_control_noaero_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_noaero_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/cpld_control_noaero_p8 Checking test 012 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -797,14 +739,14 @@ Checking test 012 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 308.979168 - 0: The maximum resident set size (KB) = 1441460 + 0: The total amount of wall time = 309.784141 + 0: The maximum resident set size (KB) = 1441368 Test 012 cpld_control_noaero_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_c96_noaero_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/cpld_control_nowave_noaero_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_c96_noaero_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/cpld_control_nowave_noaero_p8 Checking test 013 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -866,14 +808,14 @@ Checking test 013 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 316.439413 - 0: The maximum resident set size (KB) = 1475200 + 0: The total amount of wall time = 309.880657 + 0: The maximum resident set size (KB) = 1475072 Test 013 cpld_control_nowave_noaero_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_debug_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/cpld_debug_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_debug_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/cpld_debug_p8 Checking test 014 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -926,14 +868,14 @@ Checking test 014 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 550.382163 - 0: The maximum resident set size (KB) = 1595408 + 0: The total amount of wall time = 569.705148 + 0: The maximum resident set size (KB) = 1594656 Test 014 cpld_debug_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_debug_noaero_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/cpld_debug_noaero_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_debug_noaero_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/cpld_debug_noaero_p8 Checking test 015 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -985,14 +927,14 @@ Checking test 015 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 388.829217 - 0: The maximum resident set size (KB) = 1441620 + 0: The total amount of wall time = 399.659686 + 0: The maximum resident set size (KB) = 1441376 Test 015 cpld_debug_noaero_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_noaero_p8_agrid -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/cpld_control_noaero_p8_agrid +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_noaero_p8_agrid +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/cpld_control_noaero_p8_agrid Checking test 016 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1054,14 +996,14 @@ Checking test 016 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 326.975937 - 0: The maximum resident set size (KB) = 1477684 + 0: The total amount of wall time = 324.449186 + 0: The maximum resident set size (KB) = 1477956 Test 016 cpld_control_noaero_p8_agrid PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_c48 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/cpld_control_c48 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_c48 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/cpld_control_c48 Checking test 017 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1111,14 +1053,14 @@ Checking test 017 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 600.385255 - 0: The maximum resident set size (KB) = 2575148 + 0: The total amount of wall time = 628.182638 + 0: The maximum resident set size (KB) = 2575500 Test 017 cpld_control_c48 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_warmstart_c48 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/cpld_warmstart_c48 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_warmstart_c48 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/cpld_warmstart_c48 Checking test 018 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1168,14 +1110,14 @@ Checking test 018 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 161.780587 - 0: The maximum resident set size (KB) = 2575104 + 0: The total amount of wall time = 177.076738 + 0: The maximum resident set size (KB) = 2575612 Test 018 cpld_warmstart_c48 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_warmstart_c48 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/cpld_restart_c48 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_warmstart_c48 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/cpld_restart_c48 Checking test 019 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1225,14 +1167,14 @@ Checking test 019 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 85.475828 - 0: The maximum resident set size (KB) = 2007552 + 0: The total amount of wall time = 85.364191 + 0: The maximum resident set size (KB) = 1989456 Test 019 cpld_restart_c48 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8_faster -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/cpld_control_p8_faster +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8_faster +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/cpld_control_p8_faster Checking test 020 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1297,14 +1239,14 @@ Checking test 020 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 393.251096 - 0: The maximum resident set size (KB) = 1567508 + 0: The total amount of wall time = 396.277224 + 0: The maximum resident set size (KB) = 1566992 Test 020 cpld_control_p8_faster PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_CubedSphereGrid -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_CubedSphereGrid +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_CubedSphereGrid +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_CubedSphereGrid Checking test 021 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1331,28 +1273,28 @@ Checking test 021 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 144.841005 - 0: The maximum resident set size (KB) = 437712 + 0: The total amount of wall time = 143.772244 + 0: The maximum resident set size (KB) = 437780 Test 021 control_CubedSphereGrid PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_CubedSphereGrid_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_CubedSphereGrid_parallel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_CubedSphereGrid_parallel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_CubedSphereGrid_parallel Checking test 022 control_CubedSphereGrid_parallel 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 = 157.769566 - 0: The maximum resident set size (KB) = 437808 + 0: The total amount of wall time = 143.255412 + 0: The maximum resident set size (KB) = 437968 Test 022 control_CubedSphereGrid_parallel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_latlon -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_latlon +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_latlon +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_latlon Checking test 023 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1363,14 +1305,14 @@ Checking test 023 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 147.976662 - 0: The maximum resident set size (KB) = 437876 + 0: The total amount of wall time = 148.593883 + 0: The maximum resident set size (KB) = 437832 Test 023 control_latlon PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_wrtGauss_netcdf_parallel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_wrtGauss_netcdf_parallel Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1381,14 +1323,14 @@ Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 167.631238 - 0: The maximum resident set size (KB) = 437868 + 0: The total amount of wall time = 152.856988 + 0: The maximum resident set size (KB) = 437800 Test 024 control_wrtGauss_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c48 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_c48 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c48 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_c48 Checking test 025 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1427,14 +1369,14 @@ Checking test 025 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 421.708761 -0: The maximum resident set size (KB) = 634276 +0: The total amount of wall time = 421.512851 +0: The maximum resident set size (KB) = 634292 Test 025 control_c48 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c192 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_c192 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c192 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_c192 Checking test 026 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1445,14 +1387,14 @@ Checking test 026 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 586.148834 - 0: The maximum resident set size (KB) = 544192 + 0: The total amount of wall time = 586.568718 + 0: The maximum resident set size (KB) = 544180 Test 026 control_c192 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c384 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_c384 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c384 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_c384 Checking test 027 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1463,14 +1405,14 @@ Checking test 027 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1114.684260 - 0: The maximum resident set size (KB) = 823104 + 0: The total amount of wall time = 1114.061498 + 0: The maximum resident set size (KB) = 823480 Test 027 control_c384 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c384gdas -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_c384gdas +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c384gdas +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_c384gdas Checking test 028 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1513,14 +1455,14 @@ Checking test 028 control_c384gdas 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 = 943.439122 - 0: The maximum resident set size (KB) = 954560 + 0: The total amount of wall time = 973.661887 + 0: The maximum resident set size (KB) = 954484 Test 028 control_c384gdas PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_stochy -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_stochy +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_stochy +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_stochy Checking test 029 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1531,28 +1473,28 @@ Checking test 029 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 111.855983 - 0: The maximum resident set size (KB) = 441376 + 0: The total amount of wall time = 102.605813 + 0: The maximum resident set size (KB) = 441308 Test 029 control_stochy PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_stochy -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_stochy_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_stochy +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_stochy_restart Checking test 030 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 52.785540 - 0: The maximum resident set size (KB) = 195600 + 0: The total amount of wall time = 54.496143 + 0: The maximum resident set size (KB) = 195816 Test 030 control_stochy_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_lndp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_lndp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_lndp +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_lndp Checking test 031 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1563,14 +1505,14 @@ Checking test 031 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 95.102561 - 0: The maximum resident set size (KB) = 441084 + 0: The total amount of wall time = 91.681561 + 0: The maximum resident set size (KB) = 440876 Test 031 control_lndp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_iovr4 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_iovr4 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_iovr4 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_iovr4 Checking test 032 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1585,14 +1527,14 @@ Checking test 032 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 154.849317 - 0: The maximum resident set size (KB) = 437760 + 0: The total amount of wall time = 151.206175 + 0: The maximum resident set size (KB) = 437692 Test 032 control_iovr4 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_iovr5 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_iovr5 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_iovr5 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_iovr5 Checking test 033 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1607,14 +1549,14 @@ Checking test 033 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 152.691041 - 0: The maximum resident set size (KB) = 437672 + 0: The total amount of wall time = 156.212251 + 0: The maximum resident set size (KB) = 437860 Test 033 control_iovr5 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_p8 Checking test 034 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1661,14 +1603,14 @@ Checking test 034 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 205.295758 - 0: The maximum resident set size (KB) = 1380156 + 0: The total amount of wall time = 197.324513 + 0: The maximum resident set size (KB) = 1380096 Test 034 control_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_restart_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_restart_p8 Checking test 035 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1707,14 +1649,14 @@ Checking test 035 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 113.245528 - 0: The maximum resident set size (KB) = 556620 + 0: The total amount of wall time = 104.889849 + 0: The maximum resident set size (KB) = 556700 Test 035 control_restart_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_qr_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_qr_p8 Checking test 036 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1761,14 +1703,14 @@ Checking test 036 control_qr_p8 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 = 202.713852 - 0: The maximum resident set size (KB) = 1383276 + 0: The total amount of wall time = 201.516790 + 0: The maximum resident set size (KB) = 1383252 Test 036 control_qr_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_restart_qr_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_restart_qr_p8 Checking test 037 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1807,14 +1749,14 @@ Checking test 037 control_restart_qr_p8 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 = 110.063643 - 0: The maximum resident set size (KB) = 581544 + 0: The total amount of wall time = 130.839850 + 0: The maximum resident set size (KB) = 581624 Test 037 control_restart_qr_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_decomp_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_decomp_p8 Checking test 038 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1857,14 +1799,14 @@ Checking test 038 control_decomp_p8 results .... Comparing 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.887641 - 0: The maximum resident set size (KB) = 1373992 + 0: The total amount of wall time = 197.648882 + 0: The maximum resident set size (KB) = 1374052 Test 038 control_decomp_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_2threads_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_2threads_p8 Checking test 039 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1907,14 +1849,14 @@ Checking test 039 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 189.451820 - 0: The maximum resident set size (KB) = 1463948 + 0: The total amount of wall time = 183.854322 + 0: The maximum resident set size (KB) = 1464404 Test 039 control_2threads_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_lndp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_p8_lndp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_lndp +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_p8_lndp Checking test 040 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1933,14 +1875,14 @@ Checking test 040 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 354.499699 - 0: The maximum resident set size (KB) = 1381216 + 0: The total amount of wall time = 351.590490 + 0: The maximum resident set size (KB) = 1381200 Test 040 control_p8_lndp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_rrtmgp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_p8_rrtmgp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_rrtmgp +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_p8_rrtmgp Checking test 041 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1987,14 +1929,14 @@ Checking test 041 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 265.683741 - 0: The maximum resident set size (KB) = 1437492 + 0: The total amount of wall time = 260.472924 + 0: The maximum resident set size (KB) = 1437572 Test 041 control_p8_rrtmgp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_mynn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_p8_mynn +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_mynn +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_p8_mynn Checking test 042 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2041,14 +1983,14 @@ Checking test 042 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 201.595611 - 0: The maximum resident set size (KB) = 1384152 + 0: The total amount of wall time = 204.903564 + 0: The maximum resident set size (KB) = 1384180 Test 042 control_p8_mynn PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/merra2_thompson -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/merra2_thompson +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/merra2_thompson +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/merra2_thompson Checking test 043 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2095,14 +2037,14 @@ Checking test 043 merra2_thompson results .... Comparing 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.357841 - 0: The maximum resident set size (KB) = 1385544 + 0: The total amount of wall time = 214.097358 + 0: The maximum resident set size (KB) = 1385580 Test 043 merra2_thompson PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/regional_control +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/regional_control Checking test 044 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2113,28 +2055,28 @@ Checking test 044 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 348.292561 - 0: The maximum resident set size (KB) = 578860 + 0: The total amount of wall time = 336.695387 + 0: The maximum resident set size (KB) = 578960 Test 044 regional_control PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/regional_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/regional_restart Checking test 045 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 184.511074 - 0: The maximum resident set size (KB) = 578400 + 0: The total amount of wall time = 172.464501 + 0: The maximum resident set size (KB) = 578572 Test 045 regional_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/regional_control_qr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/regional_control_qr Checking test 046 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2145,28 +2087,28 @@ Checking test 046 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 341.866450 - 0: The maximum resident set size (KB) = 578908 + 0: The total amount of wall time = 337.888931 + 0: The maximum resident set size (KB) = 578924 Test 046 regional_control_qr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/regional_restart_qr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/regional_restart_qr Checking test 047 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 175.298188 - 0: The maximum resident set size (KB) = 578532 + 0: The total amount of wall time = 181.247815 + 0: The maximum resident set size (KB) = 578924 Test 047 regional_restart_qr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/regional_decomp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/regional_decomp Checking test 048 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2177,14 +2119,14 @@ Checking test 048 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 364.027870 - 0: The maximum resident set size (KB) = 580656 + 0: The total amount of wall time = 348.770082 + 0: The maximum resident set size (KB) = 580816 Test 048 regional_decomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/regional_2threads +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/regional_2threads Checking test 049 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2195,14 +2137,14 @@ Checking test 049 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 218.914335 - 0: The maximum resident set size (KB) = 586316 + 0: The total amount of wall time = 210.212563 + 0: The maximum resident set size (KB) = 586164 Test 049 regional_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_noquilt -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/regional_noquilt +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_noquilt +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/regional_noquilt Checking test 050 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2210,28 +2152,28 @@ Checking test 050 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 372.945624 - 0: The maximum resident set size (KB) = 573120 + 0: The total amount of wall time = 357.749656 + 0: The maximum resident set size (KB) = 573180 Test 050 regional_noquilt PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_netcdf_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/regional_netcdf_parallel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_netcdf_parallel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/regional_netcdf_parallel Checking test 051 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 351.714845 - 0: The maximum resident set size (KB) = 578608 + 0: The total amount of wall time = 343.618158 + 0: The maximum resident set size (KB) = 578664 Test 051 regional_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/regional_2dwrtdecomp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/regional_2dwrtdecomp Checking test 052 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2242,14 +2184,14 @@ Checking test 052 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 345.656395 - 0: The maximum resident set size (KB) = 578916 + 0: The total amount of wall time = 349.978059 + 0: The maximum resident set size (KB) = 578940 Test 052 regional_2dwrtdecomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/fv3_regional_wofs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/regional_wofs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/fv3_regional_wofs +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/regional_wofs Checking test 053 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2260,14 +2202,14 @@ Checking test 053 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 420.031323 - 0: The maximum resident set size (KB) = 263888 + 0: The total amount of wall time = 425.333425 + 0: The maximum resident set size (KB) = 263984 Test 053 regional_wofs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/rap_control +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rap_control Checking test 054 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2314,14 +2256,14 @@ Checking test 054 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 478.440323 - 0: The maximum resident set size (KB) = 808240 + 0: The total amount of wall time = 481.374431 + 0: The maximum resident set size (KB) = 807976 Test 054 rap_control PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_spp_sppt_shum_skeb -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/regional_spp_sppt_shum_skeb +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_spp_sppt_shum_skeb +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/regional_spp_sppt_shum_skeb Checking test 055 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2332,14 +2274,14 @@ Checking test 055 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 284.556770 - 0: The maximum resident set size (KB) = 908332 + 0: The total amount of wall time = 278.156589 + 0: The maximum resident set size (KB) = 908016 Test 055 regional_spp_sppt_shum_skeb PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/rap_decomp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rap_decomp Checking test 056 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2386,14 +2328,14 @@ Checking test 056 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 504.352836 - 0: The maximum resident set size (KB) = 806300 + 0: The total amount of wall time = 501.185016 + 0: The maximum resident set size (KB) = 806356 Test 056 rap_decomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/rap_2threads +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rap_2threads Checking test 057 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2440,14 +2382,14 @@ Checking test 057 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 459.551340 - 0: The maximum resident set size (KB) = 878796 + 0: The total amount of wall time = 455.983992 + 0: The maximum resident set size (KB) = 878536 Test 057 rap_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/rap_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rap_restart Checking test 058 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2486,14 +2428,14 @@ Checking test 058 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 247.394099 - 0: The maximum resident set size (KB) = 552612 + 0: The total amount of wall time = 243.923281 + 0: The maximum resident set size (KB) = 553208 Test 058 rap_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/rap_sfcdiff +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rap_sfcdiff Checking test 059 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2540,14 +2482,14 @@ Checking test 059 rap_sfcdiff results .... Comparing 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.579188 - 0: The maximum resident set size (KB) = 807796 + 0: The total amount of wall time = 489.360539 + 0: The maximum resident set size (KB) = 807912 Test 059 rap_sfcdiff PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/rap_sfcdiff_decomp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rap_sfcdiff_decomp Checking test 060 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2594,14 +2536,14 @@ Checking test 060 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 511.033553 - 0: The maximum resident set size (KB) = 806436 + 0: The total amount of wall time = 502.673613 + 0: The maximum resident set size (KB) = 806288 Test 060 rap_sfcdiff_decomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/rap_sfcdiff_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rap_sfcdiff_restart Checking test 061 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2640,14 +2582,14 @@ Checking test 061 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 356.217382 - 0: The maximum resident set size (KB) = 552204 + 0: The total amount of wall time = 360.540164 + 0: The maximum resident set size (KB) = 552264 Test 061 rap_sfcdiff_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/hrrr_control +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hrrr_control Checking test 062 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2694,14 +2636,14 @@ Checking test 062 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 463.499455 - 0: The maximum resident set size (KB) = 806100 + 0: The total amount of wall time = 465.414866 + 0: The maximum resident set size (KB) = 805964 Test 062 hrrr_control PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/hrrr_control_decomp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hrrr_control_decomp Checking test 063 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2748,14 +2690,14 @@ Checking test 063 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 482.124942 - 0: The maximum resident set size (KB) = 803608 + 0: The total amount of wall time = 480.859701 + 0: The maximum resident set size (KB) = 805296 Test 063 hrrr_control_decomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/hrrr_control_2threads +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hrrr_control_2threads Checking test 064 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2802,14 +2744,14 @@ Checking test 064 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 439.558931 - 0: The maximum resident set size (KB) = 875160 + 0: The total amount of wall time = 441.587734 + 0: The maximum resident set size (KB) = 872784 Test 064 hrrr_control_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/hrrr_control_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hrrr_control_restart Checking test 065 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2848,14 +2790,14 @@ Checking test 065 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 346.908481 - 0: The maximum resident set size (KB) = 548092 + 0: The total amount of wall time = 344.269998 + 0: The maximum resident set size (KB) = 547972 Test 065 hrrr_control_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1beta -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/rrfs_v1beta +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1beta +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rrfs_v1beta Checking test 066 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2902,14 +2844,14 @@ Checking test 066 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 475.954634 - 0: The maximum resident set size (KB) = 804948 + 0: The total amount of wall time = 473.948281 + 0: The maximum resident set size (KB) = 805076 Test 066 rrfs_v1beta PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1nssl -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/rrfs_v1nssl +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1nssl +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rrfs_v1nssl Checking test 067 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2924,14 +2866,14 @@ Checking test 067 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 583.983896 - 0: The maximum resident set size (KB) = 493524 + 0: The total amount of wall time = 581.704730 + 0: The maximum resident set size (KB) = 493332 Test 067 rrfs_v1nssl PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/rrfs_v1nssl_nohailnoccn +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rrfs_v1nssl_nohailnoccn Checking test 068 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2946,14 +2888,14 @@ Checking test 068 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 564.678827 - 0: The maximum resident set size (KB) = 486012 + 0: The total amount of wall time = 558.795294 + 0: The maximum resident set size (KB) = 485904 Test 068 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rrfs_smoke_conus13km_hrrr_warm Checking test 069 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2962,14 +2904,14 @@ Checking test 069 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 188.163477 - 0: The maximum resident set size (KB) = 658000 + 0: The total amount of wall time = 182.873819 + 0: The maximum resident set size (KB) = 657928 Test 069 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 070 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2978,14 +2920,14 @@ Checking test 070 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 127.933594 - 0: The maximum resident set size (KB) = 671280 + 0: The total amount of wall time = 126.129012 + 0: The maximum resident set size (KB) = 671328 Test 070 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/rrfs_conus13km_hrrr_warm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rrfs_conus13km_hrrr_warm Checking test 071 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2994,14 +2936,14 @@ Checking test 071 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 170.974179 - 0: The maximum resident set size (KB) = 634820 + 0: The total amount of wall time = 166.332453 + 0: The maximum resident set size (KB) = 634752 Test 071 rrfs_conus13km_hrrr_warm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rrfs_smoke_conus13km_radar_tten_warm Checking test 072 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3010,26 +2952,26 @@ Checking test 072 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 191.033624 - 0: The maximum resident set size (KB) = 660948 + 0: The total amount of wall time = 195.380364 + 0: The maximum resident set size (KB) = 660916 Test 072 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 073 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 89.622313 - 0: The maximum resident set size (KB) = 615188 + 0: The total amount of wall time = 98.133525 + 0: The maximum resident set size (KB) = 615180 Test 073 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmgt -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_csawmgt +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmgt +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_csawmgt Checking test 074 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3040,14 +2982,14 @@ Checking test 074 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 396.312295 - 0: The maximum resident set size (KB) = 502580 + 0: The total amount of wall time = 397.382233 + 0: The maximum resident set size (KB) = 502596 Test 074 control_csawmgt PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_ras -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_ras +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_ras +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_ras Checking test 075 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3058,26 +3000,26 @@ Checking test 075 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 201.812690 - 0: The maximum resident set size (KB) = 472880 + 0: The total amount of wall time = 201.581952 + 0: The maximum resident set size (KB) = 472936 Test 075 control_ras PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wam -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_wam +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wam +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_wam Checking test 076 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 127.066357 - 0: The maximum resident set size (KB) = 189004 + 0: The total amount of wall time = 126.569869 + 0: The maximum resident set size (KB) = 189048 Test 076 control_wam PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_faster -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_p8_faster +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_faster +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_p8_faster Checking test 077 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3124,14 +3066,14 @@ Checking test 077 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 193.763667 + 0: The total amount of wall time = 185.372809 0: The maximum resident set size (KB) = 1380124 Test 077 control_p8_faster PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control_faster -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/regional_control_faster +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control_faster +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/regional_control_faster Checking test 078 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3142,56 +3084,56 @@ Checking test 078 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 330.649901 - 0: The maximum resident set size (KB) = 578816 + 0: The total amount of wall time = 319.657989 + 0: The maximum resident set size (KB) = 578684 Test 078 regional_control_faster PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 079 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 912.761522 - 0: The maximum resident set size (KB) = 689924 + 0: The total amount of wall time = 896.029959 + 0: The maximum resident set size (KB) = 689956 Test 079 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 080 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 531.483036 - 0: The maximum resident set size (KB) = 703388 + 0: The total amount of wall time = 538.346178 + 0: The maximum resident set size (KB) = 703800 Test 080 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/rrfs_conus13km_hrrr_warm_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rrfs_conus13km_hrrr_warm_debug Checking test 081 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 819.221316 - 0: The maximum resident set size (KB) = 664728 + 0: The total amount of wall time = 809.419167 + 0: The maximum resident set size (KB) = 664892 Test 081 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_CubedSphereGrid_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_CubedSphereGrid_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_CubedSphereGrid_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_CubedSphereGrid_debug Checking test 082 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3218,334 +3160,334 @@ Checking test 082 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 158.319363 - 0: The maximum resident set size (KB) = 601960 + 0: The total amount of wall time = 157.572776 + 0: The maximum resident set size (KB) = 601956 Test 082 control_CubedSphereGrid_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_wrtGauss_netcdf_parallel_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_wrtGauss_netcdf_parallel_debug Checking test 083 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 167.537276 - 0: The maximum resident set size (KB) = 599540 + 0: The total amount of wall time = 162.616387 + 0: The maximum resident set size (KB) = 599536 Test 083 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_stochy_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_stochy_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_stochy_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_stochy_debug Checking test 084 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 179.824942 - 0: The maximum resident set size (KB) = 604636 + 0: The total amount of wall time = 176.919724 + 0: The maximum resident set size (KB) = 604516 Test 084 control_stochy_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_lndp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_lndp_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_lndp_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_lndp_debug Checking test 085 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 162.863078 - 0: The maximum resident set size (KB) = 604080 + 0: The total amount of wall time = 158.889605 + 0: The maximum resident set size (KB) = 603868 Test 085 control_lndp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmg_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_csawmg_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmg_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_csawmg_debug Checking test 086 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 262.566109 - 0: The maximum resident set size (KB) = 641384 + 0: The total amount of wall time = 256.597229 + 0: The maximum resident set size (KB) = 641304 Test 086 control_csawmg_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmgt_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_csawmgt_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmgt_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_csawmgt_debug Checking test 087 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 259.979746 - 0: The maximum resident set size (KB) = 641000 + 0: The total amount of wall time = 255.483168 + 0: The maximum resident set size (KB) = 640988 Test 087 control_csawmgt_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_ras_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_ras_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_ras_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_ras_debug Checking test 088 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 160.875246 - 0: The maximum resident set size (KB) = 613120 + 0: The total amount of wall time = 163.636295 + 0: The maximum resident set size (KB) = 612996 Test 088 control_ras_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_diag_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_diag_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_diag_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_diag_debug Checking test 089 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 163.590737 - 0: The maximum resident set size (KB) = 659080 + 0: The total amount of wall time = 163.268344 + 0: The maximum resident set size (KB) = 659064 Test 089 control_diag_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_debug_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_debug_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_debug_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_debug_p8 Checking test 090 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 191.322286 - 0: The maximum resident set size (KB) = 1382744 + 0: The total amount of wall time = 190.436466 + 0: The maximum resident set size (KB) = 1382780 Test 090 control_debug_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/regional_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/regional_debug Checking test 091 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1051.350958 - 0: The maximum resident set size (KB) = 605936 + 0: The total amount of wall time = 1040.669751 + 0: The maximum resident set size (KB) = 605908 Test 091 regional_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/rap_control_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rap_control_debug Checking test 092 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 299.025670 - 0: The maximum resident set size (KB) = 970296 + 0: The total amount of wall time = 299.518468 + 0: The maximum resident set size (KB) = 970412 Test 092 rap_control_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/hrrr_control_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hrrr_control_debug Checking test 093 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 285.632021 - 0: The maximum resident set size (KB) = 968704 + 0: The total amount of wall time = 285.774860 + 0: The maximum resident set size (KB) = 968852 Test 093 hrrr_control_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/rap_unified_drag_suite_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rap_unified_drag_suite_debug Checking test 094 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 290.896758 - 0: The maximum resident set size (KB) = 970348 + 0: The total amount of wall time = 292.956760 + 0: The maximum resident set size (KB) = 970448 Test 094 rap_unified_drag_suite_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_diag_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/rap_diag_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_diag_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rap_diag_debug Checking test 095 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 304.702126 - 0: The maximum resident set size (KB) = 1054168 + 0: The total amount of wall time = 304.714359 + 0: The maximum resident set size (KB) = 1054176 Test 095 rap_diag_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_cires_ugwp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/rap_cires_ugwp_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_cires_ugwp_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rap_cires_ugwp_debug Checking test 096 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 298.693221 - 0: The maximum resident set size (KB) = 969808 + 0: The total amount of wall time = 295.940338 + 0: The maximum resident set size (KB) = 969568 Test 096 rap_cires_ugwp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_cires_ugwp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/rap_unified_ugwp_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_cires_ugwp_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rap_unified_ugwp_debug Checking test 097 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 299.342275 - 0: The maximum resident set size (KB) = 971828 + 0: The total amount of wall time = 296.818162 + 0: The maximum resident set size (KB) = 971772 Test 097 rap_unified_ugwp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_lndp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/rap_lndp_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_lndp_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rap_lndp_debug Checking test 098 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 297.034272 - 0: The maximum resident set size (KB) = 971044 + 0: The total amount of wall time = 302.620992 + 0: The maximum resident set size (KB) = 971248 Test 098 rap_lndp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_flake_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/rap_flake_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_flake_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rap_flake_debug Checking test 099 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 296.141911 - 0: The maximum resident set size (KB) = 970080 + 0: The total amount of wall time = 290.889031 + 0: The maximum resident set size (KB) = 970520 Test 099 rap_flake_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_progcld_thompson_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/rap_progcld_thompson_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_progcld_thompson_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rap_progcld_thompson_debug Checking test 100 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 292.242607 - 0: The maximum resident set size (KB) = 970364 + 0: The total amount of wall time = 290.499515 + 0: The maximum resident set size (KB) = 970500 Test 100 rap_progcld_thompson_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_noah_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/rap_noah_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_noah_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rap_noah_debug Checking test 101 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 287.864525 - 0: The maximum resident set size (KB) = 969048 + 0: The total amount of wall time = 287.245981 + 0: The maximum resident set size (KB) = 969200 Test 101 rap_noah_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/rap_sfcdiff_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rap_sfcdiff_debug Checking test 102 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 292.058582 - 0: The maximum resident set size (KB) = 970460 + 0: The total amount of wall time = 295.939677 + 0: The maximum resident set size (KB) = 970448 Test 102 rap_sfcdiff_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rap_noah_sfcdiff_cires_ugwp_debug Checking test 103 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 476.822290 - 0: The maximum resident set size (KB) = 968660 + 0: The total amount of wall time = 476.332479 + 0: The maximum resident set size (KB) = 968740 Test 103 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1beta_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/rrfs_v1beta_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1beta_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rrfs_v1beta_debug Checking test 104 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 285.610290 + 0: The total amount of wall time = 285.680704 0: The maximum resident set size (KB) = 966312 Test 104 rrfs_v1beta_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wam_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_wam_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wam_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_wam_debug Checking test 105 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 293.232611 - 0: The maximum resident set size (KB) = 217500 + 0: The total amount of wall time = 298.822118 + 0: The maximum resident set size (KB) = 217656 Test 105 control_wam_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3556,14 +3498,14 @@ Checking test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 259.940377 - 0: The maximum resident set size (KB) = 802896 + 0: The total amount of wall time = 263.253283 + 0: The maximum resident set size (KB) = 802788 Test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/rap_control_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rap_control_dyn32_phy32 Checking test 107 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3610,14 +3552,14 @@ Checking test 107 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 399.552504 - 0: The maximum resident set size (KB) = 691496 + 0: The total amount of wall time = 398.498465 + 0: The maximum resident set size (KB) = 691340 Test 107 rap_control_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/hrrr_control_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hrrr_control_dyn32_phy32 Checking test 108 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3664,14 +3606,14 @@ Checking test 108 hrrr_control_dyn32_phy32 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 = 215.201719 - 0: The maximum resident set size (KB) = 689764 + 0: The total amount of wall time = 214.235523 + 0: The maximum resident set size (KB) = 689732 Test 108 hrrr_control_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/rap_2threads_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rap_2threads_dyn32_phy32 Checking test 109 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3718,14 +3660,14 @@ Checking test 109 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 388.716864 - 0: The maximum resident set size (KB) = 743604 + 0: The total amount of wall time = 391.416601 + 0: The maximum resident set size (KB) = 743320 Test 109 rap_2threads_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/hrrr_control_2threads_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hrrr_control_2threads_dyn32_phy32 Checking test 110 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3772,14 +3714,14 @@ Checking test 110 hrrr_control_2threads_dyn32_phy32 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 = 204.084899 - 0: The maximum resident set size (KB) = 740752 + 0: The total amount of wall time = 200.096984 + 0: The maximum resident set size (KB) = 740880 Test 110 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/hrrr_control_decomp_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hrrr_control_decomp_dyn32_phy32 Checking test 111 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3826,14 +3768,14 @@ Checking test 111 hrrr_control_decomp_dyn32_phy32 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 = 223.717672 - 0: The maximum resident set size (KB) = 688448 + 0: The total amount of wall time = 223.774918 + 0: The maximum resident set size (KB) = 688476 Test 111 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/rap_restart_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rap_restart_dyn32_phy32 Checking test 112 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3872,14 +3814,14 @@ Checking test 112 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 294.665414 - 0: The maximum resident set size (KB) = 525308 + 0: The total amount of wall time = 292.521674 + 0: The maximum resident set size (KB) = 526388 Test 112 rap_restart_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/hrrr_control_restart_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hrrr_control_restart_dyn32_phy32 Checking test 113 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3918,14 +3860,14 @@ Checking test 113 hrrr_control_restart_dyn32_phy32 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 = 113.886588 - 0: The maximum resident set size (KB) = 518392 + 0: The total amount of wall time = 117.209965 + 0: The maximum resident set size (KB) = 518740 Test 113 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn64_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/rap_control_dyn64_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn64_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rap_control_dyn64_phy32 Checking test 114 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3972,81 +3914,81 @@ Checking test 114 rap_control_dyn64_phy32 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 = 270.868404 - 0: The maximum resident set size (KB) = 713520 + 0: The total amount of wall time = 267.683254 + 0: The maximum resident set size (KB) = 713368 Test 114 rap_control_dyn64_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/rap_control_debug_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rap_control_debug_dyn32_phy32 Checking test 115 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 288.011917 - 0: The maximum resident set size (KB) = 855384 + 0: The total amount of wall time = 287.786707 + 0: The maximum resident set size (KB) = 855388 Test 115 rap_control_debug_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/hrrr_control_debug_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hrrr_control_debug_dyn32_phy32 Checking test 116 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 285.768462 - 0: The maximum resident set size (KB) = 852920 + 0: The total amount of wall time = 281.901474 + 0: The maximum resident set size (KB) = 852792 Test 116 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/rap_control_dyn64_phy32_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rap_control_dyn64_phy32_debug Checking test 117 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 300.235043 - 0: The maximum resident set size (KB) = 876420 + 0: The total amount of wall time = 291.724862 + 0: The maximum resident set size (KB) = 876348 Test 117 rap_control_dyn64_phy32_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/hafs_regional_atm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hafs_regional_atm Checking test 118 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 274.687226 - 0: The maximum resident set size (KB) = 688252 + 0: The total amount of wall time = 276.415230 + 0: The maximum resident set size (KB) = 687452 Test 118 hafs_regional_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/hafs_regional_atm_thompson_gfdlsf +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hafs_regional_atm_thompson_gfdlsf Checking test 119 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 311.741516 - 0: The maximum resident set size (KB) = 1039580 + 0: The total amount of wall time = 306.979249 + 0: The maximum resident set size (KB) = 1039604 Test 119 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_ocn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/hafs_regional_atm_ocn +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_ocn +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hafs_regional_atm_ocn Checking test 120 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4055,14 +3997,14 @@ Checking test 120 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 450.842459 - 0: The maximum resident set size (KB) = 715392 + 0: The total amount of wall time = 447.870525 + 0: The maximum resident set size (KB) = 715376 Test 120 hafs_regional_atm_ocn PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_wav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/hafs_regional_atm_wav +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_wav +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hafs_regional_atm_wav Checking test 121 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4071,14 +4013,14 @@ Checking test 121 hafs_regional_atm_wav 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 = 947.300811 - 0: The maximum resident set size (KB) = 750196 + 0: The total amount of wall time = 940.989577 + 0: The maximum resident set size (KB) = 750656 Test 121 hafs_regional_atm_wav PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_ocn_wav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/hafs_regional_atm_ocn_wav +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_ocn_wav +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hafs_regional_atm_ocn_wav Checking test 122 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4089,28 +4031,28 @@ Checking test 122 hafs_regional_atm_ocn_wav 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 = 1043.709817 - 0: The maximum resident set size (KB) = 766104 + 0: The total amount of wall time = 1053.781793 + 0: The maximum resident set size (KB) = 765696 Test 122 hafs_regional_atm_ocn_wav PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/hafs_regional_1nest_atm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_1nest_atm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hafs_regional_1nest_atm Checking test 123 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 379.105726 - 0: The maximum resident set size (KB) = 279440 + 0: The total amount of wall time = 379.510617 + 0: The maximum resident set size (KB) = 279028 Test 123 hafs_regional_1nest_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/hafs_regional_telescopic_2nests_atm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hafs_regional_telescopic_2nests_atm Checking test 124 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4119,28 +4061,28 @@ Checking test 124 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 432.965275 - 0: The maximum resident set size (KB) = 286732 + 0: The total amount of wall time = 460.367236 + 0: The maximum resident set size (KB) = 289288 Test 124 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_global_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/hafs_global_1nest_atm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_global_1nest_atm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hafs_global_1nest_atm Checking test 125 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 175.669917 - 0: The maximum resident set size (KB) = 184344 + 0: The total amount of wall time = 173.557130 + 0: The maximum resident set size (KB) = 184620 Test 125 hafs_global_1nest_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_global_multiple_4nests_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/hafs_global_multiple_4nests_atm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_global_multiple_4nests_atm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hafs_global_multiple_4nests_atm Checking test 126 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4158,14 +4100,14 @@ Checking test 126 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 518.867528 - 0: The maximum resident set size (KB) = 232868 + 0: The total amount of wall time = 492.136418 + 0: The maximum resident set size (KB) = 214052 Test 126 hafs_global_multiple_4nests_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/hafs_regional_specified_moving_1nest_atm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hafs_regional_specified_moving_1nest_atm Checking test 127 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4174,28 +4116,28 @@ Checking test 127 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 242.919793 - 0: The maximum resident set size (KB) = 296172 + 0: The total amount of wall time = 245.256895 + 0: The maximum resident set size (KB) = 294580 Test 127 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/hafs_regional_storm_following_1nest_atm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hafs_regional_storm_following_1nest_atm Checking test 128 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 232.304300 - 0: The maximum resident set size (KB) = 295784 + 0: The total amount of wall time = 227.575288 + 0: The maximum resident set size (KB) = 294720 Test 128 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hafs_regional_storm_following_1nest_atm_ocn Checking test 129 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4204,42 +4146,42 @@ Checking test 129 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 273.599583 - 0: The maximum resident set size (KB) = 323088 + 0: The total amount of wall time = 268.437338 + 0: The maximum resident set size (KB) = 323876 Test 129 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/hafs_global_storm_following_1nest_atm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_global_storm_following_1nest_atm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hafs_global_storm_following_1nest_atm Checking test 130 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 77.977986 - 0: The maximum resident set size (KB) = 203180 + 0: The total amount of wall time = 69.475341 + 0: The maximum resident set size (KB) = 203248 Test 130 hafs_global_storm_following_1nest_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 131 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 777.363060 - 0: The maximum resident set size (KB) = 348788 + 0: The total amount of wall time = 769.776899 + 0: The maximum resident set size (KB) = 347352 Test 131 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 132 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4250,14 +4192,14 @@ Checking test 132 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 710.350544 - 0: The maximum resident set size (KB) = 371904 + 0: The total amount of wall time = 708.864686 + 0: The maximum resident set size (KB) = 372656 Test 132 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_docn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/hafs_regional_docn +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_docn +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hafs_regional_docn Checking test 133 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4265,14 +4207,14 @@ Checking test 133 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 399.794206 - 0: The maximum resident set size (KB) = 724464 + 0: The total amount of wall time = 395.964669 + 0: The maximum resident set size (KB) = 724188 Test 133 hafs_regional_docn PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_docn_oisst -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/hafs_regional_docn_oisst +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_docn_oisst +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hafs_regional_docn_oisst Checking test 134 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4280,131 +4222,131 @@ Checking test 134 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 405.125127 - 0: The maximum resident set size (KB) = 713236 + 0: The total amount of wall time = 395.865175 + 0: The maximum resident set size (KB) = 713400 Test 134 hafs_regional_docn_oisst PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_datm_cdeps -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/hafs_regional_datm_cdeps +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_datm_cdeps +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hafs_regional_datm_cdeps Checking test 135 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 1169.622234 - 0: The maximum resident set size (KB) = 808912 + 0: The total amount of wall time = 1178.310661 + 0: The maximum resident set size (KB) = 809200 Test 135 hafs_regional_datm_cdeps PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/datm_cdeps_control_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/datm_cdeps_control_cfsr Checking test 136 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 168.974358 - 0: The maximum resident set size (KB) = 715684 + 0: The total amount of wall time = 167.233402 + 0: The maximum resident set size (KB) = 717504 Test 136 datm_cdeps_control_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/datm_cdeps_restart_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/datm_cdeps_restart_cfsr Checking test 137 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 110.459637 - 0: The maximum resident set size (KB) = 697268 + 0: The total amount of wall time = 102.099401 + 0: The maximum resident set size (KB) = 708852 Test 137 datm_cdeps_restart_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/datm_cdeps_control_gefs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_gefs +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/datm_cdeps_control_gefs Checking test 138 datm_cdeps_control_gefs 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 = 161.280442 - 0: The maximum resident set size (KB) = 601812 + 0: The total amount of wall time = 161.604603 + 0: The maximum resident set size (KB) = 597972 Test 138 datm_cdeps_control_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_iau_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/datm_cdeps_iau_gefs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_iau_gefs +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/datm_cdeps_iau_gefs Checking test 139 datm_cdeps_iau_gefs 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 = 162.455959 - 0: The maximum resident set size (KB) = 597984 + 0: The total amount of wall time = 162.318115 + 0: The maximum resident set size (KB) = 599984 Test 139 datm_cdeps_iau_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_stochy_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/datm_cdeps_stochy_gefs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_stochy_gefs +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/datm_cdeps_stochy_gefs Checking test 140 datm_cdeps_stochy_gefs 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 = 168.142477 - 0: The maximum resident set size (KB) = 601864 + 0: The total amount of wall time = 162.603448 + 0: The maximum resident set size (KB) = 600056 Test 140 datm_cdeps_stochy_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/datm_cdeps_ciceC_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_ciceC_cfsr +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/datm_cdeps_ciceC_cfsr Checking test 141 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 166.596899 - 0: The maximum resident set size (KB) = 715664 + 0: The total amount of wall time = 168.153052 + 0: The maximum resident set size (KB) = 715828 Test 141 datm_cdeps_ciceC_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_bulk_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/datm_cdeps_bulk_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_bulk_cfsr +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/datm_cdeps_bulk_cfsr Checking test 142 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 167.807843 - 0: The maximum resident set size (KB) = 715756 + 0: The total amount of wall time = 166.665649 + 0: The maximum resident set size (KB) = 717596 Test 142 datm_cdeps_bulk_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_bulk_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/datm_cdeps_bulk_gefs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_bulk_gefs +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/datm_cdeps_bulk_gefs Checking test 143 datm_cdeps_bulk_gefs 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 = 159.852490 - 0: The maximum resident set size (KB) = 598292 + 0: The total amount of wall time = 158.677200 + 0: The maximum resident set size (KB) = 597984 Test 143 datm_cdeps_bulk_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_mx025_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/datm_cdeps_mx025_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_mx025_cfsr +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/datm_cdeps_mx025_cfsr Checking test 144 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4413,14 +4355,14 @@ Checking test 144 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 479.149155 - 0: The maximum resident set size (KB) = 494588 + 0: The total amount of wall time = 425.073961 + 0: The maximum resident set size (KB) = 496716 Test 144 datm_cdeps_mx025_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_mx025_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/datm_cdeps_mx025_gefs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_mx025_gefs +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/datm_cdeps_mx025_gefs Checking test 145 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4429,77 +4371,77 @@ Checking test 145 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 463.921989 - 0: The maximum resident set size (KB) = 476520 + 0: The total amount of wall time = 425.668742 + 0: The maximum resident set size (KB) = 475988 Test 145 datm_cdeps_mx025_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/datm_cdeps_multiple_files_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/datm_cdeps_multiple_files_cfsr Checking test 146 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 167.873059 - 0: The maximum resident set size (KB) = 715804 + 0: The total amount of wall time = 169.207887 + 0: The maximum resident set size (KB) = 715996 Test 146 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/datm_cdeps_3072x1536_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/datm_cdeps_3072x1536_cfsr Checking test 147 datm_cdeps_3072x1536_cfsr 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 = 252.706091 - 0: The maximum resident set size (KB) = 1952152 + 0: The total amount of wall time = 251.145275 + 0: The maximum resident set size (KB) = 1948080 Test 147 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_gfs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/datm_cdeps_gfs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_gfs +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/datm_cdeps_gfs Checking test 148 datm_cdeps_gfs 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 = 249.204991 - 0: The maximum resident set size (KB) = 1947956 + 0: The total amount of wall time = 252.822546 + 0: The maximum resident set size (KB) = 1952208 Test 148 datm_cdeps_gfs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_debug_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/datm_cdeps_debug_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_debug_cfsr +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/datm_cdeps_debug_cfsr Checking test 149 datm_cdeps_debug_cfsr results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 372.355614 - 0: The maximum resident set size (KB) = 711456 + 0: The total amount of wall time = 372.813951 + 0: The maximum resident set size (KB) = 711452 Test 149 datm_cdeps_debug_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr_faster -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/datm_cdeps_control_cfsr_faster +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_cfsr_faster +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/datm_cdeps_control_cfsr_faster Checking test 150 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.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.619360 - 0: The maximum resident set size (KB) = 721388 + 0: The total amount of wall time = 170.180116 + 0: The maximum resident set size (KB) = 715728 Test 150 datm_cdeps_control_cfsr_faster PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/datm_cdeps_lnd_gswp3 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/datm_cdeps_lnd_gswp3 Checking test 151 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4508,14 +4450,14 @@ Checking test 151 datm_cdeps_lnd_gswp3 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 = 25.574801 - 0: The maximum resident set size (KB) = 149812 + 0: The total amount of wall time = 19.739349 + 0: The maximum resident set size (KB) = 149920 Test 151 datm_cdeps_lnd_gswp3 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/datm_cdeps_lnd_gswp3_rst +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/datm_cdeps_lnd_gswp3_rst Checking test 152 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4524,14 +4466,14 @@ Checking test 152 datm_cdeps_lnd_gswp3_rst 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 = 22.006799 - 0: The maximum resident set size (KB) = 153824 + 0: The total amount of wall time = 23.625868 + 0: The maximum resident set size (KB) = 149740 Test 152 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_atmlnd_sbs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_p8_atmlnd_sbs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_atmlnd_sbs +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_p8_atmlnd_sbs Checking test 153 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4616,14 +4558,14 @@ Checking test 153 control_p8_atmlnd_sbs results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 251.957896 - 0: The maximum resident set size (KB) = 1413552 + 0: The total amount of wall time = 255.698791 + 0: The maximum resident set size (KB) = 1413568 Test 153 control_p8_atmlnd_sbs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_atmwav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/control_atmwav +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_atmwav +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_atmwav Checking test 154 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4667,14 +4609,14 @@ Checking test 154 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 101.885400 - 0: The maximum resident set size (KB) = 451540 + 0: The total amount of wall time = 98.226036 + 0: The maximum resident set size (KB) = 451548 Test 154 control_atmwav PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/atmaero_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/atmaero_control_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/atmaero_control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/atmaero_control_p8 Checking test 155 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4718,14 +4660,14 @@ Checking test 155 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 276.804989 - 0: The maximum resident set size (KB) = 1448168 + 0: The total amount of wall time = 269.145759 + 0: The maximum resident set size (KB) = 1448080 Test 155 atmaero_control_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/atmaero_control_p8_rad -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/atmaero_control_p8_rad +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/atmaero_control_p8_rad +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/atmaero_control_p8_rad Checking test 156 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4769,14 +4711,14 @@ Checking test 156 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 312.117297 - 0: The maximum resident set size (KB) = 1469924 + 0: The total amount of wall time = 305.835627 + 0: The maximum resident set size (KB) = 1469932 Test 156 atmaero_control_p8_rad PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/atmaero_control_p8_rad_micro -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/atmaero_control_p8_rad_micro +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/atmaero_control_p8_rad_micro +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/atmaero_control_p8_rad_micro Checking test 157 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4820,14 +4762,14 @@ Checking test 157 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 311.603849 - 0: The maximum resident set size (KB) = 1473216 + 0: The total amount of wall time = 308.402513 + 0: The maximum resident set size (KB) = 1473520 Test 157 atmaero_control_p8_rad_micro PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_atmaq -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/regional_atmaq +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_atmaq +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/regional_atmaq Checking test 158 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4843,14 +4785,14 @@ Checking test 158 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 694.903134 - 0: The maximum resident set size (KB) = 960424 + 0: The total amount of wall time = 668.170458 + 0: The maximum resident set size (KB) = 970056 Test 158 regional_atmaq PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_atmaq_faster -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_39621/regional_atmaq_faster +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_atmaq_faster +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/regional_atmaq_faster Checking test 159 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4866,12 +4808,8 @@ Checking test 159 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 645.618525 - 0: The maximum resident set size (KB) = 961328 + 0: The total amount of wall time = 625.127520 + 0: The maximum resident set size (KB) = 966080 Test 159 regional_atmaq_faster PASS - -REGRESSION TEST WAS SUCCESSFUL -Wed Apr 5 04:49:33 EDT 2023 -Elapsed time: 12h:18m:03s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index ce3abcfa8f0..d34242e6b74 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,21 +1,21 @@ -Tue Apr 4 20:32:10 UTC 2023 +Wed Apr 5 20:43:53 UTC 2023 Start Regression test -Compile 001 elapsed time 182 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 187 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 318 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 001 elapsed time 183 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 185 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 317 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug Compile 004 elapsed time 96 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 189 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 392 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 320 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 317 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 263 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 005 elapsed time 184 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 394 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 315 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 314 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 257 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON Compile 010 elapsed time 229 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 141 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 012 elapsed time 107 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 138 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 012 elapsed time 111 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/control_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/control_c48 Checking test 001 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -54,14 +54,14 @@ Checking test 001 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 683.397105 -0: The maximum resident set size (KB) = 703248 +0: The total amount of wall time = 688.877530 +0: The maximum resident set size (KB) = 702248 Test 001 control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/control_stochy +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/control_stochy Checking test 002 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -72,14 +72,14 @@ Checking test 002 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 639.063702 - 0: The maximum resident set size (KB) = 476260 + 0: The total amount of wall time = 655.197524 + 0: The maximum resident set size (KB) = 478104 Test 002 control_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/control_ras +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/control_ras +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/control_ras Checking test 003 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -90,14 +90,14 @@ Checking test 003 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 847.903292 - 0: The maximum resident set size (KB) = 489188 + 0: The total amount of wall time = 837.073618 + 0: The maximum resident set size (KB) = 483228 Test 003 control_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/control_p8 Checking test 004 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -144,14 +144,14 @@ Checking test 004 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 897.342467 - 0: The maximum resident set size (KB) = 1231404 + 0: The total amount of wall time = 900.888914 + 0: The maximum resident set size (KB) = 1237660 Test 004 control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/rap_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rap_control Checking test 005 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -198,14 +198,14 @@ Checking test 005 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1470.795958 - 0: The maximum resident set size (KB) = 831256 + 0: The total amount of wall time = 1469.223855 + 0: The maximum resident set size (KB) = 831588 Test 005 rap_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/rap_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rap_decomp Checking test 006 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -252,14 +252,14 @@ Checking test 006 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1472.997787 - 0: The maximum resident set size (KB) = 832444 + 0: The total amount of wall time = 1448.649229 + 0: The maximum resident set size (KB) = 836880 Test 006 rap_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/rap_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rap_2threads Checking test 007 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -306,14 +306,14 @@ Checking test 007 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1361.599251 - 0: The maximum resident set size (KB) = 896444 + 0: The total amount of wall time = 1361.823379 + 0: The maximum resident set size (KB) = 900616 Test 007 rap_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/rap_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rap_restart Checking test 008 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -352,14 +352,14 @@ Checking test 008 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 729.186030 - 0: The maximum resident set size (KB) = 550440 + 0: The total amount of wall time = 739.862088 + 0: The maximum resident set size (KB) = 554216 Test 008 rap_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/rap_sfcdiff +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rap_sfcdiff Checking test 009 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -406,14 +406,14 @@ Checking test 009 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1500.103813 - 0: The maximum resident set size (KB) = 834164 + 0: The total amount of wall time = 1466.816494 + 0: The maximum resident set size (KB) = 834688 Test 009 rap_sfcdiff PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/rap_sfcdiff_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rap_sfcdiff_decomp Checking test 010 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -460,14 +460,14 @@ Checking test 010 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1447.968623 - 0: The maximum resident set size (KB) = 827472 + 0: The total amount of wall time = 1445.752888 + 0: The maximum resident set size (KB) = 834628 Test 010 rap_sfcdiff_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/rap_sfcdiff_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rap_sfcdiff_restart Checking test 011 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -506,14 +506,14 @@ Checking test 011 rap_sfcdiff_restart results .... Comparing 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.438634 - 0: The maximum resident set size (KB) = 555612 + 0: The total amount of wall time = 1098.992804 + 0: The maximum resident set size (KB) = 550232 Test 011 rap_sfcdiff_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/hrrr_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/hrrr_control Checking test 012 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -560,14 +560,14 @@ Checking test 012 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1464.810259 - 0: The maximum resident set size (KB) = 825600 + 0: The total amount of wall time = 1443.845848 + 0: The maximum resident set size (KB) = 828124 Test 012 hrrr_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/hrrr_control_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/hrrr_control_2threads Checking test 013 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -614,14 +614,14 @@ Checking test 013 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1307.931503 - 0: The maximum resident set size (KB) = 895556 + 0: The total amount of wall time = 1335.538767 + 0: The maximum resident set size (KB) = 897224 Test 013 hrrr_control_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/hrrr_control_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/hrrr_control_decomp Checking test 014 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -668,14 +668,14 @@ Checking test 014 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1411.234049 - 0: The maximum resident set size (KB) = 829376 + 0: The total amount of wall time = 1418.727736 + 0: The maximum resident set size (KB) = 826916 Test 014 hrrr_control_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/hrrr_control_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/hrrr_control_restart Checking test 015 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -714,14 +714,14 @@ Checking test 015 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1050.289434 - 0: The maximum resident set size (KB) = 548156 + 0: The total amount of wall time = 1077.182861 + 0: The maximum resident set size (KB) = 550152 Test 015 hrrr_control_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/rrfs_v1beta +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rrfs_v1beta Checking test 016 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -768,14 +768,14 @@ Checking test 016 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1467.047055 - 0: The maximum resident set size (KB) = 831512 + 0: The total amount of wall time = 1491.582801 + 0: The maximum resident set size (KB) = 829404 Test 016 rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rrfs_smoke_conus13km_hrrr_warm Checking test 017 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -784,14 +784,14 @@ Checking test 017 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 797.173399 - 0: The maximum resident set size (KB) = 675032 + 0: The total amount of wall time = 798.951487 + 0: The maximum resident set size (KB) = 671116 Test 017 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 018 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -800,14 +800,14 @@ Checking test 018 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 1089.386046 - 0: The maximum resident set size (KB) = 666072 + 0: The total amount of wall time = 1083.283608 + 0: The maximum resident set size (KB) = 660744 Test 018 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/rrfs_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rrfs_conus13km_hrrr_warm Checking test 019 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -816,14 +816,14 @@ Checking test 019 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 761.992259 - 0: The maximum resident set size (KB) = 643956 + 0: The total amount of wall time = 751.153297 + 0: The maximum resident set size (KB) = 646464 Test 019 rrfs_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rrfs_smoke_conus13km_radar_tten_warm Checking test 020 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -832,234 +832,234 @@ Checking test 020 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 751.299886 - 0: The maximum resident set size (KB) = 672480 + 0: The total amount of wall time = 789.414984 + 0: The maximum resident set size (KB) = 675028 Test 020 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 021 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 361.716334 - 0: The maximum resident set size (KB) = 633972 + 0: The total amount of wall time = 379.003630 + 0: The maximum resident set size (KB) = 636512 Test 021 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/control_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/control_diag_debug Checking test 022 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 124.004075 - 0: The maximum resident set size (KB) = 523472 + 0: The total amount of wall time = 124.538170 + 0: The maximum resident set size (KB) = 530528 Test 022 control_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/regional_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/regional_debug Checking test 023 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 763.770937 - 0: The maximum resident set size (KB) = 592152 + 0: The total amount of wall time = 723.812047 + 0: The maximum resident set size (KB) = 590012 Test 023 regional_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/rap_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rap_control_debug Checking test 024 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 172.805239 - 0: The maximum resident set size (KB) = 844304 + 0: The total amount of wall time = 173.115201 + 0: The maximum resident set size (KB) = 845528 Test 024 rap_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/hrrr_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/hrrr_control_debug Checking test 025 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 170.542022 - 0: The maximum resident set size (KB) = 842212 + 0: The total amount of wall time = 170.800021 + 0: The maximum resident set size (KB) = 844396 Test 025 hrrr_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/rap_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rap_diag_debug Checking test 026 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 213.852956 - 0: The maximum resident set size (KB) = 925832 + 0: The total amount of wall time = 207.858014 + 0: The maximum resident set size (KB) = 928544 Test 026 rap_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rap_noah_sfcdiff_cires_ugwp_debug Checking test 027 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.178242 - 0: The maximum resident set size (KB) = 838352 + 0: The total amount of wall time = 268.632975 + 0: The maximum resident set size (KB) = 837056 Test 027 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/rap_progcld_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rap_progcld_thompson_debug Checking test 028 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 170.047866 - 0: The maximum resident set size (KB) = 840296 + 0: The total amount of wall time = 169.775303 + 0: The maximum resident set size (KB) = 845736 Test 028 rap_progcld_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/rrfs_v1beta_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rrfs_v1beta_debug Checking test 029 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 173.370121 - 0: The maximum resident set size (KB) = 839320 + 0: The total amount of wall time = 172.035527 + 0: The maximum resident set size (KB) = 839720 Test 029 rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/control_ras_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/control_ras_debug Checking test 030 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 101.413717 - 0: The maximum resident set size (KB) = 479880 + 0: The total amount of wall time = 99.444866 + 0: The maximum resident set size (KB) = 484256 Test 030 control_ras_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/control_stochy_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/control_stochy_debug Checking test 031 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 113.332665 - 0: The maximum resident set size (KB) = 471360 + 0: The total amount of wall time = 115.735426 + 0: The maximum resident set size (KB) = 475276 Test 031 control_stochy_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/control_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/control_debug_p8 Checking test 032 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 118.143250 - 0: The maximum resident set size (KB) = 1228888 + 0: The total amount of wall time = 113.582117 + 0: The maximum resident set size (KB) = 1230308 Test 032 control_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 033 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 654.106460 - 0: The maximum resident set size (KB) = 673036 + 0: The total amount of wall time = 636.298638 + 0: The maximum resident set size (KB) = 683164 Test 033 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 034 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 738.018372 - 0: The maximum resident set size (KB) = 681972 + 0: The total amount of wall time = 749.293064 + 0: The maximum resident set size (KB) = 681740 Test 034 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/rrfs_conus13km_hrrr_warm_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rrfs_conus13km_hrrr_warm_debugs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rrfs_conus13km_hrrr_warm_debug Checking test 035 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 571.059740 - 0: The maximum resident set size (KB) = 655240 + 0: The total amount of wall time = 575.247818 + 0: The maximum resident set size (KB) = 658092 Test 035 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/control_wam_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/control_wam_debug Checking test 036 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 181.450437 - 0: The maximum resident set size (KB) = 192840 + 0: The total amount of wall time = 181.159065 + 0: The maximum resident set size (KB) = 195156 Test 036 control_wam_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/rap_control_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rap_control_dyn32_phy32 Checking test 037 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1106,14 +1106,14 @@ Checking test 037 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1449.982207 - 0: The maximum resident set size (KB) = 692124 + 0: The total amount of wall time = 1507.511448 + 0: The maximum resident set size (KB) = 683920 Test 037 rap_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/hrrr_control_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/hrrr_control_dyn32_phy32 Checking test 038 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1160,14 +1160,14 @@ Checking test 038 hrrr_control_dyn32_phy32 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 = 755.052417 - 0: The maximum resident set size (KB) = 685100 + 0: The total amount of wall time = 759.001644 + 0: The maximum resident set size (KB) = 683912 Test 038 hrrr_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/rap_2threads_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rap_2threads_dyn32_phy32 Checking test 039 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1214,14 +1214,14 @@ Checking test 039 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1326.829281 - 0: The maximum resident set size (KB) = 731340 + 0: The total amount of wall time = 1359.266261 + 0: The maximum resident set size (KB) = 729884 Test 039 rap_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/hrrr_control_2threads_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/hrrr_control_2threads_dyn32_phy32 Checking test 040 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1268,14 +1268,14 @@ Checking test 040 hrrr_control_2threads_dyn32_phy32 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 = 685.353341 - 0: The maximum resident set size (KB) = 725956 + 0: The total amount of wall time = 682.249405 + 0: The maximum resident set size (KB) = 730688 Test 040 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/hrrr_control_decomp_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/hrrr_control_decomp_dyn32_phy32 Checking test 041 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1322,14 +1322,14 @@ Checking test 041 hrrr_control_decomp_dyn32_phy32 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 = 729.898284 - 0: The maximum resident set size (KB) = 688376 + 0: The total amount of wall time = 737.952704 + 0: The maximum resident set size (KB) = 688312 Test 041 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/rap_restart_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rap_restart_dyn32_phy32 Checking test 042 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1368,14 +1368,14 @@ Checking test 042 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1082.552338 - 0: The maximum resident set size (KB) = 512808 + 0: The total amount of wall time = 1074.629510 + 0: The maximum resident set size (KB) = 511240 Test 042 rap_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/hrrr_control_restart_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/hrrr_control_restart_dyn32_phy32 Checking test 043 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1414,14 +1414,14 @@ Checking test 043 hrrr_control_restart_dyn32_phy32 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 = 372.180472 - 0: The maximum resident set size (KB) = 512484 + 0: The total amount of wall time = 377.862756 + 0: The maximum resident set size (KB) = 508516 Test 043 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/rap_control_dyn64_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rap_control_dyn64_phy32 Checking test 044 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1468,128 +1468,58 @@ Checking test 044 rap_control_dyn64_phy32 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 = 1067.807606 - 0: The maximum resident set size (KB) = 710608 + 0: The total amount of wall time = 1050.271591 + 0: The maximum resident set size (KB) = 708088 Test 044 rap_control_dyn64_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/rap_control_debug_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rap_control_debug_dyn32_phy32 Checking test 045 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 173.332915 - 0: The maximum resident set size (KB) = 697784 + 0: The total amount of wall time = 170.860933 + 0: The maximum resident set size (KB) = 703100 Test 045 rap_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/hrrr_control_debug_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/hrrr_control_debug_dyn32_phy32 Checking test 046 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 172.129618 - 0: The maximum resident set size (KB) = 701888 + 0: The total amount of wall time = 168.195095 + 0: The maximum resident set size (KB) = 695776 Test 046 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/rap_control_dyn64_phy32_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rap_control_debug_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rap_control_dyn64_phy32_debug Checking test 047 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 201.131825 - 0: The maximum resident set size (KB) = 718704 + 0: The total amount of wall time = 202.746710 + 0: The maximum resident set size (KB) = 718220 Test 047 rap_control_dyn64_phy32_debug PASS +Test 048 cpld_control_p8 FAIL -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/cpld_control_p8 -Checking test 048 cpld_control_p8 results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 1698.237453 - 0: The maximum resident set size (KB) = 1431744 -Test 048 cpld_control_p8 PASS Tries: 2 - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/cpld_control_nowave_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/cpld_control_c96_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/cpld_control_nowave_noaero_p8 Checking test 049 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1651,14 +1581,14 @@ Checking test 049 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 1223.855477 - 0: The maximum resident set size (KB) = 1333348 + 0: The total amount of wall time = 1240.298513 + 0: The maximum resident set size (KB) = 1332740 Test 049 cpld_control_nowave_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/cpld_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/cpld_debug_p8 Checking test 050 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1711,25 +1641,107 @@ Checking test 050 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 779.887335 - 0: The maximum resident set size (KB) = 1436752 + 0: The total amount of wall time = 854.052885 + 0: The maximum resident set size (KB) = 1441848 Test 050 cpld_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/GNU/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7160/datm_cdeps_control_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/datm_cdeps_control_cfsr Checking test 051 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 173.993511 - 0: The maximum resident set size (KB) = 667508 + 0: The total amount of wall time = 175.214068 + 0: The maximum resident set size (KB) = 666260 Test 051 datm_cdeps_control_cfsr PASS +FAILED TESTS: +Test cpld_control_p8 048 failed in run_test failed + +REGRESSION TEST FAILED +Wed Apr 5 22:00:24 UTC 2023 +Elapsed time: 01h:16m:32s. Have a nice day! +Wed Apr 5 22:29:07 UTC 2023 +Start Regression test + +Compile 001 elapsed time 264 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_7058/cpld_control_p8 +Checking test 001 cpld_control_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 1670.463192 + 0: The maximum resident set size (KB) = 1429888 + +Test 001 cpld_control_p8 PASS + REGRESSION TEST WAS SUCCESSFUL -Tue Apr 4 21:44:13 UTC 2023 -Elapsed time: 01h:12m:03s. Have a nice day! +Wed Apr 5 23:07:45 UTC 2023 +Elapsed time: 00h:38m:38s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 65ab2b6ba88..54059b314fe 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,42 +1,42 @@ -Tue Apr 4 20:18:41 UTC 2023 +Wed Apr 5 20:42:59 UTC 2023 Start Regression test -Compile 001 elapsed time 599 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 611 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 583 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 232 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 223 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 529 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 523 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 722 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 525 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 491 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 011 elapsed time 483 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 438 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 610 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 207 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 156 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 457 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 461 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 167 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 161 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 536 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 021 elapsed time 190 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 619 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 582 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 024 elapsed time 180 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 101 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 177 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 52 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 477 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 515 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 465 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 458 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 160 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 560 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8_mixedmode -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/cpld_control_p8_mixedmode +Compile 001 elapsed time 637 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 635 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 567 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 228 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 208 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 533 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 517 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 698 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 520 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 490 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 473 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 449 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 606 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 208 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 163 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 458 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 458 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 161 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 162 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 523 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 021 elapsed time 186 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 631 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 547 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 024 elapsed time 195 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 103 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 178 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 57 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 483 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 549 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 484 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 457 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 171 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 536 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8_mixedmode +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -101,85 +101,85 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 308.536932 - 0: The maximum resident set size (KB) = 3138724 + 0: The total amount of wall time = 305.291494 + 0: The maximum resident set size (KB) = 3144884 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_gfsv17 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/cpld_control_gfsv17 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_gfsv17 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 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 sfcf021.tile1.nc ............ALT CHECK......NOT OK + Comparing sfcf021.tile2.nc ............ALT CHECK......NOT OK + Comparing sfcf021.tile3.nc ............ALT CHECK......NOT OK + Comparing sfcf021.tile4.nc ............ALT CHECK......NOT OK + Comparing sfcf021.tile5.nc ............ALT CHECK......NOT OK + Comparing sfcf021.tile6.nc ............ALT CHECK......NOT OK + Comparing atmf021.tile1.nc ............ALT CHECK......NOT OK + Comparing atmf021.tile2.nc ............ALT CHECK......NOT OK + Comparing atmf021.tile3.nc ............ALT CHECK......NOT OK + Comparing atmf021.tile4.nc ............ALT CHECK......NOT OK + Comparing atmf021.tile5.nc ............ALT CHECK......NOT OK + Comparing atmf021.tile6.nc ............ALT CHECK......NOT OK + Comparing sfcf024.tile1.nc ............ALT CHECK......NOT OK + Comparing sfcf024.tile2.nc ............ALT CHECK......NOT OK + Comparing sfcf024.tile3.nc ............ALT CHECK......NOT OK + Comparing sfcf024.tile4.nc ............ALT CHECK......NOT OK + Comparing sfcf024.tile5.nc ............ALT CHECK......NOT OK + Comparing sfcf024.tile6.nc ............ALT CHECK......NOT OK + Comparing atmf024.tile1.nc ............ALT CHECK......NOT OK + Comparing atmf024.tile2.nc ............ALT CHECK......NOT OK + Comparing atmf024.tile3.nc ............ALT CHECK......NOT OK + Comparing atmf024.tile4.nc ............ALT CHECK......NOT OK + Comparing atmf024.tile5.nc ............ALT CHECK......NOT OK + Comparing atmf024.tile6.nc ............ALT CHECK......NOT OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 221.412045 - 0: The maximum resident set size (KB) = 1734788 - -Test 002 cpld_control_gfsv17 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/cpld_control_p8 + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......NOT OK + Comparing RESTART/iced.2021-03-23-21600.nc ............ALT CHECK......NOT OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc ............ALT CHECK......NOT OK + Comparing 20210323.060000.out_pnt.ww3 .........NOT OK + Comparing 20210323.060000.out_grd.ww3 .........NOT OK + + 0: The total amount of wall time = 224.382839 + 0: The maximum resident set size (KB) = 1737256 + +Test 002 cpld_control_gfsv17 FAIL Tries: 2 + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -244,14 +244,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 336.739876 - 0: The maximum resident set size (KB) = 3184944 + 0: The total amount of wall time = 338.448423 + 0: The maximum resident set size (KB) = 3181692 Test 003 cpld_control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/cpld_restart_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -304,14 +304,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 195.432743 - 0: The maximum resident set size (KB) = 3051544 + 0: The total amount of wall time = 195.738094 + 0: The maximum resident set size (KB) = 3050872 Test 004 cpld_restart_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/cpld_control_qr_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -376,14 +376,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 338.511229 - 0: The maximum resident set size (KB) = 3192400 + 0: The total amount of wall time = 343.272175 + 0: The maximum resident set size (KB) = 3194532 Test 005 cpld_control_qr_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/cpld_restart_qr_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -436,14 +436,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 200.080186 - 0: The maximum resident set size (KB) = 3060504 + 0: The total amount of wall time = 196.597835 + 0: The maximum resident set size (KB) = 3068460 Test 006 cpld_restart_qr_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/cpld_2threads_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -496,14 +496,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 346.019076 - 0: The maximum resident set size (KB) = 3511920 + 0: The total amount of wall time = 350.226952 + 0: The maximum resident set size (KB) = 3523764 Test 007 cpld_2threads_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/cpld_decomp_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -556,14 +556,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 341.628049 - 0: The maximum resident set size (KB) = 3173112 + 0: The total amount of wall time = 338.228077 + 0: The maximum resident set size (KB) = 3178788 Test 008 cpld_decomp_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/cpld_mpi_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -616,14 +616,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 279.054918 - 0: The maximum resident set size (KB) = 3028520 + 0: The total amount of wall time = 282.242750 + 0: The maximum resident set size (KB) = 3027328 Test 009 cpld_mpi_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_ciceC_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/cpld_control_ciceC_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_ciceC_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -688,14 +688,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 340.973763 - 0: The maximum resident set size (KB) = 3176348 + 0: The total amount of wall time = 340.964848 + 0: The maximum resident set size (KB) = 3162588 Test 010 cpld_control_ciceC_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/cpld_control_c192_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/cpld_control_c192_p8 Checking test 011 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -748,14 +748,14 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 592.616813 - 0: The maximum resident set size (KB) = 3260956 + 0: The total amount of wall time = 594.593190 + 0: The maximum resident set size (KB) = 3256752 Test 011 cpld_control_c192_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/cpld_restart_c192_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/cpld_restart_c192_p8 Checking test 012 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -808,14 +808,14 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 392.927794 - 0: The maximum resident set size (KB) = 3157776 + 0: The total amount of wall time = 380.766155 + 0: The maximum resident set size (KB) = 3159496 Test 012 cpld_restart_c192_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/cpld_bmark_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/cpld_bmark_p8 Checking test 013 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -863,14 +863,14 @@ Checking test 013 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 717.654033 - 0: The maximum resident set size (KB) = 4076588 + 0: The total amount of wall time = 705.272063 + 0: The maximum resident set size (KB) = 4031860 Test 013 cpld_bmark_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/cpld_restart_bmark_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/cpld_restart_bmark_p8 Checking test 014 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -918,14 +918,14 @@ Checking test 014 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 438.836899 - 0: The maximum resident set size (KB) = 3967568 + 0: The total amount of wall time = 455.775107 + 0: The maximum resident set size (KB) = 3977784 Test 014 cpld_restart_bmark_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/cpld_control_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/cpld_control_noaero_p8 Checking test 015 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -989,14 +989,14 @@ Checking test 015 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 262.670274 - 0: The maximum resident set size (KB) = 1720696 + 0: The total amount of wall time = 262.672095 + 0: The maximum resident set size (KB) = 1723364 Test 015 cpld_control_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/cpld_control_nowave_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_c96_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/cpld_control_nowave_noaero_p8 Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1058,14 +1058,14 @@ Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 258.972898 - 0: The maximum resident set size (KB) = 1767196 + 0: The total amount of wall time = 258.837291 + 0: The maximum resident set size (KB) = 1767624 Test 016 cpld_control_nowave_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/cpld_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/cpld_debug_p8 Checking test 017 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1118,14 +1118,14 @@ Checking test 017 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 520.595129 - 0: The maximum resident set size (KB) = 3233848 + 0: The total amount of wall time = 526.767267 + 0: The maximum resident set size (KB) = 3216176 Test 017 cpld_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_debug_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/cpld_debug_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_debug_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/cpld_debug_noaero_p8 Checking test 018 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1177,14 +1177,14 @@ Checking test 018 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 352.055908 - 0: The maximum resident set size (KB) = 1739256 + 0: The total amount of wall time = 361.034403 + 0: The maximum resident set size (KB) = 1729788 Test 018 cpld_debug_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_noaero_p8_agrid -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/cpld_control_noaero_p8_agrid +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_noaero_p8_agrid +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/cpld_control_noaero_p8_agrid Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1246,14 +1246,14 @@ Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 268.299916 - 0: The maximum resident set size (KB) = 1757628 + 0: The total amount of wall time = 267.142470 + 0: The maximum resident set size (KB) = 1767864 Test 019 cpld_control_noaero_p8_agrid PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/cpld_control_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_c48 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/cpld_control_c48 Checking test 020 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1303,14 +1303,14 @@ Checking test 020 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 571.875844 - 0: The maximum resident set size (KB) = 2807432 + 0: The total amount of wall time = 587.027126 + 0: The maximum resident set size (KB) = 2809480 Test 020 cpld_control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/cpld_warmstart_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_warmstart_c48 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/cpld_warmstart_c48 Checking test 021 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1360,14 +1360,14 @@ Checking test 021 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 154.427230 - 0: The maximum resident set size (KB) = 2804196 + 0: The total amount of wall time = 152.984802 + 0: The maximum resident set size (KB) = 2806204 Test 021 cpld_warmstart_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/cpld_restart_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_warmstart_c48 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/cpld_restart_c48 Checking test 022 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1417,14 +1417,14 @@ Checking test 022 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 79.618862 - 0: The maximum resident set size (KB) = 2237060 + 0: The total amount of wall time = 81.975596 + 0: The maximum resident set size (KB) = 2238628 Test 022 cpld_restart_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/cpld_control_p8_faster +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8_faster +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/cpld_control_p8_faster Checking test 023 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1489,14 +1489,14 @@ Checking test 023 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 322.899293 - 0: The maximum resident set size (KB) = 3183684 + 0: The total amount of wall time = 317.286547 + 0: The maximum resident set size (KB) = 3158912 Test 023 cpld_control_p8_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_CubedSphereGrid -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_CubedSphereGrid +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_CubedSphereGrid +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_CubedSphereGrid Checking test 024 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1523,28 +1523,28 @@ Checking test 024 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 131.347880 - 0: The maximum resident set size (KB) = 633592 + 0: The total amount of wall time = 131.140033 + 0: The maximum resident set size (KB) = 633200 Test 024 control_CubedSphereGrid PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_CubedSphereGrid_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_CubedSphereGrid_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_CubedSphereGrid_parallel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_CubedSphereGrid_parallel Checking test 025 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing atmf024.nc .........OK - 0: The total amount of wall time = 128.375007 - 0: The maximum resident set size (KB) = 633740 + 0: The total amount of wall time = 126.394251 + 0: The maximum resident set size (KB) = 632392 Test 025 control_CubedSphereGrid_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_latlon -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_latlon +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_latlon +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_latlon Checking test 026 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1555,14 +1555,14 @@ Checking test 026 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.731523 - 0: The maximum resident set size (KB) = 628216 + 0: The total amount of wall time = 133.328077 + 0: The maximum resident set size (KB) = 628200 Test 026 control_latlon PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wrtGauss_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_wrtGauss_netcdf_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wrtGauss_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_wrtGauss_netcdf_parallel Checking test 027 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1573,14 +1573,14 @@ Checking test 027 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.367766 - 0: The maximum resident set size (KB) = 628816 + 0: The total amount of wall time = 136.081701 + 0: The maximum resident set size (KB) = 634084 Test 027 control_wrtGauss_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_c48 Checking test 028 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1619,14 +1619,14 @@ Checking test 028 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 367.058233 -0: The maximum resident set size (KB) = 824604 +0: The total amount of wall time = 366.086049 +0: The maximum resident set size (KB) = 821056 Test 028 control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_c192 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c192 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_c192 Checking test 029 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1637,14 +1637,14 @@ Checking test 029 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 530.507212 - 0: The maximum resident set size (KB) = 771068 + 0: The total amount of wall time = 526.166190 + 0: The maximum resident set size (KB) = 770632 Test 029 control_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_c384 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c384 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_c384 Checking test 030 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1655,14 +1655,14 @@ Checking test 030 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 524.378755 - 0: The maximum resident set size (KB) = 1268792 + 0: The total amount of wall time = 521.719521 + 0: The maximum resident set size (KB) = 1265248 Test 030 control_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c384gdas -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_c384gdas +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c384gdas +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_c384gdas Checking test 031 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1705,14 +1705,14 @@ Checking test 031 control_c384gdas 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 = 452.140046 - 0: The maximum resident set size (KB) = 1375392 + 0: The total amount of wall time = 458.885241 + 0: The maximum resident set size (KB) = 1378732 Test 031 control_c384gdas PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_stochy +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_stochy Checking test 032 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1723,28 +1723,28 @@ Checking test 032 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 87.215729 - 0: The maximum resident set size (KB) = 634604 + 0: The total amount of wall time = 86.535989 + 0: The maximum resident set size (KB) = 636580 Test 032 control_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_stochy_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_stochy_restart Checking test 033 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 48.064360 - 0: The maximum resident set size (KB) = 489036 + 0: The total amount of wall time = 47.450229 + 0: The maximum resident set size (KB) = 484064 Test 033 control_stochy_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_lndp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_lndp +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_lndp Checking test 034 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1755,14 +1755,14 @@ Checking test 034 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 81.571845 - 0: The maximum resident set size (KB) = 635220 + 0: The total amount of wall time = 81.242679 + 0: The maximum resident set size (KB) = 633388 Test 034 control_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_iovr4 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_iovr4 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_iovr4 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_iovr4 Checking test 035 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1777,14 +1777,14 @@ Checking test 035 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.391575 - 0: The maximum resident set size (KB) = 630552 + 0: The total amount of wall time = 135.409321 + 0: The maximum resident set size (KB) = 629416 Test 035 control_iovr4 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_iovr5 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_iovr5 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_iovr5 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_iovr5 Checking test 036 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1799,14 +1799,14 @@ Checking test 036 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.942825 - 0: The maximum resident set size (KB) = 632992 + 0: The total amount of wall time = 136.668651 + 0: The maximum resident set size (KB) = 627524 Test 036 control_iovr5 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_p8 Checking test 037 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1853,14 +1853,14 @@ Checking test 037 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 166.676964 - 0: The maximum resident set size (KB) = 1612224 + 0: The total amount of wall time = 169.053693 + 0: The maximum resident set size (KB) = 1600812 Test 037 control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_restart_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_restart_p8 Checking test 038 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1899,14 +1899,14 @@ Checking test 038 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 87.853216 - 0: The maximum resident set size (KB) = 864496 + 0: The total amount of wall time = 87.148707 + 0: The maximum resident set size (KB) = 865020 Test 038 control_restart_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_qr_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_qr_p8 Checking test 039 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1953,14 +1953,14 @@ Checking test 039 control_qr_p8 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 = 166.760019 - 0: The maximum resident set size (KB) = 1606180 + 0: The total amount of wall time = 167.034538 + 0: The maximum resident set size (KB) = 1609660 Test 039 control_qr_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_restart_qr_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_restart_qr_p8 Checking test 040 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1999,14 +1999,14 @@ Checking test 040 control_restart_qr_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 88.971470 - 0: The maximum resident set size (KB) = 867672 + 0: The total amount of wall time = 90.870158 + 0: The maximum resident set size (KB) = 869396 Test 040 control_restart_qr_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_decomp_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_decomp_p8 Checking test 041 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2049,14 +2049,14 @@ Checking test 041 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 173.964742 - 0: The maximum resident set size (KB) = 1594772 + 0: The total amount of wall time = 172.097586 + 0: The maximum resident set size (KB) = 1582260 Test 041 control_decomp_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_2threads_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_2threads_p8 Checking test 042 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2099,14 +2099,14 @@ Checking test 042 control_2threads_p8 results .... Comparing 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.363004 - 0: The maximum resident set size (KB) = 1694548 + 0: The total amount of wall time = 155.269912 + 0: The maximum resident set size (KB) = 1688908 Test 042 control_2threads_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_p8_lndp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_lndp +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_p8_lndp Checking test 043 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2125,14 +2125,14 @@ Checking test 043 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 310.225187 - 0: The maximum resident set size (KB) = 1612648 + 0: The total amount of wall time = 311.141403 + 0: The maximum resident set size (KB) = 1605144 Test 043 control_p8_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_p8_rrtmgp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_p8_rrtmgp Checking test 044 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2179,14 +2179,14 @@ Checking test 044 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 224.865618 - 0: The maximum resident set size (KB) = 1678408 + 0: The total amount of wall time = 224.799303 + 0: The maximum resident set size (KB) = 1662808 Test 044 control_p8_rrtmgp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_mynn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_p8_mynn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_mynn +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_p8_mynn Checking test 045 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2233,14 +2233,14 @@ Checking test 045 control_p8_mynn results .... Comparing 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.971711 - 0: The maximum resident set size (KB) = 1610824 + 0: The total amount of wall time = 169.862995 + 0: The maximum resident set size (KB) = 1609300 Test 045 control_p8_mynn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/merra2_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/merra2_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/merra2_thompson +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/merra2_thompson Checking test 046 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2287,14 +2287,14 @@ Checking test 046 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 189.045727 - 0: The maximum resident set size (KB) = 1610468 + 0: The total amount of wall time = 189.467950 + 0: The maximum resident set size (KB) = 1610132 Test 046 merra2_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/regional_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/regional_control Checking test 047 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2305,28 +2305,28 @@ Checking test 047 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 297.712900 - 0: The maximum resident set size (KB) = 869240 + 0: The total amount of wall time = 298.621550 + 0: The maximum resident set size (KB) = 873496 Test 047 regional_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/regional_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/regional_restart Checking test 048 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 151.764963 - 0: The maximum resident set size (KB) = 864368 + 0: The total amount of wall time = 155.849705 + 0: The maximum resident set size (KB) = 834564 Test 048 regional_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/regional_control_qr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/regional_control_qr Checking test 049 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2337,28 +2337,28 @@ Checking test 049 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 297.466769 - 0: The maximum resident set size (KB) = 870104 + 0: The total amount of wall time = 299.606790 + 0: The maximum resident set size (KB) = 868056 Test 049 regional_control_qr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/regional_restart_qr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/regional_restart_qr Checking test 050 regional_restart_qr 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.744334 - 0: The maximum resident set size (KB) = 864892 + 0: The total amount of wall time = 151.816630 + 0: The maximum resident set size (KB) = 866424 Test 050 regional_restart_qr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/regional_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/regional_decomp Checking test 051 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2369,14 +2369,14 @@ Checking test 051 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 311.589200 - 0: The maximum resident set size (KB) = 864336 + 0: The total amount of wall time = 314.054918 + 0: The maximum resident set size (KB) = 864992 Test 051 regional_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/regional_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/regional_2threads Checking test 052 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2387,14 +2387,14 @@ Checking test 052 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 182.054079 - 0: The maximum resident set size (KB) = 849328 + 0: The total amount of wall time = 181.026521 + 0: The maximum resident set size (KB) = 847388 Test 052 regional_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_noquilt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/regional_noquilt +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_noquilt +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/regional_noquilt Checking test 053 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2402,28 +2402,28 @@ Checking test 053 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 319.575525 - 0: The maximum resident set size (KB) = 860780 + 0: The total amount of wall time = 319.477269 + 0: The maximum resident set size (KB) = 863924 Test 053 regional_noquilt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/regional_netcdf_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/regional_netcdf_parallel Checking test 054 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 293.604684 - 0: The maximum resident set size (KB) = 867100 + 0: The total amount of wall time = 294.169389 + 0: The maximum resident set size (KB) = 871152 Test 054 regional_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/regional_2dwrtdecomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/regional_2dwrtdecomp Checking test 055 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2434,14 +2434,14 @@ Checking test 055 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 294.925973 - 0: The maximum resident set size (KB) = 873900 + 0: The total amount of wall time = 299.553845 + 0: The maximum resident set size (KB) = 872304 Test 055 regional_2dwrtdecomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/fv3_regional_wofs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/regional_wofs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/fv3_regional_wofs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/regional_wofs Checking test 056 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2452,14 +2452,14 @@ Checking test 056 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 373.295537 - 0: The maximum resident set size (KB) = 631936 + 0: The total amount of wall time = 376.433536 + 0: The maximum resident set size (KB) = 629724 Test 056 regional_wofs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/rap_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rap_control Checking test 057 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2506,14 +2506,14 @@ Checking test 057 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 456.501241 - 0: The maximum resident set size (KB) = 1057104 + 0: The total amount of wall time = 458.408473 + 0: The maximum resident set size (KB) = 1046732 Test 057 rap_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_spp_sppt_shum_skeb -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/regional_spp_sppt_shum_skeb +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_spp_sppt_shum_skeb +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/regional_spp_sppt_shum_skeb Checking test 058 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2524,14 +2524,14 @@ Checking test 058 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 229.127483 - 0: The maximum resident set size (KB) = 1186684 + 0: The total amount of wall time = 237.512662 + 0: The maximum resident set size (KB) = 1180944 Test 058 regional_spp_sppt_shum_skeb PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/rap_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rap_decomp Checking test 059 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2578,14 +2578,14 @@ Checking test 059 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 478.196024 - 0: The maximum resident set size (KB) = 1001904 + 0: The total amount of wall time = 475.476237 + 0: The maximum resident set size (KB) = 1000932 Test 059 rap_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/rap_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rap_2threads Checking test 060 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2632,14 +2632,14 @@ Checking test 060 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 431.597195 - 0: The maximum resident set size (KB) = 1145608 + 0: The total amount of wall time = 433.017586 + 0: The maximum resident set size (KB) = 1136848 Test 060 rap_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/rap_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rap_restart Checking test 061 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2678,14 +2678,14 @@ Checking test 061 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 231.235470 - 0: The maximum resident set size (KB) = 969724 + 0: The total amount of wall time = 228.877664 + 0: The maximum resident set size (KB) = 962696 Test 061 rap_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/rap_sfcdiff +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rap_sfcdiff Checking test 062 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2732,14 +2732,14 @@ Checking test 062 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 460.340832 - 0: The maximum resident set size (KB) = 1060008 + 0: The total amount of wall time = 458.727260 + 0: The maximum resident set size (KB) = 1052032 Test 062 rap_sfcdiff PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/rap_sfcdiff_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rap_sfcdiff_decomp Checking test 063 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2786,14 +2786,14 @@ Checking test 063 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 480.843113 - 0: The maximum resident set size (KB) = 1002016 + 0: The total amount of wall time = 481.421739 + 0: The maximum resident set size (KB) = 1000804 Test 063 rap_sfcdiff_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/rap_sfcdiff_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rap_sfcdiff_restart Checking test 064 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2832,14 +2832,14 @@ Checking test 064 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 339.198877 - 0: The maximum resident set size (KB) = 988920 + 0: The total amount of wall time = 342.500326 + 0: The maximum resident set size (KB) = 994416 Test 064 rap_sfcdiff_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/hrrr_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hrrr_control Checking test 065 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2886,14 +2886,14 @@ Checking test 065 hrrr_control results .... Comparing 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.339206 - 0: The maximum resident set size (KB) = 1061160 + 0: The total amount of wall time = 442.730222 + 0: The maximum resident set size (KB) = 1056140 Test 065 hrrr_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/hrrr_control_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hrrr_control_decomp Checking test 066 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2940,14 +2940,14 @@ Checking test 066 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 463.749292 - 0: The maximum resident set size (KB) = 996028 + 0: The total amount of wall time = 464.322390 + 0: The maximum resident set size (KB) = 993376 Test 066 hrrr_control_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/hrrr_control_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hrrr_control_2threads Checking test 067 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2994,14 +2994,14 @@ Checking test 067 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 419.026791 - 0: The maximum resident set size (KB) = 1138784 + 0: The total amount of wall time = 418.396404 + 0: The maximum resident set size (KB) = 1131332 Test 067 hrrr_control_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/hrrr_control_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hrrr_control_restart Checking test 068 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3040,14 +3040,14 @@ Checking test 068 hrrr_control_restart results .... Comparing 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.630066 - 0: The maximum resident set size (KB) = 979248 + 0: The total amount of wall time = 328.307782 + 0: The maximum resident set size (KB) = 979648 Test 068 hrrr_control_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/rrfs_v1beta +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rrfs_v1beta Checking test 069 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3094,14 +3094,14 @@ Checking test 069 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 456.023154 - 0: The maximum resident set size (KB) = 1053148 + 0: The total amount of wall time = 454.092262 + 0: The maximum resident set size (KB) = 1051972 Test 069 rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1nssl -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/rrfs_v1nssl +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1nssl +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rrfs_v1nssl Checking test 070 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3116,14 +3116,14 @@ Checking test 070 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 536.785629 - 0: The maximum resident set size (KB) = 692372 + 0: The total amount of wall time = 535.974187 + 0: The maximum resident set size (KB) = 689600 Test 070 rrfs_v1nssl PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/rrfs_v1nssl_nohailnoccn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rrfs_v1nssl_nohailnoccn Checking test 071 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3138,14 +3138,14 @@ Checking test 071 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 526.569807 - 0: The maximum resident set size (KB) = 748864 + 0: The total amount of wall time = 519.983484 + 0: The maximum resident set size (KB) = 753600 Test 071 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rrfs_smoke_conus13km_hrrr_warm Checking test 072 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3154,14 +3154,14 @@ Checking test 072 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 144.210394 - 0: The maximum resident set size (KB) = 1001904 + 0: The total amount of wall time = 145.580973 + 0: The maximum resident set size (KB) = 1036680 Test 072 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 073 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3170,14 +3170,14 @@ Checking test 073 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 88.778983 - 0: The maximum resident set size (KB) = 941452 + 0: The total amount of wall time = 90.683337 + 0: The maximum resident set size (KB) = 942120 Test 073 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/rrfs_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rrfs_conus13km_hrrr_warm Checking test 074 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3186,14 +3186,14 @@ Checking test 074 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 128.291378 - 0: The maximum resident set size (KB) = 941628 + 0: The total amount of wall time = 128.598242 + 0: The maximum resident set size (KB) = 944904 Test 074 rrfs_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rrfs_smoke_conus13km_radar_tten_warm Checking test 075 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3202,26 +3202,26 @@ Checking test 075 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 146.213712 - 0: The maximum resident set size (KB) = 1038052 + 0: The total amount of wall time = 145.634884 + 0: The maximum resident set size (KB) = 1003728 Test 075 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 076 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 69.153911 - 0: The maximum resident set size (KB) = 930288 + 0: The total amount of wall time = 68.308930 + 0: The maximum resident set size (KB) = 929780 Test 076 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmg -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_csawmg +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmg +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_csawmg Checking test 077 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3232,14 +3232,14 @@ Checking test 077 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 342.102508 - 0: The maximum resident set size (KB) = 721684 + 0: The total amount of wall time = 345.960410 + 0: The maximum resident set size (KB) = 725620 Test 077 control_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmgt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_csawmgt +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmgt +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_csawmgt Checking test 078 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3250,14 +3250,14 @@ Checking test 078 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 337.978821 - 0: The maximum resident set size (KB) = 720200 + 0: The total amount of wall time = 339.162313 + 0: The maximum resident set size (KB) = 724924 Test 078 control_csawmgt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_ras +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_ras +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_ras Checking test 079 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3268,26 +3268,26 @@ Checking test 079 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 182.090368 - 0: The maximum resident set size (KB) = 725284 + 0: The total amount of wall time = 179.974892 + 0: The maximum resident set size (KB) = 718820 Test 079 control_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wam -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_wam +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wam +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_wam Checking test 080 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 111.218371 - 0: The maximum resident set size (KB) = 641076 + 0: The total amount of wall time = 111.105005 + 0: The maximum resident set size (KB) = 638536 Test 080 control_wam PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_p8_faster +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_faster +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_p8_faster Checking test 081 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3334,14 +3334,14 @@ Checking test 081 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 152.394630 - 0: The maximum resident set size (KB) = 1592712 + 0: The total amount of wall time = 154.891467 + 0: The maximum resident set size (KB) = 1601364 Test 081 control_p8_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/regional_control_faster +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control_faster +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/regional_control_faster Checking test 082 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3352,56 +3352,56 @@ Checking test 082 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 273.604774 - 0: The maximum resident set size (KB) = 867808 + 0: The total amount of wall time = 272.406628 + 0: The maximum resident set size (KB) = 864248 Test 082 regional_control_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 083 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 829.172773 - 0: The maximum resident set size (KB) = 1016984 + 0: The total amount of wall time = 821.994184 + 0: The maximum resident set size (KB) = 1059200 Test 083 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 084 rrfs_smoke_conus13km_hrrr_warm_debug_2threads 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.094874 - 0: The maximum resident set size (KB) = 966472 + 0: The total amount of wall time = 460.856688 + 0: The maximum resident set size (KB) = 970148 Test 084 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/rrfs_conus13km_hrrr_warm_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rrfs_conus13km_hrrr_warm_debug Checking test 085 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 713.145239 - 0: The maximum resident set size (KB) = 970840 + 0: The total amount of wall time = 739.820113 + 0: The maximum resident set size (KB) = 968308 Test 085 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_CubedSphereGrid_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_CubedSphereGrid_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_CubedSphereGrid_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_CubedSphereGrid_debug Checking test 086 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3428,334 +3428,334 @@ Checking test 086 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 140.366795 - 0: The maximum resident set size (KB) = 796068 + 0: The total amount of wall time = 143.204109 + 0: The maximum resident set size (KB) = 791552 Test 086 control_CubedSphereGrid_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_wrtGauss_netcdf_parallel_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_wrtGauss_netcdf_parallel_debug Checking test 087 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 143.721508 - 0: The maximum resident set size (KB) = 784196 + 0: The total amount of wall time = 142.253207 + 0: The maximum resident set size (KB) = 790616 Test 087 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_stochy_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_stochy_debug Checking test 088 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 160.879106 - 0: The maximum resident set size (KB) = 794472 + 0: The total amount of wall time = 163.813624 + 0: The maximum resident set size (KB) = 794120 Test 088 control_stochy_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_lndp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_lndp_debug Checking test 089 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 148.229266 - 0: The maximum resident set size (KB) = 799760 + 0: The total amount of wall time = 145.282420 + 0: The maximum resident set size (KB) = 792156 Test 089 control_lndp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmg_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_csawmg_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmg_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_csawmg_debug Checking test 090 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 226.951401 - 0: The maximum resident set size (KB) = 839256 + 0: The total amount of wall time = 226.518164 + 0: The maximum resident set size (KB) = 840808 Test 090 control_csawmg_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmgt_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_csawmgt_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmgt_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_csawmgt_debug Checking test 091 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 222.840220 - 0: The maximum resident set size (KB) = 837660 + 0: The total amount of wall time = 219.479731 + 0: The maximum resident set size (KB) = 840744 Test 091 control_csawmgt_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_ras_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_ras_debug Checking test 092 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 146.919467 - 0: The maximum resident set size (KB) = 794776 + 0: The total amount of wall time = 146.737321 + 0: The maximum resident set size (KB) = 801680 Test 092 control_ras_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_diag_debug Checking test 093 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 149.562239 - 0: The maximum resident set size (KB) = 847432 + 0: The total amount of wall time = 149.044647 + 0: The maximum resident set size (KB) = 850312 Test 093 control_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_debug_p8 Checking test 094 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 160.124003 - 0: The maximum resident set size (KB) = 1621840 + 0: The total amount of wall time = 164.116211 + 0: The maximum resident set size (KB) = 1618996 Test 094 control_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/regional_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/regional_debug Checking test 095 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 967.571339 - 0: The maximum resident set size (KB) = 899872 + 0: The total amount of wall time = 986.455785 + 0: The maximum resident set size (KB) = 871456 Test 095 regional_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/rap_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rap_control_debug Checking test 096 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 266.065005 - 0: The maximum resident set size (KB) = 1170888 + 0: The total amount of wall time = 267.589607 + 0: The maximum resident set size (KB) = 1164688 Test 096 rap_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/hrrr_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hrrr_control_debug Checking test 097 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 261.035257 - 0: The maximum resident set size (KB) = 1169208 + 0: The total amount of wall time = 260.431773 + 0: The maximum resident set size (KB) = 1167276 Test 097 hrrr_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/rap_unified_drag_suite_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rap_unified_drag_suite_debug Checking test 098 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 266.710858 - 0: The maximum resident set size (KB) = 1171060 + 0: The total amount of wall time = 265.309892 + 0: The maximum resident set size (KB) = 1171848 Test 098 rap_unified_drag_suite_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/rap_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rap_diag_debug Checking test 099 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.381894 - 0: The maximum resident set size (KB) = 1246964 + 0: The total amount of wall time = 278.422860 + 0: The maximum resident set size (KB) = 1255604 Test 099 rap_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/rap_cires_ugwp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rap_cires_ugwp_debug Checking test 100 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.357385 - 0: The maximum resident set size (KB) = 1169256 + 0: The total amount of wall time = 275.072172 + 0: The maximum resident set size (KB) = 1171984 Test 100 rap_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/rap_unified_ugwp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rap_unified_ugwp_debug Checking test 101 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.534961 - 0: The maximum resident set size (KB) = 1170504 + 0: The total amount of wall time = 273.554568 + 0: The maximum resident set size (KB) = 1165424 Test 101 rap_unified_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/rap_lndp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rap_lndp_debug Checking test 102 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 267.207922 - 0: The maximum resident set size (KB) = 1169620 + 0: The total amount of wall time = 265.551271 + 0: The maximum resident set size (KB) = 1171276 Test 102 rap_lndp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_flake_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/rap_flake_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_flake_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rap_flake_debug Checking test 103 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 264.759427 - 0: The maximum resident set size (KB) = 1166284 + 0: The total amount of wall time = 266.414916 + 0: The maximum resident set size (KB) = 1168808 Test 103 rap_flake_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/rap_progcld_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rap_progcld_thompson_debug Checking test 104 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.418668 - 0: The maximum resident set size (KB) = 1166640 + 0: The total amount of wall time = 268.830465 + 0: The maximum resident set size (KB) = 1174740 Test 104 rap_progcld_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_noah_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/rap_noah_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_noah_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rap_noah_debug Checking test 105 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 264.196245 - 0: The maximum resident set size (KB) = 1166732 + 0: The total amount of wall time = 262.962199 + 0: The maximum resident set size (KB) = 1169180 Test 105 rap_noah_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/rap_sfcdiff_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rap_sfcdiff_debug Checking test 106 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 266.423196 - 0: The maximum resident set size (KB) = 1170808 + 0: The total amount of wall time = 267.749624 + 0: The maximum resident set size (KB) = 1170096 Test 106 rap_sfcdiff_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rap_noah_sfcdiff_cires_ugwp_debug Checking test 107 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 442.876251 - 0: The maximum resident set size (KB) = 1169780 + 0: The total amount of wall time = 444.290759 + 0: The maximum resident set size (KB) = 1169176 Test 107 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/rrfs_v1beta_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rrfs_v1beta_debug Checking test 108 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 265.140956 - 0: The maximum resident set size (KB) = 1164184 + 0: The total amount of wall time = 269.227047 + 0: The maximum resident set size (KB) = 1133352 Test 108 rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_wam_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_wam_debug Checking test 109 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 278.653711 - 0: The maximum resident set size (KB) = 524224 + 0: The total amount of wall time = 277.349899 + 0: The maximum resident set size (KB) = 526476 Test 109 control_wam_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3766,14 +3766,14 @@ Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 218.484976 - 0: The maximum resident set size (KB) = 1078380 + 0: The total amount of wall time = 218.847425 + 0: The maximum resident set size (KB) = 1081252 Test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/rap_control_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rap_control_dyn32_phy32 Checking test 111 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3820,14 +3820,14 @@ Checking test 111 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 379.066202 - 0: The maximum resident set size (KB) = 1003248 + 0: The total amount of wall time = 379.361711 + 0: The maximum resident set size (KB) = 1003192 Test 111 rap_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/hrrr_control_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hrrr_control_dyn32_phy32 Checking test 112 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3874,14 +3874,14 @@ Checking test 112 hrrr_control_dyn32_phy32 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 = 197.019970 - 0: The maximum resident set size (KB) = 957120 + 0: The total amount of wall time = 198.460490 + 0: The maximum resident set size (KB) = 963940 Test 112 hrrr_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/rap_2threads_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rap_2threads_dyn32_phy32 Checking test 113 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3928,14 +3928,14 @@ Checking test 113 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 364.658871 - 0: The maximum resident set size (KB) = 1016476 + 0: The total amount of wall time = 362.585163 + 0: The maximum resident set size (KB) = 1019692 Test 113 rap_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/hrrr_control_2threads_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hrrr_control_2threads_dyn32_phy32 Checking test 114 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3982,14 +3982,14 @@ Checking test 114 hrrr_control_2threads_dyn32_phy32 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 = 186.894378 - 0: The maximum resident set size (KB) = 1000592 + 0: The total amount of wall time = 187.309509 + 0: The maximum resident set size (KB) = 993516 Test 114 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/hrrr_control_decomp_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hrrr_control_decomp_dyn32_phy32 Checking test 115 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4036,14 +4036,14 @@ Checking test 115 hrrr_control_decomp_dyn32_phy32 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 = 210.146228 - 0: The maximum resident set size (KB) = 890664 + 0: The total amount of wall time = 207.093639 + 0: The maximum resident set size (KB) = 894036 Test 115 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/rap_restart_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rap_restart_dyn32_phy32 Checking test 116 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4082,14 +4082,14 @@ Checking test 116 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 281.677445 - 0: The maximum resident set size (KB) = 942492 + 0: The total amount of wall time = 284.078256 + 0: The maximum resident set size (KB) = 947932 Test 116 rap_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/hrrr_control_restart_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hrrr_control_restart_dyn32_phy32 Checking test 117 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4128,14 +4128,14 @@ Checking test 117 hrrr_control_restart_dyn32_phy32 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 = 102.069878 - 0: The maximum resident set size (KB) = 864676 + 0: The total amount of wall time = 102.624644 + 0: The maximum resident set size (KB) = 859148 Test 117 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/rap_control_dyn64_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rap_control_dyn64_phy32 Checking test 118 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4182,81 +4182,81 @@ Checking test 118 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 243.642829 - 0: The maximum resident set size (KB) = 968300 + 0: The total amount of wall time = 243.546284 + 0: The maximum resident set size (KB) = 964296 Test 118 rap_control_dyn64_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/rap_control_debug_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rap_control_debug_dyn32_phy32 Checking test 119 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 263.599410 - 0: The maximum resident set size (KB) = 1062116 + 0: The total amount of wall time = 263.075093 + 0: The maximum resident set size (KB) = 1055272 Test 119 rap_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/hrrr_control_debug_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hrrr_control_debug_dyn32_phy32 Checking test 120 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 259.209856 - 0: The maximum resident set size (KB) = 1056296 + 0: The total amount of wall time = 269.017930 + 0: The maximum resident set size (KB) = 1051824 Test 120 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/rap_control_dyn64_phy32_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rap_control_dyn64_phy32_debug Checking test 121 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 268.095263 - 0: The maximum resident set size (KB) = 1096532 + 0: The total amount of wall time = 273.954021 + 0: The maximum resident set size (KB) = 1103880 Test 121 rap_control_dyn64_phy32_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/hafs_regional_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hafs_regional_atm Checking test 122 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 233.109998 - 0: The maximum resident set size (KB) = 1050876 + 0: The total amount of wall time = 234.020257 + 0: The maximum resident set size (KB) = 1053560 Test 122 hafs_regional_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/hafs_regional_atm_thompson_gfdlsf +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hafs_regional_atm_thompson_gfdlsf Checking test 123 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 309.722423 - 0: The maximum resident set size (KB) = 1415380 + 0: The total amount of wall time = 311.090182 + 0: The maximum resident set size (KB) = 1424756 Test 123 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/hafs_regional_atm_ocn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hafs_regional_atm_ocn Checking test 124 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4265,14 +4265,14 @@ Checking test 124 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 374.183928 - 0: The maximum resident set size (KB) = 1226112 + 0: The total amount of wall time = 379.848462 + 0: The maximum resident set size (KB) = 1225372 Test 124 hafs_regional_atm_ocn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/hafs_regional_atm_wav +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_wav +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hafs_regional_atm_wav Checking test 125 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4281,14 +4281,14 @@ Checking test 125 hafs_regional_atm_wav 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 = 741.416599 - 0: The maximum resident set size (KB) = 1252092 + 0: The total amount of wall time = 739.600868 + 0: The maximum resident set size (KB) = 1246776 Test 125 hafs_regional_atm_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/hafs_regional_atm_ocn_wav +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hafs_regional_atm_ocn_wav Checking test 126 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4299,28 +4299,28 @@ Checking test 126 hafs_regional_atm_ocn_wav 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 = 839.141562 - 0: The maximum resident set size (KB) = 1272948 + 0: The total amount of wall time = 839.181157 + 0: The maximum resident set size (KB) = 1266540 Test 126 hafs_regional_atm_ocn_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/hafs_regional_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hafs_regional_1nest_atm Checking test 127 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 320.232368 - 0: The maximum resident set size (KB) = 504140 + 0: The total amount of wall time = 315.632421 + 0: The maximum resident set size (KB) = 504952 Test 127 hafs_regional_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/hafs_regional_telescopic_2nests_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hafs_regional_telescopic_2nests_atm Checking test 128 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4329,28 +4329,28 @@ Checking test 128 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 362.850062 - 0: The maximum resident set size (KB) = 512448 + 0: The total amount of wall time = 364.847033 + 0: The maximum resident set size (KB) = 515448 Test 128 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_global_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/hafs_global_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_global_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hafs_global_1nest_atm Checking test 129 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 147.442166 - 0: The maximum resident set size (KB) = 352500 + 0: The total amount of wall time = 145.727864 + 0: The maximum resident set size (KB) = 351884 Test 129 hafs_global_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_global_multiple_4nests_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/hafs_global_multiple_4nests_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_global_multiple_4nests_atm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hafs_global_multiple_4nests_atm Checking test 130 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4368,14 +4368,14 @@ Checking test 130 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 416.033815 - 0: The maximum resident set size (KB) = 425240 + 0: The total amount of wall time = 409.595024 + 0: The maximum resident set size (KB) = 456200 Test 130 hafs_global_multiple_4nests_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/hafs_regional_specified_moving_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hafs_regional_specified_moving_1nest_atm Checking test 131 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4384,28 +4384,28 @@ Checking test 131 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 202.213376 - 0: The maximum resident set size (KB) = 518280 + 0: The total amount of wall time = 201.786385 + 0: The maximum resident set size (KB) = 523868 Test 131 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/hafs_regional_storm_following_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hafs_regional_storm_following_1nest_atm Checking test 132 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 190.660281 - 0: The maximum resident set size (KB) = 518764 + 0: The total amount of wall time = 191.109034 + 0: The maximum resident set size (KB) = 524228 Test 132 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hafs_regional_storm_following_1nest_atm_ocn Checking test 133 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4414,42 +4414,42 @@ Checking test 133 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 221.013475 - 0: The maximum resident set size (KB) = 569464 + 0: The total amount of wall time = 222.273994 + 0: The maximum resident set size (KB) = 573416 Test 133 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_global_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/hafs_global_storm_following_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_global_storm_following_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hafs_global_storm_following_1nest_atm Checking test 134 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 58.425813 - 0: The maximum resident set size (KB) = 374184 + 0: The total amount of wall time = 57.767744 + 0: The maximum resident set size (KB) = 372444 Test 134 hafs_global_storm_following_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 719.575293 - 0: The maximum resident set size (KB) = 569196 + 0: The total amount of wall time = 714.794719 + 0: The maximum resident set size (KB) = 562860 Test 135 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 136 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4460,14 +4460,14 @@ Checking test 136 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 478.701472 - 0: The maximum resident set size (KB) = 640076 + 0: The total amount of wall time = 480.341435 + 0: The maximum resident set size (KB) = 623160 Test 136 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_docn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/hafs_regional_docn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_docn +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hafs_regional_docn Checking test 137 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4475,14 +4475,14 @@ Checking test 137 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 359.246037 - 0: The maximum resident set size (KB) = 1230184 + 0: The total amount of wall time = 360.860735 + 0: The maximum resident set size (KB) = 1231332 Test 137 hafs_regional_docn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_docn_oisst -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/hafs_regional_docn_oisst +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_docn_oisst +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hafs_regional_docn_oisst Checking test 138 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4490,131 +4490,131 @@ Checking test 138 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 361.440587 - 0: The maximum resident set size (KB) = 1216848 + 0: The total amount of wall time = 360.556746 + 0: The maximum resident set size (KB) = 1220104 Test 138 hafs_regional_docn_oisst PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_datm_cdeps -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/hafs_regional_datm_cdeps +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_datm_cdeps +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hafs_regional_datm_cdeps Checking test 139 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 931.356491 - 0: The maximum resident set size (KB) = 1039688 + 0: The total amount of wall time = 937.065823 + 0: The maximum resident set size (KB) = 1039896 Test 139 hafs_regional_datm_cdeps PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/datm_cdeps_control_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/datm_cdeps_control_cfsr Checking test 140 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 154.148484 - 0: The maximum resident set size (KB) = 1057460 + 0: The total amount of wall time = 155.828652 + 0: The maximum resident set size (KB) = 1058732 Test 140 datm_cdeps_control_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/datm_cdeps_restart_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/datm_cdeps_restart_cfsr Checking test 141 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 90.113398 - 0: The maximum resident set size (KB) = 1011068 + 0: The total amount of wall time = 92.988520 + 0: The maximum resident set size (KB) = 1009616 Test 141 datm_cdeps_restart_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/datm_cdeps_control_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/datm_cdeps_control_gefs Checking test 142 datm_cdeps_control_gefs 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.992715 - 0: The maximum resident set size (KB) = 960484 + 0: The total amount of wall time = 150.642254 + 0: The maximum resident set size (KB) = 973796 Test 142 datm_cdeps_control_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_iau_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/datm_cdeps_iau_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_iau_gefs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/datm_cdeps_iau_gefs Checking test 143 datm_cdeps_iau_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.073489 - 0: The maximum resident set size (KB) = 974612 + 0: The total amount of wall time = 152.077394 + 0: The maximum resident set size (KB) = 959580 Test 143 datm_cdeps_iau_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_stochy_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/datm_cdeps_stochy_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_stochy_gefs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/datm_cdeps_stochy_gefs Checking test 144 datm_cdeps_stochy_gefs 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 = 152.580902 - 0: The maximum resident set size (KB) = 964428 + 0: The total amount of wall time = 150.825825 + 0: The maximum resident set size (KB) = 961924 Test 144 datm_cdeps_stochy_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_ciceC_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/datm_cdeps_ciceC_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_ciceC_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/datm_cdeps_ciceC_cfsr Checking test 145 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 155.248318 - 0: The maximum resident set size (KB) = 1056868 + 0: The total amount of wall time = 150.855002 + 0: The maximum resident set size (KB) = 1068208 Test 145 datm_cdeps_ciceC_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/datm_cdeps_bulk_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/datm_cdeps_bulk_cfsr Checking test 146 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 154.426988 - 0: The maximum resident set size (KB) = 1071396 + 0: The total amount of wall time = 153.787135 + 0: The maximum resident set size (KB) = 1072996 Test 146 datm_cdeps_bulk_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/datm_cdeps_bulk_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/datm_cdeps_bulk_gefs Checking test 147 datm_cdeps_bulk_gefs 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.857586 - 0: The maximum resident set size (KB) = 958264 + 0: The total amount of wall time = 147.080648 + 0: The maximum resident set size (KB) = 963708 Test 147 datm_cdeps_bulk_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/datm_cdeps_mx025_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/datm_cdeps_mx025_cfsr Checking test 148 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4623,14 +4623,14 @@ Checking test 148 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 442.095809 - 0: The maximum resident set size (KB) = 879048 + 0: The total amount of wall time = 433.425326 + 0: The maximum resident set size (KB) = 880828 Test 148 datm_cdeps_mx025_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/datm_cdeps_mx025_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/datm_cdeps_mx025_gefs Checking test 149 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4639,77 +4639,77 @@ Checking test 149 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 415.595386 - 0: The maximum resident set size (KB) = 931852 + 0: The total amount of wall time = 401.532657 + 0: The maximum resident set size (KB) = 932840 Test 149 datm_cdeps_mx025_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/datm_cdeps_multiple_files_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/datm_cdeps_multiple_files_cfsr Checking test 150 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 153.138454 - 0: The maximum resident set size (KB) = 1071876 + 0: The total amount of wall time = 153.049770 + 0: The maximum resident set size (KB) = 1058680 Test 150 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/datm_cdeps_3072x1536_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/datm_cdeps_3072x1536_cfsr Checking test 151 datm_cdeps_3072x1536_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 217.780644 - 0: The maximum resident set size (KB) = 2364600 + 0: The total amount of wall time = 207.844945 + 0: The maximum resident set size (KB) = 2368988 Test 151 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_gfs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/datm_cdeps_gfs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_gfs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/datm_cdeps_gfs Checking test 152 datm_cdeps_gfs results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 221.970108 - 0: The maximum resident set size (KB) = 2372240 + 0: The total amount of wall time = 229.328037 + 0: The maximum resident set size (KB) = 2351428 Test 152 datm_cdeps_gfs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/datm_cdeps_debug_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/datm_cdeps_debug_cfsr Checking test 153 datm_cdeps_debug_cfsr 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.518930 - 0: The maximum resident set size (KB) = 980536 + 0: The total amount of wall time = 356.208842 + 0: The maximum resident set size (KB) = 978128 Test 153 datm_cdeps_debug_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/datm_cdeps_control_cfsr_faster +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_cfsr_faster +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/datm_cdeps_control_cfsr_faster Checking test 154 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 155.245582 - 0: The maximum resident set size (KB) = 1073428 + 0: The total amount of wall time = 151.529818 + 0: The maximum resident set size (KB) = 1065396 Test 154 datm_cdeps_control_cfsr_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/datm_cdeps_lnd_gswp3 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_lnd_gswp3 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/datm_cdeps_lnd_gswp3 Checking test 155 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4718,14 +4718,14 @@ Checking test 155 datm_cdeps_lnd_gswp3 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.008973 - 0: The maximum resident set size (KB) = 262896 + 0: The total amount of wall time = 6.620096 + 0: The maximum resident set size (KB) = 255928 Test 155 datm_cdeps_lnd_gswp3 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/datm_cdeps_lnd_gswp3_rst +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_lnd_gswp3 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/datm_cdeps_lnd_gswp3_rst Checking test 156 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4734,14 +4734,14 @@ Checking test 156 datm_cdeps_lnd_gswp3_rst 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.140404 - 0: The maximum resident set size (KB) = 264396 + 0: The total amount of wall time = 11.920452 + 0: The maximum resident set size (KB) = 249772 Test 156 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_atmlnd_sbs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_p8_atmlnd_sbs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_atmlnd_sbs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_p8_atmlnd_sbs Checking test 157 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4826,14 +4826,14 @@ Checking test 157 control_p8_atmlnd_sbs 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 = 206.302628 - 0: The maximum resident set size (KB) = 1600864 + 0: The total amount of wall time = 203.076999 + 0: The maximum resident set size (KB) = 1606740 Test 157 control_p8_atmlnd_sbs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_atmwav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/control_atmwav +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_atmwav +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_atmwav Checking test 158 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4877,14 +4877,14 @@ Checking test 158 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 88.414545 - 0: The maximum resident set size (KB) = 663760 + 0: The total amount of wall time = 86.452167 + 0: The maximum resident set size (KB) = 661388 Test 158 control_atmwav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/atmaero_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/atmaero_control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/atmaero_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/atmaero_control_p8 Checking test 159 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4928,14 +4928,14 @@ Checking test 159 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 231.456058 - 0: The maximum resident set size (KB) = 2973528 + 0: The total amount of wall time = 227.434443 + 0: The maximum resident set size (KB) = 2977872 Test 159 atmaero_control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/atmaero_control_p8_rad -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/atmaero_control_p8_rad +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/atmaero_control_p8_rad +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/atmaero_control_p8_rad Checking test 160 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4979,14 +4979,14 @@ Checking test 160 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 281.032355 - 0: The maximum resident set size (KB) = 3044124 + 0: The total amount of wall time = 281.562912 + 0: The maximum resident set size (KB) = 3047684 Test 160 atmaero_control_p8_rad PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/atmaero_control_p8_rad_micro -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/atmaero_control_p8_rad_micro +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/atmaero_control_p8_rad_micro +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/atmaero_control_p8_rad_micro Checking test 161 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5030,14 +5030,14 @@ Checking test 161 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 289.221367 - 0: The maximum resident set size (KB) = 3056316 + 0: The total amount of wall time = 282.961384 + 0: The maximum resident set size (KB) = 3048064 Test 161 atmaero_control_p8_rad_micro PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_atmaq -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/regional_atmaq +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_atmaq +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/regional_atmaq Checking test 162 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5053,14 +5053,14 @@ Checking test 162 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 649.096086 - 0: The maximum resident set size (KB) = 1467256 + 0: The total amount of wall time = 628.951995 + 0: The maximum resident set size (KB) = 1472272 Test 162 regional_atmaq PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_atmaq_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/regional_atmaq_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_atmaq_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/regional_atmaq_debug Checking test 163 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5074,14 +5074,14 @@ Checking test 163 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1178.167822 - 0: The maximum resident set size (KB) = 1388852 + 0: The total amount of wall time = 1190.514290 + 0: The maximum resident set size (KB) = 1213444 Test 163 regional_atmaq_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_atmaq_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_24793/regional_atmaq_faster +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_atmaq_faster +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/regional_atmaq_faster Checking test 164 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5097,12 +5097,94 @@ Checking test 164 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 574.357557 - 0: The maximum resident set size (KB) = 1458436 + 0: The total amount of wall time = 548.981367 + 0: The maximum resident set size (KB) = 1463908 Test 164 regional_atmaq_faster PASS +FAILED TESTS: +Test cpld_control_gfsv17 002 failed in check_result failed +Test cpld_control_gfsv17 002 failed in run_test failed + +REGRESSION TEST FAILED +Wed Apr 5 21:55:44 UTC 2023 +Elapsed time: 01h:12m:45s. Have a nice day! +Thu Apr 6 00:51:34 UTC 2023 +Start Regression test + +Compile 001 elapsed time 617 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_gfsv17 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_20278/cpld_control_gfsv17 +Checking test 001 cpld_control_gfsv17 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 223.004061 + 0: The maximum resident set size (KB) = 1729940 + +Test 001 cpld_control_gfsv17 PASS + REGRESSION TEST WAS SUCCESSFUL -Tue Apr 4 21:35:56 UTC 2023 -Elapsed time: 01h:17m:16s. Have a nice day! +Thu Apr 6 01:13:53 UTC 2023 +Elapsed time: 00h:22m:19s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index 83d52cf5d94..287df0eb29c 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,45 +1,43 @@ -Wed Apr 5 02:52:46 UTC 2023 +Thu Apr 6 01:52:16 UTC 2023 Start Regression test -Compile 001 elapsed time 2264 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 002 elapsed time 2086 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 003 elapsed time 1857 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 004 elapsed time 485 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 446 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 1656 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 007 elapsed time 1581 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 008 elapsed time 3966 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 009 elapsed time 2427 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 010 elapsed time 2701 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 011 elapsed time 2264 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 012 elapsed time 2191 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 013 elapsed time 3058 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 014 elapsed time 537 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 409 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 1835 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 017 elapsed time 1968 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 018 elapsed time 839 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 435 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 1667 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 021 elapsed time 609 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 3664 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 023 elapsed time 2057 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 024 elapsed time 418 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 025 elapsed time 315 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 1243 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 027 elapsed time 1155 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 028 elapsed time 2900 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 029 elapsed time 2662 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 030 elapsed time 2778 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 031 elapsed time 2039 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 032 elapsed time 608 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 2105 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Test 001 cpld_control_p8_mixedmode FAIL - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_gfsv17 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/cpld_control_gfsv17 -Checking test 002 cpld_control_gfsv17 results .... +Compile 001 elapsed time 2023 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 002 elapsed time 1992 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 003 elapsed time 1789 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 004 elapsed time 363 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 339 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 1560 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 007 elapsed time 1603 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 008 elapsed time 3439 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 009 elapsed time 1717 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 010 elapsed time 1671 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 011 elapsed time 1517 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 012 elapsed time 1432 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 013 elapsed time 2114 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 014 elapsed time 335 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 297 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 1496 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 017 elapsed time 1503 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 018 elapsed time 249 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 297 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 1757 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 021 elapsed time 452 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 2321 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 023 elapsed time 1435 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 024 elapsed time 375 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 025 elapsed time 224 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 353 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 027 elapsed time 180 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 028 elapsed time 1665 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 029 elapsed time 1698 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 030 elapsed time 1528 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 031 elapsed time 1570 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 032 elapsed time 331 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 1928 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8_mixedmode +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/cpld_control_p8_mixedmode +Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -64,6 +62,7 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -102,23 +101,27 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1661.812533 - 0: The maximum resident set size (KB) = 1641096 - -Test 002 cpld_control_gfsv17 PASS - -Test 003 cpld_control_p8 FAIL - -Test 005 cpld_control_qr_p8 FAIL - -Test 007 cpld_2threads_p8 FAIL + 0: The total amount of wall time = 704.247296 + 0: The maximum resident set size (KB) = 1736140 -Test 008 cpld_decomp_p8 FAIL +Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/cpld_mpi_p8 -Checking test 009 cpld_mpi_p8 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_gfsv17 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/cpld_control_gfsv17 +Checking test 002 cpld_control_gfsv17 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 @@ -131,7 +134,6 @@ Checking test 009 cpld_mpi_p8 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -170,15 +172,15 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1699.619713 - 0: The maximum resident set size (KB) = 1740280 + 0: The total amount of wall time = 517.007447 + 0: The maximum resident set size (KB) = 1657820 -Test 009 cpld_mpi_p8 PASS Tries: 2 +Test 002 cpld_control_gfsv17 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_ciceC_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/cpld_control_ciceC_p8 -Checking test 010 cpld_control_ciceC_p8 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/cpld_control_p8 +Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -242,29 +244,15 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1708.861815 - 0: The maximum resident set size (KB) = 1774864 + 0: The total amount of wall time = 731.765590 + 0: The maximum resident set size (KB) = 1784352 -Test 010 cpld_control_ciceC_p8 PASS Tries: 2 +Test 003 cpld_control_p8 PASS -Test 011 cpld_control_noaero_p8 FAIL - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/cpld_control_nowave_noaero_p8 -Checking test 012 cpld_control_nowave_noaero_p8 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 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/cpld_restart_p8 +Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -277,6 +265,7 @@ Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -312,137 +301,30 @@ Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1691.051744 - 0: The maximum resident set size (KB) = 1671100 - -Test 012 cpld_control_nowave_noaero_p8 PASS Tries: 2 - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_debug_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/cpld_debug_p8 -Checking test 013 cpld_debug_p8 results .... - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing gocart.inst_aod.20210322_0900z.nc4 .........OK - Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-32400.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK - Comparing 20210322.090000.out_pnt.ww3 .........OK - Comparing 20210322.090000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 936.244934 - 0: The maximum resident set size (KB) = 1835996 - -Test 013 cpld_debug_p8 PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_debug_noaero_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/cpld_debug_noaero_p8 -Checking test 014 cpld_debug_noaero_p8 results .... - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-32400.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK - Comparing 20210322.090000.out_pnt.ww3 .........OK - Comparing 20210322.090000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 586.130891 - 0: The maximum resident set size (KB) = 1635140 - -Test 014 cpld_debug_noaero_p8 PASS + 0: The total amount of wall time = 433.381639 + 0: The maximum resident set size (KB) = 1482320 -Test 015 cpld_control_noaero_p8_agrid FAIL +Test 004 cpld_restart_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_c48 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/cpld_control_c48 -Checking test 016 cpld_control_c48 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/cpld_control_qr_p8 +Checking test 005 cpld_control_qr_p8 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 @@ -455,177 +337,114 @@ Checking test 016 cpld_control_c48 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1380.068777 - 0: The maximum resident set size (KB) = 2765792 + 0: The total amount of wall time = 789.950692 + 0: The maximum resident set size (KB) = 1790336 -Test 016 cpld_control_c48 PASS +Test 005 cpld_control_qr_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_warmstart_c48 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/cpld_warmstart_c48 -Checking test 017 cpld_warmstart_c48 results .... - Comparing sfcf006.tile1.nc .........OK - Comparing sfcf006.tile2.nc .........OK - Comparing sfcf006.tile3.nc .........OK - Comparing sfcf006.tile4.nc .........OK - Comparing sfcf006.tile5.nc .........OK - Comparing sfcf006.tile6.nc .........OK - Comparing atmf006.tile1.nc .........OK - Comparing atmf006.tile2.nc .........OK - Comparing atmf006.tile3.nc .........OK - Comparing atmf006.tile4.nc .........OK - Comparing atmf006.tile5.nc .........OK - Comparing atmf006.tile6.nc .........OK - Comparing RESTART/20210323.120000.coupler.res .........OK - Comparing RESTART/20210323.120000.fv_core.res.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - - 0: The total amount of wall time = 314.717023 - 0: The maximum resident set size (KB) = 2762184 - -Test 017 cpld_warmstart_c48 PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_warmstart_c48 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/cpld_restart_c48 -Checking test 018 cpld_restart_c48 results .... - Comparing sfcf006.tile1.nc .........OK - Comparing sfcf006.tile2.nc .........OK - Comparing sfcf006.tile3.nc .........OK - Comparing sfcf006.tile4.nc .........OK - Comparing sfcf006.tile5.nc .........OK - Comparing sfcf006.tile6.nc .........OK - Comparing atmf006.tile1.nc .........OK - Comparing atmf006.tile2.nc .........OK - Comparing atmf006.tile3.nc .........OK - Comparing atmf006.tile4.nc .........OK - Comparing atmf006.tile5.nc .........OK - Comparing atmf006.tile6.nc .........OK - Comparing RESTART/20210323.120000.coupler.res .........OK - Comparing RESTART/20210323.120000.fv_core.res.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/cpld_restart_qr_p8 +Checking test 006 cpld_restart_qr_p8 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 292.382873 - 0: The maximum resident set size (KB) = 2212040 + 0: The total amount of wall time = 503.561430 + 0: The maximum resident set size (KB) = 1512208 -Test 018 cpld_restart_c48 PASS +Test 006 cpld_restart_qr_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8_faster -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/cpld_control_p8_faster -Checking test 019 cpld_control_p8_faster 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 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/cpld_2threads_p8 +Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -677,103 +496,88 @@ Checking test 019 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1601.713966 - 0: The maximum resident set size (KB) = 1792068 + 0: The total amount of wall time = 782.655697 + 0: The maximum resident set size (KB) = 1987600 -Test 019 cpld_control_p8_faster PASS +Test 007 cpld_2threads_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_CubedSphereGrid -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/control_CubedSphereGrid -Checking test 020 control_CubedSphereGrid results .... - Comparing sfcf000.tile1.nc .........OK - Comparing sfcf000.tile2.nc .........OK - Comparing sfcf000.tile3.nc .........OK - Comparing sfcf000.tile4.nc .........OK - Comparing sfcf000.tile5.nc .........OK - Comparing sfcf000.tile6.nc .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/cpld_decomp_p8 +Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK Comparing sfcf024.tile4.nc .........OK Comparing sfcf024.tile5.nc .........OK Comparing sfcf024.tile6.nc .........OK - Comparing atmf000.tile1.nc .........OK - Comparing atmf000.tile2.nc .........OK - Comparing atmf000.tile3.nc .........OK - Comparing atmf000.tile4.nc .........OK - Comparing atmf000.tile5.nc .........OK - Comparing atmf000.tile6.nc .........OK Comparing atmf024.tile1.nc .........OK Comparing atmf024.tile2.nc .........OK Comparing atmf024.tile3.nc .........OK Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1378.924290 - 0: The maximum resident set size (KB) = 578872 - -Test 020 control_CubedSphereGrid PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_CubedSphereGrid_parallel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/control_CubedSphereGrid_parallel -Checking test 021 control_CubedSphereGrid_parallel 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 = 1275.458310 - 0: The maximum resident set size (KB) = 584020 - -Test 021 control_CubedSphereGrid_parallel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_latlon -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/control_latlon -Checking test 022 control_latlon results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 1281.670639 - 0: The maximum resident set size (KB) = 577776 - -Test 022 control_latlon PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/control_wrtGauss_netcdf_parallel -Checking test 023 control_wrtGauss_netcdf_parallel results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 1241.538179 - 0: The maximum resident set size (KB) = 575840 + 0: The total amount of wall time = 725.951507 + 0: The maximum resident set size (KB) = 1791312 -Test 023 control_wrtGauss_netcdf_parallel PASS +Test 008 cpld_decomp_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c48 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/control_c48 -Checking test 024 control_c48 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/cpld_mpi_p8 +Checking test 009 cpld_mpi_p8 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -806,128 +610,46 @@ Checking test 024 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK -0: The total amount of wall time = 905.598413 -0: The maximum resident set size (KB) = 798264 - -Test 024 control_c48 PASS - -Test 025 control_c192 FAIL + 0: The total amount of wall time = 697.728215 + 0: The maximum resident set size (KB) = 1729600 -Test 026 control_c384 FAIL +Test 009 cpld_mpi_p8 PASS -Test 027 control_c384gdas FAIL - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_stochy -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/control_stochy -Checking test 028 control_stochy results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 1106.434268 - 0: The maximum resident set size (KB) = 583904 - -Test 028 control_stochy PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_stochy -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/control_stochy_restart -Checking test 029 control_stochy_restart results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 194.457181 - 0: The maximum resident set size (KB) = 401636 - -Test 029 control_stochy_restart PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_lndp -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/control_lndp -Checking test 030 control_lndp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 1058.038737 - 0: The maximum resident set size (KB) = 578488 - -Test 030 control_lndp PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_iovr4 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/control_iovr4 -Checking test 031 control_iovr4 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 1326.799996 - 0: The maximum resident set size (KB) = 580384 - -Test 031 control_iovr4 PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_iovr5 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/control_iovr5 -Checking test 032 control_iovr5 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 1397.285635 - 0: The maximum resident set size (KB) = 575644 - -Test 032 control_iovr5 PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/control_p8 -Checking test 033 control_p8 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_ciceC_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/cpld_control_ciceC_p8 +Checking test 010 cpld_control_ciceC_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -960,20 +682,45 @@ Checking test 033 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 633.081155 - 0: The maximum resident set size (KB) = 1535544 + 0: The total amount of wall time = 689.715847 + 0: The maximum resident set size (KB) = 1786080 -Test 033 control_p8 PASS +Test 010 cpld_control_ciceC_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/control_restart_p8 -Checking test 034 control_restart_p8 results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_noaero_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/cpld_control_noaero_p8 +Checking test 011 cpld_control_noaero_p8 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 @@ -1006,124 +753,233 @@ Checking test 034 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 331.216141 - 0: The maximum resident set size (KB) = 778528 + 0: The total amount of wall time = 553.694390 + 0: The maximum resident set size (KB) = 1634256 -Test 034 control_restart_p8 PASS +Test 011 cpld_control_noaero_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/control_qr_p8 -Checking test 035 control_qr_p8 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_c96_noaero_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/cpld_control_nowave_noaero_p8 +Checking test 012 cpld_control_nowave_noaero_p8 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 ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 1222.370960 - 0: The maximum resident set size (KB) = 1551856 + 0: The total amount of wall time = 529.147414 + 0: The maximum resident set size (KB) = 1676532 -Test 035 control_qr_p8 PASS +Test 012 cpld_control_nowave_noaero_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/control_restart_qr_p8 -Checking test 036 control_restart_qr_p8 results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_debug_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/cpld_debug_p8 +Checking test 013 cpld_debug_p8 results .... + Comparing sfcf003.tile1.nc .........OK + Comparing sfcf003.tile2.nc .........OK + Comparing sfcf003.tile3.nc .........OK + Comparing sfcf003.tile4.nc .........OK + Comparing sfcf003.tile5.nc .........OK + Comparing sfcf003.tile6.nc .........OK + Comparing atmf003.tile1.nc .........OK + Comparing atmf003.tile2.nc .........OK + Comparing atmf003.tile3.nc .........OK + Comparing atmf003.tile4.nc .........OK + Comparing atmf003.tile5.nc .........OK + Comparing atmf003.tile6.nc .........OK + Comparing gocart.inst_aod.20210322_0900z.nc4 .........OK + Comparing RESTART/20210322.090000.coupler.res .........OK + Comparing RESTART/20210322.090000.fv_core.res.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-22-32400.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK + Comparing 20210322.090000.out_pnt.ww3 .........OK + Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 410.344437 - 0: The maximum resident set size (KB) = 798472 + 0: The total amount of wall time = 782.045856 + 0: The maximum resident set size (KB) = 1813688 -Test 036 control_restart_qr_p8 PASS +Test 013 cpld_debug_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/control_decomp_p8 -Checking test 037 control_decomp_p8 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 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_debug_noaero_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/cpld_debug_noaero_p8 +Checking test 014 cpld_debug_noaero_p8 results .... + Comparing sfcf003.tile1.nc .........OK + Comparing sfcf003.tile2.nc .........OK + Comparing sfcf003.tile3.nc .........OK + Comparing sfcf003.tile4.nc .........OK + Comparing sfcf003.tile5.nc .........OK + Comparing sfcf003.tile6.nc .........OK + Comparing atmf003.tile1.nc .........OK + Comparing atmf003.tile2.nc .........OK + Comparing atmf003.tile3.nc .........OK + Comparing atmf003.tile4.nc .........OK + Comparing atmf003.tile5.nc .........OK + Comparing atmf003.tile6.nc .........OK + Comparing RESTART/20210322.090000.coupler.res .........OK + Comparing RESTART/20210322.090000.fv_core.res.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-22-32400.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK + Comparing 20210322.090000.out_pnt.ww3 .........OK + Comparing 20210322.090000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 525.151304 + 0: The maximum resident set size (KB) = 1648320 + +Test 014 cpld_debug_noaero_p8 PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_noaero_p8_agrid +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/cpld_control_noaero_p8_agrid +Checking test 015 cpld_control_noaero_p8_agrid 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 @@ -1156,24 +1012,31 @@ Checking test 037 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing 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 = 582.538337 - 0: The maximum resident set size (KB) = 1525728 + 0: The total amount of wall time = 660.894756 + 0: The maximum resident set size (KB) = 1687288 -Test 037 control_decomp_p8 PASS +Test 015 cpld_control_noaero_p8_agrid PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/control_2threads_p8 -Checking test 038 control_2threads_p8 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 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_c48 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/cpld_control_c48 +Checking test 016 cpld_control_c48 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -1206,108 +1069,158 @@ Checking test 038 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing 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 = 589.502941 - 0: The maximum resident set size (KB) = 1628520 - -Test 038 control_2threads_p8 PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_lndp -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/control_p8_lndp -Checking test 039 control_p8_lndp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing sfcf048.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing atmf048.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSFLX.GrbF48 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing GFSPRS.GrbF48 .........OK - - 0: The total amount of wall time = 1475.047910 - 0: The maximum resident set size (KB) = 1540072 + 0: The total amount of wall time = 830.108797 + 0: The maximum resident set size (KB) = 2767200 -Test 039 control_p8_lndp PASS +Test 016 cpld_control_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_rrtmgp -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/control_p8_rrtmgp -Checking test 040 control_p8_rrtmgp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_warmstart_c48 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/cpld_warmstart_c48 +Checking test 017 cpld_warmstart_c48 results .... + Comparing sfcf006.tile1.nc .........OK + Comparing sfcf006.tile2.nc .........OK + Comparing sfcf006.tile3.nc .........OK + Comparing sfcf006.tile4.nc .........OK + Comparing sfcf006.tile5.nc .........OK + Comparing sfcf006.tile6.nc .........OK + Comparing atmf006.tile1.nc .........OK + Comparing atmf006.tile2.nc .........OK + Comparing atmf006.tile3.nc .........OK + Comparing atmf006.tile4.nc .........OK + Comparing atmf006.tile5.nc .........OK + Comparing atmf006.tile6.nc .........OK + Comparing RESTART/20210323.120000.coupler.res .........OK + Comparing RESTART/20210323.120000.fv_core.res.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 827.641733 - 0: The maximum resident set size (KB) = 1603532 + 0: The total amount of wall time = 286.617151 + 0: The maximum resident set size (KB) = 2765164 -Test 040 control_p8_rrtmgp PASS +Test 017 cpld_warmstart_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_mynn -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/control_p8_mynn -Checking test 041 control_p8_mynn results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_warmstart_c48 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/cpld_restart_c48 +Checking test 018 cpld_restart_c48 results .... + Comparing sfcf006.tile1.nc .........OK + Comparing sfcf006.tile2.nc .........OK + Comparing sfcf006.tile3.nc .........OK + Comparing sfcf006.tile4.nc .........OK + Comparing sfcf006.tile5.nc .........OK + Comparing sfcf006.tile6.nc .........OK + Comparing atmf006.tile1.nc .........OK + Comparing atmf006.tile2.nc .........OK + Comparing atmf006.tile3.nc .........OK + Comparing atmf006.tile4.nc .........OK + Comparing atmf006.tile5.nc .........OK + Comparing atmf006.tile6.nc .........OK + Comparing RESTART/20210323.120000.coupler.res .........OK + Comparing RESTART/20210323.120000.fv_core.res.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK + + 0: The total amount of wall time = 139.966378 + 0: The maximum resident set size (KB) = 2217776 + +Test 018 cpld_restart_c48 PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8_faster +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/cpld_control_p8_faster +Checking test 019 cpld_control_p8_faster results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -1340,28 +1253,109 @@ Checking test 041 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 875.621593 - 0: The maximum resident set size (KB) = 1563352 + 0: The total amount of wall time = 863.974021 + 0: The maximum resident set size (KB) = 1796768 -Test 041 control_p8_mynn PASS +Test 019 cpld_control_p8_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/merra2_thompson -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/merra2_thompson -Checking test 042 merra2_thompson results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_CubedSphereGrid +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_CubedSphereGrid +Checking test 020 control_CubedSphereGrid results .... + Comparing sfcf000.tile1.nc .........OK + Comparing sfcf000.tile2.nc .........OK + Comparing sfcf000.tile3.nc .........OK + Comparing sfcf000.tile4.nc .........OK + Comparing sfcf000.tile5.nc .........OK + Comparing sfcf000.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf000.tile1.nc .........OK + Comparing atmf000.tile2.nc .........OK + Comparing atmf000.tile3.nc .........OK + Comparing atmf000.tile4.nc .........OK + Comparing atmf000.tile5.nc .........OK + Comparing atmf000.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + + 0: The total amount of wall time = 275.413466 + 0: The maximum resident set size (KB) = 574480 + +Test 020 control_CubedSphereGrid PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_CubedSphereGrid_parallel +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_CubedSphereGrid_parallel +Checking test 021 control_CubedSphereGrid_parallel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + + 0: The total amount of wall time = 349.310658 + 0: The maximum resident set size (KB) = 575032 + +Test 021 control_CubedSphereGrid_parallel PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_latlon +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_latlon +Checking test 022 control_latlon results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + + 0: The total amount of wall time = 310.552200 + 0: The maximum resident set size (KB) = 577268 + +Test 022 control_latlon PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_wrtGauss_netcdf_parallel +Checking test 023 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK + + 0: The total amount of wall time = 307.373656 + 0: The maximum resident set size (KB) = 579760 + +Test 023 control_wrtGauss_netcdf_parallel PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c48 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_c48 +Checking test 024 control_c48 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -1395,337 +1389,195 @@ Checking test 042 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1001.638221 - 0: The maximum resident set size (KB) = 1550216 +0: The total amount of wall time = 614.756796 +0: The maximum resident set size (KB) = 801792 -Test 042 merra2_thompson PASS - -Test 043 regional_control FAIL - -Test 045 regional_control_qr FAIL - -Test 047 regional_decomp FAIL +Test 024 control_c48 PASS -Test 048 regional_2threads FAIL -Test 049 regional_netcdf_parallel FAIL +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c192 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_c192 +Checking test 025 control_c192 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 -Test 050 regional_2dwrtdecomp FAIL + 0: The total amount of wall time = 911.738880 + 0: The maximum resident set size (KB) = 688644 -Test 051 rap_control FAIL +Test 025 control_c192 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/regional_spp_sppt_shum_skeb -Checking test 052 regional_spp_sppt_shum_skeb results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF01 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF01 .........OK - - 0: The total amount of wall time = 795.019961 - 0: The maximum resident set size (KB) = 1089404 - -Test 052 regional_spp_sppt_shum_skeb PASS Tries: 2 - -Test 053 rap_decomp FAIL - -Test 054 rap_2threads FAIL - -Test 056 rap_sfcdiff FAIL - -Test 057 rap_sfcdiff_decomp FAIL - -Test 059 hrrr_control FAIL - -Test 060 hrrr_control_decomp FAIL - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/hrrr_control_2threads -Checking test 061 hrrr_control_2threads results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c384 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_c384 +Checking test 026 control_c384 results .... Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1694.790748 - 0: The maximum resident set size (KB) = 1019528 + 0: The total amount of wall time = 1605.655012 + 0: The maximum resident set size (KB) = 1052708 -Test 061 hrrr_control_2threads PASS Tries: 2 +Test 026 control_c384 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1beta -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/rrfs_v1beta -Checking test 063 rrfs_v1beta results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c384gdas +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_c384gdas +Checking test 027 control_c384gdas results .... Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK + Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK + Comparing atmf006.nc .........OK Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK + Comparing GFSFLX.GrbF06 .........OK Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing GFSPRS.GrbF06 .........OK + Comparing RESTART/20210322.060000.coupler.res .........OK + Comparing RESTART/20210322.060000.fv_core.res.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1214.007585 - 0: The maximum resident set size (KB) = 953068 + 0: The total amount of wall time = 1431.112996 + 0: The maximum resident set size (KB) = 1198364 -Test 063 rrfs_v1beta PASS Tries: 2 +Test 027 control_c384gdas PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1nssl -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/rrfs_v1nssl -Checking test 064 rrfs_v1nssl results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_stochy +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_stochy +Checking test 028 control_stochy results .... Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1435.434453 - 0: The maximum resident set size (KB) = 636804 + 0: The total amount of wall time = 154.862187 + 0: The maximum resident set size (KB) = 579912 -Test 064 rrfs_v1nssl PASS Tries: 2 +Test 028 control_stochy PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/rrfs_v1nssl_nohailnoccn -Checking test 065 rrfs_v1nssl_nohailnoccn results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_stochy +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_stochy_restart +Checking test 029 control_stochy_restart results .... Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1315.360955 - 0: The maximum resident set size (KB) = 629264 - -Test 065 rrfs_v1nssl_nohailnoccn PASS Tries: 2 - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/rrfs_smoke_conus13km_hrrr_warm -Checking test 066 rrfs_smoke_conus13km_hrrr_warm 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 - - 0: The total amount of wall time = 1347.863417 - 0: The maximum resident set size (KB) = 898628 - -Test 066 rrfs_smoke_conus13km_hrrr_warm PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/rrfs_smoke_conus13km_hrrr_warm_2threads -Checking test 067 rrfs_smoke_conus13km_hrrr_warm_2threads 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 - - 0: The total amount of wall time = 1186.267058 - 0: The maximum resident set size (KB) = 866752 - -Test 067 rrfs_smoke_conus13km_hrrr_warm_2threads PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/rrfs_conus13km_hrrr_warm -Checking test 068 rrfs_conus13km_hrrr_warm 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 - - 0: The total amount of wall time = 528.957764 - 0: The maximum resident set size (KB) = 864464 + 0: The total amount of wall time = 166.936801 + 0: The maximum resident set size (KB) = 405576 -Test 068 rrfs_conus13km_hrrr_warm PASS +Test 029 control_stochy_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/rrfs_smoke_conus13km_radar_tten_warm -Checking test 069 rrfs_smoke_conus13km_radar_tten_warm results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_lndp +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_lndp +Checking test 030 control_lndp results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK + Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - - 0: The total amount of wall time = 524.429686 - 0: The maximum resident set size (KB) = 909920 - -Test 069 rrfs_smoke_conus13km_radar_tten_warm PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/rrfs_conus13km_hrrr_warm_restart_mismatch -Checking test 070 rrfs_conus13km_hrrr_warm_restart_mismatch results .... - Comparing sfcf002.nc .........OK - Comparing atmf002.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 141.616788 - 0: The maximum resident set size (KB) = 844520 + 0: The total amount of wall time = 199.550056 + 0: The maximum resident set size (KB) = 576408 -Test 070 rrfs_conus13km_hrrr_warm_restart_mismatch PASS +Test 030 control_lndp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmg -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/control_csawmg -Checking test 071 control_csawmg results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_iovr4 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_iovr4 +Checking test 031 control_iovr4 results .... Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 1208.780362 - 0: The maximum resident set size (KB) = 670060 + 0: The total amount of wall time = 367.344764 + 0: The maximum resident set size (KB) = 571368 -Test 071 control_csawmg PASS - -Test 072 control_csawmgt FAIL +Test 031 control_iovr4 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_ras -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/control_ras -Checking test 073 control_ras results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_iovr5 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_iovr5 +Checking test 032 control_iovr5 results .... Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 1392.463929 - 0: The maximum resident set size (KB) = 638648 - -Test 073 control_ras PASS - + 0: The total amount of wall time = 380.177668 + 0: The maximum resident set size (KB) = 578988 -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wam -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/control_wam -Checking test 074 control_wam results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - - 0: The total amount of wall time = 1150.814583 - 0: The maximum resident set size (KB) = 482648 - -Test 074 control_wam PASS +Test 032 control_iovr5 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_faster -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/control_p8_faster -Checking test 075 control_p8_faster results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_p8 +Checking test 033 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1771,429 +1623,635 @@ Checking test 075 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1598.494205 - 0: The maximum resident set size (KB) = 1535488 - -Test 075 control_p8_faster PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control_faster -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/regional_control_faster -Checking test 076 regional_control_faster results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 856.035607 - 0: The maximum resident set size (KB) = 791848 - -Test 076 regional_control_faster PASS Tries: 2 + 0: The total amount of wall time = 430.142897 + 0: The maximum resident set size (KB) = 1535608 +Test 033 control_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/rrfs_smoke_conus13km_hrrr_warm_debug -Checking test 077 rrfs_smoke_conus13km_hrrr_warm_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 1214.345520 - 0: The maximum resident set size (KB) = 927592 -Test 077 rrfs_smoke_conus13km_hrrr_warm_debug PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/rrfs_smoke_conus13km_hrrr_warm_debug_2threads -Checking test 078 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_restart_p8 +Checking test 034 control_restart_p8 results .... + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1144.037296 - 0: The maximum resident set size (KB) = 887720 + 0: The total amount of wall time = 238.828657 + 0: The maximum resident set size (KB) = 773980 -Test 078 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS +Test 034 control_restart_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/rrfs_conus13km_hrrr_warm_debug -Checking test 079 rrfs_conus13km_hrrr_warm_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_qr_p8 +Checking test 035 control_qr_p8 results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 1165.708022 - 0: The maximum resident set size (KB) = 887788 + 0: The total amount of wall time = 467.073061 + 0: The maximum resident set size (KB) = 1548924 -Test 079 rrfs_conus13km_hrrr_warm_debug PASS +Test 035 control_qr_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_CubedSphereGrid_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/control_CubedSphereGrid_debug -Checking test 080 control_CubedSphereGrid_debug results .... - Comparing sfcf000.tile1.nc .........OK - Comparing sfcf000.tile2.nc .........OK - Comparing sfcf000.tile3.nc .........OK - Comparing sfcf000.tile4.nc .........OK - Comparing sfcf000.tile5.nc .........OK - Comparing sfcf000.tile6.nc .........OK - Comparing sfcf001.tile1.nc .........OK - Comparing sfcf001.tile2.nc .........OK - Comparing sfcf001.tile3.nc .........OK - Comparing sfcf001.tile4.nc .........OK - Comparing sfcf001.tile5.nc .........OK - Comparing sfcf001.tile6.nc .........OK - Comparing atmf000.tile1.nc .........OK - Comparing atmf000.tile2.nc .........OK - Comparing atmf000.tile3.nc .........OK - Comparing atmf000.tile4.nc .........OK - Comparing atmf000.tile5.nc .........OK - Comparing atmf000.tile6.nc .........OK - Comparing atmf001.tile1.nc .........OK - Comparing atmf001.tile2.nc .........OK - Comparing atmf001.tile3.nc .........OK - Comparing atmf001.tile4.nc .........OK - Comparing atmf001.tile5.nc .........OK - Comparing atmf001.tile6.nc .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_restart_qr_p8 +Checking test 036 control_restart_qr_p8 results .... + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 1282.955098 - 0: The maximum resident set size (KB) = 738120 + 0: The total amount of wall time = 199.630294 + 0: The maximum resident set size (KB) = 783616 -Test 080 control_CubedSphereGrid_debug PASS +Test 036 control_restart_qr_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/control_wrtGauss_netcdf_parallel_debug -Checking test 081 control_wrtGauss_netcdf_parallel_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_decomp_p8 +Checking test 037 control_decomp_p8 results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK + Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 856.252210 - 0: The maximum resident set size (KB) = 734764 + 0: The total amount of wall time = 375.865912 + 0: The maximum resident set size (KB) = 1527684 -Test 081 control_wrtGauss_netcdf_parallel_debug PASS +Test 037 control_decomp_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_stochy_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/control_stochy_debug -Checking test 082 control_stochy_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_2threads_p8 +Checking test 038 control_2threads_p8 results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK + Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1122.741673 - 0: The maximum resident set size (KB) = 739776 + 0: The total amount of wall time = 368.700223 + 0: The maximum resident set size (KB) = 1627496 -Test 082 control_stochy_debug PASS +Test 038 control_2threads_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_lndp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/control_lndp_debug -Checking test 083 control_lndp_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_lndp +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_p8_lndp +Checking test 039 control_p8_lndp results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing sfcf048.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 1063.353786 - 0: The maximum resident set size (KB) = 737156 - -Test 083 control_lndp_debug PASS + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing atmf048.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSFLX.GrbF48 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing GFSPRS.GrbF48 .........OK + 0: The total amount of wall time = 795.859919 + 0: The maximum resident set size (KB) = 1537692 -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmg_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/control_csawmg_debug -Checking test 084 control_csawmg_debug results .... +Test 039 control_p8_lndp PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_rrtmgp +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_p8_rrtmgp +Checking test 040 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 864.955314 - 0: The maximum resident set size (KB) = 780796 + 0: The total amount of wall time = 525.418084 + 0: The maximum resident set size (KB) = 1602552 -Test 084 control_csawmg_debug PASS +Test 040 control_p8_rrtmgp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmgt_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/control_csawmgt_debug -Checking test 085 control_csawmgt_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_mynn +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_p8_mynn +Checking test 041 control_p8_mynn results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 374.416205 - 0: The maximum resident set size (KB) = 784488 + 0: The total amount of wall time = 405.453424 + 0: The maximum resident set size (KB) = 1557004 -Test 085 control_csawmgt_debug PASS +Test 041 control_p8_mynn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_ras_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/control_ras_debug -Checking test 086 control_ras_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/merra2_thompson +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/merra2_thompson +Checking test 042 merra2_thompson results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1020.750919 - 0: The maximum resident set size (KB) = 741684 + 0: The total amount of wall time = 486.005329 + 0: The maximum resident set size (KB) = 1545456 -Test 086 control_ras_debug PASS +Test 042 merra2_thompson PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_diag_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/control_diag_debug -Checking test 087 control_diag_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/regional_control +Checking test 043 regional_control results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 341.291090 - 0: The maximum resident set size (KB) = 791688 + 0: The total amount of wall time = 724.721363 + 0: The maximum resident set size (KB) = 790332 -Test 087 control_diag_debug PASS +Test 043 regional_control PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_debug_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/control_debug_p8 -Checking test 088 control_debug_p8 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/regional_restart +Checking test 044 regional_restart results .... + Comparing dynf006.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 276.519420 - 0: The maximum resident set size (KB) = 1557552 + 0: The total amount of wall time = 308.749726 + 0: The maximum resident set size (KB) = 782452 -Test 088 control_debug_p8 PASS +Test 044 regional_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/regional_debug -Checking test 089 regional_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/regional_control_qr +Checking test 045 regional_control_qr results .... Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK + Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 1726.935170 - 0: The maximum resident set size (KB) = 800540 + 0: The total amount of wall time = 769.628703 + 0: The maximum resident set size (KB) = 786988 -Test 089 regional_debug PASS Tries: 2 +Test 045 regional_control_qr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/rap_control_debug -Checking test 090 rap_control_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/regional_restart_qr +Checking test 046 regional_restart_qr results .... + Comparing dynf006.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 431.780390 - 0: The maximum resident set size (KB) = 1107684 + 0: The total amount of wall time = 349.092000 + 0: The maximum resident set size (KB) = 779656 -Test 090 rap_control_debug PASS +Test 046 regional_restart_qr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/hrrr_control_debug -Checking test 091 hrrr_control_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/regional_decomp +Checking test 047 regional_decomp results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 411.674754 - 0: The maximum resident set size (KB) = 1104200 + 0: The total amount of wall time = 804.782981 + 0: The maximum resident set size (KB) = 791116 -Test 091 hrrr_control_debug PASS +Test 047 regional_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/rap_unified_drag_suite_debug -Checking test 092 rap_unified_drag_suite_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/regional_2threads +Checking test 048 regional_2threads results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 502.123144 - 0: The maximum resident set size (KB) = 1111516 + 0: The total amount of wall time = 566.974774 + 0: The maximum resident set size (KB) = 775280 -Test 092 rap_unified_drag_suite_debug PASS +Test 048 regional_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_diag_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/rap_diag_debug -Checking test 093 rap_diag_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_netcdf_parallel +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/regional_netcdf_parallel +Checking test 049 regional_netcdf_parallel results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 548.045770 - 0: The maximum resident set size (KB) = 1190892 + 0: The total amount of wall time = 770.401993 + 0: The maximum resident set size (KB) = 781112 -Test 093 rap_diag_debug PASS +Test 049 regional_netcdf_parallel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/rap_cires_ugwp_debug -Checking test 094 rap_cires_ugwp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/regional_2dwrtdecomp +Checking test 050 regional_2dwrtdecomp results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 487.199029 - 0: The maximum resident set size (KB) = 1107860 + 0: The total amount of wall time = 843.394705 + 0: The maximum resident set size (KB) = 787904 -Test 094 rap_cires_ugwp_debug PASS +Test 050 regional_2dwrtdecomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/rap_unified_ugwp_debug -Checking test 095 rap_unified_ugwp_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rap_control +Checking test 051 rap_control results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 472.831710 - 0: The maximum resident set size (KB) = 1114232 - -Test 095 rap_unified_ugwp_debug PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_lndp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/rap_lndp_debug -Checking test 096 rap_lndp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 465.128221 - 0: The maximum resident set size (KB) = 1107464 - -Test 096 rap_lndp_debug PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_flake_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/rap_flake_debug -Checking test 097 rap_flake_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 441.035093 - 0: The maximum resident set size (KB) = 1105932 - -Test 097 rap_flake_debug PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_progcld_thompson_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/rap_progcld_thompson_debug -Checking test 098 rap_progcld_thompson_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 461.765775 - 0: The maximum resident set size (KB) = 1113988 - -Test 098 rap_progcld_thompson_debug PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_noah_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/rap_noah_debug -Checking test 099 rap_noah_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 469.725230 - 0: The maximum resident set size (KB) = 1105920 - -Test 099 rap_noah_debug PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/rap_sfcdiff_debug -Checking test 100 rap_sfcdiff_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 440.389232 - 0: The maximum resident set size (KB) = 1110756 - -Test 100 rap_sfcdiff_debug PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 101 rap_noah_sfcdiff_cires_ugwp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 676.257971 - 0: The maximum resident set size (KB) = 1112932 - -Test 101 rap_noah_sfcdiff_cires_ugwp_debug PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1beta_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/rrfs_v1beta_debug -Checking test 102 rrfs_v1beta_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 406.713817 - 0: The maximum resident set size (KB) = 1104604 - -Test 102 rrfs_v1beta_debug PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wam_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/control_wam_debug -Checking test 103 control_wam_debug results .... - Comparing sfcf019.nc .........OK - Comparing atmf019.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 464.628919 - 0: The maximum resident set size (KB) = 439704 + 0: The total amount of wall time = 855.878209 + 0: The maximum resident set size (KB) = 949148 -Test 103 control_wam_debug PASS +Test 051 rap_control PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/regional_spp_sppt_shum_skeb_dyn32_phy32 -Checking test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_spp_sppt_shum_skeb +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/regional_spp_sppt_shum_skeb +Checking test 052 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -2203,27 +2261,27 @@ Checking test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 596.782660 - 0: The maximum resident set size (KB) = 986452 + 0: The total amount of wall time = 622.654113 + 0: The maximum resident set size (KB) = 1090100 -Test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS +Test 052 regional_spp_sppt_shum_skeb PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/rap_control_dyn32_phy32 -Checking test 105 rap_control_dyn32_phy32 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rap_decomp +Checking test 053 rap_decomp results .... Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -2257,81 +2315,73 @@ Checking test 105 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1780.129820 - 0: The maximum resident set size (KB) = 846892 + 0: The total amount of wall time = 876.988948 + 0: The maximum resident set size (KB) = 952348 -Test 105 rap_control_dyn32_phy32 PASS +Test 053 rap_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/hrrr_control_dyn32_phy32 -Checking test 106 hrrr_control_dyn32_phy32 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rap_2threads +Checking test 054 rap_2threads results .... Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 451.456430 - 0: The maximum resident set size (KB) = 828284 + 0: The total amount of wall time = 803.095183 + 0: The maximum resident set size (KB) = 1021660 -Test 106 hrrr_control_dyn32_phy32 PASS +Test 054 rap_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/rap_2threads_dyn32_phy32 -Checking test 107 rap_2threads_dyn32_phy32 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 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rap_restart +Checking test 055 rap_restart results .... + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -2365,15 +2415,15 @@ Checking test 107 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1394.144665 - 0: The maximum resident set size (KB) = 890144 + 0: The total amount of wall time = 559.829078 + 0: The maximum resident set size (KB) = 838140 -Test 107 rap_2threads_dyn32_phy32 PASS Tries: 2 +Test 055 rap_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/hrrr_control_2threads_dyn32_phy32 -Checking test 108 hrrr_control_2threads_dyn32_phy32 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rap_sfcdiff +Checking test 056 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2386,48 +2436,48 @@ Checking test 108 hrrr_control_2threads_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 493.155679 - 0: The maximum resident set size (KB) = 892232 + 0: The total amount of wall time = 790.774249 + 0: The maximum resident set size (KB) = 950888 -Test 108 hrrr_control_2threads_dyn32_phy32 PASS +Test 056 rap_sfcdiff PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/hrrr_control_decomp_dyn32_phy32 -Checking test 109 hrrr_control_decomp_dyn32_phy32 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rap_sfcdiff_decomp +Checking test 057 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2440,48 +2490,48 @@ Checking test 109 hrrr_control_decomp_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 478.508926 - 0: The maximum resident set size (KB) = 818268 + 0: The total amount of wall time = 852.487035 + 0: The maximum resident set size (KB) = 942124 -Test 109 hrrr_control_decomp_dyn32_phy32 PASS +Test 057 rap_sfcdiff_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/rap_restart_dyn32_phy32 -Checking test 110 rap_restart_dyn32_phy32 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rap_sfcdiff_restart +Checking test 058 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2519,61 +2569,69 @@ Checking test 110 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1052.747955 - 0: The maximum resident set size (KB) = 835016 + 0: The total amount of wall time = 687.069775 + 0: The maximum resident set size (KB) = 835436 -Test 110 rap_restart_dyn32_phy32 PASS +Test 058 rap_sfcdiff_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/hrrr_control_restart_dyn32_phy32 -Checking test 111 hrrr_control_restart_dyn32_phy32 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/hrrr_control +Checking test 059 hrrr_control 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 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 591.444643 - 0: The maximum resident set size (KB) = 765964 + 0: The total amount of wall time = 818.369929 + 0: The maximum resident set size (KB) = 953460 -Test 111 hrrr_control_restart_dyn32_phy32 PASS +Test 059 hrrr_control PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn64_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/rap_control_dyn64_phy32 -Checking test 112 rap_control_dyn64_phy32 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/hrrr_control_decomp +Checking test 060 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2586,436 +2644,886 @@ Checking test 112 rap_control_dyn64_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 594.067406 - 0: The maximum resident set size (KB) = 864088 + 0: The total amount of wall time = 887.873985 + 0: The maximum resident set size (KB) = 942836 -Test 112 rap_control_dyn64_phy32 PASS +Test 060 hrrr_control_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/rap_control_debug_dyn32_phy32 -Checking test 113 rap_control_debug_dyn32_phy32 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/hrrr_control_2threads +Checking test 061 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 421.329429 - 0: The maximum resident set size (KB) = 988816 + 0: The total amount of wall time = 808.808904 + 0: The maximum resident set size (KB) = 1013460 -Test 113 rap_control_debug_dyn32_phy32 PASS +Test 061 hrrr_control_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/hrrr_control_debug_dyn32_phy32 -Checking test 114 hrrr_control_debug_dyn32_phy32 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/hrrr_control_restart +Checking test 062 hrrr_control_restart results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 438.689701 - 0: The maximum resident set size (KB) = 996016 + 0: The total amount of wall time = 682.913494 + 0: The maximum resident set size (KB) = 836788 -Test 114 hrrr_control_debug_dyn32_phy32 PASS +Test 062 hrrr_control_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/rap_control_dyn64_phy32_debug -Checking test 115 rap_control_dyn64_phy32_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1beta +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rrfs_v1beta +Checking test 063 rrfs_v1beta results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 450.524264 - 0: The maximum resident set size (KB) = 1025700 + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -Test 115 rap_control_dyn64_phy32_debug PASS + 0: The total amount of wall time = 882.282755 + 0: The maximum resident set size (KB) = 954708 +Test 063 rrfs_v1beta PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/hafs_regional_atm -Checking test 116 hafs_regional_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 1694.943842 - 0: The maximum resident set size (KB) = 1213616 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1nssl +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rrfs_v1nssl +Checking test 064 rrfs_v1nssl 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 -Test 116 hafs_regional_atm PASS + 0: The total amount of wall time = 931.589221 + 0: The maximum resident set size (KB) = 623340 -Test 117 hafs_regional_atm_thompson_gfdlsf FAIL +Test 064 rrfs_v1nssl PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_ocn -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/hafs_regional_atm_ocn -Checking test 118 hafs_regional_atm_ocn results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing archv.2019_241_06.a .........OK - Comparing archs.2019_241_06.a .........OK - Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rrfs_v1nssl_nohailnoccn +Checking test 065 rrfs_v1nssl_nohailnoccn results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1368.509865 - 0: The maximum resident set size (KB) = 1296760 + 0: The total amount of wall time = 976.044518 + 0: The maximum resident set size (KB) = 629632 -Test 118 hafs_regional_atm_ocn PASS Tries: 2 +Test 065 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_wav -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/hafs_regional_atm_wav -Checking test 119 hafs_regional_atm_wav results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing out_grd.ww3 .........OK - Comparing out_pnt.ww3 .........OK - Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rrfs_smoke_conus13km_hrrr_warm +Checking test 066 rrfs_smoke_conus13km_hrrr_warm 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 - 0: The total amount of wall time = 1575.495706 - 0: The maximum resident set size (KB) = 1323912 + 0: The total amount of wall time = 298.407407 + 0: The maximum resident set size (KB) = 896168 -Test 119 hafs_regional_atm_wav PASS Tries: 2 +Test 066 rrfs_smoke_conus13km_hrrr_warm PASS -Test 120 hafs_regional_atm_ocn_wav FAIL +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rrfs_smoke_conus13km_hrrr_warm_2threads +Checking test 067 rrfs_smoke_conus13km_hrrr_warm_2threads 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 -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_docn -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/hafs_regional_docn -Checking test 121 hafs_regional_docn results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK + 0: The total amount of wall time = 187.655624 + 0: The maximum resident set size (KB) = 865140 - 0: The total amount of wall time = 1344.638239 - 0: The maximum resident set size (KB) = 1298212 +Test 067 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -Test 121 hafs_regional_docn PASS Tries: 2 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rrfs_conus13km_hrrr_warm +Checking test 068 rrfs_conus13km_hrrr_warm 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 -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_docn_oisst -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/hafs_regional_docn_oisst -Checking test 122 hafs_regional_docn_oisst results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK + 0: The total amount of wall time = 232.415190 + 0: The maximum resident set size (KB) = 864232 - 0: The total amount of wall time = 1334.328579 - 0: The maximum resident set size (KB) = 1288364 +Test 068 rrfs_conus13km_hrrr_warm PASS -Test 122 hafs_regional_docn_oisst PASS Tries: 2 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rrfs_smoke_conus13km_radar_tten_warm +Checking test 069 rrfs_smoke_conus13km_radar_tten_warm 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 -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/datm_cdeps_control_cfsr -Checking test 123 datm_cdeps_control_cfsr results .... - Comparing RESTART/20111002.000000.MOM.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 = 376.354176 + 0: The maximum resident set size (KB) = 902340 - 0: The total amount of wall time = 1087.118783 - 0: The maximum resident set size (KB) = 965352 +Test 069 rrfs_smoke_conus13km_radar_tten_warm PASS -Test 123 datm_cdeps_control_cfsr PASS +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rrfs_conus13km_hrrr_warm_restart_mismatch +Checking test 070 rrfs_conus13km_hrrr_warm_restart_mismatch results .... + Comparing sfcf002.nc .........OK + Comparing atmf002.nc .........OK -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/datm_cdeps_restart_cfsr -Checking test 124 datm_cdeps_restart_cfsr results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK + 0: The total amount of wall time = 207.282324 + 0: The maximum resident set size (KB) = 847012 - 0: The total amount of wall time = 387.460815 - 0: The maximum resident set size (KB) = 939572 +Test 070 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -Test 124 datm_cdeps_restart_cfsr PASS +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmg +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_csawmg +Checking test 071 control_csawmg 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 -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/datm_cdeps_control_gefs -Checking test 125 datm_cdeps_control_gefs 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 = 651.189439 + 0: The maximum resident set size (KB) = 667692 - 0: The total amount of wall time = 1135.717341 - 0: The maximum resident set size (KB) = 877052 +Test 071 control_csawmg PASS -Test 125 datm_cdeps_control_gefs PASS +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmgt +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_csawmgt +Checking test 072 control_csawmgt 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 -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_iau_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/datm_cdeps_iau_gefs -Checking test 126 datm_cdeps_iau_gefs 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 = 667.253974 + 0: The maximum resident set size (KB) = 669408 - 0: The total amount of wall time = 1201.116470 - 0: The maximum resident set size (KB) = 868448 +Test 072 control_csawmgt PASS -Test 126 datm_cdeps_iau_gefs PASS +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_ras +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_ras +Checking test 073 control_ras 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 -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_stochy_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/datm_cdeps_stochy_gefs -Checking test 127 datm_cdeps_stochy_gefs 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 = 347.659147 + 0: The maximum resident set size (KB) = 634724 - 0: The total amount of wall time = 1360.066016 - 0: The maximum resident set size (KB) = 867648 +Test 073 control_ras PASS -Test 127 datm_cdeps_stochy_gefs PASS +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wam +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_wam +Checking test 074 control_wam results .... + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/datm_cdeps_ciceC_cfsr -Checking test 128 datm_cdeps_ciceC_cfsr results .... - Comparing RESTART/20111002.000000.MOM.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 = 187.431488 + 0: The maximum resident set size (KB) = 479548 - 0: The total amount of wall time = 1255.862955 - 0: The maximum resident set size (KB) = 964240 +Test 074 control_wam PASS -Test 128 datm_cdeps_ciceC_cfsr PASS +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_faster +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_p8_faster +Checking test 075 control_p8_faster results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/datm_cdeps_bulk_cfsr -Checking test 129 datm_cdeps_bulk_cfsr results .... - Comparing RESTART/20111002.000000.MOM.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 = 312.679136 + 0: The maximum resident set size (KB) = 1534136 - 0: The total amount of wall time = 1225.087249 - 0: The maximum resident set size (KB) = 974720 +Test 075 control_p8_faster PASS -Test 129 datm_cdeps_bulk_cfsr PASS +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control_faster +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/regional_control_faster +Checking test 076 regional_control_faster results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/datm_cdeps_bulk_gefs -Checking test 130 datm_cdeps_bulk_gefs 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 = 598.489567 + 0: The maximum resident set size (KB) = 785680 - 0: The total amount of wall time = 1320.175681 - 0: The maximum resident set size (KB) = 860192 +Test 076 regional_control_faster PASS -Test 130 datm_cdeps_bulk_gefs PASS +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rrfs_smoke_conus13km_hrrr_warm_debug +Checking test 077 rrfs_smoke_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/datm_cdeps_mx025_cfsr -Checking test 131 datm_cdeps_mx025_cfsr results .... - Comparing RESTART/20111001.120000.MOM.res.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK - Comparing RESTART/iced.2011-10-01-43200.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK + 0: The total amount of wall time = 1143.155037 + 0: The maximum resident set size (KB) = 930116 - 0: The total amount of wall time = 1242.818334 - 0: The maximum resident set size (KB) = 764856 +Test 077 rrfs_smoke_conus13km_hrrr_warm_debug PASS -Test 131 datm_cdeps_mx025_cfsr PASS +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +Checking test 078 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/datm_cdeps_mx025_gefs -Checking test 132 datm_cdeps_mx025_gefs results .... - Comparing RESTART/20111001.120000.MOM.res.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK - Comparing RESTART/iced.2011-10-01-43200.nc .........OK - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK + 0: The total amount of wall time = 803.412340 + 0: The maximum resident set size (KB) = 892744 - 0: The total amount of wall time = 1127.219097 - 0: The maximum resident set size (KB) = 736248 +Test 078 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -Test 132 datm_cdeps_mx025_gefs PASS +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rrfs_conus13km_hrrr_warm_debug +Checking test 079 rrfs_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/datm_cdeps_multiple_files_cfsr -Checking test 133 datm_cdeps_multiple_files_cfsr results .... - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK + 0: The total amount of wall time = 1060.451829 + 0: The maximum resident set size (KB) = 894712 - 0: The total amount of wall time = 1298.882656 - 0: The maximum resident set size (KB) = 965312 +Test 079 rrfs_conus13km_hrrr_warm_debug PASS -Test 133 datm_cdeps_multiple_files_cfsr PASS +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_CubedSphereGrid_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_CubedSphereGrid_debug +Checking test 080 control_CubedSphereGrid_debug results .... + Comparing sfcf000.tile1.nc .........OK + Comparing sfcf000.tile2.nc .........OK + Comparing sfcf000.tile3.nc .........OK + Comparing sfcf000.tile4.nc .........OK + Comparing sfcf000.tile5.nc .........OK + Comparing sfcf000.tile6.nc .........OK + Comparing sfcf001.tile1.nc .........OK + Comparing sfcf001.tile2.nc .........OK + Comparing sfcf001.tile3.nc .........OK + Comparing sfcf001.tile4.nc .........OK + Comparing sfcf001.tile5.nc .........OK + Comparing sfcf001.tile6.nc .........OK + Comparing atmf000.tile1.nc .........OK + Comparing atmf000.tile2.nc .........OK + Comparing atmf000.tile3.nc .........OK + Comparing atmf000.tile4.nc .........OK + Comparing atmf000.tile5.nc .........OK + Comparing atmf000.tile6.nc .........OK + Comparing atmf001.tile1.nc .........OK + Comparing atmf001.tile2.nc .........OK + Comparing atmf001.tile3.nc .........OK + Comparing atmf001.tile4.nc .........OK + Comparing atmf001.tile5.nc .........OK + Comparing atmf001.tile6.nc .........OK -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/datm_cdeps_3072x1536_cfsr -Checking test 134 datm_cdeps_3072x1536_cfsr results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK + 0: The total amount of wall time = 237.701422 + 0: The maximum resident set size (KB) = 738928 - 0: The total amount of wall time = 770.025556 - 0: The maximum resident set size (KB) = 2258940 +Test 080 control_CubedSphereGrid_debug PASS -Test 134 datm_cdeps_3072x1536_cfsr PASS Tries: 2 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_wrtGauss_netcdf_parallel_debug +Checking test 081 control_wrtGauss_netcdf_parallel_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_gfs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/datm_cdeps_gfs -Checking test 135 datm_cdeps_gfs 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 = 313.371265 + 0: The maximum resident set size (KB) = 729144 - 0: The total amount of wall time = 1113.432991 - 0: The maximum resident set size (KB) = 2256328 +Test 081 control_wrtGauss_netcdf_parallel_debug PASS -Test 135 datm_cdeps_gfs PASS +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_stochy_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_stochy_debug +Checking test 082 control_stochy_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_debug_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/datm_cdeps_debug_cfsr -Checking test 136 datm_cdeps_debug_cfsr 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 = 303.045734 + 0: The maximum resident set size (KB) = 737108 - 0: The total amount of wall time = 743.557559 - 0: The maximum resident set size (KB) = 918544 +Test 082 control_stochy_debug PASS -Test 136 datm_cdeps_debug_cfsr PASS +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_lndp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_lndp_debug +Checking test 083 control_lndp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr_faster -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/datm_cdeps_control_cfsr_faster -Checking test 137 datm_cdeps_control_cfsr_faster results .... - Comparing RESTART/20111002.000000.MOM.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 = 232.962728 + 0: The maximum resident set size (KB) = 742472 - 0: The total amount of wall time = 655.650845 - 0: The maximum resident set size (KB) = 970936 +Test 083 control_lndp_debug PASS -Test 137 datm_cdeps_control_cfsr_faster PASS +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmg_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_csawmg_debug +Checking test 084 control_csawmg_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/datm_cdeps_lnd_gswp3 -Checking test 138 datm_cdeps_lnd_gswp3 results .... - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK + 0: The total amount of wall time = 369.974480 + 0: The maximum resident set size (KB) = 782508 - 0: The total amount of wall time = 130.758377 - 0: The maximum resident set size (KB) = 241040 +Test 084 control_csawmg_debug PASS -Test 138 datm_cdeps_lnd_gswp3 PASS +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmgt_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_csawmgt_debug +Checking test 085 control_csawmgt_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/datm_cdeps_lnd_gswp3_rst -Checking test 139 datm_cdeps_lnd_gswp3_rst results .... - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK + 0: The total amount of wall time = 343.893095 + 0: The maximum resident set size (KB) = 784084 - 0: The total amount of wall time = 80.341416 - 0: The maximum resident set size (KB) = 247784 +Test 085 control_csawmgt_debug PASS -Test 139 datm_cdeps_lnd_gswp3_rst PASS +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_ras_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_ras_debug +Checking test 086 control_ras_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_atmlnd_sbs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/control_p8_atmlnd_sbs -Checking test 140 control_p8_atmlnd_sbs results .... - Comparing sfcf000.tile1.nc .........OK - Comparing sfcf000.tile2.nc .........OK - Comparing sfcf000.tile3.nc .........OK - Comparing sfcf000.tile4.nc .........OK - Comparing sfcf000.tile5.nc .........OK - Comparing sfcf000.tile6.nc .........OK - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf000.tile1.nc .........OK - Comparing atmf000.tile2.nc .........OK - Comparing atmf000.tile3.nc .........OK - Comparing atmf000.tile4.nc .........OK - Comparing atmf000.tile5.nc .........OK - Comparing atmf000.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK + 0: The total amount of wall time = 229.072039 + 0: The maximum resident set size (KB) = 742548 + +Test 086 control_ras_debug PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_diag_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_diag_debug +Checking test 087 control_diag_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 269.487398 + 0: The maximum resident set size (KB) = 789412 + +Test 087 control_diag_debug PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_debug_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_debug_p8 +Checking test 088 control_debug_p8 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 253.522411 + 0: The maximum resident set size (KB) = 1552612 + +Test 088 control_debug_p8 PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/regional_debug +Checking test 089 regional_debug results .... + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK + + 0: The total amount of wall time = 1430.554848 + 0: The maximum resident set size (KB) = 803940 + +Test 089 regional_debug PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rap_control_debug +Checking test 090 rap_control_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 415.780522 + 0: The maximum resident set size (KB) = 1115660 + +Test 090 rap_control_debug PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/hrrr_control_debug +Checking test 091 hrrr_control_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 386.060131 + 0: The maximum resident set size (KB) = 1115060 + +Test 091 hrrr_control_debug PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rap_unified_drag_suite_debug +Checking test 092 rap_unified_drag_suite_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 394.695177 + 0: The maximum resident set size (KB) = 1107468 + +Test 092 rap_unified_drag_suite_debug PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_diag_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rap_diag_debug +Checking test 093 rap_diag_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 457.183726 + 0: The maximum resident set size (KB) = 1193088 + +Test 093 rap_diag_debug PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rap_cires_ugwp_debug +Checking test 094 rap_cires_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 403.980863 + 0: The maximum resident set size (KB) = 1104292 + +Test 094 rap_cires_ugwp_debug PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rap_unified_ugwp_debug +Checking test 095 rap_unified_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 418.300819 + 0: The maximum resident set size (KB) = 1112580 + +Test 095 rap_unified_ugwp_debug PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_lndp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rap_lndp_debug +Checking test 096 rap_lndp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 401.876424 + 0: The maximum resident set size (KB) = 1114776 + +Test 096 rap_lndp_debug PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_flake_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rap_flake_debug +Checking test 097 rap_flake_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 375.961353 + 0: The maximum resident set size (KB) = 1117368 + +Test 097 rap_flake_debug PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_progcld_thompson_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rap_progcld_thompson_debug +Checking test 098 rap_progcld_thompson_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 387.842804 + 0: The maximum resident set size (KB) = 1109116 + +Test 098 rap_progcld_thompson_debug PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_noah_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rap_noah_debug +Checking test 099 rap_noah_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 398.863813 + 0: The maximum resident set size (KB) = 1104020 + +Test 099 rap_noah_debug PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rap_sfcdiff_debug +Checking test 100 rap_sfcdiff_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 384.883839 + 0: The maximum resident set size (KB) = 1115532 + +Test 100 rap_sfcdiff_debug PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 101 rap_noah_sfcdiff_cires_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 620.164758 + 0: The maximum resident set size (KB) = 1116280 + +Test 101 rap_noah_sfcdiff_cires_ugwp_debug PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1beta_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rrfs_v1beta_debug +Checking test 102 rrfs_v1beta_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 387.691423 + 0: The maximum resident set size (KB) = 1102412 + +Test 102 rrfs_v1beta_debug PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wam_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_wam_debug +Checking test 103 control_wam_debug results .... + Comparing sfcf019.nc .........OK + Comparing atmf019.nc .........OK + + 0: The total amount of wall time = 385.181673 + 0: The maximum resident set size (KB) = 436792 + +Test 103 control_wam_debug PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF01 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF01 .........OK + + 0: The total amount of wall time = 453.451328 + 0: The maximum resident set size (KB) = 979500 + +Test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rap_control_dyn32_phy32 +Checking test 105 rap_control_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -3048,37 +3556,27 @@ Checking test 140 control_p8_atmlnd_sbs results .... Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing ufs.cpld.cpl.hi.lnd.2021-03-22-43200.nc .........OK - Comparing ufs.cpld.cpl.hi.lnd.2021-03-23-21600.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile6.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 1055.983459 - 0: The maximum resident set size (KB) = 1588112 + 0: The total amount of wall time = 712.883352 + 0: The maximum resident set size (KB) = 855448 -Test 140 control_p8_atmlnd_sbs PASS +Test 105 rap_control_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_atmwav -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/control_atmwav -Checking test 141 control_atmwav results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/hrrr_control_dyn32_phy32 +Checking test 106 hrrr_control_dyn32_phy32 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 @@ -3112,26 +3610,28 @@ Checking test 141 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 453.144823 - 0: The maximum resident set size (KB) = 596360 + 0: The total amount of wall time = 399.735608 + 0: The maximum resident set size (KB) = 831340 -Test 141 control_atmwav PASS +Test 106 hrrr_control_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/atmaero_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/atmaero_control_p8 -Checking test 142 atmaero_control_p8 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rap_2threads_dyn32_phy32 +Checking test 107 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -3165,184 +3665,127 @@ Checking test 142 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1077.189415 - 0: The maximum resident set size (KB) = 1630820 + 0: The total amount of wall time = 781.135121 + 0: The maximum resident set size (KB) = 893356 -Test 142 atmaero_control_p8 PASS +Test 107 rap_2threads_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/atmaero_control_p8_rad -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/atmaero_control_p8_rad -Checking test 143 atmaero_control_p8_rad results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/hrrr_control_2threads_dyn32_phy32 +Checking test 108 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........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 + 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 = 1016.115144 - 0: The maximum resident set size (KB) = 1661888 + 0: The total amount of wall time = 380.902882 + 0: The maximum resident set size (KB) = 893684 -Test 143 atmaero_control_p8_rad PASS +Test 108 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_114540/atmaero_control_p8_rad_micro -Checking test 144 atmaero_control_p8_rad_micro results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/hrrr_control_decomp_dyn32_phy32 +Checking test 109 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........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 + 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 = 1087.056056 - 0: The maximum resident set size (KB) = 1669996 + 0: The total amount of wall time = 420.407008 + 0: The maximum resident set size (KB) = 827260 -Test 144 atmaero_control_p8_rad_micro PASS +Test 109 hrrr_control_decomp_dyn32_phy32 PASS -FAILED TESTS: -Test cpld_control_p8_mixedmode 001 failed in run_test failed -Test cpld_control_p8 003 failed in run_test failed -Test cpld_control_qr_p8 005 failed in run_test failed -Test cpld_2threads_p8 007 failed in run_test failed -Test cpld_decomp_p8 008 failed in run_test failed -Test cpld_control_noaero_p8 011 failed in run_test failed -Test cpld_control_noaero_p8_agrid 015 failed in run_test failed -Test control_c192 025 failed in run_test failed -Test control_c384 026 failed in run_test failed -Test control_c384gdas 027 failed in run_test failed -Test regional_control 043 failed in run_test failed -Test regional_control_qr 045 failed in run_test failed -Test regional_decomp 047 failed in run_test failed -Test regional_2threads 048 failed in run_test failed -Test regional_netcdf_parallel 049 failed in run_test failed -Test regional_2dwrtdecomp 050 failed in run_test failed -Test rap_control 051 failed in run_test failed -Test rap_decomp 053 failed in run_test failed -Test rap_2threads 054 failed in run_test failed -Test rap_sfcdiff 056 failed in run_test failed -Test rap_sfcdiff_decomp 057 failed in run_test failed -Test hrrr_control 059 failed in run_test failed -Test hrrr_control_decomp 060 failed in run_test failed -Test control_csawmgt 072 failed in run_test failed -Test hafs_regional_atm_thompson_gfdlsf 117 failed in run_test failed -Test hafs_regional_atm_ocn_wav 120 failed in run_test failed - -REGRESSION TEST FAILED -Wed Apr 5 07:20:24 UTC 2023 -Elapsed time: 04h:27m:39s. Have a nice day! -Wed Apr 5 12:57:53 UTC 2023 -Start Regression test -Compile 001 elapsed time 1848 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 002 elapsed time 2010 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 003 elapsed time 1707 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 004 elapsed time 1578 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 005 elapsed time 1751 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 006 elapsed time 1637 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 007 elapsed time 1563 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 008 elapsed time 1688 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 - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8_mixedmode -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_101927/cpld_control_p8_mixedmode -Checking test 001 cpld_control_p8_mixedmode results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rap_restart_dyn32_phy32 +Checking test 110 rap_restart_dyn32_phy32 results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -3375,1083 +3818,530 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 594.659572 - 0: The maximum resident set size (KB) = 1728264 + 0: The total amount of wall time = 608.405289 + 0: The maximum resident set size (KB) = 813888 -Test 001 cpld_control_p8_mixedmode PASS +Test 110 rap_restart_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_101927/cpld_control_p8 -Checking test 002 cpld_control_p8 results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 610.276910 - 0: The maximum resident set size (KB) = 1769544 - -Test 002 cpld_control_p8 PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_101927/cpld_restart_p8 -Checking test 003 cpld_restart_p8 results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 394.928600 - 0: The maximum resident set size (KB) = 1496776 - -Test 003 cpld_restart_p8 PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_101927/cpld_control_qr_p8 -Checking test 004 cpld_control_qr_p8 results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 736.870818 - 0: The maximum resident set size (KB) = 1779800 - -Test 004 cpld_control_qr_p8 PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_101927/cpld_restart_qr_p8 -Checking test 005 cpld_restart_qr_p8 results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 488.841729 - 0: The maximum resident set size (KB) = 1507584 - -Test 005 cpld_restart_qr_p8 PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_101927/cpld_2threads_p8 -Checking test 006 cpld_2threads_p8 results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 734.396126 - 0: The maximum resident set size (KB) = 1966304 - -Test 006 cpld_2threads_p8 PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_101927/cpld_decomp_p8 -Checking test 007 cpld_decomp_p8 results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 641.387735 - 0: The maximum resident set size (KB) = 1779744 - -Test 007 cpld_decomp_p8 PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_noaero_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_101927/cpld_control_noaero_p8 -Checking test 008 cpld_control_noaero_p8 results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/hrrr_control_restart_dyn32_phy32 +Checking test 111 hrrr_control_restart_dyn32_phy32 results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........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 = 500.736224 - 0: The maximum resident set size (KB) = 1623072 + 0: The total amount of wall time = 174.718282 + 0: The maximum resident set size (KB) = 761040 -Test 008 cpld_control_noaero_p8 PASS +Test 111 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_101927/cpld_control_noaero_p8_agrid -Checking test 009 cpld_control_noaero_p8_agrid 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 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn64_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rap_control_dyn64_phy32 +Checking test 112 rap_control_dyn64_phy32 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 = 632.258469 - 0: The maximum resident set size (KB) = 1666992 + 0: The total amount of wall time = 430.815357 + 0: The maximum resident set size (KB) = 875564 -Test 009 cpld_control_noaero_p8_agrid PASS +Test 112 rap_control_dyn64_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c192 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_101927/control_c192 -Checking test 010 control_c192 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rap_control_debug_dyn32_phy32 +Checking test 113 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf001.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 atmf001.nc .........OK - 0: The total amount of wall time = 912.012071 - 0: The maximum resident set size (KB) = 686256 + 0: The total amount of wall time = 375.839906 + 0: The maximum resident set size (KB) = 992364 -Test 010 control_c192 PASS +Test 113 rap_control_debug_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c384 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_101927/control_c384 -Checking test 011 control_c384 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/hrrr_control_debug_dyn32_phy32 +Checking test 114 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK + Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 1183.837046 - 0: The maximum resident set size (KB) = 1055448 + 0: The total amount of wall time = 376.573436 + 0: The maximum resident set size (KB) = 997272 -Test 011 control_c384 PASS +Test 114 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c384gdas -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_101927/control_c384gdas -Checking test 012 control_c384gdas results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rap_control_dyn64_phy32_debug +Checking test 115 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK - Comparing sfcf006.nc .........OK + Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 404.404448 + 0: The maximum resident set size (KB) = 1027412 + +Test 115 rap_control_dyn64_phy32_debug PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/hafs_regional_atm +Checking test 116 hafs_regional_atm results .... Comparing atmf006.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF06 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF06 .........OK - Comparing RESTART/20210322.060000.coupler.res .........OK - Comparing RESTART/20210322.060000.fv_core.res.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK + Comparing sfcf006.nc .........OK + Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 1061.696461 - 0: The maximum resident set size (KB) = 1195600 + 0: The total amount of wall time = 596.730523 + 0: The maximum resident set size (KB) = 1169512 -Test 012 control_c384gdas PASS +Test 116 hafs_regional_atm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_101927/regional_control -Checking test 013 regional_control results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/hafs_regional_atm_thompson_gfdlsf +Checking test 117 hafs_regional_atm_thompson_gfdlsf results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 523.068662 - 0: The maximum resident set size (KB) = 781876 + 0: The total amount of wall time = 1215.199131 + 0: The maximum resident set size (KB) = 1588456 -Test 013 regional_control PASS +Test 117 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_101927/regional_restart -Checking test 014 regional_restart results .... - Comparing dynf006.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF06 .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_ocn +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/hafs_regional_atm_ocn +Checking test 118 hafs_regional_atm_ocn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing archv.2019_241_06.a .........OK + Comparing archs.2019_241_06.a .........OK + Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 276.454109 - 0: The maximum resident set size (KB) = 776672 + 0: The total amount of wall time = 798.795474 + 0: The maximum resident set size (KB) = 1296260 -Test 014 regional_restart PASS +Test 118 hafs_regional_atm_ocn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_101927/regional_control_qr -Checking test 015 regional_control_qr results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_wav +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/hafs_regional_atm_wav +Checking test 119 hafs_regional_atm_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing out_grd.ww3 .........OK + Comparing out_pnt.ww3 .........OK + Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 552.922049 - 0: The maximum resident set size (KB) = 783728 + 0: The total amount of wall time = 1526.554174 + 0: The maximum resident set size (KB) = 1319452 -Test 015 regional_control_qr PASS +Test 119 hafs_regional_atm_wav PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_101927/regional_restart_qr -Checking test 016 regional_restart_qr results .... - Comparing dynf006.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF06 .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_ocn_wav +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/hafs_regional_atm_ocn_wav +Checking test 120 hafs_regional_atm_ocn_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing archv.2019_241_06.a .........OK + Comparing archs.2019_241_06.a .........OK + Comparing out_grd.ww3 .........OK + Comparing out_pnt.ww3 .........OK + Comparing 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 = 263.543983 - 0: The maximum resident set size (KB) = 778692 + 0: The total amount of wall time = 1641.320617 + 0: The maximum resident set size (KB) = 1326680 -Test 016 regional_restart_qr PASS +Test 120 hafs_regional_atm_ocn_wav PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_101927/regional_decomp -Checking test 017 regional_decomp results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_docn +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/hafs_regional_docn +Checking test 121 hafs_regional_docn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 552.393753 - 0: The maximum resident set size (KB) = 779968 + 0: The total amount of wall time = 1009.633025 + 0: The maximum resident set size (KB) = 1238068 -Test 017 regional_decomp PASS +Test 121 hafs_regional_docn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_101927/regional_2threads -Checking test 018 regional_2threads results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_docn_oisst +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/hafs_regional_docn_oisst +Checking test 122 hafs_regional_docn_oisst results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 487.287434 - 0: The maximum resident set size (KB) = 768896 + 0: The total amount of wall time = 931.961674 + 0: The maximum resident set size (KB) = 1287728 -Test 018 regional_2threads PASS +Test 122 hafs_regional_docn_oisst PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_101927/regional_netcdf_parallel -Checking test 019 regional_netcdf_parallel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/datm_cdeps_control_cfsr +Checking test 123 datm_cdeps_control_cfsr results .... + Comparing RESTART/20111002.000000.MOM.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 = 348.792398 + 0: The maximum resident set size (KB) = 966848 + +Test 123 datm_cdeps_control_cfsr PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/datm_cdeps_restart_cfsr +Checking test 124 datm_cdeps_restart_cfsr results .... + Comparing RESTART/20111002.000000.MOM.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 = 224.479768 + 0: The maximum resident set size (KB) = 937020 + +Test 124 datm_cdeps_restart_cfsr PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/datm_cdeps_control_gefs +Checking test 125 datm_cdeps_control_gefs 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 = 360.416404 + 0: The maximum resident set size (KB) = 870636 + +Test 125 datm_cdeps_control_gefs PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_iau_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/datm_cdeps_iau_gefs +Checking test 126 datm_cdeps_iau_gefs 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 = 385.531228 + 0: The maximum resident set size (KB) = 866788 + +Test 126 datm_cdeps_iau_gefs PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_stochy_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/datm_cdeps_stochy_gefs +Checking test 127 datm_cdeps_stochy_gefs 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 = 288.063917 + 0: The maximum resident set size (KB) = 870660 + +Test 127 datm_cdeps_stochy_gefs PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_ciceC_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/datm_cdeps_ciceC_cfsr +Checking test 128 datm_cdeps_ciceC_cfsr results .... + Comparing RESTART/20111002.000000.MOM.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 = 308.527994 + 0: The maximum resident set size (KB) = 978532 + +Test 128 datm_cdeps_ciceC_cfsr PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_bulk_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/datm_cdeps_bulk_cfsr +Checking test 129 datm_cdeps_bulk_cfsr results .... + Comparing RESTART/20111002.000000.MOM.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 = 307.963749 + 0: The maximum resident set size (KB) = 971908 + +Test 129 datm_cdeps_bulk_cfsr PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_bulk_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/datm_cdeps_bulk_gefs +Checking test 130 datm_cdeps_bulk_gefs 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 = 378.423054 + 0: The maximum resident set size (KB) = 870116 + +Test 130 datm_cdeps_bulk_gefs PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_mx025_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/datm_cdeps_mx025_cfsr +Checking test 131 datm_cdeps_mx025_cfsr results .... + Comparing RESTART/20111001.120000.MOM.res.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK + Comparing RESTART/iced.2011-10-01-43200.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK + + 0: The total amount of wall time = 968.308398 + 0: The maximum resident set size (KB) = 769560 + +Test 131 datm_cdeps_mx025_cfsr PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_mx025_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/datm_cdeps_mx025_gefs +Checking test 132 datm_cdeps_mx025_gefs results .... + Comparing RESTART/20111001.120000.MOM.res.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK + Comparing RESTART/iced.2011-10-01-43200.nc .........OK + Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 543.507982 - 0: The maximum resident set size (KB) = 781636 + 0: The total amount of wall time = 1013.160470 + 0: The maximum resident set size (KB) = 732576 -Test 019 regional_netcdf_parallel PASS +Test 132 datm_cdeps_mx025_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_101927/regional_2dwrtdecomp -Checking test 020 regional_2dwrtdecomp results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/datm_cdeps_multiple_files_cfsr +Checking test 133 datm_cdeps_multiple_files_cfsr results .... + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 566.988359 - 0: The maximum resident set size (KB) = 792084 + 0: The total amount of wall time = 381.502236 + 0: The maximum resident set size (KB) = 964620 -Test 020 regional_2dwrtdecomp PASS +Test 133 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_101927/rap_control -Checking test 021 rap_control results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/datm_cdeps_3072x1536_cfsr +Checking test 134 datm_cdeps_3072x1536_cfsr 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 = 726.706356 - 0: The maximum resident set size (KB) = 946120 + 0: The total amount of wall time = 489.570613 + 0: The maximum resident set size (KB) = 2244428 -Test 021 rap_control PASS +Test 134 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_101927/rap_decomp -Checking test 022 rap_decomp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_gfs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/datm_cdeps_gfs +Checking test 135 datm_cdeps_gfs 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 = 821.575170 - 0: The maximum resident set size (KB) = 948592 + 0: The total amount of wall time = 498.191026 + 0: The maximum resident set size (KB) = 2262352 -Test 022 rap_decomp PASS +Test 135 datm_cdeps_gfs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_101927/rap_2threads -Checking test 023 rap_2threads results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_debug_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/datm_cdeps_debug_cfsr +Checking test 136 datm_cdeps_debug_cfsr 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 = 801.840163 - 0: The maximum resident set size (KB) = 1026332 + 0: The total amount of wall time = 513.909263 + 0: The maximum resident set size (KB) = 911016 -Test 023 rap_2threads PASS +Test 136 datm_cdeps_debug_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_101927/rap_restart -Checking test 024 rap_restart results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_cfsr_faster +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/datm_cdeps_control_cfsr_faster +Checking test 137 datm_cdeps_control_cfsr_faster results .... + Comparing RESTART/20111002.000000.MOM.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 = 434.972511 - 0: The maximum resident set size (KB) = 829732 + 0: The total amount of wall time = 337.544809 + 0: The maximum resident set size (KB) = 975132 -Test 024 rap_restart PASS +Test 137 datm_cdeps_control_cfsr_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_101927/rap_sfcdiff -Checking test 025 rap_sfcdiff results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/datm_cdeps_lnd_gswp3 +Checking test 138 datm_cdeps_lnd_gswp3 results .... + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 797.990306 - 0: The maximum resident set size (KB) = 952744 + 0: The total amount of wall time = 62.901857 + 0: The maximum resident set size (KB) = 246896 -Test 025 rap_sfcdiff PASS +Test 138 datm_cdeps_lnd_gswp3 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_101927/rap_sfcdiff_decomp -Checking test 026 rap_sfcdiff_decomp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/datm_cdeps_lnd_gswp3_rst +Checking test 139 datm_cdeps_lnd_gswp3_rst results .... + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 788.359164 - 0: The maximum resident set size (KB) = 934580 + 0: The total amount of wall time = 51.276584 + 0: The maximum resident set size (KB) = 256968 -Test 026 rap_sfcdiff_decomp PASS +Test 139 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_101927/rap_sfcdiff_restart -Checking test 027 rap_sfcdiff_restart results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_atmlnd_sbs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_p8_atmlnd_sbs +Checking test 140 control_p8_atmlnd_sbs results .... + Comparing sfcf000.tile1.nc .........OK + Comparing sfcf000.tile2.nc .........OK + Comparing sfcf000.tile3.nc .........OK + Comparing sfcf000.tile4.nc .........OK + Comparing sfcf000.tile5.nc .........OK + Comparing sfcf000.tile6.nc .........OK + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf000.tile1.nc .........OK + Comparing atmf000.tile2.nc .........OK + Comparing atmf000.tile3.nc .........OK + Comparing atmf000.tile4.nc .........OK + Comparing atmf000.tile5.nc .........OK + Comparing atmf000.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -4484,82 +4374,90 @@ Checking test 027 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing ufs.cpld.cpl.hi.lnd.2021-03-22-43200.nc .........OK + Comparing ufs.cpld.cpl.hi.lnd.2021-03-23-21600.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile6.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 541.180879 - 0: The maximum resident set size (KB) = 830088 + 0: The total amount of wall time = 545.258546 + 0: The maximum resident set size (KB) = 1585776 -Test 027 rap_sfcdiff_restart PASS +Test 140 control_p8_atmlnd_sbs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_101927/hrrr_control -Checking test 028 hrrr_control results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_atmwav +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_atmwav +Checking test 141 control_atmwav results .... Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 850.956940 - 0: The maximum resident set size (KB) = 944024 + 0: The total amount of wall time = 281.976030 + 0: The maximum resident set size (KB) = 596936 -Test 028 hrrr_control PASS +Test 141 control_atmwav PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_101927/hrrr_control_decomp -Checking test 029 hrrr_control_decomp results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/atmaero_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/atmaero_control_p8 +Checking test 142 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK + Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK + Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK + Comparing 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 @@ -4593,27 +4491,24 @@ Checking test 029 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 844.562367 - 0: The maximum resident set size (KB) = 932616 + 0: The total amount of wall time = 466.412640 + 0: The maximum resident set size (KB) = 1646116 -Test 029 hrrr_control_decomp PASS +Test 142 atmaero_control_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_101927/hrrr_control_2threads -Checking test 030 hrrr_control_2threads results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/atmaero_control_p8_rad +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/atmaero_control_p8_rad +Checking test 143 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK + Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK + Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK + Comparing 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 @@ -4647,19 +4542,24 @@ Checking test 030 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 695.437748 - 0: The maximum resident set size (KB) = 1018556 + 0: The total amount of wall time = 583.810329 + 0: The maximum resident set size (KB) = 1654536 -Test 030 hrrr_control_2threads PASS +Test 143 atmaero_control_p8_rad PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_101927/hrrr_control_restart -Checking test 031 hrrr_control_restart results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/atmaero_control_p8_rad_micro +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/atmaero_control_p8_rad_micro +Checking test 144 atmaero_control_p8_rad_micro 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 @@ -4693,60 +4593,12 @@ Checking test 031 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 495.547732 - 0: The maximum resident set size (KB) = 833088 - -Test 031 hrrr_control_restart PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmg -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_101927/control_csawmg -Checking test 032 control_csawmg results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 595.270653 - 0: The maximum resident set size (KB) = 669988 - -Test 032 control_csawmg PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_101927/hafs_regional_atm_thompson_gfdlsf -Checking test 033 hafs_regional_atm_thompson_gfdlsf results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - - 0: The total amount of wall time = 766.139480 - 0: The maximum resident set size (KB) = 1582728 - -Test 033 hafs_regional_atm_thompson_gfdlsf PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_101927/hafs_regional_atm_ocn_wav -Checking test 034 hafs_regional_atm_ocn_wav results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing archv.2019_241_06.a .........OK - Comparing archs.2019_241_06.a .........OK - Comparing out_grd.ww3 .........OK - Comparing out_pnt.ww3 .........OK - Comparing 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 = 545.817603 + 0: The maximum resident set size (KB) = 1687232 - 0: The total amount of wall time = 1215.032704 - 0: The maximum resident set size (KB) = 1341116 - -Test 034 hafs_regional_atm_ocn_wav PASS +Test 144 atmaero_control_p8_rad_micro PASS REGRESSION TEST WAS SUCCESSFUL -Wed Apr 5 15:39:12 UTC 2023 -Elapsed time: 02h:41m:21s. Have a nice day! +Thu Apr 6 04:48:43 UTC 2023 +Elapsed time: 02h:56m:29s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index 9fc912c3390..aa7cd500fc0 100755 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,42 +1,42 @@ -Tue Apr 4 15:57:06 CDT 2023 +Wed Apr 5 20:54:13 CDT 2023 Start Regression test -Compile 001 elapsed time 742 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 745 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 714 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 274 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 001 elapsed time 761 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 750 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 679 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 283 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON Compile 005 elapsed time 258 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 663 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 648 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 849 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 708 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 587 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 011 elapsed time 569 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 506 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 706 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 639 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 650 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 832 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 667 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 615 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 011 elapsed time 551 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 519 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 683 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile 014 elapsed time 213 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 170 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 524 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 524 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 168 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 161 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 575 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 021 elapsed time 205 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 743 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 630 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 024 elapsed time 235 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 120 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 197 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 94 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 577 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 570 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 562 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 519 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 179 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 575 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8_mixedmode -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/cpld_control_p8_mixedmode +Compile 015 elapsed time 159 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 508 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 548 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 165 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 178 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 599 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 021 elapsed time 202 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 720 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 618 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 024 elapsed time 219 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 148 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 210 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 55 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 654 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 712 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 567 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 553 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 235 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 653 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8_mixedmode +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -101,14 +101,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 304.626902 - 0: The maximum resident set size (KB) = 3144308 + 0: The total amount of wall time = 309.967464 + 0: The maximum resident set size (KB) = 3146548 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_gfsv17 -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/cpld_control_gfsv17 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_gfsv17 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -172,14 +172,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 225.371768 - 0: The maximum resident set size (KB) = 1729900 + 0: The total amount of wall time = 225.096862 + 0: The maximum resident set size (KB) = 1736500 Test 002 cpld_control_gfsv17 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/cpld_control_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -244,14 +244,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 342.441401 - 0: The maximum resident set size (KB) = 3183740 + 0: The total amount of wall time = 351.311222 + 0: The maximum resident set size (KB) = 3188716 Test 003 cpld_control_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/cpld_restart_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -304,14 +304,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 208.830780 - 0: The maximum resident set size (KB) = 3056616 + 0: The total amount of wall time = 206.963605 + 0: The maximum resident set size (KB) = 3046936 Test 004 cpld_restart_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/cpld_control_qr_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -376,14 +376,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 346.491504 - 0: The maximum resident set size (KB) = 3197436 + 0: The total amount of wall time = 355.689583 + 0: The maximum resident set size (KB) = 3191616 Test 005 cpld_control_qr_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/cpld_restart_qr_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -436,14 +436,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 212.540949 - 0: The maximum resident set size (KB) = 3062368 + 0: The total amount of wall time = 222.425450 + 0: The maximum resident set size (KB) = 3068128 Test 006 cpld_restart_qr_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/cpld_2threads_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -496,14 +496,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 404.502142 - 0: The maximum resident set size (KB) = 3513792 + 0: The total amount of wall time = 412.531868 + 0: The maximum resident set size (KB) = 3522008 Test 007 cpld_2threads_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/cpld_decomp_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -556,14 +556,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 343.366491 - 0: The maximum resident set size (KB) = 3173816 + 0: The total amount of wall time = 360.149223 + 0: The maximum resident set size (KB) = 3095412 Test 008 cpld_decomp_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/cpld_mpi_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -616,14 +616,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 281.338636 - 0: The maximum resident set size (KB) = 3036628 + 0: The total amount of wall time = 291.782701 + 0: The maximum resident set size (KB) = 3031012 Test 009 cpld_mpi_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_ciceC_p8 -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/cpld_control_ciceC_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_ciceC_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -688,14 +688,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 341.884353 - 0: The maximum resident set size (KB) = 3181920 + 0: The total amount of wall time = 347.899544 + 0: The maximum resident set size (KB) = 3190308 Test 010 cpld_control_ciceC_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/cpld_control_c192_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_c192_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/cpld_control_c192_p8 Checking test 011 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -748,14 +748,14 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 640.202535 - 0: The maximum resident set size (KB) = 3260324 + 0: The total amount of wall time = 639.128478 + 0: The maximum resident set size (KB) = 3262764 Test 011 cpld_control_c192_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/cpld_restart_c192_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_c192_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/cpld_restart_c192_p8 Checking test 012 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -808,14 +808,14 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 447.283318 - 0: The maximum resident set size (KB) = 3165420 + 0: The total amount of wall time = 451.572128 + 0: The maximum resident set size (KB) = 3094672 Test 012 cpld_restart_c192_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_bmark_p8 -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/cpld_bmark_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_bmark_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/cpld_bmark_p8 Checking test 013 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -863,14 +863,14 @@ Checking test 013 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 864.770441 - 0: The maximum resident set size (KB) = 4050356 + 0: The total amount of wall time = 866.768674 + 0: The maximum resident set size (KB) = 4041720 Test 013 cpld_bmark_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_bmark_p8 -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/cpld_restart_bmark_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_bmark_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/cpld_restart_bmark_p8 Checking test 014 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -918,14 +918,14 @@ Checking test 014 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 570.921874 - 0: The maximum resident set size (KB) = 3974828 + 0: The total amount of wall time = 537.483768 + 0: The maximum resident set size (KB) = 4018760 Test 014 cpld_restart_bmark_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_noaero_p8 -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/cpld_control_noaero_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_noaero_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/cpld_control_noaero_p8 Checking test 015 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -989,14 +989,14 @@ Checking test 015 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 256.828714 - 0: The maximum resident set size (KB) = 1727224 + 0: The total amount of wall time = 259.526227 + 0: The maximum resident set size (KB) = 1719032 Test 015 cpld_control_noaero_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_c96_noaero_p8 -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/cpld_control_nowave_noaero_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_c96_noaero_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/cpld_control_nowave_noaero_p8 Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1058,14 +1058,14 @@ Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 258.433973 - 0: The maximum resident set size (KB) = 1764408 + 0: The total amount of wall time = 262.667181 + 0: The maximum resident set size (KB) = 1769148 Test 016 cpld_control_nowave_noaero_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_debug_p8 -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/cpld_debug_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_debug_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/cpld_debug_p8 Checking test 017 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1118,14 +1118,14 @@ Checking test 017 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 555.238799 - 0: The maximum resident set size (KB) = 3243680 + 0: The total amount of wall time = 540.472914 + 0: The maximum resident set size (KB) = 3249128 Test 017 cpld_debug_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_debug_noaero_p8 -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/cpld_debug_noaero_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_debug_noaero_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/cpld_debug_noaero_p8 Checking test 018 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1177,14 +1177,14 @@ Checking test 018 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 381.760262 - 0: The maximum resident set size (KB) = 1728984 + 0: The total amount of wall time = 395.156172 + 0: The maximum resident set size (KB) = 1753340 Test 018 cpld_debug_noaero_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_noaero_p8_agrid -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/cpld_control_noaero_p8_agrid +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_noaero_p8_agrid +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/cpld_control_noaero_p8_agrid Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1246,14 +1246,14 @@ Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 264.822934 - 0: The maximum resident set size (KB) = 1763528 + 0: The total amount of wall time = 269.437113 + 0: The maximum resident set size (KB) = 1767364 Test 019 cpld_control_noaero_p8_agrid PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_c48 -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/cpld_control_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/cpld_control_c48 Checking test 020 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1303,14 +1303,14 @@ Checking test 020 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 498.826470 - 0: The maximum resident set size (KB) = 2814516 + 0: The total amount of wall time = 497.389256 + 0: The maximum resident set size (KB) = 2804740 Test 020 cpld_control_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_warmstart_c48 -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/cpld_warmstart_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_warmstart_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/cpld_warmstart_c48 Checking test 021 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1360,14 +1360,14 @@ Checking test 021 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 139.378688 - 0: The maximum resident set size (KB) = 2810300 + 0: The total amount of wall time = 137.807877 + 0: The maximum resident set size (KB) = 2805540 Test 021 cpld_warmstart_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_warmstart_c48 -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/cpld_restart_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_warmstart_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/cpld_restart_c48 Checking test 022 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1417,14 +1417,14 @@ Checking test 022 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 74.529578 - 0: The maximum resident set size (KB) = 2241592 + 0: The total amount of wall time = 72.442529 + 0: The maximum resident set size (KB) = 2237872 Test 022 cpld_restart_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8_faster -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/cpld_control_p8_faster +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/cpld_control_p8_faster Checking test 023 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1489,14 +1489,14 @@ Checking test 023 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 322.336123 - 0: The maximum resident set size (KB) = 3184772 + 0: The total amount of wall time = 330.338617 + 0: The maximum resident set size (KB) = 3178692 Test 023 cpld_control_p8_faster PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_CubedSphereGrid -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_CubedSphereGrid +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_CubedSphereGrid +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_CubedSphereGrid Checking test 024 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1523,28 +1523,28 @@ Checking test 024 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 130.081163 - 0: The maximum resident set size (KB) = 636680 + 0: The total amount of wall time = 131.606289 + 0: The maximum resident set size (KB) = 632008 Test 024 control_CubedSphereGrid PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_CubedSphereGrid_parallel -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_CubedSphereGrid_parallel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_CubedSphereGrid_parallel +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_CubedSphereGrid_parallel Checking test 025 control_CubedSphereGrid_parallel results .... 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 = 127.099535 - 0: The maximum resident set size (KB) = 634820 + 0: The total amount of wall time = 127.382142 + 0: The maximum resident set size (KB) = 631412 Test 025 control_CubedSphereGrid_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_latlon -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_latlon +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_latlon +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_latlon Checking test 026 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1555,32 +1555,32 @@ Checking test 026 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 132.492008 - 0: The maximum resident set size (KB) = 633592 + 0: The total amount of wall time = 132.797336 + 0: The maximum resident set size (KB) = 632872 Test 026 control_latlon PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wrtGauss_netcdf_parallel -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_wrtGauss_netcdf_parallel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wrtGauss_netcdf_parallel +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_wrtGauss_netcdf_parallel Checking test 027 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc .........OK - Comparing atmf024.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 = 137.296062 - 0: The maximum resident set size (KB) = 597796 + 0: The total amount of wall time = 137.256951 + 0: The maximum resident set size (KB) = 633140 Test 027 control_wrtGauss_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c48 -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_c48 Checking test 028 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1619,14 +1619,14 @@ Checking test 028 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 344.953404 -0: The maximum resident set size (KB) = 819084 +0: The total amount of wall time = 345.387601 +0: The maximum resident set size (KB) = 823060 Test 028 control_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c192 -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_c192 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c192 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_c192 Checking test 029 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1637,14 +1637,14 @@ Checking test 029 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 523.543244 - 0: The maximum resident set size (KB) = 773912 + 0: The total amount of wall time = 524.613511 + 0: The maximum resident set size (KB) = 768028 Test 029 control_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c384 -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_c384 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c384 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_c384 Checking test 030 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1655,14 +1655,14 @@ Checking test 030 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 575.494634 - 0: The maximum resident set size (KB) = 1232068 + 0: The total amount of wall time = 581.468191 + 0: The maximum resident set size (KB) = 1239352 Test 030 control_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c384gdas -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_c384gdas +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c384gdas +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_c384gdas Checking test 031 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1705,14 +1705,14 @@ Checking test 031 control_c384gdas 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 = 504.706752 - 0: The maximum resident set size (KB) = 1350428 + 0: The total amount of wall time = 507.088503 + 0: The maximum resident set size (KB) = 1343156 Test 031 control_c384gdas PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_stochy -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_stochy +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_stochy +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_stochy Checking test 032 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1723,28 +1723,28 @@ Checking test 032 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 89.287979 - 0: The maximum resident set size (KB) = 638744 + 0: The total amount of wall time = 88.033919 + 0: The maximum resident set size (KB) = 644752 Test 032 control_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_stochy -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_stochy_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_stochy +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_stochy_restart Checking test 033 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 46.913794 - 0: The maximum resident set size (KB) = 487456 + 0: The total amount of wall time = 47.042062 + 0: The maximum resident set size (KB) = 491776 Test 033 control_stochy_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_lndp -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_lndp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_lndp +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_lndp Checking test 034 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1755,14 +1755,14 @@ Checking test 034 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 81.830117 - 0: The maximum resident set size (KB) = 635724 + 0: The total amount of wall time = 81.659748 + 0: The maximum resident set size (KB) = 599152 Test 034 control_lndp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_iovr4 -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_iovr4 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_iovr4 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_iovr4 Checking test 035 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1777,14 +1777,14 @@ Checking test 035 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 133.997741 - 0: The maximum resident set size (KB) = 636908 + 0: The total amount of wall time = 136.322896 + 0: The maximum resident set size (KB) = 635052 Test 035 control_iovr4 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_iovr5 -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_iovr5 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_iovr5 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_iovr5 Checking test 036 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1799,14 +1799,14 @@ Checking test 036 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.625556 - 0: The maximum resident set size (KB) = 631560 + 0: The total amount of wall time = 134.971037 + 0: The maximum resident set size (KB) = 631948 Test 036 control_iovr5 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_p8 Checking test 037 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1853,14 +1853,14 @@ Checking test 037 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 166.856564 - 0: The maximum resident set size (KB) = 1608556 + 0: The total amount of wall time = 167.045417 + 0: The maximum resident set size (KB) = 1610228 Test 037 control_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_restart_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_restart_p8 Checking test 038 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1899,14 +1899,14 @@ Checking test 038 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 98.023404 - 0: The maximum resident set size (KB) = 869344 + 0: The total amount of wall time = 89.546625 + 0: The maximum resident set size (KB) = 879468 Test 038 control_restart_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_qr_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_qr_p8 Checking test 039 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1953,14 +1953,14 @@ Checking test 039 control_qr_p8 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.217987 - 0: The maximum resident set size (KB) = 1609100 + 0: The total amount of wall time = 168.435961 + 0: The maximum resident set size (KB) = 1614996 Test 039 control_qr_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_restart_qr_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_restart_qr_p8 Checking test 040 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1999,14 +1999,14 @@ Checking test 040 control_restart_qr_p8 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.852057 - 0: The maximum resident set size (KB) = 863548 + 0: The total amount of wall time = 89.726789 + 0: The maximum resident set size (KB) = 870152 Test 040 control_restart_qr_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_decomp_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_decomp_p8 Checking test 041 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2049,14 +2049,14 @@ Checking test 041 control_decomp_p8 results .... Comparing 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.967039 - 0: The maximum resident set size (KB) = 1589572 + 0: The total amount of wall time = 175.476327 + 0: The maximum resident set size (KB) = 1590300 Test 041 control_decomp_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_2threads_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_2threads_p8 Checking test 042 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2099,14 +2099,14 @@ Checking test 042 control_2threads_p8 results .... Comparing 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.215985 - 0: The maximum resident set size (KB) = 1693324 + 0: The total amount of wall time = 177.010913 + 0: The maximum resident set size (KB) = 1694356 Test 042 control_2threads_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_lndp -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_p8_lndp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_lndp +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_p8_lndp Checking test 043 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2125,14 +2125,14 @@ Checking test 043 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 314.132371 - 0: The maximum resident set size (KB) = 1602164 + 0: The total amount of wall time = 310.714559 + 0: The maximum resident set size (KB) = 1611796 Test 043 control_p8_lndp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_rrtmgp -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_p8_rrtmgp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_rrtmgp +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_p8_rrtmgp Checking test 044 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2179,14 +2179,14 @@ Checking test 044 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 233.946571 - 0: The maximum resident set size (KB) = 1674632 + 0: The total amount of wall time = 226.445431 + 0: The maximum resident set size (KB) = 1670312 Test 044 control_p8_rrtmgp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_mynn -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_p8_mynn +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_mynn +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_p8_mynn Checking test 045 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2233,14 +2233,14 @@ Checking test 045 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 173.000245 - 0: The maximum resident set size (KB) = 1616412 + 0: The total amount of wall time = 169.893980 + 0: The maximum resident set size (KB) = 1605564 Test 045 control_p8_mynn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/merra2_thompson -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/merra2_thompson +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/merra2_thompson +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/merra2_thompson Checking test 046 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2287,14 +2287,14 @@ Checking test 046 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 191.806001 - 0: The maximum resident set size (KB) = 1617776 + 0: The total amount of wall time = 191.311862 + 0: The maximum resident set size (KB) = 1619364 Test 046 merra2_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/regional_control +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/regional_control Checking test 047 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2305,28 +2305,28 @@ Checking test 047 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 297.119810 - 0: The maximum resident set size (KB) = 870220 + 0: The total amount of wall time = 294.471297 + 0: The maximum resident set size (KB) = 872732 Test 047 regional_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/regional_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/regional_restart Checking test 048 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 151.455406 - 0: The maximum resident set size (KB) = 863796 + 0: The total amount of wall time = 150.350015 + 0: The maximum resident set size (KB) = 814876 Test 048 regional_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/regional_control_qr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/regional_control_qr Checking test 049 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2337,28 +2337,28 @@ Checking test 049 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 297.983647 - 0: The maximum resident set size (KB) = 876236 + 0: The total amount of wall time = 295.130900 + 0: The maximum resident set size (KB) = 874080 Test 049 regional_control_qr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/regional_restart_qr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/regional_restart_qr Checking test 050 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 163.175244 - 0: The maximum resident set size (KB) = 863864 + 0: The total amount of wall time = 154.483656 + 0: The maximum resident set size (KB) = 865264 Test 050 regional_restart_qr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/regional_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/regional_decomp Checking test 051 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2369,14 +2369,14 @@ Checking test 051 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 316.511315 - 0: The maximum resident set size (KB) = 866928 + 0: The total amount of wall time = 312.758266 + 0: The maximum resident set size (KB) = 865280 Test 051 regional_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/regional_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/regional_2threads Checking test 052 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2387,14 +2387,14 @@ Checking test 052 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 206.851909 - 0: The maximum resident set size (KB) = 854824 + 0: The total amount of wall time = 206.786595 + 0: The maximum resident set size (KB) = 854196 Test 052 regional_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_noquilt -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/regional_noquilt +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_noquilt +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/regional_noquilt Checking test 053 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2402,28 +2402,28 @@ Checking test 053 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 317.008747 - 0: The maximum resident set size (KB) = 862944 + 0: The total amount of wall time = 316.399074 + 0: The maximum resident set size (KB) = 859160 Test 053 regional_noquilt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_netcdf_parallel -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/regional_netcdf_parallel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_netcdf_parallel +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/regional_netcdf_parallel Checking test 054 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 291.581013 - 0: The maximum resident set size (KB) = 874852 + 0: The total amount of wall time = 291.093483 + 0: The maximum resident set size (KB) = 864884 Test 054 regional_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/regional_2dwrtdecomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/regional_2dwrtdecomp Checking test 055 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2434,14 +2434,14 @@ Checking test 055 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 295.988000 - 0: The maximum resident set size (KB) = 877012 + 0: The total amount of wall time = 295.479847 + 0: The maximum resident set size (KB) = 874892 Test 055 regional_2dwrtdecomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/fv3_regional_wofs -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/regional_wofs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/fv3_regional_wofs +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/regional_wofs Checking test 056 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2452,14 +2452,14 @@ Checking test 056 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 373.065419 - 0: The maximum resident set size (KB) = 631724 + 0: The total amount of wall time = 372.599295 + 0: The maximum resident set size (KB) = 632172 Test 056 regional_wofs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/rap_control +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rap_control Checking test 057 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2506,14 +2506,14 @@ Checking test 057 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 460.891472 - 0: The maximum resident set size (KB) = 1058396 + 0: The total amount of wall time = 456.240006 + 0: The maximum resident set size (KB) = 1067428 Test 057 rap_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_spp_sppt_shum_skeb -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/regional_spp_sppt_shum_skeb +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_spp_sppt_shum_skeb +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/regional_spp_sppt_shum_skeb Checking test 058 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2524,14 +2524,14 @@ Checking test 058 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 263.983160 - 0: The maximum resident set size (KB) = 1184368 + 0: The total amount of wall time = 265.626501 + 0: The maximum resident set size (KB) = 1183520 Test 058 regional_spp_sppt_shum_skeb PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/rap_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rap_decomp Checking test 059 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2578,14 +2578,14 @@ Checking test 059 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 480.255621 - 0: The maximum resident set size (KB) = 1000232 + 0: The total amount of wall time = 482.103449 + 0: The maximum resident set size (KB) = 1004808 Test 059 rap_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/rap_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rap_2threads Checking test 060 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2632,14 +2632,14 @@ Checking test 060 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 467.489313 - 0: The maximum resident set size (KB) = 1138392 + 0: The total amount of wall time = 469.520532 + 0: The maximum resident set size (KB) = 1142036 Test 060 rap_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/rap_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rap_restart Checking test 061 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2678,14 +2678,14 @@ Checking test 061 rap_restart results .... Comparing 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.984001 - 0: The maximum resident set size (KB) = 973900 + 0: The total amount of wall time = 231.781895 + 0: The maximum resident set size (KB) = 973600 Test 061 rap_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/rap_sfcdiff +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rap_sfcdiff Checking test 062 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2732,14 +2732,14 @@ Checking test 062 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 459.752732 - 0: The maximum resident set size (KB) = 1064168 + 0: The total amount of wall time = 458.689191 + 0: The maximum resident set size (KB) = 1054912 Test 062 rap_sfcdiff PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/rap_sfcdiff_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rap_sfcdiff_decomp Checking test 063 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2786,14 +2786,14 @@ Checking test 063 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 484.880596 - 0: The maximum resident set size (KB) = 1005596 + 0: The total amount of wall time = 481.172229 + 0: The maximum resident set size (KB) = 997312 Test 063 rap_sfcdiff_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/rap_sfcdiff_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rap_sfcdiff_restart Checking test 064 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2832,14 +2832,14 @@ Checking test 064 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 341.523985 - 0: The maximum resident set size (KB) = 988816 + 0: The total amount of wall time = 343.100078 + 0: The maximum resident set size (KB) = 947380 Test 064 rap_sfcdiff_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/hrrr_control +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hrrr_control Checking test 065 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2886,14 +2886,14 @@ Checking test 065 hrrr_control results .... Comparing 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.844419 - 0: The maximum resident set size (KB) = 1055140 + 0: The total amount of wall time = 443.990032 + 0: The maximum resident set size (KB) = 1051012 Test 065 hrrr_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/hrrr_control_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hrrr_control_decomp Checking test 066 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2940,14 +2940,14 @@ Checking test 066 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 462.550153 - 0: The maximum resident set size (KB) = 998312 + 0: The total amount of wall time = 459.940979 + 0: The maximum resident set size (KB) = 1002716 Test 066 hrrr_control_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/hrrr_control_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hrrr_control_2threads Checking test 067 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2994,14 +2994,14 @@ Checking test 067 hrrr_control_2threads results .... Comparing 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.857122 - 0: The maximum resident set size (KB) = 1143328 + 0: The total amount of wall time = 453.626354 + 0: The maximum resident set size (KB) = 1137516 Test 067 hrrr_control_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/hrrr_control_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hrrr_control_restart Checking test 068 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3040,14 +3040,14 @@ Checking test 068 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 330.784166 - 0: The maximum resident set size (KB) = 978316 + 0: The total amount of wall time = 327.721847 + 0: The maximum resident set size (KB) = 984116 Test 068 hrrr_control_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1beta -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/rrfs_v1beta +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1beta +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rrfs_v1beta Checking test 069 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3094,14 +3094,14 @@ Checking test 069 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 453.558637 - 0: The maximum resident set size (KB) = 1059772 + 0: The total amount of wall time = 456.474547 + 0: The maximum resident set size (KB) = 1061512 Test 069 rrfs_v1beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1nssl -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/rrfs_v1nssl +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1nssl +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rrfs_v1nssl Checking test 070 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3116,14 +3116,14 @@ Checking test 070 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 539.554805 - 0: The maximum resident set size (KB) = 694976 + 0: The total amount of wall time = 542.384782 + 0: The maximum resident set size (KB) = 695668 Test 070 rrfs_v1nssl PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/rrfs_v1nssl_nohailnoccn +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rrfs_v1nssl_nohailnoccn Checking test 071 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3138,14 +3138,14 @@ Checking test 071 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 527.349649 - 0: The maximum resident set size (KB) = 718072 + 0: The total amount of wall time = 524.969309 + 0: The maximum resident set size (KB) = 754432 Test 071 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rrfs_smoke_conus13km_hrrr_warm Checking test 072 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3154,14 +3154,14 @@ Checking test 072 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 145.504396 - 0: The maximum resident set size (KB) = 1035876 + 0: The total amount of wall time = 144.799041 + 0: The maximum resident set size (KB) = 997680 Test 072 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 073 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3170,14 +3170,14 @@ Checking test 073 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 96.429205 - 0: The maximum resident set size (KB) = 949200 + 0: The total amount of wall time = 96.692169 + 0: The maximum resident set size (KB) = 949412 Test 073 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_conus13km_hrrr_warm -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/rrfs_conus13km_hrrr_warm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_conus13km_hrrr_warm +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rrfs_conus13km_hrrr_warm Checking test 074 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3186,14 +3186,14 @@ Checking test 074 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 128.155778 - 0: The maximum resident set size (KB) = 945296 + 0: The total amount of wall time = 129.555379 + 0: The maximum resident set size (KB) = 950332 Test 074 rrfs_conus13km_hrrr_warm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rrfs_smoke_conus13km_radar_tten_warm Checking test 075 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3202,26 +3202,26 @@ Checking test 075 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 148.194477 - 0: The maximum resident set size (KB) = 1001188 + 0: The total amount of wall time = 146.279835 + 0: The maximum resident set size (KB) = 1040280 Test 075 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 076 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 72.458020 - 0: The maximum resident set size (KB) = 933252 + 0: The total amount of wall time = 69.840414 + 0: The maximum resident set size (KB) = 932500 Test 076 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmg -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_csawmg +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmg +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_csawmg Checking test 077 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3232,14 +3232,14 @@ Checking test 077 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 351.458150 - 0: The maximum resident set size (KB) = 721184 + 0: The total amount of wall time = 344.244524 + 0: The maximum resident set size (KB) = 724876 Test 077 control_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmgt -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_csawmgt +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmgt +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_csawmgt Checking test 078 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3250,14 +3250,14 @@ Checking test 078 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 340.589205 - 0: The maximum resident set size (KB) = 726476 + 0: The total amount of wall time = 342.261842 + 0: The maximum resident set size (KB) = 720116 Test 078 control_csawmgt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_ras -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_ras +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_ras +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_ras Checking test 079 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3268,26 +3268,26 @@ Checking test 079 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 181.379370 - 0: The maximum resident set size (KB) = 718940 + 0: The total amount of wall time = 185.080279 + 0: The maximum resident set size (KB) = 723812 Test 079 control_ras PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wam -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_wam +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wam +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_wam Checking test 080 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 115.428438 - 0: The maximum resident set size (KB) = 642096 + 0: The total amount of wall time = 112.672597 + 0: The maximum resident set size (KB) = 642024 Test 080 control_wam PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_faster -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_p8_faster +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_p8_faster Checking test 081 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3334,14 +3334,14 @@ Checking test 081 control_p8_faster results .... Comparing 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.890469 - 0: The maximum resident set size (KB) = 1606168 + 0: The total amount of wall time = 153.561184 + 0: The maximum resident set size (KB) = 1602488 Test 081 control_p8_faster PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control_faster -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/regional_control_faster +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/regional_control_faster Checking test 082 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3352,56 +3352,56 @@ Checking test 082 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 269.242048 - 0: The maximum resident set size (KB) = 873180 + 0: The total amount of wall time = 271.138631 + 0: The maximum resident set size (KB) = 821248 Test 082 regional_control_faster PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 083 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 835.901918 - 0: The maximum resident set size (KB) = 1058864 + 0: The total amount of wall time = 833.794943 + 0: The maximum resident set size (KB) = 1062004 Test 083 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 084 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 477.543740 - 0: The maximum resident set size (KB) = 974096 + 0: The total amount of wall time = 486.419888 + 0: The maximum resident set size (KB) = 973824 Test 084 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/rrfs_conus13km_hrrr_warm_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rrfs_conus13km_hrrr_warm_debug Checking test 085 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 751.328130 - 0: The maximum resident set size (KB) = 977852 + 0: The total amount of wall time = 751.274150 + 0: The maximum resident set size (KB) = 968876 Test 085 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_CubedSphereGrid_debug -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_CubedSphereGrid_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_CubedSphereGrid_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_CubedSphereGrid_debug Checking test 086 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3428,334 +3428,334 @@ Checking test 086 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 150.806863 - 0: The maximum resident set size (KB) = 799228 + 0: The total amount of wall time = 152.964030 + 0: The maximum resident set size (KB) = 796996 Test 086 control_CubedSphereGrid_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_wrtGauss_netcdf_parallel_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_wrtGauss_netcdf_parallel_debug Checking test 087 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 147.491315 - 0: The maximum resident set size (KB) = 789732 + 0: The total amount of wall time = 149.271171 + 0: The maximum resident set size (KB) = 805620 Test 087 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_stochy_debug -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_stochy_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_stochy_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_stochy_debug Checking test 088 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 172.575510 - 0: The maximum resident set size (KB) = 798260 + 0: The total amount of wall time = 166.779651 + 0: The maximum resident set size (KB) = 802164 Test 088 control_stochy_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_lndp_debug -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_lndp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_lndp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_lndp_debug Checking test 089 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 152.700226 - 0: The maximum resident set size (KB) = 794796 + 0: The total amount of wall time = 153.941526 + 0: The maximum resident set size (KB) = 792296 Test 089 control_lndp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmg_debug -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_csawmg_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmg_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_csawmg_debug Checking test 090 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 228.838522 - 0: The maximum resident set size (KB) = 842760 + 0: The total amount of wall time = 236.382693 + 0: The maximum resident set size (KB) = 804772 Test 090 control_csawmg_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmgt_debug -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_csawmgt_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmgt_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_csawmgt_debug Checking test 091 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 226.476556 - 0: The maximum resident set size (KB) = 844924 + 0: The total amount of wall time = 232.337561 + 0: The maximum resident set size (KB) = 845024 Test 091 control_csawmgt_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_ras_debug -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_ras_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_ras_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_ras_debug Checking test 092 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 158.151449 - 0: The maximum resident set size (KB) = 806900 + 0: The total amount of wall time = 152.146731 + 0: The maximum resident set size (KB) = 808160 Test 092 control_ras_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_diag_debug -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_diag_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_diag_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_diag_debug Checking test 093 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 152.548079 - 0: The maximum resident set size (KB) = 851720 + 0: The total amount of wall time = 157.485779 + 0: The maximum resident set size (KB) = 861848 Test 093 control_diag_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_debug_p8 -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_debug_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_debug_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_debug_p8 Checking test 094 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 177.035419 - 0: The maximum resident set size (KB) = 1625036 + 0: The total amount of wall time = 171.064995 + 0: The maximum resident set size (KB) = 1621608 Test 094 control_debug_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_debug -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/regional_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/regional_debug Checking test 095 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1015.667247 - 0: The maximum resident set size (KB) = 881516 + 0: The total amount of wall time = 994.424088 + 0: The maximum resident set size (KB) = 887064 Test 095 regional_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/rap_control_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rap_control_debug Checking test 096 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.531066 - 0: The maximum resident set size (KB) = 1172932 + 0: The total amount of wall time = 278.813996 + 0: The maximum resident set size (KB) = 1174296 Test 096 rap_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_debug -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/hrrr_control_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hrrr_control_debug Checking test 097 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.160640 - 0: The maximum resident set size (KB) = 1166536 + 0: The total amount of wall time = 274.725743 + 0: The maximum resident set size (KB) = 1170096 Test 097 hrrr_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/rap_unified_drag_suite_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rap_unified_drag_suite_debug Checking test 098 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.538266 - 0: The maximum resident set size (KB) = 1181256 + 0: The total amount of wall time = 272.810075 + 0: The maximum resident set size (KB) = 1177416 Test 098 rap_unified_drag_suite_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_diag_debug -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/rap_diag_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_diag_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rap_diag_debug Checking test 099 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 287.340272 - 0: The maximum resident set size (KB) = 1255588 + 0: The total amount of wall time = 287.018756 + 0: The maximum resident set size (KB) = 1259292 Test 099 rap_diag_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/rap_cires_ugwp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_cires_ugwp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rap_cires_ugwp_debug Checking test 100 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.795101 - 0: The maximum resident set size (KB) = 1167848 + 0: The total amount of wall time = 276.268035 + 0: The maximum resident set size (KB) = 1172468 Test 100 rap_cires_ugwp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/rap_unified_ugwp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_cires_ugwp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rap_unified_ugwp_debug Checking test 101 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.439562 - 0: The maximum resident set size (KB) = 1172084 + 0: The total amount of wall time = 279.696688 + 0: The maximum resident set size (KB) = 1177008 Test 101 rap_unified_ugwp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_lndp_debug -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/rap_lndp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_lndp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rap_lndp_debug Checking test 102 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.058865 - 0: The maximum resident set size (KB) = 1174020 + 0: The total amount of wall time = 277.553968 + 0: The maximum resident set size (KB) = 1171724 Test 102 rap_lndp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_flake_debug -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/rap_flake_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_flake_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rap_flake_debug Checking test 103 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.480149 - 0: The maximum resident set size (KB) = 1172964 + 0: The total amount of wall time = 275.788034 + 0: The maximum resident set size (KB) = 1173480 Test 103 rap_flake_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_progcld_thompson_debug -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/rap_progcld_thompson_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_progcld_thompson_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rap_progcld_thompson_debug Checking test 104 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.987479 - 0: The maximum resident set size (KB) = 1171308 + 0: The total amount of wall time = 269.669851 + 0: The maximum resident set size (KB) = 1170880 Test 104 rap_progcld_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_noah_debug -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/rap_noah_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_noah_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rap_noah_debug Checking test 105 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 270.919777 - 0: The maximum resident set size (KB) = 1170376 + 0: The total amount of wall time = 271.414314 + 0: The maximum resident set size (KB) = 1170520 Test 105 rap_noah_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff_debug -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/rap_sfcdiff_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rap_sfcdiff_debug Checking test 106 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.289810 - 0: The maximum resident set size (KB) = 1172352 + 0: The total amount of wall time = 283.430476 + 0: The maximum resident set size (KB) = 1173560 Test 106 rap_sfcdiff_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rap_noah_sfcdiff_cires_ugwp_debug Checking test 107 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 452.012400 - 0: The maximum resident set size (KB) = 1171032 + 0: The total amount of wall time = 461.617768 + 0: The maximum resident set size (KB) = 1173396 Test 107 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1beta_debug -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/rrfs_v1beta_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1beta_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rrfs_v1beta_debug Checking test 108 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.104127 - 0: The maximum resident set size (KB) = 1168568 + 0: The total amount of wall time = 281.005127 + 0: The maximum resident set size (KB) = 1165048 Test 108 rrfs_v1beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wam_debug -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_wam_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wam_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_wam_debug Checking test 109 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 284.324104 - 0: The maximum resident set size (KB) = 518200 + 0: The total amount of wall time = 282.400836 + 0: The maximum resident set size (KB) = 523656 Test 109 control_wam_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3766,14 +3766,14 @@ Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 249.255747 - 0: The maximum resident set size (KB) = 1075076 + 0: The total amount of wall time = 251.408446 + 0: The maximum resident set size (KB) = 1088536 Test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/rap_control_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rap_control_dyn32_phy32 Checking test 111 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3820,14 +3820,14 @@ Checking test 111 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 380.687890 - 0: The maximum resident set size (KB) = 1005224 + 0: The total amount of wall time = 385.464223 + 0: The maximum resident set size (KB) = 994636 Test 111 rap_control_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/hrrr_control_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hrrr_control_dyn32_phy32 Checking test 112 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3874,14 +3874,14 @@ Checking test 112 hrrr_control_dyn32_phy32 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 = 199.123317 - 0: The maximum resident set size (KB) = 956984 + 0: The total amount of wall time = 198.688400 + 0: The maximum resident set size (KB) = 957096 Test 112 hrrr_control_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/rap_2threads_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rap_2threads_dyn32_phy32 Checking test 113 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3928,14 +3928,14 @@ Checking test 113 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 398.994809 - 0: The maximum resident set size (KB) = 1021752 + 0: The total amount of wall time = 401.101358 + 0: The maximum resident set size (KB) = 1023748 Test 113 rap_2threads_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/hrrr_control_2threads_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hrrr_control_2threads_dyn32_phy32 Checking test 114 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3982,14 +3982,14 @@ Checking test 114 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 208.341774 - 0: The maximum resident set size (KB) = 1006944 + 0: The total amount of wall time = 208.065458 + 0: The maximum resident set size (KB) = 1007256 Test 114 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/hrrr_control_decomp_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hrrr_control_decomp_dyn32_phy32 Checking test 115 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4036,14 +4036,14 @@ Checking test 115 hrrr_control_decomp_dyn32_phy32 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 = 210.092876 - 0: The maximum resident set size (KB) = 902668 + 0: The total amount of wall time = 208.405813 + 0: The maximum resident set size (KB) = 906436 Test 115 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/rap_restart_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rap_restart_dyn32_phy32 Checking test 116 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4082,14 +4082,14 @@ Checking test 116 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 283.113512 - 0: The maximum resident set size (KB) = 951156 + 0: The total amount of wall time = 285.089339 + 0: The maximum resident set size (KB) = 961616 Test 116 rap_restart_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/hrrr_control_restart_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hrrr_control_restart_dyn32_phy32 Checking test 117 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4128,14 +4128,14 @@ Checking test 117 hrrr_control_restart_dyn32_phy32 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 = 103.306238 - 0: The maximum resident set size (KB) = 860800 + 0: The total amount of wall time = 106.505643 + 0: The maximum resident set size (KB) = 871124 Test 117 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn64_phy32 -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/rap_control_dyn64_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn64_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rap_control_dyn64_phy32 Checking test 118 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4182,81 +4182,81 @@ Checking test 118 rap_control_dyn64_phy32 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 = 244.286744 - 0: The maximum resident set size (KB) = 961304 + 0: The total amount of wall time = 251.970182 + 0: The maximum resident set size (KB) = 963652 Test 118 rap_control_dyn64_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug_dyn32_phy32 -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/rap_control_debug_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rap_control_debug_dyn32_phy32 Checking test 119 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.932905 - 0: The maximum resident set size (KB) = 1064332 + 0: The total amount of wall time = 275.415520 + 0: The maximum resident set size (KB) = 1064820 Test 119 rap_control_debug_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/hrrr_control_debug_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hrrr_control_debug_dyn32_phy32 Checking test 120 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 265.149639 - 0: The maximum resident set size (KB) = 1053896 + 0: The total amount of wall time = 277.646562 + 0: The maximum resident set size (KB) = 1064980 Test 120 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug_dyn64_phy32 -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/rap_control_dyn64_phy32_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug_dyn64_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rap_control_dyn64_phy32_debug Checking test 121 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 282.629739 - 0: The maximum resident set size (KB) = 1105800 + 0: The total amount of wall time = 275.961338 + 0: The maximum resident set size (KB) = 1097804 Test 121 rap_control_dyn64_phy32_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/hafs_regional_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hafs_regional_atm Checking test 122 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 267.605223 - 0: The maximum resident set size (KB) = 1059260 + 0: The total amount of wall time = 274.226221 + 0: The maximum resident set size (KB) = 1063868 Test 122 hafs_regional_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/hafs_regional_atm_thompson_gfdlsf +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hafs_regional_atm_thompson_gfdlsf Checking test 123 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 402.628999 - 0: The maximum resident set size (KB) = 1423388 + 0: The total amount of wall time = 420.548954 + 0: The maximum resident set size (KB) = 1425584 Test 123 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_ocn -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/hafs_regional_atm_ocn +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_ocn +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hafs_regional_atm_ocn Checking test 124 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4265,14 +4265,14 @@ Checking test 124 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 377.563025 - 0: The maximum resident set size (KB) = 1232612 + 0: The total amount of wall time = 391.719041 + 0: The maximum resident set size (KB) = 1233464 Test 124 hafs_regional_atm_ocn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_wav -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/hafs_regional_atm_wav +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_wav +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hafs_regional_atm_wav Checking test 125 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4281,14 +4281,14 @@ Checking test 125 hafs_regional_atm_wav 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 = 720.969002 - 0: The maximum resident set size (KB) = 1256212 + 0: The total amount of wall time = 737.562160 + 0: The maximum resident set size (KB) = 1263496 Test 125 hafs_regional_atm_wav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_ocn_wav -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/hafs_regional_atm_ocn_wav +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_ocn_wav +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hafs_regional_atm_ocn_wav Checking test 126 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4299,28 +4299,28 @@ Checking test 126 hafs_regional_atm_ocn_wav 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 = 827.576520 - 0: The maximum resident set size (KB) = 1279556 + 0: The total amount of wall time = 825.792881 + 0: The maximum resident set size (KB) = 1292452 Test 126 hafs_regional_atm_ocn_wav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_1nest_atm -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/hafs_regional_1nest_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hafs_regional_1nest_atm Checking test 127 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 409.454332 - 0: The maximum resident set size (KB) = 511984 + 0: The total amount of wall time = 368.719548 + 0: The maximum resident set size (KB) = 508100 Test 127 hafs_regional_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/hafs_regional_telescopic_2nests_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hafs_regional_telescopic_2nests_atm Checking test 128 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4329,28 +4329,28 @@ Checking test 128 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 413.967064 - 0: The maximum resident set size (KB) = 514376 + 0: The total amount of wall time = 419.673198 + 0: The maximum resident set size (KB) = 521192 Test 128 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_global_1nest_atm -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/hafs_global_1nest_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_global_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hafs_global_1nest_atm Checking test 129 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 175.918088 - 0: The maximum resident set size (KB) = 362516 + 0: The total amount of wall time = 184.170732 + 0: The maximum resident set size (KB) = 359456 Test 129 hafs_global_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_global_multiple_4nests_atm -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/hafs_global_multiple_4nests_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_global_multiple_4nests_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hafs_global_multiple_4nests_atm Checking test 130 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4368,14 +4368,14 @@ Checking test 130 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 464.700173 - 0: The maximum resident set size (KB) = 431128 + 0: The total amount of wall time = 466.493000 + 0: The maximum resident set size (KB) = 432684 Test 130 hafs_global_multiple_4nests_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/hafs_regional_specified_moving_1nest_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hafs_regional_specified_moving_1nest_atm Checking test 131 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4384,28 +4384,28 @@ Checking test 131 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 228.124507 - 0: The maximum resident set size (KB) = 529424 + 0: The total amount of wall time = 232.957025 + 0: The maximum resident set size (KB) = 525880 Test 131 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/hafs_regional_storm_following_1nest_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hafs_regional_storm_following_1nest_atm Checking test 132 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 219.558469 - 0: The maximum resident set size (KB) = 526944 + 0: The total amount of wall time = 222.713516 + 0: The maximum resident set size (KB) = 526080 Test 132 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hafs_regional_storm_following_1nest_atm_ocn Checking test 133 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4414,42 +4414,42 @@ Checking test 133 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 286.913894 - 0: The maximum resident set size (KB) = 568696 + 0: The total amount of wall time = 294.285096 + 0: The maximum resident set size (KB) = 573720 Test 133 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_global_storm_following_1nest_atm -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/hafs_global_storm_following_1nest_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_global_storm_following_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hafs_global_storm_following_1nest_atm Checking test 134 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 67.824454 - 0: The maximum resident set size (KB) = 372456 + 0: The total amount of wall time = 69.777130 + 0: The maximum resident set size (KB) = 377112 Test 134 hafs_global_storm_following_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 738.215394 - 0: The maximum resident set size (KB) = 587752 + 0: The total amount of wall time = 776.179723 + 0: The maximum resident set size (KB) = 591296 Test 135 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 136 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4460,14 +4460,14 @@ Checking test 136 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 537.764049 - 0: The maximum resident set size (KB) = 624012 + 0: The total amount of wall time = 543.572714 + 0: The maximum resident set size (KB) = 579948 Test 136 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_docn -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/hafs_regional_docn +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_docn +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hafs_regional_docn Checking test 137 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4475,14 +4475,14 @@ Checking test 137 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 357.335276 - 0: The maximum resident set size (KB) = 1244548 + 0: The total amount of wall time = 363.967075 + 0: The maximum resident set size (KB) = 1244200 Test 137 hafs_regional_docn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_docn_oisst -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/hafs_regional_docn_oisst +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_docn_oisst +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hafs_regional_docn_oisst Checking test 138 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4490,131 +4490,131 @@ Checking test 138 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 362.327306 - 0: The maximum resident set size (KB) = 1222664 + 0: The total amount of wall time = 375.556681 + 0: The maximum resident set size (KB) = 1228920 Test 138 hafs_regional_docn_oisst PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_datm_cdeps -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/hafs_regional_datm_cdeps +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_datm_cdeps +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hafs_regional_datm_cdeps Checking test 139 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 930.489005 - 0: The maximum resident set size (KB) = 1036532 + 0: The total amount of wall time = 932.585507 + 0: The maximum resident set size (KB) = 1033244 Test 139 hafs_regional_datm_cdeps PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/datm_cdeps_control_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/datm_cdeps_control_cfsr Checking test 140 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 144.980958 - 0: The maximum resident set size (KB) = 1083932 + 0: The total amount of wall time = 151.075027 + 0: The maximum resident set size (KB) = 1045012 Test 140 datm_cdeps_control_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/datm_cdeps_restart_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/datm_cdeps_restart_cfsr Checking test 141 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 91.355240 - 0: The maximum resident set size (KB) = 1004500 + 0: The total amount of wall time = 91.569212 + 0: The maximum resident set size (KB) = 1015476 Test 141 datm_cdeps_restart_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_gefs -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/datm_cdeps_control_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/datm_cdeps_control_gefs Checking test 142 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 144.719741 - 0: The maximum resident set size (KB) = 966696 + 0: The total amount of wall time = 146.687050 + 0: The maximum resident set size (KB) = 972892 Test 142 datm_cdeps_control_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_iau_gefs -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/datm_cdeps_iau_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_iau_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/datm_cdeps_iau_gefs Checking test 143 datm_cdeps_iau_gefs 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.641809 - 0: The maximum resident set size (KB) = 961984 + 0: The total amount of wall time = 145.302794 + 0: The maximum resident set size (KB) = 964548 Test 143 datm_cdeps_iau_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_stochy_gefs -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/datm_cdeps_stochy_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_stochy_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/datm_cdeps_stochy_gefs Checking test 144 datm_cdeps_stochy_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.074424 - 0: The maximum resident set size (KB) = 967048 + 0: The total amount of wall time = 147.000483 + 0: The maximum resident set size (KB) = 963696 Test 144 datm_cdeps_stochy_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_ciceC_cfsr -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/datm_cdeps_ciceC_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_ciceC_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/datm_cdeps_ciceC_cfsr Checking test 145 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.564952 - 0: The maximum resident set size (KB) = 1066160 + 0: The total amount of wall time = 147.745807 + 0: The maximum resident set size (KB) = 1059500 Test 145 datm_cdeps_ciceC_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_bulk_cfsr -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/datm_cdeps_bulk_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_bulk_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/datm_cdeps_bulk_cfsr Checking test 146 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.224058 - 0: The maximum resident set size (KB) = 1074676 + 0: The total amount of wall time = 147.586709 + 0: The maximum resident set size (KB) = 1051280 Test 146 datm_cdeps_bulk_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_bulk_gefs -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/datm_cdeps_bulk_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_bulk_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/datm_cdeps_bulk_gefs Checking test 147 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 143.298302 - 0: The maximum resident set size (KB) = 968016 + 0: The total amount of wall time = 159.541191 + 0: The maximum resident set size (KB) = 952624 Test 147 datm_cdeps_bulk_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_mx025_cfsr -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/datm_cdeps_mx025_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_mx025_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/datm_cdeps_mx025_cfsr Checking test 148 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4623,14 +4623,14 @@ Checking test 148 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 432.418700 - 0: The maximum resident set size (KB) = 884760 + 0: The total amount of wall time = 442.346712 + 0: The maximum resident set size (KB) = 883184 Test 148 datm_cdeps_mx025_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_mx025_gefs -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/datm_cdeps_mx025_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_mx025_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/datm_cdeps_mx025_gefs Checking test 149 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4639,77 +4639,77 @@ Checking test 149 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 434.695721 - 0: The maximum resident set size (KB) = 932432 + 0: The total amount of wall time = 440.724492 + 0: The maximum resident set size (KB) = 932448 Test 149 datm_cdeps_mx025_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/datm_cdeps_multiple_files_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/datm_cdeps_multiple_files_cfsr Checking test 150 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 147.602856 - 0: The maximum resident set size (KB) = 1066308 + 0: The total amount of wall time = 148.078593 + 0: The maximum resident set size (KB) = 1079540 Test 150 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/datm_cdeps_3072x1536_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/datm_cdeps_3072x1536_cfsr Checking test 151 datm_cdeps_3072x1536_cfsr 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 = 196.676913 - 0: The maximum resident set size (KB) = 2359608 + 0: The total amount of wall time = 199.416741 + 0: The maximum resident set size (KB) = 2358552 Test 151 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_gfs -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/datm_cdeps_gfs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_gfs +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/datm_cdeps_gfs Checking test 152 datm_cdeps_gfs 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 = 199.690965 - 0: The maximum resident set size (KB) = 2306252 + 0: The total amount of wall time = 201.087542 + 0: The maximum resident set size (KB) = 2369672 Test 152 datm_cdeps_gfs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_debug_cfsr -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/datm_cdeps_debug_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_debug_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/datm_cdeps_debug_cfsr Checking test 153 datm_cdeps_debug_cfsr results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 354.543896 - 0: The maximum resident set size (KB) = 1002112 + 0: The total amount of wall time = 362.214183 + 0: The maximum resident set size (KB) = 988936 Test 153 datm_cdeps_debug_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_control_cfsr_faster -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/datm_cdeps_control_cfsr_faster +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_cfsr_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/datm_cdeps_control_cfsr_faster Checking test 154 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.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.439132 - 0: The maximum resident set size (KB) = 1073256 + 0: The total amount of wall time = 143.576844 + 0: The maximum resident set size (KB) = 1071568 Test 154 datm_cdeps_control_cfsr_faster PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_lnd_gswp3 -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/datm_cdeps_lnd_gswp3 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_lnd_gswp3 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/datm_cdeps_lnd_gswp3 Checking test 155 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4718,14 +4718,14 @@ Checking test 155 datm_cdeps_lnd_gswp3 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 = 6.778732 - 0: The maximum resident set size (KB) = 266244 + 0: The total amount of wall time = 9.189520 + 0: The maximum resident set size (KB) = 263860 Test 155 datm_cdeps_lnd_gswp3 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/datm_cdeps_lnd_gswp3 -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/datm_cdeps_lnd_gswp3_rst +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_lnd_gswp3 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/datm_cdeps_lnd_gswp3_rst Checking test 156 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4734,14 +4734,14 @@ Checking test 156 datm_cdeps_lnd_gswp3_rst 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 = 15.310818 - 0: The maximum resident set size (KB) = 261688 + 0: The total amount of wall time = 12.990227 + 0: The maximum resident set size (KB) = 261784 Test 156 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_atmlnd_sbs -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_p8_atmlnd_sbs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_atmlnd_sbs +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_p8_atmlnd_sbs Checking test 157 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4826,14 +4826,14 @@ Checking test 157 control_p8_atmlnd_sbs 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 = 202.672746 - 0: The maximum resident set size (KB) = 1624608 + 0: The total amount of wall time = 207.041953 + 0: The maximum resident set size (KB) = 1578400 Test 157 control_p8_atmlnd_sbs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/control_atmwav -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/control_atmwav +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_atmwav +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_atmwav Checking test 158 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4877,14 +4877,14 @@ Checking test 158 control_atmwav 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.464389 - 0: The maximum resident set size (KB) = 655432 + 0: The total amount of wall time = 88.533006 + 0: The maximum resident set size (KB) = 669092 Test 158 control_atmwav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/atmaero_control_p8 -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/atmaero_control_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/atmaero_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/atmaero_control_p8 Checking test 159 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4928,14 +4928,14 @@ Checking test 159 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 231.028183 - 0: The maximum resident set size (KB) = 2977260 + 0: The total amount of wall time = 225.177775 + 0: The maximum resident set size (KB) = 2977980 Test 159 atmaero_control_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/atmaero_control_p8_rad -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/atmaero_control_p8_rad +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/atmaero_control_p8_rad +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/atmaero_control_p8_rad Checking test 160 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4979,14 +4979,14 @@ Checking test 160 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 282.592379 - 0: The maximum resident set size (KB) = 3040244 + 0: The total amount of wall time = 286.173279 + 0: The maximum resident set size (KB) = 3044276 Test 160 atmaero_control_p8_rad PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/atmaero_control_p8_rad_micro -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/atmaero_control_p8_rad_micro +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/atmaero_control_p8_rad_micro +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/atmaero_control_p8_rad_micro Checking test 161 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5030,14 +5030,14 @@ Checking test 161 atmaero_control_p8_rad_micro results .... Comparing 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.152698 - 0: The maximum resident set size (KB) = 3059644 + 0: The total amount of wall time = 281.847093 + 0: The maximum resident set size (KB) = 3056468 Test 161 atmaero_control_p8_rad_micro PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_atmaq -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/regional_atmaq +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_atmaq +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/regional_atmaq Checking test 162 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5053,14 +5053,14 @@ Checking test 162 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 620.569743 - 0: The maximum resident set size (KB) = 1472188 + 0: The total amount of wall time = 660.137664 + 0: The maximum resident set size (KB) = 1478380 Test 162 regional_atmaq PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_atmaq_debug -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/regional_atmaq_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_atmaq_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/regional_atmaq_debug Checking test 163 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5074,14 +5074,14 @@ Checking test 163 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1241.721216 - 0: The maximum resident set size (KB) = 1424252 + 0: The total amount of wall time = 1234.167126 + 0: The maximum resident set size (KB) = 1406292 Test 163 regional_atmaq_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_atmaq_faster -working dir = /work/noaa/epic-ps/nandoam/rt-1681/stmp/nandoam/FV3_RT/rt_413310/regional_atmaq_faster +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_atmaq_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/regional_atmaq_faster Checking test 164 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5097,12 +5097,12 @@ Checking test 164 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 541.104364 - 0: The maximum resident set size (KB) = 1340492 + 0: The total amount of wall time = 566.304933 + 0: The maximum resident set size (KB) = 1476176 Test 164 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Tue Apr 4 17:49:00 CDT 2023 -Elapsed time: 01h:51m:54s. Have a nice day! +Wed Apr 5 22:13:32 CDT 2023 +Elapsed time: 01h:19m:20s. Have a nice day! diff --git a/tests/RegressionTests_wcoss2.intel.log b/tests/RegressionTests_wcoss2.intel.log index 592f93299c1..fe9447cb40c 100644 --- a/tests/RegressionTests_wcoss2.intel.log +++ b/tests/RegressionTests_wcoss2.intel.log @@ -1,34 +1,34 @@ -Tue Apr 4 18:55:17 UTC 2023 +Thu Apr 6 00:42:19 UTC 2023 Start Regression test -Compile 001 elapsed time 604 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 602 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 590 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 539 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 005 elapsed time 1513 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 715 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 1253 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 008 elapsed time 1769 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 009 elapsed time 1404 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 1030 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 645 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 284 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 013 elapsed time 217 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 1128 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 015 elapsed time 1005 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 467 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 017 elapsed time 289 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 702 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 019 elapsed time 487 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 889 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 677 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 022 elapsed time 674 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 684 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 024 elapsed time 294 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 025 elapsed time 623 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8_mixedmode -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/cpld_control_p8_mixedmode +Compile 001 elapsed time 1057 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 584 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 539 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 1075 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 005 elapsed time 1342 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 1151 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 1148 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 472 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 009 elapsed time 1262 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 454 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 999 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 687 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 719 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 014 elapsed time 1158 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 1232 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 1100 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 017 elapsed time 361 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 574 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 019 elapsed time 238 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 803 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 917 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 022 elapsed time 837 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 627 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 024 elapsed time 396 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 025 elapsed time 793 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8_mixedmode +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -93,14 +93,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 333.353732 -The maximum resident set size (KB) = 2947836 +The total amount of wall time = 336.728650 +The maximum resident set size (KB) = 2950320 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/cpld_control_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/cpld_control_p8 Checking test 002 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -165,14 +165,14 @@ Checking test 002 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 383.680534 -The maximum resident set size (KB) = 2981280 +The total amount of wall time = 385.548641 +The maximum resident set size (KB) = 2987828 Test 002 cpld_control_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/cpld_restart_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/cpld_restart_p8 Checking test 003 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -225,14 +225,14 @@ Checking test 003 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 237.168266 -The maximum resident set size (KB) = 2865368 +The total amount of wall time = 236.424985 +The maximum resident set size (KB) = 2866300 Test 003 cpld_restart_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/cpld_control_qr_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/cpld_control_qr_p8 Checking test 004 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -297,14 +297,14 @@ Checking test 004 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 385.660359 -The maximum resident set size (KB) = 2992832 +The total amount of wall time = 389.655339 +The maximum resident set size (KB) = 2997836 Test 004 cpld_control_qr_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/cpld_restart_qr_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/cpld_restart_qr_p8 Checking test 005 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -357,14 +357,14 @@ Checking test 005 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 240.378312 -The maximum resident set size (KB) = 2879316 +The total amount of wall time = 234.869457 +The maximum resident set size (KB) = 2881420 Test 005 cpld_restart_qr_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/cpld_2threads_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/cpld_2threads_p8 Checking test 006 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -417,14 +417,14 @@ Checking test 006 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 364.925112 -The maximum resident set size (KB) = 3283308 +The total amount of wall time = 368.126057 +The maximum resident set size (KB) = 3285620 Test 006 cpld_2threads_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/cpld_decomp_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/cpld_decomp_p8 Checking test 007 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -477,14 +477,14 @@ Checking test 007 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 381.607684 -The maximum resident set size (KB) = 2978168 +The total amount of wall time = 381.208124 +The maximum resident set size (KB) = 2979048 Test 007 cpld_decomp_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/cpld_mpi_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/cpld_mpi_p8 Checking test 008 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -537,14 +537,14 @@ Checking test 008 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 317.109409 -The maximum resident set size (KB) = 2909552 +The total amount of wall time = 322.349790 +The maximum resident set size (KB) = 2911004 Test 008 cpld_mpi_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_ciceC_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/cpld_control_ciceC_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_ciceC_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/cpld_control_ciceC_p8 Checking test 009 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -609,14 +609,14 @@ Checking test 009 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 383.279111 -The maximum resident set size (KB) = 2979052 +The total amount of wall time = 386.095867 +The maximum resident set size (KB) = 2985616 Test 009 cpld_control_ciceC_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_bmark_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/cpld_bmark_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_bmark_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/cpld_bmark_p8 Checking test 010 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -664,14 +664,14 @@ Checking test 010 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 971.185959 -The maximum resident set size (KB) = 3918420 +The total amount of wall time = 938.785837 +The maximum resident set size (KB) = 3929120 Test 010 cpld_bmark_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_bmark_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/cpld_restart_bmark_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_bmark_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/cpld_restart_bmark_p8 Checking test 011 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -719,14 +719,14 @@ Checking test 011 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 653.061924 -The maximum resident set size (KB) = 3889636 +The total amount of wall time = 655.015200 +The maximum resident set size (KB) = 3891332 Test 011 cpld_restart_bmark_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/cpld_control_noaero_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/cpld_control_noaero_p8 Checking test 012 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -790,14 +790,14 @@ Checking test 012 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 282.989842 -The maximum resident set size (KB) = 1582196 +The total amount of wall time = 281.919847 +The maximum resident set size (KB) = 1571520 Test 012 cpld_control_noaero_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/cpld_control_nowave_noaero_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_c96_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/cpld_control_nowave_noaero_p8 Checking test 013 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -859,14 +859,14 @@ Checking test 013 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 300.162818 -The maximum resident set size (KB) = 1627024 +The total amount of wall time = 300.371495 +The maximum resident set size (KB) = 1634868 Test 013 cpld_control_nowave_noaero_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/cpld_control_noaero_p8_agrid +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_noaero_p8_agrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/cpld_control_noaero_p8_agrid Checking test 014 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -928,14 +928,14 @@ Checking test 014 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 306.718395 -The maximum resident set size (KB) = 1632532 +The total amount of wall time = 312.250586 +The maximum resident set size (KB) = 1627168 Test 014 cpld_control_noaero_p8_agrid PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/cpld_control_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/cpld_control_c48 Checking test 015 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -985,14 +985,14 @@ Checking test 015 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 440.861398 -The maximum resident set size (KB) = 2642448 +The total amount of wall time = 436.933588 +The maximum resident set size (KB) = 2638128 Test 015 cpld_control_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/cpld_warmstart_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/cpld_warmstart_c48 Checking test 016 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1042,14 +1042,14 @@ Checking test 016 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 131.843245 -The maximum resident set size (KB) = 2653200 +The total amount of wall time = 124.442487 +The maximum resident set size (KB) = 2652972 Test 016 cpld_warmstart_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/cpld_restart_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/cpld_restart_c48 Checking test 017 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1099,14 +1099,14 @@ Checking test 017 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 68.164885 -The maximum resident set size (KB) = 2068788 +The total amount of wall time = 69.900784 +The maximum resident set size (KB) = 2075108 Test 017 cpld_restart_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/cpld_control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/cpld_control_p8_faster +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/cpld_control_p8_faster Checking test 018 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1171,14 +1171,14 @@ Checking test 018 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 382.218175 -The maximum resident set size (KB) = 2985436 +The total amount of wall time = 379.478615 +The maximum resident set size (KB) = 2977240 Test 018 cpld_control_p8_faster PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_CubedSphereGrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/control_CubedSphereGrid +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_CubedSphereGrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_CubedSphereGrid Checking test 019 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1205,14 +1205,14 @@ Checking test 019 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 130.677929 -The maximum resident set size (KB) = 517408 +The total amount of wall time = 129.394818 +The maximum resident set size (KB) = 515616 Test 019 control_CubedSphereGrid PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_latlon -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/control_latlon +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_latlon +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_latlon Checking test 020 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1223,14 +1223,14 @@ Checking test 020 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 132.738227 -The maximum resident set size (KB) = 516748 +The total amount of wall time = 133.758195 +The maximum resident set size (KB) = 518480 Test 020 control_latlon PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/control_wrtGauss_netcdf_parallel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_wrtGauss_netcdf_parallel Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1241,14 +1241,14 @@ Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 136.585300 -The maximum resident set size (KB) = 515424 +The total amount of wall time = 136.226975 +The maximum resident set size (KB) = 516952 Test 021 control_wrtGauss_netcdf_parallel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/control_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_c48 Checking test 022 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1287,14 +1287,14 @@ Checking test 022 control_c48 results .... 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.872845 -The maximum resident set size (KB) = 675444 +The total amount of wall time = 326.555007 +The maximum resident set size (KB) = 677040 Test 022 control_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c192 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/control_c192 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c192 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_c192 Checking test 023 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1305,14 +1305,14 @@ Checking test 023 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 531.105568 -The maximum resident set size (KB) = 616040 +The total amount of wall time = 528.786323 +The maximum resident set size (KB) = 615116 Test 023 control_c192 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c384 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/control_c384 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c384 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_c384 Checking test 024 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1323,14 +1323,14 @@ Checking test 024 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 567.237261 -The maximum resident set size (KB) = 930428 +The total amount of wall time = 565.853566 +The maximum resident set size (KB) = 923108 Test 024 control_c384 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_c384gdas -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/control_c384gdas +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c384gdas +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_c384gdas Checking test 025 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1373,14 +1373,14 @@ Checking test 025 control_c384gdas 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 = 504.088803 -The maximum resident set size (KB) = 1061080 +The total amount of wall time = 497.510830 +The maximum resident set size (KB) = 1058140 Test 025 control_c384gdas PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/control_stochy +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_stochy Checking test 026 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1391,28 +1391,28 @@ Checking test 026 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 90.485068 -The maximum resident set size (KB) = 526708 +The total amount of wall time = 90.136176 +The maximum resident set size (KB) = 523184 Test 026 control_stochy PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/control_stochy_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_stochy_restart Checking test 027 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 49.469487 -The maximum resident set size (KB) = 291224 +The total amount of wall time = 49.535965 +The maximum resident set size (KB) = 292240 Test 027 control_stochy_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/control_lndp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_lndp Checking test 028 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1423,14 +1423,14 @@ Checking test 028 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 84.452975 -The maximum resident set size (KB) = 519500 +The total amount of wall time = 83.302779 +The maximum resident set size (KB) = 520824 Test 028 control_lndp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_iovr4 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/control_iovr4 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_iovr4 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_iovr4 Checking test 029 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1445,14 +1445,14 @@ Checking test 029 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 137.327198 -The maximum resident set size (KB) = 517468 +The total amount of wall time = 136.413403 +The maximum resident set size (KB) = 516840 Test 029 control_iovr4 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_iovr5 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/control_iovr5 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_iovr5 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_iovr5 Checking test 030 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1467,14 +1467,14 @@ Checking test 030 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 136.527186 -The maximum resident set size (KB) = 520276 +The total amount of wall time = 137.368227 +The maximum resident set size (KB) = 519880 Test 030 control_iovr5 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/control_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_p8 Checking test 031 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1521,14 +1521,14 @@ Checking test 031 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 183.246880 -The maximum resident set size (KB) = 1485428 +The total amount of wall time = 180.529536 +The maximum resident set size (KB) = 1482344 Test 031 control_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/control_restart_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_restart_p8 Checking test 032 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1567,14 +1567,14 @@ Checking test 032 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 99.588722 -The maximum resident set size (KB) = 655428 +The total amount of wall time = 102.092135 +The maximum resident set size (KB) = 654348 Test 032 control_restart_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/control_qr_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_qr_p8 Checking test 033 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1621,14 +1621,14 @@ Checking test 033 control_qr_p8 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 = 183.023966 -The maximum resident set size (KB) = 1497436 +The total amount of wall time = 178.547696 +The maximum resident set size (KB) = 1489152 Test 033 control_qr_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/control_restart_qr_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_restart_qr_p8 Checking test 034 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1667,14 +1667,14 @@ Checking test 034 control_restart_qr_p8 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 = 100.761476 -The maximum resident set size (KB) = 667512 +The total amount of wall time = 103.474910 +The maximum resident set size (KB) = 662984 Test 034 control_restart_qr_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/control_decomp_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_decomp_p8 Checking test 035 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1717,14 +1717,14 @@ Checking test 035 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 188.630372 -The maximum resident set size (KB) = 1483496 +The total amount of wall time = 182.521279 +The maximum resident set size (KB) = 1479688 Test 035 control_decomp_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/control_2threads_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_2threads_p8 Checking test 036 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1767,14 +1767,14 @@ Checking test 036 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 160.048484 -The maximum resident set size (KB) = 1571336 +The total amount of wall time = 157.635867 +The maximum resident set size (KB) = 1570716 Test 036 control_2threads_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/control_p8_lndp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_p8_lndp Checking test 037 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1793,14 +1793,14 @@ Checking test 037 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 321.848372 -The maximum resident set size (KB) = 1485160 +The total amount of wall time = 322.477536 +The maximum resident set size (KB) = 1486080 Test 037 control_p8_lndp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_rrtmgp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/control_p8_rrtmgp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_rrtmgp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_p8_rrtmgp Checking test 038 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1847,14 +1847,14 @@ Checking test 038 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 238.431170 -The maximum resident set size (KB) = 1545424 +The total amount of wall time = 235.121222 +The maximum resident set size (KB) = 1546444 Test 038 control_p8_rrtmgp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_mynn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/control_p8_mynn +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_mynn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_p8_mynn Checking test 039 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1901,14 +1901,14 @@ Checking test 039 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 183.812620 -The maximum resident set size (KB) = 1486928 +The total amount of wall time = 181.587118 +The maximum resident set size (KB) = 1496676 Test 039 control_p8_mynn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/merra2_thompson -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/merra2_thompson +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/merra2_thompson +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/merra2_thompson Checking test 040 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1955,14 +1955,14 @@ Checking test 040 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 206.601958 -The maximum resident set size (KB) = 1493016 +The total amount of wall time = 204.419087 +The maximum resident set size (KB) = 1494312 Test 040 merra2_thompson PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/regional_control +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/regional_control Checking test 041 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1973,28 +1973,28 @@ Checking test 041 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 288.059998 -The maximum resident set size (KB) = 651904 +The total amount of wall time = 290.429088 +The maximum resident set size (KB) = 651684 Test 041 regional_control PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/regional_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/regional_restart Checking test 042 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 159.446715 -The maximum resident set size (KB) = 653164 +The total amount of wall time = 157.732425 +The maximum resident set size (KB) = 651880 Test 042 regional_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/regional_control_qr +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/regional_control_qr Checking test 043 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2005,28 +2005,28 @@ Checking test 043 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 288.155027 -The maximum resident set size (KB) = 656560 +The total amount of wall time = 289.170969 +The maximum resident set size (KB) = 655852 Test 043 regional_control_qr PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/regional_restart_qr +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/regional_restart_qr Checking test 044 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 158.658193 -The maximum resident set size (KB) = 651996 +The total amount of wall time = 156.769625 +The maximum resident set size (KB) = 652304 Test 044 regional_restart_qr PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/regional_decomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/regional_decomp Checking test 045 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2037,14 +2037,14 @@ Checking test 045 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 311.630567 -The maximum resident set size (KB) = 654812 +The total amount of wall time = 306.472941 +The maximum resident set size (KB) = 652172 Test 045 regional_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/regional_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/regional_2threads Checking test 046 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2055,14 +2055,14 @@ Checking test 046 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 183.851510 -The maximum resident set size (KB) = 691524 +The total amount of wall time = 178.725528 +The maximum resident set size (KB) = 700932 Test 046 regional_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_noquilt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/regional_noquilt +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_noquilt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/regional_noquilt Checking test 047 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2070,28 +2070,28 @@ Checking test 047 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 326.259075 -The maximum resident set size (KB) = 644928 +The total amount of wall time = 314.490186 +The maximum resident set size (KB) = 645324 Test 047 regional_noquilt PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/regional_netcdf_parallel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/regional_netcdf_parallel Checking test 048 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK -The total amount of wall time = 285.697158 -The maximum resident set size (KB) = 653512 +The total amount of wall time = 291.272505 +The maximum resident set size (KB) = 648916 Test 048 regional_netcdf_parallel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/regional_2dwrtdecomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/regional_2dwrtdecomp Checking test 049 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2102,14 +2102,14 @@ Checking test 049 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 301.533478 -The maximum resident set size (KB) = 657576 +The total amount of wall time = 293.500139 +The maximum resident set size (KB) = 656644 Test 049 regional_2dwrtdecomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/fv3_regional_wofs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/regional_wofs +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/fv3_regional_wofs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/regional_wofs Checking test 050 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2120,14 +2120,14 @@ Checking test 050 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 363.075807 -The maximum resident set size (KB) = 342784 +The total amount of wall time = 362.082661 +The maximum resident set size (KB) = 339704 Test 050 regional_wofs PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/rap_control +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rap_control Checking test 051 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2174,14 +2174,14 @@ Checking test 051 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 419.512065 -The maximum resident set size (KB) = 893308 +The total amount of wall time = 420.013740 +The maximum resident set size (KB) = 893448 Test 051 rap_control PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/regional_spp_sppt_shum_skeb +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_spp_sppt_shum_skeb +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/regional_spp_sppt_shum_skeb Checking test 052 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2192,14 +2192,14 @@ Checking test 052 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 245.877082 -The maximum resident set size (KB) = 991084 +The total amount of wall time = 242.850251 +The maximum resident set size (KB) = 991268 Test 052 regional_spp_sppt_shum_skeb PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/rap_decomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rap_decomp Checking test 053 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2246,14 +2246,14 @@ Checking test 053 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 431.647290 -The maximum resident set size (KB) = 891044 +The total amount of wall time = 434.735098 +The maximum resident set size (KB) = 894772 Test 053 rap_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/rap_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rap_2threads Checking test 054 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2300,14 +2300,14 @@ Checking test 054 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 387.090083 -The maximum resident set size (KB) = 962012 +The total amount of wall time = 387.254254 +The maximum resident set size (KB) = 966500 Test 054 rap_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/rap_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rap_restart Checking test 055 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2346,14 +2346,14 @@ Checking test 055 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 213.356887 -The maximum resident set size (KB) = 645860 +The total amount of wall time = 212.084941 +The maximum resident set size (KB) = 646792 Test 055 rap_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/rap_sfcdiff +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rap_sfcdiff Checking test 056 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2400,14 +2400,14 @@ Checking test 056 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 420.506154 -The maximum resident set size (KB) = 892640 +The total amount of wall time = 421.556771 +The maximum resident set size (KB) = 891652 Test 056 rap_sfcdiff PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/rap_sfcdiff_decomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rap_sfcdiff_decomp Checking test 057 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2454,14 +2454,14 @@ Checking test 057 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 445.871513 -The maximum resident set size (KB) = 892864 +The total amount of wall time = 438.998952 +The maximum resident set size (KB) = 896944 Test 057 rap_sfcdiff_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/rap_sfcdiff_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rap_sfcdiff_restart Checking test 058 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2500,14 +2500,14 @@ Checking test 058 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 310.333809 -The maximum resident set size (KB) = 644816 +The total amount of wall time = 309.455117 +The maximum resident set size (KB) = 645776 Test 058 rap_sfcdiff_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/hrrr_control +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/hrrr_control Checking test 059 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2554,14 +2554,14 @@ Checking test 059 hrrr_control results .... 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.012136 -The maximum resident set size (KB) = 893140 +The total amount of wall time = 406.075247 +The maximum resident set size (KB) = 890956 Test 059 hrrr_control PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/hrrr_control_decomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/hrrr_control_decomp Checking test 060 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2608,14 +2608,14 @@ Checking test 060 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 419.443830 -The maximum resident set size (KB) = 891808 +The total amount of wall time = 422.222274 +The maximum resident set size (KB) = 889636 Test 060 hrrr_control_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/hrrr_control_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/hrrr_control_2threads Checking test 061 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2662,14 +2662,14 @@ Checking test 061 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 374.536337 -The maximum resident set size (KB) = 959012 +The total amount of wall time = 373.139199 +The maximum resident set size (KB) = 959304 Test 061 hrrr_control_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/hrrr_control_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/hrrr_control_restart Checking test 062 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2708,14 +2708,14 @@ Checking test 062 hrrr_control_restart results .... 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.958718 -The maximum resident set size (KB) = 640244 +The total amount of wall time = 299.322521 +The maximum resident set size (KB) = 641024 Test 062 hrrr_control_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1beta -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/rrfs_v1beta +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1beta +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rrfs_v1beta Checking test 063 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2762,14 +2762,14 @@ Checking test 063 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 420.327840 -The maximum resident set size (KB) = 888608 +The total amount of wall time = 417.676570 +The maximum resident set size (KB) = 891752 Test 063 rrfs_v1beta PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1nssl -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/rrfs_v1nssl +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1nssl +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rrfs_v1nssl Checking test 064 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2784,14 +2784,14 @@ Checking test 064 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 487.355895 -The maximum resident set size (KB) = 576624 +The total amount of wall time = 483.821681 +The maximum resident set size (KB) = 580344 Test 064 rrfs_v1nssl PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/rrfs_v1nssl_nohailnoccn +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rrfs_v1nssl_nohailnoccn Checking test 065 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2806,14 +2806,14 @@ Checking test 065 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 469.610682 -The maximum resident set size (KB) = 568848 +The total amount of wall time = 471.365114 +The maximum resident set size (KB) = 570712 Test 065 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rrfs_smoke_conus13km_hrrr_warm Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2822,14 +2822,14 @@ Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 147.490671 -The maximum resident set size (KB) = 801584 +The total amount of wall time = 153.277226 +The maximum resident set size (KB) = 803820 Test 066 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 067 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2838,14 +2838,14 @@ Checking test 067 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 103.480400 -The maximum resident set size (KB) = 803096 +The total amount of wall time = 108.865101 +The maximum resident set size (KB) = 806048 Test 067 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/rrfs_conus13km_hrrr_warm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rrfs_conus13km_hrrr_warm Checking test 068 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2854,14 +2854,14 @@ Checking test 068 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 133.913167 -The maximum resident set size (KB) = 778744 +The total amount of wall time = 139.924329 +The maximum resident set size (KB) = 779776 Test 068 rrfs_conus13km_hrrr_warm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rrfs_smoke_conus13km_radar_tten_warm Checking test 069 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2870,26 +2870,26 @@ Checking test 069 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 151.405049 -The maximum resident set size (KB) = 801252 +The total amount of wall time = 153.276969 +The maximum resident set size (KB) = 810760 Test 069 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 070 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 67.930250 -The maximum resident set size (KB) = 759984 +The total amount of wall time = 68.069474 +The maximum resident set size (KB) = 762212 Test 070 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmg -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/control_csawmg +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmg +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_csawmg Checking test 071 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2900,14 +2900,14 @@ Checking test 071 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 346.750302 -The maximum resident set size (KB) = 587044 +The total amount of wall time = 348.330629 +The maximum resident set size (KB) = 587284 Test 071 control_csawmg PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmgt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/control_csawmgt +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmgt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_csawmgt Checking test 072 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2918,14 +2918,14 @@ Checking test 072 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 343.630575 -The maximum resident set size (KB) = 585656 +The total amount of wall time = 347.866244 +The maximum resident set size (KB) = 588456 Test 072 control_csawmgt PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_ras -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/control_ras +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_ras +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_ras Checking test 073 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2936,26 +2936,26 @@ Checking test 073 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 183.408393 -The maximum resident set size (KB) = 556564 +The total amount of wall time = 181.804696 +The maximum resident set size (KB) = 556216 Test 073 control_ras PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wam -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/control_wam +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wam +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_wam Checking test 074 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 117.767828 -The maximum resident set size (KB) = 354232 +The total amount of wall time = 118.406801 +The maximum resident set size (KB) = 279172 Test 074 control_wam PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/control_p8_faster +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_p8_faster Checking test 075 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3002,14 +3002,14 @@ Checking test 075 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 176.327798 -The maximum resident set size (KB) = 1494292 +The total amount of wall time = 175.123273 +The maximum resident set size (KB) = 1485816 Test 075 control_p8_faster PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_control_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/regional_control_faster +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/regional_control_faster Checking test 076 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3020,56 +3020,56 @@ Checking test 076 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 284.603265 -The maximum resident set size (KB) = 658828 +The total amount of wall time = 282.395317 +The maximum resident set size (KB) = 658536 Test 076 regional_control_faster PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 077 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 919.945169 -The maximum resident set size (KB) = 830124 +The total amount of wall time = 898.980681 +The maximum resident set size (KB) = 829560 Test 077 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 078 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 525.455984 -The maximum resident set size (KB) = 832144 +The total amount of wall time = 518.790152 +The maximum resident set size (KB) = 836376 Test 078 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/rrfs_conus13km_hrrr_warm_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rrfs_conus13km_hrrr_warm_debug Checking test 079 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 807.373344 -The maximum resident set size (KB) = 804252 +The total amount of wall time = 808.289570 +The maximum resident set size (KB) = 804604 Test 079 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_CubedSphereGrid_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/control_CubedSphereGrid_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_CubedSphereGrid_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_CubedSphereGrid_debug Checking test 080 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3096,334 +3096,334 @@ Checking test 080 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 159.753943 -The maximum resident set size (KB) = 673260 +The total amount of wall time = 158.304513 +The maximum resident set size (KB) = 677868 Test 080 control_CubedSphereGrid_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/control_wrtGauss_netcdf_parallel_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_wrtGauss_netcdf_parallel_debug Checking test 081 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 159.998413 -The maximum resident set size (KB) = 674360 +The total amount of wall time = 157.812708 +The maximum resident set size (KB) = 674572 Test 081 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_stochy_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/control_stochy_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_stochy_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_stochy_debug Checking test 082 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 179.275465 -The maximum resident set size (KB) = 681744 +The total amount of wall time = 178.512836 +The maximum resident set size (KB) = 683444 Test 082 control_stochy_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/control_lndp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_lndp_debug Checking test 083 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 161.380807 -The maximum resident set size (KB) = 688468 +The total amount of wall time = 171.628039 +The maximum resident set size (KB) = 684232 Test 083 control_lndp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmg_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/control_csawmg_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmg_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_csawmg_debug Checking test 084 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 255.567715 -The maximum resident set size (KB) = 722260 +The total amount of wall time = 256.184904 +The maximum resident set size (KB) = 717620 Test 084 control_csawmg_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_csawmgt_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/control_csawmgt_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmgt_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_csawmgt_debug Checking test 085 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 251.388928 -The maximum resident set size (KB) = 721784 +The total amount of wall time = 249.048542 +The maximum resident set size (KB) = 719236 Test 085 control_csawmgt_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_ras_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/control_ras_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_ras_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_ras_debug Checking test 086 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 164.068227 -The maximum resident set size (KB) = 690432 +The total amount of wall time = 161.184289 +The maximum resident set size (KB) = 689968 Test 086 control_ras_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/control_diag_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_diag_debug Checking test 087 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 164.895503 -The maximum resident set size (KB) = 734632 +The total amount of wall time = 162.191288 +The maximum resident set size (KB) = 736064 Test 087 control_diag_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_debug_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/control_debug_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_debug_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_debug_p8 Checking test 088 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 186.210026 -The maximum resident set size (KB) = 1505972 +The total amount of wall time = 186.650628 +The maximum resident set size (KB) = 1507560 Test 088 control_debug_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/regional_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/regional_debug Checking test 089 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1039.310289 -The maximum resident set size (KB) = 675692 +The total amount of wall time = 1047.654003 +The maximum resident set size (KB) = 677760 Test 089 regional_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/rap_control_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rap_control_debug Checking test 090 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 296.536180 -The maximum resident set size (KB) = 1055532 +The total amount of wall time = 297.791519 +The maximum resident set size (KB) = 1054888 Test 090 rap_control_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/hrrr_control_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/hrrr_control_debug Checking test 091 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 291.298851 -The maximum resident set size (KB) = 1048084 +The total amount of wall time = 290.109656 +The maximum resident set size (KB) = 1046884 Test 091 hrrr_control_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/rap_unified_drag_suite_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rap_unified_drag_suite_debug Checking test 092 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.609551 -The maximum resident set size (KB) = 1056028 +The total amount of wall time = 298.905103 +The maximum resident set size (KB) = 1057952 Test 092 rap_unified_drag_suite_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/rap_diag_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rap_diag_debug Checking test 093 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 307.773738 -The maximum resident set size (KB) = 1139000 +The total amount of wall time = 311.216080 +The maximum resident set size (KB) = 1136036 Test 093 rap_diag_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/rap_cires_ugwp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rap_cires_ugwp_debug Checking test 094 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 302.779215 -The maximum resident set size (KB) = 1053140 +The total amount of wall time = 304.383521 +The maximum resident set size (KB) = 1052068 Test 094 rap_cires_ugwp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/rap_unified_ugwp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rap_unified_ugwp_debug Checking test 095 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 304.318843 -The maximum resident set size (KB) = 1055120 +The total amount of wall time = 303.204708 +The maximum resident set size (KB) = 1054512 Test 095 rap_unified_ugwp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/rap_lndp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rap_lndp_debug Checking test 096 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.880772 -The maximum resident set size (KB) = 1052800 +The total amount of wall time = 301.809692 +The maximum resident set size (KB) = 1056076 Test 096 rap_lndp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_flake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/rap_flake_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_flake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rap_flake_debug Checking test 097 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 296.529590 -The maximum resident set size (KB) = 1053588 +The total amount of wall time = 298.407637 +The maximum resident set size (KB) = 1053640 Test 097 rap_flake_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_progcld_thompson_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/rap_progcld_thompson_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_progcld_thompson_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rap_progcld_thompson_debug Checking test 098 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.022986 -The maximum resident set size (KB) = 1051492 +The total amount of wall time = 297.035714 +The maximum resident set size (KB) = 1055808 Test 098 rap_progcld_thompson_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_noah_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/rap_noah_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_noah_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rap_noah_debug Checking test 099 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 290.461002 -The maximum resident set size (KB) = 1054368 +The total amount of wall time = 290.766922 +The maximum resident set size (KB) = 1052284 Test 099 rap_noah_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_sfcdiff_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/rap_sfcdiff_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rap_sfcdiff_debug Checking test 100 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 296.870818 -The maximum resident set size (KB) = 1054136 +The total amount of wall time = 297.807315 +The maximum resident set size (KB) = 1057488 Test 100 rap_sfcdiff_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rap_noah_sfcdiff_cires_ugwp_debug Checking test 101 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 487.799361 -The maximum resident set size (KB) = 1055536 +The total amount of wall time = 488.568616 +The maximum resident set size (KB) = 1052148 Test 101 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rrfs_v1beta_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/rrfs_v1beta_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1beta_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rrfs_v1beta_debug Checking test 102 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 290.357311 -The maximum resident set size (KB) = 1048416 +The total amount of wall time = 293.703725 +The maximum resident set size (KB) = 1052644 Test 102 rrfs_v1beta_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_wam_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/control_wam_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wam_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_wam_debug Checking test 103 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 298.839148 -The maximum resident set size (KB) = 487108 +The total amount of wall time = 296.527311 +The maximum resident set size (KB) = 301008 Test 103 control_wam_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3434,14 +3434,14 @@ Checking test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 232.756036 -The maximum resident set size (KB) = 892812 +The total amount of wall time = 233.786797 +The maximum resident set size (KB) = 892668 Test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/rap_control_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rap_control_dyn32_phy32 Checking test 105 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3488,14 +3488,14 @@ Checking test 105 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 351.888491 -The maximum resident set size (KB) = 782264 +The total amount of wall time = 351.043936 +The maximum resident set size (KB) = 781568 Test 105 rap_control_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/hrrr_control_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/hrrr_control_dyn32_phy32 Checking test 106 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3542,14 +3542,14 @@ Checking test 106 hrrr_control_dyn32_phy32 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 = 188.046014 -The maximum resident set size (KB) = 777980 +The total amount of wall time = 190.987790 +The maximum resident set size (KB) = 779016 Test 106 hrrr_control_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/rap_2threads_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rap_2threads_dyn32_phy32 Checking test 107 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3596,14 +3596,14 @@ Checking test 107 rap_2threads_dyn32_phy32 results .... 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.221302 -The maximum resident set size (KB) = 835668 +The total amount of wall time = 333.321258 +The maximum resident set size (KB) = 840080 Test 107 rap_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/hrrr_control_2threads_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/hrrr_control_2threads_dyn32_phy32 Checking test 108 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3650,14 +3650,14 @@ Checking test 108 hrrr_control_2threads_dyn32_phy32 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 = 172.691398 -The maximum resident set size (KB) = 830852 +The total amount of wall time = 178.238328 +The maximum resident set size (KB) = 835596 Test 108 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/hrrr_control_decomp_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/hrrr_control_decomp_dyn32_phy32 Checking test 109 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3704,14 +3704,14 @@ Checking test 109 hrrr_control_decomp_dyn32_phy32 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 = 194.872778 -The maximum resident set size (KB) = 779176 +The total amount of wall time = 194.506192 +The maximum resident set size (KB) = 779860 Test 109 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/rap_restart_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rap_restart_dyn32_phy32 Checking test 110 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3750,14 +3750,14 @@ Checking test 110 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 257.764094 -The maximum resident set size (KB) = 619112 +The total amount of wall time = 258.355933 +The maximum resident set size (KB) = 614684 Test 110 rap_restart_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/hrrr_control_restart_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/hrrr_control_restart_dyn32_phy32 Checking test 111 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3796,14 +3796,14 @@ Checking test 111 hrrr_control_restart_dyn32_phy32 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 = 96.913280 -The maximum resident set size (KB) = 612500 +The total amount of wall time = 98.629208 +The maximum resident set size (KB) = 610560 Test 111 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/rap_control_dyn64_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rap_control_dyn64_phy32 Checking test 112 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3850,81 +3850,81 @@ Checking test 112 rap_control_dyn64_phy32 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 = 235.500920 -The maximum resident set size (KB) = 794836 +The total amount of wall time = 233.518293 +The maximum resident set size (KB) = 795556 Test 112 rap_control_dyn64_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/rap_control_debug_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rap_control_debug_dyn32_phy32 Checking test 113 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 288.767849 -The maximum resident set size (KB) = 941732 +The total amount of wall time = 291.166316 +The maximum resident set size (KB) = 939620 Test 113 rap_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/hrrr_control_debug_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/hrrr_control_debug_dyn32_phy32 Checking test 114 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 287.892186 -The maximum resident set size (KB) = 938492 +The total amount of wall time = 286.838919 +The maximum resident set size (KB) = 936124 Test 114 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/rap_control_dyn64_phy32_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rap_control_dyn64_phy32_debug Checking test 115 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 296.409123 -The maximum resident set size (KB) = 961048 +The total amount of wall time = 294.530748 +The maximum resident set size (KB) = 954648 Test 115 rap_control_dyn64_phy32_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/hafs_regional_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/hafs_regional_atm Checking test 116 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 271.656614 -The maximum resident set size (KB) = 821880 +The total amount of wall time = 272.951705 +The maximum resident set size (KB) = 820444 Test 116 hafs_regional_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/hafs_regional_atm_thompson_gfdlsf +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/hafs_regional_atm_thompson_gfdlsf Checking test 117 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 317.519026 -The maximum resident set size (KB) = 1177968 +The total amount of wall time = 316.640575 +The maximum resident set size (KB) = 1175740 Test 117 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/hafs_regional_atm_ocn +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/hafs_regional_atm_ocn Checking test 118 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3933,14 +3933,14 @@ Checking test 118 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 393.394290 -The maximum resident set size (KB) = 859156 +The total amount of wall time = 393.659209 +The maximum resident set size (KB) = 856312 Test 118 hafs_regional_atm_ocn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/hafs_regional_atm_wav +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/hafs_regional_atm_wav Checking test 119 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3949,14 +3949,14 @@ Checking test 119 hafs_regional_atm_wav results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 711.885205 -The maximum resident set size (KB) = 888132 +The total amount of wall time = 707.665131 +The maximum resident set size (KB) = 890280 Test 119 hafs_regional_atm_wav PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/hafs_regional_atm_ocn_wav +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/hafs_regional_atm_ocn_wav Checking test 120 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3967,28 +3967,28 @@ Checking test 120 hafs_regional_atm_ocn_wav 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 = 908.281276 -The maximum resident set size (KB) = 914960 +The total amount of wall time = 906.201459 +The maximum resident set size (KB) = 910684 Test 120 hafs_regional_atm_ocn_wav PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/hafs_regional_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/hafs_regional_1nest_atm Checking test 121 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 334.778105 -The maximum resident set size (KB) = 394352 +The total amount of wall time = 334.261709 +The maximum resident set size (KB) = 393240 Test 121 hafs_regional_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/hafs_regional_telescopic_2nests_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/hafs_regional_telescopic_2nests_atm Checking test 122 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3997,28 +3997,28 @@ Checking test 122 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 405.011124 -The maximum resident set size (KB) = 401452 +The total amount of wall time = 404.901220 +The maximum resident set size (KB) = 402044 Test 122 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_global_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/hafs_global_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_global_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/hafs_global_1nest_atm Checking test 123 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 172.789896 -The maximum resident set size (KB) = 265148 +The total amount of wall time = 175.212235 +The maximum resident set size (KB) = 287572 Test 123 hafs_global_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_global_multiple_4nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/hafs_global_multiple_4nests_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_global_multiple_4nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/hafs_global_multiple_4nests_atm Checking test 124 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4036,14 +4036,14 @@ Checking test 124 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -The total amount of wall time = 490.794256 -The maximum resident set size (KB) = 344136 +The total amount of wall time = 487.641496 +The maximum resident set size (KB) = 349052 Test 124 hafs_global_multiple_4nests_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/hafs_regional_specified_moving_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/hafs_regional_specified_moving_1nest_atm Checking test 125 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4052,28 +4052,28 @@ Checking test 125 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 219.910249 -The maximum resident set size (KB) = 406184 +The total amount of wall time = 219.603381 +The maximum resident set size (KB) = 408240 Test 125 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/hafs_regional_storm_following_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/hafs_regional_storm_following_1nest_atm Checking test 126 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 206.921008 -The maximum resident set size (KB) = 408708 +The total amount of wall time = 206.404911 +The maximum resident set size (KB) = 407304 Test 126 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/hafs_regional_storm_following_1nest_atm_ocn Checking test 127 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4082,42 +4082,42 @@ Checking test 127 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 253.652873 -The maximum resident set size (KB) = 467364 +The total amount of wall time = 255.489896 +The maximum resident set size (KB) = 467380 Test 127 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/hafs_global_storm_following_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_global_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/hafs_global_storm_following_1nest_atm Checking test 128 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 86.098605 -The maximum resident set size (KB) = 281208 +The total amount of wall time = 88.058309 +The maximum resident set size (KB) = 284040 Test 128 hafs_global_storm_following_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 129 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 807.129268 -The maximum resident set size (KB) = 498036 +The total amount of wall time = 807.548133 +The maximum resident set size (KB) = 498656 Test 129 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 130 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4128,14 +4128,14 @@ Checking test 130 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -The total amount of wall time = 505.381326 -The maximum resident set size (KB) = 521472 +The total amount of wall time = 503.611338 +The maximum resident set size (KB) = 523184 Test 130 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/control_p8_atmlnd_sbs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/control_p8_atmlnd_sbs +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_atmlnd_sbs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_p8_atmlnd_sbs Checking test 131 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4220,14 +4220,14 @@ Checking test 131 control_p8_atmlnd_sbs 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 = 238.497700 -The maximum resident set size (KB) = 1541964 +The total amount of wall time = 246.928592 +The maximum resident set size (KB) = 1545180 Test 131 control_p8_atmlnd_sbs PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/atmaero_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/atmaero_control_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/atmaero_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/atmaero_control_p8 Checking test 132 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4271,14 +4271,14 @@ Checking test 132 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 249.812914 -The maximum resident set size (KB) = 2815360 +The total amount of wall time = 249.392604 +The maximum resident set size (KB) = 2811828 Test 132 atmaero_control_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/atmaero_control_p8_rad -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/atmaero_control_p8_rad +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/atmaero_control_p8_rad +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/atmaero_control_p8_rad Checking test 133 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4322,14 +4322,14 @@ Checking test 133 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 283.886965 -The maximum resident set size (KB) = 2876084 +The total amount of wall time = 284.789294 +The maximum resident set size (KB) = 2876684 Test 133 atmaero_control_p8_rad PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/atmaero_control_p8_rad_micro +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/atmaero_control_p8_rad_micro +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/atmaero_control_p8_rad_micro Checking test 134 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4373,14 +4373,14 @@ Checking test 134 atmaero_control_p8_rad_micro results .... 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.744649 -The maximum resident set size (KB) = 2889628 +The total amount of wall time = 290.295771 +The maximum resident set size (KB) = 2889168 Test 134 atmaero_control_p8_rad_micro PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_atmaq -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/regional_atmaq +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_atmaq +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/regional_atmaq Checking test 135 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4396,14 +4396,14 @@ Checking test 135 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 681.279393 -The maximum resident set size (KB) = 1268920 +The total amount of wall time = 684.431582 +The maximum resident set size (KB) = 1265464 Test 135 regional_atmaq PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_atmaq_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/regional_atmaq_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_atmaq_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/regional_atmaq_debug Checking test 136 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4417,14 +4417,14 @@ Checking test 136 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1288.006908 -The maximum resident set size (KB) = 1293640 +The total amount of wall time = 1299.507460 +The maximum resident set size (KB) = 1295656 Test 136 regional_atmaq_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230401/INTEL/regional_atmaq_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48599/regional_atmaq_faster +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_atmaq_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/regional_atmaq_faster Checking test 137 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4440,12 +4440,12 @@ Checking test 137 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 636.916746 -The maximum resident set size (KB) = 1255876 +The total amount of wall time = 638.833184 +The maximum resident set size (KB) = 1260944 Test 137 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Tue Apr 4 20:05:14 UTC 2023 -Elapsed time: 01h:09m:58s. Have a nice day! +Thu Apr 6 01:46:54 UTC 2023 +Elapsed time: 01h:04m:35s. Have a nice day! diff --git a/tests/rt.sh b/tests/rt.sh index 1e04daa9806..66081f37520 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -446,7 +446,7 @@ if [[ $TESTS_FILE =~ '35d' ]] || [[ $TESTS_FILE =~ 'weekly' ]]; then fi -BL_DATE=20230401 +BL_DATE=20230405 RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-${BL_DATE}/${RT_COMPILER^^}} From be95f64f8c41690bff43c45250dcf6702e4400ba Mon Sep 17 00:00:00 2001 From: Denise Worthen Date: Tue, 11 Apr 2023 08:35:30 -0400 Subject: [PATCH 18/30] add cmeps capable atm-wav test (#1407) * orginal version is atmwm (m=multi); atmw = cmeps/mesh cap * input_nml for control_p8 and atmwave p8 test are different only in cplwav and cplwav2atm logicals --- CMakeLists.txt | 8 +- cmake/configure_apps.cmake | 6 +- tests/RegressionTests_cheyenne.gnu.log | 438 ++-- tests/RegressionTests_cheyenne.intel.log | 1433 +++++++------ tests/RegressionTests_gaea.intel.log | 1481 +++++++------ tests/RegressionTests_hera.gnu.log | 586 +++-- tests/RegressionTests_hera.intel.log | 1882 +++++++++-------- tests/RegressionTests_jet.intel.log | 1305 ++++++------ tests/RegressionTests_orion.intel.log | 1485 ++++++------- tests/RegressionTests_wcoss2.intel.log | 1166 +++++----- tests/default_vars.sh | 44 +- tests/fv3_conf/control_run.IN | 11 +- tests/fv3_conf/cpld_control_run.IN | 7 +- tests/fv3_conf/hafs_ww3_run.IN | 5 +- tests/parm/nems.configure.atmw.IN | 94 + tests/parm/ww3_points.list | 240 +++ tests/parm/ww3_shel.nml.IN | 20 + tests/rt.conf | 7 +- tests/rt.sh | 2 +- tests/run_test.sh | 3 +- tests/tests/atmwav_control_noaero_p8 | 203 ++ tests/tests/control_atmwav | 3 +- tests/tests/cpld_bmark_p8 | 8 +- tests/tests/cpld_bmark_p8_35d | 8 +- tests/tests/cpld_control_c192_p8 | 1 + tests/tests/cpld_restart_bmark_p8 | 7 +- tests/tests/cpld_restart_c192_p8 | 7 +- tests/tests/cpld_restart_p8 | 6 - tests/tests/cpld_restart_qr_p8 | 6 - tests/tests/hafs_regional_atm_ocn_wav | 22 +- tests/tests/hafs_regional_atm_wav | 26 +- ...regional_storm_following_1nest_atm_ocn_wav | 22 +- 32 files changed, 5728 insertions(+), 4814 deletions(-) create mode 100644 tests/parm/nems.configure.atmw.IN create mode 100644 tests/parm/ww3_points.list create mode 100644 tests/parm/ww3_shel.nml.IN create mode 100644 tests/tests/atmwav_control_noaero_p8 diff --git a/CMakeLists.txt b/CMakeLists.txt index 91fa89b8060..eac52d64240 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -16,7 +16,7 @@ list(APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/CMakeModules/Modules) ############################################################################### # Valid applications and choices -list(APPEND VALID_APPS ATM ATMAERO ATMAQ ATMW ATML LND S2S S2SA S2SW S2SWA S2SWAL HAFS HAFSW HAFS-ALL NG-GODAS) +list(APPEND VALID_APPS ATM ATMAERO ATMAQ ATMW ATMWM ATML LND S2S S2SA S2SW S2SWA S2SWAL HAFS HAFSW HAFS-ALL NG-GODAS) set(APP NONE CACHE BOOL "Application Name") if(NOT (APP IN_LIST VALID_APPS)) message(FATAL_ERROR "${APP} is not a valid application.\nValid Applications are: ${VALID_APPS}") @@ -69,7 +69,7 @@ set(MOVING_NEST OFF CACHE BOOL "Enable moving nest code") set(OPENMP ON CACHE BOOL "Enable OpenMP threading") set(PARALLEL_NETCDF OFF CACHE BOOL "Enable parallel NetCDF") set(JEDI_DRIVER OFF CACHE BOOL "Enable JEDI as top level driver") -set(CMEPS_AOFLUX OFF CACHE BOOL "Enable atmosphere-ocean flux calculation in mediator") +set(CMEPS_AOFLUX OFF CACHE BOOL "Enable atmosphere-ocean flux calculation in mediator") set(CMAKE_Platform $ENV{CMAKE_Platform}) if(CMAKE_Platform) @@ -148,7 +148,7 @@ if(FMS) elseif (APP MATCHES "^(S2S|S2SA|S2SW|S2SWA|S2SWAL|NG-GODAS)$") add_library(fms ALIAS FMS::fms_r8) endif() - if(APP MATCHES "^(ATM|ATMAERO|ATMAQ|ATMW|ATML|LND|HAFS|HAFS-ALL)$") + if(APP MATCHES "^(ATM|ATMAERO|ATMAQ|ATMWM|ATMW|ATML|LND|HAFS|HAFS-ALL)$") if(32BIT) add_library(fms ALIAS FMS::fms_r4) else() @@ -201,7 +201,7 @@ endif() ### Wave components [WW3] ############################################################################### if(WW3) - if(APP MATCHES "^(ATMW)$") + if(APP MATCHES "^(ATMWM)$") set(SWITCH "multi_esmf" CACHE STRING "ESMF cap") set(UFS_CAP "MULTI_ESMF" CACHE STRING "Build with MULTI_ESMF cap") list(APPEND _ufs_defs_private FRONT_WW3=WMESMFMD) diff --git a/cmake/configure_apps.cmake b/cmake/configure_apps.cmake index d02ea508e59..23205f89667 100644 --- a/cmake/configure_apps.cmake +++ b/cmake/configure_apps.cmake @@ -13,13 +13,17 @@ ############################################################################### ### Configure Application Components ############################################################################### -if(APP MATCHES "^(ATM|ATMW|ATMAQ|ATML)$") +if(APP MATCHES "^(ATM|ATMW|ATMWM|ATMAQ|ATML)$") set(FMS ON CACHE BOOL "Enable FMS" FORCE) set(FV3 ON CACHE BOOL "Enable FV3" FORCE) set(STOCH_PHYS ON CACHE BOOL "Enable Stochastic Physics" FORCE) if(APP MATCHES "ATMW") set(WW3 ON CACHE BOOL "Enable WAVEWATCH III" FORCE) message("Configuring UFS app in Atmosphere with Waves mode") + set(CMEPS ON CACHE BOOL "Enable CMEPS" FORCE) + elseif(APP MATCHES "ATMWM") + set(WW3 ON CACHE BOOL "Enable WAVEWATCH III" FORCE) + message("Configuring UFS app in Atmosphere with Waves mode") elseif(APP MATCHES "ATMAQ") set(AQM ON CACHE BOOL "Enable AQM" FORCE) message("Configuring UFS app in Atmosphere with Air Quality mode") diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index c561f7d4790..e4942b76bf2 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,21 +1,21 @@ -Wed Apr 5 20:08:19 MDT 2023 +Sun Apr 9 20:08:23 MDT 2023 Start Regression test -Compile 001 elapsed time 386 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 402 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 853 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 190 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 380 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 1079 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 382 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 397 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 841 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 183 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 375 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 1074 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile 007 elapsed time 846 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 845 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 627 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 567 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 350 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 012 elapsed time 298 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/control_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/control_c48 +Compile 008 elapsed time 859 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 643 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 568 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 349 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 012 elapsed time 297 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/control_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/control_c48 Checking test 001 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -54,14 +54,14 @@ Checking test 001 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 820.203183 -0:The maximum resident set size (KB) = 679744 +0:The total amount of wall time = 820.970224 +0:The maximum resident set size (KB) = 679748 Test 001 control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/control_stochy +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/control_stochy +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/control_stochy Checking test 002 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -72,14 +72,14 @@ Checking test 002 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 173.719421 -0:The maximum resident set size (KB) = 443696 +0:The total amount of wall time = 176.431440 +0:The maximum resident set size (KB) = 443272 Test 002 control_stochy PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/control_ras -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/control_ras +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/control_ras +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/control_ras Checking test 003 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -90,14 +90,14 @@ Checking test 003 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 294.337464 -0:The maximum resident set size (KB) = 452180 +0:The total amount of wall time = 287.861415 +0:The maximum resident set size (KB) = 452052 Test 003 control_ras PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/control_p8 Checking test 004 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -144,14 +144,14 @@ Checking test 004 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 311.621845 -0:The maximum resident set size (KB) = 1224584 +0:The total amount of wall time = 302.489753 +0:The maximum resident set size (KB) = 1224952 Test 004 control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rap_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/rap_control Checking test 005 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -198,14 +198,14 @@ Checking test 005 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 713.539688 -0:The maximum resident set size (KB) = 791684 +0:The total amount of wall time = 711.682676 +0:The maximum resident set size (KB) = 791680 Test 005 rap_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rap_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/rap_decomp Checking test 006 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -252,14 +252,14 @@ Checking test 006 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 719.556774 -0:The maximum resident set size (KB) = 791432 +0:The total amount of wall time = 712.008557 +0:The maximum resident set size (KB) = 791496 Test 006 rap_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rap_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/rap_2threads Checking test 007 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -306,14 +306,14 @@ Checking test 007 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 651.838869 -0:The maximum resident set size (KB) = 865472 +0:The total amount of wall time = 646.575162 +0:The maximum resident set size (KB) = 865888 Test 007 rap_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rap_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/rap_restart Checking test 008 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -352,14 +352,14 @@ Checking test 008 rap_restart results .... Comparing 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.592846 -0:The maximum resident set size (KB) = 538952 +0:The total amount of wall time = 351.543950 +0:The maximum resident set size (KB) = 538972 Test 008 rap_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rap_sfcdiff +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/rap_sfcdiff Checking test 009 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -406,14 +406,14 @@ Checking test 009 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 714.606022 -0:The maximum resident set size (KB) = 791976 +0:The total amount of wall time = 714.355917 +0:The maximum resident set size (KB) = 791884 Test 009 rap_sfcdiff PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rap_sfcdiff_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/rap_sfcdiff_decomp Checking test 010 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -460,14 +460,14 @@ Checking test 010 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 718.158590 -0:The maximum resident set size (KB) = 791308 +0:The total amount of wall time = 723.163712 +0:The maximum resident set size (KB) = 791316 Test 010 rap_sfcdiff_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rap_sfcdiff_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/rap_sfcdiff_restart Checking test 011 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -506,14 +506,14 @@ Checking test 011 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 522.172457 -0:The maximum resident set size (KB) = 544484 +0:The total amount of wall time = 521.850532 +0:The maximum resident set size (KB) = 544228 Test 011 rap_sfcdiff_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/hrrr_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/hrrr_control Checking test 012 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -560,14 +560,14 @@ Checking test 012 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 690.323702 -0:The maximum resident set size (KB) = 789092 +0:The total amount of wall time = 691.834734 +0:The maximum resident set size (KB) = 789116 Test 012 hrrr_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/hrrr_control_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/hrrr_control_2threads Checking test 013 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -614,14 +614,14 @@ Checking test 013 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 626.869514 -0:The maximum resident set size (KB) = 860244 +0:The total amount of wall time = 626.605950 +0:The maximum resident set size (KB) = 860660 Test 013 hrrr_control_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/hrrr_control_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/hrrr_control_decomp Checking test 014 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -668,14 +668,14 @@ Checking test 014 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 686.208501 -0:The maximum resident set size (KB) = 788848 +0:The total amount of wall time = 688.582340 +0:The maximum resident set size (KB) = 788772 Test 014 hrrr_control_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/hrrr_control_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/hrrr_control_restart Checking test 015 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -714,14 +714,14 @@ Checking test 015 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 510.286175 -0:The maximum resident set size (KB) = 540244 +0:The total amount of wall time = 507.261539 +0:The maximum resident set size (KB) = 540292 Test 015 hrrr_control_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rrfs_v1beta -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rrfs_v1beta +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rrfs_v1beta +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/rrfs_v1beta Checking test 016 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -768,14 +768,14 @@ Checking test 016 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 704.339533 -0:The maximum resident set size (KB) = 788808 +0:The total amount of wall time = 704.192064 +0:The maximum resident set size (KB) = 788776 Test 016 rrfs_v1beta PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/rrfs_smoke_conus13km_hrrr_warm Checking test 017 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -784,14 +784,14 @@ Checking test 017 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 232.389544 -0:The maximum resident set size (KB) = 636952 +0:The total amount of wall time = 230.487564 +0:The maximum resident set size (KB) = 636944 Test 017 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 018 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -800,14 +800,14 @@ Checking test 018 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 152.802218 -0:The maximum resident set size (KB) = 661268 +0:The total amount of wall time = 146.054047 +0:The maximum resident set size (KB) = 661196 Test 018 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rrfs_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/rrfs_conus13km_hrrr_warm Checking test 019 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -816,14 +816,14 @@ Checking test 019 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 211.684320 -0:The maximum resident set size (KB) = 615484 +0:The total amount of wall time = 212.378657 +0:The maximum resident set size (KB) = 615828 Test 019 rrfs_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/rrfs_smoke_conus13km_radar_tten_warm Checking test 020 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -832,234 +832,234 @@ Checking test 020 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 234.499074 -0:The maximum resident set size (KB) = 639300 +0:The total amount of wall time = 231.524904 +0:The maximum resident set size (KB) = 639316 Test 020 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 021 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 110.653052 -0:The maximum resident set size (KB) = 596520 +0:The total amount of wall time = 111.320954 +0:The maximum resident set size (KB) = 596600 Test 021 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/control_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/control_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/control_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/control_diag_debug Checking test 022 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 82.360775 -0:The maximum resident set size (KB) = 492040 +0:The total amount of wall time = 81.968554 +0:The maximum resident set size (KB) = 491876 Test 022 control_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/regional_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/regional_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/regional_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/regional_debug Checking test 023 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 475.298683 -0:The maximum resident set size (KB) = 567272 +0:The total amount of wall time = 474.112499 +0:The maximum resident set size (KB) = 567656 Test 023 regional_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rap_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rap_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/rap_control_debug Checking test 024 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 145.297581 -0:The maximum resident set size (KB) = 805572 +0:The total amount of wall time = 144.977452 +0:The maximum resident set size (KB) = 805596 Test 024 rap_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/hrrr_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/hrrr_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/hrrr_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/hrrr_control_debug Checking test 025 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 142.177776 -0:The maximum resident set size (KB) = 801432 +0:The total amount of wall time = 142.763994 +0:The maximum resident set size (KB) = 801356 Test 025 hrrr_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rap_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rap_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rap_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/rap_diag_debug Checking test 026 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 152.245369 -0:The maximum resident set size (KB) = 887972 +0:The total amount of wall time = 151.291881 +0:The maximum resident set size (KB) = 888012 Test 026 rap_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/rap_noah_sfcdiff_cires_ugwp_debug Checking test 027 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 233.467355 -0:The maximum resident set size (KB) = 804560 +0:The total amount of wall time = 234.375013 +0:The maximum resident set size (KB) = 804624 Test 027 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rap_progcld_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rap_progcld_thompson_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rap_progcld_thompson_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/rap_progcld_thompson_debug Checking test 028 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 145.127812 -0:The maximum resident set size (KB) = 805428 +0:The total amount of wall time = 145.988963 +0:The maximum resident set size (KB) = 805404 Test 028 rap_progcld_thompson_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rrfs_v1beta_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rrfs_v1beta_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rrfs_v1beta_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/rrfs_v1beta_debug Checking test 029 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 143.939482 -0:The maximum resident set size (KB) = 801108 +0:The total amount of wall time = 143.482968 +0:The maximum resident set size (KB) = 801064 Test 029 rrfs_v1beta_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/control_ras_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/control_ras_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/control_ras_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/control_ras_debug Checking test 030 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 80.234776 -0:The maximum resident set size (KB) = 446312 +0:The total amount of wall time = 80.406425 +0:The maximum resident set size (KB) = 446140 Test 030 control_ras_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/control_stochy_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/control_stochy_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/control_stochy_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/control_stochy_debug Checking test 031 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 88.389506 -0:The maximum resident set size (KB) = 438764 +0:The total amount of wall time = 88.237903 +0:The maximum resident set size (KB) = 438768 Test 031 control_stochy_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/control_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/control_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/control_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/control_debug_p8 Checking test 032 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 90.483329 -0:The maximum resident set size (KB) = 1220984 +0:The total amount of wall time = 91.628340 +0:The maximum resident set size (KB) = 1221424 Test 032 control_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 033 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 435.166829 -0:The maximum resident set size (KB) = 641652 +0:The total amount of wall time = 435.279223 +0:The maximum resident set size (KB) = 641620 Test 033 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 034 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 255.594807 -0:The maximum resident set size (KB) = 660812 +0:The total amount of wall time = 256.021905 +0:The maximum resident set size (KB) = 661420 Test 034 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rrfs_conus13km_hrrr_warm_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rrfs_conus13km_hrrr_warm_debugs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/rrfs_conus13km_hrrr_warm_debug Checking test 035 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 394.597782 -0:The maximum resident set size (KB) = 620416 +0:The total amount of wall time = 393.262160 +0:The maximum resident set size (KB) = 620428 Test 035 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/control_wam_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/control_wam_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/control_wam_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/control_wam_debug Checking test 036 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 139.234828 -0:The maximum resident set size (KB) = 182304 +0:The total amount of wall time = 139.243728 +0:The maximum resident set size (KB) = 182764 Test 036 control_wam_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rap_control_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/rap_control_dyn32_phy32 Checking test 037 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1106,14 +1106,14 @@ Checking test 037 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 700.957115 -0:The maximum resident set size (KB) = 673280 +0:The total amount of wall time = 698.577409 +0:The maximum resident set size (KB) = 673096 Test 037 rap_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/hrrr_control_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/hrrr_control_dyn32_phy32 Checking test 038 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1160,14 +1160,14 @@ Checking test 038 hrrr_control_dyn32_phy32 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 = 355.835023 -0:The maximum resident set size (KB) = 670832 +0:The total amount of wall time = 354.621202 +0:The maximum resident set size (KB) = 670684 Test 038 hrrr_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rap_2threads_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/rap_2threads_dyn32_phy32 Checking test 039 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1214,14 +1214,14 @@ Checking test 039 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 638.283018 -0:The maximum resident set size (KB) = 719624 +0:The total amount of wall time = 641.162632 +0:The maximum resident set size (KB) = 719488 Test 039 rap_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/hrrr_control_2threads_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/hrrr_control_2threads_dyn32_phy32 Checking test 040 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1268,14 +1268,14 @@ Checking test 040 hrrr_control_2threads_dyn32_phy32 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 = 320.044041 -0:The maximum resident set size (KB) = 716676 +0:The total amount of wall time = 320.060803 +0:The maximum resident set size (KB) = 716804 Test 040 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/hrrr_control_decomp_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/hrrr_control_decomp_dyn32_phy32 Checking test 041 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1322,14 +1322,14 @@ Checking test 041 hrrr_control_decomp_dyn32_phy32 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 = 353.921498 -0:The maximum resident set size (KB) = 670752 +0:The total amount of wall time = 354.584358 +0:The maximum resident set size (KB) = 670680 Test 041 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rap_restart_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/rap_restart_dyn32_phy32 Checking test 042 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1368,14 +1368,14 @@ Checking test 042 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 518.811221 -0:The maximum resident set size (KB) = 511312 +0:The total amount of wall time = 516.196609 +0:The maximum resident set size (KB) = 511256 Test 042 rap_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/hrrr_control_restart_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/hrrr_control_restart_dyn32_phy32 Checking test 043 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1414,14 +1414,14 @@ Checking test 043 hrrr_control_restart_dyn32_phy32 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 = 179.870658 -0:The maximum resident set size (KB) = 507124 +0:The total amount of wall time = 178.942940 +0:The maximum resident set size (KB) = 507552 Test 043 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rap_control_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rap_control_dyn64_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rap_control_dyn64_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/rap_control_dyn64_phy32 Checking test 044 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1468,56 +1468,56 @@ Checking test 044 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 412.280473 -0:The maximum resident set size (KB) = 692856 +0:The total amount of wall time = 413.639959 +0:The maximum resident set size (KB) = 693500 Test 044 rap_control_dyn64_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rap_control_debug_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/rap_control_debug_dyn32_phy32 Checking test 045 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 144.140106 -0:The maximum resident set size (KB) = 687848 +0:The total amount of wall time = 143.237291 +0:The maximum resident set size (KB) = 687888 Test 045 rap_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/hrrr_control_debug_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/hrrr_control_debug_dyn32_phy32 Checking test 046 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 140.445142 -0:The maximum resident set size (KB) = 684340 +0:The total amount of wall time = 141.405341 +0:The maximum resident set size (KB) = 683772 Test 046 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/rap_control_dyn64_phy32_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rap_control_debug_dyn64_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/rap_control_dyn64_phy32_debug Checking test 047 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 147.804961 -0:The maximum resident set size (KB) = 707604 +0:The total amount of wall time = 147.641110 +0:The maximum resident set size (KB) = 707648 Test 047 rap_control_dyn64_phy32_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/cpld_control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/cpld_control_p8 Checking test 048 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1582,14 +1582,14 @@ Checking test 048 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 501.776562 -0:The maximum resident set size (KB) = 3158772 +0:The total amount of wall time = 500.535798 +0:The maximum resident set size (KB) = 3159420 Test 048 cpld_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/cpld_control_nowave_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/cpld_control_c96_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/cpld_control_nowave_noaero_p8 Checking test 049 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1651,14 +1651,14 @@ Checking test 049 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 250.062030 -0:The maximum resident set size (KB) = 1240384 +0:The total amount of wall time = 248.705270 +0:The maximum resident set size (KB) = 1240280 Test 049 cpld_control_nowave_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/cpld_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/cpld_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/cpld_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/cpld_debug_p8 Checking test 050 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1711,25 +1711,25 @@ Checking test 050 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 201.137488 -0:The maximum resident set size (KB) = 3173204 +0:The total amount of wall time = 197.378714 +0:The maximum resident set size (KB) = 3175592 Test 050 cpld_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/GNU/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_30504/datm_cdeps_control_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/datm_cdeps_control_cfsr Checking test 051 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 178.653315 -0:The maximum resident set size (KB) = 676068 +0:The total amount of wall time = 173.036382 +0:The maximum resident set size (KB) = 675344 Test 051 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Wed Apr 5 20:41:10 MDT 2023 -Elapsed time: 00h:32m:51s. Have a nice day! +Sun Apr 9 20:41:08 MDT 2023 +Elapsed time: 00h:32m:45s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index d1d7b60cbb5..f59ea757250 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,42 +1,43 @@ -Wed Apr 5 19:53:24 MDT 2023 +Sun Apr 9 19:53:23 MDT 2023 Start Regression test -Compile 001 elapsed time 1504 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 1394 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 1365 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 450 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 390 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 1062 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 1075 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 1799 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 1066 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 975 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 011 elapsed time 921 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 804 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 1300 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 392 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 258 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 839 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 838 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 274 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 279 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 1125 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 021 elapsed time 338 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 1572 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 1105 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 024 elapsed time 436 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 195 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 433 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 001 elapsed time 1359 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1364 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 1357 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 456 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 384 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 1071 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 1072 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 1727 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 1060 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 980 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 011 elapsed time 931 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 799 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 1284 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 398 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 265 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 843 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 832 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 268 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 276 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 1130 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 021 elapsed time 344 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 1583 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 1115 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 024 elapsed time 427 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 197 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 422 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON Compile 027 elapsed time 109 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 955 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 978 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 895 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 876 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 291 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 1044 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8_mixedmode -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/cpld_control_p8_mixedmode +Compile 028 elapsed time 960 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 993 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 1016 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 906 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 891 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 033 elapsed time 293 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 034 elapsed time 1045 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8_mixedmode +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -101,14 +102,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 309.701780 -0:The maximum resident set size (KB) = 2698496 +0:The total amount of wall time = 319.742455 +0:The maximum resident set size (KB) = 2698256 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_gfsv17 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/cpld_control_gfsv17 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_gfsv17 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -172,14 +173,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 283.089224 -0:The maximum resident set size (KB) = 1437292 +0:The total amount of wall time = 282.373524 +0:The maximum resident set size (KB) = 1437592 Test 002 cpld_control_gfsv17 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/cpld_control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -244,14 +245,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 321.490867 -0:The maximum resident set size (KB) = 2715308 +0:The total amount of wall time = 321.593800 +0:The maximum resident set size (KB) = 2715200 Test 003 cpld_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/cpld_restart_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -304,14 +305,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 185.820314 -0:The maximum resident set size (KB) = 2576604 +0:The total amount of wall time = 185.702321 +0:The maximum resident set size (KB) = 2576336 Test 004 cpld_restart_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/cpld_control_qr_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -376,14 +377,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 318.031019 -0:The maximum resident set size (KB) = 2719620 +0:The total amount of wall time = 328.812908 +0:The maximum resident set size (KB) = 2719596 Test 005 cpld_control_qr_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/cpld_restart_qr_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -436,14 +437,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 200.015582 -0:The maximum resident set size (KB) = 2593588 +0:The total amount of wall time = 191.946246 +0:The maximum resident set size (KB) = 2593528 Test 006 cpld_restart_qr_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/cpld_2threads_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -496,14 +497,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 249.604068 -0:The maximum resident set size (KB) = 3178180 +0:The total amount of wall time = 252.074595 +0:The maximum resident set size (KB) = 3178144 Test 007 cpld_2threads_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/cpld_decomp_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -556,14 +557,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 313.000753 -0:The maximum resident set size (KB) = 2720616 +0:The total amount of wall time = 308.792643 +0:The maximum resident set size (KB) = 2722460 Test 008 cpld_decomp_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/cpld_mpi_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -616,14 +617,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 276.892139 -0:The maximum resident set size (KB) = 2680356 +0:The total amount of wall time = 276.509858 +0:The maximum resident set size (KB) = 2680300 Test 009 cpld_mpi_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_ciceC_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/cpld_control_ciceC_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_ciceC_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -688,14 +689,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 323.824721 -0:The maximum resident set size (KB) = 2715796 +0:The total amount of wall time = 323.403857 +0:The maximum resident set size (KB) = 2715332 Test 010 cpld_control_ciceC_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/cpld_control_c192_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_c192_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/cpld_control_c192_p8 Checking test 011 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -748,14 +749,14 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -0:The total amount of wall time = 659.097717 -0:The maximum resident set size (KB) = 3353776 +0:The total amount of wall time = 612.283957 +0:The maximum resident set size (KB) = 3351916 Test 011 cpld_control_c192_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/cpld_restart_c192_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_c192_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/cpld_restart_c192_p8 Checking test 012 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -808,14 +809,14 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -0:The total amount of wall time = 385.385539 -0:The maximum resident set size (KB) = 3275792 +0:The total amount of wall time = 380.174612 +0:The maximum resident set size (KB) = 3276764 Test 012 cpld_restart_c192_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/cpld_control_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/cpld_control_noaero_p8 Checking test 013 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -879,14 +880,14 @@ Checking test 013 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 296.221875 -0:The maximum resident set size (KB) = 1435740 +0:The total amount of wall time = 284.430369 +0:The maximum resident set size (KB) = 1435632 Test 013 cpld_control_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/cpld_control_nowave_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_c96_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/cpld_control_nowave_noaero_p8 Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -948,14 +949,14 @@ Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 196.295655 -0:The maximum resident set size (KB) = 1453148 +0:The total amount of wall time = 188.704212 +0:The maximum resident set size (KB) = 1453332 Test 014 cpld_control_nowave_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/cpld_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/cpld_debug_p8 Checking test 015 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1008,14 +1009,14 @@ Checking test 015 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 350.661610 -0:The maximum resident set size (KB) = 2779076 +0:The total amount of wall time = 349.189983 +0:The maximum resident set size (KB) = 2778808 Test 015 cpld_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_debug_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/cpld_debug_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_debug_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/cpld_debug_noaero_p8 Checking test 016 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1067,14 +1068,14 @@ Checking test 016 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 299.831612 -0:The maximum resident set size (KB) = 1453784 +0:The total amount of wall time = 298.519012 +0:The maximum resident set size (KB) = 1453800 Test 016 cpld_debug_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_noaero_p8_agrid -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/cpld_control_noaero_p8_agrid +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_noaero_p8_agrid +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/cpld_control_noaero_p8_agrid Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1136,14 +1137,14 @@ Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 250.687164 -0:The maximum resident set size (KB) = 1456844 +0:The total amount of wall time = 242.819753 +0:The maximum resident set size (KB) = 1456876 Test 017 cpld_control_noaero_p8_agrid PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/cpld_control_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/cpld_control_c48 Checking test 018 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1193,14 +1194,14 @@ Checking test 018 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 606.256689 -0:The maximum resident set size (KB) = 2586252 +0:The total amount of wall time = 600.873027 +0:The maximum resident set size (KB) = 2586528 Test 018 cpld_control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/cpld_warmstart_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_warmstart_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/cpld_warmstart_c48 Checking test 019 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1250,14 +1251,14 @@ Checking test 019 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -0:The total amount of wall time = 161.745036 -0:The maximum resident set size (KB) = 2601736 +0:The total amount of wall time = 163.680831 +0:The maximum resident set size (KB) = 2601440 Test 019 cpld_warmstart_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/cpld_restart_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_warmstart_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/cpld_restart_c48 Checking test 020 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1307,14 +1308,14 @@ Checking test 020 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -0:The total amount of wall time = 85.573502 -0:The maximum resident set size (KB) = 2018796 +0:The total amount of wall time = 84.542904 +0:The maximum resident set size (KB) = 2019160 Test 020 cpld_restart_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_CubedSphereGrid -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_CubedSphereGrid +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_CubedSphereGrid +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_CubedSphereGrid Checking test 021 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1341,28 +1342,28 @@ Checking test 021 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -0:The total amount of wall time = 142.261114 +0:The total amount of wall time = 138.413248 0:The maximum resident set size (KB) = 454228 Test 021 control_CubedSphereGrid PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_CubedSphereGrid_parallel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_CubedSphereGrid_parallel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_CubedSphereGrid_parallel +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_CubedSphereGrid_parallel Checking test 022 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK -0:The total amount of wall time = 136.828167 -0:The maximum resident set size (KB) = 454064 +0:The total amount of wall time = 136.393214 +0:The maximum resident set size (KB) = 454256 Test 022 control_CubedSphereGrid_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_latlon -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_latlon +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_latlon +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_latlon Checking test 023 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1373,32 +1374,32 @@ Checking test 023 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 146.126792 -0:The maximum resident set size (KB) = 454148 +0:The total amount of wall time = 142.651130 +0:The maximum resident set size (KB) = 454216 Test 023 control_latlon PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wrtGauss_netcdf_parallel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_wrtGauss_netcdf_parallel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_wrtGauss_netcdf_parallel +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_wrtGauss_netcdf_parallel Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 149.940324 -0:The maximum resident set size (KB) = 454168 +0:The total amount of wall time = 146.406409 +0:The maximum resident set size (KB) = 454228 Test 024 control_wrtGauss_netcdf_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_c48 Checking test 025 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1437,14 +1438,14 @@ Checking test 025 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 441.953889 -0:The maximum resident set size (KB) = 633472 +0:The total amount of wall time = 443.779075 +0:The maximum resident set size (KB) = 633460 Test 025 control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c192 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_c192 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_c192 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_c192 Checking test 026 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1455,14 +1456,14 @@ Checking test 026 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 594.984723 -0:The maximum resident set size (KB) = 560256 +0:The total amount of wall time = 574.579509 +0:The maximum resident set size (KB) = 560308 Test 026 control_c192 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c384 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_c384 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_c384 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_c384 Checking test 027 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1473,14 +1474,14 @@ Checking test 027 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 586.059219 -0:The maximum resident set size (KB) = 899104 +0:The total amount of wall time = 565.062257 +0:The maximum resident set size (KB) = 902508 Test 027 control_c384 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c384gdas -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_c384gdas +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_c384gdas +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_c384gdas Checking test 028 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1523,14 +1524,14 @@ Checking test 028 control_c384gdas 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 = 513.566833 -0:The maximum resident set size (KB) = 1026848 +0:The total amount of wall time = 511.042331 +0:The maximum resident set size (KB) = 1026944 Test 028 control_c384gdas PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_stochy +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_stochy +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_stochy Checking test 029 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1541,28 +1542,28 @@ Checking test 029 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 98.259702 -0:The maximum resident set size (KB) = 459112 +0:The total amount of wall time = 97.097285 +0:The maximum resident set size (KB) = 458988 Test 029 control_stochy PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_stochy_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_stochy +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_stochy_restart Checking test 030 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 53.354821 -0:The maximum resident set size (KB) = 226508 +0:The total amount of wall time = 51.824333 +0:The maximum resident set size (KB) = 226496 Test 030 control_stochy_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_lndp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_lndp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_lndp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_lndp Checking test 031 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1573,14 +1574,14 @@ Checking test 031 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 88.675563 -0:The maximum resident set size (KB) = 458152 +0:The total amount of wall time = 90.204746 +0:The maximum resident set size (KB) = 458284 Test 031 control_lndp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_iovr4 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_iovr4 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_iovr4 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_iovr4 Checking test 032 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1595,14 +1596,14 @@ Checking test 032 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 148.035047 -0:The maximum resident set size (KB) = 454256 +0:The total amount of wall time = 146.106055 +0:The maximum resident set size (KB) = 454236 Test 032 control_iovr4 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_iovr5 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_iovr5 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_iovr5 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_iovr5 Checking test 033 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1617,14 +1618,14 @@ Checking test 033 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 147.883385 -0:The maximum resident set size (KB) = 454260 +0:The total amount of wall time = 148.352533 +0:The maximum resident set size (KB) = 454220 Test 033 control_iovr5 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_p8 Checking test 034 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1671,14 +1672,14 @@ Checking test 034 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 181.133109 -0:The maximum resident set size (KB) = 1423832 +0:The total amount of wall time = 175.255125 +0:The maximum resident set size (KB) = 1423860 Test 034 control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_restart_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_restart_p8 Checking test 035 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1717,14 +1718,14 @@ Checking test 035 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 96.261395 -0:The maximum resident set size (KB) = 582824 +0:The total amount of wall time = 93.258047 +0:The maximum resident set size (KB) = 582864 Test 035 control_restart_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_qr_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_qr_p8 Checking test 036 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1771,14 +1772,14 @@ Checking test 036 control_qr_p8 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 = 183.118070 -0:The maximum resident set size (KB) = 1427208 +0:The total amount of wall time = 182.043734 +0:The maximum resident set size (KB) = 1427160 Test 036 control_qr_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_restart_qr_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_restart_qr_p8 Checking test 037 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1817,14 +1818,14 @@ Checking test 037 control_restart_qr_p8 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 = 98.433149 -0:The maximum resident set size (KB) = 596824 +0:The total amount of wall time = 99.486298 +0:The maximum resident set size (KB) = 596868 Test 037 control_restart_qr_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_decomp_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_decomp_p8 Checking test 038 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1867,14 +1868,14 @@ Checking test 038 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 184.077411 -0:The maximum resident set size (KB) = 1418344 +0:The total amount of wall time = 185.063705 +0:The maximum resident set size (KB) = 1418324 Test 038 control_decomp_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_2threads_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_2threads_p8 Checking test 039 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1917,14 +1918,14 @@ Checking test 039 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 171.038032 -0:The maximum resident set size (KB) = 1510220 +0:The total amount of wall time = 170.823825 +0:The maximum resident set size (KB) = 1508948 Test 039 control_2threads_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_lndp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_p8_lndp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_lndp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_p8_lndp Checking test 040 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1943,14 +1944,14 @@ Checking test 040 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -0:The total amount of wall time = 336.895002 -0:The maximum resident set size (KB) = 1424868 +0:The total amount of wall time = 337.206304 +0:The maximum resident set size (KB) = 1424848 Test 040 control_p8_lndp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_rrtmgp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_p8_rrtmgp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_rrtmgp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_p8_rrtmgp Checking test 041 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1997,14 +1998,14 @@ Checking test 041 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 253.217866 -0:The maximum resident set size (KB) = 1480228 +0:The total amount of wall time = 254.080961 +0:The maximum resident set size (KB) = 1480248 Test 041 control_p8_rrtmgp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_mynn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_p8_mynn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_mynn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_p8_mynn Checking test 042 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2051,14 +2052,14 @@ Checking test 042 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 184.481915 -0:The maximum resident set size (KB) = 1427880 +0:The total amount of wall time = 181.058189 +0:The maximum resident set size (KB) = 1427904 Test 042 control_p8_mynn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/merra2_thompson -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/merra2_thompson +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/merra2_thompson +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/merra2_thompson Checking test 043 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2105,14 +2106,14 @@ Checking test 043 merra2_thompson results .... Comparing 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.444699 -0:The maximum resident set size (KB) = 1429604 +0:The total amount of wall time = 206.144336 +0:The maximum resident set size (KB) = 1429672 Test 043 merra2_thompson PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/regional_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/regional_control Checking test 044 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2123,28 +2124,28 @@ Checking test 044 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 341.914507 -0:The maximum resident set size (KB) = 604752 +0:The total amount of wall time = 344.119828 +0:The maximum resident set size (KB) = 604748 Test 044 regional_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/regional_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/regional_restart Checking test 045 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 172.808086 -0:The maximum resident set size (KB) = 594044 +0:The total amount of wall time = 168.123197 +0:The maximum resident set size (KB) = 594172 Test 045 regional_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/regional_control_qr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/regional_control_qr Checking test 046 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2155,28 +2156,28 @@ Checking test 046 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 343.609119 -0:The maximum resident set size (KB) = 604768 +0:The total amount of wall time = 342.136798 +0:The maximum resident set size (KB) = 604664 Test 046 regional_control_qr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/regional_restart_qr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/regional_restart_qr Checking test 047 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 169.265220 -0:The maximum resident set size (KB) = 594116 +0:The total amount of wall time = 168.873879 +0:The maximum resident set size (KB) = 594108 Test 047 regional_restart_qr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/regional_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/regional_decomp Checking test 048 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2187,14 +2188,14 @@ Checking test 048 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 357.856326 -0:The maximum resident set size (KB) = 598768 +0:The total amount of wall time = 357.508436 +0:The maximum resident set size (KB) = 598808 Test 048 regional_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/regional_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/regional_2threads Checking test 049 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2205,14 +2206,14 @@ Checking test 049 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 201.158100 -0:The maximum resident set size (KB) = 611264 +0:The total amount of wall time = 200.807446 +0:The maximum resident set size (KB) = 611460 Test 049 regional_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_noquilt -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/regional_noquilt +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_noquilt +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/regional_noquilt Checking test 050 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2220,28 +2221,28 @@ Checking test 050 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -0:The total amount of wall time = 366.968820 -0:The maximum resident set size (KB) = 598964 +0:The total amount of wall time = 363.595954 +0:The maximum resident set size (KB) = 598984 Test 050 regional_noquilt PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_netcdf_parallel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/regional_netcdf_parallel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_netcdf_parallel +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/regional_netcdf_parallel Checking test 051 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf006.nc .........OK -0:The total amount of wall time = 338.654586 -0:The maximum resident set size (KB) = 596592 +0:The total amount of wall time = 328.812510 +0:The maximum resident set size (KB) = 596520 Test 051 regional_netcdf_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/regional_2dwrtdecomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/regional_2dwrtdecomp Checking test 052 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2252,14 +2253,14 @@ Checking test 052 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 341.761167 -0:The maximum resident set size (KB) = 604644 +0:The total amount of wall time = 342.778802 +0:The maximum resident set size (KB) = 604712 Test 052 regional_2dwrtdecomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/fv3_regional_wofs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/regional_wofs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/fv3_regional_wofs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/regional_wofs Checking test 053 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2270,14 +2271,14 @@ Checking test 053 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 416.725922 -0:The maximum resident set size (KB) = 275760 +0:The total amount of wall time = 415.803696 +0:The maximum resident set size (KB) = 275708 Test 053 regional_wofs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rap_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/rap_control Checking test 054 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2324,14 +2325,14 @@ Checking test 054 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 481.483324 -0:The maximum resident set size (KB) = 823492 +0:The total amount of wall time = 480.163415 +0:The maximum resident set size (KB) = 823532 Test 054 rap_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_spp_sppt_shum_skeb -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/regional_spp_sppt_shum_skeb +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_spp_sppt_shum_skeb +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/regional_spp_sppt_shum_skeb Checking test 055 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2342,14 +2343,14 @@ Checking test 055 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 255.751789 -0:The maximum resident set size (KB) = 952244 +0:The total amount of wall time = 260.753574 +0:The maximum resident set size (KB) = 952132 Test 055 regional_spp_sppt_shum_skeb PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rap_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/rap_decomp Checking test 056 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2396,14 +2397,14 @@ Checking test 056 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 504.293135 -0:The maximum resident set size (KB) = 822388 +0:The total amount of wall time = 502.587059 +0:The maximum resident set size (KB) = 822300 Test 056 rap_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rap_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/rap_2threads Checking test 057 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2450,14 +2451,14 @@ Checking test 057 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 453.278523 -0:The maximum resident set size (KB) = 893380 +0:The total amount of wall time = 458.006330 +0:The maximum resident set size (KB) = 893528 Test 057 rap_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rap_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/rap_restart Checking test 058 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2496,14 +2497,14 @@ Checking test 058 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 241.238889 -0:The maximum resident set size (KB) = 571260 +0:The total amount of wall time = 240.803595 +0:The maximum resident set size (KB) = 571452 Test 058 rap_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rap_sfcdiff +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/rap_sfcdiff Checking test 059 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2550,14 +2551,14 @@ Checking test 059 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 480.166461 -0:The maximum resident set size (KB) = 823420 +0:The total amount of wall time = 481.825278 +0:The maximum resident set size (KB) = 823500 Test 059 rap_sfcdiff PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rap_sfcdiff_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/rap_sfcdiff_decomp Checking test 060 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2604,14 +2605,14 @@ Checking test 060 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 502.525194 -0:The maximum resident set size (KB) = 822296 +0:The total amount of wall time = 503.773045 +0:The maximum resident set size (KB) = 822376 Test 060 rap_sfcdiff_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rap_sfcdiff_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/rap_sfcdiff_restart Checking test 061 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2650,14 +2651,14 @@ Checking test 061 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 355.742087 -0:The maximum resident set size (KB) = 570816 +0:The total amount of wall time = 355.112254 +0:The maximum resident set size (KB) = 570600 Test 061 rap_sfcdiff_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hrrr_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/hrrr_control Checking test 062 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2704,14 +2705,14 @@ Checking test 062 hrrr_control results .... Comparing 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.028529 -0:The maximum resident set size (KB) = 820884 +0:The total amount of wall time = 461.444545 +0:The maximum resident set size (KB) = 820748 Test 062 hrrr_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hrrr_control_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/hrrr_control_decomp Checking test 063 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2758,14 +2759,14 @@ Checking test 063 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 484.130375 -0:The maximum resident set size (KB) = 820768 +0:The total amount of wall time = 477.600394 +0:The maximum resident set size (KB) = 820672 Test 063 hrrr_control_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hrrr_control_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/hrrr_control_2threads Checking test 064 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2812,14 +2813,14 @@ Checking test 064 hrrr_control_2threads results .... Comparing 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.700287 -0:The maximum resident set size (KB) = 888312 +0:The total amount of wall time = 438.968323 +0:The maximum resident set size (KB) = 888608 Test 064 hrrr_control_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hrrr_control_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/hrrr_control_restart Checking test 065 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2858,14 +2859,14 @@ Checking test 065 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 344.173017 +0:The total amount of wall time = 345.054775 0:The maximum resident set size (KB) = 566540 Test 065 hrrr_control_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1beta -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rrfs_v1beta +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_v1beta +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/rrfs_v1beta Checking test 066 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2912,14 +2913,14 @@ Checking test 066 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 473.084398 -0:The maximum resident set size (KB) = 819496 +0:The total amount of wall time = 473.349024 +0:The maximum resident set size (KB) = 819436 Test 066 rrfs_v1beta PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1nssl -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rrfs_v1nssl +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_v1nssl +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/rrfs_v1nssl Checking test 067 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2934,14 +2935,14 @@ Checking test 067 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 585.464611 -0:The maximum resident set size (KB) = 508724 +0:The total amount of wall time = 583.657833 +0:The maximum resident set size (KB) = 508664 Test 067 rrfs_v1nssl PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rrfs_v1nssl_nohailnoccn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/rrfs_v1nssl_nohailnoccn Checking test 068 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2956,14 +2957,14 @@ Checking test 068 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 571.605504 -0:The maximum resident set size (KB) = 502580 +0:The total amount of wall time = 566.899987 +0:The maximum resident set size (KB) = 502644 Test 068 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/rrfs_smoke_conus13km_hrrr_warm Checking test 069 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2972,14 +2973,14 @@ Checking test 069 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 152.059894 -0:The maximum resident set size (KB) = 675272 +0:The total amount of wall time = 152.190201 +0:The maximum resident set size (KB) = 675348 Test 069 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 070 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2988,14 +2989,14 @@ Checking test 070 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 92.026044 -0:The maximum resident set size (KB) = 693924 +0:The total amount of wall time = 93.569958 +0:The maximum resident set size (KB) = 693872 Test 070 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rrfs_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/rrfs_conus13km_hrrr_warm Checking test 071 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3004,14 +3005,14 @@ Checking test 071 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 134.932818 -0:The maximum resident set size (KB) = 654140 +0:The total amount of wall time = 136.069551 +0:The maximum resident set size (KB) = 654108 Test 071 rrfs_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/rrfs_smoke_conus13km_radar_tten_warm Checking test 072 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3020,26 +3021,26 @@ Checking test 072 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 150.207148 -0:The maximum resident set size (KB) = 677924 +0:The total amount of wall time = 149.918106 +0:The maximum resident set size (KB) = 677952 Test 072 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 073 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 70.662713 -0:The maximum resident set size (KB) = 632272 +0:The total amount of wall time = 70.760800 +0:The maximum resident set size (KB) = 632136 Test 073 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmg -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_csawmg +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_csawmg +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_csawmg Checking test 074 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3050,14 +3051,14 @@ Checking test 074 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 398.493041 -0:The maximum resident set size (KB) = 527696 +0:The total amount of wall time = 397.411457 +0:The maximum resident set size (KB) = 527684 Test 074 control_csawmg PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmgt -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_csawmgt +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_csawmgt +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_csawmgt Checking test 075 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3068,14 +3069,14 @@ Checking test 075 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 393.338022 -0:The maximum resident set size (KB) = 528312 +0:The total amount of wall time = 392.840006 +0:The maximum resident set size (KB) = 528352 Test 075 control_csawmgt PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_ras -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_ras +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_ras +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_ras Checking test 076 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3086,26 +3087,26 @@ Checking test 076 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 205.039259 -0:The maximum resident set size (KB) = 491224 +0:The total amount of wall time = 198.347961 +0:The maximum resident set size (KB) = 491268 Test 076 control_ras PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wam -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_wam +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_wam +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_wam Checking test 077 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -0:The total amount of wall time = 129.415496 -0:The maximum resident set size (KB) = 206388 +0:The total amount of wall time = 124.019665 +0:The maximum resident set size (KB) = 206284 Test 077 control_wam PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_faster -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_p8_faster +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_faster +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_p8_faster Checking test 078 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3152,14 +3153,14 @@ Checking test 078 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 171.055975 -0:The maximum resident set size (KB) = 1423796 +0:The total amount of wall time = 173.930157 +0:The maximum resident set size (KB) = 1423792 Test 078 control_p8_faster PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control_faster -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/regional_control_faster +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control_faster +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/regional_control_faster Checking test 079 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3170,56 +3171,56 @@ Checking test 079 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 320.972279 -0:The maximum resident set size (KB) = 604616 +0:The total amount of wall time = 325.225670 +0:The maximum resident set size (KB) = 604660 Test 079 regional_control_faster PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 080 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 876.382640 -0:The maximum resident set size (KB) = 704740 +0:The total amount of wall time = 875.752493 +0:The maximum resident set size (KB) = 704708 Test 080 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 081 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 499.436278 -0:The maximum resident set size (KB) = 724388 +0:The total amount of wall time = 498.567716 +0:The maximum resident set size (KB) = 724268 Test 081 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rrfs_conus13km_hrrr_warm_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/rrfs_conus13km_hrrr_warm_debug Checking test 082 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 776.409066 -0:The maximum resident set size (KB) = 683336 +0:The total amount of wall time = 778.815188 +0:The maximum resident set size (KB) = 683392 Test 082 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_CubedSphereGrid_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_CubedSphereGrid_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_CubedSphereGrid_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_CubedSphereGrid_debug Checking test 083 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3246,334 +3247,334 @@ Checking test 083 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -0:The total amount of wall time = 155.483877 -0:The maximum resident set size (KB) = 617540 +0:The total amount of wall time = 154.320105 +0:The maximum resident set size (KB) = 617524 Test 083 control_CubedSphereGrid_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_wrtGauss_netcdf_parallel_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_wrtGauss_netcdf_parallel_debug Checking test 084 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 156.368436 -0:The maximum resident set size (KB) = 615668 +0:The total amount of wall time = 155.608254 +0:The maximum resident set size (KB) = 615664 Test 084 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_stochy_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_stochy_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_stochy_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_stochy_debug Checking test 085 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 175.355286 -0:The maximum resident set size (KB) = 621260 +0:The total amount of wall time = 175.505291 +0:The maximum resident set size (KB) = 621272 Test 085 control_stochy_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_lndp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_lndp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_lndp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_lndp_debug Checking test 086 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 157.102728 -0:The maximum resident set size (KB) = 619920 +0:The total amount of wall time = 157.087052 +0:The maximum resident set size (KB) = 619988 Test 086 control_lndp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmg_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_csawmg_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_csawmg_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_csawmg_debug Checking test 087 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 248.676896 -0:The maximum resident set size (KB) = 666380 +0:The total amount of wall time = 249.156158 +0:The maximum resident set size (KB) = 666388 Test 087 control_csawmg_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmgt_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_csawmgt_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_csawmgt_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_csawmgt_debug Checking test 088 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 245.976095 -0:The maximum resident set size (KB) = 667364 +0:The total amount of wall time = 243.315254 +0:The maximum resident set size (KB) = 667332 Test 088 control_csawmgt_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_ras_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_ras_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_ras_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_ras_debug Checking test 089 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 159.627589 -0:The maximum resident set size (KB) = 630316 +0:The total amount of wall time = 158.859590 +0:The maximum resident set size (KB) = 630240 Test 089 control_ras_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_diag_debug Checking test 090 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 160.344232 -0:The maximum resident set size (KB) = 674984 +0:The total amount of wall time = 159.397618 +0:The maximum resident set size (KB) = 674976 Test 090 control_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_debug_p8 Checking test 091 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 175.839485 -0:The maximum resident set size (KB) = 1442372 +0:The total amount of wall time = 175.625848 +0:The maximum resident set size (KB) = 1442392 Test 091 control_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/regional_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/regional_debug Checking test 092 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 1034.438480 -0:The maximum resident set size (KB) = 625872 +0:The total amount of wall time = 1033.143858 +0:The maximum resident set size (KB) = 625900 Test 092 regional_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rap_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/rap_control_debug Checking test 093 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 286.127705 -0:The maximum resident set size (KB) = 986612 +0:The total amount of wall time = 287.417545 +0:The maximum resident set size (KB) = 986552 Test 093 rap_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hrrr_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/hrrr_control_debug Checking test 094 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 280.785839 -0:The maximum resident set size (KB) = 984124 +0:The total amount of wall time = 282.164442 +0:The maximum resident set size (KB) = 984004 Test 094 hrrr_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rap_unified_drag_suite_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/rap_unified_drag_suite_debug Checking test 095 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 286.486253 -0:The maximum resident set size (KB) = 986580 +0:The total amount of wall time = 286.580246 +0:The maximum resident set size (KB) = 986688 Test 095 rap_unified_drag_suite_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rap_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/rap_diag_debug Checking test 096 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 298.300461 -0:The maximum resident set size (KB) = 1069832 +0:The total amount of wall time = 297.460885 +0:The maximum resident set size (KB) = 1069812 Test 096 rap_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rap_cires_ugwp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/rap_cires_ugwp_debug Checking test 097 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 292.650670 -0:The maximum resident set size (KB) = 985824 +0:The total amount of wall time = 292.741515 +0:The maximum resident set size (KB) = 985784 Test 097 rap_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rap_unified_ugwp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/rap_unified_ugwp_debug Checking test 098 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 293.799461 -0:The maximum resident set size (KB) = 986628 +0:The total amount of wall time = 292.792969 +0:The maximum resident set size (KB) = 986564 Test 098 rap_unified_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_lndp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rap_lndp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_lndp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/rap_lndp_debug Checking test 099 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 289.381618 -0:The maximum resident set size (KB) = 987236 +0:The total amount of wall time = 289.640539 +0:The maximum resident set size (KB) = 987304 Test 099 rap_lndp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_flake_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rap_flake_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_flake_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/rap_flake_debug Checking test 100 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 286.769912 -0:The maximum resident set size (KB) = 986660 +0:The total amount of wall time = 287.403837 +0:The maximum resident set size (KB) = 986700 Test 100 rap_flake_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_progcld_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rap_progcld_thompson_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_progcld_thompson_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/rap_progcld_thompson_debug Checking test 101 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 287.499419 -0:The maximum resident set size (KB) = 986604 +0:The total amount of wall time = 287.447082 +0:The maximum resident set size (KB) = 986460 Test 101 rap_progcld_thompson_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_noah_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rap_noah_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_noah_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/rap_noah_debug Checking test 102 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 281.623663 -0:The maximum resident set size (KB) = 984676 +0:The total amount of wall time = 280.295441 +0:The maximum resident set size (KB) = 984524 Test 102 rap_noah_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rap_sfcdiff_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_sfcdiff_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/rap_sfcdiff_debug Checking test 103 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 287.815818 -0:The maximum resident set size (KB) = 986448 +0:The total amount of wall time = 286.232317 +0:The maximum resident set size (KB) = 986392 Test 103 rap_sfcdiff_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/rap_noah_sfcdiff_cires_ugwp_debug Checking test 104 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 472.512388 -0:The maximum resident set size (KB) = 985336 +0:The total amount of wall time = 471.009098 +0:The maximum resident set size (KB) = 985364 Test 104 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1beta_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rrfs_v1beta_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_v1beta_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/rrfs_v1beta_debug Checking test 105 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 282.087359 -0:The maximum resident set size (KB) = 983372 +0:The total amount of wall time = 281.943144 +0:The maximum resident set size (KB) = 983480 Test 105 rrfs_v1beta_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wam_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_wam_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_wam_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_wam_debug Checking test 106 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 289.522466 -0:The maximum resident set size (KB) = 235520 +0:The total amount of wall time = 289.990370 +0:The maximum resident set size (KB) = 235464 Test 106 control_wam_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3584,14 +3585,14 @@ Checking test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 247.231183 -0:The maximum resident set size (KB) = 851076 +0:The total amount of wall time = 240.573528 +0:The maximum resident set size (KB) = 851156 Test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rap_control_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/rap_control_dyn32_phy32 Checking test 108 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3638,14 +3639,14 @@ Checking test 108 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 398.190885 -0:The maximum resident set size (KB) = 707816 +0:The total amount of wall time = 400.583923 +0:The maximum resident set size (KB) = 707776 Test 108 rap_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hrrr_control_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/hrrr_control_dyn32_phy32 Checking test 109 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3692,14 +3693,14 @@ Checking test 109 hrrr_control_dyn32_phy32 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 = 206.984849 -0:The maximum resident set size (KB) = 706532 +0:The total amount of wall time = 205.157258 +0:The maximum resident set size (KB) = 706388 Test 109 hrrr_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rap_2threads_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/rap_2threads_dyn32_phy32 Checking test 110 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3746,14 +3747,14 @@ Checking test 110 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 380.915217 -0:The maximum resident set size (KB) = 759352 +0:The total amount of wall time = 379.604561 +0:The maximum resident set size (KB) = 759368 Test 110 rap_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hrrr_control_2threads_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/hrrr_control_2threads_dyn32_phy32 Checking test 111 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3800,14 +3801,14 @@ Checking test 111 hrrr_control_2threads_dyn32_phy32 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 = 198.610402 -0:The maximum resident set size (KB) = 756524 +0:The total amount of wall time = 195.616617 +0:The maximum resident set size (KB) = 756392 Test 111 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hrrr_control_decomp_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/hrrr_control_decomp_dyn32_phy32 Checking test 112 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3854,14 +3855,14 @@ Checking test 112 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 219.168226 -0:The maximum resident set size (KB) = 704292 +0:The total amount of wall time = 218.931697 +0:The maximum resident set size (KB) = 704288 Test 112 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rap_restart_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/rap_restart_dyn32_phy32 Checking test 113 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3900,14 +3901,14 @@ Checking test 113 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 294.310581 +0:The total amount of wall time = 291.923547 0:The maximum resident set size (KB) = 544664 Test 113 rap_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hrrr_control_restart_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/hrrr_control_restart_dyn32_phy32 Checking test 114 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3946,14 +3947,14 @@ Checking test 114 hrrr_control_restart_dyn32_phy32 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 = 107.228012 -0:The maximum resident set size (KB) = 537556 +0:The total amount of wall time = 105.784154 +0:The maximum resident set size (KB) = 537436 Test 114 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rap_control_dyn64_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_dyn64_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/rap_control_dyn64_phy32 Checking test 115 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4000,81 +4001,81 @@ Checking test 115 rap_control_dyn64_phy32 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 = 271.434089 -0:The maximum resident set size (KB) = 730416 +0:The total amount of wall time = 271.276212 +0:The maximum resident set size (KB) = 730432 Test 115 rap_control_dyn64_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rap_control_debug_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/rap_control_debug_dyn32_phy32 Checking test 116 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 281.855615 -0:The maximum resident set size (KB) = 872940 +0:The total amount of wall time = 280.930311 +0:The maximum resident set size (KB) = 873032 Test 116 rap_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hrrr_control_debug_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/hrrr_control_debug_dyn32_phy32 Checking test 117 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 276.912328 -0:The maximum resident set size (KB) = 871068 +0:The total amount of wall time = 276.644157 +0:The maximum resident set size (KB) = 870972 Test 117 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/rap_control_dyn64_phy32_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_debug_dyn64_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/rap_control_dyn64_phy32_debug Checking test 118 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 286.346018 -0:The maximum resident set size (KB) = 890040 +0:The total amount of wall time = 285.603212 +0:The maximum resident set size (KB) = 890088 Test 118 rap_control_dyn64_phy32_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hafs_regional_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/hafs_regional_atm Checking test 119 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -0:The total amount of wall time = 257.111262 -0:The maximum resident set size (KB) = 742732 +0:The total amount of wall time = 260.196127 +0:The maximum resident set size (KB) = 742804 Test 119 hafs_regional_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hafs_regional_atm_thompson_gfdlsf +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/hafs_regional_atm_thompson_gfdlsf Checking test 120 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -0:The total amount of wall time = 286.662113 -0:The maximum resident set size (KB) = 1100028 +0:The total amount of wall time = 292.987055 +0:The maximum resident set size (KB) = 1099948 Test 120 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_ocn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hafs_regional_atm_ocn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_ocn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/hafs_regional_atm_ocn Checking test 121 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4083,62 +4084,62 @@ Checking test 121 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 445.924103 -0:The maximum resident set size (KB) = 741340 +0:The total amount of wall time = 452.915819 +0:The maximum resident set size (KB) = 741212 Test 121 hafs_regional_atm_ocn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_wav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hafs_regional_atm_wav +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_wav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/hafs_regional_atm_wav Checking test 122 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - Comparing out_grd.ww3 .........OK - Comparing out_pnt.ww3 .........OK + Comparing 20190829.060000.out_grd.ww3 .........OK + Comparing 20190829.060000.out_pnt.ww3 .........OK Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 1071.037702 -0:The maximum resident set size (KB) = 772384 +0:The total amount of wall time = 1049.697125 +0:The maximum resident set size (KB) = 771792 Test 122 hafs_regional_atm_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_ocn_wav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hafs_regional_atm_ocn_wav +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_ocn_wav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/hafs_regional_atm_ocn_wav Checking test 123 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK Comparing archs.2019_241_06.a .........OK - Comparing out_grd.ww3 .........OK - Comparing out_pnt.ww3 .........OK + Comparing 20190829.060000.out_grd.ww3 .........OK + Comparing 20190829.060000.out_pnt.ww3 .........OK Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 1135.356698 -0:The maximum resident set size (KB) = 792808 +0:The total amount of wall time = 1161.003182 +0:The maximum resident set size (KB) = 792308 Test 123 hafs_regional_atm_ocn_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hafs_regional_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/hafs_regional_1nest_atm Checking test 124 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 377.984817 -0:The maximum resident set size (KB) = 300960 +0:The total amount of wall time = 372.316729 +0:The maximum resident set size (KB) = 300860 Test 124 hafs_regional_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hafs_regional_telescopic_2nests_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/hafs_regional_telescopic_2nests_atm Checking test 125 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4147,28 +4148,28 @@ Checking test 125 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -0:The total amount of wall time = 416.045393 -0:The maximum resident set size (KB) = 320476 +0:The total amount of wall time = 438.622913 +0:The maximum resident set size (KB) = 320628 Test 125 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_global_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hafs_global_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_global_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/hafs_global_1nest_atm Checking test 126 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 168.418279 -0:The maximum resident set size (KB) = 213828 +0:The total amount of wall time = 170.968534 +0:The maximum resident set size (KB) = 213768 Test 126 hafs_global_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_global_multiple_4nests_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hafs_global_multiple_4nests_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_global_multiple_4nests_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/hafs_global_multiple_4nests_atm Checking test 127 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4186,14 +4187,14 @@ Checking test 127 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -0:The total amount of wall time = 478.751468 -0:The maximum resident set size (KB) = 300396 +0:The total amount of wall time = 481.989540 +0:The maximum resident set size (KB) = 302488 Test 127 hafs_global_multiple_4nests_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hafs_regional_specified_moving_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/hafs_regional_specified_moving_1nest_atm Checking test 128 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4202,28 +4203,28 @@ Checking test 128 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -0:The total amount of wall time = 240.445034 -0:The maximum resident set size (KB) = 318476 +0:The total amount of wall time = 235.656846 +0:The maximum resident set size (KB) = 318764 Test 128 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hafs_regional_storm_following_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/hafs_regional_storm_following_1nest_atm Checking test 129 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 227.256588 -0:The maximum resident set size (KB) = 318192 +0:The total amount of wall time = 227.742873 +0:The maximum resident set size (KB) = 318548 Test 129 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/hafs_regional_storm_following_1nest_atm_ocn Checking test 130 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4232,42 +4233,42 @@ Checking test 130 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -0:The total amount of wall time = 281.301358 -0:The maximum resident set size (KB) = 376256 +0:The total amount of wall time = 280.631263 +0:The maximum resident set size (KB) = 376456 Test 130 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_global_storm_following_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hafs_global_storm_following_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_global_storm_following_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/hafs_global_storm_following_1nest_atm Checking test 131 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 66.666957 -0:The maximum resident set size (KB) = 233324 +0:The total amount of wall time = 66.363519 +0:The maximum resident set size (KB) = 234200 Test 131 hafs_global_storm_following_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 132 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 765.308407 -0:The maximum resident set size (KB) = 402772 +0:The total amount of wall time = 765.071444 +0:The maximum resident set size (KB) = 402688 Test 132 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 133 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4275,17 +4276,17 @@ Checking test 133 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing sfc.nest02.f006.nc .........OK Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - Comparing out_grd.ww3 .........OK - Comparing out_pnt.ww3 .........OK + Comparing 20200825.180000.out_grd.ww3 .........OK + Comparing 20200825.180000.out_pnt.ww3 .........OK -0:The total amount of wall time = 764.976041 -0:The maximum resident set size (KB) = 427540 +0:The total amount of wall time = 730.595705 +0:The maximum resident set size (KB) = 427292 Test 133 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_docn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hafs_regional_docn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_docn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/hafs_regional_docn Checking test 134 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4293,14 +4294,14 @@ Checking test 134 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 392.775974 -0:The maximum resident set size (KB) = 755340 +0:The total amount of wall time = 381.242564 +0:The maximum resident set size (KB) = 755312 Test 134 hafs_regional_docn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_docn_oisst -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hafs_regional_docn_oisst +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_docn_oisst +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/hafs_regional_docn_oisst Checking test 135 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4308,131 +4309,131 @@ Checking test 135 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 394.359153 -0:The maximum resident set size (KB) = 735280 +0:The total amount of wall time = 387.818686 +0:The maximum resident set size (KB) = 735444 Test 135 hafs_regional_docn_oisst PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_datm_cdeps -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/hafs_regional_datm_cdeps +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_datm_cdeps +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/hafs_regional_datm_cdeps Checking test 136 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -0:The total amount of wall time = 1274.600899 -0:The maximum resident set size (KB) = 887832 +0:The total amount of wall time = 1157.596977 +0:The maximum resident set size (KB) = 887900 Test 136 hafs_regional_datm_cdeps PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/datm_cdeps_control_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/datm_cdeps_control_cfsr Checking test 137 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 167.353908 -0:The maximum resident set size (KB) = 716720 +0:The total amount of wall time = 161.565223 +0:The maximum resident set size (KB) = 716680 Test 137 datm_cdeps_control_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/datm_cdeps_restart_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/datm_cdeps_restart_cfsr Checking test 138 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 96.431899 -0:The maximum resident set size (KB) = 704880 +0:The total amount of wall time = 96.850528 +0:The maximum resident set size (KB) = 704828 Test 138 datm_cdeps_restart_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/datm_cdeps_control_gefs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_control_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/datm_cdeps_control_gefs Checking test 139 datm_cdeps_control_gefs 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.089038 -0:The maximum resident set size (KB) = 607448 +0:The total amount of wall time = 160.097680 +0:The maximum resident set size (KB) = 607472 Test 139 datm_cdeps_control_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_iau_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/datm_cdeps_iau_gefs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_iau_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/datm_cdeps_iau_gefs Checking test 140 datm_cdeps_iau_gefs 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 = 163.632369 -0:The maximum resident set size (KB) = 607440 +0:The total amount of wall time = 164.699029 +0:The maximum resident set size (KB) = 607460 Test 140 datm_cdeps_iau_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_stochy_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/datm_cdeps_stochy_gefs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_stochy_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/datm_cdeps_stochy_gefs Checking test 141 datm_cdeps_stochy_gefs 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 = 163.602109 -0:The maximum resident set size (KB) = 607480 +0:The total amount of wall time = 163.792340 +0:The maximum resident set size (KB) = 607500 Test 141 datm_cdeps_stochy_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_ciceC_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/datm_cdeps_ciceC_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_ciceC_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/datm_cdeps_ciceC_cfsr Checking test 142 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.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.790671 -0:The maximum resident set size (KB) = 716720 +0:The total amount of wall time = 168.315331 +0:The maximum resident set size (KB) = 716696 Test 142 datm_cdeps_ciceC_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_bulk_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/datm_cdeps_bulk_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_bulk_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/datm_cdeps_bulk_cfsr Checking test 143 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 168.705344 -0:The maximum resident set size (KB) = 716732 +0:The total amount of wall time = 168.876875 +0:The maximum resident set size (KB) = 727820 Test 143 datm_cdeps_bulk_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_bulk_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/datm_cdeps_bulk_gefs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_bulk_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/datm_cdeps_bulk_gefs Checking test 144 datm_cdeps_bulk_gefs 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 = 160.090251 -0:The maximum resident set size (KB) = 607472 +0:The total amount of wall time = 160.545502 +0:The maximum resident set size (KB) = 607460 Test 144 datm_cdeps_bulk_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_mx025_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/datm_cdeps_mx025_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_mx025_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/datm_cdeps_mx025_cfsr Checking test 145 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4441,14 +4442,14 @@ Checking test 145 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 430.324675 -0:The maximum resident set size (KB) = 514312 +0:The total amount of wall time = 416.223104 +0:The maximum resident set size (KB) = 514364 Test 145 datm_cdeps_mx025_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_mx025_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/datm_cdeps_mx025_gefs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_mx025_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/datm_cdeps_mx025_gefs Checking test 146 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4457,77 +4458,77 @@ Checking test 146 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 416.023203 -0:The maximum resident set size (KB) = 494812 +0:The total amount of wall time = 425.972528 +0:The maximum resident set size (KB) = 494740 Test 146 datm_cdeps_mx025_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/datm_cdeps_multiple_files_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/datm_cdeps_multiple_files_cfsr Checking test 147 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 166.521079 -0:The maximum resident set size (KB) = 716712 +0:The total amount of wall time = 166.319805 +0:The maximum resident set size (KB) = 728136 Test 147 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/datm_cdeps_3072x1536_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/datm_cdeps_3072x1536_cfsr Checking test 148 datm_cdeps_3072x1536_cfsr 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 = 272.326236 -0:The maximum resident set size (KB) = 1910040 +0:The total amount of wall time = 239.968214 +0:The maximum resident set size (KB) = 1941408 Test 148 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_gfs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/datm_cdeps_gfs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_gfs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/datm_cdeps_gfs Checking test 149 datm_cdeps_gfs results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 270.205127 -0:The maximum resident set size (KB) = 1941108 +0:The total amount of wall time = 267.938470 +0:The maximum resident set size (KB) = 1942008 Test 149 datm_cdeps_gfs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_debug_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/datm_cdeps_debug_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_debug_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/datm_cdeps_debug_cfsr Checking test 150 datm_cdeps_debug_cfsr 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 = 369.680257 -0:The maximum resident set size (KB) = 711800 +0:The total amount of wall time = 370.009541 +0:The maximum resident set size (KB) = 700720 Test 150 datm_cdeps_debug_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_cfsr_faster -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/datm_cdeps_control_cfsr_faster +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_control_cfsr_faster +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/datm_cdeps_control_cfsr_faster Checking test 151 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 167.009432 +0:The total amount of wall time = 167.536465 0:The maximum resident set size (KB) = 716736 Test 151 datm_cdeps_control_cfsr_faster PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/datm_cdeps_lnd_gswp3 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_lnd_gswp3 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/datm_cdeps_lnd_gswp3 Checking test 152 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4536,14 +4537,14 @@ Checking test 152 datm_cdeps_lnd_gswp3 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 = 10.268181 -0:The maximum resident set size (KB) = 208208 +0:The total amount of wall time = 10.852810 +0:The maximum resident set size (KB) = 208240 Test 152 datm_cdeps_lnd_gswp3 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/datm_cdeps_lnd_gswp3_rst +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_lnd_gswp3 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/datm_cdeps_lnd_gswp3_rst Checking test 153 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4552,14 +4553,14 @@ Checking test 153 datm_cdeps_lnd_gswp3_rst 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 = 15.797231 -0:The maximum resident set size (KB) = 210100 +0:The total amount of wall time = 15.450323 +0:The maximum resident set size (KB) = 216384 Test 153 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_atmlnd_sbs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_p8_atmlnd_sbs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_atmlnd_sbs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_p8_atmlnd_sbs Checking test 154 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4644,15 +4645,65 @@ Checking test 154 control_p8_atmlnd_sbs 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 = 233.907252 -0:The maximum resident set size (KB) = 1463656 +0:The total amount of wall time = 233.611949 +0:The maximum resident set size (KB) = 1462904 Test 154 control_p8_atmlnd_sbs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/control_atmwav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/control_atmwav -Checking test 155 control_atmwav results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/atmwav_control_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/atmwav_control_noaero_p8 +Checking test 155 atmwav_control_noaero_p8 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + Comparing RESTART/ufs.atmw.cpl.r.2021-03-22-64800.nc .........OK + Comparing 20210322.180000.out_pnt.ww3 .........OK + Comparing 20210322.180000.out_grd.ww3 .........OK + Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK + +0:The total amount of wall time = 97.674024 +0:The maximum resident set size (KB) = 1434108 + +Test 155 atmwav_control_noaero_p8 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_atmwav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_atmwav +Checking test 156 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -4695,15 +4746,15 @@ Checking test 155 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -0:The total amount of wall time = 98.498594 -0:The maximum resident set size (KB) = 474544 +0:The total amount of wall time = 99.834559 +0:The maximum resident set size (KB) = 474548 -Test 155 control_atmwav PASS +Test 156 control_atmwav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/atmaero_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/atmaero_control_p8 -Checking test 156 atmaero_control_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/atmaero_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/atmaero_control_p8 +Checking test 157 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4746,15 +4797,15 @@ Checking test 156 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 251.933333 -0:The maximum resident set size (KB) = 2704072 +0:The total amount of wall time = 249.530483 +0:The maximum resident set size (KB) = 2704004 -Test 156 atmaero_control_p8 PASS +Test 157 atmaero_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/atmaero_control_p8_rad -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/atmaero_control_p8_rad -Checking test 157 atmaero_control_p8_rad results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/atmaero_control_p8_rad +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/atmaero_control_p8_rad +Checking test 158 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4797,15 +4848,15 @@ Checking test 157 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 302.772368 -0:The maximum resident set size (KB) = 2757948 +0:The total amount of wall time = 305.323444 +0:The maximum resident set size (KB) = 2758124 -Test 157 atmaero_control_p8_rad PASS +Test 158 atmaero_control_p8_rad PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/atmaero_control_p8_rad_micro -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/atmaero_control_p8_rad_micro -Checking test 158 atmaero_control_p8_rad_micro results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/atmaero_control_p8_rad_micro +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/atmaero_control_p8_rad_micro +Checking test 159 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4848,15 +4899,15 @@ Checking test 158 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 308.750670 -0:The maximum resident set size (KB) = 2764528 +0:The total amount of wall time = 308.786686 +0:The maximum resident set size (KB) = 2764472 -Test 158 atmaero_control_p8_rad_micro PASS +Test 159 atmaero_control_p8_rad_micro PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_atmaq -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/regional_atmaq -Checking test 159 regional_atmaq results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_atmaq +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/regional_atmaq +Checking test 160 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -4871,15 +4922,15 @@ Checking test 159 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -0:The total amount of wall time = 748.876288 -0:The maximum resident set size (KB) = 999612 +0:The total amount of wall time = 747.230085 +0:The maximum resident set size (KB) = 999440 -Test 159 regional_atmaq PASS +Test 160 regional_atmaq PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_atmaq_faster -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_62342/regional_atmaq_faster -Checking test 160 regional_atmaq_faster results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_atmaq_faster +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/regional_atmaq_faster +Checking test 161 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -4894,12 +4945,12 @@ Checking test 160 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -0:The total amount of wall time = 696.342729 -0:The maximum resident set size (KB) = 999192 +0:The total amount of wall time = 695.518613 +0:The maximum resident set size (KB) = 999304 -Test 160 regional_atmaq_faster PASS +Test 161 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Wed Apr 5 21:06:53 MDT 2023 -Elapsed time: 01h:13m:29s. Have a nice day! +Sun Apr 9 21:07:32 MDT 2023 +Elapsed time: 01h:14m:09s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index dbee0d7207b..8ca9fcee05a 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,39 +1,43 @@ -Compile 001 elapsed time 860 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 941 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 786 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 322 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 275 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 773 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 777 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 1033 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 742 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 723 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 011 elapsed time 654 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 713 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 928 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 263 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 215 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 657 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 624 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 211 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 213 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 736 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 021 elapsed time 259 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 938 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 708 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 024 elapsed time 291 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 158 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 277 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 121 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 681 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 690 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 661 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 700 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 212 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 794 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8_mixedmode -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/cpld_control_p8_mixedmode +Sun Apr 9 21:07:10 EDT 2023 +Start Regression test + +Compile 001 elapsed time 937 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 872 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 829 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 350 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 296 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 785 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 746 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 1131 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 758 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 738 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 011 elapsed time 656 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 637 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 890 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 258 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 207 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 650 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 635 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 299 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 208 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 697 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 021 elapsed time 256 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 888 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 728 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 024 elapsed time 281 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 162 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 354 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 98 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 704 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 668 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 698 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 646 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 776 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 033 elapsed time 258 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 034 elapsed time 777 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8_mixedmode +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -98,14 +102,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 356.527283 - 0: The maximum resident set size (KB) = 1533808 + 0: The total amount of wall time = 387.614474 + 0: The maximum resident set size (KB) = 1534188 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_gfsv17 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/cpld_control_gfsv17 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_gfsv17 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -169,14 +173,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 262.280992 - 0: The maximum resident set size (KB) = 1443240 + 0: The total amount of wall time = 285.429925 + 0: The maximum resident set size (KB) = 1443460 Test 002 cpld_control_gfsv17 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/cpld_control_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -241,14 +245,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 396.799377 - 0: The maximum resident set size (KB) = 1567236 + 0: The total amount of wall time = 407.693495 + 0: The maximum resident set size (KB) = 1566692 Test 003 cpld_control_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/cpld_restart_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -301,14 +305,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 256.489499 - 0: The maximum resident set size (KB) = 1018056 + 0: The total amount of wall time = 248.002024 + 0: The maximum resident set size (KB) = 1018328 Test 004 cpld_restart_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/cpld_control_qr_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -373,14 +377,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 400.579192 - 0: The maximum resident set size (KB) = 1577380 + 0: The total amount of wall time = 406.611085 + 0: The maximum resident set size (KB) = 1577640 Test 005 cpld_control_qr_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/cpld_restart_qr_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -433,14 +437,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 243.722010 - 0: The maximum resident set size (KB) = 1031596 + 0: The total amount of wall time = 247.338311 + 0: The maximum resident set size (KB) = 1031440 Test 006 cpld_restart_qr_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/cpld_2threads_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -493,14 +497,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 435.085387 - 0: The maximum resident set size (KB) = 1759368 + 0: The total amount of wall time = 418.517646 + 0: The maximum resident set size (KB) = 1758916 Test 007 cpld_2threads_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/cpld_decomp_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -553,14 +557,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 414.716299 - 0: The maximum resident set size (KB) = 1561860 + 0: The total amount of wall time = 404.237894 + 0: The maximum resident set size (KB) = 1561660 Test 008 cpld_decomp_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/cpld_mpi_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -613,14 +617,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 351.404805 - 0: The maximum resident set size (KB) = 1526048 + 0: The total amount of wall time = 350.542338 + 0: The maximum resident set size (KB) = 1527016 Test 009 cpld_mpi_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_bmark_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/cpld_bmark_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_bmark_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/cpld_bmark_p8 Checking test 010 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -668,14 +672,69 @@ Checking test 010 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 825.488595 - 0: The maximum resident set size (KB) = 2503472 + 0: The total amount of wall time = 893.650557 + 0: The maximum resident set size (KB) = 2503316 Test 010 cpld_bmark_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_noaero_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/cpld_control_noaero_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_bmark_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/cpld_restart_bmark_p8 +Checking test 011 cpld_restart_bmark_p8 results .... + Comparing sfcf006.nc .........OK + Comparing atmf006.nc .........OK + Comparing GFSFLX.GrbF06 .........OK + Comparing GFSPRS.GrbF06 .........OK + Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK + Comparing RESTART/20130401.060000.coupler.res .........OK + Comparing RESTART/20130401.060000.fv_core.res.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20130401.060000.MOM.res.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_1.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_2.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-01-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK + Comparing 20130401.060000.out_pnt.ww3 .........OK + Comparing 20130401.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 608.551522 + 0: The maximum resident set size (KB) = 2323640 + +Test 011 cpld_restart_bmark_p8 PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_noaero_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/cpld_control_noaero_p8 Checking test 012 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -739,14 +798,14 @@ Checking test 012 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 309.784141 - 0: The maximum resident set size (KB) = 1441368 + 0: The total amount of wall time = 310.545752 + 0: The maximum resident set size (KB) = 1441408 Test 012 cpld_control_noaero_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_c96_noaero_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/cpld_control_nowave_noaero_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_c96_noaero_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/cpld_control_nowave_noaero_p8 Checking test 013 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -808,14 +867,14 @@ Checking test 013 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 309.880657 - 0: The maximum resident set size (KB) = 1475072 + 0: The total amount of wall time = 313.962676 + 0: The maximum resident set size (KB) = 1474212 Test 013 cpld_control_nowave_noaero_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_debug_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/cpld_debug_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_debug_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/cpld_debug_p8 Checking test 014 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -868,14 +927,14 @@ Checking test 014 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 569.705148 - 0: The maximum resident set size (KB) = 1594656 + 0: The total amount of wall time = 582.658867 + 0: The maximum resident set size (KB) = 1592244 Test 014 cpld_debug_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_debug_noaero_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/cpld_debug_noaero_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_debug_noaero_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/cpld_debug_noaero_p8 Checking test 015 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -927,14 +986,14 @@ Checking test 015 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 399.659686 - 0: The maximum resident set size (KB) = 1441376 + 0: The total amount of wall time = 386.397364 + 0: The maximum resident set size (KB) = 1441572 Test 015 cpld_debug_noaero_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_noaero_p8_agrid -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/cpld_control_noaero_p8_agrid +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_noaero_p8_agrid +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/cpld_control_noaero_p8_agrid Checking test 016 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -996,14 +1055,14 @@ Checking test 016 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 324.449186 - 0: The maximum resident set size (KB) = 1477956 + 0: The total amount of wall time = 324.821043 + 0: The maximum resident set size (KB) = 1478412 Test 016 cpld_control_noaero_p8_agrid PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_c48 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/cpld_control_c48 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_c48 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/cpld_control_c48 Checking test 017 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1053,14 +1112,14 @@ Checking test 017 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 628.182638 - 0: The maximum resident set size (KB) = 2575500 + 0: The total amount of wall time = 607.115574 + 0: The maximum resident set size (KB) = 2575280 Test 017 cpld_control_c48 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_warmstart_c48 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/cpld_warmstart_c48 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_warmstart_c48 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/cpld_warmstart_c48 Checking test 018 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1110,14 +1169,14 @@ Checking test 018 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 177.076738 - 0: The maximum resident set size (KB) = 2575612 + 0: The total amount of wall time = 186.810125 + 0: The maximum resident set size (KB) = 2588520 Test 018 cpld_warmstart_c48 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_warmstart_c48 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/cpld_restart_c48 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_warmstart_c48 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/cpld_restart_c48 Checking test 019 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1167,14 +1226,14 @@ Checking test 019 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 85.364191 - 0: The maximum resident set size (KB) = 1989456 + 0: The total amount of wall time = 87.032061 + 0: The maximum resident set size (KB) = 2007496 Test 019 cpld_restart_c48 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8_faster -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/cpld_control_p8_faster +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8_faster +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/cpld_control_p8_faster Checking test 020 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1239,14 +1298,14 @@ Checking test 020 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 396.277224 - 0: The maximum resident set size (KB) = 1566992 + 0: The total amount of wall time = 397.423684 + 0: The maximum resident set size (KB) = 1567216 Test 020 cpld_control_p8_faster PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_CubedSphereGrid -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_CubedSphereGrid +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_CubedSphereGrid +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_CubedSphereGrid Checking test 021 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1273,28 +1332,28 @@ Checking test 021 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 143.772244 - 0: The maximum resident set size (KB) = 437780 + 0: The total amount of wall time = 145.769862 + 0: The maximum resident set size (KB) = 437956 Test 021 control_CubedSphereGrid PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_CubedSphereGrid_parallel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_CubedSphereGrid_parallel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_CubedSphereGrid_parallel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_CubedSphereGrid_parallel Checking test 022 control_CubedSphereGrid_parallel 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 = 143.255412 - 0: The maximum resident set size (KB) = 437968 + 0: The total amount of wall time = 144.154244 + 0: The maximum resident set size (KB) = 437772 Test 022 control_CubedSphereGrid_parallel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_latlon -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_latlon +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_latlon +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_latlon Checking test 023 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1305,14 +1364,14 @@ Checking test 023 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 148.593883 - 0: The maximum resident set size (KB) = 437832 + 0: The total amount of wall time = 144.943397 + 0: The maximum resident set size (KB) = 437924 Test 023 control_latlon PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_wrtGauss_netcdf_parallel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_wrtGauss_netcdf_parallel Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1323,14 +1382,14 @@ Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 152.856988 - 0: The maximum resident set size (KB) = 437800 + 0: The total amount of wall time = 153.901595 + 0: The maximum resident set size (KB) = 437884 Test 024 control_wrtGauss_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c48 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_c48 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_c48 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_c48 Checking test 025 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1369,14 +1428,14 @@ Checking test 025 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 421.512851 -0: The maximum resident set size (KB) = 634292 +0: The total amount of wall time = 421.266739 +0: The maximum resident set size (KB) = 636844 Test 025 control_c48 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c192 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_c192 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_c192 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_c192 Checking test 026 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1387,14 +1446,14 @@ Checking test 026 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 586.568718 - 0: The maximum resident set size (KB) = 544180 + 0: The total amount of wall time = 578.004508 + 0: The maximum resident set size (KB) = 544804 Test 026 control_c192 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c384 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_c384 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_c384 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_c384 Checking test 027 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1405,14 +1464,14 @@ Checking test 027 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1114.061498 - 0: The maximum resident set size (KB) = 823480 + 0: The total amount of wall time = 1127.701420 + 0: The maximum resident set size (KB) = 822992 Test 027 control_c384 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c384gdas -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_c384gdas +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_c384gdas +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_c384gdas Checking test 028 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1455,14 +1514,14 @@ Checking test 028 control_c384gdas 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 = 973.661887 - 0: The maximum resident set size (KB) = 954484 + 0: The total amount of wall time = 939.692781 + 0: The maximum resident set size (KB) = 954808 Test 028 control_c384gdas PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_stochy -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_stochy +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_stochy +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_stochy Checking test 029 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1473,28 +1532,28 @@ Checking test 029 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 102.605813 - 0: The maximum resident set size (KB) = 441308 + 0: The total amount of wall time = 97.795768 + 0: The maximum resident set size (KB) = 441420 Test 029 control_stochy PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_stochy -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_stochy_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_stochy +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_stochy_restart Checking test 030 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 54.496143 - 0: The maximum resident set size (KB) = 195816 + 0: The total amount of wall time = 60.919271 + 0: The maximum resident set size (KB) = 195844 Test 030 control_stochy_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_lndp -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_lndp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_lndp +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_lndp Checking test 031 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1505,14 +1564,14 @@ Checking test 031 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 91.681561 - 0: The maximum resident set size (KB) = 440876 + 0: The total amount of wall time = 93.460305 + 0: The maximum resident set size (KB) = 441036 Test 031 control_lndp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_iovr4 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_iovr4 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_iovr4 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_iovr4 Checking test 032 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1527,14 +1586,14 @@ Checking test 032 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 151.206175 - 0: The maximum resident set size (KB) = 437692 + 0: The total amount of wall time = 145.754778 + 0: The maximum resident set size (KB) = 437852 Test 032 control_iovr4 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_iovr5 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_iovr5 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_iovr5 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_iovr5 Checking test 033 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1549,14 +1608,14 @@ Checking test 033 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 156.212251 - 0: The maximum resident set size (KB) = 437860 + 0: The total amount of wall time = 148.373188 + 0: The maximum resident set size (KB) = 437916 Test 033 control_iovr5 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_p8 Checking test 034 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1603,14 +1662,14 @@ Checking test 034 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 197.324513 - 0: The maximum resident set size (KB) = 1380096 + 0: The total amount of wall time = 194.959784 + 0: The maximum resident set size (KB) = 1380104 Test 034 control_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_restart_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_restart_p8 Checking test 035 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1649,14 +1708,14 @@ Checking test 035 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 104.889849 - 0: The maximum resident set size (KB) = 556700 + 0: The total amount of wall time = 114.413771 + 0: The maximum resident set size (KB) = 556664 Test 035 control_restart_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_qr_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_qr_p8 Checking test 036 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1703,14 +1762,14 @@ Checking test 036 control_qr_p8 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 = 201.516790 - 0: The maximum resident set size (KB) = 1383252 + 0: The total amount of wall time = 194.519535 + 0: The maximum resident set size (KB) = 1383264 Test 036 control_qr_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_restart_qr_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_restart_qr_p8 Checking test 037 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1749,14 +1808,14 @@ Checking test 037 control_restart_qr_p8 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 = 130.839850 - 0: The maximum resident set size (KB) = 581624 + 0: The total amount of wall time = 111.143377 + 0: The maximum resident set size (KB) = 581576 Test 037 control_restart_qr_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_decomp_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_decomp_p8 Checking test 038 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1799,14 +1858,14 @@ Checking test 038 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 197.648882 - 0: The maximum resident set size (KB) = 1374052 + 0: The total amount of wall time = 192.806025 + 0: The maximum resident set size (KB) = 1373980 Test 038 control_decomp_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_2threads_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_2threads_p8 Checking test 039 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1849,14 +1908,14 @@ Checking test 039 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 183.854322 - 0: The maximum resident set size (KB) = 1464404 + 0: The total amount of wall time = 180.641269 + 0: The maximum resident set size (KB) = 1464120 Test 039 control_2threads_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_lndp -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_p8_lndp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_lndp +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_p8_lndp Checking test 040 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1875,14 +1934,14 @@ Checking test 040 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 351.590490 - 0: The maximum resident set size (KB) = 1381200 + 0: The total amount of wall time = 361.347210 + 0: The maximum resident set size (KB) = 1381220 Test 040 control_p8_lndp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_rrtmgp -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_p8_rrtmgp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_rrtmgp +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_p8_rrtmgp Checking test 041 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1929,14 +1988,14 @@ Checking test 041 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 260.472924 - 0: The maximum resident set size (KB) = 1437572 + 0: The total amount of wall time = 265.327983 + 0: The maximum resident set size (KB) = 1437540 Test 041 control_p8_rrtmgp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_mynn -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_p8_mynn +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_mynn +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_p8_mynn Checking test 042 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1983,14 +2042,14 @@ Checking test 042 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 204.903564 - 0: The maximum resident set size (KB) = 1384180 + 0: The total amount of wall time = 191.877252 + 0: The maximum resident set size (KB) = 1384160 Test 042 control_p8_mynn PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/merra2_thompson -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/merra2_thompson +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/merra2_thompson +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/merra2_thompson Checking test 043 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2037,14 +2096,14 @@ Checking test 043 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 214.097358 - 0: The maximum resident set size (KB) = 1385580 + 0: The total amount of wall time = 223.525689 + 0: The maximum resident set size (KB) = 1385616 Test 043 merra2_thompson PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/regional_control +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/regional_control Checking test 044 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2055,28 +2114,28 @@ Checking test 044 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 336.695387 - 0: The maximum resident set size (KB) = 578960 + 0: The total amount of wall time = 345.097944 + 0: The maximum resident set size (KB) = 578644 Test 044 regional_control PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/regional_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/regional_restart Checking test 045 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 172.464501 - 0: The maximum resident set size (KB) = 578572 + 0: The total amount of wall time = 194.474843 + 0: The maximum resident set size (KB) = 578788 Test 045 regional_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/regional_control_qr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/regional_control_qr Checking test 046 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2087,28 +2146,28 @@ Checking test 046 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 337.888931 - 0: The maximum resident set size (KB) = 578924 + 0: The total amount of wall time = 352.734869 + 0: The maximum resident set size (KB) = 578776 Test 046 regional_control_qr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/regional_restart_qr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/regional_restart_qr Checking test 047 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 181.247815 - 0: The maximum resident set size (KB) = 578924 + 0: The total amount of wall time = 194.138563 + 0: The maximum resident set size (KB) = 579088 Test 047 regional_restart_qr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/regional_decomp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/regional_decomp Checking test 048 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2119,14 +2178,14 @@ Checking test 048 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 348.770082 - 0: The maximum resident set size (KB) = 580816 + 0: The total amount of wall time = 356.501926 + 0: The maximum resident set size (KB) = 580788 Test 048 regional_decomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/regional_2threads +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/regional_2threads Checking test 049 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2137,14 +2196,14 @@ Checking test 049 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 210.212563 - 0: The maximum resident set size (KB) = 586164 + 0: The total amount of wall time = 218.054766 + 0: The maximum resident set size (KB) = 586260 Test 049 regional_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_noquilt -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/regional_noquilt +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_noquilt +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/regional_noquilt Checking test 050 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2152,28 +2211,28 @@ Checking test 050 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 357.749656 - 0: The maximum resident set size (KB) = 573180 + 0: The total amount of wall time = 369.810544 + 0: The maximum resident set size (KB) = 573172 Test 050 regional_noquilt PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_netcdf_parallel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/regional_netcdf_parallel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_netcdf_parallel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/regional_netcdf_parallel Checking test 051 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 343.618158 - 0: The maximum resident set size (KB) = 578664 + 0: The total amount of wall time = 337.258126 + 0: The maximum resident set size (KB) = 578320 Test 051 regional_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/regional_2dwrtdecomp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/regional_2dwrtdecomp Checking test 052 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2184,14 +2243,14 @@ Checking test 052 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 349.978059 - 0: The maximum resident set size (KB) = 578940 + 0: The total amount of wall time = 343.319845 + 0: The maximum resident set size (KB) = 578644 Test 052 regional_2dwrtdecomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/fv3_regional_wofs -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/regional_wofs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/fv3_regional_wofs +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/regional_wofs Checking test 053 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2202,14 +2261,14 @@ Checking test 053 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 425.333425 - 0: The maximum resident set size (KB) = 263984 + 0: The total amount of wall time = 430.611504 + 0: The maximum resident set size (KB) = 264000 Test 053 regional_wofs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rap_control +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rap_control Checking test 054 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2256,14 +2315,14 @@ Checking test 054 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 481.374431 - 0: The maximum resident set size (KB) = 807976 + 0: The total amount of wall time = 482.144041 + 0: The maximum resident set size (KB) = 807820 Test 054 rap_control PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_spp_sppt_shum_skeb -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/regional_spp_sppt_shum_skeb +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_spp_sppt_shum_skeb +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/regional_spp_sppt_shum_skeb Checking test 055 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2274,14 +2333,14 @@ Checking test 055 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 278.156589 - 0: The maximum resident set size (KB) = 908016 + 0: The total amount of wall time = 281.731456 + 0: The maximum resident set size (KB) = 908032 Test 055 regional_spp_sppt_shum_skeb PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rap_decomp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rap_decomp Checking test 056 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2328,14 +2387,14 @@ Checking test 056 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 501.185016 - 0: The maximum resident set size (KB) = 806356 + 0: The total amount of wall time = 499.176020 + 0: The maximum resident set size (KB) = 806368 Test 056 rap_decomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rap_2threads +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rap_2threads Checking test 057 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2382,14 +2441,14 @@ Checking test 057 rap_2threads results .... Comparing 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.983992 - 0: The maximum resident set size (KB) = 878536 + 0: The total amount of wall time = 458.572062 + 0: The maximum resident set size (KB) = 878372 Test 057 rap_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rap_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rap_restart Checking test 058 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2428,14 +2487,14 @@ Checking test 058 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 243.923281 - 0: The maximum resident set size (KB) = 553208 + 0: The total amount of wall time = 243.646391 + 0: The maximum resident set size (KB) = 553168 Test 058 rap_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rap_sfcdiff +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_sfcdiff +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rap_sfcdiff Checking test 059 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2482,14 +2541,14 @@ Checking test 059 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 489.360539 - 0: The maximum resident set size (KB) = 807912 + 0: The total amount of wall time = 483.549268 + 0: The maximum resident set size (KB) = 807900 Test 059 rap_sfcdiff PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rap_sfcdiff_decomp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_sfcdiff +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rap_sfcdiff_decomp Checking test 060 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2536,14 +2595,14 @@ Checking test 060 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 502.673613 - 0: The maximum resident set size (KB) = 806288 + 0: The total amount of wall time = 510.389983 + 0: The maximum resident set size (KB) = 807364 Test 060 rap_sfcdiff_decomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rap_sfcdiff_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_sfcdiff +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rap_sfcdiff_restart Checking test 061 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2582,14 +2641,14 @@ Checking test 061 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 360.540164 - 0: The maximum resident set size (KB) = 552264 + 0: The total amount of wall time = 364.698615 + 0: The maximum resident set size (KB) = 552368 Test 061 rap_sfcdiff_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hrrr_control +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hrrr_control Checking test 062 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2636,14 +2695,14 @@ Checking test 062 hrrr_control results .... Comparing 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.414866 - 0: The maximum resident set size (KB) = 805964 + 0: The total amount of wall time = 467.396448 + 0: The maximum resident set size (KB) = 805796 Test 062 hrrr_control PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hrrr_control_decomp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hrrr_control_decomp Checking test 063 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2690,14 +2749,14 @@ Checking test 063 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 480.859701 - 0: The maximum resident set size (KB) = 805296 + 0: The total amount of wall time = 485.806783 + 0: The maximum resident set size (KB) = 805200 Test 063 hrrr_control_decomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hrrr_control_2threads +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hrrr_control_2threads Checking test 064 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2744,14 +2803,14 @@ Checking test 064 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 441.587734 - 0: The maximum resident set size (KB) = 872784 + 0: The total amount of wall time = 441.992143 + 0: The maximum resident set size (KB) = 872952 Test 064 hrrr_control_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hrrr_control_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hrrr_control_restart Checking test 065 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2790,14 +2849,14 @@ Checking test 065 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 344.269998 - 0: The maximum resident set size (KB) = 547972 + 0: The total amount of wall time = 345.826280 + 0: The maximum resident set size (KB) = 547760 Test 065 hrrr_control_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1beta -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rrfs_v1beta +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_v1beta +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rrfs_v1beta Checking test 066 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2844,14 +2903,14 @@ Checking test 066 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 473.948281 - 0: The maximum resident set size (KB) = 805076 + 0: The total amount of wall time = 482.543272 + 0: The maximum resident set size (KB) = 804876 Test 066 rrfs_v1beta PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1nssl -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rrfs_v1nssl +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_v1nssl +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rrfs_v1nssl Checking test 067 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2866,14 +2925,14 @@ Checking test 067 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 581.704730 - 0: The maximum resident set size (KB) = 493332 + 0: The total amount of wall time = 587.783735 + 0: The maximum resident set size (KB) = 493312 Test 067 rrfs_v1nssl PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rrfs_v1nssl_nohailnoccn +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rrfs_v1nssl_nohailnoccn Checking test 068 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2888,14 +2947,14 @@ Checking test 068 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 558.795294 - 0: The maximum resident set size (KB) = 485904 + 0: The total amount of wall time = 562.901826 + 0: The maximum resident set size (KB) = 486016 Test 068 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rrfs_smoke_conus13km_hrrr_warm Checking test 069 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2904,14 +2963,14 @@ Checking test 069 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 182.873819 - 0: The maximum resident set size (KB) = 657928 + 0: The total amount of wall time = 177.631407 + 0: The maximum resident set size (KB) = 658140 Test 069 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 070 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2920,14 +2979,14 @@ Checking test 070 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 126.129012 - 0: The maximum resident set size (KB) = 671328 + 0: The total amount of wall time = 126.862886 + 0: The maximum resident set size (KB) = 670828 Test 070 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rrfs_conus13km_hrrr_warm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rrfs_conus13km_hrrr_warm Checking test 071 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2936,14 +2995,14 @@ Checking test 071 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 166.332453 - 0: The maximum resident set size (KB) = 634752 + 0: The total amount of wall time = 167.515710 + 0: The maximum resident set size (KB) = 634712 Test 071 rrfs_conus13km_hrrr_warm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rrfs_smoke_conus13km_radar_tten_warm Checking test 072 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2952,26 +3011,26 @@ Checking test 072 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 195.380364 - 0: The maximum resident set size (KB) = 660916 + 0: The total amount of wall time = 185.825674 + 0: The maximum resident set size (KB) = 661600 Test 072 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 073 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 98.133525 - 0: The maximum resident set size (KB) = 615180 + 0: The total amount of wall time = 86.631848 + 0: The maximum resident set size (KB) = 615068 Test 073 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmgt -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_csawmgt +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_csawmgt +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_csawmgt Checking test 074 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2982,14 +3041,14 @@ Checking test 074 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 397.382233 - 0: The maximum resident set size (KB) = 502596 + 0: The total amount of wall time = 392.026117 + 0: The maximum resident set size (KB) = 502580 Test 074 control_csawmgt PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_ras -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_ras +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_ras +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_ras Checking test 075 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3000,26 +3059,26 @@ Checking test 075 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 201.581952 - 0: The maximum resident set size (KB) = 472936 + 0: The total amount of wall time = 203.071382 + 0: The maximum resident set size (KB) = 472788 Test 075 control_ras PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wam -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_wam +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_wam +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_wam Checking test 076 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 126.569869 - 0: The maximum resident set size (KB) = 189048 + 0: The total amount of wall time = 128.061276 + 0: The maximum resident set size (KB) = 188880 Test 076 control_wam PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_faster -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_p8_faster +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_faster +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_p8_faster Checking test 077 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3066,14 +3125,14 @@ Checking test 077 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 185.372809 - 0: The maximum resident set size (KB) = 1380124 + 0: The total amount of wall time = 183.410881 + 0: The maximum resident set size (KB) = 1380108 Test 077 control_p8_faster PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control_faster -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/regional_control_faster +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control_faster +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/regional_control_faster Checking test 078 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3084,56 +3143,56 @@ Checking test 078 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 319.657989 - 0: The maximum resident set size (KB) = 578684 + 0: The total amount of wall time = 315.715892 + 0: The maximum resident set size (KB) = 578428 Test 078 regional_control_faster PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 079 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 896.029959 - 0: The maximum resident set size (KB) = 689956 + 0: The total amount of wall time = 900.257815 + 0: The maximum resident set size (KB) = 688176 Test 079 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 080 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 538.346178 - 0: The maximum resident set size (KB) = 703800 + 0: The total amount of wall time = 525.871133 + 0: The maximum resident set size (KB) = 703548 Test 080 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rrfs_conus13km_hrrr_warm_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rrfs_conus13km_hrrr_warm_debug Checking test 081 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 809.419167 - 0: The maximum resident set size (KB) = 664892 + 0: The total amount of wall time = 809.198304 + 0: The maximum resident set size (KB) = 665148 Test 081 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_CubedSphereGrid_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_CubedSphereGrid_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_CubedSphereGrid_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_CubedSphereGrid_debug Checking test 082 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3160,334 +3219,334 @@ Checking test 082 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 157.572776 - 0: The maximum resident set size (KB) = 601956 + 0: The total amount of wall time = 158.189057 + 0: The maximum resident set size (KB) = 601904 Test 082 control_CubedSphereGrid_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_wrtGauss_netcdf_parallel_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_wrtGauss_netcdf_parallel_debug Checking test 083 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 162.616387 - 0: The maximum resident set size (KB) = 599536 + 0: The total amount of wall time = 168.913482 + 0: The maximum resident set size (KB) = 599556 Test 083 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_stochy_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_stochy_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_stochy_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_stochy_debug Checking test 084 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 176.919724 - 0: The maximum resident set size (KB) = 604516 + 0: The total amount of wall time = 177.252154 + 0: The maximum resident set size (KB) = 604560 Test 084 control_stochy_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_lndp_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_lndp_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_lndp_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_lndp_debug Checking test 085 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 158.889605 - 0: The maximum resident set size (KB) = 603868 + 0: The total amount of wall time = 160.490785 + 0: The maximum resident set size (KB) = 603940 Test 085 control_lndp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmg_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_csawmg_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_csawmg_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_csawmg_debug Checking test 086 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 256.597229 - 0: The maximum resident set size (KB) = 641304 + 0: The total amount of wall time = 257.884852 + 0: The maximum resident set size (KB) = 641344 Test 086 control_csawmg_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmgt_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_csawmgt_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_csawmgt_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_csawmgt_debug Checking test 087 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 255.483168 - 0: The maximum resident set size (KB) = 640988 + 0: The total amount of wall time = 252.845458 + 0: The maximum resident set size (KB) = 640976 Test 087 control_csawmgt_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_ras_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_ras_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_ras_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_ras_debug Checking test 088 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 163.636295 - 0: The maximum resident set size (KB) = 612996 + 0: The total amount of wall time = 165.237697 + 0: The maximum resident set size (KB) = 613280 Test 088 control_ras_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_diag_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_diag_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_diag_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_diag_debug Checking test 089 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 163.268344 - 0: The maximum resident set size (KB) = 659064 + 0: The total amount of wall time = 164.275507 + 0: The maximum resident set size (KB) = 659044 Test 089 control_diag_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_debug_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_debug_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_debug_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_debug_p8 Checking test 090 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 190.436466 - 0: The maximum resident set size (KB) = 1382780 + 0: The total amount of wall time = 191.633583 + 0: The maximum resident set size (KB) = 1382788 Test 090 control_debug_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/regional_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/regional_debug Checking test 091 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1040.669751 - 0: The maximum resident set size (KB) = 605908 + 0: The total amount of wall time = 1052.429750 + 0: The maximum resident set size (KB) = 605844 Test 091 regional_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rap_control_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rap_control_debug Checking test 092 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 299.518468 - 0: The maximum resident set size (KB) = 970412 + 0: The total amount of wall time = 291.246339 + 0: The maximum resident set size (KB) = 970512 Test 092 rap_control_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hrrr_control_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hrrr_control_debug Checking test 093 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 285.774860 - 0: The maximum resident set size (KB) = 968852 + 0: The total amount of wall time = 286.678901 + 0: The maximum resident set size (KB) = 968864 Test 093 hrrr_control_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rap_unified_drag_suite_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rap_unified_drag_suite_debug Checking test 094 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 292.956760 - 0: The maximum resident set size (KB) = 970448 + 0: The total amount of wall time = 298.667941 + 0: The maximum resident set size (KB) = 970492 Test 094 rap_unified_drag_suite_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_diag_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rap_diag_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_diag_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rap_diag_debug Checking test 095 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 304.714359 - 0: The maximum resident set size (KB) = 1054176 + 0: The total amount of wall time = 304.782781 + 0: The maximum resident set size (KB) = 1054084 Test 095 rap_diag_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_cires_ugwp_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rap_cires_ugwp_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_cires_ugwp_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rap_cires_ugwp_debug Checking test 096 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 295.940338 - 0: The maximum resident set size (KB) = 969568 + 0: The total amount of wall time = 305.788055 + 0: The maximum resident set size (KB) = 969784 Test 096 rap_cires_ugwp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_cires_ugwp_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rap_unified_ugwp_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_cires_ugwp_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rap_unified_ugwp_debug Checking test 097 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 296.818162 - 0: The maximum resident set size (KB) = 971772 + 0: The total amount of wall time = 297.520373 + 0: The maximum resident set size (KB) = 971756 Test 097 rap_unified_ugwp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_lndp_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rap_lndp_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_lndp_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rap_lndp_debug Checking test 098 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 302.620992 - 0: The maximum resident set size (KB) = 971248 + 0: The total amount of wall time = 297.417669 + 0: The maximum resident set size (KB) = 971292 Test 098 rap_lndp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_flake_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rap_flake_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_flake_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rap_flake_debug Checking test 099 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 290.889031 - 0: The maximum resident set size (KB) = 970520 + 0: The total amount of wall time = 294.676546 + 0: The maximum resident set size (KB) = 970532 Test 099 rap_flake_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_progcld_thompson_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rap_progcld_thompson_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_progcld_thompson_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rap_progcld_thompson_debug Checking test 100 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 290.499515 - 0: The maximum resident set size (KB) = 970500 + 0: The total amount of wall time = 291.371042 + 0: The maximum resident set size (KB) = 970528 Test 100 rap_progcld_thompson_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_noah_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rap_noah_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_noah_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rap_noah_debug Checking test 101 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 287.245981 - 0: The maximum resident set size (KB) = 969200 + 0: The total amount of wall time = 285.503960 + 0: The maximum resident set size (KB) = 969204 Test 101 rap_noah_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rap_sfcdiff_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_sfcdiff_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rap_sfcdiff_debug Checking test 102 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 295.939677 - 0: The maximum resident set size (KB) = 970448 + 0: The total amount of wall time = 292.583836 + 0: The maximum resident set size (KB) = 970436 Test 102 rap_sfcdiff_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rap_noah_sfcdiff_cires_ugwp_debug Checking test 103 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 476.332479 - 0: The maximum resident set size (KB) = 968740 + 0: The total amount of wall time = 477.969334 + 0: The maximum resident set size (KB) = 968700 Test 103 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1beta_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rrfs_v1beta_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_v1beta_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rrfs_v1beta_debug Checking test 104 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 285.680704 - 0: The maximum resident set size (KB) = 966312 + 0: The total amount of wall time = 286.386447 + 0: The maximum resident set size (KB) = 966392 Test 104 rrfs_v1beta_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wam_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_wam_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_wam_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_wam_debug Checking test 105 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 298.822118 - 0: The maximum resident set size (KB) = 217656 + 0: The total amount of wall time = 290.888582 + 0: The maximum resident set size (KB) = 217672 Test 105 control_wam_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3498,14 +3557,14 @@ Checking test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 263.253283 - 0: The maximum resident set size (KB) = 802788 + 0: The total amount of wall time = 260.094764 + 0: The maximum resident set size (KB) = 802984 Test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn32_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rap_control_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rap_control_dyn32_phy32 Checking test 107 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3552,14 +3611,14 @@ Checking test 107 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 398.498465 - 0: The maximum resident set size (KB) = 691340 + 0: The total amount of wall time = 401.772542 + 0: The maximum resident set size (KB) = 691480 Test 107 rap_control_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hrrr_control_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hrrr_control_dyn32_phy32 Checking test 108 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3606,14 +3665,14 @@ Checking test 108 hrrr_control_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 214.235523 - 0: The maximum resident set size (KB) = 689732 + 0: The total amount of wall time = 215.984121 + 0: The maximum resident set size (KB) = 689892 Test 108 hrrr_control_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn32_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rap_2threads_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rap_2threads_dyn32_phy32 Checking test 109 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3660,14 +3719,14 @@ Checking test 109 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 391.416601 - 0: The maximum resident set size (KB) = 743320 + 0: The total amount of wall time = 383.942805 + 0: The maximum resident set size (KB) = 743352 Test 109 rap_2threads_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hrrr_control_2threads_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hrrr_control_2threads_dyn32_phy32 Checking test 110 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3714,14 +3773,14 @@ Checking test 110 hrrr_control_2threads_dyn32_phy32 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 = 200.096984 - 0: The maximum resident set size (KB) = 740880 + 0: The total amount of wall time = 204.552813 + 0: The maximum resident set size (KB) = 740800 Test 110 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hrrr_control_decomp_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hrrr_control_decomp_dyn32_phy32 Checking test 111 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3768,14 +3827,14 @@ Checking test 111 hrrr_control_decomp_dyn32_phy32 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 = 223.774918 - 0: The maximum resident set size (KB) = 688476 + 0: The total amount of wall time = 221.362664 + 0: The maximum resident set size (KB) = 688564 Test 111 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn32_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rap_restart_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rap_restart_dyn32_phy32 Checking test 112 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3814,14 +3873,14 @@ Checking test 112 rap_restart_dyn32_phy32 results .... Comparing 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.521674 - 0: The maximum resident set size (KB) = 526388 + 0: The total amount of wall time = 309.093015 + 0: The maximum resident set size (KB) = 526372 Test 112 rap_restart_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hrrr_control_restart_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hrrr_control_restart_dyn32_phy32 Checking test 113 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3860,14 +3919,14 @@ Checking test 113 hrrr_control_restart_dyn32_phy32 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 = 117.209965 - 0: The maximum resident set size (KB) = 518740 + 0: The total amount of wall time = 115.675662 + 0: The maximum resident set size (KB) = 518620 Test 113 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn64_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rap_control_dyn64_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_dyn64_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rap_control_dyn64_phy32 Checking test 114 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3914,81 +3973,81 @@ Checking test 114 rap_control_dyn64_phy32 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 = 267.683254 - 0: The maximum resident set size (KB) = 713368 + 0: The total amount of wall time = 267.694316 + 0: The maximum resident set size (KB) = 709544 Test 114 rap_control_dyn64_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rap_control_debug_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rap_control_debug_dyn32_phy32 Checking test 115 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 287.786707 - 0: The maximum resident set size (KB) = 855388 + 0: The total amount of wall time = 286.587501 + 0: The maximum resident set size (KB) = 855412 Test 115 rap_control_debug_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hrrr_control_debug_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hrrr_control_debug_dyn32_phy32 Checking test 116 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.901474 - 0: The maximum resident set size (KB) = 852792 + 0: The total amount of wall time = 284.086337 + 0: The maximum resident set size (KB) = 852924 Test 116 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/rap_control_dyn64_phy32_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rap_control_dyn64_phy32_debug Checking test 117 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 291.724862 - 0: The maximum resident set size (KB) = 876348 + 0: The total amount of wall time = 296.080028 + 0: The maximum resident set size (KB) = 876388 Test 117 rap_control_dyn64_phy32_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hafs_regional_atm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hafs_regional_atm Checking test 118 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 276.415230 - 0: The maximum resident set size (KB) = 687452 + 0: The total amount of wall time = 272.045454 + 0: The maximum resident set size (KB) = 688056 Test 118 hafs_regional_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hafs_regional_atm_thompson_gfdlsf +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hafs_regional_atm_thompson_gfdlsf Checking test 119 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 306.979249 - 0: The maximum resident set size (KB) = 1039604 + 0: The total amount of wall time = 309.115577 + 0: The maximum resident set size (KB) = 1039940 Test 119 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_ocn -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hafs_regional_atm_ocn +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_ocn +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hafs_regional_atm_ocn Checking test 120 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3997,62 +4056,62 @@ Checking test 120 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 447.870525 - 0: The maximum resident set size (KB) = 715376 + 0: The total amount of wall time = 454.145969 + 0: The maximum resident set size (KB) = 715512 Test 120 hafs_regional_atm_ocn PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_wav -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hafs_regional_atm_wav +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_wav +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hafs_regional_atm_wav Checking test 121 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - Comparing out_grd.ww3 .........OK - Comparing out_pnt.ww3 .........OK + Comparing 20190829.060000.out_grd.ww3 .........OK + Comparing 20190829.060000.out_pnt.ww3 .........OK Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 940.989577 - 0: The maximum resident set size (KB) = 750656 + 0: The total amount of wall time = 938.320059 + 0: The maximum resident set size (KB) = 749836 Test 121 hafs_regional_atm_wav PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_ocn_wav -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hafs_regional_atm_ocn_wav +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_ocn_wav +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hafs_regional_atm_ocn_wav Checking test 122 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK Comparing archs.2019_241_06.a .........OK - Comparing out_grd.ww3 .........OK - Comparing out_pnt.ww3 .........OK + Comparing 20190829.060000.out_grd.ww3 .........OK + Comparing 20190829.060000.out_pnt.ww3 .........OK Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 1053.781793 - 0: The maximum resident set size (KB) = 765696 + 0: The total amount of wall time = 1036.953381 + 0: The maximum resident set size (KB) = 767412 Test 122 hafs_regional_atm_ocn_wav PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_1nest_atm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hafs_regional_1nest_atm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_1nest_atm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hafs_regional_1nest_atm Checking test 123 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 379.510617 - 0: The maximum resident set size (KB) = 279028 + 0: The total amount of wall time = 378.447651 + 0: The maximum resident set size (KB) = 279304 Test 123 hafs_regional_1nest_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hafs_regional_telescopic_2nests_atm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hafs_regional_telescopic_2nests_atm Checking test 124 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4061,28 +4120,28 @@ Checking test 124 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 460.367236 - 0: The maximum resident set size (KB) = 289288 + 0: The total amount of wall time = 436.480617 + 0: The maximum resident set size (KB) = 286812 Test 124 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_global_1nest_atm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hafs_global_1nest_atm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_global_1nest_atm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hafs_global_1nest_atm Checking test 125 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 173.557130 - 0: The maximum resident set size (KB) = 184620 + 0: The total amount of wall time = 170.622801 + 0: The maximum resident set size (KB) = 183944 Test 125 hafs_global_1nest_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_global_multiple_4nests_atm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hafs_global_multiple_4nests_atm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_global_multiple_4nests_atm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hafs_global_multiple_4nests_atm Checking test 126 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4100,14 +4159,14 @@ Checking test 126 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 492.136418 - 0: The maximum resident set size (KB) = 214052 + 0: The total amount of wall time = 493.740556 + 0: The maximum resident set size (KB) = 232972 Test 126 hafs_global_multiple_4nests_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hafs_regional_specified_moving_1nest_atm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hafs_regional_specified_moving_1nest_atm Checking test 127 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4116,28 +4175,28 @@ Checking test 127 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 245.256895 - 0: The maximum resident set size (KB) = 294580 + 0: The total amount of wall time = 246.683176 + 0: The maximum resident set size (KB) = 294296 Test 127 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hafs_regional_storm_following_1nest_atm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hafs_regional_storm_following_1nest_atm Checking test 128 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 227.575288 - 0: The maximum resident set size (KB) = 294720 + 0: The total amount of wall time = 229.671114 + 0: The maximum resident set size (KB) = 294284 Test 128 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hafs_regional_storm_following_1nest_atm_ocn Checking test 129 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4146,42 +4205,42 @@ Checking test 129 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 268.437338 - 0: The maximum resident set size (KB) = 323876 + 0: The total amount of wall time = 271.960186 + 0: The maximum resident set size (KB) = 323928 Test 129 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hafs_global_storm_following_1nest_atm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_global_storm_following_1nest_atm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hafs_global_storm_following_1nest_atm Checking test 130 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 69.475341 - 0: The maximum resident set size (KB) = 203248 + 0: The total amount of wall time = 70.731540 + 0: The maximum resident set size (KB) = 203012 Test 130 hafs_global_storm_following_1nest_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 131 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 769.776899 - 0: The maximum resident set size (KB) = 347352 + 0: The total amount of wall time = 774.454054 + 0: The maximum resident set size (KB) = 347768 Test 131 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 132 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4189,17 +4248,17 @@ Checking test 132 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing sfc.nest02.f006.nc .........OK Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - Comparing out_grd.ww3 .........OK - Comparing out_pnt.ww3 .........OK + Comparing 20200825.180000.out_grd.ww3 .........OK + Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 708.864686 - 0: The maximum resident set size (KB) = 372656 + 0: The total amount of wall time = 716.211982 + 0: The maximum resident set size (KB) = 373860 Test 132 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_docn -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hafs_regional_docn +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_docn +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hafs_regional_docn Checking test 133 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4207,14 +4266,14 @@ Checking test 133 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 395.964669 - 0: The maximum resident set size (KB) = 724188 + 0: The total amount of wall time = 401.542411 + 0: The maximum resident set size (KB) = 724724 Test 133 hafs_regional_docn PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_docn_oisst -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hafs_regional_docn_oisst +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_docn_oisst +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hafs_regional_docn_oisst Checking test 134 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4222,131 +4281,131 @@ Checking test 134 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 395.865175 - 0: The maximum resident set size (KB) = 713400 + 0: The total amount of wall time = 403.339708 + 0: The maximum resident set size (KB) = 713280 Test 134 hafs_regional_docn_oisst PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_datm_cdeps -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/hafs_regional_datm_cdeps +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_datm_cdeps +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hafs_regional_datm_cdeps Checking test 135 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 1178.310661 - 0: The maximum resident set size (KB) = 809200 + 0: The total amount of wall time = 1174.179061 + 0: The maximum resident set size (KB) = 809256 Test 135 hafs_regional_datm_cdeps PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/datm_cdeps_control_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/datm_cdeps_control_cfsr Checking test 136 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 167.233402 - 0: The maximum resident set size (KB) = 717504 + 0: The total amount of wall time = 169.248102 + 0: The maximum resident set size (KB) = 715860 Test 136 datm_cdeps_control_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/datm_cdeps_restart_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/datm_cdeps_restart_cfsr Checking test 137 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 102.099401 - 0: The maximum resident set size (KB) = 708852 + 0: The total amount of wall time = 96.726801 + 0: The maximum resident set size (KB) = 716028 Test 137 datm_cdeps_restart_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_gefs -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/datm_cdeps_control_gefs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_control_gefs +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/datm_cdeps_control_gefs Checking test 138 datm_cdeps_control_gefs 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 = 161.604603 - 0: The maximum resident set size (KB) = 597972 + 0: The total amount of wall time = 168.063096 + 0: The maximum resident set size (KB) = 597904 Test 138 datm_cdeps_control_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_iau_gefs -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/datm_cdeps_iau_gefs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_iau_gefs +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/datm_cdeps_iau_gefs Checking test 139 datm_cdeps_iau_gefs 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 = 162.318115 - 0: The maximum resident set size (KB) = 599984 + 0: The total amount of wall time = 163.835880 + 0: The maximum resident set size (KB) = 598116 Test 139 datm_cdeps_iau_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_stochy_gefs -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/datm_cdeps_stochy_gefs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_stochy_gefs +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/datm_cdeps_stochy_gefs Checking test 140 datm_cdeps_stochy_gefs 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 = 162.603448 - 0: The maximum resident set size (KB) = 600056 + 0: The total amount of wall time = 172.525836 + 0: The maximum resident set size (KB) = 599988 Test 140 datm_cdeps_stochy_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/datm_cdeps_ciceC_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_ciceC_cfsr +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/datm_cdeps_ciceC_cfsr Checking test 141 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 168.153052 - 0: The maximum resident set size (KB) = 715828 + 0: The total amount of wall time = 170.027301 + 0: The maximum resident set size (KB) = 715924 Test 141 datm_cdeps_ciceC_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_bulk_cfsr -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/datm_cdeps_bulk_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_bulk_cfsr +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/datm_cdeps_bulk_cfsr Checking test 142 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 166.665649 - 0: The maximum resident set size (KB) = 717596 + 0: The total amount of wall time = 165.533744 + 0: The maximum resident set size (KB) = 715944 Test 142 datm_cdeps_bulk_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_bulk_gefs -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/datm_cdeps_bulk_gefs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_bulk_gefs +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/datm_cdeps_bulk_gefs Checking test 143 datm_cdeps_bulk_gefs 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 = 158.677200 - 0: The maximum resident set size (KB) = 597984 + 0: The total amount of wall time = 161.838474 + 0: The maximum resident set size (KB) = 602136 Test 143 datm_cdeps_bulk_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_mx025_cfsr -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/datm_cdeps_mx025_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_mx025_cfsr +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/datm_cdeps_mx025_cfsr Checking test 144 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4355,14 +4414,14 @@ Checking test 144 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 425.073961 - 0: The maximum resident set size (KB) = 496716 + 0: The total amount of wall time = 438.805417 + 0: The maximum resident set size (KB) = 494400 Test 144 datm_cdeps_mx025_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_mx025_gefs -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/datm_cdeps_mx025_gefs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_mx025_gefs +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/datm_cdeps_mx025_gefs Checking test 145 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4371,77 +4430,77 @@ Checking test 145 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 425.668742 - 0: The maximum resident set size (KB) = 475988 + 0: The total amount of wall time = 461.449192 + 0: The maximum resident set size (KB) = 476416 Test 145 datm_cdeps_mx025_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/datm_cdeps_multiple_files_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/datm_cdeps_multiple_files_cfsr Checking test 146 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 169.207887 - 0: The maximum resident set size (KB) = 715996 + 0: The total amount of wall time = 167.688870 + 0: The maximum resident set size (KB) = 715728 Test 146 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/datm_cdeps_3072x1536_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/datm_cdeps_3072x1536_cfsr Checking test 147 datm_cdeps_3072x1536_cfsr 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 = 251.145275 - 0: The maximum resident set size (KB) = 1948080 + 0: The total amount of wall time = 253.573878 + 0: The maximum resident set size (KB) = 1947992 Test 147 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_gfs -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/datm_cdeps_gfs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_gfs +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/datm_cdeps_gfs Checking test 148 datm_cdeps_gfs 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 = 252.822546 - 0: The maximum resident set size (KB) = 1952208 + 0: The total amount of wall time = 256.506773 + 0: The maximum resident set size (KB) = 1947100 Test 148 datm_cdeps_gfs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_debug_cfsr -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/datm_cdeps_debug_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_debug_cfsr +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/datm_cdeps_debug_cfsr Checking test 149 datm_cdeps_debug_cfsr results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 372.813951 - 0: The maximum resident set size (KB) = 711452 + 0: The total amount of wall time = 370.276170 + 0: The maximum resident set size (KB) = 693024 Test 149 datm_cdeps_debug_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_cfsr_faster -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/datm_cdeps_control_cfsr_faster +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_control_cfsr_faster +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/datm_cdeps_control_cfsr_faster Checking test 150 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.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.180116 - 0: The maximum resident set size (KB) = 715728 + 0: The total amount of wall time = 165.247244 + 0: The maximum resident set size (KB) = 715692 Test 150 datm_cdeps_control_cfsr_faster PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/datm_cdeps_lnd_gswp3 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/datm_cdeps_lnd_gswp3 Checking test 151 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4450,14 +4509,14 @@ Checking test 151 datm_cdeps_lnd_gswp3 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 = 19.739349 - 0: The maximum resident set size (KB) = 149920 + 0: The total amount of wall time = 14.754692 + 0: The maximum resident set size (KB) = 153860 Test 151 datm_cdeps_lnd_gswp3 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/datm_cdeps_lnd_gswp3_rst +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/datm_cdeps_lnd_gswp3_rst Checking test 152 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4466,14 +4525,14 @@ Checking test 152 datm_cdeps_lnd_gswp3_rst 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 = 23.625868 - 0: The maximum resident set size (KB) = 149740 + 0: The total amount of wall time = 26.352968 + 0: The maximum resident set size (KB) = 153920 Test 152 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_atmlnd_sbs -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_p8_atmlnd_sbs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_atmlnd_sbs +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_p8_atmlnd_sbs Checking test 153 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4558,15 +4617,65 @@ Checking test 153 control_p8_atmlnd_sbs results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 255.698791 - 0: The maximum resident set size (KB) = 1413568 + 0: The total amount of wall time = 240.033312 + 0: The maximum resident set size (KB) = 1413364 Test 153 control_p8_atmlnd_sbs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_atmwav -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/control_atmwav -Checking test 154 control_atmwav results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/atmwav_control_noaero_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/atmwav_control_noaero_p8 +Checking test 154 atmwav_control_noaero_p8 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + Comparing RESTART/ufs.atmw.cpl.r.2021-03-22-64800.nc .........OK + Comparing 20210322.180000.out_pnt.ww3 .........OK + Comparing 20210322.180000.out_grd.ww3 .........OK + Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK + + 0: The total amount of wall time = 106.754442 + 0: The maximum resident set size (KB) = 1392024 + +Test 154 atmwav_control_noaero_p8 PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_atmwav +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_atmwav +Checking test 155 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -4609,15 +4718,15 @@ Checking test 154 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 98.226036 - 0: The maximum resident set size (KB) = 451548 + 0: The total amount of wall time = 99.714327 + 0: The maximum resident set size (KB) = 451636 -Test 154 control_atmwav PASS +Test 155 control_atmwav PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/atmaero_control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/atmaero_control_p8 -Checking test 155 atmaero_control_p8 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/atmaero_control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/atmaero_control_p8 +Checking test 156 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4660,15 +4769,15 @@ Checking test 155 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 269.145759 - 0: The maximum resident set size (KB) = 1448080 + 0: The total amount of wall time = 265.135700 + 0: The maximum resident set size (KB) = 1448264 -Test 155 atmaero_control_p8 PASS +Test 156 atmaero_control_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/atmaero_control_p8_rad -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/atmaero_control_p8_rad -Checking test 156 atmaero_control_p8_rad results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/atmaero_control_p8_rad +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/atmaero_control_p8_rad +Checking test 157 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4711,15 +4820,15 @@ Checking test 156 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 305.835627 - 0: The maximum resident set size (KB) = 1469932 + 0: The total amount of wall time = 306.513684 + 0: The maximum resident set size (KB) = 1469848 -Test 156 atmaero_control_p8_rad PASS +Test 157 atmaero_control_p8_rad PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/atmaero_control_p8_rad_micro -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/atmaero_control_p8_rad_micro -Checking test 157 atmaero_control_p8_rad_micro results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/atmaero_control_p8_rad_micro +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/atmaero_control_p8_rad_micro +Checking test 158 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4762,15 +4871,15 @@ Checking test 157 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 308.402513 - 0: The maximum resident set size (KB) = 1473520 + 0: The total amount of wall time = 307.804775 + 0: The maximum resident set size (KB) = 1473604 -Test 157 atmaero_control_p8_rad_micro PASS +Test 158 atmaero_control_p8_rad_micro PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_atmaq -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/regional_atmaq -Checking test 158 regional_atmaq results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_atmaq +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/regional_atmaq +Checking test 159 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -4785,15 +4894,15 @@ Checking test 158 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 668.170458 - 0: The maximum resident set size (KB) = 970056 + 0: The total amount of wall time = 673.819586 + 0: The maximum resident set size (KB) = 971720 -Test 158 regional_atmaq PASS +Test 159 regional_atmaq PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_atmaq_faster -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_16362/regional_atmaq_faster -Checking test 159 regional_atmaq_faster results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_atmaq_faster +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/regional_atmaq_faster +Checking test 160 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -4808,8 +4917,12 @@ Checking test 159 regional_atmaq_faster 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.127520 - 0: The maximum resident set size (KB) = 966080 + 0: The total amount of wall time = 630.376389 + 0: The maximum resident set size (KB) = 962880 + +Test 160 regional_atmaq_faster PASS -Test 159 regional_atmaq_faster PASS +REGRESSION TEST WAS SUCCESSFUL +Mon Apr 10 04:15:46 EDT 2023 +Elapsed time: 07h:08m:57s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index d34242e6b74..dfda91dc721 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,21 +1,21 @@ -Wed Apr 5 20:43:53 UTC 2023 +Sat Apr 8 14:04:21 UTC 2023 Start Regression test -Compile 001 elapsed time 183 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 185 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 317 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 96 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 184 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 394 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 315 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 314 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 257 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 229 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 138 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 012 elapsed time 111 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/control_c48 +Compile 001 elapsed time 191 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 194 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 372 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 104 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 200 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 439 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 377 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 386 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 287 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 252 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 153 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 012 elapsed time 121 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/control_c48 Checking test 001 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -54,14 +54,14 @@ Checking test 001 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 688.877530 -0: The maximum resident set size (KB) = 702248 +0: The total amount of wall time = 686.577006 +0: The maximum resident set size (KB) = 703248 Test 001 control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/control_stochy +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/control_stochy Checking test 002 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -72,14 +72,14 @@ Checking test 002 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 655.197524 - 0: The maximum resident set size (KB) = 478104 + 0: The total amount of wall time = 664.122921 + 0: The maximum resident set size (KB) = 479404 Test 002 control_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/control_ras -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/control_ras +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/control_ras +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/control_ras Checking test 003 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -90,14 +90,14 @@ Checking test 003 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 837.073618 - 0: The maximum resident set size (KB) = 483228 + 0: The total amount of wall time = 849.549283 + 0: The maximum resident set size (KB) = 486288 Test 003 control_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/control_p8 Checking test 004 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -144,14 +144,14 @@ Checking test 004 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 900.888914 - 0: The maximum resident set size (KB) = 1237660 + 0: The total amount of wall time = 914.661100 + 0: The maximum resident set size (KB) = 1235816 Test 004 control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rap_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/rap_control Checking test 005 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -198,14 +198,14 @@ Checking test 005 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1469.223855 - 0: The maximum resident set size (KB) = 831588 + 0: The total amount of wall time = 1487.045259 + 0: The maximum resident set size (KB) = 830828 Test 005 rap_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rap_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/rap_decomp Checking test 006 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -252,14 +252,14 @@ Checking test 006 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1448.649229 - 0: The maximum resident set size (KB) = 836880 + 0: The total amount of wall time = 1498.854819 + 0: The maximum resident set size (KB) = 836368 Test 006 rap_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rap_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/rap_2threads Checking test 007 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -306,14 +306,14 @@ Checking test 007 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1361.823379 - 0: The maximum resident set size (KB) = 900616 + 0: The total amount of wall time = 1397.209368 + 0: The maximum resident set size (KB) = 901940 Test 007 rap_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rap_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/rap_restart Checking test 008 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -352,14 +352,14 @@ Checking test 008 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 739.862088 - 0: The maximum resident set size (KB) = 554216 + 0: The total amount of wall time = 732.202082 + 0: The maximum resident set size (KB) = 545092 Test 008 rap_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rap_sfcdiff +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/rap_sfcdiff Checking test 009 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -406,14 +406,14 @@ Checking test 009 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1466.816494 - 0: The maximum resident set size (KB) = 834688 + 0: The total amount of wall time = 1512.812298 + 0: The maximum resident set size (KB) = 835920 Test 009 rap_sfcdiff PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rap_sfcdiff_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/rap_sfcdiff_decomp Checking test 010 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -460,14 +460,14 @@ Checking test 010 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1445.752888 - 0: The maximum resident set size (KB) = 834628 + 0: The total amount of wall time = 1524.748869 + 0: The maximum resident set size (KB) = 826756 Test 010 rap_sfcdiff_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rap_sfcdiff_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/rap_sfcdiff_restart Checking test 011 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -506,14 +506,14 @@ Checking test 011 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1098.992804 - 0: The maximum resident set size (KB) = 550232 + 0: The total amount of wall time = 1065.432003 + 0: The maximum resident set size (KB) = 553376 Test 011 rap_sfcdiff_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/hrrr_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/hrrr_control Checking test 012 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -560,14 +560,14 @@ Checking test 012 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1443.845848 - 0: The maximum resident set size (KB) = 828124 + 0: The total amount of wall time = 1435.606762 + 0: The maximum resident set size (KB) = 829756 Test 012 hrrr_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/hrrr_control_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/hrrr_control_2threads Checking test 013 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -614,14 +614,14 @@ Checking test 013 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1335.538767 - 0: The maximum resident set size (KB) = 897224 + 0: The total amount of wall time = 1359.523585 + 0: The maximum resident set size (KB) = 895288 Test 013 hrrr_control_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/hrrr_control_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/hrrr_control_decomp Checking test 014 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -668,14 +668,14 @@ Checking test 014 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1418.727736 - 0: The maximum resident set size (KB) = 826916 + 0: The total amount of wall time = 1515.352799 + 0: The maximum resident set size (KB) = 829112 Test 014 hrrr_control_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/hrrr_control_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/hrrr_control_restart Checking test 015 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -714,14 +714,14 @@ Checking test 015 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1077.182861 - 0: The maximum resident set size (KB) = 550152 + 0: The total amount of wall time = 1057.532712 + 0: The maximum resident set size (KB) = 548948 Test 015 hrrr_control_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rrfs_v1beta +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/rrfs_v1beta Checking test 016 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -768,14 +768,14 @@ Checking test 016 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1491.582801 - 0: The maximum resident set size (KB) = 829404 + 0: The total amount of wall time = 1473.537040 + 0: The maximum resident set size (KB) = 827964 Test 016 rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/rrfs_smoke_conus13km_hrrr_warm Checking test 017 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -784,14 +784,14 @@ Checking test 017 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 798.951487 - 0: The maximum resident set size (KB) = 671116 + 0: The total amount of wall time = 808.717373 + 0: The maximum resident set size (KB) = 672104 Test 017 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 018 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -800,14 +800,14 @@ Checking test 018 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 1083.283608 - 0: The maximum resident set size (KB) = 660744 + 0: The total amount of wall time = 1039.352181 + 0: The maximum resident set size (KB) = 664276 Test 018 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rrfs_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/rrfs_conus13km_hrrr_warm Checking test 019 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -816,14 +816,14 @@ Checking test 019 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 751.153297 - 0: The maximum resident set size (KB) = 646464 + 0: The total amount of wall time = 780.394501 + 0: The maximum resident set size (KB) = 646928 Test 019 rrfs_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/rrfs_smoke_conus13km_radar_tten_warm Checking test 020 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -832,234 +832,234 @@ Checking test 020 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 789.414984 - 0: The maximum resident set size (KB) = 675028 + 0: The total amount of wall time = 796.553248 + 0: The maximum resident set size (KB) = 675656 Test 020 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 021 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 379.003630 - 0: The maximum resident set size (KB) = 636512 + 0: The total amount of wall time = 402.908470 + 0: The maximum resident set size (KB) = 634932 Test 021 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/control_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/control_diag_debug Checking test 022 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 124.538170 - 0: The maximum resident set size (KB) = 530528 + 0: The total amount of wall time = 123.273510 + 0: The maximum resident set size (KB) = 523420 Test 022 control_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/regional_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/regional_debug Checking test 023 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 723.812047 - 0: The maximum resident set size (KB) = 590012 + 0: The total amount of wall time = 743.717923 + 0: The maximum resident set size (KB) = 590180 Test 023 regional_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rap_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/rap_control_debug Checking test 024 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 173.115201 - 0: The maximum resident set size (KB) = 845528 + 0: The total amount of wall time = 178.017867 + 0: The maximum resident set size (KB) = 837892 Test 024 rap_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/hrrr_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/hrrr_control_debug Checking test 025 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 170.800021 - 0: The maximum resident set size (KB) = 844396 + 0: The total amount of wall time = 175.191321 + 0: The maximum resident set size (KB) = 835644 Test 025 hrrr_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rap_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/rap_diag_debug Checking test 026 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 207.858014 - 0: The maximum resident set size (KB) = 928544 + 0: The total amount of wall time = 214.551309 + 0: The maximum resident set size (KB) = 921480 Test 026 rap_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/rap_noah_sfcdiff_cires_ugwp_debug Checking test 027 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 268.632975 - 0: The maximum resident set size (KB) = 837056 + 0: The total amount of wall time = 277.666092 + 0: The maximum resident set size (KB) = 842848 Test 027 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rap_progcld_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/rap_progcld_thompson_debug Checking test 028 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 169.775303 - 0: The maximum resident set size (KB) = 845736 + 0: The total amount of wall time = 177.435141 + 0: The maximum resident set size (KB) = 840796 Test 028 rap_progcld_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rrfs_v1beta_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/rrfs_v1beta_debug Checking test 029 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 172.035527 - 0: The maximum resident set size (KB) = 839720 + 0: The total amount of wall time = 176.736851 + 0: The maximum resident set size (KB) = 837076 Test 029 rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/control_ras_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/control_ras_debug Checking test 030 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 99.444866 - 0: The maximum resident set size (KB) = 484256 + 0: The total amount of wall time = 105.219531 + 0: The maximum resident set size (KB) = 479384 Test 030 control_ras_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/control_stochy_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/control_stochy_debug Checking test 031 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 115.735426 - 0: The maximum resident set size (KB) = 475276 + 0: The total amount of wall time = 121.594167 + 0: The maximum resident set size (KB) = 473180 Test 031 control_stochy_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/control_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/control_debug_p8 Checking test 032 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 113.582117 - 0: The maximum resident set size (KB) = 1230308 + 0: The total amount of wall time = 117.931940 + 0: The maximum resident set size (KB) = 1228492 Test 032 control_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 033 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 636.298638 - 0: The maximum resident set size (KB) = 683164 + 0: The total amount of wall time = 602.811813 + 0: The maximum resident set size (KB) = 683924 Test 033 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 034 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 749.293064 - 0: The maximum resident set size (KB) = 681740 + 0: The total amount of wall time = 764.912887 + 0: The maximum resident set size (KB) = 680172 Test 034 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rrfs_conus13km_hrrr_warm_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rrfs_conus13km_hrrr_warm_debugs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/rrfs_conus13km_hrrr_warm_debug Checking test 035 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 575.247818 - 0: The maximum resident set size (KB) = 658092 + 0: The total amount of wall time = 584.313887 + 0: The maximum resident set size (KB) = 656816 Test 035 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/control_wam_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/control_wam_debug Checking test 036 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 181.159065 - 0: The maximum resident set size (KB) = 195156 + 0: The total amount of wall time = 178.776248 + 0: The maximum resident set size (KB) = 189028 Test 036 control_wam_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rap_control_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/rap_control_dyn32_phy32 Checking test 037 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1106,14 +1106,14 @@ Checking test 037 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1507.511448 - 0: The maximum resident set size (KB) = 683920 + 0: The total amount of wall time = 1517.891473 + 0: The maximum resident set size (KB) = 682420 Test 037 rap_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/hrrr_control_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/hrrr_control_dyn32_phy32 Checking test 038 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1160,14 +1160,14 @@ Checking test 038 hrrr_control_dyn32_phy32 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 = 759.001644 - 0: The maximum resident set size (KB) = 683912 + 0: The total amount of wall time = 736.688457 + 0: The maximum resident set size (KB) = 681388 Test 038 hrrr_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rap_2threads_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/rap_2threads_dyn32_phy32 Checking test 039 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1214,14 +1214,14 @@ Checking test 039 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1359.266261 - 0: The maximum resident set size (KB) = 729884 + 0: The total amount of wall time = 1380.276936 + 0: The maximum resident set size (KB) = 729068 Test 039 rap_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/hrrr_control_2threads_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/hrrr_control_2threads_dyn32_phy32 Checking test 040 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1268,14 +1268,14 @@ Checking test 040 hrrr_control_2threads_dyn32_phy32 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 = 682.249405 - 0: The maximum resident set size (KB) = 730688 + 0: The total amount of wall time = 721.578905 + 0: The maximum resident set size (KB) = 730844 Test 040 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/hrrr_control_decomp_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/hrrr_control_decomp_dyn32_phy32 Checking test 041 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1322,14 +1322,14 @@ Checking test 041 hrrr_control_decomp_dyn32_phy32 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 = 737.952704 - 0: The maximum resident set size (KB) = 688312 + 0: The total amount of wall time = 744.387652 + 0: The maximum resident set size (KB) = 685336 Test 041 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rap_restart_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/rap_restart_dyn32_phy32 Checking test 042 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1368,14 +1368,14 @@ Checking test 042 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1074.629510 - 0: The maximum resident set size (KB) = 511240 + 0: The total amount of wall time = 1063.949930 + 0: The maximum resident set size (KB) = 509900 Test 042 rap_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/hrrr_control_restart_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/hrrr_control_restart_dyn32_phy32 Checking test 043 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1414,14 +1414,14 @@ Checking test 043 hrrr_control_restart_dyn32_phy32 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 = 377.862756 - 0: The maximum resident set size (KB) = 508516 + 0: The total amount of wall time = 363.723751 + 0: The maximum resident set size (KB) = 508972 Test 043 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rap_control_dyn64_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/rap_control_dyn64_phy32 Checking test 044 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1468,58 +1468,128 @@ Checking test 044 rap_control_dyn64_phy32 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 = 1050.271591 - 0: The maximum resident set size (KB) = 708088 + 0: The total amount of wall time = 1073.922865 + 0: The maximum resident set size (KB) = 709512 Test 044 rap_control_dyn64_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rap_control_debug_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/rap_control_debug_dyn32_phy32 Checking test 045 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 170.860933 - 0: The maximum resident set size (KB) = 703100 + 0: The total amount of wall time = 175.026470 + 0: The maximum resident set size (KB) = 696324 Test 045 rap_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/hrrr_control_debug_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/hrrr_control_debug_dyn32_phy32 Checking test 046 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 168.195095 - 0: The maximum resident set size (KB) = 695776 + 0: The total amount of wall time = 174.688954 + 0: The maximum resident set size (KB) = 699760 Test 046 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/rap_control_dyn64_phy32_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rap_control_debug_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/rap_control_dyn64_phy32_debug Checking test 047 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 202.746710 - 0: The maximum resident set size (KB) = 718220 + 0: The total amount of wall time = 203.794717 + 0: The maximum resident set size (KB) = 718868 Test 047 rap_control_dyn64_phy32_debug PASS -Test 048 cpld_control_p8 FAIL +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/cpld_control_p8 +Checking test 048 cpld_control_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 1712.920489 + 0: The maximum resident set size (KB) = 1432332 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/cpld_control_nowave_noaero_p8 +Test 048 cpld_control_p8 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/cpld_control_c96_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/cpld_control_nowave_noaero_p8 Checking test 049 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1581,14 +1651,14 @@ Checking test 049 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 1240.298513 - 0: The maximum resident set size (KB) = 1332740 + 0: The total amount of wall time = 1254.898301 + 0: The maximum resident set size (KB) = 1333572 Test 049 cpld_control_nowave_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/cpld_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/cpld_debug_p8 Checking test 050 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1641,107 +1711,25 @@ Checking test 050 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 854.052885 - 0: The maximum resident set size (KB) = 1441848 + 0: The total amount of wall time = 778.860640 + 0: The maximum resident set size (KB) = 1442796 Test 050 cpld_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_303/datm_cdeps_control_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/datm_cdeps_control_cfsr Checking test 051 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 175.214068 - 0: The maximum resident set size (KB) = 666260 + 0: The total amount of wall time = 175.228746 + 0: The maximum resident set size (KB) = 669312 Test 051 datm_cdeps_control_cfsr PASS -FAILED TESTS: -Test cpld_control_p8 048 failed in run_test failed - -REGRESSION TEST FAILED -Wed Apr 5 22:00:24 UTC 2023 -Elapsed time: 01h:16m:32s. Have a nice day! -Wed Apr 5 22:29:07 UTC 2023 -Start Regression test - -Compile 001 elapsed time 264 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/GNU/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_7058/cpld_control_p8 -Checking test 001 cpld_control_p8 results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 1670.463192 - 0: The maximum resident set size (KB) = 1429888 - -Test 001 cpld_control_p8 PASS - REGRESSION TEST WAS SUCCESSFUL -Wed Apr 5 23:07:45 UTC 2023 -Elapsed time: 00h:38m:38s. Have a nice day! +Sat Apr 8 15:00:24 UTC 2023 +Elapsed time: 00h:56m:03s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 54059b314fe..6a278cbc0b3 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,42 +1,43 @@ -Wed Apr 5 20:42:59 UTC 2023 +Sat Apr 8 12:44:01 UTC 2023 Start Regression test -Compile 001 elapsed time 637 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 635 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 567 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 228 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 208 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 533 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 517 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 698 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 520 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 490 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 473 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 449 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 606 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 208 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 163 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 458 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 458 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 161 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 162 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 523 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 021 elapsed time 186 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 631 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 547 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 024 elapsed time 195 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 103 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 178 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 57 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 483 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 549 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 484 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 457 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 171 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 536 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8_mixedmode -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/cpld_control_p8_mixedmode +Compile 001 elapsed time 613 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 614 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 574 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 261 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 202 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 522 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 520 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 719 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 544 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 514 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 011 elapsed time 521 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 459 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 602 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 226 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 182 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 488 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 487 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 205 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 198 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 566 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 021 elapsed time 205 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 645 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 580 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 024 elapsed time 190 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 109 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 182 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 52 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 496 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 533 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 548 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 508 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 465 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 033 elapsed time 180 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 034 elapsed time 566 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8_mixedmode +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -101,85 +102,85 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 305.291494 - 0: The maximum resident set size (KB) = 3144884 + 0: The total amount of wall time = 320.512849 + 0: The maximum resident set size (KB) = 3151120 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_gfsv17 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/cpld_control_gfsv17 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_gfsv17 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... - Comparing sfcf021.tile1.nc ............ALT CHECK......NOT OK - Comparing sfcf021.tile2.nc ............ALT CHECK......NOT OK - Comparing sfcf021.tile3.nc ............ALT CHECK......NOT OK - Comparing sfcf021.tile4.nc ............ALT CHECK......NOT OK - Comparing sfcf021.tile5.nc ............ALT CHECK......NOT OK - Comparing sfcf021.tile6.nc ............ALT CHECK......NOT OK - Comparing atmf021.tile1.nc ............ALT CHECK......NOT OK - Comparing atmf021.tile2.nc ............ALT CHECK......NOT OK - Comparing atmf021.tile3.nc ............ALT CHECK......NOT OK - Comparing atmf021.tile4.nc ............ALT CHECK......NOT OK - Comparing atmf021.tile5.nc ............ALT CHECK......NOT OK - Comparing atmf021.tile6.nc ............ALT CHECK......NOT OK - Comparing sfcf024.tile1.nc ............ALT CHECK......NOT OK - Comparing sfcf024.tile2.nc ............ALT CHECK......NOT OK - Comparing sfcf024.tile3.nc ............ALT CHECK......NOT OK - Comparing sfcf024.tile4.nc ............ALT CHECK......NOT OK - Comparing sfcf024.tile5.nc ............ALT CHECK......NOT OK - Comparing sfcf024.tile6.nc ............ALT CHECK......NOT OK - Comparing atmf024.tile1.nc ............ALT CHECK......NOT OK - Comparing atmf024.tile2.nc ............ALT CHECK......NOT OK - Comparing atmf024.tile3.nc ............ALT CHECK......NOT OK - Comparing atmf024.tile4.nc ............ALT CHECK......NOT OK - Comparing atmf024.tile5.nc ............ALT CHECK......NOT OK - Comparing atmf024.tile6.nc ............ALT CHECK......NOT OK + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing 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 ............ALT CHECK......NOT OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......NOT OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......NOT OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......NOT OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......NOT OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......NOT OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......NOT OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......NOT OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......NOT OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......NOT OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......NOT OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......NOT OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......NOT OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......NOT OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......NOT OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......NOT OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......NOT OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......NOT OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......NOT OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......NOT OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......NOT OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......NOT OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......NOT OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......NOT OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......NOT OK - Comparing RESTART/20210323.060000.MOM.res.nc ............ALT CHECK......NOT OK - Comparing RESTART/iced.2021-03-23-21600.nc ............ALT CHECK......NOT OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc ............ALT CHECK......NOT OK - Comparing 20210323.060000.out_pnt.ww3 .........NOT OK - Comparing 20210323.060000.out_grd.ww3 .........NOT OK - - 0: The total amount of wall time = 224.382839 - 0: The maximum resident set size (KB) = 1737256 - -Test 002 cpld_control_gfsv17 FAIL Tries: 2 - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/cpld_control_p8 + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 230.528972 + 0: The maximum resident set size (KB) = 1728100 + +Test 002 cpld_control_gfsv17 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -244,14 +245,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 338.448423 - 0: The maximum resident set size (KB) = 3181692 + 0: The total amount of wall time = 351.124459 + 0: The maximum resident set size (KB) = 3184232 Test 003 cpld_control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/cpld_restart_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -304,14 +305,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 195.738094 - 0: The maximum resident set size (KB) = 3050872 + 0: The total amount of wall time = 202.950526 + 0: The maximum resident set size (KB) = 3046856 Test 004 cpld_restart_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/cpld_control_qr_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -376,14 +377,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 343.272175 - 0: The maximum resident set size (KB) = 3194532 + 0: The total amount of wall time = 351.573717 + 0: The maximum resident set size (KB) = 3192140 Test 005 cpld_control_qr_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/cpld_restart_qr_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -436,14 +437,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 196.597835 - 0: The maximum resident set size (KB) = 3068460 + 0: The total amount of wall time = 208.799130 + 0: The maximum resident set size (KB) = 3061768 Test 006 cpld_restart_qr_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/cpld_2threads_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -496,14 +497,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 350.226952 - 0: The maximum resident set size (KB) = 3523764 + 0: The total amount of wall time = 360.319264 + 0: The maximum resident set size (KB) = 3508496 Test 007 cpld_2threads_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/cpld_decomp_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -556,14 +557,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 338.228077 - 0: The maximum resident set size (KB) = 3178788 + 0: The total amount of wall time = 351.431101 + 0: The maximum resident set size (KB) = 3171768 Test 008 cpld_decomp_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/cpld_mpi_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -616,14 +617,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 282.242750 - 0: The maximum resident set size (KB) = 3027328 + 0: The total amount of wall time = 291.696563 + 0: The maximum resident set size (KB) = 3026744 Test 009 cpld_mpi_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_ciceC_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/cpld_control_ciceC_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_ciceC_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -688,14 +689,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 340.964848 - 0: The maximum resident set size (KB) = 3162588 + 0: The total amount of wall time = 346.355572 + 0: The maximum resident set size (KB) = 3182688 Test 010 cpld_control_ciceC_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/cpld_control_c192_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/cpld_control_c192_p8 Checking test 011 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -748,14 +749,14 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 594.593190 - 0: The maximum resident set size (KB) = 3256752 + 0: The total amount of wall time = 615.375237 + 0: The maximum resident set size (KB) = 3258192 Test 011 cpld_control_c192_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/cpld_restart_c192_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/cpld_restart_c192_p8 Checking test 012 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -808,14 +809,14 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 380.766155 - 0: The maximum resident set size (KB) = 3159496 + 0: The total amount of wall time = 395.915836 + 0: The maximum resident set size (KB) = 3160012 Test 012 cpld_restart_c192_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/cpld_bmark_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/cpld_bmark_p8 Checking test 013 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -863,14 +864,14 @@ Checking test 013 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 705.272063 - 0: The maximum resident set size (KB) = 4031860 + 0: The total amount of wall time = 763.461169 + 0: The maximum resident set size (KB) = 4042340 Test 013 cpld_bmark_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/cpld_restart_bmark_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/cpld_restart_bmark_p8 Checking test 014 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -918,14 +919,14 @@ Checking test 014 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 455.775107 - 0: The maximum resident set size (KB) = 3977784 + 0: The total amount of wall time = 473.456361 + 0: The maximum resident set size (KB) = 3994644 Test 014 cpld_restart_bmark_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/cpld_control_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/cpld_control_noaero_p8 Checking test 015 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -989,14 +990,14 @@ Checking test 015 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 262.672095 - 0: The maximum resident set size (KB) = 1723364 + 0: The total amount of wall time = 274.038288 + 0: The maximum resident set size (KB) = 1720656 Test 015 cpld_control_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/cpld_control_nowave_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_c96_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/cpld_control_nowave_noaero_p8 Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1058,14 +1059,14 @@ Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 258.837291 - 0: The maximum resident set size (KB) = 1767624 + 0: The total amount of wall time = 268.762500 + 0: The maximum resident set size (KB) = 1761392 Test 016 cpld_control_nowave_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/cpld_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/cpld_debug_p8 Checking test 017 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1118,14 +1119,14 @@ Checking test 017 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 526.767267 - 0: The maximum resident set size (KB) = 3216176 + 0: The total amount of wall time = 533.055960 + 0: The maximum resident set size (KB) = 3232256 Test 017 cpld_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_debug_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/cpld_debug_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_debug_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/cpld_debug_noaero_p8 Checking test 018 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1177,14 +1178,14 @@ Checking test 018 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 361.034403 - 0: The maximum resident set size (KB) = 1729788 + 0: The total amount of wall time = 362.818277 + 0: The maximum resident set size (KB) = 1739516 Test 018 cpld_debug_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_noaero_p8_agrid -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/cpld_control_noaero_p8_agrid +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_noaero_p8_agrid +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/cpld_control_noaero_p8_agrid Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1246,14 +1247,14 @@ Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 267.142470 - 0: The maximum resident set size (KB) = 1767864 + 0: The total amount of wall time = 284.712328 + 0: The maximum resident set size (KB) = 1750324 Test 019 cpld_control_noaero_p8_agrid PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_c48 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/cpld_control_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_c48 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/cpld_control_c48 Checking test 020 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1303,14 +1304,14 @@ Checking test 020 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 587.027126 - 0: The maximum resident set size (KB) = 2809480 + 0: The total amount of wall time = 575.010290 + 0: The maximum resident set size (KB) = 2807436 Test 020 cpld_control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/cpld_warmstart_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_warmstart_c48 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/cpld_warmstart_c48 Checking test 021 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1360,14 +1361,14 @@ Checking test 021 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 152.984802 - 0: The maximum resident set size (KB) = 2806204 + 0: The total amount of wall time = 160.844179 + 0: The maximum resident set size (KB) = 2805032 Test 021 cpld_warmstart_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/cpld_restart_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_warmstart_c48 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/cpld_restart_c48 Checking test 022 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1417,14 +1418,14 @@ Checking test 022 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 81.975596 - 0: The maximum resident set size (KB) = 2238628 + 0: The total amount of wall time = 83.419255 + 0: The maximum resident set size (KB) = 2245728 Test 022 cpld_restart_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8_faster -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/cpld_control_p8_faster +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8_faster +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/cpld_control_p8_faster Checking test 023 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1489,14 +1490,14 @@ Checking test 023 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 317.286547 - 0: The maximum resident set size (KB) = 3158912 + 0: The total amount of wall time = 329.982144 + 0: The maximum resident set size (KB) = 3182432 Test 023 cpld_control_p8_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_CubedSphereGrid -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_CubedSphereGrid +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_CubedSphereGrid +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_CubedSphereGrid Checking test 024 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1523,28 +1524,28 @@ Checking test 024 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 131.140033 - 0: The maximum resident set size (KB) = 633200 + 0: The total amount of wall time = 132.329449 + 0: The maximum resident set size (KB) = 631940 Test 024 control_CubedSphereGrid PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_CubedSphereGrid_parallel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_CubedSphereGrid_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_CubedSphereGrid_parallel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_CubedSphereGrid_parallel Checking test 025 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 126.394251 - 0: The maximum resident set size (KB) = 632392 + 0: The total amount of wall time = 129.942276 + 0: The maximum resident set size (KB) = 632156 Test 025 control_CubedSphereGrid_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_latlon -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_latlon +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_latlon +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_latlon Checking test 026 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1555,16 +1556,16 @@ Checking test 026 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 133.328077 - 0: The maximum resident set size (KB) = 628200 + 0: The total amount of wall time = 134.439580 + 0: The maximum resident set size (KB) = 639144 Test 026 control_latlon PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wrtGauss_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_wrtGauss_netcdf_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_wrtGauss_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_wrtGauss_netcdf_parallel Checking test 027 control_wrtGauss_netcdf_parallel results .... - Comparing sfcf000.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK @@ -1573,14 +1574,14 @@ Checking test 027 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.081701 - 0: The maximum resident set size (KB) = 634084 + 0: The total amount of wall time = 137.474737 + 0: The maximum resident set size (KB) = 630904 Test 027 control_wrtGauss_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_c48 Checking test 028 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1619,14 +1620,14 @@ Checking test 028 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 366.086049 -0: The maximum resident set size (KB) = 821056 +0: The total amount of wall time = 371.067379 +0: The maximum resident set size (KB) = 808208 Test 028 control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c192 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_c192 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_c192 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_c192 Checking test 029 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1637,14 +1638,14 @@ Checking test 029 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 526.166190 - 0: The maximum resident set size (KB) = 770632 + 0: The total amount of wall time = 531.907423 + 0: The maximum resident set size (KB) = 773272 Test 029 control_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c384 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_c384 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_c384 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_c384 Checking test 030 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1655,14 +1656,14 @@ Checking test 030 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 521.719521 - 0: The maximum resident set size (KB) = 1265248 + 0: The total amount of wall time = 529.906850 + 0: The maximum resident set size (KB) = 1270980 Test 030 control_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c384gdas -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_c384gdas +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_c384gdas +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_c384gdas Checking test 031 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1705,14 +1706,14 @@ Checking test 031 control_c384gdas 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 = 458.885241 - 0: The maximum resident set size (KB) = 1378732 + 0: The total amount of wall time = 467.586973 + 0: The maximum resident set size (KB) = 1384000 Test 031 control_c384gdas PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_stochy +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_stochy Checking test 032 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1723,28 +1724,28 @@ Checking test 032 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 86.535989 - 0: The maximum resident set size (KB) = 636580 + 0: The total amount of wall time = 87.971136 + 0: The maximum resident set size (KB) = 633272 Test 032 control_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_stochy_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_stochy_restart Checking test 033 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 47.450229 - 0: The maximum resident set size (KB) = 484064 + 0: The total amount of wall time = 48.853826 + 0: The maximum resident set size (KB) = 490064 Test 033 control_stochy_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_lndp -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_lndp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_lndp +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_lndp Checking test 034 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1755,14 +1756,14 @@ Checking test 034 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 81.242679 - 0: The maximum resident set size (KB) = 633388 + 0: The total amount of wall time = 82.359901 + 0: The maximum resident set size (KB) = 642832 Test 034 control_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_iovr4 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_iovr4 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_iovr4 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_iovr4 Checking test 035 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1777,14 +1778,14 @@ Checking test 035 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.409321 - 0: The maximum resident set size (KB) = 629416 + 0: The total amount of wall time = 136.918877 + 0: The maximum resident set size (KB) = 631316 Test 035 control_iovr4 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_iovr5 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_iovr5 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_iovr5 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_iovr5 Checking test 036 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1799,14 +1800,14 @@ Checking test 036 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.668651 - 0: The maximum resident set size (KB) = 627524 + 0: The total amount of wall time = 137.383411 + 0: The maximum resident set size (KB) = 635484 Test 036 control_iovr5 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_p8 Checking test 037 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1853,14 +1854,14 @@ Checking test 037 control_p8 results .... Comparing 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.053693 - 0: The maximum resident set size (KB) = 1600812 + 0: The total amount of wall time = 171.784108 + 0: The maximum resident set size (KB) = 1603932 Test 037 control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_restart_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_restart_p8 Checking test 038 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1899,14 +1900,14 @@ Checking test 038 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 87.148707 - 0: The maximum resident set size (KB) = 865020 + 0: The total amount of wall time = 92.262942 + 0: The maximum resident set size (KB) = 868036 Test 038 control_restart_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_qr_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_qr_p8 Checking test 039 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1953,14 +1954,14 @@ Checking test 039 control_qr_p8 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.034538 - 0: The maximum resident set size (KB) = 1609660 + 0: The total amount of wall time = 170.920530 + 0: The maximum resident set size (KB) = 1603460 Test 039 control_qr_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_restart_qr_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_restart_qr_p8 Checking test 040 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1999,14 +2000,14 @@ Checking test 040 control_restart_qr_p8 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.870158 - 0: The maximum resident set size (KB) = 869396 + 0: The total amount of wall time = 93.422263 + 0: The maximum resident set size (KB) = 866236 Test 040 control_restart_qr_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_decomp_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_decomp_p8 Checking test 041 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2049,14 +2050,14 @@ Checking test 041 control_decomp_p8 results .... Comparing 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.097586 - 0: The maximum resident set size (KB) = 1582260 + 0: The total amount of wall time = 180.007812 + 0: The maximum resident set size (KB) = 1587036 Test 041 control_decomp_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_2threads_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_2threads_p8 Checking test 042 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2099,14 +2100,14 @@ Checking test 042 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 155.269912 - 0: The maximum resident set size (KB) = 1688908 + 0: The total amount of wall time = 161.262969 + 0: The maximum resident set size (KB) = 1693320 Test 042 control_2threads_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_lndp -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_p8_lndp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_lndp +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_p8_lndp Checking test 043 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2125,14 +2126,14 @@ Checking test 043 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 311.141403 - 0: The maximum resident set size (KB) = 1605144 + 0: The total amount of wall time = 321.514843 + 0: The maximum resident set size (KB) = 1603616 Test 043 control_p8_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_p8_rrtmgp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_p8_rrtmgp Checking test 044 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2179,14 +2180,14 @@ Checking test 044 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 224.799303 - 0: The maximum resident set size (KB) = 1662808 + 0: The total amount of wall time = 229.234406 + 0: The maximum resident set size (KB) = 1663172 Test 044 control_p8_rrtmgp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_mynn -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_p8_mynn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_mynn +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_p8_mynn Checking test 045 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2233,14 +2234,14 @@ Checking test 045 control_p8_mynn results .... Comparing 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.862995 - 0: The maximum resident set size (KB) = 1609300 + 0: The total amount of wall time = 179.707611 + 0: The maximum resident set size (KB) = 1600948 Test 045 control_p8_mynn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/merra2_thompson -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/merra2_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/merra2_thompson +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/merra2_thompson Checking test 046 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2287,14 +2288,14 @@ Checking test 046 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 189.467950 - 0: The maximum resident set size (KB) = 1610132 + 0: The total amount of wall time = 197.662018 + 0: The maximum resident set size (KB) = 1607996 Test 046 merra2_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/regional_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/regional_control Checking test 047 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2305,28 +2306,28 @@ Checking test 047 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 298.621550 - 0: The maximum resident set size (KB) = 873496 + 0: The total amount of wall time = 304.920983 + 0: The maximum resident set size (KB) = 872388 Test 047 regional_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/regional_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/regional_restart Checking test 048 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 155.849705 - 0: The maximum resident set size (KB) = 834564 + 0: The total amount of wall time = 155.847927 + 0: The maximum resident set size (KB) = 863884 Test 048 regional_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/regional_control_qr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/regional_control_qr Checking test 049 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2337,28 +2338,28 @@ Checking test 049 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 299.606790 - 0: The maximum resident set size (KB) = 868056 + 0: The total amount of wall time = 307.685686 + 0: The maximum resident set size (KB) = 870700 Test 049 regional_control_qr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/regional_restart_qr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/regional_restart_qr Checking test 050 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 151.816630 - 0: The maximum resident set size (KB) = 866424 + 0: The total amount of wall time = 154.981841 + 0: The maximum resident set size (KB) = 862876 Test 050 regional_restart_qr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/regional_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/regional_decomp Checking test 051 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2369,14 +2370,14 @@ Checking test 051 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 314.054918 - 0: The maximum resident set size (KB) = 864992 + 0: The total amount of wall time = 316.794006 + 0: The maximum resident set size (KB) = 864692 Test 051 regional_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/regional_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/regional_2threads Checking test 052 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2387,14 +2388,14 @@ Checking test 052 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 181.026521 - 0: The maximum resident set size (KB) = 847388 + 0: The total amount of wall time = 190.240027 + 0: The maximum resident set size (KB) = 860620 Test 052 regional_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_noquilt -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/regional_noquilt +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_noquilt +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/regional_noquilt Checking test 053 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2402,28 +2403,28 @@ Checking test 053 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 319.477269 - 0: The maximum resident set size (KB) = 863924 + 0: The total amount of wall time = 327.541693 + 0: The maximum resident set size (KB) = 859788 Test 053 regional_noquilt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/regional_netcdf_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/regional_netcdf_parallel Checking test 054 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 294.169389 - 0: The maximum resident set size (KB) = 871152 + 0: The total amount of wall time = 300.714231 + 0: The maximum resident set size (KB) = 867032 Test 054 regional_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/regional_2dwrtdecomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/regional_2dwrtdecomp Checking test 055 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2434,14 +2435,14 @@ Checking test 055 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 299.553845 - 0: The maximum resident set size (KB) = 872304 + 0: The total amount of wall time = 307.180559 + 0: The maximum resident set size (KB) = 872192 Test 055 regional_2dwrtdecomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/fv3_regional_wofs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/regional_wofs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/fv3_regional_wofs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/regional_wofs Checking test 056 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2452,14 +2453,14 @@ Checking test 056 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 376.433536 - 0: The maximum resident set size (KB) = 629724 + 0: The total amount of wall time = 378.841243 + 0: The maximum resident set size (KB) = 629480 Test 056 regional_wofs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rap_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/rap_control Checking test 057 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2506,14 +2507,14 @@ Checking test 057 rap_control results .... Comparing 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.408473 - 0: The maximum resident set size (KB) = 1046732 + 0: The total amount of wall time = 463.815522 + 0: The maximum resident set size (KB) = 1057208 Test 057 rap_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_spp_sppt_shum_skeb -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/regional_spp_sppt_shum_skeb +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_spp_sppt_shum_skeb +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/regional_spp_sppt_shum_skeb Checking test 058 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2524,14 +2525,14 @@ Checking test 058 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 237.512662 - 0: The maximum resident set size (KB) = 1180944 + 0: The total amount of wall time = 243.826609 + 0: The maximum resident set size (KB) = 1179468 Test 058 regional_spp_sppt_shum_skeb PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rap_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/rap_decomp Checking test 059 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2578,14 +2579,14 @@ Checking test 059 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 475.476237 - 0: The maximum resident set size (KB) = 1000932 + 0: The total amount of wall time = 483.342857 + 0: The maximum resident set size (KB) = 992800 Test 059 rap_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rap_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/rap_2threads Checking test 060 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2632,14 +2633,14 @@ Checking test 060 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 433.017586 - 0: The maximum resident set size (KB) = 1136848 + 0: The total amount of wall time = 439.727649 + 0: The maximum resident set size (KB) = 1147120 Test 060 rap_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rap_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/rap_restart Checking test 061 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2678,14 +2679,14 @@ Checking test 061 rap_restart results .... Comparing 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.877664 - 0: The maximum resident set size (KB) = 962696 + 0: The total amount of wall time = 235.010290 + 0: The maximum resident set size (KB) = 963432 Test 061 rap_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rap_sfcdiff +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/rap_sfcdiff Checking test 062 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2732,14 +2733,14 @@ Checking test 062 rap_sfcdiff results .... Comparing 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.727260 - 0: The maximum resident set size (KB) = 1052032 + 0: The total amount of wall time = 464.684087 + 0: The maximum resident set size (KB) = 1054776 Test 062 rap_sfcdiff PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rap_sfcdiff_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/rap_sfcdiff_decomp Checking test 063 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2786,14 +2787,14 @@ Checking test 063 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 481.421739 - 0: The maximum resident set size (KB) = 1000804 + 0: The total amount of wall time = 486.014311 + 0: The maximum resident set size (KB) = 1002412 Test 063 rap_sfcdiff_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rap_sfcdiff_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/rap_sfcdiff_restart Checking test 064 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2832,14 +2833,14 @@ Checking test 064 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 342.500326 - 0: The maximum resident set size (KB) = 994416 + 0: The total amount of wall time = 344.241875 + 0: The maximum resident set size (KB) = 989724 Test 064 rap_sfcdiff_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hrrr_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/hrrr_control Checking test 065 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2886,14 +2887,14 @@ Checking test 065 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 442.730222 - 0: The maximum resident set size (KB) = 1056140 + 0: The total amount of wall time = 448.710638 + 0: The maximum resident set size (KB) = 1052796 Test 065 hrrr_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hrrr_control_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/hrrr_control_decomp Checking test 066 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2940,14 +2941,14 @@ Checking test 066 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 464.322390 - 0: The maximum resident set size (KB) = 993376 + 0: The total amount of wall time = 469.581422 + 0: The maximum resident set size (KB) = 997560 Test 066 hrrr_control_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hrrr_control_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/hrrr_control_2threads Checking test 067 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2994,14 +2995,14 @@ Checking test 067 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 418.396404 - 0: The maximum resident set size (KB) = 1131332 + 0: The total amount of wall time = 421.945929 + 0: The maximum resident set size (KB) = 1139932 Test 067 hrrr_control_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hrrr_control_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/hrrr_control_restart Checking test 068 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3040,14 +3041,14 @@ Checking test 068 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 328.307782 - 0: The maximum resident set size (KB) = 979648 + 0: The total amount of wall time = 332.211222 + 0: The maximum resident set size (KB) = 977128 Test 068 hrrr_control_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rrfs_v1beta +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/rrfs_v1beta Checking test 069 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3094,14 +3095,14 @@ Checking test 069 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 454.092262 - 0: The maximum resident set size (KB) = 1051972 + 0: The total amount of wall time = 462.324968 + 0: The maximum resident set size (KB) = 1062536 Test 069 rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1nssl -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rrfs_v1nssl +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_v1nssl +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/rrfs_v1nssl Checking test 070 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3116,14 +3117,14 @@ Checking test 070 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 535.974187 - 0: The maximum resident set size (KB) = 689600 + 0: The total amount of wall time = 540.468275 + 0: The maximum resident set size (KB) = 696916 Test 070 rrfs_v1nssl PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rrfs_v1nssl_nohailnoccn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/rrfs_v1nssl_nohailnoccn Checking test 071 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3138,14 +3139,14 @@ Checking test 071 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 519.983484 - 0: The maximum resident set size (KB) = 753600 + 0: The total amount of wall time = 525.322207 + 0: The maximum resident set size (KB) = 756236 Test 071 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/rrfs_smoke_conus13km_hrrr_warm Checking test 072 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3154,14 +3155,14 @@ Checking test 072 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 145.580973 - 0: The maximum resident set size (KB) = 1036680 + 0: The total amount of wall time = 151.842061 + 0: The maximum resident set size (KB) = 1030716 Test 072 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 073 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3170,14 +3171,14 @@ Checking test 073 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 90.683337 - 0: The maximum resident set size (KB) = 942120 + 0: The total amount of wall time = 99.316415 + 0: The maximum resident set size (KB) = 942868 Test 073 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rrfs_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/rrfs_conus13km_hrrr_warm Checking test 074 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3186,14 +3187,14 @@ Checking test 074 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 128.598242 - 0: The maximum resident set size (KB) = 944904 + 0: The total amount of wall time = 136.832338 + 0: The maximum resident set size (KB) = 946760 Test 074 rrfs_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/rrfs_smoke_conus13km_radar_tten_warm Checking test 075 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3202,26 +3203,26 @@ Checking test 075 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 145.634884 - 0: The maximum resident set size (KB) = 1003728 + 0: The total amount of wall time = 153.037213 + 0: The maximum resident set size (KB) = 1042324 Test 075 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 076 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 68.308930 - 0: The maximum resident set size (KB) = 929780 + 0: The total amount of wall time = 73.047279 + 0: The maximum resident set size (KB) = 935436 Test 076 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmg -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_csawmg +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_csawmg +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_csawmg Checking test 077 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3232,14 +3233,14 @@ Checking test 077 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 345.960410 - 0: The maximum resident set size (KB) = 725620 + 0: The total amount of wall time = 350.447274 + 0: The maximum resident set size (KB) = 725192 Test 077 control_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmgt -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_csawmgt +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_csawmgt +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_csawmgt Checking test 078 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3250,14 +3251,14 @@ Checking test 078 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 339.162313 - 0: The maximum resident set size (KB) = 724924 + 0: The total amount of wall time = 344.550615 + 0: The maximum resident set size (KB) = 719276 Test 078 control_csawmgt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_ras -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_ras +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_ras +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_ras Checking test 079 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3268,26 +3269,26 @@ Checking test 079 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 179.974892 - 0: The maximum resident set size (KB) = 718820 + 0: The total amount of wall time = 181.563143 + 0: The maximum resident set size (KB) = 723980 Test 079 control_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wam -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_wam +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_wam +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_wam Checking test 080 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 111.105005 - 0: The maximum resident set size (KB) = 638536 + 0: The total amount of wall time = 112.369330 + 0: The maximum resident set size (KB) = 640416 Test 080 control_wam PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_faster -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_p8_faster +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_faster +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_p8_faster Checking test 081 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3334,14 +3335,14 @@ Checking test 081 control_p8_faster results .... Comparing 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.891467 - 0: The maximum resident set size (KB) = 1601364 + 0: The total amount of wall time = 159.219679 + 0: The maximum resident set size (KB) = 1597144 Test 081 control_p8_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control_faster -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/regional_control_faster +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control_faster +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/regional_control_faster Checking test 082 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3352,56 +3353,56 @@ Checking test 082 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 272.406628 - 0: The maximum resident set size (KB) = 864248 + 0: The total amount of wall time = 276.231661 + 0: The maximum resident set size (KB) = 868300 Test 082 regional_control_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 083 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 821.994184 - 0: The maximum resident set size (KB) = 1059200 + 0: The total amount of wall time = 845.521170 + 0: The maximum resident set size (KB) = 1007828 Test 083 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 084 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 460.856688 - 0: The maximum resident set size (KB) = 970148 + 0: The total amount of wall time = 473.260206 + 0: The maximum resident set size (KB) = 927220 Test 084 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rrfs_conus13km_hrrr_warm_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/rrfs_conus13km_hrrr_warm_debug Checking test 085 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 739.820113 - 0: The maximum resident set size (KB) = 968308 + 0: The total amount of wall time = 729.580350 + 0: The maximum resident set size (KB) = 965040 Test 085 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_CubedSphereGrid_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_CubedSphereGrid_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_CubedSphereGrid_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_CubedSphereGrid_debug Checking test 086 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3428,334 +3429,334 @@ Checking test 086 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 143.204109 - 0: The maximum resident set size (KB) = 791552 + 0: The total amount of wall time = 144.084839 + 0: The maximum resident set size (KB) = 791116 Test 086 control_CubedSphereGrid_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_wrtGauss_netcdf_parallel_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_wrtGauss_netcdf_parallel_debug Checking test 087 control_wrtGauss_netcdf_parallel_debug 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 = 142.253207 - 0: The maximum resident set size (KB) = 790616 + 0: The total amount of wall time = 145.344748 + 0: The maximum resident set size (KB) = 786940 Test 087 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_stochy_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_stochy_debug Checking test 088 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 163.813624 - 0: The maximum resident set size (KB) = 794120 + 0: The total amount of wall time = 163.883024 + 0: The maximum resident set size (KB) = 799692 Test 088 control_stochy_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_lndp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_lndp_debug Checking test 089 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 145.282420 - 0: The maximum resident set size (KB) = 792156 + 0: The total amount of wall time = 147.105979 + 0: The maximum resident set size (KB) = 794552 Test 089 control_lndp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmg_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_csawmg_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_csawmg_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_csawmg_debug Checking test 090 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 226.518164 - 0: The maximum resident set size (KB) = 840808 + 0: The total amount of wall time = 227.449229 + 0: The maximum resident set size (KB) = 843604 Test 090 control_csawmg_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmgt_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_csawmgt_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_csawmgt_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_csawmgt_debug Checking test 091 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 219.479731 - 0: The maximum resident set size (KB) = 840744 + 0: The total amount of wall time = 227.235742 + 0: The maximum resident set size (KB) = 840076 Test 091 control_csawmgt_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_ras_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_ras_debug Checking test 092 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 146.737321 - 0: The maximum resident set size (KB) = 801680 + 0: The total amount of wall time = 149.868635 + 0: The maximum resident set size (KB) = 803020 Test 092 control_ras_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_diag_debug Checking test 093 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 149.044647 - 0: The maximum resident set size (KB) = 850312 + 0: The total amount of wall time = 151.960007 + 0: The maximum resident set size (KB) = 850660 Test 093 control_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_debug_p8 Checking test 094 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 164.116211 - 0: The maximum resident set size (KB) = 1618996 + 0: The total amount of wall time = 166.719999 + 0: The maximum resident set size (KB) = 1612668 Test 094 control_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/regional_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/regional_debug Checking test 095 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 986.455785 - 0: The maximum resident set size (KB) = 871456 + 0: The total amount of wall time = 972.721894 + 0: The maximum resident set size (KB) = 880180 Test 095 regional_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rap_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/rap_control_debug Checking test 096 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 267.589607 - 0: The maximum resident set size (KB) = 1164688 + 0: The total amount of wall time = 271.847053 + 0: The maximum resident set size (KB) = 1170184 Test 096 rap_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hrrr_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/hrrr_control_debug Checking test 097 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 260.431773 - 0: The maximum resident set size (KB) = 1167276 + 0: The total amount of wall time = 264.952427 + 0: The maximum resident set size (KB) = 1168604 Test 097 hrrr_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rap_unified_drag_suite_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/rap_unified_drag_suite_debug Checking test 098 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 265.309892 - 0: The maximum resident set size (KB) = 1171848 + 0: The total amount of wall time = 267.583059 + 0: The maximum resident set size (KB) = 1166864 Test 098 rap_unified_drag_suite_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rap_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/rap_diag_debug Checking test 099 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 278.422860 - 0: The maximum resident set size (KB) = 1255604 + 0: The total amount of wall time = 281.461793 + 0: The maximum resident set size (KB) = 1243840 Test 099 rap_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rap_cires_ugwp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/rap_cires_ugwp_debug Checking test 100 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.072172 - 0: The maximum resident set size (KB) = 1171984 + 0: The total amount of wall time = 279.133528 + 0: The maximum resident set size (KB) = 1161196 Test 100 rap_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rap_unified_ugwp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/rap_unified_ugwp_debug Checking test 101 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.554568 - 0: The maximum resident set size (KB) = 1165424 + 0: The total amount of wall time = 271.042762 + 0: The maximum resident set size (KB) = 1175772 Test 101 rap_unified_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rap_lndp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/rap_lndp_debug Checking test 102 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 265.551271 - 0: The maximum resident set size (KB) = 1171276 + 0: The total amount of wall time = 273.195757 + 0: The maximum resident set size (KB) = 1166120 Test 102 rap_lndp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_flake_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rap_flake_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_flake_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/rap_flake_debug Checking test 103 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 266.414916 - 0: The maximum resident set size (KB) = 1168808 + 0: The total amount of wall time = 271.961257 + 0: The maximum resident set size (KB) = 1173568 Test 103 rap_flake_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rap_progcld_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/rap_progcld_thompson_debug Checking test 104 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 268.830465 - 0: The maximum resident set size (KB) = 1174740 + 0: The total amount of wall time = 265.426317 + 0: The maximum resident set size (KB) = 1172016 Test 104 rap_progcld_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_noah_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rap_noah_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_noah_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/rap_noah_debug Checking test 105 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 262.962199 - 0: The maximum resident set size (KB) = 1169180 + 0: The total amount of wall time = 267.152305 + 0: The maximum resident set size (KB) = 1168076 Test 105 rap_noah_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rap_sfcdiff_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_sfcdiff_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/rap_sfcdiff_debug Checking test 106 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 267.749624 - 0: The maximum resident set size (KB) = 1170096 + 0: The total amount of wall time = 265.098137 + 0: The maximum resident set size (KB) = 1169028 Test 106 rap_sfcdiff_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/rap_noah_sfcdiff_cires_ugwp_debug Checking test 107 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 444.290759 - 0: The maximum resident set size (KB) = 1169176 + 0: The total amount of wall time = 445.186206 + 0: The maximum resident set size (KB) = 1168168 Test 107 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rrfs_v1beta_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/rrfs_v1beta_debug Checking test 108 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 269.227047 - 0: The maximum resident set size (KB) = 1133352 + 0: The total amount of wall time = 275.675929 + 0: The maximum resident set size (KB) = 1158452 Test 108 rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_wam_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_wam_debug Checking test 109 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 277.349899 - 0: The maximum resident set size (KB) = 526476 + 0: The total amount of wall time = 272.827124 + 0: The maximum resident set size (KB) = 534972 Test 109 control_wam_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3766,14 +3767,14 @@ Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 218.847425 - 0: The maximum resident set size (KB) = 1081252 + 0: The total amount of wall time = 223.473777 + 0: The maximum resident set size (KB) = 1075636 Test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rap_control_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/rap_control_dyn32_phy32 Checking test 111 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3820,14 +3821,14 @@ Checking test 111 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 379.361711 - 0: The maximum resident set size (KB) = 1003192 + 0: The total amount of wall time = 384.036256 + 0: The maximum resident set size (KB) = 997316 Test 111 rap_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hrrr_control_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/hrrr_control_dyn32_phy32 Checking test 112 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3874,14 +3875,14 @@ Checking test 112 hrrr_control_dyn32_phy32 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 = 198.460490 - 0: The maximum resident set size (KB) = 963940 + 0: The total amount of wall time = 198.942338 + 0: The maximum resident set size (KB) = 959744 Test 112 hrrr_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rap_2threads_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/rap_2threads_dyn32_phy32 Checking test 113 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3928,14 +3929,14 @@ Checking test 113 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 362.585163 - 0: The maximum resident set size (KB) = 1019692 + 0: The total amount of wall time = 368.681951 + 0: The maximum resident set size (KB) = 1020948 Test 113 rap_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hrrr_control_2threads_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/hrrr_control_2threads_dyn32_phy32 Checking test 114 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3982,14 +3983,14 @@ Checking test 114 hrrr_control_2threads_dyn32_phy32 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 = 187.309509 - 0: The maximum resident set size (KB) = 993516 + 0: The total amount of wall time = 190.081749 + 0: The maximum resident set size (KB) = 1002736 Test 114 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hrrr_control_decomp_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/hrrr_control_decomp_dyn32_phy32 Checking test 115 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4036,14 +4037,14 @@ Checking test 115 hrrr_control_decomp_dyn32_phy32 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 = 207.093639 - 0: The maximum resident set size (KB) = 894036 + 0: The total amount of wall time = 210.316114 + 0: The maximum resident set size (KB) = 898408 Test 115 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rap_restart_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/rap_restart_dyn32_phy32 Checking test 116 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4082,14 +4083,14 @@ Checking test 116 rap_restart_dyn32_phy32 results .... Comparing 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.078256 - 0: The maximum resident set size (KB) = 947932 + 0: The total amount of wall time = 284.911401 + 0: The maximum resident set size (KB) = 952032 Test 116 rap_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hrrr_control_restart_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/hrrr_control_restart_dyn32_phy32 Checking test 117 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4128,14 +4129,14 @@ Checking test 117 hrrr_control_restart_dyn32_phy32 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 = 102.624644 - 0: The maximum resident set size (KB) = 859148 + 0: The total amount of wall time = 104.808353 + 0: The maximum resident set size (KB) = 862572 Test 117 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rap_control_dyn64_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/rap_control_dyn64_phy32 Checking test 118 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4182,81 +4183,81 @@ Checking test 118 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 243.546284 - 0: The maximum resident set size (KB) = 964296 + 0: The total amount of wall time = 246.010903 + 0: The maximum resident set size (KB) = 966028 Test 118 rap_control_dyn64_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rap_control_debug_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/rap_control_debug_dyn32_phy32 Checking test 119 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 263.075093 - 0: The maximum resident set size (KB) = 1055272 + 0: The total amount of wall time = 266.652796 + 0: The maximum resident set size (KB) = 1061656 Test 119 rap_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hrrr_control_debug_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/hrrr_control_debug_dyn32_phy32 Checking test 120 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 269.017930 - 0: The maximum resident set size (KB) = 1051824 + 0: The total amount of wall time = 260.168364 + 0: The maximum resident set size (KB) = 1049452 Test 120 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/rap_control_dyn64_phy32_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_debug_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/rap_control_dyn64_phy32_debug Checking test 121 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.954021 - 0: The maximum resident set size (KB) = 1103880 + 0: The total amount of wall time = 275.697611 + 0: The maximum resident set size (KB) = 1093748 Test 121 rap_control_dyn64_phy32_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hafs_regional_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/hafs_regional_atm Checking test 122 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 234.020257 - 0: The maximum resident set size (KB) = 1053560 + 0: The total amount of wall time = 244.311614 + 0: The maximum resident set size (KB) = 1045520 Test 122 hafs_regional_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hafs_regional_atm_thompson_gfdlsf +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/hafs_regional_atm_thompson_gfdlsf Checking test 123 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 311.090182 - 0: The maximum resident set size (KB) = 1424756 + 0: The total amount of wall time = 367.804284 + 0: The maximum resident set size (KB) = 1421784 Test 123 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hafs_regional_atm_ocn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/hafs_regional_atm_ocn Checking test 124 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4265,62 +4266,62 @@ Checking test 124 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 379.848462 - 0: The maximum resident set size (KB) = 1225372 + 0: The total amount of wall time = 386.845780 + 0: The maximum resident set size (KB) = 1216688 Test 124 hafs_regional_atm_ocn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_wav -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hafs_regional_atm_wav +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_wav +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/hafs_regional_atm_wav Checking test 125 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - Comparing out_grd.ww3 .........OK - Comparing out_pnt.ww3 .........OK + Comparing 20190829.060000.out_grd.ww3 ............MISSING baseline + Comparing 20190829.060000.out_pnt.ww3 ............MISSING baseline 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 = 739.600868 - 0: The maximum resident set size (KB) = 1246776 + 0: The total amount of wall time = 749.179086 + 0: The maximum resident set size (KB) = 1259244 -Test 125 hafs_regional_atm_wav PASS +Test 125 hafs_regional_atm_wav FAIL Tries: 2 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hafs_regional_atm_ocn_wav +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/hafs_regional_atm_ocn_wav Checking test 126 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK Comparing archs.2019_241_06.a .........OK - Comparing out_grd.ww3 .........OK - Comparing out_pnt.ww3 .........OK + Comparing 20200825.180000.out_grd.ww3 ............MISSING file + Comparing 20200825.180000.out_pnt.ww3 ............MISSING file 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 = 839.181157 - 0: The maximum resident set size (KB) = 1266540 + 0: The total amount of wall time = 849.252606 + 0: The maximum resident set size (KB) = 1260364 -Test 126 hafs_regional_atm_ocn_wav PASS +Test 126 hafs_regional_atm_ocn_wav FAIL Tries: 2 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hafs_regional_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/hafs_regional_1nest_atm Checking test 127 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 315.632421 - 0: The maximum resident set size (KB) = 504952 + 0: The total amount of wall time = 321.596384 + 0: The maximum resident set size (KB) = 508592 Test 127 hafs_regional_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hafs_regional_telescopic_2nests_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/hafs_regional_telescopic_2nests_atm Checking test 128 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4329,28 +4330,28 @@ Checking test 128 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 364.847033 - 0: The maximum resident set size (KB) = 515448 + 0: The total amount of wall time = 369.683236 + 0: The maximum resident set size (KB) = 514548 Test 128 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_global_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hafs_global_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_global_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/hafs_global_1nest_atm Checking test 129 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 145.727864 - 0: The maximum resident set size (KB) = 351884 + 0: The total amount of wall time = 147.084732 + 0: The maximum resident set size (KB) = 352428 Test 129 hafs_global_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_global_multiple_4nests_atm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hafs_global_multiple_4nests_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_global_multiple_4nests_atm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/hafs_global_multiple_4nests_atm Checking test 130 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4368,14 +4369,14 @@ Checking test 130 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 409.595024 - 0: The maximum resident set size (KB) = 456200 + 0: The total amount of wall time = 418.391922 + 0: The maximum resident set size (KB) = 432220 Test 130 hafs_global_multiple_4nests_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hafs_regional_specified_moving_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/hafs_regional_specified_moving_1nest_atm Checking test 131 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4384,28 +4385,28 @@ Checking test 131 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 201.786385 - 0: The maximum resident set size (KB) = 523868 + 0: The total amount of wall time = 205.556676 + 0: The maximum resident set size (KB) = 524988 Test 131 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hafs_regional_storm_following_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/hafs_regional_storm_following_1nest_atm Checking test 132 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 191.109034 - 0: The maximum resident set size (KB) = 524228 + 0: The total amount of wall time = 194.450855 + 0: The maximum resident set size (KB) = 519056 Test 132 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/hafs_regional_storm_following_1nest_atm_ocn Checking test 133 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4414,42 +4415,42 @@ Checking test 133 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 222.273994 - 0: The maximum resident set size (KB) = 573416 + 0: The total amount of wall time = 228.225873 + 0: The maximum resident set size (KB) = 565860 Test 133 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_global_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hafs_global_storm_following_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_global_storm_following_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/hafs_global_storm_following_1nest_atm Checking test 134 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 57.767744 - 0: The maximum resident set size (KB) = 372444 + 0: The total amount of wall time = 59.983442 + 0: The maximum resident set size (KB) = 372876 Test 134 hafs_global_storm_following_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 714.794719 - 0: The maximum resident set size (KB) = 562860 + 0: The total amount of wall time = 724.749289 + 0: The maximum resident set size (KB) = 581788 Test 135 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 136 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4457,17 +4458,17 @@ Checking test 136 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing sfc.nest02.f006.nc .........OK Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - Comparing out_grd.ww3 .........OK - Comparing out_pnt.ww3 .........OK + Comparing 20200825.180000.out_grd.ww3 ............MISSING baseline + Comparing 20200825.180000.out_pnt.ww3 ............MISSING baseline - 0: The total amount of wall time = 480.341435 - 0: The maximum resident set size (KB) = 623160 + 0: The total amount of wall time = 482.658441 + 0: The maximum resident set size (KB) = 622448 -Test 136 hafs_regional_storm_following_1nest_atm_ocn_wav PASS +Test 136 hafs_regional_storm_following_1nest_atm_ocn_wav FAIL Tries: 2 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_docn -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hafs_regional_docn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_docn +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/hafs_regional_docn Checking test 137 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4475,14 +4476,14 @@ Checking test 137 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 360.860735 - 0: The maximum resident set size (KB) = 1231332 + 0: The total amount of wall time = 359.526389 + 0: The maximum resident set size (KB) = 1227528 Test 137 hafs_regional_docn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_docn_oisst -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hafs_regional_docn_oisst +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_docn_oisst +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/hafs_regional_docn_oisst Checking test 138 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4490,131 +4491,131 @@ Checking test 138 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 360.556746 - 0: The maximum resident set size (KB) = 1220104 + 0: The total amount of wall time = 365.467935 + 0: The maximum resident set size (KB) = 1214824 Test 138 hafs_regional_docn_oisst PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_datm_cdeps -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/hafs_regional_datm_cdeps +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_datm_cdeps +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/hafs_regional_datm_cdeps Checking test 139 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 937.065823 - 0: The maximum resident set size (KB) = 1039896 + 0: The total amount of wall time = 929.374832 + 0: The maximum resident set size (KB) = 1037748 Test 139 hafs_regional_datm_cdeps PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/datm_cdeps_control_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/datm_cdeps_control_cfsr Checking test 140 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 155.828652 - 0: The maximum resident set size (KB) = 1058732 + 0: The total amount of wall time = 162.952467 + 0: The maximum resident set size (KB) = 1053056 Test 140 datm_cdeps_control_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/datm_cdeps_restart_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/datm_cdeps_restart_cfsr Checking test 141 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 92.988520 - 0: The maximum resident set size (KB) = 1009616 + 0: The total amount of wall time = 100.641495 + 0: The maximum resident set size (KB) = 1020712 Test 141 datm_cdeps_restart_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/datm_cdeps_control_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/datm_cdeps_control_gefs Checking test 142 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.642254 - 0: The maximum resident set size (KB) = 973796 + 0: The total amount of wall time = 152.527719 + 0: The maximum resident set size (KB) = 968952 Test 142 datm_cdeps_control_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_iau_gefs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/datm_cdeps_iau_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_iau_gefs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/datm_cdeps_iau_gefs Checking test 143 datm_cdeps_iau_gefs 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 = 152.077394 - 0: The maximum resident set size (KB) = 959580 + 0: The total amount of wall time = 157.369561 + 0: The maximum resident set size (KB) = 971316 Test 143 datm_cdeps_iau_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_stochy_gefs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/datm_cdeps_stochy_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_stochy_gefs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/datm_cdeps_stochy_gefs Checking test 144 datm_cdeps_stochy_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.825825 - 0: The maximum resident set size (KB) = 961924 + 0: The total amount of wall time = 151.663613 + 0: The maximum resident set size (KB) = 969812 Test 144 datm_cdeps_stochy_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_ciceC_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/datm_cdeps_ciceC_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_ciceC_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/datm_cdeps_ciceC_cfsr Checking test 145 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.855002 - 0: The maximum resident set size (KB) = 1068208 + 0: The total amount of wall time = 157.162281 + 0: The maximum resident set size (KB) = 1059412 Test 145 datm_cdeps_ciceC_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/datm_cdeps_bulk_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/datm_cdeps_bulk_cfsr Checking test 146 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 153.787135 - 0: The maximum resident set size (KB) = 1072996 + 0: The total amount of wall time = 158.686954 + 0: The maximum resident set size (KB) = 1071292 Test 146 datm_cdeps_bulk_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/datm_cdeps_bulk_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/datm_cdeps_bulk_gefs Checking test 147 datm_cdeps_bulk_gefs 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.080648 - 0: The maximum resident set size (KB) = 963708 + 0: The total amount of wall time = 148.132524 + 0: The maximum resident set size (KB) = 968316 Test 147 datm_cdeps_bulk_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/datm_cdeps_mx025_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/datm_cdeps_mx025_cfsr Checking test 148 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4623,14 +4624,14 @@ Checking test 148 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 433.425326 - 0: The maximum resident set size (KB) = 880828 + 0: The total amount of wall time = 440.795779 + 0: The maximum resident set size (KB) = 892340 Test 148 datm_cdeps_mx025_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/datm_cdeps_mx025_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/datm_cdeps_mx025_gefs Checking test 149 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4639,77 +4640,77 @@ Checking test 149 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 401.532657 - 0: The maximum resident set size (KB) = 932840 + 0: The total amount of wall time = 442.219621 + 0: The maximum resident set size (KB) = 932108 Test 149 datm_cdeps_mx025_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/datm_cdeps_multiple_files_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/datm_cdeps_multiple_files_cfsr Checking test 150 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 153.049770 - 0: The maximum resident set size (KB) = 1058680 + 0: The total amount of wall time = 156.856165 + 0: The maximum resident set size (KB) = 1060024 Test 150 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/datm_cdeps_3072x1536_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/datm_cdeps_3072x1536_cfsr Checking test 151 datm_cdeps_3072x1536_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 207.844945 - 0: The maximum resident set size (KB) = 2368988 + 0: The total amount of wall time = 227.400905 + 0: The maximum resident set size (KB) = 2298812 Test 151 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_gfs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/datm_cdeps_gfs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_gfs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/datm_cdeps_gfs Checking test 152 datm_cdeps_gfs 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 = 229.328037 - 0: The maximum resident set size (KB) = 2351428 + 0: The total amount of wall time = 241.184947 + 0: The maximum resident set size (KB) = 2356428 Test 152 datm_cdeps_gfs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/datm_cdeps_debug_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/datm_cdeps_debug_cfsr Checking test 153 datm_cdeps_debug_cfsr results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 356.208842 - 0: The maximum resident set size (KB) = 978128 + 0: The total amount of wall time = 356.146139 + 0: The maximum resident set size (KB) = 988676 Test 153 datm_cdeps_debug_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_cfsr_faster -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/datm_cdeps_control_cfsr_faster +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_control_cfsr_faster +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/datm_cdeps_control_cfsr_faster Checking test 154 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.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.529818 - 0: The maximum resident set size (KB) = 1065396 + 0: The total amount of wall time = 158.893601 + 0: The maximum resident set size (KB) = 1045860 Test 154 datm_cdeps_control_cfsr_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/datm_cdeps_lnd_gswp3 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_lnd_gswp3 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/datm_cdeps_lnd_gswp3 Checking test 155 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4718,14 +4719,14 @@ Checking test 155 datm_cdeps_lnd_gswp3 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 = 6.620096 - 0: The maximum resident set size (KB) = 255928 + 0: The total amount of wall time = 8.480319 + 0: The maximum resident set size (KB) = 261416 Test 155 datm_cdeps_lnd_gswp3 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/datm_cdeps_lnd_gswp3_rst +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_lnd_gswp3 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/datm_cdeps_lnd_gswp3_rst Checking test 156 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4734,14 +4735,14 @@ Checking test 156 datm_cdeps_lnd_gswp3_rst 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 = 11.920452 - 0: The maximum resident set size (KB) = 249772 + 0: The total amount of wall time = 14.559003 + 0: The maximum resident set size (KB) = 258832 Test 156 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_atmlnd_sbs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_p8_atmlnd_sbs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_atmlnd_sbs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_p8_atmlnd_sbs Checking test 157 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4826,15 +4827,65 @@ Checking test 157 control_p8_atmlnd_sbs 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.076999 - 0: The maximum resident set size (KB) = 1606740 + 0: The total amount of wall time = 211.040428 + 0: The maximum resident set size (KB) = 1602332 Test 157 control_p8_atmlnd_sbs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_atmwav -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/control_atmwav -Checking test 158 control_atmwav results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/atmwav_control_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/atmwav_control_noaero_p8 +Checking test 158 atmwav_control_noaero_p8 results .... + Comparing sfcf000.nc ............MISSING baseline + Comparing sfcf018.nc ............MISSING file + Comparing atmf000.nc ............MISSING baseline + Comparing atmf018.nc ............MISSING file + Comparing RESTART/20210322.180000.coupler.res ............MISSING baseline + Comparing RESTART/20210322.180000.fv_core.res.nc ............MISSING baseline + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc ............MISSING baseline + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc ............MISSING baseline + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc ............MISSING baseline + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc ............MISSING baseline + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc ............MISSING baseline + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc ............MISSING baseline + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc ............MISSING baseline + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc ............MISSING baseline + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc ............MISSING baseline + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc ............MISSING baseline + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc ............MISSING baseline + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc ............MISSING baseline + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc ............MISSING baseline + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc ............MISSING baseline + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc ............MISSING baseline + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc ............MISSING baseline + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc ............MISSING baseline + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc ............MISSING baseline + Comparing RESTART/20210322.180000.phy_data.tile1.nc ............MISSING baseline + Comparing RESTART/20210322.180000.phy_data.tile2.nc ............MISSING baseline + Comparing RESTART/20210322.180000.phy_data.tile3.nc ............MISSING baseline + Comparing RESTART/20210322.180000.phy_data.tile4.nc ............MISSING baseline + Comparing RESTART/20210322.180000.phy_data.tile5.nc ............MISSING baseline + Comparing RESTART/20210322.180000.phy_data.tile6.nc ............MISSING baseline + Comparing RESTART/20210322.180000.sfc_data.tile1.nc ............MISSING baseline + Comparing RESTART/20210322.180000.sfc_data.tile2.nc ............MISSING baseline + Comparing RESTART/20210322.180000.sfc_data.tile3.nc ............MISSING baseline + Comparing RESTART/20210322.180000.sfc_data.tile4.nc ............MISSING baseline + Comparing RESTART/20210322.180000.sfc_data.tile5.nc ............MISSING baseline + Comparing RESTART/20210322.180000.sfc_data.tile6.nc ............MISSING baseline + Comparing RESTART/ufs.atmw.cpl.r.2021-03-22-64800.nc ............MISSING baseline + Comparing 20210322.180000.out_pnt.ww3 ............MISSING baseline + Comparing 20210322.180000.out_grd.ww3 ............MISSING baseline + Comparing ufs.atmw.ww3.r.2021-03-22-64800 ............MISSING file + + 0: The total amount of wall time = 96.616794 + 0: The maximum resident set size (KB) = 1634220 + +Test 158 atmwav_control_noaero_p8 FAIL Tries: 2 + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_atmwav +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_atmwav +Checking test 159 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -4877,15 +4928,15 @@ Checking test 158 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 86.452167 - 0: The maximum resident set size (KB) = 661388 + 0: The total amount of wall time = 89.562203 + 0: The maximum resident set size (KB) = 662472 -Test 158 control_atmwav PASS +Test 159 control_atmwav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/atmaero_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/atmaero_control_p8 -Checking test 159 atmaero_control_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/atmaero_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/atmaero_control_p8 +Checking test 160 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4928,15 +4979,15 @@ Checking test 159 atmaero_control_p8 results .... Comparing 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.434443 - 0: The maximum resident set size (KB) = 2977872 + 0: The total amount of wall time = 235.336876 + 0: The maximum resident set size (KB) = 2969524 -Test 159 atmaero_control_p8 PASS +Test 160 atmaero_control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/atmaero_control_p8_rad -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/atmaero_control_p8_rad -Checking test 160 atmaero_control_p8_rad results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/atmaero_control_p8_rad +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/atmaero_control_p8_rad +Checking test 161 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4979,15 +5030,15 @@ Checking test 160 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 281.562912 - 0: The maximum resident set size (KB) = 3047684 + 0: The total amount of wall time = 284.384856 + 0: The maximum resident set size (KB) = 3041624 -Test 160 atmaero_control_p8_rad PASS +Test 161 atmaero_control_p8_rad PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/atmaero_control_p8_rad_micro -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/atmaero_control_p8_rad_micro -Checking test 161 atmaero_control_p8_rad_micro results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/atmaero_control_p8_rad_micro +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/atmaero_control_p8_rad_micro +Checking test 162 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5030,15 +5081,15 @@ Checking test 161 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 282.961384 - 0: The maximum resident set size (KB) = 3048064 + 0: The total amount of wall time = 286.744769 + 0: The maximum resident set size (KB) = 3047988 -Test 161 atmaero_control_p8_rad_micro PASS +Test 162 atmaero_control_p8_rad_micro PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_atmaq -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/regional_atmaq -Checking test 162 regional_atmaq results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_atmaq +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/regional_atmaq +Checking test 163 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -5053,15 +5104,15 @@ Checking test 162 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 628.951995 - 0: The maximum resident set size (KB) = 1472272 + 0: The total amount of wall time = 643.270683 + 0: The maximum resident set size (KB) = 1465132 -Test 162 regional_atmaq PASS +Test 163 regional_atmaq PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_atmaq_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/regional_atmaq_debug -Checking test 163 regional_atmaq_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_atmaq_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/regional_atmaq_debug +Checking test 164 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -5074,15 +5125,15 @@ Checking test 163 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1190.514290 - 0: The maximum resident set size (KB) = 1213444 + 0: The total amount of wall time = 1217.026848 + 0: The maximum resident set size (KB) = 1393996 -Test 163 regional_atmaq_debug PASS +Test 164 regional_atmaq_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_atmaq_faster -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25973/regional_atmaq_faster -Checking test 164 regional_atmaq_faster results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_atmaq_faster +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/regional_atmaq_faster +Checking test 165 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -5097,94 +5148,215 @@ Checking test 164 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 548.981367 - 0: The maximum resident set size (KB) = 1463908 + 0: The total amount of wall time = 581.229420 + 0: The maximum resident set size (KB) = 1294844 -Test 164 regional_atmaq_faster PASS +Test 165 regional_atmaq_faster PASS FAILED TESTS: -Test cpld_control_gfsv17 002 failed in check_result failed -Test cpld_control_gfsv17 002 failed in run_test failed +Test hafs_regional_atm_wav 125 failed in check_result failed +Test hafs_regional_atm_wav 125 failed in run_test failed +Test hafs_regional_atm_ocn_wav 126 failed in check_result failed +Test hafs_regional_atm_ocn_wav 126 failed in run_test failed +Test hafs_regional_storm_following_1nest_atm_ocn_wav 136 failed in check_result failed +Test hafs_regional_storm_following_1nest_atm_ocn_wav 136 failed in run_test failed +Test atmwav_control_noaero_p8 158 failed in check_result failed +Test atmwav_control_noaero_p8 158 failed in run_test failed REGRESSION TEST FAILED -Wed Apr 5 21:55:44 UTC 2023 -Elapsed time: 01h:12m:45s. Have a nice day! -Thu Apr 6 00:51:34 UTC 2023 +Sat Apr 8 14:00:22 UTC 2023 +Elapsed time: 01h:16m:21s. Have a nice day! +Sat Apr 8 23:19:51 UTC 2023 Start Regression test -Compile 001 elapsed time 617 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 001 elapsed time 575 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 002 elapsed time 658 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 536 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_gfsv17 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_20278/cpld_control_gfsv17 -Checking test 001 cpld_control_gfsv17 results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_wav +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_16222/hafs_regional_atm_wav +Checking test 001 hafs_regional_atm_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing 20190829.060000.out_grd.ww3 .........OK + Comparing 20190829.060000.out_pnt.ww3 .........OK + Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + + 0: The total amount of wall time = 744.361811 + 0: The maximum resident set size (KB) = 1256720 + +Test 001 hafs_regional_atm_wav PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_16222/hafs_regional_atm_ocn_wav +Checking test 002 hafs_regional_atm_ocn_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing archv.2019_241_06.a .........OK + Comparing archs.2019_241_06.a .........OK + Comparing 20200825.180000.out_grd.ww3 ............MISSING file + Comparing 20200825.180000.out_pnt.ww3 ............MISSING file + 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 = 848.110154 + 0: The maximum resident set size (KB) = 1278072 + +Test 002 hafs_regional_atm_ocn_wav FAIL Tries: 2 + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_16222/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 003 hafs_regional_storm_following_1nest_atm_ocn_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing archv.2020_238_18.a .........OK + Comparing archs.2020_238_18.a .........OK + Comparing 20200825.180000.out_grd.ww3 .........OK + Comparing 20200825.180000.out_pnt.ww3 .........OK + + 0: The total amount of wall time = 497.036363 + 0: The maximum resident set size (KB) = 618532 + +Test 003 hafs_regional_storm_following_1nest_atm_ocn_wav PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/atmwav_control_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_16222/atmwav_control_noaero_p8 +Checking test 004 atmwav_control_noaero_p8 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf018.nc ............MISSING file + Comparing atmf000.nc .........OK + Comparing atmf018.nc ............MISSING file + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + Comparing RESTART/ufs.atmw.cpl.r.2021-03-22-64800.nc .........OK + Comparing 20210322.180000.out_pnt.ww3 .........OK + Comparing 20210322.180000.out_grd.ww3 .........OK + Comparing ufs.atmw.ww3.r.2021-03-22-64800 ............MISSING file + + 0: The total amount of wall time = 97.086828 + 0: The maximum resident set size (KB) = 1630260 + +Test 004 atmwav_control_noaero_p8 FAIL Tries: 2 + +FAILED TESTS: +Test hafs_regional_atm_ocn_wav 002 failed in check_result failed +Test hafs_regional_atm_ocn_wav 002 failed in run_test failed +Test atmwav_control_noaero_p8 004 failed in check_result failed +Test atmwav_control_noaero_p8 004 failed in run_test failed + +REGRESSION TEST FAILED +Sun Apr 9 00:06:02 UTC 2023 +Elapsed time: 00h:46m:11s. Have a nice day! +Sun Apr 9 22:34:50 UTC 2023 +Start Regression test + +Compile 001 elapsed time 614 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 002 elapsed time 544 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_32111/hafs_regional_atm_ocn_wav +Checking test 001 hafs_regional_atm_ocn_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing archv.2019_241_06.a .........OK + Comparing archs.2019_241_06.a .........OK + Comparing 20190829.060000.out_grd.ww3 .........OK + Comparing 20190829.060000.out_pnt.ww3 .........OK + Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + + 0: The total amount of wall time = 851.817293 + 0: The maximum resident set size (KB) = 1273716 + +Test 001 hafs_regional_atm_ocn_wav PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/atmwav_control_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_32111/atmwav_control_noaero_p8 +Checking test 002 atmwav_control_noaero_p8 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + Comparing RESTART/ufs.atmw.cpl.r.2021-03-22-64800.nc .........OK + Comparing 20210322.180000.out_pnt.ww3 .........OK + Comparing 20210322.180000.out_grd.ww3 .........OK + Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 223.004061 - 0: The maximum resident set size (KB) = 1729940 + 0: The total amount of wall time = 100.600586 + 0: The maximum resident set size (KB) = 1630908 -Test 001 cpld_control_gfsv17 PASS +Test 002 atmwav_control_noaero_p8 PASS REGRESSION TEST WAS SUCCESSFUL -Thu Apr 6 01:13:53 UTC 2023 -Elapsed time: 00h:22m:19s. Have a nice day! +Sun Apr 9 23:05:08 UTC 2023 +Elapsed time: 00h:30m:20s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index 287df0eb29c..2a8ced1a94b 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,42 +1,43 @@ -Thu Apr 6 01:52:16 UTC 2023 +Mon Apr 10 01:49:39 UTC 2023 Start Regression test -Compile 001 elapsed time 2023 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 002 elapsed time 1992 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 003 elapsed time 1789 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 004 elapsed time 363 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 339 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 1560 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 007 elapsed time 1603 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 008 elapsed time 3439 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 009 elapsed time 1717 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 010 elapsed time 1671 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 011 elapsed time 1517 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 012 elapsed time 1432 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 013 elapsed time 2114 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 014 elapsed time 335 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 297 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 1496 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 017 elapsed time 1503 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 018 elapsed time 249 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 297 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 1757 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 021 elapsed time 452 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 2321 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 023 elapsed time 1435 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 024 elapsed time 375 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 025 elapsed time 224 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 353 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 027 elapsed time 180 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 028 elapsed time 1665 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 029 elapsed time 1698 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 030 elapsed time 1528 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 031 elapsed time 1570 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 032 elapsed time 331 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 1928 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8_mixedmode -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/cpld_control_p8_mixedmode +Compile 001 elapsed time 1912 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 002 elapsed time 1996 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 003 elapsed time 1735 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 004 elapsed time 371 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 293 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 1550 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 007 elapsed time 1514 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 008 elapsed time 3474 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 009 elapsed time 1667 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 010 elapsed time 1566 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 011 elapsed time 1546 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 012 elapsed time 1463 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 013 elapsed time 2050 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 014 elapsed time 291 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 197 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 1472 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 017 elapsed time 1458 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 018 elapsed time 242 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 246 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 1628 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 021 elapsed time 287 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 2193 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 023 elapsed time 1628 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 024 elapsed time 281 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 025 elapsed time 144 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 292 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 027 elapsed time 108 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 028 elapsed time 1521 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 029 elapsed time 1575 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 030 elapsed time 1632 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 031 elapsed time 1453 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 032 elapsed time 1424 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 033 elapsed time 233 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 034 elapsed time 1880 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8_mixedmode +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -101,14 +102,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 704.247296 - 0: The maximum resident set size (KB) = 1736140 + 0: The total amount of wall time = 418.216512 + 0: The maximum resident set size (KB) = 1753248 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_gfsv17 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/cpld_control_gfsv17 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_gfsv17 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -172,14 +173,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 517.007447 - 0: The maximum resident set size (KB) = 1657820 + 0: The total amount of wall time = 314.067712 + 0: The maximum resident set size (KB) = 1634960 Test 002 cpld_control_gfsv17 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/cpld_control_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -244,14 +245,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 731.765590 - 0: The maximum resident set size (KB) = 1784352 + 0: The total amount of wall time = 471.522602 + 0: The maximum resident set size (KB) = 1779204 Test 003 cpld_control_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/cpld_restart_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -304,14 +305,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 433.381639 - 0: The maximum resident set size (KB) = 1482320 + 0: The total amount of wall time = 322.705132 + 0: The maximum resident set size (KB) = 1509692 Test 004 cpld_restart_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/cpld_control_qr_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -376,14 +377,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 789.950692 - 0: The maximum resident set size (KB) = 1790336 + 0: The total amount of wall time = 472.880545 + 0: The maximum resident set size (KB) = 1784476 Test 005 cpld_control_qr_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/cpld_restart_qr_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -436,14 +437,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 503.561430 - 0: The maximum resident set size (KB) = 1512208 + 0: The total amount of wall time = 343.205805 + 0: The maximum resident set size (KB) = 1495860 Test 006 cpld_restart_qr_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/cpld_2threads_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -496,14 +497,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 782.655697 - 0: The maximum resident set size (KB) = 1987600 + 0: The total amount of wall time = 490.741251 + 0: The maximum resident set size (KB) = 1968800 Test 007 cpld_2threads_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/cpld_decomp_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -556,14 +557,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 725.951507 - 0: The maximum resident set size (KB) = 1791312 + 0: The total amount of wall time = 472.860384 + 0: The maximum resident set size (KB) = 1790380 Test 008 cpld_decomp_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/cpld_mpi_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -616,14 +617,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 697.728215 - 0: The maximum resident set size (KB) = 1729600 + 0: The total amount of wall time = 387.573064 + 0: The maximum resident set size (KB) = 1743936 Test 009 cpld_mpi_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_ciceC_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/cpld_control_ciceC_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_ciceC_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -688,14 +689,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 689.715847 - 0: The maximum resident set size (KB) = 1786080 + 0: The total amount of wall time = 467.232315 + 0: The maximum resident set size (KB) = 1796844 Test 010 cpld_control_ciceC_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_noaero_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/cpld_control_noaero_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_noaero_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/cpld_control_noaero_p8 Checking test 011 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -759,14 +760,14 @@ Checking test 011 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 553.694390 - 0: The maximum resident set size (KB) = 1634256 + 0: The total amount of wall time = 353.277922 + 0: The maximum resident set size (KB) = 1625212 Test 011 cpld_control_noaero_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/cpld_control_nowave_noaero_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_c96_noaero_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/cpld_control_nowave_noaero_p8 Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -828,14 +829,14 @@ Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 529.147414 - 0: The maximum resident set size (KB) = 1676532 + 0: The total amount of wall time = 361.866382 + 0: The maximum resident set size (KB) = 1693696 Test 012 cpld_control_nowave_noaero_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_debug_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/cpld_debug_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_debug_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/cpld_debug_p8 Checking test 013 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -888,14 +889,14 @@ Checking test 013 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 782.045856 - 0: The maximum resident set size (KB) = 1813688 + 0: The total amount of wall time = 695.905842 + 0: The maximum resident set size (KB) = 1833032 Test 013 cpld_debug_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_debug_noaero_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/cpld_debug_noaero_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_debug_noaero_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/cpld_debug_noaero_p8 Checking test 014 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -947,14 +948,14 @@ Checking test 014 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 525.151304 - 0: The maximum resident set size (KB) = 1648320 + 0: The total amount of wall time = 496.850346 + 0: The maximum resident set size (KB) = 1631252 Test 014 cpld_debug_noaero_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/cpld_control_noaero_p8_agrid +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_noaero_p8_agrid +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/cpld_control_noaero_p8_agrid Checking test 015 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1016,14 +1017,14 @@ Checking test 015 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 660.894756 - 0: The maximum resident set size (KB) = 1687288 + 0: The total amount of wall time = 380.519097 + 0: The maximum resident set size (KB) = 1691368 Test 015 cpld_control_noaero_p8_agrid PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_c48 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/cpld_control_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_c48 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/cpld_control_c48 Checking test 016 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1073,14 +1074,14 @@ Checking test 016 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 830.108797 - 0: The maximum resident set size (KB) = 2767200 + 0: The total amount of wall time = 801.546380 + 0: The maximum resident set size (KB) = 2772956 Test 016 cpld_control_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_warmstart_c48 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/cpld_warmstart_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_warmstart_c48 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/cpld_warmstart_c48 Checking test 017 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1130,14 +1131,14 @@ Checking test 017 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 286.617151 - 0: The maximum resident set size (KB) = 2765164 + 0: The total amount of wall time = 195.612709 + 0: The maximum resident set size (KB) = 2776976 Test 017 cpld_warmstart_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_warmstart_c48 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/cpld_restart_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_warmstart_c48 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/cpld_restart_c48 Checking test 018 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1187,14 +1188,14 @@ Checking test 018 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 139.966378 - 0: The maximum resident set size (KB) = 2217776 + 0: The total amount of wall time = 117.549823 + 0: The maximum resident set size (KB) = 2200292 Test 018 cpld_restart_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8_faster -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/cpld_control_p8_faster +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8_faster +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/cpld_control_p8_faster Checking test 019 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1259,14 +1260,14 @@ Checking test 019 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 863.974021 - 0: The maximum resident set size (KB) = 1796768 + 0: The total amount of wall time = 485.687931 + 0: The maximum resident set size (KB) = 1776996 Test 019 cpld_control_p8_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_CubedSphereGrid -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_CubedSphereGrid +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_CubedSphereGrid +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_CubedSphereGrid Checking test 020 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1293,28 +1294,28 @@ Checking test 020 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 275.413466 - 0: The maximum resident set size (KB) = 574480 + 0: The total amount of wall time = 180.990403 + 0: The maximum resident set size (KB) = 573960 Test 020 control_CubedSphereGrid PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_CubedSphereGrid_parallel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_CubedSphereGrid_parallel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_CubedSphereGrid_parallel +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_CubedSphereGrid_parallel Checking test 021 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 349.310658 - 0: The maximum resident set size (KB) = 575032 + 0: The total amount of wall time = 182.373167 + 0: The maximum resident set size (KB) = 578476 Test 021 control_CubedSphereGrid_parallel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_latlon -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_latlon +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_latlon +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_latlon Checking test 022 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1325,17 +1326,17 @@ Checking test 022 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 310.552200 - 0: The maximum resident set size (KB) = 577268 + 0: The total amount of wall time = 183.524740 + 0: The maximum resident set size (KB) = 576116 Test 022 control_latlon PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_wrtGauss_netcdf_parallel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_wrtGauss_netcdf_parallel Checking test 023 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK @@ -1343,14 +1344,14 @@ Checking test 023 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 307.373656 - 0: The maximum resident set size (KB) = 579760 + 0: The total amount of wall time = 194.663127 + 0: The maximum resident set size (KB) = 574568 Test 023 control_wrtGauss_netcdf_parallel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c48 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_c48 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_c48 Checking test 024 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1389,14 +1390,14 @@ Checking test 024 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 614.756796 -0: The maximum resident set size (KB) = 801792 +0: The total amount of wall time = 597.964641 +0: The maximum resident set size (KB) = 800820 Test 024 control_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c192 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_c192 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_c192 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_c192 Checking test 025 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1407,14 +1408,14 @@ Checking test 025 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 911.738880 - 0: The maximum resident set size (KB) = 688644 + 0: The total amount of wall time = 750.786015 + 0: The maximum resident set size (KB) = 694536 Test 025 control_c192 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c384 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_c384 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_c384 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_c384 Checking test 026 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1425,14 +1426,14 @@ Checking test 026 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1605.655012 - 0: The maximum resident set size (KB) = 1052708 + 0: The total amount of wall time = 1018.176652 + 0: The maximum resident set size (KB) = 1056984 Test 026 control_c384 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c384gdas -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_c384gdas +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_c384gdas +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_c384gdas Checking test 027 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1475,14 +1476,14 @@ Checking test 027 control_c384gdas 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 = 1431.112996 - 0: The maximum resident set size (KB) = 1198364 + 0: The total amount of wall time = 875.274555 + 0: The maximum resident set size (KB) = 1201328 Test 027 control_c384gdas PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_stochy -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_stochy +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_stochy +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_stochy Checking test 028 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1493,28 +1494,28 @@ Checking test 028 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 154.862187 - 0: The maximum resident set size (KB) = 579912 + 0: The total amount of wall time = 125.038926 + 0: The maximum resident set size (KB) = 581088 Test 028 control_stochy PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_stochy -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_stochy_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_stochy +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_stochy_restart Checking test 029 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 166.936801 - 0: The maximum resident set size (KB) = 405576 + 0: The total amount of wall time = 71.213384 + 0: The maximum resident set size (KB) = 394640 Test 029 control_stochy_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_lndp -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_lndp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_lndp +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_lndp Checking test 030 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1525,14 +1526,14 @@ Checking test 030 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 199.550056 - 0: The maximum resident set size (KB) = 576408 + 0: The total amount of wall time = 113.545733 + 0: The maximum resident set size (KB) = 577964 Test 030 control_lndp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_iovr4 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_iovr4 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_iovr4 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_iovr4 Checking test 031 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1547,14 +1548,14 @@ Checking test 031 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 367.344764 - 0: The maximum resident set size (KB) = 571368 + 0: The total amount of wall time = 190.468138 + 0: The maximum resident set size (KB) = 572272 Test 031 control_iovr4 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_iovr5 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_iovr5 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_iovr5 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_iovr5 Checking test 032 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1569,14 +1570,14 @@ Checking test 032 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 380.177668 - 0: The maximum resident set size (KB) = 578988 + 0: The total amount of wall time = 193.045309 + 0: The maximum resident set size (KB) = 578156 Test 032 control_iovr5 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_p8 Checking test 033 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1623,14 +1624,14 @@ Checking test 033 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 430.142897 - 0: The maximum resident set size (KB) = 1535608 + 0: The total amount of wall time = 246.187517 + 0: The maximum resident set size (KB) = 1540760 Test 033 control_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_restart_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_restart_p8 Checking test 034 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1669,14 +1670,14 @@ Checking test 034 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 238.828657 - 0: The maximum resident set size (KB) = 773980 + 0: The total amount of wall time = 132.229663 + 0: The maximum resident set size (KB) = 784016 Test 034 control_restart_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_qr_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_qr_p8 Checking test 035 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1723,14 +1724,14 @@ Checking test 035 control_qr_p8 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 = 467.073061 - 0: The maximum resident set size (KB) = 1548924 + 0: The total amount of wall time = 242.103945 + 0: The maximum resident set size (KB) = 1553240 Test 035 control_qr_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_restart_qr_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_restart_qr_p8 Checking test 036 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1769,14 +1770,14 @@ Checking test 036 control_restart_qr_p8 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 = 199.630294 - 0: The maximum resident set size (KB) = 783616 + 0: The total amount of wall time = 124.873278 + 0: The maximum resident set size (KB) = 787908 Test 036 control_restart_qr_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_decomp_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_decomp_p8 Checking test 037 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1819,14 +1820,14 @@ Checking test 037 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 375.865912 - 0: The maximum resident set size (KB) = 1527684 + 0: The total amount of wall time = 247.867096 + 0: The maximum resident set size (KB) = 1532340 Test 037 control_decomp_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_2threads_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_2threads_p8 Checking test 038 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1869,14 +1870,14 @@ Checking test 038 control_2threads_p8 results .... Comparing 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.700223 - 0: The maximum resident set size (KB) = 1627496 + 0: The total amount of wall time = 231.650752 + 0: The maximum resident set size (KB) = 1630772 Test 038 control_2threads_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_lndp -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_p8_lndp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_lndp +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_p8_lndp Checking test 039 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1895,14 +1896,14 @@ Checking test 039 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 795.859919 - 0: The maximum resident set size (KB) = 1537692 + 0: The total amount of wall time = 465.853755 + 0: The maximum resident set size (KB) = 1537320 Test 039 control_p8_lndp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_rrtmgp -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_p8_rrtmgp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_rrtmgp +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_p8_rrtmgp Checking test 040 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1949,14 +1950,14 @@ Checking test 040 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 525.418084 - 0: The maximum resident set size (KB) = 1602552 + 0: The total amount of wall time = 327.371053 + 0: The maximum resident set size (KB) = 1609660 Test 040 control_p8_rrtmgp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_mynn -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_p8_mynn +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_mynn +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_p8_mynn Checking test 041 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2003,14 +2004,14 @@ Checking test 041 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 405.453424 - 0: The maximum resident set size (KB) = 1557004 + 0: The total amount of wall time = 255.397900 + 0: The maximum resident set size (KB) = 1561156 Test 041 control_p8_mynn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/merra2_thompson -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/merra2_thompson +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/merra2_thompson +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/merra2_thompson Checking test 042 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2057,14 +2058,14 @@ Checking test 042 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 486.005329 - 0: The maximum resident set size (KB) = 1545456 + 0: The total amount of wall time = 296.592910 + 0: The maximum resident set size (KB) = 1538424 Test 042 merra2_thompson PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/regional_control +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/regional_control Checking test 043 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2075,28 +2076,28 @@ Checking test 043 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 724.721363 - 0: The maximum resident set size (KB) = 790332 + 0: The total amount of wall time = 457.564142 + 0: The maximum resident set size (KB) = 783532 Test 043 regional_control PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/regional_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/regional_restart Checking test 044 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 308.749726 - 0: The maximum resident set size (KB) = 782452 + 0: The total amount of wall time = 423.571172 + 0: The maximum resident set size (KB) = 777396 Test 044 regional_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/regional_control_qr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/regional_control_qr Checking test 045 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2107,28 +2108,28 @@ Checking test 045 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 769.628703 - 0: The maximum resident set size (KB) = 786988 + 0: The total amount of wall time = 475.196498 + 0: The maximum resident set size (KB) = 783644 Test 045 regional_control_qr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/regional_restart_qr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/regional_restart_qr Checking test 046 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 349.092000 - 0: The maximum resident set size (KB) = 779656 + 0: The total amount of wall time = 467.301726 + 0: The maximum resident set size (KB) = 779404 Test 046 regional_restart_qr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/regional_decomp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/regional_decomp Checking test 047 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2139,14 +2140,14 @@ Checking test 047 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 804.782981 - 0: The maximum resident set size (KB) = 791116 + 0: The total amount of wall time = 472.841341 + 0: The maximum resident set size (KB) = 781544 Test 047 regional_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/regional_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/regional_2threads Checking test 048 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2157,28 +2158,28 @@ Checking test 048 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 566.974774 - 0: The maximum resident set size (KB) = 775280 + 0: The total amount of wall time = 297.972188 + 0: The maximum resident set size (KB) = 765596 Test 048 regional_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/regional_netcdf_parallel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_netcdf_parallel +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/regional_netcdf_parallel Checking test 049 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK - Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf000.nc .........OK Comparing phyf006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 770.401993 - 0: The maximum resident set size (KB) = 781112 + 0: The total amount of wall time = 430.050722 + 0: The maximum resident set size (KB) = 787252 Test 049 regional_netcdf_parallel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/regional_2dwrtdecomp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/regional_2dwrtdecomp Checking test 050 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2189,14 +2190,14 @@ Checking test 050 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 843.394705 - 0: The maximum resident set size (KB) = 787904 + 0: The total amount of wall time = 463.457743 + 0: The maximum resident set size (KB) = 784104 Test 050 regional_2dwrtdecomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rap_control +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/rap_control Checking test 051 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2243,14 +2244,14 @@ Checking test 051 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 855.878209 - 0: The maximum resident set size (KB) = 949148 + 0: The total amount of wall time = 616.752619 + 0: The maximum resident set size (KB) = 955792 Test 051 rap_control PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/regional_spp_sppt_shum_skeb +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_spp_sppt_shum_skeb +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/regional_spp_sppt_shum_skeb Checking test 052 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2261,14 +2262,14 @@ Checking test 052 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 622.654113 - 0: The maximum resident set size (KB) = 1090100 + 0: The total amount of wall time = 325.822863 + 0: The maximum resident set size (KB) = 1092668 Test 052 regional_spp_sppt_shum_skeb PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rap_decomp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/rap_decomp Checking test 053 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2315,14 +2316,14 @@ Checking test 053 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 876.988948 - 0: The maximum resident set size (KB) = 952348 + 0: The total amount of wall time = 648.229065 + 0: The maximum resident set size (KB) = 940348 Test 053 rap_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rap_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/rap_2threads Checking test 054 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2369,14 +2370,14 @@ Checking test 054 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 803.095183 - 0: The maximum resident set size (KB) = 1021660 + 0: The total amount of wall time = 597.390814 + 0: The maximum resident set size (KB) = 1024248 Test 054 rap_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rap_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/rap_restart Checking test 055 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2415,14 +2416,14 @@ Checking test 055 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 559.829078 - 0: The maximum resident set size (KB) = 838140 + 0: The total amount of wall time = 334.693294 + 0: The maximum resident set size (KB) = 839288 Test 055 rap_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rap_sfcdiff +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/rap_sfcdiff Checking test 056 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2469,14 +2470,14 @@ Checking test 056 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 790.774249 - 0: The maximum resident set size (KB) = 950888 + 0: The total amount of wall time = 633.991588 + 0: The maximum resident set size (KB) = 953552 Test 056 rap_sfcdiff PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rap_sfcdiff_decomp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/rap_sfcdiff_decomp Checking test 057 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2523,14 +2524,14 @@ Checking test 057 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 852.487035 - 0: The maximum resident set size (KB) = 942124 + 0: The total amount of wall time = 681.573387 + 0: The maximum resident set size (KB) = 952492 Test 057 rap_sfcdiff_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rap_sfcdiff_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/rap_sfcdiff_restart Checking test 058 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2569,14 +2570,14 @@ Checking test 058 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 687.069775 - 0: The maximum resident set size (KB) = 835436 + 0: The total amount of wall time = 647.218611 + 0: The maximum resident set size (KB) = 838008 Test 058 rap_sfcdiff_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/hrrr_control +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/hrrr_control Checking test 059 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2623,14 +2624,14 @@ Checking test 059 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 818.369929 - 0: The maximum resident set size (KB) = 953460 + 0: The total amount of wall time = 607.952545 + 0: The maximum resident set size (KB) = 954600 Test 059 hrrr_control PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/hrrr_control_decomp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/hrrr_control_decomp Checking test 060 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2677,14 +2678,14 @@ Checking test 060 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 887.873985 - 0: The maximum resident set size (KB) = 942836 + 0: The total amount of wall time = 637.351831 + 0: The maximum resident set size (KB) = 939928 Test 060 hrrr_control_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/hrrr_control_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/hrrr_control_2threads Checking test 061 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2731,14 +2732,14 @@ Checking test 061 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 808.808904 - 0: The maximum resident set size (KB) = 1013460 + 0: The total amount of wall time = 584.468229 + 0: The maximum resident set size (KB) = 1018588 Test 061 hrrr_control_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/hrrr_control_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/hrrr_control_restart Checking test 062 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2777,14 +2778,14 @@ Checking test 062 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 682.913494 - 0: The maximum resident set size (KB) = 836788 + 0: The total amount of wall time = 595.443203 + 0: The maximum resident set size (KB) = 836796 Test 062 hrrr_control_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1beta -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rrfs_v1beta +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_v1beta +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/rrfs_v1beta Checking test 063 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2831,14 +2832,14 @@ Checking test 063 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 882.282755 - 0: The maximum resident set size (KB) = 954708 + 0: The total amount of wall time = 624.367552 + 0: The maximum resident set size (KB) = 954096 Test 063 rrfs_v1beta PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1nssl -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rrfs_v1nssl +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_v1nssl +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/rrfs_v1nssl Checking test 064 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2853,14 +2854,14 @@ Checking test 064 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 931.589221 - 0: The maximum resident set size (KB) = 623340 + 0: The total amount of wall time = 744.632098 + 0: The maximum resident set size (KB) = 632108 Test 064 rrfs_v1nssl PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rrfs_v1nssl_nohailnoccn +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/rrfs_v1nssl_nohailnoccn Checking test 065 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2875,14 +2876,14 @@ Checking test 065 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 976.044518 - 0: The maximum resident set size (KB) = 629632 + 0: The total amount of wall time = 735.952582 + 0: The maximum resident set size (KB) = 631876 Test 065 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/rrfs_smoke_conus13km_hrrr_warm Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2891,14 +2892,14 @@ Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 298.407407 - 0: The maximum resident set size (KB) = 896168 + 0: The total amount of wall time = 206.652096 + 0: The maximum resident set size (KB) = 905180 Test 066 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 067 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2907,14 +2908,14 @@ Checking test 067 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 187.655624 - 0: The maximum resident set size (KB) = 865140 + 0: The total amount of wall time = 131.173541 + 0: The maximum resident set size (KB) = 868904 Test 067 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rrfs_conus13km_hrrr_warm +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/rrfs_conus13km_hrrr_warm Checking test 068 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2923,14 +2924,14 @@ Checking test 068 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 232.415190 - 0: The maximum resident set size (KB) = 864232 + 0: The total amount of wall time = 178.914673 + 0: The maximum resident set size (KB) = 866776 Test 068 rrfs_conus13km_hrrr_warm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/rrfs_smoke_conus13km_radar_tten_warm Checking test 069 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2939,26 +2940,26 @@ Checking test 069 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 376.354176 - 0: The maximum resident set size (KB) = 902340 + 0: The total amount of wall time = 207.730268 + 0: The maximum resident set size (KB) = 911896 Test 069 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 070 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 207.282324 - 0: The maximum resident set size (KB) = 847012 + 0: The total amount of wall time = 117.142405 + 0: The maximum resident set size (KB) = 842116 Test 070 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmg -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_csawmg +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_csawmg +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_csawmg Checking test 071 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2969,14 +2970,14 @@ Checking test 071 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 651.189439 - 0: The maximum resident set size (KB) = 667692 + 0: The total amount of wall time = 633.049404 + 0: The maximum resident set size (KB) = 666152 Test 071 control_csawmg PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmgt -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_csawmgt +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_csawmgt +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_csawmgt Checking test 072 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2987,14 +2988,14 @@ Checking test 072 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 667.253974 - 0: The maximum resident set size (KB) = 669408 + 0: The total amount of wall time = 663.622626 + 0: The maximum resident set size (KB) = 661548 Test 072 control_csawmgt PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_ras -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_ras +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_ras +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_ras Checking test 073 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3005,26 +3006,26 @@ Checking test 073 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 347.659147 - 0: The maximum resident set size (KB) = 634724 + 0: The total amount of wall time = 278.862511 + 0: The maximum resident set size (KB) = 632204 Test 073 control_ras PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wam -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_wam +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_wam +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_wam Checking test 074 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 187.431488 - 0: The maximum resident set size (KB) = 479548 + 0: The total amount of wall time = 153.174932 + 0: The maximum resident set size (KB) = 480456 Test 074 control_wam PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_faster -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_p8_faster +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_faster +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_p8_faster Checking test 075 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3071,14 +3072,14 @@ Checking test 075 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 312.679136 - 0: The maximum resident set size (KB) = 1534136 + 0: The total amount of wall time = 224.402293 + 0: The maximum resident set size (KB) = 1536136 Test 075 control_p8_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control_faster -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/regional_control_faster +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control_faster +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/regional_control_faster Checking test 076 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3089,56 +3090,56 @@ Checking test 076 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 598.489567 - 0: The maximum resident set size (KB) = 785680 + 0: The total amount of wall time = 414.633350 + 0: The maximum resident set size (KB) = 787792 Test 076 regional_control_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 077 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 1143.155037 - 0: The maximum resident set size (KB) = 930116 + 0: The total amount of wall time = 1135.059787 + 0: The maximum resident set size (KB) = 939036 Test 077 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 078 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 803.412340 - 0: The maximum resident set size (KB) = 892744 + 0: The total amount of wall time = 754.781561 + 0: The maximum resident set size (KB) = 893016 Test 078 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rrfs_conus13km_hrrr_warm_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/rrfs_conus13km_hrrr_warm_debug Checking test 079 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 1060.451829 - 0: The maximum resident set size (KB) = 894712 + 0: The total amount of wall time = 1009.835543 + 0: The maximum resident set size (KB) = 898168 Test 079 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_CubedSphereGrid_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_CubedSphereGrid_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_CubedSphereGrid_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_CubedSphereGrid_debug Checking test 080 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3165,334 +3166,334 @@ Checking test 080 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 237.701422 - 0: The maximum resident set size (KB) = 738928 + 0: The total amount of wall time = 192.357640 + 0: The maximum resident set size (KB) = 740052 Test 080 control_CubedSphereGrid_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_wrtGauss_netcdf_parallel_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_wrtGauss_netcdf_parallel_debug Checking test 081 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 313.371265 - 0: The maximum resident set size (KB) = 729144 + 0: The total amount of wall time = 194.334930 + 0: The maximum resident set size (KB) = 732860 Test 081 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_stochy_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_stochy_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_stochy_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_stochy_debug Checking test 082 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 303.045734 - 0: The maximum resident set size (KB) = 737108 + 0: The total amount of wall time = 224.752694 + 0: The maximum resident set size (KB) = 741260 Test 082 control_stochy_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_lndp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_lndp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_lndp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_lndp_debug Checking test 083 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 232.962728 - 0: The maximum resident set size (KB) = 742472 + 0: The total amount of wall time = 201.259174 + 0: The maximum resident set size (KB) = 739512 Test 083 control_lndp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmg_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_csawmg_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_csawmg_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_csawmg_debug Checking test 084 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 369.974480 - 0: The maximum resident set size (KB) = 782508 + 0: The total amount of wall time = 449.037101 + 0: The maximum resident set size (KB) = 785232 Test 084 control_csawmg_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmgt_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_csawmgt_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_csawmgt_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_csawmgt_debug Checking test 085 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 343.893095 - 0: The maximum resident set size (KB) = 784084 + 0: The total amount of wall time = 404.890884 + 0: The maximum resident set size (KB) = 784572 Test 085 control_csawmgt_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_ras_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_ras_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_ras_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_ras_debug Checking test 086 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 229.072039 - 0: The maximum resident set size (KB) = 742548 + 0: The total amount of wall time = 195.346858 + 0: The maximum resident set size (KB) = 744504 Test 086 control_ras_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_diag_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_diag_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_diag_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_diag_debug Checking test 087 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 269.487398 - 0: The maximum resident set size (KB) = 789412 + 0: The total amount of wall time = 203.484617 + 0: The maximum resident set size (KB) = 792740 Test 087 control_diag_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_debug_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_debug_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_debug_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_debug_p8 Checking test 088 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 253.522411 - 0: The maximum resident set size (KB) = 1552612 + 0: The total amount of wall time = 215.734622 + 0: The maximum resident set size (KB) = 1550208 Test 088 control_debug_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/regional_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/regional_debug Checking test 089 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1430.554848 - 0: The maximum resident set size (KB) = 803940 + 0: The total amount of wall time = 1388.906988 + 0: The maximum resident set size (KB) = 804676 Test 089 regional_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rap_control_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/rap_control_debug Checking test 090 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 415.780522 - 0: The maximum resident set size (KB) = 1115660 + 0: The total amount of wall time = 512.357094 + 0: The maximum resident set size (KB) = 1109428 Test 090 rap_control_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/hrrr_control_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/hrrr_control_debug Checking test 091 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 386.060131 - 0: The maximum resident set size (KB) = 1115060 + 0: The total amount of wall time = 476.847573 + 0: The maximum resident set size (KB) = 1110480 Test 091 hrrr_control_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rap_unified_drag_suite_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/rap_unified_drag_suite_debug Checking test 092 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 394.695177 - 0: The maximum resident set size (KB) = 1107468 + 0: The total amount of wall time = 482.040903 + 0: The maximum resident set size (KB) = 1115256 Test 092 rap_unified_drag_suite_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_diag_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rap_diag_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_diag_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/rap_diag_debug Checking test 093 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 457.183726 - 0: The maximum resident set size (KB) = 1193088 + 0: The total amount of wall time = 529.201046 + 0: The maximum resident set size (KB) = 1190756 Test 093 rap_diag_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rap_cires_ugwp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/rap_cires_ugwp_debug Checking test 094 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 403.980863 - 0: The maximum resident set size (KB) = 1104292 + 0: The total amount of wall time = 528.878634 + 0: The maximum resident set size (KB) = 1111608 Test 094 rap_cires_ugwp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rap_unified_ugwp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/rap_unified_ugwp_debug Checking test 095 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 418.300819 - 0: The maximum resident set size (KB) = 1112580 + 0: The total amount of wall time = 516.665676 + 0: The maximum resident set size (KB) = 1109104 Test 095 rap_unified_ugwp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_lndp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rap_lndp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_lndp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/rap_lndp_debug Checking test 096 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 401.876424 - 0: The maximum resident set size (KB) = 1114776 + 0: The total amount of wall time = 461.399643 + 0: The maximum resident set size (KB) = 1115772 Test 096 rap_lndp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_flake_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rap_flake_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_flake_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/rap_flake_debug Checking test 097 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 375.961353 - 0: The maximum resident set size (KB) = 1117368 + 0: The total amount of wall time = 481.565765 + 0: The maximum resident set size (KB) = 1116552 Test 097 rap_flake_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_progcld_thompson_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rap_progcld_thompson_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_progcld_thompson_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/rap_progcld_thompson_debug Checking test 098 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 387.842804 - 0: The maximum resident set size (KB) = 1109116 + 0: The total amount of wall time = 479.136472 + 0: The maximum resident set size (KB) = 1104792 Test 098 rap_progcld_thompson_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_noah_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rap_noah_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_noah_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/rap_noah_debug Checking test 099 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 398.863813 - 0: The maximum resident set size (KB) = 1104020 + 0: The total amount of wall time = 486.417247 + 0: The maximum resident set size (KB) = 1111856 Test 099 rap_noah_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rap_sfcdiff_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_sfcdiff_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/rap_sfcdiff_debug Checking test 100 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 384.883839 - 0: The maximum resident set size (KB) = 1115532 + 0: The total amount of wall time = 452.445228 + 0: The maximum resident set size (KB) = 1110672 Test 100 rap_sfcdiff_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/rap_noah_sfcdiff_cires_ugwp_debug Checking test 101 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 620.164758 - 0: The maximum resident set size (KB) = 1116280 + 0: The total amount of wall time = 666.746256 + 0: The maximum resident set size (KB) = 1110720 Test 101 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1beta_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rrfs_v1beta_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_v1beta_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/rrfs_v1beta_debug Checking test 102 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 387.691423 - 0: The maximum resident set size (KB) = 1102412 + 0: The total amount of wall time = 364.470479 + 0: The maximum resident set size (KB) = 1108196 Test 102 rrfs_v1beta_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wam_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_wam_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_wam_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_wam_debug Checking test 103 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 385.181673 - 0: The maximum resident set size (KB) = 436792 + 0: The total amount of wall time = 421.627522 + 0: The maximum resident set size (KB) = 433284 Test 103 control_wam_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3503,14 +3504,14 @@ Checking test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 453.451328 - 0: The maximum resident set size (KB) = 979500 + 0: The total amount of wall time = 398.514575 + 0: The maximum resident set size (KB) = 984996 Test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rap_control_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/rap_control_dyn32_phy32 Checking test 105 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3557,14 +3558,14 @@ Checking test 105 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 712.883352 - 0: The maximum resident set size (KB) = 855448 + 0: The total amount of wall time = 581.484383 + 0: The maximum resident set size (KB) = 857080 Test 105 rap_control_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/hrrr_control_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/hrrr_control_dyn32_phy32 Checking test 106 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3611,14 +3612,14 @@ Checking test 106 hrrr_control_dyn32_phy32 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 = 399.735608 - 0: The maximum resident set size (KB) = 831340 + 0: The total amount of wall time = 345.319671 + 0: The maximum resident set size (KB) = 839560 Test 106 hrrr_control_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rap_2threads_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/rap_2threads_dyn32_phy32 Checking test 107 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3665,14 +3666,14 @@ Checking test 107 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 781.135121 - 0: The maximum resident set size (KB) = 893356 + 0: The total amount of wall time = 586.379031 + 0: The maximum resident set size (KB) = 896944 Test 107 rap_2threads_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/hrrr_control_2threads_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/hrrr_control_2threads_dyn32_phy32 Checking test 108 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3719,14 +3720,14 @@ Checking test 108 hrrr_control_2threads_dyn32_phy32 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 = 380.902882 - 0: The maximum resident set size (KB) = 893684 + 0: The total amount of wall time = 340.334682 + 0: The maximum resident set size (KB) = 884684 Test 108 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/hrrr_control_decomp_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/hrrr_control_decomp_dyn32_phy32 Checking test 109 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3773,14 +3774,14 @@ Checking test 109 hrrr_control_decomp_dyn32_phy32 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 = 420.407008 - 0: The maximum resident set size (KB) = 827260 + 0: The total amount of wall time = 356.230985 + 0: The maximum resident set size (KB) = 817860 Test 109 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rap_restart_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/rap_restart_dyn32_phy32 Checking test 110 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3819,14 +3820,14 @@ Checking test 110 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 608.405289 - 0: The maximum resident set size (KB) = 813888 + 0: The total amount of wall time = 402.382970 + 0: The maximum resident set size (KB) = 806868 Test 110 rap_restart_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/hrrr_control_restart_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/hrrr_control_restart_dyn32_phy32 Checking test 111 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3865,14 +3866,14 @@ Checking test 111 hrrr_control_restart_dyn32_phy32 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 = 174.718282 - 0: The maximum resident set size (KB) = 761040 + 0: The total amount of wall time = 153.093869 + 0: The maximum resident set size (KB) = 761576 Test 111 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn64_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rap_control_dyn64_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_dyn64_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/rap_control_dyn64_phy32 Checking test 112 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3919,81 +3920,81 @@ Checking test 112 rap_control_dyn64_phy32 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 = 430.815357 - 0: The maximum resident set size (KB) = 875564 + 0: The total amount of wall time = 360.054120 + 0: The maximum resident set size (KB) = 877436 Test 112 rap_control_dyn64_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rap_control_debug_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/rap_control_debug_dyn32_phy32 Checking test 113 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 375.839906 - 0: The maximum resident set size (KB) = 992364 + 0: The total amount of wall time = 354.783441 + 0: The maximum resident set size (KB) = 995348 Test 113 rap_control_debug_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/hrrr_control_debug_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/hrrr_control_debug_dyn32_phy32 Checking test 114 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 376.573436 - 0: The maximum resident set size (KB) = 997272 + 0: The total amount of wall time = 382.681727 + 0: The maximum resident set size (KB) = 994236 Test 114 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/rap_control_dyn64_phy32_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/rap_control_dyn64_phy32_debug Checking test 115 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 404.404448 - 0: The maximum resident set size (KB) = 1027412 + 0: The total amount of wall time = 365.007316 + 0: The maximum resident set size (KB) = 1031036 Test 115 rap_control_dyn64_phy32_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/hafs_regional_atm +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/hafs_regional_atm Checking test 116 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 596.730523 - 0: The maximum resident set size (KB) = 1169512 + 0: The total amount of wall time = 360.841581 + 0: The maximum resident set size (KB) = 1223492 Test 116 hafs_regional_atm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/hafs_regional_atm_thompson_gfdlsf +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/hafs_regional_atm_thompson_gfdlsf Checking test 117 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 1215.199131 - 0: The maximum resident set size (KB) = 1588456 + 0: The total amount of wall time = 471.020594 + 0: The maximum resident set size (KB) = 1530628 Test 117 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_ocn -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/hafs_regional_atm_ocn +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_ocn +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/hafs_regional_atm_ocn Checking test 118 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4002,48 +4003,48 @@ Checking test 118 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 798.795474 - 0: The maximum resident set size (KB) = 1296260 + 0: The total amount of wall time = 545.062571 + 0: The maximum resident set size (KB) = 1297912 Test 118 hafs_regional_atm_ocn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_wav -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/hafs_regional_atm_wav +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_wav +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/hafs_regional_atm_wav Checking test 119 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - Comparing out_grd.ww3 .........OK - Comparing out_pnt.ww3 .........OK + Comparing 20190829.060000.out_grd.ww3 .........OK + Comparing 20190829.060000.out_pnt.ww3 .........OK Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 1526.554174 - 0: The maximum resident set size (KB) = 1319452 + 0: The total amount of wall time = 955.609656 + 0: The maximum resident set size (KB) = 1287376 Test 119 hafs_regional_atm_wav PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/hafs_regional_atm_ocn_wav +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_ocn_wav +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/hafs_regional_atm_ocn_wav Checking test 120 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK Comparing archs.2019_241_06.a .........OK - Comparing out_grd.ww3 .........OK - Comparing out_pnt.ww3 .........OK + Comparing 20190829.060000.out_grd.ww3 .........OK + Comparing 20190829.060000.out_pnt.ww3 .........OK Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 1641.320617 - 0: The maximum resident set size (KB) = 1326680 + 0: The total amount of wall time = 1073.314614 + 0: The maximum resident set size (KB) = 1297132 Test 120 hafs_regional_atm_ocn_wav PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_docn -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/hafs_regional_docn +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_docn +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/hafs_regional_docn Checking test 121 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4051,14 +4052,14 @@ Checking test 121 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 1009.633025 - 0: The maximum resident set size (KB) = 1238068 + 0: The total amount of wall time = 523.415776 + 0: The maximum resident set size (KB) = 1296148 Test 121 hafs_regional_docn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_docn_oisst -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/hafs_regional_docn_oisst +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_docn_oisst +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/hafs_regional_docn_oisst Checking test 122 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4066,118 +4067,118 @@ Checking test 122 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 931.961674 - 0: The maximum resident set size (KB) = 1287728 + 0: The total amount of wall time = 519.253706 + 0: The maximum resident set size (KB) = 1287464 Test 122 hafs_regional_docn_oisst PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/datm_cdeps_control_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/datm_cdeps_control_cfsr Checking test 123 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 348.792398 - 0: The maximum resident set size (KB) = 966848 + 0: The total amount of wall time = 242.153484 + 0: The maximum resident set size (KB) = 971416 Test 123 datm_cdeps_control_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/datm_cdeps_restart_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/datm_cdeps_restart_cfsr Checking test 124 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 224.479768 - 0: The maximum resident set size (KB) = 937020 + 0: The total amount of wall time = 137.252365 + 0: The maximum resident set size (KB) = 927160 Test 124 datm_cdeps_restart_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/datm_cdeps_control_gefs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_control_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/datm_cdeps_control_gefs Checking test 125 datm_cdeps_control_gefs 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 = 360.416404 - 0: The maximum resident set size (KB) = 870636 + 0: The total amount of wall time = 263.553120 + 0: The maximum resident set size (KB) = 861448 Test 125 datm_cdeps_control_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_iau_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/datm_cdeps_iau_gefs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_iau_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/datm_cdeps_iau_gefs Checking test 126 datm_cdeps_iau_gefs 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 = 385.531228 - 0: The maximum resident set size (KB) = 866788 + 0: The total amount of wall time = 249.850664 + 0: The maximum resident set size (KB) = 868288 Test 126 datm_cdeps_iau_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_stochy_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/datm_cdeps_stochy_gefs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_stochy_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/datm_cdeps_stochy_gefs Checking test 127 datm_cdeps_stochy_gefs 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 = 288.063917 - 0: The maximum resident set size (KB) = 870660 + 0: The total amount of wall time = 257.772813 + 0: The maximum resident set size (KB) = 865460 Test 127 datm_cdeps_stochy_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/datm_cdeps_ciceC_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_ciceC_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/datm_cdeps_ciceC_cfsr Checking test 128 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 308.527994 - 0: The maximum resident set size (KB) = 978532 + 0: The total amount of wall time = 245.102677 + 0: The maximum resident set size (KB) = 962188 Test 128 datm_cdeps_ciceC_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/datm_cdeps_bulk_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_bulk_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/datm_cdeps_bulk_cfsr Checking test 129 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 307.963749 - 0: The maximum resident set size (KB) = 971908 + 0: The total amount of wall time = 251.354728 + 0: The maximum resident set size (KB) = 958652 Test 129 datm_cdeps_bulk_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/datm_cdeps_bulk_gefs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_bulk_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/datm_cdeps_bulk_gefs Checking test 130 datm_cdeps_bulk_gefs 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 = 378.423054 - 0: The maximum resident set size (KB) = 870116 + 0: The total amount of wall time = 249.505576 + 0: The maximum resident set size (KB) = 864244 Test 130 datm_cdeps_bulk_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/datm_cdeps_mx025_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_mx025_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/datm_cdeps_mx025_cfsr Checking test 131 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4186,14 +4187,14 @@ Checking test 131 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 968.308398 - 0: The maximum resident set size (KB) = 769560 + 0: The total amount of wall time = 608.838820 + 0: The maximum resident set size (KB) = 760800 Test 131 datm_cdeps_mx025_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/datm_cdeps_mx025_gefs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_mx025_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/datm_cdeps_mx025_gefs Checking test 132 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4202,77 +4203,77 @@ Checking test 132 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 1013.160470 - 0: The maximum resident set size (KB) = 732576 + 0: The total amount of wall time = 629.548504 + 0: The maximum resident set size (KB) = 739108 Test 132 datm_cdeps_mx025_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/datm_cdeps_multiple_files_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/datm_cdeps_multiple_files_cfsr Checking test 133 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 381.502236 - 0: The maximum resident set size (KB) = 964620 + 0: The total amount of wall time = 246.887116 + 0: The maximum resident set size (KB) = 967580 Test 133 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/datm_cdeps_3072x1536_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/datm_cdeps_3072x1536_cfsr Checking test 134 datm_cdeps_3072x1536_cfsr 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 = 489.570613 - 0: The maximum resident set size (KB) = 2244428 + 0: The total amount of wall time = 388.003733 + 0: The maximum resident set size (KB) = 2255012 Test 134 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_gfs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/datm_cdeps_gfs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_gfs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/datm_cdeps_gfs Checking test 135 datm_cdeps_gfs 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 = 498.191026 - 0: The maximum resident set size (KB) = 2262352 + 0: The total amount of wall time = 326.714594 + 0: The maximum resident set size (KB) = 2200440 Test 135 datm_cdeps_gfs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_debug_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/datm_cdeps_debug_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_debug_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/datm_cdeps_debug_cfsr Checking test 136 datm_cdeps_debug_cfsr 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 = 513.909263 - 0: The maximum resident set size (KB) = 911016 + 0: The total amount of wall time = 484.718719 + 0: The maximum resident set size (KB) = 910328 Test 136 datm_cdeps_debug_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_cfsr_faster -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/datm_cdeps_control_cfsr_faster +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_control_cfsr_faster +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/datm_cdeps_control_cfsr_faster Checking test 137 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.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 = 337.544809 - 0: The maximum resident set size (KB) = 975132 + 0: The total amount of wall time = 261.456160 + 0: The maximum resident set size (KB) = 975652 Test 137 datm_cdeps_control_cfsr_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/datm_cdeps_lnd_gswp3 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/datm_cdeps_lnd_gswp3 Checking test 138 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4281,14 +4282,14 @@ Checking test 138 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 62.901857 - 0: The maximum resident set size (KB) = 246896 + 0: The total amount of wall time = 15.728100 + 0: The maximum resident set size (KB) = 246212 Test 138 datm_cdeps_lnd_gswp3 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/datm_cdeps_lnd_gswp3_rst +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/datm_cdeps_lnd_gswp3_rst Checking test 139 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4297,14 +4298,14 @@ Checking test 139 datm_cdeps_lnd_gswp3_rst 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 = 51.276584 - 0: The maximum resident set size (KB) = 256968 + 0: The total amount of wall time = 27.967769 + 0: The maximum resident set size (KB) = 257276 Test 139 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_atmlnd_sbs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_p8_atmlnd_sbs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_atmlnd_sbs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_p8_atmlnd_sbs Checking test 140 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4389,15 +4390,65 @@ Checking test 140 control_p8_atmlnd_sbs results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 545.258546 - 0: The maximum resident set size (KB) = 1585776 + 0: The total amount of wall time = 297.466667 + 0: The maximum resident set size (KB) = 1603416 Test 140 control_p8_atmlnd_sbs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/control_atmwav -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/control_atmwav -Checking test 141 control_atmwav results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/atmwav_control_noaero_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/atmwav_control_noaero_p8 +Checking test 141 atmwav_control_noaero_p8 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + Comparing RESTART/ufs.atmw.cpl.r.2021-03-22-64800.nc .........OK + Comparing 20210322.180000.out_pnt.ww3 .........OK + Comparing 20210322.180000.out_grd.ww3 .........OK + Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK + + 0: The total amount of wall time = 133.182068 + 0: The maximum resident set size (KB) = 1555520 + +Test 141 atmwav_control_noaero_p8 PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_atmwav +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_atmwav +Checking test 142 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -4440,15 +4491,15 @@ Checking test 141 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 281.976030 - 0: The maximum resident set size (KB) = 596936 + 0: The total amount of wall time = 124.452389 + 0: The maximum resident set size (KB) = 598972 -Test 141 control_atmwav PASS +Test 142 control_atmwav PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/atmaero_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/atmaero_control_p8 -Checking test 142 atmaero_control_p8 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/atmaero_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/atmaero_control_p8 +Checking test 143 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4491,15 +4542,15 @@ Checking test 142 atmaero_control_p8 results .... Comparing 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.412640 - 0: The maximum resident set size (KB) = 1646116 + 0: The total amount of wall time = 387.591585 + 0: The maximum resident set size (KB) = 1659640 -Test 142 atmaero_control_p8 PASS +Test 143 atmaero_control_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/atmaero_control_p8_rad -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/atmaero_control_p8_rad -Checking test 143 atmaero_control_p8_rad results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/atmaero_control_p8_rad +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/atmaero_control_p8_rad +Checking test 144 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4542,15 +4593,15 @@ Checking test 143 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 583.810329 - 0: The maximum resident set size (KB) = 1654536 + 0: The total amount of wall time = 385.803568 + 0: The maximum resident set size (KB) = 1680800 -Test 143 atmaero_control_p8_rad PASS +Test 144 atmaero_control_p8_rad PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230405/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_77717/atmaero_control_p8_rad_micro -Checking test 144 atmaero_control_p8_rad_micro results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/atmaero_control_p8_rad_micro +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/atmaero_control_p8_rad_micro +Checking test 145 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4593,12 +4644,12 @@ Checking test 144 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 545.817603 - 0: The maximum resident set size (KB) = 1687232 + 0: The total amount of wall time = 461.766680 + 0: The maximum resident set size (KB) = 1669296 -Test 144 atmaero_control_p8_rad_micro PASS +Test 145 atmaero_control_p8_rad_micro PASS REGRESSION TEST WAS SUCCESSFUL -Thu Apr 6 04:48:43 UTC 2023 -Elapsed time: 02h:56m:29s. Have a nice day! +Mon Apr 10 04:40:08 UTC 2023 +Elapsed time: 02h:50m:29s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index aa7cd500fc0..7490319d0b6 100755 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,42 +1,43 @@ -Wed Apr 5 20:54:13 CDT 2023 +Sun Apr 9 20:04:56 CDT 2023 Start Regression test -Compile 001 elapsed time 761 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 750 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 679 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 283 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 258 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 639 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 650 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 832 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 667 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 615 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 011 elapsed time 551 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 519 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 683 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 213 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 159 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 508 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 548 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 165 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 178 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 599 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 021 elapsed time 202 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 720 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 618 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 024 elapsed time 219 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 148 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 210 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 55 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 654 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 712 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 567 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 553 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 235 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 653 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8_mixedmode -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/cpld_control_p8_mixedmode +Compile 001 elapsed time 703 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 807 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 695 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 247 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 231 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 594 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 638 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 837 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 654 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 567 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 011 elapsed time 558 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 514 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 656 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 233 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 154 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 514 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 557 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 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 019 elapsed time 175 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 608 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 231 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 785 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 634 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 024 elapsed time 208 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 120 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 202 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 57 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 627 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 645 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 644 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 556 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 502 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 033 elapsed time 166 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 034 elapsed time 636 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8_mixedmode +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -101,14 +102,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 309.967464 - 0: The maximum resident set size (KB) = 3146548 + 0: The total amount of wall time = 307.867135 + 0: The maximum resident set size (KB) = 3145196 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_gfsv17 -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/cpld_control_gfsv17 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_gfsv17 +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -172,14 +173,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 225.096862 - 0: The maximum resident set size (KB) = 1736500 + 0: The total amount of wall time = 229.234899 + 0: The maximum resident set size (KB) = 1727536 Test 002 cpld_control_gfsv17 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/cpld_control_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -244,14 +245,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 351.311222 - 0: The maximum resident set size (KB) = 3188716 + 0: The total amount of wall time = 346.104322 + 0: The maximum resident set size (KB) = 3177584 Test 003 cpld_control_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/cpld_restart_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -304,14 +305,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 206.963605 - 0: The maximum resident set size (KB) = 3046936 + 0: The total amount of wall time = 203.429685 + 0: The maximum resident set size (KB) = 3049676 Test 004 cpld_restart_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/cpld_control_qr_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -376,14 +377,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 355.689583 - 0: The maximum resident set size (KB) = 3191616 + 0: The total amount of wall time = 361.340950 + 0: The maximum resident set size (KB) = 3196356 Test 005 cpld_control_qr_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/cpld_restart_qr_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -436,14 +437,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 222.425450 - 0: The maximum resident set size (KB) = 3068128 + 0: The total amount of wall time = 207.002134 + 0: The maximum resident set size (KB) = 3066612 Test 006 cpld_restart_qr_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/cpld_2threads_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -496,14 +497,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 412.531868 - 0: The maximum resident set size (KB) = 3522008 + 0: The total amount of wall time = 407.875795 + 0: The maximum resident set size (KB) = 3523800 Test 007 cpld_2threads_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/cpld_decomp_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -556,14 +557,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 360.149223 - 0: The maximum resident set size (KB) = 3095412 + 0: The total amount of wall time = 355.681839 + 0: The maximum resident set size (KB) = 3179616 Test 008 cpld_decomp_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/cpld_mpi_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -616,14 +617,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 291.782701 - 0: The maximum resident set size (KB) = 3031012 + 0: The total amount of wall time = 289.729867 + 0: The maximum resident set size (KB) = 3027920 Test 009 cpld_mpi_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_ciceC_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/cpld_control_ciceC_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_ciceC_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -688,14 +689,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 347.899544 - 0: The maximum resident set size (KB) = 3190308 + 0: The total amount of wall time = 348.548258 + 0: The maximum resident set size (KB) = 3183520 Test 010 cpld_control_ciceC_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/cpld_control_c192_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_c192_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/cpld_control_c192_p8 Checking test 011 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -748,14 +749,14 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 639.128478 - 0: The maximum resident set size (KB) = 3262764 + 0: The total amount of wall time = 633.655803 + 0: The maximum resident set size (KB) = 3261868 Test 011 cpld_control_c192_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/cpld_restart_c192_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_c192_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/cpld_restart_c192_p8 Checking test 012 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -808,14 +809,14 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 451.572128 - 0: The maximum resident set size (KB) = 3094672 + 0: The total amount of wall time = 439.208937 + 0: The maximum resident set size (KB) = 3166364 Test 012 cpld_restart_c192_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_bmark_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/cpld_bmark_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_bmark_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/cpld_bmark_p8 Checking test 013 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -863,14 +864,14 @@ Checking test 013 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 866.768674 - 0: The maximum resident set size (KB) = 4041720 + 0: The total amount of wall time = 899.367019 + 0: The maximum resident set size (KB) = 4039044 Test 013 cpld_bmark_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_bmark_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/cpld_restart_bmark_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_bmark_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/cpld_restart_bmark_p8 Checking test 014 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -918,14 +919,14 @@ Checking test 014 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 537.483768 - 0: The maximum resident set size (KB) = 4018760 + 0: The total amount of wall time = 547.023558 + 0: The maximum resident set size (KB) = 4016204 Test 014 cpld_restart_bmark_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_noaero_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/cpld_control_noaero_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_noaero_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/cpld_control_noaero_p8 Checking test 015 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -989,14 +990,14 @@ Checking test 015 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 259.526227 - 0: The maximum resident set size (KB) = 1719032 + 0: The total amount of wall time = 256.770088 + 0: The maximum resident set size (KB) = 1719100 Test 015 cpld_control_noaero_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_c96_noaero_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/cpld_control_nowave_noaero_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_c96_noaero_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/cpld_control_nowave_noaero_p8 Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1058,14 +1059,14 @@ Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 262.667181 - 0: The maximum resident set size (KB) = 1769148 + 0: The total amount of wall time = 261.127974 + 0: The maximum resident set size (KB) = 1774784 Test 016 cpld_control_nowave_noaero_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_debug_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/cpld_debug_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_debug_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/cpld_debug_p8 Checking test 017 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1118,14 +1119,14 @@ Checking test 017 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 540.472914 - 0: The maximum resident set size (KB) = 3249128 + 0: The total amount of wall time = 550.343339 + 0: The maximum resident set size (KB) = 3240352 Test 017 cpld_debug_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_debug_noaero_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/cpld_debug_noaero_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_debug_noaero_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/cpld_debug_noaero_p8 Checking test 018 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1177,14 +1178,14 @@ Checking test 018 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 395.156172 - 0: The maximum resident set size (KB) = 1753340 + 0: The total amount of wall time = 377.397051 + 0: The maximum resident set size (KB) = 1748756 Test 018 cpld_debug_noaero_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_noaero_p8_agrid -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/cpld_control_noaero_p8_agrid +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_noaero_p8_agrid +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/cpld_control_noaero_p8_agrid Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1246,14 +1247,14 @@ Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 269.437113 - 0: The maximum resident set size (KB) = 1767364 + 0: The total amount of wall time = 264.405262 + 0: The maximum resident set size (KB) = 1769304 Test 019 cpld_control_noaero_p8_agrid PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_c48 -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/cpld_control_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/cpld_control_c48 Checking test 020 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1303,14 +1304,14 @@ Checking test 020 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 497.389256 - 0: The maximum resident set size (KB) = 2804740 + 0: The total amount of wall time = 495.746606 + 0: The maximum resident set size (KB) = 2807824 Test 020 cpld_control_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_warmstart_c48 -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/cpld_warmstart_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_warmstart_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/cpld_warmstart_c48 Checking test 021 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1360,14 +1361,14 @@ Checking test 021 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 137.807877 - 0: The maximum resident set size (KB) = 2805540 + 0: The total amount of wall time = 136.250044 + 0: The maximum resident set size (KB) = 2811716 Test 021 cpld_warmstart_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_warmstart_c48 -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/cpld_restart_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_warmstart_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/cpld_restart_c48 Checking test 022 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1417,14 +1418,14 @@ Checking test 022 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 72.442529 - 0: The maximum resident set size (KB) = 2237872 + 0: The total amount of wall time = 76.723178 + 0: The maximum resident set size (KB) = 2237920 Test 022 cpld_restart_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/cpld_control_p8_faster +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/cpld_control_p8_faster Checking test 023 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1489,14 +1490,14 @@ Checking test 023 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 330.338617 - 0: The maximum resident set size (KB) = 3178692 + 0: The total amount of wall time = 325.334155 + 0: The maximum resident set size (KB) = 3185408 Test 023 cpld_control_p8_faster PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_CubedSphereGrid -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_CubedSphereGrid +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_CubedSphereGrid +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_CubedSphereGrid Checking test 024 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1523,28 +1524,28 @@ Checking test 024 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 131.606289 - 0: The maximum resident set size (KB) = 632008 + 0: The total amount of wall time = 131.143335 + 0: The maximum resident set size (KB) = 639564 Test 024 control_CubedSphereGrid PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_CubedSphereGrid_parallel -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_CubedSphereGrid_parallel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_CubedSphereGrid_parallel +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_CubedSphereGrid_parallel Checking test 025 control_CubedSphereGrid_parallel results .... 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 = 127.382142 - 0: The maximum resident set size (KB) = 631412 + 0: The total amount of wall time = 128.474787 + 0: The maximum resident set size (KB) = 636292 Test 025 control_CubedSphereGrid_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_latlon -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_latlon +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_latlon +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_latlon Checking test 026 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1555,32 +1556,32 @@ Checking test 026 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 132.797336 - 0: The maximum resident set size (KB) = 632872 + 0: The total amount of wall time = 134.610005 + 0: The maximum resident set size (KB) = 633956 Test 026 control_latlon PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wrtGauss_netcdf_parallel -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_wrtGauss_netcdf_parallel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_wrtGauss_netcdf_parallel +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_wrtGauss_netcdf_parallel Checking test 027 control_wrtGauss_netcdf_parallel results .... - Comparing sfcf000.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf000.nc .........OK Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 137.256951 - 0: The maximum resident set size (KB) = 633140 + 0: The total amount of wall time = 137.182553 + 0: The maximum resident set size (KB) = 632036 Test 027 control_wrtGauss_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c48 -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_c48 Checking test 028 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1619,14 +1620,14 @@ Checking test 028 control_c48 results .... Comparing 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.387601 -0: The maximum resident set size (KB) = 823060 +0: The total amount of wall time = 345.374964 +0: The maximum resident set size (KB) = 827952 Test 028 control_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c192 -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_c192 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_c192 +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_c192 Checking test 029 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1637,14 +1638,14 @@ Checking test 029 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 524.613511 - 0: The maximum resident set size (KB) = 768028 + 0: The total amount of wall time = 527.041376 + 0: The maximum resident set size (KB) = 772028 Test 029 control_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c384 -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_c384 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_c384 +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_c384 Checking test 030 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1655,14 +1656,14 @@ Checking test 030 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 581.468191 - 0: The maximum resident set size (KB) = 1239352 + 0: The total amount of wall time = 594.258496 + 0: The maximum resident set size (KB) = 1238860 Test 030 control_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c384gdas -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_c384gdas +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_c384gdas +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_c384gdas Checking test 031 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1705,14 +1706,14 @@ Checking test 031 control_c384gdas 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 = 507.088503 - 0: The maximum resident set size (KB) = 1343156 + 0: The total amount of wall time = 508.701686 + 0: The maximum resident set size (KB) = 1342876 Test 031 control_c384gdas PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_stochy -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_stochy +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_stochy +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_stochy Checking test 032 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1723,28 +1724,28 @@ Checking test 032 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 88.033919 - 0: The maximum resident set size (KB) = 644752 + 0: The total amount of wall time = 88.472905 + 0: The maximum resident set size (KB) = 638004 Test 032 control_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_stochy -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_stochy_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_stochy +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_stochy_restart Checking test 033 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 47.042062 - 0: The maximum resident set size (KB) = 491776 + 0: The total amount of wall time = 48.093898 + 0: The maximum resident set size (KB) = 491412 Test 033 control_stochy_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_lndp -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_lndp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_lndp +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_lndp Checking test 034 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1755,14 +1756,14 @@ Checking test 034 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 81.659748 - 0: The maximum resident set size (KB) = 599152 + 0: The total amount of wall time = 83.364895 + 0: The maximum resident set size (KB) = 637584 Test 034 control_lndp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_iovr4 -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_iovr4 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_iovr4 +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_iovr4 Checking test 035 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1777,14 +1778,14 @@ Checking test 035 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.322896 - 0: The maximum resident set size (KB) = 635052 + 0: The total amount of wall time = 135.956585 + 0: The maximum resident set size (KB) = 632760 Test 035 control_iovr4 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_iovr5 -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_iovr5 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_iovr5 +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_iovr5 Checking test 036 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1799,14 +1800,14 @@ Checking test 036 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.971037 - 0: The maximum resident set size (KB) = 631948 + 0: The total amount of wall time = 136.350216 + 0: The maximum resident set size (KB) = 632032 Test 036 control_iovr5 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_p8 Checking test 037 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1853,14 +1854,14 @@ Checking test 037 control_p8 results .... Comparing 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.045417 - 0: The maximum resident set size (KB) = 1610228 + 0: The total amount of wall time = 169.756081 + 0: The maximum resident set size (KB) = 1606196 Test 037 control_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_restart_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_restart_p8 Checking test 038 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1899,14 +1900,14 @@ Checking test 038 control_restart_p8 results .... Comparing 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.546625 - 0: The maximum resident set size (KB) = 879468 + 0: The total amount of wall time = 88.840558 + 0: The maximum resident set size (KB) = 877492 Test 038 control_restart_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_qr_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_qr_p8 Checking test 039 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1953,14 +1954,14 @@ Checking test 039 control_qr_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 168.435961 - 0: The maximum resident set size (KB) = 1614996 + 0: The total amount of wall time = 171.237086 + 0: The maximum resident set size (KB) = 1607204 Test 039 control_qr_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_restart_qr_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_restart_qr_p8 Checking test 040 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1999,14 +2000,14 @@ Checking test 040 control_restart_qr_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 89.726789 - 0: The maximum resident set size (KB) = 870152 + 0: The total amount of wall time = 91.558168 + 0: The maximum resident set size (KB) = 877048 Test 040 control_restart_qr_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_decomp_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_decomp_p8 Checking test 041 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2049,14 +2050,14 @@ Checking test 041 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 175.476327 - 0: The maximum resident set size (KB) = 1590300 + 0: The total amount of wall time = 179.125641 + 0: The maximum resident set size (KB) = 1584488 Test 041 control_decomp_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_2threads_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_2threads_p8 Checking test 042 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2099,14 +2100,14 @@ Checking test 042 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 177.010913 - 0: The maximum resident set size (KB) = 1694356 + 0: The total amount of wall time = 178.910326 + 0: The maximum resident set size (KB) = 1684904 Test 042 control_2threads_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_lndp -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_p8_lndp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_lndp +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_p8_lndp Checking test 043 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2125,14 +2126,14 @@ Checking test 043 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 310.714559 - 0: The maximum resident set size (KB) = 1611796 + 0: The total amount of wall time = 311.902384 + 0: The maximum resident set size (KB) = 1613052 Test 043 control_p8_lndp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_rrtmgp -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_p8_rrtmgp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_rrtmgp +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_p8_rrtmgp Checking test 044 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2179,14 +2180,14 @@ Checking test 044 control_p8_rrtmgp results .... Comparing 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.445431 - 0: The maximum resident set size (KB) = 1670312 + 0: The total amount of wall time = 228.143010 + 0: The maximum resident set size (KB) = 1681120 Test 044 control_p8_rrtmgp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_mynn -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_p8_mynn +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_mynn +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_p8_mynn Checking test 045 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2233,14 +2234,14 @@ Checking test 045 control_p8_mynn results .... Comparing 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.893980 - 0: The maximum resident set size (KB) = 1605564 + 0: The total amount of wall time = 173.540123 + 0: The maximum resident set size (KB) = 1606296 Test 045 control_p8_mynn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/merra2_thompson -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/merra2_thompson +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/merra2_thompson +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/merra2_thompson Checking test 046 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2287,14 +2288,14 @@ Checking test 046 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 191.311862 - 0: The maximum resident set size (KB) = 1619364 + 0: The total amount of wall time = 193.397538 + 0: The maximum resident set size (KB) = 1612212 Test 046 merra2_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/regional_control +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/regional_control Checking test 047 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2305,28 +2306,28 @@ Checking test 047 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 294.471297 - 0: The maximum resident set size (KB) = 872732 + 0: The total amount of wall time = 297.589941 + 0: The maximum resident set size (KB) = 871232 Test 047 regional_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/regional_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/regional_restart Checking test 048 regional_restart 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.350015 - 0: The maximum resident set size (KB) = 814876 + 0: The total amount of wall time = 152.500311 + 0: The maximum resident set size (KB) = 863848 Test 048 regional_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/regional_control_qr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/regional_control_qr Checking test 049 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2337,28 +2338,28 @@ Checking test 049 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 295.130900 - 0: The maximum resident set size (KB) = 874080 + 0: The total amount of wall time = 298.422864 + 0: The maximum resident set size (KB) = 872524 Test 049 regional_control_qr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/regional_restart_qr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/regional_restart_qr Checking test 050 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 154.483656 - 0: The maximum resident set size (KB) = 865264 + 0: The total amount of wall time = 151.679130 + 0: The maximum resident set size (KB) = 865612 Test 050 regional_restart_qr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/regional_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/regional_decomp Checking test 051 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2369,14 +2370,14 @@ Checking test 051 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 312.758266 - 0: The maximum resident set size (KB) = 865280 + 0: The total amount of wall time = 314.365562 + 0: The maximum resident set size (KB) = 861220 Test 051 regional_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/regional_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/regional_2threads Checking test 052 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2387,14 +2388,14 @@ Checking test 052 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 206.786595 - 0: The maximum resident set size (KB) = 854196 + 0: The total amount of wall time = 206.203914 + 0: The maximum resident set size (KB) = 851008 Test 052 regional_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_noquilt -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/regional_noquilt +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_noquilt +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/regional_noquilt Checking test 053 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2402,28 +2403,28 @@ Checking test 053 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 316.399074 - 0: The maximum resident set size (KB) = 859160 + 0: The total amount of wall time = 318.682890 + 0: The maximum resident set size (KB) = 863656 Test 053 regional_noquilt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_netcdf_parallel -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/regional_netcdf_parallel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_netcdf_parallel +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/regional_netcdf_parallel Checking test 054 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 291.093483 - 0: The maximum resident set size (KB) = 864884 + 0: The total amount of wall time = 291.975083 + 0: The maximum resident set size (KB) = 865864 Test 054 regional_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/regional_2dwrtdecomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/regional_2dwrtdecomp Checking test 055 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2434,14 +2435,14 @@ Checking test 055 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 295.479847 - 0: The maximum resident set size (KB) = 874892 + 0: The total amount of wall time = 296.204814 + 0: The maximum resident set size (KB) = 878464 Test 055 regional_2dwrtdecomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/fv3_regional_wofs -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/regional_wofs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/fv3_regional_wofs +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/regional_wofs Checking test 056 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2452,14 +2453,14 @@ Checking test 056 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 372.599295 - 0: The maximum resident set size (KB) = 632172 + 0: The total amount of wall time = 373.770422 + 0: The maximum resident set size (KB) = 633700 Test 056 regional_wofs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rap_control +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/rap_control Checking test 057 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2506,14 +2507,14 @@ Checking test 057 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 456.240006 - 0: The maximum resident set size (KB) = 1067428 + 0: The total amount of wall time = 460.999630 + 0: The maximum resident set size (KB) = 1061020 Test 057 rap_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_spp_sppt_shum_skeb -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/regional_spp_sppt_shum_skeb +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_spp_sppt_shum_skeb +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/regional_spp_sppt_shum_skeb Checking test 058 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2524,14 +2525,14 @@ Checking test 058 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 265.626501 - 0: The maximum resident set size (KB) = 1183520 + 0: The total amount of wall time = 263.543481 + 0: The maximum resident set size (KB) = 1188812 Test 058 regional_spp_sppt_shum_skeb PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rap_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/rap_decomp Checking test 059 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2578,14 +2579,14 @@ Checking test 059 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 482.103449 - 0: The maximum resident set size (KB) = 1004808 + 0: The total amount of wall time = 477.020297 + 0: The maximum resident set size (KB) = 1012076 Test 059 rap_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rap_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/rap_2threads Checking test 060 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2632,14 +2633,14 @@ Checking test 060 rap_2threads results .... Comparing 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.520532 - 0: The maximum resident set size (KB) = 1142036 + 0: The total amount of wall time = 470.286813 + 0: The maximum resident set size (KB) = 1149024 Test 060 rap_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rap_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/rap_restart Checking test 061 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2678,14 +2679,14 @@ Checking test 061 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 231.781895 - 0: The maximum resident set size (KB) = 973600 + 0: The total amount of wall time = 231.336683 + 0: The maximum resident set size (KB) = 961056 Test 061 rap_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rap_sfcdiff +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_sfcdiff +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/rap_sfcdiff Checking test 062 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2732,14 +2733,14 @@ Checking test 062 rap_sfcdiff results .... Comparing 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.689191 - 0: The maximum resident set size (KB) = 1054912 + 0: The total amount of wall time = 455.595687 + 0: The maximum resident set size (KB) = 1055080 Test 062 rap_sfcdiff PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rap_sfcdiff_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_sfcdiff +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/rap_sfcdiff_decomp Checking test 063 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2786,14 +2787,14 @@ Checking test 063 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 481.172229 - 0: The maximum resident set size (KB) = 997312 + 0: The total amount of wall time = 479.270368 + 0: The maximum resident set size (KB) = 999896 Test 063 rap_sfcdiff_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rap_sfcdiff_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_sfcdiff +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/rap_sfcdiff_restart Checking test 064 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2832,14 +2833,14 @@ Checking test 064 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 343.100078 - 0: The maximum resident set size (KB) = 947380 + 0: The total amount of wall time = 340.651949 + 0: The maximum resident set size (KB) = 984896 Test 064 rap_sfcdiff_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hrrr_control +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/hrrr_control Checking test 065 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2886,14 +2887,14 @@ Checking test 065 hrrr_control results .... Comparing 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.990032 - 0: The maximum resident set size (KB) = 1051012 + 0: The total amount of wall time = 440.084074 + 0: The maximum resident set size (KB) = 1061176 Test 065 hrrr_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hrrr_control_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/hrrr_control_decomp Checking test 066 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2940,14 +2941,14 @@ Checking test 066 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 459.940979 - 0: The maximum resident set size (KB) = 1002716 + 0: The total amount of wall time = 463.077795 + 0: The maximum resident set size (KB) = 1004924 Test 066 hrrr_control_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hrrr_control_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/hrrr_control_2threads Checking test 067 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2994,14 +2995,14 @@ Checking test 067 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 453.626354 - 0: The maximum resident set size (KB) = 1137516 + 0: The total amount of wall time = 453.643960 + 0: The maximum resident set size (KB) = 1141828 Test 067 hrrr_control_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hrrr_control_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/hrrr_control_restart Checking test 068 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3040,14 +3041,14 @@ Checking test 068 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 327.721847 - 0: The maximum resident set size (KB) = 984116 + 0: The total amount of wall time = 328.897372 + 0: The maximum resident set size (KB) = 979280 Test 068 hrrr_control_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1beta -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rrfs_v1beta +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_v1beta +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/rrfs_v1beta Checking test 069 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3094,14 +3095,14 @@ Checking test 069 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 456.474547 - 0: The maximum resident set size (KB) = 1061512 + 0: The total amount of wall time = 452.945839 + 0: The maximum resident set size (KB) = 1063316 Test 069 rrfs_v1beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1nssl -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rrfs_v1nssl +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_v1nssl +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/rrfs_v1nssl Checking test 070 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3116,14 +3117,14 @@ Checking test 070 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 542.384782 - 0: The maximum resident set size (KB) = 695668 + 0: The total amount of wall time = 536.125506 + 0: The maximum resident set size (KB) = 697288 Test 070 rrfs_v1nssl PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rrfs_v1nssl_nohailnoccn +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/rrfs_v1nssl_nohailnoccn Checking test 071 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3138,14 +3139,14 @@ Checking test 071 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 524.969309 - 0: The maximum resident set size (KB) = 754432 + 0: The total amount of wall time = 524.167764 + 0: The maximum resident set size (KB) = 748536 Test 071 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/rrfs_smoke_conus13km_hrrr_warm Checking test 072 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3154,14 +3155,14 @@ Checking test 072 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 144.799041 - 0: The maximum resident set size (KB) = 997680 + 0: The total amount of wall time = 147.732442 + 0: The maximum resident set size (KB) = 1004032 Test 072 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 073 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3170,14 +3171,14 @@ Checking test 073 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 96.692169 - 0: The maximum resident set size (KB) = 949412 + 0: The total amount of wall time = 96.289782 + 0: The maximum resident set size (KB) = 948152 Test 073 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_conus13km_hrrr_warm -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rrfs_conus13km_hrrr_warm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_conus13km_hrrr_warm +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/rrfs_conus13km_hrrr_warm Checking test 074 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3186,14 +3187,14 @@ Checking test 074 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 129.555379 - 0: The maximum resident set size (KB) = 950332 + 0: The total amount of wall time = 130.252810 + 0: The maximum resident set size (KB) = 950792 Test 074 rrfs_conus13km_hrrr_warm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/rrfs_smoke_conus13km_radar_tten_warm Checking test 075 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3202,26 +3203,26 @@ Checking test 075 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 146.279835 - 0: The maximum resident set size (KB) = 1040280 + 0: The total amount of wall time = 148.316013 + 0: The maximum resident set size (KB) = 1043692 Test 075 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 076 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 69.840414 - 0: The maximum resident set size (KB) = 932500 + 0: The total amount of wall time = 68.716462 + 0: The maximum resident set size (KB) = 936392 Test 076 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmg -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_csawmg +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_csawmg +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_csawmg Checking test 077 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3232,14 +3233,14 @@ Checking test 077 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 344.244524 - 0: The maximum resident set size (KB) = 724876 + 0: The total amount of wall time = 344.482016 + 0: The maximum resident set size (KB) = 726468 Test 077 control_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmgt -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_csawmgt +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_csawmgt +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_csawmgt Checking test 078 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3250,14 +3251,14 @@ Checking test 078 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 342.261842 - 0: The maximum resident set size (KB) = 720116 + 0: The total amount of wall time = 338.522185 + 0: The maximum resident set size (KB) = 722964 Test 078 control_csawmgt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_ras -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_ras +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_ras +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_ras Checking test 079 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3268,26 +3269,26 @@ Checking test 079 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 185.080279 - 0: The maximum resident set size (KB) = 723812 + 0: The total amount of wall time = 180.875370 + 0: The maximum resident set size (KB) = 728156 Test 079 control_ras PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wam -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_wam +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_wam +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_wam Checking test 080 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 112.672597 - 0: The maximum resident set size (KB) = 642024 + 0: The total amount of wall time = 112.455913 + 0: The maximum resident set size (KB) = 639908 Test 080 control_wam PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_p8_faster +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_p8_faster Checking test 081 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3334,14 +3335,14 @@ Checking test 081 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 153.561184 - 0: The maximum resident set size (KB) = 1602488 + 0: The total amount of wall time = 151.449448 + 0: The maximum resident set size (KB) = 1610112 Test 081 control_p8_faster PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/regional_control_faster +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/regional_control_faster Checking test 082 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3352,56 +3353,56 @@ Checking test 082 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 271.138631 - 0: The maximum resident set size (KB) = 821248 + 0: The total amount of wall time = 271.208291 + 0: The maximum resident set size (KB) = 867840 Test 082 regional_control_faster PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 083 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 833.794943 - 0: The maximum resident set size (KB) = 1062004 + 0: The total amount of wall time = 854.599121 + 0: The maximum resident set size (KB) = 1024836 Test 083 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 084 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 486.419888 - 0: The maximum resident set size (KB) = 973824 + 0: The total amount of wall time = 490.330393 + 0: The maximum resident set size (KB) = 969144 Test 084 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rrfs_conus13km_hrrr_warm_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/rrfs_conus13km_hrrr_warm_debug Checking test 085 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 751.274150 - 0: The maximum resident set size (KB) = 968876 + 0: The total amount of wall time = 739.416902 + 0: The maximum resident set size (KB) = 974736 Test 085 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_CubedSphereGrid_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_CubedSphereGrid_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_CubedSphereGrid_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_CubedSphereGrid_debug Checking test 086 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3428,334 +3429,334 @@ Checking test 086 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 152.964030 - 0: The maximum resident set size (KB) = 796996 + 0: The total amount of wall time = 154.955224 + 0: The maximum resident set size (KB) = 797768 Test 086 control_CubedSphereGrid_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_wrtGauss_netcdf_parallel_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_wrtGauss_netcdf_parallel_debug Checking test 087 control_wrtGauss_netcdf_parallel_debug results .... - Comparing sfcf000.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK + Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 149.271171 - 0: The maximum resident set size (KB) = 805620 + 0: The total amount of wall time = 150.723310 + 0: The maximum resident set size (KB) = 797084 Test 087 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_stochy_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_stochy_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_stochy_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_stochy_debug Checking test 088 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 166.779651 - 0: The maximum resident set size (KB) = 802164 + 0: The total amount of wall time = 170.364143 + 0: The maximum resident set size (KB) = 796876 Test 088 control_stochy_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_lndp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_lndp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_lndp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_lndp_debug Checking test 089 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 153.941526 - 0: The maximum resident set size (KB) = 792296 + 0: The total amount of wall time = 151.549694 + 0: The maximum resident set size (KB) = 792812 Test 089 control_lndp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmg_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_csawmg_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_csawmg_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_csawmg_debug Checking test 090 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 236.382693 - 0: The maximum resident set size (KB) = 804772 + 0: The total amount of wall time = 233.781931 + 0: The maximum resident set size (KB) = 845480 Test 090 control_csawmg_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmgt_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_csawmgt_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_csawmgt_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_csawmgt_debug Checking test 091 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 232.337561 - 0: The maximum resident set size (KB) = 845024 + 0: The total amount of wall time = 229.446477 + 0: The maximum resident set size (KB) = 842340 Test 091 control_csawmgt_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_ras_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_ras_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_ras_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_ras_debug Checking test 092 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 152.146731 - 0: The maximum resident set size (KB) = 808160 + 0: The total amount of wall time = 156.790865 + 0: The maximum resident set size (KB) = 806688 Test 092 control_ras_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_diag_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_diag_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_diag_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_diag_debug Checking test 093 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 157.485779 - 0: The maximum resident set size (KB) = 861848 + 0: The total amount of wall time = 154.474522 + 0: The maximum resident set size (KB) = 855336 Test 093 control_diag_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_debug_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_debug_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_debug_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_debug_p8 Checking test 094 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 171.064995 - 0: The maximum resident set size (KB) = 1621608 + 0: The total amount of wall time = 170.402447 + 0: The maximum resident set size (KB) = 1622764 Test 094 control_debug_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/regional_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/regional_debug Checking test 095 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 994.424088 - 0: The maximum resident set size (KB) = 887064 + 0: The total amount of wall time = 984.799701 + 0: The maximum resident set size (KB) = 891968 Test 095 regional_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rap_control_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/rap_control_debug Checking test 096 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 278.813996 - 0: The maximum resident set size (KB) = 1174296 + 0: The total amount of wall time = 279.752329 + 0: The maximum resident set size (KB) = 1183680 Test 096 rap_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hrrr_control_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/hrrr_control_debug Checking test 097 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.725743 - 0: The maximum resident set size (KB) = 1170096 + 0: The total amount of wall time = 274.683505 + 0: The maximum resident set size (KB) = 1168632 Test 097 hrrr_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rap_unified_drag_suite_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/rap_unified_drag_suite_debug Checking test 098 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 272.810075 - 0: The maximum resident set size (KB) = 1177416 + 0: The total amount of wall time = 274.274515 + 0: The maximum resident set size (KB) = 1170272 Test 098 rap_unified_drag_suite_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_diag_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rap_diag_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_diag_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/rap_diag_debug Checking test 099 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 287.018756 - 0: The maximum resident set size (KB) = 1259292 + 0: The total amount of wall time = 291.460173 + 0: The maximum resident set size (KB) = 1255964 Test 099 rap_diag_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rap_cires_ugwp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_cires_ugwp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/rap_cires_ugwp_debug Checking test 100 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.268035 - 0: The maximum resident set size (KB) = 1172468 + 0: The total amount of wall time = 278.643385 + 0: The maximum resident set size (KB) = 1174636 Test 100 rap_cires_ugwp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rap_unified_ugwp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_cires_ugwp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/rap_unified_ugwp_debug Checking test 101 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.696688 - 0: The maximum resident set size (KB) = 1177008 + 0: The total amount of wall time = 277.351921 + 0: The maximum resident set size (KB) = 1174796 Test 101 rap_unified_ugwp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_lndp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rap_lndp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_lndp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/rap_lndp_debug Checking test 102 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.553968 - 0: The maximum resident set size (KB) = 1171724 + 0: The total amount of wall time = 278.369573 + 0: The maximum resident set size (KB) = 1170948 Test 102 rap_lndp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_flake_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rap_flake_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_flake_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/rap_flake_debug Checking test 103 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.788034 - 0: The maximum resident set size (KB) = 1173480 + 0: The total amount of wall time = 277.420439 + 0: The maximum resident set size (KB) = 1170144 Test 103 rap_flake_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_progcld_thompson_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rap_progcld_thompson_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_progcld_thompson_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/rap_progcld_thompson_debug Checking test 104 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 269.669851 - 0: The maximum resident set size (KB) = 1170880 + 0: The total amount of wall time = 274.230345 + 0: The maximum resident set size (KB) = 1173928 Test 104 rap_progcld_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_noah_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rap_noah_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_noah_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/rap_noah_debug Checking test 105 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.414314 - 0: The maximum resident set size (KB) = 1170520 + 0: The total amount of wall time = 274.508701 + 0: The maximum resident set size (KB) = 1169760 Test 105 rap_noah_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rap_sfcdiff_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_sfcdiff_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/rap_sfcdiff_debug Checking test 106 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 283.430476 - 0: The maximum resident set size (KB) = 1173560 + 0: The total amount of wall time = 271.657450 + 0: The maximum resident set size (KB) = 1169572 Test 106 rap_sfcdiff_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/rap_noah_sfcdiff_cires_ugwp_debug Checking test 107 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 461.617768 - 0: The maximum resident set size (KB) = 1173396 + 0: The total amount of wall time = 449.144925 + 0: The maximum resident set size (KB) = 1180356 Test 107 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1beta_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rrfs_v1beta_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_v1beta_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/rrfs_v1beta_debug Checking test 108 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.005127 - 0: The maximum resident set size (KB) = 1165048 + 0: The total amount of wall time = 273.951337 + 0: The maximum resident set size (KB) = 1167624 Test 108 rrfs_v1beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wam_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_wam_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_wam_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_wam_debug Checking test 109 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 282.400836 - 0: The maximum resident set size (KB) = 523656 + 0: The total amount of wall time = 288.173238 + 0: The maximum resident set size (KB) = 527348 Test 109 control_wam_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3766,14 +3767,14 @@ Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 251.408446 - 0: The maximum resident set size (KB) = 1088536 + 0: The total amount of wall time = 246.866093 + 0: The maximum resident set size (KB) = 1091588 Test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rap_control_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/rap_control_dyn32_phy32 Checking test 111 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3820,14 +3821,14 @@ Checking test 111 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 385.464223 - 0: The maximum resident set size (KB) = 994636 + 0: The total amount of wall time = 378.154515 + 0: The maximum resident set size (KB) = 1002296 Test 111 rap_control_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hrrr_control_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/hrrr_control_dyn32_phy32 Checking test 112 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3874,14 +3875,14 @@ Checking test 112 hrrr_control_dyn32_phy32 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 = 198.688400 - 0: The maximum resident set size (KB) = 957096 + 0: The total amount of wall time = 196.879167 + 0: The maximum resident set size (KB) = 966148 Test 112 hrrr_control_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rap_2threads_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/rap_2threads_dyn32_phy32 Checking test 113 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3928,14 +3929,14 @@ Checking test 113 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 401.101358 - 0: The maximum resident set size (KB) = 1023748 + 0: The total amount of wall time = 393.496737 + 0: The maximum resident set size (KB) = 1018036 Test 113 rap_2threads_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hrrr_control_2threads_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/hrrr_control_2threads_dyn32_phy32 Checking test 114 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3982,14 +3983,14 @@ Checking test 114 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 208.065458 - 0: The maximum resident set size (KB) = 1007256 + 0: The total amount of wall time = 203.307523 + 0: The maximum resident set size (KB) = 1004912 Test 114 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hrrr_control_decomp_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/hrrr_control_decomp_dyn32_phy32 Checking test 115 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4036,14 +4037,14 @@ Checking test 115 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 208.405813 - 0: The maximum resident set size (KB) = 906436 + 0: The total amount of wall time = 209.988294 + 0: The maximum resident set size (KB) = 899752 Test 115 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rap_restart_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/rap_restart_dyn32_phy32 Checking test 116 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4082,14 +4083,14 @@ Checking test 116 rap_restart_dyn32_phy32 results .... Comparing 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.089339 - 0: The maximum resident set size (KB) = 961616 + 0: The total amount of wall time = 293.624696 + 0: The maximum resident set size (KB) = 946276 Test 116 rap_restart_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hrrr_control_restart_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/hrrr_control_restart_dyn32_phy32 Checking test 117 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4128,14 +4129,14 @@ Checking test 117 hrrr_control_restart_dyn32_phy32 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 = 106.505643 - 0: The maximum resident set size (KB) = 871124 + 0: The total amount of wall time = 104.694689 + 0: The maximum resident set size (KB) = 861568 Test 117 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn64_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rap_control_dyn64_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_dyn64_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/rap_control_dyn64_phy32 Checking test 118 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4182,81 +4183,81 @@ Checking test 118 rap_control_dyn64_phy32 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 = 251.970182 - 0: The maximum resident set size (KB) = 963652 + 0: The total amount of wall time = 241.812932 + 0: The maximum resident set size (KB) = 968148 Test 118 rap_control_dyn64_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rap_control_debug_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_debug_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/rap_control_debug_dyn32_phy32 Checking test 119 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.415520 - 0: The maximum resident set size (KB) = 1064820 + 0: The total amount of wall time = 276.043654 + 0: The maximum resident set size (KB) = 1050500 Test 119 rap_control_debug_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hrrr_control_debug_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/hrrr_control_debug_dyn32_phy32 Checking test 120 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.646562 - 0: The maximum resident set size (KB) = 1064980 + 0: The total amount of wall time = 266.217929 + 0: The maximum resident set size (KB) = 1057972 Test 120 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug_dyn64_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/rap_control_dyn64_phy32_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_debug_dyn64_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/rap_control_dyn64_phy32_debug Checking test 121 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.961338 - 0: The maximum resident set size (KB) = 1097804 + 0: The total amount of wall time = 274.791766 + 0: The maximum resident set size (KB) = 1097796 Test 121 rap_control_dyn64_phy32_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hafs_regional_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/hafs_regional_atm Checking test 122 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 274.226221 - 0: The maximum resident set size (KB) = 1063868 + 0: The total amount of wall time = 263.708776 + 0: The maximum resident set size (KB) = 1055704 Test 122 hafs_regional_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hafs_regional_atm_thompson_gfdlsf +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/hafs_regional_atm_thompson_gfdlsf Checking test 123 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 420.548954 - 0: The maximum resident set size (KB) = 1425584 + 0: The total amount of wall time = 400.197937 + 0: The maximum resident set size (KB) = 1422780 Test 123 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_ocn -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hafs_regional_atm_ocn +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_ocn +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/hafs_regional_atm_ocn Checking test 124 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4265,62 +4266,62 @@ Checking test 124 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 391.719041 - 0: The maximum resident set size (KB) = 1233464 + 0: The total amount of wall time = 378.747177 + 0: The maximum resident set size (KB) = 1225892 Test 124 hafs_regional_atm_ocn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_wav -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hafs_regional_atm_wav +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_wav +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/hafs_regional_atm_wav Checking test 125 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - Comparing out_grd.ww3 .........OK - Comparing out_pnt.ww3 .........OK + Comparing 20190829.060000.out_grd.ww3 .........OK + Comparing 20190829.060000.out_pnt.ww3 .........OK Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 737.562160 - 0: The maximum resident set size (KB) = 1263496 + 0: The total amount of wall time = 754.601883 + 0: The maximum resident set size (KB) = 1270148 Test 125 hafs_regional_atm_wav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_ocn_wav -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hafs_regional_atm_ocn_wav +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_ocn_wav +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/hafs_regional_atm_ocn_wav Checking test 126 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK Comparing archs.2019_241_06.a .........OK - Comparing out_grd.ww3 .........OK - Comparing out_pnt.ww3 .........OK + Comparing 20190829.060000.out_grd.ww3 .........OK + Comparing 20190829.060000.out_pnt.ww3 .........OK Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 825.792881 - 0: The maximum resident set size (KB) = 1292452 + 0: The total amount of wall time = 851.056382 + 0: The maximum resident set size (KB) = 1280040 Test 126 hafs_regional_atm_ocn_wav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hafs_regional_1nest_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/hafs_regional_1nest_atm Checking test 127 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 368.719548 - 0: The maximum resident set size (KB) = 508100 + 0: The total amount of wall time = 363.443856 + 0: The maximum resident set size (KB) = 513968 Test 127 hafs_regional_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hafs_regional_telescopic_2nests_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/hafs_regional_telescopic_2nests_atm Checking test 128 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4329,28 +4330,28 @@ Checking test 128 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 419.673198 - 0: The maximum resident set size (KB) = 521192 + 0: The total amount of wall time = 423.451569 + 0: The maximum resident set size (KB) = 518012 Test 128 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_global_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hafs_global_1nest_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_global_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/hafs_global_1nest_atm Checking test 129 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 184.170732 - 0: The maximum resident set size (KB) = 359456 + 0: The total amount of wall time = 174.464656 + 0: The maximum resident set size (KB) = 361576 Test 129 hafs_global_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_global_multiple_4nests_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hafs_global_multiple_4nests_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_global_multiple_4nests_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/hafs_global_multiple_4nests_atm Checking test 130 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4368,14 +4369,14 @@ Checking test 130 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 466.493000 - 0: The maximum resident set size (KB) = 432684 + 0: The total amount of wall time = 488.873078 + 0: The maximum resident set size (KB) = 435756 Test 130 hafs_global_multiple_4nests_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hafs_regional_specified_moving_1nest_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/hafs_regional_specified_moving_1nest_atm Checking test 131 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4384,28 +4385,28 @@ Checking test 131 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 232.957025 - 0: The maximum resident set size (KB) = 525880 + 0: The total amount of wall time = 229.638773 + 0: The maximum resident set size (KB) = 524748 Test 131 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hafs_regional_storm_following_1nest_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/hafs_regional_storm_following_1nest_atm Checking test 132 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 222.713516 - 0: The maximum resident set size (KB) = 526080 + 0: The total amount of wall time = 217.267509 + 0: The maximum resident set size (KB) = 529816 Test 132 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/hafs_regional_storm_following_1nest_atm_ocn Checking test 133 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4414,42 +4415,42 @@ Checking test 133 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 294.285096 - 0: The maximum resident set size (KB) = 573720 + 0: The total amount of wall time = 289.131280 + 0: The maximum resident set size (KB) = 575212 Test 133 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_global_storm_following_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hafs_global_storm_following_1nest_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_global_storm_following_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/hafs_global_storm_following_1nest_atm Checking test 134 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 69.777130 - 0: The maximum resident set size (KB) = 377112 + 0: The total amount of wall time = 68.372797 + 0: The maximum resident set size (KB) = 378296 Test 134 hafs_global_storm_following_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 776.179723 - 0: The maximum resident set size (KB) = 591296 + 0: The total amount of wall time = 776.609764 + 0: The maximum resident set size (KB) = 586132 Test 135 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 136 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4457,17 +4458,17 @@ Checking test 136 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing sfc.nest02.f006.nc .........OK Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - Comparing out_grd.ww3 .........OK - Comparing out_pnt.ww3 .........OK + Comparing 20200825.180000.out_grd.ww3 .........OK + Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 543.572714 - 0: The maximum resident set size (KB) = 579948 + 0: The total amount of wall time = 552.101817 + 0: The maximum resident set size (KB) = 621996 Test 136 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_docn -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hafs_regional_docn +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_docn +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/hafs_regional_docn Checking test 137 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4475,14 +4476,14 @@ Checking test 137 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 363.967075 - 0: The maximum resident set size (KB) = 1244200 + 0: The total amount of wall time = 359.813148 + 0: The maximum resident set size (KB) = 1238860 Test 137 hafs_regional_docn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_docn_oisst -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hafs_regional_docn_oisst +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_docn_oisst +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/hafs_regional_docn_oisst Checking test 138 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4490,131 +4491,131 @@ Checking test 138 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 375.556681 - 0: The maximum resident set size (KB) = 1228920 + 0: The total amount of wall time = 373.590051 + 0: The maximum resident set size (KB) = 1227924 Test 138 hafs_regional_docn_oisst PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_datm_cdeps -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/hafs_regional_datm_cdeps +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_datm_cdeps +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/hafs_regional_datm_cdeps Checking test 139 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 932.585507 - 0: The maximum resident set size (KB) = 1033244 + 0: The total amount of wall time = 974.157739 + 0: The maximum resident set size (KB) = 1037196 Test 139 hafs_regional_datm_cdeps PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/datm_cdeps_control_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/datm_cdeps_control_cfsr Checking test 140 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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.075027 - 0: The maximum resident set size (KB) = 1045012 + 0: The total amount of wall time = 146.261434 + 0: The maximum resident set size (KB) = 1065996 Test 140 datm_cdeps_control_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/datm_cdeps_restart_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/datm_cdeps_restart_cfsr Checking test 141 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 91.569212 - 0: The maximum resident set size (KB) = 1015476 + 0: The total amount of wall time = 107.550078 + 0: The maximum resident set size (KB) = 1011192 Test 141 datm_cdeps_restart_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/datm_cdeps_control_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_control_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/datm_cdeps_control_gefs Checking test 142 datm_cdeps_control_gefs 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.687050 - 0: The maximum resident set size (KB) = 972892 + 0: The total amount of wall time = 141.484674 + 0: The maximum resident set size (KB) = 972056 Test 142 datm_cdeps_control_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_iau_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/datm_cdeps_iau_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_iau_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/datm_cdeps_iau_gefs Checking test 143 datm_cdeps_iau_gefs 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.302794 - 0: The maximum resident set size (KB) = 964548 + 0: The total amount of wall time = 149.063815 + 0: The maximum resident set size (KB) = 977792 Test 143 datm_cdeps_iau_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_stochy_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/datm_cdeps_stochy_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_stochy_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/datm_cdeps_stochy_gefs Checking test 144 datm_cdeps_stochy_gefs 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.000483 - 0: The maximum resident set size (KB) = 963696 + 0: The total amount of wall time = 147.995635 + 0: The maximum resident set size (KB) = 965708 Test 144 datm_cdeps_stochy_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_ciceC_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/datm_cdeps_ciceC_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_ciceC_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/datm_cdeps_ciceC_cfsr Checking test 145 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.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.745807 - 0: The maximum resident set size (KB) = 1059500 + 0: The total amount of wall time = 146.598028 + 0: The maximum resident set size (KB) = 1069080 Test 145 datm_cdeps_ciceC_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_bulk_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/datm_cdeps_bulk_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_bulk_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/datm_cdeps_bulk_cfsr Checking test 146 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.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.586709 - 0: The maximum resident set size (KB) = 1051280 + 0: The total amount of wall time = 148.696480 + 0: The maximum resident set size (KB) = 1060272 Test 146 datm_cdeps_bulk_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_bulk_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/datm_cdeps_bulk_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_bulk_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/datm_cdeps_bulk_gefs Checking test 147 datm_cdeps_bulk_gefs 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 = 159.541191 - 0: The maximum resident set size (KB) = 952624 + 0: The total amount of wall time = 145.040574 + 0: The maximum resident set size (KB) = 962548 Test 147 datm_cdeps_bulk_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_mx025_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/datm_cdeps_mx025_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_mx025_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/datm_cdeps_mx025_cfsr Checking test 148 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4623,14 +4624,14 @@ Checking test 148 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 442.346712 - 0: The maximum resident set size (KB) = 883184 + 0: The total amount of wall time = 515.203741 + 0: The maximum resident set size (KB) = 868172 Test 148 datm_cdeps_mx025_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_mx025_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/datm_cdeps_mx025_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_mx025_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/datm_cdeps_mx025_gefs Checking test 149 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4639,77 +4640,77 @@ Checking test 149 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 440.724492 - 0: The maximum resident set size (KB) = 932448 + 0: The total amount of wall time = 505.411701 + 0: The maximum resident set size (KB) = 929084 Test 149 datm_cdeps_mx025_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/datm_cdeps_multiple_files_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/datm_cdeps_multiple_files_cfsr Checking test 150 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.078593 - 0: The maximum resident set size (KB) = 1079540 + 0: The total amount of wall time = 159.999098 + 0: The maximum resident set size (KB) = 1051264 Test 150 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/datm_cdeps_3072x1536_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/datm_cdeps_3072x1536_cfsr Checking test 151 datm_cdeps_3072x1536_cfsr 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 = 199.416741 - 0: The maximum resident set size (KB) = 2358552 + 0: The total amount of wall time = 204.042551 + 0: The maximum resident set size (KB) = 2303228 Test 151 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_gfs -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/datm_cdeps_gfs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_gfs +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/datm_cdeps_gfs Checking test 152 datm_cdeps_gfs 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 = 201.087542 - 0: The maximum resident set size (KB) = 2369672 + 0: The total amount of wall time = 205.549034 + 0: The maximum resident set size (KB) = 2304860 Test 152 datm_cdeps_gfs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_debug_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/datm_cdeps_debug_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_debug_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/datm_cdeps_debug_cfsr Checking test 153 datm_cdeps_debug_cfsr results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 362.214183 - 0: The maximum resident set size (KB) = 988936 + 0: The total amount of wall time = 352.192679 + 0: The maximum resident set size (KB) = 991848 Test 153 datm_cdeps_debug_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_cfsr_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/datm_cdeps_control_cfsr_faster +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_control_cfsr_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/datm_cdeps_control_cfsr_faster Checking test 154 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 143.576844 - 0: The maximum resident set size (KB) = 1071568 + 0: The total amount of wall time = 159.162679 + 0: The maximum resident set size (KB) = 1053468 Test 154 datm_cdeps_control_cfsr_faster PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_lnd_gswp3 -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/datm_cdeps_lnd_gswp3 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_lnd_gswp3 +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/datm_cdeps_lnd_gswp3 Checking test 155 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4718,14 +4719,14 @@ Checking test 155 datm_cdeps_lnd_gswp3 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.189520 - 0: The maximum resident set size (KB) = 263860 + 0: The total amount of wall time = 30.246191 + 0: The maximum resident set size (KB) = 251096 Test 155 datm_cdeps_lnd_gswp3 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_lnd_gswp3 -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/datm_cdeps_lnd_gswp3_rst +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_lnd_gswp3 +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/datm_cdeps_lnd_gswp3_rst Checking test 156 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4734,14 +4735,14 @@ Checking test 156 datm_cdeps_lnd_gswp3_rst 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.990227 - 0: The maximum resident set size (KB) = 261784 + 0: The total amount of wall time = 12.978705 + 0: The maximum resident set size (KB) = 270644 Test 156 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_atmlnd_sbs -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_p8_atmlnd_sbs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_atmlnd_sbs +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_p8_atmlnd_sbs Checking test 157 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4826,15 +4827,65 @@ Checking test 157 control_p8_atmlnd_sbs 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 = 207.041953 - 0: The maximum resident set size (KB) = 1578400 + 0: The total amount of wall time = 211.179548 + 0: The maximum resident set size (KB) = 1616236 Test 157 control_p8_atmlnd_sbs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/control_atmwav -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/control_atmwav -Checking test 158 control_atmwav results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/atmwav_control_noaero_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/atmwav_control_noaero_p8 +Checking test 158 atmwav_control_noaero_p8 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + Comparing RESTART/ufs.atmw.cpl.r.2021-03-22-64800.nc .........OK + Comparing 20210322.180000.out_pnt.ww3 .........OK + Comparing 20210322.180000.out_grd.ww3 .........OK + Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK + + 0: The total amount of wall time = 98.563395 + 0: The maximum resident set size (KB) = 1635644 + +Test 158 atmwav_control_noaero_p8 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_atmwav +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_atmwav +Checking test 159 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -4877,15 +4928,15 @@ Checking test 158 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 88.533006 - 0: The maximum resident set size (KB) = 669092 + 0: The total amount of wall time = 90.307875 + 0: The maximum resident set size (KB) = 660260 -Test 158 control_atmwav PASS +Test 159 control_atmwav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/atmaero_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/atmaero_control_p8 -Checking test 159 atmaero_control_p8 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/atmaero_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/atmaero_control_p8 +Checking test 160 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4928,15 +4979,15 @@ Checking test 159 atmaero_control_p8 results .... Comparing 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.177775 - 0: The maximum resident set size (KB) = 2977980 + 0: The total amount of wall time = 231.683282 + 0: The maximum resident set size (KB) = 2976744 -Test 159 atmaero_control_p8 PASS +Test 160 atmaero_control_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/atmaero_control_p8_rad -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/atmaero_control_p8_rad -Checking test 160 atmaero_control_p8_rad results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/atmaero_control_p8_rad +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/atmaero_control_p8_rad +Checking test 161 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4979,15 +5030,15 @@ Checking test 160 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 286.173279 - 0: The maximum resident set size (KB) = 3044276 + 0: The total amount of wall time = 288.459628 + 0: The maximum resident set size (KB) = 3048724 -Test 160 atmaero_control_p8_rad PASS +Test 161 atmaero_control_p8_rad PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/atmaero_control_p8_rad_micro -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/atmaero_control_p8_rad_micro -Checking test 161 atmaero_control_p8_rad_micro results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/atmaero_control_p8_rad_micro +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/atmaero_control_p8_rad_micro +Checking test 162 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5030,15 +5081,15 @@ Checking test 161 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 281.847093 - 0: The maximum resident set size (KB) = 3056468 + 0: The total amount of wall time = 307.193821 + 0: The maximum resident set size (KB) = 3059244 -Test 161 atmaero_control_p8_rad_micro PASS +Test 162 atmaero_control_p8_rad_micro PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_atmaq -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/regional_atmaq -Checking test 162 regional_atmaq results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_atmaq +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/regional_atmaq +Checking test 163 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -5053,15 +5104,15 @@ Checking test 162 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 660.137664 - 0: The maximum resident set size (KB) = 1478380 + 0: The total amount of wall time = 623.181091 + 0: The maximum resident set size (KB) = 1484932 -Test 162 regional_atmaq PASS +Test 163 regional_atmaq PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_atmaq_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/regional_atmaq_debug -Checking test 163 regional_atmaq_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_atmaq_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/regional_atmaq_debug +Checking test 164 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -5074,15 +5125,15 @@ Checking test 163 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1234.167126 - 0: The maximum resident set size (KB) = 1406292 + 0: The total amount of wall time = 1193.279040 + 0: The maximum resident set size (KB) = 1405716 -Test 163 regional_atmaq_debug PASS +Test 164 regional_atmaq_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_atmaq_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1677/stmp/jongkim/FV3_RT/rt_321174/regional_atmaq_faster -Checking test 164 regional_atmaq_faster results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_atmaq_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/regional_atmaq_faster +Checking test 165 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -5097,12 +5148,12 @@ Checking test 164 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 566.304933 - 0: The maximum resident set size (KB) = 1476176 + 0: The total amount of wall time = 551.524761 + 0: The maximum resident set size (KB) = 1478676 -Test 164 regional_atmaq_faster PASS +Test 165 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Wed Apr 5 22:13:32 CDT 2023 -Elapsed time: 01h:19m:20s. Have a nice day! +Sun Apr 9 21:15:41 CDT 2023 +Elapsed time: 01h:10m:46s. Have a nice day! diff --git a/tests/RegressionTests_wcoss2.intel.log b/tests/RegressionTests_wcoss2.intel.log index fe9447cb40c..666544029fc 100644 --- a/tests/RegressionTests_wcoss2.intel.log +++ b/tests/RegressionTests_wcoss2.intel.log @@ -1,34 +1,34 @@ -Thu Apr 6 00:42:19 UTC 2023 +Mon Apr 10 18:37:13 UTC 2023 Start Regression test -Compile 001 elapsed time 1057 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 584 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 539 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 1075 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 005 elapsed time 1342 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 1151 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 1148 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 008 elapsed time 472 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 009 elapsed time 1262 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 454 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 999 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 687 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 013 elapsed time 719 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 1158 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 015 elapsed time 1232 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 1100 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 017 elapsed time 361 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 574 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 019 elapsed time 238 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 803 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 917 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 022 elapsed time 837 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 627 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 024 elapsed time 396 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 025 elapsed time 793 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8_mixedmode -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/cpld_control_p8_mixedmode +Compile 001 elapsed time 579 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1213 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 563 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 960 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 005 elapsed time 1081 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 1235 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 653 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 470 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 009 elapsed time 1930 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 431 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 702 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 646 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 660 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 014 elapsed time 966 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 895 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 332 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 017 elapsed time 273 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 820 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 019 elapsed time 541 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 642 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 864 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 022 elapsed time 881 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 720 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 024 elapsed time 638 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 025 elapsed time 972 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8_mixedmode +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -93,14 +93,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 336.728650 -The maximum resident set size (KB) = 2950320 +The total amount of wall time = 337.509908 +The maximum resident set size (KB) = 2950392 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/cpld_control_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/cpld_control_p8 Checking test 002 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -165,14 +165,14 @@ Checking test 002 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 385.548641 -The maximum resident set size (KB) = 2987828 +The total amount of wall time = 388.892813 +The maximum resident set size (KB) = 2985720 Test 002 cpld_control_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/cpld_restart_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/cpld_restart_p8 Checking test 003 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -225,14 +225,14 @@ Checking test 003 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 236.424985 -The maximum resident set size (KB) = 2866300 +The total amount of wall time = 235.928883 +The maximum resident set size (KB) = 2868344 Test 003 cpld_restart_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/cpld_control_qr_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/cpld_control_qr_p8 Checking test 004 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -297,14 +297,14 @@ Checking test 004 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 389.655339 -The maximum resident set size (KB) = 2997836 +The total amount of wall time = 391.251094 +The maximum resident set size (KB) = 2992588 Test 004 cpld_control_qr_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/cpld_restart_qr_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/cpld_restart_qr_p8 Checking test 005 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -357,14 +357,14 @@ Checking test 005 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 234.869457 -The maximum resident set size (KB) = 2881420 +The total amount of wall time = 238.282110 +The maximum resident set size (KB) = 2886140 Test 005 cpld_restart_qr_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/cpld_2threads_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/cpld_2threads_p8 Checking test 006 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -417,14 +417,14 @@ Checking test 006 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 368.126057 -The maximum resident set size (KB) = 3285620 +The total amount of wall time = 371.457878 +The maximum resident set size (KB) = 3287136 Test 006 cpld_2threads_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/cpld_decomp_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/cpld_decomp_p8 Checking test 007 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -477,14 +477,14 @@ Checking test 007 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 381.208124 -The maximum resident set size (KB) = 2979048 +The total amount of wall time = 384.507590 +The maximum resident set size (KB) = 2979044 Test 007 cpld_decomp_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/cpld_mpi_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/cpld_mpi_p8 Checking test 008 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -537,14 +537,14 @@ Checking test 008 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 322.349790 -The maximum resident set size (KB) = 2911004 +The total amount of wall time = 321.951669 +The maximum resident set size (KB) = 2917048 Test 008 cpld_mpi_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_ciceC_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/cpld_control_ciceC_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_ciceC_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/cpld_control_ciceC_p8 Checking test 009 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -609,14 +609,14 @@ Checking test 009 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 386.095867 -The maximum resident set size (KB) = 2985616 +The total amount of wall time = 386.579700 +The maximum resident set size (KB) = 2982736 Test 009 cpld_control_ciceC_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_bmark_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/cpld_bmark_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_bmark_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/cpld_bmark_p8 Checking test 010 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -664,14 +664,14 @@ Checking test 010 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 938.785837 -The maximum resident set size (KB) = 3929120 +The total amount of wall time = 947.777693 +The maximum resident set size (KB) = 3931544 Test 010 cpld_bmark_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_bmark_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/cpld_restart_bmark_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_bmark_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/cpld_restart_bmark_p8 Checking test 011 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -719,14 +719,14 @@ Checking test 011 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 655.015200 -The maximum resident set size (KB) = 3891332 +The total amount of wall time = 658.100454 +The maximum resident set size (KB) = 3886856 Test 011 cpld_restart_bmark_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/cpld_control_noaero_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/cpld_control_noaero_p8 Checking test 012 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -790,14 +790,14 @@ Checking test 012 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 281.919847 -The maximum resident set size (KB) = 1571520 +The total amount of wall time = 286.385196 +The maximum resident set size (KB) = 1582644 Test 012 cpld_control_noaero_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/cpld_control_nowave_noaero_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_c96_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/cpld_control_nowave_noaero_p8 Checking test 013 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -859,14 +859,14 @@ Checking test 013 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 300.371495 -The maximum resident set size (KB) = 1634868 +The total amount of wall time = 301.006919 +The maximum resident set size (KB) = 1635232 Test 013 cpld_control_nowave_noaero_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/cpld_control_noaero_p8_agrid +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_noaero_p8_agrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/cpld_control_noaero_p8_agrid Checking test 014 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -928,14 +928,14 @@ Checking test 014 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 312.250586 -The maximum resident set size (KB) = 1627168 +The total amount of wall time = 311.445143 +The maximum resident set size (KB) = 1624608 Test 014 cpld_control_noaero_p8_agrid PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/cpld_control_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/cpld_control_c48 Checking test 015 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -985,14 +985,14 @@ Checking test 015 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 436.933588 -The maximum resident set size (KB) = 2638128 +The total amount of wall time = 439.923975 +The maximum resident set size (KB) = 2643168 Test 015 cpld_control_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/cpld_warmstart_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/cpld_warmstart_c48 Checking test 016 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1042,14 +1042,14 @@ Checking test 016 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 124.442487 -The maximum resident set size (KB) = 2652972 +The total amount of wall time = 124.950629 +The maximum resident set size (KB) = 2654000 Test 016 cpld_warmstart_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/cpld_restart_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/cpld_restart_c48 Checking test 017 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1099,14 +1099,14 @@ Checking test 017 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 69.900784 -The maximum resident set size (KB) = 2075108 +The total amount of wall time = 71.047538 +The maximum resident set size (KB) = 2073488 Test 017 cpld_restart_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/cpld_control_p8_faster +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/cpld_control_p8_faster Checking test 018 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1171,14 +1171,14 @@ Checking test 018 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 379.478615 -The maximum resident set size (KB) = 2977240 +The total amount of wall time = 382.611607 +The maximum resident set size (KB) = 2983268 Test 018 cpld_control_p8_faster PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_CubedSphereGrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_CubedSphereGrid +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_CubedSphereGrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/control_CubedSphereGrid Checking test 019 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1205,14 +1205,14 @@ Checking test 019 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 129.394818 -The maximum resident set size (KB) = 515616 +The total amount of wall time = 132.172392 +The maximum resident set size (KB) = 512288 Test 019 control_CubedSphereGrid PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_latlon -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_latlon +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_latlon +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/control_latlon Checking test 020 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1223,14 +1223,14 @@ Checking test 020 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 133.758195 -The maximum resident set size (KB) = 518480 +The total amount of wall time = 134.803883 +The maximum resident set size (KB) = 517912 Test 020 control_latlon PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_wrtGauss_netcdf_parallel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/control_wrtGauss_netcdf_parallel Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1241,14 +1241,14 @@ Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 136.226975 -The maximum resident set size (KB) = 516952 +The total amount of wall time = 135.672056 +The maximum resident set size (KB) = 519388 Test 021 control_wrtGauss_netcdf_parallel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/control_c48 Checking test 022 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1287,14 +1287,14 @@ Checking test 022 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 326.555007 -The maximum resident set size (KB) = 677040 +The total amount of wall time = 329.920749 +The maximum resident set size (KB) = 676532 Test 022 control_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c192 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_c192 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_c192 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/control_c192 Checking test 023 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1305,14 +1305,14 @@ Checking test 023 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 528.786323 -The maximum resident set size (KB) = 615116 +The total amount of wall time = 530.002951 +The maximum resident set size (KB) = 617604 Test 023 control_c192 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c384 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_c384 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_c384 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/control_c384 Checking test 024 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1323,14 +1323,14 @@ Checking test 024 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 565.853566 -The maximum resident set size (KB) = 923108 +The total amount of wall time = 565.955719 +The maximum resident set size (KB) = 929888 Test 024 control_c384 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c384gdas -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_c384gdas +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_c384gdas +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/control_c384gdas Checking test 025 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1373,14 +1373,14 @@ Checking test 025 control_c384gdas 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 = 497.510830 -The maximum resident set size (KB) = 1058140 +The total amount of wall time = 501.599526 +The maximum resident set size (KB) = 1064408 Test 025 control_c384gdas PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_stochy +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/control_stochy Checking test 026 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1391,28 +1391,28 @@ Checking test 026 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 90.136176 -The maximum resident set size (KB) = 523184 +The total amount of wall time = 91.350046 +The maximum resident set size (KB) = 525280 Test 026 control_stochy PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_stochy_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/control_stochy_restart Checking test 027 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 49.535965 -The maximum resident set size (KB) = 292240 +The total amount of wall time = 49.277200 +The maximum resident set size (KB) = 292044 Test 027 control_stochy_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_lndp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/control_lndp Checking test 028 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1423,14 +1423,14 @@ Checking test 028 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 83.302779 -The maximum resident set size (KB) = 520824 +The total amount of wall time = 84.788054 +The maximum resident set size (KB) = 521524 Test 028 control_lndp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_iovr4 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_iovr4 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_iovr4 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/control_iovr4 Checking test 029 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1445,14 +1445,14 @@ Checking test 029 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 136.413403 -The maximum resident set size (KB) = 516840 +The total amount of wall time = 137.545830 +The maximum resident set size (KB) = 520684 Test 029 control_iovr4 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_iovr5 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_iovr5 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_iovr5 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/control_iovr5 Checking test 030 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1467,14 +1467,14 @@ Checking test 030 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 137.368227 -The maximum resident set size (KB) = 519880 +The total amount of wall time = 137.328043 +The maximum resident set size (KB) = 517484 Test 030 control_iovr5 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/control_p8 Checking test 031 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1521,14 +1521,14 @@ Checking test 031 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 180.529536 -The maximum resident set size (KB) = 1482344 +The total amount of wall time = 187.162093 +The maximum resident set size (KB) = 1481060 Test 031 control_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_restart_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/control_restart_p8 Checking test 032 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1567,14 +1567,14 @@ Checking test 032 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 102.092135 -The maximum resident set size (KB) = 654348 +The total amount of wall time = 102.629123 +The maximum resident set size (KB) = 654044 Test 032 control_restart_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_qr_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/control_qr_p8 Checking test 033 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1621,14 +1621,14 @@ Checking test 033 control_qr_p8 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 = 178.547696 -The maximum resident set size (KB) = 1489152 +The total amount of wall time = 184.623552 +The maximum resident set size (KB) = 1495656 Test 033 control_qr_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_restart_qr_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/control_restart_qr_p8 Checking test 034 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1667,14 +1667,14 @@ Checking test 034 control_restart_qr_p8 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 = 103.474910 -The maximum resident set size (KB) = 662984 +The total amount of wall time = 102.769188 +The maximum resident set size (KB) = 670956 Test 034 control_restart_qr_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_decomp_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/control_decomp_p8 Checking test 035 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1717,14 +1717,14 @@ Checking test 035 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 182.521279 -The maximum resident set size (KB) = 1479688 +The total amount of wall time = 187.850168 +The maximum resident set size (KB) = 1476496 Test 035 control_decomp_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_2threads_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/control_2threads_p8 Checking test 036 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1767,14 +1767,14 @@ Checking test 036 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 157.635867 -The maximum resident set size (KB) = 1570716 +The total amount of wall time = 162.355173 +The maximum resident set size (KB) = 1568492 Test 036 control_2threads_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_p8_lndp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/control_p8_lndp Checking test 037 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1793,14 +1793,14 @@ Checking test 037 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 322.477536 -The maximum resident set size (KB) = 1486080 +The total amount of wall time = 325.729774 +The maximum resident set size (KB) = 1486212 Test 037 control_p8_lndp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_rrtmgp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_p8_rrtmgp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_rrtmgp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/control_p8_rrtmgp Checking test 038 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1847,14 +1847,14 @@ Checking test 038 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 235.121222 -The maximum resident set size (KB) = 1546444 +The total amount of wall time = 239.019093 +The maximum resident set size (KB) = 1544664 Test 038 control_p8_rrtmgp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_mynn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_p8_mynn +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_mynn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/control_p8_mynn Checking test 039 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1901,14 +1901,14 @@ Checking test 039 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 181.587118 -The maximum resident set size (KB) = 1496676 +The total amount of wall time = 188.600136 +The maximum resident set size (KB) = 1497712 Test 039 control_p8_mynn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/merra2_thompson -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/merra2_thompson +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/merra2_thompson +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/merra2_thompson Checking test 040 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1955,14 +1955,14 @@ Checking test 040 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 204.419087 -The maximum resident set size (KB) = 1494312 +The total amount of wall time = 211.427308 +The maximum resident set size (KB) = 1490244 Test 040 merra2_thompson PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/regional_control +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/regional_control Checking test 041 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1973,28 +1973,28 @@ Checking test 041 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 290.429088 -The maximum resident set size (KB) = 651684 +The total amount of wall time = 298.309902 +The maximum resident set size (KB) = 651916 Test 041 regional_control PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/regional_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/regional_restart Checking test 042 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 157.732425 -The maximum resident set size (KB) = 651880 +The total amount of wall time = 159.746377 +The maximum resident set size (KB) = 651820 Test 042 regional_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/regional_control_qr +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/regional_control_qr Checking test 043 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2005,28 +2005,28 @@ Checking test 043 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 289.170969 -The maximum resident set size (KB) = 655852 +The total amount of wall time = 297.281480 +The maximum resident set size (KB) = 657196 Test 043 regional_control_qr PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/regional_restart_qr +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/regional_restart_qr Checking test 044 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 156.769625 -The maximum resident set size (KB) = 652304 +The total amount of wall time = 160.402307 +The maximum resident set size (KB) = 650848 Test 044 regional_restart_qr PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/regional_decomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/regional_decomp Checking test 045 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2037,14 +2037,14 @@ Checking test 045 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 306.472941 -The maximum resident set size (KB) = 652172 +The total amount of wall time = 311.230331 +The maximum resident set size (KB) = 653984 Test 045 regional_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/regional_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/regional_2threads Checking test 046 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2055,14 +2055,14 @@ Checking test 046 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 178.725528 -The maximum resident set size (KB) = 700932 +The total amount of wall time = 182.971362 +The maximum resident set size (KB) = 696704 Test 046 regional_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_noquilt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/regional_noquilt +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_noquilt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/regional_noquilt Checking test 047 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2070,28 +2070,28 @@ Checking test 047 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 314.490186 -The maximum resident set size (KB) = 645324 +The total amount of wall time = 315.935717 +The maximum resident set size (KB) = 645712 Test 047 regional_noquilt PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/regional_netcdf_parallel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/regional_netcdf_parallel Checking test 048 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK -The total amount of wall time = 291.272505 -The maximum resident set size (KB) = 648916 +The total amount of wall time = 292.153285 +The maximum resident set size (KB) = 648948 Test 048 regional_netcdf_parallel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/regional_2dwrtdecomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/regional_2dwrtdecomp Checking test 049 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2102,14 +2102,14 @@ Checking test 049 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 293.500139 -The maximum resident set size (KB) = 656644 +The total amount of wall time = 298.053621 +The maximum resident set size (KB) = 651648 Test 049 regional_2dwrtdecomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/fv3_regional_wofs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/regional_wofs +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/fv3_regional_wofs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/regional_wofs Checking test 050 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2120,14 +2120,14 @@ Checking test 050 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 362.082661 -The maximum resident set size (KB) = 339704 +The total amount of wall time = 363.181026 +The maximum resident set size (KB) = 343044 Test 050 regional_wofs PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rap_control +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/rap_control Checking test 051 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2174,14 +2174,14 @@ Checking test 051 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 420.013740 -The maximum resident set size (KB) = 893448 +The total amount of wall time = 422.263350 +The maximum resident set size (KB) = 892724 Test 051 rap_control PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/regional_spp_sppt_shum_skeb +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_spp_sppt_shum_skeb +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/regional_spp_sppt_shum_skeb Checking test 052 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2192,14 +2192,14 @@ Checking test 052 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 242.850251 -The maximum resident set size (KB) = 991268 +The total amount of wall time = 249.064964 +The maximum resident set size (KB) = 990324 Test 052 regional_spp_sppt_shum_skeb PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rap_decomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/rap_decomp Checking test 053 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2246,14 +2246,14 @@ Checking test 053 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 434.735098 -The maximum resident set size (KB) = 894772 +The total amount of wall time = 437.047802 +The maximum resident set size (KB) = 896440 Test 053 rap_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rap_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/rap_2threads Checking test 054 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2300,14 +2300,14 @@ Checking test 054 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 387.254254 -The maximum resident set size (KB) = 966500 +The total amount of wall time = 386.785446 +The maximum resident set size (KB) = 970636 Test 054 rap_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rap_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/rap_restart Checking test 055 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2346,14 +2346,14 @@ Checking test 055 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 212.084941 -The maximum resident set size (KB) = 646792 +The total amount of wall time = 211.734037 +The maximum resident set size (KB) = 647088 Test 055 rap_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rap_sfcdiff +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/rap_sfcdiff Checking test 056 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2400,14 +2400,14 @@ Checking test 056 rap_sfcdiff results .... 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.556771 -The maximum resident set size (KB) = 891652 +The total amount of wall time = 420.848517 +The maximum resident set size (KB) = 892580 Test 056 rap_sfcdiff PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rap_sfcdiff_decomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/rap_sfcdiff_decomp Checking test 057 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2454,14 +2454,14 @@ Checking test 057 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 438.998952 -The maximum resident set size (KB) = 896944 +The total amount of wall time = 436.930980 +The maximum resident set size (KB) = 891780 Test 057 rap_sfcdiff_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rap_sfcdiff_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/rap_sfcdiff_restart Checking test 058 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2500,14 +2500,14 @@ Checking test 058 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 309.455117 -The maximum resident set size (KB) = 645776 +The total amount of wall time = 312.411145 +The maximum resident set size (KB) = 642660 Test 058 rap_sfcdiff_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/hrrr_control +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/hrrr_control Checking test 059 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2554,14 +2554,14 @@ Checking test 059 hrrr_control results .... 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.075247 -The maximum resident set size (KB) = 890956 +The total amount of wall time = 405.134731 +The maximum resident set size (KB) = 886420 Test 059 hrrr_control PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/hrrr_control_decomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/hrrr_control_decomp Checking test 060 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2608,14 +2608,14 @@ Checking test 060 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 422.222274 -The maximum resident set size (KB) = 889636 +The total amount of wall time = 421.261486 +The maximum resident set size (KB) = 889292 Test 060 hrrr_control_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/hrrr_control_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/hrrr_control_2threads Checking test 061 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2662,14 +2662,14 @@ Checking test 061 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 373.139199 -The maximum resident set size (KB) = 959304 +The total amount of wall time = 374.268549 +The maximum resident set size (KB) = 956668 Test 061 hrrr_control_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/hrrr_control_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/hrrr_control_restart Checking test 062 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2708,14 +2708,14 @@ Checking test 062 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 299.322521 -The maximum resident set size (KB) = 641024 +The total amount of wall time = 298.404669 +The maximum resident set size (KB) = 637376 Test 062 hrrr_control_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1beta -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rrfs_v1beta +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_v1beta +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/rrfs_v1beta Checking test 063 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2762,14 +2762,14 @@ Checking test 063 rrfs_v1beta results .... 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.676570 -The maximum resident set size (KB) = 891752 +The total amount of wall time = 422.191429 +The maximum resident set size (KB) = 891052 Test 063 rrfs_v1beta PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1nssl -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rrfs_v1nssl +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_v1nssl +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/rrfs_v1nssl Checking test 064 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2784,14 +2784,14 @@ Checking test 064 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 483.821681 -The maximum resident set size (KB) = 580344 +The total amount of wall time = 482.860860 +The maximum resident set size (KB) = 580624 Test 064 rrfs_v1nssl PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rrfs_v1nssl_nohailnoccn +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/rrfs_v1nssl_nohailnoccn Checking test 065 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2806,14 +2806,14 @@ Checking test 065 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 471.365114 -The maximum resident set size (KB) = 570712 +The total amount of wall time = 470.758229 +The maximum resident set size (KB) = 574120 Test 065 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/rrfs_smoke_conus13km_hrrr_warm Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2822,14 +2822,14 @@ Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 153.277226 -The maximum resident set size (KB) = 803820 +The total amount of wall time = 152.415625 +The maximum resident set size (KB) = 803380 Test 066 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 067 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2838,14 +2838,14 @@ Checking test 067 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 108.865101 -The maximum resident set size (KB) = 806048 +The total amount of wall time = 109.855567 +The maximum resident set size (KB) = 800228 Test 067 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rrfs_conus13km_hrrr_warm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/rrfs_conus13km_hrrr_warm Checking test 068 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2854,14 +2854,14 @@ Checking test 068 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 139.924329 -The maximum resident set size (KB) = 779776 +The total amount of wall time = 138.334662 +The maximum resident set size (KB) = 777984 Test 068 rrfs_conus13km_hrrr_warm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/rrfs_smoke_conus13km_radar_tten_warm Checking test 069 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2870,26 +2870,26 @@ Checking test 069 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 153.276969 -The maximum resident set size (KB) = 810760 +The total amount of wall time = 155.336940 +The maximum resident set size (KB) = 801944 Test 069 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 070 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 68.069474 -The maximum resident set size (KB) = 762212 +The total amount of wall time = 69.853214 +The maximum resident set size (KB) = 761708 Test 070 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmg -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_csawmg +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_csawmg +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/control_csawmg Checking test 071 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2900,14 +2900,14 @@ Checking test 071 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 348.330629 -The maximum resident set size (KB) = 587284 +The total amount of wall time = 351.450474 +The maximum resident set size (KB) = 586628 Test 071 control_csawmg PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmgt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_csawmgt +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_csawmgt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/control_csawmgt Checking test 072 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2918,14 +2918,14 @@ Checking test 072 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 347.866244 -The maximum resident set size (KB) = 588456 +The total amount of wall time = 346.845908 +The maximum resident set size (KB) = 589656 Test 072 control_csawmgt PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_ras -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_ras +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_ras +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/control_ras Checking test 073 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2936,26 +2936,26 @@ Checking test 073 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 181.804696 -The maximum resident set size (KB) = 556216 +The total amount of wall time = 182.643736 +The maximum resident set size (KB) = 555772 Test 073 control_ras PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wam -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_wam +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_wam +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/control_wam Checking test 074 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 118.406801 -The maximum resident set size (KB) = 279172 +The total amount of wall time = 118.704553 +The maximum resident set size (KB) = 274492 Test 074 control_wam PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_p8_faster +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/control_p8_faster Checking test 075 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3002,14 +3002,14 @@ Checking test 075 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 175.123273 -The maximum resident set size (KB) = 1485816 +The total amount of wall time = 179.888386 +The maximum resident set size (KB) = 1487480 Test 075 control_p8_faster PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/regional_control_faster +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/regional_control_faster Checking test 076 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3020,56 +3020,56 @@ Checking test 076 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 282.395317 -The maximum resident set size (KB) = 658536 +The total amount of wall time = 286.037436 +The maximum resident set size (KB) = 652860 Test 076 regional_control_faster PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 077 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 898.980681 -The maximum resident set size (KB) = 829560 +The total amount of wall time = 901.351818 +The maximum resident set size (KB) = 828572 Test 077 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 078 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 518.790152 -The maximum resident set size (KB) = 836376 +The total amount of wall time = 521.630278 +The maximum resident set size (KB) = 829652 Test 078 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rrfs_conus13km_hrrr_warm_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/rrfs_conus13km_hrrr_warm_debug Checking test 079 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 808.289570 -The maximum resident set size (KB) = 804604 +The total amount of wall time = 808.221688 +The maximum resident set size (KB) = 813896 Test 079 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_CubedSphereGrid_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_CubedSphereGrid_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_CubedSphereGrid_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/control_CubedSphereGrid_debug Checking test 080 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3096,334 +3096,334 @@ Checking test 080 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 158.304513 -The maximum resident set size (KB) = 677868 +The total amount of wall time = 159.408752 +The maximum resident set size (KB) = 672784 Test 080 control_CubedSphereGrid_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_wrtGauss_netcdf_parallel_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/control_wrtGauss_netcdf_parallel_debug Checking test 081 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 157.812708 -The maximum resident set size (KB) = 674572 +The total amount of wall time = 159.310809 +The maximum resident set size (KB) = 680508 Test 081 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_stochy_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_stochy_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_stochy_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/control_stochy_debug Checking test 082 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 178.512836 -The maximum resident set size (KB) = 683444 +The total amount of wall time = 179.008403 +The maximum resident set size (KB) = 681732 Test 082 control_stochy_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_lndp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/control_lndp_debug Checking test 083 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 171.628039 -The maximum resident set size (KB) = 684232 +The total amount of wall time = 160.777396 +The maximum resident set size (KB) = 684516 Test 083 control_lndp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmg_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_csawmg_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_csawmg_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/control_csawmg_debug Checking test 084 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 256.184904 -The maximum resident set size (KB) = 717620 +The total amount of wall time = 254.791413 +The maximum resident set size (KB) = 720160 Test 084 control_csawmg_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmgt_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_csawmgt_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_csawmgt_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/control_csawmgt_debug Checking test 085 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 249.048542 -The maximum resident set size (KB) = 719236 +The total amount of wall time = 252.814228 +The maximum resident set size (KB) = 718540 Test 085 control_csawmgt_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_ras_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_ras_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_ras_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/control_ras_debug Checking test 086 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 161.184289 -The maximum resident set size (KB) = 689968 +The total amount of wall time = 162.240807 +The maximum resident set size (KB) = 691688 Test 086 control_ras_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_diag_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/control_diag_debug Checking test 087 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 162.191288 -The maximum resident set size (KB) = 736064 +The total amount of wall time = 163.643903 +The maximum resident set size (KB) = 737492 Test 087 control_diag_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_debug_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_debug_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_debug_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/control_debug_p8 Checking test 088 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 186.650628 -The maximum resident set size (KB) = 1507560 +The total amount of wall time = 189.791639 +The maximum resident set size (KB) = 1508376 Test 088 control_debug_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/regional_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/regional_debug Checking test 089 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1047.654003 -The maximum resident set size (KB) = 677760 +The total amount of wall time = 1042.494613 +The maximum resident set size (KB) = 675388 Test 089 regional_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rap_control_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/rap_control_debug Checking test 090 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.791519 -The maximum resident set size (KB) = 1054888 +The total amount of wall time = 297.616840 +The maximum resident set size (KB) = 1056212 Test 090 rap_control_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/hrrr_control_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/hrrr_control_debug Checking test 091 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 290.109656 -The maximum resident set size (KB) = 1046884 +The total amount of wall time = 291.239461 +The maximum resident set size (KB) = 1051300 Test 091 hrrr_control_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rap_unified_drag_suite_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/rap_unified_drag_suite_debug Checking test 092 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.905103 -The maximum resident set size (KB) = 1057952 +The total amount of wall time = 297.539967 +The maximum resident set size (KB) = 1056024 Test 092 rap_unified_drag_suite_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rap_diag_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/rap_diag_debug Checking test 093 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 311.216080 -The maximum resident set size (KB) = 1136036 +The total amount of wall time = 307.705810 +The maximum resident set size (KB) = 1134948 Test 093 rap_diag_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rap_cires_ugwp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/rap_cires_ugwp_debug Checking test 094 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 304.383521 -The maximum resident set size (KB) = 1052068 +The total amount of wall time = 304.399246 +The maximum resident set size (KB) = 1053844 Test 094 rap_cires_ugwp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rap_unified_ugwp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/rap_unified_ugwp_debug Checking test 095 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 303.204708 -The maximum resident set size (KB) = 1054512 +The total amount of wall time = 304.748963 +The maximum resident set size (KB) = 1055820 Test 095 rap_unified_ugwp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rap_lndp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/rap_lndp_debug Checking test 096 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 301.809692 -The maximum resident set size (KB) = 1056076 +The total amount of wall time = 299.546291 +The maximum resident set size (KB) = 1054084 Test 096 rap_lndp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_flake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rap_flake_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_flake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/rap_flake_debug Checking test 097 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.407637 -The maximum resident set size (KB) = 1053640 +The total amount of wall time = 297.852814 +The maximum resident set size (KB) = 1057584 Test 097 rap_flake_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_progcld_thompson_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rap_progcld_thompson_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_progcld_thompson_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/rap_progcld_thompson_debug Checking test 098 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.035714 -The maximum resident set size (KB) = 1055808 +The total amount of wall time = 300.921276 +The maximum resident set size (KB) = 1054436 Test 098 rap_progcld_thompson_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_noah_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rap_noah_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_noah_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/rap_noah_debug Checking test 099 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 290.766922 -The maximum resident set size (KB) = 1052284 +The total amount of wall time = 292.444995 +The maximum resident set size (KB) = 1054568 Test 099 rap_noah_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rap_sfcdiff_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_sfcdiff_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/rap_sfcdiff_debug Checking test 100 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.807315 -The maximum resident set size (KB) = 1057488 +The total amount of wall time = 299.398180 +The maximum resident set size (KB) = 1056276 Test 100 rap_sfcdiff_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/rap_noah_sfcdiff_cires_ugwp_debug Checking test 101 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 488.568616 -The maximum resident set size (KB) = 1052148 +The total amount of wall time = 487.841867 +The maximum resident set size (KB) = 1051204 Test 101 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1beta_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rrfs_v1beta_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_v1beta_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/rrfs_v1beta_debug Checking test 102 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 293.703725 -The maximum resident set size (KB) = 1052644 +The total amount of wall time = 292.837901 +The maximum resident set size (KB) = 1051468 Test 102 rrfs_v1beta_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wam_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_wam_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_wam_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/control_wam_debug Checking test 103 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 296.527311 -The maximum resident set size (KB) = 301008 +The total amount of wall time = 297.315470 +The maximum resident set size (KB) = 302056 Test 103 control_wam_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3434,14 +3434,14 @@ Checking test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 233.786797 -The maximum resident set size (KB) = 892668 +The total amount of wall time = 236.501896 +The maximum resident set size (KB) = 893164 Test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rap_control_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/rap_control_dyn32_phy32 Checking test 105 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3488,14 +3488,14 @@ Checking test 105 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 351.043936 -The maximum resident set size (KB) = 781568 +The total amount of wall time = 353.030136 +The maximum resident set size (KB) = 783448 Test 105 rap_control_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/hrrr_control_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/hrrr_control_dyn32_phy32 Checking test 106 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3542,14 +3542,14 @@ Checking test 106 hrrr_control_dyn32_phy32 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 = 190.987790 -The maximum resident set size (KB) = 779016 +The total amount of wall time = 188.591328 +The maximum resident set size (KB) = 777236 Test 106 hrrr_control_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rap_2threads_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/rap_2threads_dyn32_phy32 Checking test 107 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3596,14 +3596,14 @@ Checking test 107 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 333.321258 -The maximum resident set size (KB) = 840080 +The total amount of wall time = 328.604214 +The maximum resident set size (KB) = 835924 Test 107 rap_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/hrrr_control_2threads_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/hrrr_control_2threads_dyn32_phy32 Checking test 108 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3650,14 +3650,14 @@ Checking test 108 hrrr_control_2threads_dyn32_phy32 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 = 178.238328 -The maximum resident set size (KB) = 835596 +The total amount of wall time = 173.369549 +The maximum resident set size (KB) = 834964 Test 108 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/hrrr_control_decomp_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/hrrr_control_decomp_dyn32_phy32 Checking test 109 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3704,14 +3704,14 @@ Checking test 109 hrrr_control_decomp_dyn32_phy32 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 = 194.506192 -The maximum resident set size (KB) = 779860 +The total amount of wall time = 195.806207 +The maximum resident set size (KB) = 778124 Test 109 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rap_restart_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/rap_restart_dyn32_phy32 Checking test 110 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3750,14 +3750,14 @@ Checking test 110 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 258.355933 -The maximum resident set size (KB) = 614684 +The total amount of wall time = 258.561997 +The maximum resident set size (KB) = 619188 Test 110 rap_restart_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/hrrr_control_restart_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/hrrr_control_restart_dyn32_phy32 Checking test 111 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3796,14 +3796,14 @@ Checking test 111 hrrr_control_restart_dyn32_phy32 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 = 98.629208 -The maximum resident set size (KB) = 610560 +The total amount of wall time = 97.923894 +The maximum resident set size (KB) = 613704 Test 111 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rap_control_dyn64_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/rap_control_dyn64_phy32 Checking test 112 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3850,81 +3850,81 @@ Checking test 112 rap_control_dyn64_phy32 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 = 233.518293 -The maximum resident set size (KB) = 795556 +The total amount of wall time = 234.986957 +The maximum resident set size (KB) = 797276 Test 112 rap_control_dyn64_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rap_control_debug_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/rap_control_debug_dyn32_phy32 Checking test 113 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 291.166316 -The maximum resident set size (KB) = 939620 +The total amount of wall time = 291.161062 +The maximum resident set size (KB) = 944084 Test 113 rap_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/hrrr_control_debug_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/hrrr_control_debug_dyn32_phy32 Checking test 114 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 286.838919 -The maximum resident set size (KB) = 936124 +The total amount of wall time = 286.381900 +The maximum resident set size (KB) = 934584 Test 114 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/rap_control_dyn64_phy32_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/rap_control_dyn64_phy32_debug Checking test 115 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 294.530748 -The maximum resident set size (KB) = 954648 +The total amount of wall time = 299.651727 +The maximum resident set size (KB) = 956408 Test 115 rap_control_dyn64_phy32_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/hafs_regional_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/hafs_regional_atm Checking test 116 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 272.951705 -The maximum resident set size (KB) = 820444 +The total amount of wall time = 277.865324 +The maximum resident set size (KB) = 822032 Test 116 hafs_regional_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/hafs_regional_atm_thompson_gfdlsf +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/hafs_regional_atm_thompson_gfdlsf Checking test 117 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 316.640575 -The maximum resident set size (KB) = 1175740 +The total amount of wall time = 326.821564 +The maximum resident set size (KB) = 1179924 Test 117 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/hafs_regional_atm_ocn +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/hafs_regional_atm_ocn Checking test 118 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3933,62 +3933,62 @@ Checking test 118 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 393.659209 -The maximum resident set size (KB) = 856312 +The total amount of wall time = 392.765523 +The maximum resident set size (KB) = 861644 Test 118 hafs_regional_atm_ocn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/hafs_regional_atm_wav +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/hafs_regional_atm_wav Checking test 119 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - Comparing out_grd.ww3 .........OK - Comparing out_pnt.ww3 .........OK + Comparing 20190829.060000.out_grd.ww3 .........OK + Comparing 20190829.060000.out_pnt.ww3 .........OK Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 707.665131 -The maximum resident set size (KB) = 890280 +The total amount of wall time = 712.509809 +The maximum resident set size (KB) = 889796 Test 119 hafs_regional_atm_wav PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/hafs_regional_atm_ocn_wav +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/hafs_regional_atm_ocn_wav Checking test 120 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK Comparing archs.2019_241_06.a .........OK - Comparing out_grd.ww3 .........OK - Comparing out_pnt.ww3 .........OK + Comparing 20190829.060000.out_grd.ww3 .........OK + Comparing 20190829.060000.out_pnt.ww3 .........OK Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 906.201459 -The maximum resident set size (KB) = 910684 +The total amount of wall time = 900.185275 +The maximum resident set size (KB) = 915084 Test 120 hafs_regional_atm_ocn_wav PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/hafs_regional_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/hafs_regional_1nest_atm Checking test 121 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 334.261709 -The maximum resident set size (KB) = 393240 +The total amount of wall time = 334.154455 +The maximum resident set size (KB) = 395896 Test 121 hafs_regional_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/hafs_regional_telescopic_2nests_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/hafs_regional_telescopic_2nests_atm Checking test 122 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3997,28 +3997,28 @@ Checking test 122 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 404.901220 -The maximum resident set size (KB) = 402044 +The total amount of wall time = 406.382437 +The maximum resident set size (KB) = 402496 Test 122 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_global_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/hafs_global_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_global_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/hafs_global_1nest_atm Checking test 123 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 175.212235 -The maximum resident set size (KB) = 287572 +The total amount of wall time = 173.779071 +The maximum resident set size (KB) = 294340 Test 123 hafs_global_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_global_multiple_4nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/hafs_global_multiple_4nests_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_global_multiple_4nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/hafs_global_multiple_4nests_atm Checking test 124 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4036,14 +4036,14 @@ Checking test 124 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -The total amount of wall time = 487.641496 -The maximum resident set size (KB) = 349052 +The total amount of wall time = 491.523111 +The maximum resident set size (KB) = 348060 Test 124 hafs_global_multiple_4nests_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/hafs_regional_specified_moving_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/hafs_regional_specified_moving_1nest_atm Checking test 125 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4052,28 +4052,28 @@ Checking test 125 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 219.603381 -The maximum resident set size (KB) = 408240 +The total amount of wall time = 221.230183 +The maximum resident set size (KB) = 404036 Test 125 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/hafs_regional_storm_following_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/hafs_regional_storm_following_1nest_atm Checking test 126 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 206.404911 -The maximum resident set size (KB) = 407304 +The total amount of wall time = 207.557435 +The maximum resident set size (KB) = 409256 Test 126 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/hafs_regional_storm_following_1nest_atm_ocn Checking test 127 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4082,42 +4082,42 @@ Checking test 127 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 255.489896 -The maximum resident set size (KB) = 467380 +The total amount of wall time = 255.094153 +The maximum resident set size (KB) = 467264 Test 127 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/hafs_global_storm_following_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_global_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/hafs_global_storm_following_1nest_atm Checking test 128 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 88.058309 -The maximum resident set size (KB) = 284040 +The total amount of wall time = 86.596921 +The maximum resident set size (KB) = 299468 Test 128 hafs_global_storm_following_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 129 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 807.548133 -The maximum resident set size (KB) = 498656 +The total amount of wall time = 808.638321 +The maximum resident set size (KB) = 494108 Test 129 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 130 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4125,17 +4125,17 @@ Checking test 130 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing sfc.nest02.f006.nc .........OK Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - Comparing out_grd.ww3 .........OK - Comparing out_pnt.ww3 .........OK + Comparing 20200825.180000.out_grd.ww3 .........OK + Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 503.611338 -The maximum resident set size (KB) = 523184 +The total amount of wall time = 506.762588 +The maximum resident set size (KB) = 525848 Test 130 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_atmlnd_sbs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/control_p8_atmlnd_sbs +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_atmlnd_sbs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/control_p8_atmlnd_sbs Checking test 131 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4220,14 +4220,14 @@ Checking test 131 control_p8_atmlnd_sbs 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 = 246.928592 -The maximum resident set size (KB) = 1545180 +The total amount of wall time = 248.415883 +The maximum resident set size (KB) = 1538232 Test 131 control_p8_atmlnd_sbs PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/atmaero_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/atmaero_control_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/atmaero_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/atmaero_control_p8 Checking test 132 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4271,14 +4271,14 @@ Checking test 132 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 249.392604 -The maximum resident set size (KB) = 2811828 +The total amount of wall time = 249.504365 +The maximum resident set size (KB) = 2816512 Test 132 atmaero_control_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/atmaero_control_p8_rad -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/atmaero_control_p8_rad +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/atmaero_control_p8_rad +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/atmaero_control_p8_rad Checking test 133 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4322,14 +4322,14 @@ Checking test 133 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 284.789294 -The maximum resident set size (KB) = 2876684 +The total amount of wall time = 286.131392 +The maximum resident set size (KB) = 2878636 Test 133 atmaero_control_p8_rad PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/atmaero_control_p8_rad_micro +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/atmaero_control_p8_rad_micro +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/atmaero_control_p8_rad_micro Checking test 134 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4373,14 +4373,14 @@ Checking test 134 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 290.295771 -The maximum resident set size (KB) = 2889168 +The total amount of wall time = 290.883958 +The maximum resident set size (KB) = 2886656 Test 134 atmaero_control_p8_rad_micro PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_atmaq -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/regional_atmaq +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_atmaq +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/regional_atmaq Checking test 135 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4396,14 +4396,14 @@ Checking test 135 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 684.431582 -The maximum resident set size (KB) = 1265464 +The total amount of wall time = 687.230045 +The maximum resident set size (KB) = 1258888 Test 135 regional_atmaq PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_atmaq_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/regional_atmaq_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_atmaq_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/regional_atmaq_debug Checking test 136 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4417,14 +4417,14 @@ Checking test 136 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1299.507460 -The maximum resident set size (KB) = 1295656 +The total amount of wall time = 1295.844745 +The maximum resident set size (KB) = 1301592 Test 136 regional_atmaq_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_atmaq_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_122746/regional_atmaq_faster +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_atmaq_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/regional_atmaq_faster Checking test 137 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4440,12 +4440,12 @@ Checking test 137 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 638.833184 -The maximum resident set size (KB) = 1260944 +The total amount of wall time = 646.029775 +The maximum resident set size (KB) = 1258144 Test 137 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Thu Apr 6 01:46:54 UTC 2023 -Elapsed time: 01h:04m:35s. Have a nice day! +Mon Apr 10 19:39:55 UTC 2023 +Elapsed time: 01h:02m:43s. Have a nice day! diff --git a/tests/default_vars.sh b/tests/default_vars.sh index 72c5a929552..bb4fe900be0 100755 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -13,7 +13,8 @@ THRD_cpl_atmw=1 INPES_cpl_atmw=3; JNPES_cpl_atmw=8; WPG_cpl_atmw=6 - WAV_tasks_atmw=30 + WAV_tasks_cpl_atmw=30 + WAV_thrds_cpl_atmw=1 THRD_cpl_c48=1 INPES_cpl_c48=1; JNPES_cpl_c48=1; WPG_cpl_c48=6 @@ -535,11 +536,11 @@ export IAU_DRYMASSFIXER=.false. #waves export WW3RSTDTHR=12 export DT_2_RST="$(printf "%02d" $(( ${WW3RSTDTHR}*3600 )))" -export DTRST=0 -export RSTTYPE=T export WW3OUTDTHR=1 export DTFLD="$(printf "%02d" $(( ${WW3OUTDTHR}*3600 )))" export DTPNT="$(printf "%02d" $(( ${WW3OUTDTHR}*3600 )))" +export DTRST=0 +export RSTTYPE=T export GOFILETYPE=1 export POFILETYPE=1 export OUTPARS_WAV="WND HS FP DP PHS PTP PDIR" @@ -565,8 +566,15 @@ export RST_BEG=$RUN_BEG export RST_2_BEG=$RUN_BEG export RST_END=$RUN_END export RST_2_END=$RUN_END +export WAV_CUR='F' +export WAV_ICE='F' +export WAV_IC1='F' +export WAV_IC5='F' # ATMW export MULTIGRID=true +export MODDEF_WAV=mod_def.glo_1deg +export MESH_WAV=mesh.glo_1deg.nc + # ATMA export AOD_FRQ=060000 @@ -815,6 +823,7 @@ export BLCKX=`expr $NX_GLB / $np2` export BLCKY=`expr $NY_GLB / 2` export MESHOCN_ICE=mesh.mx${OCNRES}.nc export WAVDOMAIN=mx${OCNRES} +export MODDEF_WAV=mod_def.mx${OCNRES} export MESH_WAV=mesh.${WAVDOMAIN}.nc export CICEGRID=grid_cice_NEMS_mx${OCNRES}.nc export CICEMASK=kmtu_cice_NEMS_mx${OCNRES}.nc @@ -835,23 +844,16 @@ export GRIDOCN=A export GRIDICE=B #wave -export INPUT_CURFLD='C F Currents' -export INPUT_ICEFLD='C F Ice concentrations' export WW3RSTDTHR=3 -export WW3OUTDTHR=3 export DT_2_RST="$(printf "%02d" $(( ${WW3RSTDTHR}*3600 )))" +export WW3OUTDTHR=3 export DTFLD="$(printf "%02d" $(( ${WW3OUTDTHR}*3600 )))" export DTPNT="$(printf "%02d" $(( ${WW3OUTDTHR}*3600 )))" -export WW3GRIDLINE="'ww3' 'no' 'CPL:native' 'CPL:native' 'CPL:native' 'no' 'no' 'no' 'no' 'no' 1 1 0.00 1.00 F" -export UNIPOINTS='points' -export RUN_BEG="${SYEAR}${SMONTH}${SDAY} $(printf "%02d" $(( ${SHOUR} )))0000" -export RUN_END="2100${SMONTH}${SDAY} $(printf "%02d" $(( ${SHOUR} )))0000" -export OUT_BEG=$RUN_BEG -export OUT_END=$RUN_END -export RST_BEG=$RUN_BEG -export RST_2_BEG=$RUN_BEG -export RST_END=$RUN_END -export RST_2_END=$RUN_END +# waves when using shel.nml.IN +export WAV_CUR='C' +export WAV_ICE='C' +export WAV_IC1='F' +export WAV_IC5='F' # gocart inst_aod output; uses AERO_HIST.rc.IN from parm/gocart directory export AOD_FRQ=060000 @@ -1075,13 +1077,18 @@ export DLON=0.03 export DLAT=0.03 # shel.inp -export INPUT_CURFLD='C F Currents' -export INPUT_ICEFLD='F F Ice concentrations' # input.nml export CPL_IMP_MRG=.true. export DIAG_TABLE=diag_table_hafs export FIELD_TABLE=field_table_hafs +export WW3RSTDTHR=${FHMAX} +export DT_2_RST="$(printf "%02d" $(( ${WW3RSTDTHR}*3600 )))" +export WW3OUTDTHR=3 +export DTFLD="$(printf "%02d" $(( ${WW3OUTDTHR}*3600 )))" +export DTPNT="$(printf "%02d" $(( ${WW3OUTDTHR}*3600 )))" +export OUTPARS_WAV="WND HS T01 T02 DIR FP DP PHS PTP PDIR UST CHA USP" +export WAV_CUR='C' # nems.configure export med_model=cmeps @@ -1091,6 +1098,7 @@ export CPLMODE=hafs export RUNTYPE=startup export USE_COLDSTART=false export MESH_WAV=mesh.hafs.nc +export MODDEF_WAV=mod_def.natl_6m export MULTIGRID=false } diff --git a/tests/fv3_conf/control_run.IN b/tests/fv3_conf/control_run.IN index b56a41e0f8a..33671021152 100644 --- a/tests/fv3_conf/control_run.IN +++ b/tests/fv3_conf/control_run.IN @@ -91,9 +91,14 @@ else fi if [ $CPLWAV = .true. ]; then - cp @[INPUTDATA_ROOT_WW3]/mod_def.pointsatmw mod_def.points - cp @[INPUTDATA_ROOT_WW3]/mod_def.* . - cp @[INPUTDATA_ROOT_WW3]/rmp_src* . + if [ $MULTIGRID = 'true' ]; then + cp @[INPUTDATA_ROOT_WW3]/mod_def.pointsatmw mod_def.points + cp @[INPUTDATA_ROOT_WW3]/@[MODDEF_WAV] . + cp @[INPUTDATA_ROOT_WW3]/rmp_src* . + else + cp @[INPUTDATA_ROOT_WW3]/@[MODDEF_WAV] mod_def.ww3 + cp @[INPUTDATA_ROOT_WW3]/@[MESH_WAV] . + fi fi #inline post diff --git a/tests/fv3_conf/cpld_control_run.IN b/tests/fv3_conf/cpld_control_run.IN index c708bc38635..c18c66fd6c8 100644 --- a/tests/fv3_conf/cpld_control_run.IN +++ b/tests/fv3_conf/cpld_control_run.IN @@ -50,12 +50,7 @@ cp @[INPUTDATA_ROOT]/CICE_FIX/@[OCNRES]/mesh.mx@[OCNRES].nc . # WW3 fix/input if [[ $CPLWAV == .true. ]]; then - cp @[INPUTDATA_ROOT_WW3]/mod_def.points . - if [[ $WAVDOMAIN == mx025 ]]; then - cp @[INPUTDATA_ROOT_WW3]/mod_def.@[WAVDOMAIN]lite mod_def.ww3 - else - cp @[INPUTDATA_ROOT_WW3]/mod_def.@[WAVDOMAIN] mod_def.ww3 - fi + cp @[INPUTDATA_ROOT_WW3]/@[MODDEF_WAV] mod_def.ww3 if [[ ${WAVDOMAIN:0:2} != mx ]]; then cp @[INPUTDATA_ROOT_WW3]/@[MESH_WAV] . fi diff --git a/tests/fv3_conf/hafs_ww3_run.IN b/tests/fv3_conf/hafs_ww3_run.IN index 3270300212f..18a30a4526d 100644 --- a/tests/fv3_conf/hafs_ww3_run.IN +++ b/tests/fv3_conf/hafs_ww3_run.IN @@ -2,9 +2,8 @@ if [ ${CNTL_DIR} = "hafs_regional_atm_wav" ] || \ [ ${CNTL_DIR} = "hafs_regional_atm_ocn_wav" ] || \ [ ${CNTL_DIR} = "hafs_regional_storm_following_1nest_atm_ocn_wav" ]; then - cp @[INPUTDATA_ROOT_WW3]/mod_def.natl_6m ./mod_def.ww3 - cp @[INPUTDATA_ROOT_WW3]/mod_def.points ./mod_def.points - cp @[INPUTDATA_ROOT_WW3]/mesh.hafs.nc ./mesh.hafs.nc + cp @[INPUTDATA_ROOT_WW3]/@[MODDEF_WAV] ./mod_def.ww3 + cp @[INPUTDATA_ROOT_WW3]/@[MESH_WAV] ./mesh.hafs.nc if [ ${CNTL_DIR} = "hafs_regional_storm_following_1nest_atm_ocn_wav" ]; then cp @[INPUTDATA_ROOT]/FV3_hafs_input_data/WW3_hafs_regional_input_data/wind.natl_6m_2020082512 ./wind.ww3 else diff --git a/tests/parm/nems.configure.atmw.IN b/tests/parm/nems.configure.atmw.IN new file mode 100644 index 00000000000..69c87ede06e --- /dev/null +++ b/tests/parm/nems.configure.atmw.IN @@ -0,0 +1,94 @@ +############################################# +#### NEMS Run-Time Configuration File ##### +############################################# + +# ESMF # +logKindFlag: ESMF_LOGKIND_MULTI +globalResourceControl: true + +# EARTH # +EARTH_component_list: MED ATM WAV +EARTH_attributes:: + Verbosity = 0 +:: + +# MED # +MED_model: @[med_model] +MED_petlist_bounds: @[med_petlist_bounds] +MED_omp_num_threads: @[med_omp_num_threads] +:: + +# ATM # +ATM_model: @[atm_model] +ATM_petlist_bounds: @[atm_petlist_bounds] +ATM_omp_num_threads: @[atm_omp_num_threads] +ATM_attributes:: + Verbosity = 0 + DumpFields = false +:: + +# WAV # +WAV_model: @[wav_model] +WAV_petlist_bounds: @[wav_petlist_bounds] +WAV_omp_num_threads: @[wav_omp_num_threads] +WAV_attributes:: + Verbosity = 0 + OverwriteSlice = false + diro = "." + logfile = wav.log + mesh_wav = @[MESH_WAV] + multigrid = @[MULTIGRID] + user_sets_restname = true +:: + + +# Run Sequence # +runSeq:: + @@[coupling_interval_sec] + MED med_phases_prep_atm + MED med_phases_prep_wav_accum + MED med_phases_prep_wav_avg + MED -> ATM :remapMethod=redist + MED -> WAV :remapMethod=redist + ATM + WAV + ATM -> MED :remapMethod=redist + MED med_phases_post_atm + WAV -> MED :remapMethod=redist + MED med_phases_post_wav + MED med_phases_restart_write + @ +:: + +# CMEPS variables + +DRIVER_attributes:: +:: + +MED_attributes:: + ATM_model = @[atm_model] + WAV_model = @[wav_model] + history_n = 1 + history_option = nhours + history_ymd = -999 + coupling_mode = @[CPLMODE] + history_tile_atm = @[ATMTILESIZE] +:: + +ALLCOMP_attributes:: + ScalarFieldCount = 2 + ScalarFieldIdxGridNX = 1 + ScalarFieldIdxGridNY = 2 + ScalarFieldName = cpl_scalars + start_type = @[RUNTYPE] + restart_dir = RESTART/ + case_name = ufs.atmw + restart_n = @[RESTART_N] + restart_option = nhours + restart_ymd = -999 + dbug_flag = @[cap_dbug_flag] + use_coldstart = false + stop_n = @[FHMAX] + stop_option = nhours + stop_ymd = -999 +:: diff --git a/tests/parm/ww3_points.list b/tests/parm/ww3_points.list new file mode 100644 index 00000000000..62dfcd78b22 --- /dev/null +++ b/tests/parm/ww3_points.list @@ -0,0 +1,240 @@ + -85.078 -19.425 '32012 ' -1 DAT WHOI 360 4534 + -90.000 -55.000 '34002 ' 6.2 DAT OCOBSI 360 4800 + -72.522 34.502 '41001 ' 4 DAT NDBC 360 4556 + -74.930 31.892 '41002 ' 4 DAT NDBC 360 3920 + -79.099 32.501 '41004 ' 4 DAT NDBC 360 39 + -80.868 31.400 '41008 ' 5 DAT NDBC 360 14.9 + -80.185 28.508 '41009 ' 4 DAT NDBC 360 42 + -78.485 28.878 '41010 ' 4 DAT NDBC 360 890 + -77.743 33.436 '41013 ' 4 DAT NDBC 360 23.5 + -78.477 33.837 '41024 ' 2.95 DAT CORMP 360 10 + -75.363 35.025 '41025 ' 4 DAT NDBC 360 59.4 + -79.624 32.803 '41029 ' 2.95 DAT CORMP 360 10 + -80.406 32.279 '41033 ' 2.95 DAT CORMP 360 10 + -77.362 33.988 '41037 ' 2.95 DAT CORMP 360 30 + -77.715 34.141 '41038 ' 2.95 DAT CORMP 360 18 + -53.045 14.554 '41040 ' 4 DAT NDBC 360 5112 + -46.093 14.311 '41041 ' 4 DAT NDBC 360 3595 + -64.830 21.124 '41043 ' 4 DAT NDBC 360 5271 + -58.630 21.582 '41044 ' 4 DAT NDBC 360 5419 + -68.384 23.822 '41046 ' 4 DAT NDBC 360 5549 + -71.494 27.514 '41047 ' 4 DAT NDBC 360 5321 + -69.585 31.838 '41048 ' 4 DAT NDBC 360 5340 + -62.938 27.490 '41049 ' 4 DAT NDBC 360 5459 + -65.004 18.257 '41051 ' 4 DAT CARICOOS 360 32 + -64.763 18.249 '41052 ' 4 DAT CARICOOS 360 44 + -65.464 18.261 '41056 ' 4 DAT CARICOOS 360 30 + -65.157 18.476 '41058 ' 4 DAT CARICOOS 360 40 + -51.017 14.824 '41060 ' -1 DAT WHOI 360 5021 + -75.095 35.778 '41062 ' 3.5 DAT UNC 360 36 + -75.941 34.782 '41063 ' 3.5 DAT UNC 360 30 + -76.949 34.207 '41064 ' 2.95 DAT CORMP 360 30 + -78.015 33.721 '41108 ' -1 DAT SIO 360 12.8 + -77.717 34.141 '41110 ' -1 DAT CORMP 360 17 + -81.292 30.709 '41112 ' -1 DAT SIO 360 15.54 + -80.534 28.400 '41113 ' -1 DAT SIO 360 9.8 + -80.188 28.523 '41116 ' -1 DAT SIO 360 41 + -81.080 30.000 '41117 ' -1 DAT USACE 360 24.4 + -80.590 28.609 '41118 ' -1 DAT SIO 360 7.3 + -78.483 33.842 '41119 ' -1 DAT CORMP 360 13 + -76.946 34.213 '41159 ' -1 DAT CORMP 360 30.5 + -89.650 25.961 '42001 ' 3.6 DAT NDBC 360 3334 + -93.758 26.091 '42002 ' 5 DAT NDBC 360 3125.1 + -85.615 25.925 '42003 ' 4 DAT NDBC 360 3265 + -87.551 30.064 '42012 ' 4 DAT NDBC 360 25.9 + -95.350 27.906 '42019 ' 5 DAT NDBC 360 82.2 + -96.693 26.968 '42020 ' 4 DAT NDBC 360 84.1 + -83.741 27.505 '42022 ' 3.1 DAT COMPS 360 50 + -83.086 26.010 '42023 ' 3.1 DAT COMPS 360 50 + -83.475 25.171 '42026 ' 3.2 DAT COMPS 360 70 + -94.413 29.232 '42035 ' 4 DAT NDBC 360 16.2 + -84.516 28.501 '42036 ' 4 DAT NDBC 360 49.7 + -86.008 28.788 '42039 ' 4 DAT NDBC 360 270 + -88.226 29.208 '42040 ' 4 DAT NDBC 360 183 + -94.899 28.982 '42043 ' 4 DAT TAMUNI 360 19 + -96.500 26.217 '42045 ' 4 DAT TAMUNI 360 62 + -94.037 27.890 '42046 ' 4 DAT TAMUNI 360 105 + -93.597 27.897 '42047 ' 4 DAT TAMUNI 360 89 + -93.941 22.124 '42055 ' 4 DAT NDBC 360 3624 + -84.946 19.812 '42056 ' 4 DAT NDBC 360 4565 + -81.422 16.908 '42057 ' 4 DAT NDBC 360 377 + -74.560 14.775 '42058 ' 4 DAT NDBC 360 4150 + -67.483 15.252 '42059 ' 4 DAT NDBC 360 4784 + -63.354 16.413 '42060 ' 4 DAT NDBC 360 1507 + -81.251 24.500 '42078 ' -1 DAT CDIP 360 170 + -81.242 24.535 '42079 ' -1 DAT CDIP 360 99 + -66.532 17.869 '42085 ' 4 DAT CARICOOS 360 18.9 + -60.848 11.185 '42087 ' 3.35 DAT ICON 360 1266 + -60.521 11.301 '42088 ' 3.35 DAT ICON 360 1266 + -80.061 19.699 '42089 ' 3.35 DAT ICON 360 5726 + -69.580 18.432 '42090 ' 3.35 DAT ICON 360 1188 + -81.967 24.407 '42095 ' -1 DAT USACE 360 100 + -83.650 25.700 '42097 ' -1 DAT USACE 360 81 + -84.275 27.345 '42099 ' -1 DAT SIO 360 93.9 + -90.459 26.689 '42360 ' 3 DAT MURPHY 360 2539.9 + -92.490 27.550 '42361 ' 122 DAT SHELL 360 871.7 + -90.648 27.795 '42362 ' 122 DAT ENVEN 360 910 + -89.220 28.160 '42363 ' 122 DAT SHELL 360 894 + -88.090 29.060 '42364 ' 122 DAT SHELL 360 980.2 + -90.283 27.207 '42369 ' 60.4 DAT BP 360 1371.9 + -88.289 28.521 '42375 ' 61 DAT BP 360 1920.2 + -94.898 26.129 '42390 ' -1 DAT SHELL 360 2382.6 + -90.027 27.196 '42392 ' -1 DAT BP 360 2156.16 + -89.240 28.157 '42394 ' 100 DAT SHELL 360 923.5 + -90.792 26.404 '42395 ' 3 DAT SHELL 360 2941.9 + -125.032 10.051 '43010 ' -1 DAT WHOI 360 4769 + -69.128 43.201 '44005 ' 5 DAT NDBC 360 180.7 + -70.141 43.525 '44007 ' 5 DAT NDBC 360 26.5 + -69.248 40.504 '44008 ' 4 DAT NDBC 360 74.7 + -74.702 38.457 '44009 ' 5 DAT NDBC 360 30 + -66.588 41.070 '44011 ' 4 DAT NDBC 360 88.4 + -70.651 42.346 '44013 ' 5 DAT NDBC 360 64 + -74.840 36.606 '44014 ' 5 DAT NDBC 360 47 + -72.049 40.693 '44017 ' 5 DAT NDBC 360 48 + -70.143 42.206 '44018 ' 5 DAT NDBC 360 41.5 + -70.279 41.493 '44020 ' 4 DAT NDBC 360 14.3 + -73.728 40.883 '44022 ' 3.5 DAT UCT 360 22.5 + -65.912 42.327 '44024 ' 4 DAT NRCOOS 360 225 + -73.164 40.251 '44025 ' 5 DAT NDBC 360 36.3 + -67.300 44.283 '44027 ' 5 DAT NDBC 360 185.3 + -70.566 42.523 '44029 ' 4 DAT NRCOOS 360 65 + -70.426 43.179 '44030 ' 4 DAT NRCOOS 360 62 + -69.355 43.715 '44032 ' 4 DAT NRCOOS 360 100 + -68.996 44.055 '44033 ' 4 DAT NRCOOS 360 110 + -68.112 44.103 '44034 ' 4 DAT NRCOOS 360 100 + -67.876 43.497 '44037 ' 4 DAT NRCOOS 360 285 + -73.580 40.956 '44040 ' 3.5 DAT UCT 360 18.3 + -75.715 36.199 '44056 ' -1 DAT USACE 360 17.4 + -73.703 40.369 '44065 ' 4 DAT NDBC 360 25 + -72.644 39.618 '44066 ' 4 DAT NDBC 360 78 + -73.087 40.699 '44069 ' 3 DAT SBROOKU 360 46 + -70.540 43.020 '44073 ' 2.6 DAT UNH 360 131 + -75.421 36.001 '44086 ' -1 DAT SIO 360 21 + -74.838 36.612 '44088 ' -1 DAT SIO 360 47 + -75.334 37.757 '44089 ' -1 DAT USACE 360 16.9 + -70.329 41.840 '44090 ' -1 DAT USGS 360 26 + -73.769 39.778 '44091 ' -1 DAT USACE 360 25.6 + -75.492 36.872 '44093 ' -1 DAT SIO 360 26.82 + -75.330 35.750 '44095 ' -1 DAT SIO 360 18.3 + -75.809 37.023 '44096 ' -1 DAT SIO 360 11.9 + -71.127 40.969 '44097 ' -1 DAT SIO 360 48.16 + -70.168 42.798 '44098 ' -1 DAT SIO 360 76.5 + -75.720 36.914 '44099 ' -1 DAT SIO 360 18.3 + -75.594 36.260 '44100 ' -1 DAT SIO 360 25.9 + -62.000 42.260 '44137 ' 5 DAT ENCAN 360 4000 + -57.100 44.240 '44139 ' 5 DAT ENCAN 360 1500 + -64.020 42.500 '44150 ' 5 DAT ENCAN 360 1300 + -63.400 44.500 '44258 ' 5 DAT ENCAN 360 58 + -147.949 56.232 '46001 ' 5 DAT NDBC 360 4054 + -130.537 42.612 '46002 ' 4 DAT NDBC 360 3413 + -136.100 50.930 '46004 ' 5 DAT ENCAN 360 3600 + -131.079 46.134 '46005 ' 4 DAT NDBC 360 2852 + -137.397 40.782 '46006 ' 4 DAT NDBC 360 4378 + -121.019 34.956 '46011 ' 5 DAT NDBC 360 464.8 + -160.000 57.700 '46021 ' -1 DAT NDBC 360 59 + -120.967 34.714 '46023 ' 10 DAT NDBC 360 384.1 + -119.200 33.000 '46024 ' -1 DAT NDBC 360 1213 + -119.053 33.763 '46025 ' 4 DAT NDBC 360 888 + -121.857 35.703 '46028 ' 5 DAT NDBC 360 1048 + -177.708 57.018 '46035 ' 5 DAT NDBC 360 3687 + -122.398 36.785 '46042 ' 5 DAT NDBC 360 1645.9 + -119.506 32.404 '46047 ' 4 DAT NDBC 360 1394 + -120.477 34.265 '46054 ' 4 DAT NDBC 360 469.4 + -129.951 38.094 '46059 ' 4 DAT NDBC 360 4628 + -146.805 60.584 '46060 ' 5 DAT NDBC 360 445 + -154.987 52.765 '46066 ' 5 DAT NDBC 360 4460 + -120.213 33.677 '46069 ' 4 DAT NDBC 360 977.8 + 175.153 55.082 '46070 ' 5 DAT NDBC 360 3835 + 179.012 51.125 '46071 ' 5 DAT NDBC 360 1681 + -172.088 51.672 '46072 ' 5 DAT NDBC 360 3572 + -172.001 55.031 '46073 ' 5 DAT NDBC 360 3051.5 + -160.817 53.983 '46075 ' 5 DAT NDBC 360 2392.7 + -147.990 59.502 '46076 ' 5 DAT NDBC 360 195.1 + -152.582 55.556 '46078 ' 5 DAT NDBC 360 5380 + -150.042 57.947 '46080 ' 5 DAT NDBC 360 254.5 + -143.372 59.681 '46082 ' 5 DAT NDBC 360 300 + -137.997 58.300 '46083 ' 5 DAT NDBC 360 136 + -136.102 56.622 '46084 ' 5 DAT NDBC 360 1158 + -142.882 55.883 '46085 ' 4 DAT NDBC 360 3721 + -118.052 32.499 '46086 ' 4 DAT NDBC 360 1844.7 + -125.771 45.925 '46089 ' 5 DAT NDBC 360 2293.3 + -122.029 36.751 '46092 ' 4 DAT MBARI 360 1000 + -122.351 36.723 '46114 ' -1 DAT SIO 360 1463 + -131.220 51.830 '46147 ' 5 DAT ENCAN 360 2000 + -131.100 53.620 '46183 ' 5 DAT ENCAN 360 65 + -138.850 53.910 '46184 ' 5 DAT ENCAN 360 3200 + -129.790 52.420 '46185 ' 5 DAT ENCAN 360 230 + -128.770 51.380 '46204 ' -1 DAT ENCAN 360 222 + -134.320 54.190 '46205 ' 5 DAT ENCAN 360 2675 + -126.000 48.840 '46206 ' 5 DAT ENCAN 360 72 + -129.920 50.870 '46207 ' 5 DAT ENCAN 360 2125 + -132.690 52.520 '46208 ' 5 DAT ENCAN 360 2950 + -123.472 37.950 '46214 ' -1 DAT SIO 360 550 + -120.783 34.454 '46218 ' -1 DAT SIO 360 548.6 + -119.882 33.225 '46219 ' -1 DAT SIO 360 274.3 + -118.634 33.855 '46221 ' -1 DAT SIO 360 370 + -118.317 33.618 '46222 ' -1 DAT SIO 360 457 + -117.391 32.933 '46225 ' -1 DAT SIO 360 549 + -117.370 32.747 '46231 ' -1 DAT SIO 360 201.17 + -117.421 32.530 '46232 ' -1 DAT SIO 360 1143 + -117.169 32.570 '46235 ' -1 DAT SIO 360 21 + -122.096 36.343 '46239 ' -1 DAT SIO 360 369 + -145.200 50.033 '46246 ' -1 DAT SIO 360 4252 + -119.559 33.761 '46251 ' -1 DAT SIO 360 1920 + -118.181 33.576 '46253 ' -1 DAT SIO 360 66 + -117.267 32.868 '46254 ' -1 DAT SIO 360 38.71 + -119.651 33.400 '46255 ' -1 DAT SIO 360 105 + -118.201 33.700 '46256 ' -1 DAT SIO 360 23.25 + -120.766 34.439 '46257 ' -1 DAT SIO 360 576.07 + -117.501 32.752 '46258 ' -1 DAT SIO 360 588.6 + -121.497 34.767 '46259 ' -1 DAT USACE 360 646.8 + -119.004 33.704 '46262 ' -1 DAT SIO 360 905 + -151.695 57.479 '46264 ' -1 DAT SIO 360 86 + -165.475 64.473 '46265 ' -1 DAT SIO 360 18.2 + -153.781 23.535 '51000 ' 5 DAT NDBC 360 4811 + -162.000 24.453 '51001 ' 4 DAT NDBC 360 4895 + -157.742 17.043 '51002 ' 4 DAT NDBC 360 4948 + -160.662 19.172 '51003 ' 4 DAT NDBC 360 4943.3 + -152.364 17.604 '51004 ' 4 DAT NDBC 360 4998 + -162.075 24.361 '51101 ' 4 DAT NDBC 360 4849 + -158.117 21.671 '51201 ' -1 DAT SIO 360 200 + -157.678 21.415 '51202 ' -1 DAT SIO 360 89 + -157.010 20.788 '51203 ' -1 DAT SIO 360 201 + -158.124 21.281 '51204 ' -1 DAT SIO 360 300 + -156.425 21.018 '51205 ' -1 DAT SIO 360 200 + -154.970 19.780 '51206 ' -1 DAT SIO 360 345 + -157.752 21.477 '51207 ' -1 DAT SIO 360 81 + -159.574 22.285 '51208 ' -1 DAT SIO 360 200 + -170.493 -14.264 '51209 ' -1 DAT SIO 360 82 + -157.756 21.477 '51210 ' -1 DAT SIO 360 80 + -157.959 21.297 '51211 ' -1 DAT SIO 360 35 + -158.149 21.323 '51212 ' -1 DAT SIO 360 280 + -157.003 20.750 '51213 ' -1 DAT SIO 360 235 + 144.788 13.354 '52200 ' -1 DAT SIO 360 200 + 171.392 7.083 '52201 ' -1 DAT SIO 360 540 + 144.812 13.684 '52202 ' -1 DAT SIO 360 510 + 145.662 15.268 '52211 ' -1 DAT SIO 360 487.68 + 134.667 7.630 '52212 ' -1 DAT SIO 360 97 + -5.000 45.230 '62001 ' 3 DAT UKMO 360 4556 + -12.430 48.720 '62029 ' 3 DAT UKMO 360 3575 + -4.400 50.000 '62050 ' -1 DAT UKMO 360 53 + -2.900 49.900 '62103 ' 14 DAT UKMO 360 18 + -12.570 55.420 '62105 ' 3 DAT UKMO 360 2899 + -6.100 50.102 '62107 ' 14 DAT UKMO 360 61 + 0.000 58.300 '62114 ' -1 DAT PRIVATE 360 142 + 0.700 54.000 '62127 ' -1 DAT PRIVATE 360 39 + 1.700 53.400 '62144 ' -1 DAT PRIVATE 360 16 + 2.800 53.102 '62145 ' -1 DAT PRIVATE 360 26 + 2.100 57.200 '62146 ' -1 DAT PRIVATE 360 98 + 1.500 53.600 '62148 ' -1 DAT PRIVATE 360 16 + 1.100 53.700 '62149 ' -1 DAT PRIVATE 360 16 + -8.470 47.550 '62163 ' 3 DAT UKMO 360 4000 + 1.100 54.000 '62165 ' -1 DAT PRIVATE 360 41 + 0.000 50.400 '62305 ' 14 DAT UKMO 360 39 + 1.500 59.500 '63110 ' -1 DAT PRIVATE 360 117 + 1.000 61.100 '63112 ' -1 DAT PRIVATE 360 156 + 1.708 61.000 '63113 ' -1 DAT PRIVATE 360 156 + 1.300 61.600 '63115 ' -1 DAT PRIVATE 360 156 + 1.100 61.400 '63117 ' -1 DAT PRIVATE 360 156 + -11.420 59.070 '64045 ' 3 DAT UKMO 360 1935 + -4.167 60.483 '64046 ' 3 DAT UKMO 360 230 diff --git a/tests/parm/ww3_shel.nml.IN b/tests/parm/ww3_shel.nml.IN new file mode 100644 index 00000000000..08c694963b8 --- /dev/null +++ b/tests/parm/ww3_shel.nml.IN @@ -0,0 +1,20 @@ +&input_nml + input%forcing%winds = 'C' + input%forcing%currents = '@[WAV_CUR]' + input%forcing%ice_conc = '@[WAV_ICE]' + input%forcing%ice_param1 = '@[WAV_IC1]' + input%forcing%ice_param5 = '@[WAV_IC5]' +/ + +&output_type_nml + type%field%list = '@[OUTPARS_WAV]' + type%point%file = 'ww3_points.list' +/ + +&output_date_nml + date%field%outffile = '1' + date%field%stride = '@[DTFLD]' + date%point%outffile = '1' + date%point%stride = '@[DTPNT]' + date%restart2%stride = '@[DT_2_RST]' +/ diff --git a/tests/rt.conf b/tests/rt.conf index 2921b397b5b..da5d08f6cf9 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -278,7 +278,12 @@ RUN | control_p8_atmlnd_sbs # ATM-WAV tests # ################################################################################################################################################################################### -COMPILE | -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON | - wcoss2.intel | fv3 | +#mediator (cmeps) +COMPILE | -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON | - wcoss2.intel | fv3 | +RUN | atmwav_control_noaero_p8 | - wcoss2.intel | fv3 | + +#connectors (wmesmf) +COMPILE | -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON | - wcoss2.intel | fv3 | RUN | control_atmwav | - wcoss2.intel | fv3 | #RUN | control_c384gdas_wav | - jet.intel cheyenne.intel wcoss2.intel | fv3 | diff --git a/tests/rt.sh b/tests/rt.sh index 66081f37520..bfd2469992a 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -446,7 +446,7 @@ if [[ $TESTS_FILE =~ '35d' ]] || [[ $TESTS_FILE =~ 'weekly' ]]; then fi -BL_DATE=20230405 +BL_DATE=20230407 RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-${BL_DATE}/${RT_COMPILER^^}} diff --git a/tests/run_test.sh b/tests/run_test.sh index 7b58d033948..1baa002a456 100755 --- a/tests/run_test.sh +++ b/tests/run_test.sh @@ -206,7 +206,8 @@ if [[ $CPLWAV == .true. ]]; then if [[ $MULTIGRID = 'true' ]]; then atparse < ${PATHRT}/parm/ww3_multi.inp.IN > ww3_multi.inp else - atparse < ${PATHRT}/parm/ww3_shel.inp.IN > ww3_shel.inp + atparse < ${PATHRT}/parm/ww3_shel.nml.IN > ww3_shel.nml + cp ${PATHRT}/parm/ww3_points.list . fi fi diff --git a/tests/tests/atmwav_control_noaero_p8 b/tests/tests/atmwav_control_noaero_p8 new file mode 100644 index 00000000000..23c528f6c1f --- /dev/null +++ b/tests/tests/atmwav_control_noaero_p8 @@ -0,0 +1,203 @@ +############################################################################### +# +# Global control test GFSv16 atmosphere only at C96L127, P8 configuration with 2way atm-wav coupling +# +############################################################################### + +export TEST_DESCR="Compare global control results with previous trunk version" + +export CNTL_DIR=atmwav_control_noaero_p8 + +export LIST_FILES="sfcf000.nc \ + sfcf012.nc \ + atmf000.nc \ + atmf012.nc \ + RESTART/20210322.180000.coupler.res \ + RESTART/20210322.180000.fv_core.res.nc \ + RESTART/20210322.180000.fv_core.res.tile1.nc \ + RESTART/20210322.180000.fv_core.res.tile2.nc \ + RESTART/20210322.180000.fv_core.res.tile3.nc \ + RESTART/20210322.180000.fv_core.res.tile4.nc \ + RESTART/20210322.180000.fv_core.res.tile5.nc \ + RESTART/20210322.180000.fv_core.res.tile6.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210322.180000.fv_tracer.res.tile1.nc \ + RESTART/20210322.180000.fv_tracer.res.tile2.nc \ + RESTART/20210322.180000.fv_tracer.res.tile3.nc \ + RESTART/20210322.180000.fv_tracer.res.tile4.nc \ + RESTART/20210322.180000.fv_tracer.res.tile5.nc \ + RESTART/20210322.180000.fv_tracer.res.tile6.nc \ + RESTART/20210322.180000.phy_data.tile1.nc \ + RESTART/20210322.180000.phy_data.tile2.nc \ + RESTART/20210322.180000.phy_data.tile3.nc \ + RESTART/20210322.180000.phy_data.tile4.nc \ + RESTART/20210322.180000.phy_data.tile5.nc \ + RESTART/20210322.180000.phy_data.tile6.nc \ + RESTART/20210322.180000.sfc_data.tile1.nc \ + RESTART/20210322.180000.sfc_data.tile2.nc \ + RESTART/20210322.180000.sfc_data.tile3.nc \ + RESTART/20210322.180000.sfc_data.tile4.nc \ + RESTART/20210322.180000.sfc_data.tile5.nc \ + RESTART/20210322.180000.sfc_data.tile6.nc \ + RESTART/ufs.atmw.cpl.r.2021-03-22-64800.nc \ + 20210322.180000.out_pnt.ww3 \ + 20210322.180000.out_grd.ww3 \ + ufs.atmw.ww3.r.2021-03-22-64800" + +export_fv3 +export NPZ=127 +export NPZP=128 +export DT_ATMOS=720 +export DT_INNER=${DT_ATMOS} +export SYEAR=2021 +export SMONTH=03 +export SDAY=22 +export SHOUR=06 +export RESTART_INTERVAL="12 -1" +export OUTPUT_GRID='gaussian_grid' + +export FHMAX=12 +export RESTART_INTERVAL="12 -1" + +export INPES=$INPES_cpl_atmw +export JNPES=$JNPES_cpl_atmw +export WRTTASK_PER_GROUP=$(( WPG_cpl_atmw * THRD_cpl_atmw )) +export WAV_tasks=$WAV_tasks_cpl_atmw + +export atm_omp_num_threads=$THRD_cpl_atmw +export med_omp_num_threads=$atm_omp_num_threads +export wav_omp_num_threads=$WAV_thrds_cpl_atmw + +export med_model=cmeps +export atm_model=fv3 +export wav_model=ww3 + +export ATMTILESIZE=`expr $NPX - 1` +export MESH_WAV=mesh.glo_1deg.nc + +# nems.configure +export coupling_interval_sec=${DT_ATMOS} +export NEMS_CONFIGURE="nems.configure.atmw.IN" + +# P7 default +export IALB=2 +export IEMS=2 +export LSM=2 +export IOPT_DVEG=4 +export IOPT_CRS=2 +export IOPT_RAD=3 +export IOPT_ALB=1 +export IOPT_STC=3 + +# P8 +export IOPT_SFC=3 +export IOPT_TRS=2 + +# FV3 P7 settings +export D2_BG_K1=0.20 +export D2_BG_K2=0.04 +export PSM_BC=1 +# P8 +export DDDMP=0.1 + +# P7 Merra2 Aerosols & NSST +export USE_MERRA2=.true. +export IAER=1011 +export NSTF_NAME=2,1,0,0,0 +export LHEATSTRG=.false. +export LSEASPRAY=.true. + +# P7 UGWP1 +export GWD_OPT=2 +export DO_UGWP_V1=.false. +export KNOB_UGWP_VERSION=0 +export KNOB_UGWP_NSLOPE=1 +export DO_UGWP_V0=.true. +export DO_GSL_DRAG_LS_BL=.false. +export DO_GSL_DRAG_SS=.true. +export DO_GSL_DRAG_TOFD=.false. +export DO_UGWP_V1_OROG_ONLY=.false. +export DO_UGWP_V0_NST_ONLY=.false. +export LDIAG_UGWP=.false. + +# P7 CA +export DO_CA=.true. +export CA_SGS=.true. +export CA_GLOBAL=.false. +export NCA=1 +export NCELLS=5 +export NLIVES=12 +export NTHRESH=18 +export NSEED=1 +export NFRACSEED=0.5 +export CA_TRIGGER=.true. +export NSPINUP=1 +export ISEED_CA=12345 + +# P7 settings +export TILEDFIX=.true. +export FNALBC="'C96.snowfree_albedo.tileX.nc'" +export FNALBC2="'C96.facsf.tileX.nc'" +export FNTG3C="'C96.substrate_temperature.tileX.nc'" +export FNVEGC="'C96.vegetation_greenness.tileX.nc'" +export FNVETC="'C96.vegetation_type.tileX.nc'" +export FNSOTC="'C96.soil_type.tileX.nc'" +export FNSMCC=${FNSMCC_control} +export FNMSKH=${FNMSKH_control} +export FNVMNC="'C96.vegetation_greenness.tileX.nc'" +export FNVMXC="'C96.vegetation_greenness.tileX.nc'" +export FNSLPC="'C96.slope_type.tileX.nc'" +export FNABSC="'C96.maximum_snow_albedo.tileX.nc'" +export LANDICE=".false." +export FSICL=0 +export FSICS=0 + +export IMP_PHYSICS=8 +export LGFDLMPRAD=.false. +export DO_SAT_ADJ=.false. +export DNATS=0 +export DZ_MIN=6 + +#atm-wav coupling +export MULTIGRID=false +export RESTART_N=${FHMAX} +#TODO: what should cplmode be? +export CPLMODE=nems_frac +export cap_dbug_flag=0 +export RUNTYPE=startup + +export CPL=.true. +export CPLWAV=.true. +export CPLWAV2ATM=.true. + +#required for NML.IN sharing +export MIN_SEAICE=0.15 +export FRAC_GRID=.true. +export MOM6_RESTART_SETTING=n +# P8 (not used for standalone) +export USE_CICE_ALB=.false. + +export WRITE_NSFLIP=.true. + +export FV3_RUN=control_run.IN +export CCPP_SUITE=FV3_GFS_v17_p8 + +export FIELD_TABLE=field_table_thompson_noaero_tke +export DIAG_TABLE=diag_table_p8_template +# use same namelist for standalone,coupled P7 +export INPUT_NML=cpld_control.nml.IN + +# RRTMGP +export DO_RRTMGP=.false. +export DOGP_CLDOPTICS_LUT=.true. +export DOGP_LWSCAT=.true. +export DOGP_SGS_CNV=.true. +export SATMEDMF=.true. +if [[ $MACHINE_ID = cheyenne.* ]]; then + TPN=18 +fi diff --git a/tests/tests/control_atmwav b/tests/tests/control_atmwav index 252402b040b..96636a01db7 100644 --- a/tests/tests/control_atmwav +++ b/tests/tests/control_atmwav @@ -74,7 +74,7 @@ export JNPES=$JNPES_cpl_atmw export atm_omp_num_threads=$THRD_cpl_atmw export WRTTASK_PER_GROUP=$WPG_cpl_atmw -WAV_tasks=${WAV_tasks_atmw} +export WAV_tasks=$WAV_tasks_cpl_atmw export CPL=.true. export CPLWAV=.true. @@ -83,6 +83,7 @@ export atm_model='fv3' export wav_model='ww3' export coupling_interval_sec=600 export NEMS_CONFIGURE="nems.configure.blocked_atm_wav_2way.IN" +export MODDEF_WAV=mod_def.glo_1deg export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_v16 diff --git a/tests/tests/cpld_bmark_p8 b/tests/tests/cpld_bmark_p8 index b20f1648199..38c84dcea8d 100644 --- a/tests/tests/cpld_bmark_p8 +++ b/tests/tests/cpld_bmark_p8 @@ -71,9 +71,6 @@ export OUTPUT_FH="3 -1" export FHZERO=3 export DOMAINS_STACK_SIZE=16000000 - -export RUN_BEG="${SYEAR}${SMONTH}${SDAY} $(printf "%02d" $(( ${SHOUR} )))0000" - export INPES=$INPES_cpl_bmrk export JNPES=$JNPES_cpl_bmrk export WRTTASK_PER_GROUP=$(( WPG_cpl_bmrk * THRD_cpl_bmrk )) @@ -110,6 +107,7 @@ export BLCKX=`expr $NX_GLB / $np2` export BLCKY=`expr $NY_GLB / 2` export WAVDOMAIN=gwes_30m export MESH_WAV=mesh.${WAVDOMAIN}.nc +export MODDEF_WAV=mod_def.${WAVDOMAIN} # set component and coupling timesteps export DT_ATMOS=300 @@ -148,8 +146,4 @@ export NSTF_NAME=2,1,0,0,0 export CDMBWD=${CDMBWD_c384} -export OUT_BEG=$RUN_BEG -export RST_BEG=$RUN_BEG -export RST_2_BEG=$RUN_BEG - export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_bmark_p8_35d b/tests/tests/cpld_bmark_p8_35d index 08376661838..2a3e389d69a 100644 --- a/tests/tests/cpld_bmark_p8_35d +++ b/tests/tests/cpld_bmark_p8_35d @@ -26,9 +26,6 @@ export FHZERO=6 export WLCLK=240 export DOMAINS_STACK_SIZE=16000000 - -export RUN_BEG="${SYEAR}${SMONTH}${SDAY} $(printf "%02d" $(( ${SHOUR} )))0000" - export INPES=$INPES_cpl_bmrk export JNPES=$JNPES_cpl_bmrk export WRITE_DOPOST=.true. @@ -64,6 +61,7 @@ export BLCKX=`expr $NX_GLB / $np2` export BLCKY=`expr $NY_GLB / 2` export WAVDOMAIN=gwes_30m export MESH_WAV=mesh.${WAVDOMAIN}.nc +export MODDEF_WAV=mod_def.${WAVDOMAIN} # set component and coupling timesteps export DT_ATMOS=300 @@ -102,8 +100,4 @@ export NSTF_NAME=2,1,0,0,0 export CDMBWD=${CDMBWD_c384} -export OUT_BEG=$RUN_BEG -export RST_BEG=$RUN_BEG -export RST_2_BEG=$RUN_BEG - export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_control_c192_p8 b/tests/tests/cpld_control_c192_p8 index 065d5fa288b..f342e2c43ad 100644 --- a/tests/tests/cpld_control_c192_p8 +++ b/tests/tests/cpld_control_c192_p8 @@ -99,6 +99,7 @@ export BLCKX=`expr $NX_GLB / $np2` export BLCKY=`expr $NY_GLB / 2` export WAVDOMAIN=mx${OCNRES} export MESH_WAV=mesh.${WAVDOMAIN}.nc +export MODDEF_WAV=mod_def.mx${OCNRES} # set component and coupling timesteps export DT_ATMOS=600 diff --git a/tests/tests/cpld_restart_bmark_p8 b/tests/tests/cpld_restart_bmark_p8 index 1d0e522b2b1..74db98864ba 100644 --- a/tests/tests/cpld_restart_bmark_p8 +++ b/tests/tests/cpld_restart_bmark_p8 @@ -74,7 +74,6 @@ export DOMAINS_STACK_SIZE=16000000 export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${FHROT} + ${SHOUR} )))0000" export RESTART_FILE_SUFFIX_SECS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%05d" $(( (${FHROT}+ ${SHOUR})*3600 )))" -export RUN_BEG="${SYEAR}${SMONTH}${SDAY} $(printf "%02d" $(( ${FHROT}+${SHOUR} )))0000" export INPES=$INPES_cpl_bmrk export JNPES=$JNPES_cpl_bmrk @@ -112,6 +111,7 @@ export BLCKX=`expr $NX_GLB / $np2` export BLCKY=`expr $NY_GLB / 2` export WAVDOMAIN=gwes_30m export MESH_WAV=mesh.${WAVDOMAIN}.nc +export MODDEF_WAV=mod_def.${WAVDOMAIN} # set component and coupling timesteps export DT_ATMOS=300 @@ -163,9 +163,4 @@ export USE_RESTART_TIME=.true. # MOM6 warm start export MOM6_RESTART_SETTING=r -# Waves -export OUT_BEG=$RUN_BEG -export RST_BEG=$RUN_BEG -export RST_2_BEG=$RUN_BEG - export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_restart_c192_p8 b/tests/tests/cpld_restart_c192_p8 index addb41fa76d..1bcca13f9b4 100644 --- a/tests/tests/cpld_restart_c192_p8 +++ b/tests/tests/cpld_restart_c192_p8 @@ -68,7 +68,6 @@ export FHZERO=3 export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${FHROT} + ${SHOUR} )))0000" export RESTART_FILE_SUFFIX_SECS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%05d" $(( (${FHROT}+ ${SHOUR})*3600 )))" -export RUN_BEG="${SYEAR}${SMONTH}${SDAY} $(printf "%02d" $(( ${FHROT}+${SHOUR} )))0000" export DOMAINS_STACK_SIZE=16000000 @@ -102,6 +101,7 @@ export BLCKX=`expr $NX_GLB / $np2` export BLCKY=`expr $NY_GLB / 2` export WAVDOMAIN=mx${OCNRES} export MESH_WAV=mesh.${WAVDOMAIN}.nc +export MODDEF_WAV=mod_def.mx${OCNRES} # set component and coupling timesteps export DT_ATMOS=600 @@ -152,11 +152,6 @@ export USE_RESTART_TIME=.true. # MOM6 warm start export MOM6_RESTART_SETTING=r -#Waves -export OUT_BEG=$RUN_BEG -export RST_BEG=$RUN_BEG -export RST_2_BEG=$RUN_BEG - export FV3_RUN=cpld_control_run.IN if [[ $MACHINE_ID = cheyenne.* ]]; then diff --git a/tests/tests/cpld_restart_p8 b/tests/tests/cpld_restart_p8 index 744d2fbd980..9d8a6f99887 100644 --- a/tests/tests/cpld_restart_p8 +++ b/tests/tests/cpld_restart_p8 @@ -65,7 +65,6 @@ export RESTART_N=$((FHMAX-$FHROT)) export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${FHROT} + ${SHOUR} )))0000" export RESTART_FILE_SUFFIX_SECS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%05d" $(( (${FHROT}+ ${SHOUR})*3600 )))" -export RUN_BEG="${SYEAR}${SMONTH}${SDAY} $(printf "%02d" $(( ${FHROT}+${SHOUR} )))0000" # ATM warm start export WARM_START=.true. @@ -83,11 +82,6 @@ export USE_RESTART_TIME=.true. # MOM6 warm start export MOM6_RESTART_SETTING=r -# Waves -export OUT_BEG=$RUN_BEG -export RST_BEG=$RUN_BEG -export RST_2_BEG=$RUN_BEG - export TOPOEDITS=ufs.topo_edits_011818.nc export MOM6_ALLOW_LANDMASK_CHANGES=True export eps_imesh=2.5e-1 diff --git a/tests/tests/cpld_restart_qr_p8 b/tests/tests/cpld_restart_qr_p8 index d9aa59c2c96..e8530ffd00f 100644 --- a/tests/tests/cpld_restart_qr_p8 +++ b/tests/tests/cpld_restart_qr_p8 @@ -66,7 +66,6 @@ export RESTART_N=$((FHMAX-$FHROT)) export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${FHROT} + ${SHOUR} )))0000" export RESTART_FILE_SUFFIX_SECS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%05d" $(( (${FHROT}+ ${SHOUR})*3600 )))" -export RUN_BEG="${SYEAR}${SMONTH}${SDAY} $(printf "%02d" $(( ${FHROT}+${SHOUR} )))0000" # ATM warm start export WARM_START=.true. @@ -84,11 +83,6 @@ export USE_RESTART_TIME=.true. # MOM6 warm start export MOM6_RESTART_SETTING=r -# Waves -export OUT_BEG=$RUN_BEG -export RST_BEG=$RUN_BEG -export RST_2_BEG=$RUN_BEG - export TOPOEDITS=ufs.topo_edits_011818.nc export MOM6_ALLOW_LANDMASK_CHANGES=True export eps_imesh=2.5e-1 diff --git a/tests/tests/hafs_regional_atm_ocn_wav b/tests/tests/hafs_regional_atm_ocn_wav index 9c3f0dfbcc3..b34eed8fd5d 100644 --- a/tests/tests/hafs_regional_atm_ocn_wav +++ b/tests/tests/hafs_regional_atm_ocn_wav @@ -12,8 +12,8 @@ export LIST_FILES="atmf006.nc \ sfcf006.nc \ archv.2019_241_06.a \ archs.2019_241_06.a \ - out_grd.ww3 \ - out_pnt.ww3 \ + 20190829.060000.out_grd.ww3 \ + 20190829.060000.out_pnt.ww3 \ ufs.hafs.ww3.r.2019-08-29-21600 \ ufs.hafs.cpl.r.2019-08-29-21600.nc" @@ -89,24 +89,6 @@ export CPLWAV=.true. export CPLWAV2ATM=.false. export CPL_IMP_MRG=.true. -export DTFLD="10800" -export DTPNT="10800" -export GOFILETYPE="" -export POFILETYPE="" -export UNIPOINTS='ww3' -export OUTPARS_WAV="WND HS T01 T02 DIR FP DP PHS PTP PDIR UST CHA USP" -export WW3GRIDLINE="'ww3' 'no' 'no' 'CPL:native' 'no' 'no' 'no' 'no' 'no' 'no' 1 1 0.00 1.00 F" -export WW3RSTDTHR=${FHMAX} -export DT_2_RST="$(printf "%02d" $(( ${WW3RSTDTHR}*3600 )))" -export RUN_BEG="${SYEAR}${SMONTH}${SDAY} $(printf "%02d" $(( ${SHOUR} )))0000" -export RUN_END="20190829 060000" -export OUT_BEG=$RUN_BEG -export OUT_END=$RUN_END -export RST_BEG=$RUN_BEG -export RST_2_BEG=$RUN_BEG -export RST_END=$RUN_END -export RST_2_END=$RUN_END - export CDEPS_DOCN=false export OCEAN_START_DTG=43340.00000 diff --git a/tests/tests/hafs_regional_atm_wav b/tests/tests/hafs_regional_atm_wav index cd1a8d57c5c..121c7f0ebb6 100644 --- a/tests/tests/hafs_regional_atm_wav +++ b/tests/tests/hafs_regional_atm_wav @@ -10,8 +10,8 @@ export CNTL_DIR=hafs_regional_atm_wav export LIST_FILES="atmf006.nc \ sfcf006.nc \ - out_grd.ww3 \ - out_pnt.ww3 \ + 20190829.060000.out_grd.ww3 \ + 20190829.060000.out_pnt.ww3 \ ufs.hafs.ww3.r.2019-08-29-21600 \ ufs.hafs.cpl.r.2019-08-29-21600.nc" @@ -87,26 +87,6 @@ export CPLWAV=.true. export CPLWAV2ATM=.true. export CPL_IMP_MRG=.true. -# shel.inp -export INPUT_CURFLD='F F Currents' -export DTFLD="10800" -export DTPNT="10800" -export GOFILETYPE="" -export POFILETYPE="" -export OUTPARS_WAV="WND HS T01 T02 DIR FP DP PHS PTP PDIR UST CHA USP" -export UNIPOINTS='ww3' -export WW3GRIDLINE="'ww3' 'no' 'no' 'CPL:native' 'no' 'no' 'no' 'no' 'no' 'no' 1 1 0.00 1.00 F" -export WW3RSTDTHR=${FHMAX} -export DT_2_RST="$(printf "%02d" $(( ${WW3RSTDTHR}*3600 )))" -export RUN_BEG="${SYEAR}${SMONTH}${SDAY} $(printf "%02d" $(( ${SHOUR} )))0000" -export RUN_END="20190829 060000" -export OUT_BEG=$RUN_BEG -export OUT_END=$RUN_END -export RST_BEG=$RUN_BEG -export RST_2_BEG=$RUN_BEG -export RST_END=$RUN_END -export RST_2_END=$RUN_END - export CDEPS_DOCN=false export OCEAN_START_DTG=43340.00000 @@ -116,6 +96,8 @@ export wav_model="ww3" WAV_tasks=60 export coupling_interval_sec=360 export MESH_ATM="unset" +# ATM-WAV coupling only +export WAV_CUR='F' export FIELD_TABLE=field_table_hafs export DIAG_TABLE=diag_table_hafs_template diff --git a/tests/tests/hafs_regional_storm_following_1nest_atm_ocn_wav b/tests/tests/hafs_regional_storm_following_1nest_atm_ocn_wav index e9a80d5d3ca..9f8a594ed99 100644 --- a/tests/tests/hafs_regional_storm_following_1nest_atm_ocn_wav +++ b/tests/tests/hafs_regional_storm_following_1nest_atm_ocn_wav @@ -14,8 +14,8 @@ export LIST_FILES="atmf006.nc \ sfc.nest02.f006.nc \ archv.2020_238_18.a \ archs.2020_238_18.a \ - out_grd.ww3 \ - out_pnt.ww3" + 20200825.180000.out_grd.ww3 \ + 20200825.180000.out_pnt.ww3" export_fv3 export_hafs @@ -111,24 +111,6 @@ export CPLWAV=.true. export CPLWAV2ATM=.false. export CPL_IMP_MRG=.true. -export DTFLD="10800" -export DTPNT="10800" -export GOFILETYPE="" -export POFILETYPE="" -export UNIPOINTS='ww3' -export OUTPARS_WAV="WND HS T01 T02 DIR FP DP PHS PTP PDIR UST CHA USP" -export WW3GRIDLINE="'ww3' 'no' 'no' 'CPL:native' 'no' 'no' 'no' 'no' 'no' 'no' 1 1 0.00 1.00 F" -export WW3RSTDTHR=${FHMAX} -export DT_2_RST="$(printf "%02d" $(( ${WW3RSTDTHR}*3600 )))" -export RUN_BEG="${SYEAR}${SMONTH}${SDAY} $(printf "%02d" $(( ${SHOUR} )))0000" -export RUN_END="20200825 180000" -export OUT_BEG=$RUN_BEG -export OUT_END=$RUN_END -export RST_BEG=$RUN_BEG -export RST_2_BEG=$RUN_BEG -export RST_END=$RUN_END -export RST_2_END=$RUN_END - # nems.configure export med_model=cmeps export CAP_DBUG_FLAG=0 From f1feb8dfca209760869c8bcbeb7e8a3aa13b34f6 Mon Sep 17 00:00:00 2001 From: Jun Wang <37633869+junwang-noaa@users.noreply.github.com> Date: Wed, 12 Apr 2023 14:07:01 -0400 Subject: [PATCH 19/30] fix the fdiag for GEFS EP4 (#1704) * fix the fdiag for GEFS EP4 * update fv3 with atm.logf file --- FV3 | 2 +- tests/RegressionTests_cheyenne.gnu.log | 336 +++--- tests/RegressionTests_cheyenne.intel.log | 1040 ++++++++-------- tests/RegressionTests_hera.gnu.log | 484 ++++---- tests/RegressionTests_hera.intel.log | 1373 +++++++++------------- tests/RegressionTests_jet.intel.log | 950 +++++++-------- tests/RegressionTests_orion.intel.log | 1068 ++++++++--------- tests/RegressionTests_wcoss2.intel.log | 878 +++++++------- 8 files changed, 2971 insertions(+), 3160 deletions(-) diff --git a/FV3 b/FV3 index decb0b9baa8..f964b4b5e48 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit decb0b9baa89e30885d00be208aa476667fe9922 +Subproject commit f964b4b5e4807363f891c8b2e7a10a8534f109a6 diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index e4942b76bf2..c734bff5851 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,21 +1,21 @@ -Sun Apr 9 20:08:23 MDT 2023 +Tue Apr 11 20:08:21 MDT 2023 Start Regression test -Compile 001 elapsed time 382 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 397 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 841 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 183 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 375 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 1074 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 846 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 859 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 643 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 568 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 349 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 012 elapsed time 297 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 001 elapsed time 378 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 394 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 840 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 188 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 376 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 1085 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 838 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 842 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 629 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 563 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 343 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 012 elapsed time 298 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/control_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/control_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/control_c48 Checking test 001 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -54,14 +54,14 @@ Checking test 001 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 820.970224 -0:The maximum resident set size (KB) = 679748 +0:The total amount of wall time = 820.721690 +0:The maximum resident set size (KB) = 679708 Test 001 control_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/control_stochy +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/control_stochy Checking test 002 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -72,14 +72,14 @@ Checking test 002 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 176.431440 -0:The maximum resident set size (KB) = 443272 +0:The total amount of wall time = 177.191681 +0:The maximum resident set size (KB) = 443284 Test 002 control_stochy PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/control_ras -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/control_ras +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/control_ras Checking test 003 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -90,14 +90,14 @@ Checking test 003 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 287.861415 -0:The maximum resident set size (KB) = 452052 +0:The total amount of wall time = 293.336442 +0:The maximum resident set size (KB) = 451988 Test 003 control_ras PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/control_p8 Checking test 004 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -144,14 +144,14 @@ Checking test 004 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 302.489753 -0:The maximum resident set size (KB) = 1224952 +0:The total amount of wall time = 308.486307 +0:The maximum resident set size (KB) = 1224928 Test 004 control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/rap_control Checking test 005 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -198,14 +198,14 @@ Checking test 005 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 711.682676 -0:The maximum resident set size (KB) = 791680 +0:The total amount of wall time = 714.711826 +0:The maximum resident set size (KB) = 791708 Test 005 rap_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/rap_decomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/rap_decomp Checking test 006 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -252,14 +252,14 @@ Checking test 006 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 712.008557 -0:The maximum resident set size (KB) = 791496 +0:The total amount of wall time = 717.814324 +0:The maximum resident set size (KB) = 791508 Test 006 rap_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/rap_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/rap_2threads Checking test 007 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -306,14 +306,14 @@ Checking test 007 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 646.575162 -0:The maximum resident set size (KB) = 865888 +0:The total amount of wall time = 652.665027 +0:The maximum resident set size (KB) = 865772 Test 007 rap_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/rap_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/rap_restart Checking test 008 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -352,14 +352,14 @@ Checking test 008 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 351.543950 -0:The maximum resident set size (KB) = 538972 +0:The total amount of wall time = 354.482659 +0:The maximum resident set size (KB) = 538976 Test 008 rap_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/rap_sfcdiff Checking test 009 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -406,14 +406,14 @@ Checking test 009 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 714.355917 -0:The maximum resident set size (KB) = 791884 +0:The total amount of wall time = 715.721695 +0:The maximum resident set size (KB) = 791916 Test 009 rap_sfcdiff PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/rap_sfcdiff_decomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/rap_sfcdiff_decomp Checking test 010 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -460,14 +460,14 @@ Checking test 010 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 723.163712 -0:The maximum resident set size (KB) = 791316 +0:The total amount of wall time = 727.615618 +0:The maximum resident set size (KB) = 791224 Test 010 rap_sfcdiff_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/rap_sfcdiff_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/rap_sfcdiff_restart Checking test 011 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -506,14 +506,14 @@ Checking test 011 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 521.850532 -0:The maximum resident set size (KB) = 544228 +0:The total amount of wall time = 527.932231 +0:The maximum resident set size (KB) = 544364 Test 011 rap_sfcdiff_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/hrrr_control Checking test 012 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -560,14 +560,14 @@ Checking test 012 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 691.834734 -0:The maximum resident set size (KB) = 789116 +0:The total amount of wall time = 695.479475 +0:The maximum resident set size (KB) = 789032 Test 012 hrrr_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/hrrr_control_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/hrrr_control_2threads Checking test 013 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -614,14 +614,14 @@ Checking test 013 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 626.605950 -0:The maximum resident set size (KB) = 860660 +0:The total amount of wall time = 626.847430 +0:The maximum resident set size (KB) = 860684 Test 013 hrrr_control_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/hrrr_control_decomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/hrrr_control_decomp Checking test 014 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -668,14 +668,14 @@ Checking test 014 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 688.582340 -0:The maximum resident set size (KB) = 788772 +0:The total amount of wall time = 693.270393 +0:The maximum resident set size (KB) = 788916 Test 014 hrrr_control_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/hrrr_control_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/hrrr_control_restart Checking test 015 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -714,14 +714,14 @@ Checking test 015 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 507.261539 -0:The maximum resident set size (KB) = 540292 +0:The total amount of wall time = 510.029112 +0:The maximum resident set size (KB) = 540404 Test 015 hrrr_control_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rrfs_v1beta -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/rrfs_v1beta +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/rrfs_v1beta Checking test 016 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -768,14 +768,14 @@ Checking test 016 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 704.192064 -0:The maximum resident set size (KB) = 788776 +0:The total amount of wall time = 707.845561 +0:The maximum resident set size (KB) = 788880 Test 016 rrfs_v1beta PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/rrfs_smoke_conus13km_hrrr_warm Checking test 017 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -784,14 +784,14 @@ Checking test 017 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 230.487564 -0:The maximum resident set size (KB) = 636944 +0:The total amount of wall time = 230.347433 +0:The maximum resident set size (KB) = 636604 Test 017 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/rrfs_smoke_conus13km_hrrr_warm_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 018 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -800,14 +800,14 @@ Checking test 018 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 146.054047 -0:The maximum resident set size (KB) = 661196 +0:The total amount of wall time = 148.461192 +0:The maximum resident set size (KB) = 661244 Test 018 rrfs_smoke_conus13km_hrrr_warm_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/rrfs_conus13km_hrrr_warm Checking test 019 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -816,14 +816,14 @@ Checking test 019 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 212.378657 -0:The maximum resident set size (KB) = 615828 +0:The total amount of wall time = 212.377057 +0:The maximum resident set size (KB) = 615540 Test 019 rrfs_conus13km_hrrr_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/rrfs_smoke_conus13km_radar_tten_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/rrfs_smoke_conus13km_radar_tten_warm Checking test 020 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -832,234 +832,234 @@ Checking test 020 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 231.524904 -0:The maximum resident set size (KB) = 639316 +0:The total amount of wall time = 233.939857 +0:The maximum resident set size (KB) = 639416 Test 020 rrfs_smoke_conus13km_radar_tten_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 021 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 111.320954 -0:The maximum resident set size (KB) = 596600 +0:The total amount of wall time = 113.195002 +0:The maximum resident set size (KB) = 597236 Test 021 rrfs_conus13km_hrrr_warm_restart_mismatch PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/control_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/control_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/control_diag_debug Checking test 022 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 81.968554 -0:The maximum resident set size (KB) = 491876 +0:The total amount of wall time = 83.289662 +0:The maximum resident set size (KB) = 491860 Test 022 control_diag_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/regional_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/regional_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/regional_debug Checking test 023 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 474.112499 -0:The maximum resident set size (KB) = 567656 +0:The total amount of wall time = 478.916928 +0:The maximum resident set size (KB) = 566832 Test 023 regional_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/rap_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/rap_control_debug Checking test 024 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 144.977452 -0:The maximum resident set size (KB) = 805596 +0:The total amount of wall time = 145.401198 +0:The maximum resident set size (KB) = 805524 Test 024 rap_control_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/hrrr_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/hrrr_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/hrrr_control_debug Checking test 025 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 142.763994 -0:The maximum resident set size (KB) = 801356 +0:The total amount of wall time = 144.100722 +0:The maximum resident set size (KB) = 801336 Test 025 hrrr_control_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rap_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/rap_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/rap_diag_debug Checking test 026 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 151.291881 -0:The maximum resident set size (KB) = 888012 +0:The total amount of wall time = 152.259800 +0:The maximum resident set size (KB) = 888016 Test 026 rap_diag_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/rap_noah_sfcdiff_cires_ugwp_debug Checking test 027 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 234.375013 -0:The maximum resident set size (KB) = 804624 +0:The total amount of wall time = 235.195591 +0:The maximum resident set size (KB) = 804160 Test 027 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rap_progcld_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/rap_progcld_thompson_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/rap_progcld_thompson_debug Checking test 028 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 145.988963 -0:The maximum resident set size (KB) = 805404 +0:The total amount of wall time = 145.674779 +0:The maximum resident set size (KB) = 805412 Test 028 rap_progcld_thompson_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rrfs_v1beta_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/rrfs_v1beta_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/rrfs_v1beta_debug Checking test 029 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 143.482968 -0:The maximum resident set size (KB) = 801064 +0:The total amount of wall time = 144.459248 +0:The maximum resident set size (KB) = 801132 Test 029 rrfs_v1beta_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/control_ras_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/control_ras_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/control_ras_debug Checking test 030 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 80.406425 -0:The maximum resident set size (KB) = 446140 +0:The total amount of wall time = 80.876742 +0:The maximum resident set size (KB) = 446004 Test 030 control_ras_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/control_stochy_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/control_stochy_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/control_stochy_debug Checking test 031 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 88.237903 -0:The maximum resident set size (KB) = 438768 +0:The total amount of wall time = 90.776968 +0:The maximum resident set size (KB) = 438756 Test 031 control_stochy_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/control_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/control_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/control_debug_p8 Checking test 032 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 91.628340 -0:The maximum resident set size (KB) = 1221424 +0:The total amount of wall time = 92.951681 +0:The maximum resident set size (KB) = 1221308 Test 032 control_debug_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 033 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 435.279223 -0:The maximum resident set size (KB) = 641620 +0:The total amount of wall time = 438.449997 +0:The maximum resident set size (KB) = 641608 Test 033 rrfs_smoke_conus13km_hrrr_warm_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 034 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 256.021905 -0:The maximum resident set size (KB) = 661420 +0:The total amount of wall time = 257.740088 +0:The maximum resident set size (KB) = 666684 Test 034 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/rrfs_conus13km_hrrr_warm_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/rrfs_conus13km_hrrr_warm_debug Checking test 035 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 393.262160 -0:The maximum resident set size (KB) = 620428 +0:The total amount of wall time = 395.593909 +0:The maximum resident set size (KB) = 620024 Test 035 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/control_wam_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/control_wam_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/control_wam_debug Checking test 036 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 139.243728 -0:The maximum resident set size (KB) = 182764 +0:The total amount of wall time = 140.097725 +0:The maximum resident set size (KB) = 182704 Test 036 control_wam_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/rap_control_dyn32_phy32 Checking test 037 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1106,14 +1106,14 @@ Checking test 037 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 698.577409 -0:The maximum resident set size (KB) = 673096 +0:The total amount of wall time = 702.819708 +0:The maximum resident set size (KB) = 673316 Test 037 rap_control_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/hrrr_control_dyn32_phy32 Checking test 038 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1160,14 +1160,14 @@ Checking test 038 hrrr_control_dyn32_phy32 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 = 354.621202 -0:The maximum resident set size (KB) = 670684 +0:The total amount of wall time = 359.153599 +0:The maximum resident set size (KB) = 670720 Test 038 hrrr_control_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/rap_2threads_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/rap_2threads_dyn32_phy32 Checking test 039 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1214,14 +1214,14 @@ Checking test 039 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 641.162632 -0:The maximum resident set size (KB) = 719488 +0:The total amount of wall time = 639.891813 +0:The maximum resident set size (KB) = 719660 Test 039 rap_2threads_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/hrrr_control_2threads_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/hrrr_control_2threads_dyn32_phy32 Checking test 040 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1268,14 +1268,14 @@ Checking test 040 hrrr_control_2threads_dyn32_phy32 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 = 320.060803 -0:The maximum resident set size (KB) = 716804 +0:The total amount of wall time = 318.795526 +0:The maximum resident set size (KB) = 716736 Test 040 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/hrrr_control_decomp_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/hrrr_control_decomp_dyn32_phy32 Checking test 041 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1322,14 +1322,14 @@ Checking test 041 hrrr_control_decomp_dyn32_phy32 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 = 354.584358 -0:The maximum resident set size (KB) = 670680 +0:The total amount of wall time = 354.518223 +0:The maximum resident set size (KB) = 670816 Test 041 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/rap_restart_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/rap_restart_dyn32_phy32 Checking test 042 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1368,14 +1368,14 @@ Checking test 042 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 516.196609 -0:The maximum resident set size (KB) = 511256 +0:The total amount of wall time = 518.234239 +0:The maximum resident set size (KB) = 511232 Test 042 rap_restart_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/hrrr_control_restart_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/hrrr_control_restart_dyn32_phy32 Checking test 043 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1414,14 +1414,14 @@ Checking test 043 hrrr_control_restart_dyn32_phy32 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 = 178.942940 -0:The maximum resident set size (KB) = 507552 +0:The total amount of wall time = 179.497128 +0:The maximum resident set size (KB) = 507624 Test 043 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rap_control_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/rap_control_dyn64_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/rap_control_dyn64_phy32 Checking test 044 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1468,56 +1468,56 @@ Checking test 044 rap_control_dyn64_phy32 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 = 413.639959 -0:The maximum resident set size (KB) = 693500 +0:The total amount of wall time = 415.212300 +0:The maximum resident set size (KB) = 692580 Test 044 rap_control_dyn64_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/rap_control_debug_dyn32_phy32 Checking test 045 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 143.237291 -0:The maximum resident set size (KB) = 687888 +0:The total amount of wall time = 143.691183 +0:The maximum resident set size (KB) = 687872 Test 045 rap_control_debug_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/hrrr_control_debug_dyn32_phy32 Checking test 046 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 141.405341 -0:The maximum resident set size (KB) = 683772 +0:The total amount of wall time = 140.763593 +0:The maximum resident set size (KB) = 683820 Test 046 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/rap_control_dyn64_phy32_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/rap_control_dyn64_phy32_debug Checking test 047 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 147.641110 -0:The maximum resident set size (KB) = 707648 +0:The total amount of wall time = 148.179575 +0:The maximum resident set size (KB) = 707640 Test 047 rap_control_dyn64_phy32_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/cpld_control_p8 Checking test 048 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1582,14 +1582,14 @@ Checking test 048 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 500.535798 -0:The maximum resident set size (KB) = 3159420 +0:The total amount of wall time = 499.892145 +0:The maximum resident set size (KB) = 3160848 Test 048 cpld_control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/cpld_control_nowave_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/cpld_control_nowave_noaero_p8 Checking test 049 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1651,14 +1651,14 @@ Checking test 049 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 248.705270 -0:The maximum resident set size (KB) = 1240280 +0:The total amount of wall time = 248.382769 +0:The maximum resident set size (KB) = 1240568 Test 049 cpld_control_nowave_noaero_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/cpld_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/cpld_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/cpld_debug_p8 Checking test 050 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1711,25 +1711,25 @@ Checking test 050 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 197.378714 -0:The maximum resident set size (KB) = 3175592 +0:The total amount of wall time = 203.121279 +0:The maximum resident set size (KB) = 3172932 Test 050 cpld_debug_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_66555/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/datm_cdeps_control_cfsr Checking test 051 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 173.036382 -0:The maximum resident set size (KB) = 675344 +0:The total amount of wall time = 172.802693 +0:The maximum resident set size (KB) = 673668 Test 051 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Sun Apr 9 20:41:08 MDT 2023 -Elapsed time: 00h:32m:45s. Have a nice day! +Tue Apr 11 20:41:12 MDT 2023 +Elapsed time: 00h:32m:52s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index f59ea757250..25e5f570cf2 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,43 +1,45 @@ -Sun Apr 9 19:53:23 MDT 2023 +Tue Apr 11 19:53:34 MDT 2023 Start Regression test -Compile 001 elapsed time 1359 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 1364 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 1357 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 456 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 384 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 1071 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 1072 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 1727 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 1060 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 980 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 011 elapsed time 931 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 799 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 1284 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 398 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 265 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 843 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 832 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 268 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 276 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 1130 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 021 elapsed time 344 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 1583 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 1115 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 024 elapsed time 427 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 197 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 422 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 109 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 960 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 993 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 1016 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 906 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 891 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 033 elapsed time 293 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 034 elapsed time 1045 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Test 008 compile FAIL + +Compile 001 elapsed time 1439 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1372 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 1362 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 448 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 390 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 1066 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 1076 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 1694 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 1065 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 983 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 011 elapsed time 925 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 797 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 1286 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 404 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 262 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 841 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 829 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 272 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 275 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 1131 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 021 elapsed time 348 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 1578 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 1107 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 024 elapsed time 423 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 198 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 424 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 104 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 947 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 1006 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 1015 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 905 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 866 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 033 elapsed time 290 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 034 elapsed time 1021 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8_mixedmode -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/cpld_control_p8_mixedmode +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -102,14 +104,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 319.742455 -0:The maximum resident set size (KB) = 2698256 +0:The total amount of wall time = 318.860274 +0:The maximum resident set size (KB) = 2698108 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_gfsv17 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/cpld_control_gfsv17 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -173,14 +175,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 282.373524 -0:The maximum resident set size (KB) = 1437592 +0:The total amount of wall time = 280.572469 +0:The maximum resident set size (KB) = 1437432 Test 002 cpld_control_gfsv17 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -245,14 +247,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 321.593800 -0:The maximum resident set size (KB) = 2715200 +0:The total amount of wall time = 321.798272 +0:The maximum resident set size (KB) = 2715416 Test 003 cpld_control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/cpld_restart_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -305,14 +307,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 185.702321 -0:The maximum resident set size (KB) = 2576336 +0:The total amount of wall time = 188.016657 +0:The maximum resident set size (KB) = 2576444 Test 004 cpld_restart_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/cpld_control_qr_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -377,14 +379,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 328.812908 -0:The maximum resident set size (KB) = 2719596 +0:The total amount of wall time = 315.588310 +0:The maximum resident set size (KB) = 2719496 Test 005 cpld_control_qr_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/cpld_restart_qr_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -437,14 +439,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 191.946246 -0:The maximum resident set size (KB) = 2593528 +0:The total amount of wall time = 198.041793 +0:The maximum resident set size (KB) = 2593712 Test 006 cpld_restart_qr_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/cpld_2threads_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -497,14 +499,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 252.074595 -0:The maximum resident set size (KB) = 3178144 +0:The total amount of wall time = 248.812422 +0:The maximum resident set size (KB) = 3177756 Test 007 cpld_2threads_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/cpld_decomp_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -557,14 +559,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 308.792643 -0:The maximum resident set size (KB) = 2722460 +0:The total amount of wall time = 321.235614 +0:The maximum resident set size (KB) = 2720456 Test 008 cpld_decomp_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/cpld_mpi_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -617,14 +619,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 276.509858 -0:The maximum resident set size (KB) = 2680300 +0:The total amount of wall time = 275.285525 +0:The maximum resident set size (KB) = 2680400 Test 009 cpld_mpi_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_ciceC_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/cpld_control_ciceC_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -689,14 +691,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 323.403857 -0:The maximum resident set size (KB) = 2715332 +0:The total amount of wall time = 312.161608 +0:The maximum resident set size (KB) = 2715452 Test 010 cpld_control_ciceC_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/cpld_control_c192_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/cpld_control_c192_p8 Checking test 011 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -749,14 +751,14 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -0:The total amount of wall time = 612.283957 -0:The maximum resident set size (KB) = 3351916 +0:The total amount of wall time = 620.898845 +0:The maximum resident set size (KB) = 3352344 Test 011 cpld_control_c192_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/cpld_restart_c192_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/cpld_restart_c192_p8 Checking test 012 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -809,14 +811,14 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -0:The total amount of wall time = 380.174612 -0:The maximum resident set size (KB) = 3276764 +0:The total amount of wall time = 378.158198 +0:The maximum resident set size (KB) = 3276296 Test 012 cpld_restart_c192_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/cpld_control_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/cpld_control_noaero_p8 Checking test 013 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -880,14 +882,14 @@ Checking test 013 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 284.430369 -0:The maximum resident set size (KB) = 1435632 +0:The total amount of wall time = 296.365902 +0:The maximum resident set size (KB) = 1435600 Test 013 cpld_control_noaero_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/cpld_control_nowave_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/cpld_control_nowave_noaero_p8 Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -949,14 +951,14 @@ Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 188.704212 -0:The maximum resident set size (KB) = 1453332 +0:The total amount of wall time = 188.090823 +0:The maximum resident set size (KB) = 1453224 Test 014 cpld_control_nowave_noaero_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/cpld_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/cpld_debug_p8 Checking test 015 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1009,14 +1011,14 @@ Checking test 015 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 349.189983 -0:The maximum resident set size (KB) = 2778808 +0:The total amount of wall time = 354.246379 +0:The maximum resident set size (KB) = 2779088 Test 015 cpld_debug_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_debug_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/cpld_debug_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/cpld_debug_noaero_p8 Checking test 016 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1068,14 +1070,14 @@ Checking test 016 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 298.519012 -0:The maximum resident set size (KB) = 1453800 +0:The total amount of wall time = 299.100901 +0:The maximum resident set size (KB) = 1453772 Test 016 cpld_debug_noaero_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_noaero_p8_agrid -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/cpld_control_noaero_p8_agrid +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/cpld_control_noaero_p8_agrid Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1137,14 +1139,14 @@ Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 242.819753 -0:The maximum resident set size (KB) = 1456876 +0:The total amount of wall time = 252.210062 +0:The maximum resident set size (KB) = 1457132 Test 017 cpld_control_noaero_p8_agrid PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/cpld_control_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/cpld_control_c48 Checking test 018 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1194,14 +1196,14 @@ Checking test 018 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 600.873027 -0:The maximum resident set size (KB) = 2586528 +0:The total amount of wall time = 603.472287 +0:The maximum resident set size (KB) = 2586580 Test 018 cpld_control_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/cpld_warmstart_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/cpld_warmstart_c48 Checking test 019 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1251,14 +1253,14 @@ Checking test 019 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -0:The total amount of wall time = 163.680831 -0:The maximum resident set size (KB) = 2601440 +0:The total amount of wall time = 162.061580 +0:The maximum resident set size (KB) = 2601468 Test 019 cpld_warmstart_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/cpld_restart_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/cpld_restart_c48 Checking test 020 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1308,14 +1310,14 @@ Checking test 020 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -0:The total amount of wall time = 84.542904 -0:The maximum resident set size (KB) = 2019160 +0:The total amount of wall time = 84.473453 +0:The maximum resident set size (KB) = 2019100 Test 020 cpld_restart_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_CubedSphereGrid -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_CubedSphereGrid +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_CubedSphereGrid Checking test 021 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1342,28 +1344,28 @@ Checking test 021 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -0:The total amount of wall time = 138.413248 -0:The maximum resident set size (KB) = 454228 +0:The total amount of wall time = 143.037221 +0:The maximum resident set size (KB) = 454128 Test 021 control_CubedSphereGrid PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_CubedSphereGrid_parallel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_CubedSphereGrid_parallel +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_CubedSphereGrid_parallel Checking test 022 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK + Comparing sfcf024.nc .........OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK -0:The total amount of wall time = 136.393214 -0:The maximum resident set size (KB) = 454256 +0:The total amount of wall time = 141.205624 +0:The maximum resident set size (KB) = 454156 Test 022 control_CubedSphereGrid_parallel PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_latlon -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_latlon +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_latlon Checking test 023 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1374,14 +1376,14 @@ Checking test 023 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 142.651130 -0:The maximum resident set size (KB) = 454216 +0:The total amount of wall time = 146.621785 +0:The maximum resident set size (KB) = 454192 Test 023 control_latlon PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_wrtGauss_netcdf_parallel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_wrtGauss_netcdf_parallel +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_wrtGauss_netcdf_parallel Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1392,14 +1394,14 @@ Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 146.406409 -0:The maximum resident set size (KB) = 454228 +0:The total amount of wall time = 148.597593 +0:The maximum resident set size (KB) = 454156 Test 024 control_wrtGauss_netcdf_parallel PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_c48 Checking test 025 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1438,14 +1440,14 @@ Checking test 025 control_c48 results .... Comparing 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.779075 -0:The maximum resident set size (KB) = 633460 +0:The total amount of wall time = 448.995714 +0:The maximum resident set size (KB) = 633500 Test 025 control_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_c192 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_c192 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_c192 Checking test 026 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1456,14 +1458,14 @@ Checking test 026 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 574.579509 -0:The maximum resident set size (KB) = 560308 +0:The total amount of wall time = 594.505632 +0:The maximum resident set size (KB) = 560344 Test 026 control_c192 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_c384 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_c384 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_c384 Checking test 027 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1474,14 +1476,14 @@ Checking test 027 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 565.062257 -0:The maximum resident set size (KB) = 902508 +0:The total amount of wall time = 589.446216 +0:The maximum resident set size (KB) = 899424 Test 027 control_c384 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_c384gdas -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_c384gdas +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_c384gdas Checking test 028 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1524,14 +1526,14 @@ Checking test 028 control_c384gdas 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 = 511.042331 -0:The maximum resident set size (KB) = 1026944 +0:The total amount of wall time = 513.919739 +0:The maximum resident set size (KB) = 1027780 Test 028 control_c384gdas PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_stochy +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_stochy Checking test 029 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1542,28 +1544,28 @@ Checking test 029 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 97.097285 -0:The maximum resident set size (KB) = 458988 +0:The total amount of wall time = 97.902676 +0:The maximum resident set size (KB) = 459096 Test 029 control_stochy PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_stochy_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_stochy_restart Checking test 030 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 51.824333 -0:The maximum resident set size (KB) = 226496 +0:The total amount of wall time = 52.758501 +0:The maximum resident set size (KB) = 226816 Test 030 control_stochy_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_lndp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_lndp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_lndp Checking test 031 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1574,14 +1576,14 @@ Checking test 031 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 90.204746 -0:The maximum resident set size (KB) = 458284 +0:The total amount of wall time = 91.064799 +0:The maximum resident set size (KB) = 458212 Test 031 control_lndp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_iovr4 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_iovr4 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_iovr4 Checking test 032 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1596,14 +1598,14 @@ Checking test 032 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 146.106055 -0:The maximum resident set size (KB) = 454236 +0:The total amount of wall time = 147.328275 +0:The maximum resident set size (KB) = 454256 Test 032 control_iovr4 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_iovr5 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_iovr5 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_iovr5 Checking test 033 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1618,14 +1620,14 @@ Checking test 033 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 148.352533 -0:The maximum resident set size (KB) = 454220 +0:The total amount of wall time = 148.139821 +0:The maximum resident set size (KB) = 454272 Test 033 control_iovr5 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_p8 Checking test 034 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1672,14 +1674,14 @@ Checking test 034 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 175.255125 -0:The maximum resident set size (KB) = 1423860 +0:The total amount of wall time = 178.616656 +0:The maximum resident set size (KB) = 1423904 Test 034 control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_restart_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_restart_p8 Checking test 035 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1718,14 +1720,14 @@ Checking test 035 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 93.258047 -0:The maximum resident set size (KB) = 582864 +0:The total amount of wall time = 94.900516 +0:The maximum resident set size (KB) = 582832 Test 035 control_restart_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_qr_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_qr_p8 Checking test 036 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1772,14 +1774,14 @@ Checking test 036 control_qr_p8 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 = 182.043734 -0:The maximum resident set size (KB) = 1427160 +0:The total amount of wall time = 181.940414 +0:The maximum resident set size (KB) = 1427224 Test 036 control_qr_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_restart_qr_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_restart_qr_p8 Checking test 037 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1818,14 +1820,14 @@ Checking test 037 control_restart_qr_p8 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 = 99.486298 -0:The maximum resident set size (KB) = 596868 +0:The total amount of wall time = 101.337875 +0:The maximum resident set size (KB) = 596900 Test 037 control_restart_qr_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_decomp_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_decomp_p8 Checking test 038 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1868,14 +1870,14 @@ Checking test 038 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 185.063705 -0:The maximum resident set size (KB) = 1418324 +0:The total amount of wall time = 186.026663 +0:The maximum resident set size (KB) = 1418384 Test 038 control_decomp_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_2threads_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_2threads_p8 Checking test 039 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1918,14 +1920,14 @@ Checking test 039 control_2threads_p8 results .... Comparing 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.823825 -0:The maximum resident set size (KB) = 1508948 +0:The total amount of wall time = 171.958962 +0:The maximum resident set size (KB) = 1508944 Test 039 control_2threads_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_lndp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_p8_lndp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_p8_lndp Checking test 040 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1944,14 +1946,14 @@ Checking test 040 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -0:The total amount of wall time = 337.206304 -0:The maximum resident set size (KB) = 1424848 +0:The total amount of wall time = 333.708478 +0:The maximum resident set size (KB) = 1424880 Test 040 control_p8_lndp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_rrtmgp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_p8_rrtmgp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_p8_rrtmgp Checking test 041 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1998,14 +2000,14 @@ Checking test 041 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 254.080961 -0:The maximum resident set size (KB) = 1480248 +0:The total amount of wall time = 254.961427 +0:The maximum resident set size (KB) = 1480288 Test 041 control_p8_rrtmgp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_mynn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_p8_mynn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_p8_mynn Checking test 042 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2052,14 +2054,14 @@ Checking test 042 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 181.058189 -0:The maximum resident set size (KB) = 1427904 +0:The total amount of wall time = 181.554235 +0:The maximum resident set size (KB) = 1428004 Test 042 control_p8_mynn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/merra2_thompson -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/merra2_thompson +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/merra2_thompson Checking test 043 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2106,14 +2108,14 @@ Checking test 043 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 206.144336 -0:The maximum resident set size (KB) = 1429672 +0:The total amount of wall time = 206.926088 +0:The maximum resident set size (KB) = 1429704 Test 043 merra2_thompson PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/regional_control Checking test 044 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2124,28 +2126,28 @@ Checking test 044 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 344.119828 +0:The total amount of wall time = 342.729830 0:The maximum resident set size (KB) = 604748 Test 044 regional_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/regional_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/regional_restart Checking test 045 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 168.123197 -0:The maximum resident set size (KB) = 594172 +0:The total amount of wall time = 170.219919 +0:The maximum resident set size (KB) = 594132 Test 045 regional_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/regional_control_qr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/regional_control_qr Checking test 046 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2156,28 +2158,28 @@ Checking test 046 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 342.136798 -0:The maximum resident set size (KB) = 604664 +0:The total amount of wall time = 340.109827 +0:The maximum resident set size (KB) = 604792 Test 046 regional_control_qr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/regional_restart_qr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/regional_restart_qr Checking test 047 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 168.873879 -0:The maximum resident set size (KB) = 594108 +0:The total amount of wall time = 175.285191 +0:The maximum resident set size (KB) = 594140 Test 047 regional_restart_qr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/regional_decomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/regional_decomp Checking test 048 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2188,14 +2190,14 @@ Checking test 048 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 357.508436 -0:The maximum resident set size (KB) = 598808 +0:The total amount of wall time = 361.702602 +0:The maximum resident set size (KB) = 598900 Test 048 regional_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/regional_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/regional_2threads Checking test 049 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2206,14 +2208,14 @@ Checking test 049 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 200.807446 -0:The maximum resident set size (KB) = 611460 +0:The total amount of wall time = 203.422752 +0:The maximum resident set size (KB) = 611608 Test 049 regional_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_noquilt -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/regional_noquilt +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/regional_noquilt Checking test 050 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2221,28 +2223,28 @@ Checking test 050 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -0:The total amount of wall time = 363.595954 -0:The maximum resident set size (KB) = 598984 +0:The total amount of wall time = 356.114798 +0:The maximum resident set size (KB) = 599076 Test 050 regional_noquilt PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_netcdf_parallel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/regional_netcdf_parallel +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/regional_netcdf_parallel Checking test 051 regional_netcdf_parallel results .... - Comparing dynf000.nc .........OK + Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf006.nc .........OK - Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK -0:The total amount of wall time = 328.812510 -0:The maximum resident set size (KB) = 596520 +0:The total amount of wall time = 342.350163 +0:The maximum resident set size (KB) = 596624 Test 051 regional_netcdf_parallel PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/regional_2dwrtdecomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/regional_2dwrtdecomp Checking test 052 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2253,14 +2255,14 @@ Checking test 052 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 342.778802 -0:The maximum resident set size (KB) = 604712 +0:The total amount of wall time = 346.202511 +0:The maximum resident set size (KB) = 604788 Test 052 regional_2dwrtdecomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/fv3_regional_wofs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/regional_wofs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/regional_wofs Checking test 053 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2271,14 +2273,14 @@ Checking test 053 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 415.803696 -0:The maximum resident set size (KB) = 275708 +0:The total amount of wall time = 428.482081 +0:The maximum resident set size (KB) = 275728 Test 053 regional_wofs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/rap_control Checking test 054 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2325,14 +2327,14 @@ Checking test 054 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 480.163415 -0:The maximum resident set size (KB) = 823532 +0:The total amount of wall time = 473.286427 +0:The maximum resident set size (KB) = 823468 Test 054 rap_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_spp_sppt_shum_skeb -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/regional_spp_sppt_shum_skeb +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/regional_spp_sppt_shum_skeb Checking test 055 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2343,14 +2345,14 @@ Checking test 055 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 260.753574 +0:The total amount of wall time = 259.602613 0:The maximum resident set size (KB) = 952132 Test 055 regional_spp_sppt_shum_skeb PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/rap_decomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/rap_decomp Checking test 056 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2397,14 +2399,14 @@ Checking test 056 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 502.587059 -0:The maximum resident set size (KB) = 822300 +0:The total amount of wall time = 501.319332 +0:The maximum resident set size (KB) = 822304 Test 056 rap_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/rap_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/rap_2threads Checking test 057 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2451,14 +2453,14 @@ Checking test 057 rap_2threads results .... Comparing 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.006330 -0:The maximum resident set size (KB) = 893528 +0:The total amount of wall time = 453.602539 +0:The maximum resident set size (KB) = 893540 Test 057 rap_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/rap_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/rap_restart Checking test 058 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2497,14 +2499,14 @@ Checking test 058 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 240.803595 -0:The maximum resident set size (KB) = 571452 +0:The total amount of wall time = 241.552635 +0:The maximum resident set size (KB) = 571436 Test 058 rap_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/rap_sfcdiff Checking test 059 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2551,14 +2553,14 @@ Checking test 059 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 481.825278 -0:The maximum resident set size (KB) = 823500 +0:The total amount of wall time = 479.608828 +0:The maximum resident set size (KB) = 823392 Test 059 rap_sfcdiff PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/rap_sfcdiff_decomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/rap_sfcdiff_decomp Checking test 060 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2605,14 +2607,14 @@ Checking test 060 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 503.773045 -0:The maximum resident set size (KB) = 822376 +0:The total amount of wall time = 504.281634 +0:The maximum resident set size (KB) = 822252 Test 060 rap_sfcdiff_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/rap_sfcdiff_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/rap_sfcdiff_restart Checking test 061 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2651,14 +2653,14 @@ Checking test 061 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 355.112254 -0:The maximum resident set size (KB) = 570600 +0:The total amount of wall time = 360.386611 +0:The maximum resident set size (KB) = 570752 Test 061 rap_sfcdiff_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/hrrr_control Checking test 062 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2705,14 +2707,14 @@ Checking test 062 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 461.444545 -0:The maximum resident set size (KB) = 820748 +0:The total amount of wall time = 466.004884 +0:The maximum resident set size (KB) = 820864 Test 062 hrrr_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/hrrr_control_decomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/hrrr_control_decomp Checking test 063 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2759,14 +2761,14 @@ Checking test 063 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 477.600394 -0:The maximum resident set size (KB) = 820672 +0:The total amount of wall time = 482.465010 +0:The maximum resident set size (KB) = 820572 Test 063 hrrr_control_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/hrrr_control_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/hrrr_control_2threads Checking test 064 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2813,14 +2815,14 @@ Checking test 064 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 438.968323 -0:The maximum resident set size (KB) = 888608 +0:The total amount of wall time = 439.531828 +0:The maximum resident set size (KB) = 888524 Test 064 hrrr_control_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/hrrr_control_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/hrrr_control_restart Checking test 065 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2859,14 +2861,14 @@ Checking test 065 hrrr_control_restart results .... Comparing 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.054775 -0:The maximum resident set size (KB) = 566540 +0:The total amount of wall time = 339.330772 +0:The maximum resident set size (KB) = 566392 Test 065 hrrr_control_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_v1beta -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/rrfs_v1beta +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/rrfs_v1beta Checking test 066 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2913,14 +2915,14 @@ Checking test 066 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 473.349024 -0:The maximum resident set size (KB) = 819436 +0:The total amount of wall time = 478.520857 +0:The maximum resident set size (KB) = 819392 Test 066 rrfs_v1beta PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_v1nssl -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/rrfs_v1nssl +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/rrfs_v1nssl Checking test 067 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2935,14 +2937,14 @@ Checking test 067 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 583.657833 -0:The maximum resident set size (KB) = 508664 +0:The total amount of wall time = 585.470890 +0:The maximum resident set size (KB) = 508588 Test 067 rrfs_v1nssl PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/rrfs_v1nssl_nohailnoccn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/rrfs_v1nssl_nohailnoccn Checking test 068 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2957,14 +2959,14 @@ Checking test 068 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 566.899987 -0:The maximum resident set size (KB) = 502644 +0:The total amount of wall time = 571.938450 +0:The maximum resident set size (KB) = 502560 Test 068 rrfs_v1nssl_nohailnoccn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/rrfs_smoke_conus13km_hrrr_warm Checking test 069 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2973,14 +2975,14 @@ Checking test 069 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 152.190201 -0:The maximum resident set size (KB) = 675348 +0:The total amount of wall time = 151.953926 +0:The maximum resident set size (KB) = 675256 Test 069 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/rrfs_smoke_conus13km_hrrr_warm_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 070 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2989,14 +2991,14 @@ Checking test 070 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 93.569958 -0:The maximum resident set size (KB) = 693872 +0:The total amount of wall time = 93.853384 +0:The maximum resident set size (KB) = 693820 Test 070 rrfs_smoke_conus13km_hrrr_warm_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/rrfs_conus13km_hrrr_warm Checking test 071 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3005,14 +3007,14 @@ Checking test 071 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 136.069551 -0:The maximum resident set size (KB) = 654108 +0:The total amount of wall time = 136.784246 +0:The maximum resident set size (KB) = 654060 Test 071 rrfs_conus13km_hrrr_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/rrfs_smoke_conus13km_radar_tten_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/rrfs_smoke_conus13km_radar_tten_warm Checking test 072 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3021,26 +3023,26 @@ Checking test 072 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 149.918106 -0:The maximum resident set size (KB) = 677952 +0:The total amount of wall time = 152.752214 +0:The maximum resident set size (KB) = 677912 Test 072 rrfs_smoke_conus13km_radar_tten_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 073 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 70.760800 -0:The maximum resident set size (KB) = 632136 +0:The total amount of wall time = 70.575667 +0:The maximum resident set size (KB) = 632260 Test 073 rrfs_conus13km_hrrr_warm_restart_mismatch PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_csawmg -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_csawmg +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_csawmg Checking test 074 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3051,14 +3053,14 @@ Checking test 074 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 397.411457 -0:The maximum resident set size (KB) = 527684 +0:The total amount of wall time = 396.633837 +0:The maximum resident set size (KB) = 527760 Test 074 control_csawmg PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_csawmgt -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_csawmgt +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_csawmgt Checking test 075 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3069,14 +3071,14 @@ Checking test 075 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 392.840006 -0:The maximum resident set size (KB) = 528352 +0:The total amount of wall time = 391.637098 +0:The maximum resident set size (KB) = 528404 Test 075 control_csawmgt PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_ras -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_ras +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_ras Checking test 076 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3087,26 +3089,26 @@ Checking test 076 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 198.347961 -0:The maximum resident set size (KB) = 491268 +0:The total amount of wall time = 204.149442 +0:The maximum resident set size (KB) = 491408 Test 076 control_ras PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_wam -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_wam +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_wam Checking test 077 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -0:The total amount of wall time = 124.019665 -0:The maximum resident set size (KB) = 206284 +0:The total amount of wall time = 129.418409 +0:The maximum resident set size (KB) = 206288 Test 077 control_wam PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_faster -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_p8_faster +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_p8_faster Checking test 078 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3153,14 +3155,14 @@ Checking test 078 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 173.930157 -0:The maximum resident set size (KB) = 1423792 +0:The total amount of wall time = 171.500393 +0:The maximum resident set size (KB) = 1423756 Test 078 control_p8_faster PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control_faster -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/regional_control_faster +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/regional_control_faster Checking test 079 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3171,56 +3173,56 @@ Checking test 079 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 325.225670 -0:The maximum resident set size (KB) = 604660 +0:The total amount of wall time = 311.624624 +0:The maximum resident set size (KB) = 604700 Test 079 regional_control_faster PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 080 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 875.752493 -0:The maximum resident set size (KB) = 704708 +0:The total amount of wall time = 875.384582 +0:The maximum resident set size (KB) = 704764 Test 080 rrfs_smoke_conus13km_hrrr_warm_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 081 rrfs_smoke_conus13km_hrrr_warm_debug_2threads 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.567716 -0:The maximum resident set size (KB) = 724268 +0:The total amount of wall time = 499.623904 +0:The maximum resident set size (KB) = 725032 Test 081 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/rrfs_conus13km_hrrr_warm_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/rrfs_conus13km_hrrr_warm_debug Checking test 082 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 778.815188 -0:The maximum resident set size (KB) = 683392 +0:The total amount of wall time = 777.911197 +0:The maximum resident set size (KB) = 683412 Test 082 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_CubedSphereGrid_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_CubedSphereGrid_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_CubedSphereGrid_debug Checking test 083 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3247,334 +3249,334 @@ Checking test 083 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -0:The total amount of wall time = 154.320105 -0:The maximum resident set size (KB) = 617524 +0:The total amount of wall time = 153.964578 +0:The maximum resident set size (KB) = 617460 Test 083 control_CubedSphereGrid_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_wrtGauss_netcdf_parallel_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_wrtGauss_netcdf_parallel_debug Checking test 084 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 155.608254 -0:The maximum resident set size (KB) = 615664 +0:The total amount of wall time = 155.087420 +0:The maximum resident set size (KB) = 615744 Test 084 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_stochy_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_stochy_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_stochy_debug Checking test 085 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 175.505291 -0:The maximum resident set size (KB) = 621272 +0:The total amount of wall time = 174.659048 +0:The maximum resident set size (KB) = 621232 Test 085 control_stochy_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_lndp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_lndp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_lndp_debug Checking test 086 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 157.087052 -0:The maximum resident set size (KB) = 619988 +0:The total amount of wall time = 156.312082 +0:The maximum resident set size (KB) = 620016 Test 086 control_lndp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_csawmg_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_csawmg_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_csawmg_debug Checking test 087 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 249.156158 -0:The maximum resident set size (KB) = 666388 +0:The total amount of wall time = 248.185097 +0:The maximum resident set size (KB) = 666420 Test 087 control_csawmg_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_csawmgt_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_csawmgt_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_csawmgt_debug Checking test 088 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 243.315254 -0:The maximum resident set size (KB) = 667332 +0:The total amount of wall time = 244.400224 +0:The maximum resident set size (KB) = 667352 Test 088 control_csawmgt_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_ras_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_ras_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_ras_debug Checking test 089 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 158.859590 -0:The maximum resident set size (KB) = 630240 +0:The total amount of wall time = 158.671425 +0:The maximum resident set size (KB) = 630236 Test 089 control_ras_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_diag_debug Checking test 090 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 159.397618 -0:The maximum resident set size (KB) = 674976 +0:The total amount of wall time = 159.074889 +0:The maximum resident set size (KB) = 674868 Test 090 control_diag_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_debug_p8 Checking test 091 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 175.625848 -0:The maximum resident set size (KB) = 1442392 +0:The total amount of wall time = 175.031844 +0:The maximum resident set size (KB) = 1442428 Test 091 control_debug_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/regional_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/regional_debug Checking test 092 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 1033.143858 -0:The maximum resident set size (KB) = 625900 +0:The total amount of wall time = 1032.059260 +0:The maximum resident set size (KB) = 625948 Test 092 regional_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/rap_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/rap_control_debug Checking test 093 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 287.417545 -0:The maximum resident set size (KB) = 986552 +0:The total amount of wall time = 285.938980 +0:The maximum resident set size (KB) = 986636 Test 093 rap_control_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/hrrr_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/hrrr_control_debug Checking test 094 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 282.164442 -0:The maximum resident set size (KB) = 984004 +0:The total amount of wall time = 281.049067 +0:The maximum resident set size (KB) = 984056 Test 094 hrrr_control_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/rap_unified_drag_suite_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/rap_unified_drag_suite_debug Checking test 095 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 286.580246 +0:The total amount of wall time = 284.883967 0:The maximum resident set size (KB) = 986688 Test 095 rap_unified_drag_suite_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/rap_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/rap_diag_debug Checking test 096 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 297.460885 -0:The maximum resident set size (KB) = 1069812 +0:The total amount of wall time = 298.616789 +0:The maximum resident set size (KB) = 1069892 Test 096 rap_diag_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/rap_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/rap_cires_ugwp_debug Checking test 097 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 292.741515 -0:The maximum resident set size (KB) = 985784 +0:The total amount of wall time = 297.914586 +0:The maximum resident set size (KB) = 985856 Test 097 rap_cires_ugwp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/rap_unified_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/rap_unified_ugwp_debug Checking test 098 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 292.792969 -0:The maximum resident set size (KB) = 986564 +0:The total amount of wall time = 291.565697 +0:The maximum resident set size (KB) = 986716 Test 098 rap_unified_ugwp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_lndp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/rap_lndp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/rap_lndp_debug Checking test 099 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 289.640539 -0:The maximum resident set size (KB) = 987304 +0:The total amount of wall time = 287.949912 +0:The maximum resident set size (KB) = 987360 Test 099 rap_lndp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_flake_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/rap_flake_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/rap_flake_debug Checking test 100 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 287.403837 -0:The maximum resident set size (KB) = 986700 +0:The total amount of wall time = 289.330683 +0:The maximum resident set size (KB) = 986580 Test 100 rap_flake_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_progcld_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/rap_progcld_thompson_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/rap_progcld_thompson_debug Checking test 101 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 287.447082 -0:The maximum resident set size (KB) = 986460 +0:The total amount of wall time = 288.049856 +0:The maximum resident set size (KB) = 986604 Test 101 rap_progcld_thompson_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_noah_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/rap_noah_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/rap_noah_debug Checking test 102 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 280.295441 -0:The maximum resident set size (KB) = 984524 +0:The total amount of wall time = 279.965995 +0:The maximum resident set size (KB) = 984564 Test 102 rap_noah_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_sfcdiff_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/rap_sfcdiff_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/rap_sfcdiff_debug Checking test 103 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 286.232317 -0:The maximum resident set size (KB) = 986392 +0:The total amount of wall time = 285.465411 +0:The maximum resident set size (KB) = 986448 Test 103 rap_sfcdiff_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/rap_noah_sfcdiff_cires_ugwp_debug Checking test 104 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 471.009098 -0:The maximum resident set size (KB) = 985364 +0:The total amount of wall time = 469.805848 +0:The maximum resident set size (KB) = 985376 Test 104 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_v1beta_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/rrfs_v1beta_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/rrfs_v1beta_debug Checking test 105 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 281.943144 -0:The maximum resident set size (KB) = 983480 +0:The total amount of wall time = 280.991634 +0:The maximum resident set size (KB) = 983412 Test 105 rrfs_v1beta_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_wam_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_wam_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_wam_debug Checking test 106 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 289.990370 -0:The maximum resident set size (KB) = 235464 +0:The total amount of wall time = 288.829675 +0:The maximum resident set size (KB) = 235488 Test 106 control_wam_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3585,14 +3587,14 @@ Checking test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 240.573528 -0:The maximum resident set size (KB) = 851156 +0:The total amount of wall time = 245.179887 +0:The maximum resident set size (KB) = 851036 Test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/rap_control_dyn32_phy32 Checking test 108 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3639,14 +3641,14 @@ Checking test 108 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 400.583923 -0:The maximum resident set size (KB) = 707776 +0:The total amount of wall time = 398.279018 +0:The maximum resident set size (KB) = 707804 Test 108 rap_control_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/hrrr_control_dyn32_phy32 Checking test 109 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3693,14 +3695,14 @@ Checking test 109 hrrr_control_dyn32_phy32 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 = 205.157258 -0:The maximum resident set size (KB) = 706388 +0:The total amount of wall time = 208.955348 +0:The maximum resident set size (KB) = 706492 Test 109 hrrr_control_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/rap_2threads_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/rap_2threads_dyn32_phy32 Checking test 110 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3747,14 +3749,14 @@ Checking test 110 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 379.604561 -0:The maximum resident set size (KB) = 759368 +0:The total amount of wall time = 382.878432 +0:The maximum resident set size (KB) = 759292 Test 110 rap_2threads_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/hrrr_control_2threads_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/hrrr_control_2threads_dyn32_phy32 Checking test 111 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3801,14 +3803,14 @@ Checking test 111 hrrr_control_2threads_dyn32_phy32 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 = 195.616617 -0:The maximum resident set size (KB) = 756392 +0:The total amount of wall time = 198.866138 +0:The maximum resident set size (KB) = 756448 Test 111 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/hrrr_control_decomp_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/hrrr_control_decomp_dyn32_phy32 Checking test 112 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3855,14 +3857,14 @@ Checking test 112 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 218.931697 -0:The maximum resident set size (KB) = 704288 +0:The total amount of wall time = 222.218587 +0:The maximum resident set size (KB) = 704448 Test 112 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/rap_restart_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/rap_restart_dyn32_phy32 Checking test 113 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3901,14 +3903,14 @@ Checking test 113 rap_restart_dyn32_phy32 results .... Comparing 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.923547 -0:The maximum resident set size (KB) = 544664 +0:The total amount of wall time = 291.587836 +0:The maximum resident set size (KB) = 544668 Test 113 rap_restart_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/hrrr_control_restart_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/hrrr_control_restart_dyn32_phy32 Checking test 114 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3947,14 +3949,14 @@ Checking test 114 hrrr_control_restart_dyn32_phy32 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 = 105.784154 -0:The maximum resident set size (KB) = 537436 +0:The total amount of wall time = 107.751911 +0:The maximum resident set size (KB) = 537544 Test 114 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/rap_control_dyn64_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/rap_control_dyn64_phy32 Checking test 115 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4001,81 +4003,81 @@ Checking test 115 rap_control_dyn64_phy32 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 = 271.276212 -0:The maximum resident set size (KB) = 730432 +0:The total amount of wall time = 271.232355 +0:The maximum resident set size (KB) = 730380 Test 115 rap_control_dyn64_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/rap_control_debug_dyn32_phy32 Checking test 116 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 280.930311 -0:The maximum resident set size (KB) = 873032 +0:The total amount of wall time = 281.904642 +0:The maximum resident set size (KB) = 873084 Test 116 rap_control_debug_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/hrrr_control_debug_dyn32_phy32 Checking test 117 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 276.644157 -0:The maximum resident set size (KB) = 870972 +0:The total amount of wall time = 277.699258 +0:The maximum resident set size (KB) = 871076 Test 117 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/rap_control_dyn64_phy32_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/rap_control_dyn64_phy32_debug Checking test 118 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 285.603212 -0:The maximum resident set size (KB) = 890088 +0:The total amount of wall time = 285.470508 +0:The maximum resident set size (KB) = 890196 Test 118 rap_control_dyn64_phy32_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/hafs_regional_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/hafs_regional_atm Checking test 119 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -0:The total amount of wall time = 260.196127 -0:The maximum resident set size (KB) = 742804 +0:The total amount of wall time = 258.833633 +0:The maximum resident set size (KB) = 742752 Test 119 hafs_regional_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/hafs_regional_atm_thompson_gfdlsf +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/hafs_regional_atm_thompson_gfdlsf Checking test 120 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -0:The total amount of wall time = 292.987055 -0:The maximum resident set size (KB) = 1099948 +0:The total amount of wall time = 296.633468 +0:The maximum resident set size (KB) = 1099780 Test 120 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_ocn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/hafs_regional_atm_ocn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/hafs_regional_atm_ocn Checking test 121 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4084,14 +4086,14 @@ Checking test 121 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 452.915819 -0:The maximum resident set size (KB) = 741212 +0:The total amount of wall time = 445.605836 +0:The maximum resident set size (KB) = 741080 Test 121 hafs_regional_atm_ocn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_wav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/hafs_regional_atm_wav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/hafs_regional_atm_wav Checking test 122 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4100,14 +4102,14 @@ Checking test 122 hafs_regional_atm_wav 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 = 1049.697125 -0:The maximum resident set size (KB) = 771792 +0:The total amount of wall time = 1072.540369 +0:The maximum resident set size (KB) = 771712 Test 122 hafs_regional_atm_wav PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_ocn_wav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/hafs_regional_atm_ocn_wav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/hafs_regional_atm_ocn_wav Checking test 123 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4118,28 +4120,28 @@ Checking test 123 hafs_regional_atm_ocn_wav 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 = 1161.003182 -0:The maximum resident set size (KB) = 792308 +0:The total amount of wall time = 1143.166604 +0:The maximum resident set size (KB) = 791784 Test 123 hafs_regional_atm_ocn_wav PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/hafs_regional_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/hafs_regional_1nest_atm Checking test 124 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 372.316729 -0:The maximum resident set size (KB) = 300860 +0:The total amount of wall time = 374.030897 +0:The maximum resident set size (KB) = 300956 Test 124 hafs_regional_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/hafs_regional_telescopic_2nests_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/hafs_regional_telescopic_2nests_atm Checking test 125 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4148,28 +4150,28 @@ Checking test 125 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -0:The total amount of wall time = 438.622913 -0:The maximum resident set size (KB) = 320628 +0:The total amount of wall time = 426.340901 +0:The maximum resident set size (KB) = 320232 Test 125 hafs_regional_telescopic_2nests_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_global_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/hafs_global_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/hafs_global_1nest_atm Checking test 126 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 170.968534 -0:The maximum resident set size (KB) = 213768 +0:The total amount of wall time = 170.682614 +0:The maximum resident set size (KB) = 213928 Test 126 hafs_global_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_global_multiple_4nests_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/hafs_global_multiple_4nests_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/hafs_global_multiple_4nests_atm Checking test 127 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4187,14 +4189,14 @@ Checking test 127 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -0:The total amount of wall time = 481.989540 -0:The maximum resident set size (KB) = 302488 +0:The total amount of wall time = 477.031468 +0:The maximum resident set size (KB) = 302644 Test 127 hafs_global_multiple_4nests_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/hafs_regional_specified_moving_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/hafs_regional_specified_moving_1nest_atm Checking test 128 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4203,28 +4205,28 @@ Checking test 128 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -0:The total amount of wall time = 235.656846 -0:The maximum resident set size (KB) = 318764 +0:The total amount of wall time = 240.696420 +0:The maximum resident set size (KB) = 318372 Test 128 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/hafs_regional_storm_following_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/hafs_regional_storm_following_1nest_atm Checking test 129 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 227.742873 -0:The maximum resident set size (KB) = 318548 +0:The total amount of wall time = 230.767819 +0:The maximum resident set size (KB) = 318412 Test 129 hafs_regional_storm_following_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/hafs_regional_storm_following_1nest_atm_ocn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/hafs_regional_storm_following_1nest_atm_ocn Checking test 130 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4233,42 +4235,42 @@ Checking test 130 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -0:The total amount of wall time = 280.631263 -0:The maximum resident set size (KB) = 376456 +0:The total amount of wall time = 269.910954 +0:The maximum resident set size (KB) = 376068 Test 130 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_global_storm_following_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/hafs_global_storm_following_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/hafs_global_storm_following_1nest_atm Checking test 131 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 66.363519 -0:The maximum resident set size (KB) = 234200 +0:The total amount of wall time = 68.688359 +0:The maximum resident set size (KB) = 234000 Test 131 hafs_global_storm_following_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 132 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 765.071444 -0:The maximum resident set size (KB) = 402688 +0:The total amount of wall time = 764.015730 +0:The maximum resident set size (KB) = 402784 Test 132 hafs_regional_storm_following_1nest_atm_ocn_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 133 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4279,14 +4281,14 @@ Checking test 133 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -0:The total amount of wall time = 730.595705 -0:The maximum resident set size (KB) = 427292 +0:The total amount of wall time = 732.393619 +0:The maximum resident set size (KB) = 426800 Test 133 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_docn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/hafs_regional_docn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/hafs_regional_docn Checking test 134 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4294,14 +4296,14 @@ Checking test 134 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 381.242564 -0:The maximum resident set size (KB) = 755312 +0:The total amount of wall time = 390.425812 +0:The maximum resident set size (KB) = 755368 Test 134 hafs_regional_docn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_docn_oisst -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/hafs_regional_docn_oisst +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/hafs_regional_docn_oisst Checking test 135 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4309,131 +4311,131 @@ Checking test 135 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 387.818686 -0:The maximum resident set size (KB) = 735444 +0:The total amount of wall time = 393.152594 +0:The maximum resident set size (KB) = 735452 Test 135 hafs_regional_docn_oisst PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_datm_cdeps -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/hafs_regional_datm_cdeps +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/hafs_regional_datm_cdeps Checking test 136 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -0:The total amount of wall time = 1157.596977 -0:The maximum resident set size (KB) = 887900 +0:The total amount of wall time = 1300.455570 +0:The maximum resident set size (KB) = 887892 Test 136 hafs_regional_datm_cdeps PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/datm_cdeps_control_cfsr Checking test 137 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 161.565223 -0:The maximum resident set size (KB) = 716680 +0:The total amount of wall time = 165.360395 +0:The maximum resident set size (KB) = 716696 Test 137 datm_cdeps_control_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/datm_cdeps_restart_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/datm_cdeps_restart_cfsr Checking test 138 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 96.850528 -0:The maximum resident set size (KB) = 704828 +0:The total amount of wall time = 100.114722 +0:The maximum resident set size (KB) = 704848 Test 138 datm_cdeps_restart_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_control_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/datm_cdeps_control_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/datm_cdeps_control_gefs Checking test 139 datm_cdeps_control_gefs 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 = 160.097680 -0:The maximum resident set size (KB) = 607472 +0:The total amount of wall time = 160.870233 +0:The maximum resident set size (KB) = 607488 Test 139 datm_cdeps_control_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_iau_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/datm_cdeps_iau_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/datm_cdeps_iau_gefs Checking test 140 datm_cdeps_iau_gefs 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 = 164.699029 -0:The maximum resident set size (KB) = 607460 +0:The total amount of wall time = 167.073701 +0:The maximum resident set size (KB) = 607484 Test 140 datm_cdeps_iau_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_stochy_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/datm_cdeps_stochy_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/datm_cdeps_stochy_gefs Checking test 141 datm_cdeps_stochy_gefs 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 = 163.792340 -0:The maximum resident set size (KB) = 607500 +0:The total amount of wall time = 162.697880 +0:The maximum resident set size (KB) = 607480 Test 141 datm_cdeps_stochy_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_ciceC_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/datm_cdeps_ciceC_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/datm_cdeps_ciceC_cfsr Checking test 142 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 168.315331 -0:The maximum resident set size (KB) = 716696 +0:The total amount of wall time = 167.935353 +0:The maximum resident set size (KB) = 716716 Test 142 datm_cdeps_ciceC_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_bulk_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/datm_cdeps_bulk_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/datm_cdeps_bulk_cfsr Checking test 143 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 168.876875 -0:The maximum resident set size (KB) = 727820 +0:The total amount of wall time = 168.070037 +0:The maximum resident set size (KB) = 727716 Test 143 datm_cdeps_bulk_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_bulk_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/datm_cdeps_bulk_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/datm_cdeps_bulk_gefs Checking test 144 datm_cdeps_bulk_gefs 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 = 160.545502 +0:The total amount of wall time = 159.676951 0:The maximum resident set size (KB) = 607460 Test 144 datm_cdeps_bulk_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_mx025_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/datm_cdeps_mx025_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/datm_cdeps_mx025_cfsr Checking test 145 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4442,14 +4444,14 @@ Checking test 145 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 416.223104 -0:The maximum resident set size (KB) = 514364 +0:The total amount of wall time = 425.414686 +0:The maximum resident set size (KB) = 514332 Test 145 datm_cdeps_mx025_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_mx025_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/datm_cdeps_mx025_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/datm_cdeps_mx025_gefs Checking test 146 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4458,77 +4460,77 @@ Checking test 146 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 425.972528 -0:The maximum resident set size (KB) = 494740 +0:The total amount of wall time = 416.644826 +0:The maximum resident set size (KB) = 494760 Test 146 datm_cdeps_mx025_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/datm_cdeps_multiple_files_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/datm_cdeps_multiple_files_cfsr Checking test 147 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 166.319805 -0:The maximum resident set size (KB) = 728136 +0:The total amount of wall time = 167.819448 +0:The maximum resident set size (KB) = 716748 Test 147 datm_cdeps_multiple_files_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/datm_cdeps_3072x1536_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/datm_cdeps_3072x1536_cfsr Checking test 148 datm_cdeps_3072x1536_cfsr 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 = 239.968214 -0:The maximum resident set size (KB) = 1941408 +0:The total amount of wall time = 255.475684 +0:The maximum resident set size (KB) = 1942572 Test 148 datm_cdeps_3072x1536_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_gfs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/datm_cdeps_gfs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/datm_cdeps_gfs Checking test 149 datm_cdeps_gfs 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 = 267.938470 -0:The maximum resident set size (KB) = 1942008 +0:The total amount of wall time = 254.297285 +0:The maximum resident set size (KB) = 1942000 Test 149 datm_cdeps_gfs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_debug_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/datm_cdeps_debug_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/datm_cdeps_debug_cfsr Checking test 150 datm_cdeps_debug_cfsr 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 = 370.009541 -0:The maximum resident set size (KB) = 700720 +0:The total amount of wall time = 370.164077 +0:The maximum resident set size (KB) = 700700 Test 150 datm_cdeps_debug_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_control_cfsr_faster -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/datm_cdeps_control_cfsr_faster +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/datm_cdeps_control_cfsr_faster Checking test 151 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 167.536465 -0:The maximum resident set size (KB) = 716736 +0:The total amount of wall time = 160.250848 +0:The maximum resident set size (KB) = 716752 Test 151 datm_cdeps_control_cfsr_faster PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/datm_cdeps_lnd_gswp3 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/datm_cdeps_lnd_gswp3 Checking test 152 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4537,14 +4539,14 @@ Checking test 152 datm_cdeps_lnd_gswp3 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 = 10.852810 -0:The maximum resident set size (KB) = 208240 +0:The total amount of wall time = 10.360232 +0:The maximum resident set size (KB) = 210120 Test 152 datm_cdeps_lnd_gswp3 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/datm_cdeps_lnd_gswp3_rst +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/datm_cdeps_lnd_gswp3_rst Checking test 153 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4553,14 +4555,14 @@ Checking test 153 datm_cdeps_lnd_gswp3_rst 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 = 15.450323 -0:The maximum resident set size (KB) = 216384 +0:The total amount of wall time = 15.525136 +0:The maximum resident set size (KB) = 210068 Test 153 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_atmlnd_sbs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_p8_atmlnd_sbs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_p8_atmlnd_sbs Checking test 154 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4645,14 +4647,14 @@ Checking test 154 control_p8_atmlnd_sbs 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 = 233.611949 -0:The maximum resident set size (KB) = 1462904 +0:The total amount of wall time = 233.679375 +0:The maximum resident set size (KB) = 1462972 Test 154 control_p8_atmlnd_sbs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/atmwav_control_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/atmwav_control_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/atmwav_control_noaero_p8 Checking test 155 atmwav_control_noaero_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4695,14 +4697,14 @@ Checking test 155 atmwav_control_noaero_p8 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 = 97.674024 -0:The maximum resident set size (KB) = 1434108 +0:The total amount of wall time = 100.324712 +0:The maximum resident set size (KB) = 1434204 Test 155 atmwav_control_noaero_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_atmwav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/control_atmwav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_atmwav Checking test 156 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4746,14 +4748,14 @@ Checking test 156 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -0:The total amount of wall time = 99.834559 -0:The maximum resident set size (KB) = 474548 +0:The total amount of wall time = 100.319029 +0:The maximum resident set size (KB) = 474560 Test 156 control_atmwav PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/atmaero_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/atmaero_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/atmaero_control_p8 Checking test 157 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4797,14 +4799,14 @@ Checking test 157 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 249.530483 -0:The maximum resident set size (KB) = 2704004 +0:The total amount of wall time = 245.845344 +0:The maximum resident set size (KB) = 2704072 Test 157 atmaero_control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/atmaero_control_p8_rad -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/atmaero_control_p8_rad +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/atmaero_control_p8_rad Checking test 158 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4848,14 +4850,14 @@ Checking test 158 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 305.323444 -0:The maximum resident set size (KB) = 2758124 +0:The total amount of wall time = 305.810465 +0:The maximum resident set size (KB) = 2758008 Test 158 atmaero_control_p8_rad PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/atmaero_control_p8_rad_micro -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/atmaero_control_p8_rad_micro +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/atmaero_control_p8_rad_micro Checking test 159 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4899,14 +4901,14 @@ Checking test 159 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 308.786686 -0:The maximum resident set size (KB) = 2764472 +0:The total amount of wall time = 307.556753 +0:The maximum resident set size (KB) = 2764432 Test 159 atmaero_control_p8_rad_micro PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_atmaq -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/regional_atmaq +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/regional_atmaq Checking test 160 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4922,14 +4924,14 @@ Checking test 160 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -0:The total amount of wall time = 747.230085 -0:The maximum resident set size (KB) = 999440 +0:The total amount of wall time = 982.364345 +0:The maximum resident set size (KB) = 999560 Test 160 regional_atmaq PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_atmaq_faster -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10782/regional_atmaq_faster +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/regional_atmaq_faster Checking test 161 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4945,12 +4947,12 @@ Checking test 161 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -0:The total amount of wall time = 695.518613 -0:The maximum resident set size (KB) = 999304 +0:The total amount of wall time = 690.487035 +0:The maximum resident set size (KB) = 999288 Test 161 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Sun Apr 9 21:07:32 MDT 2023 -Elapsed time: 01h:14m:09s. Have a nice day! +Tue Apr 11 21:11:27 MDT 2023 +Elapsed time: 01h:17m:54s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index dfda91dc721..57347a934ea 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,21 +1,21 @@ -Sat Apr 8 14:04:21 UTC 2023 +Tue Apr 11 23:12:26 UTC 2023 Start Regression test -Compile 001 elapsed time 191 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 194 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 372 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 104 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 200 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 439 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 377 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 386 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 287 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 252 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 153 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 012 elapsed time 121 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 001 elapsed time 185 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 189 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 348 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 99 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 187 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 408 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 348 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 348 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 266 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 232 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 142 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 012 elapsed time 114 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/control_c48 Checking test 001 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -54,14 +54,14 @@ Checking test 001 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 686.577006 -0: The maximum resident set size (KB) = 703248 +0: The total amount of wall time = 690.160232 +0: The maximum resident set size (KB) = 706560 Test 001 control_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/control_stochy Checking test 002 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -72,14 +72,14 @@ Checking test 002 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 664.122921 - 0: The maximum resident set size (KB) = 479404 + 0: The total amount of wall time = 651.678339 + 0: The maximum resident set size (KB) = 480180 Test 002 control_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/control_ras -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/control_ras +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/control_ras Checking test 003 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -90,14 +90,14 @@ Checking test 003 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 849.549283 - 0: The maximum resident set size (KB) = 486288 + 0: The total amount of wall time = 845.186175 + 0: The maximum resident set size (KB) = 486808 Test 003 control_ras PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/control_p8 Checking test 004 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -144,14 +144,14 @@ Checking test 004 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 914.661100 - 0: The maximum resident set size (KB) = 1235816 + 0: The total amount of wall time = 893.698833 + 0: The maximum resident set size (KB) = 1233236 Test 004 control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/rap_control Checking test 005 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -198,14 +198,14 @@ Checking test 005 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1487.045259 - 0: The maximum resident set size (KB) = 830828 + 0: The total amount of wall time = 1491.767748 + 0: The maximum resident set size (KB) = 831476 Test 005 rap_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/rap_decomp +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/rap_decomp Checking test 006 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -252,14 +252,14 @@ Checking test 006 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1498.854819 - 0: The maximum resident set size (KB) = 836368 + 0: The total amount of wall time = 1474.469088 + 0: The maximum resident set size (KB) = 834360 Test 006 rap_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/rap_2threads +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/rap_2threads Checking test 007 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -306,14 +306,14 @@ Checking test 007 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1397.209368 - 0: The maximum resident set size (KB) = 901940 + 0: The total amount of wall time = 1380.124329 + 0: The maximum resident set size (KB) = 897456 Test 007 rap_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/rap_restart +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/rap_restart Checking test 008 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -352,14 +352,14 @@ Checking test 008 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 732.202082 - 0: The maximum resident set size (KB) = 545092 + 0: The total amount of wall time = 720.414395 + 0: The maximum resident set size (KB) = 541232 Test 008 rap_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/rap_sfcdiff Checking test 009 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -406,14 +406,14 @@ Checking test 009 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1512.812298 - 0: The maximum resident set size (KB) = 835920 + 0: The total amount of wall time = 1470.907059 + 0: The maximum resident set size (KB) = 830304 Test 009 rap_sfcdiff PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/rap_sfcdiff_decomp +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/rap_sfcdiff_decomp Checking test 010 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -460,14 +460,14 @@ Checking test 010 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1524.748869 - 0: The maximum resident set size (KB) = 826756 + 0: The total amount of wall time = 1467.886484 + 0: The maximum resident set size (KB) = 832676 Test 010 rap_sfcdiff_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/rap_sfcdiff_restart +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/rap_sfcdiff_restart Checking test 011 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -506,14 +506,14 @@ Checking test 011 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1065.432003 - 0: The maximum resident set size (KB) = 553376 + 0: The total amount of wall time = 1093.155485 + 0: The maximum resident set size (KB) = 555592 Test 011 rap_sfcdiff_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/hrrr_control Checking test 012 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -560,14 +560,14 @@ Checking test 012 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1435.606762 - 0: The maximum resident set size (KB) = 829756 + 0: The total amount of wall time = 1483.678589 + 0: The maximum resident set size (KB) = 828060 Test 012 hrrr_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/hrrr_control_2threads +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/hrrr_control_2threads Checking test 013 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -614,14 +614,14 @@ Checking test 013 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1359.523585 - 0: The maximum resident set size (KB) = 895288 + 0: The total amount of wall time = 1392.714554 + 0: The maximum resident set size (KB) = 896052 Test 013 hrrr_control_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/hrrr_control_decomp +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/hrrr_control_decomp Checking test 014 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -668,14 +668,14 @@ Checking test 014 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1515.352799 - 0: The maximum resident set size (KB) = 829112 + 0: The total amount of wall time = 1412.101307 + 0: The maximum resident set size (KB) = 833520 Test 014 hrrr_control_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/hrrr_control_restart +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/hrrr_control_restart Checking test 015 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -714,14 +714,14 @@ Checking test 015 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1057.532712 - 0: The maximum resident set size (KB) = 548948 + 0: The total amount of wall time = 1041.294375 + 0: The maximum resident set size (KB) = 554052 Test 015 hrrr_control_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/rrfs_v1beta Checking test 016 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -768,14 +768,14 @@ Checking test 016 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1473.537040 - 0: The maximum resident set size (KB) = 827964 + 0: The total amount of wall time = 1478.077249 + 0: The maximum resident set size (KB) = 823724 Test 016 rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/rrfs_smoke_conus13km_hrrr_warm Checking test 017 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -784,14 +784,14 @@ Checking test 017 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 808.717373 - 0: The maximum resident set size (KB) = 672104 + 0: The total amount of wall time = 779.700592 + 0: The maximum resident set size (KB) = 673124 Test 017 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/rrfs_smoke_conus13km_hrrr_warm_2threads +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 018 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -800,14 +800,14 @@ Checking test 018 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 1039.352181 - 0: The maximum resident set size (KB) = 664276 + 0: The total amount of wall time = 1066.040796 + 0: The maximum resident set size (KB) = 669004 Test 018 rrfs_smoke_conus13km_hrrr_warm_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/rrfs_conus13km_hrrr_warm Checking test 019 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -816,14 +816,14 @@ Checking test 019 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 780.394501 - 0: The maximum resident set size (KB) = 646928 + 0: The total amount of wall time = 776.928592 + 0: The maximum resident set size (KB) = 645780 Test 019 rrfs_conus13km_hrrr_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/rrfs_smoke_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/rrfs_smoke_conus13km_radar_tten_warm Checking test 020 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -832,234 +832,234 @@ Checking test 020 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 796.553248 - 0: The maximum resident set size (KB) = 675656 + 0: The total amount of wall time = 821.597561 + 0: The maximum resident set size (KB) = 676728 Test 020 rrfs_smoke_conus13km_radar_tten_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 021 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 402.908470 - 0: The maximum resident set size (KB) = 634932 + 0: The total amount of wall time = 405.505524 + 0: The maximum resident set size (KB) = 635076 Test 021 rrfs_conus13km_hrrr_warm_restart_mismatch PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/control_diag_debug Checking test 022 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 123.273510 - 0: The maximum resident set size (KB) = 523420 + 0: The total amount of wall time = 131.364999 + 0: The maximum resident set size (KB) = 528096 Test 022 control_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/regional_debug Checking test 023 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 743.717923 - 0: The maximum resident set size (KB) = 590180 + 0: The total amount of wall time = 751.492698 + 0: The maximum resident set size (KB) = 590460 Test 023 regional_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/rap_control_debug Checking test 024 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 178.017867 - 0: The maximum resident set size (KB) = 837892 + 0: The total amount of wall time = 178.434510 + 0: The maximum resident set size (KB) = 845472 Test 024 rap_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/hrrr_control_debug Checking test 025 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 175.191321 - 0: The maximum resident set size (KB) = 835644 + 0: The total amount of wall time = 172.638630 + 0: The maximum resident set size (KB) = 840880 Test 025 hrrr_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/rap_diag_debug Checking test 026 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 214.551309 - 0: The maximum resident set size (KB) = 921480 + 0: The total amount of wall time = 213.869548 + 0: The maximum resident set size (KB) = 925548 Test 026 rap_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/rap_noah_sfcdiff_cires_ugwp_debug Checking test 027 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.666092 - 0: The maximum resident set size (KB) = 842848 + 0: The total amount of wall time = 275.952873 + 0: The maximum resident set size (KB) = 838848 Test 027 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/rap_progcld_thompson_debug Checking test 028 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 177.435141 - 0: The maximum resident set size (KB) = 840796 + 0: The total amount of wall time = 178.405339 + 0: The maximum resident set size (KB) = 836724 Test 028 rap_progcld_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/rrfs_v1beta_debug Checking test 029 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 176.736851 - 0: The maximum resident set size (KB) = 837076 + 0: The total amount of wall time = 178.902019 + 0: The maximum resident set size (KB) = 841780 Test 029 rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/control_ras_debug Checking test 030 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 105.219531 - 0: The maximum resident set size (KB) = 479384 + 0: The total amount of wall time = 104.158228 + 0: The maximum resident set size (KB) = 480264 Test 030 control_ras_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/control_stochy_debug Checking test 031 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 121.594167 - 0: The maximum resident set size (KB) = 473180 + 0: The total amount of wall time = 122.737608 + 0: The maximum resident set size (KB) = 468264 Test 031 control_stochy_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/control_debug_p8 Checking test 032 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 117.931940 - 0: The maximum resident set size (KB) = 1228492 + 0: The total amount of wall time = 120.554164 + 0: The maximum resident set size (KB) = 1223780 Test 032 control_debug_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 033 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 602.811813 - 0: The maximum resident set size (KB) = 683924 + 0: The total amount of wall time = 636.497005 + 0: The maximum resident set size (KB) = 684108 Test 033 rrfs_smoke_conus13km_hrrr_warm_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 034 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 764.912887 - 0: The maximum resident set size (KB) = 680172 + 0: The total amount of wall time = 756.218925 + 0: The maximum resident set size (KB) = 679124 Test 034 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/rrfs_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/rrfs_conus13km_hrrr_warm_debug Checking test 035 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 584.313887 - 0: The maximum resident set size (KB) = 656816 + 0: The total amount of wall time = 586.810850 + 0: The maximum resident set size (KB) = 656664 Test 035 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/control_wam_debug Checking test 036 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 178.776248 - 0: The maximum resident set size (KB) = 189028 + 0: The total amount of wall time = 187.528846 + 0: The maximum resident set size (KB) = 190288 Test 036 control_wam_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/rap_control_dyn32_phy32 Checking test 037 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1106,14 +1106,14 @@ Checking test 037 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1517.891473 - 0: The maximum resident set size (KB) = 682420 + 0: The total amount of wall time = 1495.613801 + 0: The maximum resident set size (KB) = 680972 Test 037 rap_control_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/hrrr_control_dyn32_phy32 Checking test 038 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1160,14 +1160,14 @@ Checking test 038 hrrr_control_dyn32_phy32 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 = 736.688457 - 0: The maximum resident set size (KB) = 681388 + 0: The total amount of wall time = 728.297896 + 0: The maximum resident set size (KB) = 681456 Test 038 hrrr_control_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/rap_2threads_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/rap_2threads_dyn32_phy32 Checking test 039 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1214,14 +1214,14 @@ Checking test 039 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1380.276936 - 0: The maximum resident set size (KB) = 729068 + 0: The total amount of wall time = 1369.321170 + 0: The maximum resident set size (KB) = 730392 Test 039 rap_2threads_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/hrrr_control_2threads_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/hrrr_control_2threads_dyn32_phy32 Checking test 040 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1268,14 +1268,14 @@ Checking test 040 hrrr_control_2threads_dyn32_phy32 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 = 721.578905 - 0: The maximum resident set size (KB) = 730844 + 0: The total amount of wall time = 695.342852 + 0: The maximum resident set size (KB) = 730532 Test 040 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/hrrr_control_decomp_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/hrrr_control_decomp_dyn32_phy32 Checking test 041 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1322,14 +1322,14 @@ Checking test 041 hrrr_control_decomp_dyn32_phy32 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 = 744.387652 - 0: The maximum resident set size (KB) = 685336 + 0: The total amount of wall time = 728.543297 + 0: The maximum resident set size (KB) = 688236 Test 041 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/rap_restart_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/rap_restart_dyn32_phy32 Checking test 042 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1368,14 +1368,14 @@ Checking test 042 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1063.949930 - 0: The maximum resident set size (KB) = 509900 + 0: The total amount of wall time = 1072.108309 + 0: The maximum resident set size (KB) = 513468 Test 042 rap_restart_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/hrrr_control_restart_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/hrrr_control_restart_dyn32_phy32 Checking test 043 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1414,14 +1414,14 @@ Checking test 043 hrrr_control_restart_dyn32_phy32 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 = 363.723751 - 0: The maximum resident set size (KB) = 508972 + 0: The total amount of wall time = 365.247480 + 0: The maximum resident set size (KB) = 509304 Test 043 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/rap_control_dyn64_phy32 Checking test 044 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1468,128 +1468,58 @@ Checking test 044 rap_control_dyn64_phy32 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 = 1073.922865 - 0: The maximum resident set size (KB) = 709512 + 0: The total amount of wall time = 1080.252332 + 0: The maximum resident set size (KB) = 709644 Test 044 rap_control_dyn64_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/rap_control_debug_dyn32_phy32 Checking test 045 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 175.026470 - 0: The maximum resident set size (KB) = 696324 + 0: The total amount of wall time = 173.464649 + 0: The maximum resident set size (KB) = 697896 Test 045 rap_control_debug_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/hrrr_control_debug_dyn32_phy32 Checking test 046 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 174.688954 - 0: The maximum resident set size (KB) = 699760 + 0: The total amount of wall time = 169.966458 + 0: The maximum resident set size (KB) = 701628 Test 046 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/rap_control_dyn64_phy32_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/rap_control_dyn64_phy32_debug Checking test 047 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 203.794717 - 0: The maximum resident set size (KB) = 718868 + 0: The total amount of wall time = 209.374185 + 0: The maximum resident set size (KB) = 714596 Test 047 rap_control_dyn64_phy32_debug PASS - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/cpld_control_p8 -Checking test 048 cpld_control_p8 results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 1712.920489 - 0: The maximum resident set size (KB) = 1432332 - -Test 048 cpld_control_p8 PASS +Test 048 cpld_control_p8 FAIL baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/cpld_control_nowave_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/cpld_control_nowave_noaero_p8 Checking test 049 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1651,14 +1581,14 @@ Checking test 049 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 1254.898301 - 0: The maximum resident set size (KB) = 1333572 + 0: The total amount of wall time = 1290.274071 + 0: The maximum resident set size (KB) = 1333524 Test 049 cpld_control_nowave_noaero_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/cpld_debug_p8 Checking test 050 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1711,25 +1641,107 @@ Checking test 050 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 778.860640 - 0: The maximum resident set size (KB) = 1442796 + 0: The total amount of wall time = 789.382652 + 0: The maximum resident set size (KB) = 1438596 Test 050 cpld_debug_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24313/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/datm_cdeps_control_cfsr Checking test 051 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 175.228746 - 0: The maximum resident set size (KB) = 669312 + 0: The total amount of wall time = 178.883526 + 0: The maximum resident set size (KB) = 665716 Test 051 datm_cdeps_control_cfsr PASS +FAILED TESTS: +Test cpld_control_p8 048 failed in run_test failed + +REGRESSION TEST FAILED +Wed Apr 12 00:25:21 UTC 2023 +Elapsed time: 01h:12m:56s. Have a nice day! +Wed Apr 12 11:35:14 UTC 2023 +Start Regression test + +Compile 001 elapsed time 270 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_32130/cpld_control_p8 +Checking test 001 cpld_control_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 1780.837160 + 0: The maximum resident set size (KB) = 1424092 + +Test 001 cpld_control_p8 PASS Tries: 2 + REGRESSION TEST WAS SUCCESSFUL -Sat Apr 8 15:00:24 UTC 2023 -Elapsed time: 00h:56m:03s. Have a nice day! +Wed Apr 12 12:52:47 UTC 2023 +Elapsed time: 01h:17m:34s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 6a278cbc0b3..97e04f47844 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,43 +1,43 @@ -Sat Apr 8 12:44:01 UTC 2023 +Wed Apr 12 02:03:48 UTC 2023 Start Regression test -Compile 001 elapsed time 613 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 614 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 574 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 261 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 202 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 522 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 520 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 719 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 544 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 514 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 011 elapsed time 521 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 459 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 602 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 226 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 182 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 488 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 487 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 205 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 198 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 566 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 021 elapsed time 205 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 645 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 580 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 024 elapsed time 190 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 001 elapsed time 631 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 627 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 606 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 236 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 208 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 526 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 535 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 740 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 542 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 509 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 011 elapsed time 477 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 474 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 595 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 151 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 478 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 468 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 235 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 235 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 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 021 elapsed time 239 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 666 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 592 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 024 elapsed time 185 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON Compile 025 elapsed time 109 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 182 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 52 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 496 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 533 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 548 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 508 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 465 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 033 elapsed time 180 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 034 elapsed time 566 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 026 elapsed time 193 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 56 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 503 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 542 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 538 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 489 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 484 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 033 elapsed time 193 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 034 elapsed time 546 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8_mixedmode -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/cpld_control_p8_mixedmode +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -102,14 +102,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 320.512849 - 0: The maximum resident set size (KB) = 3151120 + 0: The total amount of wall time = 317.892428 + 0: The maximum resident set size (KB) = 3135904 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_gfsv17 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/cpld_control_gfsv17 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -173,14 +173,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 230.528972 - 0: The maximum resident set size (KB) = 1728100 + 0: The total amount of wall time = 234.065910 + 0: The maximum resident set size (KB) = 1719488 Test 002 cpld_control_gfsv17 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -245,14 +245,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 351.124459 - 0: The maximum resident set size (KB) = 3184232 + 0: The total amount of wall time = 358.947803 + 0: The maximum resident set size (KB) = 3161336 Test 003 cpld_control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/cpld_restart_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -305,14 +305,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 202.950526 - 0: The maximum resident set size (KB) = 3046856 + 0: The total amount of wall time = 202.678457 + 0: The maximum resident set size (KB) = 3045204 Test 004 cpld_restart_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/cpld_control_qr_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -377,14 +377,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 351.573717 - 0: The maximum resident set size (KB) = 3192140 + 0: The total amount of wall time = 371.320033 + 0: The maximum resident set size (KB) = 3181296 Test 005 cpld_control_qr_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/cpld_restart_qr_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -437,14 +437,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 208.799130 - 0: The maximum resident set size (KB) = 3061768 + 0: The total amount of wall time = 205.566209 + 0: The maximum resident set size (KB) = 3063472 Test 006 cpld_restart_qr_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/cpld_2threads_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -497,14 +497,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 360.319264 - 0: The maximum resident set size (KB) = 3508496 + 0: The total amount of wall time = 362.322067 + 0: The maximum resident set size (KB) = 3504016 Test 007 cpld_2threads_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/cpld_decomp_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -557,14 +557,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 351.431101 - 0: The maximum resident set size (KB) = 3171768 + 0: The total amount of wall time = 352.578359 + 0: The maximum resident set size (KB) = 3167496 Test 008 cpld_decomp_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/cpld_mpi_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -617,14 +617,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 291.696563 - 0: The maximum resident set size (KB) = 3026744 + 0: The total amount of wall time = 296.132920 + 0: The maximum resident set size (KB) = 3012868 Test 009 cpld_mpi_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_ciceC_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/cpld_control_ciceC_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -689,14 +689,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 346.355572 - 0: The maximum resident set size (KB) = 3182688 + 0: The total amount of wall time = 348.589751 + 0: The maximum resident set size (KB) = 3170544 Test 010 cpld_control_ciceC_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/cpld_control_c192_p8 Checking test 011 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -749,14 +749,14 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 615.375237 - 0: The maximum resident set size (KB) = 3258192 + 0: The total amount of wall time = 604.486999 + 0: The maximum resident set size (KB) = 3255920 Test 011 cpld_control_c192_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/cpld_restart_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/cpld_restart_c192_p8 Checking test 012 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -809,14 +809,14 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 395.915836 - 0: The maximum resident set size (KB) = 3160012 + 0: The total amount of wall time = 411.156980 + 0: The maximum resident set size (KB) = 3152148 Test 012 cpld_restart_c192_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/cpld_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/cpld_bmark_p8 Checking test 013 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -864,14 +864,14 @@ Checking test 013 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 763.461169 - 0: The maximum resident set size (KB) = 4042340 + 0: The total amount of wall time = 737.139143 + 0: The maximum resident set size (KB) = 4037816 Test 013 cpld_bmark_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/cpld_restart_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/cpld_restart_bmark_p8 Checking test 014 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -919,14 +919,14 @@ Checking test 014 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 473.456361 - 0: The maximum resident set size (KB) = 3994644 + 0: The total amount of wall time = 488.682010 + 0: The maximum resident set size (KB) = 3974412 Test 014 cpld_restart_bmark_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/cpld_control_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/cpld_control_noaero_p8 Checking test 015 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -990,14 +990,14 @@ Checking test 015 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 274.038288 - 0: The maximum resident set size (KB) = 1720656 + 0: The total amount of wall time = 269.999782 + 0: The maximum resident set size (KB) = 1714444 Test 015 cpld_control_noaero_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/cpld_control_nowave_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/cpld_control_nowave_noaero_p8 Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1059,14 +1059,14 @@ Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 268.762500 - 0: The maximum resident set size (KB) = 1761392 + 0: The total amount of wall time = 268.708206 + 0: The maximum resident set size (KB) = 1758032 Test 016 cpld_control_nowave_noaero_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/cpld_debug_p8 Checking test 017 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1119,14 +1119,14 @@ Checking test 017 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 533.055960 - 0: The maximum resident set size (KB) = 3232256 + 0: The total amount of wall time = 527.159946 + 0: The maximum resident set size (KB) = 3211708 Test 017 cpld_debug_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_debug_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/cpld_debug_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/cpld_debug_noaero_p8 Checking test 018 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1178,14 +1178,14 @@ Checking test 018 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 362.818277 - 0: The maximum resident set size (KB) = 1739516 + 0: The total amount of wall time = 372.152750 + 0: The maximum resident set size (KB) = 1729420 Test 018 cpld_debug_noaero_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_noaero_p8_agrid -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/cpld_control_noaero_p8_agrid +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/cpld_control_noaero_p8_agrid Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1247,14 +1247,14 @@ Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 284.712328 - 0: The maximum resident set size (KB) = 1750324 + 0: The total amount of wall time = 275.942398 + 0: The maximum resident set size (KB) = 1752064 Test 019 cpld_control_noaero_p8_agrid PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_c48 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/cpld_control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/cpld_control_c48 Checking test 020 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1304,14 +1304,14 @@ Checking test 020 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 575.010290 - 0: The maximum resident set size (KB) = 2807436 + 0: The total amount of wall time = 584.939871 + 0: The maximum resident set size (KB) = 2804228 Test 020 cpld_control_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/cpld_warmstart_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/cpld_warmstart_c48 Checking test 021 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1361,14 +1361,14 @@ Checking test 021 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 160.844179 - 0: The maximum resident set size (KB) = 2805032 + 0: The total amount of wall time = 157.981180 + 0: The maximum resident set size (KB) = 2800536 Test 021 cpld_warmstart_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/cpld_restart_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/cpld_restart_c48 Checking test 022 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1418,14 +1418,14 @@ Checking test 022 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 83.419255 - 0: The maximum resident set size (KB) = 2245728 + 0: The total amount of wall time = 87.267985 + 0: The maximum resident set size (KB) = 2242520 Test 022 cpld_restart_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8_faster -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/cpld_control_p8_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/cpld_control_p8_faster Checking test 023 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1490,14 +1490,14 @@ Checking test 023 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 329.982144 - 0: The maximum resident set size (KB) = 3182432 + 0: The total amount of wall time = 328.934999 + 0: The maximum resident set size (KB) = 3167456 Test 023 cpld_control_p8_faster PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_CubedSphereGrid -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_CubedSphereGrid +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_CubedSphereGrid Checking test 024 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1524,28 +1524,28 @@ Checking test 024 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 132.329449 - 0: The maximum resident set size (KB) = 631940 + 0: The total amount of wall time = 132.009702 + 0: The maximum resident set size (KB) = 631584 Test 024 control_CubedSphereGrid PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_CubedSphereGrid_parallel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_CubedSphereGrid_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_CubedSphereGrid_parallel Checking test 025 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 129.942276 - 0: The maximum resident set size (KB) = 632156 + 0: The total amount of wall time = 128.411583 + 0: The maximum resident set size (KB) = 634004 Test 025 control_CubedSphereGrid_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_latlon -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_latlon +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_latlon Checking test 026 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1556,16 +1556,16 @@ Checking test 026 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.439580 - 0: The maximum resident set size (KB) = 639144 + 0: The total amount of wall time = 135.139528 + 0: The maximum resident set size (KB) = 631308 Test 026 control_latlon PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_wrtGauss_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_wrtGauss_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_wrtGauss_netcdf_parallel Checking test 027 control_wrtGauss_netcdf_parallel results .... - Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK @@ -1574,14 +1574,14 @@ Checking test 027 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 137.474737 - 0: The maximum resident set size (KB) = 630904 + 0: The total amount of wall time = 140.404891 + 0: The maximum resident set size (KB) = 637800 Test 027 control_wrtGauss_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_c48 Checking test 028 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1620,14 +1620,14 @@ Checking test 028 control_c48 results .... Comparing 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.067379 -0: The maximum resident set size (KB) = 808208 +0: The total amount of wall time = 367.999687 +0: The maximum resident set size (KB) = 826728 Test 028 control_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_c192 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_c192 Checking test 029 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1638,14 +1638,14 @@ Checking test 029 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 531.907423 - 0: The maximum resident set size (KB) = 773272 + 0: The total amount of wall time = 532.909602 + 0: The maximum resident set size (KB) = 770652 Test 029 control_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_c384 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_c384 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_c384 Checking test 030 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1656,14 +1656,14 @@ Checking test 030 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 529.906850 - 0: The maximum resident set size (KB) = 1270980 + 0: The total amount of wall time = 522.338721 + 0: The maximum resident set size (KB) = 1264280 Test 030 control_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_c384gdas -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_c384gdas +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_c384gdas Checking test 031 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1706,14 +1706,14 @@ Checking test 031 control_c384gdas 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 = 467.586973 - 0: The maximum resident set size (KB) = 1384000 + 0: The total amount of wall time = 460.359241 + 0: The maximum resident set size (KB) = 1383132 Test 031 control_c384gdas PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_stochy Checking test 032 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1724,28 +1724,28 @@ Checking test 032 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 87.971136 - 0: The maximum resident set size (KB) = 633272 + 0: The total amount of wall time = 88.503506 + 0: The maximum resident set size (KB) = 638816 Test 032 control_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_stochy_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_stochy_restart Checking test 033 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 48.853826 - 0: The maximum resident set size (KB) = 490064 + 0: The total amount of wall time = 49.335325 + 0: The maximum resident set size (KB) = 487136 Test 033 control_stochy_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_lndp -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_lndp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_lndp Checking test 034 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1756,14 +1756,14 @@ Checking test 034 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 82.359901 - 0: The maximum resident set size (KB) = 642832 + 0: The total amount of wall time = 82.554607 + 0: The maximum resident set size (KB) = 631136 Test 034 control_lndp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_iovr4 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_iovr4 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_iovr4 Checking test 035 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1778,14 +1778,14 @@ Checking test 035 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.918877 - 0: The maximum resident set size (KB) = 631316 + 0: The total amount of wall time = 137.405987 + 0: The maximum resident set size (KB) = 631208 Test 035 control_iovr4 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_iovr5 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_iovr5 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_iovr5 Checking test 036 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1800,14 +1800,14 @@ Checking test 036 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 137.383411 - 0: The maximum resident set size (KB) = 635484 + 0: The total amount of wall time = 138.630080 + 0: The maximum resident set size (KB) = 635348 Test 036 control_iovr5 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_p8 Checking test 037 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1854,14 +1854,14 @@ Checking test 037 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 171.784108 - 0: The maximum resident set size (KB) = 1603932 + 0: The total amount of wall time = 170.796383 + 0: The maximum resident set size (KB) = 1611912 Test 037 control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_restart_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_restart_p8 Checking test 038 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1900,14 +1900,14 @@ Checking test 038 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 92.262942 - 0: The maximum resident set size (KB) = 868036 + 0: The total amount of wall time = 91.898385 + 0: The maximum resident set size (KB) = 873860 Test 038 control_restart_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_qr_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_qr_p8 Checking test 039 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1954,14 +1954,14 @@ Checking test 039 control_qr_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 170.920530 - 0: The maximum resident set size (KB) = 1603460 + 0: The total amount of wall time = 170.344249 + 0: The maximum resident set size (KB) = 1607484 Test 039 control_qr_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_restart_qr_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_restart_qr_p8 Checking test 040 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2000,14 +2000,14 @@ Checking test 040 control_restart_qr_p8 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.422263 - 0: The maximum resident set size (KB) = 866236 + 0: The total amount of wall time = 91.829906 + 0: The maximum resident set size (KB) = 871116 Test 040 control_restart_qr_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_decomp_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_decomp_p8 Checking test 041 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2050,14 +2050,14 @@ Checking test 041 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 180.007812 - 0: The maximum resident set size (KB) = 1587036 + 0: The total amount of wall time = 177.673221 + 0: The maximum resident set size (KB) = 1587992 Test 041 control_decomp_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_2threads_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_2threads_p8 Checking test 042 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2100,14 +2100,14 @@ Checking test 042 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 161.262969 - 0: The maximum resident set size (KB) = 1693320 + 0: The total amount of wall time = 159.642513 + 0: The maximum resident set size (KB) = 1689964 Test 042 control_2threads_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_lndp -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_p8_lndp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_p8_lndp Checking test 043 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2126,14 +2126,14 @@ Checking test 043 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 321.514843 - 0: The maximum resident set size (KB) = 1603616 + 0: The total amount of wall time = 317.351254 + 0: The maximum resident set size (KB) = 1602380 Test 043 control_p8_lndp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_p8_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_p8_rrtmgp Checking test 044 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2180,14 +2180,14 @@ Checking test 044 control_p8_rrtmgp results .... Comparing 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.234406 - 0: The maximum resident set size (KB) = 1663172 + 0: The total amount of wall time = 225.473650 + 0: The maximum resident set size (KB) = 1666088 Test 044 control_p8_rrtmgp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_mynn -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_p8_mynn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_p8_mynn Checking test 045 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2234,14 +2234,14 @@ Checking test 045 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 179.707611 - 0: The maximum resident set size (KB) = 1600948 + 0: The total amount of wall time = 174.065949 + 0: The maximum resident set size (KB) = 1608628 Test 045 control_p8_mynn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/merra2_thompson -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/merra2_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/merra2_thompson Checking test 046 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2288,14 +2288,14 @@ Checking test 046 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 197.662018 - 0: The maximum resident set size (KB) = 1607996 + 0: The total amount of wall time = 195.830365 + 0: The maximum resident set size (KB) = 1615540 Test 046 merra2_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/regional_control Checking test 047 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2306,28 +2306,28 @@ Checking test 047 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 304.920983 - 0: The maximum resident set size (KB) = 872388 + 0: The total amount of wall time = 300.315583 + 0: The maximum resident set size (KB) = 870464 Test 047 regional_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/regional_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/regional_restart Checking test 048 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 155.847927 - 0: The maximum resident set size (KB) = 863884 + 0: The total amount of wall time = 153.411606 + 0: The maximum resident set size (KB) = 872964 Test 048 regional_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/regional_control_qr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/regional_control_qr Checking test 049 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2338,28 +2338,28 @@ Checking test 049 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 307.685686 - 0: The maximum resident set size (KB) = 870700 + 0: The total amount of wall time = 300.134648 + 0: The maximum resident set size (KB) = 871124 Test 049 regional_control_qr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/regional_restart_qr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/regional_restart_qr Checking test 050 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 154.981841 - 0: The maximum resident set size (KB) = 862876 + 0: The total amount of wall time = 154.260951 + 0: The maximum resident set size (KB) = 866280 Test 050 regional_restart_qr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/regional_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/regional_decomp Checking test 051 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2370,14 +2370,14 @@ Checking test 051 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 316.794006 - 0: The maximum resident set size (KB) = 864692 + 0: The total amount of wall time = 318.147279 + 0: The maximum resident set size (KB) = 860952 Test 051 regional_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/regional_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/regional_2threads Checking test 052 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2388,14 +2388,14 @@ Checking test 052 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 190.240027 - 0: The maximum resident set size (KB) = 860620 + 0: The total amount of wall time = 182.698006 + 0: The maximum resident set size (KB) = 850424 Test 052 regional_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_noquilt -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/regional_noquilt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/regional_noquilt Checking test 053 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2403,28 +2403,28 @@ Checking test 053 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 327.541693 - 0: The maximum resident set size (KB) = 859788 + 0: The total amount of wall time = 321.717511 + 0: The maximum resident set size (KB) = 858776 Test 053 regional_noquilt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/regional_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/regional_netcdf_parallel Checking test 054 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 300.714231 - 0: The maximum resident set size (KB) = 867032 + 0: The total amount of wall time = 295.523754 + 0: The maximum resident set size (KB) = 863932 Test 054 regional_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/regional_2dwrtdecomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/regional_2dwrtdecomp Checking test 055 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2435,14 +2435,14 @@ Checking test 055 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 307.180559 - 0: The maximum resident set size (KB) = 872192 + 0: The total amount of wall time = 301.586950 + 0: The maximum resident set size (KB) = 867588 Test 055 regional_2dwrtdecomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/fv3_regional_wofs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/regional_wofs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/regional_wofs Checking test 056 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2453,14 +2453,14 @@ Checking test 056 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 378.841243 - 0: The maximum resident set size (KB) = 629480 + 0: The total amount of wall time = 377.080974 + 0: The maximum resident set size (KB) = 634636 Test 056 regional_wofs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/rap_control Checking test 057 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2507,14 +2507,14 @@ Checking test 057 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 463.815522 - 0: The maximum resident set size (KB) = 1057208 + 0: The total amount of wall time = 461.362542 + 0: The maximum resident set size (KB) = 1056144 Test 057 rap_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_spp_sppt_shum_skeb -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/regional_spp_sppt_shum_skeb +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/regional_spp_sppt_shum_skeb Checking test 058 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2525,14 +2525,14 @@ Checking test 058 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 243.826609 - 0: The maximum resident set size (KB) = 1179468 + 0: The total amount of wall time = 233.789999 + 0: The maximum resident set size (KB) = 1184152 Test 058 regional_spp_sppt_shum_skeb PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/rap_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/rap_decomp Checking test 059 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2579,14 +2579,14 @@ Checking test 059 rap_decomp results .... Comparing 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.342857 - 0: The maximum resident set size (KB) = 992800 + 0: The total amount of wall time = 478.689404 + 0: The maximum resident set size (KB) = 1000260 Test 059 rap_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/rap_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/rap_2threads Checking test 060 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2633,14 +2633,14 @@ Checking test 060 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 439.727649 - 0: The maximum resident set size (KB) = 1147120 + 0: The total amount of wall time = 437.356801 + 0: The maximum resident set size (KB) = 1139088 Test 060 rap_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/rap_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/rap_restart Checking test 061 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2679,14 +2679,14 @@ Checking test 061 rap_restart results .... Comparing 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.010290 - 0: The maximum resident set size (KB) = 963432 + 0: The total amount of wall time = 234.263072 + 0: The maximum resident set size (KB) = 969124 Test 061 rap_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/rap_sfcdiff Checking test 062 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2733,14 +2733,14 @@ Checking test 062 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 464.684087 - 0: The maximum resident set size (KB) = 1054776 + 0: The total amount of wall time = 462.140811 + 0: The maximum resident set size (KB) = 1057592 Test 062 rap_sfcdiff PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/rap_sfcdiff_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/rap_sfcdiff_decomp Checking test 063 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2787,14 +2787,14 @@ Checking test 063 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 486.014311 - 0: The maximum resident set size (KB) = 1002412 + 0: The total amount of wall time = 484.559187 + 0: The maximum resident set size (KB) = 1003600 Test 063 rap_sfcdiff_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/rap_sfcdiff_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/rap_sfcdiff_restart Checking test 064 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2833,14 +2833,14 @@ Checking test 064 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 344.241875 - 0: The maximum resident set size (KB) = 989724 + 0: The total amount of wall time = 344.286074 + 0: The maximum resident set size (KB) = 989124 Test 064 rap_sfcdiff_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/hrrr_control Checking test 065 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2887,14 +2887,14 @@ Checking test 065 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 448.710638 - 0: The maximum resident set size (KB) = 1052796 + 0: The total amount of wall time = 452.576673 + 0: The maximum resident set size (KB) = 1051780 Test 065 hrrr_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/hrrr_control_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/hrrr_control_decomp Checking test 066 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2941,14 +2941,14 @@ Checking test 066 hrrr_control_decomp results .... Comparing 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.581422 - 0: The maximum resident set size (KB) = 997560 + 0: The total amount of wall time = 467.401240 + 0: The maximum resident set size (KB) = 999020 Test 066 hrrr_control_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/hrrr_control_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/hrrr_control_2threads Checking test 067 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2995,14 +2995,14 @@ Checking test 067 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 421.945929 - 0: The maximum resident set size (KB) = 1139932 + 0: The total amount of wall time = 423.435040 + 0: The maximum resident set size (KB) = 1135884 Test 067 hrrr_control_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/hrrr_control_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/hrrr_control_restart Checking test 068 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3041,14 +3041,14 @@ Checking test 068 hrrr_control_restart results .... Comparing 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.211222 - 0: The maximum resident set size (KB) = 977128 + 0: The total amount of wall time = 328.692838 + 0: The maximum resident set size (KB) = 980364 Test 068 hrrr_control_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/rrfs_v1beta Checking test 069 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3095,14 +3095,14 @@ Checking test 069 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 462.324968 - 0: The maximum resident set size (KB) = 1062536 + 0: The total amount of wall time = 457.596355 + 0: The maximum resident set size (KB) = 1058816 Test 069 rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_v1nssl -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/rrfs_v1nssl +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/rrfs_v1nssl Checking test 070 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3117,14 +3117,14 @@ Checking test 070 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 540.468275 - 0: The maximum resident set size (KB) = 696916 + 0: The total amount of wall time = 537.281951 + 0: The maximum resident set size (KB) = 691132 Test 070 rrfs_v1nssl PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/rrfs_v1nssl_nohailnoccn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/rrfs_v1nssl_nohailnoccn Checking test 071 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3139,14 +3139,14 @@ Checking test 071 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 525.322207 - 0: The maximum resident set size (KB) = 756236 + 0: The total amount of wall time = 525.595084 + 0: The maximum resident set size (KB) = 756080 Test 071 rrfs_v1nssl_nohailnoccn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/rrfs_smoke_conus13km_hrrr_warm Checking test 072 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3155,14 +3155,14 @@ Checking test 072 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 151.842061 - 0: The maximum resident set size (KB) = 1030716 + 0: The total amount of wall time = 150.909567 + 0: The maximum resident set size (KB) = 998684 Test 072 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/rrfs_smoke_conus13km_hrrr_warm_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 073 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3171,14 +3171,14 @@ Checking test 073 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 99.316415 - 0: The maximum resident set size (KB) = 942868 + 0: The total amount of wall time = 94.163862 + 0: The maximum resident set size (KB) = 942800 Test 073 rrfs_smoke_conus13km_hrrr_warm_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/rrfs_conus13km_hrrr_warm Checking test 074 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3187,14 +3187,14 @@ Checking test 074 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 136.832338 - 0: The maximum resident set size (KB) = 946760 + 0: The total amount of wall time = 133.122294 + 0: The maximum resident set size (KB) = 946540 Test 074 rrfs_conus13km_hrrr_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/rrfs_smoke_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/rrfs_smoke_conus13km_radar_tten_warm Checking test 075 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3203,26 +3203,26 @@ Checking test 075 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 153.037213 - 0: The maximum resident set size (KB) = 1042324 + 0: The total amount of wall time = 150.821372 + 0: The maximum resident set size (KB) = 1039484 Test 075 rrfs_smoke_conus13km_radar_tten_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 076 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 73.047279 - 0: The maximum resident set size (KB) = 935436 + 0: The total amount of wall time = 71.004190 + 0: The maximum resident set size (KB) = 930836 Test 076 rrfs_conus13km_hrrr_warm_restart_mismatch PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_csawmg -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_csawmg +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_csawmg Checking test 077 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3233,14 +3233,14 @@ Checking test 077 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 350.447274 - 0: The maximum resident set size (KB) = 725192 + 0: The total amount of wall time = 349.123223 + 0: The maximum resident set size (KB) = 716424 Test 077 control_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_csawmgt -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_csawmgt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_csawmgt Checking test 078 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3251,14 +3251,14 @@ Checking test 078 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 344.550615 - 0: The maximum resident set size (KB) = 719276 + 0: The total amount of wall time = 340.419308 + 0: The maximum resident set size (KB) = 722148 Test 078 control_csawmgt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_ras -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_ras Checking test 079 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3269,26 +3269,26 @@ Checking test 079 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 181.563143 - 0: The maximum resident set size (KB) = 723980 + 0: The total amount of wall time = 182.661760 + 0: The maximum resident set size (KB) = 721104 Test 079 control_ras PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_wam -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_wam +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_wam Checking test 080 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 112.369330 - 0: The maximum resident set size (KB) = 640416 + 0: The total amount of wall time = 112.892540 + 0: The maximum resident set size (KB) = 636996 Test 080 control_wam PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_faster -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_p8_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_p8_faster Checking test 081 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3335,14 +3335,14 @@ Checking test 081 control_p8_faster results .... Comparing 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.219679 - 0: The maximum resident set size (KB) = 1597144 + 0: The total amount of wall time = 159.148424 + 0: The maximum resident set size (KB) = 1606012 Test 081 control_p8_faster PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control_faster -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/regional_control_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/regional_control_faster Checking test 082 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3353,56 +3353,56 @@ Checking test 082 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 276.231661 - 0: The maximum resident set size (KB) = 868300 + 0: The total amount of wall time = 280.031814 + 0: The maximum resident set size (KB) = 871236 Test 082 regional_control_faster PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 083 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 845.521170 - 0: The maximum resident set size (KB) = 1007828 + 0: The total amount of wall time = 833.214200 + 0: The maximum resident set size (KB) = 1014556 Test 083 rrfs_smoke_conus13km_hrrr_warm_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 084 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 473.260206 - 0: The maximum resident set size (KB) = 927220 + 0: The total amount of wall time = 464.057121 + 0: The maximum resident set size (KB) = 971236 Test 084 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/rrfs_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/rrfs_conus13km_hrrr_warm_debug Checking test 085 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 729.580350 - 0: The maximum resident set size (KB) = 965040 + 0: The total amount of wall time = 737.900372 + 0: The maximum resident set size (KB) = 966844 Test 085 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_CubedSphereGrid_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_CubedSphereGrid_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_CubedSphereGrid_debug Checking test 086 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3429,334 +3429,334 @@ Checking test 086 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 144.084839 - 0: The maximum resident set size (KB) = 791116 + 0: The total amount of wall time = 146.443613 + 0: The maximum resident set size (KB) = 786520 Test 086 control_CubedSphereGrid_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_wrtGauss_netcdf_parallel_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_wrtGauss_netcdf_parallel_debug Checking test 087 control_wrtGauss_netcdf_parallel_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 145.344748 - 0: The maximum resident set size (KB) = 786940 + 0: The total amount of wall time = 143.152011 + 0: The maximum resident set size (KB) = 786640 Test 087 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_stochy_debug Checking test 088 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 163.883024 - 0: The maximum resident set size (KB) = 799692 + 0: The total amount of wall time = 163.971403 + 0: The maximum resident set size (KB) = 800400 Test 088 control_stochy_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_lndp_debug Checking test 089 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 147.105979 - 0: The maximum resident set size (KB) = 794552 + 0: The total amount of wall time = 147.367653 + 0: The maximum resident set size (KB) = 793724 Test 089 control_lndp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_csawmg_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_csawmg_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_csawmg_debug Checking test 090 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 227.449229 - 0: The maximum resident set size (KB) = 843604 + 0: The total amount of wall time = 224.963645 + 0: The maximum resident set size (KB) = 840068 Test 090 control_csawmg_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_csawmgt_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_csawmgt_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_csawmgt_debug Checking test 091 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 227.235742 - 0: The maximum resident set size (KB) = 840076 + 0: The total amount of wall time = 225.028251 + 0: The maximum resident set size (KB) = 838388 Test 091 control_csawmgt_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_ras_debug Checking test 092 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 149.868635 - 0: The maximum resident set size (KB) = 803020 + 0: The total amount of wall time = 149.083352 + 0: The maximum resident set size (KB) = 799816 Test 092 control_ras_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_diag_debug Checking test 093 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 151.960007 - 0: The maximum resident set size (KB) = 850660 + 0: The total amount of wall time = 150.137876 + 0: The maximum resident set size (KB) = 846844 Test 093 control_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_debug_p8 Checking test 094 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 166.719999 - 0: The maximum resident set size (KB) = 1612668 + 0: The total amount of wall time = 166.018201 + 0: The maximum resident set size (KB) = 1622360 Test 094 control_debug_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/regional_debug Checking test 095 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 972.721894 - 0: The maximum resident set size (KB) = 880180 + 0: The total amount of wall time = 974.397844 + 0: The maximum resident set size (KB) = 878936 Test 095 regional_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/rap_control_debug Checking test 096 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.847053 - 0: The maximum resident set size (KB) = 1170184 + 0: The total amount of wall time = 269.136229 + 0: The maximum resident set size (KB) = 1174300 Test 096 rap_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/hrrr_control_debug Checking test 097 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 264.952427 - 0: The maximum resident set size (KB) = 1168604 + 0: The total amount of wall time = 259.996580 + 0: The maximum resident set size (KB) = 1166856 Test 097 hrrr_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/rap_unified_drag_suite_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/rap_unified_drag_suite_debug Checking test 098 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 267.583059 - 0: The maximum resident set size (KB) = 1166864 + 0: The total amount of wall time = 267.349714 + 0: The maximum resident set size (KB) = 1171552 Test 098 rap_unified_drag_suite_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/rap_diag_debug Checking test 099 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.461793 - 0: The maximum resident set size (KB) = 1243840 + 0: The total amount of wall time = 285.262490 + 0: The maximum resident set size (KB) = 1255076 Test 099 rap_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/rap_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/rap_cires_ugwp_debug Checking test 100 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.133528 - 0: The maximum resident set size (KB) = 1161196 + 0: The total amount of wall time = 274.521402 + 0: The maximum resident set size (KB) = 1164792 Test 100 rap_cires_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/rap_unified_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/rap_unified_ugwp_debug Checking test 101 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.042762 - 0: The maximum resident set size (KB) = 1175772 + 0: The total amount of wall time = 277.845366 + 0: The maximum resident set size (KB) = 1166212 Test 101 rap_unified_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/rap_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/rap_lndp_debug Checking test 102 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.195757 - 0: The maximum resident set size (KB) = 1166120 + 0: The total amount of wall time = 278.400244 + 0: The maximum resident set size (KB) = 1150908 Test 102 rap_lndp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_flake_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/rap_flake_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/rap_flake_debug Checking test 103 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.961257 - 0: The maximum resident set size (KB) = 1173568 + 0: The total amount of wall time = 278.112161 + 0: The maximum resident set size (KB) = 1166788 Test 103 rap_flake_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/rap_progcld_thompson_debug Checking test 104 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 265.426317 - 0: The maximum resident set size (KB) = 1172016 + 0: The total amount of wall time = 267.449692 + 0: The maximum resident set size (KB) = 1166832 Test 104 rap_progcld_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_noah_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/rap_noah_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/rap_noah_debug Checking test 105 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 267.152305 - 0: The maximum resident set size (KB) = 1168076 + 0: The total amount of wall time = 265.010541 + 0: The maximum resident set size (KB) = 1166836 Test 105 rap_noah_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_sfcdiff_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/rap_sfcdiff_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/rap_sfcdiff_debug Checking test 106 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 265.098137 - 0: The maximum resident set size (KB) = 1169028 + 0: The total amount of wall time = 270.530591 + 0: The maximum resident set size (KB) = 1168140 Test 106 rap_sfcdiff_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/rap_noah_sfcdiff_cires_ugwp_debug Checking test 107 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 445.186206 - 0: The maximum resident set size (KB) = 1168168 + 0: The total amount of wall time = 444.683480 + 0: The maximum resident set size (KB) = 1169700 Test 107 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/rrfs_v1beta_debug Checking test 108 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.675929 - 0: The maximum resident set size (KB) = 1158452 + 0: The total amount of wall time = 269.952393 + 0: The maximum resident set size (KB) = 1161908 Test 108 rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_wam_debug Checking test 109 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 272.827124 - 0: The maximum resident set size (KB) = 534972 + 0: The total amount of wall time = 280.511228 + 0: The maximum resident set size (KB) = 525084 Test 109 control_wam_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3767,14 +3767,14 @@ Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 223.473777 - 0: The maximum resident set size (KB) = 1075636 + 0: The total amount of wall time = 223.081981 + 0: The maximum resident set size (KB) = 1081068 Test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/rap_control_dyn32_phy32 Checking test 111 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3821,14 +3821,14 @@ Checking test 111 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 384.036256 - 0: The maximum resident set size (KB) = 997316 + 0: The total amount of wall time = 385.044986 + 0: The maximum resident set size (KB) = 1008876 Test 111 rap_control_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/hrrr_control_dyn32_phy32 Checking test 112 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3875,14 +3875,14 @@ Checking test 112 hrrr_control_dyn32_phy32 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 = 198.942338 - 0: The maximum resident set size (KB) = 959744 + 0: The total amount of wall time = 200.017873 + 0: The maximum resident set size (KB) = 951176 Test 112 hrrr_control_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/rap_2threads_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/rap_2threads_dyn32_phy32 Checking test 113 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3929,14 +3929,14 @@ Checking test 113 rap_2threads_dyn32_phy32 results .... Comparing 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.681951 - 0: The maximum resident set size (KB) = 1020948 + 0: The total amount of wall time = 367.366771 + 0: The maximum resident set size (KB) = 1023284 Test 113 rap_2threads_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/hrrr_control_2threads_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/hrrr_control_2threads_dyn32_phy32 Checking test 114 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3983,14 +3983,14 @@ Checking test 114 hrrr_control_2threads_dyn32_phy32 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 = 190.081749 - 0: The maximum resident set size (KB) = 1002736 + 0: The total amount of wall time = 189.258313 + 0: The maximum resident set size (KB) = 1007412 Test 114 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/hrrr_control_decomp_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/hrrr_control_decomp_dyn32_phy32 Checking test 115 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4037,14 +4037,14 @@ Checking test 115 hrrr_control_decomp_dyn32_phy32 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 = 210.316114 - 0: The maximum resident set size (KB) = 898408 + 0: The total amount of wall time = 210.313424 + 0: The maximum resident set size (KB) = 897644 Test 115 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/rap_restart_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/rap_restart_dyn32_phy32 Checking test 116 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4083,14 +4083,14 @@ Checking test 116 rap_restart_dyn32_phy32 results .... Comparing 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.911401 - 0: The maximum resident set size (KB) = 952032 + 0: The total amount of wall time = 289.648644 + 0: The maximum resident set size (KB) = 940136 Test 116 rap_restart_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/hrrr_control_restart_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/hrrr_control_restart_dyn32_phy32 Checking test 117 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4129,14 +4129,14 @@ Checking test 117 hrrr_control_restart_dyn32_phy32 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 = 104.808353 - 0: The maximum resident set size (KB) = 862572 + 0: The total amount of wall time = 104.630826 + 0: The maximum resident set size (KB) = 864996 Test 117 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/rap_control_dyn64_phy32 Checking test 118 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4183,81 +4183,81 @@ Checking test 118 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 246.010903 - 0: The maximum resident set size (KB) = 966028 + 0: The total amount of wall time = 246.377412 + 0: The maximum resident set size (KB) = 966044 Test 118 rap_control_dyn64_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/rap_control_debug_dyn32_phy32 Checking test 119 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 266.652796 - 0: The maximum resident set size (KB) = 1061656 + 0: The total amount of wall time = 266.429556 + 0: The maximum resident set size (KB) = 1055712 Test 119 rap_control_debug_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/hrrr_control_debug_dyn32_phy32 Checking test 120 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 260.168364 - 0: The maximum resident set size (KB) = 1049452 + 0: The total amount of wall time = 259.643959 + 0: The maximum resident set size (KB) = 1053308 Test 120 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/rap_control_dyn64_phy32_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/rap_control_dyn64_phy32_debug Checking test 121 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.697611 - 0: The maximum resident set size (KB) = 1093748 + 0: The total amount of wall time = 278.576594 + 0: The maximum resident set size (KB) = 1094600 Test 121 rap_control_dyn64_phy32_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/hafs_regional_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/hafs_regional_atm Checking test 122 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 244.311614 - 0: The maximum resident set size (KB) = 1045520 + 0: The total amount of wall time = 241.232466 + 0: The maximum resident set size (KB) = 1051672 Test 122 hafs_regional_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/hafs_regional_atm_thompson_gfdlsf +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/hafs_regional_atm_thompson_gfdlsf Checking test 123 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 367.804284 - 0: The maximum resident set size (KB) = 1421784 + 0: The total amount of wall time = 335.617185 + 0: The maximum resident set size (KB) = 1418408 Test 123 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/hafs_regional_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/hafs_regional_atm_ocn Checking test 124 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4266,62 +4266,62 @@ Checking test 124 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 386.845780 - 0: The maximum resident set size (KB) = 1216688 + 0: The total amount of wall time = 386.527487 + 0: The maximum resident set size (KB) = 1229496 Test 124 hafs_regional_atm_ocn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_wav -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/hafs_regional_atm_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/hafs_regional_atm_wav Checking test 125 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - Comparing 20190829.060000.out_grd.ww3 ............MISSING baseline - Comparing 20190829.060000.out_pnt.ww3 ............MISSING baseline + Comparing 20190829.060000.out_grd.ww3 .........OK + Comparing 20190829.060000.out_pnt.ww3 .........OK Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 749.179086 - 0: The maximum resident set size (KB) = 1259244 + 0: The total amount of wall time = 750.801710 + 0: The maximum resident set size (KB) = 1261348 -Test 125 hafs_regional_atm_wav FAIL Tries: 2 +Test 125 hafs_regional_atm_wav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/hafs_regional_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/hafs_regional_atm_ocn_wav Checking test 126 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK Comparing archs.2019_241_06.a .........OK - Comparing 20200825.180000.out_grd.ww3 ............MISSING file - Comparing 20200825.180000.out_pnt.ww3 ............MISSING file + Comparing 20190829.060000.out_grd.ww3 .........OK + Comparing 20190829.060000.out_pnt.ww3 .........OK Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 849.252606 - 0: The maximum resident set size (KB) = 1260364 + 0: The total amount of wall time = 848.422145 + 0: The maximum resident set size (KB) = 1273080 -Test 126 hafs_regional_atm_ocn_wav FAIL Tries: 2 +Test 126 hafs_regional_atm_ocn_wav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/hafs_regional_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/hafs_regional_1nest_atm Checking test 127 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 321.596384 - 0: The maximum resident set size (KB) = 508592 + 0: The total amount of wall time = 321.068601 + 0: The maximum resident set size (KB) = 508272 Test 127 hafs_regional_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/hafs_regional_telescopic_2nests_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/hafs_regional_telescopic_2nests_atm Checking test 128 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4330,28 +4330,28 @@ Checking test 128 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 369.683236 - 0: The maximum resident set size (KB) = 514548 + 0: The total amount of wall time = 368.131850 + 0: The maximum resident set size (KB) = 514496 Test 128 hafs_regional_telescopic_2nests_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_global_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/hafs_global_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/hafs_global_1nest_atm Checking test 129 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 147.084732 - 0: The maximum resident set size (KB) = 352428 + 0: The total amount of wall time = 146.857119 + 0: The maximum resident set size (KB) = 354240 Test 129 hafs_global_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_global_multiple_4nests_atm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/hafs_global_multiple_4nests_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/hafs_global_multiple_4nests_atm Checking test 130 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4369,14 +4369,14 @@ Checking test 130 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 418.391922 - 0: The maximum resident set size (KB) = 432220 + 0: The total amount of wall time = 416.586668 + 0: The maximum resident set size (KB) = 452612 Test 130 hafs_global_multiple_4nests_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/hafs_regional_specified_moving_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/hafs_regional_specified_moving_1nest_atm Checking test 131 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4385,28 +4385,28 @@ Checking test 131 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 205.556676 - 0: The maximum resident set size (KB) = 524988 + 0: The total amount of wall time = 205.264738 + 0: The maximum resident set size (KB) = 523104 Test 131 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/hafs_regional_storm_following_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/hafs_regional_storm_following_1nest_atm Checking test 132 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 194.450855 - 0: The maximum resident set size (KB) = 519056 + 0: The total amount of wall time = 193.360254 + 0: The maximum resident set size (KB) = 519748 Test 132 hafs_regional_storm_following_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/hafs_regional_storm_following_1nest_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/hafs_regional_storm_following_1nest_atm_ocn Checking test 133 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4415,42 +4415,42 @@ Checking test 133 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 228.225873 - 0: The maximum resident set size (KB) = 565860 + 0: The total amount of wall time = 227.299365 + 0: The maximum resident set size (KB) = 566884 Test 133 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_global_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/hafs_global_storm_following_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/hafs_global_storm_following_1nest_atm Checking test 134 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 59.983442 - 0: The maximum resident set size (KB) = 372876 + 0: The total amount of wall time = 59.368887 + 0: The maximum resident set size (KB) = 368432 Test 134 hafs_global_storm_following_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 724.749289 - 0: The maximum resident set size (KB) = 581788 + 0: The total amount of wall time = 729.005972 + 0: The maximum resident set size (KB) = 585912 Test 135 hafs_regional_storm_following_1nest_atm_ocn_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 136 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4458,17 +4458,17 @@ Checking test 136 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing sfc.nest02.f006.nc .........OK Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - Comparing 20200825.180000.out_grd.ww3 ............MISSING baseline - Comparing 20200825.180000.out_pnt.ww3 ............MISSING baseline + Comparing 20200825.180000.out_grd.ww3 .........OK + Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 482.658441 - 0: The maximum resident set size (KB) = 622448 + 0: The total amount of wall time = 487.380268 + 0: The maximum resident set size (KB) = 619804 -Test 136 hafs_regional_storm_following_1nest_atm_ocn_wav FAIL Tries: 2 +Test 136 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_docn -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/hafs_regional_docn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/hafs_regional_docn Checking test 137 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4476,14 +4476,14 @@ Checking test 137 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 359.526389 - 0: The maximum resident set size (KB) = 1227528 + 0: The total amount of wall time = 368.004497 + 0: The maximum resident set size (KB) = 1228220 Test 137 hafs_regional_docn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_docn_oisst -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/hafs_regional_docn_oisst +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/hafs_regional_docn_oisst Checking test 138 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4491,131 +4491,131 @@ Checking test 138 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 365.467935 - 0: The maximum resident set size (KB) = 1214824 + 0: The total amount of wall time = 367.277816 + 0: The maximum resident set size (KB) = 1213784 Test 138 hafs_regional_docn_oisst PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_datm_cdeps -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/hafs_regional_datm_cdeps +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/hafs_regional_datm_cdeps Checking test 139 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 929.374832 - 0: The maximum resident set size (KB) = 1037748 + 0: The total amount of wall time = 969.250893 + 0: The maximum resident set size (KB) = 1041436 Test 139 hafs_regional_datm_cdeps PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/datm_cdeps_control_cfsr Checking test 140 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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.952467 - 0: The maximum resident set size (KB) = 1053056 + 0: The total amount of wall time = 158.525673 + 0: The maximum resident set size (KB) = 1061060 Test 140 datm_cdeps_control_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/datm_cdeps_restart_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/datm_cdeps_restart_cfsr Checking test 141 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 100.641495 - 0: The maximum resident set size (KB) = 1020712 + 0: The total amount of wall time = 97.436402 + 0: The maximum resident set size (KB) = 1026836 Test 141 datm_cdeps_restart_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/datm_cdeps_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/datm_cdeps_control_gefs Checking test 142 datm_cdeps_control_gefs 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 = 152.527719 - 0: The maximum resident set size (KB) = 968952 + 0: The total amount of wall time = 153.396301 + 0: The maximum resident set size (KB) = 969712 Test 142 datm_cdeps_control_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_iau_gefs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/datm_cdeps_iau_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/datm_cdeps_iau_gefs Checking test 143 datm_cdeps_iau_gefs 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 = 157.369561 - 0: The maximum resident set size (KB) = 971316 + 0: The total amount of wall time = 154.425470 + 0: The maximum resident set size (KB) = 963740 Test 143 datm_cdeps_iau_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_stochy_gefs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/datm_cdeps_stochy_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/datm_cdeps_stochy_gefs Checking test 144 datm_cdeps_stochy_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 151.663613 - 0: The maximum resident set size (KB) = 969812 + 0: The total amount of wall time = 154.605799 + 0: The maximum resident set size (KB) = 969296 Test 144 datm_cdeps_stochy_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_ciceC_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/datm_cdeps_ciceC_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/datm_cdeps_ciceC_cfsr Checking test 145 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 157.162281 - 0: The maximum resident set size (KB) = 1059412 + 0: The total amount of wall time = 156.279716 + 0: The maximum resident set size (KB) = 1055892 Test 145 datm_cdeps_ciceC_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/datm_cdeps_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/datm_cdeps_bulk_cfsr Checking test 146 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 158.686954 - 0: The maximum resident set size (KB) = 1071292 + 0: The total amount of wall time = 160.299140 + 0: The maximum resident set size (KB) = 1059052 Test 146 datm_cdeps_bulk_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/datm_cdeps_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/datm_cdeps_bulk_gefs Checking test 147 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.132524 - 0: The maximum resident set size (KB) = 968316 + 0: The total amount of wall time = 155.128012 + 0: The maximum resident set size (KB) = 966880 Test 147 datm_cdeps_bulk_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/datm_cdeps_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/datm_cdeps_mx025_cfsr Checking test 148 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4624,14 +4624,14 @@ Checking test 148 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 440.795779 - 0: The maximum resident set size (KB) = 892340 + 0: The total amount of wall time = 443.816167 + 0: The maximum resident set size (KB) = 883840 Test 148 datm_cdeps_mx025_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/datm_cdeps_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/datm_cdeps_mx025_gefs Checking test 149 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4640,77 +4640,77 @@ Checking test 149 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 442.219621 - 0: The maximum resident set size (KB) = 932108 + 0: The total amount of wall time = 427.769214 + 0: The maximum resident set size (KB) = 934616 Test 149 datm_cdeps_mx025_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/datm_cdeps_multiple_files_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/datm_cdeps_multiple_files_cfsr Checking test 150 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 156.856165 - 0: The maximum resident set size (KB) = 1060024 + 0: The total amount of wall time = 159.443521 + 0: The maximum resident set size (KB) = 1063384 Test 150 datm_cdeps_multiple_files_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/datm_cdeps_3072x1536_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/datm_cdeps_3072x1536_cfsr Checking test 151 datm_cdeps_3072x1536_cfsr 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 = 227.400905 - 0: The maximum resident set size (KB) = 2298812 + 0: The total amount of wall time = 222.593154 + 0: The maximum resident set size (KB) = 2304896 Test 151 datm_cdeps_3072x1536_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_gfs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/datm_cdeps_gfs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/datm_cdeps_gfs Checking test 152 datm_cdeps_gfs 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 = 241.184947 - 0: The maximum resident set size (KB) = 2356428 + 0: The total amount of wall time = 256.109077 + 0: The maximum resident set size (KB) = 2364064 Test 152 datm_cdeps_gfs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/datm_cdeps_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/datm_cdeps_debug_cfsr Checking test 153 datm_cdeps_debug_cfsr results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 356.146139 - 0: The maximum resident set size (KB) = 988676 + 0: The total amount of wall time = 364.021300 + 0: The maximum resident set size (KB) = 994388 Test 153 datm_cdeps_debug_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_control_cfsr_faster -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/datm_cdeps_control_cfsr_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/datm_cdeps_control_cfsr_faster Checking test 154 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.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 = 158.893601 - 0: The maximum resident set size (KB) = 1045860 + 0: The total amount of wall time = 157.947977 + 0: The maximum resident set size (KB) = 1056312 Test 154 datm_cdeps_control_cfsr_faster PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/datm_cdeps_lnd_gswp3 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/datm_cdeps_lnd_gswp3 Checking test 155 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4719,14 +4719,14 @@ Checking test 155 datm_cdeps_lnd_gswp3 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 = 8.480319 - 0: The maximum resident set size (KB) = 261416 + 0: The total amount of wall time = 13.766047 + 0: The maximum resident set size (KB) = 265700 Test 155 datm_cdeps_lnd_gswp3 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/datm_cdeps_lnd_gswp3_rst +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/datm_cdeps_lnd_gswp3_rst Checking test 156 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4735,14 +4735,14 @@ Checking test 156 datm_cdeps_lnd_gswp3_rst 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 = 14.559003 - 0: The maximum resident set size (KB) = 258832 + 0: The total amount of wall time = 15.414734 + 0: The maximum resident set size (KB) = 263520 Test 156 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_atmlnd_sbs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_p8_atmlnd_sbs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_p8_atmlnd_sbs Checking test 157 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4827,64 +4827,64 @@ Checking test 157 control_p8_atmlnd_sbs 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 = 211.040428 - 0: The maximum resident set size (KB) = 1602332 + 0: The total amount of wall time = 209.935483 + 0: The maximum resident set size (KB) = 1601520 Test 157 control_p8_atmlnd_sbs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/atmwav_control_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/atmwav_control_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/atmwav_control_noaero_p8 Checking test 158 atmwav_control_noaero_p8 results .... - Comparing sfcf000.nc ............MISSING baseline - Comparing sfcf018.nc ............MISSING file - Comparing atmf000.nc ............MISSING baseline - Comparing atmf018.nc ............MISSING file - Comparing RESTART/20210322.180000.coupler.res ............MISSING baseline - Comparing RESTART/20210322.180000.fv_core.res.nc ............MISSING baseline - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc ............MISSING baseline - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc ............MISSING baseline - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc ............MISSING baseline - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc ............MISSING baseline - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc ............MISSING baseline - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc ............MISSING baseline - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc ............MISSING baseline - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc ............MISSING baseline - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc ............MISSING baseline - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc ............MISSING baseline - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc ............MISSING baseline - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc ............MISSING baseline - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc ............MISSING baseline - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc ............MISSING baseline - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc ............MISSING baseline - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc ............MISSING baseline - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc ............MISSING baseline - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc ............MISSING baseline - Comparing RESTART/20210322.180000.phy_data.tile1.nc ............MISSING baseline - Comparing RESTART/20210322.180000.phy_data.tile2.nc ............MISSING baseline - Comparing RESTART/20210322.180000.phy_data.tile3.nc ............MISSING baseline - Comparing RESTART/20210322.180000.phy_data.tile4.nc ............MISSING baseline - Comparing RESTART/20210322.180000.phy_data.tile5.nc ............MISSING baseline - Comparing RESTART/20210322.180000.phy_data.tile6.nc ............MISSING baseline - Comparing RESTART/20210322.180000.sfc_data.tile1.nc ............MISSING baseline - Comparing RESTART/20210322.180000.sfc_data.tile2.nc ............MISSING baseline - Comparing RESTART/20210322.180000.sfc_data.tile3.nc ............MISSING baseline - Comparing RESTART/20210322.180000.sfc_data.tile4.nc ............MISSING baseline - Comparing RESTART/20210322.180000.sfc_data.tile5.nc ............MISSING baseline - Comparing RESTART/20210322.180000.sfc_data.tile6.nc ............MISSING baseline - Comparing RESTART/ufs.atmw.cpl.r.2021-03-22-64800.nc ............MISSING baseline - Comparing 20210322.180000.out_pnt.ww3 ............MISSING baseline - Comparing 20210322.180000.out_grd.ww3 ............MISSING baseline - Comparing ufs.atmw.ww3.r.2021-03-22-64800 ............MISSING file - - 0: The total amount of wall time = 96.616794 - 0: The maximum resident set size (KB) = 1634220 - -Test 158 atmwav_control_noaero_p8 FAIL Tries: 2 + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + Comparing RESTART/ufs.atmw.cpl.r.2021-03-22-64800.nc .........OK + Comparing 20210322.180000.out_pnt.ww3 .........OK + Comparing 20210322.180000.out_grd.ww3 .........OK + Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK + + 0: The total amount of wall time = 96.622305 + 0: The maximum resident set size (KB) = 1628316 + +Test 158 atmwav_control_noaero_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_atmwav -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/control_atmwav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_atmwav Checking test 159 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4928,14 +4928,14 @@ Checking test 159 control_atmwav 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.562203 - 0: The maximum resident set size (KB) = 662472 + 0: The total amount of wall time = 89.974736 + 0: The maximum resident set size (KB) = 666248 Test 159 control_atmwav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/atmaero_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/atmaero_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/atmaero_control_p8 Checking test 160 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4979,14 +4979,14 @@ Checking test 160 atmaero_control_p8 results .... Comparing 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.336876 - 0: The maximum resident set size (KB) = 2969524 + 0: The total amount of wall time = 233.222503 + 0: The maximum resident set size (KB) = 2970312 Test 160 atmaero_control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/atmaero_control_p8_rad -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/atmaero_control_p8_rad +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/atmaero_control_p8_rad Checking test 161 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5030,14 +5030,14 @@ Checking test 161 atmaero_control_p8_rad results .... Comparing 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.384856 - 0: The maximum resident set size (KB) = 3041624 + 0: The total amount of wall time = 297.425931 + 0: The maximum resident set size (KB) = 3035100 Test 161 atmaero_control_p8_rad PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/atmaero_control_p8_rad_micro -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/atmaero_control_p8_rad_micro +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/atmaero_control_p8_rad_micro Checking test 162 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5081,14 +5081,14 @@ Checking test 162 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 286.744769 - 0: The maximum resident set size (KB) = 3047988 + 0: The total amount of wall time = 299.575954 + 0: The maximum resident set size (KB) = 3052544 Test 162 atmaero_control_p8_rad_micro PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_atmaq -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/regional_atmaq +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/regional_atmaq Checking test 163 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5104,14 +5104,14 @@ Checking test 163 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 643.270683 - 0: The maximum resident set size (KB) = 1465132 + 0: The total amount of wall time = 656.993879 + 0: The maximum resident set size (KB) = 1444156 Test 163 regional_atmaq PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_atmaq_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/regional_atmaq_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/regional_atmaq_debug Checking test 164 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5125,14 +5125,14 @@ Checking test 164 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1217.026848 - 0: The maximum resident set size (KB) = 1393996 + 0: The total amount of wall time = 1214.550696 + 0: The maximum resident set size (KB) = 1373460 Test 164 regional_atmaq_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_atmaq_faster -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_3264/regional_atmaq_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/regional_atmaq_faster Checking test 165 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5148,215 +5148,12 @@ Checking test 165 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 581.229420 - 0: The maximum resident set size (KB) = 1294844 + 0: The total amount of wall time = 593.157634 + 0: The maximum resident set size (KB) = 1457532 Test 165 regional_atmaq_faster PASS -FAILED TESTS: -Test hafs_regional_atm_wav 125 failed in check_result failed -Test hafs_regional_atm_wav 125 failed in run_test failed -Test hafs_regional_atm_ocn_wav 126 failed in check_result failed -Test hafs_regional_atm_ocn_wav 126 failed in run_test failed -Test hafs_regional_storm_following_1nest_atm_ocn_wav 136 failed in check_result failed -Test hafs_regional_storm_following_1nest_atm_ocn_wav 136 failed in run_test failed -Test atmwav_control_noaero_p8 158 failed in check_result failed -Test atmwav_control_noaero_p8 158 failed in run_test failed - -REGRESSION TEST FAILED -Sat Apr 8 14:00:22 UTC 2023 -Elapsed time: 01h:16m:21s. Have a nice day! -Sat Apr 8 23:19:51 UTC 2023 -Start Regression test - -Compile 001 elapsed time 575 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 002 elapsed time 658 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 536 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_wav -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_16222/hafs_regional_atm_wav -Checking test 001 hafs_regional_atm_wav results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing 20190829.060000.out_grd.ww3 .........OK - Comparing 20190829.060000.out_pnt.ww3 .........OK - Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - - 0: The total amount of wall time = 744.361811 - 0: The maximum resident set size (KB) = 1256720 - -Test 001 hafs_regional_atm_wav PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_16222/hafs_regional_atm_ocn_wav -Checking test 002 hafs_regional_atm_ocn_wav results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing archv.2019_241_06.a .........OK - Comparing archs.2019_241_06.a .........OK - Comparing 20200825.180000.out_grd.ww3 ............MISSING file - Comparing 20200825.180000.out_pnt.ww3 ............MISSING file - 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 = 848.110154 - 0: The maximum resident set size (KB) = 1278072 - -Test 002 hafs_regional_atm_ocn_wav FAIL Tries: 2 - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_16222/hafs_regional_storm_following_1nest_atm_ocn_wav -Checking test 003 hafs_regional_storm_following_1nest_atm_ocn_wav results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing archv.2020_238_18.a .........OK - Comparing archs.2020_238_18.a .........OK - Comparing 20200825.180000.out_grd.ww3 .........OK - Comparing 20200825.180000.out_pnt.ww3 .........OK - - 0: The total amount of wall time = 497.036363 - 0: The maximum resident set size (KB) = 618532 - -Test 003 hafs_regional_storm_following_1nest_atm_ocn_wav PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/atmwav_control_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_16222/atmwav_control_noaero_p8 -Checking test 004 atmwav_control_noaero_p8 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf018.nc ............MISSING file - Comparing atmf000.nc .........OK - Comparing atmf018.nc ............MISSING file - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - Comparing RESTART/ufs.atmw.cpl.r.2021-03-22-64800.nc .........OK - Comparing 20210322.180000.out_pnt.ww3 .........OK - Comparing 20210322.180000.out_grd.ww3 .........OK - Comparing ufs.atmw.ww3.r.2021-03-22-64800 ............MISSING file - - 0: The total amount of wall time = 97.086828 - 0: The maximum resident set size (KB) = 1630260 - -Test 004 atmwav_control_noaero_p8 FAIL Tries: 2 - -FAILED TESTS: -Test hafs_regional_atm_ocn_wav 002 failed in check_result failed -Test hafs_regional_atm_ocn_wav 002 failed in run_test failed -Test atmwav_control_noaero_p8 004 failed in check_result failed -Test atmwav_control_noaero_p8 004 failed in run_test failed - -REGRESSION TEST FAILED -Sun Apr 9 00:06:02 UTC 2023 -Elapsed time: 00h:46m:11s. Have a nice day! -Sun Apr 9 22:34:50 UTC 2023 -Start Regression test - -Compile 001 elapsed time 614 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 002 elapsed time 544 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_32111/hafs_regional_atm_ocn_wav -Checking test 001 hafs_regional_atm_ocn_wav results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing archv.2019_241_06.a .........OK - Comparing archs.2019_241_06.a .........OK - Comparing 20190829.060000.out_grd.ww3 .........OK - Comparing 20190829.060000.out_pnt.ww3 .........OK - Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - - 0: The total amount of wall time = 851.817293 - 0: The maximum resident set size (KB) = 1273716 - -Test 001 hafs_regional_atm_ocn_wav PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/atmwav_control_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_32111/atmwav_control_noaero_p8 -Checking test 002 atmwav_control_noaero_p8 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - Comparing RESTART/ufs.atmw.cpl.r.2021-03-22-64800.nc .........OK - Comparing 20210322.180000.out_pnt.ww3 .........OK - Comparing 20210322.180000.out_grd.ww3 .........OK - Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - - 0: The total amount of wall time = 100.600586 - 0: The maximum resident set size (KB) = 1630908 - -Test 002 atmwav_control_noaero_p8 PASS - REGRESSION TEST WAS SUCCESSFUL -Sun Apr 9 23:05:08 UTC 2023 -Elapsed time: 00h:30m:20s. Have a nice day! +Wed Apr 12 03:33:33 UTC 2023 +Elapsed time: 01h:29m:45s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index 2a8ced1a94b..b283532ab92 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,43 +1,43 @@ -Mon Apr 10 01:49:39 UTC 2023 +Tue Apr 11 23:24:30 UTC 2023 Start Regression test -Compile 001 elapsed time 1912 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 002 elapsed time 1996 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 003 elapsed time 1735 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 004 elapsed time 371 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 293 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 1550 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 007 elapsed time 1514 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 008 elapsed time 3474 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 009 elapsed time 1667 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 010 elapsed time 1566 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 011 elapsed time 1546 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 012 elapsed time 1463 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 013 elapsed time 2050 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 014 elapsed time 291 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 197 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 1472 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 017 elapsed time 1458 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 018 elapsed time 242 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 246 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 1628 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 021 elapsed time 287 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 2193 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 023 elapsed time 1628 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 024 elapsed time 281 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 025 elapsed time 144 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 292 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 027 elapsed time 108 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 028 elapsed time 1521 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 029 elapsed time 1575 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 030 elapsed time 1632 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 031 elapsed time 1453 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 032 elapsed time 1424 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 033 elapsed time 233 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 034 elapsed time 1880 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 001 elapsed time 1843 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 002 elapsed time 1909 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 003 elapsed time 1721 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 004 elapsed time 373 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 345 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 1548 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 007 elapsed time 1663 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 008 elapsed time 3366 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 009 elapsed time 1695 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 010 elapsed time 1635 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 011 elapsed time 1523 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 012 elapsed time 1479 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 013 elapsed time 2125 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 014 elapsed time 387 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 270 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 1449 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 017 elapsed time 1497 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 018 elapsed time 307 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 567 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 1907 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 021 elapsed time 254 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 2312 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 023 elapsed time 1617 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 024 elapsed time 434 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 025 elapsed time 163 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 302 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 027 elapsed time 144 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 028 elapsed time 1537 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 029 elapsed time 1611 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 030 elapsed time 1616 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 031 elapsed time 1467 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 032 elapsed time 1465 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 033 elapsed time 217 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 034 elapsed time 1897 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8_mixedmode -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/cpld_control_p8_mixedmode +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -102,14 +102,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 418.216512 - 0: The maximum resident set size (KB) = 1753248 + 0: The total amount of wall time = 519.951097 + 0: The maximum resident set size (KB) = 1756436 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_gfsv17 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/cpld_control_gfsv17 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -173,14 +173,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 314.067712 - 0: The maximum resident set size (KB) = 1634960 + 0: The total amount of wall time = 386.634467 + 0: The maximum resident set size (KB) = 1647312 Test 002 cpld_control_gfsv17 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -245,14 +245,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 471.522602 - 0: The maximum resident set size (KB) = 1779204 + 0: The total amount of wall time = 590.207986 + 0: The maximum resident set size (KB) = 1796276 Test 003 cpld_control_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/cpld_restart_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -305,14 +305,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 322.705132 - 0: The maximum resident set size (KB) = 1509692 + 0: The total amount of wall time = 333.093747 + 0: The maximum resident set size (KB) = 1506088 Test 004 cpld_restart_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/cpld_control_qr_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -377,14 +377,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 472.880545 - 0: The maximum resident set size (KB) = 1784476 + 0: The total amount of wall time = 588.286790 + 0: The maximum resident set size (KB) = 1805748 Test 005 cpld_control_qr_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/cpld_restart_qr_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -437,14 +437,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 343.205805 - 0: The maximum resident set size (KB) = 1495860 + 0: The total amount of wall time = 340.467154 + 0: The maximum resident set size (KB) = 1526184 Test 006 cpld_restart_qr_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/cpld_2threads_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -497,14 +497,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 490.741251 - 0: The maximum resident set size (KB) = 1968800 + 0: The total amount of wall time = 609.987778 + 0: The maximum resident set size (KB) = 2000200 Test 007 cpld_2threads_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/cpld_decomp_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -557,14 +557,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 472.860384 - 0: The maximum resident set size (KB) = 1790380 + 0: The total amount of wall time = 596.864208 + 0: The maximum resident set size (KB) = 1791536 Test 008 cpld_decomp_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/cpld_mpi_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -617,14 +617,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 387.573064 - 0: The maximum resident set size (KB) = 1743936 + 0: The total amount of wall time = 498.493992 + 0: The maximum resident set size (KB) = 1754092 Test 009 cpld_mpi_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_ciceC_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/cpld_control_ciceC_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -689,14 +689,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 467.232315 - 0: The maximum resident set size (KB) = 1796844 + 0: The total amount of wall time = 577.666877 + 0: The maximum resident set size (KB) = 1797920 Test 010 cpld_control_ciceC_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_noaero_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/cpld_control_noaero_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/cpld_control_noaero_p8 Checking test 011 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -760,14 +760,14 @@ Checking test 011 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 353.277922 - 0: The maximum resident set size (KB) = 1625212 + 0: The total amount of wall time = 384.582042 + 0: The maximum resident set size (KB) = 1638480 Test 011 cpld_control_noaero_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/cpld_control_nowave_noaero_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/cpld_control_nowave_noaero_p8 Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -829,14 +829,14 @@ Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 361.866382 - 0: The maximum resident set size (KB) = 1693696 + 0: The total amount of wall time = 408.370942 + 0: The maximum resident set size (KB) = 1691008 Test 012 cpld_control_nowave_noaero_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_debug_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/cpld_debug_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/cpld_debug_p8 Checking test 013 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -889,14 +889,14 @@ Checking test 013 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 695.905842 - 0: The maximum resident set size (KB) = 1833032 + 0: The total amount of wall time = 699.200305 + 0: The maximum resident set size (KB) = 1830272 Test 013 cpld_debug_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_debug_noaero_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/cpld_debug_noaero_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/cpld_debug_noaero_p8 Checking test 014 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -948,14 +948,14 @@ Checking test 014 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 496.850346 - 0: The maximum resident set size (KB) = 1631252 + 0: The total amount of wall time = 489.981137 + 0: The maximum resident set size (KB) = 1636760 Test 014 cpld_debug_noaero_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/cpld_control_noaero_p8_agrid +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/cpld_control_noaero_p8_agrid Checking test 015 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1017,14 +1017,14 @@ Checking test 015 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 380.519097 - 0: The maximum resident set size (KB) = 1691368 + 0: The total amount of wall time = 478.617877 + 0: The maximum resident set size (KB) = 1692080 Test 015 cpld_control_noaero_p8_agrid PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_c48 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/cpld_control_c48 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/cpld_control_c48 Checking test 016 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1074,14 +1074,14 @@ Checking test 016 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 801.546380 - 0: The maximum resident set size (KB) = 2772956 + 0: The total amount of wall time = 826.560298 + 0: The maximum resident set size (KB) = 2781984 Test 016 cpld_control_c48 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_warmstart_c48 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/cpld_warmstart_c48 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/cpld_warmstart_c48 Checking test 017 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1131,14 +1131,14 @@ Checking test 017 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 195.612709 - 0: The maximum resident set size (KB) = 2776976 + 0: The total amount of wall time = 278.111996 + 0: The maximum resident set size (KB) = 2775356 Test 017 cpld_warmstart_c48 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_warmstart_c48 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/cpld_restart_c48 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/cpld_restart_c48 Checking test 018 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1188,14 +1188,14 @@ Checking test 018 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 117.549823 - 0: The maximum resident set size (KB) = 2200292 + 0: The total amount of wall time = 122.792767 + 0: The maximum resident set size (KB) = 2219612 Test 018 cpld_restart_c48 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8_faster -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/cpld_control_p8_faster +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/cpld_control_p8_faster Checking test 019 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1260,14 +1260,14 @@ Checking test 019 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 485.687931 - 0: The maximum resident set size (KB) = 1776996 + 0: The total amount of wall time = 484.582224 + 0: The maximum resident set size (KB) = 1801072 Test 019 cpld_control_p8_faster PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_CubedSphereGrid -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_CubedSphereGrid +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_CubedSphereGrid Checking test 020 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1294,28 +1294,28 @@ Checking test 020 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 180.990403 - 0: The maximum resident set size (KB) = 573960 + 0: The total amount of wall time = 197.158627 + 0: The maximum resident set size (KB) = 573860 Test 020 control_CubedSphereGrid PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_CubedSphereGrid_parallel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_CubedSphereGrid_parallel +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_CubedSphereGrid_parallel Checking test 021 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK + Comparing atmf024.nc ............ALT CHECK......OK - 0: The total amount of wall time = 182.373167 - 0: The maximum resident set size (KB) = 578476 + 0: The total amount of wall time = 218.400439 + 0: The maximum resident set size (KB) = 578696 Test 021 control_CubedSphereGrid_parallel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_latlon -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_latlon +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_latlon Checking test 022 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1326,17 +1326,17 @@ Checking test 022 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 183.524740 - 0: The maximum resident set size (KB) = 576116 + 0: The total amount of wall time = 223.652183 + 0: The maximum resident set size (KB) = 583248 Test 022 control_latlon PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_wrtGauss_netcdf_parallel +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_wrtGauss_netcdf_parallel Checking test 023 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK - Comparing sfcf024.nc ............ALT CHECK......OK + Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK @@ -1344,14 +1344,14 @@ Checking test 023 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 194.663127 - 0: The maximum resident set size (KB) = 574568 + 0: The total amount of wall time = 252.398017 + 0: The maximum resident set size (KB) = 576076 Test 023 control_wrtGauss_netcdf_parallel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_c48 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_c48 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_c48 Checking test 024 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1390,14 +1390,14 @@ Checking test 024 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 597.964641 -0: The maximum resident set size (KB) = 800820 +0: The total amount of wall time = 600.820712 +0: The maximum resident set size (KB) = 801888 Test 024 control_c48 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_c192 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_c192 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_c192 Checking test 025 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1408,14 +1408,14 @@ Checking test 025 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 750.786015 - 0: The maximum resident set size (KB) = 694536 + 0: The total amount of wall time = 808.636988 + 0: The maximum resident set size (KB) = 697568 Test 025 control_c192 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_c384 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_c384 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_c384 Checking test 026 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1426,14 +1426,14 @@ Checking test 026 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1018.176652 - 0: The maximum resident set size (KB) = 1056984 + 0: The total amount of wall time = 1028.274224 + 0: The maximum resident set size (KB) = 1061584 Test 026 control_c384 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_c384gdas -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_c384gdas +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_c384gdas Checking test 027 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1476,14 +1476,14 @@ Checking test 027 control_c384gdas 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 = 875.274555 - 0: The maximum resident set size (KB) = 1201328 + 0: The total amount of wall time = 860.611985 + 0: The maximum resident set size (KB) = 1203012 -Test 027 control_c384gdas PASS +Test 027 control_c384gdas PASS Tries: 2 baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_stochy -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_stochy +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_stochy Checking test 028 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1494,28 +1494,28 @@ Checking test 028 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 125.038926 - 0: The maximum resident set size (KB) = 581088 + 0: The total amount of wall time = 128.848016 + 0: The maximum resident set size (KB) = 583128 Test 028 control_stochy PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_stochy -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_stochy_restart +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_stochy_restart Checking test 029 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 71.213384 - 0: The maximum resident set size (KB) = 394640 + 0: The total amount of wall time = 112.254747 + 0: The maximum resident set size (KB) = 398800 Test 029 control_stochy_restart PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_lndp -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_lndp +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_lndp Checking test 030 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1526,14 +1526,14 @@ Checking test 030 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 113.545733 - 0: The maximum resident set size (KB) = 577964 + 0: The total amount of wall time = 123.661061 + 0: The maximum resident set size (KB) = 583620 Test 030 control_lndp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_iovr4 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_iovr4 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_iovr4 Checking test 031 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1548,14 +1548,14 @@ Checking test 031 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 190.468138 - 0: The maximum resident set size (KB) = 572272 + 0: The total amount of wall time = 233.583229 + 0: The maximum resident set size (KB) = 574412 Test 031 control_iovr4 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_iovr5 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_iovr5 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_iovr5 Checking test 032 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1570,14 +1570,14 @@ Checking test 032 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 193.045309 - 0: The maximum resident set size (KB) = 578156 + 0: The total amount of wall time = 230.686276 + 0: The maximum resident set size (KB) = 582800 Test 032 control_iovr5 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_p8 Checking test 033 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1624,14 +1624,14 @@ Checking test 033 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 246.187517 - 0: The maximum resident set size (KB) = 1540760 + 0: The total amount of wall time = 293.076452 + 0: The maximum resident set size (KB) = 1536200 Test 033 control_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_restart_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_restart_p8 Checking test 034 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1670,14 +1670,14 @@ Checking test 034 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 132.229663 - 0: The maximum resident set size (KB) = 784016 + 0: The total amount of wall time = 133.319056 + 0: The maximum resident set size (KB) = 782996 Test 034 control_restart_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_qr_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_qr_p8 Checking test 035 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1724,14 +1724,14 @@ Checking test 035 control_qr_p8 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 = 242.103945 - 0: The maximum resident set size (KB) = 1553240 + 0: The total amount of wall time = 241.802248 + 0: The maximum resident set size (KB) = 1545056 Test 035 control_qr_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_restart_qr_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_restart_qr_p8 Checking test 036 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1770,14 +1770,14 @@ Checking test 036 control_restart_qr_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 124.873278 - 0: The maximum resident set size (KB) = 787908 + 0: The total amount of wall time = 137.116133 + 0: The maximum resident set size (KB) = 797876 Test 036 control_restart_qr_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_decomp_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_decomp_p8 Checking test 037 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1820,14 +1820,14 @@ Checking test 037 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 247.867096 - 0: The maximum resident set size (KB) = 1532340 + 0: The total amount of wall time = 242.361151 + 0: The maximum resident set size (KB) = 1540712 Test 037 control_decomp_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_2threads_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_2threads_p8 Checking test 038 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1870,14 +1870,14 @@ Checking test 038 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 231.650752 - 0: The maximum resident set size (KB) = 1630772 + 0: The total amount of wall time = 226.392519 + 0: The maximum resident set size (KB) = 1620584 Test 038 control_2threads_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_lndp -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_p8_lndp +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_p8_lndp Checking test 039 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1896,14 +1896,14 @@ Checking test 039 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 465.853755 - 0: The maximum resident set size (KB) = 1537320 + 0: The total amount of wall time = 498.605810 + 0: The maximum resident set size (KB) = 1553188 Test 039 control_p8_lndp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_rrtmgp -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_p8_rrtmgp +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_p8_rrtmgp Checking test 040 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1950,14 +1950,14 @@ Checking test 040 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 327.371053 - 0: The maximum resident set size (KB) = 1609660 + 0: The total amount of wall time = 362.086596 + 0: The maximum resident set size (KB) = 1620296 Test 040 control_p8_rrtmgp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_mynn -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_p8_mynn +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_p8_mynn Checking test 041 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2004,14 +2004,14 @@ Checking test 041 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 255.397900 - 0: The maximum resident set size (KB) = 1561156 + 0: The total amount of wall time = 239.104659 + 0: The maximum resident set size (KB) = 1554600 Test 041 control_p8_mynn PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/merra2_thompson -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/merra2_thompson +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/merra2_thompson Checking test 042 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2058,14 +2058,14 @@ Checking test 042 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 296.592910 - 0: The maximum resident set size (KB) = 1538424 + 0: The total amount of wall time = 319.985603 + 0: The maximum resident set size (KB) = 1555116 Test 042 merra2_thompson PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/regional_control Checking test 043 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2076,28 +2076,28 @@ Checking test 043 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 457.564142 - 0: The maximum resident set size (KB) = 783532 + 0: The total amount of wall time = 487.117348 + 0: The maximum resident set size (KB) = 788868 Test 043 regional_control PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/regional_restart +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/regional_restart Checking test 044 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 423.571172 - 0: The maximum resident set size (KB) = 777396 + 0: The total amount of wall time = 214.534516 + 0: The maximum resident set size (KB) = 779152 Test 044 regional_restart PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/regional_control_qr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/regional_control_qr Checking test 045 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2108,28 +2108,28 @@ Checking test 045 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 475.196498 - 0: The maximum resident set size (KB) = 783644 + 0: The total amount of wall time = 476.910879 + 0: The maximum resident set size (KB) = 789084 Test 045 regional_control_qr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/regional_restart_qr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/regional_restart_qr Checking test 046 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 467.301726 - 0: The maximum resident set size (KB) = 779404 + 0: The total amount of wall time = 227.603513 + 0: The maximum resident set size (KB) = 782300 Test 046 regional_restart_qr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/regional_decomp +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/regional_decomp Checking test 047 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2140,14 +2140,14 @@ Checking test 047 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 472.841341 - 0: The maximum resident set size (KB) = 781544 + 0: The total amount of wall time = 491.831488 + 0: The maximum resident set size (KB) = 785200 Test 047 regional_decomp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/regional_2threads +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/regional_2threads Checking test 048 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2158,28 +2158,28 @@ Checking test 048 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 297.972188 - 0: The maximum resident set size (KB) = 765596 + 0: The total amount of wall time = 333.378220 + 0: The maximum resident set size (KB) = 778260 Test 048 regional_2threads PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/regional_netcdf_parallel +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/regional_netcdf_parallel Checking test 049 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 430.050722 - 0: The maximum resident set size (KB) = 787252 + 0: The total amount of wall time = 472.846010 + 0: The maximum resident set size (KB) = 784296 Test 049 regional_netcdf_parallel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/regional_2dwrtdecomp +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/regional_2dwrtdecomp Checking test 050 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2190,14 +2190,14 @@ Checking test 050 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 463.457743 - 0: The maximum resident set size (KB) = 784104 + 0: The total amount of wall time = 487.336789 + 0: The maximum resident set size (KB) = 790132 Test 050 regional_2dwrtdecomp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/rap_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/rap_control Checking test 051 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2244,14 +2244,14 @@ Checking test 051 rap_control results .... Comparing 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.752619 - 0: The maximum resident set size (KB) = 955792 + 0: The total amount of wall time = 678.817939 + 0: The maximum resident set size (KB) = 952092 Test 051 rap_control PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/regional_spp_sppt_shum_skeb +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/regional_spp_sppt_shum_skeb Checking test 052 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2262,14 +2262,14 @@ Checking test 052 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 325.822863 - 0: The maximum resident set size (KB) = 1092668 + 0: The total amount of wall time = 328.300586 + 0: The maximum resident set size (KB) = 1097304 Test 052 regional_spp_sppt_shum_skeb PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/rap_decomp +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/rap_decomp Checking test 053 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2316,14 +2316,14 @@ Checking test 053 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 648.229065 - 0: The maximum resident set size (KB) = 940348 + 0: The total amount of wall time = 705.383687 + 0: The maximum resident set size (KB) = 954092 Test 053 rap_decomp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/rap_2threads +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/rap_2threads Checking test 054 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2370,14 +2370,14 @@ Checking test 054 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 597.390814 - 0: The maximum resident set size (KB) = 1024248 + 0: The total amount of wall time = 651.763839 + 0: The maximum resident set size (KB) = 1029944 Test 054 rap_2threads PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/rap_restart +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/rap_restart Checking test 055 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2416,14 +2416,14 @@ Checking test 055 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 334.693294 - 0: The maximum resident set size (KB) = 839288 + 0: The total amount of wall time = 313.815727 + 0: The maximum resident set size (KB) = 837508 Test 055 rap_restart PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/rap_sfcdiff +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/rap_sfcdiff Checking test 056 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2470,14 +2470,14 @@ Checking test 056 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 633.991588 - 0: The maximum resident set size (KB) = 953552 + 0: The total amount of wall time = 664.783311 + 0: The maximum resident set size (KB) = 955932 Test 056 rap_sfcdiff PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/rap_sfcdiff_decomp +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/rap_sfcdiff_decomp Checking test 057 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2524,14 +2524,14 @@ Checking test 057 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 681.573387 - 0: The maximum resident set size (KB) = 952492 + 0: The total amount of wall time = 705.856897 + 0: The maximum resident set size (KB) = 945456 Test 057 rap_sfcdiff_decomp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/rap_sfcdiff_restart +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/rap_sfcdiff_restart Checking test 058 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2570,14 +2570,14 @@ Checking test 058 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 647.218611 - 0: The maximum resident set size (KB) = 838008 + 0: The total amount of wall time = 492.105856 + 0: The maximum resident set size (KB) = 844140 Test 058 rap_sfcdiff_restart PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/hrrr_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/hrrr_control Checking test 059 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2624,14 +2624,14 @@ Checking test 059 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 607.952545 - 0: The maximum resident set size (KB) = 954600 + 0: The total amount of wall time = 661.819891 + 0: The maximum resident set size (KB) = 949616 Test 059 hrrr_control PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/hrrr_control_decomp +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/hrrr_control_decomp Checking test 060 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2678,14 +2678,14 @@ Checking test 060 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 637.351831 - 0: The maximum resident set size (KB) = 939928 + 0: The total amount of wall time = 678.968259 + 0: The maximum resident set size (KB) = 943892 Test 060 hrrr_control_decomp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/hrrr_control_2threads +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/hrrr_control_2threads Checking test 061 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2732,14 +2732,14 @@ Checking test 061 hrrr_control_2threads results .... Comparing 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.468229 - 0: The maximum resident set size (KB) = 1018588 + 0: The total amount of wall time = 631.530235 + 0: The maximum resident set size (KB) = 1019816 Test 061 hrrr_control_2threads PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/hrrr_control_restart +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/hrrr_control_restart Checking test 062 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2778,14 +2778,14 @@ Checking test 062 hrrr_control_restart results .... Comparing 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.443203 - 0: The maximum resident set size (KB) = 836796 + 0: The total amount of wall time = 480.343955 + 0: The maximum resident set size (KB) = 838152 Test 062 hrrr_control_restart PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_v1beta -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/rrfs_v1beta +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/rrfs_v1beta Checking test 063 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2832,14 +2832,14 @@ Checking test 063 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 624.367552 - 0: The maximum resident set size (KB) = 954096 + 0: The total amount of wall time = 679.678978 + 0: The maximum resident set size (KB) = 954668 Test 063 rrfs_v1beta PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_v1nssl -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/rrfs_v1nssl +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/rrfs_v1nssl Checking test 064 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2854,14 +2854,14 @@ Checking test 064 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 744.632098 - 0: The maximum resident set size (KB) = 632108 + 0: The total amount of wall time = 797.712302 + 0: The maximum resident set size (KB) = 632972 Test 064 rrfs_v1nssl PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/rrfs_v1nssl_nohailnoccn +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/rrfs_v1nssl_nohailnoccn Checking test 065 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2876,14 +2876,14 @@ Checking test 065 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 735.952582 - 0: The maximum resident set size (KB) = 631876 + 0: The total amount of wall time = 772.925526 + 0: The maximum resident set size (KB) = 633032 Test 065 rrfs_v1nssl_nohailnoccn PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/rrfs_smoke_conus13km_hrrr_warm Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2892,14 +2892,14 @@ Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 206.652096 - 0: The maximum resident set size (KB) = 905180 + 0: The total amount of wall time = 210.614427 + 0: The maximum resident set size (KB) = 902612 Test 066 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/rrfs_smoke_conus13km_hrrr_warm_2threads +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 067 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2908,14 +2908,14 @@ Checking test 067 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 131.173541 - 0: The maximum resident set size (KB) = 868904 + 0: The total amount of wall time = 144.624421 + 0: The maximum resident set size (KB) = 862468 Test 067 rrfs_smoke_conus13km_hrrr_warm_2threads PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/rrfs_conus13km_hrrr_warm +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/rrfs_conus13km_hrrr_warm Checking test 068 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2924,14 +2924,14 @@ Checking test 068 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 178.914673 - 0: The maximum resident set size (KB) = 866776 + 0: The total amount of wall time = 183.311998 + 0: The maximum resident set size (KB) = 858260 Test 068 rrfs_conus13km_hrrr_warm PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/rrfs_smoke_conus13km_radar_tten_warm +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/rrfs_smoke_conus13km_radar_tten_warm Checking test 069 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2940,26 +2940,26 @@ Checking test 069 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 207.730268 - 0: The maximum resident set size (KB) = 911896 + 0: The total amount of wall time = 206.014690 + 0: The maximum resident set size (KB) = 914448 Test 069 rrfs_smoke_conus13km_radar_tten_warm PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 070 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 117.142405 - 0: The maximum resident set size (KB) = 842116 + 0: The total amount of wall time = 97.879935 + 0: The maximum resident set size (KB) = 847872 Test 070 rrfs_conus13km_hrrr_warm_restart_mismatch PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_csawmg -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_csawmg +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_csawmg Checking test 071 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2970,14 +2970,14 @@ Checking test 071 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 633.049404 - 0: The maximum resident set size (KB) = 666152 + 0: The total amount of wall time = 471.907785 + 0: The maximum resident set size (KB) = 666672 Test 071 control_csawmg PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_csawmgt -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_csawmgt +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_csawmgt Checking test 072 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2988,14 +2988,14 @@ Checking test 072 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 663.622626 - 0: The maximum resident set size (KB) = 661548 + 0: The total amount of wall time = 490.748304 + 0: The maximum resident set size (KB) = 663136 Test 072 control_csawmgt PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_ras -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_ras +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_ras Checking test 073 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3006,26 +3006,26 @@ Checking test 073 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 278.862511 - 0: The maximum resident set size (KB) = 632204 + 0: The total amount of wall time = 253.790421 + 0: The maximum resident set size (KB) = 634548 Test 073 control_ras PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_wam -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_wam +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_wam Checking test 074 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 153.174932 - 0: The maximum resident set size (KB) = 480456 + 0: The total amount of wall time = 161.419666 + 0: The maximum resident set size (KB) = 478476 Test 074 control_wam PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_faster -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_p8_faster +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_p8_faster Checking test 075 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3072,14 +3072,14 @@ Checking test 075 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 224.402293 - 0: The maximum resident set size (KB) = 1536136 + 0: The total amount of wall time = 226.252824 + 0: The maximum resident set size (KB) = 1538244 Test 075 control_p8_faster PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control_faster -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/regional_control_faster +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/regional_control_faster Checking test 076 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3090,56 +3090,56 @@ Checking test 076 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 414.633350 - 0: The maximum resident set size (KB) = 787792 + 0: The total amount of wall time = 394.218564 + 0: The maximum resident set size (KB) = 787836 Test 076 regional_control_faster PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 077 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 1135.059787 - 0: The maximum resident set size (KB) = 939036 + 0: The total amount of wall time = 1089.032901 + 0: The maximum resident set size (KB) = 935660 Test 077 rrfs_smoke_conus13km_hrrr_warm_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 078 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 754.781561 - 0: The maximum resident set size (KB) = 893016 + 0: The total amount of wall time = 627.056227 + 0: The maximum resident set size (KB) = 897876 Test 078 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/rrfs_conus13km_hrrr_warm_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/rrfs_conus13km_hrrr_warm_debug Checking test 079 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 1009.835543 - 0: The maximum resident set size (KB) = 898168 + 0: The total amount of wall time = 966.277302 + 0: The maximum resident set size (KB) = 884700 Test 079 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_CubedSphereGrid_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_CubedSphereGrid_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_CubedSphereGrid_debug Checking test 080 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3166,334 +3166,334 @@ Checking test 080 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 192.357640 - 0: The maximum resident set size (KB) = 740052 + 0: The total amount of wall time = 190.748872 + 0: The maximum resident set size (KB) = 738236 Test 080 control_CubedSphereGrid_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_wrtGauss_netcdf_parallel_debug Checking test 081 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 194.334930 - 0: The maximum resident set size (KB) = 732860 + 0: The total amount of wall time = 193.548969 + 0: The maximum resident set size (KB) = 730924 Test 081 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_stochy_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_stochy_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_stochy_debug Checking test 082 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 224.752694 - 0: The maximum resident set size (KB) = 741260 + 0: The total amount of wall time = 214.361350 + 0: The maximum resident set size (KB) = 742712 Test 082 control_stochy_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_lndp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_lndp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_lndp_debug Checking test 083 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 201.259174 - 0: The maximum resident set size (KB) = 739512 + 0: The total amount of wall time = 193.713829 + 0: The maximum resident set size (KB) = 743532 Test 083 control_lndp_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_csawmg_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_csawmg_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_csawmg_debug Checking test 084 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 449.037101 - 0: The maximum resident set size (KB) = 785232 + 0: The total amount of wall time = 301.807842 + 0: The maximum resident set size (KB) = 783728 Test 084 control_csawmg_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_csawmgt_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_csawmgt_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_csawmgt_debug Checking test 085 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 404.890884 - 0: The maximum resident set size (KB) = 784572 + 0: The total amount of wall time = 294.816328 + 0: The maximum resident set size (KB) = 788448 Test 085 control_csawmgt_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_ras_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_ras_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_ras_debug Checking test 086 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 195.346858 - 0: The maximum resident set size (KB) = 744504 + 0: The total amount of wall time = 192.695906 + 0: The maximum resident set size (KB) = 747132 Test 086 control_ras_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_diag_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_diag_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_diag_debug Checking test 087 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 203.484617 - 0: The maximum resident set size (KB) = 792740 + 0: The total amount of wall time = 196.376520 + 0: The maximum resident set size (KB) = 791512 Test 087 control_diag_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_debug_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_debug_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_debug_p8 Checking test 088 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 215.734622 - 0: The maximum resident set size (KB) = 1550208 + 0: The total amount of wall time = 216.077000 + 0: The maximum resident set size (KB) = 1563520 Test 088 control_debug_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/regional_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/regional_debug Checking test 089 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1388.906988 - 0: The maximum resident set size (KB) = 804676 + 0: The total amount of wall time = 1275.540527 + 0: The maximum resident set size (KB) = 806972 Test 089 regional_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/rap_control_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/rap_control_debug Checking test 090 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 512.357094 - 0: The maximum resident set size (KB) = 1109428 + 0: The total amount of wall time = 348.813261 + 0: The maximum resident set size (KB) = 1116240 Test 090 rap_control_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/hrrr_control_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/hrrr_control_debug Checking test 091 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 476.847573 - 0: The maximum resident set size (KB) = 1110480 + 0: The total amount of wall time = 342.101940 + 0: The maximum resident set size (KB) = 1112748 Test 091 hrrr_control_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/rap_unified_drag_suite_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/rap_unified_drag_suite_debug Checking test 092 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 482.040903 - 0: The maximum resident set size (KB) = 1115256 + 0: The total amount of wall time = 352.259779 + 0: The maximum resident set size (KB) = 1112972 Test 092 rap_unified_drag_suite_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_diag_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/rap_diag_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/rap_diag_debug Checking test 093 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 529.201046 - 0: The maximum resident set size (KB) = 1190756 + 0: The total amount of wall time = 374.171194 + 0: The maximum resident set size (KB) = 1193252 Test 093 rap_diag_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/rap_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/rap_cires_ugwp_debug Checking test 094 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 528.878634 - 0: The maximum resident set size (KB) = 1111608 + 0: The total amount of wall time = 376.226687 + 0: The maximum resident set size (KB) = 1114824 Test 094 rap_cires_ugwp_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/rap_unified_ugwp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/rap_unified_ugwp_debug Checking test 095 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 516.665676 - 0: The maximum resident set size (KB) = 1109104 + 0: The total amount of wall time = 364.755689 + 0: The maximum resident set size (KB) = 1118652 Test 095 rap_unified_ugwp_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_lndp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/rap_lndp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/rap_lndp_debug Checking test 096 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 461.399643 - 0: The maximum resident set size (KB) = 1115772 + 0: The total amount of wall time = 363.387898 + 0: The maximum resident set size (KB) = 1114596 Test 096 rap_lndp_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_flake_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/rap_flake_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/rap_flake_debug Checking test 097 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 481.565765 - 0: The maximum resident set size (KB) = 1116552 + 0: The total amount of wall time = 361.649737 + 0: The maximum resident set size (KB) = 1116268 Test 097 rap_flake_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_progcld_thompson_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/rap_progcld_thompson_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/rap_progcld_thompson_debug Checking test 098 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 479.136472 - 0: The maximum resident set size (KB) = 1104792 + 0: The total amount of wall time = 351.955271 + 0: The maximum resident set size (KB) = 1114972 Test 098 rap_progcld_thompson_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_noah_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/rap_noah_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/rap_noah_debug Checking test 099 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 486.417247 - 0: The maximum resident set size (KB) = 1111856 + 0: The total amount of wall time = 343.178308 + 0: The maximum resident set size (KB) = 1115108 Test 099 rap_noah_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_sfcdiff_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/rap_sfcdiff_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/rap_sfcdiff_debug Checking test 100 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 452.445228 - 0: The maximum resident set size (KB) = 1110672 + 0: The total amount of wall time = 347.653368 + 0: The maximum resident set size (KB) = 1113784 Test 100 rap_sfcdiff_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/rap_noah_sfcdiff_cires_ugwp_debug Checking test 101 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 666.746256 - 0: The maximum resident set size (KB) = 1110720 + 0: The total amount of wall time = 579.008175 + 0: The maximum resident set size (KB) = 1115132 Test 101 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_v1beta_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/rrfs_v1beta_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/rrfs_v1beta_debug Checking test 102 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 364.470479 - 0: The maximum resident set size (KB) = 1108196 + 0: The total amount of wall time = 344.154566 + 0: The maximum resident set size (KB) = 1111288 Test 102 rrfs_v1beta_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_wam_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_wam_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_wam_debug Checking test 103 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 421.627522 - 0: The maximum resident set size (KB) = 433284 + 0: The total amount of wall time = 357.303590 + 0: The maximum resident set size (KB) = 434472 Test 103 control_wam_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3504,14 +3504,14 @@ Checking test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 398.514575 - 0: The maximum resident set size (KB) = 984996 + 0: The total amount of wall time = 311.296796 + 0: The maximum resident set size (KB) = 997672 Test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/rap_control_dyn32_phy32 Checking test 105 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3558,14 +3558,14 @@ Checking test 105 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 581.484383 - 0: The maximum resident set size (KB) = 857080 + 0: The total amount of wall time = 519.457505 + 0: The maximum resident set size (KB) = 859492 Test 105 rap_control_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/hrrr_control_dyn32_phy32 Checking test 106 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3612,14 +3612,14 @@ Checking test 106 hrrr_control_dyn32_phy32 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 = 345.319671 - 0: The maximum resident set size (KB) = 839560 + 0: The total amount of wall time = 270.677286 + 0: The maximum resident set size (KB) = 839960 Test 106 hrrr_control_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/rap_2threads_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/rap_2threads_dyn32_phy32 Checking test 107 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3666,14 +3666,14 @@ Checking test 107 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 586.379031 - 0: The maximum resident set size (KB) = 896944 + 0: The total amount of wall time = 500.469349 + 0: The maximum resident set size (KB) = 893564 Test 107 rap_2threads_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/hrrr_control_2threads_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/hrrr_control_2threads_dyn32_phy32 Checking test 108 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3720,14 +3720,14 @@ Checking test 108 hrrr_control_2threads_dyn32_phy32 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 = 340.334682 - 0: The maximum resident set size (KB) = 884684 + 0: The total amount of wall time = 257.663507 + 0: The maximum resident set size (KB) = 888924 Test 108 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/hrrr_control_decomp_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/hrrr_control_decomp_dyn32_phy32 Checking test 109 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3774,14 +3774,14 @@ Checking test 109 hrrr_control_decomp_dyn32_phy32 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 = 356.230985 - 0: The maximum resident set size (KB) = 817860 + 0: The total amount of wall time = 294.015088 + 0: The maximum resident set size (KB) = 834104 Test 109 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/rap_restart_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/rap_restart_dyn32_phy32 Checking test 110 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3820,14 +3820,14 @@ Checking test 110 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 402.382970 - 0: The maximum resident set size (KB) = 806868 + 0: The total amount of wall time = 383.574107 + 0: The maximum resident set size (KB) = 813048 Test 110 rap_restart_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/hrrr_control_restart_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/hrrr_control_restart_dyn32_phy32 Checking test 111 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3866,14 +3866,14 @@ Checking test 111 hrrr_control_restart_dyn32_phy32 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 = 153.093869 - 0: The maximum resident set size (KB) = 761576 + 0: The total amount of wall time = 142.380440 + 0: The maximum resident set size (KB) = 773396 Test 111 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_dyn64_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/rap_control_dyn64_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/rap_control_dyn64_phy32 Checking test 112 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3920,81 +3920,81 @@ Checking test 112 rap_control_dyn64_phy32 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 = 360.054120 - 0: The maximum resident set size (KB) = 877436 + 0: The total amount of wall time = 332.248906 + 0: The maximum resident set size (KB) = 875992 Test 112 rap_control_dyn64_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/rap_control_debug_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/rap_control_debug_dyn32_phy32 Checking test 113 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 354.783441 - 0: The maximum resident set size (KB) = 995348 + 0: The total amount of wall time = 357.934857 + 0: The maximum resident set size (KB) = 999648 Test 113 rap_control_debug_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/hrrr_control_debug_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/hrrr_control_debug_dyn32_phy32 Checking test 114 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 382.681727 - 0: The maximum resident set size (KB) = 994236 + 0: The total amount of wall time = 348.010303 + 0: The maximum resident set size (KB) = 995332 Test 114 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/rap_control_dyn64_phy32_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/rap_control_dyn64_phy32_debug Checking test 115 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 365.007316 - 0: The maximum resident set size (KB) = 1031036 + 0: The total amount of wall time = 351.366636 + 0: The maximum resident set size (KB) = 1030972 Test 115 rap_control_dyn64_phy32_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/hafs_regional_atm +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/hafs_regional_atm Checking test 116 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 360.841581 - 0: The maximum resident set size (KB) = 1223492 + 0: The total amount of wall time = 376.727552 + 0: The maximum resident set size (KB) = 1202724 Test 116 hafs_regional_atm PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/hafs_regional_atm_thompson_gfdlsf Checking test 117 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 471.020594 - 0: The maximum resident set size (KB) = 1530628 + 0: The total amount of wall time = 487.700201 + 0: The maximum resident set size (KB) = 1582528 Test 117 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_ocn -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/hafs_regional_atm_ocn +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/hafs_regional_atm_ocn Checking test 118 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4003,14 +4003,14 @@ Checking test 118 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 545.062571 - 0: The maximum resident set size (KB) = 1297912 + 0: The total amount of wall time = 580.465499 + 0: The maximum resident set size (KB) = 1295940 Test 118 hafs_regional_atm_ocn PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_wav -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/hafs_regional_atm_wav +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/hafs_regional_atm_wav Checking test 119 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4019,14 +4019,14 @@ Checking test 119 hafs_regional_atm_wav 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 = 955.609656 - 0: The maximum resident set size (KB) = 1287376 + 0: The total amount of wall time = 969.921894 + 0: The maximum resident set size (KB) = 1324640 Test 119 hafs_regional_atm_wav PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/hafs_regional_atm_ocn_wav +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/hafs_regional_atm_ocn_wav Checking test 120 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4037,14 +4037,14 @@ Checking test 120 hafs_regional_atm_ocn_wav 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 = 1073.314614 - 0: The maximum resident set size (KB) = 1297132 + 0: The total amount of wall time = 1091.392172 + 0: The maximum resident set size (KB) = 1344008 Test 120 hafs_regional_atm_ocn_wav PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_docn -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/hafs_regional_docn +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/hafs_regional_docn Checking test 121 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4052,14 +4052,14 @@ Checking test 121 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 523.415776 - 0: The maximum resident set size (KB) = 1296148 + 0: The total amount of wall time = 564.394044 + 0: The maximum resident set size (KB) = 1299668 Test 121 hafs_regional_docn PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_docn_oisst -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/hafs_regional_docn_oisst +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/hafs_regional_docn_oisst Checking test 122 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4067,118 +4067,118 @@ Checking test 122 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 519.253706 - 0: The maximum resident set size (KB) = 1287464 + 0: The total amount of wall time = 539.532656 + 0: The maximum resident set size (KB) = 1286688 Test 122 hafs_regional_docn_oisst PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/datm_cdeps_control_cfsr Checking test 123 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 242.153484 - 0: The maximum resident set size (KB) = 971416 + 0: The total amount of wall time = 219.049271 + 0: The maximum resident set size (KB) = 959488 Test 123 datm_cdeps_control_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/datm_cdeps_restart_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/datm_cdeps_restart_cfsr Checking test 124 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 137.252365 - 0: The maximum resident set size (KB) = 927160 + 0: The total amount of wall time = 130.865831 + 0: The maximum resident set size (KB) = 940148 Test 124 datm_cdeps_restart_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_control_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/datm_cdeps_control_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/datm_cdeps_control_gefs Checking test 125 datm_cdeps_control_gefs 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 = 263.553120 - 0: The maximum resident set size (KB) = 861448 + 0: The total amount of wall time = 214.262422 + 0: The maximum resident set size (KB) = 862408 Test 125 datm_cdeps_control_gefs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_iau_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/datm_cdeps_iau_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/datm_cdeps_iau_gefs Checking test 126 datm_cdeps_iau_gefs 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 = 249.850664 - 0: The maximum resident set size (KB) = 868288 + 0: The total amount of wall time = 220.119758 + 0: The maximum resident set size (KB) = 863932 Test 126 datm_cdeps_iau_gefs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_stochy_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/datm_cdeps_stochy_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/datm_cdeps_stochy_gefs Checking test 127 datm_cdeps_stochy_gefs 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 = 257.772813 - 0: The maximum resident set size (KB) = 865460 + 0: The total amount of wall time = 221.513879 + 0: The maximum resident set size (KB) = 870476 Test 127 datm_cdeps_stochy_gefs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/datm_cdeps_ciceC_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/datm_cdeps_ciceC_cfsr Checking test 128 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 245.102677 - 0: The maximum resident set size (KB) = 962188 + 0: The total amount of wall time = 225.162045 + 0: The maximum resident set size (KB) = 963032 Test 128 datm_cdeps_ciceC_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/datm_cdeps_bulk_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/datm_cdeps_bulk_cfsr Checking test 129 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 251.354728 - 0: The maximum resident set size (KB) = 958652 + 0: The total amount of wall time = 218.777755 + 0: The maximum resident set size (KB) = 957744 Test 129 datm_cdeps_bulk_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/datm_cdeps_bulk_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/datm_cdeps_bulk_gefs Checking test 130 datm_cdeps_bulk_gefs 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 = 249.505576 - 0: The maximum resident set size (KB) = 864244 + 0: The total amount of wall time = 209.512032 + 0: The maximum resident set size (KB) = 861420 Test 130 datm_cdeps_bulk_gefs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/datm_cdeps_mx025_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/datm_cdeps_mx025_cfsr Checking test 131 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4187,14 +4187,14 @@ Checking test 131 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 608.838820 - 0: The maximum resident set size (KB) = 760800 + 0: The total amount of wall time = 588.568115 + 0: The maximum resident set size (KB) = 765456 Test 131 datm_cdeps_mx025_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/datm_cdeps_mx025_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/datm_cdeps_mx025_gefs Checking test 132 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4203,77 +4203,77 @@ Checking test 132 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 629.548504 - 0: The maximum resident set size (KB) = 739108 + 0: The total amount of wall time = 570.834964 + 0: The maximum resident set size (KB) = 736072 Test 132 datm_cdeps_mx025_gefs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/datm_cdeps_multiple_files_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/datm_cdeps_multiple_files_cfsr Checking test 133 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 246.887116 - 0: The maximum resident set size (KB) = 967580 + 0: The total amount of wall time = 216.956092 + 0: The maximum resident set size (KB) = 970984 Test 133 datm_cdeps_multiple_files_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/datm_cdeps_3072x1536_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/datm_cdeps_3072x1536_cfsr Checking test 134 datm_cdeps_3072x1536_cfsr 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 = 388.003733 - 0: The maximum resident set size (KB) = 2255012 + 0: The total amount of wall time = 298.592949 + 0: The maximum resident set size (KB) = 2252796 Test 134 datm_cdeps_3072x1536_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_gfs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/datm_cdeps_gfs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/datm_cdeps_gfs Checking test 135 datm_cdeps_gfs results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 326.714594 - 0: The maximum resident set size (KB) = 2200440 + 0: The total amount of wall time = 334.397826 + 0: The maximum resident set size (KB) = 2250576 Test 135 datm_cdeps_gfs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_debug_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/datm_cdeps_debug_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/datm_cdeps_debug_cfsr Checking test 136 datm_cdeps_debug_cfsr 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 = 484.718719 - 0: The maximum resident set size (KB) = 910328 + 0: The total amount of wall time = 465.286240 + 0: The maximum resident set size (KB) = 909692 Test 136 datm_cdeps_debug_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_control_cfsr_faster -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/datm_cdeps_control_cfsr_faster +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/datm_cdeps_control_cfsr_faster Checking test 137 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.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 = 261.456160 - 0: The maximum resident set size (KB) = 975652 + 0: The total amount of wall time = 220.036087 + 0: The maximum resident set size (KB) = 958296 Test 137 datm_cdeps_control_cfsr_faster PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/datm_cdeps_lnd_gswp3 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/datm_cdeps_lnd_gswp3 Checking test 138 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4282,14 +4282,14 @@ Checking test 138 datm_cdeps_lnd_gswp3 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 = 15.728100 - 0: The maximum resident set size (KB) = 246212 + 0: The total amount of wall time = 14.589330 + 0: The maximum resident set size (KB) = 250456 Test 138 datm_cdeps_lnd_gswp3 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/datm_cdeps_lnd_gswp3_rst +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/datm_cdeps_lnd_gswp3_rst Checking test 139 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4298,14 +4298,14 @@ Checking test 139 datm_cdeps_lnd_gswp3_rst 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 = 27.967769 - 0: The maximum resident set size (KB) = 257276 + 0: The total amount of wall time = 22.936916 + 0: The maximum resident set size (KB) = 246760 Test 139 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_atmlnd_sbs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_p8_atmlnd_sbs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_p8_atmlnd_sbs Checking test 140 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4390,14 +4390,14 @@ Checking test 140 control_p8_atmlnd_sbs 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 = 297.466667 - 0: The maximum resident set size (KB) = 1603416 + 0: The total amount of wall time = 312.494345 + 0: The maximum resident set size (KB) = 1594936 Test 140 control_p8_atmlnd_sbs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/atmwav_control_noaero_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/atmwav_control_noaero_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/atmwav_control_noaero_p8 Checking test 141 atmwav_control_noaero_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4440,14 +4440,14 @@ Checking test 141 atmwav_control_noaero_p8 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 = 133.182068 - 0: The maximum resident set size (KB) = 1555520 + 0: The total amount of wall time = 135.354629 + 0: The maximum resident set size (KB) = 1569360 Test 141 atmwav_control_noaero_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_atmwav -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/control_atmwav +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_atmwav Checking test 142 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4491,14 +4491,14 @@ Checking test 142 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 124.452389 - 0: The maximum resident set size (KB) = 598972 + 0: The total amount of wall time = 127.091925 + 0: The maximum resident set size (KB) = 598748 Test 142 control_atmwav PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/atmaero_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/atmaero_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/atmaero_control_p8 Checking test 143 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4542,14 +4542,14 @@ Checking test 143 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 387.591585 - 0: The maximum resident set size (KB) = 1659640 + 0: The total amount of wall time = 315.351841 + 0: The maximum resident set size (KB) = 1661980 Test 143 atmaero_control_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/atmaero_control_p8_rad -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/atmaero_control_p8_rad +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/atmaero_control_p8_rad Checking test 144 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4593,14 +4593,14 @@ Checking test 144 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 385.803568 - 0: The maximum resident set size (KB) = 1680800 + 0: The total amount of wall time = 384.988888 + 0: The maximum resident set size (KB) = 1678136 Test 144 atmaero_control_p8_rad PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_202588/atmaero_control_p8_rad_micro +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/atmaero_control_p8_rad_micro Checking test 145 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4644,12 +4644,12 @@ Checking test 145 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 461.766680 - 0: The maximum resident set size (KB) = 1669296 + 0: The total amount of wall time = 392.600003 + 0: The maximum resident set size (KB) = 1680848 Test 145 atmaero_control_p8_rad_micro PASS REGRESSION TEST WAS SUCCESSFUL -Mon Apr 10 04:40:08 UTC 2023 -Elapsed time: 02h:50m:29s. Have a nice day! +Wed Apr 12 02:21:59 UTC 2023 +Elapsed time: 02h:57m:30s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index 7490319d0b6..cf6843b6956 100755 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,43 +1,43 @@ -Sun Apr 9 20:04:56 CDT 2023 +Tue Apr 11 18:28:22 CDT 2023 Start Regression test -Compile 001 elapsed time 703 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 807 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 695 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 247 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 231 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 594 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 638 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 837 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 654 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 567 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 011 elapsed time 558 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 514 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 656 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 233 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 154 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 514 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 557 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 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 019 elapsed time 175 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 608 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 231 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 785 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 634 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 024 elapsed time 208 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 120 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 202 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 57 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 627 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 645 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 644 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 556 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 502 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 033 elapsed time 166 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 034 elapsed time 636 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 738 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 736 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 700 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 270 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 230 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 603 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 616 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 785 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 628 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 581 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 011 elapsed time 544 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 475 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 640 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 152 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 487 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 553 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 216 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 211 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 664 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 205 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 740 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 627 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 024 elapsed time 202 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 127 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 240 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 50 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 609 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 594 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 626 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 574 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 579 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 033 elapsed time 396 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 034 elapsed time 647 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8_mixedmode -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/cpld_control_p8_mixedmode +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -102,14 +102,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 307.867135 - 0: The maximum resident set size (KB) = 3145196 + 0: The total amount of wall time = 304.426178 + 0: The maximum resident set size (KB) = 3145980 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_gfsv17 -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/cpld_control_gfsv17 +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -173,14 +173,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 229.234899 - 0: The maximum resident set size (KB) = 1727536 + 0: The total amount of wall time = 227.002384 + 0: The maximum resident set size (KB) = 1734536 Test 002 cpld_control_gfsv17 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -245,14 +245,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 346.104322 - 0: The maximum resident set size (KB) = 3177584 + 0: The total amount of wall time = 392.264646 + 0: The maximum resident set size (KB) = 3179772 Test 003 cpld_control_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/cpld_restart_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -305,14 +305,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 203.429685 - 0: The maximum resident set size (KB) = 3049676 + 0: The total amount of wall time = 501.418198 + 0: The maximum resident set size (KB) = 2970496 Test 004 cpld_restart_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/cpld_control_qr_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -377,14 +377,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 361.340950 - 0: The maximum resident set size (KB) = 3196356 + 0: The total amount of wall time = 374.685506 + 0: The maximum resident set size (KB) = 3191212 Test 005 cpld_control_qr_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/cpld_restart_qr_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -437,14 +437,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 207.002134 - 0: The maximum resident set size (KB) = 3066612 + 0: The total amount of wall time = 208.763589 + 0: The maximum resident set size (KB) = 3068740 Test 006 cpld_restart_qr_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/cpld_2threads_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -497,14 +497,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 407.875795 - 0: The maximum resident set size (KB) = 3523800 + 0: The total amount of wall time = 434.610793 + 0: The maximum resident set size (KB) = 3522072 Test 007 cpld_2threads_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/cpld_decomp_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -557,14 +557,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 355.681839 - 0: The maximum resident set size (KB) = 3179616 + 0: The total amount of wall time = 368.947017 + 0: The maximum resident set size (KB) = 3174252 Test 008 cpld_decomp_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/cpld_mpi_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -617,14 +617,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 289.729867 - 0: The maximum resident set size (KB) = 3027920 + 0: The total amount of wall time = 293.661191 + 0: The maximum resident set size (KB) = 3027432 Test 009 cpld_mpi_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_ciceC_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/cpld_control_ciceC_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -689,14 +689,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 348.548258 - 0: The maximum resident set size (KB) = 3183520 + 0: The total amount of wall time = 385.263595 + 0: The maximum resident set size (KB) = 3188868 Test 010 cpld_control_ciceC_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/cpld_control_c192_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/cpld_control_c192_p8 Checking test 011 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -749,14 +749,14 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 633.655803 - 0: The maximum resident set size (KB) = 3261868 + 0: The total amount of wall time = 1085.646157 + 0: The maximum resident set size (KB) = 3266928 Test 011 cpld_control_c192_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/cpld_restart_c192_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/cpld_restart_c192_p8 Checking test 012 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -809,14 +809,14 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 439.208937 - 0: The maximum resident set size (KB) = 3166364 + 0: The total amount of wall time = 463.648901 + 0: The maximum resident set size (KB) = 3164432 Test 012 cpld_restart_c192_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_bmark_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/cpld_bmark_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/cpld_bmark_p8 Checking test 013 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -864,14 +864,14 @@ Checking test 013 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 899.367019 - 0: The maximum resident set size (KB) = 4039044 + 0: The total amount of wall time = 1773.792849 + 0: The maximum resident set size (KB) = 4050004 Test 013 cpld_bmark_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_bmark_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/cpld_restart_bmark_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/cpld_restart_bmark_p8 Checking test 014 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -919,14 +919,14 @@ Checking test 014 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 547.023558 - 0: The maximum resident set size (KB) = 4016204 + 0: The total amount of wall time = 531.315469 + 0: The maximum resident set size (KB) = 3979428 Test 014 cpld_restart_bmark_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_noaero_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/cpld_control_noaero_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/cpld_control_noaero_p8 Checking test 015 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -990,14 +990,14 @@ Checking test 015 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 256.770088 - 0: The maximum resident set size (KB) = 1719100 + 0: The total amount of wall time = 254.324854 + 0: The maximum resident set size (KB) = 1722752 Test 015 cpld_control_noaero_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_c96_noaero_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/cpld_control_nowave_noaero_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/cpld_control_nowave_noaero_p8 Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1059,14 +1059,14 @@ Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 261.127974 - 0: The maximum resident set size (KB) = 1774784 + 0: The total amount of wall time = 267.622413 + 0: The maximum resident set size (KB) = 1770988 Test 016 cpld_control_nowave_noaero_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_debug_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/cpld_debug_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/cpld_debug_p8 Checking test 017 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1119,14 +1119,14 @@ Checking test 017 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 550.343339 - 0: The maximum resident set size (KB) = 3240352 + 0: The total amount of wall time = 536.591351 + 0: The maximum resident set size (KB) = 3237956 Test 017 cpld_debug_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_debug_noaero_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/cpld_debug_noaero_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/cpld_debug_noaero_p8 Checking test 018 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1178,14 +1178,14 @@ Checking test 018 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 377.397051 - 0: The maximum resident set size (KB) = 1748756 + 0: The total amount of wall time = 377.093702 + 0: The maximum resident set size (KB) = 1735760 Test 018 cpld_debug_noaero_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_noaero_p8_agrid -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/cpld_control_noaero_p8_agrid +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/cpld_control_noaero_p8_agrid Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1247,14 +1247,14 @@ Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 264.405262 - 0: The maximum resident set size (KB) = 1769304 + 0: The total amount of wall time = 264.386142 + 0: The maximum resident set size (KB) = 1768712 Test 019 cpld_control_noaero_p8_agrid PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_c48 -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/cpld_control_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/cpld_control_c48 Checking test 020 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1304,14 +1304,14 @@ Checking test 020 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 495.746606 - 0: The maximum resident set size (KB) = 2807824 + 0: The total amount of wall time = 500.898169 + 0: The maximum resident set size (KB) = 2814580 Test 020 cpld_control_c48 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_warmstart_c48 -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/cpld_warmstart_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/cpld_warmstart_c48 Checking test 021 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1361,14 +1361,14 @@ Checking test 021 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 136.250044 - 0: The maximum resident set size (KB) = 2811716 + 0: The total amount of wall time = 140.238128 + 0: The maximum resident set size (KB) = 2773976 Test 021 cpld_warmstart_c48 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_warmstart_c48 -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/cpld_restart_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/cpld_restart_c48 Checking test 022 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1418,14 +1418,14 @@ Checking test 022 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 76.723178 - 0: The maximum resident set size (KB) = 2237920 + 0: The total amount of wall time = 77.762701 + 0: The maximum resident set size (KB) = 2192428 Test 022 cpld_restart_c48 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/cpld_control_p8_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/cpld_control_p8_faster Checking test 023 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1490,14 +1490,14 @@ Checking test 023 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 325.334155 - 0: The maximum resident set size (KB) = 3185408 + 0: The total amount of wall time = 715.821207 + 0: The maximum resident set size (KB) = 3180136 Test 023 cpld_control_p8_faster PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_CubedSphereGrid -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_CubedSphereGrid +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_CubedSphereGrid Checking test 024 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1524,28 +1524,28 @@ Checking test 024 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 131.143335 - 0: The maximum resident set size (KB) = 639564 + 0: The total amount of wall time = 130.604352 + 0: The maximum resident set size (KB) = 637432 Test 024 control_CubedSphereGrid PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_CubedSphereGrid_parallel -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_CubedSphereGrid_parallel +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_CubedSphereGrid_parallel Checking test 025 control_CubedSphereGrid_parallel results .... 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.474787 - 0: The maximum resident set size (KB) = 636292 + 0: The total amount of wall time = 128.038600 + 0: The maximum resident set size (KB) = 637636 Test 025 control_CubedSphereGrid_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_latlon -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_latlon +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_latlon Checking test 026 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1556,32 +1556,32 @@ Checking test 026 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.610005 - 0: The maximum resident set size (KB) = 633956 + 0: The total amount of wall time = 133.496747 + 0: The maximum resident set size (KB) = 637140 Test 026 control_latlon PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_wrtGauss_netcdf_parallel -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_wrtGauss_netcdf_parallel +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_wrtGauss_netcdf_parallel Checking test 027 control_wrtGauss_netcdf_parallel results .... - Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 137.182553 - 0: The maximum resident set size (KB) = 632036 + 0: The total amount of wall time = 136.636140 + 0: The maximum resident set size (KB) = 631616 Test 027 control_wrtGauss_netcdf_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_c48 -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_c48 Checking test 028 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1620,14 +1620,14 @@ Checking test 028 control_c48 results .... Comparing 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.374964 -0: The maximum resident set size (KB) = 827952 +0: The total amount of wall time = 346.058590 +0: The maximum resident set size (KB) = 788788 Test 028 control_c48 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_c192 -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_c192 +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_c192 Checking test 029 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1638,14 +1638,14 @@ Checking test 029 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 527.041376 - 0: The maximum resident set size (KB) = 772028 + 0: The total amount of wall time = 524.885423 + 0: The maximum resident set size (KB) = 773068 Test 029 control_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_c384 -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_c384 +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_c384 Checking test 030 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1656,14 +1656,14 @@ Checking test 030 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 594.258496 - 0: The maximum resident set size (KB) = 1238860 + 0: The total amount of wall time = 635.339517 + 0: The maximum resident set size (KB) = 1240728 Test 030 control_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_c384gdas -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_c384gdas +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_c384gdas Checking test 031 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1706,14 +1706,14 @@ Checking test 031 control_c384gdas 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 = 508.701686 - 0: The maximum resident set size (KB) = 1342876 + 0: The total amount of wall time = 507.577837 + 0: The maximum resident set size (KB) = 1344784 Test 031 control_c384gdas PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_stochy -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_stochy +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_stochy Checking test 032 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1724,28 +1724,28 @@ Checking test 032 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 88.472905 - 0: The maximum resident set size (KB) = 638004 + 0: The total amount of wall time = 87.906120 + 0: The maximum resident set size (KB) = 642228 Test 032 control_stochy PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_stochy -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_stochy_restart +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_stochy_restart Checking test 033 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 48.093898 - 0: The maximum resident set size (KB) = 491412 + 0: The total amount of wall time = 47.172206 + 0: The maximum resident set size (KB) = 482524 Test 033 control_stochy_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_lndp -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_lndp +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_lndp Checking test 034 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1756,14 +1756,14 @@ Checking test 034 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 83.364895 - 0: The maximum resident set size (KB) = 637584 + 0: The total amount of wall time = 129.823536 + 0: The maximum resident set size (KB) = 637236 Test 034 control_lndp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_iovr4 -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_iovr4 +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_iovr4 Checking test 035 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1778,14 +1778,14 @@ Checking test 035 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.956585 - 0: The maximum resident set size (KB) = 632760 + 0: The total amount of wall time = 137.698675 + 0: The maximum resident set size (KB) = 640704 Test 035 control_iovr4 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_iovr5 -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_iovr5 +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_iovr5 Checking test 036 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1800,14 +1800,14 @@ Checking test 036 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.350216 - 0: The maximum resident set size (KB) = 632032 + 0: The total amount of wall time = 135.784515 + 0: The maximum resident set size (KB) = 632200 Test 036 control_iovr5 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_p8 Checking test 037 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1854,14 +1854,14 @@ Checking test 037 control_p8 results .... Comparing 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.756081 - 0: The maximum resident set size (KB) = 1606196 + 0: The total amount of wall time = 513.006538 + 0: The maximum resident set size (KB) = 1608896 Test 037 control_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_restart_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_restart_p8 Checking test 038 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1900,14 +1900,14 @@ Checking test 038 control_restart_p8 results .... Comparing 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.840558 - 0: The maximum resident set size (KB) = 877492 + 0: The total amount of wall time = 120.324482 + 0: The maximum resident set size (KB) = 875448 Test 038 control_restart_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_qr_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_qr_p8 Checking test 039 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1954,14 +1954,14 @@ Checking test 039 control_qr_p8 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.237086 - 0: The maximum resident set size (KB) = 1607204 + 0: The total amount of wall time = 176.438406 + 0: The maximum resident set size (KB) = 1617284 Test 039 control_qr_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_restart_qr_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_restart_qr_p8 Checking test 040 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2000,14 +2000,14 @@ Checking test 040 control_restart_qr_p8 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.558168 - 0: The maximum resident set size (KB) = 877048 + 0: The total amount of wall time = 90.204889 + 0: The maximum resident set size (KB) = 868984 Test 040 control_restart_qr_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_decomp_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_decomp_p8 Checking test 041 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2050,14 +2050,14 @@ Checking test 041 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 179.125641 - 0: The maximum resident set size (KB) = 1584488 + 0: The total amount of wall time = 187.858327 + 0: The maximum resident set size (KB) = 1537064 Test 041 control_decomp_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_2threads_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_2threads_p8 Checking test 042 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2100,14 +2100,14 @@ Checking test 042 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 178.910326 - 0: The maximum resident set size (KB) = 1684904 + 0: The total amount of wall time = 177.223841 + 0: The maximum resident set size (KB) = 1690168 Test 042 control_2threads_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_lndp -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_p8_lndp +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_p8_lndp Checking test 043 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2126,14 +2126,14 @@ Checking test 043 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 311.902384 - 0: The maximum resident set size (KB) = 1613052 + 0: The total amount of wall time = 499.826366 + 0: The maximum resident set size (KB) = 1603180 Test 043 control_p8_lndp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_rrtmgp -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_p8_rrtmgp +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_p8_rrtmgp Checking test 044 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2180,14 +2180,14 @@ Checking test 044 control_p8_rrtmgp results .... Comparing 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.143010 - 0: The maximum resident set size (KB) = 1681120 + 0: The total amount of wall time = 522.202094 + 0: The maximum resident set size (KB) = 1684756 Test 044 control_p8_rrtmgp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_mynn -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_p8_mynn +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_p8_mynn Checking test 045 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2234,14 +2234,14 @@ Checking test 045 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 173.540123 - 0: The maximum resident set size (KB) = 1606296 + 0: The total amount of wall time = 461.585556 + 0: The maximum resident set size (KB) = 1615740 Test 045 control_p8_mynn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/merra2_thompson -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/merra2_thompson +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/merra2_thompson Checking test 046 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2288,14 +2288,14 @@ Checking test 046 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 193.397538 - 0: The maximum resident set size (KB) = 1612212 + 0: The total amount of wall time = 463.318745 + 0: The maximum resident set size (KB) = 1618260 Test 046 merra2_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/regional_control Checking test 047 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2306,28 +2306,28 @@ Checking test 047 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 297.589941 - 0: The maximum resident set size (KB) = 871232 + 0: The total amount of wall time = 394.964648 + 0: The maximum resident set size (KB) = 874080 Test 047 regional_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/regional_restart +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/regional_restart Checking test 048 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 152.500311 - 0: The maximum resident set size (KB) = 863848 + 0: The total amount of wall time = 165.523853 + 0: The maximum resident set size (KB) = 866388 Test 048 regional_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/regional_control_qr +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/regional_control_qr Checking test 049 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2338,28 +2338,28 @@ Checking test 049 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 298.422864 - 0: The maximum resident set size (KB) = 872524 + 0: The total amount of wall time = 433.600509 + 0: The maximum resident set size (KB) = 869840 Test 049 regional_control_qr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/regional_restart_qr +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/regional_restart_qr Checking test 050 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 151.679130 - 0: The maximum resident set size (KB) = 865612 + 0: The total amount of wall time = 174.236901 + 0: The maximum resident set size (KB) = 863244 Test 050 regional_restart_qr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/regional_decomp +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/regional_decomp Checking test 051 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2370,14 +2370,14 @@ Checking test 051 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 314.365562 - 0: The maximum resident set size (KB) = 861220 + 0: The total amount of wall time = 415.294819 + 0: The maximum resident set size (KB) = 824772 Test 051 regional_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/regional_2threads +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/regional_2threads Checking test 052 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2388,14 +2388,14 @@ Checking test 052 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 206.203914 - 0: The maximum resident set size (KB) = 851008 + 0: The total amount of wall time = 446.050214 + 0: The maximum resident set size (KB) = 846604 Test 052 regional_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_noquilt -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/regional_noquilt +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/regional_noquilt Checking test 053 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2403,28 +2403,28 @@ Checking test 053 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 318.682890 - 0: The maximum resident set size (KB) = 863656 + 0: The total amount of wall time = 315.182391 + 0: The maximum resident set size (KB) = 857572 Test 053 regional_noquilt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_netcdf_parallel -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/regional_netcdf_parallel +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/regional_netcdf_parallel Checking test 054 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 291.975083 - 0: The maximum resident set size (KB) = 865864 + 0: The total amount of wall time = 410.385859 + 0: The maximum resident set size (KB) = 866336 Test 054 regional_netcdf_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/regional_2dwrtdecomp +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/regional_2dwrtdecomp Checking test 055 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2435,14 +2435,14 @@ Checking test 055 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 296.204814 - 0: The maximum resident set size (KB) = 878464 + 0: The total amount of wall time = 411.318398 + 0: The maximum resident set size (KB) = 871796 Test 055 regional_2dwrtdecomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/fv3_regional_wofs -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/regional_wofs +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/regional_wofs Checking test 056 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2453,14 +2453,14 @@ Checking test 056 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 373.770422 - 0: The maximum resident set size (KB) = 633700 + 0: The total amount of wall time = 413.527668 + 0: The maximum resident set size (KB) = 636932 Test 056 regional_wofs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/rap_control +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/rap_control Checking test 057 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2507,14 +2507,14 @@ Checking test 057 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 460.999630 - 0: The maximum resident set size (KB) = 1061020 + 0: The total amount of wall time = 458.547948 + 0: The maximum resident set size (KB) = 1054636 Test 057 rap_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_spp_sppt_shum_skeb -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/regional_spp_sppt_shum_skeb +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/regional_spp_sppt_shum_skeb Checking test 058 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2525,14 +2525,14 @@ Checking test 058 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 263.543481 - 0: The maximum resident set size (KB) = 1188812 + 0: The total amount of wall time = 265.418172 + 0: The maximum resident set size (KB) = 1188060 Test 058 regional_spp_sppt_shum_skeb PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/rap_decomp +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/rap_decomp Checking test 059 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2579,14 +2579,14 @@ Checking test 059 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 477.020297 - 0: The maximum resident set size (KB) = 1012076 + 0: The total amount of wall time = 478.198385 + 0: The maximum resident set size (KB) = 1009184 Test 059 rap_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/rap_2threads +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/rap_2threads Checking test 060 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2633,14 +2633,14 @@ Checking test 060 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 470.286813 - 0: The maximum resident set size (KB) = 1149024 + 0: The total amount of wall time = 467.724295 + 0: The maximum resident set size (KB) = 1141288 Test 060 rap_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/rap_restart +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/rap_restart Checking test 061 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2679,14 +2679,14 @@ Checking test 061 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 231.336683 - 0: The maximum resident set size (KB) = 961056 + 0: The total amount of wall time = 255.696310 + 0: The maximum resident set size (KB) = 969424 Test 061 rap_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_sfcdiff -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/rap_sfcdiff +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/rap_sfcdiff Checking test 062 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2733,14 +2733,14 @@ Checking test 062 rap_sfcdiff results .... Comparing 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.595687 - 0: The maximum resident set size (KB) = 1055080 + 0: The total amount of wall time = 455.891088 + 0: The maximum resident set size (KB) = 1060688 Test 062 rap_sfcdiff PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_sfcdiff -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/rap_sfcdiff_decomp +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/rap_sfcdiff_decomp Checking test 063 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2787,14 +2787,14 @@ Checking test 063 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 479.270368 - 0: The maximum resident set size (KB) = 999896 + 0: The total amount of wall time = 480.972647 + 0: The maximum resident set size (KB) = 1001112 Test 063 rap_sfcdiff_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_sfcdiff -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/rap_sfcdiff_restart +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/rap_sfcdiff_restart Checking test 064 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2833,14 +2833,14 @@ Checking test 064 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 340.651949 - 0: The maximum resident set size (KB) = 984896 + 0: The total amount of wall time = 350.925690 + 0: The maximum resident set size (KB) = 983020 Test 064 rap_sfcdiff_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/hrrr_control +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/hrrr_control Checking test 065 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2887,14 +2887,14 @@ Checking test 065 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 440.084074 - 0: The maximum resident set size (KB) = 1061176 + 0: The total amount of wall time = 444.043511 + 0: The maximum resident set size (KB) = 1059024 Test 065 hrrr_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/hrrr_control_decomp +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/hrrr_control_decomp Checking test 066 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2941,14 +2941,14 @@ Checking test 066 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 463.077795 - 0: The maximum resident set size (KB) = 1004924 + 0: The total amount of wall time = 460.748849 + 0: The maximum resident set size (KB) = 1002012 Test 066 hrrr_control_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/hrrr_control_2threads +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/hrrr_control_2threads Checking test 067 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2995,14 +2995,14 @@ Checking test 067 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 453.643960 - 0: The maximum resident set size (KB) = 1141828 + 0: The total amount of wall time = 452.732843 + 0: The maximum resident set size (KB) = 1139624 Test 067 hrrr_control_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/hrrr_control_restart +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/hrrr_control_restart Checking test 068 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3041,14 +3041,14 @@ Checking test 068 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 328.897372 - 0: The maximum resident set size (KB) = 979280 + 0: The total amount of wall time = 348.807196 + 0: The maximum resident set size (KB) = 988116 Test 068 hrrr_control_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_v1beta -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/rrfs_v1beta +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/rrfs_v1beta Checking test 069 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3095,14 +3095,14 @@ Checking test 069 rrfs_v1beta results .... Comparing 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.945839 - 0: The maximum resident set size (KB) = 1063316 + 0: The total amount of wall time = 452.688914 + 0: The maximum resident set size (KB) = 1061008 Test 069 rrfs_v1beta PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_v1nssl -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/rrfs_v1nssl +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/rrfs_v1nssl Checking test 070 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3117,14 +3117,14 @@ Checking test 070 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 536.125506 - 0: The maximum resident set size (KB) = 697288 + 0: The total amount of wall time = 540.475951 + 0: The maximum resident set size (KB) = 693548 Test 070 rrfs_v1nssl PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/rrfs_v1nssl_nohailnoccn +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/rrfs_v1nssl_nohailnoccn Checking test 071 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3139,14 +3139,14 @@ Checking test 071 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 524.167764 - 0: The maximum resident set size (KB) = 748536 + 0: The total amount of wall time = 524.789149 + 0: The maximum resident set size (KB) = 756980 Test 071 rrfs_v1nssl_nohailnoccn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/rrfs_smoke_conus13km_hrrr_warm +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/rrfs_smoke_conus13km_hrrr_warm Checking test 072 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3155,14 +3155,14 @@ Checking test 072 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 147.732442 - 0: The maximum resident set size (KB) = 1004032 + 0: The total amount of wall time = 146.671129 + 0: The maximum resident set size (KB) = 1032296 Test 072 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/rrfs_smoke_conus13km_hrrr_warm_2threads +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 073 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3171,14 +3171,14 @@ Checking test 073 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 96.289782 - 0: The maximum resident set size (KB) = 948152 + 0: The total amount of wall time = 99.228038 + 0: The maximum resident set size (KB) = 947544 Test 073 rrfs_smoke_conus13km_hrrr_warm_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_conus13km_hrrr_warm -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/rrfs_conus13km_hrrr_warm +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/rrfs_conus13km_hrrr_warm Checking test 074 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3187,14 +3187,14 @@ Checking test 074 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 130.252810 - 0: The maximum resident set size (KB) = 950792 + 0: The total amount of wall time = 131.926789 + 0: The maximum resident set size (KB) = 947796 Test 074 rrfs_conus13km_hrrr_warm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/rrfs_smoke_conus13km_radar_tten_warm +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/rrfs_smoke_conus13km_radar_tten_warm Checking test 075 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3203,26 +3203,26 @@ Checking test 075 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 148.316013 - 0: The maximum resident set size (KB) = 1043692 + 0: The total amount of wall time = 147.522428 + 0: The maximum resident set size (KB) = 1001632 Test 075 rrfs_smoke_conus13km_radar_tten_warm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 076 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 68.716462 - 0: The maximum resident set size (KB) = 936392 + 0: The total amount of wall time = 93.393577 + 0: The maximum resident set size (KB) = 873752 Test 076 rrfs_conus13km_hrrr_warm_restart_mismatch PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_csawmg -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_csawmg +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_csawmg Checking test 077 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3233,14 +3233,14 @@ Checking test 077 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 344.482016 - 0: The maximum resident set size (KB) = 726468 + 0: The total amount of wall time = 395.741730 + 0: The maximum resident set size (KB) = 721172 Test 077 control_csawmg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_csawmgt -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_csawmgt +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_csawmgt Checking test 078 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3251,14 +3251,14 @@ Checking test 078 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 338.522185 - 0: The maximum resident set size (KB) = 722964 + 0: The total amount of wall time = 384.533007 + 0: The maximum resident set size (KB) = 730464 Test 078 control_csawmgt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_ras -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_ras +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_ras Checking test 079 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3269,26 +3269,26 @@ Checking test 079 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 180.875370 - 0: The maximum resident set size (KB) = 728156 + 0: The total amount of wall time = 235.272920 + 0: The maximum resident set size (KB) = 718056 Test 079 control_ras PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_wam -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_wam +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_wam Checking test 080 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 112.455913 - 0: The maximum resident set size (KB) = 639908 + 0: The total amount of wall time = 130.350707 + 0: The maximum resident set size (KB) = 641060 Test 080 control_wam PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_p8_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_p8_faster Checking test 081 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3335,14 +3335,14 @@ Checking test 081 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 151.449448 - 0: The maximum resident set size (KB) = 1610112 + 0: The total amount of wall time = 175.390492 + 0: The maximum resident set size (KB) = 1604388 Test 081 control_p8_faster PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/regional_control_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/regional_control_faster Checking test 082 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3353,56 +3353,56 @@ Checking test 082 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 271.208291 - 0: The maximum resident set size (KB) = 867840 + 0: The total amount of wall time = 269.795441 + 0: The maximum resident set size (KB) = 870360 Test 082 regional_control_faster PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 083 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 854.599121 - 0: The maximum resident set size (KB) = 1024836 + 0: The total amount of wall time = 841.387800 + 0: The maximum resident set size (KB) = 1021524 Test 083 rrfs_smoke_conus13km_hrrr_warm_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 084 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 490.330393 - 0: The maximum resident set size (KB) = 969144 + 0: The total amount of wall time = 493.055666 + 0: The maximum resident set size (KB) = 983072 Test 084 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/rrfs_conus13km_hrrr_warm_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/rrfs_conus13km_hrrr_warm_debug Checking test 085 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 739.416902 - 0: The maximum resident set size (KB) = 974736 + 0: The total amount of wall time = 757.671854 + 0: The maximum resident set size (KB) = 970792 Test 085 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_CubedSphereGrid_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_CubedSphereGrid_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_CubedSphereGrid_debug Checking test 086 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3429,334 +3429,334 @@ Checking test 086 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 154.955224 - 0: The maximum resident set size (KB) = 797768 + 0: The total amount of wall time = 149.686215 + 0: The maximum resident set size (KB) = 793096 Test 086 control_CubedSphereGrid_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_wrtGauss_netcdf_parallel_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_wrtGauss_netcdf_parallel_debug Checking test 087 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc .........OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 150.723310 - 0: The maximum resident set size (KB) = 797084 + 0: The total amount of wall time = 181.135889 + 0: The maximum resident set size (KB) = 795856 Test 087 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_stochy_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_stochy_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_stochy_debug Checking test 088 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 170.364143 - 0: The maximum resident set size (KB) = 796876 + 0: The total amount of wall time = 167.795941 + 0: The maximum resident set size (KB) = 800968 Test 088 control_stochy_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_lndp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_lndp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_lndp_debug Checking test 089 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 151.549694 - 0: The maximum resident set size (KB) = 792812 + 0: The total amount of wall time = 163.790969 + 0: The maximum resident set size (KB) = 790412 Test 089 control_lndp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_csawmg_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_csawmg_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_csawmg_debug Checking test 090 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 233.781931 - 0: The maximum resident set size (KB) = 845480 + 0: The total amount of wall time = 230.663614 + 0: The maximum resident set size (KB) = 844512 Test 090 control_csawmg_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_csawmgt_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_csawmgt_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_csawmgt_debug Checking test 091 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 229.446477 - 0: The maximum resident set size (KB) = 842340 + 0: The total amount of wall time = 244.657061 + 0: The maximum resident set size (KB) = 842168 Test 091 control_csawmgt_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_ras_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_ras_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_ras_debug Checking test 092 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 156.790865 - 0: The maximum resident set size (KB) = 806688 + 0: The total amount of wall time = 165.702660 + 0: The maximum resident set size (KB) = 805852 Test 092 control_ras_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_diag_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_diag_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_diag_debug Checking test 093 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 154.474522 - 0: The maximum resident set size (KB) = 855336 + 0: The total amount of wall time = 151.275580 + 0: The maximum resident set size (KB) = 851648 Test 093 control_diag_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_debug_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_debug_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_debug_p8 Checking test 094 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 170.402447 - 0: The maximum resident set size (KB) = 1622764 + 0: The total amount of wall time = 168.545987 + 0: The maximum resident set size (KB) = 1622784 Test 094 control_debug_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/regional_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/regional_debug Checking test 095 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 984.799701 - 0: The maximum resident set size (KB) = 891968 + 0: The total amount of wall time = 993.424597 + 0: The maximum resident set size (KB) = 886700 Test 095 regional_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/rap_control_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/rap_control_debug Checking test 096 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.752329 - 0: The maximum resident set size (KB) = 1183680 + 0: The total amount of wall time = 296.777031 + 0: The maximum resident set size (KB) = 1170116 Test 096 rap_control_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/hrrr_control_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/hrrr_control_debug Checking test 097 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.683505 - 0: The maximum resident set size (KB) = 1168632 + 0: The total amount of wall time = 292.240530 + 0: The maximum resident set size (KB) = 1169068 Test 097 hrrr_control_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/rap_unified_drag_suite_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/rap_unified_drag_suite_debug Checking test 098 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.274515 - 0: The maximum resident set size (KB) = 1170272 + 0: The total amount of wall time = 306.714275 + 0: The maximum resident set size (KB) = 1176436 Test 098 rap_unified_drag_suite_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_diag_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/rap_diag_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/rap_diag_debug Checking test 099 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 291.460173 - 0: The maximum resident set size (KB) = 1255964 + 0: The total amount of wall time = 316.352339 + 0: The maximum resident set size (KB) = 1258504 Test 099 rap_diag_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/rap_cires_ugwp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/rap_cires_ugwp_debug Checking test 100 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 278.643385 - 0: The maximum resident set size (KB) = 1174636 + 0: The total amount of wall time = 276.529515 + 0: The maximum resident set size (KB) = 1169880 Test 100 rap_cires_ugwp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/rap_unified_ugwp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/rap_unified_ugwp_debug Checking test 101 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.351921 - 0: The maximum resident set size (KB) = 1174796 + 0: The total amount of wall time = 302.990728 + 0: The maximum resident set size (KB) = 1178108 Test 101 rap_unified_ugwp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_lndp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/rap_lndp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/rap_lndp_debug Checking test 102 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 278.369573 - 0: The maximum resident set size (KB) = 1170948 + 0: The total amount of wall time = 271.833674 + 0: The maximum resident set size (KB) = 1171592 Test 102 rap_lndp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_flake_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/rap_flake_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/rap_flake_debug Checking test 103 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.420439 - 0: The maximum resident set size (KB) = 1170144 + 0: The total amount of wall time = 274.821403 + 0: The maximum resident set size (KB) = 1173736 Test 103 rap_flake_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_progcld_thompson_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/rap_progcld_thompson_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/rap_progcld_thompson_debug Checking test 104 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.230345 - 0: The maximum resident set size (KB) = 1173928 + 0: The total amount of wall time = 281.660256 + 0: The maximum resident set size (KB) = 1175100 Test 104 rap_progcld_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_noah_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/rap_noah_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/rap_noah_debug Checking test 105 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.508701 - 0: The maximum resident set size (KB) = 1169760 + 0: The total amount of wall time = 277.465421 + 0: The maximum resident set size (KB) = 1132668 Test 105 rap_noah_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_sfcdiff_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/rap_sfcdiff_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/rap_sfcdiff_debug Checking test 106 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.657450 - 0: The maximum resident set size (KB) = 1169572 + 0: The total amount of wall time = 274.681355 + 0: The maximum resident set size (KB) = 1174084 Test 106 rap_sfcdiff_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/rap_noah_sfcdiff_cires_ugwp_debug Checking test 107 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 449.144925 - 0: The maximum resident set size (KB) = 1180356 + 0: The total amount of wall time = 453.008964 + 0: The maximum resident set size (KB) = 1170408 Test 107 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_v1beta_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/rrfs_v1beta_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/rrfs_v1beta_debug Checking test 108 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.951337 - 0: The maximum resident set size (KB) = 1167624 + 0: The total amount of wall time = 274.374126 + 0: The maximum resident set size (KB) = 1165628 Test 108 rrfs_v1beta_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_wam_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_wam_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_wam_debug Checking test 109 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 288.173238 - 0: The maximum resident set size (KB) = 527348 + 0: The total amount of wall time = 283.491436 + 0: The maximum resident set size (KB) = 523964 Test 109 control_wam_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3767,14 +3767,14 @@ Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 246.866093 - 0: The maximum resident set size (KB) = 1091588 + 0: The total amount of wall time = 293.866730 + 0: The maximum resident set size (KB) = 1079960 Test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/rap_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/rap_control_dyn32_phy32 Checking test 111 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3821,14 +3821,14 @@ Checking test 111 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 378.154515 - 0: The maximum resident set size (KB) = 1002296 + 0: The total amount of wall time = 385.692409 + 0: The maximum resident set size (KB) = 1000852 Test 111 rap_control_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/hrrr_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/hrrr_control_dyn32_phy32 Checking test 112 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3875,14 +3875,14 @@ Checking test 112 hrrr_control_dyn32_phy32 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 = 196.879167 - 0: The maximum resident set size (KB) = 966148 + 0: The total amount of wall time = 206.687602 + 0: The maximum resident set size (KB) = 954360 Test 112 hrrr_control_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/rap_2threads_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/rap_2threads_dyn32_phy32 Checking test 113 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3929,14 +3929,14 @@ Checking test 113 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 393.496737 - 0: The maximum resident set size (KB) = 1018036 + 0: The total amount of wall time = 408.110456 + 0: The maximum resident set size (KB) = 1022572 Test 113 rap_2threads_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/hrrr_control_2threads_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/hrrr_control_2threads_dyn32_phy32 Checking test 114 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3983,14 +3983,14 @@ Checking test 114 hrrr_control_2threads_dyn32_phy32 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 = 203.307523 - 0: The maximum resident set size (KB) = 1004912 + 0: The total amount of wall time = 208.625736 + 0: The maximum resident set size (KB) = 1006676 Test 114 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/hrrr_control_decomp_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/hrrr_control_decomp_dyn32_phy32 Checking test 115 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4037,14 +4037,14 @@ Checking test 115 hrrr_control_decomp_dyn32_phy32 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 = 209.988294 - 0: The maximum resident set size (KB) = 899752 + 0: The total amount of wall time = 212.032708 + 0: The maximum resident set size (KB) = 900820 Test 115 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/rap_restart_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/rap_restart_dyn32_phy32 Checking test 116 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4083,14 +4083,14 @@ Checking test 116 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 293.624696 - 0: The maximum resident set size (KB) = 946276 + 0: The total amount of wall time = 281.246516 + 0: The maximum resident set size (KB) = 956544 Test 116 rap_restart_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/hrrr_control_restart_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/hrrr_control_restart_dyn32_phy32 Checking test 117 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4129,14 +4129,14 @@ Checking test 117 hrrr_control_restart_dyn32_phy32 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 = 104.694689 - 0: The maximum resident set size (KB) = 861568 + 0: The total amount of wall time = 111.870397 + 0: The maximum resident set size (KB) = 868976 Test 117 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_dyn64_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/rap_control_dyn64_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/rap_control_dyn64_phy32 Checking test 118 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4183,81 +4183,81 @@ Checking test 118 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 241.812932 - 0: The maximum resident set size (KB) = 968148 + 0: The total amount of wall time = 244.665833 + 0: The maximum resident set size (KB) = 965024 Test 118 rap_control_dyn64_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_debug_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/rap_control_debug_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/rap_control_debug_dyn32_phy32 Checking test 119 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.043654 - 0: The maximum resident set size (KB) = 1050500 + 0: The total amount of wall time = 278.330079 + 0: The maximum resident set size (KB) = 1067904 Test 119 rap_control_debug_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/hrrr_control_debug_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/hrrr_control_debug_dyn32_phy32 Checking test 120 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 266.217929 - 0: The maximum resident set size (KB) = 1057972 + 0: The total amount of wall time = 270.973088 + 0: The maximum resident set size (KB) = 1055760 Test 120 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_debug_dyn64_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/rap_control_dyn64_phy32_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/rap_control_dyn64_phy32_debug Checking test 121 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.791766 - 0: The maximum resident set size (KB) = 1097796 + 0: The total amount of wall time = 288.259758 + 0: The maximum resident set size (KB) = 1098440 Test 121 rap_control_dyn64_phy32_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/hafs_regional_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/hafs_regional_atm Checking test 122 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 263.708776 - 0: The maximum resident set size (KB) = 1055704 + 0: The total amount of wall time = 297.083759 + 0: The maximum resident set size (KB) = 1058964 Test 122 hafs_regional_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/hafs_regional_atm_thompson_gfdlsf +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/hafs_regional_atm_thompson_gfdlsf Checking test 123 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 400.197937 - 0: The maximum resident set size (KB) = 1422780 + 0: The total amount of wall time = 407.043457 + 0: The maximum resident set size (KB) = 1424964 Test 123 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_ocn -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/hafs_regional_atm_ocn +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/hafs_regional_atm_ocn Checking test 124 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4266,14 +4266,14 @@ Checking test 124 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 378.747177 - 0: The maximum resident set size (KB) = 1225892 + 0: The total amount of wall time = 402.084595 + 0: The maximum resident set size (KB) = 1234340 Test 124 hafs_regional_atm_ocn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_wav -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/hafs_regional_atm_wav +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/hafs_regional_atm_wav Checking test 125 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4282,14 +4282,14 @@ Checking test 125 hafs_regional_atm_wav results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 754.601883 - 0: The maximum resident set size (KB) = 1270148 + 0: The total amount of wall time = 734.759548 + 0: The maximum resident set size (KB) = 1225364 Test 125 hafs_regional_atm_wav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_ocn_wav -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/hafs_regional_atm_ocn_wav +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/hafs_regional_atm_ocn_wav Checking test 126 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4300,28 +4300,28 @@ Checking test 126 hafs_regional_atm_ocn_wav 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 = 851.056382 - 0: The maximum resident set size (KB) = 1280040 + 0: The total amount of wall time = 829.389326 + 0: The maximum resident set size (KB) = 1285088 Test 126 hafs_regional_atm_ocn_wav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/hafs_regional_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/hafs_regional_1nest_atm Checking test 127 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 363.443856 - 0: The maximum resident set size (KB) = 513968 + 0: The total amount of wall time = 365.351612 + 0: The maximum resident set size (KB) = 510840 Test 127 hafs_regional_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/hafs_regional_telescopic_2nests_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/hafs_regional_telescopic_2nests_atm Checking test 128 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4330,28 +4330,28 @@ Checking test 128 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 423.451569 - 0: The maximum resident set size (KB) = 518012 + 0: The total amount of wall time = 410.417429 + 0: The maximum resident set size (KB) = 520832 Test 128 hafs_regional_telescopic_2nests_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_global_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/hafs_global_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/hafs_global_1nest_atm Checking test 129 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 174.464656 - 0: The maximum resident set size (KB) = 361576 + 0: The total amount of wall time = 182.164306 + 0: The maximum resident set size (KB) = 357224 Test 129 hafs_global_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_global_multiple_4nests_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/hafs_global_multiple_4nests_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/hafs_global_multiple_4nests_atm Checking test 130 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4369,14 +4369,14 @@ Checking test 130 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 488.873078 - 0: The maximum resident set size (KB) = 435756 + 0: The total amount of wall time = 462.551326 + 0: The maximum resident set size (KB) = 431996 Test 130 hafs_global_multiple_4nests_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/hafs_regional_specified_moving_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/hafs_regional_specified_moving_1nest_atm Checking test 131 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4385,28 +4385,28 @@ Checking test 131 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 229.638773 - 0: The maximum resident set size (KB) = 524748 + 0: The total amount of wall time = 227.829564 + 0: The maximum resident set size (KB) = 531388 Test 131 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/hafs_regional_storm_following_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/hafs_regional_storm_following_1nest_atm Checking test 132 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 217.267509 - 0: The maximum resident set size (KB) = 529816 + 0: The total amount of wall time = 215.889690 + 0: The maximum resident set size (KB) = 524716 Test 132 hafs_regional_storm_following_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/hafs_regional_storm_following_1nest_atm_ocn +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/hafs_regional_storm_following_1nest_atm_ocn Checking test 133 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4415,42 +4415,42 @@ Checking test 133 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 289.131280 - 0: The maximum resident set size (KB) = 575212 + 0: The total amount of wall time = 310.618476 + 0: The maximum resident set size (KB) = 575060 Test 133 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_global_storm_following_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/hafs_global_storm_following_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/hafs_global_storm_following_1nest_atm Checking test 134 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 68.372797 - 0: The maximum resident set size (KB) = 378296 + 0: The total amount of wall time = 68.165054 + 0: The maximum resident set size (KB) = 373132 Test 134 hafs_global_storm_following_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 776.609764 - 0: The maximum resident set size (KB) = 586132 + 0: The total amount of wall time = 747.656783 + 0: The maximum resident set size (KB) = 589700 Test 135 hafs_regional_storm_following_1nest_atm_ocn_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 136 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4461,14 +4461,14 @@ Checking test 136 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 552.101817 - 0: The maximum resident set size (KB) = 621996 + 0: The total amount of wall time = 537.241222 + 0: The maximum resident set size (KB) = 619412 Test 136 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_docn -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/hafs_regional_docn +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/hafs_regional_docn Checking test 137 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4476,14 +4476,14 @@ Checking test 137 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 359.813148 - 0: The maximum resident set size (KB) = 1238860 + 0: The total amount of wall time = 359.475608 + 0: The maximum resident set size (KB) = 1236136 Test 137 hafs_regional_docn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_docn_oisst -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/hafs_regional_docn_oisst +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/hafs_regional_docn_oisst Checking test 138 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4491,131 +4491,131 @@ Checking test 138 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 373.590051 - 0: The maximum resident set size (KB) = 1227924 + 0: The total amount of wall time = 361.158683 + 0: The maximum resident set size (KB) = 1230216 Test 138 hafs_regional_docn_oisst PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_datm_cdeps -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/hafs_regional_datm_cdeps +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/hafs_regional_datm_cdeps Checking test 139 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 974.157739 - 0: The maximum resident set size (KB) = 1037196 + 0: The total amount of wall time = 928.089038 + 0: The maximum resident set size (KB) = 1036660 Test 139 hafs_regional_datm_cdeps PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/datm_cdeps_control_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/datm_cdeps_control_cfsr Checking test 140 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.261434 - 0: The maximum resident set size (KB) = 1065996 + 0: The total amount of wall time = 146.434128 + 0: The maximum resident set size (KB) = 1059136 Test 140 datm_cdeps_control_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/datm_cdeps_restart_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/datm_cdeps_restart_cfsr Checking test 141 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 107.550078 - 0: The maximum resident set size (KB) = 1011192 + 0: The total amount of wall time = 90.655051 + 0: The maximum resident set size (KB) = 1020448 Test 141 datm_cdeps_restart_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_control_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/datm_cdeps_control_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/datm_cdeps_control_gefs Checking test 142 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 141.484674 - 0: The maximum resident set size (KB) = 972056 + 0: The total amount of wall time = 141.332792 + 0: The maximum resident set size (KB) = 970452 Test 142 datm_cdeps_control_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_iau_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/datm_cdeps_iau_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/datm_cdeps_iau_gefs Checking test 143 datm_cdeps_iau_gefs 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.063815 - 0: The maximum resident set size (KB) = 977792 + 0: The total amount of wall time = 142.963714 + 0: The maximum resident set size (KB) = 960524 Test 143 datm_cdeps_iau_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_stochy_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/datm_cdeps_stochy_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/datm_cdeps_stochy_gefs Checking test 144 datm_cdeps_stochy_gefs 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.995635 - 0: The maximum resident set size (KB) = 965708 + 0: The total amount of wall time = 143.460931 + 0: The maximum resident set size (KB) = 960380 Test 144 datm_cdeps_stochy_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_ciceC_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/datm_cdeps_ciceC_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/datm_cdeps_ciceC_cfsr Checking test 145 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.598028 - 0: The maximum resident set size (KB) = 1069080 + 0: The total amount of wall time = 147.958330 + 0: The maximum resident set size (KB) = 1063232 Test 145 datm_cdeps_ciceC_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_bulk_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/datm_cdeps_bulk_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/datm_cdeps_bulk_cfsr Checking test 146 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.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.696480 - 0: The maximum resident set size (KB) = 1060272 + 0: The total amount of wall time = 150.560744 + 0: The maximum resident set size (KB) = 1059368 Test 146 datm_cdeps_bulk_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_bulk_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/datm_cdeps_bulk_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/datm_cdeps_bulk_gefs Checking test 147 datm_cdeps_bulk_gefs 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.040574 - 0: The maximum resident set size (KB) = 962548 + 0: The total amount of wall time = 142.309193 + 0: The maximum resident set size (KB) = 961648 Test 147 datm_cdeps_bulk_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_mx025_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/datm_cdeps_mx025_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/datm_cdeps_mx025_cfsr Checking test 148 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4624,14 +4624,14 @@ Checking test 148 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 515.203741 - 0: The maximum resident set size (KB) = 868172 + 0: The total amount of wall time = 436.581069 + 0: The maximum resident set size (KB) = 873992 Test 148 datm_cdeps_mx025_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_mx025_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/datm_cdeps_mx025_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/datm_cdeps_mx025_gefs Checking test 149 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4640,77 +4640,77 @@ Checking test 149 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 505.411701 - 0: The maximum resident set size (KB) = 929084 + 0: The total amount of wall time = 426.335763 + 0: The maximum resident set size (KB) = 934768 Test 149 datm_cdeps_mx025_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/datm_cdeps_multiple_files_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/datm_cdeps_multiple_files_cfsr Checking test 150 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 159.999098 - 0: The maximum resident set size (KB) = 1051264 + 0: The total amount of wall time = 146.501963 + 0: The maximum resident set size (KB) = 1078352 Test 150 datm_cdeps_multiple_files_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/datm_cdeps_3072x1536_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/datm_cdeps_3072x1536_cfsr Checking test 151 datm_cdeps_3072x1536_cfsr 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 = 204.042551 - 0: The maximum resident set size (KB) = 2303228 + 0: The total amount of wall time = 195.233110 + 0: The maximum resident set size (KB) = 2369104 Test 151 datm_cdeps_3072x1536_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_gfs -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/datm_cdeps_gfs +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/datm_cdeps_gfs Checking test 152 datm_cdeps_gfs 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 = 205.549034 - 0: The maximum resident set size (KB) = 2304860 + 0: The total amount of wall time = 199.821707 + 0: The maximum resident set size (KB) = 2367616 Test 152 datm_cdeps_gfs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_debug_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/datm_cdeps_debug_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/datm_cdeps_debug_cfsr Checking test 153 datm_cdeps_debug_cfsr results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 352.192679 - 0: The maximum resident set size (KB) = 991848 + 0: The total amount of wall time = 357.136813 + 0: The maximum resident set size (KB) = 1005752 Test 153 datm_cdeps_debug_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_control_cfsr_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/datm_cdeps_control_cfsr_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/datm_cdeps_control_cfsr_faster Checking test 154 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.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.162679 - 0: The maximum resident set size (KB) = 1053468 + 0: The total amount of wall time = 148.260641 + 0: The maximum resident set size (KB) = 1056644 Test 154 datm_cdeps_control_cfsr_faster PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_lnd_gswp3 -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/datm_cdeps_lnd_gswp3 +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/datm_cdeps_lnd_gswp3 Checking test 155 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4719,14 +4719,14 @@ Checking test 155 datm_cdeps_lnd_gswp3 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 = 30.246191 - 0: The maximum resident set size (KB) = 251096 + 0: The total amount of wall time = 7.153509 + 0: The maximum resident set size (KB) = 265976 Test 155 datm_cdeps_lnd_gswp3 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_lnd_gswp3 -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/datm_cdeps_lnd_gswp3_rst +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/datm_cdeps_lnd_gswp3_rst Checking test 156 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4735,14 +4735,14 @@ Checking test 156 datm_cdeps_lnd_gswp3_rst 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.978705 - 0: The maximum resident set size (KB) = 270644 + 0: The total amount of wall time = 12.588102 + 0: The maximum resident set size (KB) = 253184 Test 156 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_atmlnd_sbs -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_p8_atmlnd_sbs +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_p8_atmlnd_sbs Checking test 157 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4827,14 +4827,14 @@ Checking test 157 control_p8_atmlnd_sbs 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 = 211.179548 - 0: The maximum resident set size (KB) = 1616236 + 0: The total amount of wall time = 202.557362 + 0: The maximum resident set size (KB) = 1616464 Test 157 control_p8_atmlnd_sbs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/atmwav_control_noaero_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/atmwav_control_noaero_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/atmwav_control_noaero_p8 Checking test 158 atmwav_control_noaero_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4877,14 +4877,14 @@ Checking test 158 atmwav_control_noaero_p8 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 = 98.563395 - 0: The maximum resident set size (KB) = 1635644 + 0: The total amount of wall time = 93.167252 + 0: The maximum resident set size (KB) = 1634988 Test 158 atmwav_control_noaero_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_atmwav -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/control_atmwav +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_atmwav Checking test 159 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4928,14 +4928,14 @@ Checking test 159 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 90.307875 - 0: The maximum resident set size (KB) = 660260 + 0: The total amount of wall time = 86.443106 + 0: The maximum resident set size (KB) = 660536 Test 159 control_atmwav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/atmaero_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/atmaero_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/atmaero_control_p8 Checking test 160 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4979,14 +4979,14 @@ Checking test 160 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 231.683282 - 0: The maximum resident set size (KB) = 2976744 + 0: The total amount of wall time = 228.940500 + 0: The maximum resident set size (KB) = 2979380 Test 160 atmaero_control_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/atmaero_control_p8_rad -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/atmaero_control_p8_rad +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/atmaero_control_p8_rad Checking test 161 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5030,14 +5030,14 @@ Checking test 161 atmaero_control_p8_rad results .... Comparing 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.459628 - 0: The maximum resident set size (KB) = 3048724 + 0: The total amount of wall time = 279.799061 + 0: The maximum resident set size (KB) = 3052352 Test 161 atmaero_control_p8_rad PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/atmaero_control_p8_rad_micro -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/atmaero_control_p8_rad_micro +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/atmaero_control_p8_rad_micro Checking test 162 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5081,14 +5081,14 @@ Checking test 162 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 307.193821 - 0: The maximum resident set size (KB) = 3059244 + 0: The total amount of wall time = 283.722505 + 0: The maximum resident set size (KB) = 3056140 Test 162 atmaero_control_p8_rad_micro PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_atmaq -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/regional_atmaq +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/regional_atmaq Checking test 163 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5104,14 +5104,14 @@ Checking test 163 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 623.181091 - 0: The maximum resident set size (KB) = 1484932 + 0: The total amount of wall time = 611.961784 + 0: The maximum resident set size (KB) = 1475592 Test 163 regional_atmaq PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_atmaq_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/regional_atmaq_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/regional_atmaq_debug Checking test 164 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5125,14 +5125,14 @@ Checking test 164 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1193.279040 - 0: The maximum resident set size (KB) = 1405716 + 0: The total amount of wall time = 1210.688622 + 0: The maximum resident set size (KB) = 1225740 Test 164 regional_atmaq_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_atmaq_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1407/stmp/jongkim/FV3_RT/rt_305629/regional_atmaq_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/regional_atmaq_faster Checking test 165 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5148,12 +5148,12 @@ Checking test 165 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 551.524761 - 0: The maximum resident set size (KB) = 1478676 + 0: The total amount of wall time = 539.385931 + 0: The maximum resident set size (KB) = 1482108 Test 165 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Sun Apr 9 21:15:41 CDT 2023 -Elapsed time: 01h:10m:46s. Have a nice day! +Tue Apr 11 19:55:58 CDT 2023 +Elapsed time: 01h:27m:36s. Have a nice day! diff --git a/tests/RegressionTests_wcoss2.intel.log b/tests/RegressionTests_wcoss2.intel.log index 666544029fc..6d49e6f4e11 100644 --- a/tests/RegressionTests_wcoss2.intel.log +++ b/tests/RegressionTests_wcoss2.intel.log @@ -1,34 +1,34 @@ -Mon Apr 10 18:37:13 UTC 2023 +Wed Apr 12 12:35:19 UTC 2023 Start Regression test -Compile 001 elapsed time 579 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 1213 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 563 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 960 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 005 elapsed time 1081 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 1235 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 653 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 008 elapsed time 470 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 009 elapsed time 1930 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 431 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 702 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 646 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 013 elapsed time 660 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 966 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 015 elapsed time 895 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 332 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 017 elapsed time 273 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 820 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 019 elapsed time 541 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 642 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 864 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 022 elapsed time 881 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 720 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 024 elapsed time 638 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 025 elapsed time 972 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 586 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1130 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 536 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 1595 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 005 elapsed time 500 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 670 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 1352 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 1045 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 009 elapsed time 468 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 1112 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 1176 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 545 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 272 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 014 elapsed time 1245 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 447 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 516 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 017 elapsed time 932 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 581 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 019 elapsed time 480 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 646 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 889 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 022 elapsed time 719 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 932 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 024 elapsed time 219 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 025 elapsed time 746 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8_mixedmode -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/cpld_control_p8_mixedmode +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -93,14 +93,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 337.509908 -The maximum resident set size (KB) = 2950392 +The total amount of wall time = 337.629042 +The maximum resident set size (KB) = 2948256 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/cpld_control_p8 Checking test 002 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -165,14 +165,14 @@ Checking test 002 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 388.892813 -The maximum resident set size (KB) = 2985720 +The total amount of wall time = 388.230437 +The maximum resident set size (KB) = 2984648 Test 002 cpld_control_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/cpld_restart_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/cpld_restart_p8 Checking test 003 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -225,14 +225,14 @@ Checking test 003 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 235.928883 -The maximum resident set size (KB) = 2868344 +The total amount of wall time = 233.086978 +The maximum resident set size (KB) = 2871908 Test 003 cpld_restart_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/cpld_control_qr_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/cpld_control_qr_p8 Checking test 004 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -297,14 +297,14 @@ Checking test 004 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 391.251094 -The maximum resident set size (KB) = 2992588 +The total amount of wall time = 391.799938 +The maximum resident set size (KB) = 2993800 Test 004 cpld_control_qr_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/cpld_restart_qr_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/cpld_restart_qr_p8 Checking test 005 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -357,14 +357,14 @@ Checking test 005 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 238.282110 -The maximum resident set size (KB) = 2886140 +The total amount of wall time = 239.075090 +The maximum resident set size (KB) = 2885504 Test 005 cpld_restart_qr_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/cpld_2threads_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/cpld_2threads_p8 Checking test 006 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -417,14 +417,14 @@ Checking test 006 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 371.457878 -The maximum resident set size (KB) = 3287136 +The total amount of wall time = 367.366905 +The maximum resident set size (KB) = 3285420 Test 006 cpld_2threads_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/cpld_decomp_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/cpld_decomp_p8 Checking test 007 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -477,14 +477,14 @@ Checking test 007 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 384.507590 -The maximum resident set size (KB) = 2979044 +The total amount of wall time = 387.092071 +The maximum resident set size (KB) = 2979376 Test 007 cpld_decomp_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/cpld_mpi_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/cpld_mpi_p8 Checking test 008 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -537,14 +537,14 @@ Checking test 008 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 321.951669 -The maximum resident set size (KB) = 2917048 +The total amount of wall time = 316.661585 +The maximum resident set size (KB) = 2908560 Test 008 cpld_mpi_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_ciceC_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/cpld_control_ciceC_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/cpld_control_ciceC_p8 Checking test 009 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -609,14 +609,14 @@ Checking test 009 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 386.579700 -The maximum resident set size (KB) = 2982736 +The total amount of wall time = 387.776477 +The maximum resident set size (KB) = 2984012 Test 009 cpld_control_ciceC_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_bmark_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/cpld_bmark_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/cpld_bmark_p8 Checking test 010 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -664,14 +664,14 @@ Checking test 010 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 947.777693 -The maximum resident set size (KB) = 3931544 +The total amount of wall time = 938.750995 +The maximum resident set size (KB) = 3918824 Test 010 cpld_bmark_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_bmark_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/cpld_restart_bmark_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/cpld_restart_bmark_p8 Checking test 011 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -719,14 +719,14 @@ Checking test 011 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 658.100454 -The maximum resident set size (KB) = 3886856 +The total amount of wall time = 660.030023 +The maximum resident set size (KB) = 3890956 Test 011 cpld_restart_bmark_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/cpld_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/cpld_control_noaero_p8 Checking test 012 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -790,14 +790,14 @@ Checking test 012 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 286.385196 -The maximum resident set size (KB) = 1582644 +The total amount of wall time = 284.446280 +The maximum resident set size (KB) = 1582524 Test 012 cpld_control_noaero_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/cpld_control_nowave_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/cpld_control_nowave_noaero_p8 Checking test 013 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -859,14 +859,14 @@ Checking test 013 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 301.006919 -The maximum resident set size (KB) = 1635232 +The total amount of wall time = 305.280301 +The maximum resident set size (KB) = 1630028 Test 013 cpld_control_nowave_noaero_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/cpld_control_noaero_p8_agrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/cpld_control_noaero_p8_agrid Checking test 014 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -928,14 +928,14 @@ Checking test 014 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 311.445143 -The maximum resident set size (KB) = 1624608 +The total amount of wall time = 308.997972 +The maximum resident set size (KB) = 1633852 Test 014 cpld_control_noaero_p8_agrid PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/cpld_control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/cpld_control_c48 Checking test 015 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -985,14 +985,14 @@ Checking test 015 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 439.923975 -The maximum resident set size (KB) = 2643168 +The total amount of wall time = 435.771343 +The maximum resident set size (KB) = 2636784 Test 015 cpld_control_c48 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/cpld_warmstart_c48 Checking test 016 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1042,14 +1042,14 @@ Checking test 016 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 124.950629 -The maximum resident set size (KB) = 2654000 +The total amount of wall time = 127.173422 +The maximum resident set size (KB) = 2656092 Test 016 cpld_warmstart_c48 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/cpld_restart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/cpld_restart_c48 Checking test 017 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1099,14 +1099,14 @@ Checking test 017 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 71.047538 -The maximum resident set size (KB) = 2073488 +The total amount of wall time = 68.804560 +The maximum resident set size (KB) = 2065664 Test 017 cpld_restart_c48 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/cpld_control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/cpld_control_p8_faster Checking test 018 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1171,14 +1171,14 @@ Checking test 018 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 382.611607 -The maximum resident set size (KB) = 2983268 +The total amount of wall time = 379.718400 +The maximum resident set size (KB) = 2982068 Test 018 cpld_control_p8_faster PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_CubedSphereGrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/control_CubedSphereGrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/control_CubedSphereGrid Checking test 019 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1205,14 +1205,14 @@ Checking test 019 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 132.172392 -The maximum resident set size (KB) = 512288 +The total amount of wall time = 129.927163 +The maximum resident set size (KB) = 517388 Test 019 control_CubedSphereGrid PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_latlon -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/control_latlon +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/control_latlon Checking test 020 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1223,14 +1223,14 @@ Checking test 020 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 134.803883 -The maximum resident set size (KB) = 517912 +The total amount of wall time = 132.964157 +The maximum resident set size (KB) = 519520 Test 020 control_latlon PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/control_wrtGauss_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/control_wrtGauss_netcdf_parallel Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1241,14 +1241,14 @@ Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.672056 -The maximum resident set size (KB) = 519388 +The total amount of wall time = 136.191556 +The maximum resident set size (KB) = 519256 Test 021 control_wrtGauss_netcdf_parallel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/control_c48 Checking test 022 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1287,14 +1287,14 @@ Checking test 022 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 329.920749 -The maximum resident set size (KB) = 676532 +The total amount of wall time = 325.875458 +The maximum resident set size (KB) = 674232 Test 022 control_c48 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_c192 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/control_c192 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/control_c192 Checking test 023 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1305,14 +1305,14 @@ Checking test 023 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 530.002951 -The maximum resident set size (KB) = 617604 +The total amount of wall time = 529.603510 +The maximum resident set size (KB) = 616904 Test 023 control_c192 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_c384 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/control_c384 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/control_c384 Checking test 024 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1323,14 +1323,14 @@ Checking test 024 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 565.955719 -The maximum resident set size (KB) = 929888 +The total amount of wall time = 568.631269 +The maximum resident set size (KB) = 930672 Test 024 control_c384 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_c384gdas -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/control_c384gdas +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/control_c384gdas Checking test 025 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1373,14 +1373,14 @@ Checking test 025 control_c384gdas 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 = 501.599526 -The maximum resident set size (KB) = 1064408 +The total amount of wall time = 498.691145 +The maximum resident set size (KB) = 1062524 Test 025 control_c384gdas PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/control_stochy Checking test 026 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1391,28 +1391,28 @@ Checking test 026 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 91.350046 -The maximum resident set size (KB) = 525280 +The total amount of wall time = 91.845918 +The maximum resident set size (KB) = 520860 Test 026 control_stochy PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/control_stochy_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/control_stochy_restart Checking test 027 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 49.277200 -The maximum resident set size (KB) = 292044 +The total amount of wall time = 48.893917 +The maximum resident set size (KB) = 291728 Test 027 control_stochy_restart PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/control_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/control_lndp Checking test 028 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1423,14 +1423,14 @@ Checking test 028 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 84.788054 -The maximum resident set size (KB) = 521524 +The total amount of wall time = 84.476013 +The maximum resident set size (KB) = 518292 Test 028 control_lndp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_iovr4 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/control_iovr4 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/control_iovr4 Checking test 029 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1445,14 +1445,14 @@ Checking test 029 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 137.545830 -The maximum resident set size (KB) = 520684 +The total amount of wall time = 135.702764 +The maximum resident set size (KB) = 520284 Test 029 control_iovr4 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_iovr5 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/control_iovr5 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/control_iovr5 Checking test 030 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1467,14 +1467,14 @@ Checking test 030 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 137.328043 -The maximum resident set size (KB) = 517484 +The total amount of wall time = 137.592044 +The maximum resident set size (KB) = 518572 Test 030 control_iovr5 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/control_p8 Checking test 031 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1521,14 +1521,14 @@ Checking test 031 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 187.162093 -The maximum resident set size (KB) = 1481060 +The total amount of wall time = 181.523776 +The maximum resident set size (KB) = 1490204 Test 031 control_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/control_restart_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/control_restart_p8 Checking test 032 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1567,14 +1567,14 @@ Checking test 032 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 102.629123 -The maximum resident set size (KB) = 654044 +The total amount of wall time = 105.362905 +The maximum resident set size (KB) = 654008 Test 032 control_restart_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/control_qr_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/control_qr_p8 Checking test 033 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1621,14 +1621,14 @@ Checking test 033 control_qr_p8 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 = 184.623552 -The maximum resident set size (KB) = 1495656 +The total amount of wall time = 176.772394 +The maximum resident set size (KB) = 1493556 Test 033 control_qr_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/control_restart_qr_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/control_restart_qr_p8 Checking test 034 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1667,14 +1667,14 @@ Checking test 034 control_restart_qr_p8 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.769188 -The maximum resident set size (KB) = 670956 +The total amount of wall time = 105.989468 +The maximum resident set size (KB) = 665300 Test 034 control_restart_qr_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/control_decomp_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/control_decomp_p8 Checking test 035 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1717,14 +1717,14 @@ Checking test 035 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 187.850168 -The maximum resident set size (KB) = 1476496 +The total amount of wall time = 183.190293 +The maximum resident set size (KB) = 1486984 Test 035 control_decomp_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/control_2threads_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/control_2threads_p8 Checking test 036 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1767,14 +1767,14 @@ Checking test 036 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 162.355173 -The maximum resident set size (KB) = 1568492 +The total amount of wall time = 155.652170 +The maximum resident set size (KB) = 1576164 Test 036 control_2threads_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/control_p8_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/control_p8_lndp Checking test 037 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1793,14 +1793,14 @@ Checking test 037 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 325.729774 -The maximum resident set size (KB) = 1486212 +The total amount of wall time = 325.955548 +The maximum resident set size (KB) = 1490264 Test 037 control_p8_lndp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_rrtmgp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/control_p8_rrtmgp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/control_p8_rrtmgp Checking test 038 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1847,14 +1847,14 @@ Checking test 038 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 239.019093 -The maximum resident set size (KB) = 1544664 +The total amount of wall time = 236.728927 +The maximum resident set size (KB) = 1545560 Test 038 control_p8_rrtmgp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_mynn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/control_p8_mynn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/control_p8_mynn Checking test 039 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1901,14 +1901,14 @@ Checking test 039 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 188.600136 -The maximum resident set size (KB) = 1497712 +The total amount of wall time = 183.013701 +The maximum resident set size (KB) = 1490100 Test 039 control_p8_mynn PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/merra2_thompson -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/merra2_thompson +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/merra2_thompson Checking test 040 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1955,14 +1955,14 @@ Checking test 040 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 211.427308 -The maximum resident set size (KB) = 1490244 +The total amount of wall time = 208.669688 +The maximum resident set size (KB) = 1498648 Test 040 merra2_thompson PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/regional_control Checking test 041 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1973,28 +1973,28 @@ Checking test 041 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 298.309902 -The maximum resident set size (KB) = 651916 +The total amount of wall time = 290.426888 +The maximum resident set size (KB) = 651808 Test 041 regional_control PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/regional_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/regional_restart Checking test 042 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 159.746377 -The maximum resident set size (KB) = 651820 +The total amount of wall time = 157.464946 +The maximum resident set size (KB) = 652296 Test 042 regional_restart PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/regional_control_qr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/regional_control_qr Checking test 043 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2005,28 +2005,28 @@ Checking test 043 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 297.281480 -The maximum resident set size (KB) = 657196 +The total amount of wall time = 292.280001 +The maximum resident set size (KB) = 657804 Test 043 regional_control_qr PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/regional_restart_qr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/regional_restart_qr Checking test 044 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 160.402307 -The maximum resident set size (KB) = 650848 +The total amount of wall time = 161.450503 +The maximum resident set size (KB) = 652752 Test 044 regional_restart_qr PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/regional_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/regional_decomp Checking test 045 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2037,14 +2037,14 @@ Checking test 045 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 311.230331 -The maximum resident set size (KB) = 653984 +The total amount of wall time = 305.925171 +The maximum resident set size (KB) = 654932 Test 045 regional_decomp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/regional_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/regional_2threads Checking test 046 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2055,14 +2055,14 @@ Checking test 046 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 182.971362 -The maximum resident set size (KB) = 696704 +The total amount of wall time = 179.382227 +The maximum resident set size (KB) = 696484 Test 046 regional_2threads PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_noquilt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/regional_noquilt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/regional_noquilt Checking test 047 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2070,28 +2070,28 @@ Checking test 047 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 315.935717 -The maximum resident set size (KB) = 645712 +The total amount of wall time = 322.283022 +The maximum resident set size (KB) = 649432 Test 047 regional_noquilt PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/regional_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/regional_netcdf_parallel Checking test 048 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK -The total amount of wall time = 292.153285 -The maximum resident set size (KB) = 648948 +The total amount of wall time = 296.108606 +The maximum resident set size (KB) = 652956 Test 048 regional_netcdf_parallel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/regional_2dwrtdecomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/regional_2dwrtdecomp Checking test 049 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2102,14 +2102,14 @@ Checking test 049 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 298.053621 -The maximum resident set size (KB) = 651648 +The total amount of wall time = 301.453077 +The maximum resident set size (KB) = 656160 Test 049 regional_2dwrtdecomp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/fv3_regional_wofs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/regional_wofs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/regional_wofs Checking test 050 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2120,14 +2120,14 @@ Checking test 050 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 363.181026 -The maximum resident set size (KB) = 343044 +The total amount of wall time = 367.449141 +The maximum resident set size (KB) = 341204 Test 050 regional_wofs PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/rap_control Checking test 051 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2174,14 +2174,14 @@ Checking test 051 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 422.263350 -The maximum resident set size (KB) = 892724 +The total amount of wall time = 419.252301 +The maximum resident set size (KB) = 891144 Test 051 rap_control PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/regional_spp_sppt_shum_skeb +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/regional_spp_sppt_shum_skeb Checking test 052 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2192,14 +2192,14 @@ Checking test 052 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 249.064964 -The maximum resident set size (KB) = 990324 +The total amount of wall time = 242.234647 +The maximum resident set size (KB) = 990796 Test 052 regional_spp_sppt_shum_skeb PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/rap_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/rap_decomp Checking test 053 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2246,14 +2246,14 @@ Checking test 053 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 437.047802 -The maximum resident set size (KB) = 896440 +The total amount of wall time = 433.331829 +The maximum resident set size (KB) = 893488 Test 053 rap_decomp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/rap_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/rap_2threads Checking test 054 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2300,14 +2300,14 @@ Checking test 054 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 386.785446 -The maximum resident set size (KB) = 970636 +The total amount of wall time = 387.454690 +The maximum resident set size (KB) = 969276 Test 054 rap_2threads PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/rap_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/rap_restart Checking test 055 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2346,14 +2346,14 @@ Checking test 055 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 211.734037 -The maximum resident set size (KB) = 647088 +The total amount of wall time = 212.448456 +The maximum resident set size (KB) = 649208 Test 055 rap_restart PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/rap_sfcdiff Checking test 056 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2400,14 +2400,14 @@ Checking test 056 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 420.848517 -The maximum resident set size (KB) = 892580 +The total amount of wall time = 427.727686 +The maximum resident set size (KB) = 895144 Test 056 rap_sfcdiff PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/rap_sfcdiff_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/rap_sfcdiff_decomp Checking test 057 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2454,14 +2454,14 @@ Checking test 057 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 436.930980 -The maximum resident set size (KB) = 891780 +The total amount of wall time = 440.200084 +The maximum resident set size (KB) = 895484 Test 057 rap_sfcdiff_decomp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/rap_sfcdiff_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/rap_sfcdiff_restart Checking test 058 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2500,14 +2500,14 @@ Checking test 058 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 312.411145 -The maximum resident set size (KB) = 642660 +The total amount of wall time = 309.654359 +The maximum resident set size (KB) = 643600 Test 058 rap_sfcdiff_restart PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/hrrr_control Checking test 059 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2554,14 +2554,14 @@ Checking test 059 hrrr_control results .... 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.134731 -The maximum resident set size (KB) = 886420 +The total amount of wall time = 408.208598 +The maximum resident set size (KB) = 891032 Test 059 hrrr_control PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/hrrr_control_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/hrrr_control_decomp Checking test 060 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2608,14 +2608,14 @@ Checking test 060 hrrr_control_decomp results .... 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.261486 -The maximum resident set size (KB) = 889292 +The total amount of wall time = 422.812623 +The maximum resident set size (KB) = 892772 Test 060 hrrr_control_decomp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/hrrr_control_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/hrrr_control_2threads Checking test 061 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2662,14 +2662,14 @@ Checking test 061 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 374.268549 -The maximum resident set size (KB) = 956668 +The total amount of wall time = 374.791873 +The maximum resident set size (KB) = 958332 Test 061 hrrr_control_2threads PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/hrrr_control_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/hrrr_control_restart Checking test 062 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2708,14 +2708,14 @@ Checking test 062 hrrr_control_restart results .... 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.404669 -The maximum resident set size (KB) = 637376 +The total amount of wall time = 297.368886 +The maximum resident set size (KB) = 642732 Test 062 hrrr_control_restart PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_v1beta -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/rrfs_v1beta +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/rrfs_v1beta Checking test 063 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2762,14 +2762,14 @@ Checking test 063 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 422.191429 -The maximum resident set size (KB) = 891052 +The total amount of wall time = 419.823872 +The maximum resident set size (KB) = 890456 Test 063 rrfs_v1beta PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_v1nssl -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/rrfs_v1nssl +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/rrfs_v1nssl Checking test 064 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2784,14 +2784,14 @@ Checking test 064 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 482.860860 -The maximum resident set size (KB) = 580624 +The total amount of wall time = 481.953547 +The maximum resident set size (KB) = 581992 Test 064 rrfs_v1nssl PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/rrfs_v1nssl_nohailnoccn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/rrfs_v1nssl_nohailnoccn Checking test 065 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2806,14 +2806,14 @@ Checking test 065 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 470.758229 -The maximum resident set size (KB) = 574120 +The total amount of wall time = 476.042279 +The maximum resident set size (KB) = 571260 Test 065 rrfs_v1nssl_nohailnoccn PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/rrfs_smoke_conus13km_hrrr_warm Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2822,14 +2822,14 @@ Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 152.415625 -The maximum resident set size (KB) = 803380 +The total amount of wall time = 148.585548 +The maximum resident set size (KB) = 799016 Test 066 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/rrfs_smoke_conus13km_hrrr_warm_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 067 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2838,14 +2838,14 @@ Checking test 067 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 109.855567 -The maximum resident set size (KB) = 800228 +The total amount of wall time = 102.351955 +The maximum resident set size (KB) = 799892 Test 067 rrfs_smoke_conus13km_hrrr_warm_2threads PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/rrfs_conus13km_hrrr_warm Checking test 068 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2854,14 +2854,14 @@ Checking test 068 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 138.334662 -The maximum resident set size (KB) = 777984 +The total amount of wall time = 136.723781 +The maximum resident set size (KB) = 778820 Test 068 rrfs_conus13km_hrrr_warm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/rrfs_smoke_conus13km_radar_tten_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/rrfs_smoke_conus13km_radar_tten_warm Checking test 069 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2870,26 +2870,26 @@ Checking test 069 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 155.336940 -The maximum resident set size (KB) = 801944 +The total amount of wall time = 149.886512 +The maximum resident set size (KB) = 809064 Test 069 rrfs_smoke_conus13km_radar_tten_warm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 070 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 69.853214 -The maximum resident set size (KB) = 761708 +The total amount of wall time = 69.744453 +The maximum resident set size (KB) = 764152 Test 070 rrfs_conus13km_hrrr_warm_restart_mismatch PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_csawmg -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/control_csawmg +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/control_csawmg Checking test 071 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2900,14 +2900,14 @@ Checking test 071 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 351.450474 -The maximum resident set size (KB) = 586628 +The total amount of wall time = 350.924012 +The maximum resident set size (KB) = 588600 Test 071 control_csawmg PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_csawmgt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/control_csawmgt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/control_csawmgt Checking test 072 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2918,14 +2918,14 @@ Checking test 072 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 346.845908 -The maximum resident set size (KB) = 589656 +The total amount of wall time = 346.864621 +The maximum resident set size (KB) = 589920 Test 072 control_csawmgt PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_ras -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/control_ras +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/control_ras Checking test 073 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2936,26 +2936,26 @@ Checking test 073 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 182.643736 -The maximum resident set size (KB) = 555772 +The total amount of wall time = 184.358922 +The maximum resident set size (KB) = 554852 Test 073 control_ras PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_wam -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/control_wam +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/control_wam Checking test 074 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 118.704553 -The maximum resident set size (KB) = 274492 +The total amount of wall time = 118.646426 +The maximum resident set size (KB) = 275564 Test 074 control_wam PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/control_p8_faster Checking test 075 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3002,14 +3002,14 @@ Checking test 075 control_p8_faster results .... 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.888386 -The maximum resident set size (KB) = 1487480 +The total amount of wall time = 179.884543 +The maximum resident set size (KB) = 1486024 Test 075 control_p8_faster PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/regional_control_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/regional_control_faster Checking test 076 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3020,56 +3020,56 @@ Checking test 076 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 286.037436 -The maximum resident set size (KB) = 652860 +The total amount of wall time = 287.665009 +The maximum resident set size (KB) = 658520 Test 076 regional_control_faster PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 077 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 901.351818 -The maximum resident set size (KB) = 828572 +The total amount of wall time = 906.952037 +The maximum resident set size (KB) = 833376 Test 077 rrfs_smoke_conus13km_hrrr_warm_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 078 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 521.630278 -The maximum resident set size (KB) = 829652 +The total amount of wall time = 523.049820 +The maximum resident set size (KB) = 828740 Test 078 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/rrfs_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/rrfs_conus13km_hrrr_warm_debug Checking test 079 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 808.221688 -The maximum resident set size (KB) = 813896 +The total amount of wall time = 811.609835 +The maximum resident set size (KB) = 806236 Test 079 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_CubedSphereGrid_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/control_CubedSphereGrid_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/control_CubedSphereGrid_debug Checking test 080 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3096,334 +3096,334 @@ Checking test 080 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 159.408752 -The maximum resident set size (KB) = 672784 +The total amount of wall time = 159.106097 +The maximum resident set size (KB) = 673040 Test 080 control_CubedSphereGrid_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/control_wrtGauss_netcdf_parallel_debug Checking test 081 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 159.310809 -The maximum resident set size (KB) = 680508 +The total amount of wall time = 160.110779 +The maximum resident set size (KB) = 677180 Test 081 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_stochy_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/control_stochy_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/control_stochy_debug Checking test 082 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 179.008403 -The maximum resident set size (KB) = 681732 +The total amount of wall time = 180.288766 +The maximum resident set size (KB) = 684620 Test 082 control_stochy_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/control_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/control_lndp_debug Checking test 083 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 160.777396 -The maximum resident set size (KB) = 684516 +The total amount of wall time = 162.169360 +The maximum resident set size (KB) = 683856 Test 083 control_lndp_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_csawmg_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/control_csawmg_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/control_csawmg_debug Checking test 084 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 254.791413 -The maximum resident set size (KB) = 720160 +The total amount of wall time = 254.904728 +The maximum resident set size (KB) = 717568 Test 084 control_csawmg_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_csawmgt_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/control_csawmgt_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/control_csawmgt_debug Checking test 085 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 252.814228 -The maximum resident set size (KB) = 718540 +The total amount of wall time = 250.201035 +The maximum resident set size (KB) = 720208 Test 085 control_csawmgt_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_ras_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/control_ras_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/control_ras_debug Checking test 086 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 162.240807 -The maximum resident set size (KB) = 691688 +The total amount of wall time = 163.433294 +The maximum resident set size (KB) = 688284 Test 086 control_ras_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/control_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/control_diag_debug Checking test 087 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 163.643903 -The maximum resident set size (KB) = 737492 +The total amount of wall time = 163.870248 +The maximum resident set size (KB) = 736264 Test 087 control_diag_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_debug_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/control_debug_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/control_debug_p8 Checking test 088 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 189.791639 -The maximum resident set size (KB) = 1508376 +The total amount of wall time = 186.193380 +The maximum resident set size (KB) = 1502508 Test 088 control_debug_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/regional_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/regional_debug Checking test 089 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1042.494613 -The maximum resident set size (KB) = 675388 +The total amount of wall time = 1048.217220 +The maximum resident set size (KB) = 674880 Test 089 regional_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/rap_control_debug Checking test 090 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.616840 -The maximum resident set size (KB) = 1056212 +The total amount of wall time = 298.444429 +The maximum resident set size (KB) = 1057476 Test 090 rap_control_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/hrrr_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/hrrr_control_debug Checking test 091 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 291.239461 -The maximum resident set size (KB) = 1051300 +The total amount of wall time = 292.847572 +The maximum resident set size (KB) = 1046492 Test 091 hrrr_control_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/rap_unified_drag_suite_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/rap_unified_drag_suite_debug Checking test 092 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.539967 -The maximum resident set size (KB) = 1056024 +The total amount of wall time = 301.384774 +The maximum resident set size (KB) = 1056712 Test 092 rap_unified_drag_suite_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/rap_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/rap_diag_debug Checking test 093 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 307.705810 -The maximum resident set size (KB) = 1134948 +The total amount of wall time = 311.200494 +The maximum resident set size (KB) = 1133280 Test 093 rap_diag_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/rap_cires_ugwp_debug Checking test 094 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 304.399246 -The maximum resident set size (KB) = 1053844 +The total amount of wall time = 304.621187 +The maximum resident set size (KB) = 1054980 Test 094 rap_cires_ugwp_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/rap_unified_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/rap_unified_ugwp_debug Checking test 095 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 304.748963 -The maximum resident set size (KB) = 1055820 +The total amount of wall time = 305.308015 +The maximum resident set size (KB) = 1056236 Test 095 rap_unified_ugwp_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/rap_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/rap_lndp_debug Checking test 096 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 299.546291 -The maximum resident set size (KB) = 1054084 +The total amount of wall time = 301.944730 +The maximum resident set size (KB) = 1052376 Test 096 rap_lndp_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_flake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/rap_flake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/rap_flake_debug Checking test 097 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.852814 -The maximum resident set size (KB) = 1057584 +The total amount of wall time = 304.603575 +The maximum resident set size (KB) = 1052848 Test 097 rap_flake_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_progcld_thompson_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/rap_progcld_thompson_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/rap_progcld_thompson_debug Checking test 098 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.921276 -The maximum resident set size (KB) = 1054436 +The total amount of wall time = 300.641814 +The maximum resident set size (KB) = 1057424 Test 098 rap_progcld_thompson_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_noah_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/rap_noah_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/rap_noah_debug Checking test 099 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 292.444995 -The maximum resident set size (KB) = 1054568 +The total amount of wall time = 296.112637 +The maximum resident set size (KB) = 1053560 Test 099 rap_noah_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_sfcdiff_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/rap_sfcdiff_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/rap_sfcdiff_debug Checking test 100 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 299.398180 -The maximum resident set size (KB) = 1056276 +The total amount of wall time = 297.784172 +The maximum resident set size (KB) = 1052868 Test 100 rap_sfcdiff_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/rap_noah_sfcdiff_cires_ugwp_debug Checking test 101 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 487.841867 -The maximum resident set size (KB) = 1051204 +The total amount of wall time = 496.711751 +The maximum resident set size (KB) = 1052156 Test 101 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_v1beta_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/rrfs_v1beta_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/rrfs_v1beta_debug Checking test 102 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 292.837901 -The maximum resident set size (KB) = 1051468 +The total amount of wall time = 293.911479 +The maximum resident set size (KB) = 1050720 Test 102 rrfs_v1beta_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_wam_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/control_wam_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/control_wam_debug Checking test 103 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 297.315470 -The maximum resident set size (KB) = 302056 +The total amount of wall time = 297.381833 +The maximum resident set size (KB) = 302852 Test 103 control_wam_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3434,14 +3434,14 @@ Checking test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 236.501896 -The maximum resident set size (KB) = 893164 +The total amount of wall time = 235.500132 +The maximum resident set size (KB) = 890980 Test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/rap_control_dyn32_phy32 Checking test 105 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3488,14 +3488,14 @@ Checking test 105 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 353.030136 -The maximum resident set size (KB) = 783448 +The total amount of wall time = 355.292173 +The maximum resident set size (KB) = 780028 Test 105 rap_control_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/hrrr_control_dyn32_phy32 Checking test 106 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3542,14 +3542,14 @@ Checking test 106 hrrr_control_dyn32_phy32 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 = 188.591328 -The maximum resident set size (KB) = 777236 +The total amount of wall time = 187.273742 +The maximum resident set size (KB) = 780692 Test 106 hrrr_control_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/rap_2threads_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/rap_2threads_dyn32_phy32 Checking test 107 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3596,14 +3596,14 @@ Checking test 107 rap_2threads_dyn32_phy32 results .... 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.604214 -The maximum resident set size (KB) = 835924 +The total amount of wall time = 328.722764 +The maximum resident set size (KB) = 836228 Test 107 rap_2threads_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/hrrr_control_2threads_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/hrrr_control_2threads_dyn32_phy32 Checking test 108 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3650,14 +3650,14 @@ Checking test 108 hrrr_control_2threads_dyn32_phy32 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 = 173.369549 -The maximum resident set size (KB) = 834964 +The total amount of wall time = 172.717019 +The maximum resident set size (KB) = 831460 Test 108 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/hrrr_control_decomp_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/hrrr_control_decomp_dyn32_phy32 Checking test 109 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3704,14 +3704,14 @@ Checking test 109 hrrr_control_decomp_dyn32_phy32 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 = 195.806207 -The maximum resident set size (KB) = 778124 +The total amount of wall time = 196.064811 +The maximum resident set size (KB) = 775780 Test 109 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/rap_restart_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/rap_restart_dyn32_phy32 Checking test 110 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3750,14 +3750,14 @@ Checking test 110 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 258.561997 -The maximum resident set size (KB) = 619188 +The total amount of wall time = 257.614293 +The maximum resident set size (KB) = 615280 Test 110 rap_restart_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/hrrr_control_restart_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/hrrr_control_restart_dyn32_phy32 Checking test 111 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3796,14 +3796,14 @@ Checking test 111 hrrr_control_restart_dyn32_phy32 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 = 97.923894 -The maximum resident set size (KB) = 613704 +The total amount of wall time = 98.842116 +The maximum resident set size (KB) = 613064 Test 111 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/rap_control_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/rap_control_dyn64_phy32 Checking test 112 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3850,81 +3850,81 @@ Checking test 112 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -The total amount of wall time = 234.986957 -The maximum resident set size (KB) = 797276 +The total amount of wall time = 235.381886 +The maximum resident set size (KB) = 797856 Test 112 rap_control_dyn64_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/rap_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/rap_control_debug_dyn32_phy32 Checking test 113 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 291.161062 -The maximum resident set size (KB) = 944084 +The total amount of wall time = 291.219720 +The maximum resident set size (KB) = 941696 Test 113 rap_control_debug_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/hrrr_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/hrrr_control_debug_dyn32_phy32 Checking test 114 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 286.381900 -The maximum resident set size (KB) = 934584 +The total amount of wall time = 286.554181 +The maximum resident set size (KB) = 938200 Test 114 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/rap_control_dyn64_phy32_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/rap_control_dyn64_phy32_debug Checking test 115 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 299.651727 -The maximum resident set size (KB) = 956408 +The total amount of wall time = 292.796691 +The maximum resident set size (KB) = 954268 Test 115 rap_control_dyn64_phy32_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/hafs_regional_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/hafs_regional_atm Checking test 116 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 277.865324 -The maximum resident set size (KB) = 822032 +The total amount of wall time = 274.988582 +The maximum resident set size (KB) = 825604 Test 116 hafs_regional_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/hafs_regional_atm_thompson_gfdlsf Checking test 117 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 326.821564 -The maximum resident set size (KB) = 1179924 +The total amount of wall time = 322.085291 +The maximum resident set size (KB) = 1172372 Test 117 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/hafs_regional_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/hafs_regional_atm_ocn Checking test 118 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3933,14 +3933,14 @@ Checking test 118 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 392.765523 -The maximum resident set size (KB) = 861644 +The total amount of wall time = 390.089893 +The maximum resident set size (KB) = 861084 Test 118 hafs_regional_atm_ocn PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/hafs_regional_atm_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/hafs_regional_atm_wav Checking test 119 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3949,14 +3949,14 @@ Checking test 119 hafs_regional_atm_wav 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 = 712.509809 -The maximum resident set size (KB) = 889796 +The total amount of wall time = 711.552279 +The maximum resident set size (KB) = 888548 Test 119 hafs_regional_atm_wav PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/hafs_regional_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/hafs_regional_atm_ocn_wav Checking test 120 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3967,28 +3967,28 @@ Checking test 120 hafs_regional_atm_ocn_wav 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 = 900.185275 -The maximum resident set size (KB) = 915084 +The total amount of wall time = 903.263413 +The maximum resident set size (KB) = 914964 Test 120 hafs_regional_atm_ocn_wav PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/hafs_regional_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/hafs_regional_1nest_atm Checking test 121 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 334.154455 -The maximum resident set size (KB) = 395896 +The total amount of wall time = 333.107984 +The maximum resident set size (KB) = 394968 Test 121 hafs_regional_1nest_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/hafs_regional_telescopic_2nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/hafs_regional_telescopic_2nests_atm Checking test 122 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3997,28 +3997,28 @@ Checking test 122 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 406.382437 -The maximum resident set size (KB) = 402496 +The total amount of wall time = 403.569874 +The maximum resident set size (KB) = 401176 Test 122 hafs_regional_telescopic_2nests_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_global_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/hafs_global_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/hafs_global_1nest_atm Checking test 123 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 173.779071 -The maximum resident set size (KB) = 294340 +The total amount of wall time = 177.252960 +The maximum resident set size (KB) = 269964 Test 123 hafs_global_1nest_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_global_multiple_4nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/hafs_global_multiple_4nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/hafs_global_multiple_4nests_atm Checking test 124 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4036,14 +4036,14 @@ Checking test 124 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -The total amount of wall time = 491.523111 -The maximum resident set size (KB) = 348060 +The total amount of wall time = 492.509282 +The maximum resident set size (KB) = 346788 Test 124 hafs_global_multiple_4nests_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/hafs_regional_specified_moving_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/hafs_regional_specified_moving_1nest_atm Checking test 125 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4052,28 +4052,28 @@ Checking test 125 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 221.230183 -The maximum resident set size (KB) = 404036 +The total amount of wall time = 221.290339 +The maximum resident set size (KB) = 411596 Test 125 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/hafs_regional_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/hafs_regional_storm_following_1nest_atm Checking test 126 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 207.557435 -The maximum resident set size (KB) = 409256 +The total amount of wall time = 207.373938 +The maximum resident set size (KB) = 408540 Test 126 hafs_regional_storm_following_1nest_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/hafs_regional_storm_following_1nest_atm_ocn Checking test 127 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4082,42 +4082,42 @@ Checking test 127 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 255.094153 -The maximum resident set size (KB) = 467264 +The total amount of wall time = 259.318364 +The maximum resident set size (KB) = 466944 Test 127 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/hafs_global_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/hafs_global_storm_following_1nest_atm Checking test 128 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 86.596921 -The maximum resident set size (KB) = 299468 +The total amount of wall time = 94.433087 +The maximum resident set size (KB) = 288484 Test 128 hafs_global_storm_following_1nest_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 129 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 808.638321 -The maximum resident set size (KB) = 494108 +The total amount of wall time = 803.627269 +The maximum resident set size (KB) = 493240 Test 129 hafs_regional_storm_following_1nest_atm_ocn_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 130 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4128,14 +4128,14 @@ Checking test 130 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 506.762588 -The maximum resident set size (KB) = 525848 +The total amount of wall time = 508.156907 +The maximum resident set size (KB) = 523224 Test 130 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_atmlnd_sbs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/control_p8_atmlnd_sbs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/control_p8_atmlnd_sbs Checking test 131 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4220,14 +4220,14 @@ Checking test 131 control_p8_atmlnd_sbs 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 = 248.415883 -The maximum resident set size (KB) = 1538232 +The total amount of wall time = 239.091503 +The maximum resident set size (KB) = 1547152 Test 131 control_p8_atmlnd_sbs PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/atmaero_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/atmaero_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/atmaero_control_p8 Checking test 132 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4271,14 +4271,14 @@ Checking test 132 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 249.504365 -The maximum resident set size (KB) = 2816512 +The total amount of wall time = 248.169667 +The maximum resident set size (KB) = 2815484 Test 132 atmaero_control_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/atmaero_control_p8_rad -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/atmaero_control_p8_rad +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/atmaero_control_p8_rad Checking test 133 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4322,14 +4322,14 @@ Checking test 133 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 286.131392 -The maximum resident set size (KB) = 2878636 +The total amount of wall time = 287.722816 +The maximum resident set size (KB) = 2877044 Test 133 atmaero_control_p8_rad PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/atmaero_control_p8_rad_micro +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/atmaero_control_p8_rad_micro Checking test 134 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4373,14 +4373,14 @@ Checking test 134 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 290.883958 -The maximum resident set size (KB) = 2886656 +The total amount of wall time = 292.902680 +The maximum resident set size (KB) = 2887444 Test 134 atmaero_control_p8_rad_micro PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_atmaq -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/regional_atmaq +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/regional_atmaq Checking test 135 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4396,14 +4396,14 @@ Checking test 135 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 687.230045 -The maximum resident set size (KB) = 1258888 +The total amount of wall time = 688.835527 +The maximum resident set size (KB) = 1262908 Test 135 regional_atmaq PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_atmaq_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/regional_atmaq_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/regional_atmaq_debug Checking test 136 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4417,14 +4417,14 @@ Checking test 136 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1295.844745 -The maximum resident set size (KB) = 1301592 +The total amount of wall time = 1305.306021 +The maximum resident set size (KB) = 1295520 Test 136 regional_atmaq_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_atmaq_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2461/regional_atmaq_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/regional_atmaq_faster Checking test 137 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4440,12 +4440,12 @@ Checking test 137 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 646.029775 -The maximum resident set size (KB) = 1258144 +The total amount of wall time = 643.839958 +The maximum resident set size (KB) = 1261676 Test 137 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Mon Apr 10 19:39:55 UTC 2023 -Elapsed time: 01h:02m:43s. Have a nice day! +Wed Apr 12 13:45:04 UTC 2023 +Elapsed time: 01h:09m:46s. Have a nice day! From 22470602dcbeac43d2b594102fcc54e880eee670 Mon Sep 17 00:00:00 2001 From: WenMeng-NOAA <48260754+WenMeng-NOAA@users.noreply.github.com> Date: Fri, 14 Apr 2023 14:08:01 -0400 Subject: [PATCH 20/30] Update in-line post for RRFS and GFS (#1690) * Rename global fv3 inline post itag and control files. * Set read merra2 as default; add SDEN in gfs control file. * Update cpld_control_run.IN for changing post_itag name. --- FV3 | 2 +- tests/RegressionTests_cheyenne.gnu.log | 440 ++--- tests/RegressionTests_cheyenne.intel.log | 1590 ++++++++--------- tests/RegressionTests_hera.gnu.log | 512 +++--- tests/RegressionTests_hera.intel.log | 1394 +++++++-------- tests/RegressionTests_jet.intel.log | 1242 ++++++------- tests/RegressionTests_orion.intel.log | 1408 +++++++-------- tests/RegressionTests_wcoss2.intel.log | 1152 ++++++------ tests/fv3_conf/control_run.IN | 6 +- tests/fv3_conf/cpld_control_run.IN | 6 +- tests/parm/{post_itag => post_itag_gfs} | 2 +- ...txconfig-NT.txt => postxconfig-NT-gfs.txt} | 39 +- ...T_FH00.txt => postxconfig-NT-gfs_FH00.txt} | 0 tests/rt.sh | 2 +- 14 files changed, 3857 insertions(+), 3938 deletions(-) rename tests/parm/{post_itag => post_itag_gfs} (89%) rename tests/parm/{postxconfig-NT.txt => postxconfig-NT-gfs.txt} (99%) rename tests/parm/{postxconfig-NT_FH00.txt => postxconfig-NT-gfs_FH00.txt} (100%) diff --git a/FV3 b/FV3 index f964b4b5e48..f071fc658dc 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit f964b4b5e4807363f891c8b2e7a10a8534f109a6 +Subproject commit f071fc658dcb2b9f53b5fe1363c1584eacfe1895 diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index c734bff5851..c0b14e44e97 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,21 +1,21 @@ -Tue Apr 11 20:08:21 MDT 2023 +Thu Apr 13 20:06:39 MDT 2023 Start Regression test -Compile 001 elapsed time 378 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 394 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 840 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 188 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 376 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 1085 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 838 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 842 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 629 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 563 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 343 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 012 elapsed time 298 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/control_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/control_c48 +Compile 001 elapsed time 385 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 408 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 858 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 186 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 380 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 1086 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 853 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 856 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 627 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 576 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 355 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 012 elapsed time 303 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/control_c48 +working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/control_c48 Checking test 001 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -54,14 +54,14 @@ Checking test 001 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 820.721690 -0:The maximum resident set size (KB) = 679708 +0:The total amount of wall time = 821.432916 +0:The maximum resident set size (KB) = 679760 Test 001 control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/control_stochy +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/control_stochy +working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/control_stochy Checking test 002 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -72,14 +72,14 @@ Checking test 002 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 177.191681 -0:The maximum resident set size (KB) = 443284 +0:The total amount of wall time = 177.666595 +0:The maximum resident set size (KB) = 443272 Test 002 control_stochy PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/control_ras -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/control_ras +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/control_ras +working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/control_ras Checking test 003 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -90,14 +90,14 @@ Checking test 003 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 293.336442 -0:The maximum resident set size (KB) = 451988 +0:The total amount of wall time = 298.282849 +0:The maximum resident set size (KB) = 452016 Test 003 control_ras PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/control_p8 +working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/control_p8 Checking test 004 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -144,14 +144,14 @@ Checking test 004 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 308.486307 -0:The maximum resident set size (KB) = 1224928 +0:The total amount of wall time = 309.839206 +0:The maximum resident set size (KB) = 1224632 Test 004 control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/rap_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rap_control +working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/rap_control Checking test 005 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -198,14 +198,14 @@ Checking test 005 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 714.711826 -0:The maximum resident set size (KB) = 791708 +0:The total amount of wall time = 713.413966 +0:The maximum resident set size (KB) = 792132 Test 005 rap_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/rap_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rap_control +working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/rap_decomp Checking test 006 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -252,14 +252,14 @@ Checking test 006 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 717.814324 -0:The maximum resident set size (KB) = 791508 +0:The total amount of wall time = 718.731864 +0:The maximum resident set size (KB) = 791904 Test 006 rap_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/rap_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rap_control +working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/rap_2threads Checking test 007 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -306,14 +306,14 @@ Checking test 007 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 652.665027 -0:The maximum resident set size (KB) = 865772 +0:The total amount of wall time = 653.089302 +0:The maximum resident set size (KB) = 865920 Test 007 rap_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/rap_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rap_control +working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/rap_restart Checking test 008 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -352,14 +352,14 @@ Checking test 008 rap_restart results .... Comparing 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.482659 -0:The maximum resident set size (KB) = 538976 +0:The total amount of wall time = 354.930066 +0:The maximum resident set size (KB) = 539428 Test 008 rap_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/rap_sfcdiff +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/rap_sfcdiff Checking test 009 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -406,14 +406,14 @@ Checking test 009 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 715.721695 -0:The maximum resident set size (KB) = 791916 +0:The total amount of wall time = 715.536747 +0:The maximum resident set size (KB) = 792276 Test 009 rap_sfcdiff PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/rap_sfcdiff_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/rap_sfcdiff_decomp Checking test 010 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -460,14 +460,14 @@ Checking test 010 rap_sfcdiff_decomp results .... Comparing 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.615618 -0:The maximum resident set size (KB) = 791224 +0:The total amount of wall time = 722.672547 +0:The maximum resident set size (KB) = 791680 Test 010 rap_sfcdiff_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/rap_sfcdiff_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/rap_sfcdiff_restart Checking test 011 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -506,14 +506,14 @@ Checking test 011 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 527.932231 -0:The maximum resident set size (KB) = 544364 +0:The total amount of wall time = 527.993939 +0:The maximum resident set size (KB) = 544644 Test 011 rap_sfcdiff_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/hrrr_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/hrrr_control +working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/hrrr_control Checking test 012 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -560,14 +560,14 @@ Checking test 012 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 695.479475 -0:The maximum resident set size (KB) = 789032 +0:The total amount of wall time = 692.890540 +0:The maximum resident set size (KB) = 789912 Test 012 hrrr_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/hrrr_control_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/hrrr_control +working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/hrrr_control_2threads Checking test 013 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -614,14 +614,14 @@ Checking test 013 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 626.847430 -0:The maximum resident set size (KB) = 860684 +0:The total amount of wall time = 628.729136 +0:The maximum resident set size (KB) = 860248 Test 013 hrrr_control_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/hrrr_control_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/hrrr_control +working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/hrrr_control_decomp Checking test 014 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -668,14 +668,14 @@ Checking test 014 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 693.270393 -0:The maximum resident set size (KB) = 788916 +0:The total amount of wall time = 694.538270 +0:The maximum resident set size (KB) = 789280 Test 014 hrrr_control_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/hrrr_control_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/hrrr_control +working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/hrrr_control_restart Checking test 015 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -714,14 +714,14 @@ Checking test 015 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 510.029112 -0:The maximum resident set size (KB) = 540404 +0:The total amount of wall time = 519.152310 +0:The maximum resident set size (KB) = 540688 Test 015 hrrr_control_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rrfs_v1beta -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/rrfs_v1beta +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rrfs_v1beta +working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/rrfs_v1beta Checking test 016 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -768,14 +768,14 @@ Checking test 016 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 707.845561 -0:The maximum resident set size (KB) = 788880 +0:The total amount of wall time = 706.135679 +0:The maximum resident set size (KB) = 789188 Test 016 rrfs_v1beta PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/rrfs_smoke_conus13km_hrrr_warm Checking test 017 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -784,14 +784,14 @@ Checking test 017 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 230.347433 -0:The maximum resident set size (KB) = 636604 +0:The total amount of wall time = 230.391677 +0:The maximum resident set size (KB) = 636480 Test 017 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 018 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -800,14 +800,14 @@ Checking test 018 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 148.461192 -0:The maximum resident set size (KB) = 661244 +0:The total amount of wall time = 145.720933 +0:The maximum resident set size (KB) = 660724 Test 018 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/rrfs_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/rrfs_conus13km_hrrr_warm Checking test 019 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -816,14 +816,14 @@ Checking test 019 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 212.377057 -0:The maximum resident set size (KB) = 615540 +0:The total amount of wall time = 211.944143 +0:The maximum resident set size (KB) = 615864 Test 019 rrfs_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/rrfs_smoke_conus13km_radar_tten_warm Checking test 020 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -832,234 +832,234 @@ Checking test 020 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 233.939857 -0:The maximum resident set size (KB) = 639416 +0:The total amount of wall time = 234.220429 +0:The maximum resident set size (KB) = 639168 Test 020 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 021 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 113.195002 -0:The maximum resident set size (KB) = 597236 +0:The total amount of wall time = 109.986473 +0:The maximum resident set size (KB) = 596476 Test 021 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/control_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/control_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/control_diag_debug +working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/control_diag_debug Checking test 022 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 83.289662 -0:The maximum resident set size (KB) = 491860 +0:The total amount of wall time = 82.960748 +0:The maximum resident set size (KB) = 491788 Test 022 control_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/regional_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/regional_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/regional_debug +working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/regional_debug Checking test 023 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 478.916928 -0:The maximum resident set size (KB) = 566832 +0:The total amount of wall time = 481.067259 +0:The maximum resident set size (KB) = 566568 Test 023 regional_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/rap_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rap_control_debug +working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/rap_control_debug Checking test 024 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 145.401198 -0:The maximum resident set size (KB) = 805524 +0:The total amount of wall time = 146.226331 +0:The maximum resident set size (KB) = 805828 Test 024 rap_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/hrrr_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/hrrr_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/hrrr_control_debug +working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/hrrr_control_debug Checking test 025 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 144.100722 -0:The maximum resident set size (KB) = 801336 +0:The total amount of wall time = 143.704686 +0:The maximum resident set size (KB) = 801648 Test 025 hrrr_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rap_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/rap_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rap_diag_debug +working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/rap_diag_debug Checking test 026 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 152.259800 -0:The maximum resident set size (KB) = 888016 +0:The total amount of wall time = 152.744365 +0:The maximum resident set size (KB) = 888220 Test 026 rap_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/rap_noah_sfcdiff_cires_ugwp_debug Checking test 027 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 235.195591 -0:The maximum resident set size (KB) = 804160 +0:The total amount of wall time = 235.712809 +0:The maximum resident set size (KB) = 804280 Test 027 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rap_progcld_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/rap_progcld_thompson_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rap_progcld_thompson_debug +working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/rap_progcld_thompson_debug Checking test 028 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 145.674779 -0:The maximum resident set size (KB) = 805412 +0:The total amount of wall time = 146.305921 +0:The maximum resident set size (KB) = 805744 Test 028 rap_progcld_thompson_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rrfs_v1beta_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/rrfs_v1beta_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rrfs_v1beta_debug +working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/rrfs_v1beta_debug Checking test 029 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 144.459248 -0:The maximum resident set size (KB) = 801132 +0:The total amount of wall time = 144.680346 +0:The maximum resident set size (KB) = 801360 Test 029 rrfs_v1beta_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/control_ras_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/control_ras_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/control_ras_debug +working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/control_ras_debug Checking test 030 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 80.876742 -0:The maximum resident set size (KB) = 446004 +0:The total amount of wall time = 80.856737 +0:The maximum resident set size (KB) = 445984 Test 030 control_ras_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/control_stochy_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/control_stochy_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/control_stochy_debug +working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/control_stochy_debug Checking test 031 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 90.776968 -0:The maximum resident set size (KB) = 438756 +0:The total amount of wall time = 90.223132 +0:The maximum resident set size (KB) = 438816 Test 031 control_stochy_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/control_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/control_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/control_debug_p8 +working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/control_debug_p8 Checking test 032 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 92.951681 -0:The maximum resident set size (KB) = 1221308 +0:The total amount of wall time = 91.032863 +0:The maximum resident set size (KB) = 1221180 Test 032 control_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 033 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 438.449997 -0:The maximum resident set size (KB) = 641608 +0:The total amount of wall time = 440.078151 +0:The maximum resident set size (KB) = 641432 Test 033 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 034 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 257.740088 -0:The maximum resident set size (KB) = 666684 +0:The total amount of wall time = 257.501390 +0:The maximum resident set size (KB) = 665668 Test 034 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/rrfs_conus13km_hrrr_warm_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rrfs_conus13km_hrrr_warm_debugs +working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/rrfs_conus13km_hrrr_warm_debug Checking test 035 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 395.593909 -0:The maximum resident set size (KB) = 620024 +0:The total amount of wall time = 397.223105 +0:The maximum resident set size (KB) = 619872 Test 035 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/control_wam_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/control_wam_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/control_wam_debug +working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/control_wam_debug Checking test 036 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 140.097725 -0:The maximum resident set size (KB) = 182704 +0:The total amount of wall time = 139.562641 +0:The maximum resident set size (KB) = 182104 Test 036 control_wam_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/rap_control_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/rap_control_dyn32_phy32 Checking test 037 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1106,14 +1106,14 @@ Checking test 037 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 702.819708 -0:The maximum resident set size (KB) = 673316 +0:The total amount of wall time = 706.983146 +0:The maximum resident set size (KB) = 673652 Test 037 rap_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/hrrr_control_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/hrrr_control_dyn32_phy32 Checking test 038 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1160,14 +1160,14 @@ Checking test 038 hrrr_control_dyn32_phy32 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 = 359.153599 -0:The maximum resident set size (KB) = 670720 +0:The total amount of wall time = 354.875107 +0:The maximum resident set size (KB) = 671116 Test 038 hrrr_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/rap_2threads_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/rap_2threads_dyn32_phy32 Checking test 039 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1214,14 +1214,14 @@ Checking test 039 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 639.891813 -0:The maximum resident set size (KB) = 719660 +0:The total amount of wall time = 641.815995 +0:The maximum resident set size (KB) = 719536 Test 039 rap_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/hrrr_control_2threads_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/hrrr_control_2threads_dyn32_phy32 Checking test 040 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1268,14 +1268,14 @@ Checking test 040 hrrr_control_2threads_dyn32_phy32 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 = 318.795526 -0:The maximum resident set size (KB) = 716736 +0:The total amount of wall time = 320.987095 +0:The maximum resident set size (KB) = 716632 Test 040 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/hrrr_control_decomp_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/hrrr_control_decomp_dyn32_phy32 Checking test 041 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1322,14 +1322,14 @@ Checking test 041 hrrr_control_decomp_dyn32_phy32 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 = 354.518223 -0:The maximum resident set size (KB) = 670816 +0:The total amount of wall time = 353.703337 +0:The maximum resident set size (KB) = 670188 Test 041 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/rap_restart_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/rap_restart_dyn32_phy32 Checking test 042 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1368,14 +1368,14 @@ Checking test 042 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 518.234239 -0:The maximum resident set size (KB) = 511232 +0:The total amount of wall time = 519.225623 +0:The maximum resident set size (KB) = 511732 Test 042 rap_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/hrrr_control_restart_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/hrrr_control_restart_dyn32_phy32 Checking test 043 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1414,14 +1414,14 @@ Checking test 043 hrrr_control_restart_dyn32_phy32 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 = 179.497128 -0:The maximum resident set size (KB) = 507624 +0:The total amount of wall time = 179.522147 +0:The maximum resident set size (KB) = 507332 Test 043 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rap_control_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/rap_control_dyn64_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rap_control_dyn64_phy32 +working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/rap_control_dyn64_phy32 Checking test 044 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1468,56 +1468,56 @@ Checking test 044 rap_control_dyn64_phy32 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 = 415.212300 -0:The maximum resident set size (KB) = 692580 +0:The total amount of wall time = 415.429390 +0:The maximum resident set size (KB) = 693696 Test 044 rap_control_dyn64_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/rap_control_debug_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/rap_control_debug_dyn32_phy32 Checking test 045 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 143.691183 -0:The maximum resident set size (KB) = 687872 +0:The total amount of wall time = 143.803641 +0:The maximum resident set size (KB) = 688076 Test 045 rap_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/hrrr_control_debug_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/hrrr_control_debug_dyn32_phy32 Checking test 046 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 140.763593 -0:The maximum resident set size (KB) = 683820 +0:The total amount of wall time = 141.684075 +0:The maximum resident set size (KB) = 684208 Test 046 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/rap_control_dyn64_phy32_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rap_control_debug_dyn64_phy32 +working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/rap_control_dyn64_phy32_debug Checking test 047 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 148.179575 -0:The maximum resident set size (KB) = 707640 +0:The total amount of wall time = 148.706449 +0:The maximum resident set size (KB) = 707736 Test 047 rap_control_dyn64_phy32_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/cpld_control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/cpld_control_p8 Checking test 048 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1582,14 +1582,14 @@ Checking test 048 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 499.892145 -0:The maximum resident set size (KB) = 3160848 +0:The total amount of wall time = 499.375434 +0:The maximum resident set size (KB) = 3158660 Test 048 cpld_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/cpld_control_nowave_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/cpld_control_c96_noaero_p8 +working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/cpld_control_nowave_noaero_p8 Checking test 049 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1651,14 +1651,14 @@ Checking test 049 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 248.382769 -0:The maximum resident set size (KB) = 1240568 +0:The total amount of wall time = 249.454143 +0:The maximum resident set size (KB) = 1242168 Test 049 cpld_control_nowave_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/cpld_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/cpld_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/cpld_debug_p8 +working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/cpld_debug_p8 Checking test 050 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1711,25 +1711,25 @@ Checking test 050 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 203.121279 -0:The maximum resident set size (KB) = 3172932 +0:The total amount of wall time = 199.695749 +0:The maximum resident set size (KB) = 3174588 Test 050 cpld_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/GNU/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_27598/datm_cdeps_control_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/datm_cdeps_control_cfsr +working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/datm_cdeps_control_cfsr Checking test 051 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 172.802693 -0:The maximum resident set size (KB) = 673668 +0:The total amount of wall time = 179.243888 +0:The maximum resident set size (KB) = 679076 Test 051 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Tue Apr 11 20:41:12 MDT 2023 -Elapsed time: 00h:32m:52s. Have a nice day! +Thu Apr 13 20:42:21 MDT 2023 +Elapsed time: 00h:35m:42s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 25e5f570cf2..641a450fe23 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,45 +1,43 @@ -Tue Apr 11 19:53:34 MDT 2023 +Thu Apr 13 20:07:26 MDT 2023 Start Regression test -Test 008 compile FAIL - -Compile 001 elapsed time 1439 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 1372 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 1362 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 448 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 390 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 1066 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 1076 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 1694 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 1065 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 983 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 011 elapsed time 925 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 797 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 1286 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 404 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 262 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 841 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 829 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 272 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 275 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 1131 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 021 elapsed time 348 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 1578 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 1107 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 024 elapsed time 423 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 198 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 424 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 104 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 947 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 1006 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 1015 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 905 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 866 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 033 elapsed time 290 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 034 elapsed time 1021 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8_mixedmode -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/cpld_control_p8_mixedmode +Compile 001 elapsed time 1382 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1408 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 1388 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 463 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 408 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 1077 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 1075 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 1769 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 1074 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 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 011 elapsed time 918 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 810 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 1292 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 408 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 267 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 849 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 846 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 271 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 278 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 1133 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 021 elapsed time 350 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 1576 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 1122 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 024 elapsed time 426 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 195 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 425 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 107 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 957 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 999 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 1026 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 898 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 883 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 033 elapsed time 294 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 034 elapsed time 1050 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8_mixedmode +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -104,14 +102,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 318.860274 -0:The maximum resident set size (KB) = 2698108 +0:The total amount of wall time = 322.410208 +0:The maximum resident set size (KB) = 2698132 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_gfsv17 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/cpld_control_gfsv17 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_gfsv17 +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -175,14 +173,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 280.572469 -0:The maximum resident set size (KB) = 1437432 +0:The total amount of wall time = 272.999933 +0:The maximum resident set size (KB) = 1437576 Test 002 cpld_control_gfsv17 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/cpld_control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -247,14 +245,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 321.798272 -0:The maximum resident set size (KB) = 2715416 +0:The total amount of wall time = 314.960493 +0:The maximum resident set size (KB) = 2715328 Test 003 cpld_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/cpld_restart_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -307,14 +305,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 188.016657 -0:The maximum resident set size (KB) = 2576444 +0:The total amount of wall time = 183.142993 +0:The maximum resident set size (KB) = 2576516 Test 004 cpld_restart_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/cpld_control_qr_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -379,14 +377,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 315.588310 -0:The maximum resident set size (KB) = 2719496 +0:The total amount of wall time = 333.967221 +0:The maximum resident set size (KB) = 2719516 Test 005 cpld_control_qr_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/cpld_restart_qr_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -439,14 +437,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 198.041793 -0:The maximum resident set size (KB) = 2593712 +0:The total amount of wall time = 197.480999 +0:The maximum resident set size (KB) = 2594024 Test 006 cpld_restart_qr_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/cpld_2threads_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -499,14 +497,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 248.812422 -0:The maximum resident set size (KB) = 3177756 +0:The total amount of wall time = 250.823933 +0:The maximum resident set size (KB) = 3177844 Test 007 cpld_2threads_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/cpld_decomp_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -559,14 +557,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 321.235614 -0:The maximum resident set size (KB) = 2720456 +0:The total amount of wall time = 313.965681 +0:The maximum resident set size (KB) = 2720560 Test 008 cpld_decomp_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/cpld_mpi_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -619,14 +617,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 275.285525 -0:The maximum resident set size (KB) = 2680400 +0:The total amount of wall time = 277.194030 +0:The maximum resident set size (KB) = 2680792 Test 009 cpld_mpi_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_ciceC_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/cpld_control_ciceC_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_ciceC_p8 +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -691,134 +689,16 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 312.161608 -0:The maximum resident set size (KB) = 2715452 +0:The total amount of wall time = 324.791251 +0:The maximum resident set size (KB) = 2715348 Test 010 cpld_control_ciceC_p8 PASS - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/cpld_control_c192_p8 -Checking test 011 cpld_control_c192_p8 results .... - Comparing sfcf030.tile1.nc .........OK - Comparing sfcf030.tile2.nc .........OK - Comparing sfcf030.tile3.nc .........OK - Comparing sfcf030.tile4.nc .........OK - Comparing sfcf030.tile5.nc .........OK - Comparing sfcf030.tile6.nc .........OK - Comparing atmf030.tile1.nc .........OK - Comparing atmf030.tile2.nc .........OK - Comparing atmf030.tile3.nc .........OK - Comparing atmf030.tile4.nc .........OK - Comparing atmf030.tile5.nc .........OK - Comparing atmf030.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_1200z.nc4 .........OK - Comparing RESTART/20210323.120000.coupler.res .........OK - Comparing RESTART/20210323.120000.fv_core.res.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - Comparing 20210323.120000.out_grd.ww3 .........OK - Comparing 20210323.120000.out_pnt.ww3 .........OK - -0:The total amount of wall time = 620.898845 -0:The maximum resident set size (KB) = 3352344 - -Test 011 cpld_control_c192_p8 PASS +Test 011 cpld_control_c192_p8 FAIL -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/cpld_restart_c192_p8 -Checking test 012 cpld_restart_c192_p8 results .... - Comparing sfcf030.tile1.nc .........OK - Comparing sfcf030.tile2.nc .........OK - Comparing sfcf030.tile3.nc .........OK - Comparing sfcf030.tile4.nc .........OK - Comparing sfcf030.tile5.nc .........OK - Comparing sfcf030.tile6.nc .........OK - Comparing atmf030.tile1.nc .........OK - Comparing atmf030.tile2.nc .........OK - Comparing atmf030.tile3.nc .........OK - Comparing atmf030.tile4.nc .........OK - Comparing atmf030.tile5.nc .........OK - Comparing atmf030.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_1200z.nc4 .........OK - Comparing RESTART/20210323.120000.coupler.res .........OK - Comparing RESTART/20210323.120000.fv_core.res.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - Comparing 20210323.120000.out_grd.ww3 .........OK - Comparing 20210323.120000.out_pnt.ww3 .........OK - -0:The total amount of wall time = 378.158198 -0:The maximum resident set size (KB) = 3276296 - -Test 012 cpld_restart_c192_p8 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/cpld_control_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_noaero_p8 +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/cpld_control_noaero_p8 Checking test 013 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -882,14 +762,14 @@ Checking test 013 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 296.365902 -0:The maximum resident set size (KB) = 1435600 +0:The total amount of wall time = 295.222542 +0:The maximum resident set size (KB) = 1435640 Test 013 cpld_control_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/cpld_control_nowave_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_c96_noaero_p8 +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/cpld_control_nowave_noaero_p8 Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -951,14 +831,14 @@ Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 188.090823 -0:The maximum resident set size (KB) = 1453224 +0:The total amount of wall time = 197.752847 +0:The maximum resident set size (KB) = 1453172 Test 014 cpld_control_nowave_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/cpld_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_debug_p8 +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/cpld_debug_p8 Checking test 015 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1011,14 +891,14 @@ Checking test 015 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 354.246379 -0:The maximum resident set size (KB) = 2779088 +0:The total amount of wall time = 351.646730 +0:The maximum resident set size (KB) = 2778644 Test 015 cpld_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_debug_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/cpld_debug_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_debug_noaero_p8 +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/cpld_debug_noaero_p8 Checking test 016 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1070,14 +950,14 @@ Checking test 016 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 299.100901 -0:The maximum resident set size (KB) = 1453772 +0:The total amount of wall time = 299.316068 +0:The maximum resident set size (KB) = 1453792 Test 016 cpld_debug_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_noaero_p8_agrid -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/cpld_control_noaero_p8_agrid +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_noaero_p8_agrid +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/cpld_control_noaero_p8_agrid Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1139,14 +1019,14 @@ Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 252.210062 -0:The maximum resident set size (KB) = 1457132 +0:The total amount of wall time = 255.180857 +0:The maximum resident set size (KB) = 1456860 Test 017 cpld_control_noaero_p8_agrid PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/cpld_control_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_c48 +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/cpld_control_c48 Checking test 018 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1196,14 +1076,14 @@ Checking test 018 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 603.472287 -0:The maximum resident set size (KB) = 2586580 +0:The total amount of wall time = 603.735610 +0:The maximum resident set size (KB) = 2586312 Test 018 cpld_control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/cpld_warmstart_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_warmstart_c48 +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/cpld_warmstart_c48 Checking test 019 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1253,14 +1133,14 @@ Checking test 019 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -0:The total amount of wall time = 162.061580 -0:The maximum resident set size (KB) = 2601468 +0:The total amount of wall time = 162.741489 +0:The maximum resident set size (KB) = 2601884 Test 019 cpld_warmstart_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/cpld_restart_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_warmstart_c48 +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/cpld_restart_c48 Checking test 020 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1310,14 +1190,14 @@ Checking test 020 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -0:The total amount of wall time = 84.473453 -0:The maximum resident set size (KB) = 2019100 +0:The total amount of wall time = 84.635119 +0:The maximum resident set size (KB) = 2018616 Test 020 cpld_restart_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_CubedSphereGrid -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_CubedSphereGrid +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_CubedSphereGrid +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_CubedSphereGrid Checking test 021 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1344,28 +1224,28 @@ Checking test 021 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -0:The total amount of wall time = 143.037221 -0:The maximum resident set size (KB) = 454128 +0:The total amount of wall time = 142.952229 +0:The maximum resident set size (KB) = 454344 Test 021 control_CubedSphereGrid PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_CubedSphereGrid_parallel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_CubedSphereGrid_parallel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_CubedSphereGrid_parallel +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_CubedSphereGrid_parallel Checking test 022 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc .........OK + Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK -0:The total amount of wall time = 141.205624 -0:The maximum resident set size (KB) = 454156 +0:The total amount of wall time = 140.312403 +0:The maximum resident set size (KB) = 454312 Test 022 control_CubedSphereGrid_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_latlon -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_latlon +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_latlon +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_latlon Checking test 023 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1376,14 +1256,14 @@ Checking test 023 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 146.621785 -0:The maximum resident set size (KB) = 454192 +0:The total amount of wall time = 146.717630 +0:The maximum resident set size (KB) = 454404 Test 023 control_latlon PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_wrtGauss_netcdf_parallel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_wrtGauss_netcdf_parallel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_wrtGauss_netcdf_parallel +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_wrtGauss_netcdf_parallel Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1394,14 +1274,14 @@ Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 148.597593 -0:The maximum resident set size (KB) = 454156 +0:The total amount of wall time = 149.226415 +0:The maximum resident set size (KB) = 454172 Test 024 control_wrtGauss_netcdf_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_c48 +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_c48 Checking test 025 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1440,14 +1320,14 @@ Checking test 025 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 448.995714 -0:The maximum resident set size (KB) = 633500 +0:The total amount of wall time = 442.990653 +0:The maximum resident set size (KB) = 633532 Test 025 control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_c192 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_c192 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_c192 +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_c192 Checking test 026 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1458,14 +1338,14 @@ Checking test 026 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 594.505632 -0:The maximum resident set size (KB) = 560344 +0:The total amount of wall time = 593.247076 +0:The maximum resident set size (KB) = 560332 Test 026 control_c192 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_c384 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_c384 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_c384 +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_c384 Checking test 027 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1476,14 +1356,14 @@ Checking test 027 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 589.446216 -0:The maximum resident set size (KB) = 899424 +0:The total amount of wall time = 585.312724 +0:The maximum resident set size (KB) = 899428 Test 027 control_c384 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_c384gdas -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_c384gdas +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_c384gdas +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_c384gdas Checking test 028 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1526,14 +1406,14 @@ Checking test 028 control_c384gdas 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 = 513.919739 -0:The maximum resident set size (KB) = 1027780 +0:The total amount of wall time = 514.037858 +0:The maximum resident set size (KB) = 1028528 Test 028 control_c384gdas PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_stochy +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_stochy +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_stochy Checking test 029 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1544,28 +1424,28 @@ Checking test 029 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 97.902676 -0:The maximum resident set size (KB) = 459096 +0:The total amount of wall time = 98.722279 +0:The maximum resident set size (KB) = 459220 Test 029 control_stochy PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_stochy_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_stochy +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_stochy_restart Checking test 030 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 52.758501 -0:The maximum resident set size (KB) = 226816 +0:The total amount of wall time = 53.118860 +0:The maximum resident set size (KB) = 226724 Test 030 control_stochy_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_lndp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_lndp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_lndp +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_lndp Checking test 031 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1576,14 +1456,14 @@ Checking test 031 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 91.064799 +0:The total amount of wall time = 90.268435 0:The maximum resident set size (KB) = 458212 Test 031 control_lndp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_iovr4 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_iovr4 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_iovr4 +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_iovr4 Checking test 032 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1598,14 +1478,14 @@ Checking test 032 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 147.328275 -0:The maximum resident set size (KB) = 454256 +0:The total amount of wall time = 149.088062 +0:The maximum resident set size (KB) = 454308 Test 032 control_iovr4 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_iovr5 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_iovr5 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_iovr5 +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_iovr5 Checking test 033 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1620,14 +1500,14 @@ Checking test 033 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 148.139821 -0:The maximum resident set size (KB) = 454272 +0:The total amount of wall time = 148.997102 +0:The maximum resident set size (KB) = 454432 Test 033 control_iovr5 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_p8 Checking test 034 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1674,14 +1554,14 @@ Checking test 034 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 178.616656 -0:The maximum resident set size (KB) = 1423904 +0:The total amount of wall time = 182.513706 +0:The maximum resident set size (KB) = 1423920 Test 034 control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_restart_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_restart_p8 Checking test 035 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1720,14 +1600,14 @@ Checking test 035 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 94.900516 -0:The maximum resident set size (KB) = 582832 +0:The total amount of wall time = 95.805572 +0:The maximum resident set size (KB) = 582928 Test 035 control_restart_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_qr_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_qr_p8 Checking test 036 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1774,14 +1654,14 @@ Checking test 036 control_qr_p8 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 = 181.940414 -0:The maximum resident set size (KB) = 1427224 +0:The total amount of wall time = 183.402421 +0:The maximum resident set size (KB) = 1427220 Test 036 control_qr_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_restart_qr_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_restart_qr_p8 Checking test 037 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1820,14 +1700,14 @@ Checking test 037 control_restart_qr_p8 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 = 101.337875 -0:The maximum resident set size (KB) = 596900 +0:The total amount of wall time = 98.791095 +0:The maximum resident set size (KB) = 596896 Test 037 control_restart_qr_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_decomp_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_decomp_p8 Checking test 038 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1870,14 +1750,14 @@ Checking test 038 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 186.026663 -0:The maximum resident set size (KB) = 1418384 +0:The total amount of wall time = 186.332726 +0:The maximum resident set size (KB) = 1418444 Test 038 control_decomp_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_2threads_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_2threads_p8 Checking test 039 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1920,14 +1800,14 @@ Checking test 039 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 171.958962 -0:The maximum resident set size (KB) = 1508944 +0:The total amount of wall time = 172.700941 +0:The maximum resident set size (KB) = 1509144 Test 039 control_2threads_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_lndp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_p8_lndp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8_lndp +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_p8_lndp Checking test 040 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1946,14 +1826,14 @@ Checking test 040 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -0:The total amount of wall time = 333.708478 -0:The maximum resident set size (KB) = 1424880 +0:The total amount of wall time = 336.760312 +0:The maximum resident set size (KB) = 1424964 Test 040 control_p8_lndp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_rrtmgp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_p8_rrtmgp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8_rrtmgp +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_p8_rrtmgp Checking test 041 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2000,14 +1880,14 @@ Checking test 041 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 254.961427 -0:The maximum resident set size (KB) = 1480288 +0:The total amount of wall time = 253.433173 +0:The maximum resident set size (KB) = 1480300 Test 041 control_p8_rrtmgp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_mynn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_p8_mynn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8_mynn +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_p8_mynn Checking test 042 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2054,14 +1934,14 @@ Checking test 042 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 181.554235 -0:The maximum resident set size (KB) = 1428004 +0:The total amount of wall time = 187.292616 +0:The maximum resident set size (KB) = 1427992 Test 042 control_p8_mynn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/merra2_thompson -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/merra2_thompson +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/merra2_thompson +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/merra2_thompson Checking test 043 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2108,14 +1988,14 @@ Checking test 043 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 206.926088 -0:The maximum resident set size (KB) = 1429704 +0:The total amount of wall time = 207.127842 +0:The maximum resident set size (KB) = 1429740 Test 043 merra2_thompson PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/regional_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/regional_control Checking test 044 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2126,28 +2006,28 @@ Checking test 044 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 342.729830 -0:The maximum resident set size (KB) = 604748 +0:The total amount of wall time = 341.030149 +0:The maximum resident set size (KB) = 604720 Test 044 regional_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/regional_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/regional_restart Checking test 045 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 170.219919 -0:The maximum resident set size (KB) = 594132 +0:The total amount of wall time = 174.767955 +0:The maximum resident set size (KB) = 594168 Test 045 regional_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/regional_control_qr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/regional_control_qr Checking test 046 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2158,28 +2038,28 @@ Checking test 046 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 340.109827 -0:The maximum resident set size (KB) = 604792 +0:The total amount of wall time = 343.369898 +0:The maximum resident set size (KB) = 604780 Test 046 regional_control_qr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/regional_restart_qr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/regional_restart_qr Checking test 047 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 175.285191 -0:The maximum resident set size (KB) = 594140 +0:The total amount of wall time = 174.578956 +0:The maximum resident set size (KB) = 593744 Test 047 regional_restart_qr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/regional_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/regional_decomp Checking test 048 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2190,14 +2070,14 @@ Checking test 048 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 361.702602 -0:The maximum resident set size (KB) = 598900 +0:The total amount of wall time = 357.378689 +0:The maximum resident set size (KB) = 598876 Test 048 regional_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/regional_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/regional_2threads Checking test 049 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2208,14 +2088,14 @@ Checking test 049 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 203.422752 -0:The maximum resident set size (KB) = 611608 +0:The total amount of wall time = 206.592690 +0:The maximum resident set size (KB) = 611544 Test 049 regional_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_noquilt -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/regional_noquilt +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_noquilt +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/regional_noquilt Checking test 050 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2223,28 +2103,28 @@ Checking test 050 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -0:The total amount of wall time = 356.114798 -0:The maximum resident set size (KB) = 599076 +0:The total amount of wall time = 365.597430 +0:The maximum resident set size (KB) = 599036 Test 050 regional_noquilt PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_netcdf_parallel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/regional_netcdf_parallel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_netcdf_parallel +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/regional_netcdf_parallel Checking test 051 regional_netcdf_parallel results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK + Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf006.nc .........OK -0:The total amount of wall time = 342.350163 -0:The maximum resident set size (KB) = 596624 +0:The total amount of wall time = 332.579433 +0:The maximum resident set size (KB) = 596688 Test 051 regional_netcdf_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/regional_2dwrtdecomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/regional_2dwrtdecomp Checking test 052 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2255,14 +2135,14 @@ Checking test 052 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 346.202511 -0:The maximum resident set size (KB) = 604788 +0:The total amount of wall time = 343.749370 +0:The maximum resident set size (KB) = 604868 Test 052 regional_2dwrtdecomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/fv3_regional_wofs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/regional_wofs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/fv3_regional_wofs +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/regional_wofs Checking test 053 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2273,14 +2153,14 @@ Checking test 053 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 428.482081 -0:The maximum resident set size (KB) = 275728 +0:The total amount of wall time = 430.038007 +0:The maximum resident set size (KB) = 275916 Test 053 regional_wofs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/rap_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/rap_control Checking test 054 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2327,14 +2207,14 @@ Checking test 054 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 473.286427 -0:The maximum resident set size (KB) = 823468 +0:The total amount of wall time = 480.337650 +0:The maximum resident set size (KB) = 823688 Test 054 rap_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_spp_sppt_shum_skeb -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/regional_spp_sppt_shum_skeb +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_spp_sppt_shum_skeb +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/regional_spp_sppt_shum_skeb Checking test 055 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2345,14 +2225,14 @@ Checking test 055 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 259.602613 -0:The maximum resident set size (KB) = 952132 +0:The total amount of wall time = 261.195040 +0:The maximum resident set size (KB) = 952244 Test 055 regional_spp_sppt_shum_skeb PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/rap_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/rap_decomp Checking test 056 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2399,14 +2279,14 @@ Checking test 056 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 501.319332 -0:The maximum resident set size (KB) = 822304 +0:The total amount of wall time = 503.531051 +0:The maximum resident set size (KB) = 822412 Test 056 rap_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/rap_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/rap_2threads Checking test 057 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2453,14 +2333,14 @@ Checking test 057 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 453.602539 -0:The maximum resident set size (KB) = 893540 +0:The total amount of wall time = 462.319993 +0:The maximum resident set size (KB) = 893492 Test 057 rap_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/rap_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/rap_restart Checking test 058 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2499,14 +2379,14 @@ Checking test 058 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 241.552635 -0:The maximum resident set size (KB) = 571436 +0:The total amount of wall time = 239.925239 +0:The maximum resident set size (KB) = 571416 Test 058 rap_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/rap_sfcdiff +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/rap_sfcdiff Checking test 059 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2553,14 +2433,14 @@ Checking test 059 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 479.608828 -0:The maximum resident set size (KB) = 823392 +0:The total amount of wall time = 480.681038 +0:The maximum resident set size (KB) = 823464 Test 059 rap_sfcdiff PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/rap_sfcdiff_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/rap_sfcdiff_decomp Checking test 060 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2607,14 +2487,14 @@ Checking test 060 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 504.281634 -0:The maximum resident set size (KB) = 822252 +0:The total amount of wall time = 509.880573 +0:The maximum resident set size (KB) = 822256 Test 060 rap_sfcdiff_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/rap_sfcdiff_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/rap_sfcdiff_restart Checking test 061 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2653,14 +2533,14 @@ Checking test 061 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 360.386611 -0:The maximum resident set size (KB) = 570752 +0:The total amount of wall time = 355.935729 +0:The maximum resident set size (KB) = 570728 Test 061 rap_sfcdiff_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/hrrr_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/hrrr_control Checking test 062 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2707,14 +2587,14 @@ Checking test 062 hrrr_control results .... Comparing 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.004884 -0:The maximum resident set size (KB) = 820864 +0:The total amount of wall time = 462.200708 +0:The maximum resident set size (KB) = 820836 Test 062 hrrr_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/hrrr_control_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/hrrr_control_decomp Checking test 063 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2761,14 +2641,14 @@ Checking test 063 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 482.465010 -0:The maximum resident set size (KB) = 820572 +0:The total amount of wall time = 480.093626 +0:The maximum resident set size (KB) = 820780 Test 063 hrrr_control_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/hrrr_control_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/hrrr_control_2threads Checking test 064 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2815,14 +2695,14 @@ Checking test 064 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 439.531828 -0:The maximum resident set size (KB) = 888524 +0:The total amount of wall time = 439.770479 +0:The maximum resident set size (KB) = 888424 Test 064 hrrr_control_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/hrrr_control_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/hrrr_control_restart Checking test 065 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2861,14 +2741,14 @@ Checking test 065 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 339.330772 -0:The maximum resident set size (KB) = 566392 +0:The total amount of wall time = 343.823809 +0:The maximum resident set size (KB) = 566512 Test 065 hrrr_control_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_v1beta -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/rrfs_v1beta +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_v1beta +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/rrfs_v1beta Checking test 066 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2915,14 +2795,14 @@ Checking test 066 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 478.520857 -0:The maximum resident set size (KB) = 819392 +0:The total amount of wall time = 474.798768 +0:The maximum resident set size (KB) = 819500 Test 066 rrfs_v1beta PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_v1nssl -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/rrfs_v1nssl +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_v1nssl +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/rrfs_v1nssl Checking test 067 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2937,14 +2817,14 @@ Checking test 067 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 585.470890 -0:The maximum resident set size (KB) = 508588 +0:The total amount of wall time = 583.554337 +0:The maximum resident set size (KB) = 508808 Test 067 rrfs_v1nssl PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/rrfs_v1nssl_nohailnoccn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/rrfs_v1nssl_nohailnoccn Checking test 068 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2959,14 +2839,14 @@ Checking test 068 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 571.938450 -0:The maximum resident set size (KB) = 502560 +0:The total amount of wall time = 567.938558 +0:The maximum resident set size (KB) = 502740 Test 068 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/rrfs_smoke_conus13km_hrrr_warm Checking test 069 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2975,14 +2855,14 @@ Checking test 069 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 151.953926 -0:The maximum resident set size (KB) = 675256 +0:The total amount of wall time = 152.600901 +0:The maximum resident set size (KB) = 675284 Test 069 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 070 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2991,14 +2871,14 @@ Checking test 070 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 93.853384 -0:The maximum resident set size (KB) = 693820 +0:The total amount of wall time = 94.077736 +0:The maximum resident set size (KB) = 694104 Test 070 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/rrfs_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/rrfs_conus13km_hrrr_warm Checking test 071 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3007,14 +2887,14 @@ Checking test 071 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 136.784246 -0:The maximum resident set size (KB) = 654060 +0:The total amount of wall time = 136.701609 +0:The maximum resident set size (KB) = 654048 Test 071 rrfs_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/rrfs_smoke_conus13km_radar_tten_warm Checking test 072 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3023,26 +2903,26 @@ Checking test 072 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 152.752214 -0:The maximum resident set size (KB) = 677912 +0:The total amount of wall time = 153.459598 +0:The maximum resident set size (KB) = 677924 Test 072 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 073 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 70.575667 -0:The maximum resident set size (KB) = 632260 +0:The total amount of wall time = 71.369010 +0:The maximum resident set size (KB) = 632224 Test 073 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_csawmg -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_csawmg +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_csawmg +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_csawmg Checking test 074 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3053,14 +2933,14 @@ Checking test 074 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 396.633837 -0:The maximum resident set size (KB) = 527760 +0:The total amount of wall time = 398.766861 +0:The maximum resident set size (KB) = 527652 Test 074 control_csawmg PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_csawmgt -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_csawmgt +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_csawmgt +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_csawmgt Checking test 075 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3071,14 +2951,14 @@ Checking test 075 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 391.637098 -0:The maximum resident set size (KB) = 528404 +0:The total amount of wall time = 392.284541 +0:The maximum resident set size (KB) = 528336 Test 075 control_csawmgt PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_ras -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_ras +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_ras +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_ras Checking test 076 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3089,26 +2969,26 @@ Checking test 076 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 204.149442 -0:The maximum resident set size (KB) = 491408 +0:The total amount of wall time = 205.636580 +0:The maximum resident set size (KB) = 491248 Test 076 control_ras PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_wam -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_wam +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_wam +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_wam Checking test 077 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -0:The total amount of wall time = 129.418409 -0:The maximum resident set size (KB) = 206288 +0:The total amount of wall time = 129.610498 +0:The maximum resident set size (KB) = 206332 Test 077 control_wam PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_faster -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_p8_faster +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8_faster +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_p8_faster Checking test 078 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3155,14 +3035,14 @@ Checking test 078 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 171.500393 -0:The maximum resident set size (KB) = 1423756 +0:The total amount of wall time = 171.510068 +0:The maximum resident set size (KB) = 1423704 Test 078 control_p8_faster PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control_faster -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/regional_control_faster +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control_faster +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/regional_control_faster Checking test 079 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3173,56 +3053,56 @@ Checking test 079 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 311.624624 -0:The maximum resident set size (KB) = 604700 +0:The total amount of wall time = 323.148434 +0:The maximum resident set size (KB) = 604612 Test 079 regional_control_faster PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 080 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 875.384582 -0:The maximum resident set size (KB) = 704764 +0:The total amount of wall time = 876.378883 +0:The maximum resident set size (KB) = 704760 Test 080 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 081 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 499.623904 -0:The maximum resident set size (KB) = 725032 +0:The total amount of wall time = 500.329671 +0:The maximum resident set size (KB) = 724596 Test 081 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/rrfs_conus13km_hrrr_warm_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/rrfs_conus13km_hrrr_warm_debug Checking test 082 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 777.911197 -0:The maximum resident set size (KB) = 683412 +0:The total amount of wall time = 779.343107 +0:The maximum resident set size (KB) = 683360 Test 082 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_CubedSphereGrid_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_CubedSphereGrid_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_CubedSphereGrid_debug +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_CubedSphereGrid_debug Checking test 083 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3249,334 +3129,334 @@ Checking test 083 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -0:The total amount of wall time = 153.964578 -0:The maximum resident set size (KB) = 617460 +0:The total amount of wall time = 155.015791 +0:The maximum resident set size (KB) = 617624 Test 083 control_CubedSphereGrid_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_wrtGauss_netcdf_parallel_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_wrtGauss_netcdf_parallel_debug Checking test 084 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK + Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 155.087420 -0:The maximum resident set size (KB) = 615744 +0:The total amount of wall time = 155.630817 +0:The maximum resident set size (KB) = 615660 Test 084 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_stochy_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_stochy_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_stochy_debug +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_stochy_debug Checking test 085 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 174.659048 -0:The maximum resident set size (KB) = 621232 +0:The total amount of wall time = 174.840230 +0:The maximum resident set size (KB) = 621180 Test 085 control_stochy_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_lndp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_lndp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_lndp_debug +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_lndp_debug Checking test 086 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 156.312082 -0:The maximum resident set size (KB) = 620016 +0:The total amount of wall time = 156.882397 +0:The maximum resident set size (KB) = 619996 Test 086 control_lndp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_csawmg_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_csawmg_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_csawmg_debug +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_csawmg_debug Checking test 087 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 248.185097 -0:The maximum resident set size (KB) = 666420 +0:The total amount of wall time = 249.038934 +0:The maximum resident set size (KB) = 666436 Test 087 control_csawmg_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_csawmgt_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_csawmgt_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_csawmgt_debug +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_csawmgt_debug Checking test 088 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 244.400224 -0:The maximum resident set size (KB) = 667352 +0:The total amount of wall time = 244.376760 +0:The maximum resident set size (KB) = 667344 Test 088 control_csawmgt_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_ras_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_ras_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_ras_debug +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_ras_debug Checking test 089 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 158.671425 -0:The maximum resident set size (KB) = 630236 +0:The total amount of wall time = 159.480747 +0:The maximum resident set size (KB) = 630380 Test 089 control_ras_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_diag_debug +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_diag_debug Checking test 090 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 159.074889 -0:The maximum resident set size (KB) = 674868 +0:The total amount of wall time = 159.731565 +0:The maximum resident set size (KB) = 674928 Test 090 control_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_debug_p8 +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_debug_p8 Checking test 091 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 175.031844 -0:The maximum resident set size (KB) = 1442428 +0:The total amount of wall time = 175.485011 +0:The maximum resident set size (KB) = 1442408 Test 091 control_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/regional_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_debug +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/regional_debug Checking test 092 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 1032.059260 -0:The maximum resident set size (KB) = 625948 +0:The total amount of wall time = 1035.495868 +0:The maximum resident set size (KB) = 625812 Test 092 regional_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/rap_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_debug +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/rap_control_debug Checking test 093 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 285.938980 +0:The total amount of wall time = 288.406681 0:The maximum resident set size (KB) = 986636 Test 093 rap_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/hrrr_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_debug +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/hrrr_control_debug Checking test 094 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 281.049067 -0:The maximum resident set size (KB) = 984056 +0:The total amount of wall time = 282.946910 +0:The maximum resident set size (KB) = 984196 Test 094 hrrr_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/rap_unified_drag_suite_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_debug +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/rap_unified_drag_suite_debug Checking test 095 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 284.883967 +0:The total amount of wall time = 286.891473 0:The maximum resident set size (KB) = 986688 Test 095 rap_unified_drag_suite_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/rap_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_diag_debug +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/rap_diag_debug Checking test 096 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 298.616789 -0:The maximum resident set size (KB) = 1069892 +0:The total amount of wall time = 297.975497 +0:The maximum resident set size (KB) = 1069812 Test 096 rap_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/rap_cires_ugwp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_cires_ugwp_debug +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/rap_cires_ugwp_debug Checking test 097 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 297.914586 -0:The maximum resident set size (KB) = 985856 +0:The total amount of wall time = 291.825096 +0:The maximum resident set size (KB) = 985836 Test 097 rap_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/rap_unified_ugwp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_cires_ugwp_debug +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/rap_unified_ugwp_debug Checking test 098 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 291.565697 -0:The maximum resident set size (KB) = 986716 +0:The total amount of wall time = 300.891862 +0:The maximum resident set size (KB) = 986776 Test 098 rap_unified_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_lndp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/rap_lndp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_lndp_debug +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/rap_lndp_debug Checking test 099 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 287.949912 -0:The maximum resident set size (KB) = 987360 +0:The total amount of wall time = 289.044191 +0:The maximum resident set size (KB) = 987448 Test 099 rap_lndp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_flake_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/rap_flake_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_flake_debug +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/rap_flake_debug Checking test 100 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 289.330683 -0:The maximum resident set size (KB) = 986580 +0:The total amount of wall time = 286.078795 +0:The maximum resident set size (KB) = 986796 Test 100 rap_flake_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_progcld_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/rap_progcld_thompson_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_progcld_thompson_debug +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/rap_progcld_thompson_debug Checking test 101 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 288.049856 -0:The maximum resident set size (KB) = 986604 +0:The total amount of wall time = 286.340992 +0:The maximum resident set size (KB) = 986672 Test 101 rap_progcld_thompson_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_noah_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/rap_noah_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_noah_debug +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/rap_noah_debug Checking test 102 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 279.965995 -0:The maximum resident set size (KB) = 984564 +0:The total amount of wall time = 280.656045 +0:The maximum resident set size (KB) = 984540 Test 102 rap_noah_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_sfcdiff_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/rap_sfcdiff_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_sfcdiff_debug +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/rap_sfcdiff_debug Checking test 103 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 285.465411 -0:The maximum resident set size (KB) = 986448 +0:The total amount of wall time = 287.340279 +0:The maximum resident set size (KB) = 986572 Test 103 rap_sfcdiff_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/rap_noah_sfcdiff_cires_ugwp_debug Checking test 104 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 469.805848 -0:The maximum resident set size (KB) = 985376 +0:The total amount of wall time = 471.815495 +0:The maximum resident set size (KB) = 985360 Test 104 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_v1beta_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/rrfs_v1beta_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_v1beta_debug +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/rrfs_v1beta_debug Checking test 105 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 280.991634 -0:The maximum resident set size (KB) = 983412 +0:The total amount of wall time = 283.025319 +0:The maximum resident set size (KB) = 983480 Test 105 rrfs_v1beta_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_wam_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_wam_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_wam_debug +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_wam_debug Checking test 106 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 288.829675 -0:The maximum resident set size (KB) = 235488 +0:The total amount of wall time = 289.869027 +0:The maximum resident set size (KB) = 235360 Test 106 control_wam_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3587,14 +3467,14 @@ Checking test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 245.179887 -0:The maximum resident set size (KB) = 851036 +0:The total amount of wall time = 245.723418 +0:The maximum resident set size (KB) = 850892 Test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/rap_control_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/rap_control_dyn32_phy32 Checking test 108 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3641,14 +3521,14 @@ Checking test 108 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 398.279018 -0:The maximum resident set size (KB) = 707804 +0:The total amount of wall time = 397.329902 +0:The maximum resident set size (KB) = 707808 Test 108 rap_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/hrrr_control_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/hrrr_control_dyn32_phy32 Checking test 109 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3695,14 +3575,14 @@ Checking test 109 hrrr_control_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 208.955348 -0:The maximum resident set size (KB) = 706492 +0:The total amount of wall time = 209.225736 +0:The maximum resident set size (KB) = 706508 Test 109 hrrr_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/rap_2threads_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/rap_2threads_dyn32_phy32 Checking test 110 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3749,14 +3629,14 @@ Checking test 110 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 382.878432 -0:The maximum resident set size (KB) = 759292 +0:The total amount of wall time = 382.691854 +0:The maximum resident set size (KB) = 759352 Test 110 rap_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/hrrr_control_2threads_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/hrrr_control_2threads_dyn32_phy32 Checking test 111 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3803,14 +3683,14 @@ Checking test 111 hrrr_control_2threads_dyn32_phy32 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 = 198.866138 -0:The maximum resident set size (KB) = 756448 +0:The total amount of wall time = 199.355531 +0:The maximum resident set size (KB) = 756404 Test 111 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/hrrr_control_decomp_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/hrrr_control_decomp_dyn32_phy32 Checking test 112 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3857,14 +3737,14 @@ Checking test 112 hrrr_control_decomp_dyn32_phy32 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 = 222.218587 -0:The maximum resident set size (KB) = 704448 +0:The total amount of wall time = 220.201264 +0:The maximum resident set size (KB) = 704300 Test 112 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/rap_restart_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/rap_restart_dyn32_phy32 Checking test 113 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3903,14 +3783,14 @@ Checking test 113 rap_restart_dyn32_phy32 results .... Comparing 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.587836 -0:The maximum resident set size (KB) = 544668 +0:The total amount of wall time = 295.461373 +0:The maximum resident set size (KB) = 544536 Test 113 rap_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/hrrr_control_restart_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/hrrr_control_restart_dyn32_phy32 Checking test 114 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3949,14 +3829,14 @@ Checking test 114 hrrr_control_restart_dyn32_phy32 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 = 107.751911 -0:The maximum resident set size (KB) = 537544 +0:The total amount of wall time = 107.981245 +0:The maximum resident set size (KB) = 537316 Test 114 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/rap_control_dyn64_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_dyn64_phy32 +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/rap_control_dyn64_phy32 Checking test 115 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4003,81 +3883,81 @@ Checking test 115 rap_control_dyn64_phy32 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 = 271.232355 -0:The maximum resident set size (KB) = 730380 +0:The total amount of wall time = 271.036091 +0:The maximum resident set size (KB) = 730424 Test 115 rap_control_dyn64_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/rap_control_debug_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/rap_control_debug_dyn32_phy32 Checking test 116 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 281.904642 -0:The maximum resident set size (KB) = 873084 +0:The total amount of wall time = 282.470387 +0:The maximum resident set size (KB) = 873004 Test 116 rap_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/hrrr_control_debug_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/hrrr_control_debug_dyn32_phy32 Checking test 117 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 277.699258 -0:The maximum resident set size (KB) = 871076 +0:The total amount of wall time = 278.141586 +0:The maximum resident set size (KB) = 871136 Test 117 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/rap_control_dyn64_phy32_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_debug_dyn64_phy32 +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/rap_control_dyn64_phy32_debug Checking test 118 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 285.470508 -0:The maximum resident set size (KB) = 890196 +0:The total amount of wall time = 285.979270 +0:The maximum resident set size (KB) = 889944 Test 118 rap_control_dyn64_phy32_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/hafs_regional_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/hafs_regional_atm Checking test 119 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -0:The total amount of wall time = 258.833633 -0:The maximum resident set size (KB) = 742752 +0:The total amount of wall time = 258.906429 +0:The maximum resident set size (KB) = 742736 Test 119 hafs_regional_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/hafs_regional_atm_thompson_gfdlsf +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/hafs_regional_atm_thompson_gfdlsf Checking test 120 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -0:The total amount of wall time = 296.633468 -0:The maximum resident set size (KB) = 1099780 +0:The total amount of wall time = 285.209090 +0:The maximum resident set size (KB) = 1099176 Test 120 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_ocn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/hafs_regional_atm_ocn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm_ocn +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/hafs_regional_atm_ocn Checking test 121 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4086,14 +3966,14 @@ Checking test 121 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 445.605836 -0:The maximum resident set size (KB) = 741080 +0:The total amount of wall time = 464.432537 +0:The maximum resident set size (KB) = 741100 Test 121 hafs_regional_atm_ocn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_wav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/hafs_regional_atm_wav +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm_wav +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/hafs_regional_atm_wav Checking test 122 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4102,46 +3982,30 @@ Checking test 122 hafs_regional_atm_wav 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 = 1072.540369 -0:The maximum resident set size (KB) = 771712 +0:The total amount of wall time = 1078.001785 +0:The maximum resident set size (KB) = 772092 Test 122 hafs_regional_atm_wav PASS +Test 123 hafs_regional_atm_ocn_wav FAIL -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_ocn_wav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/hafs_regional_atm_ocn_wav -Checking test 123 hafs_regional_atm_ocn_wav results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing archv.2019_241_06.a .........OK - Comparing archs.2019_241_06.a .........OK - Comparing 20190829.060000.out_grd.ww3 .........OK - Comparing 20190829.060000.out_pnt.ww3 .........OK - Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - -0:The total amount of wall time = 1143.166604 -0:The maximum resident set size (KB) = 791784 -Test 123 hafs_regional_atm_ocn_wav PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/hafs_regional_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_1nest_atm +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/hafs_regional_1nest_atm Checking test 124 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 374.030897 -0:The maximum resident set size (KB) = 300956 +0:The total amount of wall time = 380.167325 +0:The maximum resident set size (KB) = 301364 Test 124 hafs_regional_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/hafs_regional_telescopic_2nests_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/hafs_regional_telescopic_2nests_atm Checking test 125 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4150,28 +4014,28 @@ Checking test 125 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -0:The total amount of wall time = 426.340901 -0:The maximum resident set size (KB) = 320232 +0:The total amount of wall time = 425.463809 +0:The maximum resident set size (KB) = 320704 Test 125 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_global_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/hafs_global_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_global_1nest_atm +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/hafs_global_1nest_atm Checking test 126 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 170.682614 -0:The maximum resident set size (KB) = 213928 +0:The total amount of wall time = 171.520991 +0:The maximum resident set size (KB) = 214604 Test 126 hafs_global_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_global_multiple_4nests_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/hafs_global_multiple_4nests_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_global_multiple_4nests_atm +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/hafs_global_multiple_4nests_atm Checking test 127 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4189,14 +4053,14 @@ Checking test 127 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -0:The total amount of wall time = 477.031468 -0:The maximum resident set size (KB) = 302644 +0:The total amount of wall time = 482.696937 +0:The maximum resident set size (KB) = 302780 -Test 127 hafs_global_multiple_4nests_atm PASS +Test 127 hafs_global_multiple_4nests_atm PASS Tries: 2 -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/hafs_regional_specified_moving_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/hafs_regional_specified_moving_1nest_atm Checking test 128 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4205,28 +4069,28 @@ Checking test 128 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -0:The total amount of wall time = 240.696420 -0:The maximum resident set size (KB) = 318372 +0:The total amount of wall time = 241.720351 +0:The maximum resident set size (KB) = 318656 Test 128 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/hafs_regional_storm_following_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/hafs_regional_storm_following_1nest_atm Checking test 129 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 230.767819 -0:The maximum resident set size (KB) = 318412 +0:The total amount of wall time = 227.969912 +0:The maximum resident set size (KB) = 318472 Test 129 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/hafs_regional_storm_following_1nest_atm_ocn Checking test 130 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4235,42 +4099,42 @@ Checking test 130 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -0:The total amount of wall time = 269.910954 -0:The maximum resident set size (KB) = 376068 +0:The total amount of wall time = 282.028138 +0:The maximum resident set size (KB) = 376176 Test 130 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_global_storm_following_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/hafs_global_storm_following_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_global_storm_following_1nest_atm +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/hafs_global_storm_following_1nest_atm Checking test 131 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 68.688359 -0:The maximum resident set size (KB) = 234000 +0:The total amount of wall time = 67.456388 +0:The maximum resident set size (KB) = 233376 Test 131 hafs_global_storm_following_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 132 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 764.015730 -0:The maximum resident set size (KB) = 402784 +0:The total amount of wall time = 764.396848 +0:The maximum resident set size (KB) = 402776 Test 132 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 133 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4281,14 +4145,14 @@ Checking test 133 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -0:The total amount of wall time = 732.393619 -0:The maximum resident set size (KB) = 426800 +0:The total amount of wall time = 767.451326 +0:The maximum resident set size (KB) = 427120 -Test 133 hafs_regional_storm_following_1nest_atm_ocn_wav PASS +Test 133 hafs_regional_storm_following_1nest_atm_ocn_wav PASS Tries: 2 -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_docn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/hafs_regional_docn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_docn +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/hafs_regional_docn Checking test 134 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4296,14 +4160,14 @@ Checking test 134 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 390.425812 -0:The maximum resident set size (KB) = 755368 +0:The total amount of wall time = 390.225307 +0:The maximum resident set size (KB) = 755388 Test 134 hafs_regional_docn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_docn_oisst -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/hafs_regional_docn_oisst +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_docn_oisst +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/hafs_regional_docn_oisst Checking test 135 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4311,131 +4175,131 @@ Checking test 135 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 393.152594 -0:The maximum resident set size (KB) = 735452 +0:The total amount of wall time = 391.681275 +0:The maximum resident set size (KB) = 734740 Test 135 hafs_regional_docn_oisst PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_datm_cdeps -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/hafs_regional_datm_cdeps +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_datm_cdeps +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/hafs_regional_datm_cdeps Checking test 136 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -0:The total amount of wall time = 1300.455570 -0:The maximum resident set size (KB) = 887892 +0:The total amount of wall time = 1269.143757 +0:The maximum resident set size (KB) = 887924 Test 136 hafs_regional_datm_cdeps PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/datm_cdeps_control_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/datm_cdeps_control_cfsr Checking test 137 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 165.360395 -0:The maximum resident set size (KB) = 716696 +0:The total amount of wall time = 168.559111 +0:The maximum resident set size (KB) = 716676 Test 137 datm_cdeps_control_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/datm_cdeps_restart_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/datm_cdeps_restart_cfsr Checking test 138 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 100.114722 -0:The maximum resident set size (KB) = 704848 +0:The total amount of wall time = 100.923713 +0:The maximum resident set size (KB) = 705000 Test 138 datm_cdeps_restart_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_control_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/datm_cdeps_control_gefs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_control_gefs +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/datm_cdeps_control_gefs Checking test 139 datm_cdeps_control_gefs 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 = 160.870233 -0:The maximum resident set size (KB) = 607488 +0:The total amount of wall time = 160.527376 +0:The maximum resident set size (KB) = 607456 Test 139 datm_cdeps_control_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_iau_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/datm_cdeps_iau_gefs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_iau_gefs +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/datm_cdeps_iau_gefs Checking test 140 datm_cdeps_iau_gefs 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 = 167.073701 -0:The maximum resident set size (KB) = 607484 +0:The total amount of wall time = 159.481722 +0:The maximum resident set size (KB) = 607488 Test 140 datm_cdeps_iau_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_stochy_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/datm_cdeps_stochy_gefs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_stochy_gefs +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/datm_cdeps_stochy_gefs Checking test 141 datm_cdeps_stochy_gefs 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 = 162.697880 -0:The maximum resident set size (KB) = 607480 +0:The total amount of wall time = 163.088846 +0:The maximum resident set size (KB) = 607504 Test 141 datm_cdeps_stochy_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_ciceC_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/datm_cdeps_ciceC_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_ciceC_cfsr +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/datm_cdeps_ciceC_cfsr Checking test 142 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 167.935353 -0:The maximum resident set size (KB) = 716716 +0:The total amount of wall time = 168.372568 +0:The maximum resident set size (KB) = 716668 Test 142 datm_cdeps_ciceC_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_bulk_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/datm_cdeps_bulk_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_bulk_cfsr +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/datm_cdeps_bulk_cfsr Checking test 143 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 168.070037 -0:The maximum resident set size (KB) = 727716 +0:The total amount of wall time = 168.523425 +0:The maximum resident set size (KB) = 716728 Test 143 datm_cdeps_bulk_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_bulk_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/datm_cdeps_bulk_gefs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_bulk_gefs +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/datm_cdeps_bulk_gefs Checking test 144 datm_cdeps_bulk_gefs 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 = 159.676951 -0:The maximum resident set size (KB) = 607460 +0:The total amount of wall time = 160.887868 +0:The maximum resident set size (KB) = 607536 Test 144 datm_cdeps_bulk_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_mx025_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/datm_cdeps_mx025_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_mx025_cfsr +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/datm_cdeps_mx025_cfsr Checking test 145 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4444,14 +4308,14 @@ Checking test 145 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 425.414686 -0:The maximum resident set size (KB) = 514332 +0:The total amount of wall time = 424.908151 +0:The maximum resident set size (KB) = 514340 Test 145 datm_cdeps_mx025_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_mx025_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/datm_cdeps_mx025_gefs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_mx025_gefs +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/datm_cdeps_mx025_gefs Checking test 146 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4460,77 +4324,77 @@ Checking test 146 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 416.644826 -0:The maximum resident set size (KB) = 494760 +0:The total amount of wall time = 421.856337 +0:The maximum resident set size (KB) = 494776 Test 146 datm_cdeps_mx025_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/datm_cdeps_multiple_files_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/datm_cdeps_multiple_files_cfsr Checking test 147 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 167.819448 -0:The maximum resident set size (KB) = 716748 +0:The total amount of wall time = 160.983279 +0:The maximum resident set size (KB) = 728156 Test 147 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/datm_cdeps_3072x1536_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/datm_cdeps_3072x1536_cfsr Checking test 148 datm_cdeps_3072x1536_cfsr 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 = 255.475684 -0:The maximum resident set size (KB) = 1942572 +0:The total amount of wall time = 268.634355 +0:The maximum resident set size (KB) = 1942096 Test 148 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_gfs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/datm_cdeps_gfs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_gfs +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/datm_cdeps_gfs Checking test 149 datm_cdeps_gfs 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 = 254.297285 -0:The maximum resident set size (KB) = 1942000 +0:The total amount of wall time = 256.679738 +0:The maximum resident set size (KB) = 1942044 Test 149 datm_cdeps_gfs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_debug_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/datm_cdeps_debug_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_debug_cfsr +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/datm_cdeps_debug_cfsr Checking test 150 datm_cdeps_debug_cfsr 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 = 370.164077 -0:The maximum resident set size (KB) = 700700 +0:The total amount of wall time = 369.029086 +0:The maximum resident set size (KB) = 700644 Test 150 datm_cdeps_debug_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_control_cfsr_faster -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/datm_cdeps_control_cfsr_faster +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_control_cfsr_faster +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/datm_cdeps_control_cfsr_faster Checking test 151 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.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.250848 -0:The maximum resident set size (KB) = 716752 +0:The total amount of wall time = 167.962229 +0:The maximum resident set size (KB) = 727812 Test 151 datm_cdeps_control_cfsr_faster PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/datm_cdeps_lnd_gswp3 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_lnd_gswp3 +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/datm_cdeps_lnd_gswp3 Checking test 152 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4539,14 +4403,14 @@ Checking test 152 datm_cdeps_lnd_gswp3 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 = 10.360232 -0:The maximum resident set size (KB) = 210120 +0:The total amount of wall time = 10.820329 +0:The maximum resident set size (KB) = 208660 Test 152 datm_cdeps_lnd_gswp3 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/datm_cdeps_lnd_gswp3_rst +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_lnd_gswp3 +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/datm_cdeps_lnd_gswp3_rst Checking test 153 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4555,14 +4419,14 @@ Checking test 153 datm_cdeps_lnd_gswp3_rst 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 = 15.525136 -0:The maximum resident set size (KB) = 210068 +0:The total amount of wall time = 15.591970 +0:The maximum resident set size (KB) = 208272 Test 153 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_atmlnd_sbs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_p8_atmlnd_sbs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8_atmlnd_sbs +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_p8_atmlnd_sbs Checking test 154 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4647,14 +4511,14 @@ Checking test 154 control_p8_atmlnd_sbs 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 = 233.679375 -0:The maximum resident set size (KB) = 1462972 +0:The total amount of wall time = 234.696868 +0:The maximum resident set size (KB) = 1462896 Test 154 control_p8_atmlnd_sbs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/atmwav_control_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/atmwav_control_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/atmwav_control_noaero_p8 +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/atmwav_control_noaero_p8 Checking test 155 atmwav_control_noaero_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4697,14 +4561,14 @@ Checking test 155 atmwav_control_noaero_p8 results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK -0:The total amount of wall time = 100.324712 -0:The maximum resident set size (KB) = 1434204 +0:The total amount of wall time = 101.963148 +0:The maximum resident set size (KB) = 1434296 Test 155 atmwav_control_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/control_atmwav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/control_atmwav +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_atmwav +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_atmwav Checking test 156 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4748,14 +4612,14 @@ Checking test 156 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -0:The total amount of wall time = 100.319029 -0:The maximum resident set size (KB) = 474560 +0:The total amount of wall time = 100.363262 +0:The maximum resident set size (KB) = 474540 Test 156 control_atmwav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/atmaero_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/atmaero_control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/atmaero_control_p8 +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/atmaero_control_p8 Checking test 157 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4799,14 +4663,14 @@ Checking test 157 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 245.845344 -0:The maximum resident set size (KB) = 2704072 +0:The total amount of wall time = 251.058436 +0:The maximum resident set size (KB) = 2704048 Test 157 atmaero_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/atmaero_control_p8_rad -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/atmaero_control_p8_rad +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/atmaero_control_p8_rad +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/atmaero_control_p8_rad Checking test 158 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4850,14 +4714,14 @@ Checking test 158 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 305.810465 -0:The maximum resident set size (KB) = 2758008 +0:The total amount of wall time = 307.111101 +0:The maximum resident set size (KB) = 2757968 Test 158 atmaero_control_p8_rad PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/atmaero_control_p8_rad_micro -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/atmaero_control_p8_rad_micro +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/atmaero_control_p8_rad_micro +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/atmaero_control_p8_rad_micro Checking test 159 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4901,15 +4765,113 @@ Checking test 159 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 307.556753 -0:The maximum resident set size (KB) = 2764432 +0:The total amount of wall time = 309.406758 +0:The maximum resident set size (KB) = 2764612 Test 159 atmaero_control_p8_rad_micro PASS +Test 160 regional_atmaq FAIL + +Test 161 regional_atmaq_faster FAIL + +FAILED TESTS: +Test cpld_control_c192_p8 011 failed in run_test failed +Test hafs_regional_atm_ocn_wav 123 failed in run_test failed +Test regional_atmaq 160 failed in run_test failed +Test regional_atmaq_faster 161 failed in run_test failed + +REGRESSION TEST FAILED +Thu Apr 13 22:30:21 MDT 2023 +Elapsed time: 02h:23m:03s. Have a nice day! +Fri Apr 14 07:30:18 MDT 2023 +Start Regression test + +Compile 001 elapsed time 1442 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1126 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 003 elapsed time 881 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 004 elapsed time 1052 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_c192_p8 +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_68949/cpld_control_c192_p8 +Checking test 001 cpld_control_c192_p8 results .... + Comparing sfcf030.tile1.nc .........OK + Comparing sfcf030.tile2.nc .........OK + Comparing sfcf030.tile3.nc .........OK + Comparing sfcf030.tile4.nc .........OK + Comparing sfcf030.tile5.nc .........OK + Comparing sfcf030.tile6.nc .........OK + Comparing atmf030.tile1.nc .........OK + Comparing atmf030.tile2.nc .........OK + Comparing atmf030.tile3.nc .........OK + Comparing atmf030.tile4.nc .........OK + Comparing atmf030.tile5.nc .........OK + Comparing atmf030.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_1200z.nc4 .........OK + Comparing RESTART/20210323.120000.coupler.res .........OK + Comparing RESTART/20210323.120000.fv_core.res.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK + Comparing 20210323.120000.out_grd.ww3 .........OK + Comparing 20210323.120000.out_pnt.ww3 .........OK + +0:The total amount of wall time = 609.375777 +0:The maximum resident set size (KB) = 3351608 + +Test 001 cpld_control_c192_p8 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm_ocn_wav +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_68949/hafs_regional_atm_ocn_wav +Checking test 002 hafs_regional_atm_ocn_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing archv.2019_241_06.a .........OK + Comparing archs.2019_241_06.a .........OK + Comparing 20190829.060000.out_grd.ww3 .........OK + Comparing 20190829.060000.out_pnt.ww3 .........OK + Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + +0:The total amount of wall time = 1098.089837 +0:The maximum resident set size (KB) = 792676 + +Test 002 hafs_regional_atm_ocn_wav PASS + -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_atmaq -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/regional_atmaq -Checking test 160 regional_atmaq results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_atmaq +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_68949/regional_atmaq +Checking test 003 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -4924,15 +4886,15 @@ Checking test 160 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -0:The total amount of wall time = 982.364345 -0:The maximum resident set size (KB) = 999560 +0:The total amount of wall time = 747.412677 +0:The maximum resident set size (KB) = 999376 -Test 160 regional_atmaq PASS +Test 003 regional_atmaq PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_atmaq_faster -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_37631/regional_atmaq_faster -Checking test 161 regional_atmaq_faster results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_atmaq_faster +working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_68949/regional_atmaq_faster +Checking test 004 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -4947,12 +4909,12 @@ Checking test 161 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -0:The total amount of wall time = 690.487035 -0:The maximum resident set size (KB) = 999288 +0:The total amount of wall time = 955.734224 +0:The maximum resident set size (KB) = 999448 -Test 161 regional_atmaq_faster PASS +Test 004 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Tue Apr 11 21:11:27 MDT 2023 -Elapsed time: 01h:17m:54s. Have a nice day! +Fri Apr 14 08:10:37 MDT 2023 +Elapsed time: 00h:40m:19s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 57347a934ea..ad805219d8f 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,21 +1,21 @@ -Tue Apr 11 23:12:26 UTC 2023 +Fri Apr 14 03:43:35 UTC 2023 Start Regression test -Compile 001 elapsed time 185 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 189 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 348 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 99 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 187 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 408 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 348 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 348 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 266 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 232 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 142 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 012 elapsed time 114 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/control_c48 +Compile 001 elapsed time 195 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 191 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 335 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 103 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 192 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 407 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 329 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 335 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 276 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 241 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 148 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 012 elapsed time 117 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/control_c48 Checking test 001 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -54,14 +54,14 @@ Checking test 001 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 690.160232 -0: The maximum resident set size (KB) = 706560 +0: The total amount of wall time = 688.458280 +0: The maximum resident set size (KB) = 704416 Test 001 control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/control_stochy +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/control_stochy Checking test 002 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -72,14 +72,14 @@ Checking test 002 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 651.678339 - 0: The maximum resident set size (KB) = 480180 + 0: The total amount of wall time = 648.491830 + 0: The maximum resident set size (KB) = 476820 Test 002 control_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/control_ras -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/control_ras +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/control_ras +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/control_ras Checking test 003 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -90,14 +90,14 @@ Checking test 003 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 845.186175 - 0: The maximum resident set size (KB) = 486808 + 0: The total amount of wall time = 835.139810 + 0: The maximum resident set size (KB) = 488476 Test 003 control_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/control_p8 Checking test 004 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -144,14 +144,14 @@ Checking test 004 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 893.698833 - 0: The maximum resident set size (KB) = 1233236 + 0: The total amount of wall time = 884.096582 + 0: The maximum resident set size (KB) = 1237472 Test 004 control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/rap_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/rap_control Checking test 005 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -198,14 +198,14 @@ Checking test 005 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1491.767748 - 0: The maximum resident set size (KB) = 831476 + 0: The total amount of wall time = 1466.829654 + 0: The maximum resident set size (KB) = 826624 Test 005 rap_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/rap_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/rap_decomp Checking test 006 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -252,14 +252,14 @@ Checking test 006 rap_decomp results .... Comparing 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.469088 - 0: The maximum resident set size (KB) = 834360 + 0: The total amount of wall time = 1461.650396 + 0: The maximum resident set size (KB) = 833720 Test 006 rap_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/rap_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/rap_2threads Checking test 007 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -306,14 +306,14 @@ Checking test 007 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1380.124329 - 0: The maximum resident set size (KB) = 897456 + 0: The total amount of wall time = 1371.209504 + 0: The maximum resident set size (KB) = 901624 Test 007 rap_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/rap_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/rap_restart Checking test 008 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -352,14 +352,14 @@ Checking test 008 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 720.414395 - 0: The maximum resident set size (KB) = 541232 + 0: The total amount of wall time = 730.688513 + 0: The maximum resident set size (KB) = 550336 Test 008 rap_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/rap_sfcdiff +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/rap_sfcdiff Checking test 009 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -406,14 +406,14 @@ Checking test 009 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1470.907059 - 0: The maximum resident set size (KB) = 830304 + 0: The total amount of wall time = 1480.926760 + 0: The maximum resident set size (KB) = 830900 Test 009 rap_sfcdiff PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/rap_sfcdiff_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/rap_sfcdiff_decomp Checking test 010 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -460,14 +460,14 @@ Checking test 010 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1467.886484 - 0: The maximum resident set size (KB) = 832676 + 0: The total amount of wall time = 1470.975265 + 0: The maximum resident set size (KB) = 824500 Test 010 rap_sfcdiff_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/rap_sfcdiff_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/rap_sfcdiff_restart Checking test 011 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -506,14 +506,14 @@ Checking test 011 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1093.155485 - 0: The maximum resident set size (KB) = 555592 + 0: The total amount of wall time = 1077.277761 + 0: The maximum resident set size (KB) = 553220 Test 011 rap_sfcdiff_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/hrrr_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/hrrr_control Checking test 012 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -560,14 +560,14 @@ Checking test 012 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1483.678589 - 0: The maximum resident set size (KB) = 828060 + 0: The total amount of wall time = 1462.293093 + 0: The maximum resident set size (KB) = 826360 Test 012 hrrr_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/hrrr_control_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/hrrr_control_2threads Checking test 013 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -614,14 +614,14 @@ Checking test 013 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1392.714554 - 0: The maximum resident set size (KB) = 896052 + 0: The total amount of wall time = 1352.263917 + 0: The maximum resident set size (KB) = 891012 Test 013 hrrr_control_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/hrrr_control_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/hrrr_control_decomp Checking test 014 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -668,14 +668,14 @@ Checking test 014 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1412.101307 - 0: The maximum resident set size (KB) = 833520 + 0: The total amount of wall time = 1447.896671 + 0: The maximum resident set size (KB) = 828036 Test 014 hrrr_control_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/hrrr_control_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/hrrr_control_restart Checking test 015 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -714,14 +714,14 @@ Checking test 015 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1041.294375 - 0: The maximum resident set size (KB) = 554052 + 0: The total amount of wall time = 1064.805223 + 0: The maximum resident set size (KB) = 547936 Test 015 hrrr_control_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/rrfs_v1beta +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/rrfs_v1beta Checking test 016 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -768,14 +768,14 @@ Checking test 016 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1478.077249 - 0: The maximum resident set size (KB) = 823724 + 0: The total amount of wall time = 1430.760259 + 0: The maximum resident set size (KB) = 831296 Test 016 rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/rrfs_smoke_conus13km_hrrr_warm Checking test 017 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -784,14 +784,14 @@ Checking test 017 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 779.700592 - 0: The maximum resident set size (KB) = 673124 + 0: The total amount of wall time = 817.243815 + 0: The maximum resident set size (KB) = 670864 Test 017 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 018 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -800,14 +800,14 @@ Checking test 018 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 1066.040796 - 0: The maximum resident set size (KB) = 669004 + 0: The total amount of wall time = 1079.086276 + 0: The maximum resident set size (KB) = 663280 Test 018 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/rrfs_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/rrfs_conus13km_hrrr_warm Checking test 019 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -816,14 +816,14 @@ Checking test 019 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 776.928592 - 0: The maximum resident set size (KB) = 645780 + 0: The total amount of wall time = 789.473676 + 0: The maximum resident set size (KB) = 643620 Test 019 rrfs_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/rrfs_smoke_conus13km_radar_tten_warm Checking test 020 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -832,234 +832,234 @@ Checking test 020 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 821.597561 - 0: The maximum resident set size (KB) = 676728 + 0: The total amount of wall time = 809.997156 + 0: The maximum resident set size (KB) = 670040 Test 020 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 021 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 405.505524 - 0: The maximum resident set size (KB) = 635076 + 0: The total amount of wall time = 379.642256 + 0: The maximum resident set size (KB) = 632868 Test 021 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/control_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/control_diag_debug Checking test 022 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 131.364999 - 0: The maximum resident set size (KB) = 528096 + 0: The total amount of wall time = 126.943478 + 0: The maximum resident set size (KB) = 527036 Test 022 control_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/regional_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/regional_debug Checking test 023 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 751.492698 - 0: The maximum resident set size (KB) = 590460 + 0: The total amount of wall time = 749.594885 + 0: The maximum resident set size (KB) = 591324 Test 023 regional_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/rap_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/rap_control_debug Checking test 024 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 178.434510 - 0: The maximum resident set size (KB) = 845472 + 0: The total amount of wall time = 174.077917 + 0: The maximum resident set size (KB) = 837356 Test 024 rap_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/hrrr_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/hrrr_control_debug Checking test 025 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 172.638630 - 0: The maximum resident set size (KB) = 840880 + 0: The total amount of wall time = 172.719746 + 0: The maximum resident set size (KB) = 837780 Test 025 hrrr_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/rap_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/rap_diag_debug Checking test 026 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 213.869548 - 0: The maximum resident set size (KB) = 925548 + 0: The total amount of wall time = 210.185255 + 0: The maximum resident set size (KB) = 927396 Test 026 rap_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/rap_noah_sfcdiff_cires_ugwp_debug Checking test 027 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.952873 - 0: The maximum resident set size (KB) = 838848 + 0: The total amount of wall time = 268.522009 + 0: The maximum resident set size (KB) = 847096 Test 027 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/rap_progcld_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/rap_progcld_thompson_debug Checking test 028 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 178.405339 - 0: The maximum resident set size (KB) = 836724 + 0: The total amount of wall time = 173.920834 + 0: The maximum resident set size (KB) = 842784 Test 028 rap_progcld_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/rrfs_v1beta_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/rrfs_v1beta_debug Checking test 029 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 178.902019 - 0: The maximum resident set size (KB) = 841780 + 0: The total amount of wall time = 175.342061 + 0: The maximum resident set size (KB) = 841352 Test 029 rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/control_ras_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/control_ras_debug Checking test 030 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 104.158228 - 0: The maximum resident set size (KB) = 480264 + 0: The total amount of wall time = 103.472669 + 0: The maximum resident set size (KB) = 477872 Test 030 control_ras_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/control_stochy_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/control_stochy_debug Checking test 031 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 122.737608 - 0: The maximum resident set size (KB) = 468264 + 0: The total amount of wall time = 119.579368 + 0: The maximum resident set size (KB) = 471972 Test 031 control_stochy_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/control_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/control_debug_p8 Checking test 032 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 120.554164 - 0: The maximum resident set size (KB) = 1223780 + 0: The total amount of wall time = 119.571255 + 0: The maximum resident set size (KB) = 1219728 Test 032 control_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 033 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 636.497005 - 0: The maximum resident set size (KB) = 684108 + 0: The total amount of wall time = 613.981545 + 0: The maximum resident set size (KB) = 686316 Test 033 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 034 rrfs_smoke_conus13km_hrrr_warm_debug_2threads 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.218925 - 0: The maximum resident set size (KB) = 679124 + 0: The total amount of wall time = 766.568779 + 0: The maximum resident set size (KB) = 679452 Test 034 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/rrfs_conus13km_hrrr_warm_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rrfs_conus13km_hrrr_warm_debugs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/rrfs_conus13km_hrrr_warm_debug Checking test 035 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 586.810850 - 0: The maximum resident set size (KB) = 656664 + 0: The total amount of wall time = 553.680971 + 0: The maximum resident set size (KB) = 658864 Test 035 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/control_wam_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/control_wam_debug Checking test 036 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 187.528846 - 0: The maximum resident set size (KB) = 190288 + 0: The total amount of wall time = 181.346785 + 0: The maximum resident set size (KB) = 191976 Test 036 control_wam_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/rap_control_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/rap_control_dyn32_phy32 Checking test 037 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1106,14 +1106,14 @@ Checking test 037 rap_control_dyn32_phy32 results .... Comparing 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.613801 - 0: The maximum resident set size (KB) = 680972 + 0: The total amount of wall time = 1492.291189 + 0: The maximum resident set size (KB) = 684260 Test 037 rap_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/hrrr_control_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/hrrr_control_dyn32_phy32 Checking test 038 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1160,14 +1160,14 @@ Checking test 038 hrrr_control_dyn32_phy32 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 = 728.297896 - 0: The maximum resident set size (KB) = 681456 + 0: The total amount of wall time = 729.950346 + 0: The maximum resident set size (KB) = 680948 Test 038 hrrr_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/rap_2threads_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/rap_2threads_dyn32_phy32 Checking test 039 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1214,14 +1214,14 @@ Checking test 039 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1369.321170 - 0: The maximum resident set size (KB) = 730392 + 0: The total amount of wall time = 1359.100884 + 0: The maximum resident set size (KB) = 729940 Test 039 rap_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/hrrr_control_2threads_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/hrrr_control_2threads_dyn32_phy32 Checking test 040 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1268,14 +1268,14 @@ Checking test 040 hrrr_control_2threads_dyn32_phy32 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 = 695.342852 - 0: The maximum resident set size (KB) = 730532 + 0: The total amount of wall time = 673.527944 + 0: The maximum resident set size (KB) = 727356 Test 040 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/hrrr_control_decomp_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/hrrr_control_decomp_dyn32_phy32 Checking test 041 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1322,14 +1322,14 @@ Checking test 041 hrrr_control_decomp_dyn32_phy32 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 = 728.543297 - 0: The maximum resident set size (KB) = 688236 + 0: The total amount of wall time = 719.656752 + 0: The maximum resident set size (KB) = 686600 Test 041 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/rap_restart_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/rap_restart_dyn32_phy32 Checking test 042 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1368,14 +1368,14 @@ Checking test 042 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1072.108309 - 0: The maximum resident set size (KB) = 513468 + 0: The total amount of wall time = 1078.096496 + 0: The maximum resident set size (KB) = 516080 Test 042 rap_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/hrrr_control_restart_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/hrrr_control_restart_dyn32_phy32 Checking test 043 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1414,14 +1414,14 @@ Checking test 043 hrrr_control_restart_dyn32_phy32 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 = 365.247480 - 0: The maximum resident set size (KB) = 509304 + 0: The total amount of wall time = 375.337740 + 0: The maximum resident set size (KB) = 511536 Test 043 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/rap_control_dyn64_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/rap_control_dyn64_phy32 Checking test 044 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1468,58 +1468,58 @@ Checking test 044 rap_control_dyn64_phy32 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 = 1080.252332 - 0: The maximum resident set size (KB) = 709644 + 0: The total amount of wall time = 1064.913828 + 0: The maximum resident set size (KB) = 710188 Test 044 rap_control_dyn64_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/rap_control_debug_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/rap_control_debug_dyn32_phy32 Checking test 045 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 173.464649 - 0: The maximum resident set size (KB) = 697896 + 0: The total amount of wall time = 174.610885 + 0: The maximum resident set size (KB) = 698884 Test 045 rap_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/hrrr_control_debug_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/hrrr_control_debug_dyn32_phy32 Checking test 046 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 169.966458 - 0: The maximum resident set size (KB) = 701628 + 0: The total amount of wall time = 175.440921 + 0: The maximum resident set size (KB) = 701044 Test 046 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/rap_control_dyn64_phy32_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rap_control_debug_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/rap_control_dyn64_phy32_debug Checking test 047 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 209.374185 - 0: The maximum resident set size (KB) = 714596 + 0: The total amount of wall time = 207.489561 + 0: The maximum resident set size (KB) = 714004 Test 047 rap_control_dyn64_phy32_debug PASS Test 048 cpld_control_p8 FAIL -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/cpld_control_nowave_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/cpld_control_c96_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/cpld_control_nowave_noaero_p8 Checking test 049 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1581,14 +1581,14 @@ Checking test 049 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 1290.274071 - 0: The maximum resident set size (KB) = 1333524 + 0: The total amount of wall time = 1207.026750 + 0: The maximum resident set size (KB) = 1330400 Test 049 cpld_control_nowave_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/cpld_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/cpld_debug_p8 Checking test 050 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1641,21 +1641,21 @@ Checking test 050 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 789.382652 - 0: The maximum resident set size (KB) = 1438596 + 0: The total amount of wall time = 793.444353 + 0: The maximum resident set size (KB) = 1437952 Test 050 cpld_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_15725/datm_cdeps_control_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/datm_cdeps_control_cfsr Checking test 051 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 178.883526 - 0: The maximum resident set size (KB) = 665716 + 0: The total amount of wall time = 174.432340 + 0: The maximum resident set size (KB) = 670792 Test 051 datm_cdeps_control_cfsr PASS @@ -1663,85 +1663,5 @@ FAILED TESTS: Test cpld_control_p8 048 failed in run_test failed REGRESSION TEST FAILED -Wed Apr 12 00:25:21 UTC 2023 -Elapsed time: 01h:12m:56s. Have a nice day! -Wed Apr 12 11:35:14 UTC 2023 -Start Regression test - -Compile 001 elapsed time 270 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/GNU/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_32130/cpld_control_p8 -Checking test 001 cpld_control_p8 results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 1780.837160 - 0: The maximum resident set size (KB) = 1424092 - -Test 001 cpld_control_p8 PASS Tries: 2 - - -REGRESSION TEST WAS SUCCESSFUL -Wed Apr 12 12:52:47 UTC 2023 -Elapsed time: 01h:17m:34s. Have a nice day! +Fri Apr 14 07:34:41 UTC 2023 +Elapsed time: 03h:51m:07s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 97e04f47844..7770d4eaa0d 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,43 +1,43 @@ -Wed Apr 12 02:03:48 UTC 2023 +Fri Apr 14 02:26:24 UTC 2023 Start Regression test -Compile 001 elapsed time 631 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 627 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 606 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 236 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 001 elapsed time 634 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 634 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 588 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 252 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON Compile 005 elapsed time 208 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 526 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 535 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 740 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 542 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 537 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 537 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 724 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 557 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile 010 elapsed time 509 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 011 elapsed time 477 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 474 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 595 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 151 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 478 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 468 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 235 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 235 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 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 021 elapsed time 239 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 666 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 592 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 024 elapsed time 185 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 109 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 193 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 56 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 503 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 542 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 538 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 485 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 480 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 607 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 211 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 160 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 494 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 494 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 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 019 elapsed time 212 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 570 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 021 elapsed time 222 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 685 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 629 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 024 elapsed time 191 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 117 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 186 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 84 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 487 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 544 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 581 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile 031 elapsed time 489 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 484 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 033 elapsed time 193 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 034 elapsed time 546 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 483 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 033 elapsed time 192 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 034 elapsed time 540 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8_mixedmode -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/cpld_control_p8_mixedmode +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8_mixedmode +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -102,14 +102,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 317.892428 - 0: The maximum resident set size (KB) = 3135904 + 0: The total amount of wall time = 324.176307 + 0: The maximum resident set size (KB) = 3148160 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_gfsv17 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/cpld_control_gfsv17 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_gfsv17 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -173,14 +173,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 234.065910 - 0: The maximum resident set size (KB) = 1719488 + 0: The total amount of wall time = 234.411878 + 0: The maximum resident set size (KB) = 1718152 Test 002 cpld_control_gfsv17 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/cpld_control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -245,14 +245,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 358.947803 - 0: The maximum resident set size (KB) = 3161336 + 0: The total amount of wall time = 355.299580 + 0: The maximum resident set size (KB) = 3179700 Test 003 cpld_control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/cpld_restart_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -305,14 +305,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 202.678457 - 0: The maximum resident set size (KB) = 3045204 + 0: The total amount of wall time = 198.494568 + 0: The maximum resident set size (KB) = 3043452 Test 004 cpld_restart_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/cpld_control_qr_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -377,14 +377,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 371.320033 - 0: The maximum resident set size (KB) = 3181296 + 0: The total amount of wall time = 349.421644 + 0: The maximum resident set size (KB) = 3157856 Test 005 cpld_control_qr_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/cpld_restart_qr_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -437,14 +437,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 205.566209 - 0: The maximum resident set size (KB) = 3063472 + 0: The total amount of wall time = 203.170274 + 0: The maximum resident set size (KB) = 3061024 Test 006 cpld_restart_qr_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/cpld_2threads_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -497,14 +497,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 362.322067 - 0: The maximum resident set size (KB) = 3504016 + 0: The total amount of wall time = 355.493808 + 0: The maximum resident set size (KB) = 3513800 Test 007 cpld_2threads_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/cpld_decomp_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -557,14 +557,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 352.578359 - 0: The maximum resident set size (KB) = 3167496 + 0: The total amount of wall time = 350.312103 + 0: The maximum resident set size (KB) = 3157248 Test 008 cpld_decomp_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/cpld_mpi_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -617,14 +617,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 296.132920 - 0: The maximum resident set size (KB) = 3012868 + 0: The total amount of wall time = 289.141560 + 0: The maximum resident set size (KB) = 3010500 Test 009 cpld_mpi_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_ciceC_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/cpld_control_ciceC_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_ciceC_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -689,14 +689,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 348.589751 - 0: The maximum resident set size (KB) = 3170544 + 0: The total amount of wall time = 351.097255 + 0: The maximum resident set size (KB) = 3167656 Test 010 cpld_control_ciceC_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/cpld_control_c192_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/cpld_control_c192_p8 Checking test 011 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -749,14 +749,14 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 604.486999 - 0: The maximum resident set size (KB) = 3255920 + 0: The total amount of wall time = 609.237581 + 0: The maximum resident set size (KB) = 3263764 Test 011 cpld_control_c192_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/cpld_restart_c192_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/cpld_restart_c192_p8 Checking test 012 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -809,14 +809,14 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 411.156980 - 0: The maximum resident set size (KB) = 3152148 + 0: The total amount of wall time = 396.379026 + 0: The maximum resident set size (KB) = 3147944 Test 012 cpld_restart_c192_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/cpld_bmark_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/cpld_bmark_p8 Checking test 013 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -864,14 +864,14 @@ Checking test 013 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 737.139143 - 0: The maximum resident set size (KB) = 4037816 + 0: The total amount of wall time = 746.545972 + 0: The maximum resident set size (KB) = 4013944 Test 013 cpld_bmark_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/cpld_restart_bmark_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/cpld_restart_bmark_p8 Checking test 014 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -919,14 +919,14 @@ Checking test 014 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 488.682010 - 0: The maximum resident set size (KB) = 3974412 + 0: The total amount of wall time = 464.633677 + 0: The maximum resident set size (KB) = 3964460 Test 014 cpld_restart_bmark_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/cpld_control_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/cpld_control_noaero_p8 Checking test 015 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -990,14 +990,14 @@ Checking test 015 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 269.999782 - 0: The maximum resident set size (KB) = 1714444 + 0: The total amount of wall time = 274.077644 + 0: The maximum resident set size (KB) = 1711592 Test 015 cpld_control_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/cpld_control_nowave_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_c96_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/cpld_control_nowave_noaero_p8 Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1059,14 +1059,14 @@ Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 268.708206 - 0: The maximum resident set size (KB) = 1758032 + 0: The total amount of wall time = 270.382342 + 0: The maximum resident set size (KB) = 1764644 Test 016 cpld_control_nowave_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/cpld_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/cpld_debug_p8 Checking test 017 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1119,14 +1119,14 @@ Checking test 017 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 527.159946 - 0: The maximum resident set size (KB) = 3211708 + 0: The total amount of wall time = 538.476226 + 0: The maximum resident set size (KB) = 3211448 Test 017 cpld_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_debug_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/cpld_debug_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_debug_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/cpld_debug_noaero_p8 Checking test 018 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1178,14 +1178,14 @@ Checking test 018 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 372.152750 - 0: The maximum resident set size (KB) = 1729420 + 0: The total amount of wall time = 372.700344 + 0: The maximum resident set size (KB) = 1730760 Test 018 cpld_debug_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_noaero_p8_agrid -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/cpld_control_noaero_p8_agrid +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_noaero_p8_agrid +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/cpld_control_noaero_p8_agrid Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1247,14 +1247,14 @@ Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 275.942398 - 0: The maximum resident set size (KB) = 1752064 + 0: The total amount of wall time = 274.709125 + 0: The maximum resident set size (KB) = 1754964 Test 019 cpld_control_noaero_p8_agrid PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/cpld_control_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_c48 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/cpld_control_c48 Checking test 020 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1304,14 +1304,14 @@ Checking test 020 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 584.939871 - 0: The maximum resident set size (KB) = 2804228 + 0: The total amount of wall time = 580.144129 + 0: The maximum resident set size (KB) = 2804296 Test 020 cpld_control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/cpld_warmstart_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_warmstart_c48 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/cpld_warmstart_c48 Checking test 021 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1361,14 +1361,14 @@ Checking test 021 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 157.981180 - 0: The maximum resident set size (KB) = 2800536 + 0: The total amount of wall time = 159.139371 + 0: The maximum resident set size (KB) = 2804600 Test 021 cpld_warmstart_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/cpld_restart_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_warmstart_c48 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/cpld_restart_c48 Checking test 022 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1418,14 +1418,14 @@ Checking test 022 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 87.267985 - 0: The maximum resident set size (KB) = 2242520 + 0: The total amount of wall time = 81.961865 + 0: The maximum resident set size (KB) = 2239228 Test 022 cpld_restart_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/cpld_control_p8_faster +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8_faster +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/cpld_control_p8_faster Checking test 023 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1490,14 +1490,14 @@ Checking test 023 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 328.934999 - 0: The maximum resident set size (KB) = 3167456 + 0: The total amount of wall time = 336.572507 + 0: The maximum resident set size (KB) = 3176076 Test 023 cpld_control_p8_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_CubedSphereGrid -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_CubedSphereGrid +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_CubedSphereGrid +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_CubedSphereGrid Checking test 024 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1524,28 +1524,28 @@ Checking test 024 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 132.009702 - 0: The maximum resident set size (KB) = 631584 + 0: The total amount of wall time = 135.147754 + 0: The maximum resident set size (KB) = 631952 Test 024 control_CubedSphereGrid PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_CubedSphereGrid_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_CubedSphereGrid_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_CubedSphereGrid_parallel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_CubedSphereGrid_parallel Checking test 025 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc ............ALT CHECK......OK - 0: The total amount of wall time = 128.411583 - 0: The maximum resident set size (KB) = 634004 + 0: The total amount of wall time = 133.127595 + 0: The maximum resident set size (KB) = 627236 Test 025 control_CubedSphereGrid_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_latlon -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_latlon +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_latlon +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_latlon Checking test 026 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1556,16 +1556,16 @@ Checking test 026 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.139528 - 0: The maximum resident set size (KB) = 631308 + 0: The total amount of wall time = 140.255061 + 0: The maximum resident set size (KB) = 630684 Test 026 control_latlon PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_wrtGauss_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_wrtGauss_netcdf_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_wrtGauss_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_wrtGauss_netcdf_parallel Checking test 027 control_wrtGauss_netcdf_parallel results .... - Comparing sfcf000.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK @@ -1574,14 +1574,14 @@ Checking test 027 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 140.404891 - 0: The maximum resident set size (KB) = 637800 + 0: The total amount of wall time = 141.068768 + 0: The maximum resident set size (KB) = 628584 Test 027 control_wrtGauss_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_c48 Checking test 028 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1620,14 +1620,14 @@ Checking test 028 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 367.999687 -0: The maximum resident set size (KB) = 826728 +0: The total amount of wall time = 373.665496 +0: The maximum resident set size (KB) = 819948 Test 028 control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_c192 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_c192 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_c192 Checking test 029 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1638,14 +1638,14 @@ Checking test 029 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 532.909602 - 0: The maximum resident set size (KB) = 770652 + 0: The total amount of wall time = 536.743974 + 0: The maximum resident set size (KB) = 764968 Test 029 control_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_c384 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_c384 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_c384 Checking test 030 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1656,14 +1656,14 @@ Checking test 030 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 522.338721 - 0: The maximum resident set size (KB) = 1264280 + 0: The total amount of wall time = 538.113138 + 0: The maximum resident set size (KB) = 1270092 Test 030 control_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_c384gdas -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_c384gdas +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_c384gdas +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_c384gdas Checking test 031 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1706,14 +1706,14 @@ Checking test 031 control_c384gdas 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 = 460.359241 - 0: The maximum resident set size (KB) = 1383132 + 0: The total amount of wall time = 516.412637 + 0: The maximum resident set size (KB) = 1380292 Test 031 control_c384gdas PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_stochy +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_stochy Checking test 032 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1724,28 +1724,28 @@ Checking test 032 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 88.503506 - 0: The maximum resident set size (KB) = 638816 + 0: The total amount of wall time = 97.117125 + 0: The maximum resident set size (KB) = 632260 Test 032 control_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_stochy_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_stochy_restart Checking test 033 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 49.335325 - 0: The maximum resident set size (KB) = 487136 + 0: The total amount of wall time = 48.979682 + 0: The maximum resident set size (KB) = 479052 Test 033 control_stochy_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_lndp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_lndp +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_lndp Checking test 034 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1756,14 +1756,14 @@ Checking test 034 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 82.554607 - 0: The maximum resident set size (KB) = 631136 + 0: The total amount of wall time = 86.238301 + 0: The maximum resident set size (KB) = 632760 Test 034 control_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_iovr4 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_iovr4 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_iovr4 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_iovr4 Checking test 035 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1778,14 +1778,14 @@ Checking test 035 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 137.405987 - 0: The maximum resident set size (KB) = 631208 + 0: The total amount of wall time = 140.318647 + 0: The maximum resident set size (KB) = 630088 Test 035 control_iovr4 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_iovr5 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_iovr5 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_iovr5 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_iovr5 Checking test 036 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1800,14 +1800,14 @@ Checking test 036 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 138.630080 - 0: The maximum resident set size (KB) = 635348 + 0: The total amount of wall time = 142.866098 + 0: The maximum resident set size (KB) = 625904 Test 036 control_iovr5 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_p8 Checking test 037 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1854,14 +1854,14 @@ Checking test 037 control_p8 results .... Comparing 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.796383 - 0: The maximum resident set size (KB) = 1611912 + 0: The total amount of wall time = 182.918835 + 0: The maximum resident set size (KB) = 1599496 Test 037 control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_restart_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_restart_p8 Checking test 038 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1900,14 +1900,14 @@ Checking test 038 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 91.898385 - 0: The maximum resident set size (KB) = 873860 + 0: The total amount of wall time = 91.087795 + 0: The maximum resident set size (KB) = 864060 Test 038 control_restart_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_qr_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_qr_p8 Checking test 039 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1954,14 +1954,14 @@ Checking test 039 control_qr_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 170.344249 - 0: The maximum resident set size (KB) = 1607484 + 0: The total amount of wall time = 181.024699 + 0: The maximum resident set size (KB) = 1605592 Test 039 control_qr_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_restart_qr_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_restart_qr_p8 Checking test 040 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2000,14 +2000,14 @@ Checking test 040 control_restart_qr_p8 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.829906 - 0: The maximum resident set size (KB) = 871116 + 0: The total amount of wall time = 92.069590 + 0: The maximum resident set size (KB) = 853900 Test 040 control_restart_qr_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_decomp_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_decomp_p8 Checking test 041 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2050,14 +2050,14 @@ Checking test 041 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 177.673221 - 0: The maximum resident set size (KB) = 1587992 + 0: The total amount of wall time = 183.082441 + 0: The maximum resident set size (KB) = 1575696 Test 041 control_decomp_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_2threads_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_2threads_p8 Checking test 042 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2100,14 +2100,14 @@ Checking test 042 control_2threads_p8 results .... Comparing 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.642513 - 0: The maximum resident set size (KB) = 1689964 + 0: The total amount of wall time = 171.392187 + 0: The maximum resident set size (KB) = 1677444 Test 042 control_2threads_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_p8_lndp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8_lndp +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_p8_lndp Checking test 043 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2126,14 +2126,14 @@ Checking test 043 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 317.351254 - 0: The maximum resident set size (KB) = 1602380 + 0: The total amount of wall time = 329.227019 + 0: The maximum resident set size (KB) = 1597604 Test 043 control_p8_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_p8_rrtmgp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_p8_rrtmgp Checking test 044 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2180,14 +2180,14 @@ Checking test 044 control_p8_rrtmgp results .... Comparing 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.473650 - 0: The maximum resident set size (KB) = 1666088 + 0: The total amount of wall time = 236.790135 + 0: The maximum resident set size (KB) = 1673992 Test 044 control_p8_rrtmgp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_mynn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_p8_mynn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8_mynn +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_p8_mynn Checking test 045 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2234,14 +2234,14 @@ Checking test 045 control_p8_mynn results .... Comparing 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.065949 - 0: The maximum resident set size (KB) = 1608628 + 0: The total amount of wall time = 190.228452 + 0: The maximum resident set size (KB) = 1596468 Test 045 control_p8_mynn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/merra2_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/merra2_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/merra2_thompson +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/merra2_thompson Checking test 046 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2288,14 +2288,14 @@ Checking test 046 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 195.830365 - 0: The maximum resident set size (KB) = 1615540 + 0: The total amount of wall time = 207.289322 + 0: The maximum resident set size (KB) = 1609500 Test 046 merra2_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/regional_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/regional_control Checking test 047 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2306,28 +2306,28 @@ Checking test 047 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 300.315583 - 0: The maximum resident set size (KB) = 870464 + 0: The total amount of wall time = 304.692492 + 0: The maximum resident set size (KB) = 867780 Test 047 regional_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/regional_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/regional_restart Checking test 048 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 153.411606 - 0: The maximum resident set size (KB) = 872964 + 0: The total amount of wall time = 161.464250 + 0: The maximum resident set size (KB) = 860032 Test 048 regional_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/regional_control_qr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/regional_control_qr Checking test 049 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2338,28 +2338,28 @@ Checking test 049 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 300.134648 - 0: The maximum resident set size (KB) = 871124 + 0: The total amount of wall time = 301.909024 + 0: The maximum resident set size (KB) = 865016 Test 049 regional_control_qr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/regional_restart_qr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/regional_restart_qr Checking test 050 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 154.260951 - 0: The maximum resident set size (KB) = 866280 + 0: The total amount of wall time = 160.516655 + 0: The maximum resident set size (KB) = 863560 Test 050 regional_restart_qr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/regional_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/regional_decomp Checking test 051 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2370,14 +2370,14 @@ Checking test 051 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 318.147279 - 0: The maximum resident set size (KB) = 860952 + 0: The total amount of wall time = 319.073455 + 0: The maximum resident set size (KB) = 860560 Test 051 regional_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/regional_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/regional_2threads Checking test 052 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2388,14 +2388,14 @@ Checking test 052 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 182.698006 - 0: The maximum resident set size (KB) = 850424 + 0: The total amount of wall time = 186.964155 + 0: The maximum resident set size (KB) = 845072 Test 052 regional_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_noquilt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/regional_noquilt +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_noquilt +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/regional_noquilt Checking test 053 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2403,28 +2403,28 @@ Checking test 053 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 321.717511 - 0: The maximum resident set size (KB) = 858776 + 0: The total amount of wall time = 325.166502 + 0: The maximum resident set size (KB) = 860956 Test 053 regional_noquilt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/regional_netcdf_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/regional_netcdf_parallel Checking test 054 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 295.523754 - 0: The maximum resident set size (KB) = 863932 + 0: The total amount of wall time = 298.780195 + 0: The maximum resident set size (KB) = 858188 Test 054 regional_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/regional_2dwrtdecomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/regional_2dwrtdecomp Checking test 055 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2435,14 +2435,14 @@ Checking test 055 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 301.586950 - 0: The maximum resident set size (KB) = 867588 + 0: The total amount of wall time = 302.997004 + 0: The maximum resident set size (KB) = 870056 Test 055 regional_2dwrtdecomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/fv3_regional_wofs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/regional_wofs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/fv3_regional_wofs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/regional_wofs Checking test 056 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2453,14 +2453,14 @@ Checking test 056 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 377.080974 - 0: The maximum resident set size (KB) = 634636 + 0: The total amount of wall time = 379.495787 + 0: The maximum resident set size (KB) = 628020 Test 056 regional_wofs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/rap_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/rap_control Checking test 057 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2507,14 +2507,14 @@ Checking test 057 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 461.362542 - 0: The maximum resident set size (KB) = 1056144 + 0: The total amount of wall time = 465.261278 + 0: The maximum resident set size (KB) = 1016812 Test 057 rap_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_spp_sppt_shum_skeb -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/regional_spp_sppt_shum_skeb +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_spp_sppt_shum_skeb +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/regional_spp_sppt_shum_skeb Checking test 058 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2525,14 +2525,14 @@ Checking test 058 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 233.789999 - 0: The maximum resident set size (KB) = 1184152 + 0: The total amount of wall time = 234.762502 + 0: The maximum resident set size (KB) = 1177384 Test 058 regional_spp_sppt_shum_skeb PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/rap_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/rap_decomp Checking test 059 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2579,14 +2579,14 @@ Checking test 059 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 478.689404 - 0: The maximum resident set size (KB) = 1000260 + 0: The total amount of wall time = 482.080629 + 0: The maximum resident set size (KB) = 995640 Test 059 rap_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/rap_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/rap_2threads Checking test 060 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2633,14 +2633,14 @@ Checking test 060 rap_2threads results .... Comparing 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.356801 - 0: The maximum resident set size (KB) = 1139088 + 0: The total amount of wall time = 436.415243 + 0: The maximum resident set size (KB) = 1139172 Test 060 rap_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/rap_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/rap_restart Checking test 061 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2679,14 +2679,14 @@ Checking test 061 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 234.263072 - 0: The maximum resident set size (KB) = 969124 + 0: The total amount of wall time = 233.825680 + 0: The maximum resident set size (KB) = 969352 Test 061 rap_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/rap_sfcdiff +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/rap_sfcdiff Checking test 062 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2733,14 +2733,14 @@ Checking test 062 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 462.140811 - 0: The maximum resident set size (KB) = 1057592 + 0: The total amount of wall time = 463.852252 + 0: The maximum resident set size (KB) = 1059220 Test 062 rap_sfcdiff PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/rap_sfcdiff_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/rap_sfcdiff_decomp Checking test 063 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2787,14 +2787,14 @@ Checking test 063 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 484.559187 - 0: The maximum resident set size (KB) = 1003600 + 0: The total amount of wall time = 489.877888 + 0: The maximum resident set size (KB) = 1005396 Test 063 rap_sfcdiff_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/rap_sfcdiff_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/rap_sfcdiff_restart Checking test 064 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2833,14 +2833,14 @@ Checking test 064 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 344.286074 - 0: The maximum resident set size (KB) = 989124 + 0: The total amount of wall time = 343.137117 + 0: The maximum resident set size (KB) = 994496 Test 064 rap_sfcdiff_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/hrrr_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/hrrr_control Checking test 065 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2887,14 +2887,14 @@ Checking test 065 hrrr_control results .... Comparing 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.576673 - 0: The maximum resident set size (KB) = 1051780 + 0: The total amount of wall time = 449.647138 + 0: The maximum resident set size (KB) = 1054780 Test 065 hrrr_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/hrrr_control_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/hrrr_control_decomp Checking test 066 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2941,14 +2941,14 @@ Checking test 066 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 467.401240 - 0: The maximum resident set size (KB) = 999020 + 0: The total amount of wall time = 469.201126 + 0: The maximum resident set size (KB) = 995312 Test 066 hrrr_control_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/hrrr_control_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/hrrr_control_2threads Checking test 067 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2995,14 +2995,14 @@ Checking test 067 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 423.435040 - 0: The maximum resident set size (KB) = 1135884 + 0: The total amount of wall time = 426.724234 + 0: The maximum resident set size (KB) = 1134516 Test 067 hrrr_control_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/hrrr_control_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/hrrr_control_restart Checking test 068 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3041,14 +3041,14 @@ Checking test 068 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 328.692838 - 0: The maximum resident set size (KB) = 980364 + 0: The total amount of wall time = 331.760664 + 0: The maximum resident set size (KB) = 989752 Test 068 hrrr_control_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/rrfs_v1beta +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/rrfs_v1beta Checking test 069 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3095,14 +3095,14 @@ Checking test 069 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 457.596355 - 0: The maximum resident set size (KB) = 1058816 + 0: The total amount of wall time = 462.033628 + 0: The maximum resident set size (KB) = 1057932 Test 069 rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_v1nssl -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/rrfs_v1nssl +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_v1nssl +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/rrfs_v1nssl Checking test 070 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3117,14 +3117,14 @@ Checking test 070 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 537.281951 - 0: The maximum resident set size (KB) = 691132 + 0: The total amount of wall time = 540.873404 + 0: The maximum resident set size (KB) = 697304 Test 070 rrfs_v1nssl PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/rrfs_v1nssl_nohailnoccn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/rrfs_v1nssl_nohailnoccn Checking test 071 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3139,14 +3139,14 @@ Checking test 071 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 525.595084 - 0: The maximum resident set size (KB) = 756080 + 0: The total amount of wall time = 526.456367 + 0: The maximum resident set size (KB) = 756448 Test 071 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/rrfs_smoke_conus13km_hrrr_warm Checking test 072 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3155,14 +3155,14 @@ Checking test 072 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 150.909567 - 0: The maximum resident set size (KB) = 998684 + 0: The total amount of wall time = 147.922523 + 0: The maximum resident set size (KB) = 1034048 Test 072 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 073 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3171,14 +3171,14 @@ Checking test 073 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 94.163862 - 0: The maximum resident set size (KB) = 942800 + 0: The total amount of wall time = 89.923275 + 0: The maximum resident set size (KB) = 947176 Test 073 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/rrfs_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/rrfs_conus13km_hrrr_warm Checking test 074 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3187,14 +3187,14 @@ Checking test 074 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 133.122294 - 0: The maximum resident set size (KB) = 946540 + 0: The total amount of wall time = 128.580805 + 0: The maximum resident set size (KB) = 942028 Test 074 rrfs_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/rrfs_smoke_conus13km_radar_tten_warm Checking test 075 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3203,26 +3203,26 @@ Checking test 075 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 150.821372 - 0: The maximum resident set size (KB) = 1039484 + 0: The total amount of wall time = 147.657718 + 0: The maximum resident set size (KB) = 1005936 Test 075 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 076 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 71.004190 - 0: The maximum resident set size (KB) = 930836 + 0: The total amount of wall time = 68.475146 + 0: The maximum resident set size (KB) = 933148 Test 076 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_csawmg -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_csawmg +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_csawmg +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_csawmg Checking test 077 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3233,14 +3233,14 @@ Checking test 077 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 349.123223 - 0: The maximum resident set size (KB) = 716424 + 0: The total amount of wall time = 341.534032 + 0: The maximum resident set size (KB) = 720108 Test 077 control_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_csawmgt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_csawmgt +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_csawmgt +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_csawmgt Checking test 078 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3251,14 +3251,14 @@ Checking test 078 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 340.419308 - 0: The maximum resident set size (KB) = 722148 + 0: The total amount of wall time = 337.625549 + 0: The maximum resident set size (KB) = 726308 Test 078 control_csawmgt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_ras +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_ras +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_ras Checking test 079 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3269,26 +3269,26 @@ Checking test 079 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 182.661760 - 0: The maximum resident set size (KB) = 721104 + 0: The total amount of wall time = 182.426620 + 0: The maximum resident set size (KB) = 726424 Test 079 control_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_wam -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_wam +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_wam +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_wam Checking test 080 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 112.892540 - 0: The maximum resident set size (KB) = 636996 + 0: The total amount of wall time = 110.754843 + 0: The maximum resident set size (KB) = 636468 Test 080 control_wam PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_p8_faster +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8_faster +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_p8_faster Checking test 081 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3335,14 +3335,14 @@ Checking test 081 control_p8_faster results .... Comparing 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.148424 - 0: The maximum resident set size (KB) = 1606012 + 0: The total amount of wall time = 152.609203 + 0: The maximum resident set size (KB) = 1604640 Test 081 control_p8_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/regional_control_faster +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control_faster +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/regional_control_faster Checking test 082 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3353,56 +3353,56 @@ Checking test 082 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 280.031814 - 0: The maximum resident set size (KB) = 871236 + 0: The total amount of wall time = 272.151566 + 0: The maximum resident set size (KB) = 867448 Test 082 regional_control_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 083 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 833.214200 - 0: The maximum resident set size (KB) = 1014556 + 0: The total amount of wall time = 860.627609 + 0: The maximum resident set size (KB) = 1052744 Test 083 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 084 rrfs_smoke_conus13km_hrrr_warm_debug_2threads 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.057121 - 0: The maximum resident set size (KB) = 971236 + 0: The total amount of wall time = 464.284867 + 0: The maximum resident set size (KB) = 971372 Test 084 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/rrfs_conus13km_hrrr_warm_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/rrfs_conus13km_hrrr_warm_debug Checking test 085 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 737.900372 - 0: The maximum resident set size (KB) = 966844 + 0: The total amount of wall time = 746.576744 + 0: The maximum resident set size (KB) = 960960 Test 085 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_CubedSphereGrid_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_CubedSphereGrid_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_CubedSphereGrid_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_CubedSphereGrid_debug Checking test 086 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3429,334 +3429,334 @@ Checking test 086 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 146.443613 - 0: The maximum resident set size (KB) = 786520 + 0: The total amount of wall time = 143.357619 + 0: The maximum resident set size (KB) = 793280 Test 086 control_CubedSphereGrid_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_wrtGauss_netcdf_parallel_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_wrtGauss_netcdf_parallel_debug Checking test 087 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 143.152011 - 0: The maximum resident set size (KB) = 786640 + 0: The total amount of wall time = 144.116673 + 0: The maximum resident set size (KB) = 786228 Test 087 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_stochy_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_stochy_debug Checking test 088 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 163.971403 - 0: The maximum resident set size (KB) = 800400 + 0: The total amount of wall time = 165.886086 + 0: The maximum resident set size (KB) = 795208 Test 088 control_stochy_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_lndp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_lndp_debug Checking test 089 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 147.367653 - 0: The maximum resident set size (KB) = 793724 + 0: The total amount of wall time = 145.967464 + 0: The maximum resident set size (KB) = 797172 Test 089 control_lndp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_csawmg_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_csawmg_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_csawmg_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_csawmg_debug Checking test 090 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 224.963645 - 0: The maximum resident set size (KB) = 840068 + 0: The total amount of wall time = 227.293581 + 0: The maximum resident set size (KB) = 840080 Test 090 control_csawmg_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_csawmgt_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_csawmgt_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_csawmgt_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_csawmgt_debug Checking test 091 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 225.028251 - 0: The maximum resident set size (KB) = 838388 + 0: The total amount of wall time = 223.229086 + 0: The maximum resident set size (KB) = 840424 Test 091 control_csawmgt_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_ras_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_ras_debug Checking test 092 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 149.083352 - 0: The maximum resident set size (KB) = 799816 + 0: The total amount of wall time = 145.219340 + 0: The maximum resident set size (KB) = 801964 Test 092 control_ras_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_diag_debug Checking test 093 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 150.137876 - 0: The maximum resident set size (KB) = 846844 + 0: The total amount of wall time = 150.862750 + 0: The maximum resident set size (KB) = 848132 Test 093 control_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_debug_p8 Checking test 094 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 166.018201 - 0: The maximum resident set size (KB) = 1622360 + 0: The total amount of wall time = 165.762355 + 0: The maximum resident set size (KB) = 1594460 Test 094 control_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/regional_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/regional_debug Checking test 095 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 974.397844 - 0: The maximum resident set size (KB) = 878936 + 0: The total amount of wall time = 986.995811 + 0: The maximum resident set size (KB) = 884748 Test 095 regional_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/rap_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/rap_control_debug Checking test 096 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 269.136229 - 0: The maximum resident set size (KB) = 1174300 + 0: The total amount of wall time = 267.585152 + 0: The maximum resident set size (KB) = 1170992 Test 096 rap_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/hrrr_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/hrrr_control_debug Checking test 097 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 259.996580 - 0: The maximum resident set size (KB) = 1166856 + 0: The total amount of wall time = 267.997043 + 0: The maximum resident set size (KB) = 1168104 Test 097 hrrr_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/rap_unified_drag_suite_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/rap_unified_drag_suite_debug Checking test 098 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 267.349714 - 0: The maximum resident set size (KB) = 1171552 + 0: The total amount of wall time = 268.828580 + 0: The maximum resident set size (KB) = 1171600 Test 098 rap_unified_drag_suite_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/rap_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/rap_diag_debug Checking test 099 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 285.262490 - 0: The maximum resident set size (KB) = 1255076 + 0: The total amount of wall time = 286.202721 + 0: The maximum resident set size (KB) = 1253476 Test 099 rap_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/rap_cires_ugwp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/rap_cires_ugwp_debug Checking test 100 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.521402 - 0: The maximum resident set size (KB) = 1164792 + 0: The total amount of wall time = 276.562088 + 0: The maximum resident set size (KB) = 1171448 Test 100 rap_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/rap_unified_ugwp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/rap_unified_ugwp_debug Checking test 101 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.845366 - 0: The maximum resident set size (KB) = 1166212 + 0: The total amount of wall time = 280.616114 + 0: The maximum resident set size (KB) = 1165104 Test 101 rap_unified_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/rap_lndp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/rap_lndp_debug Checking test 102 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 278.400244 - 0: The maximum resident set size (KB) = 1150908 + 0: The total amount of wall time = 274.810719 + 0: The maximum resident set size (KB) = 1173424 Test 102 rap_lndp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_flake_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/rap_flake_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_flake_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/rap_flake_debug Checking test 103 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 278.112161 - 0: The maximum resident set size (KB) = 1166788 + 0: The total amount of wall time = 272.249660 + 0: The maximum resident set size (KB) = 1174432 Test 103 rap_flake_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/rap_progcld_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/rap_progcld_thompson_debug Checking test 104 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 267.449692 - 0: The maximum resident set size (KB) = 1166832 + 0: The total amount of wall time = 272.977829 + 0: The maximum resident set size (KB) = 1165076 Test 104 rap_progcld_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_noah_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/rap_noah_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_noah_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/rap_noah_debug Checking test 105 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 265.010541 - 0: The maximum resident set size (KB) = 1166836 + 0: The total amount of wall time = 266.921581 + 0: The maximum resident set size (KB) = 1169740 Test 105 rap_noah_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_sfcdiff_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/rap_sfcdiff_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_sfcdiff_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/rap_sfcdiff_debug Checking test 106 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 270.530591 - 0: The maximum resident set size (KB) = 1168140 + 0: The total amount of wall time = 274.302609 + 0: The maximum resident set size (KB) = 1170060 Test 106 rap_sfcdiff_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/rap_noah_sfcdiff_cires_ugwp_debug Checking test 107 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 444.683480 - 0: The maximum resident set size (KB) = 1169700 + 0: The total amount of wall time = 446.372589 + 0: The maximum resident set size (KB) = 1170052 Test 107 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/rrfs_v1beta_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/rrfs_v1beta_debug Checking test 108 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 269.952393 - 0: The maximum resident set size (KB) = 1161908 + 0: The total amount of wall time = 271.985984 + 0: The maximum resident set size (KB) = 1163408 Test 108 rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_wam_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_wam_debug Checking test 109 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 280.511228 - 0: The maximum resident set size (KB) = 525084 + 0: The total amount of wall time = 279.987001 + 0: The maximum resident set size (KB) = 520344 Test 109 control_wam_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3767,14 +3767,14 @@ Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 223.081981 - 0: The maximum resident set size (KB) = 1081068 + 0: The total amount of wall time = 222.535891 + 0: The maximum resident set size (KB) = 1079188 Test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/rap_control_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/rap_control_dyn32_phy32 Checking test 111 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3821,14 +3821,14 @@ Checking test 111 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 385.044986 - 0: The maximum resident set size (KB) = 1008876 + 0: The total amount of wall time = 384.088786 + 0: The maximum resident set size (KB) = 1006000 Test 111 rap_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/hrrr_control_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/hrrr_control_dyn32_phy32 Checking test 112 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3875,14 +3875,14 @@ Checking test 112 hrrr_control_dyn32_phy32 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 = 200.017873 - 0: The maximum resident set size (KB) = 951176 + 0: The total amount of wall time = 202.081250 + 0: The maximum resident set size (KB) = 960132 Test 112 hrrr_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/rap_2threads_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/rap_2threads_dyn32_phy32 Checking test 113 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3929,14 +3929,14 @@ Checking test 113 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 367.366771 - 0: The maximum resident set size (KB) = 1023284 + 0: The total amount of wall time = 368.160934 + 0: The maximum resident set size (KB) = 1019484 Test 113 rap_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/hrrr_control_2threads_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/hrrr_control_2threads_dyn32_phy32 Checking test 114 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3983,14 +3983,14 @@ Checking test 114 hrrr_control_2threads_dyn32_phy32 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 = 189.258313 - 0: The maximum resident set size (KB) = 1007412 + 0: The total amount of wall time = 191.788661 + 0: The maximum resident set size (KB) = 1003284 Test 114 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/hrrr_control_decomp_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/hrrr_control_decomp_dyn32_phy32 Checking test 115 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4037,14 +4037,14 @@ Checking test 115 hrrr_control_decomp_dyn32_phy32 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 = 210.313424 - 0: The maximum resident set size (KB) = 897644 + 0: The total amount of wall time = 212.757297 + 0: The maximum resident set size (KB) = 892236 Test 115 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/rap_restart_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/rap_restart_dyn32_phy32 Checking test 116 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4083,14 +4083,14 @@ Checking test 116 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 289.648644 - 0: The maximum resident set size (KB) = 940136 + 0: The total amount of wall time = 284.192910 + 0: The maximum resident set size (KB) = 946192 Test 116 rap_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/hrrr_control_restart_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/hrrr_control_restart_dyn32_phy32 Checking test 117 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4129,14 +4129,14 @@ Checking test 117 hrrr_control_restart_dyn32_phy32 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 = 104.630826 - 0: The maximum resident set size (KB) = 864996 + 0: The total amount of wall time = 103.403456 + 0: The maximum resident set size (KB) = 860124 Test 117 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/rap_control_dyn64_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/rap_control_dyn64_phy32 Checking test 118 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4183,81 +4183,81 @@ Checking test 118 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 246.377412 - 0: The maximum resident set size (KB) = 966044 + 0: The total amount of wall time = 250.431173 + 0: The maximum resident set size (KB) = 966048 Test 118 rap_control_dyn64_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/rap_control_debug_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/rap_control_debug_dyn32_phy32 Checking test 119 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 266.429556 - 0: The maximum resident set size (KB) = 1055712 + 0: The total amount of wall time = 269.110345 + 0: The maximum resident set size (KB) = 1049756 Test 119 rap_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/hrrr_control_debug_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/hrrr_control_debug_dyn32_phy32 Checking test 120 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 259.643959 - 0: The maximum resident set size (KB) = 1053308 + 0: The total amount of wall time = 268.160678 + 0: The maximum resident set size (KB) = 1051076 Test 120 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/rap_control_dyn64_phy32_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_debug_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/rap_control_dyn64_phy32_debug Checking test 121 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 278.576594 - 0: The maximum resident set size (KB) = 1094600 + 0: The total amount of wall time = 273.943956 + 0: The maximum resident set size (KB) = 1093808 Test 121 rap_control_dyn64_phy32_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/hafs_regional_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/hafs_regional_atm Checking test 122 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 241.232466 - 0: The maximum resident set size (KB) = 1051672 + 0: The total amount of wall time = 246.656314 + 0: The maximum resident set size (KB) = 1042644 Test 122 hafs_regional_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/hafs_regional_atm_thompson_gfdlsf +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/hafs_regional_atm_thompson_gfdlsf Checking test 123 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 335.617185 - 0: The maximum resident set size (KB) = 1418408 + 0: The total amount of wall time = 349.790285 + 0: The maximum resident set size (KB) = 1411596 Test 123 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/hafs_regional_atm_ocn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/hafs_regional_atm_ocn Checking test 124 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4266,14 +4266,14 @@ Checking test 124 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 386.527487 - 0: The maximum resident set size (KB) = 1229496 + 0: The total amount of wall time = 381.344214 + 0: The maximum resident set size (KB) = 1219068 Test 124 hafs_regional_atm_ocn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/hafs_regional_atm_wav +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm_wav +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/hafs_regional_atm_wav Checking test 125 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4282,14 +4282,14 @@ Checking test 125 hafs_regional_atm_wav results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 750.801710 - 0: The maximum resident set size (KB) = 1261348 + 0: The total amount of wall time = 750.619819 + 0: The maximum resident set size (KB) = 1251692 Test 125 hafs_regional_atm_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/hafs_regional_atm_ocn_wav +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/hafs_regional_atm_ocn_wav Checking test 126 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4300,28 +4300,28 @@ Checking test 126 hafs_regional_atm_ocn_wav 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 = 848.422145 - 0: The maximum resident set size (KB) = 1273080 + 0: The total amount of wall time = 846.252388 + 0: The maximum resident set size (KB) = 1273820 Test 126 hafs_regional_atm_ocn_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/hafs_regional_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/hafs_regional_1nest_atm Checking test 127 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 321.068601 - 0: The maximum resident set size (KB) = 508272 + 0: The total amount of wall time = 320.283000 + 0: The maximum resident set size (KB) = 499548 Test 127 hafs_regional_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/hafs_regional_telescopic_2nests_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/hafs_regional_telescopic_2nests_atm Checking test 128 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4330,28 +4330,28 @@ Checking test 128 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 368.131850 - 0: The maximum resident set size (KB) = 514496 + 0: The total amount of wall time = 372.292849 + 0: The maximum resident set size (KB) = 510100 Test 128 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_global_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/hafs_global_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_global_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/hafs_global_1nest_atm Checking test 129 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 146.857119 - 0: The maximum resident set size (KB) = 354240 + 0: The total amount of wall time = 151.624711 + 0: The maximum resident set size (KB) = 342672 Test 129 hafs_global_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_global_multiple_4nests_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/hafs_global_multiple_4nests_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_global_multiple_4nests_atm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/hafs_global_multiple_4nests_atm Checking test 130 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4369,14 +4369,14 @@ Checking test 130 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 416.586668 - 0: The maximum resident set size (KB) = 452612 + 0: The total amount of wall time = 415.939851 + 0: The maximum resident set size (KB) = 420416 Test 130 hafs_global_multiple_4nests_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/hafs_regional_specified_moving_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/hafs_regional_specified_moving_1nest_atm Checking test 131 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4385,28 +4385,28 @@ Checking test 131 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 205.264738 - 0: The maximum resident set size (KB) = 523104 + 0: The total amount of wall time = 206.098547 + 0: The maximum resident set size (KB) = 516820 Test 131 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/hafs_regional_storm_following_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/hafs_regional_storm_following_1nest_atm Checking test 132 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 193.360254 - 0: The maximum resident set size (KB) = 519748 + 0: The total amount of wall time = 193.667505 + 0: The maximum resident set size (KB) = 519772 Test 132 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/hafs_regional_storm_following_1nest_atm_ocn Checking test 133 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4415,42 +4415,42 @@ Checking test 133 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 227.299365 - 0: The maximum resident set size (KB) = 566884 + 0: The total amount of wall time = 225.537452 + 0: The maximum resident set size (KB) = 560596 Test 133 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_global_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/hafs_global_storm_following_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_global_storm_following_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/hafs_global_storm_following_1nest_atm Checking test 134 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 59.368887 - 0: The maximum resident set size (KB) = 368432 + 0: The total amount of wall time = 59.170560 + 0: The maximum resident set size (KB) = 366092 Test 134 hafs_global_storm_following_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_debug results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 729.005972 - 0: The maximum resident set size (KB) = 585912 + 0: The total amount of wall time = 696.704907 + 0: The maximum resident set size (KB) = 583856 Test 135 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 136 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4461,14 +4461,14 @@ Checking test 136 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 487.380268 - 0: The maximum resident set size (KB) = 619804 + 0: The total amount of wall time = 484.385240 + 0: The maximum resident set size (KB) = 617536 Test 136 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_docn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/hafs_regional_docn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_docn +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/hafs_regional_docn Checking test 137 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4476,14 +4476,14 @@ Checking test 137 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 368.004497 - 0: The maximum resident set size (KB) = 1228220 + 0: The total amount of wall time = 360.542270 + 0: The maximum resident set size (KB) = 1228972 Test 137 hafs_regional_docn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_docn_oisst -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/hafs_regional_docn_oisst +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_docn_oisst +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/hafs_regional_docn_oisst Checking test 138 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4491,131 +4491,131 @@ Checking test 138 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 367.277816 - 0: The maximum resident set size (KB) = 1213784 + 0: The total amount of wall time = 369.123701 + 0: The maximum resident set size (KB) = 1218324 Test 138 hafs_regional_docn_oisst PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_datm_cdeps -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/hafs_regional_datm_cdeps +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_datm_cdeps +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/hafs_regional_datm_cdeps Checking test 139 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 969.250893 - 0: The maximum resident set size (KB) = 1041436 + 0: The total amount of wall time = 939.973876 + 0: The maximum resident set size (KB) = 1044716 Test 139 hafs_regional_datm_cdeps PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/datm_cdeps_control_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/datm_cdeps_control_cfsr Checking test 140 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 158.525673 - 0: The maximum resident set size (KB) = 1061060 + 0: The total amount of wall time = 157.145920 + 0: The maximum resident set size (KB) = 1056316 Test 140 datm_cdeps_control_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/datm_cdeps_restart_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/datm_cdeps_restart_cfsr Checking test 141 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 97.436402 - 0: The maximum resident set size (KB) = 1026836 + 0: The total amount of wall time = 92.965391 + 0: The maximum resident set size (KB) = 1037296 Test 141 datm_cdeps_restart_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/datm_cdeps_control_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/datm_cdeps_control_gefs Checking test 142 datm_cdeps_control_gefs 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.396301 - 0: The maximum resident set size (KB) = 969712 + 0: The total amount of wall time = 153.796011 + 0: The maximum resident set size (KB) = 964856 Test 142 datm_cdeps_control_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_iau_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/datm_cdeps_iau_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_iau_gefs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/datm_cdeps_iau_gefs Checking test 143 datm_cdeps_iau_gefs 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 = 154.425470 - 0: The maximum resident set size (KB) = 963740 + 0: The total amount of wall time = 155.272914 + 0: The maximum resident set size (KB) = 960940 Test 143 datm_cdeps_iau_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_stochy_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/datm_cdeps_stochy_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_stochy_gefs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/datm_cdeps_stochy_gefs Checking test 144 datm_cdeps_stochy_gefs 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 = 154.605799 - 0: The maximum resident set size (KB) = 969296 + 0: The total amount of wall time = 152.647661 + 0: The maximum resident set size (KB) = 963024 Test 144 datm_cdeps_stochy_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_ciceC_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/datm_cdeps_ciceC_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_ciceC_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/datm_cdeps_ciceC_cfsr Checking test 145 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 156.279716 - 0: The maximum resident set size (KB) = 1055892 + 0: The total amount of wall time = 155.135922 + 0: The maximum resident set size (KB) = 1061404 Test 145 datm_cdeps_ciceC_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/datm_cdeps_bulk_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/datm_cdeps_bulk_cfsr Checking test 146 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.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.299140 - 0: The maximum resident set size (KB) = 1059052 + 0: The total amount of wall time = 153.674676 + 0: The maximum resident set size (KB) = 1056440 Test 146 datm_cdeps_bulk_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/datm_cdeps_bulk_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/datm_cdeps_bulk_gefs Checking test 147 datm_cdeps_bulk_gefs 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.128012 - 0: The maximum resident set size (KB) = 966880 + 0: The total amount of wall time = 148.598509 + 0: The maximum resident set size (KB) = 964344 Test 147 datm_cdeps_bulk_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/datm_cdeps_mx025_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/datm_cdeps_mx025_cfsr Checking test 148 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4624,14 +4624,14 @@ Checking test 148 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 443.816167 - 0: The maximum resident set size (KB) = 883840 + 0: The total amount of wall time = 413.174837 + 0: The maximum resident set size (KB) = 879748 Test 148 datm_cdeps_mx025_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/datm_cdeps_mx025_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/datm_cdeps_mx025_gefs Checking test 149 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4640,77 +4640,77 @@ Checking test 149 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 427.769214 - 0: The maximum resident set size (KB) = 934616 + 0: The total amount of wall time = 443.646733 + 0: The maximum resident set size (KB) = 930548 Test 149 datm_cdeps_mx025_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/datm_cdeps_multiple_files_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/datm_cdeps_multiple_files_cfsr Checking test 150 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 159.443521 - 0: The maximum resident set size (KB) = 1063384 + 0: The total amount of wall time = 155.504333 + 0: The maximum resident set size (KB) = 1081332 Test 150 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/datm_cdeps_3072x1536_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/datm_cdeps_3072x1536_cfsr Checking test 151 datm_cdeps_3072x1536_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 222.593154 - 0: The maximum resident set size (KB) = 2304896 + 0: The total amount of wall time = 230.930199 + 0: The maximum resident set size (KB) = 2353676 Test 151 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_gfs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/datm_cdeps_gfs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_gfs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/datm_cdeps_gfs Checking test 152 datm_cdeps_gfs 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 = 256.109077 - 0: The maximum resident set size (KB) = 2364064 + 0: The total amount of wall time = 228.331816 + 0: The maximum resident set size (KB) = 2370752 Test 152 datm_cdeps_gfs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/datm_cdeps_debug_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/datm_cdeps_debug_cfsr Checking test 153 datm_cdeps_debug_cfsr 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 = 364.021300 - 0: The maximum resident set size (KB) = 994388 + 0: The total amount of wall time = 353.184794 + 0: The maximum resident set size (KB) = 970916 Test 153 datm_cdeps_debug_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_control_cfsr_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/datm_cdeps_control_cfsr_faster +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_control_cfsr_faster +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/datm_cdeps_control_cfsr_faster Checking test 154 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.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 = 157.947977 - 0: The maximum resident set size (KB) = 1056312 + 0: The total amount of wall time = 153.242796 + 0: The maximum resident set size (KB) = 1068364 Test 154 datm_cdeps_control_cfsr_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/datm_cdeps_lnd_gswp3 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_lnd_gswp3 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/datm_cdeps_lnd_gswp3 Checking test 155 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4719,14 +4719,14 @@ Checking test 155 datm_cdeps_lnd_gswp3 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.766047 - 0: The maximum resident set size (KB) = 265700 + 0: The total amount of wall time = 7.502238 + 0: The maximum resident set size (KB) = 258556 Test 155 datm_cdeps_lnd_gswp3 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/datm_cdeps_lnd_gswp3_rst +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_lnd_gswp3 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/datm_cdeps_lnd_gswp3_rst Checking test 156 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4735,14 +4735,14 @@ Checking test 156 datm_cdeps_lnd_gswp3_rst 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 = 15.414734 - 0: The maximum resident set size (KB) = 263520 + 0: The total amount of wall time = 14.832380 + 0: The maximum resident set size (KB) = 256352 Test 156 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_atmlnd_sbs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_p8_atmlnd_sbs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8_atmlnd_sbs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_p8_atmlnd_sbs Checking test 157 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4827,14 +4827,14 @@ Checking test 157 control_p8_atmlnd_sbs 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 = 209.935483 - 0: The maximum resident set size (KB) = 1601520 + 0: The total amount of wall time = 206.793161 + 0: The maximum resident set size (KB) = 1614828 Test 157 control_p8_atmlnd_sbs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/atmwav_control_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/atmwav_control_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/atmwav_control_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/atmwav_control_noaero_p8 Checking test 158 atmwav_control_noaero_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4877,14 +4877,14 @@ Checking test 158 atmwav_control_noaero_p8 results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 96.622305 - 0: The maximum resident set size (KB) = 1628316 + 0: The total amount of wall time = 95.452581 + 0: The maximum resident set size (KB) = 1628976 Test 158 atmwav_control_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_atmwav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/control_atmwav +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_atmwav +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_atmwav Checking test 159 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4928,14 +4928,14 @@ Checking test 159 control_atmwav 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.974736 - 0: The maximum resident set size (KB) = 666248 + 0: The total amount of wall time = 89.860521 + 0: The maximum resident set size (KB) = 661988 Test 159 control_atmwav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/atmaero_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/atmaero_control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/atmaero_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/atmaero_control_p8 Checking test 160 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4979,14 +4979,14 @@ Checking test 160 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 233.222503 - 0: The maximum resident set size (KB) = 2970312 + 0: The total amount of wall time = 235.601520 + 0: The maximum resident set size (KB) = 2958552 Test 160 atmaero_control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/atmaero_control_p8_rad -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/atmaero_control_p8_rad +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/atmaero_control_p8_rad +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/atmaero_control_p8_rad Checking test 161 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5030,14 +5030,14 @@ Checking test 161 atmaero_control_p8_rad results .... Comparing 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.425931 - 0: The maximum resident set size (KB) = 3035100 + 0: The total amount of wall time = 285.793675 + 0: The maximum resident set size (KB) = 3048504 Test 161 atmaero_control_p8_rad PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/atmaero_control_p8_rad_micro -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/atmaero_control_p8_rad_micro +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/atmaero_control_p8_rad_micro +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/atmaero_control_p8_rad_micro Checking test 162 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5081,14 +5081,14 @@ Checking test 162 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 299.575954 - 0: The maximum resident set size (KB) = 3052544 + 0: The total amount of wall time = 288.907156 + 0: The maximum resident set size (KB) = 3051668 Test 162 atmaero_control_p8_rad_micro PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_atmaq -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/regional_atmaq +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_atmaq +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/regional_atmaq Checking test 163 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5104,14 +5104,14 @@ Checking test 163 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 656.993879 - 0: The maximum resident set size (KB) = 1444156 + 0: The total amount of wall time = 651.062873 + 0: The maximum resident set size (KB) = 1429812 Test 163 regional_atmaq PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_atmaq_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/regional_atmaq_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_atmaq_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/regional_atmaq_debug Checking test 164 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5125,14 +5125,14 @@ Checking test 164 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1214.550696 - 0: The maximum resident set size (KB) = 1373460 + 0: The total amount of wall time = 1196.892447 + 0: The maximum resident set size (KB) = 1385564 Test 164 regional_atmaq_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_atmaq_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_28362/regional_atmaq_faster +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_atmaq_faster +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/regional_atmaq_faster Checking test 165 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5148,12 +5148,12 @@ Checking test 165 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 593.157634 - 0: The maximum resident set size (KB) = 1457532 + 0: The total amount of wall time = 567.430825 + 0: The maximum resident set size (KB) = 1459420 Test 165 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Wed Apr 12 03:33:33 UTC 2023 -Elapsed time: 01h:29m:45s. Have a nice day! +Fri Apr 14 09:28:20 UTC 2023 +Elapsed time: 07h:01m:56s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index b283532ab92..e3defdf3a0e 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,43 +1,43 @@ -Tue Apr 11 23:24:30 UTC 2023 +Fri Apr 14 12:11:54 UTC 2023 Start Regression test -Compile 001 elapsed time 1843 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 002 elapsed time 1909 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 003 elapsed time 1721 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 004 elapsed time 373 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 345 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 1548 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 007 elapsed time 1663 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 008 elapsed time 3366 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 009 elapsed time 1695 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 010 elapsed time 1635 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 011 elapsed time 1523 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 012 elapsed time 1479 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 013 elapsed time 2125 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 014 elapsed time 387 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 270 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 1449 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 017 elapsed time 1497 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 018 elapsed time 307 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 567 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 1907 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 021 elapsed time 254 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 2312 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 023 elapsed time 1617 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 024 elapsed time 434 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 025 elapsed time 163 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 302 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 027 elapsed time 144 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 028 elapsed time 1537 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 029 elapsed time 1611 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 030 elapsed time 1616 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 031 elapsed time 1467 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 032 elapsed time 1465 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 033 elapsed time 217 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 034 elapsed time 1897 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8_mixedmode -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/cpld_control_p8_mixedmode +Compile 001 elapsed time 1912 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 002 elapsed time 2012 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 003 elapsed time 1842 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 004 elapsed time 304 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 283 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 1711 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 007 elapsed time 1701 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 008 elapsed time 3326 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 009 elapsed time 1793 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 010 elapsed time 1694 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 011 elapsed time 1700 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 012 elapsed time 1546 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 013 elapsed time 2023 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 014 elapsed time 281 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 227 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 1570 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 017 elapsed time 1610 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 018 elapsed time 237 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 208 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 1683 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 021 elapsed time 249 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 2158 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 023 elapsed time 1671 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 024 elapsed time 277 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 025 elapsed time 144 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 265 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 027 elapsed time 104 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 028 elapsed time 1689 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 029 elapsed time 1650 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 030 elapsed time 1639 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 031 elapsed time 1574 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 032 elapsed time 1558 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 033 elapsed time 221 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 034 elapsed time 1876 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8_mixedmode +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -102,14 +102,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 519.951097 - 0: The maximum resident set size (KB) = 1756436 + 0: The total amount of wall time = 405.468786 + 0: The maximum resident set size (KB) = 1755760 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_gfsv17 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/cpld_control_gfsv17 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_gfsv17 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -173,14 +173,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 386.634467 - 0: The maximum resident set size (KB) = 1647312 + 0: The total amount of wall time = 299.469959 + 0: The maximum resident set size (KB) = 1638476 Test 002 cpld_control_gfsv17 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/cpld_control_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -245,14 +245,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 590.207986 - 0: The maximum resident set size (KB) = 1796276 + 0: The total amount of wall time = 459.413422 + 0: The maximum resident set size (KB) = 1776484 Test 003 cpld_control_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/cpld_restart_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -305,14 +305,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 333.093747 - 0: The maximum resident set size (KB) = 1506088 + 0: The total amount of wall time = 260.296463 + 0: The maximum resident set size (KB) = 1490316 Test 004 cpld_restart_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/cpld_control_qr_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -377,14 +377,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 588.286790 - 0: The maximum resident set size (KB) = 1805748 + 0: The total amount of wall time = 452.912666 + 0: The maximum resident set size (KB) = 1816216 Test 005 cpld_control_qr_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/cpld_restart_qr_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -437,14 +437,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 340.467154 - 0: The maximum resident set size (KB) = 1526184 + 0: The total amount of wall time = 266.730880 + 0: The maximum resident set size (KB) = 1521900 Test 006 cpld_restart_qr_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/cpld_2threads_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -497,14 +497,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 609.987778 - 0: The maximum resident set size (KB) = 2000200 + 0: The total amount of wall time = 477.547022 + 0: The maximum resident set size (KB) = 1995268 Test 007 cpld_2threads_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/cpld_decomp_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -557,14 +557,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 596.864208 - 0: The maximum resident set size (KB) = 1791536 + 0: The total amount of wall time = 456.154474 + 0: The maximum resident set size (KB) = 1797756 Test 008 cpld_decomp_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/cpld_mpi_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -617,14 +617,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 498.493992 - 0: The maximum resident set size (KB) = 1754092 + 0: The total amount of wall time = 384.908843 + 0: The maximum resident set size (KB) = 1729140 Test 009 cpld_mpi_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_ciceC_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/cpld_control_ciceC_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_ciceC_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -689,14 +689,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 577.666877 - 0: The maximum resident set size (KB) = 1797920 + 0: The total amount of wall time = 453.030848 + 0: The maximum resident set size (KB) = 1802208 Test 010 cpld_control_ciceC_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_noaero_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/cpld_control_noaero_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_noaero_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/cpld_control_noaero_p8 Checking test 011 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -760,14 +760,14 @@ Checking test 011 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 384.582042 - 0: The maximum resident set size (KB) = 1638480 + 0: The total amount of wall time = 344.114858 + 0: The maximum resident set size (KB) = 1617224 Test 011 cpld_control_noaero_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/cpld_control_nowave_noaero_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_c96_noaero_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/cpld_control_nowave_noaero_p8 Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -829,14 +829,14 @@ Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 408.370942 - 0: The maximum resident set size (KB) = 1691008 + 0: The total amount of wall time = 346.710524 + 0: The maximum resident set size (KB) = 1674664 Test 012 cpld_control_nowave_noaero_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_debug_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/cpld_debug_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_debug_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/cpld_debug_p8 Checking test 013 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -889,14 +889,14 @@ Checking test 013 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 699.200305 - 0: The maximum resident set size (KB) = 1830272 + 0: The total amount of wall time = 680.418989 + 0: The maximum resident set size (KB) = 1823880 Test 013 cpld_debug_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_debug_noaero_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/cpld_debug_noaero_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_debug_noaero_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/cpld_debug_noaero_p8 Checking test 014 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -948,14 +948,14 @@ Checking test 014 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 489.981137 - 0: The maximum resident set size (KB) = 1636760 + 0: The total amount of wall time = 473.512864 + 0: The maximum resident set size (KB) = 1633868 Test 014 cpld_debug_noaero_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/cpld_control_noaero_p8_agrid +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_noaero_p8_agrid +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/cpld_control_noaero_p8_agrid Checking test 015 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1017,14 +1017,14 @@ Checking test 015 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 478.617877 - 0: The maximum resident set size (KB) = 1692080 + 0: The total amount of wall time = 363.338188 + 0: The maximum resident set size (KB) = 1687976 Test 015 cpld_control_noaero_p8_agrid PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_c48 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/cpld_control_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_c48 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/cpld_control_c48 Checking test 016 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1074,14 +1074,14 @@ Checking test 016 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 826.560298 - 0: The maximum resident set size (KB) = 2781984 + 0: The total amount of wall time = 795.306407 + 0: The maximum resident set size (KB) = 2781516 Test 016 cpld_control_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_warmstart_c48 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/cpld_warmstart_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_warmstart_c48 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/cpld_warmstart_c48 Checking test 017 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1131,14 +1131,14 @@ Checking test 017 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 278.111996 - 0: The maximum resident set size (KB) = 2775356 + 0: The total amount of wall time = 211.269787 + 0: The maximum resident set size (KB) = 2769040 Test 017 cpld_warmstart_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_warmstart_c48 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/cpld_restart_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_warmstart_c48 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/cpld_restart_c48 Checking test 018 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1188,14 +1188,14 @@ Checking test 018 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 122.792767 - 0: The maximum resident set size (KB) = 2219612 + 0: The total amount of wall time = 112.359935 + 0: The maximum resident set size (KB) = 2202280 Test 018 cpld_restart_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8_faster -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/cpld_control_p8_faster +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8_faster +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/cpld_control_p8_faster Checking test 019 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1260,14 +1260,14 @@ Checking test 019 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 484.582224 - 0: The maximum resident set size (KB) = 1801072 + 0: The total amount of wall time = 429.890638 + 0: The maximum resident set size (KB) = 1780712 Test 019 cpld_control_p8_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_CubedSphereGrid -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_CubedSphereGrid +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_CubedSphereGrid +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_CubedSphereGrid Checking test 020 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1294,28 +1294,28 @@ Checking test 020 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 197.158627 - 0: The maximum resident set size (KB) = 573860 + 0: The total amount of wall time = 182.588851 + 0: The maximum resident set size (KB) = 570340 Test 020 control_CubedSphereGrid PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_CubedSphereGrid_parallel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_CubedSphereGrid_parallel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_CubedSphereGrid_parallel +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_CubedSphereGrid_parallel Checking test 021 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc ............ALT CHECK......OK - 0: The total amount of wall time = 218.400439 - 0: The maximum resident set size (KB) = 578696 + 0: The total amount of wall time = 180.902767 + 0: The maximum resident set size (KB) = 569936 Test 021 control_CubedSphereGrid_parallel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_latlon -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_latlon +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_latlon +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_latlon Checking test 022 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1326,32 +1326,32 @@ Checking test 022 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 223.652183 - 0: The maximum resident set size (KB) = 583248 + 0: The total amount of wall time = 186.390912 + 0: The maximum resident set size (KB) = 575196 Test 022 control_latlon PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_wrtGauss_netcdf_parallel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_wrtGauss_netcdf_parallel Checking test 023 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK + Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 252.398017 - 0: The maximum resident set size (KB) = 576076 + 0: The total amount of wall time = 194.409525 + 0: The maximum resident set size (KB) = 569040 Test 023 control_wrtGauss_netcdf_parallel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_c48 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_c48 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_c48 Checking test 024 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1390,14 +1390,14 @@ Checking test 024 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 600.820712 -0: The maximum resident set size (KB) = 801888 +0: The total amount of wall time = 596.539514 +0: The maximum resident set size (KB) = 798244 Test 024 control_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_c192 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_c192 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_c192 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_c192 Checking test 025 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1408,14 +1408,14 @@ Checking test 025 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 808.636988 - 0: The maximum resident set size (KB) = 697568 + 0: The total amount of wall time = 733.071241 + 0: The maximum resident set size (KB) = 689240 Test 025 control_c192 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_c384 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_c384 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_c384 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_c384 Checking test 026 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1426,14 +1426,14 @@ Checking test 026 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1028.274224 - 0: The maximum resident set size (KB) = 1061584 + 0: The total amount of wall time = 938.596007 + 0: The maximum resident set size (KB) = 1059096 Test 026 control_c384 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_c384gdas -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_c384gdas +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_c384gdas +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_c384gdas Checking test 027 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1476,14 +1476,14 @@ Checking test 027 control_c384gdas 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 = 860.611985 - 0: The maximum resident set size (KB) = 1203012 + 0: The total amount of wall time = 806.458165 + 0: The maximum resident set size (KB) = 1199064 -Test 027 control_c384gdas PASS Tries: 2 +Test 027 control_c384gdas PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_stochy -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_stochy +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_stochy +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_stochy Checking test 028 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1494,28 +1494,28 @@ Checking test 028 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 128.848016 - 0: The maximum resident set size (KB) = 583128 + 0: The total amount of wall time = 123.690841 + 0: The maximum resident set size (KB) = 575912 Test 028 control_stochy PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_stochy -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_stochy_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_stochy +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_stochy_restart Checking test 029 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 112.254747 - 0: The maximum resident set size (KB) = 398800 + 0: The total amount of wall time = 69.123844 + 0: The maximum resident set size (KB) = 391076 Test 029 control_stochy_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_lndp -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_lndp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_lndp +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_lndp Checking test 030 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1526,14 +1526,14 @@ Checking test 030 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 123.661061 - 0: The maximum resident set size (KB) = 583620 + 0: The total amount of wall time = 114.391555 + 0: The maximum resident set size (KB) = 573048 Test 030 control_lndp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_iovr4 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_iovr4 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_iovr4 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_iovr4 Checking test 031 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1548,14 +1548,14 @@ Checking test 031 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 233.583229 - 0: The maximum resident set size (KB) = 574412 + 0: The total amount of wall time = 192.319088 + 0: The maximum resident set size (KB) = 572756 Test 031 control_iovr4 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_iovr5 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_iovr5 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_iovr5 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_iovr5 Checking test 032 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1570,14 +1570,14 @@ Checking test 032 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 230.686276 - 0: The maximum resident set size (KB) = 582800 + 0: The total amount of wall time = 191.515368 + 0: The maximum resident set size (KB) = 572148 Test 032 control_iovr5 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_p8 Checking test 033 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1624,14 +1624,14 @@ Checking test 033 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 293.076452 - 0: The maximum resident set size (KB) = 1536200 + 0: The total amount of wall time = 235.175186 + 0: The maximum resident set size (KB) = 1549076 Test 033 control_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_restart_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_restart_p8 Checking test 034 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1670,14 +1670,14 @@ Checking test 034 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 133.319056 - 0: The maximum resident set size (KB) = 782996 + 0: The total amount of wall time = 119.207904 + 0: The maximum resident set size (KB) = 778908 Test 034 control_restart_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_qr_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_qr_p8 Checking test 035 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1724,14 +1724,14 @@ Checking test 035 control_qr_p8 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 = 241.802248 - 0: The maximum resident set size (KB) = 1545056 + 0: The total amount of wall time = 232.015948 + 0: The maximum resident set size (KB) = 1553828 Test 035 control_qr_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_restart_qr_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_restart_qr_p8 Checking test 036 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1770,14 +1770,14 @@ Checking test 036 control_restart_qr_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 137.116133 - 0: The maximum resident set size (KB) = 797876 + 0: The total amount of wall time = 122.694696 + 0: The maximum resident set size (KB) = 778116 Test 036 control_restart_qr_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_decomp_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_decomp_p8 Checking test 037 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1820,14 +1820,14 @@ Checking test 037 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 242.361151 - 0: The maximum resident set size (KB) = 1540712 + 0: The total amount of wall time = 237.167871 + 0: The maximum resident set size (KB) = 1541212 Test 037 control_decomp_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_2threads_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_2threads_p8 Checking test 038 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1870,14 +1870,14 @@ Checking test 038 control_2threads_p8 results .... Comparing 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.392519 - 0: The maximum resident set size (KB) = 1620584 + 0: The total amount of wall time = 219.406599 + 0: The maximum resident set size (KB) = 1627740 Test 038 control_2threads_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_lndp -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_p8_lndp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8_lndp +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_p8_lndp Checking test 039 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1896,14 +1896,14 @@ Checking test 039 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 498.605810 - 0: The maximum resident set size (KB) = 1553188 + 0: The total amount of wall time = 433.614048 + 0: The maximum resident set size (KB) = 1538728 Test 039 control_p8_lndp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_rrtmgp -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_p8_rrtmgp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8_rrtmgp +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_p8_rrtmgp Checking test 040 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1950,14 +1950,14 @@ Checking test 040 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 362.086596 - 0: The maximum resident set size (KB) = 1620296 + 0: The total amount of wall time = 309.143838 + 0: The maximum resident set size (KB) = 1616396 Test 040 control_p8_rrtmgp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_mynn -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_p8_mynn +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8_mynn +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_p8_mynn Checking test 041 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2004,14 +2004,14 @@ Checking test 041 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 239.104659 - 0: The maximum resident set size (KB) = 1554600 + 0: The total amount of wall time = 238.187812 + 0: The maximum resident set size (KB) = 1553880 Test 041 control_p8_mynn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/merra2_thompson -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/merra2_thompson +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/merra2_thompson +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/merra2_thompson Checking test 042 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2058,14 +2058,14 @@ Checking test 042 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 319.985603 - 0: The maximum resident set size (KB) = 1555116 + 0: The total amount of wall time = 259.791490 + 0: The maximum resident set size (KB) = 1557596 Test 042 merra2_thompson PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/regional_control +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/regional_control Checking test 043 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2076,28 +2076,28 @@ Checking test 043 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 487.117348 - 0: The maximum resident set size (KB) = 788868 + 0: The total amount of wall time = 410.564509 + 0: The maximum resident set size (KB) = 782808 Test 043 regional_control PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/regional_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/regional_restart Checking test 044 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 214.534516 - 0: The maximum resident set size (KB) = 779152 + 0: The total amount of wall time = 204.715087 + 0: The maximum resident set size (KB) = 781256 Test 044 regional_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/regional_control_qr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/regional_control_qr Checking test 045 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2108,28 +2108,28 @@ Checking test 045 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 476.910879 - 0: The maximum resident set size (KB) = 789084 + 0: The total amount of wall time = 405.218811 + 0: The maximum resident set size (KB) = 786236 Test 045 regional_control_qr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/regional_restart_qr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/regional_restart_qr Checking test 046 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 227.603513 - 0: The maximum resident set size (KB) = 782300 + 0: The total amount of wall time = 206.530220 + 0: The maximum resident set size (KB) = 776288 Test 046 regional_restart_qr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/regional_decomp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/regional_decomp Checking test 047 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2140,14 +2140,14 @@ Checking test 047 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 491.831488 - 0: The maximum resident set size (KB) = 785200 + 0: The total amount of wall time = 425.624790 + 0: The maximum resident set size (KB) = 779244 Test 047 regional_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/regional_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/regional_2threads Checking test 048 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2158,28 +2158,28 @@ Checking test 048 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 333.378220 - 0: The maximum resident set size (KB) = 778260 + 0: The total amount of wall time = 252.972810 + 0: The maximum resident set size (KB) = 766960 Test 048 regional_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/regional_netcdf_parallel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_netcdf_parallel +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/regional_netcdf_parallel Checking test 049 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 472.846010 - 0: The maximum resident set size (KB) = 784296 + 0: The total amount of wall time = 401.892189 + 0: The maximum resident set size (KB) = 781416 Test 049 regional_netcdf_parallel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/regional_2dwrtdecomp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/regional_2dwrtdecomp Checking test 050 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2190,14 +2190,14 @@ Checking test 050 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 487.336789 - 0: The maximum resident set size (KB) = 790132 + 0: The total amount of wall time = 400.802083 + 0: The maximum resident set size (KB) = 789768 Test 050 regional_2dwrtdecomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/rap_control +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/rap_control Checking test 051 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2244,14 +2244,14 @@ Checking test 051 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 678.817939 - 0: The maximum resident set size (KB) = 952092 + 0: The total amount of wall time = 600.179705 + 0: The maximum resident set size (KB) = 955468 Test 051 rap_control PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/regional_spp_sppt_shum_skeb +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_spp_sppt_shum_skeb +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/regional_spp_sppt_shum_skeb Checking test 052 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2262,14 +2262,14 @@ Checking test 052 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 328.300586 - 0: The maximum resident set size (KB) = 1097304 + 0: The total amount of wall time = 318.983872 + 0: The maximum resident set size (KB) = 1093880 Test 052 regional_spp_sppt_shum_skeb PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/rap_decomp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/rap_decomp Checking test 053 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2316,14 +2316,14 @@ Checking test 053 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 705.383687 - 0: The maximum resident set size (KB) = 954092 + 0: The total amount of wall time = 644.093075 + 0: The maximum resident set size (KB) = 947456 Test 053 rap_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/rap_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/rap_2threads Checking test 054 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2370,14 +2370,14 @@ Checking test 054 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 651.763839 - 0: The maximum resident set size (KB) = 1029944 + 0: The total amount of wall time = 585.384765 + 0: The maximum resident set size (KB) = 1029508 Test 054 rap_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/rap_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/rap_restart Checking test 055 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2416,14 +2416,14 @@ Checking test 055 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 313.815727 - 0: The maximum resident set size (KB) = 837508 + 0: The total amount of wall time = 305.880194 + 0: The maximum resident set size (KB) = 835688 Test 055 rap_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/rap_sfcdiff +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/rap_sfcdiff Checking test 056 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2470,14 +2470,14 @@ Checking test 056 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 664.783311 - 0: The maximum resident set size (KB) = 955932 + 0: The total amount of wall time = 608.233507 + 0: The maximum resident set size (KB) = 943652 Test 056 rap_sfcdiff PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/rap_sfcdiff_decomp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/rap_sfcdiff_decomp Checking test 057 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2524,14 +2524,14 @@ Checking test 057 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 705.856897 - 0: The maximum resident set size (KB) = 945456 + 0: The total amount of wall time = 649.630760 + 0: The maximum resident set size (KB) = 954620 Test 057 rap_sfcdiff_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/rap_sfcdiff_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/rap_sfcdiff_restart Checking test 058 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2570,14 +2570,14 @@ Checking test 058 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 492.105856 - 0: The maximum resident set size (KB) = 844140 + 0: The total amount of wall time = 447.938700 + 0: The maximum resident set size (KB) = 844040 Test 058 rap_sfcdiff_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/hrrr_control +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/hrrr_control Checking test 059 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2624,14 +2624,14 @@ Checking test 059 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 661.819891 - 0: The maximum resident set size (KB) = 949616 + 0: The total amount of wall time = 588.235231 + 0: The maximum resident set size (KB) = 952140 Test 059 hrrr_control PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/hrrr_control_decomp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/hrrr_control_decomp Checking test 060 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2678,14 +2678,14 @@ Checking test 060 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 678.968259 - 0: The maximum resident set size (KB) = 943892 + 0: The total amount of wall time = 619.688147 + 0: The maximum resident set size (KB) = 949928 Test 060 hrrr_control_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/hrrr_control_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/hrrr_control_2threads Checking test 061 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2732,14 +2732,14 @@ Checking test 061 hrrr_control_2threads results .... Comparing 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.530235 - 0: The maximum resident set size (KB) = 1019816 + 0: The total amount of wall time = 561.855761 + 0: The maximum resident set size (KB) = 1022552 Test 061 hrrr_control_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/hrrr_control_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/hrrr_control_restart Checking test 062 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2778,14 +2778,14 @@ Checking test 062 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 480.343955 - 0: The maximum resident set size (KB) = 838152 + 0: The total amount of wall time = 429.894246 + 0: The maximum resident set size (KB) = 837532 Test 062 hrrr_control_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_v1beta -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/rrfs_v1beta +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_v1beta +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/rrfs_v1beta Checking test 063 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2832,14 +2832,14 @@ Checking test 063 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 679.678978 - 0: The maximum resident set size (KB) = 954668 + 0: The total amount of wall time = 608.657612 + 0: The maximum resident set size (KB) = 948876 Test 063 rrfs_v1beta PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_v1nssl -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/rrfs_v1nssl +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_v1nssl +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/rrfs_v1nssl Checking test 064 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2854,14 +2854,14 @@ Checking test 064 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 797.712302 - 0: The maximum resident set size (KB) = 632972 + 0: The total amount of wall time = 730.426550 + 0: The maximum resident set size (KB) = 638760 Test 064 rrfs_v1nssl PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/rrfs_v1nssl_nohailnoccn +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/rrfs_v1nssl_nohailnoccn Checking test 065 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2876,14 +2876,14 @@ Checking test 065 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 772.925526 - 0: The maximum resident set size (KB) = 633032 + 0: The total amount of wall time = 718.502832 + 0: The maximum resident set size (KB) = 634960 Test 065 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/rrfs_smoke_conus13km_hrrr_warm Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2892,14 +2892,14 @@ Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 210.614427 - 0: The maximum resident set size (KB) = 902612 + 0: The total amount of wall time = 200.838913 + 0: The maximum resident set size (KB) = 897836 Test 066 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 067 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2908,14 +2908,14 @@ Checking test 067 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 144.624421 - 0: The maximum resident set size (KB) = 862468 + 0: The total amount of wall time = 128.747844 + 0: The maximum resident set size (KB) = 866792 Test 067 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/rrfs_conus13km_hrrr_warm +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/rrfs_conus13km_hrrr_warm Checking test 068 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2924,14 +2924,14 @@ Checking test 068 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 183.311998 - 0: The maximum resident set size (KB) = 858260 + 0: The total amount of wall time = 176.673975 + 0: The maximum resident set size (KB) = 865764 Test 068 rrfs_conus13km_hrrr_warm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/rrfs_smoke_conus13km_radar_tten_warm Checking test 069 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2940,26 +2940,26 @@ Checking test 069 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 206.014690 - 0: The maximum resident set size (KB) = 914448 + 0: The total amount of wall time = 201.145104 + 0: The maximum resident set size (KB) = 911864 Test 069 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 070 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 97.879935 - 0: The maximum resident set size (KB) = 847872 + 0: The total amount of wall time = 97.733234 + 0: The maximum resident set size (KB) = 846080 Test 070 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_csawmg -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_csawmg +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_csawmg +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_csawmg Checking test 071 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2970,14 +2970,14 @@ Checking test 071 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 471.907785 - 0: The maximum resident set size (KB) = 666672 + 0: The total amount of wall time = 462.694880 + 0: The maximum resident set size (KB) = 675664 Test 071 control_csawmg PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_csawmgt -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_csawmgt +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_csawmgt +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_csawmgt Checking test 072 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2988,14 +2988,14 @@ Checking test 072 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 490.748304 - 0: The maximum resident set size (KB) = 663136 + 0: The total amount of wall time = 456.363240 + 0: The maximum resident set size (KB) = 668580 Test 072 control_csawmgt PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_ras -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_ras +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_ras +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_ras Checking test 073 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3006,26 +3006,26 @@ Checking test 073 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 253.790421 - 0: The maximum resident set size (KB) = 634548 + 0: The total amount of wall time = 247.683632 + 0: The maximum resident set size (KB) = 641064 Test 073 control_ras PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_wam -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_wam +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_wam +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_wam Checking test 074 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 161.419666 - 0: The maximum resident set size (KB) = 478476 + 0: The total amount of wall time = 154.047507 + 0: The maximum resident set size (KB) = 483616 Test 074 control_wam PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_faster -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_p8_faster +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8_faster +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_p8_faster Checking test 075 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3072,14 +3072,14 @@ Checking test 075 control_p8_faster results .... Comparing 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.252824 - 0: The maximum resident set size (KB) = 1538244 + 0: The total amount of wall time = 212.597063 + 0: The maximum resident set size (KB) = 1554372 Test 075 control_p8_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control_faster -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/regional_control_faster +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control_faster +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/regional_control_faster Checking test 076 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3090,56 +3090,56 @@ Checking test 076 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 394.218564 - 0: The maximum resident set size (KB) = 787836 + 0: The total amount of wall time = 377.519121 + 0: The maximum resident set size (KB) = 790896 Test 076 regional_control_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 077 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 1089.032901 - 0: The maximum resident set size (KB) = 935660 + 0: The total amount of wall time = 1086.492201 + 0: The maximum resident set size (KB) = 937312 Test 077 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 078 rrfs_smoke_conus13km_hrrr_warm_debug_2threads 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.056227 - 0: The maximum resident set size (KB) = 897876 + 0: The total amount of wall time = 627.756635 + 0: The maximum resident set size (KB) = 898548 Test 078 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/rrfs_conus13km_hrrr_warm_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/rrfs_conus13km_hrrr_warm_debug Checking test 079 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 966.277302 - 0: The maximum resident set size (KB) = 884700 + 0: The total amount of wall time = 971.429886 + 0: The maximum resident set size (KB) = 898220 Test 079 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_CubedSphereGrid_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_CubedSphereGrid_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_CubedSphereGrid_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_CubedSphereGrid_debug Checking test 080 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3166,334 +3166,334 @@ Checking test 080 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 190.748872 - 0: The maximum resident set size (KB) = 738236 + 0: The total amount of wall time = 185.638112 + 0: The maximum resident set size (KB) = 734020 Test 080 control_CubedSphereGrid_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_wrtGauss_netcdf_parallel_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_wrtGauss_netcdf_parallel_debug Checking test 081 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK + Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 193.548969 - 0: The maximum resident set size (KB) = 730924 + 0: The total amount of wall time = 188.390225 + 0: The maximum resident set size (KB) = 732472 Test 081 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_stochy_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_stochy_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_stochy_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_stochy_debug Checking test 082 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 214.361350 - 0: The maximum resident set size (KB) = 742712 + 0: The total amount of wall time = 212.372778 + 0: The maximum resident set size (KB) = 738136 Test 082 control_stochy_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_lndp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_lndp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_lndp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_lndp_debug Checking test 083 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 193.713829 - 0: The maximum resident set size (KB) = 743532 + 0: The total amount of wall time = 189.747320 + 0: The maximum resident set size (KB) = 734816 Test 083 control_lndp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_csawmg_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_csawmg_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_csawmg_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_csawmg_debug Checking test 084 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 301.807842 - 0: The maximum resident set size (KB) = 783728 + 0: The total amount of wall time = 301.623930 + 0: The maximum resident set size (KB) = 782808 Test 084 control_csawmg_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_csawmgt_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_csawmgt_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_csawmgt_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_csawmgt_debug Checking test 085 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 294.816328 - 0: The maximum resident set size (KB) = 788448 + 0: The total amount of wall time = 294.687494 + 0: The maximum resident set size (KB) = 786044 Test 085 control_csawmgt_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_ras_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_ras_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_ras_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_ras_debug Checking test 086 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 192.695906 - 0: The maximum resident set size (KB) = 747132 + 0: The total amount of wall time = 195.956500 + 0: The maximum resident set size (KB) = 744968 Test 086 control_ras_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_diag_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_diag_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_diag_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_diag_debug Checking test 087 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 196.376520 - 0: The maximum resident set size (KB) = 791512 + 0: The total amount of wall time = 205.464159 + 0: The maximum resident set size (KB) = 786304 Test 087 control_diag_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_debug_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_debug_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_debug_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_debug_p8 Checking test 088 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 216.077000 - 0: The maximum resident set size (KB) = 1563520 + 0: The total amount of wall time = 216.680281 + 0: The maximum resident set size (KB) = 1567396 Test 088 control_debug_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/regional_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/regional_debug Checking test 089 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1275.540527 - 0: The maximum resident set size (KB) = 806972 + 0: The total amount of wall time = 1278.612711 + 0: The maximum resident set size (KB) = 802208 Test 089 regional_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/rap_control_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/rap_control_debug Checking test 090 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 348.813261 - 0: The maximum resident set size (KB) = 1116240 + 0: The total amount of wall time = 354.097487 + 0: The maximum resident set size (KB) = 1116992 Test 090 rap_control_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/hrrr_control_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/hrrr_control_debug Checking test 091 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 342.101940 - 0: The maximum resident set size (KB) = 1112748 + 0: The total amount of wall time = 344.065763 + 0: The maximum resident set size (KB) = 1110976 Test 091 hrrr_control_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/rap_unified_drag_suite_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/rap_unified_drag_suite_debug Checking test 092 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 352.259779 - 0: The maximum resident set size (KB) = 1112972 + 0: The total amount of wall time = 348.603832 + 0: The maximum resident set size (KB) = 1116800 Test 092 rap_unified_drag_suite_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_diag_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/rap_diag_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_diag_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/rap_diag_debug Checking test 093 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 374.171194 - 0: The maximum resident set size (KB) = 1193252 + 0: The total amount of wall time = 369.759524 + 0: The maximum resident set size (KB) = 1193460 Test 093 rap_diag_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/rap_cires_ugwp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/rap_cires_ugwp_debug Checking test 094 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 376.226687 - 0: The maximum resident set size (KB) = 1114824 + 0: The total amount of wall time = 366.378545 + 0: The maximum resident set size (KB) = 1109324 Test 094 rap_cires_ugwp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/rap_unified_ugwp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/rap_unified_ugwp_debug Checking test 095 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 364.755689 - 0: The maximum resident set size (KB) = 1118652 + 0: The total amount of wall time = 362.946359 + 0: The maximum resident set size (KB) = 1108124 Test 095 rap_unified_ugwp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_lndp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/rap_lndp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_lndp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/rap_lndp_debug Checking test 096 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 363.387898 - 0: The maximum resident set size (KB) = 1114596 + 0: The total amount of wall time = 348.470948 + 0: The maximum resident set size (KB) = 1116540 Test 096 rap_lndp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_flake_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/rap_flake_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_flake_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/rap_flake_debug Checking test 097 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 361.649737 - 0: The maximum resident set size (KB) = 1116268 + 0: The total amount of wall time = 346.758562 + 0: The maximum resident set size (KB) = 1116844 Test 097 rap_flake_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_progcld_thompson_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/rap_progcld_thompson_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_progcld_thompson_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/rap_progcld_thompson_debug Checking test 098 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 351.955271 - 0: The maximum resident set size (KB) = 1114972 + 0: The total amount of wall time = 350.822397 + 0: The maximum resident set size (KB) = 1112480 Test 098 rap_progcld_thompson_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_noah_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/rap_noah_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_noah_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/rap_noah_debug Checking test 099 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 343.178308 - 0: The maximum resident set size (KB) = 1115108 + 0: The total amount of wall time = 345.573809 + 0: The maximum resident set size (KB) = 1113340 Test 099 rap_noah_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_sfcdiff_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/rap_sfcdiff_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_sfcdiff_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/rap_sfcdiff_debug Checking test 100 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 347.653368 - 0: The maximum resident set size (KB) = 1113784 + 0: The total amount of wall time = 346.325049 + 0: The maximum resident set size (KB) = 1113548 Test 100 rap_sfcdiff_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/rap_noah_sfcdiff_cires_ugwp_debug Checking test 101 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 579.008175 - 0: The maximum resident set size (KB) = 1115132 + 0: The total amount of wall time = 574.737122 + 0: The maximum resident set size (KB) = 1112964 Test 101 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_v1beta_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/rrfs_v1beta_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_v1beta_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/rrfs_v1beta_debug Checking test 102 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 344.154566 - 0: The maximum resident set size (KB) = 1111288 + 0: The total amount of wall time = 340.927408 + 0: The maximum resident set size (KB) = 1116236 Test 102 rrfs_v1beta_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_wam_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_wam_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_wam_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_wam_debug Checking test 103 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 357.303590 - 0: The maximum resident set size (KB) = 434472 + 0: The total amount of wall time = 353.839794 + 0: The maximum resident set size (KB) = 433480 Test 103 control_wam_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3504,14 +3504,14 @@ Checking test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 311.296796 - 0: The maximum resident set size (KB) = 997672 + 0: The total amount of wall time = 297.975210 + 0: The maximum resident set size (KB) = 989804 Test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/rap_control_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/rap_control_dyn32_phy32 Checking test 105 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3558,14 +3558,14 @@ Checking test 105 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 519.457505 - 0: The maximum resident set size (KB) = 859492 + 0: The total amount of wall time = 498.903522 + 0: The maximum resident set size (KB) = 856856 Test 105 rap_control_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/hrrr_control_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/hrrr_control_dyn32_phy32 Checking test 106 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3612,14 +3612,14 @@ Checking test 106 hrrr_control_dyn32_phy32 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 = 270.677286 - 0: The maximum resident set size (KB) = 839960 + 0: The total amount of wall time = 263.005162 + 0: The maximum resident set size (KB) = 839544 Test 106 hrrr_control_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/rap_2threads_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/rap_2threads_dyn32_phy32 Checking test 107 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3666,14 +3666,14 @@ Checking test 107 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 500.469349 - 0: The maximum resident set size (KB) = 893564 + 0: The total amount of wall time = 484.570589 + 0: The maximum resident set size (KB) = 892812 Test 107 rap_2threads_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/hrrr_control_2threads_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/hrrr_control_2threads_dyn32_phy32 Checking test 108 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3720,14 +3720,14 @@ Checking test 108 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 257.663507 - 0: The maximum resident set size (KB) = 888924 + 0: The total amount of wall time = 250.784520 + 0: The maximum resident set size (KB) = 892168 Test 108 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/hrrr_control_decomp_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/hrrr_control_decomp_dyn32_phy32 Checking test 109 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3774,14 +3774,14 @@ Checking test 109 hrrr_control_decomp_dyn32_phy32 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 = 294.015088 - 0: The maximum resident set size (KB) = 834104 + 0: The total amount of wall time = 279.654477 + 0: The maximum resident set size (KB) = 835944 Test 109 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/rap_restart_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/rap_restart_dyn32_phy32 Checking test 110 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3820,14 +3820,14 @@ Checking test 110 rap_restart_dyn32_phy32 results .... Comparing 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.574107 - 0: The maximum resident set size (KB) = 813048 + 0: The total amount of wall time = 367.485766 + 0: The maximum resident set size (KB) = 812024 Test 110 rap_restart_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/hrrr_control_restart_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/hrrr_control_restart_dyn32_phy32 Checking test 111 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3866,14 +3866,14 @@ Checking test 111 hrrr_control_restart_dyn32_phy32 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 = 142.380440 - 0: The maximum resident set size (KB) = 773396 + 0: The total amount of wall time = 135.890244 + 0: The maximum resident set size (KB) = 769376 Test 111 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_dyn64_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/rap_control_dyn64_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_dyn64_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/rap_control_dyn64_phy32 Checking test 112 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3920,81 +3920,81 @@ Checking test 112 rap_control_dyn64_phy32 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 = 332.248906 - 0: The maximum resident set size (KB) = 875992 + 0: The total amount of wall time = 324.257564 + 0: The maximum resident set size (KB) = 860500 Test 112 rap_control_dyn64_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/rap_control_debug_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/rap_control_debug_dyn32_phy32 Checking test 113 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 357.934857 - 0: The maximum resident set size (KB) = 999648 + 0: The total amount of wall time = 346.499759 + 0: The maximum resident set size (KB) = 1003408 Test 113 rap_control_debug_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/hrrr_control_debug_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/hrrr_control_debug_dyn32_phy32 Checking test 114 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 348.010303 - 0: The maximum resident set size (KB) = 995332 + 0: The total amount of wall time = 344.500078 + 0: The maximum resident set size (KB) = 998116 Test 114 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/rap_control_dyn64_phy32_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/rap_control_dyn64_phy32_debug Checking test 115 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 351.366636 - 0: The maximum resident set size (KB) = 1030972 + 0: The total amount of wall time = 348.102555 + 0: The maximum resident set size (KB) = 1032220 Test 115 rap_control_dyn64_phy32_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/hafs_regional_atm +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/hafs_regional_atm Checking test 116 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 376.727552 - 0: The maximum resident set size (KB) = 1202724 + 0: The total amount of wall time = 343.716309 + 0: The maximum resident set size (KB) = 1226064 Test 116 hafs_regional_atm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/hafs_regional_atm_thompson_gfdlsf +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/hafs_regional_atm_thompson_gfdlsf Checking test 117 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 487.700201 - 0: The maximum resident set size (KB) = 1582528 + 0: The total amount of wall time = 407.354486 + 0: The maximum resident set size (KB) = 1594736 Test 117 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_ocn -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/hafs_regional_atm_ocn +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm_ocn +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/hafs_regional_atm_ocn Checking test 118 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4003,14 +4003,14 @@ Checking test 118 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 580.465499 - 0: The maximum resident set size (KB) = 1295940 + 0: The total amount of wall time = 525.517323 + 0: The maximum resident set size (KB) = 1304988 Test 118 hafs_regional_atm_ocn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_wav -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/hafs_regional_atm_wav +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm_wav +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/hafs_regional_atm_wav Checking test 119 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4019,14 +4019,14 @@ Checking test 119 hafs_regional_atm_wav 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 = 969.921894 - 0: The maximum resident set size (KB) = 1324640 + 0: The total amount of wall time = 931.799601 + 0: The maximum resident set size (KB) = 1331668 Test 119 hafs_regional_atm_wav PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/hafs_regional_atm_ocn_wav +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm_ocn_wav +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/hafs_regional_atm_ocn_wav Checking test 120 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4037,14 +4037,14 @@ Checking test 120 hafs_regional_atm_ocn_wav 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 = 1091.392172 - 0: The maximum resident set size (KB) = 1344008 + 0: The total amount of wall time = 1060.544110 + 0: The maximum resident set size (KB) = 1377564 Test 120 hafs_regional_atm_ocn_wav PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_docn -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/hafs_regional_docn +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_docn +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/hafs_regional_docn Checking test 121 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4052,14 +4052,14 @@ Checking test 121 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 564.394044 - 0: The maximum resident set size (KB) = 1299668 + 0: The total amount of wall time = 492.402582 + 0: The maximum resident set size (KB) = 1309376 Test 121 hafs_regional_docn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_docn_oisst -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/hafs_regional_docn_oisst +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_docn_oisst +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/hafs_regional_docn_oisst Checking test 122 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4067,118 +4067,118 @@ Checking test 122 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 539.532656 - 0: The maximum resident set size (KB) = 1286688 + 0: The total amount of wall time = 496.979850 + 0: The maximum resident set size (KB) = 1300100 Test 122 hafs_regional_docn_oisst PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/datm_cdeps_control_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/datm_cdeps_control_cfsr Checking test 123 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 219.049271 - 0: The maximum resident set size (KB) = 959488 + 0: The total amount of wall time = 212.585520 + 0: The maximum resident set size (KB) = 959728 Test 123 datm_cdeps_control_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/datm_cdeps_restart_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/datm_cdeps_restart_cfsr Checking test 124 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 130.865831 - 0: The maximum resident set size (KB) = 940148 + 0: The total amount of wall time = 143.586656 + 0: The maximum resident set size (KB) = 930764 Test 124 datm_cdeps_restart_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_control_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/datm_cdeps_control_gefs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_control_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/datm_cdeps_control_gefs Checking test 125 datm_cdeps_control_gefs 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 = 214.262422 - 0: The maximum resident set size (KB) = 862408 + 0: The total amount of wall time = 208.203584 + 0: The maximum resident set size (KB) = 852336 Test 125 datm_cdeps_control_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_iau_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/datm_cdeps_iau_gefs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_iau_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/datm_cdeps_iau_gefs Checking test 126 datm_cdeps_iau_gefs 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 = 220.119758 - 0: The maximum resident set size (KB) = 863932 + 0: The total amount of wall time = 208.265035 + 0: The maximum resident set size (KB) = 863088 Test 126 datm_cdeps_iau_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_stochy_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/datm_cdeps_stochy_gefs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_stochy_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/datm_cdeps_stochy_gefs Checking test 127 datm_cdeps_stochy_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 221.513879 - 0: The maximum resident set size (KB) = 870476 + 0: The total amount of wall time = 211.361603 + 0: The maximum resident set size (KB) = 862144 Test 127 datm_cdeps_stochy_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/datm_cdeps_ciceC_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_ciceC_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/datm_cdeps_ciceC_cfsr Checking test 128 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 225.162045 - 0: The maximum resident set size (KB) = 963032 + 0: The total amount of wall time = 218.067741 + 0: The maximum resident set size (KB) = 975172 Test 128 datm_cdeps_ciceC_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/datm_cdeps_bulk_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_bulk_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/datm_cdeps_bulk_cfsr Checking test 129 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 218.777755 - 0: The maximum resident set size (KB) = 957744 + 0: The total amount of wall time = 212.975817 + 0: The maximum resident set size (KB) = 965048 Test 129 datm_cdeps_bulk_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/datm_cdeps_bulk_gefs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_bulk_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/datm_cdeps_bulk_gefs Checking test 130 datm_cdeps_bulk_gefs 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 = 209.512032 - 0: The maximum resident set size (KB) = 861420 + 0: The total amount of wall time = 222.941116 + 0: The maximum resident set size (KB) = 865752 Test 130 datm_cdeps_bulk_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/datm_cdeps_mx025_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_mx025_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/datm_cdeps_mx025_cfsr Checking test 131 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4187,14 +4187,14 @@ Checking test 131 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 588.568115 - 0: The maximum resident set size (KB) = 765456 + 0: The total amount of wall time = 575.659033 + 0: The maximum resident set size (KB) = 766036 Test 131 datm_cdeps_mx025_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/datm_cdeps_mx025_gefs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_mx025_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/datm_cdeps_mx025_gefs Checking test 132 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4203,77 +4203,77 @@ Checking test 132 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 570.834964 - 0: The maximum resident set size (KB) = 736072 + 0: The total amount of wall time = 579.491531 + 0: The maximum resident set size (KB) = 735872 Test 132 datm_cdeps_mx025_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/datm_cdeps_multiple_files_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/datm_cdeps_multiple_files_cfsr Checking test 133 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 216.956092 - 0: The maximum resident set size (KB) = 970984 + 0: The total amount of wall time = 215.757754 + 0: The maximum resident set size (KB) = 961304 Test 133 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/datm_cdeps_3072x1536_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/datm_cdeps_3072x1536_cfsr Checking test 134 datm_cdeps_3072x1536_cfsr 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 = 298.592949 - 0: The maximum resident set size (KB) = 2252796 + 0: The total amount of wall time = 286.627842 + 0: The maximum resident set size (KB) = 2262564 Test 134 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_gfs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/datm_cdeps_gfs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_gfs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/datm_cdeps_gfs Checking test 135 datm_cdeps_gfs 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 = 334.397826 - 0: The maximum resident set size (KB) = 2250576 + 0: The total amount of wall time = 290.291621 + 0: The maximum resident set size (KB) = 2257836 Test 135 datm_cdeps_gfs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_debug_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/datm_cdeps_debug_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_debug_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/datm_cdeps_debug_cfsr Checking test 136 datm_cdeps_debug_cfsr 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 = 465.286240 - 0: The maximum resident set size (KB) = 909692 + 0: The total amount of wall time = 469.154436 + 0: The maximum resident set size (KB) = 909700 Test 136 datm_cdeps_debug_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_control_cfsr_faster -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/datm_cdeps_control_cfsr_faster +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_control_cfsr_faster +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/datm_cdeps_control_cfsr_faster Checking test 137 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 220.036087 - 0: The maximum resident set size (KB) = 958296 + 0: The total amount of wall time = 227.347487 + 0: The maximum resident set size (KB) = 970228 Test 137 datm_cdeps_control_cfsr_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/datm_cdeps_lnd_gswp3 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/datm_cdeps_lnd_gswp3 Checking test 138 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4282,14 +4282,14 @@ Checking test 138 datm_cdeps_lnd_gswp3 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 = 14.589330 - 0: The maximum resident set size (KB) = 250456 + 0: The total amount of wall time = 13.382446 + 0: The maximum resident set size (KB) = 253604 Test 138 datm_cdeps_lnd_gswp3 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/datm_cdeps_lnd_gswp3_rst +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/datm_cdeps_lnd_gswp3_rst Checking test 139 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4298,14 +4298,14 @@ Checking test 139 datm_cdeps_lnd_gswp3_rst 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 = 22.936916 - 0: The maximum resident set size (KB) = 246760 + 0: The total amount of wall time = 21.239729 + 0: The maximum resident set size (KB) = 256528 Test 139 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_atmlnd_sbs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_p8_atmlnd_sbs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8_atmlnd_sbs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_p8_atmlnd_sbs Checking test 140 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4390,14 +4390,14 @@ Checking test 140 control_p8_atmlnd_sbs 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 = 312.494345 - 0: The maximum resident set size (KB) = 1594936 + 0: The total amount of wall time = 281.560063 + 0: The maximum resident set size (KB) = 1606792 Test 140 control_p8_atmlnd_sbs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/atmwav_control_noaero_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/atmwav_control_noaero_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/atmwav_control_noaero_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/atmwav_control_noaero_p8 Checking test 141 atmwav_control_noaero_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4440,14 +4440,14 @@ Checking test 141 atmwav_control_noaero_p8 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 = 135.354629 - 0: The maximum resident set size (KB) = 1569360 + 0: The total amount of wall time = 125.626910 + 0: The maximum resident set size (KB) = 1575848 Test 141 atmwav_control_noaero_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/control_atmwav -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/control_atmwav +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_atmwav +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_atmwav Checking test 142 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4491,14 +4491,14 @@ Checking test 142 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 127.091925 - 0: The maximum resident set size (KB) = 598748 + 0: The total amount of wall time = 121.508222 + 0: The maximum resident set size (KB) = 596876 Test 142 control_atmwav PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/atmaero_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/atmaero_control_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/atmaero_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/atmaero_control_p8 Checking test 143 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4542,14 +4542,14 @@ Checking test 143 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 315.351841 - 0: The maximum resident set size (KB) = 1661980 + 0: The total amount of wall time = 309.844193 + 0: The maximum resident set size (KB) = 1649584 Test 143 atmaero_control_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/atmaero_control_p8_rad -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/atmaero_control_p8_rad +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/atmaero_control_p8_rad +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/atmaero_control_p8_rad Checking test 144 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4593,14 +4593,14 @@ Checking test 144 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 384.988888 - 0: The maximum resident set size (KB) = 1678136 + 0: The total amount of wall time = 380.031856 + 0: The maximum resident set size (KB) = 1684168 Test 144 atmaero_control_p8_rad PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230407/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_284730/atmaero_control_p8_rad_micro +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/atmaero_control_p8_rad_micro +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/atmaero_control_p8_rad_micro Checking test 145 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4644,12 +4644,12 @@ Checking test 145 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 392.600003 - 0: The maximum resident set size (KB) = 1680848 + 0: The total amount of wall time = 383.168398 + 0: The maximum resident set size (KB) = 1686988 Test 145 atmaero_control_p8_rad_micro PASS REGRESSION TEST WAS SUCCESSFUL -Wed Apr 12 02:21:59 UTC 2023 -Elapsed time: 02h:57m:30s. Have a nice day! +Fri Apr 14 15:05:01 UTC 2023 +Elapsed time: 02h:53m:08s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index cf6843b6956..c3647e980d3 100755 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,43 +1,43 @@ -Tue Apr 11 18:28:22 CDT 2023 +Thu Apr 13 21:43:03 CDT 2023 Start Regression test -Compile 001 elapsed time 738 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 736 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 700 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 270 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 230 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 603 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 616 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 785 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 628 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 581 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 011 elapsed time 544 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 475 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 640 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 152 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 487 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 553 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 216 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 211 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 664 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 205 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 740 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 627 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 024 elapsed time 202 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 127 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 240 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 50 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 609 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 594 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 626 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 574 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 579 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 033 elapsed time 396 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 034 elapsed time 647 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8_mixedmode -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/cpld_control_p8_mixedmode +Compile 001 elapsed time 850 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 739 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 735 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 276 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 255 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 696 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 717 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 1069 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 651 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 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 011 elapsed time 586 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 539 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 752 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 270 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 232 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 560 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 527 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 174 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 237 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 710 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 021 elapsed time 221 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 808 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 639 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 024 elapsed time 192 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 112 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 227 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 89 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 633 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 681 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 667 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 573 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 566 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 033 elapsed time 213 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 034 elapsed time 611 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8_mixedmode +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -102,14 +102,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 304.426178 - 0: The maximum resident set size (KB) = 3145980 + 0: The total amount of wall time = 307.330615 + 0: The maximum resident set size (KB) = 3142356 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_gfsv17 -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/cpld_control_gfsv17 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_gfsv17 +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -173,14 +173,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 227.002384 - 0: The maximum resident set size (KB) = 1734536 + 0: The total amount of wall time = 226.123655 + 0: The maximum resident set size (KB) = 1736724 Test 002 cpld_control_gfsv17 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/cpld_control_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -245,14 +245,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 392.264646 - 0: The maximum resident set size (KB) = 3179772 + 0: The total amount of wall time = 341.733043 + 0: The maximum resident set size (KB) = 3186040 Test 003 cpld_control_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/cpld_restart_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -305,14 +305,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 501.418198 - 0: The maximum resident set size (KB) = 2970496 + 0: The total amount of wall time = 228.415051 + 0: The maximum resident set size (KB) = 3055172 Test 004 cpld_restart_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/cpld_control_qr_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -377,14 +377,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 374.685506 - 0: The maximum resident set size (KB) = 3191212 + 0: The total amount of wall time = 346.941362 + 0: The maximum resident set size (KB) = 3197404 Test 005 cpld_control_qr_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/cpld_restart_qr_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -437,14 +437,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 208.763589 - 0: The maximum resident set size (KB) = 3068740 + 0: The total amount of wall time = 218.280498 + 0: The maximum resident set size (KB) = 3068816 Test 006 cpld_restart_qr_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/cpld_2threads_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -497,14 +497,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 434.610793 - 0: The maximum resident set size (KB) = 3522072 + 0: The total amount of wall time = 405.852971 + 0: The maximum resident set size (KB) = 3520516 Test 007 cpld_2threads_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/cpld_decomp_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -557,14 +557,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 368.947017 - 0: The maximum resident set size (KB) = 3174252 + 0: The total amount of wall time = 342.956161 + 0: The maximum resident set size (KB) = 3172184 Test 008 cpld_decomp_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/cpld_mpi_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -617,14 +617,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 293.661191 - 0: The maximum resident set size (KB) = 3027432 + 0: The total amount of wall time = 285.021490 + 0: The maximum resident set size (KB) = 3030664 Test 009 cpld_mpi_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_ciceC_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/cpld_control_ciceC_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_ciceC_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -689,14 +689,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 385.263595 - 0: The maximum resident set size (KB) = 3188868 + 0: The total amount of wall time = 340.233046 + 0: The maximum resident set size (KB) = 3187408 Test 010 cpld_control_ciceC_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/cpld_control_c192_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_c192_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/cpld_control_c192_p8 Checking test 011 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -749,14 +749,14 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 1085.646157 - 0: The maximum resident set size (KB) = 3266928 + 0: The total amount of wall time = 691.771095 + 0: The maximum resident set size (KB) = 3187120 Test 011 cpld_control_c192_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/cpld_restart_c192_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_c192_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/cpld_restart_c192_p8 Checking test 012 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -809,14 +809,14 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 463.648901 - 0: The maximum resident set size (KB) = 3164432 + 0: The total amount of wall time = 460.288197 + 0: The maximum resident set size (KB) = 3162140 Test 012 cpld_restart_c192_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_bmark_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/cpld_bmark_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_bmark_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/cpld_bmark_p8 Checking test 013 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -864,14 +864,14 @@ Checking test 013 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1773.792849 - 0: The maximum resident set size (KB) = 4050004 + 0: The total amount of wall time = 899.335955 + 0: The maximum resident set size (KB) = 4040992 Test 013 cpld_bmark_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_bmark_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/cpld_restart_bmark_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_bmark_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/cpld_restart_bmark_p8 Checking test 014 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -919,14 +919,14 @@ Checking test 014 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 531.315469 - 0: The maximum resident set size (KB) = 3979428 + 0: The total amount of wall time = 537.086227 + 0: The maximum resident set size (KB) = 3970892 Test 014 cpld_restart_bmark_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_noaero_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/cpld_control_noaero_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_noaero_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/cpld_control_noaero_p8 Checking test 015 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -990,14 +990,14 @@ Checking test 015 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 254.324854 - 0: The maximum resident set size (KB) = 1722752 + 0: The total amount of wall time = 253.603483 + 0: The maximum resident set size (KB) = 1730388 Test 015 cpld_control_noaero_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_c96_noaero_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/cpld_control_nowave_noaero_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_c96_noaero_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/cpld_control_nowave_noaero_p8 Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1059,14 +1059,14 @@ Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 267.622413 - 0: The maximum resident set size (KB) = 1770988 + 0: The total amount of wall time = 257.058882 + 0: The maximum resident set size (KB) = 1765068 Test 016 cpld_control_nowave_noaero_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_debug_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/cpld_debug_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_debug_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/cpld_debug_p8 Checking test 017 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1119,14 +1119,14 @@ Checking test 017 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 536.591351 - 0: The maximum resident set size (KB) = 3237956 + 0: The total amount of wall time = 566.232263 + 0: The maximum resident set size (KB) = 3184308 Test 017 cpld_debug_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_debug_noaero_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/cpld_debug_noaero_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_debug_noaero_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/cpld_debug_noaero_p8 Checking test 018 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1178,14 +1178,14 @@ Checking test 018 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 377.093702 - 0: The maximum resident set size (KB) = 1735760 + 0: The total amount of wall time = 384.005158 + 0: The maximum resident set size (KB) = 1737480 Test 018 cpld_debug_noaero_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_noaero_p8_agrid -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/cpld_control_noaero_p8_agrid +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_noaero_p8_agrid +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/cpld_control_noaero_p8_agrid Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1247,14 +1247,14 @@ Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 264.386142 - 0: The maximum resident set size (KB) = 1768712 + 0: The total amount of wall time = 265.891381 + 0: The maximum resident set size (KB) = 1764272 Test 019 cpld_control_noaero_p8_agrid PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_c48 -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/cpld_control_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/cpld_control_c48 Checking test 020 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1304,14 +1304,14 @@ Checking test 020 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 500.898169 - 0: The maximum resident set size (KB) = 2814580 + 0: The total amount of wall time = 499.869891 + 0: The maximum resident set size (KB) = 2815376 Test 020 cpld_control_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_warmstart_c48 -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/cpld_warmstart_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_warmstart_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/cpld_warmstart_c48 Checking test 021 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1361,14 +1361,14 @@ Checking test 021 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 140.238128 - 0: The maximum resident set size (KB) = 2773976 + 0: The total amount of wall time = 139.034322 + 0: The maximum resident set size (KB) = 2789672 Test 021 cpld_warmstart_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_warmstart_c48 -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/cpld_restart_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_warmstart_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/cpld_restart_c48 Checking test 022 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1418,14 +1418,14 @@ Checking test 022 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 77.762701 - 0: The maximum resident set size (KB) = 2192428 + 0: The total amount of wall time = 83.587979 + 0: The maximum resident set size (KB) = 2194208 Test 022 cpld_restart_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/cpld_control_p8_faster +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/cpld_control_p8_faster Checking test 023 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1490,14 +1490,14 @@ Checking test 023 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 715.821207 - 0: The maximum resident set size (KB) = 3180136 + 0: The total amount of wall time = 332.763245 + 0: The maximum resident set size (KB) = 3189520 Test 023 cpld_control_p8_faster PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_CubedSphereGrid -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_CubedSphereGrid +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_CubedSphereGrid +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_CubedSphereGrid Checking test 024 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1524,28 +1524,28 @@ Checking test 024 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 130.604352 - 0: The maximum resident set size (KB) = 637432 + 0: The total amount of wall time = 137.114765 + 0: The maximum resident set size (KB) = 635992 Test 024 control_CubedSphereGrid PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_CubedSphereGrid_parallel -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_CubedSphereGrid_parallel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_CubedSphereGrid_parallel +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_CubedSphereGrid_parallel Checking test 025 control_CubedSphereGrid_parallel results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc .........OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK + Comparing atmf024.nc ............ALT CHECK......OK - 0: The total amount of wall time = 128.038600 - 0: The maximum resident set size (KB) = 637636 + 0: The total amount of wall time = 141.760746 + 0: The maximum resident set size (KB) = 628748 Test 025 control_CubedSphereGrid_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_latlon -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_latlon +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_latlon +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_latlon Checking test 026 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1556,14 +1556,14 @@ Checking test 026 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 133.496747 - 0: The maximum resident set size (KB) = 637140 + 0: The total amount of wall time = 144.455090 + 0: The maximum resident set size (KB) = 633684 Test 026 control_latlon PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_wrtGauss_netcdf_parallel -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_wrtGauss_netcdf_parallel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_wrtGauss_netcdf_parallel +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_wrtGauss_netcdf_parallel Checking test 027 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1574,14 +1574,14 @@ Checking test 027 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.636140 - 0: The maximum resident set size (KB) = 631616 + 0: The total amount of wall time = 145.896249 + 0: The maximum resident set size (KB) = 629792 Test 027 control_wrtGauss_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_c48 -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_c48 Checking test 028 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1620,14 +1620,14 @@ Checking test 028 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 346.058590 -0: The maximum resident set size (KB) = 788788 +0: The total amount of wall time = 360.694553 +0: The maximum resident set size (KB) = 820912 Test 028 control_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_c192 -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_c192 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_c192 +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_c192 Checking test 029 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1638,14 +1638,14 @@ Checking test 029 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 524.885423 - 0: The maximum resident set size (KB) = 773068 + 0: The total amount of wall time = 529.186877 + 0: The maximum resident set size (KB) = 774644 Test 029 control_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_c384 -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_c384 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_c384 +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_c384 Checking test 030 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1656,14 +1656,14 @@ Checking test 030 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 635.339517 - 0: The maximum resident set size (KB) = 1240728 + 0: The total amount of wall time = 580.895720 + 0: The maximum resident set size (KB) = 1228404 Test 030 control_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_c384gdas -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_c384gdas +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_c384gdas +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_c384gdas Checking test 031 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1706,14 +1706,14 @@ Checking test 031 control_c384gdas 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 = 507.577837 - 0: The maximum resident set size (KB) = 1344784 + 0: The total amount of wall time = 511.825762 + 0: The maximum resident set size (KB) = 1337900 Test 031 control_c384gdas PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_stochy -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_stochy +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_stochy +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_stochy Checking test 032 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1724,28 +1724,28 @@ Checking test 032 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 87.906120 - 0: The maximum resident set size (KB) = 642228 + 0: The total amount of wall time = 91.315546 + 0: The maximum resident set size (KB) = 639880 Test 032 control_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_stochy -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_stochy_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_stochy +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_stochy_restart Checking test 033 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 47.172206 - 0: The maximum resident set size (KB) = 482524 + 0: The total amount of wall time = 49.371697 + 0: The maximum resident set size (KB) = 493248 Test 033 control_stochy_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_lndp -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_lndp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_lndp +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_lndp Checking test 034 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1756,14 +1756,14 @@ Checking test 034 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 129.823536 - 0: The maximum resident set size (KB) = 637236 + 0: The total amount of wall time = 85.028240 + 0: The maximum resident set size (KB) = 634656 Test 034 control_lndp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_iovr4 -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_iovr4 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_iovr4 +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_iovr4 Checking test 035 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1778,14 +1778,14 @@ Checking test 035 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 137.698675 - 0: The maximum resident set size (KB) = 640704 + 0: The total amount of wall time = 142.113490 + 0: The maximum resident set size (KB) = 631632 Test 035 control_iovr4 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_iovr5 -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_iovr5 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_iovr5 +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_iovr5 Checking test 036 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1800,14 +1800,14 @@ Checking test 036 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.784515 - 0: The maximum resident set size (KB) = 632200 + 0: The total amount of wall time = 142.684773 + 0: The maximum resident set size (KB) = 632584 Test 036 control_iovr5 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_p8 Checking test 037 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1854,14 +1854,14 @@ Checking test 037 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 513.006538 - 0: The maximum resident set size (KB) = 1608896 + 0: The total amount of wall time = 170.612523 + 0: The maximum resident set size (KB) = 1606268 Test 037 control_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_restart_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_restart_p8 Checking test 038 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1900,14 +1900,14 @@ Checking test 038 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 120.324482 - 0: The maximum resident set size (KB) = 875448 + 0: The total amount of wall time = 87.709309 + 0: The maximum resident set size (KB) = 868976 Test 038 control_restart_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_qr_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_qr_p8 Checking test 039 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1954,14 +1954,14 @@ Checking test 039 control_qr_p8 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 = 176.438406 - 0: The maximum resident set size (KB) = 1617284 + 0: The total amount of wall time = 170.059836 + 0: The maximum resident set size (KB) = 1607508 Test 039 control_qr_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_restart_qr_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_restart_qr_p8 Checking test 040 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2000,14 +2000,14 @@ Checking test 040 control_restart_qr_p8 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.204889 - 0: The maximum resident set size (KB) = 868984 + 0: The total amount of wall time = 92.774947 + 0: The maximum resident set size (KB) = 869908 Test 040 control_restart_qr_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_decomp_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_decomp_p8 Checking test 041 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2050,14 +2050,14 @@ Checking test 041 control_decomp_p8 results .... Comparing 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.858327 - 0: The maximum resident set size (KB) = 1537064 + 0: The total amount of wall time = 176.665185 + 0: The maximum resident set size (KB) = 1589232 Test 041 control_decomp_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_2threads_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_2threads_p8 Checking test 042 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2100,14 +2100,14 @@ Checking test 042 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 177.223841 - 0: The maximum resident set size (KB) = 1690168 + 0: The total amount of wall time = 177.560015 + 0: The maximum resident set size (KB) = 1687168 Test 042 control_2threads_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_lndp -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_p8_lndp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8_lndp +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_p8_lndp Checking test 043 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2126,14 +2126,14 @@ Checking test 043 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 499.826366 - 0: The maximum resident set size (KB) = 1603180 + 0: The total amount of wall time = 313.026589 + 0: The maximum resident set size (KB) = 1601896 Test 043 control_p8_lndp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_rrtmgp -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_p8_rrtmgp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8_rrtmgp +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_p8_rrtmgp Checking test 044 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2180,14 +2180,14 @@ Checking test 044 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 522.202094 - 0: The maximum resident set size (KB) = 1684756 + 0: The total amount of wall time = 229.343395 + 0: The maximum resident set size (KB) = 1674468 Test 044 control_p8_rrtmgp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_mynn -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_p8_mynn +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8_mynn +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_p8_mynn Checking test 045 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2234,14 +2234,14 @@ Checking test 045 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 461.585556 - 0: The maximum resident set size (KB) = 1615740 + 0: The total amount of wall time = 170.540312 + 0: The maximum resident set size (KB) = 1611492 Test 045 control_p8_mynn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/merra2_thompson -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/merra2_thompson +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/merra2_thompson +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/merra2_thompson Checking test 046 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2288,14 +2288,14 @@ Checking test 046 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 463.318745 - 0: The maximum resident set size (KB) = 1618260 + 0: The total amount of wall time = 190.034078 + 0: The maximum resident set size (KB) = 1612512 Test 046 merra2_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/regional_control +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/regional_control Checking test 047 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2306,28 +2306,28 @@ Checking test 047 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 394.964648 - 0: The maximum resident set size (KB) = 874080 + 0: The total amount of wall time = 298.974946 + 0: The maximum resident set size (KB) = 867768 Test 047 regional_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/regional_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/regional_restart Checking test 048 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 165.523853 - 0: The maximum resident set size (KB) = 866388 + 0: The total amount of wall time = 152.007788 + 0: The maximum resident set size (KB) = 863628 Test 048 regional_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/regional_control_qr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/regional_control_qr Checking test 049 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2338,28 +2338,28 @@ Checking test 049 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 433.600509 - 0: The maximum resident set size (KB) = 869840 + 0: The total amount of wall time = 298.298424 + 0: The maximum resident set size (KB) = 870720 Test 049 regional_control_qr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/regional_restart_qr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/regional_restart_qr Checking test 050 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 174.236901 - 0: The maximum resident set size (KB) = 863244 + 0: The total amount of wall time = 151.064501 + 0: The maximum resident set size (KB) = 860688 Test 050 regional_restart_qr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/regional_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/regional_decomp Checking test 051 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2370,14 +2370,14 @@ Checking test 051 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 415.294819 - 0: The maximum resident set size (KB) = 824772 + 0: The total amount of wall time = 314.509615 + 0: The maximum resident set size (KB) = 860312 Test 051 regional_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/regional_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/regional_2threads Checking test 052 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2388,14 +2388,14 @@ Checking test 052 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 446.050214 - 0: The maximum resident set size (KB) = 846604 + 0: The total amount of wall time = 206.187176 + 0: The maximum resident set size (KB) = 850892 Test 052 regional_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_noquilt -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/regional_noquilt +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_noquilt +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/regional_noquilt Checking test 053 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2403,28 +2403,28 @@ Checking test 053 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 315.182391 - 0: The maximum resident set size (KB) = 857572 + 0: The total amount of wall time = 319.282792 + 0: The maximum resident set size (KB) = 858096 Test 053 regional_noquilt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_netcdf_parallel -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/regional_netcdf_parallel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_netcdf_parallel +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/regional_netcdf_parallel Checking test 054 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing phyf006.nc .........OK - 0: The total amount of wall time = 410.385859 - 0: The maximum resident set size (KB) = 866336 + 0: The total amount of wall time = 293.550956 + 0: The maximum resident set size (KB) = 865908 Test 054 regional_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/regional_2dwrtdecomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/regional_2dwrtdecomp Checking test 055 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2435,14 +2435,14 @@ Checking test 055 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 411.318398 - 0: The maximum resident set size (KB) = 871796 + 0: The total amount of wall time = 296.382509 + 0: The maximum resident set size (KB) = 868964 Test 055 regional_2dwrtdecomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/fv3_regional_wofs -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/regional_wofs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/fv3_regional_wofs +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/regional_wofs Checking test 056 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2453,14 +2453,14 @@ Checking test 056 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 413.527668 - 0: The maximum resident set size (KB) = 636932 + 0: The total amount of wall time = 376.927765 + 0: The maximum resident set size (KB) = 631284 Test 056 regional_wofs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/rap_control +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/rap_control Checking test 057 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2507,14 +2507,14 @@ Checking test 057 rap_control results .... Comparing 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.547948 - 0: The maximum resident set size (KB) = 1054636 + 0: The total amount of wall time = 491.394179 + 0: The maximum resident set size (KB) = 1072688 Test 057 rap_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_spp_sppt_shum_skeb -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/regional_spp_sppt_shum_skeb +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_spp_sppt_shum_skeb +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/regional_spp_sppt_shum_skeb Checking test 058 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2525,14 +2525,14 @@ Checking test 058 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 265.418172 - 0: The maximum resident set size (KB) = 1188060 + 0: The total amount of wall time = 273.969582 + 0: The maximum resident set size (KB) = 1193644 Test 058 regional_spp_sppt_shum_skeb PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/rap_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/rap_decomp Checking test 059 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2579,14 +2579,14 @@ Checking test 059 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 478.198385 - 0: The maximum resident set size (KB) = 1009184 + 0: The total amount of wall time = 486.673981 + 0: The maximum resident set size (KB) = 1004144 Test 059 rap_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/rap_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/rap_2threads Checking test 060 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2633,14 +2633,14 @@ Checking test 060 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 467.724295 - 0: The maximum resident set size (KB) = 1141288 + 0: The total amount of wall time = 481.407682 + 0: The maximum resident set size (KB) = 1138908 Test 060 rap_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/rap_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/rap_restart Checking test 061 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2679,14 +2679,14 @@ Checking test 061 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 255.696310 - 0: The maximum resident set size (KB) = 969424 + 0: The total amount of wall time = 231.906938 + 0: The maximum resident set size (KB) = 971276 Test 061 rap_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_sfcdiff -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/rap_sfcdiff +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_sfcdiff +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/rap_sfcdiff Checking test 062 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2733,14 +2733,14 @@ Checking test 062 rap_sfcdiff results .... Comparing 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.891088 - 0: The maximum resident set size (KB) = 1060688 + 0: The total amount of wall time = 466.530697 + 0: The maximum resident set size (KB) = 1067680 Test 062 rap_sfcdiff PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_sfcdiff -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/rap_sfcdiff_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_sfcdiff +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/rap_sfcdiff_decomp Checking test 063 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2787,14 +2787,14 @@ Checking test 063 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 480.972647 - 0: The maximum resident set size (KB) = 1001112 + 0: The total amount of wall time = 506.500992 + 0: The maximum resident set size (KB) = 1003544 Test 063 rap_sfcdiff_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_sfcdiff -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/rap_sfcdiff_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_sfcdiff +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/rap_sfcdiff_restart Checking test 064 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2833,14 +2833,14 @@ Checking test 064 rap_sfcdiff_restart results .... Comparing 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.925690 - 0: The maximum resident set size (KB) = 983020 + 0: The total amount of wall time = 340.083060 + 0: The maximum resident set size (KB) = 991544 Test 064 rap_sfcdiff_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/hrrr_control +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/hrrr_control Checking test 065 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2887,14 +2887,14 @@ Checking test 065 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 444.043511 - 0: The maximum resident set size (KB) = 1059024 + 0: The total amount of wall time = 451.949509 + 0: The maximum resident set size (KB) = 1062004 Test 065 hrrr_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/hrrr_control_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/hrrr_control_decomp Checking test 066 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2941,14 +2941,14 @@ Checking test 066 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 460.748849 - 0: The maximum resident set size (KB) = 1002012 + 0: The total amount of wall time = 468.387107 + 0: The maximum resident set size (KB) = 1003748 Test 066 hrrr_control_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/hrrr_control_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/hrrr_control_2threads Checking test 067 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2995,14 +2995,14 @@ Checking test 067 hrrr_control_2threads results .... Comparing 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.732843 - 0: The maximum resident set size (KB) = 1139624 + 0: The total amount of wall time = 472.590336 + 0: The maximum resident set size (KB) = 1142268 Test 067 hrrr_control_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/hrrr_control_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/hrrr_control_restart Checking test 068 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3041,14 +3041,14 @@ Checking test 068 hrrr_control_restart results .... Comparing 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.807196 - 0: The maximum resident set size (KB) = 988116 + 0: The total amount of wall time = 328.297473 + 0: The maximum resident set size (KB) = 929912 Test 068 hrrr_control_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_v1beta -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/rrfs_v1beta +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_v1beta +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/rrfs_v1beta Checking test 069 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3095,14 +3095,14 @@ Checking test 069 rrfs_v1beta results .... Comparing 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.688914 - 0: The maximum resident set size (KB) = 1061008 + 0: The total amount of wall time = 474.987779 + 0: The maximum resident set size (KB) = 1057628 Test 069 rrfs_v1beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_v1nssl -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/rrfs_v1nssl +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_v1nssl +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/rrfs_v1nssl Checking test 070 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3117,14 +3117,14 @@ Checking test 070 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 540.475951 - 0: The maximum resident set size (KB) = 693548 + 0: The total amount of wall time = 549.137842 + 0: The maximum resident set size (KB) = 697152 Test 070 rrfs_v1nssl PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/rrfs_v1nssl_nohailnoccn +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/rrfs_v1nssl_nohailnoccn Checking test 071 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3139,14 +3139,14 @@ Checking test 071 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 524.789149 - 0: The maximum resident set size (KB) = 756980 + 0: The total amount of wall time = 551.839346 + 0: The maximum resident set size (KB) = 764340 Test 071 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/rrfs_smoke_conus13km_hrrr_warm Checking test 072 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3155,14 +3155,14 @@ Checking test 072 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 146.671129 - 0: The maximum resident set size (KB) = 1032296 + 0: The total amount of wall time = 146.265688 + 0: The maximum resident set size (KB) = 1042464 Test 072 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 073 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3171,14 +3171,14 @@ Checking test 073 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 99.228038 - 0: The maximum resident set size (KB) = 947544 + 0: The total amount of wall time = 96.993338 + 0: The maximum resident set size (KB) = 946224 Test 073 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_conus13km_hrrr_warm -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/rrfs_conus13km_hrrr_warm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_conus13km_hrrr_warm +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/rrfs_conus13km_hrrr_warm Checking test 074 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3187,14 +3187,14 @@ Checking test 074 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 131.926789 - 0: The maximum resident set size (KB) = 947796 + 0: The total amount of wall time = 128.684493 + 0: The maximum resident set size (KB) = 949960 Test 074 rrfs_conus13km_hrrr_warm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/rrfs_smoke_conus13km_radar_tten_warm Checking test 075 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3203,26 +3203,26 @@ Checking test 075 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 147.522428 - 0: The maximum resident set size (KB) = 1001632 + 0: The total amount of wall time = 146.820971 + 0: The maximum resident set size (KB) = 1048576 Test 075 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 076 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 93.393577 - 0: The maximum resident set size (KB) = 873752 + 0: The total amount of wall time = 67.408597 + 0: The maximum resident set size (KB) = 934032 Test 076 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_csawmg -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_csawmg +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_csawmg +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_csawmg Checking test 077 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3233,14 +3233,14 @@ Checking test 077 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 395.741730 - 0: The maximum resident set size (KB) = 721172 + 0: The total amount of wall time = 358.035172 + 0: The maximum resident set size (KB) = 727748 Test 077 control_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_csawmgt -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_csawmgt +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_csawmgt +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_csawmgt Checking test 078 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3251,14 +3251,14 @@ Checking test 078 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 384.533007 - 0: The maximum resident set size (KB) = 730464 + 0: The total amount of wall time = 340.625026 + 0: The maximum resident set size (KB) = 716328 Test 078 control_csawmgt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_ras -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_ras +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_ras +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_ras Checking test 079 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3269,26 +3269,26 @@ Checking test 079 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 235.272920 - 0: The maximum resident set size (KB) = 718056 + 0: The total amount of wall time = 207.423823 + 0: The maximum resident set size (KB) = 715656 Test 079 control_ras PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_wam -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_wam +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_wam +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_wam Checking test 080 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 130.350707 - 0: The maximum resident set size (KB) = 641060 + 0: The total amount of wall time = 112.543018 + 0: The maximum resident set size (KB) = 640788 Test 080 control_wam PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_p8_faster +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_p8_faster Checking test 081 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3335,14 +3335,14 @@ Checking test 081 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 175.390492 - 0: The maximum resident set size (KB) = 1604388 + 0: The total amount of wall time = 175.126367 + 0: The maximum resident set size (KB) = 1556152 Test 081 control_p8_faster PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/regional_control_faster +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/regional_control_faster Checking test 082 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3353,56 +3353,56 @@ Checking test 082 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 269.795441 - 0: The maximum resident set size (KB) = 870360 + 0: The total amount of wall time = 278.784111 + 0: The maximum resident set size (KB) = 871376 Test 082 regional_control_faster PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 083 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 841.387800 - 0: The maximum resident set size (KB) = 1021524 + 0: The total amount of wall time = 852.981556 + 0: The maximum resident set size (KB) = 1062012 Test 083 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 084 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 493.055666 - 0: The maximum resident set size (KB) = 983072 + 0: The total amount of wall time = 489.596514 + 0: The maximum resident set size (KB) = 981808 Test 084 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/rrfs_conus13km_hrrr_warm_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/rrfs_conus13km_hrrr_warm_debug Checking test 085 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 757.671854 - 0: The maximum resident set size (KB) = 970792 + 0: The total amount of wall time = 761.233060 + 0: The maximum resident set size (KB) = 972720 Test 085 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_CubedSphereGrid_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_CubedSphereGrid_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_CubedSphereGrid_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_CubedSphereGrid_debug Checking test 086 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3429,334 +3429,334 @@ Checking test 086 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 149.686215 - 0: The maximum resident set size (KB) = 793096 + 0: The total amount of wall time = 153.263588 + 0: The maximum resident set size (KB) = 794472 Test 086 control_CubedSphereGrid_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_wrtGauss_netcdf_parallel_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_wrtGauss_netcdf_parallel_debug Checking test 087 control_wrtGauss_netcdf_parallel_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 181.135889 - 0: The maximum resident set size (KB) = 795856 + 0: The total amount of wall time = 152.286602 + 0: The maximum resident set size (KB) = 785296 Test 087 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_stochy_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_stochy_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_stochy_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_stochy_debug Checking test 088 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 167.795941 - 0: The maximum resident set size (KB) = 800968 + 0: The total amount of wall time = 168.148137 + 0: The maximum resident set size (KB) = 799376 Test 088 control_stochy_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_lndp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_lndp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_lndp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_lndp_debug Checking test 089 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 163.790969 - 0: The maximum resident set size (KB) = 790412 + 0: The total amount of wall time = 151.069573 + 0: The maximum resident set size (KB) = 796100 Test 089 control_lndp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_csawmg_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_csawmg_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_csawmg_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_csawmg_debug Checking test 090 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 230.663614 - 0: The maximum resident set size (KB) = 844512 + 0: The total amount of wall time = 228.774025 + 0: The maximum resident set size (KB) = 844372 Test 090 control_csawmg_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_csawmgt_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_csawmgt_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_csawmgt_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_csawmgt_debug Checking test 091 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 244.657061 - 0: The maximum resident set size (KB) = 842168 + 0: The total amount of wall time = 220.719714 + 0: The maximum resident set size (KB) = 844312 Test 091 control_csawmgt_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_ras_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_ras_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_ras_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_ras_debug Checking test 092 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 165.702660 - 0: The maximum resident set size (KB) = 805852 + 0: The total amount of wall time = 154.576774 + 0: The maximum resident set size (KB) = 760536 Test 092 control_ras_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_diag_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_diag_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_diag_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_diag_debug Checking test 093 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 151.275580 - 0: The maximum resident set size (KB) = 851648 + 0: The total amount of wall time = 154.222996 + 0: The maximum resident set size (KB) = 854088 Test 093 control_diag_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_debug_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_debug_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_debug_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_debug_p8 Checking test 094 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 168.545987 - 0: The maximum resident set size (KB) = 1622784 + 0: The total amount of wall time = 167.639707 + 0: The maximum resident set size (KB) = 1624432 Test 094 control_debug_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/regional_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/regional_debug Checking test 095 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 993.424597 - 0: The maximum resident set size (KB) = 886700 + 0: The total amount of wall time = 965.907659 + 0: The maximum resident set size (KB) = 888892 Test 095 regional_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/rap_control_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/rap_control_debug Checking test 096 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 296.777031 - 0: The maximum resident set size (KB) = 1170116 + 0: The total amount of wall time = 272.953639 + 0: The maximum resident set size (KB) = 1170124 Test 096 rap_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/hrrr_control_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/hrrr_control_debug Checking test 097 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 292.240530 - 0: The maximum resident set size (KB) = 1169068 + 0: The total amount of wall time = 268.088270 + 0: The maximum resident set size (KB) = 1170180 Test 097 hrrr_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/rap_unified_drag_suite_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/rap_unified_drag_suite_debug Checking test 098 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 306.714275 - 0: The maximum resident set size (KB) = 1176436 + 0: The total amount of wall time = 286.167414 + 0: The maximum resident set size (KB) = 1165656 Test 098 rap_unified_drag_suite_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_diag_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/rap_diag_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_diag_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/rap_diag_debug Checking test 099 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 316.352339 - 0: The maximum resident set size (KB) = 1258504 + 0: The total amount of wall time = 290.876766 + 0: The maximum resident set size (KB) = 1252644 Test 099 rap_diag_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/rap_cires_ugwp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_cires_ugwp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/rap_cires_ugwp_debug Checking test 100 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.529515 - 0: The maximum resident set size (KB) = 1169880 + 0: The total amount of wall time = 283.167165 + 0: The maximum resident set size (KB) = 1172500 Test 100 rap_cires_ugwp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/rap_unified_ugwp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_cires_ugwp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/rap_unified_ugwp_debug Checking test 101 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 302.990728 - 0: The maximum resident set size (KB) = 1178108 + 0: The total amount of wall time = 284.333320 + 0: The maximum resident set size (KB) = 1126184 Test 101 rap_unified_ugwp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_lndp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/rap_lndp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_lndp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/rap_lndp_debug Checking test 102 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.833674 - 0: The maximum resident set size (KB) = 1171592 + 0: The total amount of wall time = 282.951402 + 0: The maximum resident set size (KB) = 1174764 Test 102 rap_lndp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_flake_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/rap_flake_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_flake_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/rap_flake_debug Checking test 103 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.821403 - 0: The maximum resident set size (KB) = 1173736 + 0: The total amount of wall time = 277.450565 + 0: The maximum resident set size (KB) = 1178300 Test 103 rap_flake_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_progcld_thompson_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/rap_progcld_thompson_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_progcld_thompson_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/rap_progcld_thompson_debug Checking test 104 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.660256 - 0: The maximum resident set size (KB) = 1175100 + 0: The total amount of wall time = 272.915380 + 0: The maximum resident set size (KB) = 1175820 Test 104 rap_progcld_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_noah_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/rap_noah_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_noah_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/rap_noah_debug Checking test 105 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.465421 - 0: The maximum resident set size (KB) = 1132668 + 0: The total amount of wall time = 266.866094 + 0: The maximum resident set size (KB) = 1173700 Test 105 rap_noah_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_sfcdiff_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/rap_sfcdiff_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_sfcdiff_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/rap_sfcdiff_debug Checking test 106 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.681355 - 0: The maximum resident set size (KB) = 1174084 + 0: The total amount of wall time = 277.162454 + 0: The maximum resident set size (KB) = 1173564 Test 106 rap_sfcdiff_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/rap_noah_sfcdiff_cires_ugwp_debug Checking test 107 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 453.008964 - 0: The maximum resident set size (KB) = 1170408 + 0: The total amount of wall time = 468.227801 + 0: The maximum resident set size (KB) = 1172860 Test 107 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_v1beta_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/rrfs_v1beta_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_v1beta_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/rrfs_v1beta_debug Checking test 108 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.374126 - 0: The maximum resident set size (KB) = 1165628 + 0: The total amount of wall time = 274.840391 + 0: The maximum resident set size (KB) = 1168572 Test 108 rrfs_v1beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_wam_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_wam_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_wam_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_wam_debug Checking test 109 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 283.491436 - 0: The maximum resident set size (KB) = 523964 + 0: The total amount of wall time = 280.598730 + 0: The maximum resident set size (KB) = 520932 Test 109 control_wam_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3767,14 +3767,14 @@ Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 293.866730 - 0: The maximum resident set size (KB) = 1079960 + 0: The total amount of wall time = 250.502868 + 0: The maximum resident set size (KB) = 1084972 Test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/rap_control_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/rap_control_dyn32_phy32 Checking test 111 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3821,14 +3821,14 @@ Checking test 111 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 385.692409 - 0: The maximum resident set size (KB) = 1000852 + 0: The total amount of wall time = 379.809945 + 0: The maximum resident set size (KB) = 1006776 Test 111 rap_control_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/hrrr_control_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/hrrr_control_dyn32_phy32 Checking test 112 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3875,14 +3875,14 @@ Checking test 112 hrrr_control_dyn32_phy32 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 = 206.687602 - 0: The maximum resident set size (KB) = 954360 + 0: The total amount of wall time = 199.178535 + 0: The maximum resident set size (KB) = 961416 Test 112 hrrr_control_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/rap_2threads_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/rap_2threads_dyn32_phy32 Checking test 113 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3929,14 +3929,14 @@ Checking test 113 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 408.110456 - 0: The maximum resident set size (KB) = 1022572 + 0: The total amount of wall time = 399.128243 + 0: The maximum resident set size (KB) = 1021828 Test 113 rap_2threads_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/hrrr_control_2threads_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/hrrr_control_2threads_dyn32_phy32 Checking test 114 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3983,14 +3983,14 @@ Checking test 114 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 208.625736 - 0: The maximum resident set size (KB) = 1006676 + 0: The total amount of wall time = 204.638721 + 0: The maximum resident set size (KB) = 1002124 Test 114 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/hrrr_control_decomp_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/hrrr_control_decomp_dyn32_phy32 Checking test 115 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4037,14 +4037,14 @@ Checking test 115 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 212.032708 - 0: The maximum resident set size (KB) = 900820 + 0: The total amount of wall time = 208.639310 + 0: The maximum resident set size (KB) = 909056 Test 115 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/rap_restart_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/rap_restart_dyn32_phy32 Checking test 116 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4083,14 +4083,14 @@ Checking test 116 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 281.246516 - 0: The maximum resident set size (KB) = 956544 + 0: The total amount of wall time = 286.308773 + 0: The maximum resident set size (KB) = 904412 Test 116 rap_restart_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/hrrr_control_restart_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/hrrr_control_restart_dyn32_phy32 Checking test 117 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4129,14 +4129,14 @@ Checking test 117 hrrr_control_restart_dyn32_phy32 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 = 111.870397 - 0: The maximum resident set size (KB) = 868976 + 0: The total amount of wall time = 103.850818 + 0: The maximum resident set size (KB) = 867000 Test 117 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_dyn64_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/rap_control_dyn64_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_dyn64_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/rap_control_dyn64_phy32 Checking test 118 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4183,81 +4183,81 @@ Checking test 118 rap_control_dyn64_phy32 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 = 244.665833 - 0: The maximum resident set size (KB) = 965024 + 0: The total amount of wall time = 242.055018 + 0: The maximum resident set size (KB) = 974100 Test 118 rap_control_dyn64_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_debug_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/rap_control_debug_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_debug_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/rap_control_debug_dyn32_phy32 Checking test 119 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 278.330079 - 0: The maximum resident set size (KB) = 1067904 + 0: The total amount of wall time = 279.311384 + 0: The maximum resident set size (KB) = 1012804 Test 119 rap_control_debug_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/hrrr_control_debug_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/hrrr_control_debug_dyn32_phy32 Checking test 120 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 270.973088 - 0: The maximum resident set size (KB) = 1055760 + 0: The total amount of wall time = 269.625135 + 0: The maximum resident set size (KB) = 1061904 Test 120 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_debug_dyn64_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/rap_control_dyn64_phy32_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_debug_dyn64_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/rap_control_dyn64_phy32_debug Checking test 121 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 288.259758 - 0: The maximum resident set size (KB) = 1098440 + 0: The total amount of wall time = 281.485300 + 0: The maximum resident set size (KB) = 1100396 Test 121 rap_control_dyn64_phy32_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/hafs_regional_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/hafs_regional_atm Checking test 122 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 297.083759 - 0: The maximum resident set size (KB) = 1058964 + 0: The total amount of wall time = 267.592700 + 0: The maximum resident set size (KB) = 1052944 Test 122 hafs_regional_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/hafs_regional_atm_thompson_gfdlsf +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/hafs_regional_atm_thompson_gfdlsf Checking test 123 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 407.043457 - 0: The maximum resident set size (KB) = 1424964 + 0: The total amount of wall time = 407.145543 + 0: The maximum resident set size (KB) = 1360520 Test 123 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_ocn -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/hafs_regional_atm_ocn +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm_ocn +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/hafs_regional_atm_ocn Checking test 124 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4266,14 +4266,14 @@ Checking test 124 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 402.084595 - 0: The maximum resident set size (KB) = 1234340 + 0: The total amount of wall time = 385.467713 + 0: The maximum resident set size (KB) = 1222656 Test 124 hafs_regional_atm_ocn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_wav -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/hafs_regional_atm_wav +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm_wav +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/hafs_regional_atm_wav Checking test 125 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4282,14 +4282,14 @@ Checking test 125 hafs_regional_atm_wav 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 = 734.759548 - 0: The maximum resident set size (KB) = 1225364 + 0: The total amount of wall time = 724.443383 + 0: The maximum resident set size (KB) = 1260164 Test 125 hafs_regional_atm_wav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_ocn_wav -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/hafs_regional_atm_ocn_wav +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm_ocn_wav +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/hafs_regional_atm_ocn_wav Checking test 126 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4300,28 +4300,28 @@ Checking test 126 hafs_regional_atm_ocn_wav 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 = 829.389326 - 0: The maximum resident set size (KB) = 1285088 + 0: The total amount of wall time = 823.991390 + 0: The maximum resident set size (KB) = 1284140 Test 126 hafs_regional_atm_ocn_wav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/hafs_regional_1nest_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/hafs_regional_1nest_atm Checking test 127 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 365.351612 - 0: The maximum resident set size (KB) = 510840 + 0: The total amount of wall time = 364.275150 + 0: The maximum resident set size (KB) = 501552 Test 127 hafs_regional_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/hafs_regional_telescopic_2nests_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/hafs_regional_telescopic_2nests_atm Checking test 128 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4330,28 +4330,28 @@ Checking test 128 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 410.417429 - 0: The maximum resident set size (KB) = 520832 + 0: The total amount of wall time = 414.099673 + 0: The maximum resident set size (KB) = 514988 Test 128 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_global_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/hafs_global_1nest_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_global_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/hafs_global_1nest_atm Checking test 129 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 182.164306 - 0: The maximum resident set size (KB) = 357224 + 0: The total amount of wall time = 179.439476 + 0: The maximum resident set size (KB) = 354308 Test 129 hafs_global_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_global_multiple_4nests_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/hafs_global_multiple_4nests_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_global_multiple_4nests_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/hafs_global_multiple_4nests_atm Checking test 130 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4369,14 +4369,14 @@ Checking test 130 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 462.551326 - 0: The maximum resident set size (KB) = 431996 + 0: The total amount of wall time = 461.146566 + 0: The maximum resident set size (KB) = 429188 Test 130 hafs_global_multiple_4nests_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/hafs_regional_specified_moving_1nest_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/hafs_regional_specified_moving_1nest_atm Checking test 131 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4385,28 +4385,28 @@ Checking test 131 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 227.829564 - 0: The maximum resident set size (KB) = 531388 + 0: The total amount of wall time = 232.136499 + 0: The maximum resident set size (KB) = 520516 Test 131 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/hafs_regional_storm_following_1nest_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/hafs_regional_storm_following_1nest_atm Checking test 132 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 215.889690 - 0: The maximum resident set size (KB) = 524716 + 0: The total amount of wall time = 219.304757 + 0: The maximum resident set size (KB) = 523640 Test 132 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/hafs_regional_storm_following_1nest_atm_ocn Checking test 133 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4415,42 +4415,42 @@ Checking test 133 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 310.618476 - 0: The maximum resident set size (KB) = 575060 + 0: The total amount of wall time = 290.505740 + 0: The maximum resident set size (KB) = 529292 Test 133 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_global_storm_following_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/hafs_global_storm_following_1nest_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_global_storm_following_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/hafs_global_storm_following_1nest_atm Checking test 134 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 68.165054 - 0: The maximum resident set size (KB) = 373132 + 0: The total amount of wall time = 68.920329 + 0: The maximum resident set size (KB) = 372788 Test 134 hafs_global_storm_following_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 747.656783 - 0: The maximum resident set size (KB) = 589700 + 0: The total amount of wall time = 752.966485 + 0: The maximum resident set size (KB) = 589140 Test 135 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 136 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4461,14 +4461,14 @@ Checking test 136 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 537.241222 - 0: The maximum resident set size (KB) = 619412 + 0: The total amount of wall time = 534.720730 + 0: The maximum resident set size (KB) = 620564 Test 136 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_docn -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/hafs_regional_docn +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_docn +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/hafs_regional_docn Checking test 137 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4476,14 +4476,14 @@ Checking test 137 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 359.475608 - 0: The maximum resident set size (KB) = 1236136 + 0: The total amount of wall time = 359.773888 + 0: The maximum resident set size (KB) = 1233552 Test 137 hafs_regional_docn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_docn_oisst -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/hafs_regional_docn_oisst +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_docn_oisst +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/hafs_regional_docn_oisst Checking test 138 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4491,131 +4491,131 @@ Checking test 138 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 361.158683 - 0: The maximum resident set size (KB) = 1230216 + 0: The total amount of wall time = 363.387018 + 0: The maximum resident set size (KB) = 1222960 Test 138 hafs_regional_docn_oisst PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_datm_cdeps -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/hafs_regional_datm_cdeps +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_datm_cdeps +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/hafs_regional_datm_cdeps Checking test 139 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 928.089038 - 0: The maximum resident set size (KB) = 1036660 + 0: The total amount of wall time = 916.279175 + 0: The maximum resident set size (KB) = 1042180 Test 139 hafs_regional_datm_cdeps PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/datm_cdeps_control_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/datm_cdeps_control_cfsr Checking test 140 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.434128 - 0: The maximum resident set size (KB) = 1059136 + 0: The total amount of wall time = 144.382804 + 0: The maximum resident set size (KB) = 1076804 Test 140 datm_cdeps_control_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/datm_cdeps_restart_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/datm_cdeps_restart_cfsr Checking test 141 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 90.655051 - 0: The maximum resident set size (KB) = 1020448 + 0: The total amount of wall time = 94.385635 + 0: The maximum resident set size (KB) = 996456 Test 141 datm_cdeps_restart_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_control_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/datm_cdeps_control_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_control_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/datm_cdeps_control_gefs Checking test 142 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 141.332792 - 0: The maximum resident set size (KB) = 970452 + 0: The total amount of wall time = 143.208487 + 0: The maximum resident set size (KB) = 968136 Test 142 datm_cdeps_control_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_iau_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/datm_cdeps_iau_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_iau_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/datm_cdeps_iau_gefs Checking test 143 datm_cdeps_iau_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 142.963714 - 0: The maximum resident set size (KB) = 960524 + 0: The total amount of wall time = 145.211318 + 0: The maximum resident set size (KB) = 962020 Test 143 datm_cdeps_iau_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_stochy_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/datm_cdeps_stochy_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_stochy_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/datm_cdeps_stochy_gefs Checking test 144 datm_cdeps_stochy_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 143.460931 - 0: The maximum resident set size (KB) = 960380 + 0: The total amount of wall time = 144.553865 + 0: The maximum resident set size (KB) = 967428 Test 144 datm_cdeps_stochy_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_ciceC_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/datm_cdeps_ciceC_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_ciceC_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/datm_cdeps_ciceC_cfsr Checking test 145 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.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.958330 - 0: The maximum resident set size (KB) = 1063232 + 0: The total amount of wall time = 146.058168 + 0: The maximum resident set size (KB) = 1066188 Test 145 datm_cdeps_ciceC_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_bulk_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/datm_cdeps_bulk_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_bulk_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/datm_cdeps_bulk_cfsr Checking test 146 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.560744 - 0: The maximum resident set size (KB) = 1059368 + 0: The total amount of wall time = 146.694400 + 0: The maximum resident set size (KB) = 1067248 Test 146 datm_cdeps_bulk_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_bulk_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/datm_cdeps_bulk_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_bulk_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/datm_cdeps_bulk_gefs Checking test 147 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 142.309193 - 0: The maximum resident set size (KB) = 961648 + 0: The total amount of wall time = 142.508310 + 0: The maximum resident set size (KB) = 973276 Test 147 datm_cdeps_bulk_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_mx025_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/datm_cdeps_mx025_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_mx025_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/datm_cdeps_mx025_cfsr Checking test 148 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4624,14 +4624,14 @@ Checking test 148 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 436.581069 - 0: The maximum resident set size (KB) = 873992 + 0: The total amount of wall time = 441.374050 + 0: The maximum resident set size (KB) = 874480 Test 148 datm_cdeps_mx025_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_mx025_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/datm_cdeps_mx025_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_mx025_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/datm_cdeps_mx025_gefs Checking test 149 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4640,77 +4640,77 @@ Checking test 149 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 426.335763 - 0: The maximum resident set size (KB) = 934768 + 0: The total amount of wall time = 436.011573 + 0: The maximum resident set size (KB) = 939068 Test 149 datm_cdeps_mx025_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/datm_cdeps_multiple_files_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/datm_cdeps_multiple_files_cfsr Checking test 150 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.501963 - 0: The maximum resident set size (KB) = 1078352 + 0: The total amount of wall time = 148.230839 + 0: The maximum resident set size (KB) = 1068748 Test 150 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/datm_cdeps_3072x1536_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/datm_cdeps_3072x1536_cfsr Checking test 151 datm_cdeps_3072x1536_cfsr 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 = 195.233110 - 0: The maximum resident set size (KB) = 2369104 + 0: The total amount of wall time = 202.673803 + 0: The maximum resident set size (KB) = 2308180 Test 151 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_gfs -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/datm_cdeps_gfs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_gfs +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/datm_cdeps_gfs Checking test 152 datm_cdeps_gfs 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 = 199.821707 - 0: The maximum resident set size (KB) = 2367616 + 0: The total amount of wall time = 208.852830 + 0: The maximum resident set size (KB) = 2306476 Test 152 datm_cdeps_gfs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_debug_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/datm_cdeps_debug_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_debug_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/datm_cdeps_debug_cfsr Checking test 153 datm_cdeps_debug_cfsr results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 357.136813 - 0: The maximum resident set size (KB) = 1005752 + 0: The total amount of wall time = 352.897100 + 0: The maximum resident set size (KB) = 1012164 Test 153 datm_cdeps_debug_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_control_cfsr_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/datm_cdeps_control_cfsr_faster +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_control_cfsr_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/datm_cdeps_control_cfsr_faster Checking test 154 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.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.260641 - 0: The maximum resident set size (KB) = 1056644 + 0: The total amount of wall time = 149.144837 + 0: The maximum resident set size (KB) = 1070156 Test 154 datm_cdeps_control_cfsr_faster PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_lnd_gswp3 -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/datm_cdeps_lnd_gswp3 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_lnd_gswp3 +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/datm_cdeps_lnd_gswp3 Checking test 155 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4719,14 +4719,14 @@ Checking test 155 datm_cdeps_lnd_gswp3 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.153509 - 0: The maximum resident set size (KB) = 265976 + 0: The total amount of wall time = 7.248883 + 0: The maximum resident set size (KB) = 266864 Test 155 datm_cdeps_lnd_gswp3 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_lnd_gswp3 -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/datm_cdeps_lnd_gswp3_rst +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_lnd_gswp3 +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/datm_cdeps_lnd_gswp3_rst Checking test 156 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4735,14 +4735,14 @@ Checking test 156 datm_cdeps_lnd_gswp3_rst 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.588102 - 0: The maximum resident set size (KB) = 253184 + 0: The total amount of wall time = 44.036898 + 0: The maximum resident set size (KB) = 266008 Test 156 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_atmlnd_sbs -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_p8_atmlnd_sbs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8_atmlnd_sbs +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_p8_atmlnd_sbs Checking test 157 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4827,14 +4827,14 @@ Checking test 157 control_p8_atmlnd_sbs 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 = 202.557362 - 0: The maximum resident set size (KB) = 1616464 + 0: The total amount of wall time = 209.564368 + 0: The maximum resident set size (KB) = 1612880 Test 157 control_p8_atmlnd_sbs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/atmwav_control_noaero_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/atmwav_control_noaero_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/atmwav_control_noaero_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/atmwav_control_noaero_p8 Checking test 158 atmwav_control_noaero_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4877,14 +4877,14 @@ Checking test 158 atmwav_control_noaero_p8 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.167252 - 0: The maximum resident set size (KB) = 1634988 + 0: The total amount of wall time = 96.770942 + 0: The maximum resident set size (KB) = 1633536 Test 158 atmwav_control_noaero_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_atmwav -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/control_atmwav +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_atmwav +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_atmwav Checking test 159 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4928,14 +4928,14 @@ Checking test 159 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 86.443106 - 0: The maximum resident set size (KB) = 660536 + 0: The total amount of wall time = 89.527864 + 0: The maximum resident set size (KB) = 657272 Test 159 control_atmwav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/atmaero_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/atmaero_control_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/atmaero_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/atmaero_control_p8 Checking test 160 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4979,14 +4979,14 @@ Checking test 160 atmaero_control_p8 results .... Comparing 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.940500 - 0: The maximum resident set size (KB) = 2979380 + 0: The total amount of wall time = 240.471884 + 0: The maximum resident set size (KB) = 2977996 -Test 160 atmaero_control_p8 PASS +Test 160 atmaero_control_p8 PASS Tries: 2 -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/atmaero_control_p8_rad -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/atmaero_control_p8_rad +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/atmaero_control_p8_rad +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/atmaero_control_p8_rad Checking test 161 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5030,14 +5030,14 @@ Checking test 161 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 279.799061 - 0: The maximum resident set size (KB) = 3052352 + 0: The total amount of wall time = 282.830810 + 0: The maximum resident set size (KB) = 3047088 Test 161 atmaero_control_p8_rad PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/atmaero_control_p8_rad_micro -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/atmaero_control_p8_rad_micro +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/atmaero_control_p8_rad_micro +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/atmaero_control_p8_rad_micro Checking test 162 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5081,14 +5081,14 @@ Checking test 162 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 283.722505 - 0: The maximum resident set size (KB) = 3056140 + 0: The total amount of wall time = 290.964668 + 0: The maximum resident set size (KB) = 3061264 Test 162 atmaero_control_p8_rad_micro PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_atmaq -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/regional_atmaq +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_atmaq +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/regional_atmaq Checking test 163 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5104,14 +5104,14 @@ Checking test 163 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 611.961784 - 0: The maximum resident set size (KB) = 1475592 + 0: The total amount of wall time = 635.627961 + 0: The maximum resident set size (KB) = 1485680 Test 163 regional_atmaq PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_atmaq_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/regional_atmaq_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_atmaq_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/regional_atmaq_debug Checking test 164 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5125,14 +5125,14 @@ Checking test 164 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1210.688622 - 0: The maximum resident set size (KB) = 1225740 + 0: The total amount of wall time = 1220.122870 + 0: The maximum resident set size (KB) = 1406840 Test 164 regional_atmaq_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_atmaq_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1704/stmp/jongkim/FV3_RT/rt_188275/regional_atmaq_faster +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_atmaq_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/regional_atmaq_faster Checking test 165 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5148,12 +5148,12 @@ Checking test 165 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 539.385931 - 0: The maximum resident set size (KB) = 1482108 + 0: The total amount of wall time = 557.263850 + 0: The maximum resident set size (KB) = 1470316 Test 165 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Tue Apr 11 19:55:58 CDT 2023 -Elapsed time: 01h:27m:36s. Have a nice day! +Thu Apr 13 22:56:56 CDT 2023 +Elapsed time: 01h:13m:54s. Have a nice day! diff --git a/tests/RegressionTests_wcoss2.intel.log b/tests/RegressionTests_wcoss2.intel.log index 6d49e6f4e11..b99ea5f4674 100644 --- a/tests/RegressionTests_wcoss2.intel.log +++ b/tests/RegressionTests_wcoss2.intel.log @@ -1,34 +1,34 @@ -Wed Apr 12 12:35:19 UTC 2023 +Fri Apr 14 14:51:36 UTC 2023 Start Regression test -Compile 001 elapsed time 586 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 1130 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 536 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 1595 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 005 elapsed time 500 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 001 elapsed time 2095 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 592 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 1418 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 505 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 005 elapsed time 505 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON Compile 006 elapsed time 670 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 1352 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 008 elapsed time 1045 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 009 elapsed time 468 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 1112 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 1176 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 545 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 013 elapsed time 272 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 1245 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 015 elapsed time 447 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 516 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 017 elapsed time 932 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 581 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 019 elapsed time 480 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 646 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 889 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 022 elapsed time 719 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 932 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 024 elapsed time 219 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 025 elapsed time 746 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8_mixedmode -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/cpld_control_p8_mixedmode +Compile 007 elapsed time 536 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 1552 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 009 elapsed time 1221 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 939 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 785 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 604 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 841 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 014 elapsed time 968 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 593 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 618 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 017 elapsed time 241 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 789 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 019 elapsed time 211 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 796 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 930 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 022 elapsed time 480 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 508 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 024 elapsed time 546 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 025 elapsed time 858 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8_mixedmode +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -93,14 +93,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 337.629042 -The maximum resident set size (KB) = 2948256 +The total amount of wall time = 335.367384 +The maximum resident set size (KB) = 2953624 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/cpld_control_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/cpld_control_p8 Checking test 002 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -165,14 +165,14 @@ Checking test 002 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 388.230437 -The maximum resident set size (KB) = 2984648 +The total amount of wall time = 391.703825 +The maximum resident set size (KB) = 2988548 Test 002 cpld_control_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/cpld_restart_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/cpld_restart_p8 Checking test 003 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -225,14 +225,14 @@ Checking test 003 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 233.086978 -The maximum resident set size (KB) = 2871908 +The total amount of wall time = 230.729633 +The maximum resident set size (KB) = 2874880 Test 003 cpld_restart_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/cpld_control_qr_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/cpld_control_qr_p8 Checking test 004 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -297,14 +297,14 @@ Checking test 004 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 391.799938 -The maximum resident set size (KB) = 2993800 +The total amount of wall time = 393.676704 +The maximum resident set size (KB) = 2993308 Test 004 cpld_control_qr_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/cpld_restart_qr_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/cpld_restart_qr_p8 Checking test 005 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -357,14 +357,14 @@ Checking test 005 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 239.075090 -The maximum resident set size (KB) = 2885504 +The total amount of wall time = 233.729312 +The maximum resident set size (KB) = 2881496 Test 005 cpld_restart_qr_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/cpld_2threads_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/cpld_2threads_p8 Checking test 006 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -417,14 +417,14 @@ Checking test 006 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 367.366905 -The maximum resident set size (KB) = 3285420 +The total amount of wall time = 374.434142 +The maximum resident set size (KB) = 3285332 Test 006 cpld_2threads_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/cpld_decomp_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/cpld_decomp_p8 Checking test 007 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -477,14 +477,14 @@ Checking test 007 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 387.092071 -The maximum resident set size (KB) = 2979376 +The total amount of wall time = 380.940164 +The maximum resident set size (KB) = 2979688 Test 007 cpld_decomp_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/cpld_mpi_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/cpld_mpi_p8 Checking test 008 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -537,14 +537,14 @@ Checking test 008 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 316.661585 -The maximum resident set size (KB) = 2908560 +The total amount of wall time = 319.955770 +The maximum resident set size (KB) = 2917412 Test 008 cpld_mpi_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_ciceC_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/cpld_control_ciceC_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_ciceC_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/cpld_control_ciceC_p8 Checking test 009 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -609,14 +609,14 @@ Checking test 009 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 387.776477 -The maximum resident set size (KB) = 2984012 +The total amount of wall time = 387.651871 +The maximum resident set size (KB) = 2984684 Test 009 cpld_control_ciceC_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_bmark_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/cpld_bmark_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_bmark_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/cpld_bmark_p8 Checking test 010 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -664,14 +664,14 @@ Checking test 010 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 938.750995 -The maximum resident set size (KB) = 3918824 +The total amount of wall time = 947.861559 +The maximum resident set size (KB) = 3935828 Test 010 cpld_bmark_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_bmark_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/cpld_restart_bmark_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_bmark_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/cpld_restart_bmark_p8 Checking test 011 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -719,14 +719,14 @@ Checking test 011 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 660.030023 -The maximum resident set size (KB) = 3890956 +The total amount of wall time = 651.161772 +The maximum resident set size (KB) = 3894736 Test 011 cpld_restart_bmark_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/cpld_control_noaero_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/cpld_control_noaero_p8 Checking test 012 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -790,14 +790,14 @@ Checking test 012 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 284.446280 -The maximum resident set size (KB) = 1582524 +The total amount of wall time = 282.598859 +The maximum resident set size (KB) = 1578536 Test 012 cpld_control_noaero_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/cpld_control_nowave_noaero_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_c96_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/cpld_control_nowave_noaero_p8 Checking test 013 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -859,14 +859,14 @@ Checking test 013 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 305.280301 -The maximum resident set size (KB) = 1630028 +The total amount of wall time = 301.325997 +The maximum resident set size (KB) = 1634356 Test 013 cpld_control_nowave_noaero_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/cpld_control_noaero_p8_agrid +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_noaero_p8_agrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/cpld_control_noaero_p8_agrid Checking test 014 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -928,14 +928,14 @@ Checking test 014 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 308.997972 -The maximum resident set size (KB) = 1633852 +The total amount of wall time = 308.132527 +The maximum resident set size (KB) = 1627268 Test 014 cpld_control_noaero_p8_agrid PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/cpld_control_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/cpld_control_c48 Checking test 015 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -985,14 +985,14 @@ Checking test 015 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 435.771343 -The maximum resident set size (KB) = 2636784 +The total amount of wall time = 436.213971 +The maximum resident set size (KB) = 2645208 Test 015 cpld_control_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/cpld_warmstart_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/cpld_warmstart_c48 Checking test 016 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1042,14 +1042,14 @@ Checking test 016 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 127.173422 -The maximum resident set size (KB) = 2656092 +The total amount of wall time = 123.037030 +The maximum resident set size (KB) = 2653132 Test 016 cpld_warmstart_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/cpld_restart_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/cpld_restart_c48 Checking test 017 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1099,14 +1099,14 @@ Checking test 017 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 68.804560 -The maximum resident set size (KB) = 2065664 +The total amount of wall time = 72.287334 +The maximum resident set size (KB) = 2075064 Test 017 cpld_restart_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/cpld_control_p8_faster +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/cpld_control_p8_faster Checking test 018 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1171,14 +1171,14 @@ Checking test 018 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 379.718400 -The maximum resident set size (KB) = 2982068 +The total amount of wall time = 382.090286 +The maximum resident set size (KB) = 2980736 Test 018 cpld_control_p8_faster PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_CubedSphereGrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/control_CubedSphereGrid +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_CubedSphereGrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/control_CubedSphereGrid Checking test 019 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1205,14 +1205,14 @@ Checking test 019 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 129.927163 -The maximum resident set size (KB) = 517388 +The total amount of wall time = 143.535538 +The maximum resident set size (KB) = 513880 Test 019 control_CubedSphereGrid PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_latlon -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/control_latlon +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_latlon +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/control_latlon Checking test 020 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1223,14 +1223,14 @@ Checking test 020 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 132.964157 -The maximum resident set size (KB) = 519520 +The total amount of wall time = 143.437786 +The maximum resident set size (KB) = 516404 Test 020 control_latlon PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/control_wrtGauss_netcdf_parallel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/control_wrtGauss_netcdf_parallel Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1241,14 +1241,14 @@ Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 136.191556 -The maximum resident set size (KB) = 519256 +The total amount of wall time = 135.901775 +The maximum resident set size (KB) = 518760 Test 021 control_wrtGauss_netcdf_parallel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/control_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/control_c48 Checking test 022 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1287,14 +1287,14 @@ Checking test 022 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 325.875458 -The maximum resident set size (KB) = 674232 +The total amount of wall time = 329.856609 +The maximum resident set size (KB) = 677324 Test 022 control_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_c192 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/control_c192 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_c192 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/control_c192 Checking test 023 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1305,14 +1305,14 @@ Checking test 023 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 529.603510 -The maximum resident set size (KB) = 616904 +The total amount of wall time = 548.921997 +The maximum resident set size (KB) = 616896 Test 023 control_c192 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_c384 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/control_c384 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_c384 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/control_c384 Checking test 024 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1323,14 +1323,14 @@ Checking test 024 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 568.631269 -The maximum resident set size (KB) = 930672 +The total amount of wall time = 569.356607 +The maximum resident set size (KB) = 934524 Test 024 control_c384 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_c384gdas -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/control_c384gdas +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_c384gdas +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/control_c384gdas Checking test 025 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1373,14 +1373,14 @@ Checking test 025 control_c384gdas 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 = 498.691145 -The maximum resident set size (KB) = 1062524 +The total amount of wall time = 497.700820 +The maximum resident set size (KB) = 1060480 Test 025 control_c384gdas PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/control_stochy +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/control_stochy Checking test 026 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1391,28 +1391,28 @@ Checking test 026 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 91.845918 -The maximum resident set size (KB) = 520860 +The total amount of wall time = 109.610515 +The maximum resident set size (KB) = 520180 Test 026 control_stochy PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/control_stochy_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/control_stochy_restart Checking test 027 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 48.893917 -The maximum resident set size (KB) = 291728 +The total amount of wall time = 49.370311 +The maximum resident set size (KB) = 290160 Test 027 control_stochy_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/control_lndp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/control_lndp Checking test 028 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1423,14 +1423,14 @@ Checking test 028 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 84.476013 -The maximum resident set size (KB) = 518292 +The total amount of wall time = 103.374053 +The maximum resident set size (KB) = 520912 Test 028 control_lndp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_iovr4 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/control_iovr4 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_iovr4 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/control_iovr4 Checking test 029 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1445,14 +1445,14 @@ Checking test 029 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.702764 -The maximum resident set size (KB) = 520284 +The total amount of wall time = 147.036322 +The maximum resident set size (KB) = 518868 Test 029 control_iovr4 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_iovr5 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/control_iovr5 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_iovr5 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/control_iovr5 Checking test 030 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1467,14 +1467,14 @@ Checking test 030 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 137.592044 -The maximum resident set size (KB) = 518572 +The total amount of wall time = 150.071698 +The maximum resident set size (KB) = 517396 Test 030 control_iovr5 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/control_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/control_p8 Checking test 031 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1521,14 +1521,14 @@ Checking test 031 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 181.523776 -The maximum resident set size (KB) = 1490204 +The total amount of wall time = 181.481435 +The maximum resident set size (KB) = 1487412 Test 031 control_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/control_restart_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/control_restart_p8 Checking test 032 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1567,14 +1567,14 @@ Checking test 032 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 105.362905 -The maximum resident set size (KB) = 654008 +The total amount of wall time = 102.937434 +The maximum resident set size (KB) = 658112 Test 032 control_restart_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/control_qr_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/control_qr_p8 Checking test 033 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1621,14 +1621,14 @@ Checking test 033 control_qr_p8 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.772394 -The maximum resident set size (KB) = 1493556 +The total amount of wall time = 177.207235 +The maximum resident set size (KB) = 1500616 Test 033 control_qr_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/control_restart_qr_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/control_restart_qr_p8 Checking test 034 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1667,14 +1667,14 @@ Checking test 034 control_restart_qr_p8 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 = 105.989468 -The maximum resident set size (KB) = 665300 +The total amount of wall time = 102.911057 +The maximum resident set size (KB) = 666632 Test 034 control_restart_qr_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/control_decomp_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/control_decomp_p8 Checking test 035 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1717,14 +1717,14 @@ Checking test 035 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 183.190293 -The maximum resident set size (KB) = 1486984 +The total amount of wall time = 183.417479 +The maximum resident set size (KB) = 1485732 Test 035 control_decomp_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/control_2threads_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/control_2threads_p8 Checking test 036 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1767,14 +1767,14 @@ Checking test 036 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 155.652170 -The maximum resident set size (KB) = 1576164 +The total amount of wall time = 158.284189 +The maximum resident set size (KB) = 1569196 Test 036 control_2threads_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/control_p8_lndp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/control_p8_lndp Checking test 037 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1793,14 +1793,14 @@ Checking test 037 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 325.955548 -The maximum resident set size (KB) = 1490264 +The total amount of wall time = 323.884728 +The maximum resident set size (KB) = 1492232 Test 037 control_p8_lndp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_rrtmgp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/control_p8_rrtmgp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8_rrtmgp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/control_p8_rrtmgp Checking test 038 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1847,14 +1847,14 @@ Checking test 038 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 236.728927 -The maximum resident set size (KB) = 1545560 +The total amount of wall time = 235.683532 +The maximum resident set size (KB) = 1547512 Test 038 control_p8_rrtmgp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_mynn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/control_p8_mynn +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8_mynn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/control_p8_mynn Checking test 039 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1901,14 +1901,14 @@ Checking test 039 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 183.013701 -The maximum resident set size (KB) = 1490100 +The total amount of wall time = 181.158989 +The maximum resident set size (KB) = 1486196 Test 039 control_p8_mynn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/merra2_thompson -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/merra2_thompson +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/merra2_thompson +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/merra2_thompson Checking test 040 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1955,14 +1955,14 @@ Checking test 040 merra2_thompson results .... 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.669688 -The maximum resident set size (KB) = 1498648 +The total amount of wall time = 206.407393 +The maximum resident set size (KB) = 1495268 Test 040 merra2_thompson PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/regional_control +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/regional_control Checking test 041 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1973,28 +1973,28 @@ Checking test 041 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 290.426888 -The maximum resident set size (KB) = 651808 +The total amount of wall time = 287.807020 +The maximum resident set size (KB) = 659528 Test 041 regional_control PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/regional_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/regional_restart Checking test 042 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 157.464946 -The maximum resident set size (KB) = 652296 +The total amount of wall time = 162.438271 +The maximum resident set size (KB) = 655248 Test 042 regional_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/regional_control_qr +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/regional_control_qr Checking test 043 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2005,28 +2005,28 @@ Checking test 043 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 292.280001 -The maximum resident set size (KB) = 657804 +The total amount of wall time = 290.624764 +The maximum resident set size (KB) = 654116 Test 043 regional_control_qr PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/regional_restart_qr +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/regional_restart_qr Checking test 044 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 161.450503 -The maximum resident set size (KB) = 652752 +The total amount of wall time = 165.269314 +The maximum resident set size (KB) = 657236 Test 044 regional_restart_qr PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/regional_decomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/regional_decomp Checking test 045 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2037,14 +2037,14 @@ Checking test 045 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 305.925171 -The maximum resident set size (KB) = 654932 +The total amount of wall time = 306.008168 +The maximum resident set size (KB) = 655220 Test 045 regional_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/regional_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/regional_2threads Checking test 046 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2055,14 +2055,14 @@ Checking test 046 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 179.382227 -The maximum resident set size (KB) = 696484 +The total amount of wall time = 179.272526 +The maximum resident set size (KB) = 698312 Test 046 regional_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_noquilt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/regional_noquilt +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_noquilt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/regional_noquilt Checking test 047 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2070,28 +2070,28 @@ Checking test 047 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 322.283022 -The maximum resident set size (KB) = 649432 +The total amount of wall time = 316.964622 +The maximum resident set size (KB) = 650040 Test 047 regional_noquilt PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/regional_netcdf_parallel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/regional_netcdf_parallel Checking test 048 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK -The total amount of wall time = 296.108606 -The maximum resident set size (KB) = 652956 +The total amount of wall time = 288.181489 +The maximum resident set size (KB) = 651080 Test 048 regional_netcdf_parallel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/regional_2dwrtdecomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/regional_2dwrtdecomp Checking test 049 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2102,14 +2102,14 @@ Checking test 049 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 301.453077 -The maximum resident set size (KB) = 656160 +The total amount of wall time = 290.926232 +The maximum resident set size (KB) = 657648 Test 049 regional_2dwrtdecomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/fv3_regional_wofs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/regional_wofs +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/fv3_regional_wofs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/regional_wofs Checking test 050 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2120,14 +2120,14 @@ Checking test 050 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 367.449141 -The maximum resident set size (KB) = 341204 +The total amount of wall time = 374.346717 +The maximum resident set size (KB) = 340796 Test 050 regional_wofs PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/rap_control +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/rap_control Checking test 051 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2174,14 +2174,14 @@ Checking test 051 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 419.252301 -The maximum resident set size (KB) = 891144 +The total amount of wall time = 421.370158 +The maximum resident set size (KB) = 896516 Test 051 rap_control PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/regional_spp_sppt_shum_skeb +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_spp_sppt_shum_skeb +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/regional_spp_sppt_shum_skeb Checking test 052 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2192,14 +2192,14 @@ Checking test 052 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 242.234647 -The maximum resident set size (KB) = 990796 +The total amount of wall time = 244.142084 +The maximum resident set size (KB) = 1005284 Test 052 regional_spp_sppt_shum_skeb PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/rap_decomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/rap_decomp Checking test 053 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2246,14 +2246,14 @@ Checking test 053 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 433.331829 -The maximum resident set size (KB) = 893488 +The total amount of wall time = 430.739220 +The maximum resident set size (KB) = 897552 Test 053 rap_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/rap_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/rap_2threads Checking test 054 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2300,14 +2300,14 @@ Checking test 054 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 387.454690 -The maximum resident set size (KB) = 969276 +The total amount of wall time = 386.697507 +The maximum resident set size (KB) = 972072 Test 054 rap_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/rap_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/rap_restart Checking test 055 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2346,14 +2346,14 @@ Checking test 055 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 212.448456 -The maximum resident set size (KB) = 649208 +The total amount of wall time = 214.072262 +The maximum resident set size (KB) = 652084 Test 055 rap_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/rap_sfcdiff +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/rap_sfcdiff Checking test 056 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2400,14 +2400,14 @@ Checking test 056 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 427.727686 -The maximum resident set size (KB) = 895144 +The total amount of wall time = 420.288199 +The maximum resident set size (KB) = 899344 Test 056 rap_sfcdiff PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/rap_sfcdiff_decomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/rap_sfcdiff_decomp Checking test 057 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2454,14 +2454,14 @@ Checking test 057 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 440.200084 -The maximum resident set size (KB) = 895484 +The total amount of wall time = 440.481383 +The maximum resident set size (KB) = 900640 Test 057 rap_sfcdiff_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/rap_sfcdiff_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/rap_sfcdiff_restart Checking test 058 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2500,14 +2500,14 @@ Checking test 058 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 309.654359 -The maximum resident set size (KB) = 643600 +The total amount of wall time = 312.159230 +The maximum resident set size (KB) = 647588 Test 058 rap_sfcdiff_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/hrrr_control +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/hrrr_control Checking test 059 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2554,14 +2554,14 @@ Checking test 059 hrrr_control results .... 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.208598 -The maximum resident set size (KB) = 891032 +The total amount of wall time = 406.899085 +The maximum resident set size (KB) = 896468 Test 059 hrrr_control PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/hrrr_control_decomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/hrrr_control_decomp Checking test 060 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2608,14 +2608,14 @@ Checking test 060 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 422.812623 -The maximum resident set size (KB) = 892772 +The total amount of wall time = 420.804567 +The maximum resident set size (KB) = 897900 Test 060 hrrr_control_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/hrrr_control_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/hrrr_control_2threads Checking test 061 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2662,14 +2662,14 @@ Checking test 061 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 374.791873 -The maximum resident set size (KB) = 958332 +The total amount of wall time = 374.617271 +The maximum resident set size (KB) = 971176 Test 061 hrrr_control_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/hrrr_control_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/hrrr_control_restart Checking test 062 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2708,14 +2708,14 @@ Checking test 062 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 297.368886 -The maximum resident set size (KB) = 642732 +The total amount of wall time = 304.438006 +The maximum resident set size (KB) = 643344 Test 062 hrrr_control_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_v1beta -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/rrfs_v1beta +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_v1beta +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/rrfs_v1beta Checking test 063 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2762,14 +2762,14 @@ Checking test 063 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 419.823872 -The maximum resident set size (KB) = 890456 +The total amount of wall time = 416.901646 +The maximum resident set size (KB) = 895496 Test 063 rrfs_v1beta PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_v1nssl -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/rrfs_v1nssl +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_v1nssl +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/rrfs_v1nssl Checking test 064 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2784,14 +2784,14 @@ Checking test 064 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 481.953547 -The maximum resident set size (KB) = 581992 +The total amount of wall time = 482.976535 +The maximum resident set size (KB) = 579956 Test 064 rrfs_v1nssl PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/rrfs_v1nssl_nohailnoccn +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/rrfs_v1nssl_nohailnoccn Checking test 065 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2806,14 +2806,14 @@ Checking test 065 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 476.042279 -The maximum resident set size (KB) = 571260 +The total amount of wall time = 473.435203 +The maximum resident set size (KB) = 574944 Test 065 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/rrfs_smoke_conus13km_hrrr_warm Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2822,14 +2822,14 @@ Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 148.585548 -The maximum resident set size (KB) = 799016 +The total amount of wall time = 148.789969 +The maximum resident set size (KB) = 805096 Test 066 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 067 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2838,14 +2838,14 @@ Checking test 067 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 102.351955 -The maximum resident set size (KB) = 799892 +The total amount of wall time = 110.472354 +The maximum resident set size (KB) = 808784 Test 067 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/rrfs_conus13km_hrrr_warm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/rrfs_conus13km_hrrr_warm Checking test 068 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2854,14 +2854,14 @@ Checking test 068 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 136.723781 -The maximum resident set size (KB) = 778820 +The total amount of wall time = 136.296479 +The maximum resident set size (KB) = 784872 Test 068 rrfs_conus13km_hrrr_warm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/rrfs_smoke_conus13km_radar_tten_warm Checking test 069 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2870,26 +2870,26 @@ Checking test 069 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 149.886512 -The maximum resident set size (KB) = 809064 +The total amount of wall time = 153.668608 +The maximum resident set size (KB) = 805360 Test 069 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 070 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 69.744453 -The maximum resident set size (KB) = 764152 +The total amount of wall time = 70.192981 +The maximum resident set size (KB) = 765596 Test 070 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_csawmg -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/control_csawmg +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_csawmg +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/control_csawmg Checking test 071 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2900,14 +2900,14 @@ Checking test 071 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 350.924012 -The maximum resident set size (KB) = 588600 +The total amount of wall time = 347.957475 +The maximum resident set size (KB) = 583412 Test 071 control_csawmg PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_csawmgt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/control_csawmgt +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_csawmgt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/control_csawmgt Checking test 072 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2918,14 +2918,14 @@ Checking test 072 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 346.864621 -The maximum resident set size (KB) = 589920 +The total amount of wall time = 345.600749 +The maximum resident set size (KB) = 584824 Test 072 control_csawmgt PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_ras -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/control_ras +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_ras +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/control_ras Checking test 073 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2936,26 +2936,26 @@ Checking test 073 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 184.358922 -The maximum resident set size (KB) = 554852 +The total amount of wall time = 183.408344 +The maximum resident set size (KB) = 552888 Test 073 control_ras PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_wam -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/control_wam +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_wam +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/control_wam Checking test 074 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 118.646426 -The maximum resident set size (KB) = 275564 +The total amount of wall time = 118.791984 +The maximum resident set size (KB) = 352308 Test 074 control_wam PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/control_p8_faster +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/control_p8_faster Checking test 075 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3002,14 +3002,14 @@ Checking test 075 control_p8_faster results .... 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.884543 -The maximum resident set size (KB) = 1486024 +The total amount of wall time = 175.459870 +The maximum resident set size (KB) = 1485576 Test 075 control_p8_faster PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/regional_control_faster +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/regional_control_faster Checking test 076 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3020,56 +3020,56 @@ Checking test 076 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 287.665009 -The maximum resident set size (KB) = 658520 +The total amount of wall time = 284.842386 +The maximum resident set size (KB) = 653008 Test 076 regional_control_faster PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 077 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 906.952037 -The maximum resident set size (KB) = 833376 +The total amount of wall time = 901.095078 +The maximum resident set size (KB) = 826972 Test 077 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 078 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 523.049820 -The maximum resident set size (KB) = 828740 +The total amount of wall time = 520.185307 +The maximum resident set size (KB) = 830220 Test 078 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/rrfs_conus13km_hrrr_warm_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/rrfs_conus13km_hrrr_warm_debug Checking test 079 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 811.609835 -The maximum resident set size (KB) = 806236 +The total amount of wall time = 806.226454 +The maximum resident set size (KB) = 805772 Test 079 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_CubedSphereGrid_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/control_CubedSphereGrid_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_CubedSphereGrid_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/control_CubedSphereGrid_debug Checking test 080 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3096,334 +3096,334 @@ Checking test 080 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 159.106097 -The maximum resident set size (KB) = 673040 +The total amount of wall time = 157.447895 +The maximum resident set size (KB) = 675760 Test 080 control_CubedSphereGrid_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/control_wrtGauss_netcdf_parallel_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/control_wrtGauss_netcdf_parallel_debug Checking test 081 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 160.110779 -The maximum resident set size (KB) = 677180 +The total amount of wall time = 157.152861 +The maximum resident set size (KB) = 679416 Test 081 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_stochy_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/control_stochy_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_stochy_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/control_stochy_debug Checking test 082 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 180.288766 -The maximum resident set size (KB) = 684620 +The total amount of wall time = 178.183703 +The maximum resident set size (KB) = 686428 Test 082 control_stochy_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/control_lndp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/control_lndp_debug Checking test 083 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 162.169360 -The maximum resident set size (KB) = 683856 +The total amount of wall time = 160.747820 +The maximum resident set size (KB) = 683368 Test 083 control_lndp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_csawmg_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/control_csawmg_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_csawmg_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/control_csawmg_debug Checking test 084 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 254.904728 -The maximum resident set size (KB) = 717568 +The total amount of wall time = 253.276187 +The maximum resident set size (KB) = 717816 Test 084 control_csawmg_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_csawmgt_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/control_csawmgt_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_csawmgt_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/control_csawmgt_debug Checking test 085 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 250.201035 -The maximum resident set size (KB) = 720208 +The total amount of wall time = 249.095737 +The maximum resident set size (KB) = 718132 Test 085 control_csawmgt_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_ras_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/control_ras_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_ras_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/control_ras_debug Checking test 086 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 163.433294 -The maximum resident set size (KB) = 688284 +The total amount of wall time = 160.259971 +The maximum resident set size (KB) = 695688 Test 086 control_ras_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/control_diag_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/control_diag_debug Checking test 087 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 163.870248 -The maximum resident set size (KB) = 736264 +The total amount of wall time = 161.732692 +The maximum resident set size (KB) = 735644 Test 087 control_diag_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_debug_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/control_debug_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_debug_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/control_debug_p8 Checking test 088 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 186.193380 -The maximum resident set size (KB) = 1502508 +The total amount of wall time = 184.417501 +The maximum resident set size (KB) = 1508380 Test 088 control_debug_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/regional_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/regional_debug Checking test 089 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1048.217220 -The maximum resident set size (KB) = 674880 +The total amount of wall time = 1039.988796 +The maximum resident set size (KB) = 676528 Test 089 regional_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/rap_control_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/rap_control_debug Checking test 090 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.444429 -The maximum resident set size (KB) = 1057476 +The total amount of wall time = 298.011879 +The maximum resident set size (KB) = 1053876 Test 090 rap_control_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/hrrr_control_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/hrrr_control_debug Checking test 091 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 292.847572 -The maximum resident set size (KB) = 1046492 +The total amount of wall time = 290.475051 +The maximum resident set size (KB) = 1046012 Test 091 hrrr_control_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/rap_unified_drag_suite_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/rap_unified_drag_suite_debug Checking test 092 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 301.384774 -The maximum resident set size (KB) = 1056712 +The total amount of wall time = 298.240480 +The maximum resident set size (KB) = 1056856 Test 092 rap_unified_drag_suite_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/rap_diag_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/rap_diag_debug Checking test 093 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 311.200494 -The maximum resident set size (KB) = 1133280 +The total amount of wall time = 307.202577 +The maximum resident set size (KB) = 1134224 Test 093 rap_diag_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/rap_cires_ugwp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/rap_cires_ugwp_debug Checking test 094 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 304.621187 -The maximum resident set size (KB) = 1054980 +The total amount of wall time = 302.735256 +The maximum resident set size (KB) = 1055956 Test 094 rap_cires_ugwp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/rap_unified_ugwp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/rap_unified_ugwp_debug Checking test 095 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 305.308015 -The maximum resident set size (KB) = 1056236 +The total amount of wall time = 302.070986 +The maximum resident set size (KB) = 1054088 Test 095 rap_unified_ugwp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/rap_lndp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/rap_lndp_debug Checking test 096 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 301.944730 -The maximum resident set size (KB) = 1052376 +The total amount of wall time = 299.603966 +The maximum resident set size (KB) = 1056480 Test 096 rap_lndp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_flake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/rap_flake_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_flake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/rap_flake_debug Checking test 097 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 304.603575 -The maximum resident set size (KB) = 1052848 +The total amount of wall time = 294.941306 +The maximum resident set size (KB) = 1053916 Test 097 rap_flake_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_progcld_thompson_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/rap_progcld_thompson_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_progcld_thompson_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/rap_progcld_thompson_debug Checking test 098 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.641814 -The maximum resident set size (KB) = 1057424 +The total amount of wall time = 297.648311 +The maximum resident set size (KB) = 1050472 Test 098 rap_progcld_thompson_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_noah_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/rap_noah_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_noah_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/rap_noah_debug Checking test 099 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 296.112637 -The maximum resident set size (KB) = 1053560 +The total amount of wall time = 291.052921 +The maximum resident set size (KB) = 1051852 Test 099 rap_noah_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_sfcdiff_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/rap_sfcdiff_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_sfcdiff_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/rap_sfcdiff_debug Checking test 100 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.784172 -The maximum resident set size (KB) = 1052868 +The total amount of wall time = 296.306690 +The maximum resident set size (KB) = 1053104 Test 100 rap_sfcdiff_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/rap_noah_sfcdiff_cires_ugwp_debug Checking test 101 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 496.711751 -The maximum resident set size (KB) = 1052156 +The total amount of wall time = 485.238984 +The maximum resident set size (KB) = 1054084 Test 101 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_v1beta_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/rrfs_v1beta_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_v1beta_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/rrfs_v1beta_debug Checking test 102 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 293.911479 -The maximum resident set size (KB) = 1050720 +The total amount of wall time = 292.671351 +The maximum resident set size (KB) = 1049300 Test 102 rrfs_v1beta_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_wam_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/control_wam_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_wam_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/control_wam_debug Checking test 103 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 297.381833 -The maximum resident set size (KB) = 302852 +The total amount of wall time = 302.946593 +The maximum resident set size (KB) = 303340 Test 103 control_wam_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3434,14 +3434,14 @@ Checking test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 235.500132 -The maximum resident set size (KB) = 890980 +The total amount of wall time = 235.246760 +The maximum resident set size (KB) = 889600 Test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/rap_control_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/rap_control_dyn32_phy32 Checking test 105 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3488,14 +3488,14 @@ Checking test 105 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 355.292173 -The maximum resident set size (KB) = 780028 +The total amount of wall time = 360.264476 +The maximum resident set size (KB) = 776676 Test 105 rap_control_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/hrrr_control_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/hrrr_control_dyn32_phy32 Checking test 106 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3542,14 +3542,14 @@ Checking test 106 hrrr_control_dyn32_phy32 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 = 187.273742 -The maximum resident set size (KB) = 780692 +The total amount of wall time = 188.806547 +The maximum resident set size (KB) = 776380 Test 106 hrrr_control_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/rap_2threads_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/rap_2threads_dyn32_phy32 Checking test 107 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3596,14 +3596,14 @@ Checking test 107 rap_2threads_dyn32_phy32 results .... 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.722764 -The maximum resident set size (KB) = 836228 +The total amount of wall time = 331.810879 +The maximum resident set size (KB) = 837152 Test 107 rap_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/hrrr_control_2threads_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/hrrr_control_2threads_dyn32_phy32 Checking test 108 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3650,14 +3650,14 @@ Checking test 108 hrrr_control_2threads_dyn32_phy32 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 = 172.717019 -The maximum resident set size (KB) = 831460 +The total amount of wall time = 173.135785 +The maximum resident set size (KB) = 829980 Test 108 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/hrrr_control_decomp_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/hrrr_control_decomp_dyn32_phy32 Checking test 109 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3704,14 +3704,14 @@ Checking test 109 hrrr_control_decomp_dyn32_phy32 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 = 196.064811 -The maximum resident set size (KB) = 775780 +The total amount of wall time = 194.843982 +The maximum resident set size (KB) = 776040 Test 109 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/rap_restart_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/rap_restart_dyn32_phy32 Checking test 110 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3750,14 +3750,14 @@ Checking test 110 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 257.614293 -The maximum resident set size (KB) = 615280 +The total amount of wall time = 261.333199 +The maximum resident set size (KB) = 612936 Test 110 rap_restart_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/hrrr_control_restart_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/hrrr_control_restart_dyn32_phy32 Checking test 111 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3796,14 +3796,14 @@ Checking test 111 hrrr_control_restart_dyn32_phy32 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 = 98.842116 -The maximum resident set size (KB) = 613064 +The total amount of wall time = 99.810099 +The maximum resident set size (KB) = 610012 Test 111 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/rap_control_dyn64_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/rap_control_dyn64_phy32 Checking test 112 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3850,81 +3850,81 @@ Checking test 112 rap_control_dyn64_phy32 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 = 235.381886 -The maximum resident set size (KB) = 797856 +The total amount of wall time = 238.269532 +The maximum resident set size (KB) = 798528 Test 112 rap_control_dyn64_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/rap_control_debug_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/rap_control_debug_dyn32_phy32 Checking test 113 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 291.219720 -The maximum resident set size (KB) = 941696 +The total amount of wall time = 289.180505 +The maximum resident set size (KB) = 935848 Test 113 rap_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/hrrr_control_debug_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/hrrr_control_debug_dyn32_phy32 Checking test 114 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 286.554181 -The maximum resident set size (KB) = 938200 +The total amount of wall time = 288.243610 +The maximum resident set size (KB) = 940020 Test 114 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/rap_control_dyn64_phy32_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/rap_control_dyn64_phy32_debug Checking test 115 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 292.796691 -The maximum resident set size (KB) = 954268 +The total amount of wall time = 299.621146 +The maximum resident set size (KB) = 950016 Test 115 rap_control_dyn64_phy32_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/hafs_regional_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/hafs_regional_atm Checking test 116 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 274.988582 -The maximum resident set size (KB) = 825604 +The total amount of wall time = 272.872366 +The maximum resident set size (KB) = 825608 Test 116 hafs_regional_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/hafs_regional_atm_thompson_gfdlsf +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/hafs_regional_atm_thompson_gfdlsf Checking test 117 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 322.085291 -The maximum resident set size (KB) = 1172372 +The total amount of wall time = 335.711178 +The maximum resident set size (KB) = 1186568 Test 117 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/hafs_regional_atm_ocn +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/hafs_regional_atm_ocn Checking test 118 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3933,14 +3933,14 @@ Checking test 118 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 390.089893 -The maximum resident set size (KB) = 861084 +The total amount of wall time = 392.112589 +The maximum resident set size (KB) = 862952 Test 118 hafs_regional_atm_ocn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/hafs_regional_atm_wav +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/hafs_regional_atm_wav Checking test 119 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3949,14 +3949,14 @@ Checking test 119 hafs_regional_atm_wav results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 711.552279 -The maximum resident set size (KB) = 888548 +The total amount of wall time = 708.018107 +The maximum resident set size (KB) = 891036 Test 119 hafs_regional_atm_wav PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/hafs_regional_atm_ocn_wav +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/hafs_regional_atm_ocn_wav Checking test 120 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3967,28 +3967,28 @@ Checking test 120 hafs_regional_atm_ocn_wav 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 = 903.263413 -The maximum resident set size (KB) = 914964 +The total amount of wall time = 898.197177 +The maximum resident set size (KB) = 916828 Test 120 hafs_regional_atm_ocn_wav PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/hafs_regional_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/hafs_regional_1nest_atm Checking test 121 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 333.107984 -The maximum resident set size (KB) = 394968 +The total amount of wall time = 341.211502 +The maximum resident set size (KB) = 403612 Test 121 hafs_regional_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/hafs_regional_telescopic_2nests_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/hafs_regional_telescopic_2nests_atm Checking test 122 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3997,28 +3997,28 @@ Checking test 122 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 403.569874 -The maximum resident set size (KB) = 401176 +The total amount of wall time = 405.327575 +The maximum resident set size (KB) = 404504 Test 122 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_global_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/hafs_global_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_global_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/hafs_global_1nest_atm Checking test 123 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 177.252960 -The maximum resident set size (KB) = 269964 +The total amount of wall time = 172.095125 +The maximum resident set size (KB) = 269416 Test 123 hafs_global_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_global_multiple_4nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/hafs_global_multiple_4nests_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_global_multiple_4nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/hafs_global_multiple_4nests_atm Checking test 124 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4036,14 +4036,14 @@ Checking test 124 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -The total amount of wall time = 492.509282 -The maximum resident set size (KB) = 346788 +The total amount of wall time = 490.210050 +The maximum resident set size (KB) = 349940 Test 124 hafs_global_multiple_4nests_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/hafs_regional_specified_moving_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/hafs_regional_specified_moving_1nest_atm Checking test 125 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4052,28 +4052,28 @@ Checking test 125 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 221.290339 -The maximum resident set size (KB) = 411596 +The total amount of wall time = 221.436992 +The maximum resident set size (KB) = 414112 Test 125 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/hafs_regional_storm_following_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/hafs_regional_storm_following_1nest_atm Checking test 126 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 207.373938 -The maximum resident set size (KB) = 408540 +The total amount of wall time = 218.297781 +The maximum resident set size (KB) = 409016 Test 126 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/hafs_regional_storm_following_1nest_atm_ocn Checking test 127 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4082,42 +4082,42 @@ Checking test 127 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 259.318364 -The maximum resident set size (KB) = 466944 +The total amount of wall time = 254.113572 +The maximum resident set size (KB) = 470108 Test 127 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/hafs_global_storm_following_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_global_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/hafs_global_storm_following_1nest_atm Checking test 128 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 94.433087 -The maximum resident set size (KB) = 288484 +The total amount of wall time = 85.779829 +The maximum resident set size (KB) = 282932 Test 128 hafs_global_storm_following_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 129 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 803.627269 -The maximum resident set size (KB) = 493240 +The total amount of wall time = 800.770281 +The maximum resident set size (KB) = 488416 Test 129 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 130 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4128,14 +4128,14 @@ Checking test 130 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 508.156907 -The maximum resident set size (KB) = 523224 +The total amount of wall time = 503.628811 +The maximum resident set size (KB) = 526960 Test 130 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_atmlnd_sbs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/control_p8_atmlnd_sbs +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8_atmlnd_sbs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/control_p8_atmlnd_sbs Checking test 131 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4220,14 +4220,14 @@ Checking test 131 control_p8_atmlnd_sbs 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 = 239.091503 -The maximum resident set size (KB) = 1547152 +The total amount of wall time = 238.833158 +The maximum resident set size (KB) = 1538904 Test 131 control_p8_atmlnd_sbs PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/atmaero_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/atmaero_control_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/atmaero_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/atmaero_control_p8 Checking test 132 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4271,14 +4271,14 @@ Checking test 132 atmaero_control_p8 results .... 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.169667 -The maximum resident set size (KB) = 2815484 +The total amount of wall time = 247.319806 +The maximum resident set size (KB) = 2820304 Test 132 atmaero_control_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/atmaero_control_p8_rad -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/atmaero_control_p8_rad +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/atmaero_control_p8_rad +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/atmaero_control_p8_rad Checking test 133 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4322,14 +4322,14 @@ Checking test 133 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 287.722816 -The maximum resident set size (KB) = 2877044 +The total amount of wall time = 286.078384 +The maximum resident set size (KB) = 2878868 Test 133 atmaero_control_p8_rad PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/atmaero_control_p8_rad_micro +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/atmaero_control_p8_rad_micro +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/atmaero_control_p8_rad_micro Checking test 134 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4373,14 +4373,14 @@ Checking test 134 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 292.902680 -The maximum resident set size (KB) = 2887444 +The total amount of wall time = 290.598870 +The maximum resident set size (KB) = 2888184 Test 134 atmaero_control_p8_rad_micro PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_atmaq -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/regional_atmaq +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_atmaq +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/regional_atmaq Checking test 135 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4396,14 +4396,14 @@ Checking test 135 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 688.835527 -The maximum resident set size (KB) = 1262908 +The total amount of wall time = 687.460145 +The maximum resident set size (KB) = 1260460 Test 135 regional_atmaq PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_atmaq_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/regional_atmaq_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_atmaq_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/regional_atmaq_debug Checking test 136 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4417,14 +4417,14 @@ Checking test 136 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1305.306021 -The maximum resident set size (KB) = 1295520 +The total amount of wall time = 1305.240853 +The maximum resident set size (KB) = 1301068 Test 136 regional_atmaq_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_atmaq_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_184827/regional_atmaq_faster +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_atmaq_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/regional_atmaq_faster Checking test 137 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4440,12 +4440,12 @@ Checking test 137 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 643.839958 -The maximum resident set size (KB) = 1261676 +The total amount of wall time = 643.341017 +The maximum resident set size (KB) = 1267388 Test 137 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Wed Apr 12 13:45:04 UTC 2023 -Elapsed time: 01h:09m:46s. Have a nice day! +Fri Apr 14 16:02:52 UTC 2023 +Elapsed time: 01h:11m:17s. Have a nice day! diff --git a/tests/fv3_conf/control_run.IN b/tests/fv3_conf/control_run.IN index 33671021152..a26cac11366 100644 --- a/tests/fv3_conf/control_run.IN +++ b/tests/fv3_conf/control_run.IN @@ -103,9 +103,9 @@ fi #inline post if [[ $POSTAPP = 'global' ]]; then - cp ${PATHRT}/parm/post_itag itag - cp ${PATHRT}/parm/postxconfig-NT.txt postxconfig-NT.txt - cp ${PATHRT}/parm/postxconfig-NT_FH00.txt postxconfig-NT_FH00.txt + cp ${PATHRT}/parm/post_itag_gfs itag + cp ${PATHRT}/parm/postxconfig-NT-gfs.txt postxconfig-NT.txt + cp ${PATHRT}/parm/postxconfig-NT-gfs_FH00.txt postxconfig-NT_FH00.txt cp ${PATHRT}/parm/params_grib2_tbl_new params_grib2_tbl_new fi diff --git a/tests/fv3_conf/cpld_control_run.IN b/tests/fv3_conf/cpld_control_run.IN index c18c66fd6c8..95cdc204865 100644 --- a/tests/fv3_conf/cpld_control_run.IN +++ b/tests/fv3_conf/cpld_control_run.IN @@ -140,9 +140,9 @@ fi #inline post if [ $WRITE_DOPOST = .true. ]; then - cp ${PATHRT}/parm/post_itag itag - cp ${PATHRT}/parm/postxconfig-NT.txt postxconfig-NT.txt - cp ${PATHRT}/parm/postxconfig-NT_FH00.txt postxconfig-NT_FH00.txt + cp ${PATHRT}/parm/post_itag_gfs itag + cp ${PATHRT}/parm/postxconfig-NT-gfs.txt postxconfig-NT.txt + cp ${PATHRT}/parm/postxconfig-NT-gfs_FH00.txt postxconfig-NT_FH00.txt cp ${PATHRT}/parm/params_grib2_tbl_new params_grib2_tbl_new fi diff --git a/tests/parm/post_itag b/tests/parm/post_itag_gfs similarity index 89% rename from tests/parm/post_itag rename to tests/parm/post_itag_gfs index 0bc3d71a084..ef77b503af3 100644 --- a/tests/parm/post_itag +++ b/tests/parm/post_itag_gfs @@ -2,5 +2,5 @@ MODELNAME='GFS' / &NAMPGB - KPO=57,PO=1000.,975.,950.,925.,900.,875.,850.,825.,800.,775.,750.,725.,700.,675.,650.,625.,600.,575.,550.,525.,500.,475.,450.,425.,400.,375.,350.,325.,300.,275.,250.,225.,200.,175.,150.,125.,100.,70.,50.,40.,30.,20.,15.,10.,7.,5.,3.,2.,1.,0.7,0.4,0.2,0.1,0.07,0.04,0.02,0.01, + KPO=57,PO=1000.,975.,950.,925.,900.,875.,850.,825.,800.,775.,750.,725.,700.,675.,650.,625.,600.,575.,550.,525.,500.,475.,450.,425.,400.,375.,350.,325.,300.,275.,250.,225.,200.,175.,150.,125.,100.,70.,50.,40.,30.,20.,15.,10.,7.,5.,3.,2.,1.,0.7,0.4,0.2,0.1,0.07,0.04,0.02,0.01,rdaod=.true., / diff --git a/tests/parm/postxconfig-NT.txt b/tests/parm/postxconfig-NT-gfs.txt similarity index 99% rename from tests/parm/postxconfig-NT.txt rename to tests/parm/postxconfig-NT-gfs.txt index 16ae865984a..ba22c218fc6 100644 --- a/tests/parm/postxconfig-NT.txt +++ b/tests/parm/postxconfig-NT-gfs.txt @@ -1,6 +1,6 @@ 2 112 -209 +210 GFSPRS 0 ncep_nco @@ -7750,6 +7750,43 @@ between_first_second_limit ? ? ? +1006 +SDEN_ON_SURFACE +? +1 +tmpl4_0 +SDEN +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? GFSFLX 0 ncep_nco diff --git a/tests/parm/postxconfig-NT_FH00.txt b/tests/parm/postxconfig-NT-gfs_FH00.txt similarity index 100% rename from tests/parm/postxconfig-NT_FH00.txt rename to tests/parm/postxconfig-NT-gfs_FH00.txt diff --git a/tests/rt.sh b/tests/rt.sh index bfd2469992a..d6491c74f80 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -446,7 +446,7 @@ if [[ $TESTS_FILE =~ '35d' ]] || [[ $TESTS_FILE =~ 'weekly' ]]; then fi -BL_DATE=20230407 +BL_DATE=20230413 RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-${BL_DATE}/${RT_COMPILER^^}} From d5ab891efcf80dc2f5c9be40fcf8326d6d0216d5 Mon Sep 17 00:00:00 2001 From: lisa-bengtsson <54411948+lisa-bengtsson@users.noreply.github.com> Date: Mon, 17 Apr 2023 12:20:26 -0600 Subject: [PATCH 21/30] Development of a unified convection scheme and update WW3 with latest develop (#1669) * Updates to new unified convection, cleaning etc --------- Co-authored-by: Jessica Meixner --- FV3 | 2 +- WW3 | 2 +- tests/RegressionTests_cheyenne.gnu.log | 336 +++--- tests/RegressionTests_cheyenne.intel.log | 1270 +++++++++++----------- tests/RegressionTests_hera.gnu.log | 406 ++++--- tests/RegressionTests_hera.intel.log | 1066 +++++++++--------- tests/RegressionTests_jet.intel.log | 952 ++++++++-------- tests/RegressionTests_orion.intel.log | 1080 +++++++++--------- tests/RegressionTests_wcoss2.intel.log | 878 +++++++-------- 9 files changed, 3049 insertions(+), 2943 deletions(-) diff --git a/FV3 b/FV3 index f071fc658dc..c4631255f82 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit f071fc658dcb2b9f53b5fe1363c1584eacfe1895 +Subproject commit c4631255f82e78286d81c813871fb8a0c13d7fc2 diff --git a/WW3 b/WW3 index df3c1e2dc50..081d5a64f20 160000 --- a/WW3 +++ b/WW3 @@ -1 +1 @@ -Subproject commit df3c1e2dc50a4fc52df7181fb494e9aae4d612a5 +Subproject commit 081d5a64f205caac7f920acec6004b1a184f5709 diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index c0b14e44e97..01065977eb5 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,21 +1,21 @@ -Thu Apr 13 20:06:39 MDT 2023 +Fri Apr 14 18:23:22 MDT 2023 Start Regression test -Compile 001 elapsed time 385 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 408 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 858 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 186 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 380 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 1086 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 853 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 856 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 627 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 576 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 355 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 012 elapsed time 303 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 001 elapsed time 380 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 403 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 867 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 192 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 377 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 1106 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 861 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 862 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 671 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 566 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 351 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 012 elapsed time 301 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/control_c48 -working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/control_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/control_c48 Checking test 001 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -54,14 +54,14 @@ Checking test 001 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 821.432916 -0:The maximum resident set size (KB) = 679760 +0:The total amount of wall time = 820.041241 +0:The maximum resident set size (KB) = 679808 Test 001 control_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/control_stochy -working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/control_stochy +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/control_stochy Checking test 002 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -72,14 +72,14 @@ Checking test 002 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 177.666595 -0:The maximum resident set size (KB) = 443272 +0:The total amount of wall time = 177.812502 +0:The maximum resident set size (KB) = 443220 Test 002 control_stochy PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/control_ras -working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/control_ras +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/control_ras Checking test 003 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -90,14 +90,14 @@ Checking test 003 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 298.282849 -0:The maximum resident set size (KB) = 452016 +0:The total amount of wall time = 294.797327 +0:The maximum resident set size (KB) = 452044 Test 003 control_ras PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/control_p8 -working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/control_p8 Checking test 004 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -144,14 +144,14 @@ Checking test 004 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 309.839206 -0:The maximum resident set size (KB) = 1224632 +0:The total amount of wall time = 303.347372 +0:The maximum resident set size (KB) = 1224988 Test 004 control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rap_control -working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/rap_control Checking test 005 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -198,14 +198,14 @@ Checking test 005 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 713.413966 -0:The maximum resident set size (KB) = 792132 +0:The total amount of wall time = 713.359875 +0:The maximum resident set size (KB) = 791760 Test 005 rap_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rap_control -working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/rap_decomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/rap_decomp Checking test 006 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -252,14 +252,14 @@ Checking test 006 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 718.731864 -0:The maximum resident set size (KB) = 791904 +0:The total amount of wall time = 713.567790 +0:The maximum resident set size (KB) = 791440 Test 006 rap_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rap_control -working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/rap_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/rap_2threads Checking test 007 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -306,14 +306,14 @@ Checking test 007 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 653.089302 -0:The maximum resident set size (KB) = 865920 +0:The total amount of wall time = 648.829899 +0:The maximum resident set size (KB) = 865788 Test 007 rap_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rap_control -working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/rap_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/rap_restart Checking test 008 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -352,14 +352,14 @@ Checking test 008 rap_restart results .... Comparing 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.930066 -0:The maximum resident set size (KB) = 539428 +0:The total amount of wall time = 354.898075 +0:The maximum resident set size (KB) = 538968 Test 008 rap_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/rap_sfcdiff Checking test 009 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -406,14 +406,14 @@ Checking test 009 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 715.536747 -0:The maximum resident set size (KB) = 792276 +0:The total amount of wall time = 710.871508 +0:The maximum resident set size (KB) = 791980 Test 009 rap_sfcdiff PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/rap_sfcdiff_decomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/rap_sfcdiff_decomp Checking test 010 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -460,14 +460,14 @@ Checking test 010 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 722.672547 -0:The maximum resident set size (KB) = 791680 +0:The total amount of wall time = 719.385309 +0:The maximum resident set size (KB) = 791192 Test 010 rap_sfcdiff_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/rap_sfcdiff_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/rap_sfcdiff_restart Checking test 011 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -506,14 +506,14 @@ Checking test 011 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 527.993939 -0:The maximum resident set size (KB) = 544644 +0:The total amount of wall time = 527.776274 +0:The maximum resident set size (KB) = 544304 Test 011 rap_sfcdiff_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/hrrr_control -working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/hrrr_control Checking test 012 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -560,14 +560,14 @@ Checking test 012 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 692.890540 -0:The maximum resident set size (KB) = 789912 +0:The total amount of wall time = 688.299946 +0:The maximum resident set size (KB) = 789096 Test 012 hrrr_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/hrrr_control -working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/hrrr_control_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/hrrr_control_2threads Checking test 013 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -614,14 +614,14 @@ Checking test 013 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 628.729136 -0:The maximum resident set size (KB) = 860248 +0:The total amount of wall time = 627.192634 +0:The maximum resident set size (KB) = 860540 Test 013 hrrr_control_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/hrrr_control -working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/hrrr_control_decomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/hrrr_control_decomp Checking test 014 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -668,14 +668,14 @@ Checking test 014 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 694.538270 -0:The maximum resident set size (KB) = 789280 +0:The total amount of wall time = 685.604775 +0:The maximum resident set size (KB) = 788924 Test 014 hrrr_control_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/hrrr_control -working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/hrrr_control_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/hrrr_control_restart Checking test 015 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -714,14 +714,14 @@ Checking test 015 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 519.152310 -0:The maximum resident set size (KB) = 540688 +0:The total amount of wall time = 509.396838 +0:The maximum resident set size (KB) = 540156 Test 015 hrrr_control_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rrfs_v1beta -working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/rrfs_v1beta +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/rrfs_v1beta Checking test 016 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -768,14 +768,14 @@ Checking test 016 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 706.135679 -0:The maximum resident set size (KB) = 789188 +0:The total amount of wall time = 700.930660 +0:The maximum resident set size (KB) = 788860 Test 016 rrfs_v1beta PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/rrfs_smoke_conus13km_hrrr_warm Checking test 017 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -784,14 +784,14 @@ Checking test 017 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 230.391677 -0:The maximum resident set size (KB) = 636480 +0:The total amount of wall time = 231.511514 +0:The maximum resident set size (KB) = 636952 Test 017 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/rrfs_smoke_conus13km_hrrr_warm_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 018 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -800,14 +800,14 @@ Checking test 018 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 145.720933 -0:The maximum resident set size (KB) = 660724 +0:The total amount of wall time = 145.728809 +0:The maximum resident set size (KB) = 661236 Test 018 rrfs_smoke_conus13km_hrrr_warm_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/rrfs_conus13km_hrrr_warm Checking test 019 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -816,14 +816,14 @@ Checking test 019 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 211.944143 -0:The maximum resident set size (KB) = 615864 +0:The total amount of wall time = 210.569742 +0:The maximum resident set size (KB) = 615616 Test 019 rrfs_conus13km_hrrr_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/rrfs_smoke_conus13km_radar_tten_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/rrfs_smoke_conus13km_radar_tten_warm Checking test 020 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -832,234 +832,234 @@ Checking test 020 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 234.220429 -0:The maximum resident set size (KB) = 639168 +0:The total amount of wall time = 232.473991 +0:The maximum resident set size (KB) = 639672 Test 020 rrfs_smoke_conus13km_radar_tten_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 021 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 109.986473 -0:The maximum resident set size (KB) = 596476 +0:The total amount of wall time = 109.564092 +0:The maximum resident set size (KB) = 596376 Test 021 rrfs_conus13km_hrrr_warm_restart_mismatch PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/control_diag_debug -working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/control_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/control_diag_debug Checking test 022 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 82.960748 -0:The maximum resident set size (KB) = 491788 +0:The total amount of wall time = 81.775895 +0:The maximum resident set size (KB) = 491868 Test 022 control_diag_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/regional_debug -working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/regional_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/regional_debug Checking test 023 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 481.067259 -0:The maximum resident set size (KB) = 566568 +0:The total amount of wall time = 476.373438 +0:The maximum resident set size (KB) = 568328 Test 023 regional_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rap_control_debug -working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/rap_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/rap_control_debug Checking test 024 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 146.226331 -0:The maximum resident set size (KB) = 805828 +0:The total amount of wall time = 144.319835 +0:The maximum resident set size (KB) = 805628 Test 024 rap_control_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/hrrr_control_debug -working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/hrrr_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/hrrr_control_debug Checking test 025 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 143.704686 -0:The maximum resident set size (KB) = 801648 +0:The total amount of wall time = 144.942706 +0:The maximum resident set size (KB) = 801348 Test 025 hrrr_control_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rap_diag_debug -working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/rap_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/rap_diag_debug Checking test 026 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 152.744365 -0:The maximum resident set size (KB) = 888220 +0:The total amount of wall time = 150.832497 +0:The maximum resident set size (KB) = 888144 Test 026 rap_diag_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/rap_noah_sfcdiff_cires_ugwp_debug Checking test 027 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 235.712809 -0:The maximum resident set size (KB) = 804280 +0:The total amount of wall time = 232.179973 +0:The maximum resident set size (KB) = 804572 Test 027 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rap_progcld_thompson_debug -working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/rap_progcld_thompson_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/rap_progcld_thompson_debug Checking test 028 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 146.305921 -0:The maximum resident set size (KB) = 805744 +0:The total amount of wall time = 144.209111 +0:The maximum resident set size (KB) = 805616 Test 028 rap_progcld_thompson_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rrfs_v1beta_debug -working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/rrfs_v1beta_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/rrfs_v1beta_debug Checking test 029 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 144.680346 -0:The maximum resident set size (KB) = 801360 +0:The total amount of wall time = 144.614691 +0:The maximum resident set size (KB) = 801132 Test 029 rrfs_v1beta_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/control_ras_debug -working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/control_ras_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/control_ras_debug Checking test 030 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 80.856737 -0:The maximum resident set size (KB) = 445984 +0:The total amount of wall time = 79.939931 +0:The maximum resident set size (KB) = 446128 Test 030 control_ras_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/control_stochy_debug -working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/control_stochy_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/control_stochy_debug Checking test 031 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 90.223132 -0:The maximum resident set size (KB) = 438816 +0:The total amount of wall time = 88.202910 +0:The maximum resident set size (KB) = 438468 Test 031 control_stochy_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/control_debug_p8 -working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/control_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/control_debug_p8 Checking test 032 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 91.032863 -0:The maximum resident set size (KB) = 1221180 +0:The total amount of wall time = 92.154399 +0:The maximum resident set size (KB) = 1221484 Test 032 control_debug_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 033 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 440.078151 -0:The maximum resident set size (KB) = 641432 +0:The total amount of wall time = 433.270317 +0:The maximum resident set size (KB) = 641628 Test 033 rrfs_smoke_conus13km_hrrr_warm_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 034 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 257.501390 -0:The maximum resident set size (KB) = 665668 +0:The total amount of wall time = 254.193132 +0:The maximum resident set size (KB) = 661304 Test 034 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/rrfs_conus13km_hrrr_warm_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/rrfs_conus13km_hrrr_warm_debug Checking test 035 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 397.223105 -0:The maximum resident set size (KB) = 619872 +0:The total amount of wall time = 392.380868 +0:The maximum resident set size (KB) = 620388 Test 035 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/control_wam_debug -working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/control_wam_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/control_wam_debug Checking test 036 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 139.562641 -0:The maximum resident set size (KB) = 182104 +0:The total amount of wall time = 142.088085 +0:The maximum resident set size (KB) = 182768 Test 036 control_wam_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/rap_control_dyn32_phy32 Checking test 037 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1106,14 +1106,14 @@ Checking test 037 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 706.983146 -0:The maximum resident set size (KB) = 673652 +0:The total amount of wall time = 704.086187 +0:The maximum resident set size (KB) = 673392 Test 037 rap_control_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/hrrr_control_dyn32_phy32 Checking test 038 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1160,14 +1160,14 @@ Checking test 038 hrrr_control_dyn32_phy32 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 = 354.875107 -0:The maximum resident set size (KB) = 671116 +0:The total amount of wall time = 356.300401 +0:The maximum resident set size (KB) = 670780 Test 038 hrrr_control_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/rap_2threads_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/rap_2threads_dyn32_phy32 Checking test 039 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1214,14 +1214,14 @@ Checking test 039 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 641.815995 -0:The maximum resident set size (KB) = 719536 +0:The total amount of wall time = 644.613007 +0:The maximum resident set size (KB) = 720120 Test 039 rap_2threads_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/hrrr_control_2threads_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/hrrr_control_2threads_dyn32_phy32 Checking test 040 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1268,14 +1268,14 @@ Checking test 040 hrrr_control_2threads_dyn32_phy32 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 = 320.987095 -0:The maximum resident set size (KB) = 716632 +0:The total amount of wall time = 320.228193 +0:The maximum resident set size (KB) = 716880 Test 040 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/hrrr_control_decomp_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/hrrr_control_decomp_dyn32_phy32 Checking test 041 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1322,14 +1322,14 @@ Checking test 041 hrrr_control_decomp_dyn32_phy32 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 = 353.703337 -0:The maximum resident set size (KB) = 670188 +0:The total amount of wall time = 355.191544 +0:The maximum resident set size (KB) = 670784 Test 041 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/rap_restart_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/rap_restart_dyn32_phy32 Checking test 042 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1368,14 +1368,14 @@ Checking test 042 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 519.225623 -0:The maximum resident set size (KB) = 511732 +0:The total amount of wall time = 519.731359 +0:The maximum resident set size (KB) = 511352 Test 042 rap_restart_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/hrrr_control_restart_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/hrrr_control_restart_dyn32_phy32 Checking test 043 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1414,14 +1414,14 @@ Checking test 043 hrrr_control_restart_dyn32_phy32 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 = 179.522147 -0:The maximum resident set size (KB) = 507332 +0:The total amount of wall time = 182.665311 +0:The maximum resident set size (KB) = 507324 Test 043 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rap_control_dyn64_phy32 -working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/rap_control_dyn64_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/rap_control_dyn64_phy32 Checking test 044 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1468,56 +1468,56 @@ Checking test 044 rap_control_dyn64_phy32 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 = 415.429390 -0:The maximum resident set size (KB) = 693696 +0:The total amount of wall time = 408.017393 +0:The maximum resident set size (KB) = 692572 Test 044 rap_control_dyn64_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/rap_control_debug_dyn32_phy32 Checking test 045 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 143.803641 -0:The maximum resident set size (KB) = 688076 +0:The total amount of wall time = 142.681121 +0:The maximum resident set size (KB) = 686724 Test 045 rap_control_debug_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/hrrr_control_debug_dyn32_phy32 Checking test 046 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 141.684075 -0:The maximum resident set size (KB) = 684208 +0:The total amount of wall time = 139.695583 +0:The maximum resident set size (KB) = 684132 Test 046 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/rap_control_dyn64_phy32_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/rap_control_dyn64_phy32_debug Checking test 047 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 148.706449 -0:The maximum resident set size (KB) = 707736 +0:The total amount of wall time = 146.854160 +0:The maximum resident set size (KB) = 707680 Test 047 rap_control_dyn64_phy32_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/cpld_control_p8 Checking test 048 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1582,14 +1582,14 @@ Checking test 048 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 499.375434 -0:The maximum resident set size (KB) = 3158660 +0:The total amount of wall time = 502.265035 +0:The maximum resident set size (KB) = 3160480 Test 048 cpld_control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/cpld_control_nowave_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/cpld_control_nowave_noaero_p8 Checking test 049 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1651,14 +1651,14 @@ Checking test 049 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 249.454143 -0:The maximum resident set size (KB) = 1242168 +0:The total amount of wall time = 248.811245 +0:The maximum resident set size (KB) = 1240876 Test 049 cpld_control_nowave_noaero_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/cpld_debug_p8 -working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/cpld_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/cpld_debug_p8 Checking test 050 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1711,25 +1711,25 @@ Checking test 050 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 199.695749 -0:The maximum resident set size (KB) = 3174588 +0:The total amount of wall time = 201.693095 +0:The maximum resident set size (KB) = 3174108 Test 050 cpld_debug_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/datm_cdeps_control_cfsr -working dir = /glade/scratch/jongkim/rt-1690-gnu/jongkim/FV3_RT/rt_59477/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/datm_cdeps_control_cfsr Checking test 051 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 179.243888 -0:The maximum resident set size (KB) = 679076 +0:The total amount of wall time = 178.946624 +0:The maximum resident set size (KB) = 672444 Test 051 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Thu Apr 13 20:42:21 MDT 2023 -Elapsed time: 00h:35m:42s. Have a nice day! +Fri Apr 14 18:55:19 MDT 2023 +Elapsed time: 00h:31m:58s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 641a450fe23..9e1e4617df6 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,43 +1,45 @@ -Thu Apr 13 20:07:26 MDT 2023 +Fri Apr 14 18:08:22 MDT 2023 Start Regression test -Compile 001 elapsed time 1382 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 1408 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 1388 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 463 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 408 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 1077 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 1075 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 1769 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 1074 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 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 011 elapsed time 918 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 810 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 1292 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 408 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 267 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 849 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Test 008 compile FAIL + +Compile 001 elapsed time 1515 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1409 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 1357 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 459 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 389 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 1072 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 1066 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 1674 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 1076 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 976 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 011 elapsed time 945 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 795 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 1318 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 404 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 262 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 835 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile 017 elapsed time 846 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 271 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 278 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 282 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 275 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug Compile 020 elapsed time 1133 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 021 elapsed time 350 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 1576 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 1122 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 024 elapsed time 426 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 195 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 425 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 107 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 957 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 999 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 1026 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 898 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 883 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 033 elapsed time 294 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 034 elapsed time 1050 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 348 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 1698 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 1121 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 024 elapsed time 433 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 204 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 433 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 109 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 949 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 994 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 1002 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 907 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 874 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 033 elapsed time 299 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 034 elapsed time 1039 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8_mixedmode -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/cpld_control_p8_mixedmode +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -102,14 +104,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 322.410208 -0:The maximum resident set size (KB) = 2698132 +0:The total amount of wall time = 321.130301 +0:The maximum resident set size (KB) = 2698004 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_gfsv17 -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/cpld_control_gfsv17 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -173,14 +175,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 272.999933 -0:The maximum resident set size (KB) = 1437576 +0:The total amount of wall time = 280.682872 +0:The maximum resident set size (KB) = 1437268 Test 002 cpld_control_gfsv17 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -245,14 +247,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 314.960493 -0:The maximum resident set size (KB) = 2715328 +0:The total amount of wall time = 323.736830 +0:The maximum resident set size (KB) = 2715224 Test 003 cpld_control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/cpld_restart_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -305,14 +307,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 183.142993 -0:The maximum resident set size (KB) = 2576516 +0:The total amount of wall time = 186.372603 +0:The maximum resident set size (KB) = 2576552 Test 004 cpld_restart_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/cpld_control_qr_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -377,14 +379,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 333.967221 -0:The maximum resident set size (KB) = 2719516 +0:The total amount of wall time = 328.036696 +0:The maximum resident set size (KB) = 2719616 Test 005 cpld_control_qr_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/cpld_restart_qr_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -437,14 +439,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 197.480999 -0:The maximum resident set size (KB) = 2594024 +0:The total amount of wall time = 194.617490 +0:The maximum resident set size (KB) = 2593380 Test 006 cpld_restart_qr_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/cpld_2threads_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -497,14 +499,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 250.823933 -0:The maximum resident set size (KB) = 3177844 +0:The total amount of wall time = 256.430225 +0:The maximum resident set size (KB) = 3177700 Test 007 cpld_2threads_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/cpld_decomp_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -557,14 +559,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 313.965681 -0:The maximum resident set size (KB) = 2720560 +0:The total amount of wall time = 312.621668 +0:The maximum resident set size (KB) = 2720244 Test 008 cpld_decomp_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/cpld_mpi_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -617,14 +619,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 277.194030 -0:The maximum resident set size (KB) = 2680792 +0:The total amount of wall time = 269.731329 +0:The maximum resident set size (KB) = 2680512 Test 009 cpld_mpi_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_ciceC_p8 -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/cpld_control_ciceC_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -689,16 +691,134 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 324.791251 -0:The maximum resident set size (KB) = 2715348 +0:The total amount of wall time = 323.012335 +0:The maximum resident set size (KB) = 2715228 Test 010 cpld_control_ciceC_p8 PASS -Test 011 cpld_control_c192_p8 FAIL + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_c192_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/cpld_control_c192_p8 +Checking test 011 cpld_control_c192_p8 results .... + Comparing sfcf030.tile1.nc .........OK + Comparing sfcf030.tile2.nc .........OK + Comparing sfcf030.tile3.nc .........OK + Comparing sfcf030.tile4.nc .........OK + Comparing sfcf030.tile5.nc .........OK + Comparing sfcf030.tile6.nc .........OK + Comparing atmf030.tile1.nc .........OK + Comparing atmf030.tile2.nc .........OK + Comparing atmf030.tile3.nc .........OK + Comparing atmf030.tile4.nc .........OK + Comparing atmf030.tile5.nc .........OK + Comparing atmf030.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_1200z.nc4 .........OK + Comparing RESTART/20210323.120000.coupler.res .........OK + Comparing RESTART/20210323.120000.fv_core.res.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK + Comparing 20210323.120000.out_grd.ww3 .........OK + Comparing 20210323.120000.out_pnt.ww3 .........OK + +0:The total amount of wall time = 623.773572 +0:The maximum resident set size (KB) = 3352080 + +Test 011 cpld_control_c192_p8 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_c192_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/cpld_restart_c192_p8 +Checking test 012 cpld_restart_c192_p8 results .... + Comparing sfcf030.tile1.nc .........OK + Comparing sfcf030.tile2.nc .........OK + Comparing sfcf030.tile3.nc .........OK + Comparing sfcf030.tile4.nc .........OK + Comparing sfcf030.tile5.nc .........OK + Comparing sfcf030.tile6.nc .........OK + Comparing atmf030.tile1.nc .........OK + Comparing atmf030.tile2.nc .........OK + Comparing atmf030.tile3.nc .........OK + Comparing atmf030.tile4.nc .........OK + Comparing atmf030.tile5.nc .........OK + Comparing atmf030.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_1200z.nc4 .........OK + Comparing RESTART/20210323.120000.coupler.res .........OK + Comparing RESTART/20210323.120000.fv_core.res.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK + Comparing 20210323.120000.out_grd.ww3 .........OK + Comparing 20210323.120000.out_pnt.ww3 .........OK + +0:The total amount of wall time = 383.639506 +0:The maximum resident set size (KB) = 3276604 + +Test 012 cpld_restart_c192_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_noaero_p8 -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/cpld_control_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/cpld_control_noaero_p8 Checking test 013 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -762,14 +882,14 @@ Checking test 013 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 295.222542 -0:The maximum resident set size (KB) = 1435640 +0:The total amount of wall time = 295.013108 +0:The maximum resident set size (KB) = 1435608 Test 013 cpld_control_noaero_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/cpld_control_nowave_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/cpld_control_nowave_noaero_p8 Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -831,14 +951,14 @@ Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 197.752847 -0:The maximum resident set size (KB) = 1453172 +0:The total amount of wall time = 193.798217 +0:The maximum resident set size (KB) = 1453240 Test 014 cpld_control_nowave_noaero_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_debug_p8 -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/cpld_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/cpld_debug_p8 Checking test 015 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -891,14 +1011,14 @@ Checking test 015 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 351.646730 -0:The maximum resident set size (KB) = 2778644 +0:The total amount of wall time = 351.504136 +0:The maximum resident set size (KB) = 2778664 Test 015 cpld_debug_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_debug_noaero_p8 -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/cpld_debug_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/cpld_debug_noaero_p8 Checking test 016 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -950,14 +1070,14 @@ Checking test 016 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 299.316068 -0:The maximum resident set size (KB) = 1453792 +0:The total amount of wall time = 302.923195 +0:The maximum resident set size (KB) = 1453936 Test 016 cpld_debug_noaero_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_noaero_p8_agrid -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/cpld_control_noaero_p8_agrid +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/cpld_control_noaero_p8_agrid Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1019,14 +1139,14 @@ Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 255.180857 -0:The maximum resident set size (KB) = 1456860 +0:The total amount of wall time = 253.924520 +0:The maximum resident set size (KB) = 1456944 Test 017 cpld_control_noaero_p8_agrid PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_c48 -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/cpld_control_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/cpld_control_c48 Checking test 018 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1076,14 +1196,14 @@ Checking test 018 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 603.735610 -0:The maximum resident set size (KB) = 2586312 +0:The total amount of wall time = 610.629956 +0:The maximum resident set size (KB) = 2586356 Test 018 cpld_control_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/cpld_warmstart_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/cpld_warmstart_c48 Checking test 019 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1133,14 +1253,14 @@ Checking test 019 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -0:The total amount of wall time = 162.741489 -0:The maximum resident set size (KB) = 2601884 +0:The total amount of wall time = 161.901745 +0:The maximum resident set size (KB) = 2601520 Test 019 cpld_warmstart_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/cpld_restart_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/cpld_restart_c48 Checking test 020 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1190,14 +1310,14 @@ Checking test 020 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -0:The total amount of wall time = 84.635119 -0:The maximum resident set size (KB) = 2018616 +0:The total amount of wall time = 85.693921 +0:The maximum resident set size (KB) = 2019240 Test 020 cpld_restart_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_CubedSphereGrid -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_CubedSphereGrid +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_CubedSphereGrid Checking test 021 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1224,28 +1344,28 @@ Checking test 021 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -0:The total amount of wall time = 142.952229 -0:The maximum resident set size (KB) = 454344 +0:The total amount of wall time = 144.089710 +0:The maximum resident set size (KB) = 454280 Test 021 control_CubedSphereGrid PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_CubedSphereGrid_parallel -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_CubedSphereGrid_parallel +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_CubedSphereGrid_parallel Checking test 022 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf000.nc .........OK Comparing atmf024.nc ............ALT CHECK......OK -0:The total amount of wall time = 140.312403 -0:The maximum resident set size (KB) = 454312 +0:The total amount of wall time = 139.950543 +0:The maximum resident set size (KB) = 454148 Test 022 control_CubedSphereGrid_parallel PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_latlon -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_latlon +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_latlon Checking test 023 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1256,14 +1376,14 @@ Checking test 023 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 146.717630 -0:The maximum resident set size (KB) = 454404 +0:The total amount of wall time = 146.271458 +0:The maximum resident set size (KB) = 454240 Test 023 control_latlon PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_wrtGauss_netcdf_parallel -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_wrtGauss_netcdf_parallel +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_wrtGauss_netcdf_parallel Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1274,14 +1394,14 @@ Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 149.226415 -0:The maximum resident set size (KB) = 454172 +0:The total amount of wall time = 146.583450 +0:The maximum resident set size (KB) = 454260 Test 024 control_wrtGauss_netcdf_parallel PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_c48 -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_c48 Checking test 025 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1320,14 +1440,14 @@ Checking test 025 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 442.990653 -0:The maximum resident set size (KB) = 633532 +0:The total amount of wall time = 445.570346 +0:The maximum resident set size (KB) = 633464 Test 025 control_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_c192 -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_c192 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_c192 Checking test 026 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1338,14 +1458,14 @@ Checking test 026 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 593.247076 -0:The maximum resident set size (KB) = 560332 +0:The total amount of wall time = 582.018455 +0:The maximum resident set size (KB) = 560372 Test 026 control_c192 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_c384 -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_c384 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_c384 Checking test 027 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1356,14 +1476,14 @@ Checking test 027 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 585.312724 -0:The maximum resident set size (KB) = 899428 +0:The total amount of wall time = 589.190692 +0:The maximum resident set size (KB) = 902572 Test 027 control_c384 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_c384gdas -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_c384gdas +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_c384gdas Checking test 028 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1406,14 +1526,14 @@ Checking test 028 control_c384gdas results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 514.037858 -0:The maximum resident set size (KB) = 1028528 +0:The total amount of wall time = 516.152287 +0:The maximum resident set size (KB) = 1026892 Test 028 control_c384gdas PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_stochy -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_stochy +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_stochy Checking test 029 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1424,28 +1544,28 @@ Checking test 029 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 98.722279 -0:The maximum resident set size (KB) = 459220 +0:The total amount of wall time = 95.907408 +0:The maximum resident set size (KB) = 459156 Test 029 control_stochy PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_stochy -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_stochy_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_stochy_restart Checking test 030 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 53.118860 -0:The maximum resident set size (KB) = 226724 +0:The total amount of wall time = 53.764188 +0:The maximum resident set size (KB) = 226560 Test 030 control_stochy_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_lndp -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_lndp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_lndp Checking test 031 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1456,14 +1576,14 @@ Checking test 031 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 90.268435 -0:The maximum resident set size (KB) = 458212 +0:The total amount of wall time = 90.839408 +0:The maximum resident set size (KB) = 458232 Test 031 control_lndp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_iovr4 -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_iovr4 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_iovr4 Checking test 032 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1478,14 +1598,14 @@ Checking test 032 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 149.088062 -0:The maximum resident set size (KB) = 454308 +0:The total amount of wall time = 149.332514 +0:The maximum resident set size (KB) = 454256 Test 032 control_iovr4 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_iovr5 -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_iovr5 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_iovr5 Checking test 033 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1500,14 +1620,14 @@ Checking test 033 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 148.997102 -0:The maximum resident set size (KB) = 454432 +0:The total amount of wall time = 148.203009 +0:The maximum resident set size (KB) = 454284 Test 033 control_iovr5 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_p8 Checking test 034 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1554,14 +1674,14 @@ Checking test 034 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 182.513706 -0:The maximum resident set size (KB) = 1423920 +0:The total amount of wall time = 176.145156 +0:The maximum resident set size (KB) = 1423892 Test 034 control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_restart_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_restart_p8 Checking test 035 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1600,14 +1720,14 @@ Checking test 035 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 95.805572 -0:The maximum resident set size (KB) = 582928 +0:The total amount of wall time = 93.338318 +0:The maximum resident set size (KB) = 582852 Test 035 control_restart_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_qr_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_qr_p8 Checking test 036 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1654,14 +1774,14 @@ Checking test 036 control_qr_p8 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 = 183.402421 -0:The maximum resident set size (KB) = 1427220 +0:The total amount of wall time = 181.681925 +0:The maximum resident set size (KB) = 1427244 Test 036 control_qr_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_restart_qr_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_restart_qr_p8 Checking test 037 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1700,14 +1820,14 @@ Checking test 037 control_restart_qr_p8 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 = 98.791095 -0:The maximum resident set size (KB) = 596896 +0:The total amount of wall time = 97.199596 +0:The maximum resident set size (KB) = 596884 Test 037 control_restart_qr_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_decomp_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_decomp_p8 Checking test 038 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1750,14 +1870,14 @@ Checking test 038 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 186.332726 -0:The maximum resident set size (KB) = 1418444 +0:The total amount of wall time = 186.243067 +0:The maximum resident set size (KB) = 1418352 Test 038 control_decomp_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_2threads_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_2threads_p8 Checking test 039 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1800,14 +1920,14 @@ Checking test 039 control_2threads_p8 results .... Comparing 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.700941 -0:The maximum resident set size (KB) = 1509144 +0:The total amount of wall time = 173.188700 +0:The maximum resident set size (KB) = 1508928 Test 039 control_2threads_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8_lndp -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_p8_lndp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_p8_lndp Checking test 040 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1826,14 +1946,14 @@ Checking test 040 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -0:The total amount of wall time = 336.760312 -0:The maximum resident set size (KB) = 1424964 +0:The total amount of wall time = 335.389507 +0:The maximum resident set size (KB) = 1424880 Test 040 control_p8_lndp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8_rrtmgp -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_p8_rrtmgp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_p8_rrtmgp Checking test 041 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1880,14 +2000,14 @@ Checking test 041 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 253.433173 -0:The maximum resident set size (KB) = 1480300 +0:The total amount of wall time = 245.541406 +0:The maximum resident set size (KB) = 1480276 Test 041 control_p8_rrtmgp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8_mynn -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_p8_mynn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_p8_mynn Checking test 042 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1934,14 +2054,14 @@ Checking test 042 control_p8_mynn results .... Comparing 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.292616 -0:The maximum resident set size (KB) = 1427992 +0:The total amount of wall time = 181.301326 +0:The maximum resident set size (KB) = 1427940 Test 042 control_p8_mynn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/merra2_thompson -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/merra2_thompson +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/merra2_thompson Checking test 043 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1988,14 +2108,14 @@ Checking test 043 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 207.127842 -0:The maximum resident set size (KB) = 1429740 +0:The total amount of wall time = 200.925122 +0:The maximum resident set size (KB) = 1429656 Test 043 merra2_thompson PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/regional_control Checking test 044 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2006,28 +2126,28 @@ Checking test 044 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 341.030149 -0:The maximum resident set size (KB) = 604720 +0:The total amount of wall time = 330.491854 +0:The maximum resident set size (KB) = 604744 Test 044 regional_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/regional_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/regional_restart Checking test 045 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 174.767955 -0:The maximum resident set size (KB) = 594168 +0:The total amount of wall time = 171.628641 +0:The maximum resident set size (KB) = 594152 Test 045 regional_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/regional_control_qr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/regional_control_qr Checking test 046 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2038,28 +2158,28 @@ Checking test 046 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 343.369898 -0:The maximum resident set size (KB) = 604780 +0:The total amount of wall time = 328.802467 +0:The maximum resident set size (KB) = 604812 Test 046 regional_control_qr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/regional_restart_qr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/regional_restart_qr Checking test 047 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 174.578956 -0:The maximum resident set size (KB) = 593744 +0:The total amount of wall time = 170.124655 +0:The maximum resident set size (KB) = 594084 Test 047 regional_restart_qr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/regional_decomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/regional_decomp Checking test 048 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2070,14 +2190,14 @@ Checking test 048 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 357.378689 -0:The maximum resident set size (KB) = 598876 +0:The total amount of wall time = 358.288374 +0:The maximum resident set size (KB) = 598888 Test 048 regional_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/regional_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/regional_2threads Checking test 049 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2088,14 +2208,14 @@ Checking test 049 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 206.592690 -0:The maximum resident set size (KB) = 611544 +0:The total amount of wall time = 197.064710 +0:The maximum resident set size (KB) = 611488 Test 049 regional_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_noquilt -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/regional_noquilt +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/regional_noquilt Checking test 050 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2103,28 +2223,28 @@ Checking test 050 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -0:The total amount of wall time = 365.597430 -0:The maximum resident set size (KB) = 599036 +0:The total amount of wall time = 354.083616 +0:The maximum resident set size (KB) = 599064 Test 050 regional_noquilt PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_netcdf_parallel -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/regional_netcdf_parallel +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/regional_netcdf_parallel Checking test 051 regional_netcdf_parallel results .... - Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf006.nc .........OK -0:The total amount of wall time = 332.579433 -0:The maximum resident set size (KB) = 596688 +0:The total amount of wall time = 340.386141 +0:The maximum resident set size (KB) = 596660 Test 051 regional_netcdf_parallel PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/regional_2dwrtdecomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/regional_2dwrtdecomp Checking test 052 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2135,14 +2255,14 @@ Checking test 052 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 343.749370 -0:The maximum resident set size (KB) = 604868 +0:The total amount of wall time = 329.960764 +0:The maximum resident set size (KB) = 604752 Test 052 regional_2dwrtdecomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/fv3_regional_wofs -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/regional_wofs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/regional_wofs Checking test 053 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2153,14 +2273,14 @@ Checking test 053 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 430.038007 -0:The maximum resident set size (KB) = 275916 +0:The total amount of wall time = 418.074357 +0:The maximum resident set size (KB) = 275824 Test 053 regional_wofs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/rap_control Checking test 054 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2207,14 +2327,14 @@ Checking test 054 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 480.337650 -0:The maximum resident set size (KB) = 823688 +0:The total amount of wall time = 479.434551 +0:The maximum resident set size (KB) = 823444 Test 054 rap_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_spp_sppt_shum_skeb -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/regional_spp_sppt_shum_skeb +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/regional_spp_sppt_shum_skeb Checking test 055 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2225,14 +2345,14 @@ Checking test 055 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 261.195040 -0:The maximum resident set size (KB) = 952244 +0:The total amount of wall time = 255.858449 +0:The maximum resident set size (KB) = 952272 Test 055 regional_spp_sppt_shum_skeb PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/rap_decomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/rap_decomp Checking test 056 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2279,14 +2399,14 @@ Checking test 056 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 503.531051 -0:The maximum resident set size (KB) = 822412 +0:The total amount of wall time = 502.119473 +0:The maximum resident set size (KB) = 822336 Test 056 rap_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/rap_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/rap_2threads Checking test 057 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2333,14 +2453,14 @@ Checking test 057 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 462.319993 -0:The maximum resident set size (KB) = 893492 +0:The total amount of wall time = 459.390876 +0:The maximum resident set size (KB) = 893616 Test 057 rap_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/rap_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/rap_restart Checking test 058 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2379,14 +2499,14 @@ Checking test 058 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 239.925239 +0:The total amount of wall time = 244.747412 0:The maximum resident set size (KB) = 571416 Test 058 rap_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/rap_sfcdiff Checking test 059 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2433,14 +2553,14 @@ Checking test 059 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 480.681038 -0:The maximum resident set size (KB) = 823464 +0:The total amount of wall time = 481.289377 +0:The maximum resident set size (KB) = 823372 Test 059 rap_sfcdiff PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/rap_sfcdiff_decomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/rap_sfcdiff_decomp Checking test 060 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2487,14 +2607,14 @@ Checking test 060 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 509.880573 -0:The maximum resident set size (KB) = 822256 +0:The total amount of wall time = 510.001313 +0:The maximum resident set size (KB) = 822080 Test 060 rap_sfcdiff_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/rap_sfcdiff_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/rap_sfcdiff_restart Checking test 061 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2533,14 +2653,14 @@ Checking test 061 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 355.935729 -0:The maximum resident set size (KB) = 570728 +0:The total amount of wall time = 349.929991 +0:The maximum resident set size (KB) = 570648 Test 061 rap_sfcdiff_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/hrrr_control Checking test 062 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2587,14 +2707,14 @@ Checking test 062 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 462.200708 -0:The maximum resident set size (KB) = 820836 +0:The total amount of wall time = 464.248493 +0:The maximum resident set size (KB) = 820860 Test 062 hrrr_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/hrrr_control_decomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/hrrr_control_decomp Checking test 063 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2641,14 +2761,14 @@ Checking test 063 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 480.093626 -0:The maximum resident set size (KB) = 820780 +0:The total amount of wall time = 484.871093 +0:The maximum resident set size (KB) = 820696 Test 063 hrrr_control_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/hrrr_control_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/hrrr_control_2threads Checking test 064 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2695,14 +2815,14 @@ Checking test 064 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 439.770479 -0:The maximum resident set size (KB) = 888424 +0:The total amount of wall time = 443.255252 +0:The maximum resident set size (KB) = 888448 Test 064 hrrr_control_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/hrrr_control_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/hrrr_control_restart Checking test 065 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2741,14 +2861,14 @@ Checking test 065 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 343.823809 -0:The maximum resident set size (KB) = 566512 +0:The total amount of wall time = 341.610458 +0:The maximum resident set size (KB) = 566496 Test 065 hrrr_control_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_v1beta -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/rrfs_v1beta +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/rrfs_v1beta Checking test 066 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2795,14 +2915,14 @@ Checking test 066 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 474.798768 -0:The maximum resident set size (KB) = 819500 +0:The total amount of wall time = 473.338874 +0:The maximum resident set size (KB) = 819460 Test 066 rrfs_v1beta PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_v1nssl -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/rrfs_v1nssl +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/rrfs_v1nssl Checking test 067 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2817,14 +2937,14 @@ Checking test 067 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 583.554337 -0:The maximum resident set size (KB) = 508808 +0:The total amount of wall time = 584.804226 +0:The maximum resident set size (KB) = 508672 Test 067 rrfs_v1nssl PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/rrfs_v1nssl_nohailnoccn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/rrfs_v1nssl_nohailnoccn Checking test 068 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2839,14 +2959,14 @@ Checking test 068 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 567.938558 -0:The maximum resident set size (KB) = 502740 +0:The total amount of wall time = 565.421926 +0:The maximum resident set size (KB) = 502628 Test 068 rrfs_v1nssl_nohailnoccn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/rrfs_smoke_conus13km_hrrr_warm Checking test 069 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2855,14 +2975,14 @@ Checking test 069 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 152.600901 -0:The maximum resident set size (KB) = 675284 +0:The total amount of wall time = 152.570205 +0:The maximum resident set size (KB) = 675288 Test 069 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/rrfs_smoke_conus13km_hrrr_warm_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 070 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2871,14 +2991,14 @@ Checking test 070 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 94.077736 -0:The maximum resident set size (KB) = 694104 +0:The total amount of wall time = 93.204177 +0:The maximum resident set size (KB) = 693864 Test 070 rrfs_smoke_conus13km_hrrr_warm_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/rrfs_conus13km_hrrr_warm Checking test 071 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2887,14 +3007,14 @@ Checking test 071 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 136.701609 -0:The maximum resident set size (KB) = 654048 +0:The total amount of wall time = 133.722814 +0:The maximum resident set size (KB) = 654072 Test 071 rrfs_conus13km_hrrr_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/rrfs_smoke_conus13km_radar_tten_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/rrfs_smoke_conus13km_radar_tten_warm Checking test 072 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2903,26 +3023,26 @@ Checking test 072 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 153.459598 -0:The maximum resident set size (KB) = 677924 +0:The total amount of wall time = 153.158834 +0:The maximum resident set size (KB) = 677920 Test 072 rrfs_smoke_conus13km_radar_tten_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 073 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 71.369010 -0:The maximum resident set size (KB) = 632224 +0:The total amount of wall time = 69.803306 +0:The maximum resident set size (KB) = 632360 Test 073 rrfs_conus13km_hrrr_warm_restart_mismatch PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_csawmg -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_csawmg +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_csawmg Checking test 074 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2933,14 +3053,14 @@ Checking test 074 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 398.766861 -0:The maximum resident set size (KB) = 527652 +0:The total amount of wall time = 393.867557 +0:The maximum resident set size (KB) = 527660 Test 074 control_csawmg PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_csawmgt -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_csawmgt +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_csawmgt Checking test 075 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2951,14 +3071,14 @@ Checking test 075 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 392.284541 -0:The maximum resident set size (KB) = 528336 +0:The total amount of wall time = 393.903939 +0:The maximum resident set size (KB) = 528372 Test 075 control_csawmgt PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_ras -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_ras +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_ras Checking test 076 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2969,26 +3089,26 @@ Checking test 076 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 205.636580 -0:The maximum resident set size (KB) = 491248 +0:The total amount of wall time = 200.579277 +0:The maximum resident set size (KB) = 491388 Test 076 control_ras PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_wam -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_wam +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_wam Checking test 077 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -0:The total amount of wall time = 129.610498 -0:The maximum resident set size (KB) = 206332 +0:The total amount of wall time = 123.470556 +0:The maximum resident set size (KB) = 206340 Test 077 control_wam PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8_faster -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_p8_faster +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_p8_faster Checking test 078 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3035,14 +3155,14 @@ Checking test 078 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 171.510068 -0:The maximum resident set size (KB) = 1423704 +0:The total amount of wall time = 167.249224 +0:The maximum resident set size (KB) = 1423700 Test 078 control_p8_faster PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control_faster -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/regional_control_faster +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/regional_control_faster Checking test 079 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3053,56 +3173,56 @@ Checking test 079 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 323.148434 -0:The maximum resident set size (KB) = 604612 +0:The total amount of wall time = 308.485708 +0:The maximum resident set size (KB) = 604632 Test 079 regional_control_faster PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 080 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 876.378883 -0:The maximum resident set size (KB) = 704760 +0:The total amount of wall time = 875.726134 +0:The maximum resident set size (KB) = 704868 Test 080 rrfs_smoke_conus13km_hrrr_warm_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 081 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 500.329671 -0:The maximum resident set size (KB) = 724596 +0:The total amount of wall time = 500.842764 +0:The maximum resident set size (KB) = 725328 Test 081 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/rrfs_conus13km_hrrr_warm_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/rrfs_conus13km_hrrr_warm_debug Checking test 082 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 779.343107 -0:The maximum resident set size (KB) = 683360 +0:The total amount of wall time = 782.584603 +0:The maximum resident set size (KB) = 683464 Test 082 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_CubedSphereGrid_debug -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_CubedSphereGrid_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_CubedSphereGrid_debug Checking test 083 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3129,334 +3249,334 @@ Checking test 083 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -0:The total amount of wall time = 155.015791 -0:The maximum resident set size (KB) = 617624 +0:The total amount of wall time = 154.893573 +0:The maximum resident set size (KB) = 617544 Test 083 control_CubedSphereGrid_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_wrtGauss_netcdf_parallel_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_wrtGauss_netcdf_parallel_debug Checking test 084 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc .........OK + Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 155.630817 -0:The maximum resident set size (KB) = 615660 +0:The total amount of wall time = 155.276527 +0:The maximum resident set size (KB) = 615656 Test 084 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_stochy_debug -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_stochy_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_stochy_debug Checking test 085 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 174.840230 -0:The maximum resident set size (KB) = 621180 +0:The total amount of wall time = 175.125345 +0:The maximum resident set size (KB) = 621176 Test 085 control_stochy_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_lndp_debug -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_lndp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_lndp_debug Checking test 086 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 156.882397 -0:The maximum resident set size (KB) = 619996 +0:The total amount of wall time = 156.652371 +0:The maximum resident set size (KB) = 620028 Test 086 control_lndp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_csawmg_debug -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_csawmg_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_csawmg_debug Checking test 087 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 249.038934 -0:The maximum resident set size (KB) = 666436 +0:The total amount of wall time = 247.371630 +0:The maximum resident set size (KB) = 666492 Test 087 control_csawmg_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_csawmgt_debug -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_csawmgt_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_csawmgt_debug Checking test 088 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 244.376760 -0:The maximum resident set size (KB) = 667344 +0:The total amount of wall time = 243.292137 +0:The maximum resident set size (KB) = 667404 Test 088 control_csawmgt_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_ras_debug -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_ras_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_ras_debug Checking test 089 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 159.480747 -0:The maximum resident set size (KB) = 630380 +0:The total amount of wall time = 159.113382 +0:The maximum resident set size (KB) = 630276 Test 089 control_ras_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_diag_debug -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_diag_debug Checking test 090 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 159.731565 -0:The maximum resident set size (KB) = 674928 +0:The total amount of wall time = 159.097768 +0:The maximum resident set size (KB) = 674916 Test 090 control_diag_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_debug_p8 -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_debug_p8 Checking test 091 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 175.485011 -0:The maximum resident set size (KB) = 1442408 +0:The total amount of wall time = 173.940795 +0:The maximum resident set size (KB) = 1442480 Test 091 control_debug_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_debug -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/regional_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/regional_debug Checking test 092 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 1035.495868 -0:The maximum resident set size (KB) = 625812 +0:The total amount of wall time = 1034.767736 +0:The maximum resident set size (KB) = 625872 Test 092 regional_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_debug -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/rap_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/rap_control_debug Checking test 093 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 288.406681 -0:The maximum resident set size (KB) = 986636 +0:The total amount of wall time = 285.541282 +0:The maximum resident set size (KB) = 986664 Test 093 rap_control_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_debug -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/hrrr_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/hrrr_control_debug Checking test 094 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 282.946910 -0:The maximum resident set size (KB) = 984196 +0:The total amount of wall time = 281.215554 +0:The maximum resident set size (KB) = 984192 Test 094 hrrr_control_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_debug -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/rap_unified_drag_suite_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/rap_unified_drag_suite_debug Checking test 095 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 286.891473 -0:The maximum resident set size (KB) = 986688 +0:The total amount of wall time = 286.145203 +0:The maximum resident set size (KB) = 986744 Test 095 rap_unified_drag_suite_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_diag_debug -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/rap_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/rap_diag_debug Checking test 096 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 297.975497 -0:The maximum resident set size (KB) = 1069812 +0:The total amount of wall time = 297.976094 +0:The maximum resident set size (KB) = 1070044 Test 096 rap_diag_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/rap_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/rap_cires_ugwp_debug Checking test 097 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 291.825096 -0:The maximum resident set size (KB) = 985836 +0:The total amount of wall time = 291.845483 +0:The maximum resident set size (KB) = 985884 Test 097 rap_cires_ugwp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/rap_unified_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/rap_unified_ugwp_debug Checking test 098 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 300.891862 -0:The maximum resident set size (KB) = 986776 +0:The total amount of wall time = 291.828370 +0:The maximum resident set size (KB) = 986800 Test 098 rap_unified_ugwp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_lndp_debug -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/rap_lndp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/rap_lndp_debug Checking test 099 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 289.044191 -0:The maximum resident set size (KB) = 987448 +0:The total amount of wall time = 288.451112 +0:The maximum resident set size (KB) = 987572 Test 099 rap_lndp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_flake_debug -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/rap_flake_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/rap_flake_debug Checking test 100 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 286.078795 -0:The maximum resident set size (KB) = 986796 +0:The total amount of wall time = 285.296857 +0:The maximum resident set size (KB) = 986816 Test 100 rap_flake_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_progcld_thompson_debug -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/rap_progcld_thompson_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/rap_progcld_thompson_debug Checking test 101 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 286.340992 -0:The maximum resident set size (KB) = 986672 +0:The total amount of wall time = 286.555288 +0:The maximum resident set size (KB) = 986836 Test 101 rap_progcld_thompson_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_noah_debug -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/rap_noah_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/rap_noah_debug Checking test 102 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 280.656045 -0:The maximum resident set size (KB) = 984540 +0:The total amount of wall time = 280.917316 +0:The maximum resident set size (KB) = 984496 Test 102 rap_noah_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_sfcdiff_debug -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/rap_sfcdiff_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/rap_sfcdiff_debug Checking test 103 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 287.340279 -0:The maximum resident set size (KB) = 986572 +0:The total amount of wall time = 285.936607 +0:The maximum resident set size (KB) = 986652 Test 103 rap_sfcdiff_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/rap_noah_sfcdiff_cires_ugwp_debug Checking test 104 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 471.815495 -0:The maximum resident set size (KB) = 985360 +0:The total amount of wall time = 471.367328 +0:The maximum resident set size (KB) = 985332 Test 104 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_v1beta_debug -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/rrfs_v1beta_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/rrfs_v1beta_debug Checking test 105 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 283.025319 -0:The maximum resident set size (KB) = 983480 +0:The total amount of wall time = 282.103660 +0:The maximum resident set size (KB) = 983356 Test 105 rrfs_v1beta_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_wam_debug -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_wam_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_wam_debug Checking test 106 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 289.869027 -0:The maximum resident set size (KB) = 235360 +0:The total amount of wall time = 289.513764 +0:The maximum resident set size (KB) = 235452 Test 106 control_wam_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3467,14 +3587,14 @@ Checking test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 245.723418 -0:The maximum resident set size (KB) = 850892 +0:The total amount of wall time = 243.943488 +0:The maximum resident set size (KB) = 851124 Test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/rap_control_dyn32_phy32 Checking test 108 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3521,14 +3641,14 @@ Checking test 108 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 397.329902 -0:The maximum resident set size (KB) = 707808 +0:The total amount of wall time = 397.287879 +0:The maximum resident set size (KB) = 707844 Test 108 rap_control_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/hrrr_control_dyn32_phy32 Checking test 109 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3575,14 +3695,14 @@ Checking test 109 hrrr_control_dyn32_phy32 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 = 209.225736 -0:The maximum resident set size (KB) = 706508 +0:The total amount of wall time = 204.710877 +0:The maximum resident set size (KB) = 706452 Test 109 hrrr_control_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/rap_2threads_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/rap_2threads_dyn32_phy32 Checking test 110 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3629,14 +3749,14 @@ Checking test 110 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 382.691854 -0:The maximum resident set size (KB) = 759352 +0:The total amount of wall time = 385.286192 +0:The maximum resident set size (KB) = 759436 Test 110 rap_2threads_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/hrrr_control_2threads_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/hrrr_control_2threads_dyn32_phy32 Checking test 111 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3683,14 +3803,14 @@ Checking test 111 hrrr_control_2threads_dyn32_phy32 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 = 199.355531 -0:The maximum resident set size (KB) = 756404 +0:The total amount of wall time = 196.558522 +0:The maximum resident set size (KB) = 756432 Test 111 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/hrrr_control_decomp_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/hrrr_control_decomp_dyn32_phy32 Checking test 112 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3737,14 +3857,14 @@ Checking test 112 hrrr_control_decomp_dyn32_phy32 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 = 220.201264 -0:The maximum resident set size (KB) = 704300 +0:The total amount of wall time = 217.406370 +0:The maximum resident set size (KB) = 704436 Test 112 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/rap_restart_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/rap_restart_dyn32_phy32 Checking test 113 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3783,14 +3903,14 @@ Checking test 113 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 295.461373 -0:The maximum resident set size (KB) = 544536 +0:The total amount of wall time = 294.541522 +0:The maximum resident set size (KB) = 544564 Test 113 rap_restart_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/hrrr_control_restart_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/hrrr_control_restart_dyn32_phy32 Checking test 114 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3829,14 +3949,14 @@ Checking test 114 hrrr_control_restart_dyn32_phy32 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 = 107.981245 -0:The maximum resident set size (KB) = 537316 +0:The total amount of wall time = 108.696021 +0:The maximum resident set size (KB) = 537556 Test 114 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_dyn64_phy32 -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/rap_control_dyn64_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/rap_control_dyn64_phy32 Checking test 115 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3883,81 +4003,81 @@ Checking test 115 rap_control_dyn64_phy32 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 = 271.036091 -0:The maximum resident set size (KB) = 730424 +0:The total amount of wall time = 274.111054 +0:The maximum resident set size (KB) = 730324 Test 115 rap_control_dyn64_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/rap_control_debug_dyn32_phy32 Checking test 116 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 282.470387 -0:The maximum resident set size (KB) = 873004 +0:The total amount of wall time = 282.339826 +0:The maximum resident set size (KB) = 873072 Test 116 rap_control_debug_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/hrrr_control_debug_dyn32_phy32 Checking test 117 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 278.141586 -0:The maximum resident set size (KB) = 871136 +0:The total amount of wall time = 278.454327 +0:The maximum resident set size (KB) = 870992 Test 117 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/rap_control_dyn64_phy32_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/rap_control_dyn64_phy32_debug Checking test 118 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 285.979270 -0:The maximum resident set size (KB) = 889944 +0:The total amount of wall time = 286.796742 +0:The maximum resident set size (KB) = 890024 Test 118 rap_control_dyn64_phy32_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/hafs_regional_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/hafs_regional_atm Checking test 119 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -0:The total amount of wall time = 258.906429 -0:The maximum resident set size (KB) = 742736 +0:The total amount of wall time = 258.698797 +0:The maximum resident set size (KB) = 742660 Test 119 hafs_regional_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/hafs_regional_atm_thompson_gfdlsf +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/hafs_regional_atm_thompson_gfdlsf Checking test 120 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -0:The total amount of wall time = 285.209090 -0:The maximum resident set size (KB) = 1099176 +0:The total amount of wall time = 284.869152 +0:The maximum resident set size (KB) = 1100216 Test 120 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm_ocn -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/hafs_regional_atm_ocn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/hafs_regional_atm_ocn Checking test 121 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3966,14 +4086,14 @@ Checking test 121 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 464.432537 -0:The maximum resident set size (KB) = 741100 +0:The total amount of wall time = 453.467857 +0:The maximum resident set size (KB) = 741180 Test 121 hafs_regional_atm_ocn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm_wav -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/hafs_regional_atm_wav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/hafs_regional_atm_wav Checking test 122 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3982,30 +4102,46 @@ Checking test 122 hafs_regional_atm_wav results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 1078.001785 -0:The maximum resident set size (KB) = 772092 +0:The total amount of wall time = 1089.348462 +0:The maximum resident set size (KB) = 772188 Test 122 hafs_regional_atm_wav PASS -Test 123 hafs_regional_atm_ocn_wav FAIL + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm_ocn_wav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/hafs_regional_atm_ocn_wav +Checking test 123 hafs_regional_atm_ocn_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing archv.2019_241_06.a .........OK + Comparing archs.2019_241_06.a .........OK + Comparing 20190829.060000.out_grd.ww3 .........OK + Comparing 20190829.060000.out_pnt.ww3 .........OK + Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + +0:The total amount of wall time = 1085.890831 +0:The maximum resident set size (KB) = 792340 + +Test 123 hafs_regional_atm_ocn_wav PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_1nest_atm -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/hafs_regional_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/hafs_regional_1nest_atm Checking test 124 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 380.167325 -0:The maximum resident set size (KB) = 301364 +0:The total amount of wall time = 373.962479 +0:The maximum resident set size (KB) = 300948 Test 124 hafs_regional_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/hafs_regional_telescopic_2nests_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/hafs_regional_telescopic_2nests_atm Checking test 125 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4014,28 +4150,28 @@ Checking test 125 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -0:The total amount of wall time = 425.463809 -0:The maximum resident set size (KB) = 320704 +0:The total amount of wall time = 416.336740 +0:The maximum resident set size (KB) = 320232 Test 125 hafs_regional_telescopic_2nests_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_global_1nest_atm -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/hafs_global_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/hafs_global_1nest_atm Checking test 126 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 171.520991 -0:The maximum resident set size (KB) = 214604 +0:The total amount of wall time = 170.375045 +0:The maximum resident set size (KB) = 214016 Test 126 hafs_global_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_global_multiple_4nests_atm -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/hafs_global_multiple_4nests_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/hafs_global_multiple_4nests_atm Checking test 127 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4053,14 +4189,14 @@ Checking test 127 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -0:The total amount of wall time = 482.696937 -0:The maximum resident set size (KB) = 302780 +0:The total amount of wall time = 483.216973 +0:The maximum resident set size (KB) = 302628 -Test 127 hafs_global_multiple_4nests_atm PASS Tries: 2 +Test 127 hafs_global_multiple_4nests_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/hafs_regional_specified_moving_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/hafs_regional_specified_moving_1nest_atm Checking test 128 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4069,28 +4205,28 @@ Checking test 128 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -0:The total amount of wall time = 241.720351 -0:The maximum resident set size (KB) = 318656 +0:The total amount of wall time = 240.842106 +0:The maximum resident set size (KB) = 318572 Test 128 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/hafs_regional_storm_following_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/hafs_regional_storm_following_1nest_atm Checking test 129 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 227.969912 -0:The maximum resident set size (KB) = 318472 +0:The total amount of wall time = 230.726916 +0:The maximum resident set size (KB) = 318604 Test 129 hafs_regional_storm_following_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/hafs_regional_storm_following_1nest_atm_ocn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/hafs_regional_storm_following_1nest_atm_ocn Checking test 130 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4099,42 +4235,42 @@ Checking test 130 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -0:The total amount of wall time = 282.028138 -0:The maximum resident set size (KB) = 376176 +0:The total amount of wall time = 281.010240 +0:The maximum resident set size (KB) = 376364 Test 130 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_global_storm_following_1nest_atm -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/hafs_global_storm_following_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/hafs_global_storm_following_1nest_atm Checking test 131 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 67.456388 -0:The maximum resident set size (KB) = 233376 +0:The total amount of wall time = 67.020585 +0:The maximum resident set size (KB) = 233284 Test 131 hafs_global_storm_following_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 132 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 764.396848 -0:The maximum resident set size (KB) = 402776 +0:The total amount of wall time = 764.456557 +0:The maximum resident set size (KB) = 402924 Test 132 hafs_regional_storm_following_1nest_atm_ocn_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 133 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4145,14 +4281,14 @@ Checking test 133 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -0:The total amount of wall time = 767.451326 -0:The maximum resident set size (KB) = 427120 +0:The total amount of wall time = 805.780330 +0:The maximum resident set size (KB) = 427856 -Test 133 hafs_regional_storm_following_1nest_atm_ocn_wav PASS Tries: 2 +Test 133 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_docn -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/hafs_regional_docn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/hafs_regional_docn Checking test 134 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4160,14 +4296,14 @@ Checking test 134 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 390.225307 -0:The maximum resident set size (KB) = 755388 +0:The total amount of wall time = 379.268603 +0:The maximum resident set size (KB) = 755164 Test 134 hafs_regional_docn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_docn_oisst -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/hafs_regional_docn_oisst +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/hafs_regional_docn_oisst Checking test 135 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4175,131 +4311,131 @@ Checking test 135 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 391.681275 -0:The maximum resident set size (KB) = 734740 +0:The total amount of wall time = 390.639511 +0:The maximum resident set size (KB) = 735464 Test 135 hafs_regional_docn_oisst PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_datm_cdeps -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/hafs_regional_datm_cdeps +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/hafs_regional_datm_cdeps Checking test 136 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -0:The total amount of wall time = 1269.143757 -0:The maximum resident set size (KB) = 887924 +0:The total amount of wall time = 1280.726798 +0:The maximum resident set size (KB) = 887880 Test 136 hafs_regional_datm_cdeps PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/datm_cdeps_control_cfsr Checking test 137 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 168.559111 -0:The maximum resident set size (KB) = 716676 +0:The total amount of wall time = 167.999449 +0:The maximum resident set size (KB) = 728176 Test 137 datm_cdeps_control_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/datm_cdeps_restart_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/datm_cdeps_restart_cfsr Checking test 138 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 100.923713 -0:The maximum resident set size (KB) = 705000 +0:The total amount of wall time = 97.230551 +0:The maximum resident set size (KB) = 704832 Test 138 datm_cdeps_restart_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_control_gefs -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/datm_cdeps_control_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/datm_cdeps_control_gefs Checking test 139 datm_cdeps_control_gefs 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 = 160.527376 -0:The maximum resident set size (KB) = 607456 +0:The total amount of wall time = 155.717156 +0:The maximum resident set size (KB) = 607504 Test 139 datm_cdeps_control_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_iau_gefs -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/datm_cdeps_iau_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/datm_cdeps_iau_gefs Checking test 140 datm_cdeps_iau_gefs 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 = 159.481722 +0:The total amount of wall time = 158.821399 0:The maximum resident set size (KB) = 607488 Test 140 datm_cdeps_iau_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_stochy_gefs -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/datm_cdeps_stochy_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/datm_cdeps_stochy_gefs Checking test 141 datm_cdeps_stochy_gefs 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 = 163.088846 -0:The maximum resident set size (KB) = 607504 +0:The total amount of wall time = 163.887368 +0:The maximum resident set size (KB) = 607492 Test 141 datm_cdeps_stochy_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_ciceC_cfsr -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/datm_cdeps_ciceC_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/datm_cdeps_ciceC_cfsr Checking test 142 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 168.372568 -0:The maximum resident set size (KB) = 716668 +0:The total amount of wall time = 168.102464 +0:The maximum resident set size (KB) = 727760 Test 142 datm_cdeps_ciceC_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_bulk_cfsr -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/datm_cdeps_bulk_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/datm_cdeps_bulk_cfsr Checking test 143 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 168.523425 -0:The maximum resident set size (KB) = 716728 +0:The total amount of wall time = 171.022102 +0:The maximum resident set size (KB) = 717236 Test 143 datm_cdeps_bulk_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_bulk_gefs -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/datm_cdeps_bulk_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/datm_cdeps_bulk_gefs Checking test 144 datm_cdeps_bulk_gefs 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 = 160.887868 -0:The maximum resident set size (KB) = 607536 +0:The total amount of wall time = 159.969270 +0:The maximum resident set size (KB) = 607476 Test 144 datm_cdeps_bulk_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_mx025_cfsr -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/datm_cdeps_mx025_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/datm_cdeps_mx025_cfsr Checking test 145 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4308,14 +4444,14 @@ Checking test 145 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 424.908151 -0:The maximum resident set size (KB) = 514340 +0:The total amount of wall time = 422.918200 +0:The maximum resident set size (KB) = 514420 Test 145 datm_cdeps_mx025_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_mx025_gefs -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/datm_cdeps_mx025_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/datm_cdeps_mx025_gefs Checking test 146 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4324,77 +4460,77 @@ Checking test 146 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 421.856337 -0:The maximum resident set size (KB) = 494776 +0:The total amount of wall time = 425.861737 +0:The maximum resident set size (KB) = 494800 Test 146 datm_cdeps_mx025_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/datm_cdeps_multiple_files_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/datm_cdeps_multiple_files_cfsr Checking test 147 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 160.983279 -0:The maximum resident set size (KB) = 728156 +0:The total amount of wall time = 167.111860 +0:The maximum resident set size (KB) = 727884 Test 147 datm_cdeps_multiple_files_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/datm_cdeps_3072x1536_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/datm_cdeps_3072x1536_cfsr Checking test 148 datm_cdeps_3072x1536_cfsr 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 = 268.634355 -0:The maximum resident set size (KB) = 1942096 +0:The total amount of wall time = 257.214047 +0:The maximum resident set size (KB) = 1942064 Test 148 datm_cdeps_3072x1536_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_gfs -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/datm_cdeps_gfs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/datm_cdeps_gfs Checking test 149 datm_cdeps_gfs 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 = 256.679738 -0:The maximum resident set size (KB) = 1942044 +0:The total amount of wall time = 267.101490 +0:The maximum resident set size (KB) = 1941080 Test 149 datm_cdeps_gfs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_debug_cfsr -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/datm_cdeps_debug_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/datm_cdeps_debug_cfsr Checking test 150 datm_cdeps_debug_cfsr 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 = 369.029086 -0:The maximum resident set size (KB) = 700644 +0:The total amount of wall time = 369.967174 +0:The maximum resident set size (KB) = 700752 Test 150 datm_cdeps_debug_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_control_cfsr_faster -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/datm_cdeps_control_cfsr_faster +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/datm_cdeps_control_cfsr_faster Checking test 151 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 167.962229 -0:The maximum resident set size (KB) = 727812 +0:The total amount of wall time = 167.140693 +0:The maximum resident set size (KB) = 716784 Test 151 datm_cdeps_control_cfsr_faster PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/datm_cdeps_lnd_gswp3 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/datm_cdeps_lnd_gswp3 Checking test 152 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4403,14 +4539,14 @@ Checking test 152 datm_cdeps_lnd_gswp3 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 = 10.820329 -0:The maximum resident set size (KB) = 208660 +0:The total amount of wall time = 10.937852 +0:The maximum resident set size (KB) = 216356 Test 152 datm_cdeps_lnd_gswp3 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/datm_cdeps_lnd_gswp3_rst +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/datm_cdeps_lnd_gswp3_rst Checking test 153 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4419,14 +4555,14 @@ Checking test 153 datm_cdeps_lnd_gswp3_rst 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 = 15.591970 -0:The maximum resident set size (KB) = 208272 +0:The total amount of wall time = 15.696654 +0:The maximum resident set size (KB) = 217012 Test 153 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8_atmlnd_sbs -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_p8_atmlnd_sbs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_p8_atmlnd_sbs Checking test 154 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4511,14 +4647,14 @@ Checking test 154 control_p8_atmlnd_sbs 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 = 234.696868 -0:The maximum resident set size (KB) = 1462896 +0:The total amount of wall time = 235.016217 +0:The maximum resident set size (KB) = 1462972 Test 154 control_p8_atmlnd_sbs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/atmwav_control_noaero_p8 -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/atmwav_control_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/atmwav_control_noaero_p8 Checking test 155 atmwav_control_noaero_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4561,14 +4697,14 @@ Checking test 155 atmwav_control_noaero_p8 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 = 101.963148 -0:The maximum resident set size (KB) = 1434296 +0:The total amount of wall time = 102.771572 +0:The maximum resident set size (KB) = 1434492 Test 155 atmwav_control_noaero_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_atmwav -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/control_atmwav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_atmwav Checking test 156 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4612,14 +4748,14 @@ Checking test 156 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -0:The total amount of wall time = 100.363262 -0:The maximum resident set size (KB) = 474540 +0:The total amount of wall time = 104.629515 +0:The maximum resident set size (KB) = 474548 Test 156 control_atmwav PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/atmaero_control_p8 -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/atmaero_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/atmaero_control_p8 Checking test 157 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4663,14 +4799,14 @@ Checking test 157 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 251.058436 -0:The maximum resident set size (KB) = 2704048 +0:The total amount of wall time = 240.479250 +0:The maximum resident set size (KB) = 2703976 Test 157 atmaero_control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/atmaero_control_p8_rad -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/atmaero_control_p8_rad +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/atmaero_control_p8_rad Checking test 158 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4714,14 +4850,14 @@ Checking test 158 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 307.111101 -0:The maximum resident set size (KB) = 2757968 +0:The total amount of wall time = 299.604785 +0:The maximum resident set size (KB) = 2758048 Test 158 atmaero_control_p8_rad PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/atmaero_control_p8_rad_micro -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_62263/atmaero_control_p8_rad_micro +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/atmaero_control_p8_rad_micro Checking test 159 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4765,113 +4901,15 @@ Checking test 159 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 309.406758 -0:The maximum resident set size (KB) = 2764612 +0:The total amount of wall time = 298.331819 +0:The maximum resident set size (KB) = 2764508 Test 159 atmaero_control_p8_rad_micro PASS -Test 160 regional_atmaq FAIL - -Test 161 regional_atmaq_faster FAIL - -FAILED TESTS: -Test cpld_control_c192_p8 011 failed in run_test failed -Test hafs_regional_atm_ocn_wav 123 failed in run_test failed -Test regional_atmaq 160 failed in run_test failed -Test regional_atmaq_faster 161 failed in run_test failed - -REGRESSION TEST FAILED -Thu Apr 13 22:30:21 MDT 2023 -Elapsed time: 02h:23m:03s. Have a nice day! -Fri Apr 14 07:30:18 MDT 2023 -Start Regression test - -Compile 001 elapsed time 1442 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 1126 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 003 elapsed time 881 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 004 elapsed time 1052 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_68949/cpld_control_c192_p8 -Checking test 001 cpld_control_c192_p8 results .... - Comparing sfcf030.tile1.nc .........OK - Comparing sfcf030.tile2.nc .........OK - Comparing sfcf030.tile3.nc .........OK - Comparing sfcf030.tile4.nc .........OK - Comparing sfcf030.tile5.nc .........OK - Comparing sfcf030.tile6.nc .........OK - Comparing atmf030.tile1.nc .........OK - Comparing atmf030.tile2.nc .........OK - Comparing atmf030.tile3.nc .........OK - Comparing atmf030.tile4.nc .........OK - Comparing atmf030.tile5.nc .........OK - Comparing atmf030.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_1200z.nc4 .........OK - Comparing RESTART/20210323.120000.coupler.res .........OK - Comparing RESTART/20210323.120000.fv_core.res.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - Comparing 20210323.120000.out_grd.ww3 .........OK - Comparing 20210323.120000.out_pnt.ww3 .........OK - -0:The total amount of wall time = 609.375777 -0:The maximum resident set size (KB) = 3351608 - -Test 001 cpld_control_c192_p8 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm_ocn_wav -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_68949/hafs_regional_atm_ocn_wav -Checking test 002 hafs_regional_atm_ocn_wav results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing archv.2019_241_06.a .........OK - Comparing archs.2019_241_06.a .........OK - Comparing 20190829.060000.out_grd.ww3 .........OK - Comparing 20190829.060000.out_pnt.ww3 .........OK - Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - -0:The total amount of wall time = 1098.089837 -0:The maximum resident set size (KB) = 792676 - -Test 002 hafs_regional_atm_ocn_wav PASS - baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_atmaq -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_68949/regional_atmaq -Checking test 003 regional_atmaq results .... +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/regional_atmaq +Checking test 160 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -4886,15 +4924,15 @@ Checking test 003 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -0:The total amount of wall time = 747.412677 -0:The maximum resident set size (KB) = 999376 +0:The total amount of wall time = 747.020831 +0:The maximum resident set size (KB) = 999540 -Test 003 regional_atmaq PASS +Test 160 regional_atmaq PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_atmaq_faster -working dir = /glade/scratch/jongkim/rt-1690-intel/jongkim/FV3_RT/rt_68949/regional_atmaq_faster -Checking test 004 regional_atmaq_faster results .... +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/regional_atmaq_faster +Checking test 161 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -4909,12 +4947,12 @@ Checking test 004 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -0:The total amount of wall time = 955.734224 -0:The maximum resident set size (KB) = 999448 +0:The total amount of wall time = 698.890906 +0:The maximum resident set size (KB) = 999232 -Test 004 regional_atmaq_faster PASS +Test 161 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Fri Apr 14 08:10:37 MDT 2023 -Elapsed time: 00h:40m:19s. Have a nice day! +Fri Apr 14 19:25:25 MDT 2023 +Elapsed time: 01h:17m:03s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index ad805219d8f..78f95405c4f 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,21 +1,21 @@ -Fri Apr 14 03:43:35 UTC 2023 +Sat Apr 15 00:18:29 UTC 2023 Start Regression test -Compile 001 elapsed time 195 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 191 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 335 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 103 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 192 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 407 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 329 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 335 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 276 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 241 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 148 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 012 elapsed time 117 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 001 elapsed time 183 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 189 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 328 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 99 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 191 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 410 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 330 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 333 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 265 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 229 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 149 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 012 elapsed time 112 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/control_c48 Checking test 001 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -54,14 +54,14 @@ Checking test 001 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 688.458280 -0: The maximum resident set size (KB) = 704416 +0: The total amount of wall time = 688.444396 +0: The maximum resident set size (KB) = 704520 Test 001 control_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/control_stochy Checking test 002 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -72,14 +72,14 @@ Checking test 002 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 648.491830 - 0: The maximum resident set size (KB) = 476820 + 0: The total amount of wall time = 639.540681 + 0: The maximum resident set size (KB) = 479828 Test 002 control_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/control_ras -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/control_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/control_ras Checking test 003 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -90,14 +90,14 @@ Checking test 003 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 835.139810 - 0: The maximum resident set size (KB) = 488476 + 0: The total amount of wall time = 830.562443 + 0: The maximum resident set size (KB) = 486676 Test 003 control_ras PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/control_p8 Checking test 004 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -144,14 +144,14 @@ Checking test 004 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 884.096582 - 0: The maximum resident set size (KB) = 1237472 + 0: The total amount of wall time = 894.765008 + 0: The maximum resident set size (KB) = 1234336 Test 004 control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/rap_control Checking test 005 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -198,14 +198,14 @@ Checking test 005 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1466.829654 - 0: The maximum resident set size (KB) = 826624 + 0: The total amount of wall time = 1470.481292 + 0: The maximum resident set size (KB) = 825764 Test 005 rap_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/rap_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/rap_decomp Checking test 006 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -252,14 +252,14 @@ Checking test 006 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1461.650396 - 0: The maximum resident set size (KB) = 833720 + 0: The total amount of wall time = 1434.327766 + 0: The maximum resident set size (KB) = 828428 Test 006 rap_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/rap_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/rap_2threads Checking test 007 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -306,14 +306,14 @@ Checking test 007 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1371.209504 - 0: The maximum resident set size (KB) = 901624 + 0: The total amount of wall time = 1368.464408 + 0: The maximum resident set size (KB) = 891292 Test 007 rap_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/rap_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/rap_restart Checking test 008 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -352,14 +352,14 @@ Checking test 008 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 730.688513 - 0: The maximum resident set size (KB) = 550336 + 0: The total amount of wall time = 719.522610 + 0: The maximum resident set size (KB) = 545684 Test 008 rap_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/rap_sfcdiff Checking test 009 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -406,14 +406,14 @@ Checking test 009 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1480.926760 - 0: The maximum resident set size (KB) = 830900 + 0: The total amount of wall time = 1516.033568 + 0: The maximum resident set size (KB) = 822740 Test 009 rap_sfcdiff PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/rap_sfcdiff_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/rap_sfcdiff_decomp Checking test 010 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -460,14 +460,14 @@ Checking test 010 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1470.975265 - 0: The maximum resident set size (KB) = 824500 + 0: The total amount of wall time = 1484.628876 + 0: The maximum resident set size (KB) = 825692 Test 010 rap_sfcdiff_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/rap_sfcdiff_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/rap_sfcdiff_restart Checking test 011 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -506,14 +506,14 @@ Checking test 011 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1077.277761 - 0: The maximum resident set size (KB) = 553220 + 0: The total amount of wall time = 1065.712953 + 0: The maximum resident set size (KB) = 550132 Test 011 rap_sfcdiff_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/hrrr_control Checking test 012 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -560,14 +560,14 @@ Checking test 012 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1462.293093 - 0: The maximum resident set size (KB) = 826360 + 0: The total amount of wall time = 1458.424499 + 0: The maximum resident set size (KB) = 826020 Test 012 hrrr_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/hrrr_control_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/hrrr_control_2threads Checking test 013 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -614,14 +614,14 @@ Checking test 013 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1352.263917 - 0: The maximum resident set size (KB) = 891012 + 0: The total amount of wall time = 1306.572428 + 0: The maximum resident set size (KB) = 893232 Test 013 hrrr_control_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/hrrr_control_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/hrrr_control_decomp Checking test 014 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -668,14 +668,14 @@ Checking test 014 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1447.896671 - 0: The maximum resident set size (KB) = 828036 + 0: The total amount of wall time = 1453.462076 + 0: The maximum resident set size (KB) = 822100 Test 014 hrrr_control_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/hrrr_control_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/hrrr_control_restart Checking test 015 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -714,14 +714,14 @@ Checking test 015 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1064.805223 - 0: The maximum resident set size (KB) = 547936 + 0: The total amount of wall time = 1053.715977 + 0: The maximum resident set size (KB) = 549548 Test 015 hrrr_control_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/rrfs_v1beta Checking test 016 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -768,14 +768,14 @@ Checking test 016 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1430.760259 - 0: The maximum resident set size (KB) = 831296 + 0: The total amount of wall time = 1465.966281 + 0: The maximum resident set size (KB) = 820428 Test 016 rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/rrfs_smoke_conus13km_hrrr_warm Checking test 017 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -784,14 +784,14 @@ Checking test 017 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 817.243815 - 0: The maximum resident set size (KB) = 670864 + 0: The total amount of wall time = 817.280885 + 0: The maximum resident set size (KB) = 668100 Test 017 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/rrfs_smoke_conus13km_hrrr_warm_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 018 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -800,14 +800,14 @@ Checking test 018 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 1079.086276 - 0: The maximum resident set size (KB) = 663280 + 0: The total amount of wall time = 1055.436352 + 0: The maximum resident set size (KB) = 670708 Test 018 rrfs_smoke_conus13km_hrrr_warm_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/rrfs_conus13km_hrrr_warm Checking test 019 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -816,14 +816,14 @@ Checking test 019 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 789.473676 - 0: The maximum resident set size (KB) = 643620 + 0: The total amount of wall time = 733.871623 + 0: The maximum resident set size (KB) = 644452 Test 019 rrfs_conus13km_hrrr_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/rrfs_smoke_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/rrfs_smoke_conus13km_radar_tten_warm Checking test 020 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -832,234 +832,234 @@ Checking test 020 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 809.997156 - 0: The maximum resident set size (KB) = 670040 + 0: The total amount of wall time = 836.590679 + 0: The maximum resident set size (KB) = 672632 Test 020 rrfs_smoke_conus13km_radar_tten_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 021 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 379.642256 - 0: The maximum resident set size (KB) = 632868 + 0: The total amount of wall time = 396.295421 + 0: The maximum resident set size (KB) = 630868 Test 021 rrfs_conus13km_hrrr_warm_restart_mismatch PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/control_diag_debug Checking test 022 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 126.943478 - 0: The maximum resident set size (KB) = 527036 + 0: The total amount of wall time = 119.823720 + 0: The maximum resident set size (KB) = 530776 Test 022 control_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/regional_debug Checking test 023 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 749.594885 - 0: The maximum resident set size (KB) = 591324 + 0: The total amount of wall time = 613.304912 + 0: The maximum resident set size (KB) = 589396 Test 023 regional_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/rap_control_debug Checking test 024 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 174.077917 - 0: The maximum resident set size (KB) = 837356 + 0: The total amount of wall time = 177.491382 + 0: The maximum resident set size (KB) = 846968 Test 024 rap_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/hrrr_control_debug Checking test 025 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 172.719746 - 0: The maximum resident set size (KB) = 837780 + 0: The total amount of wall time = 170.217454 + 0: The maximum resident set size (KB) = 843124 Test 025 hrrr_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/rap_diag_debug Checking test 026 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 210.185255 - 0: The maximum resident set size (KB) = 927396 + 0: The total amount of wall time = 206.427203 + 0: The maximum resident set size (KB) = 923936 Test 026 rap_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/rap_noah_sfcdiff_cires_ugwp_debug Checking test 027 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 268.522009 - 0: The maximum resident set size (KB) = 847096 + 0: The total amount of wall time = 281.464548 + 0: The maximum resident set size (KB) = 842076 Test 027 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/rap_progcld_thompson_debug Checking test 028 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 173.920834 - 0: The maximum resident set size (KB) = 842784 + 0: The total amount of wall time = 175.128691 + 0: The maximum resident set size (KB) = 844652 Test 028 rap_progcld_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/rrfs_v1beta_debug Checking test 029 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 175.342061 - 0: The maximum resident set size (KB) = 841352 + 0: The total amount of wall time = 173.679958 + 0: The maximum resident set size (KB) = 843812 Test 029 rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/control_ras_debug Checking test 030 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 103.472669 - 0: The maximum resident set size (KB) = 477872 + 0: The total amount of wall time = 104.513399 + 0: The maximum resident set size (KB) = 483500 Test 030 control_ras_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/control_stochy_debug Checking test 031 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 119.579368 - 0: The maximum resident set size (KB) = 471972 + 0: The total amount of wall time = 116.770323 + 0: The maximum resident set size (KB) = 475300 Test 031 control_stochy_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/control_debug_p8 Checking test 032 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 119.571255 - 0: The maximum resident set size (KB) = 1219728 + 0: The total amount of wall time = 116.307628 + 0: The maximum resident set size (KB) = 1225080 Test 032 control_debug_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 033 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 613.981545 - 0: The maximum resident set size (KB) = 686316 + 0: The total amount of wall time = 640.871673 + 0: The maximum resident set size (KB) = 682184 Test 033 rrfs_smoke_conus13km_hrrr_warm_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 034 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 766.568779 - 0: The maximum resident set size (KB) = 679452 + 0: The total amount of wall time = 756.816082 + 0: The maximum resident set size (KB) = 681592 Test 034 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/rrfs_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/rrfs_conus13km_hrrr_warm_debug Checking test 035 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 553.680971 - 0: The maximum resident set size (KB) = 658864 + 0: The total amount of wall time = 597.779363 + 0: The maximum resident set size (KB) = 657700 Test 035 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/control_wam_debug Checking test 036 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 181.346785 - 0: The maximum resident set size (KB) = 191976 + 0: The total amount of wall time = 182.247826 + 0: The maximum resident set size (KB) = 194956 Test 036 control_wam_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/rap_control_dyn32_phy32 Checking test 037 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1106,14 +1106,14 @@ Checking test 037 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1492.291189 - 0: The maximum resident set size (KB) = 684260 + 0: The total amount of wall time = 1514.418016 + 0: The maximum resident set size (KB) = 687112 Test 037 rap_control_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/hrrr_control_dyn32_phy32 Checking test 038 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1160,14 +1160,14 @@ Checking test 038 hrrr_control_dyn32_phy32 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 = 729.950346 - 0: The maximum resident set size (KB) = 680948 + 0: The total amount of wall time = 763.473595 + 0: The maximum resident set size (KB) = 688592 Test 038 hrrr_control_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/rap_2threads_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/rap_2threads_dyn32_phy32 Checking test 039 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1214,14 +1214,14 @@ Checking test 039 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1359.100884 - 0: The maximum resident set size (KB) = 729940 + 0: The total amount of wall time = 1315.008385 + 0: The maximum resident set size (KB) = 728644 Test 039 rap_2threads_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/hrrr_control_2threads_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/hrrr_control_2threads_dyn32_phy32 Checking test 040 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1268,14 +1268,14 @@ Checking test 040 hrrr_control_2threads_dyn32_phy32 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 = 673.527944 - 0: The maximum resident set size (KB) = 727356 + 0: The total amount of wall time = 704.527657 + 0: The maximum resident set size (KB) = 726356 Test 040 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/hrrr_control_decomp_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/hrrr_control_decomp_dyn32_phy32 Checking test 041 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1322,14 +1322,14 @@ Checking test 041 hrrr_control_decomp_dyn32_phy32 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 = 719.656752 - 0: The maximum resident set size (KB) = 686600 + 0: The total amount of wall time = 739.922095 + 0: The maximum resident set size (KB) = 684164 Test 041 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/rap_restart_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/rap_restart_dyn32_phy32 Checking test 042 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1368,14 +1368,14 @@ Checking test 042 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1078.096496 - 0: The maximum resident set size (KB) = 516080 + 0: The total amount of wall time = 1059.491879 + 0: The maximum resident set size (KB) = 512268 Test 042 rap_restart_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/hrrr_control_restart_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/hrrr_control_restart_dyn32_phy32 Checking test 043 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1414,14 +1414,14 @@ Checking test 043 hrrr_control_restart_dyn32_phy32 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 = 375.337740 - 0: The maximum resident set size (KB) = 511536 + 0: The total amount of wall time = 357.266984 + 0: The maximum resident set size (KB) = 513140 Test 043 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/rap_control_dyn64_phy32 Checking test 044 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1468,58 +1468,128 @@ Checking test 044 rap_control_dyn64_phy32 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 = 1064.913828 - 0: The maximum resident set size (KB) = 710188 + 0: The total amount of wall time = 1067.149970 + 0: The maximum resident set size (KB) = 708788 Test 044 rap_control_dyn64_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/rap_control_debug_dyn32_phy32 Checking test 045 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 174.610885 - 0: The maximum resident set size (KB) = 698884 + 0: The total amount of wall time = 180.521505 + 0: The maximum resident set size (KB) = 696696 Test 045 rap_control_debug_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/hrrr_control_debug_dyn32_phy32 Checking test 046 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 175.440921 - 0: The maximum resident set size (KB) = 701044 + 0: The total amount of wall time = 171.782527 + 0: The maximum resident set size (KB) = 701440 Test 046 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/rap_control_dyn64_phy32_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/rap_control_dyn64_phy32_debug Checking test 047 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 207.489561 - 0: The maximum resident set size (KB) = 714004 + 0: The total amount of wall time = 204.809577 + 0: The maximum resident set size (KB) = 719120 Test 047 rap_control_dyn64_phy32_debug PASS -Test 048 cpld_control_p8 FAIL + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/cpld_control_p8 +Checking test 048 cpld_control_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 1686.007318 + 0: The maximum resident set size (KB) = 1430476 + +Test 048 cpld_control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/cpld_control_nowave_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/cpld_control_nowave_noaero_p8 Checking test 049 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1581,14 +1651,14 @@ Checking test 049 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 1207.026750 - 0: The maximum resident set size (KB) = 1330400 + 0: The total amount of wall time = 1219.333808 + 0: The maximum resident set size (KB) = 1333876 Test 049 cpld_control_nowave_noaero_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/cpld_debug_p8 Checking test 050 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1641,27 +1711,25 @@ Checking test 050 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 793.444353 - 0: The maximum resident set size (KB) = 1437952 + 0: The total amount of wall time = 1197.090742 + 0: The maximum resident set size (KB) = 1435496 Test 050 cpld_debug_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_24906/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/datm_cdeps_control_cfsr Checking test 051 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 174.432340 - 0: The maximum resident set size (KB) = 670792 + 0: The total amount of wall time = 178.344507 + 0: The maximum resident set size (KB) = 664004 Test 051 datm_cdeps_control_cfsr PASS -FAILED TESTS: -Test cpld_control_p8 048 failed in run_test failed -REGRESSION TEST FAILED -Fri Apr 14 07:34:41 UTC 2023 -Elapsed time: 03h:51m:07s. Have a nice day! +REGRESSION TEST WAS SUCCESSFUL +Sat Apr 15 01:40:21 UTC 2023 +Elapsed time: 01h:21m:53s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 7770d4eaa0d..77a529e647b 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,43 +1,43 @@ -Fri Apr 14 02:26:24 UTC 2023 +Sat Apr 15 00:03:48 UTC 2023 Start Regression test -Compile 001 elapsed time 634 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 634 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 588 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 252 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 208 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 537 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 537 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 724 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 557 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 509 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 011 elapsed time 485 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 480 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 607 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 211 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 160 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 494 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 494 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 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 019 elapsed time 212 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 570 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 021 elapsed time 222 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 685 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 629 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 024 elapsed time 191 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 117 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 186 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 84 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 487 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 544 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 581 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 489 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 483 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 033 elapsed time 192 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 034 elapsed time 540 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 663 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 626 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 607 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 235 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 221 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 533 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 531 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 711 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 531 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 488 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 011 elapsed time 475 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 434 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 579 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 204 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 156 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 460 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 462 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 163 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 164 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 543 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 192 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 640 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 565 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 024 elapsed time 180 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 112 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 182 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 68 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 506 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 517 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 534 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 474 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 463 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 033 elapsed time 168 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 034 elapsed time 539 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8_mixedmode -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/cpld_control_p8_mixedmode +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -102,14 +102,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 324.176307 - 0: The maximum resident set size (KB) = 3148160 + 0: The total amount of wall time = 310.253047 + 0: The maximum resident set size (KB) = 3143368 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_gfsv17 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/cpld_control_gfsv17 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -173,14 +173,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 234.411878 - 0: The maximum resident set size (KB) = 1718152 + 0: The total amount of wall time = 229.561089 + 0: The maximum resident set size (KB) = 1715344 Test 002 cpld_control_gfsv17 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -245,14 +245,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 355.299580 - 0: The maximum resident set size (KB) = 3179700 + 0: The total amount of wall time = 347.354855 + 0: The maximum resident set size (KB) = 3170736 Test 003 cpld_control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/cpld_restart_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -305,14 +305,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 198.494568 - 0: The maximum resident set size (KB) = 3043452 + 0: The total amount of wall time = 199.946636 + 0: The maximum resident set size (KB) = 3054660 Test 004 cpld_restart_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/cpld_control_qr_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -377,14 +377,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 349.421644 - 0: The maximum resident set size (KB) = 3157856 + 0: The total amount of wall time = 347.605650 + 0: The maximum resident set size (KB) = 3184040 Test 005 cpld_control_qr_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/cpld_restart_qr_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -437,14 +437,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 203.170274 - 0: The maximum resident set size (KB) = 3061024 + 0: The total amount of wall time = 196.713572 + 0: The maximum resident set size (KB) = 3057888 Test 006 cpld_restart_qr_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/cpld_2threads_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -497,14 +497,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 355.493808 - 0: The maximum resident set size (KB) = 3513800 + 0: The total amount of wall time = 353.348775 + 0: The maximum resident set size (KB) = 3524352 Test 007 cpld_2threads_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/cpld_decomp_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -557,14 +557,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 350.312103 - 0: The maximum resident set size (KB) = 3157248 + 0: The total amount of wall time = 351.343799 + 0: The maximum resident set size (KB) = 3144364 Test 008 cpld_decomp_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/cpld_mpi_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -617,14 +617,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 289.141560 - 0: The maximum resident set size (KB) = 3010500 + 0: The total amount of wall time = 289.839445 + 0: The maximum resident set size (KB) = 3016012 Test 009 cpld_mpi_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_ciceC_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/cpld_control_ciceC_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -689,14 +689,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 351.097255 - 0: The maximum resident set size (KB) = 3167656 + 0: The total amount of wall time = 345.364330 + 0: The maximum resident set size (KB) = 3170616 Test 010 cpld_control_ciceC_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/cpld_control_c192_p8 Checking test 011 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -749,14 +749,14 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 609.237581 - 0: The maximum resident set size (KB) = 3263764 + 0: The total amount of wall time = 605.507629 + 0: The maximum resident set size (KB) = 3260872 Test 011 cpld_control_c192_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/cpld_restart_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/cpld_restart_c192_p8 Checking test 012 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -809,14 +809,14 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 396.379026 - 0: The maximum resident set size (KB) = 3147944 + 0: The total amount of wall time = 389.566032 + 0: The maximum resident set size (KB) = 3146636 Test 012 cpld_restart_c192_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/cpld_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/cpld_bmark_p8 Checking test 013 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -864,14 +864,14 @@ Checking test 013 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 746.545972 - 0: The maximum resident set size (KB) = 4013944 + 0: The total amount of wall time = 746.302898 + 0: The maximum resident set size (KB) = 4026992 Test 013 cpld_bmark_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/cpld_restart_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/cpld_restart_bmark_p8 Checking test 014 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -919,14 +919,14 @@ Checking test 014 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 464.633677 - 0: The maximum resident set size (KB) = 3964460 + 0: The total amount of wall time = 465.353316 + 0: The maximum resident set size (KB) = 3972208 Test 014 cpld_restart_bmark_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/cpld_control_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/cpld_control_noaero_p8 Checking test 015 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -990,14 +990,14 @@ Checking test 015 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 274.077644 - 0: The maximum resident set size (KB) = 1711592 + 0: The total amount of wall time = 273.793013 + 0: The maximum resident set size (KB) = 1727484 Test 015 cpld_control_noaero_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/cpld_control_nowave_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/cpld_control_nowave_noaero_p8 Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1059,14 +1059,14 @@ Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 270.382342 - 0: The maximum resident set size (KB) = 1764644 + 0: The total amount of wall time = 264.854911 + 0: The maximum resident set size (KB) = 1756356 Test 016 cpld_control_nowave_noaero_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/cpld_debug_p8 Checking test 017 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1119,14 +1119,14 @@ Checking test 017 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 538.476226 - 0: The maximum resident set size (KB) = 3211448 + 0: The total amount of wall time = 511.081174 + 0: The maximum resident set size (KB) = 3233152 Test 017 cpld_debug_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_debug_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/cpld_debug_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/cpld_debug_noaero_p8 Checking test 018 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1178,14 +1178,14 @@ Checking test 018 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 372.700344 - 0: The maximum resident set size (KB) = 1730760 + 0: The total amount of wall time = 360.355697 + 0: The maximum resident set size (KB) = 1736024 Test 018 cpld_debug_noaero_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_noaero_p8_agrid -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/cpld_control_noaero_p8_agrid +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/cpld_control_noaero_p8_agrid Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1247,14 +1247,14 @@ Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 274.709125 - 0: The maximum resident set size (KB) = 1754964 + 0: The total amount of wall time = 272.210058 + 0: The maximum resident set size (KB) = 1756244 Test 019 cpld_control_noaero_p8_agrid PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_c48 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/cpld_control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/cpld_control_c48 Checking test 020 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1304,14 +1304,14 @@ Checking test 020 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 580.144129 - 0: The maximum resident set size (KB) = 2804296 + 0: The total amount of wall time = 582.592739 + 0: The maximum resident set size (KB) = 2803240 Test 020 cpld_control_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/cpld_warmstart_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/cpld_warmstart_c48 Checking test 021 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1361,14 +1361,14 @@ Checking test 021 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 159.139371 - 0: The maximum resident set size (KB) = 2804600 + 0: The total amount of wall time = 154.596794 + 0: The maximum resident set size (KB) = 2797352 Test 021 cpld_warmstart_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/cpld_restart_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/cpld_restart_c48 Checking test 022 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1418,14 +1418,14 @@ Checking test 022 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 81.961865 - 0: The maximum resident set size (KB) = 2239228 + 0: The total amount of wall time = 80.725447 + 0: The maximum resident set size (KB) = 2239520 Test 022 cpld_restart_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8_faster -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/cpld_control_p8_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/cpld_control_p8_faster Checking test 023 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1490,14 +1490,14 @@ Checking test 023 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 336.572507 - 0: The maximum resident set size (KB) = 3176076 + 0: The total amount of wall time = 319.340212 + 0: The maximum resident set size (KB) = 3177432 Test 023 cpld_control_p8_faster PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_CubedSphereGrid -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_CubedSphereGrid +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_CubedSphereGrid Checking test 024 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1524,28 +1524,28 @@ Checking test 024 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 135.147754 - 0: The maximum resident set size (KB) = 631952 + 0: The total amount of wall time = 131.095746 + 0: The maximum resident set size (KB) = 626524 Test 024 control_CubedSphereGrid PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_CubedSphereGrid_parallel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_CubedSphereGrid_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_CubedSphereGrid_parallel Checking test 025 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf024.nc ............ALT CHECK......OK - 0: The total amount of wall time = 133.127595 - 0: The maximum resident set size (KB) = 627236 + 0: The total amount of wall time = 127.868128 + 0: The maximum resident set size (KB) = 628408 Test 025 control_CubedSphereGrid_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_latlon -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_latlon +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_latlon Checking test 026 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1556,14 +1556,14 @@ Checking test 026 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 140.255061 - 0: The maximum resident set size (KB) = 630684 + 0: The total amount of wall time = 133.615443 + 0: The maximum resident set size (KB) = 626560 Test 026 control_latlon PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_wrtGauss_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_wrtGauss_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_wrtGauss_netcdf_parallel Checking test 027 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc .........OK @@ -1574,14 +1574,14 @@ Checking test 027 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 141.068768 - 0: The maximum resident set size (KB) = 628584 + 0: The total amount of wall time = 138.115671 + 0: The maximum resident set size (KB) = 628436 Test 027 control_wrtGauss_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_c48 Checking test 028 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1620,14 +1620,14 @@ Checking test 028 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 373.665496 -0: The maximum resident set size (KB) = 819948 +0: The total amount of wall time = 371.733019 +0: The maximum resident set size (KB) = 818056 Test 028 control_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_c192 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_c192 Checking test 029 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1638,14 +1638,14 @@ Checking test 029 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 536.743974 - 0: The maximum resident set size (KB) = 764968 + 0: The total amount of wall time = 526.080637 + 0: The maximum resident set size (KB) = 768608 Test 029 control_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_c384 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_c384 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_c384 Checking test 030 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1656,14 +1656,14 @@ Checking test 030 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 538.113138 - 0: The maximum resident set size (KB) = 1270092 + 0: The total amount of wall time = 522.989536 + 0: The maximum resident set size (KB) = 1265920 Test 030 control_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_c384gdas -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_c384gdas +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_c384gdas Checking test 031 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1706,14 +1706,14 @@ Checking test 031 control_c384gdas 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 = 516.412637 - 0: The maximum resident set size (KB) = 1380292 + 0: The total amount of wall time = 461.874479 + 0: The maximum resident set size (KB) = 1378916 Test 031 control_c384gdas PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_stochy Checking test 032 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1724,28 +1724,28 @@ Checking test 032 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 97.117125 - 0: The maximum resident set size (KB) = 632260 + 0: The total amount of wall time = 88.456108 + 0: The maximum resident set size (KB) = 634744 Test 032 control_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_stochy_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_stochy_restart Checking test 033 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 48.979682 - 0: The maximum resident set size (KB) = 479052 + 0: The total amount of wall time = 49.029293 + 0: The maximum resident set size (KB) = 483796 Test 033 control_stochy_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_lndp -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_lndp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_lndp Checking test 034 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1756,14 +1756,14 @@ Checking test 034 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 86.238301 - 0: The maximum resident set size (KB) = 632760 + 0: The total amount of wall time = 82.138040 + 0: The maximum resident set size (KB) = 631016 Test 034 control_lndp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_iovr4 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_iovr4 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_iovr4 Checking test 035 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1778,14 +1778,14 @@ Checking test 035 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 140.318647 - 0: The maximum resident set size (KB) = 630088 + 0: The total amount of wall time = 137.609886 + 0: The maximum resident set size (KB) = 627768 Test 035 control_iovr4 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_iovr5 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_iovr5 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_iovr5 Checking test 036 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1800,14 +1800,14 @@ Checking test 036 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 142.866098 - 0: The maximum resident set size (KB) = 625904 + 0: The total amount of wall time = 138.361453 + 0: The maximum resident set size (KB) = 628108 Test 036 control_iovr5 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_p8 Checking test 037 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1854,14 +1854,14 @@ Checking test 037 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 182.918835 - 0: The maximum resident set size (KB) = 1599496 + 0: The total amount of wall time = 171.782933 + 0: The maximum resident set size (KB) = 1602892 Test 037 control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_restart_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_restart_p8 Checking test 038 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1900,14 +1900,14 @@ Checking test 038 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 91.087795 - 0: The maximum resident set size (KB) = 864060 + 0: The total amount of wall time = 95.416434 + 0: The maximum resident set size (KB) = 867780 Test 038 control_restart_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_qr_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_qr_p8 Checking test 039 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1954,14 +1954,14 @@ Checking test 039 control_qr_p8 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 = 181.024699 - 0: The maximum resident set size (KB) = 1605592 + 0: The total amount of wall time = 176.149877 + 0: The maximum resident set size (KB) = 1595940 Test 039 control_qr_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_restart_qr_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_restart_qr_p8 Checking test 040 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2000,14 +2000,14 @@ Checking test 040 control_restart_qr_p8 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 = 92.069590 - 0: The maximum resident set size (KB) = 853900 + 0: The total amount of wall time = 90.035820 + 0: The maximum resident set size (KB) = 866100 Test 040 control_restart_qr_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_decomp_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_decomp_p8 Checking test 041 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2050,14 +2050,14 @@ Checking test 041 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 183.082441 - 0: The maximum resident set size (KB) = 1575696 + 0: The total amount of wall time = 175.990417 + 0: The maximum resident set size (KB) = 1582696 Test 041 control_decomp_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_2threads_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_2threads_p8 Checking test 042 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2100,14 +2100,14 @@ Checking test 042 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 171.392187 - 0: The maximum resident set size (KB) = 1677444 + 0: The total amount of wall time = 159.313441 + 0: The maximum resident set size (KB) = 1673148 Test 042 control_2threads_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8_lndp -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_p8_lndp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_p8_lndp Checking test 043 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2126,14 +2126,14 @@ Checking test 043 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 329.227019 - 0: The maximum resident set size (KB) = 1597604 + 0: The total amount of wall time = 319.892162 + 0: The maximum resident set size (KB) = 1595656 Test 043 control_p8_lndp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_p8_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_p8_rrtmgp Checking test 044 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2180,14 +2180,14 @@ Checking test 044 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 236.790135 - 0: The maximum resident set size (KB) = 1673992 + 0: The total amount of wall time = 230.169231 + 0: The maximum resident set size (KB) = 1660324 Test 044 control_p8_rrtmgp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8_mynn -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_p8_mynn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_p8_mynn Checking test 045 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2234,14 +2234,14 @@ Checking test 045 control_p8_mynn results .... Comparing 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.228452 - 0: The maximum resident set size (KB) = 1596468 + 0: The total amount of wall time = 182.533338 + 0: The maximum resident set size (KB) = 1600952 Test 045 control_p8_mynn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/merra2_thompson -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/merra2_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/merra2_thompson Checking test 046 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2288,14 +2288,14 @@ Checking test 046 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 207.289322 - 0: The maximum resident set size (KB) = 1609500 + 0: The total amount of wall time = 196.664480 + 0: The maximum resident set size (KB) = 1601100 Test 046 merra2_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/regional_control Checking test 047 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2306,28 +2306,28 @@ Checking test 047 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 304.692492 - 0: The maximum resident set size (KB) = 867780 + 0: The total amount of wall time = 301.912604 + 0: The maximum resident set size (KB) = 869444 Test 047 regional_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/regional_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/regional_restart Checking test 048 regional_restart 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.464250 - 0: The maximum resident set size (KB) = 860032 + 0: The total amount of wall time = 150.526252 + 0: The maximum resident set size (KB) = 867720 Test 048 regional_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/regional_control_qr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/regional_control_qr Checking test 049 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2338,28 +2338,28 @@ Checking test 049 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 301.909024 - 0: The maximum resident set size (KB) = 865016 + 0: The total amount of wall time = 298.981486 + 0: The maximum resident set size (KB) = 870988 Test 049 regional_control_qr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/regional_restart_qr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/regional_restart_qr Checking test 050 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 160.516655 - 0: The maximum resident set size (KB) = 863560 + 0: The total amount of wall time = 150.727427 + 0: The maximum resident set size (KB) = 859576 Test 050 regional_restart_qr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/regional_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/regional_decomp Checking test 051 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2370,14 +2370,14 @@ Checking test 051 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 319.073455 - 0: The maximum resident set size (KB) = 860560 + 0: The total amount of wall time = 319.804791 + 0: The maximum resident set size (KB) = 862140 Test 051 regional_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/regional_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/regional_2threads Checking test 052 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2388,14 +2388,14 @@ Checking test 052 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 186.964155 - 0: The maximum resident set size (KB) = 845072 + 0: The total amount of wall time = 189.291434 + 0: The maximum resident set size (KB) = 856404 Test 052 regional_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_noquilt -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/regional_noquilt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/regional_noquilt Checking test 053 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2403,28 +2403,28 @@ Checking test 053 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 325.166502 - 0: The maximum resident set size (KB) = 860956 + 0: The total amount of wall time = 322.056972 + 0: The maximum resident set size (KB) = 856088 Test 053 regional_noquilt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/regional_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/regional_netcdf_parallel Checking test 054 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 298.780195 - 0: The maximum resident set size (KB) = 858188 + 0: The total amount of wall time = 297.498248 + 0: The maximum resident set size (KB) = 866000 Test 054 regional_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/regional_2dwrtdecomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/regional_2dwrtdecomp Checking test 055 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2435,14 +2435,14 @@ Checking test 055 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 302.997004 - 0: The maximum resident set size (KB) = 870056 + 0: The total amount of wall time = 305.680905 + 0: The maximum resident set size (KB) = 873076 Test 055 regional_2dwrtdecomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/fv3_regional_wofs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/regional_wofs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/regional_wofs Checking test 056 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2453,14 +2453,14 @@ Checking test 056 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 379.495787 - 0: The maximum resident set size (KB) = 628020 + 0: The total amount of wall time = 376.681536 + 0: The maximum resident set size (KB) = 626536 Test 056 regional_wofs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/rap_control Checking test 057 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2507,14 +2507,14 @@ Checking test 057 rap_control results .... Comparing 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.261278 - 0: The maximum resident set size (KB) = 1016812 + 0: The total amount of wall time = 461.586118 + 0: The maximum resident set size (KB) = 1055296 Test 057 rap_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_spp_sppt_shum_skeb -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/regional_spp_sppt_shum_skeb +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/regional_spp_sppt_shum_skeb Checking test 058 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2525,14 +2525,14 @@ Checking test 058 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 234.762502 - 0: The maximum resident set size (KB) = 1177384 + 0: The total amount of wall time = 235.133173 + 0: The maximum resident set size (KB) = 1183704 Test 058 regional_spp_sppt_shum_skeb PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/rap_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/rap_decomp Checking test 059 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2579,14 +2579,14 @@ Checking test 059 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 482.080629 - 0: The maximum resident set size (KB) = 995640 + 0: The total amount of wall time = 477.742752 + 0: The maximum resident set size (KB) = 994892 Test 059 rap_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/rap_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/rap_2threads Checking test 060 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2633,14 +2633,14 @@ Checking test 060 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 436.415243 - 0: The maximum resident set size (KB) = 1139172 + 0: The total amount of wall time = 436.405364 + 0: The maximum resident set size (KB) = 1135080 Test 060 rap_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/rap_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/rap_restart Checking test 061 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2679,14 +2679,14 @@ Checking test 061 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 233.825680 - 0: The maximum resident set size (KB) = 969352 + 0: The total amount of wall time = 231.174538 + 0: The maximum resident set size (KB) = 964948 Test 061 rap_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/rap_sfcdiff Checking test 062 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2733,14 +2733,14 @@ Checking test 062 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 463.852252 - 0: The maximum resident set size (KB) = 1059220 + 0: The total amount of wall time = 462.937970 + 0: The maximum resident set size (KB) = 1059744 Test 062 rap_sfcdiff PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/rap_sfcdiff_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/rap_sfcdiff_decomp Checking test 063 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2787,14 +2787,14 @@ Checking test 063 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 489.877888 - 0: The maximum resident set size (KB) = 1005396 + 0: The total amount of wall time = 483.942982 + 0: The maximum resident set size (KB) = 1003772 Test 063 rap_sfcdiff_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/rap_sfcdiff_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/rap_sfcdiff_restart Checking test 064 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2833,14 +2833,14 @@ Checking test 064 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 343.137117 - 0: The maximum resident set size (KB) = 994496 + 0: The total amount of wall time = 340.624296 + 0: The maximum resident set size (KB) = 994128 Test 064 rap_sfcdiff_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/hrrr_control Checking test 065 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2887,14 +2887,14 @@ Checking test 065 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 449.647138 - 0: The maximum resident set size (KB) = 1054780 + 0: The total amount of wall time = 445.626377 + 0: The maximum resident set size (KB) = 1047744 Test 065 hrrr_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/hrrr_control_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/hrrr_control_decomp Checking test 066 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2941,14 +2941,14 @@ Checking test 066 hrrr_control_decomp results .... Comparing 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.201126 - 0: The maximum resident set size (KB) = 995312 + 0: The total amount of wall time = 463.815303 + 0: The maximum resident set size (KB) = 990768 Test 066 hrrr_control_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/hrrr_control_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/hrrr_control_2threads Checking test 067 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2995,14 +2995,14 @@ Checking test 067 hrrr_control_2threads results .... Comparing 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.724234 - 0: The maximum resident set size (KB) = 1134516 + 0: The total amount of wall time = 419.303949 + 0: The maximum resident set size (KB) = 1139612 Test 067 hrrr_control_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/hrrr_control_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/hrrr_control_restart Checking test 068 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3041,14 +3041,14 @@ Checking test 068 hrrr_control_restart results .... Comparing 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.760664 - 0: The maximum resident set size (KB) = 989752 + 0: The total amount of wall time = 329.169982 + 0: The maximum resident set size (KB) = 975600 Test 068 hrrr_control_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/rrfs_v1beta Checking test 069 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3095,14 +3095,14 @@ Checking test 069 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 462.033628 - 0: The maximum resident set size (KB) = 1057932 + 0: The total amount of wall time = 457.727775 + 0: The maximum resident set size (KB) = 1062848 Test 069 rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_v1nssl -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/rrfs_v1nssl +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/rrfs_v1nssl Checking test 070 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3117,14 +3117,14 @@ Checking test 070 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 540.873404 - 0: The maximum resident set size (KB) = 697304 + 0: The total amount of wall time = 539.724532 + 0: The maximum resident set size (KB) = 696804 Test 070 rrfs_v1nssl PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/rrfs_v1nssl_nohailnoccn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/rrfs_v1nssl_nohailnoccn Checking test 071 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3139,14 +3139,14 @@ Checking test 071 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 526.456367 - 0: The maximum resident set size (KB) = 756448 + 0: The total amount of wall time = 526.714730 + 0: The maximum resident set size (KB) = 760228 Test 071 rrfs_v1nssl_nohailnoccn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/rrfs_smoke_conus13km_hrrr_warm Checking test 072 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3155,14 +3155,14 @@ Checking test 072 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 147.922523 - 0: The maximum resident set size (KB) = 1034048 + 0: The total amount of wall time = 149.059276 + 0: The maximum resident set size (KB) = 1029260 Test 072 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/rrfs_smoke_conus13km_hrrr_warm_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 073 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3171,14 +3171,14 @@ Checking test 073 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 89.923275 - 0: The maximum resident set size (KB) = 947176 + 0: The total amount of wall time = 91.978635 + 0: The maximum resident set size (KB) = 945612 Test 073 rrfs_smoke_conus13km_hrrr_warm_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/rrfs_conus13km_hrrr_warm Checking test 074 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3187,14 +3187,14 @@ Checking test 074 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 128.580805 - 0: The maximum resident set size (KB) = 942028 + 0: The total amount of wall time = 130.922759 + 0: The maximum resident set size (KB) = 945232 Test 074 rrfs_conus13km_hrrr_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/rrfs_smoke_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/rrfs_smoke_conus13km_radar_tten_warm Checking test 075 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3203,26 +3203,26 @@ Checking test 075 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 147.657718 - 0: The maximum resident set size (KB) = 1005936 + 0: The total amount of wall time = 147.786827 + 0: The maximum resident set size (KB) = 994272 Test 075 rrfs_smoke_conus13km_radar_tten_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 076 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 68.475146 - 0: The maximum resident set size (KB) = 933148 + 0: The total amount of wall time = 70.471778 + 0: The maximum resident set size (KB) = 935336 Test 076 rrfs_conus13km_hrrr_warm_restart_mismatch PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_csawmg -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_csawmg +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_csawmg Checking test 077 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3233,14 +3233,14 @@ Checking test 077 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 341.534032 - 0: The maximum resident set size (KB) = 720108 + 0: The total amount of wall time = 345.585870 + 0: The maximum resident set size (KB) = 719804 Test 077 control_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_csawmgt -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_csawmgt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_csawmgt Checking test 078 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3251,14 +3251,14 @@ Checking test 078 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 337.625549 - 0: The maximum resident set size (KB) = 726308 + 0: The total amount of wall time = 339.587006 + 0: The maximum resident set size (KB) = 722688 Test 078 control_csawmgt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_ras -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_ras Checking test 079 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3269,26 +3269,26 @@ Checking test 079 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 182.426620 - 0: The maximum resident set size (KB) = 726424 + 0: The total amount of wall time = 183.586261 + 0: The maximum resident set size (KB) = 718184 Test 079 control_ras PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_wam -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_wam +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_wam Checking test 080 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 110.754843 - 0: The maximum resident set size (KB) = 636468 + 0: The total amount of wall time = 111.463960 + 0: The maximum resident set size (KB) = 643612 Test 080 control_wam PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8_faster -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_p8_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_p8_faster Checking test 081 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3335,14 +3335,14 @@ Checking test 081 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 152.609203 - 0: The maximum resident set size (KB) = 1604640 + 0: The total amount of wall time = 155.540986 + 0: The maximum resident set size (KB) = 1594772 Test 081 control_p8_faster PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control_faster -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/regional_control_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/regional_control_faster Checking test 082 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3353,56 +3353,56 @@ Checking test 082 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 272.151566 - 0: The maximum resident set size (KB) = 867448 + 0: The total amount of wall time = 273.255028 + 0: The maximum resident set size (KB) = 870332 Test 082 regional_control_faster PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 083 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 860.627609 - 0: The maximum resident set size (KB) = 1052744 + 0: The total amount of wall time = 832.190417 + 0: The maximum resident set size (KB) = 1057532 Test 083 rrfs_smoke_conus13km_hrrr_warm_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 084 rrfs_smoke_conus13km_hrrr_warm_debug_2threads 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.284867 - 0: The maximum resident set size (KB) = 971372 + 0: The total amount of wall time = 466.283283 + 0: The maximum resident set size (KB) = 929784 Test 084 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/rrfs_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/rrfs_conus13km_hrrr_warm_debug Checking test 085 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 746.576744 - 0: The maximum resident set size (KB) = 960960 + 0: The total amount of wall time = 720.121386 + 0: The maximum resident set size (KB) = 970056 Test 085 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_CubedSphereGrid_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_CubedSphereGrid_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_CubedSphereGrid_debug Checking test 086 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3429,334 +3429,334 @@ Checking test 086 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 143.357619 - 0: The maximum resident set size (KB) = 793280 + 0: The total amount of wall time = 147.263500 + 0: The maximum resident set size (KB) = 790644 Test 086 control_CubedSphereGrid_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_wrtGauss_netcdf_parallel_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_wrtGauss_netcdf_parallel_debug Checking test 087 control_wrtGauss_netcdf_parallel_debug 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.116673 - 0: The maximum resident set size (KB) = 786228 + 0: The total amount of wall time = 144.581224 + 0: The maximum resident set size (KB) = 793844 Test 087 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_stochy_debug Checking test 088 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 165.886086 - 0: The maximum resident set size (KB) = 795208 + 0: The total amount of wall time = 165.405216 + 0: The maximum resident set size (KB) = 799584 Test 088 control_stochy_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_lndp_debug Checking test 089 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 145.967464 - 0: The maximum resident set size (KB) = 797172 + 0: The total amount of wall time = 146.364424 + 0: The maximum resident set size (KB) = 793036 Test 089 control_lndp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_csawmg_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_csawmg_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_csawmg_debug Checking test 090 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 227.293581 - 0: The maximum resident set size (KB) = 840080 + 0: The total amount of wall time = 228.884937 + 0: The maximum resident set size (KB) = 843520 Test 090 control_csawmg_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_csawmgt_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_csawmgt_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_csawmgt_debug Checking test 091 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 223.229086 - 0: The maximum resident set size (KB) = 840424 + 0: The total amount of wall time = 221.202463 + 0: The maximum resident set size (KB) = 834444 Test 091 control_csawmgt_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_ras_debug Checking test 092 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 145.219340 - 0: The maximum resident set size (KB) = 801964 + 0: The total amount of wall time = 150.217758 + 0: The maximum resident set size (KB) = 807232 Test 092 control_ras_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_diag_debug Checking test 093 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 150.862750 - 0: The maximum resident set size (KB) = 848132 + 0: The total amount of wall time = 156.747462 + 0: The maximum resident set size (KB) = 846688 Test 093 control_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_debug_p8 Checking test 094 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 165.762355 - 0: The maximum resident set size (KB) = 1594460 + 0: The total amount of wall time = 166.828052 + 0: The maximum resident set size (KB) = 1617488 Test 094 control_debug_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/regional_debug Checking test 095 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 986.995811 - 0: The maximum resident set size (KB) = 884748 + 0: The total amount of wall time = 984.573637 + 0: The maximum resident set size (KB) = 882116 Test 095 regional_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/rap_control_debug Checking test 096 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 267.585152 - 0: The maximum resident set size (KB) = 1170992 + 0: The total amount of wall time = 275.047635 + 0: The maximum resident set size (KB) = 1174356 Test 096 rap_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/hrrr_control_debug Checking test 097 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 267.997043 - 0: The maximum resident set size (KB) = 1168104 + 0: The total amount of wall time = 270.212098 + 0: The maximum resident set size (KB) = 1165580 Test 097 hrrr_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/rap_unified_drag_suite_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/rap_unified_drag_suite_debug Checking test 098 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 268.828580 - 0: The maximum resident set size (KB) = 1171600 + 0: The total amount of wall time = 270.195169 + 0: The maximum resident set size (KB) = 1171548 Test 098 rap_unified_drag_suite_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/rap_diag_debug Checking test 099 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 286.202721 - 0: The maximum resident set size (KB) = 1253476 + 0: The total amount of wall time = 285.184371 + 0: The maximum resident set size (KB) = 1254224 Test 099 rap_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/rap_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/rap_cires_ugwp_debug Checking test 100 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.562088 - 0: The maximum resident set size (KB) = 1171448 + 0: The total amount of wall time = 281.424479 + 0: The maximum resident set size (KB) = 1166540 Test 100 rap_cires_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/rap_unified_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/rap_unified_ugwp_debug Checking test 101 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.616114 - 0: The maximum resident set size (KB) = 1165104 + 0: The total amount of wall time = 281.142134 + 0: The maximum resident set size (KB) = 1171496 Test 101 rap_unified_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/rap_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/rap_lndp_debug Checking test 102 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.810719 - 0: The maximum resident set size (KB) = 1173424 + 0: The total amount of wall time = 271.580953 + 0: The maximum resident set size (KB) = 1169964 Test 102 rap_lndp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_flake_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/rap_flake_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/rap_flake_debug Checking test 103 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 272.249660 - 0: The maximum resident set size (KB) = 1174432 + 0: The total amount of wall time = 268.145146 + 0: The maximum resident set size (KB) = 1174136 Test 103 rap_flake_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/rap_progcld_thompson_debug Checking test 104 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 272.977829 - 0: The maximum resident set size (KB) = 1165076 + 0: The total amount of wall time = 273.691359 + 0: The maximum resident set size (KB) = 1167008 Test 104 rap_progcld_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_noah_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/rap_noah_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/rap_noah_debug Checking test 105 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 266.921581 - 0: The maximum resident set size (KB) = 1169740 + 0: The total amount of wall time = 269.581697 + 0: The maximum resident set size (KB) = 1164816 Test 105 rap_noah_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_sfcdiff_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/rap_sfcdiff_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/rap_sfcdiff_debug Checking test 106 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.302609 - 0: The maximum resident set size (KB) = 1170060 + 0: The total amount of wall time = 271.099556 + 0: The maximum resident set size (KB) = 1167168 Test 106 rap_sfcdiff_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/rap_noah_sfcdiff_cires_ugwp_debug Checking test 107 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 446.372589 - 0: The maximum resident set size (KB) = 1170052 + 0: The total amount of wall time = 467.669503 + 0: The maximum resident set size (KB) = 1165268 Test 107 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/rrfs_v1beta_debug Checking test 108 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.985984 - 0: The maximum resident set size (KB) = 1163408 + 0: The total amount of wall time = 268.096513 + 0: The maximum resident set size (KB) = 1166520 Test 108 rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_wam_debug Checking test 109 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 279.987001 - 0: The maximum resident set size (KB) = 520344 + 0: The total amount of wall time = 275.773070 + 0: The maximum resident set size (KB) = 518988 Test 109 control_wam_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3767,14 +3767,14 @@ Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 222.535891 - 0: The maximum resident set size (KB) = 1079188 + 0: The total amount of wall time = 220.379884 + 0: The maximum resident set size (KB) = 1081036 Test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/rap_control_dyn32_phy32 Checking test 111 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3821,14 +3821,14 @@ Checking test 111 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 384.088786 - 0: The maximum resident set size (KB) = 1006000 + 0: The total amount of wall time = 385.574647 + 0: The maximum resident set size (KB) = 997532 Test 111 rap_control_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/hrrr_control_dyn32_phy32 Checking test 112 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3875,14 +3875,14 @@ Checking test 112 hrrr_control_dyn32_phy32 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 = 202.081250 - 0: The maximum resident set size (KB) = 960132 + 0: The total amount of wall time = 202.333812 + 0: The maximum resident set size (KB) = 954824 Test 112 hrrr_control_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/rap_2threads_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/rap_2threads_dyn32_phy32 Checking test 113 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3929,14 +3929,14 @@ Checking test 113 rap_2threads_dyn32_phy32 results .... Comparing 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.160934 - 0: The maximum resident set size (KB) = 1019484 + 0: The total amount of wall time = 372.956212 + 0: The maximum resident set size (KB) = 1028516 Test 113 rap_2threads_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/hrrr_control_2threads_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/hrrr_control_2threads_dyn32_phy32 Checking test 114 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3983,14 +3983,14 @@ Checking test 114 hrrr_control_2threads_dyn32_phy32 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 = 191.788661 - 0: The maximum resident set size (KB) = 1003284 + 0: The total amount of wall time = 189.425036 + 0: The maximum resident set size (KB) = 1004052 Test 114 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/hrrr_control_decomp_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/hrrr_control_decomp_dyn32_phy32 Checking test 115 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4037,14 +4037,14 @@ Checking test 115 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 212.757297 - 0: The maximum resident set size (KB) = 892236 + 0: The total amount of wall time = 210.344535 + 0: The maximum resident set size (KB) = 893256 Test 115 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/rap_restart_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/rap_restart_dyn32_phy32 Checking test 116 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4083,14 +4083,14 @@ Checking test 116 rap_restart_dyn32_phy32 results .... Comparing 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.192910 - 0: The maximum resident set size (KB) = 946192 + 0: The total amount of wall time = 284.387394 + 0: The maximum resident set size (KB) = 949164 Test 116 rap_restart_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/hrrr_control_restart_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/hrrr_control_restart_dyn32_phy32 Checking test 117 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4129,14 +4129,14 @@ Checking test 117 hrrr_control_restart_dyn32_phy32 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 = 103.403456 - 0: The maximum resident set size (KB) = 860124 + 0: The total amount of wall time = 104.603132 + 0: The maximum resident set size (KB) = 861240 Test 117 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/rap_control_dyn64_phy32 Checking test 118 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4183,81 +4183,81 @@ Checking test 118 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 250.431173 - 0: The maximum resident set size (KB) = 966048 + 0: The total amount of wall time = 245.027251 + 0: The maximum resident set size (KB) = 962360 Test 118 rap_control_dyn64_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/rap_control_debug_dyn32_phy32 Checking test 119 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 269.110345 - 0: The maximum resident set size (KB) = 1049756 + 0: The total amount of wall time = 272.879112 + 0: The maximum resident set size (KB) = 1053196 Test 119 rap_control_debug_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/hrrr_control_debug_dyn32_phy32 Checking test 120 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 268.160678 - 0: The maximum resident set size (KB) = 1051076 + 0: The total amount of wall time = 264.426408 + 0: The maximum resident set size (KB) = 1052596 Test 120 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/rap_control_dyn64_phy32_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/rap_control_dyn64_phy32_debug Checking test 121 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.943956 - 0: The maximum resident set size (KB) = 1093808 + 0: The total amount of wall time = 276.602846 + 0: The maximum resident set size (KB) = 1092532 Test 121 rap_control_dyn64_phy32_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/hafs_regional_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/hafs_regional_atm Checking test 122 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 246.656314 - 0: The maximum resident set size (KB) = 1042644 + 0: The total amount of wall time = 238.582597 + 0: The maximum resident set size (KB) = 1051860 Test 122 hafs_regional_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/hafs_regional_atm_thompson_gfdlsf +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/hafs_regional_atm_thompson_gfdlsf Checking test 123 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 349.790285 - 0: The maximum resident set size (KB) = 1411596 + 0: The total amount of wall time = 377.576967 + 0: The maximum resident set size (KB) = 1400704 Test 123 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/hafs_regional_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/hafs_regional_atm_ocn Checking test 124 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4266,14 +4266,14 @@ Checking test 124 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 381.344214 - 0: The maximum resident set size (KB) = 1219068 + 0: The total amount of wall time = 381.519255 + 0: The maximum resident set size (KB) = 1223032 Test 124 hafs_regional_atm_ocn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm_wav -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/hafs_regional_atm_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/hafs_regional_atm_wav Checking test 125 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4282,14 +4282,14 @@ Checking test 125 hafs_regional_atm_wav results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 750.619819 - 0: The maximum resident set size (KB) = 1251692 + 0: The total amount of wall time = 744.239842 + 0: The maximum resident set size (KB) = 1254428 Test 125 hafs_regional_atm_wav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/hafs_regional_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/hafs_regional_atm_ocn_wav Checking test 126 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4300,28 +4300,28 @@ Checking test 126 hafs_regional_atm_ocn_wav 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.252388 - 0: The maximum resident set size (KB) = 1273820 + 0: The total amount of wall time = 850.827433 + 0: The maximum resident set size (KB) = 1296924 Test 126 hafs_regional_atm_ocn_wav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/hafs_regional_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/hafs_regional_1nest_atm Checking test 127 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 320.283000 - 0: The maximum resident set size (KB) = 499548 + 0: The total amount of wall time = 317.600628 + 0: The maximum resident set size (KB) = 506424 Test 127 hafs_regional_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/hafs_regional_telescopic_2nests_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/hafs_regional_telescopic_2nests_atm Checking test 128 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4330,28 +4330,28 @@ Checking test 128 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 372.292849 - 0: The maximum resident set size (KB) = 510100 + 0: The total amount of wall time = 366.063089 + 0: The maximum resident set size (KB) = 511596 Test 128 hafs_regional_telescopic_2nests_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_global_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/hafs_global_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/hafs_global_1nest_atm Checking test 129 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 151.624711 - 0: The maximum resident set size (KB) = 342672 + 0: The total amount of wall time = 147.569273 + 0: The maximum resident set size (KB) = 346468 Test 129 hafs_global_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_global_multiple_4nests_atm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/hafs_global_multiple_4nests_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/hafs_global_multiple_4nests_atm Checking test 130 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4369,14 +4369,14 @@ Checking test 130 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 415.939851 - 0: The maximum resident set size (KB) = 420416 + 0: The total amount of wall time = 416.988309 + 0: The maximum resident set size (KB) = 422808 Test 130 hafs_global_multiple_4nests_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/hafs_regional_specified_moving_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/hafs_regional_specified_moving_1nest_atm Checking test 131 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4385,28 +4385,28 @@ Checking test 131 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 206.098547 - 0: The maximum resident set size (KB) = 516820 + 0: The total amount of wall time = 204.479559 + 0: The maximum resident set size (KB) = 514944 Test 131 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/hafs_regional_storm_following_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/hafs_regional_storm_following_1nest_atm Checking test 132 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 193.667505 - 0: The maximum resident set size (KB) = 519772 + 0: The total amount of wall time = 191.433782 + 0: The maximum resident set size (KB) = 518924 Test 132 hafs_regional_storm_following_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/hafs_regional_storm_following_1nest_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/hafs_regional_storm_following_1nest_atm_ocn Checking test 133 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4415,42 +4415,42 @@ Checking test 133 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 225.537452 - 0: The maximum resident set size (KB) = 560596 + 0: The total amount of wall time = 226.943458 + 0: The maximum resident set size (KB) = 568348 Test 133 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_global_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/hafs_global_storm_following_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/hafs_global_storm_following_1nest_atm Checking test 134 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 59.170560 - 0: The maximum resident set size (KB) = 366092 + 0: The total amount of wall time = 61.245809 + 0: The maximum resident set size (KB) = 367972 Test 134 hafs_global_storm_following_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 696.704907 - 0: The maximum resident set size (KB) = 583856 + 0: The total amount of wall time = 699.276796 + 0: The maximum resident set size (KB) = 580516 Test 135 hafs_regional_storm_following_1nest_atm_ocn_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 136 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4461,14 +4461,14 @@ Checking test 136 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 484.385240 - 0: The maximum resident set size (KB) = 617536 + 0: The total amount of wall time = 485.668241 + 0: The maximum resident set size (KB) = 614204 Test 136 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_docn -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/hafs_regional_docn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/hafs_regional_docn Checking test 137 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4476,14 +4476,14 @@ Checking test 137 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 360.542270 - 0: The maximum resident set size (KB) = 1228972 + 0: The total amount of wall time = 359.661891 + 0: The maximum resident set size (KB) = 1228080 Test 137 hafs_regional_docn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_docn_oisst -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/hafs_regional_docn_oisst +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/hafs_regional_docn_oisst Checking test 138 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4491,131 +4491,131 @@ Checking test 138 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 369.123701 - 0: The maximum resident set size (KB) = 1218324 + 0: The total amount of wall time = 360.727019 + 0: The maximum resident set size (KB) = 1217052 Test 138 hafs_regional_docn_oisst PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_datm_cdeps -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/hafs_regional_datm_cdeps +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/hafs_regional_datm_cdeps Checking test 139 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 939.973876 - 0: The maximum resident set size (KB) = 1044716 + 0: The total amount of wall time = 956.926185 + 0: The maximum resident set size (KB) = 1041848 Test 139 hafs_regional_datm_cdeps PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/datm_cdeps_control_cfsr Checking test 140 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 157.145920 - 0: The maximum resident set size (KB) = 1056316 + 0: The total amount of wall time = 159.990943 + 0: The maximum resident set size (KB) = 1067788 Test 140 datm_cdeps_control_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/datm_cdeps_restart_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/datm_cdeps_restart_cfsr Checking test 141 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 92.965391 - 0: The maximum resident set size (KB) = 1037296 + 0: The total amount of wall time = 90.562493 + 0: The maximum resident set size (KB) = 1015136 Test 141 datm_cdeps_restart_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/datm_cdeps_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/datm_cdeps_control_gefs Checking test 142 datm_cdeps_control_gefs 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.796011 - 0: The maximum resident set size (KB) = 964856 + 0: The total amount of wall time = 155.518636 + 0: The maximum resident set size (KB) = 963356 Test 142 datm_cdeps_control_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_iau_gefs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/datm_cdeps_iau_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/datm_cdeps_iau_gefs Checking test 143 datm_cdeps_iau_gefs 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.272914 - 0: The maximum resident set size (KB) = 960940 + 0: The total amount of wall time = 156.205883 + 0: The maximum resident set size (KB) = 985776 Test 143 datm_cdeps_iau_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_stochy_gefs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/datm_cdeps_stochy_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/datm_cdeps_stochy_gefs Checking test 144 datm_cdeps_stochy_gefs 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 = 152.647661 - 0: The maximum resident set size (KB) = 963024 + 0: The total amount of wall time = 152.741466 + 0: The maximum resident set size (KB) = 966524 Test 144 datm_cdeps_stochy_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_ciceC_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/datm_cdeps_ciceC_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/datm_cdeps_ciceC_cfsr Checking test 145 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 155.135922 - 0: The maximum resident set size (KB) = 1061404 + 0: The total amount of wall time = 152.236268 + 0: The maximum resident set size (KB) = 1054804 Test 145 datm_cdeps_ciceC_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/datm_cdeps_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/datm_cdeps_bulk_cfsr Checking test 146 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 153.674676 - 0: The maximum resident set size (KB) = 1056440 + 0: The total amount of wall time = 156.334722 + 0: The maximum resident set size (KB) = 1072472 Test 146 datm_cdeps_bulk_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/datm_cdeps_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/datm_cdeps_bulk_gefs Checking test 147 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.598509 - 0: The maximum resident set size (KB) = 964344 + 0: The total amount of wall time = 148.858996 + 0: The maximum resident set size (KB) = 965468 Test 147 datm_cdeps_bulk_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/datm_cdeps_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/datm_cdeps_mx025_cfsr Checking test 148 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4624,14 +4624,14 @@ Checking test 148 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 413.174837 - 0: The maximum resident set size (KB) = 879748 + 0: The total amount of wall time = 454.761229 + 0: The maximum resident set size (KB) = 879920 Test 148 datm_cdeps_mx025_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/datm_cdeps_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/datm_cdeps_mx025_gefs Checking test 149 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4640,77 +4640,77 @@ Checking test 149 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 443.646733 - 0: The maximum resident set size (KB) = 930548 + 0: The total amount of wall time = 405.970647 + 0: The maximum resident set size (KB) = 935500 Test 149 datm_cdeps_mx025_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/datm_cdeps_multiple_files_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/datm_cdeps_multiple_files_cfsr Checking test 150 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 155.504333 - 0: The maximum resident set size (KB) = 1081332 + 0: The total amount of wall time = 154.723749 + 0: The maximum resident set size (KB) = 1070536 Test 150 datm_cdeps_multiple_files_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/datm_cdeps_3072x1536_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/datm_cdeps_3072x1536_cfsr Checking test 151 datm_cdeps_3072x1536_cfsr 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 = 230.930199 - 0: The maximum resident set size (KB) = 2353676 + 0: The total amount of wall time = 220.828151 + 0: The maximum resident set size (KB) = 2358140 Test 151 datm_cdeps_3072x1536_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_gfs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/datm_cdeps_gfs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/datm_cdeps_gfs Checking test 152 datm_cdeps_gfs 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 = 228.331816 - 0: The maximum resident set size (KB) = 2370752 + 0: The total amount of wall time = 222.139467 + 0: The maximum resident set size (KB) = 2378300 Test 152 datm_cdeps_gfs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/datm_cdeps_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/datm_cdeps_debug_cfsr Checking test 153 datm_cdeps_debug_cfsr results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 353.184794 - 0: The maximum resident set size (KB) = 970916 + 0: The total amount of wall time = 343.912246 + 0: The maximum resident set size (KB) = 1002108 Test 153 datm_cdeps_debug_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_control_cfsr_faster -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/datm_cdeps_control_cfsr_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/datm_cdeps_control_cfsr_faster Checking test 154 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 153.242796 - 0: The maximum resident set size (KB) = 1068364 + 0: The total amount of wall time = 151.828832 + 0: The maximum resident set size (KB) = 1053688 Test 154 datm_cdeps_control_cfsr_faster PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/datm_cdeps_lnd_gswp3 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/datm_cdeps_lnd_gswp3 Checking test 155 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4719,14 +4719,14 @@ Checking test 155 datm_cdeps_lnd_gswp3 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.502238 - 0: The maximum resident set size (KB) = 258556 + 0: The total amount of wall time = 6.913405 + 0: The maximum resident set size (KB) = 264552 Test 155 datm_cdeps_lnd_gswp3 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/datm_cdeps_lnd_gswp3_rst +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/datm_cdeps_lnd_gswp3_rst Checking test 156 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4735,14 +4735,14 @@ Checking test 156 datm_cdeps_lnd_gswp3_rst 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 = 14.832380 - 0: The maximum resident set size (KB) = 256352 + 0: The total amount of wall time = 15.006843 + 0: The maximum resident set size (KB) = 264688 Test 156 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8_atmlnd_sbs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_p8_atmlnd_sbs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_p8_atmlnd_sbs Checking test 157 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4827,14 +4827,14 @@ Checking test 157 control_p8_atmlnd_sbs 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 = 206.793161 - 0: The maximum resident set size (KB) = 1614828 + 0: The total amount of wall time = 211.725980 + 0: The maximum resident set size (KB) = 1602920 Test 157 control_p8_atmlnd_sbs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/atmwav_control_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/atmwav_control_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/atmwav_control_noaero_p8 Checking test 158 atmwav_control_noaero_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4877,14 +4877,14 @@ Checking test 158 atmwav_control_noaero_p8 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 = 95.452581 - 0: The maximum resident set size (KB) = 1628976 + 0: The total amount of wall time = 97.600929 + 0: The maximum resident set size (KB) = 1626460 Test 158 atmwav_control_noaero_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_atmwav -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/control_atmwav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_atmwav Checking test 159 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4928,14 +4928,14 @@ Checking test 159 control_atmwav 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.860521 - 0: The maximum resident set size (KB) = 661988 + 0: The total amount of wall time = 87.674124 + 0: The maximum resident set size (KB) = 657656 Test 159 control_atmwav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/atmaero_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/atmaero_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/atmaero_control_p8 Checking test 160 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4979,14 +4979,14 @@ Checking test 160 atmaero_control_p8 results .... Comparing 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.601520 - 0: The maximum resident set size (KB) = 2958552 + 0: The total amount of wall time = 234.858158 + 0: The maximum resident set size (KB) = 2957700 Test 160 atmaero_control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/atmaero_control_p8_rad -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/atmaero_control_p8_rad +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/atmaero_control_p8_rad Checking test 161 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5030,14 +5030,14 @@ Checking test 161 atmaero_control_p8_rad results .... Comparing 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.793675 - 0: The maximum resident set size (KB) = 3048504 + 0: The total amount of wall time = 285.767511 + 0: The maximum resident set size (KB) = 3042524 Test 161 atmaero_control_p8_rad PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/atmaero_control_p8_rad_micro -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/atmaero_control_p8_rad_micro +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/atmaero_control_p8_rad_micro Checking test 162 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5081,14 +5081,14 @@ Checking test 162 atmaero_control_p8_rad_micro results .... Comparing 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.907156 - 0: The maximum resident set size (KB) = 3051668 + 0: The total amount of wall time = 291.834444 + 0: The maximum resident set size (KB) = 3049700 Test 162 atmaero_control_p8_rad_micro PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_atmaq -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/regional_atmaq +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/regional_atmaq Checking test 163 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5104,14 +5104,14 @@ Checking test 163 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 651.062873 - 0: The maximum resident set size (KB) = 1429812 + 0: The total amount of wall time = 653.319830 + 0: The maximum resident set size (KB) = 1444244 Test 163 regional_atmaq PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_atmaq_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/regional_atmaq_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/regional_atmaq_debug Checking test 164 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5125,14 +5125,14 @@ Checking test 164 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1196.892447 - 0: The maximum resident set size (KB) = 1385564 + 0: The total amount of wall time = 1202.296664 + 0: The maximum resident set size (KB) = 1380568 Test 164 regional_atmaq_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_atmaq_faster -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_14893/regional_atmaq_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/regional_atmaq_faster Checking test 165 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5148,12 +5148,12 @@ Checking test 165 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 567.430825 - 0: The maximum resident set size (KB) = 1459420 + 0: The total amount of wall time = 565.035102 + 0: The maximum resident set size (KB) = 1467608 Test 165 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Fri Apr 14 09:28:20 UTC 2023 -Elapsed time: 07h:01m:56s. Have a nice day! +Sat Apr 15 01:50:42 UTC 2023 +Elapsed time: 01h:46m:55s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index e3defdf3a0e..500c2d7d386 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,43 +1,43 @@ -Fri Apr 14 12:11:54 UTC 2023 +Sat Apr 15 00:08:47 UTC 2023 Start Regression test -Compile 001 elapsed time 1912 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 002 elapsed time 2012 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 003 elapsed time 1842 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 004 elapsed time 304 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 283 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 1711 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 007 elapsed time 1701 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 008 elapsed time 3326 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 009 elapsed time 1793 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 010 elapsed time 1694 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 011 elapsed time 1700 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 012 elapsed time 1546 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 013 elapsed time 2023 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 014 elapsed time 281 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 227 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 1570 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 017 elapsed time 1610 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 018 elapsed time 237 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 208 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 1683 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 021 elapsed time 249 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 2158 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 023 elapsed time 1671 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 024 elapsed time 277 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 025 elapsed time 144 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 265 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 027 elapsed time 104 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 028 elapsed time 1689 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 029 elapsed time 1650 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 030 elapsed time 1639 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 031 elapsed time 1574 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 032 elapsed time 1558 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 033 elapsed time 221 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 034 elapsed time 1876 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 001 elapsed time 1976 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 002 elapsed time 1971 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 003 elapsed time 1844 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 004 elapsed time 292 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 265 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 1689 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 007 elapsed time 1695 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 008 elapsed time 3315 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 009 elapsed time 1814 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 010 elapsed time 1702 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 011 elapsed time 1689 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 012 elapsed time 1560 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 013 elapsed time 1974 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 014 elapsed time 265 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 218 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 1579 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 017 elapsed time 1664 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 018 elapsed time 217 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 205 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 1666 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 021 elapsed time 241 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 2067 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 023 elapsed time 1622 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 024 elapsed time 268 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 025 elapsed time 142 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 284 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 027 elapsed time 79 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 028 elapsed time 1701 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 029 elapsed time 1645 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 030 elapsed time 1641 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 031 elapsed time 1610 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 032 elapsed time 1590 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 033 elapsed time 236 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 034 elapsed time 1823 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8_mixedmode -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/cpld_control_p8_mixedmode +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -102,14 +102,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 405.468786 - 0: The maximum resident set size (KB) = 1755760 + 0: The total amount of wall time = 401.650984 + 0: The maximum resident set size (KB) = 1750732 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_gfsv17 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/cpld_control_gfsv17 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -173,14 +173,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 299.469959 - 0: The maximum resident set size (KB) = 1638476 + 0: The total amount of wall time = 297.795320 + 0: The maximum resident set size (KB) = 1638984 Test 002 cpld_control_gfsv17 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/cpld_control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -245,14 +245,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 459.413422 - 0: The maximum resident set size (KB) = 1776484 + 0: The total amount of wall time = 457.769848 + 0: The maximum resident set size (KB) = 1802428 Test 003 cpld_control_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/cpld_restart_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -305,14 +305,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 260.296463 - 0: The maximum resident set size (KB) = 1490316 + 0: The total amount of wall time = 253.776356 + 0: The maximum resident set size (KB) = 1493040 Test 004 cpld_restart_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/cpld_control_qr_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -377,14 +377,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 452.912666 - 0: The maximum resident set size (KB) = 1816216 + 0: The total amount of wall time = 454.433805 + 0: The maximum resident set size (KB) = 1811552 Test 005 cpld_control_qr_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/cpld_restart_qr_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -437,14 +437,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 266.730880 - 0: The maximum resident set size (KB) = 1521900 + 0: The total amount of wall time = 257.877443 + 0: The maximum resident set size (KB) = 1512728 Test 006 cpld_restart_qr_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/cpld_2threads_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -497,14 +497,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 477.547022 - 0: The maximum resident set size (KB) = 1995268 + 0: The total amount of wall time = 474.245052 + 0: The maximum resident set size (KB) = 1975920 Test 007 cpld_2threads_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/cpld_decomp_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -557,14 +557,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 456.154474 - 0: The maximum resident set size (KB) = 1797756 + 0: The total amount of wall time = 455.772943 + 0: The maximum resident set size (KB) = 1769208 Test 008 cpld_decomp_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/cpld_mpi_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -617,14 +617,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 384.908843 - 0: The maximum resident set size (KB) = 1729140 + 0: The total amount of wall time = 381.285765 + 0: The maximum resident set size (KB) = 1747944 Test 009 cpld_mpi_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_ciceC_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/cpld_control_ciceC_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -689,14 +689,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 453.030848 - 0: The maximum resident set size (KB) = 1802208 + 0: The total amount of wall time = 456.886840 + 0: The maximum resident set size (KB) = 1800004 Test 010 cpld_control_ciceC_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_noaero_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/cpld_control_noaero_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/cpld_control_noaero_p8 Checking test 011 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -760,14 +760,14 @@ Checking test 011 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 344.114858 - 0: The maximum resident set size (KB) = 1617224 + 0: The total amount of wall time = 341.505406 + 0: The maximum resident set size (KB) = 1632888 Test 011 cpld_control_noaero_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/cpld_control_nowave_noaero_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/cpld_control_nowave_noaero_p8 Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -829,14 +829,14 @@ Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 346.710524 - 0: The maximum resident set size (KB) = 1674664 + 0: The total amount of wall time = 346.525070 + 0: The maximum resident set size (KB) = 1678908 Test 012 cpld_control_nowave_noaero_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_debug_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/cpld_debug_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/cpld_debug_p8 Checking test 013 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -889,14 +889,14 @@ Checking test 013 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 680.418989 - 0: The maximum resident set size (KB) = 1823880 + 0: The total amount of wall time = 675.616409 + 0: The maximum resident set size (KB) = 1820872 Test 013 cpld_debug_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_debug_noaero_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/cpld_debug_noaero_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/cpld_debug_noaero_p8 Checking test 014 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -948,14 +948,14 @@ Checking test 014 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 473.512864 - 0: The maximum resident set size (KB) = 1633868 + 0: The total amount of wall time = 468.913596 + 0: The maximum resident set size (KB) = 1639388 Test 014 cpld_debug_noaero_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/cpld_control_noaero_p8_agrid +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/cpld_control_noaero_p8_agrid Checking test 015 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1017,14 +1017,14 @@ Checking test 015 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 363.338188 - 0: The maximum resident set size (KB) = 1687976 + 0: The total amount of wall time = 368.144491 + 0: The maximum resident set size (KB) = 1689884 Test 015 cpld_control_noaero_p8_agrid PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_c48 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/cpld_control_c48 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/cpld_control_c48 Checking test 016 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1074,14 +1074,14 @@ Checking test 016 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 795.306407 - 0: The maximum resident set size (KB) = 2781516 + 0: The total amount of wall time = 796.878991 + 0: The maximum resident set size (KB) = 2775608 Test 016 cpld_control_c48 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_warmstart_c48 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/cpld_warmstart_c48 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/cpld_warmstart_c48 Checking test 017 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1131,14 +1131,14 @@ Checking test 017 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 211.269787 - 0: The maximum resident set size (KB) = 2769040 + 0: The total amount of wall time = 212.023127 + 0: The maximum resident set size (KB) = 2775000 Test 017 cpld_warmstart_c48 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_warmstart_c48 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/cpld_restart_c48 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/cpld_restart_c48 Checking test 018 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1188,14 +1188,14 @@ Checking test 018 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 112.359935 - 0: The maximum resident set size (KB) = 2202280 + 0: The total amount of wall time = 111.613020 + 0: The maximum resident set size (KB) = 2203784 Test 018 cpld_restart_c48 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8_faster -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/cpld_control_p8_faster +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/cpld_control_p8_faster Checking test 019 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1260,14 +1260,14 @@ Checking test 019 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 429.890638 - 0: The maximum resident set size (KB) = 1780712 + 0: The total amount of wall time = 431.078921 + 0: The maximum resident set size (KB) = 1777724 Test 019 cpld_control_p8_faster PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_CubedSphereGrid -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_CubedSphereGrid +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_CubedSphereGrid Checking test 020 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1294,28 +1294,28 @@ Checking test 020 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 182.588851 - 0: The maximum resident set size (KB) = 570340 + 0: The total amount of wall time = 181.575185 + 0: The maximum resident set size (KB) = 571292 Test 020 control_CubedSphereGrid PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_CubedSphereGrid_parallel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_CubedSphereGrid_parallel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_CubedSphereGrid_parallel Checking test 021 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing atmf024.nc .........OK - 0: The total amount of wall time = 180.902767 - 0: The maximum resident set size (KB) = 569936 + 0: The total amount of wall time = 180.367169 + 0: The maximum resident set size (KB) = 574620 Test 021 control_CubedSphereGrid_parallel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_latlon -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_latlon +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_latlon Checking test 022 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1326,32 +1326,32 @@ Checking test 022 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 186.390912 - 0: The maximum resident set size (KB) = 575196 + 0: The total amount of wall time = 184.326140 + 0: The maximum resident set size (KB) = 574028 Test 022 control_latlon PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_wrtGauss_netcdf_parallel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_wrtGauss_netcdf_parallel Checking test 023 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK - Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 194.409525 - 0: The maximum resident set size (KB) = 569040 + 0: The total amount of wall time = 189.496789 + 0: The maximum resident set size (KB) = 573716 Test 023 control_wrtGauss_netcdf_parallel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_c48 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_c48 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_c48 Checking test 024 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1390,14 +1390,14 @@ Checking test 024 control_c48 results .... Comparing 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.539514 -0: The maximum resident set size (KB) = 798244 +0: The total amount of wall time = 595.686008 +0: The maximum resident set size (KB) = 798388 Test 024 control_c48 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_c192 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_c192 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_c192 Checking test 025 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1408,14 +1408,14 @@ Checking test 025 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 733.071241 - 0: The maximum resident set size (KB) = 689240 + 0: The total amount of wall time = 732.801376 + 0: The maximum resident set size (KB) = 690108 Test 025 control_c192 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_c384 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_c384 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_c384 Checking test 026 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1426,14 +1426,14 @@ Checking test 026 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 938.596007 - 0: The maximum resident set size (KB) = 1059096 + 0: The total amount of wall time = 934.943145 + 0: The maximum resident set size (KB) = 1064516 Test 026 control_c384 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_c384gdas -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_c384gdas +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_c384gdas Checking test 027 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1476,14 +1476,14 @@ Checking test 027 control_c384gdas 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 = 806.458165 - 0: The maximum resident set size (KB) = 1199064 + 0: The total amount of wall time = 801.635133 + 0: The maximum resident set size (KB) = 1198996 Test 027 control_c384gdas PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_stochy -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_stochy +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_stochy Checking test 028 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1494,28 +1494,28 @@ Checking test 028 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 123.690841 - 0: The maximum resident set size (KB) = 575912 + 0: The total amount of wall time = 122.983864 + 0: The maximum resident set size (KB) = 578696 Test 028 control_stochy PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_stochy -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_stochy_restart +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_stochy_restart Checking test 029 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 69.123844 - 0: The maximum resident set size (KB) = 391076 + 0: The total amount of wall time = 67.684106 + 0: The maximum resident set size (KB) = 390072 Test 029 control_stochy_restart PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_lndp -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_lndp +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_lndp Checking test 030 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1526,14 +1526,14 @@ Checking test 030 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 114.391555 - 0: The maximum resident set size (KB) = 573048 + 0: The total amount of wall time = 114.207624 + 0: The maximum resident set size (KB) = 574304 Test 030 control_lndp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_iovr4 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_iovr4 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_iovr4 Checking test 031 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1548,14 +1548,14 @@ Checking test 031 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 192.319088 - 0: The maximum resident set size (KB) = 572756 + 0: The total amount of wall time = 190.331318 + 0: The maximum resident set size (KB) = 573960 Test 031 control_iovr4 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_iovr5 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_iovr5 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_iovr5 Checking test 032 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1570,14 +1570,14 @@ Checking test 032 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 191.515368 - 0: The maximum resident set size (KB) = 572148 + 0: The total amount of wall time = 190.729086 + 0: The maximum resident set size (KB) = 572120 Test 032 control_iovr5 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_p8 Checking test 033 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1624,14 +1624,14 @@ Checking test 033 control_p8 results .... Comparing 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.175186 - 0: The maximum resident set size (KB) = 1549076 + 0: The total amount of wall time = 236.880903 + 0: The maximum resident set size (KB) = 1550996 Test 033 control_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_restart_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_restart_p8 Checking test 034 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1670,14 +1670,14 @@ Checking test 034 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 119.207904 - 0: The maximum resident set size (KB) = 778908 + 0: The total amount of wall time = 118.492008 + 0: The maximum resident set size (KB) = 772644 Test 034 control_restart_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_qr_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_qr_p8 Checking test 035 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1724,14 +1724,14 @@ Checking test 035 control_qr_p8 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 = 232.015948 - 0: The maximum resident set size (KB) = 1553828 + 0: The total amount of wall time = 227.698586 + 0: The maximum resident set size (KB) = 1544268 Test 035 control_qr_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_restart_qr_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_restart_qr_p8 Checking test 036 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1770,14 +1770,14 @@ Checking test 036 control_restart_qr_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 122.694696 - 0: The maximum resident set size (KB) = 778116 + 0: The total amount of wall time = 120.024762 + 0: The maximum resident set size (KB) = 790404 Test 036 control_restart_qr_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_decomp_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_decomp_p8 Checking test 037 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1820,14 +1820,14 @@ Checking test 037 control_decomp_p8 results .... Comparing 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.167871 - 0: The maximum resident set size (KB) = 1541212 + 0: The total amount of wall time = 241.389709 + 0: The maximum resident set size (KB) = 1528164 Test 037 control_decomp_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_2threads_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_2threads_p8 Checking test 038 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1870,14 +1870,14 @@ Checking test 038 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 219.406599 - 0: The maximum resident set size (KB) = 1627740 + 0: The total amount of wall time = 212.089454 + 0: The maximum resident set size (KB) = 1625792 Test 038 control_2threads_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8_lndp -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_p8_lndp +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_p8_lndp Checking test 039 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1896,14 +1896,14 @@ Checking test 039 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 433.614048 - 0: The maximum resident set size (KB) = 1538728 + 0: The total amount of wall time = 422.231149 + 0: The maximum resident set size (KB) = 1557240 Test 039 control_p8_lndp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8_rrtmgp -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_p8_rrtmgp +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_p8_rrtmgp Checking test 040 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1950,14 +1950,14 @@ Checking test 040 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 309.143838 - 0: The maximum resident set size (KB) = 1616396 + 0: The total amount of wall time = 305.885618 + 0: The maximum resident set size (KB) = 1625624 Test 040 control_p8_rrtmgp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8_mynn -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_p8_mynn +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_p8_mynn Checking test 041 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2004,14 +2004,14 @@ Checking test 041 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 238.187812 - 0: The maximum resident set size (KB) = 1553880 + 0: The total amount of wall time = 229.244846 + 0: The maximum resident set size (KB) = 1553984 Test 041 control_p8_mynn PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/merra2_thompson -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/merra2_thompson +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/merra2_thompson Checking test 042 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2058,14 +2058,14 @@ Checking test 042 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 259.791490 - 0: The maximum resident set size (KB) = 1557596 + 0: The total amount of wall time = 259.391544 + 0: The maximum resident set size (KB) = 1560448 Test 042 merra2_thompson PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/regional_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/regional_control Checking test 043 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2076,28 +2076,28 @@ Checking test 043 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 410.564509 - 0: The maximum resident set size (KB) = 782808 + 0: The total amount of wall time = 402.905094 + 0: The maximum resident set size (KB) = 785840 Test 043 regional_control PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/regional_restart +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/regional_restart Checking test 044 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 204.715087 - 0: The maximum resident set size (KB) = 781256 + 0: The total amount of wall time = 209.944168 + 0: The maximum resident set size (KB) = 781768 Test 044 regional_restart PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/regional_control_qr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/regional_control_qr Checking test 045 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2108,28 +2108,28 @@ Checking test 045 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 405.218811 - 0: The maximum resident set size (KB) = 786236 + 0: The total amount of wall time = 405.958981 + 0: The maximum resident set size (KB) = 788524 Test 045 regional_control_qr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/regional_restart_qr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/regional_restart_qr Checking test 046 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 206.530220 - 0: The maximum resident set size (KB) = 776288 + 0: The total amount of wall time = 205.155402 + 0: The maximum resident set size (KB) = 778976 Test 046 regional_restart_qr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/regional_decomp +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/regional_decomp Checking test 047 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2140,14 +2140,14 @@ Checking test 047 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 425.624790 - 0: The maximum resident set size (KB) = 779244 + 0: The total amount of wall time = 419.968968 + 0: The maximum resident set size (KB) = 780316 Test 047 regional_decomp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/regional_2threads +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/regional_2threads Checking test 048 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2158,28 +2158,28 @@ Checking test 048 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 252.972810 - 0: The maximum resident set size (KB) = 766960 + 0: The total amount of wall time = 247.233681 + 0: The maximum resident set size (KB) = 775272 Test 048 regional_2threads PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/regional_netcdf_parallel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/regional_netcdf_parallel Checking test 049 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing phyf006.nc .........OK - 0: The total amount of wall time = 401.892189 - 0: The maximum resident set size (KB) = 781416 + 0: The total amount of wall time = 396.881112 + 0: The maximum resident set size (KB) = 784504 Test 049 regional_netcdf_parallel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/regional_2dwrtdecomp +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/regional_2dwrtdecomp Checking test 050 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2190,14 +2190,14 @@ Checking test 050 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 400.802083 - 0: The maximum resident set size (KB) = 789768 + 0: The total amount of wall time = 406.971990 + 0: The maximum resident set size (KB) = 784820 Test 050 regional_2dwrtdecomp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/rap_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/rap_control Checking test 051 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2244,14 +2244,14 @@ Checking test 051 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 600.179705 - 0: The maximum resident set size (KB) = 955468 + 0: The total amount of wall time = 606.179905 + 0: The maximum resident set size (KB) = 942476 Test 051 rap_control PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/regional_spp_sppt_shum_skeb +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/regional_spp_sppt_shum_skeb Checking test 052 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2262,14 +2262,14 @@ Checking test 052 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 318.983872 - 0: The maximum resident set size (KB) = 1093880 + 0: The total amount of wall time = 325.207291 + 0: The maximum resident set size (KB) = 1093100 Test 052 regional_spp_sppt_shum_skeb PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/rap_decomp +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/rap_decomp Checking test 053 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2316,14 +2316,14 @@ Checking test 053 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 644.093075 - 0: The maximum resident set size (KB) = 947456 + 0: The total amount of wall time = 638.883844 + 0: The maximum resident set size (KB) = 947192 Test 053 rap_decomp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/rap_2threads +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/rap_2threads Checking test 054 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2370,14 +2370,14 @@ Checking test 054 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 585.384765 - 0: The maximum resident set size (KB) = 1029508 + 0: The total amount of wall time = 579.587478 + 0: The maximum resident set size (KB) = 1025036 Test 054 rap_2threads PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/rap_restart +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/rap_restart Checking test 055 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2416,14 +2416,14 @@ Checking test 055 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 305.880194 - 0: The maximum resident set size (KB) = 835688 + 0: The total amount of wall time = 302.586375 + 0: The maximum resident set size (KB) = 835628 Test 055 rap_restart PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/rap_sfcdiff +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/rap_sfcdiff Checking test 056 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2470,14 +2470,14 @@ Checking test 056 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 608.233507 - 0: The maximum resident set size (KB) = 943652 + 0: The total amount of wall time = 612.929771 + 0: The maximum resident set size (KB) = 952944 Test 056 rap_sfcdiff PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/rap_sfcdiff_decomp +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/rap_sfcdiff_decomp Checking test 057 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2524,14 +2524,14 @@ Checking test 057 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 649.630760 - 0: The maximum resident set size (KB) = 954620 + 0: The total amount of wall time = 649.854832 + 0: The maximum resident set size (KB) = 947936 Test 057 rap_sfcdiff_decomp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/rap_sfcdiff_restart +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/rap_sfcdiff_restart Checking test 058 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2570,14 +2570,14 @@ Checking test 058 rap_sfcdiff_restart results .... Comparing 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.938700 - 0: The maximum resident set size (KB) = 844040 + 0: The total amount of wall time = 445.268296 + 0: The maximum resident set size (KB) = 845776 Test 058 rap_sfcdiff_restart PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/hrrr_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/hrrr_control Checking test 059 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2624,14 +2624,14 @@ Checking test 059 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 588.235231 - 0: The maximum resident set size (KB) = 952140 + 0: The total amount of wall time = 592.755803 + 0: The maximum resident set size (KB) = 961608 Test 059 hrrr_control PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/hrrr_control_decomp +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/hrrr_control_decomp Checking test 060 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2678,14 +2678,14 @@ Checking test 060 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 619.688147 - 0: The maximum resident set size (KB) = 949928 + 0: The total amount of wall time = 615.764966 + 0: The maximum resident set size (KB) = 945164 Test 060 hrrr_control_decomp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/hrrr_control_2threads +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/hrrr_control_2threads Checking test 061 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2732,14 +2732,14 @@ Checking test 061 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 561.855761 - 0: The maximum resident set size (KB) = 1022552 + 0: The total amount of wall time = 565.594662 + 0: The maximum resident set size (KB) = 1025176 Test 061 hrrr_control_2threads PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/hrrr_control_restart +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/hrrr_control_restart Checking test 062 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2778,14 +2778,14 @@ Checking test 062 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 429.894246 - 0: The maximum resident set size (KB) = 837532 + 0: The total amount of wall time = 434.060671 + 0: The maximum resident set size (KB) = 836204 Test 062 hrrr_control_restart PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_v1beta -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/rrfs_v1beta +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/rrfs_v1beta Checking test 063 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2832,14 +2832,14 @@ Checking test 063 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 608.657612 - 0: The maximum resident set size (KB) = 948876 + 0: The total amount of wall time = 606.642801 + 0: The maximum resident set size (KB) = 953600 Test 063 rrfs_v1beta PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_v1nssl -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/rrfs_v1nssl +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/rrfs_v1nssl Checking test 064 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2854,14 +2854,14 @@ Checking test 064 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 730.426550 - 0: The maximum resident set size (KB) = 638760 + 0: The total amount of wall time = 727.127533 + 0: The maximum resident set size (KB) = 634456 Test 064 rrfs_v1nssl PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/rrfs_v1nssl_nohailnoccn +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/rrfs_v1nssl_nohailnoccn Checking test 065 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2876,14 +2876,14 @@ Checking test 065 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 718.502832 - 0: The maximum resident set size (KB) = 634960 + 0: The total amount of wall time = 723.370791 + 0: The maximum resident set size (KB) = 634088 Test 065 rrfs_v1nssl_nohailnoccn PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/rrfs_smoke_conus13km_hrrr_warm Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2892,14 +2892,14 @@ Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 200.838913 - 0: The maximum resident set size (KB) = 897836 + 0: The total amount of wall time = 198.509683 + 0: The maximum resident set size (KB) = 904472 Test 066 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/rrfs_smoke_conus13km_hrrr_warm_2threads +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 067 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2908,14 +2908,14 @@ Checking test 067 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 128.747844 - 0: The maximum resident set size (KB) = 866792 + 0: The total amount of wall time = 127.650418 + 0: The maximum resident set size (KB) = 865808 Test 067 rrfs_smoke_conus13km_hrrr_warm_2threads PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/rrfs_conus13km_hrrr_warm +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/rrfs_conus13km_hrrr_warm Checking test 068 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2924,14 +2924,14 @@ Checking test 068 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 176.673975 - 0: The maximum resident set size (KB) = 865764 + 0: The total amount of wall time = 177.049585 + 0: The maximum resident set size (KB) = 869816 Test 068 rrfs_conus13km_hrrr_warm PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/rrfs_smoke_conus13km_radar_tten_warm +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/rrfs_smoke_conus13km_radar_tten_warm Checking test 069 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2940,26 +2940,26 @@ Checking test 069 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 201.145104 - 0: The maximum resident set size (KB) = 911864 + 0: The total amount of wall time = 201.554724 + 0: The maximum resident set size (KB) = 909928 Test 069 rrfs_smoke_conus13km_radar_tten_warm PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 070 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 97.733234 - 0: The maximum resident set size (KB) = 846080 + 0: The total amount of wall time = 100.054185 + 0: The maximum resident set size (KB) = 848792 Test 070 rrfs_conus13km_hrrr_warm_restart_mismatch PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_csawmg -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_csawmg +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_csawmg Checking test 071 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2970,14 +2970,14 @@ Checking test 071 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 462.694880 - 0: The maximum resident set size (KB) = 675664 + 0: The total amount of wall time = 467.607592 + 0: The maximum resident set size (KB) = 675148 Test 071 control_csawmg PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_csawmgt -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_csawmgt +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_csawmgt Checking test 072 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2988,14 +2988,14 @@ Checking test 072 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 456.363240 - 0: The maximum resident set size (KB) = 668580 + 0: The total amount of wall time = 457.350199 + 0: The maximum resident set size (KB) = 668604 Test 072 control_csawmgt PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_ras -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_ras +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_ras Checking test 073 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3006,26 +3006,26 @@ Checking test 073 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 247.683632 - 0: The maximum resident set size (KB) = 641064 + 0: The total amount of wall time = 246.500395 + 0: The maximum resident set size (KB) = 635344 Test 073 control_ras PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_wam -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_wam +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_wam Checking test 074 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 154.047507 - 0: The maximum resident set size (KB) = 483616 + 0: The total amount of wall time = 149.931921 + 0: The maximum resident set size (KB) = 478908 Test 074 control_wam PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8_faster -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_p8_faster +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_p8_faster Checking test 075 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3072,14 +3072,14 @@ Checking test 075 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 212.597063 - 0: The maximum resident set size (KB) = 1554372 + 0: The total amount of wall time = 212.223518 + 0: The maximum resident set size (KB) = 1538952 Test 075 control_p8_faster PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control_faster -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/regional_control_faster +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/regional_control_faster Checking test 076 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3090,56 +3090,56 @@ Checking test 076 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 377.519121 - 0: The maximum resident set size (KB) = 790896 + 0: The total amount of wall time = 376.510887 + 0: The maximum resident set size (KB) = 793592 Test 076 regional_control_faster PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 077 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 1086.492201 - 0: The maximum resident set size (KB) = 937312 + 0: The total amount of wall time = 1081.602503 + 0: The maximum resident set size (KB) = 937816 Test 077 rrfs_smoke_conus13km_hrrr_warm_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 078 rrfs_smoke_conus13km_hrrr_warm_debug_2threads 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.756635 - 0: The maximum resident set size (KB) = 898548 + 0: The total amount of wall time = 625.623280 + 0: The maximum resident set size (KB) = 885956 Test 078 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/rrfs_conus13km_hrrr_warm_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/rrfs_conus13km_hrrr_warm_debug Checking test 079 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 971.429886 - 0: The maximum resident set size (KB) = 898220 + 0: The total amount of wall time = 963.560753 + 0: The maximum resident set size (KB) = 890444 Test 079 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_CubedSphereGrid_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_CubedSphereGrid_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_CubedSphereGrid_debug Checking test 080 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3166,334 +3166,334 @@ Checking test 080 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 185.638112 - 0: The maximum resident set size (KB) = 734020 + 0: The total amount of wall time = 185.794982 + 0: The maximum resident set size (KB) = 730508 Test 080 control_CubedSphereGrid_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_wrtGauss_netcdf_parallel_debug Checking test 081 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc ............ALT CHECK......OK + Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 188.390225 - 0: The maximum resident set size (KB) = 732472 + 0: The total amount of wall time = 186.973143 + 0: The maximum resident set size (KB) = 731540 Test 081 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_stochy_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_stochy_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_stochy_debug Checking test 082 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 212.372778 - 0: The maximum resident set size (KB) = 738136 + 0: The total amount of wall time = 210.352121 + 0: The maximum resident set size (KB) = 738092 Test 082 control_stochy_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_lndp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_lndp_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_lndp_debug Checking test 083 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 189.747320 - 0: The maximum resident set size (KB) = 734816 + 0: The total amount of wall time = 192.829625 + 0: The maximum resident set size (KB) = 740288 Test 083 control_lndp_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_csawmg_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_csawmg_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_csawmg_debug Checking test 084 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 301.623930 - 0: The maximum resident set size (KB) = 782808 + 0: The total amount of wall time = 297.822793 + 0: The maximum resident set size (KB) = 785256 Test 084 control_csawmg_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_csawmgt_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_csawmgt_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_csawmgt_debug Checking test 085 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 294.687494 - 0: The maximum resident set size (KB) = 786044 + 0: The total amount of wall time = 292.515402 + 0: The maximum resident set size (KB) = 783716 Test 085 control_csawmgt_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_ras_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_ras_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_ras_debug Checking test 086 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 195.956500 - 0: The maximum resident set size (KB) = 744968 + 0: The total amount of wall time = 191.091189 + 0: The maximum resident set size (KB) = 746248 Test 086 control_ras_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_diag_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_diag_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_diag_debug Checking test 087 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 205.464159 - 0: The maximum resident set size (KB) = 786304 + 0: The total amount of wall time = 192.612385 + 0: The maximum resident set size (KB) = 790596 Test 087 control_diag_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_debug_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_debug_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_debug_p8 Checking test 088 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 216.680281 - 0: The maximum resident set size (KB) = 1567396 + 0: The total amount of wall time = 211.483202 + 0: The maximum resident set size (KB) = 1568076 Test 088 control_debug_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/regional_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/regional_debug Checking test 089 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1278.612711 - 0: The maximum resident set size (KB) = 802208 + 0: The total amount of wall time = 1271.300749 + 0: The maximum resident set size (KB) = 802688 Test 089 regional_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/rap_control_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/rap_control_debug Checking test 090 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 354.097487 - 0: The maximum resident set size (KB) = 1116992 + 0: The total amount of wall time = 344.336014 + 0: The maximum resident set size (KB) = 1116376 Test 090 rap_control_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/hrrr_control_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/hrrr_control_debug Checking test 091 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 344.065763 - 0: The maximum resident set size (KB) = 1110976 + 0: The total amount of wall time = 339.375751 + 0: The maximum resident set size (KB) = 1115112 Test 091 hrrr_control_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/rap_unified_drag_suite_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/rap_unified_drag_suite_debug Checking test 092 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 348.603832 - 0: The maximum resident set size (KB) = 1116800 + 0: The total amount of wall time = 346.578983 + 0: The maximum resident set size (KB) = 1115684 Test 092 rap_unified_drag_suite_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_diag_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/rap_diag_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/rap_diag_debug Checking test 093 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 369.759524 - 0: The maximum resident set size (KB) = 1193460 + 0: The total amount of wall time = 364.554997 + 0: The maximum resident set size (KB) = 1198200 Test 093 rap_diag_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/rap_cires_ugwp_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/rap_cires_ugwp_debug Checking test 094 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 366.378545 - 0: The maximum resident set size (KB) = 1109324 + 0: The total amount of wall time = 357.612134 + 0: The maximum resident set size (KB) = 1111572 Test 094 rap_cires_ugwp_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/rap_unified_ugwp_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/rap_unified_ugwp_debug Checking test 095 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 362.946359 - 0: The maximum resident set size (KB) = 1108124 + 0: The total amount of wall time = 357.696222 + 0: The maximum resident set size (KB) = 1115724 Test 095 rap_unified_ugwp_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_lndp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/rap_lndp_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/rap_lndp_debug Checking test 096 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 348.470948 - 0: The maximum resident set size (KB) = 1116540 + 0: The total amount of wall time = 350.180454 + 0: The maximum resident set size (KB) = 1116100 Test 096 rap_lndp_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_flake_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/rap_flake_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/rap_flake_debug Checking test 097 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 346.758562 - 0: The maximum resident set size (KB) = 1116844 + 0: The total amount of wall time = 347.066079 + 0: The maximum resident set size (KB) = 1115924 Test 097 rap_flake_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_progcld_thompson_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/rap_progcld_thompson_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/rap_progcld_thompson_debug Checking test 098 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 350.822397 - 0: The maximum resident set size (KB) = 1112480 + 0: The total amount of wall time = 346.296156 + 0: The maximum resident set size (KB) = 1118756 Test 098 rap_progcld_thompson_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_noah_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/rap_noah_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/rap_noah_debug Checking test 099 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 345.573809 - 0: The maximum resident set size (KB) = 1113340 + 0: The total amount of wall time = 341.072550 + 0: The maximum resident set size (KB) = 1118508 Test 099 rap_noah_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_sfcdiff_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/rap_sfcdiff_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/rap_sfcdiff_debug Checking test 100 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 346.325049 - 0: The maximum resident set size (KB) = 1113548 + 0: The total amount of wall time = 347.814951 + 0: The maximum resident set size (KB) = 1119108 Test 100 rap_sfcdiff_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/rap_noah_sfcdiff_cires_ugwp_debug Checking test 101 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 574.737122 - 0: The maximum resident set size (KB) = 1112964 + 0: The total amount of wall time = 574.149318 + 0: The maximum resident set size (KB) = 1112544 Test 101 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_v1beta_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/rrfs_v1beta_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/rrfs_v1beta_debug Checking test 102 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 340.927408 - 0: The maximum resident set size (KB) = 1116236 + 0: The total amount of wall time = 339.955142 + 0: The maximum resident set size (KB) = 1108516 Test 102 rrfs_v1beta_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_wam_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_wam_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_wam_debug Checking test 103 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 353.839794 - 0: The maximum resident set size (KB) = 433480 + 0: The total amount of wall time = 353.591054 + 0: The maximum resident set size (KB) = 445324 Test 103 control_wam_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3504,14 +3504,14 @@ Checking test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 297.975210 - 0: The maximum resident set size (KB) = 989804 + 0: The total amount of wall time = 297.169161 + 0: The maximum resident set size (KB) = 991928 Test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/rap_control_dyn32_phy32 Checking test 105 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3558,14 +3558,14 @@ Checking test 105 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 498.903522 - 0: The maximum resident set size (KB) = 856856 + 0: The total amount of wall time = 497.498828 + 0: The maximum resident set size (KB) = 842380 Test 105 rap_control_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/hrrr_control_dyn32_phy32 Checking test 106 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3612,14 +3612,14 @@ Checking test 106 hrrr_control_dyn32_phy32 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 = 263.005162 - 0: The maximum resident set size (KB) = 839544 + 0: The total amount of wall time = 262.442719 + 0: The maximum resident set size (KB) = 838720 Test 106 hrrr_control_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/rap_2threads_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/rap_2threads_dyn32_phy32 Checking test 107 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3666,14 +3666,14 @@ Checking test 107 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 484.570589 - 0: The maximum resident set size (KB) = 892812 + 0: The total amount of wall time = 480.895563 + 0: The maximum resident set size (KB) = 889936 Test 107 rap_2threads_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/hrrr_control_2threads_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/hrrr_control_2threads_dyn32_phy32 Checking test 108 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3720,14 +3720,14 @@ Checking test 108 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 250.784520 - 0: The maximum resident set size (KB) = 892168 + 0: The total amount of wall time = 249.711315 + 0: The maximum resident set size (KB) = 884848 Test 108 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/hrrr_control_decomp_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/hrrr_control_decomp_dyn32_phy32 Checking test 109 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3774,14 +3774,14 @@ Checking test 109 hrrr_control_decomp_dyn32_phy32 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 = 279.654477 - 0: The maximum resident set size (KB) = 835944 + 0: The total amount of wall time = 276.072887 + 0: The maximum resident set size (KB) = 831528 Test 109 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/rap_restart_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/rap_restart_dyn32_phy32 Checking test 110 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3820,14 +3820,14 @@ Checking test 110 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 367.485766 - 0: The maximum resident set size (KB) = 812024 + 0: The total amount of wall time = 371.172675 + 0: The maximum resident set size (KB) = 811200 Test 110 rap_restart_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/hrrr_control_restart_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/hrrr_control_restart_dyn32_phy32 Checking test 111 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3866,14 +3866,14 @@ Checking test 111 hrrr_control_restart_dyn32_phy32 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 = 135.890244 - 0: The maximum resident set size (KB) = 769376 + 0: The total amount of wall time = 134.757585 + 0: The maximum resident set size (KB) = 764476 Test 111 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_dyn64_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/rap_control_dyn64_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/rap_control_dyn64_phy32 Checking test 112 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3920,81 +3920,81 @@ Checking test 112 rap_control_dyn64_phy32 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 = 324.257564 - 0: The maximum resident set size (KB) = 860500 + 0: The total amount of wall time = 317.981809 + 0: The maximum resident set size (KB) = 870656 Test 112 rap_control_dyn64_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/rap_control_debug_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/rap_control_debug_dyn32_phy32 Checking test 113 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 346.499759 - 0: The maximum resident set size (KB) = 1003408 + 0: The total amount of wall time = 341.101730 + 0: The maximum resident set size (KB) = 997844 Test 113 rap_control_debug_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/hrrr_control_debug_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/hrrr_control_debug_dyn32_phy32 Checking test 114 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 344.500078 - 0: The maximum resident set size (KB) = 998116 + 0: The total amount of wall time = 336.575042 + 0: The maximum resident set size (KB) = 992640 Test 114 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/rap_control_dyn64_phy32_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/rap_control_dyn64_phy32_debug Checking test 115 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 348.102555 - 0: The maximum resident set size (KB) = 1032220 + 0: The total amount of wall time = 346.053978 + 0: The maximum resident set size (KB) = 1029824 Test 115 rap_control_dyn64_phy32_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/hafs_regional_atm +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/hafs_regional_atm Checking test 116 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 343.716309 - 0: The maximum resident set size (KB) = 1226064 + 0: The total amount of wall time = 345.567233 + 0: The maximum resident set size (KB) = 1227236 Test 116 hafs_regional_atm PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/hafs_regional_atm_thompson_gfdlsf Checking test 117 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 407.354486 - 0: The maximum resident set size (KB) = 1594736 + 0: The total amount of wall time = 411.555717 + 0: The maximum resident set size (KB) = 1585192 Test 117 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm_ocn -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/hafs_regional_atm_ocn +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/hafs_regional_atm_ocn Checking test 118 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4003,14 +4003,14 @@ Checking test 118 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 525.517323 - 0: The maximum resident set size (KB) = 1304988 + 0: The total amount of wall time = 519.980256 + 0: The maximum resident set size (KB) = 1304636 Test 118 hafs_regional_atm_ocn PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm_wav -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/hafs_regional_atm_wav +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/hafs_regional_atm_wav Checking test 119 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4019,14 +4019,14 @@ Checking test 119 hafs_regional_atm_wav 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 = 931.799601 - 0: The maximum resident set size (KB) = 1331668 + 0: The total amount of wall time = 928.353697 + 0: The maximum resident set size (KB) = 1328820 Test 119 hafs_regional_atm_wav PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/hafs_regional_atm_ocn_wav +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/hafs_regional_atm_ocn_wav Checking test 120 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4037,14 +4037,14 @@ Checking test 120 hafs_regional_atm_ocn_wav 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 = 1060.544110 - 0: The maximum resident set size (KB) = 1377564 + 0: The total amount of wall time = 1038.543360 + 0: The maximum resident set size (KB) = 1344916 Test 120 hafs_regional_atm_ocn_wav PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_docn -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/hafs_regional_docn +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/hafs_regional_docn Checking test 121 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4052,14 +4052,14 @@ Checking test 121 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 492.402582 - 0: The maximum resident set size (KB) = 1309376 + 0: The total amount of wall time = 489.303936 + 0: The maximum resident set size (KB) = 1300356 Test 121 hafs_regional_docn PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_docn_oisst -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/hafs_regional_docn_oisst +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/hafs_regional_docn_oisst Checking test 122 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4067,118 +4067,118 @@ Checking test 122 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 496.979850 - 0: The maximum resident set size (KB) = 1300100 + 0: The total amount of wall time = 490.230256 + 0: The maximum resident set size (KB) = 1292116 Test 122 hafs_regional_docn_oisst PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/datm_cdeps_control_cfsr Checking test 123 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 212.585520 - 0: The maximum resident set size (KB) = 959728 + 0: The total amount of wall time = 211.703018 + 0: The maximum resident set size (KB) = 976968 Test 123 datm_cdeps_control_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/datm_cdeps_restart_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/datm_cdeps_restart_cfsr Checking test 124 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 143.586656 - 0: The maximum resident set size (KB) = 930764 + 0: The total amount of wall time = 125.786993 + 0: The maximum resident set size (KB) = 930524 Test 124 datm_cdeps_restart_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_control_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/datm_cdeps_control_gefs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/datm_cdeps_control_gefs Checking test 125 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 208.203584 - 0: The maximum resident set size (KB) = 852336 + 0: The total amount of wall time = 207.774199 + 0: The maximum resident set size (KB) = 863572 Test 125 datm_cdeps_control_gefs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_iau_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/datm_cdeps_iau_gefs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/datm_cdeps_iau_gefs Checking test 126 datm_cdeps_iau_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 208.265035 - 0: The maximum resident set size (KB) = 863088 + 0: The total amount of wall time = 210.617674 + 0: The maximum resident set size (KB) = 854872 Test 126 datm_cdeps_iau_gefs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_stochy_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/datm_cdeps_stochy_gefs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/datm_cdeps_stochy_gefs Checking test 127 datm_cdeps_stochy_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 211.361603 - 0: The maximum resident set size (KB) = 862144 + 0: The total amount of wall time = 211.205960 + 0: The maximum resident set size (KB) = 863256 Test 127 datm_cdeps_stochy_gefs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/datm_cdeps_ciceC_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/datm_cdeps_ciceC_cfsr Checking test 128 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 218.067741 - 0: The maximum resident set size (KB) = 975172 + 0: The total amount of wall time = 213.603197 + 0: The maximum resident set size (KB) = 966380 Test 128 datm_cdeps_ciceC_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/datm_cdeps_bulk_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/datm_cdeps_bulk_cfsr Checking test 129 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 212.975817 - 0: The maximum resident set size (KB) = 965048 + 0: The total amount of wall time = 213.618205 + 0: The maximum resident set size (KB) = 958028 Test 129 datm_cdeps_bulk_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/datm_cdeps_bulk_gefs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/datm_cdeps_bulk_gefs Checking test 130 datm_cdeps_bulk_gefs 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 = 222.941116 - 0: The maximum resident set size (KB) = 865752 + 0: The total amount of wall time = 208.232038 + 0: The maximum resident set size (KB) = 853600 Test 130 datm_cdeps_bulk_gefs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/datm_cdeps_mx025_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/datm_cdeps_mx025_cfsr Checking test 131 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4187,14 +4187,14 @@ Checking test 131 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 575.659033 - 0: The maximum resident set size (KB) = 766036 + 0: The total amount of wall time = 556.586142 + 0: The maximum resident set size (KB) = 764632 Test 131 datm_cdeps_mx025_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/datm_cdeps_mx025_gefs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/datm_cdeps_mx025_gefs Checking test 132 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4203,77 +4203,77 @@ Checking test 132 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 579.491531 - 0: The maximum resident set size (KB) = 735872 + 0: The total amount of wall time = 557.037174 + 0: The maximum resident set size (KB) = 735560 Test 132 datm_cdeps_mx025_gefs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/datm_cdeps_multiple_files_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/datm_cdeps_multiple_files_cfsr Checking test 133 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 215.757754 - 0: The maximum resident set size (KB) = 961304 + 0: The total amount of wall time = 210.812156 + 0: The maximum resident set size (KB) = 963020 Test 133 datm_cdeps_multiple_files_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/datm_cdeps_3072x1536_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/datm_cdeps_3072x1536_cfsr Checking test 134 datm_cdeps_3072x1536_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 286.627842 - 0: The maximum resident set size (KB) = 2262564 + 0: The total amount of wall time = 324.494469 + 0: The maximum resident set size (KB) = 2185652 Test 134 datm_cdeps_3072x1536_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_gfs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/datm_cdeps_gfs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/datm_cdeps_gfs Checking test 135 datm_cdeps_gfs results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 290.291621 - 0: The maximum resident set size (KB) = 2257836 + 0: The total amount of wall time = 319.436353 + 0: The maximum resident set size (KB) = 2188948 Test 135 datm_cdeps_gfs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_debug_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/datm_cdeps_debug_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/datm_cdeps_debug_cfsr Checking test 136 datm_cdeps_debug_cfsr 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 = 469.154436 - 0: The maximum resident set size (KB) = 909700 + 0: The total amount of wall time = 461.126575 + 0: The maximum resident set size (KB) = 908464 Test 136 datm_cdeps_debug_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_control_cfsr_faster -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/datm_cdeps_control_cfsr_faster +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/datm_cdeps_control_cfsr_faster Checking test 137 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.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 = 227.347487 - 0: The maximum resident set size (KB) = 970228 + 0: The total amount of wall time = 211.577474 + 0: The maximum resident set size (KB) = 967140 Test 137 datm_cdeps_control_cfsr_faster PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/datm_cdeps_lnd_gswp3 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/datm_cdeps_lnd_gswp3 Checking test 138 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4282,14 +4282,14 @@ Checking test 138 datm_cdeps_lnd_gswp3 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.382446 - 0: The maximum resident set size (KB) = 253604 + 0: The total amount of wall time = 11.131327 + 0: The maximum resident set size (KB) = 253136 Test 138 datm_cdeps_lnd_gswp3 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/datm_cdeps_lnd_gswp3_rst +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/datm_cdeps_lnd_gswp3_rst Checking test 139 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4298,14 +4298,14 @@ Checking test 139 datm_cdeps_lnd_gswp3_rst 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 = 21.239729 - 0: The maximum resident set size (KB) = 256528 + 0: The total amount of wall time = 18.532986 + 0: The maximum resident set size (KB) = 253444 Test 139 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8_atmlnd_sbs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_p8_atmlnd_sbs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_p8_atmlnd_sbs Checking test 140 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4390,14 +4390,14 @@ Checking test 140 control_p8_atmlnd_sbs 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 = 281.560063 - 0: The maximum resident set size (KB) = 1606792 + 0: The total amount of wall time = 278.273417 + 0: The maximum resident set size (KB) = 1594168 Test 140 control_p8_atmlnd_sbs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/atmwav_control_noaero_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/atmwav_control_noaero_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/atmwav_control_noaero_p8 Checking test 141 atmwav_control_noaero_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4440,14 +4440,14 @@ Checking test 141 atmwav_control_noaero_p8 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 = 125.626910 - 0: The maximum resident set size (KB) = 1575848 + 0: The total amount of wall time = 124.966332 + 0: The maximum resident set size (KB) = 1557400 Test 141 atmwav_control_noaero_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_atmwav -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/control_atmwav +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_atmwav Checking test 142 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4491,14 +4491,14 @@ Checking test 142 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 121.508222 - 0: The maximum resident set size (KB) = 596876 + 0: The total amount of wall time = 118.008190 + 0: The maximum resident set size (KB) = 593644 Test 142 control_atmwav PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/atmaero_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/atmaero_control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/atmaero_control_p8 Checking test 143 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4542,14 +4542,14 @@ Checking test 143 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 309.844193 - 0: The maximum resident set size (KB) = 1649584 + 0: The total amount of wall time = 305.594718 + 0: The maximum resident set size (KB) = 1634124 Test 143 atmaero_control_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/atmaero_control_p8_rad -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/atmaero_control_p8_rad +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/atmaero_control_p8_rad Checking test 144 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4593,14 +4593,14 @@ Checking test 144 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 380.031856 - 0: The maximum resident set size (KB) = 1684168 + 0: The total amount of wall time = 377.679503 + 0: The maximum resident set size (KB) = 1671312 Test 144 atmaero_control_p8_rad PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_230755/atmaero_control_p8_rad_micro +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/atmaero_control_p8_rad_micro Checking test 145 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4644,12 +4644,12 @@ Checking test 145 atmaero_control_p8_rad_micro results .... Comparing 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.168398 - 0: The maximum resident set size (KB) = 1686988 + 0: The total amount of wall time = 378.486484 + 0: The maximum resident set size (KB) = 1688048 Test 145 atmaero_control_p8_rad_micro PASS REGRESSION TEST WAS SUCCESSFUL -Fri Apr 14 15:05:01 UTC 2023 -Elapsed time: 02h:53m:08s. Have a nice day! +Sat Apr 15 03:01:47 UTC 2023 +Elapsed time: 02h:53m:01s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index c3647e980d3..370f74f444b 100755 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,43 +1,43 @@ -Thu Apr 13 21:43:03 CDT 2023 +Sun Apr 16 08:31:48 CDT 2023 Start Regression test -Compile 001 elapsed time 850 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 739 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 735 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 276 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 255 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 696 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 717 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 1069 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 651 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 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 011 elapsed time 586 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 539 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 752 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 270 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 232 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 560 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 527 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 174 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 237 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 710 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 021 elapsed time 221 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 808 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 639 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 024 elapsed time 192 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 112 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 227 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 89 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 633 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 681 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 667 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 573 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 566 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 033 elapsed time 213 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 034 elapsed time 611 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 784 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 717 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 684 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 289 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 244 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 643 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 613 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 817 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 633 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 583 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 559 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 519 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 691 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 203 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 162 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 525 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 552 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 180 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 162 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 626 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 021 elapsed time 203 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 703 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 670 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 024 elapsed time 196 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 132 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 195 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 52 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 566 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 623 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 624 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 537 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 537 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 033 elapsed time 191 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 034 elapsed time 605 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8_mixedmode -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/cpld_control_p8_mixedmode +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -102,14 +102,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 307.330615 - 0: The maximum resident set size (KB) = 3142356 + 0: The total amount of wall time = 309.641419 + 0: The maximum resident set size (KB) = 3146352 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_gfsv17 -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/cpld_control_gfsv17 +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -173,14 +173,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 226.123655 - 0: The maximum resident set size (KB) = 1736724 + 0: The total amount of wall time = 225.168763 + 0: The maximum resident set size (KB) = 1740960 Test 002 cpld_control_gfsv17 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -245,14 +245,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 341.733043 - 0: The maximum resident set size (KB) = 3186040 + 0: The total amount of wall time = 350.602521 + 0: The maximum resident set size (KB) = 3185976 Test 003 cpld_control_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/cpld_restart_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -305,14 +305,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 228.415051 - 0: The maximum resident set size (KB) = 3055172 + 0: The total amount of wall time = 204.091388 + 0: The maximum resident set size (KB) = 3054804 Test 004 cpld_restart_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/cpld_control_qr_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -377,14 +377,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 346.941362 - 0: The maximum resident set size (KB) = 3197404 + 0: The total amount of wall time = 344.262214 + 0: The maximum resident set size (KB) = 3195924 Test 005 cpld_control_qr_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/cpld_restart_qr_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -437,14 +437,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 218.280498 - 0: The maximum resident set size (KB) = 3068816 + 0: The total amount of wall time = 212.391043 + 0: The maximum resident set size (KB) = 3065976 Test 006 cpld_restart_qr_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/cpld_2threads_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -497,14 +497,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 405.852971 - 0: The maximum resident set size (KB) = 3520516 + 0: The total amount of wall time = 412.627386 + 0: The maximum resident set size (KB) = 3517936 Test 007 cpld_2threads_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/cpld_decomp_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -557,14 +557,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 342.956161 - 0: The maximum resident set size (KB) = 3172184 + 0: The total amount of wall time = 355.529052 + 0: The maximum resident set size (KB) = 3172108 Test 008 cpld_decomp_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/cpld_mpi_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -617,14 +617,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 285.021490 - 0: The maximum resident set size (KB) = 3030664 + 0: The total amount of wall time = 301.007756 + 0: The maximum resident set size (KB) = 3028168 Test 009 cpld_mpi_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_ciceC_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/cpld_control_ciceC_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -689,14 +689,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 340.233046 - 0: The maximum resident set size (KB) = 3187408 + 0: The total amount of wall time = 345.845741 + 0: The maximum resident set size (KB) = 3185688 Test 010 cpld_control_ciceC_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/cpld_control_c192_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/cpld_control_c192_p8 Checking test 011 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -749,14 +749,14 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 691.771095 - 0: The maximum resident set size (KB) = 3187120 + 0: The total amount of wall time = 642.400521 + 0: The maximum resident set size (KB) = 3263568 Test 011 cpld_control_c192_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/cpld_restart_c192_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/cpld_restart_c192_p8 Checking test 012 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -809,14 +809,14 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 460.288197 - 0: The maximum resident set size (KB) = 3162140 + 0: The total amount of wall time = 450.271028 + 0: The maximum resident set size (KB) = 3092724 Test 012 cpld_restart_c192_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_bmark_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/cpld_bmark_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/cpld_bmark_p8 Checking test 013 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -864,14 +864,14 @@ Checking test 013 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 899.335955 - 0: The maximum resident set size (KB) = 4040992 + 0: The total amount of wall time = 873.730007 + 0: The maximum resident set size (KB) = 4046936 Test 013 cpld_bmark_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_bmark_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/cpld_restart_bmark_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/cpld_restart_bmark_p8 Checking test 014 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -919,14 +919,14 @@ Checking test 014 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 537.086227 - 0: The maximum resident set size (KB) = 3970892 + 0: The total amount of wall time = 574.666820 + 0: The maximum resident set size (KB) = 3988632 Test 014 cpld_restart_bmark_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_noaero_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/cpld_control_noaero_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/cpld_control_noaero_p8 Checking test 015 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -990,14 +990,14 @@ Checking test 015 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 253.603483 - 0: The maximum resident set size (KB) = 1730388 + 0: The total amount of wall time = 251.455420 + 0: The maximum resident set size (KB) = 1723484 Test 015 cpld_control_noaero_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_c96_noaero_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/cpld_control_nowave_noaero_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/cpld_control_nowave_noaero_p8 Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1059,14 +1059,14 @@ Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 257.058882 - 0: The maximum resident set size (KB) = 1765068 + 0: The total amount of wall time = 259.985575 + 0: The maximum resident set size (KB) = 1774648 Test 016 cpld_control_nowave_noaero_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_debug_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/cpld_debug_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/cpld_debug_p8 Checking test 017 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1119,14 +1119,14 @@ Checking test 017 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 566.232263 - 0: The maximum resident set size (KB) = 3184308 + 0: The total amount of wall time = 538.804973 + 0: The maximum resident set size (KB) = 3172940 Test 017 cpld_debug_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_debug_noaero_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/cpld_debug_noaero_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/cpld_debug_noaero_p8 Checking test 018 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1178,14 +1178,14 @@ Checking test 018 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 384.005158 - 0: The maximum resident set size (KB) = 1737480 + 0: The total amount of wall time = 377.659503 + 0: The maximum resident set size (KB) = 1740344 Test 018 cpld_debug_noaero_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_noaero_p8_agrid -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/cpld_control_noaero_p8_agrid +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/cpld_control_noaero_p8_agrid Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1247,14 +1247,14 @@ Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 265.891381 - 0: The maximum resident set size (KB) = 1764272 + 0: The total amount of wall time = 264.668434 + 0: The maximum resident set size (KB) = 1770024 Test 019 cpld_control_noaero_p8_agrid PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_c48 -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/cpld_control_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/cpld_control_c48 Checking test 020 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1304,14 +1304,14 @@ Checking test 020 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 499.869891 - 0: The maximum resident set size (KB) = 2815376 + 0: The total amount of wall time = 506.271245 + 0: The maximum resident set size (KB) = 2749416 Test 020 cpld_control_c48 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_warmstart_c48 -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/cpld_warmstart_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/cpld_warmstart_c48 Checking test 021 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1361,14 +1361,14 @@ Checking test 021 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 139.034322 - 0: The maximum resident set size (KB) = 2789672 + 0: The total amount of wall time = 137.084104 + 0: The maximum resident set size (KB) = 2808272 Test 021 cpld_warmstart_c48 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_warmstart_c48 -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/cpld_restart_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/cpld_restart_c48 Checking test 022 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1418,14 +1418,14 @@ Checking test 022 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 83.587979 - 0: The maximum resident set size (KB) = 2194208 + 0: The total amount of wall time = 74.757336 + 0: The maximum resident set size (KB) = 2241564 Test 022 cpld_restart_c48 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/cpld_control_p8_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/cpld_control_p8_faster Checking test 023 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1490,14 +1490,14 @@ Checking test 023 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 332.763245 - 0: The maximum resident set size (KB) = 3189520 + 0: The total amount of wall time = 322.140871 + 0: The maximum resident set size (KB) = 3190636 Test 023 cpld_control_p8_faster PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_CubedSphereGrid -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_CubedSphereGrid +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_CubedSphereGrid Checking test 024 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1524,28 +1524,28 @@ Checking test 024 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 137.114765 - 0: The maximum resident set size (KB) = 635992 + 0: The total amount of wall time = 131.403751 + 0: The maximum resident set size (KB) = 631808 Test 024 control_CubedSphereGrid PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_CubedSphereGrid_parallel -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_CubedSphereGrid_parallel +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_CubedSphereGrid_parallel Checking test 025 control_CubedSphereGrid_parallel results .... - Comparing sfcf000.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf024.nc ............ALT CHECK......OK - 0: The total amount of wall time = 141.760746 - 0: The maximum resident set size (KB) = 628748 + 0: The total amount of wall time = 127.681610 + 0: The maximum resident set size (KB) = 626248 Test 025 control_CubedSphereGrid_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_latlon -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_latlon +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_latlon Checking test 026 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1556,32 +1556,32 @@ Checking test 026 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 144.455090 - 0: The maximum resident set size (KB) = 633684 + 0: The total amount of wall time = 133.756986 + 0: The maximum resident set size (KB) = 578792 Test 026 control_latlon PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_wrtGauss_netcdf_parallel -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_wrtGauss_netcdf_parallel +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_wrtGauss_netcdf_parallel Checking test 027 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK + Comparing sfcf024.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 = 145.896249 - 0: The maximum resident set size (KB) = 629792 + 0: The total amount of wall time = 136.600715 + 0: The maximum resident set size (KB) = 631472 Test 027 control_wrtGauss_netcdf_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_c48 -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_c48 Checking test 028 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1620,14 +1620,14 @@ Checking test 028 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 360.694553 -0: The maximum resident set size (KB) = 820912 +0: The total amount of wall time = 346.642290 +0: The maximum resident set size (KB) = 779880 Test 028 control_c48 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_c192 -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_c192 +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_c192 Checking test 029 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1638,14 +1638,14 @@ Checking test 029 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 529.186877 - 0: The maximum resident set size (KB) = 774644 + 0: The total amount of wall time = 529.287251 + 0: The maximum resident set size (KB) = 719060 Test 029 control_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_c384 -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_c384 +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_c384 Checking test 030 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1656,14 +1656,14 @@ Checking test 030 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 580.895720 - 0: The maximum resident set size (KB) = 1228404 + 0: The total amount of wall time = 582.159953 + 0: The maximum resident set size (KB) = 1231504 Test 030 control_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_c384gdas -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_c384gdas +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_c384gdas Checking test 031 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1706,14 +1706,14 @@ Checking test 031 control_c384gdas 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 = 511.825762 - 0: The maximum resident set size (KB) = 1337900 + 0: The total amount of wall time = 512.340862 + 0: The maximum resident set size (KB) = 1343256 Test 031 control_c384gdas PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_stochy -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_stochy +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_stochy Checking test 032 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1724,28 +1724,28 @@ Checking test 032 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 91.315546 - 0: The maximum resident set size (KB) = 639880 + 0: The total amount of wall time = 88.241598 + 0: The maximum resident set size (KB) = 636416 Test 032 control_stochy PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_stochy -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_stochy_restart +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_stochy_restart Checking test 033 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 49.371697 - 0: The maximum resident set size (KB) = 493248 + 0: The total amount of wall time = 49.922804 + 0: The maximum resident set size (KB) = 488568 Test 033 control_stochy_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_lndp -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_lndp +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_lndp Checking test 034 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1756,14 +1756,14 @@ Checking test 034 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 85.028240 - 0: The maximum resident set size (KB) = 634656 + 0: The total amount of wall time = 81.761952 + 0: The maximum resident set size (KB) = 633724 Test 034 control_lndp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_iovr4 -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_iovr4 +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_iovr4 Checking test 035 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1778,14 +1778,14 @@ Checking test 035 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 142.113490 - 0: The maximum resident set size (KB) = 631632 + 0: The total amount of wall time = 136.097851 + 0: The maximum resident set size (KB) = 635796 Test 035 control_iovr4 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_iovr5 -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_iovr5 +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_iovr5 Checking test 036 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1800,14 +1800,14 @@ Checking test 036 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 142.684773 - 0: The maximum resident set size (KB) = 632584 + 0: The total amount of wall time = 135.232836 + 0: The maximum resident set size (KB) = 628380 Test 036 control_iovr5 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_p8 Checking test 037 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1854,14 +1854,14 @@ Checking test 037 control_p8 results .... Comparing 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.612523 - 0: The maximum resident set size (KB) = 1606268 + 0: The total amount of wall time = 168.918401 + 0: The maximum resident set size (KB) = 1602852 Test 037 control_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_restart_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_restart_p8 Checking test 038 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1900,14 +1900,14 @@ Checking test 038 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 87.709309 - 0: The maximum resident set size (KB) = 868976 + 0: The total amount of wall time = 89.840837 + 0: The maximum resident set size (KB) = 870280 Test 038 control_restart_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_qr_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_qr_p8 Checking test 039 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1954,14 +1954,14 @@ Checking test 039 control_qr_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 170.059836 - 0: The maximum resident set size (KB) = 1607508 + 0: The total amount of wall time = 168.546034 + 0: The maximum resident set size (KB) = 1605456 Test 039 control_qr_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_restart_qr_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_restart_qr_p8 Checking test 040 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2000,14 +2000,14 @@ Checking test 040 control_restart_qr_p8 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 = 92.774947 - 0: The maximum resident set size (KB) = 869908 + 0: The total amount of wall time = 92.385168 + 0: The maximum resident set size (KB) = 862896 Test 040 control_restart_qr_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_decomp_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_decomp_p8 Checking test 041 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2050,14 +2050,14 @@ Checking test 041 control_decomp_p8 results .... Comparing 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.665185 - 0: The maximum resident set size (KB) = 1589232 + 0: The total amount of wall time = 174.957744 + 0: The maximum resident set size (KB) = 1586940 Test 041 control_decomp_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_2threads_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_2threads_p8 Checking test 042 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2100,14 +2100,14 @@ Checking test 042 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 177.560015 - 0: The maximum resident set size (KB) = 1687168 + 0: The total amount of wall time = 176.847256 + 0: The maximum resident set size (KB) = 1681560 Test 042 control_2threads_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8_lndp -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_p8_lndp +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_p8_lndp Checking test 043 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2126,14 +2126,14 @@ Checking test 043 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 313.026589 - 0: The maximum resident set size (KB) = 1601896 + 0: The total amount of wall time = 311.667556 + 0: The maximum resident set size (KB) = 1608788 Test 043 control_p8_lndp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8_rrtmgp -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_p8_rrtmgp +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_p8_rrtmgp Checking test 044 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2180,14 +2180,14 @@ Checking test 044 control_p8_rrtmgp results .... Comparing 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.343395 - 0: The maximum resident set size (KB) = 1674468 + 0: The total amount of wall time = 227.909412 + 0: The maximum resident set size (KB) = 1677084 Test 044 control_p8_rrtmgp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8_mynn -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_p8_mynn +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_p8_mynn Checking test 045 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2234,14 +2234,14 @@ Checking test 045 control_p8_mynn results .... Comparing 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.540312 - 0: The maximum resident set size (KB) = 1611492 + 0: The total amount of wall time = 171.651696 + 0: The maximum resident set size (KB) = 1613044 Test 045 control_p8_mynn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/merra2_thompson -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/merra2_thompson +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/merra2_thompson Checking test 046 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2288,14 +2288,14 @@ Checking test 046 merra2_thompson results .... Comparing 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.034078 - 0: The maximum resident set size (KB) = 1612512 + 0: The total amount of wall time = 189.845055 + 0: The maximum resident set size (KB) = 1610948 Test 046 merra2_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/regional_control Checking test 047 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2306,28 +2306,28 @@ Checking test 047 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 298.974946 - 0: The maximum resident set size (KB) = 867768 + 0: The total amount of wall time = 298.544728 + 0: The maximum resident set size (KB) = 869388 Test 047 regional_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/regional_restart +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/regional_restart Checking test 048 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 152.007788 - 0: The maximum resident set size (KB) = 863628 + 0: The total amount of wall time = 155.008511 + 0: The maximum resident set size (KB) = 827540 Test 048 regional_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/regional_control_qr +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/regional_control_qr Checking test 049 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2338,28 +2338,28 @@ Checking test 049 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 298.298424 - 0: The maximum resident set size (KB) = 870720 + 0: The total amount of wall time = 296.461575 + 0: The maximum resident set size (KB) = 871864 Test 049 regional_control_qr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/regional_restart_qr +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/regional_restart_qr Checking test 050 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 151.064501 - 0: The maximum resident set size (KB) = 860688 + 0: The total amount of wall time = 152.894344 + 0: The maximum resident set size (KB) = 862056 Test 050 regional_restart_qr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/regional_decomp +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/regional_decomp Checking test 051 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2370,14 +2370,14 @@ Checking test 051 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 314.509615 - 0: The maximum resident set size (KB) = 860312 + 0: The total amount of wall time = 319.026978 + 0: The maximum resident set size (KB) = 864996 Test 051 regional_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/regional_2threads +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/regional_2threads Checking test 052 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2388,14 +2388,14 @@ Checking test 052 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 206.187176 - 0: The maximum resident set size (KB) = 850892 + 0: The total amount of wall time = 206.450160 + 0: The maximum resident set size (KB) = 847464 Test 052 regional_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_noquilt -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/regional_noquilt +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/regional_noquilt Checking test 053 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2403,28 +2403,28 @@ Checking test 053 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 319.282792 - 0: The maximum resident set size (KB) = 858096 + 0: The total amount of wall time = 316.530905 + 0: The maximum resident set size (KB) = 860412 Test 053 regional_noquilt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_netcdf_parallel -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/regional_netcdf_parallel +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/regional_netcdf_parallel Checking test 054 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 293.550956 - 0: The maximum resident set size (KB) = 865908 + 0: The total amount of wall time = 291.414437 + 0: The maximum resident set size (KB) = 865240 Test 054 regional_netcdf_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/regional_2dwrtdecomp +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/regional_2dwrtdecomp Checking test 055 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2435,14 +2435,14 @@ Checking test 055 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 296.382509 - 0: The maximum resident set size (KB) = 868964 + 0: The total amount of wall time = 298.334959 + 0: The maximum resident set size (KB) = 872852 Test 055 regional_2dwrtdecomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/fv3_regional_wofs -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/regional_wofs +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/regional_wofs Checking test 056 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2453,14 +2453,14 @@ Checking test 056 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 376.927765 - 0: The maximum resident set size (KB) = 631284 + 0: The total amount of wall time = 375.810791 + 0: The maximum resident set size (KB) = 574940 Test 056 regional_wofs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/rap_control +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/rap_control Checking test 057 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2507,14 +2507,14 @@ Checking test 057 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 491.394179 - 0: The maximum resident set size (KB) = 1072688 + 0: The total amount of wall time = 457.957607 + 0: The maximum resident set size (KB) = 1072724 Test 057 rap_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_spp_sppt_shum_skeb -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/regional_spp_sppt_shum_skeb +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/regional_spp_sppt_shum_skeb Checking test 058 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2525,14 +2525,14 @@ Checking test 058 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 273.969582 - 0: The maximum resident set size (KB) = 1193644 + 0: The total amount of wall time = 264.871917 + 0: The maximum resident set size (KB) = 1187544 Test 058 regional_spp_sppt_shum_skeb PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/rap_decomp +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/rap_decomp Checking test 059 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2579,14 +2579,14 @@ Checking test 059 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 486.673981 - 0: The maximum resident set size (KB) = 1004144 + 0: The total amount of wall time = 477.463910 + 0: The maximum resident set size (KB) = 1014896 Test 059 rap_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/rap_2threads +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/rap_2threads Checking test 060 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2633,14 +2633,14 @@ Checking test 060 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 481.407682 - 0: The maximum resident set size (KB) = 1138908 + 0: The total amount of wall time = 468.925912 + 0: The maximum resident set size (KB) = 1134520 Test 060 rap_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/rap_restart +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/rap_restart Checking test 061 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2679,14 +2679,14 @@ Checking test 061 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 231.906938 - 0: The maximum resident set size (KB) = 971276 + 0: The total amount of wall time = 233.175557 + 0: The maximum resident set size (KB) = 969744 Test 061 rap_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_sfcdiff -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/rap_sfcdiff +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/rap_sfcdiff Checking test 062 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2733,14 +2733,14 @@ Checking test 062 rap_sfcdiff results .... Comparing 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.530697 - 0: The maximum resident set size (KB) = 1067680 + 0: The total amount of wall time = 459.558690 + 0: The maximum resident set size (KB) = 1066620 Test 062 rap_sfcdiff PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_sfcdiff -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/rap_sfcdiff_decomp +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/rap_sfcdiff_decomp Checking test 063 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2787,14 +2787,14 @@ Checking test 063 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 506.500992 - 0: The maximum resident set size (KB) = 1003544 + 0: The total amount of wall time = 478.965488 + 0: The maximum resident set size (KB) = 1008516 Test 063 rap_sfcdiff_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_sfcdiff -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/rap_sfcdiff_restart +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/rap_sfcdiff_restart Checking test 064 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2833,14 +2833,14 @@ Checking test 064 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 340.083060 - 0: The maximum resident set size (KB) = 991544 + 0: The total amount of wall time = 343.084605 + 0: The maximum resident set size (KB) = 990188 Test 064 rap_sfcdiff_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/hrrr_control +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/hrrr_control Checking test 065 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2887,14 +2887,14 @@ Checking test 065 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 451.949509 - 0: The maximum resident set size (KB) = 1062004 + 0: The total amount of wall time = 441.533138 + 0: The maximum resident set size (KB) = 1063244 Test 065 hrrr_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/hrrr_control_decomp +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/hrrr_control_decomp Checking test 066 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2941,14 +2941,14 @@ Checking test 066 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 468.387107 - 0: The maximum resident set size (KB) = 1003748 + 0: The total amount of wall time = 462.422233 + 0: The maximum resident set size (KB) = 1004492 Test 066 hrrr_control_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/hrrr_control_2threads +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/hrrr_control_2threads Checking test 067 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2995,14 +2995,14 @@ Checking test 067 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 472.590336 - 0: The maximum resident set size (KB) = 1142268 + 0: The total amount of wall time = 453.550667 + 0: The maximum resident set size (KB) = 1080876 Test 067 hrrr_control_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/hrrr_control_restart +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/hrrr_control_restart Checking test 068 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3041,14 +3041,14 @@ Checking test 068 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 328.297473 - 0: The maximum resident set size (KB) = 929912 + 0: The total amount of wall time = 331.568692 + 0: The maximum resident set size (KB) = 982340 Test 068 hrrr_control_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_v1beta -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/rrfs_v1beta +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/rrfs_v1beta Checking test 069 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3095,14 +3095,14 @@ Checking test 069 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 474.987779 - 0: The maximum resident set size (KB) = 1057628 + 0: The total amount of wall time = 451.689371 + 0: The maximum resident set size (KB) = 1060768 Test 069 rrfs_v1beta PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_v1nssl -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/rrfs_v1nssl +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/rrfs_v1nssl Checking test 070 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3117,14 +3117,14 @@ Checking test 070 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 549.137842 - 0: The maximum resident set size (KB) = 697152 + 0: The total amount of wall time = 545.154337 + 0: The maximum resident set size (KB) = 705432 Test 070 rrfs_v1nssl PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/rrfs_v1nssl_nohailnoccn +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/rrfs_v1nssl_nohailnoccn Checking test 071 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3139,14 +3139,14 @@ Checking test 071 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 551.839346 - 0: The maximum resident set size (KB) = 764340 + 0: The total amount of wall time = 527.913362 + 0: The maximum resident set size (KB) = 700424 Test 071 rrfs_v1nssl_nohailnoccn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/rrfs_smoke_conus13km_hrrr_warm +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/rrfs_smoke_conus13km_hrrr_warm Checking test 072 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3155,14 +3155,14 @@ Checking test 072 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 146.265688 - 0: The maximum resident set size (KB) = 1042464 + 0: The total amount of wall time = 145.165688 + 0: The maximum resident set size (KB) = 1042076 Test 072 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/rrfs_smoke_conus13km_hrrr_warm_2threads +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 073 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3171,14 +3171,14 @@ Checking test 073 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 96.993338 - 0: The maximum resident set size (KB) = 946224 + 0: The total amount of wall time = 95.893379 + 0: The maximum resident set size (KB) = 951488 Test 073 rrfs_smoke_conus13km_hrrr_warm_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_conus13km_hrrr_warm -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/rrfs_conus13km_hrrr_warm +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/rrfs_conus13km_hrrr_warm Checking test 074 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3187,14 +3187,14 @@ Checking test 074 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 128.684493 - 0: The maximum resident set size (KB) = 949960 + 0: The total amount of wall time = 128.317158 + 0: The maximum resident set size (KB) = 950528 Test 074 rrfs_conus13km_hrrr_warm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/rrfs_smoke_conus13km_radar_tten_warm +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/rrfs_smoke_conus13km_radar_tten_warm Checking test 075 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3203,26 +3203,26 @@ Checking test 075 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 146.820971 - 0: The maximum resident set size (KB) = 1048576 + 0: The total amount of wall time = 146.021434 + 0: The maximum resident set size (KB) = 1043292 Test 075 rrfs_smoke_conus13km_radar_tten_warm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 076 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 67.408597 - 0: The maximum resident set size (KB) = 934032 + 0: The total amount of wall time = 68.745233 + 0: The maximum resident set size (KB) = 874104 Test 076 rrfs_conus13km_hrrr_warm_restart_mismatch PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_csawmg -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_csawmg +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_csawmg Checking test 077 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3233,14 +3233,14 @@ Checking test 077 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 358.035172 - 0: The maximum resident set size (KB) = 727748 + 0: The total amount of wall time = 342.365926 + 0: The maximum resident set size (KB) = 725920 Test 077 control_csawmg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_csawmgt -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_csawmgt +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_csawmgt Checking test 078 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3251,14 +3251,14 @@ Checking test 078 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 340.625026 - 0: The maximum resident set size (KB) = 716328 + 0: The total amount of wall time = 336.589421 + 0: The maximum resident set size (KB) = 722808 Test 078 control_csawmgt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_ras -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_ras +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_ras Checking test 079 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3269,26 +3269,26 @@ Checking test 079 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 207.423823 - 0: The maximum resident set size (KB) = 715656 + 0: The total amount of wall time = 182.040648 + 0: The maximum resident set size (KB) = 723868 Test 079 control_ras PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_wam -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_wam +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_wam Checking test 080 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 112.543018 - 0: The maximum resident set size (KB) = 640788 + 0: The total amount of wall time = 113.557258 + 0: The maximum resident set size (KB) = 644628 Test 080 control_wam PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_p8_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_p8_faster Checking test 081 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3335,14 +3335,14 @@ Checking test 081 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 175.126367 - 0: The maximum resident set size (KB) = 1556152 + 0: The total amount of wall time = 155.793975 + 0: The maximum resident set size (KB) = 1607292 Test 081 control_p8_faster PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/regional_control_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/regional_control_faster Checking test 082 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3353,56 +3353,56 @@ Checking test 082 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 278.784111 - 0: The maximum resident set size (KB) = 871376 + 0: The total amount of wall time = 268.939689 + 0: The maximum resident set size (KB) = 867084 Test 082 regional_control_faster PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 083 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 852.981556 - 0: The maximum resident set size (KB) = 1062012 + 0: The total amount of wall time = 853.817333 + 0: The maximum resident set size (KB) = 1020664 Test 083 rrfs_smoke_conus13km_hrrr_warm_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 084 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 489.596514 - 0: The maximum resident set size (KB) = 981808 + 0: The total amount of wall time = 485.543734 + 0: The maximum resident set size (KB) = 978080 Test 084 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/rrfs_conus13km_hrrr_warm_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/rrfs_conus13km_hrrr_warm_debug Checking test 085 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 761.233060 - 0: The maximum resident set size (KB) = 972720 + 0: The total amount of wall time = 767.479775 + 0: The maximum resident set size (KB) = 959724 Test 085 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_CubedSphereGrid_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_CubedSphereGrid_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_CubedSphereGrid_debug Checking test 086 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3429,334 +3429,334 @@ Checking test 086 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 153.263588 - 0: The maximum resident set size (KB) = 794472 + 0: The total amount of wall time = 152.680209 + 0: The maximum resident set size (KB) = 796368 Test 086 control_CubedSphereGrid_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_wrtGauss_netcdf_parallel_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_wrtGauss_netcdf_parallel_debug Checking test 087 control_wrtGauss_netcdf_parallel_debug results .... - Comparing sfcf000.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc .........OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 152.286602 - 0: The maximum resident set size (KB) = 785296 + 0: The total amount of wall time = 155.427311 + 0: The maximum resident set size (KB) = 793512 Test 087 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_stochy_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_stochy_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_stochy_debug Checking test 088 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 168.148137 - 0: The maximum resident set size (KB) = 799376 + 0: The total amount of wall time = 171.139592 + 0: The maximum resident set size (KB) = 800228 Test 088 control_stochy_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_lndp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_lndp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_lndp_debug Checking test 089 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 151.069573 - 0: The maximum resident set size (KB) = 796100 + 0: The total amount of wall time = 153.077568 + 0: The maximum resident set size (KB) = 791920 Test 089 control_lndp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_csawmg_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_csawmg_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_csawmg_debug Checking test 090 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 228.774025 - 0: The maximum resident set size (KB) = 844372 + 0: The total amount of wall time = 230.017483 + 0: The maximum resident set size (KB) = 845676 Test 090 control_csawmg_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_csawmgt_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_csawmgt_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_csawmgt_debug Checking test 091 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 220.719714 - 0: The maximum resident set size (KB) = 844312 + 0: The total amount of wall time = 237.911160 + 0: The maximum resident set size (KB) = 838680 Test 091 control_csawmgt_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_ras_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_ras_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_ras_debug Checking test 092 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 154.576774 - 0: The maximum resident set size (KB) = 760536 + 0: The total amount of wall time = 156.883905 + 0: The maximum resident set size (KB) = 801736 Test 092 control_ras_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_diag_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_diag_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_diag_debug Checking test 093 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 154.222996 - 0: The maximum resident set size (KB) = 854088 + 0: The total amount of wall time = 156.002415 + 0: The maximum resident set size (KB) = 859184 Test 093 control_diag_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_debug_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_debug_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_debug_p8 Checking test 094 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 167.639707 - 0: The maximum resident set size (KB) = 1624432 + 0: The total amount of wall time = 172.133444 + 0: The maximum resident set size (KB) = 1622956 Test 094 control_debug_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/regional_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/regional_debug Checking test 095 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 965.907659 - 0: The maximum resident set size (KB) = 888892 + 0: The total amount of wall time = 996.622884 + 0: The maximum resident set size (KB) = 886672 Test 095 regional_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/rap_control_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/rap_control_debug Checking test 096 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 272.953639 - 0: The maximum resident set size (KB) = 1170124 + 0: The total amount of wall time = 274.132073 + 0: The maximum resident set size (KB) = 1175696 Test 096 rap_control_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/hrrr_control_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/hrrr_control_debug Checking test 097 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 268.088270 - 0: The maximum resident set size (KB) = 1170180 + 0: The total amount of wall time = 279.896810 + 0: The maximum resident set size (KB) = 1176412 Test 097 hrrr_control_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/rap_unified_drag_suite_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/rap_unified_drag_suite_debug Checking test 098 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 286.167414 - 0: The maximum resident set size (KB) = 1165656 + 0: The total amount of wall time = 277.443344 + 0: The maximum resident set size (KB) = 1170952 Test 098 rap_unified_drag_suite_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_diag_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/rap_diag_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/rap_diag_debug Checking test 099 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 290.876766 - 0: The maximum resident set size (KB) = 1252644 + 0: The total amount of wall time = 292.319484 + 0: The maximum resident set size (KB) = 1259780 Test 099 rap_diag_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/rap_cires_ugwp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/rap_cires_ugwp_debug Checking test 100 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 283.167165 - 0: The maximum resident set size (KB) = 1172500 + 0: The total amount of wall time = 285.684599 + 0: The maximum resident set size (KB) = 1173080 Test 100 rap_cires_ugwp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/rap_unified_ugwp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/rap_unified_ugwp_debug Checking test 101 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 284.333320 - 0: The maximum resident set size (KB) = 1126184 + 0: The total amount of wall time = 289.887145 + 0: The maximum resident set size (KB) = 1173952 Test 101 rap_unified_ugwp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_lndp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/rap_lndp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/rap_lndp_debug Checking test 102 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 282.951402 - 0: The maximum resident set size (KB) = 1174764 + 0: The total amount of wall time = 278.164813 + 0: The maximum resident set size (KB) = 1180000 Test 102 rap_lndp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_flake_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/rap_flake_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/rap_flake_debug Checking test 103 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.450565 - 0: The maximum resident set size (KB) = 1178300 + 0: The total amount of wall time = 268.110474 + 0: The maximum resident set size (KB) = 1181056 Test 103 rap_flake_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_progcld_thompson_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/rap_progcld_thompson_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/rap_progcld_thompson_debug Checking test 104 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 272.915380 - 0: The maximum resident set size (KB) = 1175820 + 0: The total amount of wall time = 275.925155 + 0: The maximum resident set size (KB) = 1177176 Test 104 rap_progcld_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_noah_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/rap_noah_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/rap_noah_debug Checking test 105 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 266.866094 - 0: The maximum resident set size (KB) = 1173700 + 0: The total amount of wall time = 274.597800 + 0: The maximum resident set size (KB) = 1175120 Test 105 rap_noah_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_sfcdiff_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/rap_sfcdiff_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/rap_sfcdiff_debug Checking test 106 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.162454 - 0: The maximum resident set size (KB) = 1173564 + 0: The total amount of wall time = 276.971642 + 0: The maximum resident set size (KB) = 1172936 Test 106 rap_sfcdiff_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/rap_noah_sfcdiff_cires_ugwp_debug Checking test 107 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 468.227801 - 0: The maximum resident set size (KB) = 1172860 + 0: The total amount of wall time = 454.416558 + 0: The maximum resident set size (KB) = 1178048 Test 107 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_v1beta_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/rrfs_v1beta_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/rrfs_v1beta_debug Checking test 108 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.840391 - 0: The maximum resident set size (KB) = 1168572 + 0: The total amount of wall time = 270.681522 + 0: The maximum resident set size (KB) = 1170540 Test 108 rrfs_v1beta_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_wam_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_wam_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_wam_debug Checking test 109 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 280.598730 - 0: The maximum resident set size (KB) = 520932 + 0: The total amount of wall time = 285.779513 + 0: The maximum resident set size (KB) = 530836 Test 109 control_wam_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3767,14 +3767,14 @@ Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 250.502868 - 0: The maximum resident set size (KB) = 1084972 + 0: The total amount of wall time = 251.378107 + 0: The maximum resident set size (KB) = 1023688 Test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/rap_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/rap_control_dyn32_phy32 Checking test 111 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3821,14 +3821,14 @@ Checking test 111 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 379.809945 - 0: The maximum resident set size (KB) = 1006776 + 0: The total amount of wall time = 380.812331 + 0: The maximum resident set size (KB) = 945928 Test 111 rap_control_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/hrrr_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/hrrr_control_dyn32_phy32 Checking test 112 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3875,14 +3875,14 @@ Checking test 112 hrrr_control_dyn32_phy32 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 = 199.178535 - 0: The maximum resident set size (KB) = 961416 + 0: The total amount of wall time = 196.422102 + 0: The maximum resident set size (KB) = 956028 Test 112 hrrr_control_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/rap_2threads_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/rap_2threads_dyn32_phy32 Checking test 113 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3929,14 +3929,14 @@ Checking test 113 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 399.128243 - 0: The maximum resident set size (KB) = 1021828 + 0: The total amount of wall time = 399.684976 + 0: The maximum resident set size (KB) = 1028412 Test 113 rap_2threads_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/hrrr_control_2threads_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/hrrr_control_2threads_dyn32_phy32 Checking test 114 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3983,14 +3983,14 @@ Checking test 114 hrrr_control_2threads_dyn32_phy32 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 = 204.638721 - 0: The maximum resident set size (KB) = 1002124 + 0: The total amount of wall time = 205.144022 + 0: The maximum resident set size (KB) = 999624 Test 114 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/hrrr_control_decomp_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/hrrr_control_decomp_dyn32_phy32 Checking test 115 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4037,14 +4037,14 @@ Checking test 115 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 208.639310 - 0: The maximum resident set size (KB) = 909056 + 0: The total amount of wall time = 207.534968 + 0: The maximum resident set size (KB) = 909572 Test 115 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/rap_restart_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/rap_restart_dyn32_phy32 Checking test 116 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4083,14 +4083,14 @@ Checking test 116 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 286.308773 - 0: The maximum resident set size (KB) = 904412 + 0: The total amount of wall time = 281.718226 + 0: The maximum resident set size (KB) = 947168 Test 116 rap_restart_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/hrrr_control_restart_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/hrrr_control_restart_dyn32_phy32 Checking test 117 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4129,14 +4129,14 @@ Checking test 117 hrrr_control_restart_dyn32_phy32 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 = 103.850818 - 0: The maximum resident set size (KB) = 867000 + 0: The total amount of wall time = 103.468305 + 0: The maximum resident set size (KB) = 868312 Test 117 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_dyn64_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/rap_control_dyn64_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/rap_control_dyn64_phy32 Checking test 118 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4183,81 +4183,81 @@ Checking test 118 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 242.055018 - 0: The maximum resident set size (KB) = 974100 + 0: The total amount of wall time = 244.724130 + 0: The maximum resident set size (KB) = 969340 Test 118 rap_control_dyn64_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_debug_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/rap_control_debug_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/rap_control_debug_dyn32_phy32 Checking test 119 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.311384 - 0: The maximum resident set size (KB) = 1012804 + 0: The total amount of wall time = 272.973185 + 0: The maximum resident set size (KB) = 1055572 Test 119 rap_control_debug_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/hrrr_control_debug_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/hrrr_control_debug_dyn32_phy32 Checking test 120 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 269.625135 - 0: The maximum resident set size (KB) = 1061904 + 0: The total amount of wall time = 270.788243 + 0: The maximum resident set size (KB) = 1054680 Test 120 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_debug_dyn64_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/rap_control_dyn64_phy32_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/rap_control_dyn64_phy32_debug Checking test 121 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.485300 - 0: The maximum resident set size (KB) = 1100396 + 0: The total amount of wall time = 280.698987 + 0: The maximum resident set size (KB) = 1099084 Test 121 rap_control_dyn64_phy32_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/hafs_regional_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/hafs_regional_atm Checking test 122 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 267.592700 - 0: The maximum resident set size (KB) = 1052944 + 0: The total amount of wall time = 263.703440 + 0: The maximum resident set size (KB) = 1058076 Test 122 hafs_regional_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/hafs_regional_atm_thompson_gfdlsf +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/hafs_regional_atm_thompson_gfdlsf Checking test 123 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 407.145543 - 0: The maximum resident set size (KB) = 1360520 + 0: The total amount of wall time = 383.003979 + 0: The maximum resident set size (KB) = 1421836 Test 123 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm_ocn -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/hafs_regional_atm_ocn +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/hafs_regional_atm_ocn Checking test 124 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4266,14 +4266,14 @@ Checking test 124 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 385.467713 - 0: The maximum resident set size (KB) = 1222656 + 0: The total amount of wall time = 380.597723 + 0: The maximum resident set size (KB) = 1226584 Test 124 hafs_regional_atm_ocn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm_wav -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/hafs_regional_atm_wav +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/hafs_regional_atm_wav Checking test 125 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4282,14 +4282,14 @@ Checking test 125 hafs_regional_atm_wav 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 = 724.443383 - 0: The maximum resident set size (KB) = 1260164 + 0: The total amount of wall time = 720.092396 + 0: The maximum resident set size (KB) = 1256404 Test 125 hafs_regional_atm_wav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm_ocn_wav -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/hafs_regional_atm_ocn_wav +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/hafs_regional_atm_ocn_wav Checking test 126 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4300,28 +4300,28 @@ Checking test 126 hafs_regional_atm_ocn_wav 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 = 823.991390 - 0: The maximum resident set size (KB) = 1284140 + 0: The total amount of wall time = 827.120205 + 0: The maximum resident set size (KB) = 1274144 Test 126 hafs_regional_atm_ocn_wav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/hafs_regional_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/hafs_regional_1nest_atm Checking test 127 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 364.275150 - 0: The maximum resident set size (KB) = 501552 + 0: The total amount of wall time = 361.301101 + 0: The maximum resident set size (KB) = 508512 Test 127 hafs_regional_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/hafs_regional_telescopic_2nests_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/hafs_regional_telescopic_2nests_atm Checking test 128 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4330,28 +4330,28 @@ Checking test 128 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 414.099673 - 0: The maximum resident set size (KB) = 514988 + 0: The total amount of wall time = 411.412625 + 0: The maximum resident set size (KB) = 469796 Test 128 hafs_regional_telescopic_2nests_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_global_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/hafs_global_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/hafs_global_1nest_atm Checking test 129 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 179.439476 - 0: The maximum resident set size (KB) = 354308 + 0: The total amount of wall time = 172.337199 + 0: The maximum resident set size (KB) = 349212 Test 129 hafs_global_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_global_multiple_4nests_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/hafs_global_multiple_4nests_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/hafs_global_multiple_4nests_atm Checking test 130 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4369,14 +4369,14 @@ Checking test 130 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 461.146566 - 0: The maximum resident set size (KB) = 429188 + 0: The total amount of wall time = 458.323112 + 0: The maximum resident set size (KB) = 428328 Test 130 hafs_global_multiple_4nests_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/hafs_regional_specified_moving_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/hafs_regional_specified_moving_1nest_atm Checking test 131 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4385,28 +4385,28 @@ Checking test 131 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 232.136499 - 0: The maximum resident set size (KB) = 520516 + 0: The total amount of wall time = 231.485263 + 0: The maximum resident set size (KB) = 520420 Test 131 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/hafs_regional_storm_following_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/hafs_regional_storm_following_1nest_atm Checking test 132 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 219.304757 - 0: The maximum resident set size (KB) = 523640 + 0: The total amount of wall time = 218.264552 + 0: The maximum resident set size (KB) = 523596 Test 132 hafs_regional_storm_following_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/hafs_regional_storm_following_1nest_atm_ocn +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/hafs_regional_storm_following_1nest_atm_ocn Checking test 133 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4415,42 +4415,42 @@ Checking test 133 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 290.505740 - 0: The maximum resident set size (KB) = 529292 + 0: The total amount of wall time = 293.692967 + 0: The maximum resident set size (KB) = 563648 Test 133 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_global_storm_following_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/hafs_global_storm_following_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/hafs_global_storm_following_1nest_atm Checking test 134 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 68.920329 - 0: The maximum resident set size (KB) = 372788 + 0: The total amount of wall time = 71.165808 + 0: The maximum resident set size (KB) = 371620 Test 134 hafs_global_storm_following_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 752.966485 - 0: The maximum resident set size (KB) = 589140 + 0: The total amount of wall time = 753.054826 + 0: The maximum resident set size (KB) = 589548 Test 135 hafs_regional_storm_following_1nest_atm_ocn_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 136 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4461,14 +4461,14 @@ Checking test 136 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 534.720730 - 0: The maximum resident set size (KB) = 620564 + 0: The total amount of wall time = 547.069037 + 0: The maximum resident set size (KB) = 571272 Test 136 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_docn -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/hafs_regional_docn +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/hafs_regional_docn Checking test 137 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4476,14 +4476,14 @@ Checking test 137 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 359.773888 - 0: The maximum resident set size (KB) = 1233552 + 0: The total amount of wall time = 361.858626 + 0: The maximum resident set size (KB) = 1238864 Test 137 hafs_regional_docn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_docn_oisst -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/hafs_regional_docn_oisst +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/hafs_regional_docn_oisst Checking test 138 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4491,131 +4491,131 @@ Checking test 138 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 363.387018 - 0: The maximum resident set size (KB) = 1222960 + 0: The total amount of wall time = 364.581337 + 0: The maximum resident set size (KB) = 1220604 Test 138 hafs_regional_docn_oisst PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_datm_cdeps -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/hafs_regional_datm_cdeps +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/hafs_regional_datm_cdeps Checking test 139 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 916.279175 - 0: The maximum resident set size (KB) = 1042180 + 0: The total amount of wall time = 923.593239 + 0: The maximum resident set size (KB) = 1040460 Test 139 hafs_regional_datm_cdeps PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/datm_cdeps_control_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/datm_cdeps_control_cfsr Checking test 140 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 144.382804 - 0: The maximum resident set size (KB) = 1076804 + 0: The total amount of wall time = 148.405414 + 0: The maximum resident set size (KB) = 1050204 Test 140 datm_cdeps_control_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/datm_cdeps_restart_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/datm_cdeps_restart_cfsr Checking test 141 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 94.385635 - 0: The maximum resident set size (KB) = 996456 + 0: The total amount of wall time = 90.622583 + 0: The maximum resident set size (KB) = 1009616 Test 141 datm_cdeps_restart_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_control_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/datm_cdeps_control_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/datm_cdeps_control_gefs Checking test 142 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 143.208487 - 0: The maximum resident set size (KB) = 968136 + 0: The total amount of wall time = 139.968104 + 0: The maximum resident set size (KB) = 964356 Test 142 datm_cdeps_control_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_iau_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/datm_cdeps_iau_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/datm_cdeps_iau_gefs Checking test 143 datm_cdeps_iau_gefs 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.211318 - 0: The maximum resident set size (KB) = 962020 + 0: The total amount of wall time = 148.072671 + 0: The maximum resident set size (KB) = 976096 Test 143 datm_cdeps_iau_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_stochy_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/datm_cdeps_stochy_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/datm_cdeps_stochy_gefs Checking test 144 datm_cdeps_stochy_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 144.553865 - 0: The maximum resident set size (KB) = 967428 + 0: The total amount of wall time = 147.216044 + 0: The maximum resident set size (KB) = 977088 Test 144 datm_cdeps_stochy_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_ciceC_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/datm_cdeps_ciceC_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/datm_cdeps_ciceC_cfsr Checking test 145 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.058168 - 0: The maximum resident set size (KB) = 1066188 + 0: The total amount of wall time = 146.722938 + 0: The maximum resident set size (KB) = 1064292 Test 145 datm_cdeps_ciceC_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_bulk_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/datm_cdeps_bulk_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/datm_cdeps_bulk_cfsr Checking test 146 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.694400 - 0: The maximum resident set size (KB) = 1067248 + 0: The total amount of wall time = 148.122276 + 0: The maximum resident set size (KB) = 1069396 Test 146 datm_cdeps_bulk_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_bulk_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/datm_cdeps_bulk_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/datm_cdeps_bulk_gefs Checking test 147 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 142.508310 - 0: The maximum resident set size (KB) = 973276 + 0: The total amount of wall time = 141.722251 + 0: The maximum resident set size (KB) = 950484 Test 147 datm_cdeps_bulk_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_mx025_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/datm_cdeps_mx025_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/datm_cdeps_mx025_cfsr Checking test 148 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4624,14 +4624,14 @@ Checking test 148 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 441.374050 - 0: The maximum resident set size (KB) = 874480 + 0: The total amount of wall time = 441.197443 + 0: The maximum resident set size (KB) = 879092 Test 148 datm_cdeps_mx025_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_mx025_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/datm_cdeps_mx025_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/datm_cdeps_mx025_gefs Checking test 149 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4640,77 +4640,77 @@ Checking test 149 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 436.011573 - 0: The maximum resident set size (KB) = 939068 + 0: The total amount of wall time = 436.153364 + 0: The maximum resident set size (KB) = 934888 Test 149 datm_cdeps_mx025_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/datm_cdeps_multiple_files_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/datm_cdeps_multiple_files_cfsr Checking test 150 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.230839 - 0: The maximum resident set size (KB) = 1068748 + 0: The total amount of wall time = 151.169807 + 0: The maximum resident set size (KB) = 1058852 Test 150 datm_cdeps_multiple_files_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/datm_cdeps_3072x1536_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/datm_cdeps_3072x1536_cfsr Checking test 151 datm_cdeps_3072x1536_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 202.673803 - 0: The maximum resident set size (KB) = 2308180 + 0: The total amount of wall time = 198.275763 + 0: The maximum resident set size (KB) = 2366572 Test 151 datm_cdeps_3072x1536_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_gfs -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/datm_cdeps_gfs +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/datm_cdeps_gfs Checking test 152 datm_cdeps_gfs results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 208.852830 - 0: The maximum resident set size (KB) = 2306476 + 0: The total amount of wall time = 204.471470 + 0: The maximum resident set size (KB) = 2337732 Test 152 datm_cdeps_gfs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_debug_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/datm_cdeps_debug_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/datm_cdeps_debug_cfsr Checking test 153 datm_cdeps_debug_cfsr results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 352.897100 - 0: The maximum resident set size (KB) = 1012164 + 0: The total amount of wall time = 356.859854 + 0: The maximum resident set size (KB) = 1010136 Test 153 datm_cdeps_debug_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_control_cfsr_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/datm_cdeps_control_cfsr_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/datm_cdeps_control_cfsr_faster Checking test 154 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.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.144837 - 0: The maximum resident set size (KB) = 1070156 + 0: The total amount of wall time = 146.319895 + 0: The maximum resident set size (KB) = 1061140 Test 154 datm_cdeps_control_cfsr_faster PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_lnd_gswp3 -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/datm_cdeps_lnd_gswp3 +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/datm_cdeps_lnd_gswp3 Checking test 155 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4719,14 +4719,14 @@ Checking test 155 datm_cdeps_lnd_gswp3 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.248883 - 0: The maximum resident set size (KB) = 266864 + 0: The total amount of wall time = 7.497569 + 0: The maximum resident set size (KB) = 257956 Test 155 datm_cdeps_lnd_gswp3 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_lnd_gswp3 -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/datm_cdeps_lnd_gswp3_rst +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/datm_cdeps_lnd_gswp3_rst Checking test 156 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4735,14 +4735,14 @@ Checking test 156 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 44.036898 - 0: The maximum resident set size (KB) = 266008 + 0: The total amount of wall time = 12.948348 + 0: The maximum resident set size (KB) = 263496 Test 156 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8_atmlnd_sbs -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_p8_atmlnd_sbs +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_p8_atmlnd_sbs Checking test 157 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4827,14 +4827,14 @@ Checking test 157 control_p8_atmlnd_sbs 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 = 209.564368 - 0: The maximum resident set size (KB) = 1612880 + 0: The total amount of wall time = 203.300736 + 0: The maximum resident set size (KB) = 1614288 Test 157 control_p8_atmlnd_sbs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/atmwav_control_noaero_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/atmwav_control_noaero_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/atmwav_control_noaero_p8 Checking test 158 atmwav_control_noaero_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4877,14 +4877,14 @@ Checking test 158 atmwav_control_noaero_p8 results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 96.770942 - 0: The maximum resident set size (KB) = 1633536 + 0: The total amount of wall time = 92.613483 + 0: The maximum resident set size (KB) = 1643576 Test 158 atmwav_control_noaero_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_atmwav -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/control_atmwav +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_atmwav Checking test 159 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4928,14 +4928,14 @@ Checking test 159 control_atmwav 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.527864 - 0: The maximum resident set size (KB) = 657272 + 0: The total amount of wall time = 87.502318 + 0: The maximum resident set size (KB) = 658696 Test 159 control_atmwav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/atmaero_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/atmaero_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/atmaero_control_p8 Checking test 160 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4979,14 +4979,14 @@ Checking test 160 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 240.471884 - 0: The maximum resident set size (KB) = 2977996 + 0: The total amount of wall time = 229.869278 + 0: The maximum resident set size (KB) = 2977032 -Test 160 atmaero_control_p8 PASS Tries: 2 +Test 160 atmaero_control_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/atmaero_control_p8_rad -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/atmaero_control_p8_rad +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/atmaero_control_p8_rad Checking test 161 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5030,14 +5030,14 @@ Checking test 161 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 282.830810 - 0: The maximum resident set size (KB) = 3047088 + 0: The total amount of wall time = 281.366368 + 0: The maximum resident set size (KB) = 3050536 Test 161 atmaero_control_p8_rad PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/atmaero_control_p8_rad_micro -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/atmaero_control_p8_rad_micro +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/atmaero_control_p8_rad_micro Checking test 162 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5081,14 +5081,14 @@ Checking test 162 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 290.964668 - 0: The maximum resident set size (KB) = 3061264 + 0: The total amount of wall time = 287.756486 + 0: The maximum resident set size (KB) = 2986740 Test 162 atmaero_control_p8_rad_micro PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_atmaq -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/regional_atmaq +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/regional_atmaq Checking test 163 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5104,14 +5104,14 @@ Checking test 163 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 635.627961 - 0: The maximum resident set size (KB) = 1485680 + 0: The total amount of wall time = 625.378284 + 0: The maximum resident set size (KB) = 1476840 Test 163 regional_atmaq PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_atmaq_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/regional_atmaq_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/regional_atmaq_debug Checking test 164 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5125,14 +5125,14 @@ Checking test 164 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1220.122870 - 0: The maximum resident set size (KB) = 1406840 + 0: The total amount of wall time = 1219.136083 + 0: The maximum resident set size (KB) = 1402028 Test 164 regional_atmaq_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_atmaq_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1690/stmp/jongkim/FV3_RT/rt_98307/regional_atmaq_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/regional_atmaq_faster Checking test 165 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5148,12 +5148,12 @@ Checking test 165 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 557.263850 - 0: The maximum resident set size (KB) = 1470316 + 0: The total amount of wall time = 549.968594 + 0: The maximum resident set size (KB) = 1483356 Test 165 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Thu Apr 13 22:56:56 CDT 2023 -Elapsed time: 01h:13m:54s. Have a nice day! +Sun Apr 16 09:48:37 CDT 2023 +Elapsed time: 01h:16m:50s. Have a nice day! diff --git a/tests/RegressionTests_wcoss2.intel.log b/tests/RegressionTests_wcoss2.intel.log index b99ea5f4674..bc0173e8e68 100644 --- a/tests/RegressionTests_wcoss2.intel.log +++ b/tests/RegressionTests_wcoss2.intel.log @@ -1,34 +1,34 @@ -Fri Apr 14 14:51:36 UTC 2023 +Mon Apr 17 11:27:20 UTC 2023 Start Regression test -Compile 001 elapsed time 2095 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 592 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 1418 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 505 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 005 elapsed time 505 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 670 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 536 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 008 elapsed time 1552 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 009 elapsed time 1221 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 939 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 785 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 604 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 013 elapsed time 841 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 968 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 015 elapsed time 593 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 618 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 017 elapsed time 241 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 789 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 019 elapsed time 211 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 796 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 930 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 022 elapsed time 480 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 508 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 024 elapsed time 546 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 025 elapsed time 858 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 586 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 589 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 535 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 1017 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 005 elapsed time 494 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 1395 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 1274 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 1527 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 009 elapsed time 466 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 1086 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 568 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 268 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 628 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 014 elapsed time 670 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 979 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 599 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 017 elapsed time 459 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 846 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 019 elapsed time 866 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 654 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 840 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 022 elapsed time 628 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 853 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 024 elapsed time 551 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 025 elapsed time 772 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8_mixedmode -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/cpld_control_p8_mixedmode +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -93,14 +93,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 335.367384 -The maximum resident set size (KB) = 2953624 +The total amount of wall time = 343.192582 +The maximum resident set size (KB) = 2954624 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/cpld_control_p8 Checking test 002 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -165,14 +165,14 @@ Checking test 002 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 391.703825 -The maximum resident set size (KB) = 2988548 +The total amount of wall time = 387.757702 +The maximum resident set size (KB) = 2983728 Test 002 cpld_control_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/cpld_restart_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/cpld_restart_p8 Checking test 003 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -225,14 +225,14 @@ Checking test 003 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 230.729633 -The maximum resident set size (KB) = 2874880 +The total amount of wall time = 232.856462 +The maximum resident set size (KB) = 2867608 Test 003 cpld_restart_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/cpld_control_qr_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/cpld_control_qr_p8 Checking test 004 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -297,14 +297,14 @@ Checking test 004 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 393.676704 -The maximum resident set size (KB) = 2993308 +The total amount of wall time = 391.087089 +The maximum resident set size (KB) = 3004400 Test 004 cpld_control_qr_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/cpld_restart_qr_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/cpld_restart_qr_p8 Checking test 005 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -357,14 +357,14 @@ Checking test 005 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 233.729312 -The maximum resident set size (KB) = 2881496 +The total amount of wall time = 237.274740 +The maximum resident set size (KB) = 2882348 Test 005 cpld_restart_qr_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/cpld_2threads_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/cpld_2threads_p8 Checking test 006 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -417,14 +417,14 @@ Checking test 006 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 374.434142 -The maximum resident set size (KB) = 3285332 +The total amount of wall time = 375.721952 +The maximum resident set size (KB) = 3287476 Test 006 cpld_2threads_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/cpld_decomp_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/cpld_decomp_p8 Checking test 007 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -477,14 +477,14 @@ Checking test 007 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 380.940164 -The maximum resident set size (KB) = 2979688 +The total amount of wall time = 386.495609 +The maximum resident set size (KB) = 2987540 Test 007 cpld_decomp_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/cpld_mpi_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/cpld_mpi_p8 Checking test 008 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -537,14 +537,14 @@ Checking test 008 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 319.955770 -The maximum resident set size (KB) = 2917412 +The total amount of wall time = 323.190535 +The maximum resident set size (KB) = 2919100 Test 008 cpld_mpi_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_ciceC_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/cpld_control_ciceC_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/cpld_control_ciceC_p8 Checking test 009 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -609,14 +609,14 @@ Checking test 009 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 387.651871 -The maximum resident set size (KB) = 2984684 +The total amount of wall time = 388.732699 +The maximum resident set size (KB) = 2983424 Test 009 cpld_control_ciceC_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_bmark_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/cpld_bmark_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/cpld_bmark_p8 Checking test 010 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -664,14 +664,14 @@ Checking test 010 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 947.861559 -The maximum resident set size (KB) = 3935828 +The total amount of wall time = 939.639314 +The maximum resident set size (KB) = 3916744 Test 010 cpld_bmark_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_bmark_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/cpld_restart_bmark_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/cpld_restart_bmark_p8 Checking test 011 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -719,14 +719,14 @@ Checking test 011 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 651.161772 -The maximum resident set size (KB) = 3894736 +The total amount of wall time = 673.037764 +The maximum resident set size (KB) = 3892252 Test 011 cpld_restart_bmark_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/cpld_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/cpld_control_noaero_p8 Checking test 012 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -790,14 +790,14 @@ Checking test 012 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 282.598859 -The maximum resident set size (KB) = 1578536 +The total amount of wall time = 280.635387 +The maximum resident set size (KB) = 1582772 Test 012 cpld_control_noaero_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/cpld_control_nowave_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/cpld_control_nowave_noaero_p8 Checking test 013 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -859,14 +859,14 @@ Checking test 013 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 301.325997 -The maximum resident set size (KB) = 1634356 +The total amount of wall time = 298.872754 +The maximum resident set size (KB) = 1634984 Test 013 cpld_control_nowave_noaero_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/cpld_control_noaero_p8_agrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/cpld_control_noaero_p8_agrid Checking test 014 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -928,14 +928,14 @@ Checking test 014 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 308.132527 -The maximum resident set size (KB) = 1627268 +The total amount of wall time = 310.011738 +The maximum resident set size (KB) = 1627436 Test 014 cpld_control_noaero_p8_agrid PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/cpld_control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/cpld_control_c48 Checking test 015 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -985,14 +985,14 @@ Checking test 015 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 436.213971 -The maximum resident set size (KB) = 2645208 +The total amount of wall time = 435.122276 +The maximum resident set size (KB) = 2639544 Test 015 cpld_control_c48 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/cpld_warmstart_c48 Checking test 016 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1042,14 +1042,14 @@ Checking test 016 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 123.037030 -The maximum resident set size (KB) = 2653132 +The total amount of wall time = 122.839800 +The maximum resident set size (KB) = 2655720 Test 016 cpld_warmstart_c48 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/cpld_restart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/cpld_restart_c48 Checking test 017 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1099,14 +1099,14 @@ Checking test 017 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 72.287334 -The maximum resident set size (KB) = 2075064 +The total amount of wall time = 68.031903 +The maximum resident set size (KB) = 2070112 Test 017 cpld_restart_c48 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/cpld_control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/cpld_control_p8_faster Checking test 018 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1171,14 +1171,14 @@ Checking test 018 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 382.090286 -The maximum resident set size (KB) = 2980736 +The total amount of wall time = 380.150639 +The maximum resident set size (KB) = 2981224 Test 018 cpld_control_p8_faster PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_CubedSphereGrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/control_CubedSphereGrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/control_CubedSphereGrid Checking test 019 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1205,14 +1205,14 @@ Checking test 019 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 143.535538 -The maximum resident set size (KB) = 513880 +The total amount of wall time = 133.139191 +The maximum resident set size (KB) = 518480 Test 019 control_CubedSphereGrid PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_latlon -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/control_latlon +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/control_latlon Checking test 020 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1223,14 +1223,14 @@ Checking test 020 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 143.437786 -The maximum resident set size (KB) = 516404 +The total amount of wall time = 140.703711 +The maximum resident set size (KB) = 517740 Test 020 control_latlon PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/control_wrtGauss_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/control_wrtGauss_netcdf_parallel Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1241,14 +1241,14 @@ Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.901775 -The maximum resident set size (KB) = 518760 +The total amount of wall time = 141.522992 +The maximum resident set size (KB) = 513688 Test 021 control_wrtGauss_netcdf_parallel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/control_c48 Checking test 022 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1287,14 +1287,14 @@ Checking test 022 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 329.856609 -The maximum resident set size (KB) = 677324 +The total amount of wall time = 328.580773 +The maximum resident set size (KB) = 674568 Test 022 control_c48 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_c192 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/control_c192 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/control_c192 Checking test 023 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1305,14 +1305,14 @@ Checking test 023 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 548.921997 -The maximum resident set size (KB) = 616896 +The total amount of wall time = 542.667158 +The maximum resident set size (KB) = 620620 Test 023 control_c192 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_c384 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/control_c384 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/control_c384 Checking test 024 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1323,14 +1323,14 @@ Checking test 024 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 569.356607 -The maximum resident set size (KB) = 934524 +The total amount of wall time = 575.773876 +The maximum resident set size (KB) = 931396 Test 024 control_c384 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_c384gdas -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/control_c384gdas +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/control_c384gdas Checking test 025 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1373,14 +1373,14 @@ Checking test 025 control_c384gdas 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 = 497.700820 -The maximum resident set size (KB) = 1060480 +The total amount of wall time = 501.632122 +The maximum resident set size (KB) = 1058928 Test 025 control_c384gdas PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/control_stochy Checking test 026 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1391,28 +1391,28 @@ Checking test 026 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 109.610515 -The maximum resident set size (KB) = 520180 +The total amount of wall time = 94.697382 +The maximum resident set size (KB) = 522076 Test 026 control_stochy PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/control_stochy_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/control_stochy_restart Checking test 027 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 49.370311 -The maximum resident set size (KB) = 290160 +The total amount of wall time = 49.293766 +The maximum resident set size (KB) = 292192 Test 027 control_stochy_restart PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/control_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/control_lndp Checking test 028 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1423,14 +1423,14 @@ Checking test 028 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 103.374053 -The maximum resident set size (KB) = 520912 +The total amount of wall time = 88.847566 +The maximum resident set size (KB) = 518904 Test 028 control_lndp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_iovr4 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/control_iovr4 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/control_iovr4 Checking test 029 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1445,14 +1445,14 @@ Checking test 029 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 147.036322 -The maximum resident set size (KB) = 518868 +The total amount of wall time = 141.563104 +The maximum resident set size (KB) = 518400 Test 029 control_iovr4 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_iovr5 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/control_iovr5 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/control_iovr5 Checking test 030 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1467,14 +1467,14 @@ Checking test 030 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 150.071698 -The maximum resident set size (KB) = 517396 +The total amount of wall time = 137.121920 +The maximum resident set size (KB) = 520744 Test 030 control_iovr5 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/control_p8 Checking test 031 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1521,14 +1521,14 @@ Checking test 031 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 181.481435 -The maximum resident set size (KB) = 1487412 +The total amount of wall time = 182.532475 +The maximum resident set size (KB) = 1487080 Test 031 control_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/control_restart_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/control_restart_p8 Checking test 032 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1567,14 +1567,14 @@ Checking test 032 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 102.937434 -The maximum resident set size (KB) = 658112 +The total amount of wall time = 105.389845 +The maximum resident set size (KB) = 658496 Test 032 control_restart_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/control_qr_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/control_qr_p8 Checking test 033 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1621,14 +1621,14 @@ Checking test 033 control_qr_p8 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 = 177.207235 -The maximum resident set size (KB) = 1500616 +The total amount of wall time = 181.183209 +The maximum resident set size (KB) = 1491644 Test 033 control_qr_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/control_restart_qr_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/control_restart_qr_p8 Checking test 034 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1667,14 +1667,14 @@ Checking test 034 control_restart_qr_p8 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.911057 -The maximum resident set size (KB) = 666632 +The total amount of wall time = 110.605341 +The maximum resident set size (KB) = 670248 Test 034 control_restart_qr_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/control_decomp_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/control_decomp_p8 Checking test 035 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1717,14 +1717,14 @@ Checking test 035 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 183.417479 -The maximum resident set size (KB) = 1485732 +The total amount of wall time = 186.295949 +The maximum resident set size (KB) = 1480080 Test 035 control_decomp_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/control_2threads_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/control_2threads_p8 Checking test 036 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1767,14 +1767,14 @@ Checking test 036 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 158.284189 -The maximum resident set size (KB) = 1569196 +The total amount of wall time = 159.332600 +The maximum resident set size (KB) = 1570172 Test 036 control_2threads_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/control_p8_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/control_p8_lndp Checking test 037 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1793,14 +1793,14 @@ Checking test 037 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 323.884728 -The maximum resident set size (KB) = 1492232 +The total amount of wall time = 324.694507 +The maximum resident set size (KB) = 1492480 Test 037 control_p8_lndp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8_rrtmgp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/control_p8_rrtmgp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/control_p8_rrtmgp Checking test 038 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1847,14 +1847,14 @@ Checking test 038 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 235.683532 -The maximum resident set size (KB) = 1547512 +The total amount of wall time = 238.878419 +The maximum resident set size (KB) = 1545848 Test 038 control_p8_rrtmgp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8_mynn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/control_p8_mynn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/control_p8_mynn Checking test 039 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1901,14 +1901,14 @@ Checking test 039 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 181.158989 -The maximum resident set size (KB) = 1486196 +The total amount of wall time = 183.481944 +The maximum resident set size (KB) = 1493980 Test 039 control_p8_mynn PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/merra2_thompson -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/merra2_thompson +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/merra2_thompson Checking test 040 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1955,14 +1955,14 @@ Checking test 040 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 206.407393 -The maximum resident set size (KB) = 1495268 +The total amount of wall time = 206.776531 +The maximum resident set size (KB) = 1500312 Test 040 merra2_thompson PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/regional_control Checking test 041 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1973,28 +1973,28 @@ Checking test 041 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 287.807020 -The maximum resident set size (KB) = 659528 +The total amount of wall time = 291.866044 +The maximum resident set size (KB) = 658368 Test 041 regional_control PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/regional_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/regional_restart Checking test 042 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 162.438271 -The maximum resident set size (KB) = 655248 +The total amount of wall time = 200.614776 +The maximum resident set size (KB) = 654204 Test 042 regional_restart PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/regional_control_qr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/regional_control_qr Checking test 043 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2005,28 +2005,28 @@ Checking test 043 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 290.624764 -The maximum resident set size (KB) = 654116 +The total amount of wall time = 292.518709 +The maximum resident set size (KB) = 654156 Test 043 regional_control_qr PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/regional_restart_qr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/regional_restart_qr Checking test 044 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 165.269314 -The maximum resident set size (KB) = 657236 +The total amount of wall time = 194.615542 +The maximum resident set size (KB) = 654604 Test 044 regional_restart_qr PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/regional_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/regional_decomp Checking test 045 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2037,14 +2037,14 @@ Checking test 045 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 306.008168 -The maximum resident set size (KB) = 655220 +The total amount of wall time = 305.135814 +The maximum resident set size (KB) = 655072 Test 045 regional_decomp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/regional_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/regional_2threads Checking test 046 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2055,14 +2055,14 @@ Checking test 046 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 179.272526 -The maximum resident set size (KB) = 698312 +The total amount of wall time = 177.298519 +The maximum resident set size (KB) = 699948 Test 046 regional_2threads PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_noquilt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/regional_noquilt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/regional_noquilt Checking test 047 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2070,28 +2070,28 @@ Checking test 047 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 316.964622 -The maximum resident set size (KB) = 650040 +The total amount of wall time = 315.292576 +The maximum resident set size (KB) = 651544 Test 047 regional_noquilt PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/regional_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/regional_netcdf_parallel Checking test 048 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK -The total amount of wall time = 288.181489 -The maximum resident set size (KB) = 651080 +The total amount of wall time = 293.403765 +The maximum resident set size (KB) = 651352 Test 048 regional_netcdf_parallel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/regional_2dwrtdecomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/regional_2dwrtdecomp Checking test 049 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2102,14 +2102,14 @@ Checking test 049 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 290.926232 -The maximum resident set size (KB) = 657648 +The total amount of wall time = 291.860041 +The maximum resident set size (KB) = 654020 Test 049 regional_2dwrtdecomp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/fv3_regional_wofs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/regional_wofs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/regional_wofs Checking test 050 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2120,14 +2120,14 @@ Checking test 050 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 374.346717 -The maximum resident set size (KB) = 340796 +The total amount of wall time = 365.525731 +The maximum resident set size (KB) = 340104 Test 050 regional_wofs PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/rap_control Checking test 051 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2174,14 +2174,14 @@ Checking test 051 rap_control results .... 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.370158 -The maximum resident set size (KB) = 896516 +The total amount of wall time = 458.293565 +The maximum resident set size (KB) = 899260 Test 051 rap_control PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/regional_spp_sppt_shum_skeb +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/regional_spp_sppt_shum_skeb Checking test 052 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2192,14 +2192,14 @@ Checking test 052 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 244.142084 -The maximum resident set size (KB) = 1005284 +The total amount of wall time = 252.728022 +The maximum resident set size (KB) = 989652 Test 052 regional_spp_sppt_shum_skeb PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/rap_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/rap_decomp Checking test 053 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2246,14 +2246,14 @@ Checking test 053 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 430.739220 -The maximum resident set size (KB) = 897552 +The total amount of wall time = 480.579993 +The maximum resident set size (KB) = 897244 Test 053 rap_decomp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/rap_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/rap_2threads Checking test 054 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2300,14 +2300,14 @@ Checking test 054 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 386.697507 -The maximum resident set size (KB) = 972072 +The total amount of wall time = 403.442944 +The maximum resident set size (KB) = 973512 Test 054 rap_2threads PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/rap_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/rap_restart Checking test 055 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2346,14 +2346,14 @@ Checking test 055 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 214.072262 -The maximum resident set size (KB) = 652084 +The total amount of wall time = 215.545112 +The maximum resident set size (KB) = 649992 Test 055 rap_restart PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/rap_sfcdiff Checking test 056 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2400,14 +2400,14 @@ Checking test 056 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 420.288199 -The maximum resident set size (KB) = 899344 +The total amount of wall time = 459.257645 +The maximum resident set size (KB) = 893648 Test 056 rap_sfcdiff PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/rap_sfcdiff_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/rap_sfcdiff_decomp Checking test 057 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2454,14 +2454,14 @@ Checking test 057 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 440.481383 -The maximum resident set size (KB) = 900640 +The total amount of wall time = 462.314501 +The maximum resident set size (KB) = 897944 Test 057 rap_sfcdiff_decomp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/rap_sfcdiff_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/rap_sfcdiff_restart Checking test 058 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2500,14 +2500,14 @@ Checking test 058 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 312.159230 -The maximum resident set size (KB) = 647588 +The total amount of wall time = 311.185559 +The maximum resident set size (KB) = 646636 Test 058 rap_sfcdiff_restart PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/hrrr_control Checking test 059 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2554,14 +2554,14 @@ Checking test 059 hrrr_control results .... 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.899085 -The maximum resident set size (KB) = 896468 +The total amount of wall time = 420.216143 +The maximum resident set size (KB) = 897788 Test 059 hrrr_control PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/hrrr_control_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/hrrr_control_decomp Checking test 060 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2608,14 +2608,14 @@ Checking test 060 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 420.804567 -The maximum resident set size (KB) = 897900 +The total amount of wall time = 460.893213 +The maximum resident set size (KB) = 897104 Test 060 hrrr_control_decomp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/hrrr_control_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/hrrr_control_2threads Checking test 061 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2662,14 +2662,14 @@ Checking test 061 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 374.617271 -The maximum resident set size (KB) = 971176 +The total amount of wall time = 412.036422 +The maximum resident set size (KB) = 966128 Test 061 hrrr_control_2threads PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/hrrr_control_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/hrrr_control_restart Checking test 062 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2708,14 +2708,14 @@ Checking test 062 hrrr_control_restart results .... 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.438006 -The maximum resident set size (KB) = 643344 +The total amount of wall time = 301.724003 +The maximum resident set size (KB) = 643264 Test 062 hrrr_control_restart PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_v1beta -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/rrfs_v1beta +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/rrfs_v1beta Checking test 063 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2762,14 +2762,14 @@ Checking test 063 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 416.901646 -The maximum resident set size (KB) = 895496 +The total amount of wall time = 449.702135 +The maximum resident set size (KB) = 892512 Test 063 rrfs_v1beta PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_v1nssl -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/rrfs_v1nssl +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/rrfs_v1nssl Checking test 064 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2784,14 +2784,14 @@ Checking test 064 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 482.976535 -The maximum resident set size (KB) = 579956 +The total amount of wall time = 500.352816 +The maximum resident set size (KB) = 578592 Test 064 rrfs_v1nssl PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/rrfs_v1nssl_nohailnoccn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/rrfs_v1nssl_nohailnoccn Checking test 065 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2806,14 +2806,14 @@ Checking test 065 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 473.435203 -The maximum resident set size (KB) = 574944 +The total amount of wall time = 488.107858 +The maximum resident set size (KB) = 573484 Test 065 rrfs_v1nssl_nohailnoccn PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/rrfs_smoke_conus13km_hrrr_warm Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2822,14 +2822,14 @@ Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 148.789969 -The maximum resident set size (KB) = 805096 +The total amount of wall time = 179.359406 +The maximum resident set size (KB) = 804016 Test 066 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/rrfs_smoke_conus13km_hrrr_warm_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 067 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2838,14 +2838,14 @@ Checking test 067 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 110.472354 -The maximum resident set size (KB) = 808784 +The total amount of wall time = 148.023328 +The maximum resident set size (KB) = 808080 Test 067 rrfs_smoke_conus13km_hrrr_warm_2threads PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/rrfs_conus13km_hrrr_warm Checking test 068 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2854,14 +2854,14 @@ Checking test 068 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 136.296479 -The maximum resident set size (KB) = 784872 +The total amount of wall time = 151.287438 +The maximum resident set size (KB) = 782272 Test 068 rrfs_conus13km_hrrr_warm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/rrfs_smoke_conus13km_radar_tten_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/rrfs_smoke_conus13km_radar_tten_warm Checking test 069 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2870,26 +2870,26 @@ Checking test 069 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 153.668608 -The maximum resident set size (KB) = 805360 +The total amount of wall time = 159.586886 +The maximum resident set size (KB) = 806840 Test 069 rrfs_smoke_conus13km_radar_tten_warm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 070 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 70.192981 -The maximum resident set size (KB) = 765596 +The total amount of wall time = 69.909630 +The maximum resident set size (KB) = 769808 Test 070 rrfs_conus13km_hrrr_warm_restart_mismatch PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_csawmg -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/control_csawmg +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/control_csawmg Checking test 071 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2900,14 +2900,14 @@ Checking test 071 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 347.957475 -The maximum resident set size (KB) = 583412 +The total amount of wall time = 348.810462 +The maximum resident set size (KB) = 583880 Test 071 control_csawmg PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_csawmgt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/control_csawmgt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/control_csawmgt Checking test 072 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2918,14 +2918,14 @@ Checking test 072 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 345.600749 -The maximum resident set size (KB) = 584824 +The total amount of wall time = 343.922402 +The maximum resident set size (KB) = 585192 Test 072 control_csawmgt PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_ras -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/control_ras +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/control_ras Checking test 073 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2936,26 +2936,26 @@ Checking test 073 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 183.408344 -The maximum resident set size (KB) = 552888 +The total amount of wall time = 182.178098 +The maximum resident set size (KB) = 556404 Test 073 control_ras PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_wam -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/control_wam +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/control_wam Checking test 074 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 118.791984 -The maximum resident set size (KB) = 352308 +The total amount of wall time = 117.947339 +The maximum resident set size (KB) = 275204 Test 074 control_wam PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/control_p8_faster Checking test 075 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3002,14 +3002,14 @@ Checking test 075 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 175.459870 -The maximum resident set size (KB) = 1485576 +The total amount of wall time = 182.769457 +The maximum resident set size (KB) = 1490132 Test 075 control_p8_faster PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/regional_control_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/regional_control_faster Checking test 076 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3020,56 +3020,56 @@ Checking test 076 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 284.842386 -The maximum resident set size (KB) = 653008 +The total amount of wall time = 285.746985 +The maximum resident set size (KB) = 652924 Test 076 regional_control_faster PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 077 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 901.095078 -The maximum resident set size (KB) = 826972 +The total amount of wall time = 909.888727 +The maximum resident set size (KB) = 828284 Test 077 rrfs_smoke_conus13km_hrrr_warm_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 078 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 520.185307 -The maximum resident set size (KB) = 830220 +The total amount of wall time = 530.264578 +The maximum resident set size (KB) = 831672 Test 078 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/rrfs_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/rrfs_conus13km_hrrr_warm_debug Checking test 079 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 806.226454 -The maximum resident set size (KB) = 805772 +The total amount of wall time = 819.910606 +The maximum resident set size (KB) = 809068 Test 079 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_CubedSphereGrid_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/control_CubedSphereGrid_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/control_CubedSphereGrid_debug Checking test 080 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3096,334 +3096,334 @@ Checking test 080 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 157.447895 -The maximum resident set size (KB) = 675760 +The total amount of wall time = 160.764138 +The maximum resident set size (KB) = 675748 Test 080 control_CubedSphereGrid_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/control_wrtGauss_netcdf_parallel_debug Checking test 081 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 157.152861 -The maximum resident set size (KB) = 679416 +The total amount of wall time = 159.107369 +The maximum resident set size (KB) = 677828 Test 081 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_stochy_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/control_stochy_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/control_stochy_debug Checking test 082 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 178.183703 -The maximum resident set size (KB) = 686428 +The total amount of wall time = 180.699412 +The maximum resident set size (KB) = 682664 Test 082 control_stochy_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/control_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/control_lndp_debug Checking test 083 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 160.747820 -The maximum resident set size (KB) = 683368 +The total amount of wall time = 160.834582 +The maximum resident set size (KB) = 682900 Test 083 control_lndp_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_csawmg_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/control_csawmg_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/control_csawmg_debug Checking test 084 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 253.276187 -The maximum resident set size (KB) = 717816 +The total amount of wall time = 255.306129 +The maximum resident set size (KB) = 721132 Test 084 control_csawmg_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_csawmgt_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/control_csawmgt_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/control_csawmgt_debug Checking test 085 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 249.095737 -The maximum resident set size (KB) = 718132 +The total amount of wall time = 250.816361 +The maximum resident set size (KB) = 718600 Test 085 control_csawmgt_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_ras_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/control_ras_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/control_ras_debug Checking test 086 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 160.259971 -The maximum resident set size (KB) = 695688 +The total amount of wall time = 162.752347 +The maximum resident set size (KB) = 691756 Test 086 control_ras_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/control_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/control_diag_debug Checking test 087 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 161.732692 -The maximum resident set size (KB) = 735644 +The total amount of wall time = 162.649468 +The maximum resident set size (KB) = 735928 Test 087 control_diag_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_debug_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/control_debug_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/control_debug_p8 Checking test 088 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 184.417501 -The maximum resident set size (KB) = 1508380 +The total amount of wall time = 184.980326 +The maximum resident set size (KB) = 1499276 Test 088 control_debug_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/regional_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/regional_debug Checking test 089 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1039.988796 -The maximum resident set size (KB) = 676528 +The total amount of wall time = 1043.192619 +The maximum resident set size (KB) = 674464 Test 089 regional_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/rap_control_debug Checking test 090 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.011879 -The maximum resident set size (KB) = 1053876 +The total amount of wall time = 295.257086 +The maximum resident set size (KB) = 1053304 Test 090 rap_control_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/hrrr_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/hrrr_control_debug Checking test 091 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 290.475051 -The maximum resident set size (KB) = 1046012 +The total amount of wall time = 290.582506 +The maximum resident set size (KB) = 1054228 Test 091 hrrr_control_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/rap_unified_drag_suite_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/rap_unified_drag_suite_debug Checking test 092 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.240480 -The maximum resident set size (KB) = 1056856 +The total amount of wall time = 297.107316 +The maximum resident set size (KB) = 1054856 Test 092 rap_unified_drag_suite_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/rap_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/rap_diag_debug Checking test 093 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 307.202577 -The maximum resident set size (KB) = 1134224 +The total amount of wall time = 308.718934 +The maximum resident set size (KB) = 1133476 Test 093 rap_diag_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/rap_cires_ugwp_debug Checking test 094 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 302.735256 -The maximum resident set size (KB) = 1055956 +The total amount of wall time = 303.291607 +The maximum resident set size (KB) = 1050900 Test 094 rap_cires_ugwp_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/rap_unified_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/rap_unified_ugwp_debug Checking test 095 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 302.070986 -The maximum resident set size (KB) = 1054088 +The total amount of wall time = 302.495481 +The maximum resident set size (KB) = 1053080 Test 095 rap_unified_ugwp_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/rap_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/rap_lndp_debug Checking test 096 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 299.603966 -The maximum resident set size (KB) = 1056480 +The total amount of wall time = 299.737865 +The maximum resident set size (KB) = 1053924 Test 096 rap_lndp_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_flake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/rap_flake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/rap_flake_debug Checking test 097 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 294.941306 -The maximum resident set size (KB) = 1053916 +The total amount of wall time = 297.992510 +The maximum resident set size (KB) = 1055104 Test 097 rap_flake_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_progcld_thompson_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/rap_progcld_thompson_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/rap_progcld_thompson_debug Checking test 098 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.648311 -The maximum resident set size (KB) = 1050472 +The total amount of wall time = 296.372621 +The maximum resident set size (KB) = 1053804 Test 098 rap_progcld_thompson_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_noah_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/rap_noah_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/rap_noah_debug Checking test 099 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 291.052921 -The maximum resident set size (KB) = 1051852 +The total amount of wall time = 290.095008 +The maximum resident set size (KB) = 1051980 Test 099 rap_noah_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_sfcdiff_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/rap_sfcdiff_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/rap_sfcdiff_debug Checking test 100 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 296.306690 -The maximum resident set size (KB) = 1053104 +The total amount of wall time = 299.425447 +The maximum resident set size (KB) = 1052332 Test 100 rap_sfcdiff_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/rap_noah_sfcdiff_cires_ugwp_debug Checking test 101 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 485.238984 -The maximum resident set size (KB) = 1054084 +The total amount of wall time = 485.761932 +The maximum resident set size (KB) = 1051752 Test 101 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_v1beta_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/rrfs_v1beta_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/rrfs_v1beta_debug Checking test 102 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 292.671351 -The maximum resident set size (KB) = 1049300 +The total amount of wall time = 292.405298 +The maximum resident set size (KB) = 1048704 Test 102 rrfs_v1beta_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_wam_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/control_wam_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/control_wam_debug Checking test 103 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 302.946593 -The maximum resident set size (KB) = 303340 +The total amount of wall time = 297.201466 +The maximum resident set size (KB) = 308944 Test 103 control_wam_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3434,14 +3434,14 @@ Checking test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 235.246760 -The maximum resident set size (KB) = 889600 +The total amount of wall time = 233.808219 +The maximum resident set size (KB) = 883268 Test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/rap_control_dyn32_phy32 Checking test 105 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3488,14 +3488,14 @@ Checking test 105 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 360.264476 -The maximum resident set size (KB) = 776676 +The total amount of wall time = 391.136393 +The maximum resident set size (KB) = 779500 Test 105 rap_control_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/hrrr_control_dyn32_phy32 Checking test 106 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3542,14 +3542,14 @@ Checking test 106 hrrr_control_dyn32_phy32 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 = 188.806547 -The maximum resident set size (KB) = 776380 +The total amount of wall time = 196.470639 +The maximum resident set size (KB) = 775796 Test 106 hrrr_control_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/rap_2threads_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/rap_2threads_dyn32_phy32 Checking test 107 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3596,14 +3596,14 @@ Checking test 107 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 331.810879 -The maximum resident set size (KB) = 837152 +The total amount of wall time = 365.551038 +The maximum resident set size (KB) = 836100 Test 107 rap_2threads_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/hrrr_control_2threads_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/hrrr_control_2threads_dyn32_phy32 Checking test 108 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3650,14 +3650,14 @@ Checking test 108 hrrr_control_2threads_dyn32_phy32 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 = 173.135785 -The maximum resident set size (KB) = 829980 +The total amount of wall time = 209.067232 +The maximum resident set size (KB) = 833260 Test 108 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/hrrr_control_decomp_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/hrrr_control_decomp_dyn32_phy32 Checking test 109 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3704,14 +3704,14 @@ Checking test 109 hrrr_control_decomp_dyn32_phy32 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 = 194.843982 -The maximum resident set size (KB) = 776040 +The total amount of wall time = 202.416796 +The maximum resident set size (KB) = 778336 Test 109 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/rap_restart_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/rap_restart_dyn32_phy32 Checking test 110 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3750,14 +3750,14 @@ Checking test 110 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 261.333199 -The maximum resident set size (KB) = 612936 +The total amount of wall time = 261.857452 +The maximum resident set size (KB) = 613180 Test 110 rap_restart_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/hrrr_control_restart_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/hrrr_control_restart_dyn32_phy32 Checking test 111 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3796,14 +3796,14 @@ Checking test 111 hrrr_control_restart_dyn32_phy32 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 = 99.810099 -The maximum resident set size (KB) = 610012 +The total amount of wall time = 100.431100 +The maximum resident set size (KB) = 608124 Test 111 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/rap_control_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/rap_control_dyn64_phy32 Checking test 112 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3850,81 +3850,81 @@ Checking test 112 rap_control_dyn64_phy32 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 = 238.269532 -The maximum resident set size (KB) = 798528 +The total amount of wall time = 239.262105 +The maximum resident set size (KB) = 797108 Test 112 rap_control_dyn64_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/rap_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/rap_control_debug_dyn32_phy32 Checking test 113 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 289.180505 -The maximum resident set size (KB) = 935848 +The total amount of wall time = 289.088333 +The maximum resident set size (KB) = 937184 Test 113 rap_control_debug_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/hrrr_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/hrrr_control_debug_dyn32_phy32 Checking test 114 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 288.243610 -The maximum resident set size (KB) = 940020 +The total amount of wall time = 284.785991 +The maximum resident set size (KB) = 934896 Test 114 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/rap_control_dyn64_phy32_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/rap_control_dyn64_phy32_debug Checking test 115 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 299.621146 -The maximum resident set size (KB) = 950016 +The total amount of wall time = 296.090685 +The maximum resident set size (KB) = 951332 Test 115 rap_control_dyn64_phy32_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/hafs_regional_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/hafs_regional_atm Checking test 116 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 272.872366 -The maximum resident set size (KB) = 825608 +The total amount of wall time = 274.640323 +The maximum resident set size (KB) = 825924 Test 116 hafs_regional_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/hafs_regional_atm_thompson_gfdlsf Checking test 117 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 335.711178 -The maximum resident set size (KB) = 1186568 +The total amount of wall time = 332.534569 +The maximum resident set size (KB) = 1187424 Test 117 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/hafs_regional_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/hafs_regional_atm_ocn Checking test 118 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3933,14 +3933,14 @@ Checking test 118 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 392.112589 -The maximum resident set size (KB) = 862952 +The total amount of wall time = 391.998233 +The maximum resident set size (KB) = 858600 Test 118 hafs_regional_atm_ocn PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/hafs_regional_atm_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/hafs_regional_atm_wav Checking test 119 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3949,14 +3949,14 @@ Checking test 119 hafs_regional_atm_wav 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 = 708.018107 -The maximum resident set size (KB) = 891036 +The total amount of wall time = 715.871023 +The maximum resident set size (KB) = 891996 Test 119 hafs_regional_atm_wav PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/hafs_regional_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/hafs_regional_atm_ocn_wav Checking test 120 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3967,28 +3967,28 @@ Checking test 120 hafs_regional_atm_ocn_wav 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 = 898.197177 -The maximum resident set size (KB) = 916828 +The total amount of wall time = 903.883925 +The maximum resident set size (KB) = 915492 Test 120 hafs_regional_atm_ocn_wav PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/hafs_regional_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/hafs_regional_1nest_atm Checking test 121 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 341.211502 -The maximum resident set size (KB) = 403612 +The total amount of wall time = 336.403822 +The maximum resident set size (KB) = 395480 Test 121 hafs_regional_1nest_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/hafs_regional_telescopic_2nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/hafs_regional_telescopic_2nests_atm Checking test 122 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3997,28 +3997,28 @@ Checking test 122 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 405.327575 -The maximum resident set size (KB) = 404504 +The total amount of wall time = 415.804867 +The maximum resident set size (KB) = 404836 Test 122 hafs_regional_telescopic_2nests_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_global_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/hafs_global_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/hafs_global_1nest_atm Checking test 123 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 172.095125 -The maximum resident set size (KB) = 269416 +The total amount of wall time = 178.686106 +The maximum resident set size (KB) = 289656 Test 123 hafs_global_1nest_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_global_multiple_4nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/hafs_global_multiple_4nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/hafs_global_multiple_4nests_atm Checking test 124 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4036,14 +4036,14 @@ Checking test 124 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -The total amount of wall time = 490.210050 -The maximum resident set size (KB) = 349940 +The total amount of wall time = 494.517658 +The maximum resident set size (KB) = 348032 Test 124 hafs_global_multiple_4nests_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/hafs_regional_specified_moving_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/hafs_regional_specified_moving_1nest_atm Checking test 125 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4052,28 +4052,28 @@ Checking test 125 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 221.436992 -The maximum resident set size (KB) = 414112 +The total amount of wall time = 224.257064 +The maximum resident set size (KB) = 417672 Test 125 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/hafs_regional_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/hafs_regional_storm_following_1nest_atm Checking test 126 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 218.297781 -The maximum resident set size (KB) = 409016 +The total amount of wall time = 212.362617 +The maximum resident set size (KB) = 409268 Test 126 hafs_regional_storm_following_1nest_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/hafs_regional_storm_following_1nest_atm_ocn Checking test 127 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4082,42 +4082,42 @@ Checking test 127 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 254.113572 -The maximum resident set size (KB) = 470108 +The total amount of wall time = 263.700718 +The maximum resident set size (KB) = 471976 Test 127 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/hafs_global_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/hafs_global_storm_following_1nest_atm Checking test 128 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 85.779829 -The maximum resident set size (KB) = 282932 +The total amount of wall time = 95.316896 +The maximum resident set size (KB) = 286552 Test 128 hafs_global_storm_following_1nest_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 129 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 800.770281 -The maximum resident set size (KB) = 488416 +The total amount of wall time = 804.162483 +The maximum resident set size (KB) = 491740 Test 129 hafs_regional_storm_following_1nest_atm_ocn_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 130 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4128,14 +4128,14 @@ Checking test 130 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 503.628811 -The maximum resident set size (KB) = 526960 +The total amount of wall time = 507.919220 +The maximum resident set size (KB) = 525808 Test 130 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8_atmlnd_sbs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/control_p8_atmlnd_sbs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/control_p8_atmlnd_sbs Checking test 131 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4220,14 +4220,14 @@ Checking test 131 control_p8_atmlnd_sbs 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 = 238.833158 -The maximum resident set size (KB) = 1538904 +The total amount of wall time = 243.938210 +The maximum resident set size (KB) = 1541344 Test 131 control_p8_atmlnd_sbs PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/atmaero_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/atmaero_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/atmaero_control_p8 Checking test 132 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4271,14 +4271,14 @@ Checking test 132 atmaero_control_p8 results .... 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.319806 -The maximum resident set size (KB) = 2820304 +The total amount of wall time = 254.855578 +The maximum resident set size (KB) = 2817280 Test 132 atmaero_control_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/atmaero_control_p8_rad -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/atmaero_control_p8_rad +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/atmaero_control_p8_rad Checking test 133 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4322,14 +4322,14 @@ Checking test 133 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 286.078384 -The maximum resident set size (KB) = 2878868 +The total amount of wall time = 290.153998 +The maximum resident set size (KB) = 2876532 Test 133 atmaero_control_p8_rad PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/atmaero_control_p8_rad_micro +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/atmaero_control_p8_rad_micro Checking test 134 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4373,14 +4373,14 @@ Checking test 134 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 290.598870 -The maximum resident set size (KB) = 2888184 +The total amount of wall time = 295.009794 +The maximum resident set size (KB) = 2888856 Test 134 atmaero_control_p8_rad_micro PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_atmaq -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/regional_atmaq +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/regional_atmaq Checking test 135 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4396,14 +4396,14 @@ Checking test 135 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 687.460145 -The maximum resident set size (KB) = 1260460 +The total amount of wall time = 697.520950 +The maximum resident set size (KB) = 1257468 Test 135 regional_atmaq PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_atmaq_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/regional_atmaq_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/regional_atmaq_debug Checking test 136 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4417,14 +4417,14 @@ Checking test 136 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1305.240853 -The maximum resident set size (KB) = 1301068 +The total amount of wall time = 1292.175775 +The maximum resident set size (KB) = 1293968 Test 136 regional_atmaq_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_atmaq_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_59838/regional_atmaq_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/regional_atmaq_faster Checking test 137 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4440,12 +4440,12 @@ Checking test 137 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 643.341017 -The maximum resident set size (KB) = 1267388 +The total amount of wall time = 650.561342 +The maximum resident set size (KB) = 1260212 Test 137 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Fri Apr 14 16:02:52 UTC 2023 -Elapsed time: 01h:11m:17s. Have a nice day! +Mon Apr 17 12:34:03 UTC 2023 +Elapsed time: 01h:06m:44s. Have a nice day! From cbf15670817435d46e742419fbe2cad6fa75cc8e Mon Sep 17 00:00:00 2001 From: haiqinli <38666296+haiqinli@users.noreply.github.com> Date: Thu, 20 Apr 2023 11:17:52 -0600 Subject: [PATCH 22/30] update GF for RRFS 2023 HWT SFE (#1713) * "update to run RRFS with GF" --- FV3 | 2 +- tests/RegressionTests_acorn.intel.log | 1487 +- tests/RegressionTests_cheyenne.gnu.log | 438 +- tests/RegressionTests_cheyenne.intel.log | 15425 ++++++++++++++++++++- tests/RegressionTests_hera.gnu.log | 582 +- tests/RegressionTests_hera.intel.log | 1398 +- tests/RegressionTests_jet.intel.log | 1240 +- tests/RegressionTests_orion.intel.log | 1412 +- tests/RegressionTests_wcoss2.intel.log | 1154 +- tests/rt.sh | 2 +- tests/rt_utils.sh | 2 +- 11 files changed, 18638 insertions(+), 4504 deletions(-) diff --git a/FV3 b/FV3 index c4631255f82..aed060737ad 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit c4631255f82e78286d81c813871fb8a0c13d7fc2 +Subproject commit aed060737ad8e65b4a101e5c61724fb8adbe94f5 diff --git a/tests/RegressionTests_acorn.intel.log b/tests/RegressionTests_acorn.intel.log index 337a906abb4..f4df8626594 100644 --- a/tests/RegressionTests_acorn.intel.log +++ b/tests/RegressionTests_acorn.intel.log @@ -1,40 +1,41 @@ -Thu Apr 6 00:41:57 UTC 2023 +Wed Apr 19 19:35:02 UTC 2023 Start Regression test -Compile 001 elapsed time 541 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 995 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 507 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 636 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 005 elapsed time 1113 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 629 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 1369 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 008 elapsed time 955 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 454 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 010 elapsed time 1422 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 458 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 1937 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 644 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 422 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 463 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 587 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 302 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 694 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 510 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 020 elapsed time 234 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 021 elapsed time 946 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 022 elapsed time 868 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 023 elapsed time 226 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 024 elapsed time 830 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 54 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 026 elapsed time 849 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 027 elapsed time 678 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 512 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 1039 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 428 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 031 elapsed time 635 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8_mixedmode -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/cpld_control_p8_mixedmode +Compile 001 elapsed time 537 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 880 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 686 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 478 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 005 elapsed time 509 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 682 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 869 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 567 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 446 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 010 elapsed time 447 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 564 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 566 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 196 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 014 elapsed time 147 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 435 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 435 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 152 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 152 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 480 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 020 elapsed time 174 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 021 elapsed time 693 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 022 elapsed time 489 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 023 elapsed time 164 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 024 elapsed time 305 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 141 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 026 elapsed time 483 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 027 elapsed time 492 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 459 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 443 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 441 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 154 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 032 elapsed time 506 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8_mixedmode +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -99,14 +100,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 335.452607 -The maximum resident set size (KB) = 2949752 +The total amount of wall time = 340.256574 +The maximum resident set size (KB) = 2947136 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_gfsv17 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/cpld_control_gfsv17 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_gfsv17 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -170,14 +171,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 257.860119 -The maximum resident set size (KB) = 1578796 +The total amount of wall time = 258.782268 +The maximum resident set size (KB) = 1575888 Test 002 cpld_control_gfsv17 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/cpld_control_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -242,14 +243,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 385.655582 -The maximum resident set size (KB) = 2978656 +The total amount of wall time = 386.779757 +The maximum resident set size (KB) = 2979580 Test 003 cpld_control_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/cpld_restart_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -302,14 +303,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 229.881767 -The maximum resident set size (KB) = 2868880 +The total amount of wall time = 230.632876 +The maximum resident set size (KB) = 2861944 Test 004 cpld_restart_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/cpld_control_qr_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -374,14 +375,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 386.970199 -The maximum resident set size (KB) = 2992180 +The total amount of wall time = 388.168334 +The maximum resident set size (KB) = 2990760 Test 005 cpld_control_qr_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/cpld_restart_qr_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -434,14 +435,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 234.280971 -The maximum resident set size (KB) = 2883424 +The total amount of wall time = 230.999986 +The maximum resident set size (KB) = 2876932 Test 006 cpld_restart_qr_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/cpld_2threads_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -494,14 +495,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 367.906468 -The maximum resident set size (KB) = 3284924 +The total amount of wall time = 367.734960 +The maximum resident set size (KB) = 3282864 Test 007 cpld_2threads_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/cpld_decomp_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -554,14 +555,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 378.560601 -The maximum resident set size (KB) = 2980176 +The total amount of wall time = 382.007854 +The maximum resident set size (KB) = 2973900 Test 008 cpld_decomp_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/cpld_mpi_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -614,14 +615,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 317.122989 -The maximum resident set size (KB) = 2914288 +The total amount of wall time = 317.983349 +The maximum resident set size (KB) = 2912012 Test 009 cpld_mpi_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_ciceC_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/cpld_control_ciceC_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_ciceC_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -686,14 +687,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 384.373833 -The maximum resident set size (KB) = 2978080 +The total amount of wall time = 384.513991 +The maximum resident set size (KB) = 2977224 Test 010 cpld_control_ciceC_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/cpld_control_noaero_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/cpld_control_noaero_p8 Checking test 011 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -757,14 +758,14 @@ Checking test 011 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 283.796362 -The maximum resident set size (KB) = 1576300 +The total amount of wall time = 278.555733 +The maximum resident set size (KB) = 1565640 Test 011 cpld_control_noaero_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/cpld_control_nowave_noaero_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c96_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/cpld_control_nowave_noaero_p8 Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -826,14 +827,14 @@ Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 300.876274 -The maximum resident set size (KB) = 1623096 +The total amount of wall time = 299.212513 +The maximum resident set size (KB) = 1619932 Test 012 cpld_control_nowave_noaero_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/cpld_control_noaero_p8_agrid +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_noaero_p8_agrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/cpld_control_noaero_p8_agrid Checking test 013 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -895,14 +896,14 @@ Checking test 013 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 307.612743 -The maximum resident set size (KB) = 1619896 +The total amount of wall time = 308.123577 +The maximum resident set size (KB) = 1621744 Test 013 cpld_control_noaero_p8_agrid PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/cpld_control_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/cpld_control_c48 Checking test 014 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -952,14 +953,14 @@ Checking test 014 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 432.219191 -The maximum resident set size (KB) = 2640780 +The total amount of wall time = 434.779863 +The maximum resident set size (KB) = 2636224 Test 014 cpld_control_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/cpld_warmstart_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/cpld_warmstart_c48 Checking test 015 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1009,14 +1010,14 @@ Checking test 015 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 120.038728 -The maximum resident set size (KB) = 2650412 +The total amount of wall time = 121.665540 +The maximum resident set size (KB) = 2656548 Test 015 cpld_warmstart_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/cpld_restart_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/cpld_restart_c48 Checking test 016 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1066,14 +1067,14 @@ Checking test 016 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 67.104734 -The maximum resident set size (KB) = 2066156 +The total amount of wall time = 67.607169 +The maximum resident set size (KB) = 2070204 Test 016 cpld_restart_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/cpld_control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/cpld_control_p8_faster +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/cpld_control_p8_faster Checking test 017 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1138,14 +1139,14 @@ Checking test 017 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 379.680625 -The maximum resident set size (KB) = 2981716 +The total amount of wall time = 376.399511 +The maximum resident set size (KB) = 2975964 Test 017 cpld_control_p8_faster PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_CubedSphereGrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_CubedSphereGrid +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_CubedSphereGrid Checking test 018 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1172,14 +1173,14 @@ Checking test 018 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 128.962632 -The maximum resident set size (KB) = 508480 +The total amount of wall time = 129.436964 +The maximum resident set size (KB) = 512432 Test 018 control_CubedSphereGrid PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_latlon -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_latlon +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_latlon +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_latlon Checking test 019 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1190,14 +1191,14 @@ Checking test 019 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 132.275624 -The maximum resident set size (KB) = 515492 +The total amount of wall time = 132.293006 +The maximum resident set size (KB) = 513508 Test 019 control_latlon PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_wrtGauss_netcdf_parallel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_wrtGauss_netcdf_parallel Checking test 020 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1208,14 +1209,14 @@ Checking test 020 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 134.284691 -The maximum resident set size (KB) = 513016 +The total amount of wall time = 134.890204 +The maximum resident set size (KB) = 511748 Test 020 control_wrtGauss_netcdf_parallel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_c48 Checking test 021 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1254,14 +1255,14 @@ Checking test 021 control_c48 results .... 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.312079 -The maximum resident set size (KB) = 670152 +The total amount of wall time = 329.080862 +The maximum resident set size (KB) = 673912 Test 021 control_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c192 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_c192 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c192 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_c192 Checking test 022 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1272,14 +1273,14 @@ Checking test 022 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 528.583998 -The maximum resident set size (KB) = 613064 +The total amount of wall time = 528.473133 +The maximum resident set size (KB) = 611020 Test 022 control_c192 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c384 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_c384 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c384 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_c384 Checking test 023 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1290,14 +1291,14 @@ Checking test 023 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 564.483894 -The maximum resident set size (KB) = 927132 +The total amount of wall time = 571.586659 +The maximum resident set size (KB) = 920764 Test 023 control_c384 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_c384gdas -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_c384gdas +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c384gdas +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_c384gdas Checking test 024 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1340,14 +1341,14 @@ Checking test 024 control_c384gdas 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 = 498.053276 -The maximum resident set size (KB) = 1057412 +The total amount of wall time = 503.318574 +The maximum resident set size (KB) = 1058448 Test 024 control_c384gdas PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_stochy +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_stochy Checking test 025 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1358,28 +1359,28 @@ Checking test 025 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 89.155902 -The maximum resident set size (KB) = 520128 +The total amount of wall time = 89.533489 +The maximum resident set size (KB) = 519188 Test 025 control_stochy PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_stochy_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_stochy_restart Checking test 026 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 48.798554 -The maximum resident set size (KB) = 287468 +The total amount of wall time = 49.447596 +The maximum resident set size (KB) = 287744 Test 026 control_stochy_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_lndp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_lndp Checking test 027 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1390,14 +1391,14 @@ Checking test 027 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 83.139475 -The maximum resident set size (KB) = 516896 +The total amount of wall time = 83.140575 +The maximum resident set size (KB) = 513864 Test 027 control_lndp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_iovr4 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_iovr4 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_iovr4 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_iovr4 Checking test 028 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1412,14 +1413,14 @@ Checking test 028 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.653904 -The maximum resident set size (KB) = 515544 +The total amount of wall time = 135.357668 +The maximum resident set size (KB) = 515616 Test 028 control_iovr4 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_iovr5 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_iovr5 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_iovr5 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_iovr5 Checking test 029 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1434,14 +1435,14 @@ Checking test 029 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.296271 -The maximum resident set size (KB) = 512604 +The total amount of wall time = 135.637876 +The maximum resident set size (KB) = 516752 Test 029 control_iovr5 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_p8 Checking test 030 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1488,14 +1489,14 @@ Checking test 030 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 180.870996 -The maximum resident set size (KB) = 1488040 +The total amount of wall time = 182.206499 +The maximum resident set size (KB) = 1482080 Test 030 control_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_restart_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_restart_p8 Checking test 031 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1534,14 +1535,14 @@ Checking test 031 control_restart_p8 results .... 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.738403 -The maximum resident set size (KB) = 652348 +The total amount of wall time = 99.881494 +The maximum resident set size (KB) = 654684 Test 031 control_restart_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_qr_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_qr_p8 Checking test 032 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1588,14 +1589,14 @@ Checking test 032 control_qr_p8 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.476591 -The maximum resident set size (KB) = 1489460 +The total amount of wall time = 180.037393 +The maximum resident set size (KB) = 1499316 Test 032 control_qr_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_restart_qr_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_restart_qr_p8 Checking test 033 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1634,14 +1635,14 @@ Checking test 033 control_restart_qr_p8 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 = 101.521318 -The maximum resident set size (KB) = 662272 +The total amount of wall time = 98.857501 +The maximum resident set size (KB) = 668724 Test 033 control_restart_qr_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_decomp_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_decomp_p8 Checking test 034 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1684,14 +1685,14 @@ Checking test 034 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 182.522694 -The maximum resident set size (KB) = 1481712 +The total amount of wall time = 185.390982 +The maximum resident set size (KB) = 1472656 Test 034 control_decomp_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_2threads_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_2threads_p8 Checking test 035 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1734,14 +1735,14 @@ Checking test 035 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 155.601972 -The maximum resident set size (KB) = 1572184 +The total amount of wall time = 160.531361 +The maximum resident set size (KB) = 1571432 Test 035 control_2threads_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_p8_lndp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_p8_lndp Checking test 036 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1760,14 +1761,14 @@ Checking test 036 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 321.134673 -The maximum resident set size (KB) = 1489724 +The total amount of wall time = 325.738571 +The maximum resident set size (KB) = 1480376 Test 036 control_p8_lndp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_rrtmgp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_p8_rrtmgp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_rrtmgp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_p8_rrtmgp Checking test 037 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1814,14 +1815,14 @@ Checking test 037 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 235.267253 -The maximum resident set size (KB) = 1543740 +The total amount of wall time = 237.062257 +The maximum resident set size (KB) = 1542636 Test 037 control_p8_rrtmgp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_mynn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_p8_mynn +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_mynn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_p8_mynn Checking test 038 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1868,14 +1869,14 @@ Checking test 038 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 180.918649 -The maximum resident set size (KB) = 1482184 +The total amount of wall time = 184.449811 +The maximum resident set size (KB) = 1490332 Test 038 control_p8_mynn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/merra2_thompson -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/merra2_thompson +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/merra2_thompson +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/merra2_thompson Checking test 039 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1922,14 +1923,14 @@ Checking test 039 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 204.764284 -The maximum resident set size (KB) = 1492256 +The total amount of wall time = 207.506597 +The maximum resident set size (KB) = 1491572 Test 039 merra2_thompson PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/regional_control +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/regional_control Checking test 040 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1940,28 +1941,28 @@ Checking test 040 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 286.074198 -The maximum resident set size (KB) = 650040 +The total amount of wall time = 286.594396 +The maximum resident set size (KB) = 646868 Test 040 regional_control PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/regional_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/regional_restart Checking test 041 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 156.093537 -The maximum resident set size (KB) = 650840 +The total amount of wall time = 155.133351 +The maximum resident set size (KB) = 648488 Test 041 regional_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/regional_control_qr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/regional_control_qr Checking test 042 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1972,28 +1973,28 @@ Checking test 042 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 286.663600 -The maximum resident set size (KB) = 653756 +The total amount of wall time = 287.417256 +The maximum resident set size (KB) = 647576 Test 042 regional_control_qr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/regional_restart_qr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/regional_restart_qr Checking test 043 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 154.867970 -The maximum resident set size (KB) = 650280 +The total amount of wall time = 158.163503 +The maximum resident set size (KB) = 648124 Test 043 regional_restart_qr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/regional_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/regional_decomp Checking test 044 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2004,14 +2005,14 @@ Checking test 044 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 302.830543 -The maximum resident set size (KB) = 654244 +The total amount of wall time = 303.124884 +The maximum resident set size (KB) = 646232 Test 044 regional_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/regional_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/regional_2threads Checking test 045 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2022,14 +2023,14 @@ Checking test 045 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 176.642564 -The maximum resident set size (KB) = 701200 +The total amount of wall time = 177.573170 +The maximum resident set size (KB) = 692680 Test 045 regional_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_noquilt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/regional_noquilt +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_noquilt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/regional_noquilt Checking test 046 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2037,14 +2038,14 @@ Checking test 046 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 309.703811 -The maximum resident set size (KB) = 643476 +The total amount of wall time = 310.534344 +The maximum resident set size (KB) = 641456 Test 046 regional_noquilt PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/regional_2dwrtdecomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/regional_2dwrtdecomp Checking test 047 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2055,14 +2056,14 @@ Checking test 047 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 286.272522 -The maximum resident set size (KB) = 654952 +The total amount of wall time = 291.548915 +The maximum resident set size (KB) = 647000 Test 047 regional_2dwrtdecomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/fv3_regional_wofs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/regional_wofs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/fv3_regional_wofs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/regional_wofs Checking test 048 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2073,14 +2074,14 @@ Checking test 048 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 363.911291 -The maximum resident set size (KB) = 340404 +The total amount of wall time = 364.560577 +The maximum resident set size (KB) = 338928 Test 048 regional_wofs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_ifi_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/regional_ifi_control +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_ifi_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/regional_ifi_control Checking test 049 regional_ifi_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2091,14 +2092,14 @@ Checking test 049 regional_ifi_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 317.056384 -The maximum resident set size (KB) = 653780 +The total amount of wall time = 321.197336 +The maximum resident set size (KB) = 651480 Test 049 regional_ifi_control PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_ifi_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/regional_ifi_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_ifi_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/regional_ifi_decomp Checking test 050 regional_ifi_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2109,14 +2110,14 @@ Checking test 050 regional_ifi_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 338.477401 -The maximum resident set size (KB) = 647636 +The total amount of wall time = 336.366776 +The maximum resident set size (KB) = 656648 Test 050 regional_ifi_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_ifi_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/regional_ifi_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_ifi_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/regional_ifi_2threads Checking test 051 regional_ifi_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2127,14 +2128,14 @@ Checking test 051 regional_ifi_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 195.115343 -The maximum resident set size (KB) = 694660 +The total amount of wall time = 196.887173 +The maximum resident set size (KB) = 694656 Test 051 regional_ifi_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rap_control +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rap_control Checking test 052 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2181,14 +2182,14 @@ Checking test 052 rap_control results .... 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.389161 -The maximum resident set size (KB) = 888892 +The total amount of wall time = 419.412403 +The maximum resident set size (KB) = 889328 Test 052 rap_control PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/regional_spp_sppt_shum_skeb +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_spp_sppt_shum_skeb +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/regional_spp_sppt_shum_skeb Checking test 053 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2199,14 +2200,14 @@ Checking test 053 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 243.064927 -The maximum resident set size (KB) = 988528 +The total amount of wall time = 243.429308 +The maximum resident set size (KB) = 986160 Test 053 regional_spp_sppt_shum_skeb PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rap_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rap_decomp Checking test 054 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2253,14 +2254,14 @@ Checking test 054 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 431.734075 -The maximum resident set size (KB) = 895648 +The total amount of wall time = 431.619726 +The maximum resident set size (KB) = 892984 Test 054 rap_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rap_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rap_2threads Checking test 055 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2307,14 +2308,14 @@ Checking test 055 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 386.888047 -The maximum resident set size (KB) = 963420 +The total amount of wall time = 387.392842 +The maximum resident set size (KB) = 968464 Test 055 rap_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rap_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rap_restart Checking test 056 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2353,14 +2354,14 @@ Checking test 056 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 212.922792 -The maximum resident set size (KB) = 644880 +The total amount of wall time = 212.838298 +The maximum resident set size (KB) = 644976 Test 056 rap_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rap_sfcdiff +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rap_sfcdiff Checking test 057 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2407,14 +2408,14 @@ Checking test 057 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 420.127991 -The maximum resident set size (KB) = 891876 +The total amount of wall time = 425.418338 +The maximum resident set size (KB) = 889312 Test 057 rap_sfcdiff PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rap_sfcdiff_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rap_sfcdiff_decomp Checking test 058 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2461,14 +2462,14 @@ Checking test 058 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 437.470009 -The maximum resident set size (KB) = 895660 +The total amount of wall time = 439.283566 +The maximum resident set size (KB) = 892668 Test 058 rap_sfcdiff_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rap_sfcdiff_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rap_sfcdiff_restart Checking test 059 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2507,14 +2508,14 @@ Checking test 059 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 308.566418 -The maximum resident set size (KB) = 641440 +The total amount of wall time = 309.716344 +The maximum resident set size (KB) = 641836 Test 059 rap_sfcdiff_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hrrr_control +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hrrr_control Checking test 060 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2561,14 +2562,14 @@ Checking test 060 hrrr_control results .... 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.324245 -The maximum resident set size (KB) = 893924 +The total amount of wall time = 406.504771 +The maximum resident set size (KB) = 892088 Test 060 hrrr_control PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hrrr_control_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hrrr_control_decomp Checking test 061 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2615,14 +2616,14 @@ Checking test 061 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 420.435492 -The maximum resident set size (KB) = 888212 +The total amount of wall time = 419.685543 +The maximum resident set size (KB) = 887312 Test 061 hrrr_control_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hrrr_control_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hrrr_control_2threads Checking test 062 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2669,14 +2670,14 @@ Checking test 062 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 373.948212 -The maximum resident set size (KB) = 954908 +The total amount of wall time = 374.165853 +The maximum resident set size (KB) = 957428 Test 062 hrrr_control_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hrrr_control_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hrrr_control_restart Checking test 063 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2715,14 +2716,14 @@ Checking test 063 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 297.133889 -The maximum resident set size (KB) = 635420 +The total amount of wall time = 298.833124 +The maximum resident set size (KB) = 640676 Test 063 hrrr_control_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1beta -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rrfs_v1beta +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1beta +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rrfs_v1beta Checking test 064 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2769,14 +2770,14 @@ Checking test 064 rrfs_v1beta results .... 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.598356 -The maximum resident set size (KB) = 889492 +The total amount of wall time = 418.833673 +The maximum resident set size (KB) = 887060 Test 064 rrfs_v1beta PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1nssl -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rrfs_v1nssl +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1nssl +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rrfs_v1nssl Checking test 065 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2791,14 +2792,14 @@ Checking test 065 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 482.615099 -The maximum resident set size (KB) = 580268 +The total amount of wall time = 481.389735 +The maximum resident set size (KB) = 578032 Test 065 rrfs_v1nssl PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rrfs_v1nssl_nohailnoccn +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rrfs_v1nssl_nohailnoccn Checking test 066 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2813,14 +2814,14 @@ Checking test 066 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 470.328811 -The maximum resident set size (KB) = 570120 +The total amount of wall time = 470.891094 +The maximum resident set size (KB) = 568936 Test 066 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rrfs_smoke_conus13km_hrrr_warm Checking test 067 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2829,14 +2830,14 @@ Checking test 067 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 145.325644 -The maximum resident set size (KB) = 798328 +The total amount of wall time = 142.767862 +The maximum resident set size (KB) = 804544 Test 067 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 068 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2845,14 +2846,14 @@ Checking test 068 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 102.299906 -The maximum resident set size (KB) = 801572 +The total amount of wall time = 100.716066 +The maximum resident set size (KB) = 802704 Test 068 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rrfs_conus13km_hrrr_warm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rrfs_conus13km_hrrr_warm Checking test 069 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2861,14 +2862,14 @@ Checking test 069 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 132.516360 -The maximum resident set size (KB) = 779616 +The total amount of wall time = 131.503775 +The maximum resident set size (KB) = 778628 Test 069 rrfs_conus13km_hrrr_warm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rrfs_smoke_conus13km_radar_tten_warm Checking test 070 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2877,26 +2878,26 @@ Checking test 070 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 145.999481 -The maximum resident set size (KB) = 802208 +The total amount of wall time = 145.665423 +The maximum resident set size (KB) = 805240 Test 070 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 071 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 66.984009 -The maximum resident set size (KB) = 759568 +The total amount of wall time = 66.049871 +The maximum resident set size (KB) = 757632 Test 071 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmg -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_csawmg +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmg +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_csawmg Checking test 072 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2907,14 +2908,14 @@ Checking test 072 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 345.673881 -The maximum resident set size (KB) = 581988 +The total amount of wall time = 345.902183 +The maximum resident set size (KB) = 586452 Test 072 control_csawmg PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmgt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_csawmgt +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmgt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_csawmgt Checking test 073 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2925,14 +2926,14 @@ Checking test 073 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 343.629558 -The maximum resident set size (KB) = 581384 +The total amount of wall time = 342.864594 +The maximum resident set size (KB) = 583508 Test 073 control_csawmgt PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_ras -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_ras +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_ras +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_ras Checking test 074 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2943,26 +2944,26 @@ Checking test 074 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 181.156638 -The maximum resident set size (KB) = 550124 +The total amount of wall time = 182.265533 +The maximum resident set size (KB) = 548868 Test 074 control_ras PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wam -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_wam +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wam +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_wam Checking test 075 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 117.489758 -The maximum resident set size (KB) = 270532 +The total amount of wall time = 117.253203 +The maximum resident set size (KB) = 270752 Test 075 control_wam PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_p8_faster +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_p8_faster Checking test 076 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3009,14 +3010,14 @@ Checking test 076 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 175.104337 -The maximum resident set size (KB) = 1483688 +The total amount of wall time = 174.888853 +The maximum resident set size (KB) = 1484128 Test 076 control_p8_faster PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_control_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/regional_control_faster +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/regional_control_faster Checking test 077 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3027,56 +3028,56 @@ Checking test 077 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 278.965134 -The maximum resident set size (KB) = 655076 +The total amount of wall time = 278.744977 +The maximum resident set size (KB) = 654876 Test 077 regional_control_faster PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 078 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 902.448484 -The maximum resident set size (KB) = 833572 +The total amount of wall time = 915.062653 +The maximum resident set size (KB) = 825616 Test 078 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 079 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 521.833413 -The maximum resident set size (KB) = 831492 +The total amount of wall time = 524.087229 +The maximum resident set size (KB) = 826572 Test 079 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rrfs_conus13km_hrrr_warm_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rrfs_conus13km_hrrr_warm_debug Checking test 080 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 804.590450 -The maximum resident set size (KB) = 810844 +The total amount of wall time = 809.769963 +The maximum resident set size (KB) = 806292 Test 080 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_CubedSphereGrid_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_CubedSphereGrid_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_CubedSphereGrid_debug Checking test 081 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3103,334 +3104,334 @@ Checking test 081 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 156.005302 -The maximum resident set size (KB) = 674020 +The total amount of wall time = 158.109421 +The maximum resident set size (KB) = 673832 Test 081 control_CubedSphereGrid_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_wrtGauss_netcdf_parallel_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_wrtGauss_netcdf_parallel_debug Checking test 082 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 156.357020 -The maximum resident set size (KB) = 673340 +The total amount of wall time = 157.856253 +The maximum resident set size (KB) = 674920 Test 082 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_stochy_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_stochy_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_stochy_debug Checking test 083 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 177.537699 -The maximum resident set size (KB) = 682796 +The total amount of wall time = 178.905705 +The maximum resident set size (KB) = 678500 Test 083 control_stochy_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_lndp_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_lndp_debug Checking test 084 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 159.637719 -The maximum resident set size (KB) = 679300 +The total amount of wall time = 160.718006 +The maximum resident set size (KB) = 679040 Test 084 control_lndp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmg_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_csawmg_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmg_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_csawmg_debug Checking test 085 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 252.482838 -The maximum resident set size (KB) = 720352 +The total amount of wall time = 255.253791 +The maximum resident set size (KB) = 717248 Test 085 control_csawmg_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_csawmgt_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_csawmgt_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmgt_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_csawmgt_debug Checking test 086 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 251.254539 -The maximum resident set size (KB) = 719624 +The total amount of wall time = 250.303680 +The maximum resident set size (KB) = 717644 Test 086 control_csawmgt_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_ras_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_ras_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_ras_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_ras_debug Checking test 087 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 160.674018 -The maximum resident set size (KB) = 686804 +The total amount of wall time = 161.954244 +The maximum resident set size (KB) = 689616 Test 087 control_ras_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_diag_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_diag_debug Checking test 088 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 160.666019 -The maximum resident set size (KB) = 734384 +The total amount of wall time = 162.369906 +The maximum resident set size (KB) = 731788 Test 088 control_diag_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_debug_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_debug_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_debug_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_debug_p8 Checking test 089 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 183.147909 -The maximum resident set size (KB) = 1501236 +The total amount of wall time = 185.469523 +The maximum resident set size (KB) = 1500552 Test 089 control_debug_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/regional_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/regional_debug Checking test 090 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1036.297992 -The maximum resident set size (KB) = 673608 +The total amount of wall time = 1046.635780 +The maximum resident set size (KB) = 675304 Test 090 regional_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rap_control_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rap_control_debug Checking test 091 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 294.182640 -The maximum resident set size (KB) = 1051428 +The total amount of wall time = 298.917895 +The maximum resident set size (KB) = 1049984 Test 091 rap_control_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hrrr_control_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hrrr_control_debug Checking test 092 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 289.508009 -The maximum resident set size (KB) = 1047860 +The total amount of wall time = 292.616328 +The maximum resident set size (KB) = 1047464 Test 092 hrrr_control_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rap_unified_drag_suite_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rap_unified_drag_suite_debug Checking test 093 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 294.557887 -The maximum resident set size (KB) = 1052268 +The total amount of wall time = 298.751505 +The maximum resident set size (KB) = 1051468 Test 093 rap_unified_drag_suite_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rap_diag_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rap_diag_debug Checking test 094 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 305.168098 -The maximum resident set size (KB) = 1135456 +The total amount of wall time = 308.836618 +The maximum resident set size (KB) = 1133564 Test 094 rap_diag_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rap_cires_ugwp_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rap_cires_ugwp_debug Checking test 095 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 302.070547 -The maximum resident set size (KB) = 1051924 +The total amount of wall time = 305.423919 +The maximum resident set size (KB) = 1051108 Test 095 rap_cires_ugwp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rap_unified_ugwp_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rap_unified_ugwp_debug Checking test 096 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 302.165023 -The maximum resident set size (KB) = 1052008 +The total amount of wall time = 305.029633 +The maximum resident set size (KB) = 1052316 Test 096 rap_unified_ugwp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rap_lndp_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rap_lndp_debug Checking test 097 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.616050 -The maximum resident set size (KB) = 1054032 +The total amount of wall time = 301.486649 +The maximum resident set size (KB) = 1051944 Test 097 rap_lndp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_flake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rap_flake_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_flake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rap_flake_debug Checking test 098 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 296.615537 -The maximum resident set size (KB) = 1052716 +The total amount of wall time = 298.707585 +The maximum resident set size (KB) = 1050008 Test 098 rap_flake_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_progcld_thompson_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rap_progcld_thompson_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_progcld_thompson_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rap_progcld_thompson_debug Checking test 099 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 296.304327 -The maximum resident set size (KB) = 1054452 +The total amount of wall time = 298.587535 +The maximum resident set size (KB) = 1052416 Test 099 rap_progcld_thompson_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_noah_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rap_noah_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_noah_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rap_noah_debug Checking test 100 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 289.348445 -The maximum resident set size (KB) = 1052176 +The total amount of wall time = 292.559267 +The maximum resident set size (KB) = 1051876 Test 100 rap_noah_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_sfcdiff_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rap_sfcdiff_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rap_sfcdiff_debug Checking test 101 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 294.963002 -The maximum resident set size (KB) = 1051676 +The total amount of wall time = 298.983615 +The maximum resident set size (KB) = 1053760 Test 101 rap_sfcdiff_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rap_noah_sfcdiff_cires_ugwp_debug Checking test 102 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 484.479149 -The maximum resident set size (KB) = 1050808 +The total amount of wall time = 489.304830 +The maximum resident set size (KB) = 1048932 Test 102 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rrfs_v1beta_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rrfs_v1beta_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1beta_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rrfs_v1beta_debug Checking test 103 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 291.789073 -The maximum resident set size (KB) = 1044132 +The total amount of wall time = 294.221928 +The maximum resident set size (KB) = 1045828 Test 103 rrfs_v1beta_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_wam_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_wam_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wam_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_wam_debug Checking test 104 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 294.944046 -The maximum resident set size (KB) = 302852 +The total amount of wall time = 295.232209 +The maximum resident set size (KB) = 302760 Test 104 control_wam_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 105 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3441,14 +3442,14 @@ Checking test 105 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 232.262912 -The maximum resident set size (KB) = 884244 +The total amount of wall time = 231.666655 +The maximum resident set size (KB) = 883008 Test 105 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rap_control_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rap_control_dyn32_phy32 Checking test 106 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3495,14 +3496,14 @@ Checking test 106 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 353.085343 -The maximum resident set size (KB) = 773120 +The total amount of wall time = 352.420588 +The maximum resident set size (KB) = 771452 Test 106 rap_control_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hrrr_control_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hrrr_control_dyn32_phy32 Checking test 107 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3549,14 +3550,14 @@ Checking test 107 hrrr_control_dyn32_phy32 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 = 187.687083 -The maximum resident set size (KB) = 772400 +The total amount of wall time = 187.954750 +The maximum resident set size (KB) = 773916 Test 107 hrrr_control_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rap_2threads_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rap_2threads_dyn32_phy32 Checking test 108 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3603,14 +3604,14 @@ Checking test 108 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 329.796956 -The maximum resident set size (KB) = 824408 +The total amount of wall time = 331.120899 +The maximum resident set size (KB) = 826116 Test 108 rap_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hrrr_control_2threads_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hrrr_control_2threads_dyn32_phy32 Checking test 109 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3657,14 +3658,14 @@ Checking test 109 hrrr_control_2threads_dyn32_phy32 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 = 173.462845 -The maximum resident set size (KB) = 826980 +The total amount of wall time = 172.515178 +The maximum resident set size (KB) = 821844 Test 109 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hrrr_control_decomp_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hrrr_control_decomp_dyn32_phy32 Checking test 110 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3711,14 +3712,14 @@ Checking test 110 hrrr_control_decomp_dyn32_phy32 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 = 194.751025 -The maximum resident set size (KB) = 774600 +The total amount of wall time = 193.742061 +The maximum resident set size (KB) = 773076 Test 110 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rap_restart_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rap_restart_dyn32_phy32 Checking test 111 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3757,14 +3758,14 @@ Checking test 111 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 257.440515 -The maximum resident set size (KB) = 610916 +The total amount of wall time = 259.025458 +The maximum resident set size (KB) = 610496 Test 111 rap_restart_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hrrr_control_restart_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hrrr_control_restart_dyn32_phy32 Checking test 112 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3803,14 +3804,14 @@ Checking test 112 hrrr_control_restart_dyn32_phy32 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 = 97.316650 -The maximum resident set size (KB) = 603444 +The total amount of wall time = 96.941551 +The maximum resident set size (KB) = 604264 Test 112 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rap_control_dyn64_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rap_control_dyn64_phy32 Checking test 113 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3857,81 +3858,81 @@ Checking test 113 rap_control_dyn64_phy32 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 = 233.475473 -The maximum resident set size (KB) = 794276 +The total amount of wall time = 233.364580 +The maximum resident set size (KB) = 788556 Test 113 rap_control_dyn64_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rap_control_debug_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rap_control_debug_dyn32_phy32 Checking test 114 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 291.619883 -The maximum resident set size (KB) = 939768 +The total amount of wall time = 292.605131 +The maximum resident set size (KB) = 936364 Test 114 rap_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hrrr_control_debug_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hrrr_control_debug_dyn32_phy32 Checking test 115 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 287.925518 -The maximum resident set size (KB) = 935192 +The total amount of wall time = 287.649718 +The maximum resident set size (KB) = 935296 Test 115 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/rap_control_dyn64_phy32_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rap_control_dyn64_phy32_debug Checking test 116 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 292.139846 -The maximum resident set size (KB) = 954320 +The total amount of wall time = 292.423911 +The maximum resident set size (KB) = 960556 Test 116 rap_control_dyn64_phy32_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hafs_regional_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hafs_regional_atm Checking test 117 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 268.260161 -The maximum resident set size (KB) = 822664 +The total amount of wall time = 268.658631 +The maximum resident set size (KB) = 824140 Test 117 hafs_regional_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hafs_regional_atm_thompson_gfdlsf +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hafs_regional_atm_thompson_gfdlsf Checking test 118 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 311.003520 -The maximum resident set size (KB) = 1179636 +The total amount of wall time = 309.181997 +The maximum resident set size (KB) = 1183176 Test 118 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hafs_regional_atm_ocn +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hafs_regional_atm_ocn Checking test 119 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3940,62 +3941,62 @@ Checking test 119 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 387.311681 -The maximum resident set size (KB) = 858168 +The total amount of wall time = 386.864804 +The maximum resident set size (KB) = 858088 Test 119 hafs_regional_atm_ocn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hafs_regional_atm_wav +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hafs_regional_atm_wav Checking test 120 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - Comparing out_grd.ww3 .........OK - Comparing out_pnt.ww3 .........OK + Comparing 20190829.060000.out_grd.ww3 .........OK + Comparing 20190829.060000.out_pnt.ww3 .........OK Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 697.989974 -The maximum resident set size (KB) = 883700 +The total amount of wall time = 700.303669 +The maximum resident set size (KB) = 884796 Test 120 hafs_regional_atm_wav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hafs_regional_atm_ocn_wav +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hafs_regional_atm_ocn_wav Checking test 121 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK Comparing archs.2019_241_06.a .........OK - Comparing out_grd.ww3 .........OK - Comparing out_pnt.ww3 .........OK + Comparing 20190829.060000.out_grd.ww3 .........OK + Comparing 20190829.060000.out_pnt.ww3 .........OK Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 891.805177 -The maximum resident set size (KB) = 913896 +The total amount of wall time = 887.773390 +The maximum resident set size (KB) = 911496 Test 121 hafs_regional_atm_ocn_wav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hafs_regional_1nest_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hafs_regional_1nest_atm Checking test 122 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 332.451163 -The maximum resident set size (KB) = 392756 +The total amount of wall time = 331.069670 +The maximum resident set size (KB) = 392992 Test 122 hafs_regional_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hafs_regional_telescopic_2nests_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hafs_regional_telescopic_2nests_atm Checking test 123 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4004,28 +4005,28 @@ Checking test 123 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 403.835313 -The maximum resident set size (KB) = 401740 +The total amount of wall time = 403.016994 +The maximum resident set size (KB) = 403300 Test 123 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_global_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hafs_global_1nest_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hafs_global_1nest_atm Checking test 124 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 172.804741 -The maximum resident set size (KB) = 268004 +The total amount of wall time = 171.677313 +The maximum resident set size (KB) = 263924 Test 124 hafs_global_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_global_multiple_4nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hafs_global_multiple_4nests_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_multiple_4nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hafs_global_multiple_4nests_atm Checking test 125 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4043,14 +4044,14 @@ Checking test 125 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -The total amount of wall time = 491.903615 -The maximum resident set size (KB) = 349000 +The total amount of wall time = 488.845821 +The maximum resident set size (KB) = 345312 Test 125 hafs_global_multiple_4nests_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hafs_regional_specified_moving_1nest_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hafs_regional_specified_moving_1nest_atm Checking test 126 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4059,28 +4060,28 @@ Checking test 126 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 218.770495 -The maximum resident set size (KB) = 403076 +The total amount of wall time = 217.635993 +The maximum resident set size (KB) = 405964 Test 126 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hafs_regional_storm_following_1nest_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hafs_regional_storm_following_1nest_atm Checking test 127 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 206.754989 -The maximum resident set size (KB) = 405624 +The total amount of wall time = 205.509154 +The maximum resident set size (KB) = 406048 Test 127 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hafs_regional_storm_following_1nest_atm_ocn Checking test 128 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4089,42 +4090,30 @@ Checking test 128 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 251.971413 -The maximum resident set size (KB) = 469324 +The total amount of wall time = 251.389001 +The maximum resident set size (KB) = 467008 Test 128 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hafs_global_storm_following_1nest_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hafs_global_storm_following_1nest_atm Checking test 129 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 84.501640 -The maximum resident set size (KB) = 292060 +The total amount of wall time = 84.876152 +The maximum resident set size (KB) = 282176 Test 129 hafs_global_storm_following_1nest_atm PASS +Test 130 hafs_regional_storm_following_1nest_atm_ocn_debug FAIL -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hafs_regional_storm_following_1nest_atm_ocn_debug -Checking test 130 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 803.347739 -The maximum resident set size (KB) = 487756 - -Test 130 hafs_regional_storm_following_1nest_atm_ocn_debug PASS - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 131 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4132,17 +4121,17 @@ Checking test 131 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing sfc.nest02.f006.nc .........OK Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - Comparing out_grd.ww3 .........OK - Comparing out_pnt.ww3 .........OK + Comparing 20200825.180000.out_grd.ww3 .........OK + Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 504.689227 -The maximum resident set size (KB) = 526660 +The total amount of wall time = 502.336093 +The maximum resident set size (KB) = 528272 Test 131 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_docn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hafs_regional_docn +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_docn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hafs_regional_docn Checking test 132 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4150,14 +4139,14 @@ Checking test 132 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 371.121365 -The maximum resident set size (KB) = 864104 +The total amount of wall time = 368.290017 +The maximum resident set size (KB) = 862588 Test 132 hafs_regional_docn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_docn_oisst -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hafs_regional_docn_oisst +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_docn_oisst +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hafs_regional_docn_oisst Checking test 133 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4165,131 +4154,131 @@ Checking test 133 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 372.439464 -The maximum resident set size (KB) = 845564 +The total amount of wall time = 369.512790 +The maximum resident set size (KB) = 847332 Test 133 hafs_regional_docn_oisst PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/hafs_regional_datm_cdeps -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/hafs_regional_datm_cdeps +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_datm_cdeps +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hafs_regional_datm_cdeps Checking test 134 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -The total amount of wall time = 945.696910 -The maximum resident set size (KB) = 837392 +The total amount of wall time = 945.598383 +The maximum resident set size (KB) = 834988 Test 134 hafs_regional_datm_cdeps PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/datm_cdeps_control_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/datm_cdeps_control_cfsr Checking test 135 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 140.522875 -The maximum resident set size (KB) = 734492 +The total amount of wall time = 141.673759 +The maximum resident set size (KB) = 734820 Test 135 datm_cdeps_control_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/datm_cdeps_restart_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/datm_cdeps_restart_cfsr Checking test 136 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 85.928645 -The maximum resident set size (KB) = 727980 +The total amount of wall time = 85.436396 +The maximum resident set size (KB) = 730196 Test 136 datm_cdeps_restart_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/datm_cdeps_control_gefs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/datm_cdeps_control_gefs Checking test 137 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 132.977160 -The maximum resident set size (KB) = 614096 +The total amount of wall time = 133.837671 +The maximum resident set size (KB) = 612600 Test 137 datm_cdeps_control_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_iau_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/datm_cdeps_iau_gefs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_iau_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/datm_cdeps_iau_gefs Checking test 138 datm_cdeps_iau_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 136.585504 -The maximum resident set size (KB) = 615380 +The total amount of wall time = 137.415523 +The maximum resident set size (KB) = 615460 Test 138 datm_cdeps_iau_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_stochy_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/datm_cdeps_stochy_gefs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_stochy_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/datm_cdeps_stochy_gefs Checking test 139 datm_cdeps_stochy_gefs 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.691698 -The maximum resident set size (KB) = 611656 +The total amount of wall time = 137.574166 +The maximum resident set size (KB) = 613884 Test 139 datm_cdeps_stochy_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/datm_cdeps_ciceC_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_ciceC_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/datm_cdeps_ciceC_cfsr Checking test 140 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.048303 -The maximum resident set size (KB) = 733524 +The total amount of wall time = 141.182551 +The maximum resident set size (KB) = 733924 Test 140 datm_cdeps_ciceC_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/datm_cdeps_bulk_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_bulk_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/datm_cdeps_bulk_cfsr Checking test 141 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.756242 -The maximum resident set size (KB) = 736392 +The total amount of wall time = 141.379622 +The maximum resident set size (KB) = 732656 Test 141 datm_cdeps_bulk_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/datm_cdeps_bulk_gefs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_bulk_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/datm_cdeps_bulk_gefs Checking test 142 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 133.750868 -The maximum resident set size (KB) = 612776 +The total amount of wall time = 134.667118 +The maximum resident set size (KB) = 616340 Test 142 datm_cdeps_bulk_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/datm_cdeps_mx025_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_mx025_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/datm_cdeps_mx025_cfsr Checking test 143 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4298,14 +4287,14 @@ Checking test 143 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 430.648954 -The maximum resident set size (KB) = 568860 +The total amount of wall time = 428.616620 +The maximum resident set size (KB) = 571772 Test 143 datm_cdeps_mx025_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/datm_cdeps_mx025_gefs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_mx025_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/datm_cdeps_mx025_gefs Checking test 144 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4314,64 +4303,64 @@ Checking test 144 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 425.907536 -The maximum resident set size (KB) = 550112 +The total amount of wall time = 424.733943 +The maximum resident set size (KB) = 553988 Test 144 datm_cdeps_mx025_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/datm_cdeps_multiple_files_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/datm_cdeps_multiple_files_cfsr Checking test 145 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 140.434639 -The maximum resident set size (KB) = 737636 +The total amount of wall time = 140.723685 +The maximum resident set size (KB) = 733272 Test 145 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/datm_cdeps_3072x1536_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/datm_cdeps_3072x1536_cfsr Checking test 146 datm_cdeps_3072x1536_cfsr 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 = 257.571050 -The maximum resident set size (KB) = 1978840 +The total amount of wall time = 256.504764 +The maximum resident set size (KB) = 1980956 Test 146 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_gfs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/datm_cdeps_gfs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_gfs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/datm_cdeps_gfs Checking test 147 datm_cdeps_gfs 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 = 257.602193 -The maximum resident set size (KB) = 1978592 +The total amount of wall time = 255.454958 +The maximum resident set size (KB) = 1977180 Test 147 datm_cdeps_gfs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_control_cfsr_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/datm_cdeps_control_cfsr_faster +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/datm_cdeps_control_cfsr_faster Checking test 148 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.768437 -The maximum resident set size (KB) = 736748 +The total amount of wall time = 141.023668 +The maximum resident set size (KB) = 733396 Test 148 datm_cdeps_control_cfsr_faster PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/datm_cdeps_lnd_gswp3 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/datm_cdeps_lnd_gswp3 Checking test 149 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4380,14 +4369,14 @@ Checking test 149 datm_cdeps_lnd_gswp3 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 = 21.956515 -The maximum resident set size (KB) = 231120 +The total amount of wall time = 21.827151 +The maximum resident set size (KB) = 230432 Test 149 datm_cdeps_lnd_gswp3 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/datm_cdeps_lnd_gswp3_rst +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/datm_cdeps_lnd_gswp3_rst Checking test 150 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4396,14 +4385,14 @@ Checking test 150 datm_cdeps_lnd_gswp3_rst 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.390248 -The maximum resident set size (KB) = 226688 +The total amount of wall time = 27.202287 +The maximum resident set size (KB) = 228352 Test 150 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_p8_atmlnd_sbs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_p8_atmlnd_sbs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_atmlnd_sbs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_p8_atmlnd_sbs Checking test 151 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4488,15 +4477,65 @@ Checking test 151 control_p8_atmlnd_sbs 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.300224 -The maximum resident set size (KB) = 1550436 +The total amount of wall time = 234.656625 +The maximum resident set size (KB) = 1534332 Test 151 control_p8_atmlnd_sbs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/control_atmwav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/control_atmwav -Checking test 152 control_atmwav results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/atmwav_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/atmwav_control_noaero_p8 +Checking test 152 atmwav_control_noaero_p8 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + Comparing RESTART/ufs.atmw.cpl.r.2021-03-22-64800.nc .........OK + Comparing 20210322.180000.out_pnt.ww3 .........OK + Comparing 20210322.180000.out_grd.ww3 .........OK + Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK + +The total amount of wall time = 108.702077 +The maximum resident set size (KB) = 1528172 + +Test 152 atmwav_control_noaero_p8 PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_atmwav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_atmwav +Checking test 153 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -4539,15 +4578,15 @@ Checking test 152 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -The total amount of wall time = 90.171023 -The maximum resident set size (KB) = 539360 +The total amount of wall time = 91.920065 +The maximum resident set size (KB) = 541068 -Test 152 control_atmwav PASS +Test 153 control_atmwav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/atmaero_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/atmaero_control_p8 -Checking test 153 atmaero_control_p8 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/atmaero_control_p8 +Checking test 154 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4590,15 +4629,15 @@ Checking test 153 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 245.964017 -The maximum resident set size (KB) = 2814272 +The total amount of wall time = 245.113354 +The maximum resident set size (KB) = 2815712 -Test 153 atmaero_control_p8 PASS +Test 154 atmaero_control_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/atmaero_control_p8_rad -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/atmaero_control_p8_rad -Checking test 154 atmaero_control_p8_rad results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8_rad +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/atmaero_control_p8_rad +Checking test 155 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4641,15 +4680,15 @@ Checking test 154 atmaero_control_p8_rad results .... 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.685724 -The maximum resident set size (KB) = 2874372 +The total amount of wall time = 282.810567 +The maximum resident set size (KB) = 2876784 -Test 154 atmaero_control_p8_rad PASS +Test 155 atmaero_control_p8_rad PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/atmaero_control_p8_rad_micro -Checking test 155 atmaero_control_p8_rad_micro results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8_rad_micro +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/atmaero_control_p8_rad_micro +Checking test 156 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4692,15 +4731,15 @@ Checking test 155 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 287.908833 -The maximum resident set size (KB) = 2885156 +The total amount of wall time = 289.075754 +The maximum resident set size (KB) = 2884388 -Test 155 atmaero_control_p8_rad_micro PASS +Test 156 atmaero_control_p8_rad_micro PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_atmaq -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/regional_atmaq -Checking test 156 regional_atmaq results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/regional_atmaq +Checking test 157 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -4715,36 +4754,17 @@ Checking test 156 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 688.968888 -The maximum resident set size (KB) = 1257132 - -Test 156 regional_atmaq PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_atmaq_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/regional_atmaq_debug -Checking test 157 regional_atmaq_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing RESTART/20190801.130000.coupler.res .........OK - Comparing RESTART/20190801.130000.fv_core.res.nc .........OK - Comparing RESTART/20190801.130000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20190801.130000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20190801.130000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20190801.130000.phy_data.nc .........OK - Comparing RESTART/20190801.130000.sfc_data.nc .........OK +The total amount of wall time = 677.943814 +The maximum resident set size (KB) = 1256784 -The total amount of wall time = 1310.809363 -The maximum resident set size (KB) = 1289336 +Test 157 regional_atmaq PASS -Test 157 regional_atmaq_debug PASS +Test 158 regional_atmaq_debug FAIL -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230405/INTEL/regional_atmaq_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_99317/regional_atmaq_faster -Checking test 158 regional_atmaq_faster results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/regional_atmaq_faster +Checking test 159 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -4759,12 +4779,59 @@ Checking test 158 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 649.327746 -The maximum resident set size (KB) = 1257280 +The total amount of wall time = 635.493432 +The maximum resident set size (KB) = 1258428 + +Test 159 regional_atmaq_faster PASS + +FAILED TESTS: +Test hafs_regional_storm_following_1nest_atm_ocn_debug 130 failed in run_test failed +Test regional_atmaq_debug 158 failed in run_test failed + +REGRESSION TEST FAILED +Wed Apr 19 22:22:23 UTC 2023 +Elapsed time: 02h:47m:22s. Have a nice day! +Thu Apr 20 12:28:42 UTC 2023 +Start Regression test + +Compile 001 elapsed time 173 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 002 elapsed time 158 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_132784/hafs_regional_storm_following_1nest_atm_ocn_debug +Checking test 001 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 801.538137 +The maximum resident set size (KB) = 487692 + +Test 001 hafs_regional_storm_following_1nest_atm_ocn_debug PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_132784/regional_atmaq_debug +Checking test 002 regional_atmaq_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing RESTART/20190801.130000.coupler.res .........OK + Comparing RESTART/20190801.130000.fv_core.res.nc .........OK + Comparing RESTART/20190801.130000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20190801.130000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20190801.130000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20190801.130000.phy_data.nc .........OK + Comparing RESTART/20190801.130000.sfc_data.nc .........OK + +The total amount of wall time = 1301.091721 +The maximum resident set size (KB) = 1292664 -Test 158 regional_atmaq_faster PASS +Test 002 regional_atmaq_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Apr 6 02:20:16 UTC 2023 -Elapsed time: 01h:38m:20s. Have a nice day! +Thu Apr 20 13:10:50 UTC 2023 +Elapsed time: 00h:42m:09s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index 01065977eb5..ba6dbda628e 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,21 +1,21 @@ -Fri Apr 14 18:23:22 MDT 2023 +Tue Apr 18 21:56:13 MDT 2023 Start Regression test -Compile 001 elapsed time 380 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 403 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 867 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 192 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 001 elapsed time 384 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 404 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 882 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 189 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug Compile 005 elapsed time 377 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 1106 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 861 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 862 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 671 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 566 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 351 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 012 elapsed time 301 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/control_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/control_c48 +Compile 006 elapsed time 1125 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 881 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 880 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 641 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 579 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 347 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 012 elapsed time 304 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/control_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/control_c48 Checking test 001 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -54,14 +54,14 @@ Checking test 001 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 820.041241 -0:The maximum resident set size (KB) = 679808 +0:The total amount of wall time = 823.628697 +0:The maximum resident set size (KB) = 679820 Test 001 control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/control_stochy +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/control_stochy +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/control_stochy Checking test 002 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -72,14 +72,14 @@ Checking test 002 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 177.812502 -0:The maximum resident set size (KB) = 443220 +0:The total amount of wall time = 178.086943 +0:The maximum resident set size (KB) = 443384 Test 002 control_stochy PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/control_ras -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/control_ras +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/control_ras +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/control_ras Checking test 003 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -90,14 +90,14 @@ Checking test 003 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 294.797327 -0:The maximum resident set size (KB) = 452044 +0:The total amount of wall time = 293.942304 +0:The maximum resident set size (KB) = 452396 Test 003 control_ras PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/control_p8 Checking test 004 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -144,14 +144,14 @@ Checking test 004 control_p8 results .... Comparing 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.347372 -0:The maximum resident set size (KB) = 1224988 +0:The total amount of wall time = 311.451227 +0:The maximum resident set size (KB) = 1225040 Test 004 control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/rap_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rap_control Checking test 005 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -198,14 +198,14 @@ Checking test 005 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 713.359875 -0:The maximum resident set size (KB) = 791760 +0:The total amount of wall time = 710.283670 +0:The maximum resident set size (KB) = 791820 Test 005 rap_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/rap_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rap_decomp Checking test 006 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -252,14 +252,14 @@ Checking test 006 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 713.567790 -0:The maximum resident set size (KB) = 791440 +0:The total amount of wall time = 720.003905 +0:The maximum resident set size (KB) = 791508 Test 006 rap_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/rap_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rap_2threads Checking test 007 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -306,14 +306,14 @@ Checking test 007 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 648.829899 -0:The maximum resident set size (KB) = 865788 +0:The total amount of wall time = 656.320166 +0:The maximum resident set size (KB) = 866180 Test 007 rap_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/rap_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rap_restart Checking test 008 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -352,14 +352,14 @@ Checking test 008 rap_restart results .... Comparing 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.898075 -0:The maximum resident set size (KB) = 538968 +0:The total amount of wall time = 354.994349 +0:The maximum resident set size (KB) = 539128 Test 008 rap_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/rap_sfcdiff +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rap_sfcdiff Checking test 009 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -406,14 +406,14 @@ Checking test 009 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 710.871508 -0:The maximum resident set size (KB) = 791980 +0:The total amount of wall time = 715.767104 +0:The maximum resident set size (KB) = 791884 Test 009 rap_sfcdiff PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/rap_sfcdiff_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rap_sfcdiff_decomp Checking test 010 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -460,14 +460,14 @@ Checking test 010 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 719.385309 -0:The maximum resident set size (KB) = 791192 +0:The total amount of wall time = 725.293406 +0:The maximum resident set size (KB) = 791340 Test 010 rap_sfcdiff_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/rap_sfcdiff_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rap_sfcdiff_restart Checking test 011 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -506,14 +506,14 @@ Checking test 011 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 527.776274 -0:The maximum resident set size (KB) = 544304 +0:The total amount of wall time = 528.427451 +0:The maximum resident set size (KB) = 544260 Test 011 rap_sfcdiff_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/hrrr_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/hrrr_control Checking test 012 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -560,14 +560,14 @@ Checking test 012 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 688.299946 -0:The maximum resident set size (KB) = 789096 +0:The total amount of wall time = 693.538706 +0:The maximum resident set size (KB) = 789124 Test 012 hrrr_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/hrrr_control_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/hrrr_control_2threads Checking test 013 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -614,14 +614,14 @@ Checking test 013 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 627.192634 -0:The maximum resident set size (KB) = 860540 +0:The total amount of wall time = 629.031978 +0:The maximum resident set size (KB) = 860468 Test 013 hrrr_control_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/hrrr_control_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/hrrr_control_decomp Checking test 014 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -668,14 +668,14 @@ Checking test 014 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 685.604775 -0:The maximum resident set size (KB) = 788924 +0:The total amount of wall time = 691.947893 +0:The maximum resident set size (KB) = 788828 Test 014 hrrr_control_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/hrrr_control_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/hrrr_control_restart Checking test 015 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -714,14 +714,14 @@ Checking test 015 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 509.396838 -0:The maximum resident set size (KB) = 540156 +0:The total amount of wall time = 512.192687 +0:The maximum resident set size (KB) = 540376 Test 015 hrrr_control_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rrfs_v1beta -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/rrfs_v1beta +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_v1beta +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rrfs_v1beta Checking test 016 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -768,14 +768,14 @@ Checking test 016 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 700.930660 -0:The maximum resident set size (KB) = 788860 +0:The total amount of wall time = 705.742245 +0:The maximum resident set size (KB) = 788796 Test 016 rrfs_v1beta PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rrfs_smoke_conus13km_hrrr_warm Checking test 017 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -784,14 +784,14 @@ Checking test 017 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 231.511514 -0:The maximum resident set size (KB) = 636952 +0:The total amount of wall time = 232.717077 +0:The maximum resident set size (KB) = 636600 Test 017 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 018 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -800,14 +800,14 @@ Checking test 018 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 145.728809 -0:The maximum resident set size (KB) = 661236 +0:The total amount of wall time = 147.619665 +0:The maximum resident set size (KB) = 655708 Test 018 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/rrfs_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rrfs_conus13km_hrrr_warm Checking test 019 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -816,14 +816,14 @@ Checking test 019 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 210.569742 -0:The maximum resident set size (KB) = 615616 +0:The total amount of wall time = 212.310793 +0:The maximum resident set size (KB) = 615816 Test 019 rrfs_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rrfs_smoke_conus13km_radar_tten_warm Checking test 020 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -832,234 +832,234 @@ Checking test 020 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 232.473991 -0:The maximum resident set size (KB) = 639672 +0:The total amount of wall time = 231.399056 +0:The maximum resident set size (KB) = 639340 Test 020 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 021 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 109.564092 -0:The maximum resident set size (KB) = 596376 +0:The total amount of wall time = 111.140208 +0:The maximum resident set size (KB) = 596568 Test 021 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/control_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/control_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/control_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/control_diag_debug Checking test 022 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 81.775895 -0:The maximum resident set size (KB) = 491868 +0:The total amount of wall time = 82.327558 +0:The maximum resident set size (KB) = 491708 Test 022 control_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/regional_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/regional_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/regional_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/regional_debug Checking test 023 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 476.373438 -0:The maximum resident set size (KB) = 568328 +0:The total amount of wall time = 473.939334 +0:The maximum resident set size (KB) = 567704 Test 023 regional_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/rap_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rap_control_debug Checking test 024 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 144.319835 -0:The maximum resident set size (KB) = 805628 +0:The total amount of wall time = 145.591603 +0:The maximum resident set size (KB) = 805700 Test 024 rap_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/hrrr_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/hrrr_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/hrrr_control_debug Checking test 025 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 144.942706 -0:The maximum resident set size (KB) = 801348 +0:The total amount of wall time = 142.608939 +0:The maximum resident set size (KB) = 801356 Test 025 hrrr_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rap_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/rap_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rap_diag_debug Checking test 026 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 150.832497 -0:The maximum resident set size (KB) = 888144 +0:The total amount of wall time = 152.367075 +0:The maximum resident set size (KB) = 888320 Test 026 rap_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rap_noah_sfcdiff_cires_ugwp_debug Checking test 027 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 232.179973 -0:The maximum resident set size (KB) = 804572 +0:The total amount of wall time = 233.429552 +0:The maximum resident set size (KB) = 804232 Test 027 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rap_progcld_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/rap_progcld_thompson_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_progcld_thompson_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rap_progcld_thompson_debug Checking test 028 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 144.209111 -0:The maximum resident set size (KB) = 805616 +0:The total amount of wall time = 145.203191 +0:The maximum resident set size (KB) = 805740 Test 028 rap_progcld_thompson_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rrfs_v1beta_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/rrfs_v1beta_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_v1beta_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rrfs_v1beta_debug Checking test 029 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 144.614691 -0:The maximum resident set size (KB) = 801132 +0:The total amount of wall time = 143.633308 +0:The maximum resident set size (KB) = 801260 Test 029 rrfs_v1beta_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/control_ras_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/control_ras_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/control_ras_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/control_ras_debug Checking test 030 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 79.939931 -0:The maximum resident set size (KB) = 446128 +0:The total amount of wall time = 81.237908 +0:The maximum resident set size (KB) = 445948 Test 030 control_ras_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/control_stochy_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/control_stochy_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/control_stochy_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/control_stochy_debug Checking test 031 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 88.202910 -0:The maximum resident set size (KB) = 438468 +0:The total amount of wall time = 88.006316 +0:The maximum resident set size (KB) = 438784 Test 031 control_stochy_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/control_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/control_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/control_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/control_debug_p8 Checking test 032 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 92.154399 -0:The maximum resident set size (KB) = 1221484 +0:The total amount of wall time = 91.213747 +0:The maximum resident set size (KB) = 1221440 Test 032 control_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 033 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 433.270317 -0:The maximum resident set size (KB) = 641628 +0:The total amount of wall time = 434.138020 +0:The maximum resident set size (KB) = 641740 Test 033 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 034 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 254.193132 -0:The maximum resident set size (KB) = 661304 +0:The total amount of wall time = 254.941951 +0:The maximum resident set size (KB) = 660864 Test 034 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/rrfs_conus13km_hrrr_warm_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_conus13km_hrrr_warm_debugs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rrfs_conus13km_hrrr_warm_debug Checking test 035 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 392.380868 -0:The maximum resident set size (KB) = 620388 +0:The total amount of wall time = 395.201830 +0:The maximum resident set size (KB) = 620064 Test 035 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/control_wam_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/control_wam_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/control_wam_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/control_wam_debug Checking test 036 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 142.088085 -0:The maximum resident set size (KB) = 182768 +0:The total amount of wall time = 143.260593 +0:The maximum resident set size (KB) = 182384 Test 036 control_wam_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/rap_control_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rap_control_dyn32_phy32 Checking test 037 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1106,14 +1106,14 @@ Checking test 037 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 704.086187 -0:The maximum resident set size (KB) = 673392 +0:The total amount of wall time = 706.794831 +0:The maximum resident set size (KB) = 672152 Test 037 rap_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/hrrr_control_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/hrrr_control_dyn32_phy32 Checking test 038 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1160,14 +1160,14 @@ Checking test 038 hrrr_control_dyn32_phy32 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 = 356.300401 -0:The maximum resident set size (KB) = 670780 +0:The total amount of wall time = 357.526055 +0:The maximum resident set size (KB) = 671932 Test 038 hrrr_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/rap_2threads_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rap_2threads_dyn32_phy32 Checking test 039 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1214,14 +1214,14 @@ Checking test 039 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 644.613007 -0:The maximum resident set size (KB) = 720120 +0:The total amount of wall time = 644.567909 +0:The maximum resident set size (KB) = 720212 Test 039 rap_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/hrrr_control_2threads_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/hrrr_control_2threads_dyn32_phy32 Checking test 040 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1268,14 +1268,14 @@ Checking test 040 hrrr_control_2threads_dyn32_phy32 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 = 320.228193 -0:The maximum resident set size (KB) = 716880 +0:The total amount of wall time = 323.489347 +0:The maximum resident set size (KB) = 716660 Test 040 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/hrrr_control_decomp_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/hrrr_control_decomp_dyn32_phy32 Checking test 041 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1322,14 +1322,14 @@ Checking test 041 hrrr_control_decomp_dyn32_phy32 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 = 355.191544 -0:The maximum resident set size (KB) = 670784 +0:The total amount of wall time = 355.430054 +0:The maximum resident set size (KB) = 669900 Test 041 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/rap_restart_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rap_restart_dyn32_phy32 Checking test 042 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1368,14 +1368,14 @@ Checking test 042 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 519.731359 -0:The maximum resident set size (KB) = 511352 +0:The total amount of wall time = 526.748176 +0:The maximum resident set size (KB) = 511516 Test 042 rap_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/hrrr_control_restart_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/hrrr_control_restart_dyn32_phy32 Checking test 043 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1414,14 +1414,14 @@ Checking test 043 hrrr_control_restart_dyn32_phy32 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 = 182.665311 -0:The maximum resident set size (KB) = 507324 +0:The total amount of wall time = 181.416017 +0:The maximum resident set size (KB) = 507520 Test 043 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rap_control_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/rap_control_dyn64_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control_dyn64_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rap_control_dyn64_phy32 Checking test 044 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1468,56 +1468,56 @@ Checking test 044 rap_control_dyn64_phy32 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 = 408.017393 -0:The maximum resident set size (KB) = 692572 +0:The total amount of wall time = 414.480487 +0:The maximum resident set size (KB) = 693368 Test 044 rap_control_dyn64_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/rap_control_debug_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rap_control_debug_dyn32_phy32 Checking test 045 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 142.681121 -0:The maximum resident set size (KB) = 686724 +0:The total amount of wall time = 143.793225 +0:The maximum resident set size (KB) = 688024 Test 045 rap_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/hrrr_control_debug_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/hrrr_control_debug_dyn32_phy32 Checking test 046 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 139.695583 -0:The maximum resident set size (KB) = 684132 +0:The total amount of wall time = 142.073553 +0:The maximum resident set size (KB) = 683884 Test 046 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/rap_control_dyn64_phy32_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control_debug_dyn64_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rap_control_dyn64_phy32_debug Checking test 047 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 146.854160 -0:The maximum resident set size (KB) = 707680 +0:The total amount of wall time = 148.148992 +0:The maximum resident set size (KB) = 707780 Test 047 rap_control_dyn64_phy32_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/cpld_control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/cpld_control_p8 Checking test 048 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1582,14 +1582,14 @@ Checking test 048 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 502.265035 -0:The maximum resident set size (KB) = 3160480 +0:The total amount of wall time = 500.422889 +0:The maximum resident set size (KB) = 3159044 Test 048 cpld_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/cpld_control_nowave_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/cpld_control_c96_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/cpld_control_nowave_noaero_p8 Checking test 049 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1651,14 +1651,14 @@ Checking test 049 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 248.811245 -0:The maximum resident set size (KB) = 1240876 +0:The total amount of wall time = 250.410855 +0:The maximum resident set size (KB) = 1241772 Test 049 cpld_control_nowave_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/cpld_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/cpld_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/cpld_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/cpld_debug_p8 Checking test 050 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1711,25 +1711,25 @@ Checking test 050 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 201.693095 -0:The maximum resident set size (KB) = 3174108 +0:The total amount of wall time = 199.990971 +0:The maximum resident set size (KB) = 3172664 Test 050 cpld_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/GNU/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_12010/datm_cdeps_control_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/datm_cdeps_control_cfsr Checking test 051 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 178.946624 -0:The maximum resident set size (KB) = 672444 +0:The total amount of wall time = 173.205289 +0:The maximum resident set size (KB) = 670008 Test 051 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Fri Apr 14 18:55:19 MDT 2023 -Elapsed time: 00h:31m:58s. Have a nice day! +Tue Apr 18 22:31:15 MDT 2023 +Elapsed time: 00h:35m:03s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 9e1e4617df6..23b0456056d 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,45 +1,14094 @@ -Fri Apr 14 18:08:22 MDT 2023 ++ echo PID=4042 +PID=4042 ++ SECONDS=0 ++ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT ++ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT ++ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM ++ [[ 4 != 4 ]] ++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 ++ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 ++ export 'MAKE_OPT=-DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp' ++ MAKE_OPT='-DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp' ++ export COMPILE_NR=001 ++ COMPILE_NR=001 ++ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ OPNREQ_TEST=false ++ remove_fail_test ++ echo 'Removing test failure flag file for compile_001' +Removing test failure flag file for compile_001 ++ [[ false == true ]] ++ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_001 ++ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_001.env ]] ++ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_001.env +++ export JOB_NR=001 +++ JOB_NR=001 +++ export COMPILE_NR=001 +++ COMPILE_NR=001 +++ export MACHINE_ID=cheyenne.intel +++ MACHINE_ID=cheyenne.intel +++ export RT_COMPILER=intel +++ RT_COMPILER=intel +++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests +++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests +++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel +++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel +++ export SCHEDULER=pbs +++ SCHEDULER=pbs +++ export ACCNR=NRAL0032 +++ ACCNR=NRAL0032 +++ export QUEUE=regular +++ QUEUE=regular +++ export PARTITION= +++ PARTITION= +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log +++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log +++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel +++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel ++ source default_vars.sh +++ THRD=1 +++ INPES_atmaero=4 +++ JNPES_atmaero=8 +++ WPG_atmaero=6 +++ THRD_cpl_atmw=1 +++ INPES_cpl_atmw=3 +++ JNPES_cpl_atmw=8 +++ WPG_cpl_atmw=6 +++ WAV_tasks_cpl_atmw=30 +++ WAV_thrds_cpl_atmw=1 +++ THRD_cpl_c48=1 +++ INPES_cpl_c48=1 +++ JNPES_cpl_c48=1 +++ WPG_cpl_c48=6 +++ OCN_tasks_cpl_c48=4 +++ ICE_tasks_cpl_c48=4 +++ THRD_cpl_dflt=1 +++ INPES_cpl_dflt=3 +++ JNPES_cpl_dflt=8 +++ WPG_cpl_dflt=6 +++ OCN_tasks_cpl_dflt=20 +++ ICE_tasks_cpl_dflt=10 +++ WAV_tasks_cpl_dflt=20 +++ THRD_cpl_thrd=2 +++ INPES_cpl_thrd=3 +++ JNPES_cpl_thrd=4 +++ WPG_cpl_thrd=6 +++ OCN_tasks_cpl_thrd=20 +++ OCN_thrds_cpl_thrd=1 +++ ICE_tasks_cpl_thrd=10 +++ ICE_thrds_cpl_thrd=1 +++ WAV_tasks_cpl_thrd=12 +++ WAV_thrds_cpl_thrd=2 +++ THRD_cpl_dcmp=1 +++ INPES_cpl_dcmp=4 +++ JNPES_cpl_dcmp=6 +++ WPG_cpl_dcmp=6 +++ OCN_tasks_cpl_dcmp=20 +++ ICE_tasks_cpl_dcmp=10 +++ WAV_tasks_cpl_dcmp=20 +++ THRD_cpl_mpi=1 +++ INPES_cpl_mpi=4 +++ JNPES_cpl_mpi=8 +++ WPG_cpl_mpi=6 +++ OCN_tasks_cpl_mpi=34 +++ ICE_tasks_cpl_mpi=20 +++ WAV_tasks_cpl_mpi=28 +++ THRD_cpl_bmrk=2 +++ INPES_cpl_bmrk=8 +++ JNPES_cpl_bmrk=8 +++ WPG_cpl_bmrk=48 +++ OCN_tasks_cpl_bmrk=120 +++ OCN_thrds_cpl_bmrk=1 +++ ICE_tasks_cpl_bmrk=48 +++ ICE_thrds_cpl_bmrk=1 +++ WAV_tasks_cpl_bmrk=80 +++ WAV_thrds_cpl_bmrk=2 +++ THRD_cpl_c192=2 +++ INPES_cpl_c192=6 +++ JNPES_cpl_c192=8 +++ WPG_cpl_c192=12 +++ OCN_tasks_cpl_c192=60 +++ ICE_tasks_cpl_c192=24 +++ WAV_tasks_cpl_c192=80 +++ ATM_compute_tasks_cdeps_100=12 +++ OCN_tasks_cdeps_100=16 +++ ICE_tasks_cdeps_100=12 +++ ATM_compute_tasks_cdeps_025=40 +++ OCN_tasks_cdeps_025=120 +++ ICE_tasks_cdeps_025=48 +++ INPES_aqm=33 +++ JNPES_aqm=8 +++ aqm_omp_num_threads=1 +++ atm_omp_num_threads=1 +++ chm_omp_num_threads=1 +++ ice_omp_num_threads=1 +++ lnd_omp_num_threads=1 +++ med_omp_num_threads=1 +++ ocn_omp_num_threads=1 +++ wav_omp_num_threads=1 +++ [[ cheyenne.intel = wcoss2.* ]] +++ [[ cheyenne.intel = acorn.* ]] +++ [[ cheyenne.intel = orion.* ]] +++ [[ cheyenne.intel = hera.* ]] +++ [[ cheyenne.intel = linux.* ]] +++ [[ cheyenne.intel = jet.* ]] +++ [[ cheyenne.intel = s4.* ]] +++ [[ cheyenne.intel = gaea.* ]] +++ [[ cheyenne.intel = cheyenne.* ]] +++ TPN=36 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ INPES_c384=8 +++ JNPES_c384=6 +++ THRD_c384=2 +++ INPES_c768=8 +++ JNPES_c768=16 +++ THRD_c768=2 +++ THRD_cpl_atmw_gdas=3 +++ INPES_cpl_atmw_gdas=6 +++ JNPES_cpl_atmw_gdas=8 +++ WPG_cpl_atmw_gdas=24 +++ WAV_tasks_atmw_gdas=264 +++ THRD_cpl_dflt=1 +++ INPES_cpl_dflt=6 +++ JNPES_cpl_dflt=8 +++ WPG_cpl_dflt=6 +++ OCN_tasks_cpl_dflt=20 +++ ICE_tasks_cpl_dflt=10 +++ WAV_tasks_cpl_dflt=20 +++ THRD_cpl_thrd=2 +++ INPES_cpl_thrd=6 +++ JNPES_cpl_thrd=4 +++ WPG_cpl_thrd=6 +++ OCN_tasks_cpl_thrd=20 +++ ICE_tasks_cpl_thrd=10 +++ WAV_tasks_cpl_thrd=20 +++ THRD_cpl_dcmp=1 +++ INPES_cpl_dcmp=4 +++ JNPES_cpl_dcmp=12 +++ WPG_cpl_dcmp=6 +++ OCN_tasks_cpl_dcmp=20 +++ ICE_tasks_cpl_dcmp=10 +++ WAV_tasks_cpl_dcmp=20 +++ THRD_cpl_mpi=1 +++ INPES_cpl_mpi=6 +++ JNPES_cpl_mpi=12 +++ WPG_cpl_mpi=6 +++ OCN_tasks_cpl_mpi=24 +++ ICE_tasks_cpl_mpi=12 +++ WAV_tasks_cpl_mpi=24 +++ THRD_cpl_bmrk=2 +++ INPES_cpl_bmrk=12 +++ JNPES_cpl_bmrk=8 +++ WPG_cpl_bmrk=48 +++ OCN_tasks_cpl_bmrk=120 +++ ICE_tasks_cpl_bmrk=48 +++ WAV_tasks_cpl_bmrk=100 +++ WLCLK_dflt=30 +++ export WLCLK=30 +++ WLCLK=30 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=001 ++ TEST_NR=001 ++ export JBNME=compile_001 ++ JBNME=compile_001 ++ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_001 ++ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_001 +++ date +%s ++ echo -n 'compile_001, 1681917418,' ++ source rt_utils.sh +++ set -eu +++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] +++ OPNREQ_TEST=false +++ qsub_id=0 +++ slurm_id=0 +++ bsub_id=0 ++ source atparse.bash ++ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_001 ++ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_001 ++ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_001 ++ [[ pbs = \s\l\u\r\m ]] ++ [[ pbs = \l\s\f ]] ++ [[ pbs = \p\b\s ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +Job id 9506856 +TEST 001 compile is waiting to enter the queue +TEST 001 compile is submitted +1 min. TEST 001 compile is waiting in a queue, status: Q jobid 9506856 +2 min. TEST 001 compile is running, status: R jobid 9506856 +3 min. TEST 001 compile is running, status: R jobid 9506856 +4 min. TEST 001 compile is running, status: R jobid 9506856 +5 min. TEST 001 compile is running, status: R jobid 9506856 +6 min. TEST 001 compile is running, status: R jobid 9506856 +7 min. TEST 001 compile is running, status: R jobid 9506856 +8 min. TEST 001 compile is running, status: R jobid 9506856 +9 min. TEST 001 compile is running, status: R jobid 9506856 +10 min. TEST 001 compile is running, status: R jobid 9506856 +11 min. TEST 001 compile is running, status: R jobid 9506856 +12 min. TEST 001 compile is running, status: R jobid 9506856 +13 min. TEST 001 compile is running, status: R jobid 9506856 +14 min. TEST 001 compile is running, status: R jobid 9506856 +15 min. TEST 001 compile is running, status: R jobid 9506856 +16 min. TEST 001 compile is running, status: R jobid 9506856 +17 min. TEST 001 compile is running, status: R jobid 9506856 +18 min. TEST 001 compile is running, status: R jobid 9506856 +19 min. TEST 001 compile is running, status: R jobid 9506856 +20 min. TEST 001 compile is running, status: R jobid 9506856 +21 min. TEST 001 compile is running, status: R jobid 9506856 +22 min. TEST 001 compile is running, status: R jobid 9506856 +23 min. TEST 001 compile is running, status: R jobid 9506856 +24 min. TEST 001 compile is running, status: R jobid 9506856 +25 min. TEST 001 compile is running, status: R jobid 9506856 +26 min. TEST 001 compile is running, status: R jobid 9506856 +qstat: 9506856.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information +qstat: 9506856.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information +27 min. TEST 001 compile is finished, status: - jobid 9506856 ++ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_001.exe +-rwxr-xr-x 1 jongkim ncar 451703056 Apr 19 15:42 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_001.exe ++ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_001/compile_001_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel ++ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_001/job_timestamp.txt ++ remove_fail_test ++ echo 'Removing test failure flag file for compile_001' +Removing test failure flag file for compile_001 ++ [[ false == true ]] ++ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_001 +++ date +%s ++ echo ' 1681919022, 1' ++ elapsed=1604 ++ echo 'Elapsed time 1604 seconds. Compile 001' +Elapsed time 1604 seconds. Compile 001 ++ '[' 0 -eq 0 ']' +Compile 001 elapsed time 1524 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON ++ echo PID=4054 +PID=4054 ++ SECONDS=0 ++ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT ++ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT ++ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM ++ [[ 4 != 4 ]] ++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 ++ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 ++ export 'MAKE_OPT=-DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp' ++ MAKE_OPT='-DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp' ++ export COMPILE_NR=002 ++ COMPILE_NR=002 ++ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ OPNREQ_TEST=false ++ remove_fail_test ++ echo 'Removing test failure flag file for compile_002' +Removing test failure flag file for compile_002 ++ [[ false == true ]] ++ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_002 ++ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_002.env ]] ++ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_002.env +++ export JOB_NR=003 +++ JOB_NR=003 +++ export COMPILE_NR=002 +++ COMPILE_NR=002 +++ export MACHINE_ID=cheyenne.intel +++ MACHINE_ID=cheyenne.intel +++ export RT_COMPILER=intel +++ RT_COMPILER=intel +++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests +++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests +++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel +++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel +++ export SCHEDULER=pbs +++ SCHEDULER=pbs +++ export ACCNR=NRAL0032 +++ ACCNR=NRAL0032 +++ export QUEUE=regular +++ QUEUE=regular +++ export PARTITION= +++ PARTITION= +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log +++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log +++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel +++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel ++ source default_vars.sh +++ THRD=1 +++ INPES_atmaero=4 +++ JNPES_atmaero=8 +++ WPG_atmaero=6 +++ THRD_cpl_atmw=1 +++ INPES_cpl_atmw=3 +++ JNPES_cpl_atmw=8 +++ WPG_cpl_atmw=6 +++ WAV_tasks_cpl_atmw=30 +++ WAV_thrds_cpl_atmw=1 +++ THRD_cpl_c48=1 +++ INPES_cpl_c48=1 +++ JNPES_cpl_c48=1 +++ WPG_cpl_c48=6 +++ OCN_tasks_cpl_c48=4 +++ ICE_tasks_cpl_c48=4 +++ THRD_cpl_dflt=1 +++ INPES_cpl_dflt=3 +++ JNPES_cpl_dflt=8 +++ WPG_cpl_dflt=6 +++ OCN_tasks_cpl_dflt=20 +++ ICE_tasks_cpl_dflt=10 +++ WAV_tasks_cpl_dflt=20 +++ THRD_cpl_thrd=2 +++ INPES_cpl_thrd=3 +++ JNPES_cpl_thrd=4 +++ WPG_cpl_thrd=6 +++ OCN_tasks_cpl_thrd=20 +++ OCN_thrds_cpl_thrd=1 +++ ICE_tasks_cpl_thrd=10 +++ ICE_thrds_cpl_thrd=1 +++ WAV_tasks_cpl_thrd=12 +++ WAV_thrds_cpl_thrd=2 +++ THRD_cpl_dcmp=1 +++ INPES_cpl_dcmp=4 +++ JNPES_cpl_dcmp=6 +++ WPG_cpl_dcmp=6 +++ OCN_tasks_cpl_dcmp=20 +++ ICE_tasks_cpl_dcmp=10 +++ WAV_tasks_cpl_dcmp=20 +++ THRD_cpl_mpi=1 +++ INPES_cpl_mpi=4 +++ JNPES_cpl_mpi=8 +++ WPG_cpl_mpi=6 +++ OCN_tasks_cpl_mpi=34 +++ ICE_tasks_cpl_mpi=20 +++ WAV_tasks_cpl_mpi=28 +++ THRD_cpl_bmrk=2 +++ INPES_cpl_bmrk=8 +++ JNPES_cpl_bmrk=8 +++ WPG_cpl_bmrk=48 +++ OCN_tasks_cpl_bmrk=120 +++ OCN_thrds_cpl_bmrk=1 +++ ICE_tasks_cpl_bmrk=48 +++ ICE_thrds_cpl_bmrk=1 +++ WAV_tasks_cpl_bmrk=80 +++ WAV_thrds_cpl_bmrk=2 +++ THRD_cpl_c192=2 +++ INPES_cpl_c192=6 +++ JNPES_cpl_c192=8 +++ WPG_cpl_c192=12 +++ OCN_tasks_cpl_c192=60 +++ ICE_tasks_cpl_c192=24 +++ WAV_tasks_cpl_c192=80 +++ ATM_compute_tasks_cdeps_100=12 +++ OCN_tasks_cdeps_100=16 +++ ICE_tasks_cdeps_100=12 +++ ATM_compute_tasks_cdeps_025=40 +++ OCN_tasks_cdeps_025=120 +++ ICE_tasks_cdeps_025=48 +++ INPES_aqm=33 +++ JNPES_aqm=8 +++ aqm_omp_num_threads=1 +++ atm_omp_num_threads=1 +++ chm_omp_num_threads=1 +++ ice_omp_num_threads=1 +++ lnd_omp_num_threads=1 +++ med_omp_num_threads=1 +++ ocn_omp_num_threads=1 +++ wav_omp_num_threads=1 +++ [[ cheyenne.intel = wcoss2.* ]] +++ [[ cheyenne.intel = acorn.* ]] +++ [[ cheyenne.intel = orion.* ]] +++ [[ cheyenne.intel = hera.* ]] +++ [[ cheyenne.intel = linux.* ]] +++ [[ cheyenne.intel = jet.* ]] +++ [[ cheyenne.intel = s4.* ]] +++ [[ cheyenne.intel = gaea.* ]] +++ [[ cheyenne.intel = cheyenne.* ]] +++ TPN=36 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ INPES_c384=8 +++ JNPES_c384=6 +++ THRD_c384=2 +++ INPES_c768=8 +++ JNPES_c768=16 +++ THRD_c768=2 +++ THRD_cpl_atmw_gdas=3 +++ INPES_cpl_atmw_gdas=6 +++ JNPES_cpl_atmw_gdas=8 +++ WPG_cpl_atmw_gdas=24 +++ WAV_tasks_atmw_gdas=264 +++ THRD_cpl_dflt=1 +++ INPES_cpl_dflt=6 +++ JNPES_cpl_dflt=8 +++ WPG_cpl_dflt=6 +++ OCN_tasks_cpl_dflt=20 +++ ICE_tasks_cpl_dflt=10 +++ WAV_tasks_cpl_dflt=20 +++ THRD_cpl_thrd=2 +++ INPES_cpl_thrd=6 +++ JNPES_cpl_thrd=4 +++ WPG_cpl_thrd=6 +++ OCN_tasks_cpl_thrd=20 +++ ICE_tasks_cpl_thrd=10 +++ WAV_tasks_cpl_thrd=20 +++ THRD_cpl_dcmp=1 +++ INPES_cpl_dcmp=4 +++ JNPES_cpl_dcmp=12 +++ WPG_cpl_dcmp=6 +++ OCN_tasks_cpl_dcmp=20 +++ ICE_tasks_cpl_dcmp=10 +++ WAV_tasks_cpl_dcmp=20 +++ THRD_cpl_mpi=1 +++ INPES_cpl_mpi=6 +++ JNPES_cpl_mpi=12 +++ WPG_cpl_mpi=6 +++ OCN_tasks_cpl_mpi=24 +++ ICE_tasks_cpl_mpi=12 +++ WAV_tasks_cpl_mpi=24 +++ THRD_cpl_bmrk=2 +++ INPES_cpl_bmrk=12 +++ JNPES_cpl_bmrk=8 +++ WPG_cpl_bmrk=48 +++ OCN_tasks_cpl_bmrk=120 +++ ICE_tasks_cpl_bmrk=48 +++ WAV_tasks_cpl_bmrk=100 +++ WLCLK_dflt=30 +++ export WLCLK=30 +++ WLCLK=30 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=002 ++ TEST_NR=002 ++ export JBNME=compile_002 ++ JBNME=compile_002 ++ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_002 ++ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_002 +++ date +%s ++ echo -n 'compile_002, 1681917418,' ++ source rt_utils.sh +++ set -eu +++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] +++ OPNREQ_TEST=false +++ qsub_id=0 +++ slurm_id=0 +++ bsub_id=0 ++ source atparse.bash ++ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_002 ++ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_002 ++ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_002 ++ [[ pbs = \s\l\u\r\m ]] ++ [[ pbs = \l\s\f ]] ++ [[ pbs = \p\b\s ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +Job id 9506857 +TEST 002 compile is waiting to enter the queue +TEST 002 compile is submitted +1 min. TEST 002 compile is waiting in a queue, status: Q jobid 9506857 +2 min. TEST 002 compile is running, status: R jobid 9506857 +3 min. TEST 002 compile is running, status: R jobid 9506857 +4 min. TEST 002 compile is running, status: R jobid 9506857 +5 min. TEST 002 compile is running, status: R jobid 9506857 +6 min. TEST 002 compile is running, status: R jobid 9506857 +7 min. TEST 002 compile is running, status: R jobid 9506857 +8 min. TEST 002 compile is running, status: R jobid 9506857 +9 min. TEST 002 compile is running, status: R jobid 9506857 +10 min. TEST 002 compile is running, status: R jobid 9506857 +11 min. TEST 002 compile is running, status: R jobid 9506857 +12 min. TEST 002 compile is running, status: R jobid 9506857 +13 min. TEST 002 compile is running, status: R jobid 9506857 +14 min. TEST 002 compile is running, status: R jobid 9506857 +15 min. TEST 002 compile is running, status: R jobid 9506857 +16 min. TEST 002 compile is running, status: R jobid 9506857 +17 min. TEST 002 compile is running, status: R jobid 9506857 +18 min. TEST 002 compile is running, status: R jobid 9506857 +19 min. TEST 002 compile is running, status: R jobid 9506857 +20 min. TEST 002 compile is running, status: R jobid 9506857 +21 min. TEST 002 compile is running, status: R jobid 9506857 +22 min. TEST 002 compile is running, status: R jobid 9506857 +23 min. TEST 002 compile is running, status: R jobid 9506857 +24 min. TEST 002 compile is running, status: R jobid 9506857 +25 min. TEST 002 compile is finished, status: E jobid 9506857 ++ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_002.exe +-rwxr-xr-x 1 jongkim ncar 451833816 Apr 19 15:41 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_002.exe ++ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_002/compile_002_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel ++ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_002/job_timestamp.txt ++ remove_fail_test ++ echo 'Removing test failure flag file for compile_002' +Removing test failure flag file for compile_002 ++ [[ false == true ]] ++ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_002 +++ date +%s ++ echo ' 1681918902, 1' ++ elapsed=1484 ++ echo 'Elapsed time 1484 seconds. Compile 002' +Elapsed time 1484 seconds. Compile 002 ++ '[' 0 -eq 0 ']' +Compile 002 elapsed time 1432 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON ++ echo PID=4049 +PID=4049 ++ SECONDS=0 ++ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT ++ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT ++ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM ++ [[ 4 != 4 ]] ++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 ++ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 ++ export 'MAKE_OPT=-DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8' ++ MAKE_OPT='-DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8' ++ export COMPILE_NR=003 ++ COMPILE_NR=003 ++ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ OPNREQ_TEST=false ++ remove_fail_test ++ echo 'Removing test failure flag file for compile_003' +Removing test failure flag file for compile_003 ++ [[ false == true ]] ++ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_003 ++ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_003.env ]] ++ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_003.env +++ export JOB_NR=017 +++ JOB_NR=017 +++ export COMPILE_NR=003 +++ COMPILE_NR=003 +++ export MACHINE_ID=cheyenne.intel +++ MACHINE_ID=cheyenne.intel +++ export RT_COMPILER=intel +++ RT_COMPILER=intel +++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests +++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests +++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel +++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel +++ export SCHEDULER=pbs +++ SCHEDULER=pbs +++ export ACCNR=NRAL0032 +++ ACCNR=NRAL0032 +++ export QUEUE=regular +++ QUEUE=regular +++ export PARTITION= +++ PARTITION= +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log +++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log +++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel +++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel ++ source default_vars.sh +++ THRD=1 +++ INPES_atmaero=4 +++ JNPES_atmaero=8 +++ WPG_atmaero=6 +++ THRD_cpl_atmw=1 +++ INPES_cpl_atmw=3 +++ JNPES_cpl_atmw=8 +++ WPG_cpl_atmw=6 +++ WAV_tasks_cpl_atmw=30 +++ WAV_thrds_cpl_atmw=1 +++ THRD_cpl_c48=1 +++ INPES_cpl_c48=1 +++ JNPES_cpl_c48=1 +++ WPG_cpl_c48=6 +++ OCN_tasks_cpl_c48=4 +++ ICE_tasks_cpl_c48=4 +++ THRD_cpl_dflt=1 +++ INPES_cpl_dflt=3 +++ JNPES_cpl_dflt=8 +++ WPG_cpl_dflt=6 +++ OCN_tasks_cpl_dflt=20 +++ ICE_tasks_cpl_dflt=10 +++ WAV_tasks_cpl_dflt=20 +++ THRD_cpl_thrd=2 +++ INPES_cpl_thrd=3 +++ JNPES_cpl_thrd=4 +++ WPG_cpl_thrd=6 +++ OCN_tasks_cpl_thrd=20 +++ OCN_thrds_cpl_thrd=1 +++ ICE_tasks_cpl_thrd=10 +++ ICE_thrds_cpl_thrd=1 +++ WAV_tasks_cpl_thrd=12 +++ WAV_thrds_cpl_thrd=2 +++ THRD_cpl_dcmp=1 +++ INPES_cpl_dcmp=4 +++ JNPES_cpl_dcmp=6 +++ WPG_cpl_dcmp=6 +++ OCN_tasks_cpl_dcmp=20 +++ ICE_tasks_cpl_dcmp=10 +++ WAV_tasks_cpl_dcmp=20 +++ THRD_cpl_mpi=1 +++ INPES_cpl_mpi=4 +++ JNPES_cpl_mpi=8 +++ WPG_cpl_mpi=6 +++ OCN_tasks_cpl_mpi=34 +++ ICE_tasks_cpl_mpi=20 +++ WAV_tasks_cpl_mpi=28 +++ THRD_cpl_bmrk=2 +++ INPES_cpl_bmrk=8 +++ JNPES_cpl_bmrk=8 +++ WPG_cpl_bmrk=48 +++ OCN_tasks_cpl_bmrk=120 +++ OCN_thrds_cpl_bmrk=1 +++ ICE_tasks_cpl_bmrk=48 +++ ICE_thrds_cpl_bmrk=1 +++ WAV_tasks_cpl_bmrk=80 +++ WAV_thrds_cpl_bmrk=2 +++ THRD_cpl_c192=2 +++ INPES_cpl_c192=6 +++ JNPES_cpl_c192=8 +++ WPG_cpl_c192=12 +++ OCN_tasks_cpl_c192=60 +++ ICE_tasks_cpl_c192=24 +++ WAV_tasks_cpl_c192=80 +++ ATM_compute_tasks_cdeps_100=12 +++ OCN_tasks_cdeps_100=16 +++ ICE_tasks_cdeps_100=12 +++ ATM_compute_tasks_cdeps_025=40 +++ OCN_tasks_cdeps_025=120 +++ ICE_tasks_cdeps_025=48 +++ INPES_aqm=33 +++ JNPES_aqm=8 +++ aqm_omp_num_threads=1 +++ atm_omp_num_threads=1 +++ chm_omp_num_threads=1 +++ ice_omp_num_threads=1 +++ lnd_omp_num_threads=1 +++ med_omp_num_threads=1 +++ ocn_omp_num_threads=1 +++ wav_omp_num_threads=1 +++ [[ cheyenne.intel = wcoss2.* ]] +++ [[ cheyenne.intel = acorn.* ]] +++ [[ cheyenne.intel = orion.* ]] +++ [[ cheyenne.intel = hera.* ]] +++ [[ cheyenne.intel = linux.* ]] +++ [[ cheyenne.intel = jet.* ]] +++ [[ cheyenne.intel = s4.* ]] +++ [[ cheyenne.intel = gaea.* ]] +++ [[ cheyenne.intel = cheyenne.* ]] +++ TPN=36 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ INPES_c384=8 +++ JNPES_c384=6 +++ THRD_c384=2 +++ INPES_c768=8 +++ JNPES_c768=16 +++ THRD_c768=2 +++ THRD_cpl_atmw_gdas=3 +++ INPES_cpl_atmw_gdas=6 +++ JNPES_cpl_atmw_gdas=8 +++ WPG_cpl_atmw_gdas=24 +++ WAV_tasks_atmw_gdas=264 +++ THRD_cpl_dflt=1 +++ INPES_cpl_dflt=6 +++ JNPES_cpl_dflt=8 +++ WPG_cpl_dflt=6 +++ OCN_tasks_cpl_dflt=20 +++ ICE_tasks_cpl_dflt=10 +++ WAV_tasks_cpl_dflt=20 +++ THRD_cpl_thrd=2 +++ INPES_cpl_thrd=6 +++ JNPES_cpl_thrd=4 +++ WPG_cpl_thrd=6 +++ OCN_tasks_cpl_thrd=20 +++ ICE_tasks_cpl_thrd=10 +++ WAV_tasks_cpl_thrd=20 +++ THRD_cpl_dcmp=1 +++ INPES_cpl_dcmp=4 +++ JNPES_cpl_dcmp=12 +++ WPG_cpl_dcmp=6 +++ OCN_tasks_cpl_dcmp=20 +++ ICE_tasks_cpl_dcmp=10 +++ WAV_tasks_cpl_dcmp=20 +++ THRD_cpl_mpi=1 +++ INPES_cpl_mpi=6 +++ JNPES_cpl_mpi=12 +++ WPG_cpl_mpi=6 +++ OCN_tasks_cpl_mpi=24 +++ ICE_tasks_cpl_mpi=12 +++ WAV_tasks_cpl_mpi=24 +++ THRD_cpl_bmrk=2 +++ INPES_cpl_bmrk=12 +++ JNPES_cpl_bmrk=8 +++ WPG_cpl_bmrk=48 +++ OCN_tasks_cpl_bmrk=120 +++ ICE_tasks_cpl_bmrk=48 +++ WAV_tasks_cpl_bmrk=100 +++ WLCLK_dflt=30 +++ export WLCLK=30 +++ WLCLK=30 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=003 ++ TEST_NR=003 ++ export JBNME=compile_003 ++ JBNME=compile_003 ++ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_003 ++ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_003 +++ date +%s ++ echo -n 'compile_003, 1681917418,' ++ source rt_utils.sh +++ set -eu +++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] +++ OPNREQ_TEST=false +++ qsub_id=0 +++ slurm_id=0 +++ bsub_id=0 ++ source atparse.bash ++ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_003 ++ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_003 ++ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_003 ++ [[ pbs = \s\l\u\r\m ]] ++ [[ pbs = \l\s\f ]] ++ [[ pbs = \p\b\s ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +Job id 9506858 +TEST 003 compile is waiting to enter the queue +TEST 003 compile is submitted +1 min. TEST 003 compile is waiting in a queue, status: Q jobid 9506858 +2 min. TEST 003 compile is running, status: R jobid 9506858 +3 min. TEST 003 compile is running, status: R jobid 9506858 +4 min. TEST 003 compile is running, status: R jobid 9506858 +5 min. TEST 003 compile is running, status: R jobid 9506858 +6 min. TEST 003 compile is running, status: R jobid 9506858 +7 min. TEST 003 compile is running, status: R jobid 9506858 +8 min. TEST 003 compile is running, status: R jobid 9506858 +9 min. TEST 003 compile is running, status: R jobid 9506858 +10 min. TEST 003 compile is running, status: R jobid 9506858 +11 min. TEST 003 compile is running, status: R jobid 9506858 +12 min. TEST 003 compile is running, status: R jobid 9506858 +13 min. TEST 003 compile is running, status: R jobid 9506858 +14 min. TEST 003 compile is running, status: R jobid 9506858 +15 min. TEST 003 compile is running, status: R jobid 9506858 +16 min. TEST 003 compile is running, status: R jobid 9506858 +17 min. TEST 003 compile is running, status: R jobid 9506858 +18 min. TEST 003 compile is running, status: R jobid 9506858 +19 min. TEST 003 compile is running, status: R jobid 9506858 +20 min. TEST 003 compile is running, status: R jobid 9506858 +21 min. TEST 003 compile is running, status: R jobid 9506858 +22 min. TEST 003 compile is running, status: R jobid 9506858 +23 min. TEST 003 compile is running, status: R jobid 9506858 +24 min. TEST 003 compile is running, status: R jobid 9506858 +qstat: 9506858.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information +qstat: 9506858.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information +25 min. TEST 003 compile is finished, status: - jobid 9506858 ++ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_003.exe +-rwxr-xr-x 1 jongkim ncar 359887088 Apr 19 15:41 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_003.exe ++ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_003/compile_003_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel ++ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_003/job_timestamp.txt ++ remove_fail_test ++ echo 'Removing test failure flag file for compile_003' +Removing test failure flag file for compile_003 ++ [[ false == true ]] ++ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_003 +++ date +%s ++ echo ' 1681918902, 1' ++ elapsed=1484 ++ echo 'Elapsed time 1484 seconds. Compile 003' +Elapsed time 1484 seconds. Compile 003 ++ '[' 0 -eq 0 ']' +Compile 003 elapsed time 1405 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON ++ echo PID=4055 +PID=4055 ++ SECONDS=0 ++ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT ++ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT ++ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM ++ [[ 4 != 4 ]] ++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 ++ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 ++ export 'MAKE_OPT=-DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp' ++ MAKE_OPT='-DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp' ++ export COMPILE_NR=004 ++ COMPILE_NR=004 ++ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ OPNREQ_TEST=false ++ remove_fail_test ++ echo 'Removing test failure flag file for compile_004' +Removing test failure flag file for compile_004 ++ [[ false == true ]] ++ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_004 ++ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_004.env ]] ++ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_004.env +++ export JOB_NR=020 +++ JOB_NR=020 +++ export COMPILE_NR=004 +++ COMPILE_NR=004 +++ export MACHINE_ID=cheyenne.intel +++ MACHINE_ID=cheyenne.intel +++ export RT_COMPILER=intel +++ RT_COMPILER=intel +++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests +++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests +++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel +++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel +++ export SCHEDULER=pbs +++ SCHEDULER=pbs +++ export ACCNR=NRAL0032 +++ ACCNR=NRAL0032 +++ export QUEUE=regular +++ QUEUE=regular +++ export PARTITION= +++ PARTITION= +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log +++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log +++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel +++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel ++ source default_vars.sh +++ THRD=1 +++ INPES_atmaero=4 +++ JNPES_atmaero=8 +++ WPG_atmaero=6 +++ THRD_cpl_atmw=1 +++ INPES_cpl_atmw=3 +++ JNPES_cpl_atmw=8 +++ WPG_cpl_atmw=6 +++ WAV_tasks_cpl_atmw=30 +++ WAV_thrds_cpl_atmw=1 +++ THRD_cpl_c48=1 +++ INPES_cpl_c48=1 +++ JNPES_cpl_c48=1 +++ WPG_cpl_c48=6 +++ OCN_tasks_cpl_c48=4 +++ ICE_tasks_cpl_c48=4 +++ THRD_cpl_dflt=1 +++ INPES_cpl_dflt=3 +++ JNPES_cpl_dflt=8 +++ WPG_cpl_dflt=6 +++ OCN_tasks_cpl_dflt=20 +++ ICE_tasks_cpl_dflt=10 +++ WAV_tasks_cpl_dflt=20 +++ THRD_cpl_thrd=2 +++ INPES_cpl_thrd=3 +++ JNPES_cpl_thrd=4 +++ WPG_cpl_thrd=6 +++ OCN_tasks_cpl_thrd=20 +++ OCN_thrds_cpl_thrd=1 +++ ICE_tasks_cpl_thrd=10 +++ ICE_thrds_cpl_thrd=1 +++ WAV_tasks_cpl_thrd=12 +++ WAV_thrds_cpl_thrd=2 +++ THRD_cpl_dcmp=1 +++ INPES_cpl_dcmp=4 +++ JNPES_cpl_dcmp=6 +++ WPG_cpl_dcmp=6 +++ OCN_tasks_cpl_dcmp=20 +++ ICE_tasks_cpl_dcmp=10 +++ WAV_tasks_cpl_dcmp=20 +++ THRD_cpl_mpi=1 +++ INPES_cpl_mpi=4 +++ JNPES_cpl_mpi=8 +++ WPG_cpl_mpi=6 +++ OCN_tasks_cpl_mpi=34 +++ ICE_tasks_cpl_mpi=20 +++ WAV_tasks_cpl_mpi=28 +++ THRD_cpl_bmrk=2 +++ INPES_cpl_bmrk=8 +++ JNPES_cpl_bmrk=8 +++ WPG_cpl_bmrk=48 +++ OCN_tasks_cpl_bmrk=120 +++ OCN_thrds_cpl_bmrk=1 +++ ICE_tasks_cpl_bmrk=48 +++ ICE_thrds_cpl_bmrk=1 +++ WAV_tasks_cpl_bmrk=80 +++ WAV_thrds_cpl_bmrk=2 +++ THRD_cpl_c192=2 +++ INPES_cpl_c192=6 +++ JNPES_cpl_c192=8 +++ WPG_cpl_c192=12 +++ OCN_tasks_cpl_c192=60 +++ ICE_tasks_cpl_c192=24 +++ WAV_tasks_cpl_c192=80 +++ ATM_compute_tasks_cdeps_100=12 +++ OCN_tasks_cdeps_100=16 +++ ICE_tasks_cdeps_100=12 +++ ATM_compute_tasks_cdeps_025=40 +++ OCN_tasks_cdeps_025=120 +++ ICE_tasks_cdeps_025=48 +++ INPES_aqm=33 +++ JNPES_aqm=8 +++ aqm_omp_num_threads=1 +++ atm_omp_num_threads=1 +++ chm_omp_num_threads=1 +++ ice_omp_num_threads=1 +++ lnd_omp_num_threads=1 +++ med_omp_num_threads=1 +++ ocn_omp_num_threads=1 +++ wav_omp_num_threads=1 +++ [[ cheyenne.intel = wcoss2.* ]] +++ [[ cheyenne.intel = acorn.* ]] +++ [[ cheyenne.intel = orion.* ]] +++ [[ cheyenne.intel = hera.* ]] +++ [[ cheyenne.intel = linux.* ]] +++ [[ cheyenne.intel = jet.* ]] +++ [[ cheyenne.intel = s4.* ]] +++ [[ cheyenne.intel = gaea.* ]] +++ [[ cheyenne.intel = cheyenne.* ]] +++ TPN=36 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ INPES_c384=8 +++ JNPES_c384=6 +++ THRD_c384=2 +++ INPES_c768=8 +++ JNPES_c768=16 +++ THRD_c768=2 +++ THRD_cpl_atmw_gdas=3 +++ INPES_cpl_atmw_gdas=6 +++ JNPES_cpl_atmw_gdas=8 +++ WPG_cpl_atmw_gdas=24 +++ WAV_tasks_atmw_gdas=264 +++ THRD_cpl_dflt=1 +++ INPES_cpl_dflt=6 +++ JNPES_cpl_dflt=8 +++ WPG_cpl_dflt=6 +++ OCN_tasks_cpl_dflt=20 +++ ICE_tasks_cpl_dflt=10 +++ WAV_tasks_cpl_dflt=20 +++ THRD_cpl_thrd=2 +++ INPES_cpl_thrd=6 +++ JNPES_cpl_thrd=4 +++ WPG_cpl_thrd=6 +++ OCN_tasks_cpl_thrd=20 +++ ICE_tasks_cpl_thrd=10 +++ WAV_tasks_cpl_thrd=20 +++ THRD_cpl_dcmp=1 +++ INPES_cpl_dcmp=4 +++ JNPES_cpl_dcmp=12 +++ WPG_cpl_dcmp=6 +++ OCN_tasks_cpl_dcmp=20 +++ ICE_tasks_cpl_dcmp=10 +++ WAV_tasks_cpl_dcmp=20 +++ THRD_cpl_mpi=1 +++ INPES_cpl_mpi=6 +++ JNPES_cpl_mpi=12 +++ WPG_cpl_mpi=6 +++ OCN_tasks_cpl_mpi=24 +++ ICE_tasks_cpl_mpi=12 +++ WAV_tasks_cpl_mpi=24 +++ THRD_cpl_bmrk=2 +++ INPES_cpl_bmrk=12 +++ JNPES_cpl_bmrk=8 +++ WPG_cpl_bmrk=48 +++ OCN_tasks_cpl_bmrk=120 +++ ICE_tasks_cpl_bmrk=48 +++ WAV_tasks_cpl_bmrk=100 +++ WLCLK_dflt=30 +++ export WLCLK=30 +++ WLCLK=30 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=004 ++ TEST_NR=004 ++ export JBNME=compile_004 ++ JBNME=compile_004 ++ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_004 ++ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_004 +++ date +%s ++ echo -n 'compile_004, 1681917418,' ++ source rt_utils.sh +++ set -eu +++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] +++ OPNREQ_TEST=false +++ qsub_id=0 +++ slurm_id=0 +++ bsub_id=0 ++ source atparse.bash ++ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_004 ++ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_004 ++ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_004 ++ [[ pbs = \s\l\u\r\m ]] ++ [[ pbs = \l\s\f ]] ++ [[ pbs = \p\b\s ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +Job id 9506861 +TEST 004 compile is waiting to enter the queue +TEST 004 compile is submitted +1 min. TEST 004 compile is waiting in a queue, status: Q jobid 9506861 +2 min. TEST 004 compile is running, status: R jobid 9506861 +3 min. TEST 004 compile is running, status: R jobid 9506861 +4 min. TEST 004 compile is running, status: R jobid 9506861 +5 min. TEST 004 compile is running, status: R jobid 9506861 +6 min. TEST 004 compile is running, status: R jobid 9506861 +7 min. TEST 004 compile is running, status: R jobid 9506861 +8 min. TEST 004 compile is running, status: R jobid 9506861 +9 min. TEST 004 compile is running, status: R jobid 9506861 +qstat: 9506861.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information +qstat: 9506861.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information +10 min. TEST 004 compile is finished, status: - jobid 9506861 ++ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_004.exe +-rwxr-xr-x 1 jongkim ncar 902869984 Apr 19 15:25 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_004.exe ++ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_004/compile_004_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel ++ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_004/job_timestamp.txt ++ remove_fail_test ++ echo 'Removing test failure flag file for compile_004' +Removing test failure flag file for compile_004 ++ [[ false == true ]] ++ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_004 +++ date +%s ++ echo ' 1681917981, 1' ++ elapsed=563 ++ echo 'Elapsed time 563 seconds. Compile 004' +Elapsed time 563 seconds. Compile 004 ++ '[' 0 -eq 0 ']' +Compile 004 elapsed time 478 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON ++ echo PID=4065 +PID=4065 ++ SECONDS=0 ++ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT ++ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT ++ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM ++ [[ 4 != 4 ]] ++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 ++ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 ++ export 'MAKE_OPT=-DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8' ++ MAKE_OPT='-DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8' ++ export COMPILE_NR=005 ++ COMPILE_NR=005 ++ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ OPNREQ_TEST=false ++ remove_fail_test ++ echo 'Removing test failure flag file for compile_005' +Removing test failure flag file for compile_005 ++ [[ false == true ]] ++ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_005 ++ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_005.env ]] ++ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_005.env +++ export JOB_NR=022 +++ JOB_NR=022 +++ export COMPILE_NR=005 +++ COMPILE_NR=005 +++ export MACHINE_ID=cheyenne.intel +++ MACHINE_ID=cheyenne.intel +++ export RT_COMPILER=intel +++ RT_COMPILER=intel +++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests +++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests +++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel +++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel +++ export SCHEDULER=pbs +++ SCHEDULER=pbs +++ export ACCNR=NRAL0032 +++ ACCNR=NRAL0032 +++ export QUEUE=regular +++ QUEUE=regular +++ export PARTITION= +++ PARTITION= +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log +++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log +++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel +++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel ++ source default_vars.sh +++ THRD=1 +++ INPES_atmaero=4 +++ JNPES_atmaero=8 +++ WPG_atmaero=6 +++ THRD_cpl_atmw=1 +++ INPES_cpl_atmw=3 +++ JNPES_cpl_atmw=8 +++ WPG_cpl_atmw=6 +++ WAV_tasks_cpl_atmw=30 +++ WAV_thrds_cpl_atmw=1 +++ THRD_cpl_c48=1 +++ INPES_cpl_c48=1 +++ JNPES_cpl_c48=1 +++ WPG_cpl_c48=6 +++ OCN_tasks_cpl_c48=4 +++ ICE_tasks_cpl_c48=4 +++ THRD_cpl_dflt=1 +++ INPES_cpl_dflt=3 +++ JNPES_cpl_dflt=8 +++ WPG_cpl_dflt=6 +++ OCN_tasks_cpl_dflt=20 +++ ICE_tasks_cpl_dflt=10 +++ WAV_tasks_cpl_dflt=20 +++ THRD_cpl_thrd=2 +++ INPES_cpl_thrd=3 +++ JNPES_cpl_thrd=4 +++ WPG_cpl_thrd=6 +++ OCN_tasks_cpl_thrd=20 +++ OCN_thrds_cpl_thrd=1 +++ ICE_tasks_cpl_thrd=10 +++ ICE_thrds_cpl_thrd=1 +++ WAV_tasks_cpl_thrd=12 +++ WAV_thrds_cpl_thrd=2 +++ THRD_cpl_dcmp=1 +++ INPES_cpl_dcmp=4 +++ JNPES_cpl_dcmp=6 +++ WPG_cpl_dcmp=6 +++ OCN_tasks_cpl_dcmp=20 +++ ICE_tasks_cpl_dcmp=10 +++ WAV_tasks_cpl_dcmp=20 +++ THRD_cpl_mpi=1 +++ INPES_cpl_mpi=4 +++ JNPES_cpl_mpi=8 +++ WPG_cpl_mpi=6 +++ OCN_tasks_cpl_mpi=34 +++ ICE_tasks_cpl_mpi=20 +++ WAV_tasks_cpl_mpi=28 +++ THRD_cpl_bmrk=2 +++ INPES_cpl_bmrk=8 +++ JNPES_cpl_bmrk=8 +++ WPG_cpl_bmrk=48 +++ OCN_tasks_cpl_bmrk=120 +++ OCN_thrds_cpl_bmrk=1 +++ ICE_tasks_cpl_bmrk=48 +++ ICE_thrds_cpl_bmrk=1 +++ WAV_tasks_cpl_bmrk=80 +++ WAV_thrds_cpl_bmrk=2 +++ THRD_cpl_c192=2 +++ INPES_cpl_c192=6 +++ JNPES_cpl_c192=8 +++ WPG_cpl_c192=12 +++ OCN_tasks_cpl_c192=60 +++ ICE_tasks_cpl_c192=24 +++ WAV_tasks_cpl_c192=80 +++ ATM_compute_tasks_cdeps_100=12 +++ OCN_tasks_cdeps_100=16 +++ ICE_tasks_cdeps_100=12 +++ ATM_compute_tasks_cdeps_025=40 +++ OCN_tasks_cdeps_025=120 +++ ICE_tasks_cdeps_025=48 +++ INPES_aqm=33 +++ JNPES_aqm=8 +++ aqm_omp_num_threads=1 +++ atm_omp_num_threads=1 +++ chm_omp_num_threads=1 +++ ice_omp_num_threads=1 +++ lnd_omp_num_threads=1 +++ med_omp_num_threads=1 +++ ocn_omp_num_threads=1 +++ wav_omp_num_threads=1 +++ [[ cheyenne.intel = wcoss2.* ]] +++ [[ cheyenne.intel = acorn.* ]] +++ [[ cheyenne.intel = orion.* ]] +++ [[ cheyenne.intel = hera.* ]] +++ [[ cheyenne.intel = linux.* ]] +++ [[ cheyenne.intel = jet.* ]] +++ [[ cheyenne.intel = s4.* ]] +++ [[ cheyenne.intel = gaea.* ]] +++ [[ cheyenne.intel = cheyenne.* ]] +++ TPN=36 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ INPES_c384=8 +++ JNPES_c384=6 +++ THRD_c384=2 +++ INPES_c768=8 +++ JNPES_c768=16 +++ THRD_c768=2 +++ THRD_cpl_atmw_gdas=3 +++ INPES_cpl_atmw_gdas=6 +++ JNPES_cpl_atmw_gdas=8 +++ WPG_cpl_atmw_gdas=24 +++ WAV_tasks_atmw_gdas=264 +++ THRD_cpl_dflt=1 +++ INPES_cpl_dflt=6 +++ JNPES_cpl_dflt=8 +++ WPG_cpl_dflt=6 +++ OCN_tasks_cpl_dflt=20 +++ ICE_tasks_cpl_dflt=10 +++ WAV_tasks_cpl_dflt=20 +++ THRD_cpl_thrd=2 +++ INPES_cpl_thrd=6 +++ JNPES_cpl_thrd=4 +++ WPG_cpl_thrd=6 +++ OCN_tasks_cpl_thrd=20 +++ ICE_tasks_cpl_thrd=10 +++ WAV_tasks_cpl_thrd=20 +++ THRD_cpl_dcmp=1 +++ INPES_cpl_dcmp=4 +++ JNPES_cpl_dcmp=12 +++ WPG_cpl_dcmp=6 +++ OCN_tasks_cpl_dcmp=20 +++ ICE_tasks_cpl_dcmp=10 +++ WAV_tasks_cpl_dcmp=20 +++ THRD_cpl_mpi=1 +++ INPES_cpl_mpi=6 +++ JNPES_cpl_mpi=12 +++ WPG_cpl_mpi=6 +++ OCN_tasks_cpl_mpi=24 +++ ICE_tasks_cpl_mpi=12 +++ WAV_tasks_cpl_mpi=24 +++ THRD_cpl_bmrk=2 +++ INPES_cpl_bmrk=12 +++ JNPES_cpl_bmrk=8 +++ WPG_cpl_bmrk=48 +++ OCN_tasks_cpl_bmrk=120 +++ ICE_tasks_cpl_bmrk=48 +++ WAV_tasks_cpl_bmrk=100 +++ WLCLK_dflt=30 +++ export WLCLK=30 +++ WLCLK=30 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=005 ++ TEST_NR=005 ++ export JBNME=compile_005 ++ JBNME=compile_005 ++ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_005 ++ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_005 +++ date +%s ++ echo -n 'compile_005, 1681917418,' ++ source rt_utils.sh +++ set -eu +++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] +++ OPNREQ_TEST=false +++ qsub_id=0 +++ slurm_id=0 +++ bsub_id=0 ++ source atparse.bash ++ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_005 ++ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_005 ++ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_005 ++ [[ pbs = \s\l\u\r\m ]] ++ [[ pbs = \l\s\f ]] ++ [[ pbs = \p\b\s ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +Job id 9506860 +TEST 005 compile is waiting to enter the queue +TEST 005 compile is submitted +1 min. TEST 005 compile is waiting in a queue, status: Q jobid 9506860 +2 min. TEST 005 compile is running, status: R jobid 9506860 +3 min. TEST 005 compile is running, status: R jobid 9506860 +4 min. TEST 005 compile is running, status: R jobid 9506860 +5 min. TEST 005 compile is running, status: R jobid 9506860 +6 min. TEST 005 compile is running, status: R jobid 9506860 +7 min. TEST 005 compile is running, status: R jobid 9506860 +8 min. TEST 005 compile is running, status: R jobid 9506860 +qstat: 9506860.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information +qstat: 9506860.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information +9 min. TEST 005 compile is finished, status: - jobid 9506860 ++ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_005.exe +-rwxr-xr-x 1 jongkim ncar 770195432 Apr 19 15:25 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_005.exe ++ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_005/compile_005_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel ++ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_005/job_timestamp.txt ++ remove_fail_test ++ echo 'Removing test failure flag file for compile_005' +Removing test failure flag file for compile_005 ++ [[ false == true ]] ++ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_005 +++ date +%s ++ echo ' 1681917920, 1' ++ elapsed=502 ++ echo 'Elapsed time 502 seconds. Compile 005' +Elapsed time 502 seconds. Compile 005 ++ '[' 0 -eq 0 ']' +Compile 005 elapsed time 422 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON ++ echo PID=4072 +PID=4072 ++ SECONDS=0 ++ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT ++ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT ++ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM ++ [[ 4 != 4 ]] ++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 ++ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 ++ export 'MAKE_OPT=-DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON' ++ MAKE_OPT='-DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON' ++ export COMPILE_NR=006 ++ COMPILE_NR=006 ++ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ OPNREQ_TEST=false ++ remove_fail_test ++ echo 'Removing test failure flag file for compile_006' +Removing test failure flag file for compile_006 ++ [[ false == true ]] ++ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_006 ++ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_006.env ]] ++ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_006.env +++ export JOB_NR=024 +++ JOB_NR=024 +++ export COMPILE_NR=006 +++ COMPILE_NR=006 +++ export MACHINE_ID=cheyenne.intel +++ MACHINE_ID=cheyenne.intel +++ export RT_COMPILER=intel +++ RT_COMPILER=intel +++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests +++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests +++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel +++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel +++ export SCHEDULER=pbs +++ SCHEDULER=pbs +++ export ACCNR=NRAL0032 +++ ACCNR=NRAL0032 +++ export QUEUE=regular +++ QUEUE=regular +++ export PARTITION= +++ PARTITION= +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log +++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log +++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel +++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel ++ source default_vars.sh +++ THRD=1 +++ INPES_atmaero=4 +++ JNPES_atmaero=8 +++ WPG_atmaero=6 +++ THRD_cpl_atmw=1 +++ INPES_cpl_atmw=3 +++ JNPES_cpl_atmw=8 +++ WPG_cpl_atmw=6 +++ WAV_tasks_cpl_atmw=30 +++ WAV_thrds_cpl_atmw=1 +++ THRD_cpl_c48=1 +++ INPES_cpl_c48=1 +++ JNPES_cpl_c48=1 +++ WPG_cpl_c48=6 +++ OCN_tasks_cpl_c48=4 +++ ICE_tasks_cpl_c48=4 +++ THRD_cpl_dflt=1 +++ INPES_cpl_dflt=3 +++ JNPES_cpl_dflt=8 +++ WPG_cpl_dflt=6 +++ OCN_tasks_cpl_dflt=20 +++ ICE_tasks_cpl_dflt=10 +++ WAV_tasks_cpl_dflt=20 +++ THRD_cpl_thrd=2 +++ INPES_cpl_thrd=3 +++ JNPES_cpl_thrd=4 +++ WPG_cpl_thrd=6 +++ OCN_tasks_cpl_thrd=20 +++ OCN_thrds_cpl_thrd=1 +++ ICE_tasks_cpl_thrd=10 +++ ICE_thrds_cpl_thrd=1 +++ WAV_tasks_cpl_thrd=12 +++ WAV_thrds_cpl_thrd=2 +++ THRD_cpl_dcmp=1 +++ INPES_cpl_dcmp=4 +++ JNPES_cpl_dcmp=6 +++ WPG_cpl_dcmp=6 +++ OCN_tasks_cpl_dcmp=20 +++ ICE_tasks_cpl_dcmp=10 +++ WAV_tasks_cpl_dcmp=20 +++ THRD_cpl_mpi=1 +++ INPES_cpl_mpi=4 +++ JNPES_cpl_mpi=8 +++ WPG_cpl_mpi=6 +++ OCN_tasks_cpl_mpi=34 +++ ICE_tasks_cpl_mpi=20 +++ WAV_tasks_cpl_mpi=28 +++ THRD_cpl_bmrk=2 +++ INPES_cpl_bmrk=8 +++ JNPES_cpl_bmrk=8 +++ WPG_cpl_bmrk=48 +++ OCN_tasks_cpl_bmrk=120 +++ OCN_thrds_cpl_bmrk=1 +++ ICE_tasks_cpl_bmrk=48 +++ ICE_thrds_cpl_bmrk=1 +++ WAV_tasks_cpl_bmrk=80 +++ WAV_thrds_cpl_bmrk=2 +++ THRD_cpl_c192=2 +++ INPES_cpl_c192=6 +++ JNPES_cpl_c192=8 +++ WPG_cpl_c192=12 +++ OCN_tasks_cpl_c192=60 +++ ICE_tasks_cpl_c192=24 +++ WAV_tasks_cpl_c192=80 +++ ATM_compute_tasks_cdeps_100=12 +++ OCN_tasks_cdeps_100=16 +++ ICE_tasks_cdeps_100=12 +++ ATM_compute_tasks_cdeps_025=40 +++ OCN_tasks_cdeps_025=120 +++ ICE_tasks_cdeps_025=48 +++ INPES_aqm=33 +++ JNPES_aqm=8 +++ aqm_omp_num_threads=1 +++ atm_omp_num_threads=1 +++ chm_omp_num_threads=1 +++ ice_omp_num_threads=1 +++ lnd_omp_num_threads=1 +++ med_omp_num_threads=1 +++ ocn_omp_num_threads=1 +++ wav_omp_num_threads=1 +++ [[ cheyenne.intel = wcoss2.* ]] +++ [[ cheyenne.intel = acorn.* ]] +++ [[ cheyenne.intel = orion.* ]] +++ [[ cheyenne.intel = hera.* ]] +++ [[ cheyenne.intel = linux.* ]] +++ [[ cheyenne.intel = jet.* ]] +++ [[ cheyenne.intel = s4.* ]] +++ [[ cheyenne.intel = gaea.* ]] +++ [[ cheyenne.intel = cheyenne.* ]] +++ TPN=36 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ INPES_c384=8 +++ JNPES_c384=6 +++ THRD_c384=2 +++ INPES_c768=8 +++ JNPES_c768=16 +++ THRD_c768=2 +++ THRD_cpl_atmw_gdas=3 +++ INPES_cpl_atmw_gdas=6 +++ JNPES_cpl_atmw_gdas=8 +++ WPG_cpl_atmw_gdas=24 +++ WAV_tasks_atmw_gdas=264 +++ THRD_cpl_dflt=1 +++ INPES_cpl_dflt=6 +++ JNPES_cpl_dflt=8 +++ WPG_cpl_dflt=6 +++ OCN_tasks_cpl_dflt=20 +++ ICE_tasks_cpl_dflt=10 +++ WAV_tasks_cpl_dflt=20 +++ THRD_cpl_thrd=2 +++ INPES_cpl_thrd=6 +++ JNPES_cpl_thrd=4 +++ WPG_cpl_thrd=6 +++ OCN_tasks_cpl_thrd=20 +++ ICE_tasks_cpl_thrd=10 +++ WAV_tasks_cpl_thrd=20 +++ THRD_cpl_dcmp=1 +++ INPES_cpl_dcmp=4 +++ JNPES_cpl_dcmp=12 +++ WPG_cpl_dcmp=6 +++ OCN_tasks_cpl_dcmp=20 +++ ICE_tasks_cpl_dcmp=10 +++ WAV_tasks_cpl_dcmp=20 +++ THRD_cpl_mpi=1 +++ INPES_cpl_mpi=6 +++ JNPES_cpl_mpi=12 +++ WPG_cpl_mpi=6 +++ OCN_tasks_cpl_mpi=24 +++ ICE_tasks_cpl_mpi=12 +++ WAV_tasks_cpl_mpi=24 +++ THRD_cpl_bmrk=2 +++ INPES_cpl_bmrk=12 +++ JNPES_cpl_bmrk=8 +++ WPG_cpl_bmrk=48 +++ OCN_tasks_cpl_bmrk=120 +++ ICE_tasks_cpl_bmrk=48 +++ WAV_tasks_cpl_bmrk=100 +++ WLCLK_dflt=30 +++ export WLCLK=30 +++ WLCLK=30 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=006 ++ TEST_NR=006 ++ export JBNME=compile_006 ++ JBNME=compile_006 ++ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_006 ++ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_006 +++ date +%s ++ echo -n 'compile_006, 1681917418,' ++ source rt_utils.sh +++ set -eu +++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] +++ OPNREQ_TEST=false +++ qsub_id=0 +++ slurm_id=0 +++ bsub_id=0 ++ source atparse.bash ++ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_006 ++ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_006 ++ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_006 ++ [[ pbs = \s\l\u\r\m ]] ++ [[ pbs = \l\s\f ]] ++ [[ pbs = \p\b\s ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +Job id 9506866 +TEST 006 compile is waiting to enter the queue +TEST 006 compile is submitted +1 min. TEST 006 compile is waiting in a queue, status: Q jobid 9506866 +2 min. TEST 006 compile is waiting in a queue, status: Q jobid 9506866 +3 min. TEST 006 compile is running, status: R jobid 9506866 +4 min. TEST 006 compile is running, status: R jobid 9506866 +5 min. TEST 006 compile is running, status: R jobid 9506866 +6 min. TEST 006 compile is running, status: R jobid 9506866 +7 min. TEST 006 compile is running, status: R jobid 9506866 +8 min. TEST 006 compile is running, status: R jobid 9506866 +9 min. TEST 006 compile is running, status: R jobid 9506866 +10 min. TEST 006 compile is running, status: R jobid 9506866 +11 min. TEST 006 compile is running, status: R jobid 9506866 +12 min. TEST 006 compile is running, status: R jobid 9506866 +13 min. TEST 006 compile is running, status: R jobid 9506866 +14 min. TEST 006 compile is running, status: R jobid 9506866 +15 min. TEST 006 compile is running, status: R jobid 9506866 +16 min. TEST 006 compile is running, status: R jobid 9506866 +17 min. TEST 006 compile is running, status: R jobid 9506866 +18 min. TEST 006 compile is running, status: R jobid 9506866 +19 min. TEST 006 compile is running, status: R jobid 9506866 +20 min. TEST 006 compile is running, status: R jobid 9506866 +qstat: 9506866.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information +qstat: 9506866.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information +21 min. TEST 006 compile is finished, status: - jobid 9506866 ++ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_006.exe +-rwxr-xr-x 1 jongkim ncar 353279504 Apr 19 15:37 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_006.exe ++ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_006/compile_006_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel ++ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_006/job_timestamp.txt ++ remove_fail_test ++ echo 'Removing test failure flag file for compile_006' +Removing test failure flag file for compile_006 ++ [[ false == true ]] ++ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_006 +++ date +%s ++ echo ' 1681918652, 1' ++ elapsed=1234 ++ echo 'Elapsed time 1234 seconds. Compile 006' +Elapsed time 1234 seconds. Compile 006 ++ '[' 0 -eq 0 ']' +Compile 006 elapsed time 1089 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON ++ echo PID=4070 +PID=4070 ++ SECONDS=0 ++ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT ++ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT ++ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM ++ [[ 4 != 4 ]] ++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 ++ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 ++ export 'MAKE_OPT=-DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8' ++ MAKE_OPT='-DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8' ++ export COMPILE_NR=007 ++ COMPILE_NR=007 ++ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ OPNREQ_TEST=false ++ remove_fail_test ++ echo 'Removing test failure flag file for compile_007' +Removing test failure flag file for compile_007 ++ [[ false == true ]] ++ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_007 ++ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_007.env ]] ++ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_007.env +++ export JOB_NR=026 +++ JOB_NR=026 +++ export COMPILE_NR=007 +++ COMPILE_NR=007 +++ export MACHINE_ID=cheyenne.intel +++ MACHINE_ID=cheyenne.intel +++ export RT_COMPILER=intel +++ RT_COMPILER=intel +++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests +++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests +++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel +++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel +++ export SCHEDULER=pbs +++ SCHEDULER=pbs +++ export ACCNR=NRAL0032 +++ ACCNR=NRAL0032 +++ export QUEUE=regular +++ QUEUE=regular +++ export PARTITION= +++ PARTITION= +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log +++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log +++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel +++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel ++ source default_vars.sh +++ THRD=1 +++ INPES_atmaero=4 +++ JNPES_atmaero=8 +++ WPG_atmaero=6 +++ THRD_cpl_atmw=1 +++ INPES_cpl_atmw=3 +++ JNPES_cpl_atmw=8 +++ WPG_cpl_atmw=6 +++ WAV_tasks_cpl_atmw=30 +++ WAV_thrds_cpl_atmw=1 +++ THRD_cpl_c48=1 +++ INPES_cpl_c48=1 +++ JNPES_cpl_c48=1 +++ WPG_cpl_c48=6 +++ OCN_tasks_cpl_c48=4 +++ ICE_tasks_cpl_c48=4 +++ THRD_cpl_dflt=1 +++ INPES_cpl_dflt=3 +++ JNPES_cpl_dflt=8 +++ WPG_cpl_dflt=6 +++ OCN_tasks_cpl_dflt=20 +++ ICE_tasks_cpl_dflt=10 +++ WAV_tasks_cpl_dflt=20 +++ THRD_cpl_thrd=2 +++ INPES_cpl_thrd=3 +++ JNPES_cpl_thrd=4 +++ WPG_cpl_thrd=6 +++ OCN_tasks_cpl_thrd=20 +++ OCN_thrds_cpl_thrd=1 +++ ICE_tasks_cpl_thrd=10 +++ ICE_thrds_cpl_thrd=1 +++ WAV_tasks_cpl_thrd=12 +++ WAV_thrds_cpl_thrd=2 +++ THRD_cpl_dcmp=1 +++ INPES_cpl_dcmp=4 +++ JNPES_cpl_dcmp=6 +++ WPG_cpl_dcmp=6 +++ OCN_tasks_cpl_dcmp=20 +++ ICE_tasks_cpl_dcmp=10 +++ WAV_tasks_cpl_dcmp=20 +++ THRD_cpl_mpi=1 +++ INPES_cpl_mpi=4 +++ JNPES_cpl_mpi=8 +++ WPG_cpl_mpi=6 +++ OCN_tasks_cpl_mpi=34 +++ ICE_tasks_cpl_mpi=20 +++ WAV_tasks_cpl_mpi=28 +++ THRD_cpl_bmrk=2 +++ INPES_cpl_bmrk=8 +++ JNPES_cpl_bmrk=8 +++ WPG_cpl_bmrk=48 +++ OCN_tasks_cpl_bmrk=120 +++ OCN_thrds_cpl_bmrk=1 +++ ICE_tasks_cpl_bmrk=48 +++ ICE_thrds_cpl_bmrk=1 +++ WAV_tasks_cpl_bmrk=80 +++ WAV_thrds_cpl_bmrk=2 +++ THRD_cpl_c192=2 +++ INPES_cpl_c192=6 +++ JNPES_cpl_c192=8 +++ WPG_cpl_c192=12 +++ OCN_tasks_cpl_c192=60 +++ ICE_tasks_cpl_c192=24 +++ WAV_tasks_cpl_c192=80 +++ ATM_compute_tasks_cdeps_100=12 +++ OCN_tasks_cdeps_100=16 +++ ICE_tasks_cdeps_100=12 +++ ATM_compute_tasks_cdeps_025=40 +++ OCN_tasks_cdeps_025=120 +++ ICE_tasks_cdeps_025=48 +++ INPES_aqm=33 +++ JNPES_aqm=8 +++ aqm_omp_num_threads=1 +++ atm_omp_num_threads=1 +++ chm_omp_num_threads=1 +++ ice_omp_num_threads=1 +++ lnd_omp_num_threads=1 +++ med_omp_num_threads=1 +++ ocn_omp_num_threads=1 +++ wav_omp_num_threads=1 +++ [[ cheyenne.intel = wcoss2.* ]] +++ [[ cheyenne.intel = acorn.* ]] +++ [[ cheyenne.intel = orion.* ]] +++ [[ cheyenne.intel = hera.* ]] +++ [[ cheyenne.intel = linux.* ]] +++ [[ cheyenne.intel = jet.* ]] +++ [[ cheyenne.intel = s4.* ]] +++ [[ cheyenne.intel = gaea.* ]] +++ [[ cheyenne.intel = cheyenne.* ]] +++ TPN=36 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ INPES_c384=8 +++ JNPES_c384=6 +++ THRD_c384=2 +++ INPES_c768=8 +++ JNPES_c768=16 +++ THRD_c768=2 +++ THRD_cpl_atmw_gdas=3 +++ INPES_cpl_atmw_gdas=6 +++ JNPES_cpl_atmw_gdas=8 +++ WPG_cpl_atmw_gdas=24 +++ WAV_tasks_atmw_gdas=264 +++ THRD_cpl_dflt=1 +++ INPES_cpl_dflt=6 +++ JNPES_cpl_dflt=8 +++ WPG_cpl_dflt=6 +++ OCN_tasks_cpl_dflt=20 +++ ICE_tasks_cpl_dflt=10 +++ WAV_tasks_cpl_dflt=20 +++ THRD_cpl_thrd=2 +++ INPES_cpl_thrd=6 +++ JNPES_cpl_thrd=4 +++ WPG_cpl_thrd=6 +++ OCN_tasks_cpl_thrd=20 +++ ICE_tasks_cpl_thrd=10 +++ WAV_tasks_cpl_thrd=20 +++ THRD_cpl_dcmp=1 +++ INPES_cpl_dcmp=4 +++ JNPES_cpl_dcmp=12 +++ WPG_cpl_dcmp=6 +++ OCN_tasks_cpl_dcmp=20 +++ ICE_tasks_cpl_dcmp=10 +++ WAV_tasks_cpl_dcmp=20 +++ THRD_cpl_mpi=1 +++ INPES_cpl_mpi=6 +++ JNPES_cpl_mpi=12 +++ WPG_cpl_mpi=6 +++ OCN_tasks_cpl_mpi=24 +++ ICE_tasks_cpl_mpi=12 +++ WAV_tasks_cpl_mpi=24 +++ THRD_cpl_bmrk=2 +++ INPES_cpl_bmrk=12 +++ JNPES_cpl_bmrk=8 +++ WPG_cpl_bmrk=48 +++ OCN_tasks_cpl_bmrk=120 +++ ICE_tasks_cpl_bmrk=48 +++ WAV_tasks_cpl_bmrk=100 +++ WLCLK_dflt=30 +++ export WLCLK=30 +++ WLCLK=30 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=007 ++ TEST_NR=007 ++ export JBNME=compile_007 ++ JBNME=compile_007 ++ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_007 ++ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_007 +++ date +%s ++ echo -n 'compile_007, 1681917418,' ++ source rt_utils.sh +++ set -eu +++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] +++ OPNREQ_TEST=false +++ qsub_id=0 +++ slurm_id=0 +++ bsub_id=0 ++ source atparse.bash ++ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_007 ++ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_007 ++ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_007 ++ [[ pbs = \s\l\u\r\m ]] ++ [[ pbs = \l\s\f ]] ++ [[ pbs = \p\b\s ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +Job id 9506859 +TEST 007 compile is waiting to enter the queue +TEST 007 compile is submitted +1 min. TEST 007 compile is waiting in a queue, status: Q jobid 9506859 +2 min. TEST 007 compile is running, status: R jobid 9506859 +3 min. TEST 007 compile is running, status: R jobid 9506859 +4 min. TEST 007 compile is running, status: R jobid 9506859 +5 min. TEST 007 compile is running, status: R jobid 9506859 +6 min. TEST 007 compile is running, status: R jobid 9506859 +7 min. TEST 007 compile is running, status: R jobid 9506859 +8 min. TEST 007 compile is running, status: R jobid 9506859 +9 min. TEST 007 compile is running, status: R jobid 9506859 +10 min. TEST 007 compile is running, status: R jobid 9506859 +11 min. TEST 007 compile is running, status: R jobid 9506859 +12 min. TEST 007 compile is running, status: R jobid 9506859 +13 min. TEST 007 compile is running, status: R jobid 9506859 +14 min. TEST 007 compile is running, status: R jobid 9506859 +15 min. TEST 007 compile is running, status: R jobid 9506859 +16 min. TEST 007 compile is running, status: R jobid 9506859 +17 min. TEST 007 compile is running, status: R jobid 9506859 +18 min. TEST 007 compile is running, status: R jobid 9506859 +19 min. TEST 007 compile is running, status: R jobid 9506859 +qstat: 9506859.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information +qstat: 9506859.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information +20 min. TEST 007 compile is finished, status: - jobid 9506859 ++ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_007.exe +-rwxr-xr-x 1 jongkim ncar 352887752 Apr 19 15:36 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_007.exe ++ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_007/compile_007_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel ++ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_007/job_timestamp.txt ++ remove_fail_test ++ echo 'Removing test failure flag file for compile_007' +Removing test failure flag file for compile_007 ++ [[ false == true ]] ++ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_007 +++ date +%s ++ echo ' 1681918592, 1' ++ elapsed=1174 ++ echo 'Elapsed time 1174 seconds. Compile 007' +Elapsed time 1174 seconds. Compile 007 ++ '[' 0 -eq 0 ']' +Compile 007 elapsed time 1096 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON ++ echo PID=20480 +PID=20480 ++ SECONDS=0 ++ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT ++ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT ++ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM ++ [[ 4 != 4 ]] ++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 ++ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 ++ export 'MAKE_OPT=-DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON' ++ MAKE_OPT='-DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON' ++ export COMPILE_NR=008 ++ COMPILE_NR=008 ++ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ OPNREQ_TEST=false ++ remove_fail_test ++ echo 'Removing test failure flag file for compile_008' +Removing test failure flag file for compile_008 ++ [[ false == true ]] ++ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_008 ++ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_008.env ]] ++ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_008.env +++ export JOB_NR=030 +++ JOB_NR=030 +++ export COMPILE_NR=008 +++ COMPILE_NR=008 +++ export MACHINE_ID=cheyenne.intel +++ MACHINE_ID=cheyenne.intel +++ export RT_COMPILER=intel +++ RT_COMPILER=intel +++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests +++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests +++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel +++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel +++ export SCHEDULER=pbs +++ SCHEDULER=pbs +++ export ACCNR=NRAL0032 +++ ACCNR=NRAL0032 +++ export QUEUE=regular +++ QUEUE=regular +++ export PARTITION= +++ PARTITION= +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log +++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log +++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel +++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel ++ source default_vars.sh +++ THRD=1 +++ INPES_atmaero=4 +++ JNPES_atmaero=8 +++ WPG_atmaero=6 +++ THRD_cpl_atmw=1 +++ INPES_cpl_atmw=3 +++ JNPES_cpl_atmw=8 +++ WPG_cpl_atmw=6 +++ WAV_tasks_cpl_atmw=30 +++ WAV_thrds_cpl_atmw=1 +++ THRD_cpl_c48=1 +++ INPES_cpl_c48=1 +++ JNPES_cpl_c48=1 +++ WPG_cpl_c48=6 +++ OCN_tasks_cpl_c48=4 +++ ICE_tasks_cpl_c48=4 +++ THRD_cpl_dflt=1 +++ INPES_cpl_dflt=3 +++ JNPES_cpl_dflt=8 +++ WPG_cpl_dflt=6 +++ OCN_tasks_cpl_dflt=20 +++ ICE_tasks_cpl_dflt=10 +++ WAV_tasks_cpl_dflt=20 +++ THRD_cpl_thrd=2 +++ INPES_cpl_thrd=3 +++ JNPES_cpl_thrd=4 +++ WPG_cpl_thrd=6 +++ OCN_tasks_cpl_thrd=20 +++ OCN_thrds_cpl_thrd=1 +++ ICE_tasks_cpl_thrd=10 +++ ICE_thrds_cpl_thrd=1 +++ WAV_tasks_cpl_thrd=12 +++ WAV_thrds_cpl_thrd=2 +++ THRD_cpl_dcmp=1 +++ INPES_cpl_dcmp=4 +++ JNPES_cpl_dcmp=6 +++ WPG_cpl_dcmp=6 +++ OCN_tasks_cpl_dcmp=20 +++ ICE_tasks_cpl_dcmp=10 +++ WAV_tasks_cpl_dcmp=20 +++ THRD_cpl_mpi=1 +++ INPES_cpl_mpi=4 +++ JNPES_cpl_mpi=8 +++ WPG_cpl_mpi=6 +++ OCN_tasks_cpl_mpi=34 +++ ICE_tasks_cpl_mpi=20 +++ WAV_tasks_cpl_mpi=28 +++ THRD_cpl_bmrk=2 +++ INPES_cpl_bmrk=8 +++ JNPES_cpl_bmrk=8 +++ WPG_cpl_bmrk=48 +++ OCN_tasks_cpl_bmrk=120 +++ OCN_thrds_cpl_bmrk=1 +++ ICE_tasks_cpl_bmrk=48 +++ ICE_thrds_cpl_bmrk=1 +++ WAV_tasks_cpl_bmrk=80 +++ WAV_thrds_cpl_bmrk=2 +++ THRD_cpl_c192=2 +++ INPES_cpl_c192=6 +++ JNPES_cpl_c192=8 +++ WPG_cpl_c192=12 +++ OCN_tasks_cpl_c192=60 +++ ICE_tasks_cpl_c192=24 +++ WAV_tasks_cpl_c192=80 +++ ATM_compute_tasks_cdeps_100=12 +++ OCN_tasks_cdeps_100=16 +++ ICE_tasks_cdeps_100=12 +++ ATM_compute_tasks_cdeps_025=40 +++ OCN_tasks_cdeps_025=120 +++ ICE_tasks_cdeps_025=48 +++ INPES_aqm=33 +++ JNPES_aqm=8 +++ aqm_omp_num_threads=1 +++ atm_omp_num_threads=1 +++ chm_omp_num_threads=1 +++ ice_omp_num_threads=1 +++ lnd_omp_num_threads=1 +++ med_omp_num_threads=1 +++ ocn_omp_num_threads=1 +++ wav_omp_num_threads=1 +++ [[ cheyenne.intel = wcoss2.* ]] +++ [[ cheyenne.intel = acorn.* ]] +++ [[ cheyenne.intel = orion.* ]] +++ [[ cheyenne.intel = hera.* ]] +++ [[ cheyenne.intel = linux.* ]] +++ [[ cheyenne.intel = jet.* ]] +++ [[ cheyenne.intel = s4.* ]] +++ [[ cheyenne.intel = gaea.* ]] +++ [[ cheyenne.intel = cheyenne.* ]] +++ TPN=36 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ INPES_c384=8 +++ JNPES_c384=6 +++ THRD_c384=2 +++ INPES_c768=8 +++ JNPES_c768=16 +++ THRD_c768=2 +++ THRD_cpl_atmw_gdas=3 +++ INPES_cpl_atmw_gdas=6 +++ JNPES_cpl_atmw_gdas=8 +++ WPG_cpl_atmw_gdas=24 +++ WAV_tasks_atmw_gdas=264 +++ THRD_cpl_dflt=1 +++ INPES_cpl_dflt=6 +++ JNPES_cpl_dflt=8 +++ WPG_cpl_dflt=6 +++ OCN_tasks_cpl_dflt=20 +++ ICE_tasks_cpl_dflt=10 +++ WAV_tasks_cpl_dflt=20 +++ THRD_cpl_thrd=2 +++ INPES_cpl_thrd=6 +++ JNPES_cpl_thrd=4 +++ WPG_cpl_thrd=6 +++ OCN_tasks_cpl_thrd=20 +++ ICE_tasks_cpl_thrd=10 +++ WAV_tasks_cpl_thrd=20 +++ THRD_cpl_dcmp=1 +++ INPES_cpl_dcmp=4 +++ JNPES_cpl_dcmp=12 +++ WPG_cpl_dcmp=6 +++ OCN_tasks_cpl_dcmp=20 +++ ICE_tasks_cpl_dcmp=10 +++ WAV_tasks_cpl_dcmp=20 +++ THRD_cpl_mpi=1 +++ INPES_cpl_mpi=6 +++ JNPES_cpl_mpi=12 +++ WPG_cpl_mpi=6 +++ OCN_tasks_cpl_mpi=24 +++ ICE_tasks_cpl_mpi=12 +++ WAV_tasks_cpl_mpi=24 +++ THRD_cpl_bmrk=2 +++ INPES_cpl_bmrk=12 +++ JNPES_cpl_bmrk=8 +++ WPG_cpl_bmrk=48 +++ OCN_tasks_cpl_bmrk=120 +++ ICE_tasks_cpl_bmrk=48 +++ WAV_tasks_cpl_bmrk=100 +++ WLCLK_dflt=30 +++ export WLCLK=30 +++ WLCLK=30 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=008 ++ TEST_NR=008 ++ export JBNME=compile_008 ++ JBNME=compile_008 ++ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_008 ++ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_008 +++ date +%s ++ echo -n 'compile_008, 1681919326,' ++ source rt_utils.sh +++ set -eu +++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] +++ OPNREQ_TEST=false +++ qsub_id=0 +++ slurm_id=0 +++ bsub_id=0 ++ source atparse.bash ++ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_008 ++ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_008 ++ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_008 ++ [[ pbs = \s\l\u\r\m ]] ++ [[ pbs = \l\s\f ]] ++ [[ pbs = \p\b\s ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +Job id 9507118 +TEST 008 compile is waiting to enter the queue +TEST 008 compile is submitted +1 min. TEST 008 compile is waiting in a queue, status: Q jobid 9507118 +2 min. TEST 008 compile is waiting in a queue, status: Q jobid 9507118 +3 min. TEST 008 compile is waiting in a queue, status: Q jobid 9507118 +4 min. TEST 008 compile is running, status: R jobid 9507118 +5 min. TEST 008 compile is running, status: R jobid 9507118 +6 min. TEST 008 compile is running, status: R jobid 9507118 +7 min. TEST 008 compile is running, status: R jobid 9507118 +8 min. TEST 008 compile is running, status: R jobid 9507118 +9 min. TEST 008 compile is running, status: R jobid 9507118 +10 min. TEST 008 compile is running, status: R jobid 9507118 +11 min. TEST 008 compile is running, status: R jobid 9507118 +12 min. TEST 008 compile is running, status: R jobid 9507118 +13 min. TEST 008 compile is running, status: R jobid 9507118 +14 min. TEST 008 compile is running, status: R jobid 9507118 +15 min. TEST 008 compile is running, status: R jobid 9507118 +16 min. TEST 008 compile is running, status: R jobid 9507118 +17 min. TEST 008 compile is running, status: R jobid 9507118 +18 min. TEST 008 compile is running, status: R jobid 9507118 +19 min. TEST 008 compile is running, status: R jobid 9507118 +20 min. TEST 008 compile is running, status: R jobid 9507118 +21 min. TEST 008 compile is running, status: R jobid 9507118 +22 min. TEST 008 compile is running, status: R jobid 9507118 +23 min. TEST 008 compile is running, status: R jobid 9507118 +24 min. TEST 008 compile is running, status: R jobid 9507118 +25 min. TEST 008 compile is running, status: R jobid 9507118 +26 min. TEST 008 compile is running, status: R jobid 9507118 +27 min. TEST 008 compile is running, status: R jobid 9507118 +28 min. TEST 008 compile is running, status: R jobid 9507118 +29 min. TEST 008 compile is running, status: R jobid 9507118 +30 min. TEST 008 compile is running, status: R jobid 9507118 +31 min. TEST 008 compile is running, status: R jobid 9507118 +32 min. TEST 008 compile is running, status: R jobid 9507118 +33 min. TEST 008 compile is running, status: R jobid 9507118 +qstat: 9507118.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information +qstat: 9507118.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information +34 min. TEST 008 compile is finished, status: - jobid 9507118 + + +Test 008 compile FAIL ++ echo PID=4073 +PID=4073 ++ SECONDS=0 ++ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT ++ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT ++ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM ++ [[ 4 != 4 ]] ++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 ++ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 ++ export 'MAKE_OPT=-DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON' ++ MAKE_OPT='-DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON' ++ export COMPILE_NR=009 ++ COMPILE_NR=009 ++ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ OPNREQ_TEST=false ++ remove_fail_test ++ echo 'Removing test failure flag file for compile_009' +Removing test failure flag file for compile_009 ++ [[ false == true ]] ++ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_009 ++ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_009.env ]] ++ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_009.env +++ export JOB_NR=032 +++ JOB_NR=032 +++ export COMPILE_NR=009 +++ COMPILE_NR=009 +++ export MACHINE_ID=cheyenne.intel +++ MACHINE_ID=cheyenne.intel +++ export RT_COMPILER=intel +++ RT_COMPILER=intel +++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests +++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests +++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel +++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel +++ export SCHEDULER=pbs +++ SCHEDULER=pbs +++ export ACCNR=NRAL0032 +++ ACCNR=NRAL0032 +++ export QUEUE=regular +++ QUEUE=regular +++ export PARTITION= +++ PARTITION= +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log +++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log +++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel +++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel ++ source default_vars.sh +++ THRD=1 +++ INPES_atmaero=4 +++ JNPES_atmaero=8 +++ WPG_atmaero=6 +++ THRD_cpl_atmw=1 +++ INPES_cpl_atmw=3 +++ JNPES_cpl_atmw=8 +++ WPG_cpl_atmw=6 +++ WAV_tasks_cpl_atmw=30 +++ WAV_thrds_cpl_atmw=1 +++ THRD_cpl_c48=1 +++ INPES_cpl_c48=1 +++ JNPES_cpl_c48=1 +++ WPG_cpl_c48=6 +++ OCN_tasks_cpl_c48=4 +++ ICE_tasks_cpl_c48=4 +++ THRD_cpl_dflt=1 +++ INPES_cpl_dflt=3 +++ JNPES_cpl_dflt=8 +++ WPG_cpl_dflt=6 +++ OCN_tasks_cpl_dflt=20 +++ ICE_tasks_cpl_dflt=10 +++ WAV_tasks_cpl_dflt=20 +++ THRD_cpl_thrd=2 +++ INPES_cpl_thrd=3 +++ JNPES_cpl_thrd=4 +++ WPG_cpl_thrd=6 +++ OCN_tasks_cpl_thrd=20 +++ OCN_thrds_cpl_thrd=1 +++ ICE_tasks_cpl_thrd=10 +++ ICE_thrds_cpl_thrd=1 +++ WAV_tasks_cpl_thrd=12 +++ WAV_thrds_cpl_thrd=2 +++ THRD_cpl_dcmp=1 +++ INPES_cpl_dcmp=4 +++ JNPES_cpl_dcmp=6 +++ WPG_cpl_dcmp=6 +++ OCN_tasks_cpl_dcmp=20 +++ ICE_tasks_cpl_dcmp=10 +++ WAV_tasks_cpl_dcmp=20 +++ THRD_cpl_mpi=1 +++ INPES_cpl_mpi=4 +++ JNPES_cpl_mpi=8 +++ WPG_cpl_mpi=6 +++ OCN_tasks_cpl_mpi=34 +++ ICE_tasks_cpl_mpi=20 +++ WAV_tasks_cpl_mpi=28 +++ THRD_cpl_bmrk=2 +++ INPES_cpl_bmrk=8 +++ JNPES_cpl_bmrk=8 +++ WPG_cpl_bmrk=48 +++ OCN_tasks_cpl_bmrk=120 +++ OCN_thrds_cpl_bmrk=1 +++ ICE_tasks_cpl_bmrk=48 +++ ICE_thrds_cpl_bmrk=1 +++ WAV_tasks_cpl_bmrk=80 +++ WAV_thrds_cpl_bmrk=2 +++ THRD_cpl_c192=2 +++ INPES_cpl_c192=6 +++ JNPES_cpl_c192=8 +++ WPG_cpl_c192=12 +++ OCN_tasks_cpl_c192=60 +++ ICE_tasks_cpl_c192=24 +++ WAV_tasks_cpl_c192=80 +++ ATM_compute_tasks_cdeps_100=12 +++ OCN_tasks_cdeps_100=16 +++ ICE_tasks_cdeps_100=12 +++ ATM_compute_tasks_cdeps_025=40 +++ OCN_tasks_cdeps_025=120 +++ ICE_tasks_cdeps_025=48 +++ INPES_aqm=33 +++ JNPES_aqm=8 +++ aqm_omp_num_threads=1 +++ atm_omp_num_threads=1 +++ chm_omp_num_threads=1 +++ ice_omp_num_threads=1 +++ lnd_omp_num_threads=1 +++ med_omp_num_threads=1 +++ ocn_omp_num_threads=1 +++ wav_omp_num_threads=1 +++ [[ cheyenne.intel = wcoss2.* ]] +++ [[ cheyenne.intel = acorn.* ]] +++ [[ cheyenne.intel = orion.* ]] +++ [[ cheyenne.intel = hera.* ]] +++ [[ cheyenne.intel = linux.* ]] +++ [[ cheyenne.intel = jet.* ]] +++ [[ cheyenne.intel = s4.* ]] +++ [[ cheyenne.intel = gaea.* ]] +++ [[ cheyenne.intel = cheyenne.* ]] +++ TPN=36 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ INPES_c384=8 +++ JNPES_c384=6 +++ THRD_c384=2 +++ INPES_c768=8 +++ JNPES_c768=16 +++ THRD_c768=2 +++ THRD_cpl_atmw_gdas=3 +++ INPES_cpl_atmw_gdas=6 +++ JNPES_cpl_atmw_gdas=8 +++ WPG_cpl_atmw_gdas=24 +++ WAV_tasks_atmw_gdas=264 +++ THRD_cpl_dflt=1 +++ INPES_cpl_dflt=6 +++ JNPES_cpl_dflt=8 +++ WPG_cpl_dflt=6 +++ OCN_tasks_cpl_dflt=20 +++ ICE_tasks_cpl_dflt=10 +++ WAV_tasks_cpl_dflt=20 +++ THRD_cpl_thrd=2 +++ INPES_cpl_thrd=6 +++ JNPES_cpl_thrd=4 +++ WPG_cpl_thrd=6 +++ OCN_tasks_cpl_thrd=20 +++ ICE_tasks_cpl_thrd=10 +++ WAV_tasks_cpl_thrd=20 +++ THRD_cpl_dcmp=1 +++ INPES_cpl_dcmp=4 +++ JNPES_cpl_dcmp=12 +++ WPG_cpl_dcmp=6 +++ OCN_tasks_cpl_dcmp=20 +++ ICE_tasks_cpl_dcmp=10 +++ WAV_tasks_cpl_dcmp=20 +++ THRD_cpl_mpi=1 +++ INPES_cpl_mpi=6 +++ JNPES_cpl_mpi=12 +++ WPG_cpl_mpi=6 +++ OCN_tasks_cpl_mpi=24 +++ ICE_tasks_cpl_mpi=12 +++ WAV_tasks_cpl_mpi=24 +++ THRD_cpl_bmrk=2 +++ INPES_cpl_bmrk=12 +++ JNPES_cpl_bmrk=8 +++ WPG_cpl_bmrk=48 +++ OCN_tasks_cpl_bmrk=120 +++ ICE_tasks_cpl_bmrk=48 +++ WAV_tasks_cpl_bmrk=100 +++ WLCLK_dflt=30 +++ export WLCLK=30 +++ WLCLK=30 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=009 ++ TEST_NR=009 ++ export JBNME=compile_009 ++ JBNME=compile_009 ++ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_009 ++ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_009 +++ date +%s ++ echo -n 'compile_009, 1681917418,' ++ source rt_utils.sh +++ set -eu +++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] +++ OPNREQ_TEST=false +++ qsub_id=0 +++ slurm_id=0 +++ bsub_id=0 ++ source atparse.bash ++ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_009 ++ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_009 ++ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_009 ++ [[ pbs = \s\l\u\r\m ]] ++ [[ pbs = \l\s\f ]] ++ [[ pbs = \p\b\s ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +Job id 9506864 +TEST 009 compile is waiting to enter the queue +TEST 009 compile is submitted +1 min. TEST 009 compile is waiting in a queue, status: Q jobid 9506864 +2 min. TEST 009 compile is waiting in a queue, status: Q jobid 9506864 +3 min. TEST 009 compile is running, status: R jobid 9506864 +4 min. TEST 009 compile is running, status: R jobid 9506864 +5 min. TEST 009 compile is running, status: R jobid 9506864 +6 min. TEST 009 compile is running, status: R jobid 9506864 +7 min. TEST 009 compile is running, status: R jobid 9506864 +8 min. TEST 009 compile is running, status: R jobid 9506864 +9 min. TEST 009 compile is running, status: R jobid 9506864 +10 min. TEST 009 compile is running, status: R jobid 9506864 +11 min. TEST 009 compile is running, status: R jobid 9506864 +12 min. TEST 009 compile is running, status: R jobid 9506864 +13 min. TEST 009 compile is running, status: R jobid 9506864 +14 min. TEST 009 compile is running, status: R jobid 9506864 +15 min. TEST 009 compile is running, status: R jobid 9506864 +16 min. TEST 009 compile is running, status: R jobid 9506864 +17 min. TEST 009 compile is running, status: R jobid 9506864 +18 min. TEST 009 compile is running, status: R jobid 9506864 +19 min. TEST 009 compile is running, status: R jobid 9506864 +20 min. TEST 009 compile is finished, status: E jobid 9506864 ++ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_009.exe +-rwxr-xr-x 1 jongkim ncar 285380352 Apr 19 15:36 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_009.exe ++ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_009/compile_009_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel ++ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_009/job_timestamp.txt ++ remove_fail_test ++ echo 'Removing test failure flag file for compile_009' +Removing test failure flag file for compile_009 ++ [[ false == true ]] ++ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_009 +++ date +%s ++ echo ' 1681918592, 1' ++ elapsed=1174 ++ echo 'Elapsed time 1174 seconds. Compile 009' +Elapsed time 1174 seconds. Compile 009 ++ '[' 0 -eq 0 ']' +Compile 009 elapsed time 1097 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release ++ echo PID=4067 +PID=4067 ++ SECONDS=0 ++ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT ++ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT ++ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM ++ [[ 4 != 4 ]] ++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 ++ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 ++ export 'MAKE_OPT=-DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON' ++ MAKE_OPT='-DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON' ++ export COMPILE_NR=010 ++ COMPILE_NR=010 ++ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ OPNREQ_TEST=false ++ remove_fail_test ++ echo 'Removing test failure flag file for compile_010' +Removing test failure flag file for compile_010 ++ [[ false == true ]] ++ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_010 ++ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_010.env ]] ++ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_010.env +++ export JOB_NR=070 +++ JOB_NR=070 +++ export COMPILE_NR=010 +++ COMPILE_NR=010 +++ export MACHINE_ID=cheyenne.intel +++ MACHINE_ID=cheyenne.intel +++ export RT_COMPILER=intel +++ RT_COMPILER=intel +++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests +++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests +++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel +++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel +++ export SCHEDULER=pbs +++ SCHEDULER=pbs +++ export ACCNR=NRAL0032 +++ ACCNR=NRAL0032 +++ export QUEUE=regular +++ QUEUE=regular +++ export PARTITION= +++ PARTITION= +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log +++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log +++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel +++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel ++ source default_vars.sh +++ THRD=1 +++ INPES_atmaero=4 +++ JNPES_atmaero=8 +++ WPG_atmaero=6 +++ THRD_cpl_atmw=1 +++ INPES_cpl_atmw=3 +++ JNPES_cpl_atmw=8 +++ WPG_cpl_atmw=6 +++ WAV_tasks_cpl_atmw=30 +++ WAV_thrds_cpl_atmw=1 +++ THRD_cpl_c48=1 +++ INPES_cpl_c48=1 +++ JNPES_cpl_c48=1 +++ WPG_cpl_c48=6 +++ OCN_tasks_cpl_c48=4 +++ ICE_tasks_cpl_c48=4 +++ THRD_cpl_dflt=1 +++ INPES_cpl_dflt=3 +++ JNPES_cpl_dflt=8 +++ WPG_cpl_dflt=6 +++ OCN_tasks_cpl_dflt=20 +++ ICE_tasks_cpl_dflt=10 +++ WAV_tasks_cpl_dflt=20 +++ THRD_cpl_thrd=2 +++ INPES_cpl_thrd=3 +++ JNPES_cpl_thrd=4 +++ WPG_cpl_thrd=6 +++ OCN_tasks_cpl_thrd=20 +++ OCN_thrds_cpl_thrd=1 +++ ICE_tasks_cpl_thrd=10 +++ ICE_thrds_cpl_thrd=1 +++ WAV_tasks_cpl_thrd=12 +++ WAV_thrds_cpl_thrd=2 +++ THRD_cpl_dcmp=1 +++ INPES_cpl_dcmp=4 +++ JNPES_cpl_dcmp=6 +++ WPG_cpl_dcmp=6 +++ OCN_tasks_cpl_dcmp=20 +++ ICE_tasks_cpl_dcmp=10 +++ WAV_tasks_cpl_dcmp=20 +++ THRD_cpl_mpi=1 +++ INPES_cpl_mpi=4 +++ JNPES_cpl_mpi=8 +++ WPG_cpl_mpi=6 +++ OCN_tasks_cpl_mpi=34 +++ ICE_tasks_cpl_mpi=20 +++ WAV_tasks_cpl_mpi=28 +++ THRD_cpl_bmrk=2 +++ INPES_cpl_bmrk=8 +++ JNPES_cpl_bmrk=8 +++ WPG_cpl_bmrk=48 +++ OCN_tasks_cpl_bmrk=120 +++ OCN_thrds_cpl_bmrk=1 +++ ICE_tasks_cpl_bmrk=48 +++ ICE_thrds_cpl_bmrk=1 +++ WAV_tasks_cpl_bmrk=80 +++ WAV_thrds_cpl_bmrk=2 +++ THRD_cpl_c192=2 +++ INPES_cpl_c192=6 +++ JNPES_cpl_c192=8 +++ WPG_cpl_c192=12 +++ OCN_tasks_cpl_c192=60 +++ ICE_tasks_cpl_c192=24 +++ WAV_tasks_cpl_c192=80 +++ ATM_compute_tasks_cdeps_100=12 +++ OCN_tasks_cdeps_100=16 +++ ICE_tasks_cdeps_100=12 +++ ATM_compute_tasks_cdeps_025=40 +++ OCN_tasks_cdeps_025=120 +++ ICE_tasks_cdeps_025=48 +++ INPES_aqm=33 +++ JNPES_aqm=8 +++ aqm_omp_num_threads=1 +++ atm_omp_num_threads=1 +++ chm_omp_num_threads=1 +++ ice_omp_num_threads=1 +++ lnd_omp_num_threads=1 +++ med_omp_num_threads=1 +++ ocn_omp_num_threads=1 +++ wav_omp_num_threads=1 +++ [[ cheyenne.intel = wcoss2.* ]] +++ [[ cheyenne.intel = acorn.* ]] +++ [[ cheyenne.intel = orion.* ]] +++ [[ cheyenne.intel = hera.* ]] +++ [[ cheyenne.intel = linux.* ]] +++ [[ cheyenne.intel = jet.* ]] +++ [[ cheyenne.intel = s4.* ]] +++ [[ cheyenne.intel = gaea.* ]] +++ [[ cheyenne.intel = cheyenne.* ]] +++ TPN=36 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ INPES_c384=8 +++ JNPES_c384=6 +++ THRD_c384=2 +++ INPES_c768=8 +++ JNPES_c768=16 +++ THRD_c768=2 +++ THRD_cpl_atmw_gdas=3 +++ INPES_cpl_atmw_gdas=6 +++ JNPES_cpl_atmw_gdas=8 +++ WPG_cpl_atmw_gdas=24 +++ WAV_tasks_atmw_gdas=264 +++ THRD_cpl_dflt=1 +++ INPES_cpl_dflt=6 +++ JNPES_cpl_dflt=8 +++ WPG_cpl_dflt=6 +++ OCN_tasks_cpl_dflt=20 +++ ICE_tasks_cpl_dflt=10 +++ WAV_tasks_cpl_dflt=20 +++ THRD_cpl_thrd=2 +++ INPES_cpl_thrd=6 +++ JNPES_cpl_thrd=4 +++ WPG_cpl_thrd=6 +++ OCN_tasks_cpl_thrd=20 +++ ICE_tasks_cpl_thrd=10 +++ WAV_tasks_cpl_thrd=20 +++ THRD_cpl_dcmp=1 +++ INPES_cpl_dcmp=4 +++ JNPES_cpl_dcmp=12 +++ WPG_cpl_dcmp=6 +++ OCN_tasks_cpl_dcmp=20 +++ ICE_tasks_cpl_dcmp=10 +++ WAV_tasks_cpl_dcmp=20 +++ THRD_cpl_mpi=1 +++ INPES_cpl_mpi=6 +++ JNPES_cpl_mpi=12 +++ WPG_cpl_mpi=6 +++ OCN_tasks_cpl_mpi=24 +++ ICE_tasks_cpl_mpi=12 +++ WAV_tasks_cpl_mpi=24 +++ THRD_cpl_bmrk=2 +++ INPES_cpl_bmrk=12 +++ JNPES_cpl_bmrk=8 +++ WPG_cpl_bmrk=48 +++ OCN_tasks_cpl_bmrk=120 +++ ICE_tasks_cpl_bmrk=48 +++ WAV_tasks_cpl_bmrk=100 +++ WLCLK_dflt=30 +++ export WLCLK=30 +++ WLCLK=30 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=010 ++ TEST_NR=010 ++ export JBNME=compile_010 ++ JBNME=compile_010 ++ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_010 ++ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_010 +++ date +%s ++ echo -n 'compile_010, 1681917418,' ++ source rt_utils.sh +++ set -eu +++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] +++ OPNREQ_TEST=false +++ qsub_id=0 +++ slurm_id=0 +++ bsub_id=0 ++ source atparse.bash ++ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_010 ++ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_010 ++ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_010 ++ [[ pbs = \s\l\u\r\m ]] ++ [[ pbs = \l\s\f ]] ++ [[ pbs = \p\b\s ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +Job id 9506862 +TEST 010 compile is waiting to enter the queue +TEST 010 compile is submitted +1 min. TEST 010 compile is waiting in a queue, status: Q jobid 9506862 +2 min. TEST 010 compile is running, status: R jobid 9506862 +3 min. TEST 010 compile is running, status: R jobid 9506862 +4 min. TEST 010 compile is running, status: R jobid 9506862 +5 min. TEST 010 compile is running, status: R jobid 9506862 +6 min. TEST 010 compile is running, status: R jobid 9506862 +7 min. TEST 010 compile is running, status: R jobid 9506862 +8 min. TEST 010 compile is running, status: R jobid 9506862 +9 min. TEST 010 compile is running, status: R jobid 9506862 +10 min. TEST 010 compile is running, status: R jobid 9506862 +11 min. TEST 010 compile is running, status: R jobid 9506862 +12 min. TEST 010 compile is running, status: R jobid 9506862 +13 min. TEST 010 compile is running, status: R jobid 9506862 +14 min. TEST 010 compile is running, status: R jobid 9506862 +15 min. TEST 010 compile is running, status: R jobid 9506862 +16 min. TEST 010 compile is running, status: R jobid 9506862 +17 min. TEST 010 compile is running, status: R jobid 9506862 +18 min. TEST 010 compile is running, status: R jobid 9506862 +qstat: 9506862.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information +qstat: 9506862.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information +19 min. TEST 010 compile is finished, status: - jobid 9506862 ++ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_010.exe +-rwxr-xr-x 1 jongkim ncar 280625768 Apr 19 15:34 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_010.exe ++ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_010/compile_010_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel ++ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_010/job_timestamp.txt ++ remove_fail_test ++ echo 'Removing test failure flag file for compile_010' +Removing test failure flag file for compile_010 ++ [[ false == true ]] ++ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_010 +++ date +%s ++ echo ' 1681918531, 1' ++ elapsed=1113 ++ echo 'Elapsed time 1113 seconds. Compile 010' +Elapsed time 1113 seconds. Compile 010 ++ '[' 0 -eq 0 ']' +Compile 010 elapsed time 993 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 ++ echo PID=28508 +PID=28508 ++ SECONDS=0 ++ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT ++ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT ++ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM ++ [[ 4 != 4 ]] ++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 ++ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 ++ export 'MAKE_OPT=-DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp' ++ MAKE_OPT='-DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp' ++ export COMPILE_NR=011 ++ COMPILE_NR=011 ++ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ OPNREQ_TEST=false ++ remove_fail_test ++ echo 'Removing test failure flag file for compile_011' +Removing test failure flag file for compile_011 ++ [[ false == true ]] ++ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_011 ++ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_011.env ]] ++ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_011.env +++ export JOB_NR=091 +++ JOB_NR=091 +++ export COMPILE_NR=011 +++ COMPILE_NR=011 +++ export MACHINE_ID=cheyenne.intel +++ MACHINE_ID=cheyenne.intel +++ export RT_COMPILER=intel +++ RT_COMPILER=intel +++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests +++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests +++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel +++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel +++ export SCHEDULER=pbs +++ SCHEDULER=pbs +++ export ACCNR=NRAL0032 +++ ACCNR=NRAL0032 +++ export QUEUE=regular +++ QUEUE=regular +++ export PARTITION= +++ PARTITION= +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log +++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log +++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel +++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel ++ source default_vars.sh +++ THRD=1 +++ INPES_atmaero=4 +++ JNPES_atmaero=8 +++ WPG_atmaero=6 +++ THRD_cpl_atmw=1 +++ INPES_cpl_atmw=3 +++ JNPES_cpl_atmw=8 +++ WPG_cpl_atmw=6 +++ WAV_tasks_cpl_atmw=30 +++ WAV_thrds_cpl_atmw=1 +++ THRD_cpl_c48=1 +++ INPES_cpl_c48=1 +++ JNPES_cpl_c48=1 +++ WPG_cpl_c48=6 +++ OCN_tasks_cpl_c48=4 +++ ICE_tasks_cpl_c48=4 +++ THRD_cpl_dflt=1 +++ INPES_cpl_dflt=3 +++ JNPES_cpl_dflt=8 +++ WPG_cpl_dflt=6 +++ OCN_tasks_cpl_dflt=20 +++ ICE_tasks_cpl_dflt=10 +++ WAV_tasks_cpl_dflt=20 +++ THRD_cpl_thrd=2 +++ INPES_cpl_thrd=3 +++ JNPES_cpl_thrd=4 +++ WPG_cpl_thrd=6 +++ OCN_tasks_cpl_thrd=20 +++ OCN_thrds_cpl_thrd=1 +++ ICE_tasks_cpl_thrd=10 +++ ICE_thrds_cpl_thrd=1 +++ WAV_tasks_cpl_thrd=12 +++ WAV_thrds_cpl_thrd=2 +++ THRD_cpl_dcmp=1 +++ INPES_cpl_dcmp=4 +++ JNPES_cpl_dcmp=6 +++ WPG_cpl_dcmp=6 +++ OCN_tasks_cpl_dcmp=20 +++ ICE_tasks_cpl_dcmp=10 +++ WAV_tasks_cpl_dcmp=20 +++ THRD_cpl_mpi=1 +++ INPES_cpl_mpi=4 +++ JNPES_cpl_mpi=8 +++ WPG_cpl_mpi=6 +++ OCN_tasks_cpl_mpi=34 +++ ICE_tasks_cpl_mpi=20 +++ WAV_tasks_cpl_mpi=28 +++ THRD_cpl_bmrk=2 +++ INPES_cpl_bmrk=8 +++ JNPES_cpl_bmrk=8 +++ WPG_cpl_bmrk=48 +++ OCN_tasks_cpl_bmrk=120 +++ OCN_thrds_cpl_bmrk=1 +++ ICE_tasks_cpl_bmrk=48 +++ ICE_thrds_cpl_bmrk=1 +++ WAV_tasks_cpl_bmrk=80 +++ WAV_thrds_cpl_bmrk=2 +++ THRD_cpl_c192=2 +++ INPES_cpl_c192=6 +++ JNPES_cpl_c192=8 +++ WPG_cpl_c192=12 +++ OCN_tasks_cpl_c192=60 +++ ICE_tasks_cpl_c192=24 +++ WAV_tasks_cpl_c192=80 +++ ATM_compute_tasks_cdeps_100=12 +++ OCN_tasks_cdeps_100=16 +++ ICE_tasks_cdeps_100=12 +++ ATM_compute_tasks_cdeps_025=40 +++ OCN_tasks_cdeps_025=120 +++ ICE_tasks_cdeps_025=48 +++ INPES_aqm=33 +++ JNPES_aqm=8 +++ aqm_omp_num_threads=1 +++ atm_omp_num_threads=1 +++ chm_omp_num_threads=1 +++ ice_omp_num_threads=1 +++ lnd_omp_num_threads=1 +++ med_omp_num_threads=1 +++ ocn_omp_num_threads=1 +++ wav_omp_num_threads=1 +++ [[ cheyenne.intel = wcoss2.* ]] +++ [[ cheyenne.intel = acorn.* ]] +++ [[ cheyenne.intel = orion.* ]] +++ [[ cheyenne.intel = hera.* ]] +++ [[ cheyenne.intel = linux.* ]] +++ [[ cheyenne.intel = jet.* ]] +++ [[ cheyenne.intel = s4.* ]] +++ [[ cheyenne.intel = gaea.* ]] +++ [[ cheyenne.intel = cheyenne.* ]] +++ TPN=36 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ INPES_c384=8 +++ JNPES_c384=6 +++ THRD_c384=2 +++ INPES_c768=8 +++ JNPES_c768=16 +++ THRD_c768=2 +++ THRD_cpl_atmw_gdas=3 +++ INPES_cpl_atmw_gdas=6 +++ JNPES_cpl_atmw_gdas=8 +++ WPG_cpl_atmw_gdas=24 +++ WAV_tasks_atmw_gdas=264 +++ THRD_cpl_dflt=1 +++ INPES_cpl_dflt=6 +++ JNPES_cpl_dflt=8 +++ WPG_cpl_dflt=6 +++ OCN_tasks_cpl_dflt=20 +++ ICE_tasks_cpl_dflt=10 +++ WAV_tasks_cpl_dflt=20 +++ THRD_cpl_thrd=2 +++ INPES_cpl_thrd=6 +++ JNPES_cpl_thrd=4 +++ WPG_cpl_thrd=6 +++ OCN_tasks_cpl_thrd=20 +++ ICE_tasks_cpl_thrd=10 +++ WAV_tasks_cpl_thrd=20 +++ THRD_cpl_dcmp=1 +++ INPES_cpl_dcmp=4 +++ JNPES_cpl_dcmp=12 +++ WPG_cpl_dcmp=6 +++ OCN_tasks_cpl_dcmp=20 +++ ICE_tasks_cpl_dcmp=10 +++ WAV_tasks_cpl_dcmp=20 +++ THRD_cpl_mpi=1 +++ INPES_cpl_mpi=6 +++ JNPES_cpl_mpi=12 +++ WPG_cpl_mpi=6 +++ OCN_tasks_cpl_mpi=24 +++ ICE_tasks_cpl_mpi=12 +++ WAV_tasks_cpl_mpi=24 +++ THRD_cpl_bmrk=2 +++ INPES_cpl_bmrk=12 +++ JNPES_cpl_bmrk=8 +++ WPG_cpl_bmrk=48 +++ OCN_tasks_cpl_bmrk=120 +++ ICE_tasks_cpl_bmrk=48 +++ WAV_tasks_cpl_bmrk=100 +++ WLCLK_dflt=30 +++ export WLCLK=30 +++ WLCLK=30 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=011 ++ TEST_NR=011 ++ export JBNME=compile_011 ++ JBNME=compile_011 ++ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_011 ++ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_011 +++ date +%s ++ echo -n 'compile_011, 1681917920,' ++ source rt_utils.sh +++ set -eu +++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] +++ OPNREQ_TEST=false +++ qsub_id=0 +++ slurm_id=0 +++ bsub_id=0 ++ source atparse.bash ++ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_011 ++ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_011 ++ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_011 ++ [[ pbs = \s\l\u\r\m ]] ++ [[ pbs = \l\s\f ]] ++ [[ pbs = \p\b\s ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +Job id 9506920 +TEST 011 compile is waiting to enter the queue +TEST 011 compile is submitted +1 min. TEST 011 compile is waiting in a queue, status: Q jobid 9506920 +2 min. TEST 011 compile is running, status: R jobid 9506920 +3 min. TEST 011 compile is running, status: R jobid 9506920 +4 min. TEST 011 compile is running, status: R jobid 9506920 +5 min. TEST 011 compile is running, status: R jobid 9506920 +6 min. TEST 011 compile is running, status: R jobid 9506920 +7 min. TEST 011 compile is running, status: R jobid 9506920 +8 min. TEST 011 compile is running, status: R jobid 9506920 +9 min. TEST 011 compile is running, status: R jobid 9506920 +10 min. TEST 011 compile is running, status: R jobid 9506920 +11 min. TEST 011 compile is running, status: R jobid 9506920 +12 min. TEST 011 compile is running, status: R jobid 9506920 +13 min. TEST 011 compile is running, status: R jobid 9506920 +14 min. TEST 011 compile is running, status: R jobid 9506920 +15 min. TEST 011 compile is running, status: R jobid 9506920 +16 min. TEST 011 compile is running, status: R jobid 9506920 +17 min. TEST 011 compile is running, status: R jobid 9506920 +qstat: 9506920.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information +qstat: 9506920.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information +18 min. TEST 011 compile is finished, status: - jobid 9506920 ++ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_011.exe +-rwxr-xr-x 1 jongkim ncar 279381360 Apr 19 15:41 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_011.exe ++ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_011/compile_011_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel ++ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_011/job_timestamp.txt ++ remove_fail_test ++ echo 'Removing test failure flag file for compile_011' +Removing test failure flag file for compile_011 ++ [[ false == true ]] ++ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_011 +++ date +%s ++ echo ' 1681918962, 1' ++ elapsed=1042 ++ echo 'Elapsed time 1042 seconds. Compile 011' +Elapsed time 1042 seconds. Compile 011 ++ '[' 0 -eq 0 ']' +Compile 011 elapsed time 940 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release ++ echo PID=29399 +PID=29399 ++ SECONDS=0 ++ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT ++ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT ++ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM ++ [[ 4 != 4 ]] ++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 ++ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 ++ export 'MAKE_OPT=-DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON' ++ MAKE_OPT='-DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON' ++ export COMPILE_NR=012 ++ COMPILE_NR=012 ++ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ OPNREQ_TEST=false ++ remove_fail_test ++ echo 'Removing test failure flag file for compile_012' +Removing test failure flag file for compile_012 ++ [[ false == true ]] ++ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_012 ++ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_012.env ]] ++ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_012.env +++ export JOB_NR=095 +++ JOB_NR=095 +++ export COMPILE_NR=012 +++ COMPILE_NR=012 +++ export MACHINE_ID=cheyenne.intel +++ MACHINE_ID=cheyenne.intel +++ export RT_COMPILER=intel +++ RT_COMPILER=intel +++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests +++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests +++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel +++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel +++ export SCHEDULER=pbs +++ SCHEDULER=pbs +++ export ACCNR=NRAL0032 +++ ACCNR=NRAL0032 +++ export QUEUE=regular +++ QUEUE=regular +++ export PARTITION= +++ PARTITION= +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log +++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log +++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel +++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel ++ source default_vars.sh +++ THRD=1 +++ INPES_atmaero=4 +++ JNPES_atmaero=8 +++ WPG_atmaero=6 +++ THRD_cpl_atmw=1 +++ INPES_cpl_atmw=3 +++ JNPES_cpl_atmw=8 +++ WPG_cpl_atmw=6 +++ WAV_tasks_cpl_atmw=30 +++ WAV_thrds_cpl_atmw=1 +++ THRD_cpl_c48=1 +++ INPES_cpl_c48=1 +++ JNPES_cpl_c48=1 +++ WPG_cpl_c48=6 +++ OCN_tasks_cpl_c48=4 +++ ICE_tasks_cpl_c48=4 +++ THRD_cpl_dflt=1 +++ INPES_cpl_dflt=3 +++ JNPES_cpl_dflt=8 +++ WPG_cpl_dflt=6 +++ OCN_tasks_cpl_dflt=20 +++ ICE_tasks_cpl_dflt=10 +++ WAV_tasks_cpl_dflt=20 +++ THRD_cpl_thrd=2 +++ INPES_cpl_thrd=3 +++ JNPES_cpl_thrd=4 +++ WPG_cpl_thrd=6 +++ OCN_tasks_cpl_thrd=20 +++ OCN_thrds_cpl_thrd=1 +++ ICE_tasks_cpl_thrd=10 +++ ICE_thrds_cpl_thrd=1 +++ WAV_tasks_cpl_thrd=12 +++ WAV_thrds_cpl_thrd=2 +++ THRD_cpl_dcmp=1 +++ INPES_cpl_dcmp=4 +++ JNPES_cpl_dcmp=6 +++ WPG_cpl_dcmp=6 +++ OCN_tasks_cpl_dcmp=20 +++ ICE_tasks_cpl_dcmp=10 +++ WAV_tasks_cpl_dcmp=20 +++ THRD_cpl_mpi=1 +++ INPES_cpl_mpi=4 +++ JNPES_cpl_mpi=8 +++ WPG_cpl_mpi=6 +++ OCN_tasks_cpl_mpi=34 +++ ICE_tasks_cpl_mpi=20 +++ WAV_tasks_cpl_mpi=28 +++ THRD_cpl_bmrk=2 +++ INPES_cpl_bmrk=8 +++ JNPES_cpl_bmrk=8 +++ WPG_cpl_bmrk=48 +++ OCN_tasks_cpl_bmrk=120 +++ OCN_thrds_cpl_bmrk=1 +++ ICE_tasks_cpl_bmrk=48 +++ ICE_thrds_cpl_bmrk=1 +++ WAV_tasks_cpl_bmrk=80 +++ WAV_thrds_cpl_bmrk=2 +++ THRD_cpl_c192=2 +++ INPES_cpl_c192=6 +++ JNPES_cpl_c192=8 +++ WPG_cpl_c192=12 +++ OCN_tasks_cpl_c192=60 +++ ICE_tasks_cpl_c192=24 +++ WAV_tasks_cpl_c192=80 +++ ATM_compute_tasks_cdeps_100=12 +++ OCN_tasks_cdeps_100=16 +++ ICE_tasks_cdeps_100=12 +++ ATM_compute_tasks_cdeps_025=40 +++ OCN_tasks_cdeps_025=120 +++ ICE_tasks_cdeps_025=48 +++ INPES_aqm=33 +++ JNPES_aqm=8 +++ aqm_omp_num_threads=1 +++ atm_omp_num_threads=1 +++ chm_omp_num_threads=1 +++ ice_omp_num_threads=1 +++ lnd_omp_num_threads=1 +++ med_omp_num_threads=1 +++ ocn_omp_num_threads=1 +++ wav_omp_num_threads=1 +++ [[ cheyenne.intel = wcoss2.* ]] +++ [[ cheyenne.intel = acorn.* ]] +++ [[ cheyenne.intel = orion.* ]] +++ [[ cheyenne.intel = hera.* ]] +++ [[ cheyenne.intel = linux.* ]] +++ [[ cheyenne.intel = jet.* ]] +++ [[ cheyenne.intel = s4.* ]] +++ [[ cheyenne.intel = gaea.* ]] +++ [[ cheyenne.intel = cheyenne.* ]] +++ TPN=36 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ INPES_c384=8 +++ JNPES_c384=6 +++ THRD_c384=2 +++ INPES_c768=8 +++ JNPES_c768=16 +++ THRD_c768=2 +++ THRD_cpl_atmw_gdas=3 +++ INPES_cpl_atmw_gdas=6 +++ JNPES_cpl_atmw_gdas=8 +++ WPG_cpl_atmw_gdas=24 +++ WAV_tasks_atmw_gdas=264 +++ THRD_cpl_dflt=1 +++ INPES_cpl_dflt=6 +++ JNPES_cpl_dflt=8 +++ WPG_cpl_dflt=6 +++ OCN_tasks_cpl_dflt=20 +++ ICE_tasks_cpl_dflt=10 +++ WAV_tasks_cpl_dflt=20 +++ THRD_cpl_thrd=2 +++ INPES_cpl_thrd=6 +++ JNPES_cpl_thrd=4 +++ WPG_cpl_thrd=6 +++ OCN_tasks_cpl_thrd=20 +++ ICE_tasks_cpl_thrd=10 +++ WAV_tasks_cpl_thrd=20 +++ THRD_cpl_dcmp=1 +++ INPES_cpl_dcmp=4 +++ JNPES_cpl_dcmp=12 +++ WPG_cpl_dcmp=6 +++ OCN_tasks_cpl_dcmp=20 +++ ICE_tasks_cpl_dcmp=10 +++ WAV_tasks_cpl_dcmp=20 +++ THRD_cpl_mpi=1 +++ INPES_cpl_mpi=6 +++ JNPES_cpl_mpi=12 +++ WPG_cpl_mpi=6 +++ OCN_tasks_cpl_mpi=24 +++ ICE_tasks_cpl_mpi=12 +++ WAV_tasks_cpl_mpi=24 +++ THRD_cpl_bmrk=2 +++ INPES_cpl_bmrk=12 +++ JNPES_cpl_bmrk=8 +++ WPG_cpl_bmrk=48 +++ OCN_tasks_cpl_bmrk=120 +++ ICE_tasks_cpl_bmrk=48 +++ WAV_tasks_cpl_bmrk=100 +++ WLCLK_dflt=30 +++ export WLCLK=30 +++ WLCLK=30 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=012 ++ TEST_NR=012 ++ export JBNME=compile_012 ++ JBNME=compile_012 ++ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_012 ++ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_012 +++ date +%s ++ echo -n 'compile_012, 1681917981,' ++ source rt_utils.sh +++ set -eu +++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] +++ OPNREQ_TEST=false +++ qsub_id=0 +++ slurm_id=0 +++ bsub_id=0 ++ source atparse.bash ++ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_012 ++ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_012 ++ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_012 ++ [[ pbs = \s\l\u\r\m ]] ++ [[ pbs = \l\s\f ]] ++ [[ pbs = \p\b\s ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +Job id 9506927 +TEST 012 compile is waiting to enter the queue +TEST 012 compile is submitted +1 min. TEST 012 compile is waiting in a queue, status: Q jobid 9506927 +2 min. TEST 012 compile is waiting in a queue, status: Q jobid 9506927 +3 min. TEST 012 compile is running, status: R jobid 9506927 +4 min. TEST 012 compile is running, status: R jobid 9506927 +5 min. TEST 012 compile is running, status: R jobid 9506927 +6 min. TEST 012 compile is running, status: R jobid 9506927 +7 min. TEST 012 compile is running, status: R jobid 9506927 +8 min. TEST 012 compile is running, status: R jobid 9506927 +9 min. TEST 012 compile is running, status: R jobid 9506927 +10 min. TEST 012 compile is running, status: R jobid 9506927 +11 min. TEST 012 compile is running, status: R jobid 9506927 +12 min. TEST 012 compile is running, status: R jobid 9506927 +13 min. TEST 012 compile is running, status: R jobid 9506927 +14 min. TEST 012 compile is running, status: R jobid 9506927 +15 min. TEST 012 compile is running, status: R jobid 9506927 +qstat: 9506927.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information +qstat: 9506927.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information +16 min. TEST 012 compile is finished, status: - jobid 9506927 ++ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_012.exe +-rwxr-xr-x 1 jongkim ncar 271124760 Apr 19 15:41 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_012.exe ++ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_012/compile_012_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel ++ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_012/job_timestamp.txt ++ remove_fail_test ++ echo 'Removing test failure flag file for compile_012' +Removing test failure flag file for compile_012 ++ [[ false == true ]] ++ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_012 +++ date +%s ++ echo ' 1681918902, 1' ++ elapsed=921 ++ echo 'Elapsed time 921 seconds. Compile 012' +Elapsed time 921 seconds. Compile 012 ++ '[' 0 -eq 0 ']' +Compile 012 elapsed time 818 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release ++ echo PID=64659 +PID=64659 ++ SECONDS=0 ++ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT ++ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT ++ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM ++ [[ 4 != 4 ]] ++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 ++ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 ++ export 'MAKE_OPT=-DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON' ++ MAKE_OPT='-DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON' ++ export COMPILE_NR=013 ++ COMPILE_NR=013 ++ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ OPNREQ_TEST=false ++ remove_fail_test ++ echo 'Removing test failure flag file for compile_013' +Removing test failure flag file for compile_013 ++ [[ false == true ]] ++ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_013 ++ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_013.env ]] ++ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_013.env +++ export JOB_NR=097 +++ JOB_NR=097 +++ export COMPILE_NR=013 +++ COMPILE_NR=013 +++ export MACHINE_ID=cheyenne.intel +++ MACHINE_ID=cheyenne.intel +++ export RT_COMPILER=intel +++ RT_COMPILER=intel +++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests +++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests +++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel +++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel +++ export SCHEDULER=pbs +++ SCHEDULER=pbs +++ export ACCNR=NRAL0032 +++ ACCNR=NRAL0032 +++ export QUEUE=regular +++ QUEUE=regular +++ export PARTITION= +++ PARTITION= +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log +++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log +++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel +++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel ++ source default_vars.sh +++ THRD=1 +++ INPES_atmaero=4 +++ JNPES_atmaero=8 +++ WPG_atmaero=6 +++ THRD_cpl_atmw=1 +++ INPES_cpl_atmw=3 +++ JNPES_cpl_atmw=8 +++ WPG_cpl_atmw=6 +++ WAV_tasks_cpl_atmw=30 +++ WAV_thrds_cpl_atmw=1 +++ THRD_cpl_c48=1 +++ INPES_cpl_c48=1 +++ JNPES_cpl_c48=1 +++ WPG_cpl_c48=6 +++ OCN_tasks_cpl_c48=4 +++ ICE_tasks_cpl_c48=4 +++ THRD_cpl_dflt=1 +++ INPES_cpl_dflt=3 +++ JNPES_cpl_dflt=8 +++ WPG_cpl_dflt=6 +++ OCN_tasks_cpl_dflt=20 +++ ICE_tasks_cpl_dflt=10 +++ WAV_tasks_cpl_dflt=20 +++ THRD_cpl_thrd=2 +++ INPES_cpl_thrd=3 +++ JNPES_cpl_thrd=4 +++ WPG_cpl_thrd=6 +++ OCN_tasks_cpl_thrd=20 +++ OCN_thrds_cpl_thrd=1 +++ ICE_tasks_cpl_thrd=10 +++ ICE_thrds_cpl_thrd=1 +++ WAV_tasks_cpl_thrd=12 +++ WAV_thrds_cpl_thrd=2 +++ THRD_cpl_dcmp=1 +++ INPES_cpl_dcmp=4 +++ JNPES_cpl_dcmp=6 +++ WPG_cpl_dcmp=6 +++ OCN_tasks_cpl_dcmp=20 +++ ICE_tasks_cpl_dcmp=10 +++ WAV_tasks_cpl_dcmp=20 +++ THRD_cpl_mpi=1 +++ INPES_cpl_mpi=4 +++ JNPES_cpl_mpi=8 +++ WPG_cpl_mpi=6 +++ OCN_tasks_cpl_mpi=34 +++ ICE_tasks_cpl_mpi=20 +++ WAV_tasks_cpl_mpi=28 +++ THRD_cpl_bmrk=2 +++ INPES_cpl_bmrk=8 +++ JNPES_cpl_bmrk=8 +++ WPG_cpl_bmrk=48 +++ OCN_tasks_cpl_bmrk=120 +++ OCN_thrds_cpl_bmrk=1 +++ ICE_tasks_cpl_bmrk=48 +++ ICE_thrds_cpl_bmrk=1 +++ WAV_tasks_cpl_bmrk=80 +++ WAV_thrds_cpl_bmrk=2 +++ THRD_cpl_c192=2 +++ INPES_cpl_c192=6 +++ JNPES_cpl_c192=8 +++ WPG_cpl_c192=12 +++ OCN_tasks_cpl_c192=60 +++ ICE_tasks_cpl_c192=24 +++ WAV_tasks_cpl_c192=80 +++ ATM_compute_tasks_cdeps_100=12 +++ OCN_tasks_cdeps_100=16 +++ ICE_tasks_cdeps_100=12 +++ ATM_compute_tasks_cdeps_025=40 +++ OCN_tasks_cdeps_025=120 +++ ICE_tasks_cdeps_025=48 +++ INPES_aqm=33 +++ JNPES_aqm=8 +++ aqm_omp_num_threads=1 +++ atm_omp_num_threads=1 +++ chm_omp_num_threads=1 +++ ice_omp_num_threads=1 +++ lnd_omp_num_threads=1 +++ med_omp_num_threads=1 +++ ocn_omp_num_threads=1 +++ wav_omp_num_threads=1 +++ [[ cheyenne.intel = wcoss2.* ]] +++ [[ cheyenne.intel = acorn.* ]] +++ [[ cheyenne.intel = orion.* ]] +++ [[ cheyenne.intel = hera.* ]] +++ [[ cheyenne.intel = linux.* ]] +++ [[ cheyenne.intel = jet.* ]] +++ [[ cheyenne.intel = s4.* ]] +++ [[ cheyenne.intel = gaea.* ]] +++ [[ cheyenne.intel = cheyenne.* ]] +++ TPN=36 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ INPES_c384=8 +++ JNPES_c384=6 +++ THRD_c384=2 +++ INPES_c768=8 +++ JNPES_c768=16 +++ THRD_c768=2 +++ THRD_cpl_atmw_gdas=3 +++ INPES_cpl_atmw_gdas=6 +++ JNPES_cpl_atmw_gdas=8 +++ WPG_cpl_atmw_gdas=24 +++ WAV_tasks_atmw_gdas=264 +++ THRD_cpl_dflt=1 +++ INPES_cpl_dflt=6 +++ JNPES_cpl_dflt=8 +++ WPG_cpl_dflt=6 +++ OCN_tasks_cpl_dflt=20 +++ ICE_tasks_cpl_dflt=10 +++ WAV_tasks_cpl_dflt=20 +++ THRD_cpl_thrd=2 +++ INPES_cpl_thrd=6 +++ JNPES_cpl_thrd=4 +++ WPG_cpl_thrd=6 +++ OCN_tasks_cpl_thrd=20 +++ ICE_tasks_cpl_thrd=10 +++ WAV_tasks_cpl_thrd=20 +++ THRD_cpl_dcmp=1 +++ INPES_cpl_dcmp=4 +++ JNPES_cpl_dcmp=12 +++ WPG_cpl_dcmp=6 +++ OCN_tasks_cpl_dcmp=20 +++ ICE_tasks_cpl_dcmp=10 +++ WAV_tasks_cpl_dcmp=20 +++ THRD_cpl_mpi=1 +++ INPES_cpl_mpi=6 +++ JNPES_cpl_mpi=12 +++ WPG_cpl_mpi=6 +++ OCN_tasks_cpl_mpi=24 +++ ICE_tasks_cpl_mpi=12 +++ WAV_tasks_cpl_mpi=24 +++ THRD_cpl_bmrk=2 +++ INPES_cpl_bmrk=12 +++ JNPES_cpl_bmrk=8 +++ WPG_cpl_bmrk=48 +++ OCN_tasks_cpl_bmrk=120 +++ ICE_tasks_cpl_bmrk=48 +++ WAV_tasks_cpl_bmrk=100 +++ WLCLK_dflt=30 +++ export WLCLK=30 +++ WLCLK=30 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=013 ++ TEST_NR=013 ++ export JBNME=compile_013 ++ JBNME=compile_013 ++ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_013 ++ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_013 +++ date +%s ++ echo -n 'compile_013, 1681918532,' ++ source rt_utils.sh +++ set -eu +++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] +++ OPNREQ_TEST=false +++ qsub_id=0 +++ slurm_id=0 +++ bsub_id=0 ++ source atparse.bash ++ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_013 ++ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_013 ++ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_013 ++ [[ pbs = \s\l\u\r\m ]] ++ [[ pbs = \l\s\f ]] ++ [[ pbs = \p\b\s ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +Job id 9506957 +TEST 013 compile is waiting to enter the queue +TEST 013 compile is submitted +1 min. TEST 013 compile is waiting in a queue, status: Q jobid 9506957 +2 min. TEST 013 compile is running, status: R jobid 9506957 +3 min. TEST 013 compile is running, status: R jobid 9506957 +4 min. TEST 013 compile is running, status: R jobid 9506957 +5 min. TEST 013 compile is running, status: R jobid 9506957 +6 min. TEST 013 compile is running, status: R jobid 9506957 +7 min. TEST 013 compile is running, status: R jobid 9506957 +8 min. TEST 013 compile is running, status: R jobid 9506957 +9 min. TEST 013 compile is running, status: R jobid 9506957 +10 min. TEST 013 compile is running, status: R jobid 9506957 +11 min. TEST 013 compile is running, status: R jobid 9506957 +12 min. TEST 013 compile is running, status: R jobid 9506957 +13 min. TEST 013 compile is running, status: R jobid 9506957 +14 min. TEST 013 compile is running, status: R jobid 9506957 +15 min. TEST 013 compile is running, status: R jobid 9506957 +16 min. TEST 013 compile is running, status: R jobid 9506957 +17 min. TEST 013 compile is running, status: R jobid 9506957 +18 min. TEST 013 compile is running, status: R jobid 9506957 +19 min. TEST 013 compile is running, status: R jobid 9506957 +20 min. TEST 013 compile is running, status: R jobid 9506957 +21 min. TEST 013 compile is running, status: R jobid 9506957 +22 min. TEST 013 compile is running, status: R jobid 9506957 +23 min. TEST 013 compile is running, status: R jobid 9506957 +qstat: 9506957.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information +qstat: 9506957.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information +24 min. TEST 013 compile is finished, status: - jobid 9506957 ++ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_013.exe +-rwxr-xr-x 1 jongkim ncar 283130688 Apr 19 15:58 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_013.exe ++ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_013/compile_013_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel ++ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_013/job_timestamp.txt ++ remove_fail_test ++ echo 'Removing test failure flag file for compile_013' +Removing test failure flag file for compile_013 ++ [[ false == true ]] ++ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_013 +++ date +%s ++ echo ' 1681919931, 1' ++ elapsed=1399 ++ echo 'Elapsed time 1399 seconds. Compile 013' +Elapsed time 1399 seconds. Compile 013 ++ '[' 0 -eq 0 ']' +Compile 013 elapsed time 1302 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release ++ echo PID=69717 +PID=69717 ++ SECONDS=0 ++ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT ++ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT ++ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM ++ [[ 4 != 4 ]] ++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 ++ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 ++ export 'MAKE_OPT=-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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta' ++ MAKE_OPT='-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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta' ++ export COMPILE_NR=014 ++ COMPILE_NR=014 ++ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ OPNREQ_TEST=false ++ remove_fail_test ++ echo 'Removing test failure flag file for compile_014' +Removing test failure flag file for compile_014 ++ [[ false == true ]] ++ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_014 ++ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_014.env ]] ++ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_014.env +++ export JOB_NR=100 +++ JOB_NR=100 +++ export COMPILE_NR=014 +++ COMPILE_NR=014 +++ export MACHINE_ID=cheyenne.intel +++ MACHINE_ID=cheyenne.intel +++ export RT_COMPILER=intel +++ RT_COMPILER=intel +++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests +++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests +++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel +++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel +++ export SCHEDULER=pbs +++ SCHEDULER=pbs +++ export ACCNR=NRAL0032 +++ ACCNR=NRAL0032 +++ export QUEUE=regular +++ QUEUE=regular +++ export PARTITION= +++ PARTITION= +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log +++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log +++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel +++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel ++ source default_vars.sh +++ THRD=1 +++ INPES_atmaero=4 +++ JNPES_atmaero=8 +++ WPG_atmaero=6 +++ THRD_cpl_atmw=1 +++ INPES_cpl_atmw=3 +++ JNPES_cpl_atmw=8 +++ WPG_cpl_atmw=6 +++ WAV_tasks_cpl_atmw=30 +++ WAV_thrds_cpl_atmw=1 +++ THRD_cpl_c48=1 +++ INPES_cpl_c48=1 +++ JNPES_cpl_c48=1 +++ WPG_cpl_c48=6 +++ OCN_tasks_cpl_c48=4 +++ ICE_tasks_cpl_c48=4 +++ THRD_cpl_dflt=1 +++ INPES_cpl_dflt=3 +++ JNPES_cpl_dflt=8 +++ WPG_cpl_dflt=6 +++ OCN_tasks_cpl_dflt=20 +++ ICE_tasks_cpl_dflt=10 +++ WAV_tasks_cpl_dflt=20 +++ THRD_cpl_thrd=2 +++ INPES_cpl_thrd=3 +++ JNPES_cpl_thrd=4 +++ WPG_cpl_thrd=6 +++ OCN_tasks_cpl_thrd=20 +++ OCN_thrds_cpl_thrd=1 +++ ICE_tasks_cpl_thrd=10 +++ ICE_thrds_cpl_thrd=1 +++ WAV_tasks_cpl_thrd=12 +++ WAV_thrds_cpl_thrd=2 +++ THRD_cpl_dcmp=1 +++ INPES_cpl_dcmp=4 +++ JNPES_cpl_dcmp=6 +++ WPG_cpl_dcmp=6 +++ OCN_tasks_cpl_dcmp=20 +++ ICE_tasks_cpl_dcmp=10 +++ WAV_tasks_cpl_dcmp=20 +++ THRD_cpl_mpi=1 +++ INPES_cpl_mpi=4 +++ JNPES_cpl_mpi=8 +++ WPG_cpl_mpi=6 +++ OCN_tasks_cpl_mpi=34 +++ ICE_tasks_cpl_mpi=20 +++ WAV_tasks_cpl_mpi=28 +++ THRD_cpl_bmrk=2 +++ INPES_cpl_bmrk=8 +++ JNPES_cpl_bmrk=8 +++ WPG_cpl_bmrk=48 +++ OCN_tasks_cpl_bmrk=120 +++ OCN_thrds_cpl_bmrk=1 +++ ICE_tasks_cpl_bmrk=48 +++ ICE_thrds_cpl_bmrk=1 +++ WAV_tasks_cpl_bmrk=80 +++ WAV_thrds_cpl_bmrk=2 +++ THRD_cpl_c192=2 +++ INPES_cpl_c192=6 +++ JNPES_cpl_c192=8 +++ WPG_cpl_c192=12 +++ OCN_tasks_cpl_c192=60 +++ ICE_tasks_cpl_c192=24 +++ WAV_tasks_cpl_c192=80 +++ ATM_compute_tasks_cdeps_100=12 +++ OCN_tasks_cdeps_100=16 +++ ICE_tasks_cdeps_100=12 +++ ATM_compute_tasks_cdeps_025=40 +++ OCN_tasks_cdeps_025=120 +++ ICE_tasks_cdeps_025=48 +++ INPES_aqm=33 +++ JNPES_aqm=8 +++ aqm_omp_num_threads=1 +++ atm_omp_num_threads=1 +++ chm_omp_num_threads=1 +++ ice_omp_num_threads=1 +++ lnd_omp_num_threads=1 +++ med_omp_num_threads=1 +++ ocn_omp_num_threads=1 +++ wav_omp_num_threads=1 +++ [[ cheyenne.intel = wcoss2.* ]] +++ [[ cheyenne.intel = acorn.* ]] +++ [[ cheyenne.intel = orion.* ]] +++ [[ cheyenne.intel = hera.* ]] +++ [[ cheyenne.intel = linux.* ]] +++ [[ cheyenne.intel = jet.* ]] +++ [[ cheyenne.intel = s4.* ]] +++ [[ cheyenne.intel = gaea.* ]] +++ [[ cheyenne.intel = cheyenne.* ]] +++ TPN=36 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ INPES_c384=8 +++ JNPES_c384=6 +++ THRD_c384=2 +++ INPES_c768=8 +++ JNPES_c768=16 +++ THRD_c768=2 +++ THRD_cpl_atmw_gdas=3 +++ INPES_cpl_atmw_gdas=6 +++ JNPES_cpl_atmw_gdas=8 +++ WPG_cpl_atmw_gdas=24 +++ WAV_tasks_atmw_gdas=264 +++ THRD_cpl_dflt=1 +++ INPES_cpl_dflt=6 +++ JNPES_cpl_dflt=8 +++ WPG_cpl_dflt=6 +++ OCN_tasks_cpl_dflt=20 +++ ICE_tasks_cpl_dflt=10 +++ WAV_tasks_cpl_dflt=20 +++ THRD_cpl_thrd=2 +++ INPES_cpl_thrd=6 +++ JNPES_cpl_thrd=4 +++ WPG_cpl_thrd=6 +++ OCN_tasks_cpl_thrd=20 +++ ICE_tasks_cpl_thrd=10 +++ WAV_tasks_cpl_thrd=20 +++ THRD_cpl_dcmp=1 +++ INPES_cpl_dcmp=4 +++ JNPES_cpl_dcmp=12 +++ WPG_cpl_dcmp=6 +++ OCN_tasks_cpl_dcmp=20 +++ ICE_tasks_cpl_dcmp=10 +++ WAV_tasks_cpl_dcmp=20 +++ THRD_cpl_mpi=1 +++ INPES_cpl_mpi=6 +++ JNPES_cpl_mpi=12 +++ WPG_cpl_mpi=6 +++ OCN_tasks_cpl_mpi=24 +++ ICE_tasks_cpl_mpi=12 +++ WAV_tasks_cpl_mpi=24 +++ THRD_cpl_bmrk=2 +++ INPES_cpl_bmrk=12 +++ JNPES_cpl_bmrk=8 +++ WPG_cpl_bmrk=48 +++ OCN_tasks_cpl_bmrk=120 +++ ICE_tasks_cpl_bmrk=48 +++ WAV_tasks_cpl_bmrk=100 +++ WLCLK_dflt=30 +++ export WLCLK=30 +++ WLCLK=30 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=014 ++ TEST_NR=014 ++ export JBNME=compile_014 ++ JBNME=compile_014 ++ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_014 ++ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_014 +++ date +%s ++ echo -n 'compile_014, 1681918593,' ++ source rt_utils.sh +++ set -eu +++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] +++ OPNREQ_TEST=false +++ qsub_id=0 +++ slurm_id=0 +++ bsub_id=0 ++ source atparse.bash ++ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_014 ++ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_014 ++ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_014 ++ [[ pbs = \s\l\u\r\m ]] ++ [[ pbs = \l\s\f ]] ++ [[ pbs = \p\b\s ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +Job id 9506980 +TEST 014 compile is waiting to enter the queue +TEST 014 compile is submitted +1 min. TEST 014 compile is waiting in a queue, status: Q jobid 9506980 +2 min. TEST 014 compile is running, status: R jobid 9506980 +3 min. TEST 014 compile is running, status: R jobid 9506980 +4 min. TEST 014 compile is running, status: R jobid 9506980 +5 min. TEST 014 compile is running, status: R jobid 9506980 +6 min. TEST 014 compile is running, status: R jobid 9506980 +7 min. TEST 014 compile is running, status: R jobid 9506980 +8 min. TEST 014 compile is running, status: R jobid 9506980 +qstat: 9506980.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information +qstat: 9506980.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information +9 min. TEST 014 compile is finished, status: - jobid 9506980 ++ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_014.exe +-rwxr-xr-x 1 jongkim ncar 791011432 Apr 19 15:44 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_014.exe ++ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_014/compile_014_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel ++ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_014/job_timestamp.txt ++ remove_fail_test ++ echo 'Removing test failure flag file for compile_014' +Removing test failure flag file for compile_014 ++ [[ false == true ]] ++ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_014 +++ date +%s ++ echo ' 1681919082, 1' ++ elapsed=489 ++ echo 'Elapsed time 489 seconds. Compile 014' +Elapsed time 489 seconds. Compile 014 ++ '[' 0 -eq 0 ']' +Compile 014 elapsed time 404 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug ++ echo PID=69720 +PID=69720 ++ SECONDS=0 ++ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT ++ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT ++ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM ++ [[ 4 != 4 ]] ++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 ++ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 ++ export 'MAKE_OPT=-DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON' ++ MAKE_OPT='-DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON' ++ export COMPILE_NR=015 ++ COMPILE_NR=015 ++ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ OPNREQ_TEST=false ++ remove_fail_test ++ echo 'Removing test failure flag file for compile_015' +Removing test failure flag file for compile_015 ++ [[ false == true ]] ++ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_015 ++ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_015.env ]] ++ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_015.env +++ export JOB_NR=127 +++ JOB_NR=127 +++ export COMPILE_NR=015 +++ COMPILE_NR=015 +++ export MACHINE_ID=cheyenne.intel +++ MACHINE_ID=cheyenne.intel +++ export RT_COMPILER=intel +++ RT_COMPILER=intel +++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests +++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests +++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel +++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel +++ export SCHEDULER=pbs +++ SCHEDULER=pbs +++ export ACCNR=NRAL0032 +++ ACCNR=NRAL0032 +++ export QUEUE=regular +++ QUEUE=regular +++ export PARTITION= +++ PARTITION= +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log +++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log +++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel +++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel ++ source default_vars.sh +++ THRD=1 +++ INPES_atmaero=4 +++ JNPES_atmaero=8 +++ WPG_atmaero=6 +++ THRD_cpl_atmw=1 +++ INPES_cpl_atmw=3 +++ JNPES_cpl_atmw=8 +++ WPG_cpl_atmw=6 +++ WAV_tasks_cpl_atmw=30 +++ WAV_thrds_cpl_atmw=1 +++ THRD_cpl_c48=1 +++ INPES_cpl_c48=1 +++ JNPES_cpl_c48=1 +++ WPG_cpl_c48=6 +++ OCN_tasks_cpl_c48=4 +++ ICE_tasks_cpl_c48=4 +++ THRD_cpl_dflt=1 +++ INPES_cpl_dflt=3 +++ JNPES_cpl_dflt=8 +++ WPG_cpl_dflt=6 +++ OCN_tasks_cpl_dflt=20 +++ ICE_tasks_cpl_dflt=10 +++ WAV_tasks_cpl_dflt=20 +++ THRD_cpl_thrd=2 +++ INPES_cpl_thrd=3 +++ JNPES_cpl_thrd=4 +++ WPG_cpl_thrd=6 +++ OCN_tasks_cpl_thrd=20 +++ OCN_thrds_cpl_thrd=1 +++ ICE_tasks_cpl_thrd=10 +++ ICE_thrds_cpl_thrd=1 +++ WAV_tasks_cpl_thrd=12 +++ WAV_thrds_cpl_thrd=2 +++ THRD_cpl_dcmp=1 +++ INPES_cpl_dcmp=4 +++ JNPES_cpl_dcmp=6 +++ WPG_cpl_dcmp=6 +++ OCN_tasks_cpl_dcmp=20 +++ ICE_tasks_cpl_dcmp=10 +++ WAV_tasks_cpl_dcmp=20 +++ THRD_cpl_mpi=1 +++ INPES_cpl_mpi=4 +++ JNPES_cpl_mpi=8 +++ WPG_cpl_mpi=6 +++ OCN_tasks_cpl_mpi=34 +++ ICE_tasks_cpl_mpi=20 +++ WAV_tasks_cpl_mpi=28 +++ THRD_cpl_bmrk=2 +++ INPES_cpl_bmrk=8 +++ JNPES_cpl_bmrk=8 +++ WPG_cpl_bmrk=48 +++ OCN_tasks_cpl_bmrk=120 +++ OCN_thrds_cpl_bmrk=1 +++ ICE_tasks_cpl_bmrk=48 +++ ICE_thrds_cpl_bmrk=1 +++ WAV_tasks_cpl_bmrk=80 +++ WAV_thrds_cpl_bmrk=2 +++ THRD_cpl_c192=2 +++ INPES_cpl_c192=6 +++ JNPES_cpl_c192=8 +++ WPG_cpl_c192=12 +++ OCN_tasks_cpl_c192=60 +++ ICE_tasks_cpl_c192=24 +++ WAV_tasks_cpl_c192=80 +++ ATM_compute_tasks_cdeps_100=12 +++ OCN_tasks_cdeps_100=16 +++ ICE_tasks_cdeps_100=12 +++ ATM_compute_tasks_cdeps_025=40 +++ OCN_tasks_cdeps_025=120 +++ ICE_tasks_cdeps_025=48 +++ INPES_aqm=33 +++ JNPES_aqm=8 +++ aqm_omp_num_threads=1 +++ atm_omp_num_threads=1 +++ chm_omp_num_threads=1 +++ ice_omp_num_threads=1 +++ lnd_omp_num_threads=1 +++ med_omp_num_threads=1 +++ ocn_omp_num_threads=1 +++ wav_omp_num_threads=1 +++ [[ cheyenne.intel = wcoss2.* ]] +++ [[ cheyenne.intel = acorn.* ]] +++ [[ cheyenne.intel = orion.* ]] +++ [[ cheyenne.intel = hera.* ]] +++ [[ cheyenne.intel = linux.* ]] +++ [[ cheyenne.intel = jet.* ]] +++ [[ cheyenne.intel = s4.* ]] +++ [[ cheyenne.intel = gaea.* ]] +++ [[ cheyenne.intel = cheyenne.* ]] +++ TPN=36 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ INPES_c384=8 +++ JNPES_c384=6 +++ THRD_c384=2 +++ INPES_c768=8 +++ JNPES_c768=16 +++ THRD_c768=2 +++ THRD_cpl_atmw_gdas=3 +++ INPES_cpl_atmw_gdas=6 +++ JNPES_cpl_atmw_gdas=8 +++ WPG_cpl_atmw_gdas=24 +++ WAV_tasks_atmw_gdas=264 +++ THRD_cpl_dflt=1 +++ INPES_cpl_dflt=6 +++ JNPES_cpl_dflt=8 +++ WPG_cpl_dflt=6 +++ OCN_tasks_cpl_dflt=20 +++ ICE_tasks_cpl_dflt=10 +++ WAV_tasks_cpl_dflt=20 +++ THRD_cpl_thrd=2 +++ INPES_cpl_thrd=6 +++ JNPES_cpl_thrd=4 +++ WPG_cpl_thrd=6 +++ OCN_tasks_cpl_thrd=20 +++ ICE_tasks_cpl_thrd=10 +++ WAV_tasks_cpl_thrd=20 +++ THRD_cpl_dcmp=1 +++ INPES_cpl_dcmp=4 +++ JNPES_cpl_dcmp=12 +++ WPG_cpl_dcmp=6 +++ OCN_tasks_cpl_dcmp=20 +++ ICE_tasks_cpl_dcmp=10 +++ WAV_tasks_cpl_dcmp=20 +++ THRD_cpl_mpi=1 +++ INPES_cpl_mpi=6 +++ JNPES_cpl_mpi=12 +++ WPG_cpl_mpi=6 +++ OCN_tasks_cpl_mpi=24 +++ ICE_tasks_cpl_mpi=12 +++ WAV_tasks_cpl_mpi=24 +++ THRD_cpl_bmrk=2 +++ INPES_cpl_bmrk=12 +++ JNPES_cpl_bmrk=8 +++ WPG_cpl_bmrk=48 +++ OCN_tasks_cpl_bmrk=120 +++ ICE_tasks_cpl_bmrk=48 +++ WAV_tasks_cpl_bmrk=100 +++ WLCLK_dflt=30 +++ export WLCLK=30 +++ WLCLK=30 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=015 ++ TEST_NR=015 ++ export JBNME=compile_015 ++ JBNME=compile_015 ++ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_015 ++ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_015 +++ date +%s ++ echo -n 'compile_015, 1681918593,' ++ source rt_utils.sh +++ set -eu +++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] +++ OPNREQ_TEST=false +++ qsub_id=0 +++ slurm_id=0 +++ bsub_id=0 ++ source atparse.bash ++ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_015 ++ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_015 ++ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_015 ++ [[ pbs = \s\l\u\r\m ]] ++ [[ pbs = \l\s\f ]] ++ [[ pbs = \p\b\s ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +Job id 9506981 +TEST 015 compile is waiting to enter the queue +TEST 015 compile is submitted +1 min. TEST 015 compile is waiting in a queue, status: Q jobid 9506981 +2 min. TEST 015 compile is running, status: R jobid 9506981 +3 min. TEST 015 compile is running, status: R jobid 9506981 +4 min. TEST 015 compile is running, status: R jobid 9506981 +5 min. TEST 015 compile is running, status: R jobid 9506981 +6 min. TEST 015 compile is running, status: R jobid 9506981 +qstat: 9506981.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information +qstat: 9506981.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information +7 min. TEST 015 compile is finished, status: - jobid 9506981 ++ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_015.exe +-rwxr-xr-x 1 jongkim ncar 584008944 Apr 19 15:41 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_015.exe ++ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_015/compile_015_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel ++ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_015/job_timestamp.txt ++ remove_fail_test ++ echo 'Removing test failure flag file for compile_015' +Removing test failure flag file for compile_015 ++ [[ false == true ]] ++ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_015 +++ date +%s ++ echo ' 1681918962, 1' ++ elapsed=369 ++ echo 'Elapsed time 369 seconds. Compile 015' +Elapsed time 369 seconds. Compile 015 ++ '[' 0 -eq 0 ']' +Compile 015 elapsed time 263 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug ++ echo PID=73059 +PID=73059 ++ SECONDS=0 ++ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT ++ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT ++ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM ++ [[ 4 != 4 ]] ++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 ++ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 ++ export 'MAKE_OPT=-DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON' ++ MAKE_OPT='-DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON' ++ export COMPILE_NR=016 ++ COMPILE_NR=016 ++ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ OPNREQ_TEST=false ++ remove_fail_test ++ echo 'Removing test failure flag file for compile_016' +Removing test failure flag file for compile_016 ++ [[ false == true ]] ++ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_016 ++ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_016.env ]] ++ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_016.env +++ export JOB_NR=129 +++ JOB_NR=129 +++ export COMPILE_NR=016 +++ COMPILE_NR=016 +++ export MACHINE_ID=cheyenne.intel +++ MACHINE_ID=cheyenne.intel +++ export RT_COMPILER=intel +++ RT_COMPILER=intel +++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests +++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests +++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel +++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel +++ export SCHEDULER=pbs +++ SCHEDULER=pbs +++ export ACCNR=NRAL0032 +++ ACCNR=NRAL0032 +++ export QUEUE=regular +++ QUEUE=regular +++ export PARTITION= +++ PARTITION= +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log +++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log +++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel +++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel ++ source default_vars.sh +++ THRD=1 +++ INPES_atmaero=4 +++ JNPES_atmaero=8 +++ WPG_atmaero=6 +++ THRD_cpl_atmw=1 +++ INPES_cpl_atmw=3 +++ JNPES_cpl_atmw=8 +++ WPG_cpl_atmw=6 +++ WAV_tasks_cpl_atmw=30 +++ WAV_thrds_cpl_atmw=1 +++ THRD_cpl_c48=1 +++ INPES_cpl_c48=1 +++ JNPES_cpl_c48=1 +++ WPG_cpl_c48=6 +++ OCN_tasks_cpl_c48=4 +++ ICE_tasks_cpl_c48=4 +++ THRD_cpl_dflt=1 +++ INPES_cpl_dflt=3 +++ JNPES_cpl_dflt=8 +++ WPG_cpl_dflt=6 +++ OCN_tasks_cpl_dflt=20 +++ ICE_tasks_cpl_dflt=10 +++ WAV_tasks_cpl_dflt=20 +++ THRD_cpl_thrd=2 +++ INPES_cpl_thrd=3 +++ JNPES_cpl_thrd=4 +++ WPG_cpl_thrd=6 +++ OCN_tasks_cpl_thrd=20 +++ OCN_thrds_cpl_thrd=1 +++ ICE_tasks_cpl_thrd=10 +++ ICE_thrds_cpl_thrd=1 +++ WAV_tasks_cpl_thrd=12 +++ WAV_thrds_cpl_thrd=2 +++ THRD_cpl_dcmp=1 +++ INPES_cpl_dcmp=4 +++ JNPES_cpl_dcmp=6 +++ WPG_cpl_dcmp=6 +++ OCN_tasks_cpl_dcmp=20 +++ ICE_tasks_cpl_dcmp=10 +++ WAV_tasks_cpl_dcmp=20 +++ THRD_cpl_mpi=1 +++ INPES_cpl_mpi=4 +++ JNPES_cpl_mpi=8 +++ WPG_cpl_mpi=6 +++ OCN_tasks_cpl_mpi=34 +++ ICE_tasks_cpl_mpi=20 +++ WAV_tasks_cpl_mpi=28 +++ THRD_cpl_bmrk=2 +++ INPES_cpl_bmrk=8 +++ JNPES_cpl_bmrk=8 +++ WPG_cpl_bmrk=48 +++ OCN_tasks_cpl_bmrk=120 +++ OCN_thrds_cpl_bmrk=1 +++ ICE_tasks_cpl_bmrk=48 +++ ICE_thrds_cpl_bmrk=1 +++ WAV_tasks_cpl_bmrk=80 +++ WAV_thrds_cpl_bmrk=2 +++ THRD_cpl_c192=2 +++ INPES_cpl_c192=6 +++ JNPES_cpl_c192=8 +++ WPG_cpl_c192=12 +++ OCN_tasks_cpl_c192=60 +++ ICE_tasks_cpl_c192=24 +++ WAV_tasks_cpl_c192=80 +++ ATM_compute_tasks_cdeps_100=12 +++ OCN_tasks_cdeps_100=16 +++ ICE_tasks_cdeps_100=12 +++ ATM_compute_tasks_cdeps_025=40 +++ OCN_tasks_cdeps_025=120 +++ ICE_tasks_cdeps_025=48 +++ INPES_aqm=33 +++ JNPES_aqm=8 +++ aqm_omp_num_threads=1 +++ atm_omp_num_threads=1 +++ chm_omp_num_threads=1 +++ ice_omp_num_threads=1 +++ lnd_omp_num_threads=1 +++ med_omp_num_threads=1 +++ ocn_omp_num_threads=1 +++ wav_omp_num_threads=1 +++ [[ cheyenne.intel = wcoss2.* ]] +++ [[ cheyenne.intel = acorn.* ]] +++ [[ cheyenne.intel = orion.* ]] +++ [[ cheyenne.intel = hera.* ]] +++ [[ cheyenne.intel = linux.* ]] +++ [[ cheyenne.intel = jet.* ]] +++ [[ cheyenne.intel = s4.* ]] +++ [[ cheyenne.intel = gaea.* ]] +++ [[ cheyenne.intel = cheyenne.* ]] +++ TPN=36 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ INPES_c384=8 +++ JNPES_c384=6 +++ THRD_c384=2 +++ INPES_c768=8 +++ JNPES_c768=16 +++ THRD_c768=2 +++ THRD_cpl_atmw_gdas=3 +++ INPES_cpl_atmw_gdas=6 +++ JNPES_cpl_atmw_gdas=8 +++ WPG_cpl_atmw_gdas=24 +++ WAV_tasks_atmw_gdas=264 +++ THRD_cpl_dflt=1 +++ INPES_cpl_dflt=6 +++ JNPES_cpl_dflt=8 +++ WPG_cpl_dflt=6 +++ OCN_tasks_cpl_dflt=20 +++ ICE_tasks_cpl_dflt=10 +++ WAV_tasks_cpl_dflt=20 +++ THRD_cpl_thrd=2 +++ INPES_cpl_thrd=6 +++ JNPES_cpl_thrd=4 +++ WPG_cpl_thrd=6 +++ OCN_tasks_cpl_thrd=20 +++ ICE_tasks_cpl_thrd=10 +++ WAV_tasks_cpl_thrd=20 +++ THRD_cpl_dcmp=1 +++ INPES_cpl_dcmp=4 +++ JNPES_cpl_dcmp=12 +++ WPG_cpl_dcmp=6 +++ OCN_tasks_cpl_dcmp=20 +++ ICE_tasks_cpl_dcmp=10 +++ WAV_tasks_cpl_dcmp=20 +++ THRD_cpl_mpi=1 +++ INPES_cpl_mpi=6 +++ JNPES_cpl_mpi=12 +++ WPG_cpl_mpi=6 +++ OCN_tasks_cpl_mpi=24 +++ ICE_tasks_cpl_mpi=12 +++ WAV_tasks_cpl_mpi=24 +++ THRD_cpl_bmrk=2 +++ INPES_cpl_bmrk=12 +++ JNPES_cpl_bmrk=8 +++ WPG_cpl_bmrk=48 +++ OCN_tasks_cpl_bmrk=120 +++ ICE_tasks_cpl_bmrk=48 +++ WAV_tasks_cpl_bmrk=100 +++ WLCLK_dflt=30 +++ export WLCLK=30 +++ WLCLK=30 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=016 ++ TEST_NR=016 ++ export JBNME=compile_016 ++ JBNME=compile_016 ++ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_016 ++ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_016 +++ date +%s ++ echo -n 'compile_016, 1681918653,' ++ source rt_utils.sh +++ set -eu +++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] +++ OPNREQ_TEST=false +++ qsub_id=0 +++ slurm_id=0 +++ bsub_id=0 ++ source atparse.bash ++ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_016 ++ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_016 ++ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_016 ++ [[ pbs = \s\l\u\r\m ]] ++ [[ pbs = \l\s\f ]] ++ [[ pbs = \p\b\s ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +Job id 9506996 +TEST 016 compile is waiting to enter the queue +TEST 016 compile is submitted +1 min. TEST 016 compile is waiting in a queue, status: Q jobid 9506996 +2 min. TEST 016 compile is waiting in a queue, status: Q jobid 9506996 +3 min. TEST 016 compile is running, status: R jobid 9506996 +4 min. TEST 016 compile is running, status: R jobid 9506996 +5 min. TEST 016 compile is running, status: R jobid 9506996 +6 min. TEST 016 compile is running, status: R jobid 9506996 +7 min. TEST 016 compile is running, status: R jobid 9506996 +8 min. TEST 016 compile is running, status: R jobid 9506996 +9 min. TEST 016 compile is running, status: R jobid 9506996 +10 min. TEST 016 compile is running, status: R jobid 9506996 +11 min. TEST 016 compile is running, status: R jobid 9506996 +12 min. TEST 016 compile is running, status: R jobid 9506996 +13 min. TEST 016 compile is running, status: R jobid 9506996 +14 min. TEST 016 compile is running, status: R jobid 9506996 +15 min. TEST 016 compile is running, status: R jobid 9506996 +16 min. TEST 016 compile is running, status: R jobid 9506996 +17 min. TEST 016 compile is running, status: R jobid 9506996 +qstat: 9506996.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information +qstat: 9506996.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information +18 min. TEST 016 compile is finished, status: - jobid 9506996 ++ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_016.exe +-rwxr-xr-x 1 jongkim ncar 272728712 Apr 19 15:53 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_016.exe ++ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_016/compile_016_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel ++ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_016/job_timestamp.txt ++ remove_fail_test ++ echo 'Removing test failure flag file for compile_016' +Removing test failure flag file for compile_016 ++ [[ false == true ]] ++ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_016 +++ date +%s ++ echo ' 1681919689, 1' ++ elapsed=1036 ++ echo 'Elapsed time 1036 seconds. Compile 016' +Elapsed time 1036 seconds. Compile 016 ++ '[' 0 -eq 0 ']' +Compile 016 elapsed time 863 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release ++ echo PID=19839 +PID=19839 ++ SECONDS=0 ++ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT ++ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT ++ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM ++ [[ 4 != 4 ]] ++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 ++ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 ++ export 'MAKE_OPT=-DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON' ++ MAKE_OPT='-DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON' ++ export COMPILE_NR=017 ++ COMPILE_NR=017 ++ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ OPNREQ_TEST=false ++ remove_fail_test ++ echo 'Removing test failure flag file for compile_017' +Removing test failure flag file for compile_017 ++ [[ false == true ]] ++ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_017 ++ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_017.env ]] ++ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_017.env +++ export JOB_NR=138 +++ JOB_NR=138 +++ export COMPILE_NR=017 +++ COMPILE_NR=017 +++ export MACHINE_ID=cheyenne.intel +++ MACHINE_ID=cheyenne.intel +++ export RT_COMPILER=intel +++ RT_COMPILER=intel +++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests +++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests +++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel +++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel +++ export SCHEDULER=pbs +++ SCHEDULER=pbs +++ export ACCNR=NRAL0032 +++ ACCNR=NRAL0032 +++ export QUEUE=regular +++ QUEUE=regular +++ export PARTITION= +++ PARTITION= +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log +++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log +++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel +++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel ++ source default_vars.sh +++ THRD=1 +++ INPES_atmaero=4 +++ JNPES_atmaero=8 +++ WPG_atmaero=6 +++ THRD_cpl_atmw=1 +++ INPES_cpl_atmw=3 +++ JNPES_cpl_atmw=8 +++ WPG_cpl_atmw=6 +++ WAV_tasks_cpl_atmw=30 +++ WAV_thrds_cpl_atmw=1 +++ THRD_cpl_c48=1 +++ INPES_cpl_c48=1 +++ JNPES_cpl_c48=1 +++ WPG_cpl_c48=6 +++ OCN_tasks_cpl_c48=4 +++ ICE_tasks_cpl_c48=4 +++ THRD_cpl_dflt=1 +++ INPES_cpl_dflt=3 +++ JNPES_cpl_dflt=8 +++ WPG_cpl_dflt=6 +++ OCN_tasks_cpl_dflt=20 +++ ICE_tasks_cpl_dflt=10 +++ WAV_tasks_cpl_dflt=20 +++ THRD_cpl_thrd=2 +++ INPES_cpl_thrd=3 +++ JNPES_cpl_thrd=4 +++ WPG_cpl_thrd=6 +++ OCN_tasks_cpl_thrd=20 +++ OCN_thrds_cpl_thrd=1 +++ ICE_tasks_cpl_thrd=10 +++ ICE_thrds_cpl_thrd=1 +++ WAV_tasks_cpl_thrd=12 +++ WAV_thrds_cpl_thrd=2 +++ THRD_cpl_dcmp=1 +++ INPES_cpl_dcmp=4 +++ JNPES_cpl_dcmp=6 +++ WPG_cpl_dcmp=6 +++ OCN_tasks_cpl_dcmp=20 +++ ICE_tasks_cpl_dcmp=10 +++ WAV_tasks_cpl_dcmp=20 +++ THRD_cpl_mpi=1 +++ INPES_cpl_mpi=4 +++ JNPES_cpl_mpi=8 +++ WPG_cpl_mpi=6 +++ OCN_tasks_cpl_mpi=34 +++ ICE_tasks_cpl_mpi=20 +++ WAV_tasks_cpl_mpi=28 +++ THRD_cpl_bmrk=2 +++ INPES_cpl_bmrk=8 +++ JNPES_cpl_bmrk=8 +++ WPG_cpl_bmrk=48 +++ OCN_tasks_cpl_bmrk=120 +++ OCN_thrds_cpl_bmrk=1 +++ ICE_tasks_cpl_bmrk=48 +++ ICE_thrds_cpl_bmrk=1 +++ WAV_tasks_cpl_bmrk=80 +++ WAV_thrds_cpl_bmrk=2 +++ THRD_cpl_c192=2 +++ INPES_cpl_c192=6 +++ JNPES_cpl_c192=8 +++ WPG_cpl_c192=12 +++ OCN_tasks_cpl_c192=60 +++ ICE_tasks_cpl_c192=24 +++ WAV_tasks_cpl_c192=80 +++ ATM_compute_tasks_cdeps_100=12 +++ OCN_tasks_cdeps_100=16 +++ ICE_tasks_cdeps_100=12 +++ ATM_compute_tasks_cdeps_025=40 +++ OCN_tasks_cdeps_025=120 +++ ICE_tasks_cdeps_025=48 +++ INPES_aqm=33 +++ JNPES_aqm=8 +++ aqm_omp_num_threads=1 +++ atm_omp_num_threads=1 +++ chm_omp_num_threads=1 +++ ice_omp_num_threads=1 +++ lnd_omp_num_threads=1 +++ med_omp_num_threads=1 +++ ocn_omp_num_threads=1 +++ wav_omp_num_threads=1 +++ [[ cheyenne.intel = wcoss2.* ]] +++ [[ cheyenne.intel = acorn.* ]] +++ [[ cheyenne.intel = orion.* ]] +++ [[ cheyenne.intel = hera.* ]] +++ [[ cheyenne.intel = linux.* ]] +++ [[ cheyenne.intel = jet.* ]] +++ [[ cheyenne.intel = s4.* ]] +++ [[ cheyenne.intel = gaea.* ]] +++ [[ cheyenne.intel = cheyenne.* ]] +++ TPN=36 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ INPES_c384=8 +++ JNPES_c384=6 +++ THRD_c384=2 +++ INPES_c768=8 +++ JNPES_c768=16 +++ THRD_c768=2 +++ THRD_cpl_atmw_gdas=3 +++ INPES_cpl_atmw_gdas=6 +++ JNPES_cpl_atmw_gdas=8 +++ WPG_cpl_atmw_gdas=24 +++ WAV_tasks_atmw_gdas=264 +++ THRD_cpl_dflt=1 +++ INPES_cpl_dflt=6 +++ JNPES_cpl_dflt=8 +++ WPG_cpl_dflt=6 +++ OCN_tasks_cpl_dflt=20 +++ ICE_tasks_cpl_dflt=10 +++ WAV_tasks_cpl_dflt=20 +++ THRD_cpl_thrd=2 +++ INPES_cpl_thrd=6 +++ JNPES_cpl_thrd=4 +++ WPG_cpl_thrd=6 +++ OCN_tasks_cpl_thrd=20 +++ ICE_tasks_cpl_thrd=10 +++ WAV_tasks_cpl_thrd=20 +++ THRD_cpl_dcmp=1 +++ INPES_cpl_dcmp=4 +++ JNPES_cpl_dcmp=12 +++ WPG_cpl_dcmp=6 +++ OCN_tasks_cpl_dcmp=20 +++ ICE_tasks_cpl_dcmp=10 +++ WAV_tasks_cpl_dcmp=20 +++ THRD_cpl_mpi=1 +++ INPES_cpl_mpi=6 +++ JNPES_cpl_mpi=12 +++ WPG_cpl_mpi=6 +++ OCN_tasks_cpl_mpi=24 +++ ICE_tasks_cpl_mpi=12 +++ WAV_tasks_cpl_mpi=24 +++ THRD_cpl_bmrk=2 +++ INPES_cpl_bmrk=12 +++ JNPES_cpl_bmrk=8 +++ WPG_cpl_bmrk=48 +++ OCN_tasks_cpl_bmrk=120 +++ ICE_tasks_cpl_bmrk=48 +++ WAV_tasks_cpl_bmrk=100 +++ WLCLK_dflt=30 +++ export WLCLK=30 +++ WLCLK=30 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=017 ++ TEST_NR=017 ++ export JBNME=compile_017 ++ JBNME=compile_017 ++ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_017 ++ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_017 +++ date +%s ++ echo -n 'compile_017, 1681918902,' ++ source rt_utils.sh +++ set -eu +++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] +++ OPNREQ_TEST=false +++ qsub_id=0 +++ slurm_id=0 +++ bsub_id=0 ++ source atparse.bash ++ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_017 ++ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_017 ++ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_017 ++ [[ pbs = \s\l\u\r\m ]] ++ [[ pbs = \l\s\f ]] ++ [[ pbs = \p\b\s ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +Job id 9507030 +TEST 017 compile is waiting to enter the queue +TEST 017 compile is submitted +1 min. TEST 017 compile is waiting in a queue, status: Q jobid 9507030 +2 min. TEST 017 compile is waiting in a queue, status: Q jobid 9507030 +3 min. TEST 017 compile is running, status: R jobid 9507030 +4 min. TEST 017 compile is running, status: R jobid 9507030 +5 min. TEST 017 compile is running, status: R jobid 9507030 +6 min. TEST 017 compile is running, status: R jobid 9507030 +7 min. TEST 017 compile is running, status: R jobid 9507030 +8 min. TEST 017 compile is running, status: R jobid 9507030 +9 min. TEST 017 compile is running, status: R jobid 9507030 +10 min. TEST 017 compile is running, status: R jobid 9507030 +11 min. TEST 017 compile is running, status: R jobid 9507030 +12 min. TEST 017 compile is running, status: R jobid 9507030 +13 min. TEST 017 compile is running, status: R jobid 9507030 +14 min. TEST 017 compile is running, status: R jobid 9507030 +15 min. TEST 017 compile is running, status: R jobid 9507030 +16 min. TEST 017 compile is running, status: R jobid 9507030 +qstat: 9507030.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information +qstat: 9507030.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information +17 min. TEST 017 compile is finished, status: - jobid 9507030 ++ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_017.exe +-rwxr-xr-x 1 jongkim ncar 272901872 Apr 19 15:57 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_017.exe ++ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_017/compile_017_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel ++ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_017/job_timestamp.txt ++ remove_fail_test ++ echo 'Removing test failure flag file for compile_017' +Removing test failure flag file for compile_017 ++ [[ false == true ]] ++ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_017 +++ date +%s ++ echo ' 1681919882, 1' ++ elapsed=980 ++ echo 'Elapsed time 980 seconds. Compile 017' +Elapsed time 980 seconds. Compile 017 ++ '[' 0 -eq 0 ']' +Compile 017 elapsed time 846 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release ++ echo PID=19838 +PID=19838 ++ SECONDS=0 ++ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT ++ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT ++ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM ++ [[ 4 != 4 ]] ++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 ++ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 ++ export 'MAKE_OPT=-DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON' ++ MAKE_OPT='-DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON' ++ export COMPILE_NR=018 ++ COMPILE_NR=018 ++ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ OPNREQ_TEST=false ++ remove_fail_test ++ echo 'Removing test failure flag file for compile_018' +Removing test failure flag file for compile_018 ++ [[ false == true ]] ++ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_018 ++ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_018.env ]] ++ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_018.env +++ export JOB_NR=140 +++ JOB_NR=140 +++ export COMPILE_NR=018 +++ COMPILE_NR=018 +++ export MACHINE_ID=cheyenne.intel +++ MACHINE_ID=cheyenne.intel +++ export RT_COMPILER=intel +++ RT_COMPILER=intel +++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests +++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests +++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel +++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel +++ export SCHEDULER=pbs +++ SCHEDULER=pbs +++ export ACCNR=NRAL0032 +++ ACCNR=NRAL0032 +++ export QUEUE=regular +++ QUEUE=regular +++ export PARTITION= +++ PARTITION= +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log +++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log +++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel +++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel ++ source default_vars.sh +++ THRD=1 +++ INPES_atmaero=4 +++ JNPES_atmaero=8 +++ WPG_atmaero=6 +++ THRD_cpl_atmw=1 +++ INPES_cpl_atmw=3 +++ JNPES_cpl_atmw=8 +++ WPG_cpl_atmw=6 +++ WAV_tasks_cpl_atmw=30 +++ WAV_thrds_cpl_atmw=1 +++ THRD_cpl_c48=1 +++ INPES_cpl_c48=1 +++ JNPES_cpl_c48=1 +++ WPG_cpl_c48=6 +++ OCN_tasks_cpl_c48=4 +++ ICE_tasks_cpl_c48=4 +++ THRD_cpl_dflt=1 +++ INPES_cpl_dflt=3 +++ JNPES_cpl_dflt=8 +++ WPG_cpl_dflt=6 +++ OCN_tasks_cpl_dflt=20 +++ ICE_tasks_cpl_dflt=10 +++ WAV_tasks_cpl_dflt=20 +++ THRD_cpl_thrd=2 +++ INPES_cpl_thrd=3 +++ JNPES_cpl_thrd=4 +++ WPG_cpl_thrd=6 +++ OCN_tasks_cpl_thrd=20 +++ OCN_thrds_cpl_thrd=1 +++ ICE_tasks_cpl_thrd=10 +++ ICE_thrds_cpl_thrd=1 +++ WAV_tasks_cpl_thrd=12 +++ WAV_thrds_cpl_thrd=2 +++ THRD_cpl_dcmp=1 +++ INPES_cpl_dcmp=4 +++ JNPES_cpl_dcmp=6 +++ WPG_cpl_dcmp=6 +++ OCN_tasks_cpl_dcmp=20 +++ ICE_tasks_cpl_dcmp=10 +++ WAV_tasks_cpl_dcmp=20 +++ THRD_cpl_mpi=1 +++ INPES_cpl_mpi=4 +++ JNPES_cpl_mpi=8 +++ WPG_cpl_mpi=6 +++ OCN_tasks_cpl_mpi=34 +++ ICE_tasks_cpl_mpi=20 +++ WAV_tasks_cpl_mpi=28 +++ THRD_cpl_bmrk=2 +++ INPES_cpl_bmrk=8 +++ JNPES_cpl_bmrk=8 +++ WPG_cpl_bmrk=48 +++ OCN_tasks_cpl_bmrk=120 +++ OCN_thrds_cpl_bmrk=1 +++ ICE_tasks_cpl_bmrk=48 +++ ICE_thrds_cpl_bmrk=1 +++ WAV_tasks_cpl_bmrk=80 +++ WAV_thrds_cpl_bmrk=2 +++ THRD_cpl_c192=2 +++ INPES_cpl_c192=6 +++ JNPES_cpl_c192=8 +++ WPG_cpl_c192=12 +++ OCN_tasks_cpl_c192=60 +++ ICE_tasks_cpl_c192=24 +++ WAV_tasks_cpl_c192=80 +++ ATM_compute_tasks_cdeps_100=12 +++ OCN_tasks_cdeps_100=16 +++ ICE_tasks_cdeps_100=12 +++ ATM_compute_tasks_cdeps_025=40 +++ OCN_tasks_cdeps_025=120 +++ ICE_tasks_cdeps_025=48 +++ INPES_aqm=33 +++ JNPES_aqm=8 +++ aqm_omp_num_threads=1 +++ atm_omp_num_threads=1 +++ chm_omp_num_threads=1 +++ ice_omp_num_threads=1 +++ lnd_omp_num_threads=1 +++ med_omp_num_threads=1 +++ ocn_omp_num_threads=1 +++ wav_omp_num_threads=1 +++ [[ cheyenne.intel = wcoss2.* ]] +++ [[ cheyenne.intel = acorn.* ]] +++ [[ cheyenne.intel = orion.* ]] +++ [[ cheyenne.intel = hera.* ]] +++ [[ cheyenne.intel = linux.* ]] +++ [[ cheyenne.intel = jet.* ]] +++ [[ cheyenne.intel = s4.* ]] +++ [[ cheyenne.intel = gaea.* ]] +++ [[ cheyenne.intel = cheyenne.* ]] +++ TPN=36 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ INPES_c384=8 +++ JNPES_c384=6 +++ THRD_c384=2 +++ INPES_c768=8 +++ JNPES_c768=16 +++ THRD_c768=2 +++ THRD_cpl_atmw_gdas=3 +++ INPES_cpl_atmw_gdas=6 +++ JNPES_cpl_atmw_gdas=8 +++ WPG_cpl_atmw_gdas=24 +++ WAV_tasks_atmw_gdas=264 +++ THRD_cpl_dflt=1 +++ INPES_cpl_dflt=6 +++ JNPES_cpl_dflt=8 +++ WPG_cpl_dflt=6 +++ OCN_tasks_cpl_dflt=20 +++ ICE_tasks_cpl_dflt=10 +++ WAV_tasks_cpl_dflt=20 +++ THRD_cpl_thrd=2 +++ INPES_cpl_thrd=6 +++ JNPES_cpl_thrd=4 +++ WPG_cpl_thrd=6 +++ OCN_tasks_cpl_thrd=20 +++ ICE_tasks_cpl_thrd=10 +++ WAV_tasks_cpl_thrd=20 +++ THRD_cpl_dcmp=1 +++ INPES_cpl_dcmp=4 +++ JNPES_cpl_dcmp=12 +++ WPG_cpl_dcmp=6 +++ OCN_tasks_cpl_dcmp=20 +++ ICE_tasks_cpl_dcmp=10 +++ WAV_tasks_cpl_dcmp=20 +++ THRD_cpl_mpi=1 +++ INPES_cpl_mpi=6 +++ JNPES_cpl_mpi=12 +++ WPG_cpl_mpi=6 +++ OCN_tasks_cpl_mpi=24 +++ ICE_tasks_cpl_mpi=12 +++ WAV_tasks_cpl_mpi=24 +++ THRD_cpl_bmrk=2 +++ INPES_cpl_bmrk=12 +++ JNPES_cpl_bmrk=8 +++ WPG_cpl_bmrk=48 +++ OCN_tasks_cpl_bmrk=120 +++ ICE_tasks_cpl_bmrk=48 +++ WAV_tasks_cpl_bmrk=100 +++ WLCLK_dflt=30 +++ export WLCLK=30 +++ WLCLK=30 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=018 ++ TEST_NR=018 ++ export JBNME=compile_018 ++ JBNME=compile_018 ++ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_018 ++ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_018 +++ date +%s ++ echo -n 'compile_018, 1681918902,' ++ source rt_utils.sh +++ set -eu +++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] +++ OPNREQ_TEST=false +++ qsub_id=0 +++ slurm_id=0 +++ bsub_id=0 ++ source atparse.bash ++ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_018 ++ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_018 ++ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_018 ++ [[ pbs = \s\l\u\r\m ]] ++ [[ pbs = \l\s\f ]] ++ [[ pbs = \p\b\s ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +Job id 9507031 +TEST 018 compile is waiting to enter the queue +TEST 018 compile is submitted +1 min. TEST 018 compile is waiting in a queue, status: Q jobid 9507031 +2 min. TEST 018 compile is waiting in a queue, status: Q jobid 9507031 +3 min. TEST 018 compile is running, status: R jobid 9507031 +4 min. TEST 018 compile is running, status: R jobid 9507031 +5 min. TEST 018 compile is running, status: R jobid 9507031 +6 min. TEST 018 compile is running, status: R jobid 9507031 +qstat: 9507031.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information +qstat: 9507031.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information +7 min. TEST 018 compile is finished, status: - jobid 9507031 ++ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_018.exe +-rwxr-xr-x 1 jongkim ncar 497104040 Apr 19 15:47 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_018.exe ++ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_018/compile_018_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel ++ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_018/job_timestamp.txt ++ remove_fail_test ++ echo 'Removing test failure flag file for compile_018' +Removing test failure flag file for compile_018 ++ [[ false == true ]] ++ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_018 +++ date +%s ++ echo ' 1681919270, 1' ++ elapsed=368 ++ echo 'Elapsed time 368 seconds. Compile 018' +Elapsed time 368 seconds. Compile 018 ++ '[' 0 -eq 0 ']' +Compile 018 elapsed time 277 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug ++ echo PID=19840 +PID=19840 ++ SECONDS=0 ++ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT ++ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT ++ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM ++ [[ 4 != 4 ]] ++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 ++ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 ++ export 'MAKE_OPT=-DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON' ++ MAKE_OPT='-DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON' ++ export COMPILE_NR=019 ++ COMPILE_NR=019 ++ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ OPNREQ_TEST=false ++ remove_fail_test ++ echo 'Removing test failure flag file for compile_019' +Removing test failure flag file for compile_019 ++ [[ false == true ]] ++ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_019 ++ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_019.env ]] ++ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_019.env +++ export JOB_NR=143 +++ JOB_NR=143 +++ export COMPILE_NR=019 +++ COMPILE_NR=019 +++ export MACHINE_ID=cheyenne.intel +++ MACHINE_ID=cheyenne.intel +++ export RT_COMPILER=intel +++ RT_COMPILER=intel +++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests +++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests +++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel +++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel +++ export SCHEDULER=pbs +++ SCHEDULER=pbs +++ export ACCNR=NRAL0032 +++ ACCNR=NRAL0032 +++ export QUEUE=regular +++ QUEUE=regular +++ export PARTITION= +++ PARTITION= +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log +++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log +++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel +++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel ++ source default_vars.sh +++ THRD=1 +++ INPES_atmaero=4 +++ JNPES_atmaero=8 +++ WPG_atmaero=6 +++ THRD_cpl_atmw=1 +++ INPES_cpl_atmw=3 +++ JNPES_cpl_atmw=8 +++ WPG_cpl_atmw=6 +++ WAV_tasks_cpl_atmw=30 +++ WAV_thrds_cpl_atmw=1 +++ THRD_cpl_c48=1 +++ INPES_cpl_c48=1 +++ JNPES_cpl_c48=1 +++ WPG_cpl_c48=6 +++ OCN_tasks_cpl_c48=4 +++ ICE_tasks_cpl_c48=4 +++ THRD_cpl_dflt=1 +++ INPES_cpl_dflt=3 +++ JNPES_cpl_dflt=8 +++ WPG_cpl_dflt=6 +++ OCN_tasks_cpl_dflt=20 +++ ICE_tasks_cpl_dflt=10 +++ WAV_tasks_cpl_dflt=20 +++ THRD_cpl_thrd=2 +++ INPES_cpl_thrd=3 +++ JNPES_cpl_thrd=4 +++ WPG_cpl_thrd=6 +++ OCN_tasks_cpl_thrd=20 +++ OCN_thrds_cpl_thrd=1 +++ ICE_tasks_cpl_thrd=10 +++ ICE_thrds_cpl_thrd=1 +++ WAV_tasks_cpl_thrd=12 +++ WAV_thrds_cpl_thrd=2 +++ THRD_cpl_dcmp=1 +++ INPES_cpl_dcmp=4 +++ JNPES_cpl_dcmp=6 +++ WPG_cpl_dcmp=6 +++ OCN_tasks_cpl_dcmp=20 +++ ICE_tasks_cpl_dcmp=10 +++ WAV_tasks_cpl_dcmp=20 +++ THRD_cpl_mpi=1 +++ INPES_cpl_mpi=4 +++ JNPES_cpl_mpi=8 +++ WPG_cpl_mpi=6 +++ OCN_tasks_cpl_mpi=34 +++ ICE_tasks_cpl_mpi=20 +++ WAV_tasks_cpl_mpi=28 +++ THRD_cpl_bmrk=2 +++ INPES_cpl_bmrk=8 +++ JNPES_cpl_bmrk=8 +++ WPG_cpl_bmrk=48 +++ OCN_tasks_cpl_bmrk=120 +++ OCN_thrds_cpl_bmrk=1 +++ ICE_tasks_cpl_bmrk=48 +++ ICE_thrds_cpl_bmrk=1 +++ WAV_tasks_cpl_bmrk=80 +++ WAV_thrds_cpl_bmrk=2 +++ THRD_cpl_c192=2 +++ INPES_cpl_c192=6 +++ JNPES_cpl_c192=8 +++ WPG_cpl_c192=12 +++ OCN_tasks_cpl_c192=60 +++ ICE_tasks_cpl_c192=24 +++ WAV_tasks_cpl_c192=80 +++ ATM_compute_tasks_cdeps_100=12 +++ OCN_tasks_cdeps_100=16 +++ ICE_tasks_cdeps_100=12 +++ ATM_compute_tasks_cdeps_025=40 +++ OCN_tasks_cdeps_025=120 +++ ICE_tasks_cdeps_025=48 +++ INPES_aqm=33 +++ JNPES_aqm=8 +++ aqm_omp_num_threads=1 +++ atm_omp_num_threads=1 +++ chm_omp_num_threads=1 +++ ice_omp_num_threads=1 +++ lnd_omp_num_threads=1 +++ med_omp_num_threads=1 +++ ocn_omp_num_threads=1 +++ wav_omp_num_threads=1 +++ [[ cheyenne.intel = wcoss2.* ]] +++ [[ cheyenne.intel = acorn.* ]] +++ [[ cheyenne.intel = orion.* ]] +++ [[ cheyenne.intel = hera.* ]] +++ [[ cheyenne.intel = linux.* ]] +++ [[ cheyenne.intel = jet.* ]] +++ [[ cheyenne.intel = s4.* ]] +++ [[ cheyenne.intel = gaea.* ]] +++ [[ cheyenne.intel = cheyenne.* ]] +++ TPN=36 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ INPES_c384=8 +++ JNPES_c384=6 +++ THRD_c384=2 +++ INPES_c768=8 +++ JNPES_c768=16 +++ THRD_c768=2 +++ THRD_cpl_atmw_gdas=3 +++ INPES_cpl_atmw_gdas=6 +++ JNPES_cpl_atmw_gdas=8 +++ WPG_cpl_atmw_gdas=24 +++ WAV_tasks_atmw_gdas=264 +++ THRD_cpl_dflt=1 +++ INPES_cpl_dflt=6 +++ JNPES_cpl_dflt=8 +++ WPG_cpl_dflt=6 +++ OCN_tasks_cpl_dflt=20 +++ ICE_tasks_cpl_dflt=10 +++ WAV_tasks_cpl_dflt=20 +++ THRD_cpl_thrd=2 +++ INPES_cpl_thrd=6 +++ JNPES_cpl_thrd=4 +++ WPG_cpl_thrd=6 +++ OCN_tasks_cpl_thrd=20 +++ ICE_tasks_cpl_thrd=10 +++ WAV_tasks_cpl_thrd=20 +++ THRD_cpl_dcmp=1 +++ INPES_cpl_dcmp=4 +++ JNPES_cpl_dcmp=12 +++ WPG_cpl_dcmp=6 +++ OCN_tasks_cpl_dcmp=20 +++ ICE_tasks_cpl_dcmp=10 +++ WAV_tasks_cpl_dcmp=20 +++ THRD_cpl_mpi=1 +++ INPES_cpl_mpi=6 +++ JNPES_cpl_mpi=12 +++ WPG_cpl_mpi=6 +++ OCN_tasks_cpl_mpi=24 +++ ICE_tasks_cpl_mpi=12 +++ WAV_tasks_cpl_mpi=24 +++ THRD_cpl_bmrk=2 +++ INPES_cpl_bmrk=12 +++ JNPES_cpl_bmrk=8 +++ WPG_cpl_bmrk=48 +++ OCN_tasks_cpl_bmrk=120 +++ ICE_tasks_cpl_bmrk=48 +++ WAV_tasks_cpl_bmrk=100 +++ WLCLK_dflt=30 +++ export WLCLK=30 +++ WLCLK=30 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=019 ++ TEST_NR=019 ++ export JBNME=compile_019 ++ JBNME=compile_019 ++ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_019 ++ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_019 +++ date +%s ++ echo -n 'compile_019, 1681918902,' ++ source rt_utils.sh +++ set -eu +++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] +++ OPNREQ_TEST=false +++ qsub_id=0 +++ slurm_id=0 +++ bsub_id=0 ++ source atparse.bash ++ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_019 ++ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_019 ++ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_019 ++ [[ pbs = \s\l\u\r\m ]] ++ [[ pbs = \l\s\f ]] ++ [[ pbs = \p\b\s ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +Job id 9507032 +TEST 019 compile is waiting to enter the queue +TEST 019 compile is submitted +1 min. TEST 019 compile is waiting in a queue, status: Q jobid 9507032 +2 min. TEST 019 compile is waiting in a queue, status: Q jobid 9507032 +3 min. TEST 019 compile is running, status: R jobid 9507032 +4 min. TEST 019 compile is running, status: R jobid 9507032 +5 min. TEST 019 compile is running, status: R jobid 9507032 +6 min. TEST 019 compile is running, status: R jobid 9507032 +7 min. TEST 019 compile is running, status: R jobid 9507032 +8 min. TEST 019 compile is running, status: R jobid 9507032 +qstat: 9507032.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information +qstat: 9507032.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information +9 min. TEST 019 compile is finished, status: - jobid 9507032 ++ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_019.exe +-rwxr-xr-x 1 jongkim ncar 497150376 Apr 19 15:49 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_019.exe ++ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_019/compile_019_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel ++ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_019/job_timestamp.txt ++ remove_fail_test ++ echo 'Removing test failure flag file for compile_019' +Removing test failure flag file for compile_019 ++ [[ false == true ]] ++ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_019 +++ date +%s ++ echo ' 1681919392, 1' ++ elapsed=490 ++ echo 'Elapsed time 490 seconds. Compile 019' +Elapsed time 490 seconds. Compile 019 ++ '[' 0 -eq 0 ']' +Compile 019 elapsed time 345 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug ++ echo PID=23377 +PID=23377 ++ SECONDS=0 ++ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT ++ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT ++ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM ++ [[ 4 != 4 ]] ++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 ++ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 ++ export 'MAKE_OPT=-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' ++ MAKE_OPT='-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' ++ export COMPILE_NR=020 ++ COMPILE_NR=020 ++ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ OPNREQ_TEST=false ++ remove_fail_test ++ echo 'Removing test failure flag file for compile_020' +Removing test failure flag file for compile_020 ++ [[ false == true ]] ++ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_020 ++ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_020.env ]] ++ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_020.env +++ export JOB_NR=145 +++ JOB_NR=145 +++ export COMPILE_NR=020 +++ COMPILE_NR=020 +++ export MACHINE_ID=cheyenne.intel +++ MACHINE_ID=cheyenne.intel +++ export RT_COMPILER=intel +++ RT_COMPILER=intel +++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests +++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests +++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel +++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel +++ export SCHEDULER=pbs +++ SCHEDULER=pbs +++ export ACCNR=NRAL0032 +++ ACCNR=NRAL0032 +++ export QUEUE=regular +++ QUEUE=regular +++ export PARTITION= +++ PARTITION= +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log +++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log +++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel +++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel ++ source default_vars.sh +++ THRD=1 +++ INPES_atmaero=4 +++ JNPES_atmaero=8 +++ WPG_atmaero=6 +++ THRD_cpl_atmw=1 +++ INPES_cpl_atmw=3 +++ JNPES_cpl_atmw=8 +++ WPG_cpl_atmw=6 +++ WAV_tasks_cpl_atmw=30 +++ WAV_thrds_cpl_atmw=1 +++ THRD_cpl_c48=1 +++ INPES_cpl_c48=1 +++ JNPES_cpl_c48=1 +++ WPG_cpl_c48=6 +++ OCN_tasks_cpl_c48=4 +++ ICE_tasks_cpl_c48=4 +++ THRD_cpl_dflt=1 +++ INPES_cpl_dflt=3 +++ JNPES_cpl_dflt=8 +++ WPG_cpl_dflt=6 +++ OCN_tasks_cpl_dflt=20 +++ ICE_tasks_cpl_dflt=10 +++ WAV_tasks_cpl_dflt=20 +++ THRD_cpl_thrd=2 +++ INPES_cpl_thrd=3 +++ JNPES_cpl_thrd=4 +++ WPG_cpl_thrd=6 +++ OCN_tasks_cpl_thrd=20 +++ OCN_thrds_cpl_thrd=1 +++ ICE_tasks_cpl_thrd=10 +++ ICE_thrds_cpl_thrd=1 +++ WAV_tasks_cpl_thrd=12 +++ WAV_thrds_cpl_thrd=2 +++ THRD_cpl_dcmp=1 +++ INPES_cpl_dcmp=4 +++ JNPES_cpl_dcmp=6 +++ WPG_cpl_dcmp=6 +++ OCN_tasks_cpl_dcmp=20 +++ ICE_tasks_cpl_dcmp=10 +++ WAV_tasks_cpl_dcmp=20 +++ THRD_cpl_mpi=1 +++ INPES_cpl_mpi=4 +++ JNPES_cpl_mpi=8 +++ WPG_cpl_mpi=6 +++ OCN_tasks_cpl_mpi=34 +++ ICE_tasks_cpl_mpi=20 +++ WAV_tasks_cpl_mpi=28 +++ THRD_cpl_bmrk=2 +++ INPES_cpl_bmrk=8 +++ JNPES_cpl_bmrk=8 +++ WPG_cpl_bmrk=48 +++ OCN_tasks_cpl_bmrk=120 +++ OCN_thrds_cpl_bmrk=1 +++ ICE_tasks_cpl_bmrk=48 +++ ICE_thrds_cpl_bmrk=1 +++ WAV_tasks_cpl_bmrk=80 +++ WAV_thrds_cpl_bmrk=2 +++ THRD_cpl_c192=2 +++ INPES_cpl_c192=6 +++ JNPES_cpl_c192=8 +++ WPG_cpl_c192=12 +++ OCN_tasks_cpl_c192=60 +++ ICE_tasks_cpl_c192=24 +++ WAV_tasks_cpl_c192=80 +++ ATM_compute_tasks_cdeps_100=12 +++ OCN_tasks_cdeps_100=16 +++ ICE_tasks_cdeps_100=12 +++ ATM_compute_tasks_cdeps_025=40 +++ OCN_tasks_cdeps_025=120 +++ ICE_tasks_cdeps_025=48 +++ INPES_aqm=33 +++ JNPES_aqm=8 +++ aqm_omp_num_threads=1 +++ atm_omp_num_threads=1 +++ chm_omp_num_threads=1 +++ ice_omp_num_threads=1 +++ lnd_omp_num_threads=1 +++ med_omp_num_threads=1 +++ ocn_omp_num_threads=1 +++ wav_omp_num_threads=1 +++ [[ cheyenne.intel = wcoss2.* ]] +++ [[ cheyenne.intel = acorn.* ]] +++ [[ cheyenne.intel = orion.* ]] +++ [[ cheyenne.intel = hera.* ]] +++ [[ cheyenne.intel = linux.* ]] +++ [[ cheyenne.intel = jet.* ]] +++ [[ cheyenne.intel = s4.* ]] +++ [[ cheyenne.intel = gaea.* ]] +++ [[ cheyenne.intel = cheyenne.* ]] +++ TPN=36 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ INPES_c384=8 +++ JNPES_c384=6 +++ THRD_c384=2 +++ INPES_c768=8 +++ JNPES_c768=16 +++ THRD_c768=2 +++ THRD_cpl_atmw_gdas=3 +++ INPES_cpl_atmw_gdas=6 +++ JNPES_cpl_atmw_gdas=8 +++ WPG_cpl_atmw_gdas=24 +++ WAV_tasks_atmw_gdas=264 +++ THRD_cpl_dflt=1 +++ INPES_cpl_dflt=6 +++ JNPES_cpl_dflt=8 +++ WPG_cpl_dflt=6 +++ OCN_tasks_cpl_dflt=20 +++ ICE_tasks_cpl_dflt=10 +++ WAV_tasks_cpl_dflt=20 +++ THRD_cpl_thrd=2 +++ INPES_cpl_thrd=6 +++ JNPES_cpl_thrd=4 +++ WPG_cpl_thrd=6 +++ OCN_tasks_cpl_thrd=20 +++ ICE_tasks_cpl_thrd=10 +++ WAV_tasks_cpl_thrd=20 +++ THRD_cpl_dcmp=1 +++ INPES_cpl_dcmp=4 +++ JNPES_cpl_dcmp=12 +++ WPG_cpl_dcmp=6 +++ OCN_tasks_cpl_dcmp=20 +++ ICE_tasks_cpl_dcmp=10 +++ WAV_tasks_cpl_dcmp=20 +++ THRD_cpl_mpi=1 +++ INPES_cpl_mpi=6 +++ JNPES_cpl_mpi=12 +++ WPG_cpl_mpi=6 +++ OCN_tasks_cpl_mpi=24 +++ ICE_tasks_cpl_mpi=12 +++ WAV_tasks_cpl_mpi=24 +++ THRD_cpl_bmrk=2 +++ INPES_cpl_bmrk=12 +++ JNPES_cpl_bmrk=8 +++ WPG_cpl_bmrk=48 +++ OCN_tasks_cpl_bmrk=120 +++ ICE_tasks_cpl_bmrk=48 +++ WAV_tasks_cpl_bmrk=100 +++ WLCLK_dflt=30 +++ export WLCLK=30 +++ WLCLK=30 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=020 ++ TEST_NR=020 ++ export JBNME=compile_020 ++ JBNME=compile_020 ++ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_020 ++ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_020 +++ date +%s ++ echo -n 'compile_020, 1681918962,' ++ source rt_utils.sh +++ set -eu +++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] +++ OPNREQ_TEST=false +++ qsub_id=0 +++ slurm_id=0 +++ bsub_id=0 ++ source atparse.bash ++ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_020 ++ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_020 ++ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_020 ++ [[ pbs = \s\l\u\r\m ]] ++ [[ pbs = \l\s\f ]] ++ [[ pbs = \p\b\s ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +Job id 9507050 +TEST 020 compile is waiting to enter the queue +TEST 020 compile is submitted +1 min. TEST 020 compile is waiting in a queue, status: Q jobid 9507050 +2 min. TEST 020 compile is running, status: R jobid 9507050 +3 min. TEST 020 compile is running, status: R jobid 9507050 +4 min. TEST 020 compile is running, status: R jobid 9507050 +5 min. TEST 020 compile is running, status: R jobid 9507050 +6 min. TEST 020 compile is running, status: R jobid 9507050 +7 min. TEST 020 compile is running, status: R jobid 9507050 +8 min. TEST 020 compile is running, status: R jobid 9507050 +9 min. TEST 020 compile is running, status: R jobid 9507050 +10 min. TEST 020 compile is running, status: R jobid 9507050 +11 min. TEST 020 compile is running, status: R jobid 9507050 +12 min. TEST 020 compile is running, status: R jobid 9507050 +13 min. TEST 020 compile is running, status: R jobid 9507050 +14 min. TEST 020 compile is running, status: R jobid 9507050 +15 min. TEST 020 compile is running, status: R jobid 9507050 +16 min. TEST 020 compile is running, status: R jobid 9507050 +17 min. TEST 020 compile is running, status: R jobid 9507050 +18 min. TEST 020 compile is running, status: R jobid 9507050 +19 min. TEST 020 compile is running, status: R jobid 9507050 +20 min. TEST 020 compile is running, status: R jobid 9507050 +qstat: 9507050.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information +qstat: 9507050.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information +21 min. TEST 020 compile is finished, status: - jobid 9507050 ++ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_020.exe +-rwxr-xr-x 1 jongkim ncar 296056624 Apr 19 16:02 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_020.exe ++ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_020/compile_020_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel ++ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_020/job_timestamp.txt ++ remove_fail_test ++ echo 'Removing test failure flag file for compile_020' +Removing test failure flag file for compile_020 ++ [[ false == true ]] ++ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_020 +++ date +%s ++ echo ' 1681920188, 1' ++ elapsed=1226 ++ echo 'Elapsed time 1226 seconds. Compile 020' +Elapsed time 1226 seconds. Compile 020 ++ '[' 0 -eq 0 ']' +Compile 020 elapsed time 1146 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 ++ echo PID=23500 +PID=23500 ++ SECONDS=0 ++ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT ++ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT ++ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM ++ [[ 4 != 4 ]] ++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 ++ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 ++ export 'MAKE_OPT=-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 -DDEBUG=ON' ++ MAKE_OPT='-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 -DDEBUG=ON' ++ export COMPILE_NR=021 ++ COMPILE_NR=021 ++ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ OPNREQ_TEST=false ++ remove_fail_test ++ echo 'Removing test failure flag file for compile_021' +Removing test failure flag file for compile_021 ++ [[ false == true ]] ++ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_021 ++ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_021.env ]] ++ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_021.env +++ export JOB_NR=159 +++ JOB_NR=159 +++ export COMPILE_NR=021 +++ COMPILE_NR=021 +++ export MACHINE_ID=cheyenne.intel +++ MACHINE_ID=cheyenne.intel +++ export RT_COMPILER=intel +++ RT_COMPILER=intel +++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests +++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests +++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel +++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel +++ export SCHEDULER=pbs +++ SCHEDULER=pbs +++ export ACCNR=NRAL0032 +++ ACCNR=NRAL0032 +++ export QUEUE=regular +++ QUEUE=regular +++ export PARTITION= +++ PARTITION= +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log +++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log +++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel +++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel ++ source default_vars.sh +++ THRD=1 +++ INPES_atmaero=4 +++ JNPES_atmaero=8 +++ WPG_atmaero=6 +++ THRD_cpl_atmw=1 +++ INPES_cpl_atmw=3 +++ JNPES_cpl_atmw=8 +++ WPG_cpl_atmw=6 +++ WAV_tasks_cpl_atmw=30 +++ WAV_thrds_cpl_atmw=1 +++ THRD_cpl_c48=1 +++ INPES_cpl_c48=1 +++ JNPES_cpl_c48=1 +++ WPG_cpl_c48=6 +++ OCN_tasks_cpl_c48=4 +++ ICE_tasks_cpl_c48=4 +++ THRD_cpl_dflt=1 +++ INPES_cpl_dflt=3 +++ JNPES_cpl_dflt=8 +++ WPG_cpl_dflt=6 +++ OCN_tasks_cpl_dflt=20 +++ ICE_tasks_cpl_dflt=10 +++ WAV_tasks_cpl_dflt=20 +++ THRD_cpl_thrd=2 +++ INPES_cpl_thrd=3 +++ JNPES_cpl_thrd=4 +++ WPG_cpl_thrd=6 +++ OCN_tasks_cpl_thrd=20 +++ OCN_thrds_cpl_thrd=1 +++ ICE_tasks_cpl_thrd=10 +++ ICE_thrds_cpl_thrd=1 +++ WAV_tasks_cpl_thrd=12 +++ WAV_thrds_cpl_thrd=2 +++ THRD_cpl_dcmp=1 +++ INPES_cpl_dcmp=4 +++ JNPES_cpl_dcmp=6 +++ WPG_cpl_dcmp=6 +++ OCN_tasks_cpl_dcmp=20 +++ ICE_tasks_cpl_dcmp=10 +++ WAV_tasks_cpl_dcmp=20 +++ THRD_cpl_mpi=1 +++ INPES_cpl_mpi=4 +++ JNPES_cpl_mpi=8 +++ WPG_cpl_mpi=6 +++ OCN_tasks_cpl_mpi=34 +++ ICE_tasks_cpl_mpi=20 +++ WAV_tasks_cpl_mpi=28 +++ THRD_cpl_bmrk=2 +++ INPES_cpl_bmrk=8 +++ JNPES_cpl_bmrk=8 +++ WPG_cpl_bmrk=48 +++ OCN_tasks_cpl_bmrk=120 +++ OCN_thrds_cpl_bmrk=1 +++ ICE_tasks_cpl_bmrk=48 +++ ICE_thrds_cpl_bmrk=1 +++ WAV_tasks_cpl_bmrk=80 +++ WAV_thrds_cpl_bmrk=2 +++ THRD_cpl_c192=2 +++ INPES_cpl_c192=6 +++ JNPES_cpl_c192=8 +++ WPG_cpl_c192=12 +++ OCN_tasks_cpl_c192=60 +++ ICE_tasks_cpl_c192=24 +++ WAV_tasks_cpl_c192=80 +++ ATM_compute_tasks_cdeps_100=12 +++ OCN_tasks_cdeps_100=16 +++ ICE_tasks_cdeps_100=12 +++ ATM_compute_tasks_cdeps_025=40 +++ OCN_tasks_cdeps_025=120 +++ ICE_tasks_cdeps_025=48 +++ INPES_aqm=33 +++ JNPES_aqm=8 +++ aqm_omp_num_threads=1 +++ atm_omp_num_threads=1 +++ chm_omp_num_threads=1 +++ ice_omp_num_threads=1 +++ lnd_omp_num_threads=1 +++ med_omp_num_threads=1 +++ ocn_omp_num_threads=1 +++ wav_omp_num_threads=1 +++ [[ cheyenne.intel = wcoss2.* ]] +++ [[ cheyenne.intel = acorn.* ]] +++ [[ cheyenne.intel = orion.* ]] +++ [[ cheyenne.intel = hera.* ]] +++ [[ cheyenne.intel = linux.* ]] +++ [[ cheyenne.intel = jet.* ]] +++ [[ cheyenne.intel = s4.* ]] +++ [[ cheyenne.intel = gaea.* ]] +++ [[ cheyenne.intel = cheyenne.* ]] +++ TPN=36 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ INPES_c384=8 +++ JNPES_c384=6 +++ THRD_c384=2 +++ INPES_c768=8 +++ JNPES_c768=16 +++ THRD_c768=2 +++ THRD_cpl_atmw_gdas=3 +++ INPES_cpl_atmw_gdas=6 +++ JNPES_cpl_atmw_gdas=8 +++ WPG_cpl_atmw_gdas=24 +++ WAV_tasks_atmw_gdas=264 +++ THRD_cpl_dflt=1 +++ INPES_cpl_dflt=6 +++ JNPES_cpl_dflt=8 +++ WPG_cpl_dflt=6 +++ OCN_tasks_cpl_dflt=20 +++ ICE_tasks_cpl_dflt=10 +++ WAV_tasks_cpl_dflt=20 +++ THRD_cpl_thrd=2 +++ INPES_cpl_thrd=6 +++ JNPES_cpl_thrd=4 +++ WPG_cpl_thrd=6 +++ OCN_tasks_cpl_thrd=20 +++ ICE_tasks_cpl_thrd=10 +++ WAV_tasks_cpl_thrd=20 +++ THRD_cpl_dcmp=1 +++ INPES_cpl_dcmp=4 +++ JNPES_cpl_dcmp=12 +++ WPG_cpl_dcmp=6 +++ OCN_tasks_cpl_dcmp=20 +++ ICE_tasks_cpl_dcmp=10 +++ WAV_tasks_cpl_dcmp=20 +++ THRD_cpl_mpi=1 +++ INPES_cpl_mpi=6 +++ JNPES_cpl_mpi=12 +++ WPG_cpl_mpi=6 +++ OCN_tasks_cpl_mpi=24 +++ ICE_tasks_cpl_mpi=12 +++ WAV_tasks_cpl_mpi=24 +++ THRD_cpl_bmrk=2 +++ INPES_cpl_bmrk=12 +++ JNPES_cpl_bmrk=8 +++ WPG_cpl_bmrk=48 +++ OCN_tasks_cpl_bmrk=120 +++ ICE_tasks_cpl_bmrk=48 +++ WAV_tasks_cpl_bmrk=100 +++ WLCLK_dflt=30 +++ export WLCLK=30 +++ WLCLK=30 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=021 ++ TEST_NR=021 ++ export JBNME=compile_021 ++ JBNME=compile_021 ++ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_021 ++ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_021 +++ date +%s ++ echo -n 'compile_021, 1681918963,' ++ source rt_utils.sh +++ set -eu +++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] +++ OPNREQ_TEST=false +++ qsub_id=0 +++ slurm_id=0 +++ bsub_id=0 ++ source atparse.bash ++ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_021 ++ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_021 ++ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_021 ++ [[ pbs = \s\l\u\r\m ]] ++ [[ pbs = \l\s\f ]] ++ [[ pbs = \p\b\s ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +Job id 9507052 +TEST 021 compile is waiting to enter the queue +TEST 021 compile is submitted +1 min. TEST 021 compile is waiting in a queue, status: Q jobid 9507052 +2 min. TEST 021 compile is running, status: R jobid 9507052 +3 min. TEST 021 compile is running, status: R jobid 9507052 +4 min. TEST 021 compile is running, status: R jobid 9507052 +5 min. TEST 021 compile is running, status: R jobid 9507052 +6 min. TEST 021 compile is running, status: R jobid 9507052 +7 min. TEST 021 compile is running, status: R jobid 9507052 +qstat: 9507052.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information +qstat: 9507052.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information +8 min. TEST 021 compile is finished, status: - jobid 9507052 ++ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_021.exe +-rwxr-xr-x 1 jongkim ncar 687198528 Apr 19 15:49 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_021.exe ++ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_021/compile_021_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel ++ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_021/job_timestamp.txt ++ remove_fail_test ++ echo 'Removing test failure flag file for compile_021' +Removing test failure flag file for compile_021 ++ [[ false == true ]] ++ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_021 +++ date +%s ++ echo ' 1681919392, 1' ++ elapsed=429 ++ echo 'Elapsed time 429 seconds. Compile 021' +Elapsed time 429 seconds. Compile 021 ++ '[' 0 -eq 0 ']' +Compile 021 elapsed time 355 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug ++ echo PID=33333 +PID=33333 ++ SECONDS=0 ++ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT ++ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT ++ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM ++ [[ 4 != 4 ]] ++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 ++ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 ++ export 'MAKE_OPT=-DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON' ++ MAKE_OPT='-DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON' ++ export COMPILE_NR=022 ++ COMPILE_NR=022 ++ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ OPNREQ_TEST=false ++ remove_fail_test ++ echo 'Removing test failure flag file for compile_022' +Removing test failure flag file for compile_022 ++ [[ false == true ]] ++ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_022 ++ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_022.env ]] ++ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_022.env +++ export JOB_NR=161 +++ JOB_NR=161 +++ export COMPILE_NR=022 +++ COMPILE_NR=022 +++ export MACHINE_ID=cheyenne.intel +++ MACHINE_ID=cheyenne.intel +++ export RT_COMPILER=intel +++ RT_COMPILER=intel +++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests +++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests +++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel +++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel +++ export SCHEDULER=pbs +++ SCHEDULER=pbs +++ export ACCNR=NRAL0032 +++ ACCNR=NRAL0032 +++ export QUEUE=regular +++ QUEUE=regular +++ export PARTITION= +++ PARTITION= +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log +++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log +++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel +++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel ++ source default_vars.sh +++ THRD=1 +++ INPES_atmaero=4 +++ JNPES_atmaero=8 +++ WPG_atmaero=6 +++ THRD_cpl_atmw=1 +++ INPES_cpl_atmw=3 +++ JNPES_cpl_atmw=8 +++ WPG_cpl_atmw=6 +++ WAV_tasks_cpl_atmw=30 +++ WAV_thrds_cpl_atmw=1 +++ THRD_cpl_c48=1 +++ INPES_cpl_c48=1 +++ JNPES_cpl_c48=1 +++ WPG_cpl_c48=6 +++ OCN_tasks_cpl_c48=4 +++ ICE_tasks_cpl_c48=4 +++ THRD_cpl_dflt=1 +++ INPES_cpl_dflt=3 +++ JNPES_cpl_dflt=8 +++ WPG_cpl_dflt=6 +++ OCN_tasks_cpl_dflt=20 +++ ICE_tasks_cpl_dflt=10 +++ WAV_tasks_cpl_dflt=20 +++ THRD_cpl_thrd=2 +++ INPES_cpl_thrd=3 +++ JNPES_cpl_thrd=4 +++ WPG_cpl_thrd=6 +++ OCN_tasks_cpl_thrd=20 +++ OCN_thrds_cpl_thrd=1 +++ ICE_tasks_cpl_thrd=10 +++ ICE_thrds_cpl_thrd=1 +++ WAV_tasks_cpl_thrd=12 +++ WAV_thrds_cpl_thrd=2 +++ THRD_cpl_dcmp=1 +++ INPES_cpl_dcmp=4 +++ JNPES_cpl_dcmp=6 +++ WPG_cpl_dcmp=6 +++ OCN_tasks_cpl_dcmp=20 +++ ICE_tasks_cpl_dcmp=10 +++ WAV_tasks_cpl_dcmp=20 +++ THRD_cpl_mpi=1 +++ INPES_cpl_mpi=4 +++ JNPES_cpl_mpi=8 +++ WPG_cpl_mpi=6 +++ OCN_tasks_cpl_mpi=34 +++ ICE_tasks_cpl_mpi=20 +++ WAV_tasks_cpl_mpi=28 +++ THRD_cpl_bmrk=2 +++ INPES_cpl_bmrk=8 +++ JNPES_cpl_bmrk=8 +++ WPG_cpl_bmrk=48 +++ OCN_tasks_cpl_bmrk=120 +++ OCN_thrds_cpl_bmrk=1 +++ ICE_tasks_cpl_bmrk=48 +++ ICE_thrds_cpl_bmrk=1 +++ WAV_tasks_cpl_bmrk=80 +++ WAV_thrds_cpl_bmrk=2 +++ THRD_cpl_c192=2 +++ INPES_cpl_c192=6 +++ JNPES_cpl_c192=8 +++ WPG_cpl_c192=12 +++ OCN_tasks_cpl_c192=60 +++ ICE_tasks_cpl_c192=24 +++ WAV_tasks_cpl_c192=80 +++ ATM_compute_tasks_cdeps_100=12 +++ OCN_tasks_cdeps_100=16 +++ ICE_tasks_cdeps_100=12 +++ ATM_compute_tasks_cdeps_025=40 +++ OCN_tasks_cdeps_025=120 +++ ICE_tasks_cdeps_025=48 +++ INPES_aqm=33 +++ JNPES_aqm=8 +++ aqm_omp_num_threads=1 +++ atm_omp_num_threads=1 +++ chm_omp_num_threads=1 +++ ice_omp_num_threads=1 +++ lnd_omp_num_threads=1 +++ med_omp_num_threads=1 +++ ocn_omp_num_threads=1 +++ wav_omp_num_threads=1 +++ [[ cheyenne.intel = wcoss2.* ]] +++ [[ cheyenne.intel = acorn.* ]] +++ [[ cheyenne.intel = orion.* ]] +++ [[ cheyenne.intel = hera.* ]] +++ [[ cheyenne.intel = linux.* ]] +++ [[ cheyenne.intel = jet.* ]] +++ [[ cheyenne.intel = s4.* ]] +++ [[ cheyenne.intel = gaea.* ]] +++ [[ cheyenne.intel = cheyenne.* ]] +++ TPN=36 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ INPES_c384=8 +++ JNPES_c384=6 +++ THRD_c384=2 +++ INPES_c768=8 +++ JNPES_c768=16 +++ THRD_c768=2 +++ THRD_cpl_atmw_gdas=3 +++ INPES_cpl_atmw_gdas=6 +++ JNPES_cpl_atmw_gdas=8 +++ WPG_cpl_atmw_gdas=24 +++ WAV_tasks_atmw_gdas=264 +++ THRD_cpl_dflt=1 +++ INPES_cpl_dflt=6 +++ JNPES_cpl_dflt=8 +++ WPG_cpl_dflt=6 +++ OCN_tasks_cpl_dflt=20 +++ ICE_tasks_cpl_dflt=10 +++ WAV_tasks_cpl_dflt=20 +++ THRD_cpl_thrd=2 +++ INPES_cpl_thrd=6 +++ JNPES_cpl_thrd=4 +++ WPG_cpl_thrd=6 +++ OCN_tasks_cpl_thrd=20 +++ ICE_tasks_cpl_thrd=10 +++ WAV_tasks_cpl_thrd=20 +++ THRD_cpl_dcmp=1 +++ INPES_cpl_dcmp=4 +++ JNPES_cpl_dcmp=12 +++ WPG_cpl_dcmp=6 +++ OCN_tasks_cpl_dcmp=20 +++ ICE_tasks_cpl_dcmp=10 +++ WAV_tasks_cpl_dcmp=20 +++ THRD_cpl_mpi=1 +++ INPES_cpl_mpi=6 +++ JNPES_cpl_mpi=12 +++ WPG_cpl_mpi=6 +++ OCN_tasks_cpl_mpi=24 +++ ICE_tasks_cpl_mpi=12 +++ WAV_tasks_cpl_mpi=24 +++ THRD_cpl_bmrk=2 +++ INPES_cpl_bmrk=12 +++ JNPES_cpl_bmrk=8 +++ WPG_cpl_bmrk=48 +++ OCN_tasks_cpl_bmrk=120 +++ ICE_tasks_cpl_bmrk=48 +++ WAV_tasks_cpl_bmrk=100 +++ WLCLK_dflt=30 +++ export WLCLK=30 +++ WLCLK=30 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=022 ++ TEST_NR=022 ++ export JBNME=compile_022 ++ JBNME=compile_022 ++ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_022 ++ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_022 +++ date +%s ++ echo -n 'compile_022, 1681919023,' ++ source rt_utils.sh +++ set -eu +++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] +++ OPNREQ_TEST=false +++ qsub_id=0 +++ slurm_id=0 +++ bsub_id=0 ++ source atparse.bash ++ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_022 ++ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_022 ++ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_022 ++ [[ pbs = \s\l\u\r\m ]] ++ [[ pbs = \l\s\f ]] ++ [[ pbs = \p\b\s ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +Job id 9507062 +TEST 022 compile is waiting to enter the queue +TEST 022 compile is submitted +1 min. TEST 022 compile is waiting in a queue, status: Q jobid 9507062 +2 min. TEST 022 compile is running, status: R jobid 9507062 +3 min. TEST 022 compile is running, status: R jobid 9507062 +4 min. TEST 022 compile is running, status: R jobid 9507062 +5 min. TEST 022 compile is running, status: R jobid 9507062 +6 min. TEST 022 compile is running, status: R jobid 9507062 +7 min. TEST 022 compile is running, status: R jobid 9507062 +8 min. TEST 022 compile is running, status: R jobid 9507062 +9 min. TEST 022 compile is running, status: R jobid 9507062 +10 min. TEST 022 compile is running, status: R jobid 9507062 +11 min. TEST 022 compile is running, status: R jobid 9507062 +12 min. TEST 022 compile is running, status: R jobid 9507062 +13 min. TEST 022 compile is running, status: R jobid 9507062 +14 min. TEST 022 compile is running, status: R jobid 9507062 +15 min. TEST 022 compile is running, status: R jobid 9507062 +16 min. TEST 022 compile is running, status: R jobid 9507062 +17 min. TEST 022 compile is running, status: R jobid 9507062 +18 min. TEST 022 compile is running, status: R jobid 9507062 +19 min. TEST 022 compile is running, status: R jobid 9507062 +20 min. TEST 022 compile is running, status: R jobid 9507062 +21 min. TEST 022 compile is running, status: R jobid 9507062 +22 min. TEST 022 compile is running, status: R jobid 9507062 +23 min. TEST 022 compile is running, status: R jobid 9507062 +24 min. TEST 022 compile is running, status: R jobid 9507062 +25 min. TEST 022 compile is running, status: R jobid 9507062 +26 min. TEST 022 compile is running, status: R jobid 9507062 +27 min. TEST 022 compile is running, status: R jobid 9507062 +qstat: 9507062.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information +qstat: 9507062.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information +28 min. TEST 022 compile is finished, status: - jobid 9507062 ++ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_022.exe +-rwxr-xr-x 1 jongkim ncar 302209256 Apr 19 16:10 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_022.exe ++ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_022/compile_022_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel ++ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_022/job_timestamp.txt ++ remove_fail_test ++ echo 'Removing test failure flag file for compile_022' +Removing test failure flag file for compile_022 ++ [[ false == true ]] ++ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_022 +++ date +%s ++ echo ' 1681920671, 1' ++ elapsed=1648 ++ echo 'Elapsed time 1648 seconds. Compile 022' +Elapsed time 1648 seconds. Compile 022 ++ '[' 0 -eq 0 ']' +Compile 022 elapsed time 1573 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release ++ echo PID=41419 +PID=41419 ++ SECONDS=0 ++ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT ++ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT ++ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM ++ [[ 4 != 4 ]] ++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 ++ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 ++ export 'MAKE_OPT=-DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON' ++ MAKE_OPT='-DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON' ++ export COMPILE_NR=023 ++ COMPILE_NR=023 ++ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ OPNREQ_TEST=false ++ remove_fail_test ++ echo 'Removing test failure flag file for compile_023' +Removing test failure flag file for compile_023 ++ [[ false == true ]] ++ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_023 ++ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_023.env ]] ++ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_023.env +++ export JOB_NR=163 +++ JOB_NR=163 +++ export COMPILE_NR=023 +++ COMPILE_NR=023 +++ export MACHINE_ID=cheyenne.intel +++ MACHINE_ID=cheyenne.intel +++ export RT_COMPILER=intel +++ RT_COMPILER=intel +++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests +++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests +++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel +++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel +++ export SCHEDULER=pbs +++ SCHEDULER=pbs +++ export ACCNR=NRAL0032 +++ ACCNR=NRAL0032 +++ export QUEUE=regular +++ QUEUE=regular +++ export PARTITION= +++ PARTITION= +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log +++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log +++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel +++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel ++ source default_vars.sh +++ THRD=1 +++ INPES_atmaero=4 +++ JNPES_atmaero=8 +++ WPG_atmaero=6 +++ THRD_cpl_atmw=1 +++ INPES_cpl_atmw=3 +++ JNPES_cpl_atmw=8 +++ WPG_cpl_atmw=6 +++ WAV_tasks_cpl_atmw=30 +++ WAV_thrds_cpl_atmw=1 +++ THRD_cpl_c48=1 +++ INPES_cpl_c48=1 +++ JNPES_cpl_c48=1 +++ WPG_cpl_c48=6 +++ OCN_tasks_cpl_c48=4 +++ ICE_tasks_cpl_c48=4 +++ THRD_cpl_dflt=1 +++ INPES_cpl_dflt=3 +++ JNPES_cpl_dflt=8 +++ WPG_cpl_dflt=6 +++ OCN_tasks_cpl_dflt=20 +++ ICE_tasks_cpl_dflt=10 +++ WAV_tasks_cpl_dflt=20 +++ THRD_cpl_thrd=2 +++ INPES_cpl_thrd=3 +++ JNPES_cpl_thrd=4 +++ WPG_cpl_thrd=6 +++ OCN_tasks_cpl_thrd=20 +++ OCN_thrds_cpl_thrd=1 +++ ICE_tasks_cpl_thrd=10 +++ ICE_thrds_cpl_thrd=1 +++ WAV_tasks_cpl_thrd=12 +++ WAV_thrds_cpl_thrd=2 +++ THRD_cpl_dcmp=1 +++ INPES_cpl_dcmp=4 +++ JNPES_cpl_dcmp=6 +++ WPG_cpl_dcmp=6 +++ OCN_tasks_cpl_dcmp=20 +++ ICE_tasks_cpl_dcmp=10 +++ WAV_tasks_cpl_dcmp=20 +++ THRD_cpl_mpi=1 +++ INPES_cpl_mpi=4 +++ JNPES_cpl_mpi=8 +++ WPG_cpl_mpi=6 +++ OCN_tasks_cpl_mpi=34 +++ ICE_tasks_cpl_mpi=20 +++ WAV_tasks_cpl_mpi=28 +++ THRD_cpl_bmrk=2 +++ INPES_cpl_bmrk=8 +++ JNPES_cpl_bmrk=8 +++ WPG_cpl_bmrk=48 +++ OCN_tasks_cpl_bmrk=120 +++ OCN_thrds_cpl_bmrk=1 +++ ICE_tasks_cpl_bmrk=48 +++ ICE_thrds_cpl_bmrk=1 +++ WAV_tasks_cpl_bmrk=80 +++ WAV_thrds_cpl_bmrk=2 +++ THRD_cpl_c192=2 +++ INPES_cpl_c192=6 +++ JNPES_cpl_c192=8 +++ WPG_cpl_c192=12 +++ OCN_tasks_cpl_c192=60 +++ ICE_tasks_cpl_c192=24 +++ WAV_tasks_cpl_c192=80 +++ ATM_compute_tasks_cdeps_100=12 +++ OCN_tasks_cdeps_100=16 +++ ICE_tasks_cdeps_100=12 +++ ATM_compute_tasks_cdeps_025=40 +++ OCN_tasks_cdeps_025=120 +++ ICE_tasks_cdeps_025=48 +++ INPES_aqm=33 +++ JNPES_aqm=8 +++ aqm_omp_num_threads=1 +++ atm_omp_num_threads=1 +++ chm_omp_num_threads=1 +++ ice_omp_num_threads=1 +++ lnd_omp_num_threads=1 +++ med_omp_num_threads=1 +++ ocn_omp_num_threads=1 +++ wav_omp_num_threads=1 +++ [[ cheyenne.intel = wcoss2.* ]] +++ [[ cheyenne.intel = acorn.* ]] +++ [[ cheyenne.intel = orion.* ]] +++ [[ cheyenne.intel = hera.* ]] +++ [[ cheyenne.intel = linux.* ]] +++ [[ cheyenne.intel = jet.* ]] +++ [[ cheyenne.intel = s4.* ]] +++ [[ cheyenne.intel = gaea.* ]] +++ [[ cheyenne.intel = cheyenne.* ]] +++ TPN=36 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ INPES_c384=8 +++ JNPES_c384=6 +++ THRD_c384=2 +++ INPES_c768=8 +++ JNPES_c768=16 +++ THRD_c768=2 +++ THRD_cpl_atmw_gdas=3 +++ INPES_cpl_atmw_gdas=6 +++ JNPES_cpl_atmw_gdas=8 +++ WPG_cpl_atmw_gdas=24 +++ WAV_tasks_atmw_gdas=264 +++ THRD_cpl_dflt=1 +++ INPES_cpl_dflt=6 +++ JNPES_cpl_dflt=8 +++ WPG_cpl_dflt=6 +++ OCN_tasks_cpl_dflt=20 +++ ICE_tasks_cpl_dflt=10 +++ WAV_tasks_cpl_dflt=20 +++ THRD_cpl_thrd=2 +++ INPES_cpl_thrd=6 +++ JNPES_cpl_thrd=4 +++ WPG_cpl_thrd=6 +++ OCN_tasks_cpl_thrd=20 +++ ICE_tasks_cpl_thrd=10 +++ WAV_tasks_cpl_thrd=20 +++ THRD_cpl_dcmp=1 +++ INPES_cpl_dcmp=4 +++ JNPES_cpl_dcmp=12 +++ WPG_cpl_dcmp=6 +++ OCN_tasks_cpl_dcmp=20 +++ ICE_tasks_cpl_dcmp=10 +++ WAV_tasks_cpl_dcmp=20 +++ THRD_cpl_mpi=1 +++ INPES_cpl_mpi=6 +++ JNPES_cpl_mpi=12 +++ WPG_cpl_mpi=6 +++ OCN_tasks_cpl_mpi=24 +++ ICE_tasks_cpl_mpi=12 +++ WAV_tasks_cpl_mpi=24 +++ THRD_cpl_bmrk=2 +++ INPES_cpl_bmrk=12 +++ JNPES_cpl_bmrk=8 +++ WPG_cpl_bmrk=48 +++ OCN_tasks_cpl_bmrk=120 +++ ICE_tasks_cpl_bmrk=48 +++ WAV_tasks_cpl_bmrk=100 +++ WLCLK_dflt=30 +++ export WLCLK=30 +++ WLCLK=30 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=023 ++ TEST_NR=023 ++ export JBNME=compile_023 ++ JBNME=compile_023 ++ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_023 ++ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_023 +++ date +%s ++ echo -n 'compile_023, 1681919090,' ++ source rt_utils.sh +++ set -eu +++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] +++ OPNREQ_TEST=false +++ qsub_id=0 +++ slurm_id=0 +++ bsub_id=0 ++ source atparse.bash ++ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_023 ++ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_023 ++ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_023 ++ [[ pbs = \s\l\u\r\m ]] ++ [[ pbs = \l\s\f ]] ++ [[ pbs = \p\b\s ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +Job id 9507074 +TEST 023 compile is waiting to enter the queue +TEST 023 compile is submitted +1 min. TEST 023 compile is waiting in a queue, status: Q jobid 9507074 +2 min. TEST 023 compile is waiting in a queue, status: Q jobid 9507074 +3 min. TEST 023 compile is running, status: R jobid 9507074 +4 min. TEST 023 compile is running, status: R jobid 9507074 +5 min. TEST 023 compile is running, status: R jobid 9507074 +6 min. TEST 023 compile is running, status: R jobid 9507074 +7 min. TEST 023 compile is running, status: R jobid 9507074 +8 min. TEST 023 compile is running, status: R jobid 9507074 +9 min. TEST 023 compile is running, status: R jobid 9507074 +10 min. TEST 023 compile is running, status: R jobid 9507074 +11 min. TEST 023 compile is running, status: R jobid 9507074 +12 min. TEST 023 compile is running, status: R jobid 9507074 +13 min. TEST 023 compile is running, status: R jobid 9507074 +14 min. TEST 023 compile is running, status: R jobid 9507074 +15 min. TEST 023 compile is running, status: R jobid 9507074 +16 min. TEST 023 compile is running, status: R jobid 9507074 +17 min. TEST 023 compile is running, status: R jobid 9507074 +18 min. TEST 023 compile is running, status: R jobid 9507074 +19 min. TEST 023 compile is running, status: R jobid 9507074 +20 min. TEST 023 compile is running, status: R jobid 9507074 +qstat: 9507074.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information +qstat: 9507074.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information +21 min. TEST 023 compile is finished, status: - jobid 9507074 ++ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_023.exe +-rwxr-xr-x 1 jongkim ncar 292205152 Apr 19 16:04 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_023.exe ++ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_023/compile_023_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel ++ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_023/job_timestamp.txt ++ remove_fail_test ++ echo 'Removing test failure flag file for compile_023' +Removing test failure flag file for compile_023 ++ [[ false == true ]] ++ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_023 +++ date +%s ++ echo ' 1681920310, 1' ++ elapsed=1220 ++ echo 'Elapsed time 1220 seconds. Compile 023' +Elapsed time 1220 seconds. Compile 023 ++ '[' 0 -eq 0 ']' +Compile 023 elapsed time 1130 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 ++ echo PID=11955 +PID=11955 ++ SECONDS=0 ++ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT ++ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT ++ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM ++ [[ 4 != 4 ]] ++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 ++ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 ++ export MAKE_OPT=-DAPP=NG-GODAS ++ MAKE_OPT=-DAPP=NG-GODAS ++ export COMPILE_NR=024 ++ COMPILE_NR=024 ++ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ OPNREQ_TEST=false ++ remove_fail_test ++ echo 'Removing test failure flag file for compile_024' +Removing test failure flag file for compile_024 ++ [[ false == true ]] ++ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_024 ++ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_024.env ]] ++ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_024.env +++ export JOB_NR=167 +++ JOB_NR=167 +++ export COMPILE_NR=024 +++ COMPILE_NR=024 +++ export MACHINE_ID=cheyenne.intel +++ MACHINE_ID=cheyenne.intel +++ export RT_COMPILER=intel +++ RT_COMPILER=intel +++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests +++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests +++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel +++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel +++ export SCHEDULER=pbs +++ SCHEDULER=pbs +++ export ACCNR=NRAL0032 +++ ACCNR=NRAL0032 +++ export QUEUE=regular +++ QUEUE=regular +++ export PARTITION= +++ PARTITION= +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log +++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log +++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel +++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel ++ source default_vars.sh +++ THRD=1 +++ INPES_atmaero=4 +++ JNPES_atmaero=8 +++ WPG_atmaero=6 +++ THRD_cpl_atmw=1 +++ INPES_cpl_atmw=3 +++ JNPES_cpl_atmw=8 +++ WPG_cpl_atmw=6 +++ WAV_tasks_cpl_atmw=30 +++ WAV_thrds_cpl_atmw=1 +++ THRD_cpl_c48=1 +++ INPES_cpl_c48=1 +++ JNPES_cpl_c48=1 +++ WPG_cpl_c48=6 +++ OCN_tasks_cpl_c48=4 +++ ICE_tasks_cpl_c48=4 +++ THRD_cpl_dflt=1 +++ INPES_cpl_dflt=3 +++ JNPES_cpl_dflt=8 +++ WPG_cpl_dflt=6 +++ OCN_tasks_cpl_dflt=20 +++ ICE_tasks_cpl_dflt=10 +++ WAV_tasks_cpl_dflt=20 +++ THRD_cpl_thrd=2 +++ INPES_cpl_thrd=3 +++ JNPES_cpl_thrd=4 +++ WPG_cpl_thrd=6 +++ OCN_tasks_cpl_thrd=20 +++ OCN_thrds_cpl_thrd=1 +++ ICE_tasks_cpl_thrd=10 +++ ICE_thrds_cpl_thrd=1 +++ WAV_tasks_cpl_thrd=12 +++ WAV_thrds_cpl_thrd=2 +++ THRD_cpl_dcmp=1 +++ INPES_cpl_dcmp=4 +++ JNPES_cpl_dcmp=6 +++ WPG_cpl_dcmp=6 +++ OCN_tasks_cpl_dcmp=20 +++ ICE_tasks_cpl_dcmp=10 +++ WAV_tasks_cpl_dcmp=20 +++ THRD_cpl_mpi=1 +++ INPES_cpl_mpi=4 +++ JNPES_cpl_mpi=8 +++ WPG_cpl_mpi=6 +++ OCN_tasks_cpl_mpi=34 +++ ICE_tasks_cpl_mpi=20 +++ WAV_tasks_cpl_mpi=28 +++ THRD_cpl_bmrk=2 +++ INPES_cpl_bmrk=8 +++ JNPES_cpl_bmrk=8 +++ WPG_cpl_bmrk=48 +++ OCN_tasks_cpl_bmrk=120 +++ OCN_thrds_cpl_bmrk=1 +++ ICE_tasks_cpl_bmrk=48 +++ ICE_thrds_cpl_bmrk=1 +++ WAV_tasks_cpl_bmrk=80 +++ WAV_thrds_cpl_bmrk=2 +++ THRD_cpl_c192=2 +++ INPES_cpl_c192=6 +++ JNPES_cpl_c192=8 +++ WPG_cpl_c192=12 +++ OCN_tasks_cpl_c192=60 +++ ICE_tasks_cpl_c192=24 +++ WAV_tasks_cpl_c192=80 +++ ATM_compute_tasks_cdeps_100=12 +++ OCN_tasks_cdeps_100=16 +++ ICE_tasks_cdeps_100=12 +++ ATM_compute_tasks_cdeps_025=40 +++ OCN_tasks_cdeps_025=120 +++ ICE_tasks_cdeps_025=48 +++ INPES_aqm=33 +++ JNPES_aqm=8 +++ aqm_omp_num_threads=1 +++ atm_omp_num_threads=1 +++ chm_omp_num_threads=1 +++ ice_omp_num_threads=1 +++ lnd_omp_num_threads=1 +++ med_omp_num_threads=1 +++ ocn_omp_num_threads=1 +++ wav_omp_num_threads=1 +++ [[ cheyenne.intel = wcoss2.* ]] +++ [[ cheyenne.intel = acorn.* ]] +++ [[ cheyenne.intel = orion.* ]] +++ [[ cheyenne.intel = hera.* ]] +++ [[ cheyenne.intel = linux.* ]] +++ [[ cheyenne.intel = jet.* ]] +++ [[ cheyenne.intel = s4.* ]] +++ [[ cheyenne.intel = gaea.* ]] +++ [[ cheyenne.intel = cheyenne.* ]] +++ TPN=36 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ INPES_c384=8 +++ JNPES_c384=6 +++ THRD_c384=2 +++ INPES_c768=8 +++ JNPES_c768=16 +++ THRD_c768=2 +++ THRD_cpl_atmw_gdas=3 +++ INPES_cpl_atmw_gdas=6 +++ JNPES_cpl_atmw_gdas=8 +++ WPG_cpl_atmw_gdas=24 +++ WAV_tasks_atmw_gdas=264 +++ THRD_cpl_dflt=1 +++ INPES_cpl_dflt=6 +++ JNPES_cpl_dflt=8 +++ WPG_cpl_dflt=6 +++ OCN_tasks_cpl_dflt=20 +++ ICE_tasks_cpl_dflt=10 +++ WAV_tasks_cpl_dflt=20 +++ THRD_cpl_thrd=2 +++ INPES_cpl_thrd=6 +++ JNPES_cpl_thrd=4 +++ WPG_cpl_thrd=6 +++ OCN_tasks_cpl_thrd=20 +++ ICE_tasks_cpl_thrd=10 +++ WAV_tasks_cpl_thrd=20 +++ THRD_cpl_dcmp=1 +++ INPES_cpl_dcmp=4 +++ JNPES_cpl_dcmp=12 +++ WPG_cpl_dcmp=6 +++ OCN_tasks_cpl_dcmp=20 +++ ICE_tasks_cpl_dcmp=10 +++ WAV_tasks_cpl_dcmp=20 +++ THRD_cpl_mpi=1 +++ INPES_cpl_mpi=6 +++ JNPES_cpl_mpi=12 +++ WPG_cpl_mpi=6 +++ OCN_tasks_cpl_mpi=24 +++ ICE_tasks_cpl_mpi=12 +++ WAV_tasks_cpl_mpi=24 +++ THRD_cpl_bmrk=2 +++ INPES_cpl_bmrk=12 +++ JNPES_cpl_bmrk=8 +++ WPG_cpl_bmrk=48 +++ OCN_tasks_cpl_bmrk=120 +++ ICE_tasks_cpl_bmrk=48 +++ WAV_tasks_cpl_bmrk=100 +++ WLCLK_dflt=30 +++ export WLCLK=30 +++ WLCLK=30 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=024 ++ TEST_NR=024 ++ export JBNME=compile_024 ++ JBNME=compile_024 ++ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_024 ++ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_024 +++ date +%s ++ echo -n 'compile_024, 1681919271,' ++ source rt_utils.sh +++ set -eu +++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] +++ OPNREQ_TEST=false +++ qsub_id=0 +++ slurm_id=0 +++ bsub_id=0 ++ source atparse.bash ++ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_024 ++ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_024 ++ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_024 ++ [[ pbs = \s\l\u\r\m ]] ++ [[ pbs = \l\s\f ]] ++ [[ pbs = \p\b\s ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +Job id 9507106 +TEST 024 compile is waiting to enter the queue +TEST 024 compile is submitted +1 min. TEST 024 compile is waiting in a queue, status: Q jobid 9507106 +2 min. TEST 024 compile is waiting in a queue, status: Q jobid 9507106 +3 min. TEST 024 compile is waiting in a queue, status: Q jobid 9507106 +4 min. TEST 024 compile is running, status: R jobid 9507106 +5 min. TEST 024 compile is running, status: R jobid 9507106 +6 min. TEST 024 compile is running, status: R jobid 9507106 +7 min. TEST 024 compile is running, status: R jobid 9507106 +8 min. TEST 024 compile is running, status: R jobid 9507106 +9 min. TEST 024 compile is running, status: R jobid 9507106 +10 min. TEST 024 compile is running, status: R jobid 9507106 +11 min. TEST 024 compile is running, status: R jobid 9507106 +qstat: 9507106.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information +qstat: 9507106.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information +12 min. TEST 024 compile is finished, status: - jobid 9507106 ++ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_024.exe +-rwxr-xr-x 1 jongkim ncar 296489880 Apr 19 15:58 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_024.exe ++ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_024/compile_024_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel ++ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_024/job_timestamp.txt ++ remove_fail_test ++ echo 'Removing test failure flag file for compile_024' +Removing test failure flag file for compile_024 ++ [[ false == true ]] ++ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_024 +++ date +%s ++ echo ' 1681919945, 1' ++ elapsed=673 ++ echo 'Elapsed time 673 seconds. Compile 024' +Elapsed time 673 seconds. Compile 024 ++ '[' 0 -eq 0 ']' +Compile 024 elapsed time 445 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON ++ echo PID=24558 +PID=24558 ++ SECONDS=0 ++ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT ++ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT ++ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM ++ [[ 4 != 4 ]] ++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 ++ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 ++ export 'MAKE_OPT=-DAPP=NG-GODAS -DDEBUG=ON' ++ MAKE_OPT='-DAPP=NG-GODAS -DDEBUG=ON' ++ export COMPILE_NR=025 ++ COMPILE_NR=025 ++ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ OPNREQ_TEST=false ++ remove_fail_test ++ echo 'Removing test failure flag file for compile_025' +Removing test failure flag file for compile_025 ++ [[ false == true ]] ++ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_025 ++ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_025.env ]] ++ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_025.env +++ export JOB_NR=181 +++ JOB_NR=181 +++ export COMPILE_NR=025 +++ COMPILE_NR=025 +++ export MACHINE_ID=cheyenne.intel +++ MACHINE_ID=cheyenne.intel +++ export RT_COMPILER=intel +++ RT_COMPILER=intel +++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests +++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests +++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel +++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel +++ export SCHEDULER=pbs +++ SCHEDULER=pbs +++ export ACCNR=NRAL0032 +++ ACCNR=NRAL0032 +++ export QUEUE=regular +++ QUEUE=regular +++ export PARTITION= +++ PARTITION= +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log +++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log +++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel +++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel ++ source default_vars.sh +++ THRD=1 +++ INPES_atmaero=4 +++ JNPES_atmaero=8 +++ WPG_atmaero=6 +++ THRD_cpl_atmw=1 +++ INPES_cpl_atmw=3 +++ JNPES_cpl_atmw=8 +++ WPG_cpl_atmw=6 +++ WAV_tasks_cpl_atmw=30 +++ WAV_thrds_cpl_atmw=1 +++ THRD_cpl_c48=1 +++ INPES_cpl_c48=1 +++ JNPES_cpl_c48=1 +++ WPG_cpl_c48=6 +++ OCN_tasks_cpl_c48=4 +++ ICE_tasks_cpl_c48=4 +++ THRD_cpl_dflt=1 +++ INPES_cpl_dflt=3 +++ JNPES_cpl_dflt=8 +++ WPG_cpl_dflt=6 +++ OCN_tasks_cpl_dflt=20 +++ ICE_tasks_cpl_dflt=10 +++ WAV_tasks_cpl_dflt=20 +++ THRD_cpl_thrd=2 +++ INPES_cpl_thrd=3 +++ JNPES_cpl_thrd=4 +++ WPG_cpl_thrd=6 +++ OCN_tasks_cpl_thrd=20 +++ OCN_thrds_cpl_thrd=1 +++ ICE_tasks_cpl_thrd=10 +++ ICE_thrds_cpl_thrd=1 +++ WAV_tasks_cpl_thrd=12 +++ WAV_thrds_cpl_thrd=2 +++ THRD_cpl_dcmp=1 +++ INPES_cpl_dcmp=4 +++ JNPES_cpl_dcmp=6 +++ WPG_cpl_dcmp=6 +++ OCN_tasks_cpl_dcmp=20 +++ ICE_tasks_cpl_dcmp=10 +++ WAV_tasks_cpl_dcmp=20 +++ THRD_cpl_mpi=1 +++ INPES_cpl_mpi=4 +++ JNPES_cpl_mpi=8 +++ WPG_cpl_mpi=6 +++ OCN_tasks_cpl_mpi=34 +++ ICE_tasks_cpl_mpi=20 +++ WAV_tasks_cpl_mpi=28 +++ THRD_cpl_bmrk=2 +++ INPES_cpl_bmrk=8 +++ JNPES_cpl_bmrk=8 +++ WPG_cpl_bmrk=48 +++ OCN_tasks_cpl_bmrk=120 +++ OCN_thrds_cpl_bmrk=1 +++ ICE_tasks_cpl_bmrk=48 +++ ICE_thrds_cpl_bmrk=1 +++ WAV_tasks_cpl_bmrk=80 +++ WAV_thrds_cpl_bmrk=2 +++ THRD_cpl_c192=2 +++ INPES_cpl_c192=6 +++ JNPES_cpl_c192=8 +++ WPG_cpl_c192=12 +++ OCN_tasks_cpl_c192=60 +++ ICE_tasks_cpl_c192=24 +++ WAV_tasks_cpl_c192=80 +++ ATM_compute_tasks_cdeps_100=12 +++ OCN_tasks_cdeps_100=16 +++ ICE_tasks_cdeps_100=12 +++ ATM_compute_tasks_cdeps_025=40 +++ OCN_tasks_cdeps_025=120 +++ ICE_tasks_cdeps_025=48 +++ INPES_aqm=33 +++ JNPES_aqm=8 +++ aqm_omp_num_threads=1 +++ atm_omp_num_threads=1 +++ chm_omp_num_threads=1 +++ ice_omp_num_threads=1 +++ lnd_omp_num_threads=1 +++ med_omp_num_threads=1 +++ ocn_omp_num_threads=1 +++ wav_omp_num_threads=1 +++ [[ cheyenne.intel = wcoss2.* ]] +++ [[ cheyenne.intel = acorn.* ]] +++ [[ cheyenne.intel = orion.* ]] +++ [[ cheyenne.intel = hera.* ]] +++ [[ cheyenne.intel = linux.* ]] +++ [[ cheyenne.intel = jet.* ]] +++ [[ cheyenne.intel = s4.* ]] +++ [[ cheyenne.intel = gaea.* ]] +++ [[ cheyenne.intel = cheyenne.* ]] +++ TPN=36 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ INPES_c384=8 +++ JNPES_c384=6 +++ THRD_c384=2 +++ INPES_c768=8 +++ JNPES_c768=16 +++ THRD_c768=2 +++ THRD_cpl_atmw_gdas=3 +++ INPES_cpl_atmw_gdas=6 +++ JNPES_cpl_atmw_gdas=8 +++ WPG_cpl_atmw_gdas=24 +++ WAV_tasks_atmw_gdas=264 +++ THRD_cpl_dflt=1 +++ INPES_cpl_dflt=6 +++ JNPES_cpl_dflt=8 +++ WPG_cpl_dflt=6 +++ OCN_tasks_cpl_dflt=20 +++ ICE_tasks_cpl_dflt=10 +++ WAV_tasks_cpl_dflt=20 +++ THRD_cpl_thrd=2 +++ INPES_cpl_thrd=6 +++ JNPES_cpl_thrd=4 +++ WPG_cpl_thrd=6 +++ OCN_tasks_cpl_thrd=20 +++ ICE_tasks_cpl_thrd=10 +++ WAV_tasks_cpl_thrd=20 +++ THRD_cpl_dcmp=1 +++ INPES_cpl_dcmp=4 +++ JNPES_cpl_dcmp=12 +++ WPG_cpl_dcmp=6 +++ OCN_tasks_cpl_dcmp=20 +++ ICE_tasks_cpl_dcmp=10 +++ WAV_tasks_cpl_dcmp=20 +++ THRD_cpl_mpi=1 +++ INPES_cpl_mpi=6 +++ JNPES_cpl_mpi=12 +++ WPG_cpl_mpi=6 +++ OCN_tasks_cpl_mpi=24 +++ ICE_tasks_cpl_mpi=12 +++ WAV_tasks_cpl_mpi=24 +++ THRD_cpl_bmrk=2 +++ INPES_cpl_bmrk=12 +++ JNPES_cpl_bmrk=8 +++ WPG_cpl_bmrk=48 +++ OCN_tasks_cpl_bmrk=120 +++ ICE_tasks_cpl_bmrk=48 +++ WAV_tasks_cpl_bmrk=100 +++ WLCLK_dflt=30 +++ export WLCLK=30 +++ WLCLK=30 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=025 ++ TEST_NR=025 ++ export JBNME=compile_025 ++ JBNME=compile_025 ++ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_025 ++ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_025 +++ date +%s ++ echo -n 'compile_025, 1681919392,' ++ source rt_utils.sh +++ set -eu +++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] +++ OPNREQ_TEST=false +++ qsub_id=0 +++ slurm_id=0 +++ bsub_id=0 ++ source atparse.bash ++ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_025 ++ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_025 ++ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_025 ++ [[ pbs = \s\l\u\r\m ]] ++ [[ pbs = \l\s\f ]] ++ [[ pbs = \p\b\s ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +Job id 9507134 +TEST 025 compile is waiting to enter the queue +TEST 025 compile is submitted +1 min. TEST 025 compile is waiting in a queue, status: Q jobid 9507134 +2 min. TEST 025 compile is waiting in a queue, status: Q jobid 9507134 +3 min. TEST 025 compile is running, status: R jobid 9507134 +4 min. TEST 025 compile is running, status: R jobid 9507134 +5 min. TEST 025 compile is running, status: R jobid 9507134 +qstat: 9507134.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information +qstat: 9507134.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information +6 min. TEST 025 compile is finished, status: - jobid 9507134 ++ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_025.exe +-rwxr-xr-x 1 jongkim ncar 372675624 Apr 19 15:54 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_025.exe ++ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_025/compile_025_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel ++ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_025/job_timestamp.txt ++ remove_fail_test ++ echo 'Removing test failure flag file for compile_025' +Removing test failure flag file for compile_025 ++ [[ false == true ]] ++ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_025 +++ date +%s ++ echo ' 1681919702, 1' ++ elapsed=310 ++ echo 'Elapsed time 310 seconds. Compile 025' +Elapsed time 310 seconds. Compile 025 ++ '[' 0 -eq 0 ']' +Compile 025 elapsed time 199 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON ++ echo PID=24767 +PID=24767 ++ SECONDS=0 ++ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT ++ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT ++ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM ++ [[ 4 != 4 ]] ++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 ++ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 ++ export 'MAKE_OPT=-DAPP=NG-GODAS -DFASTER=ON' ++ MAKE_OPT='-DAPP=NG-GODAS -DFASTER=ON' ++ export COMPILE_NR=026 ++ COMPILE_NR=026 ++ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ OPNREQ_TEST=false ++ remove_fail_test ++ echo 'Removing test failure flag file for compile_026' +Removing test failure flag file for compile_026 ++ [[ false == true ]] ++ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_026 ++ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_026.env ]] ++ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_026.env +++ export JOB_NR=183 +++ JOB_NR=183 +++ export COMPILE_NR=026 +++ COMPILE_NR=026 +++ export MACHINE_ID=cheyenne.intel +++ MACHINE_ID=cheyenne.intel +++ export RT_COMPILER=intel +++ RT_COMPILER=intel +++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests +++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests +++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel +++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel +++ export SCHEDULER=pbs +++ SCHEDULER=pbs +++ export ACCNR=NRAL0032 +++ ACCNR=NRAL0032 +++ export QUEUE=regular +++ QUEUE=regular +++ export PARTITION= +++ PARTITION= +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log +++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log +++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel +++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel ++ source default_vars.sh +++ THRD=1 +++ INPES_atmaero=4 +++ JNPES_atmaero=8 +++ WPG_atmaero=6 +++ THRD_cpl_atmw=1 +++ INPES_cpl_atmw=3 +++ JNPES_cpl_atmw=8 +++ WPG_cpl_atmw=6 +++ WAV_tasks_cpl_atmw=30 +++ WAV_thrds_cpl_atmw=1 +++ THRD_cpl_c48=1 +++ INPES_cpl_c48=1 +++ JNPES_cpl_c48=1 +++ WPG_cpl_c48=6 +++ OCN_tasks_cpl_c48=4 +++ ICE_tasks_cpl_c48=4 +++ THRD_cpl_dflt=1 +++ INPES_cpl_dflt=3 +++ JNPES_cpl_dflt=8 +++ WPG_cpl_dflt=6 +++ OCN_tasks_cpl_dflt=20 +++ ICE_tasks_cpl_dflt=10 +++ WAV_tasks_cpl_dflt=20 +++ THRD_cpl_thrd=2 +++ INPES_cpl_thrd=3 +++ JNPES_cpl_thrd=4 +++ WPG_cpl_thrd=6 +++ OCN_tasks_cpl_thrd=20 +++ OCN_thrds_cpl_thrd=1 +++ ICE_tasks_cpl_thrd=10 +++ ICE_thrds_cpl_thrd=1 +++ WAV_tasks_cpl_thrd=12 +++ WAV_thrds_cpl_thrd=2 +++ THRD_cpl_dcmp=1 +++ INPES_cpl_dcmp=4 +++ JNPES_cpl_dcmp=6 +++ WPG_cpl_dcmp=6 +++ OCN_tasks_cpl_dcmp=20 +++ ICE_tasks_cpl_dcmp=10 +++ WAV_tasks_cpl_dcmp=20 +++ THRD_cpl_mpi=1 +++ INPES_cpl_mpi=4 +++ JNPES_cpl_mpi=8 +++ WPG_cpl_mpi=6 +++ OCN_tasks_cpl_mpi=34 +++ ICE_tasks_cpl_mpi=20 +++ WAV_tasks_cpl_mpi=28 +++ THRD_cpl_bmrk=2 +++ INPES_cpl_bmrk=8 +++ JNPES_cpl_bmrk=8 +++ WPG_cpl_bmrk=48 +++ OCN_tasks_cpl_bmrk=120 +++ OCN_thrds_cpl_bmrk=1 +++ ICE_tasks_cpl_bmrk=48 +++ ICE_thrds_cpl_bmrk=1 +++ WAV_tasks_cpl_bmrk=80 +++ WAV_thrds_cpl_bmrk=2 +++ THRD_cpl_c192=2 +++ INPES_cpl_c192=6 +++ JNPES_cpl_c192=8 +++ WPG_cpl_c192=12 +++ OCN_tasks_cpl_c192=60 +++ ICE_tasks_cpl_c192=24 +++ WAV_tasks_cpl_c192=80 +++ ATM_compute_tasks_cdeps_100=12 +++ OCN_tasks_cdeps_100=16 +++ ICE_tasks_cdeps_100=12 +++ ATM_compute_tasks_cdeps_025=40 +++ OCN_tasks_cdeps_025=120 +++ ICE_tasks_cdeps_025=48 +++ INPES_aqm=33 +++ JNPES_aqm=8 +++ aqm_omp_num_threads=1 +++ atm_omp_num_threads=1 +++ chm_omp_num_threads=1 +++ ice_omp_num_threads=1 +++ lnd_omp_num_threads=1 +++ med_omp_num_threads=1 +++ ocn_omp_num_threads=1 +++ wav_omp_num_threads=1 +++ [[ cheyenne.intel = wcoss2.* ]] +++ [[ cheyenne.intel = acorn.* ]] +++ [[ cheyenne.intel = orion.* ]] +++ [[ cheyenne.intel = hera.* ]] +++ [[ cheyenne.intel = linux.* ]] +++ [[ cheyenne.intel = jet.* ]] +++ [[ cheyenne.intel = s4.* ]] +++ [[ cheyenne.intel = gaea.* ]] +++ [[ cheyenne.intel = cheyenne.* ]] +++ TPN=36 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ INPES_c384=8 +++ JNPES_c384=6 +++ THRD_c384=2 +++ INPES_c768=8 +++ JNPES_c768=16 +++ THRD_c768=2 +++ THRD_cpl_atmw_gdas=3 +++ INPES_cpl_atmw_gdas=6 +++ JNPES_cpl_atmw_gdas=8 +++ WPG_cpl_atmw_gdas=24 +++ WAV_tasks_atmw_gdas=264 +++ THRD_cpl_dflt=1 +++ INPES_cpl_dflt=6 +++ JNPES_cpl_dflt=8 +++ WPG_cpl_dflt=6 +++ OCN_tasks_cpl_dflt=20 +++ ICE_tasks_cpl_dflt=10 +++ WAV_tasks_cpl_dflt=20 +++ THRD_cpl_thrd=2 +++ INPES_cpl_thrd=6 +++ JNPES_cpl_thrd=4 +++ WPG_cpl_thrd=6 +++ OCN_tasks_cpl_thrd=20 +++ ICE_tasks_cpl_thrd=10 +++ WAV_tasks_cpl_thrd=20 +++ THRD_cpl_dcmp=1 +++ INPES_cpl_dcmp=4 +++ JNPES_cpl_dcmp=12 +++ WPG_cpl_dcmp=6 +++ OCN_tasks_cpl_dcmp=20 +++ ICE_tasks_cpl_dcmp=10 +++ WAV_tasks_cpl_dcmp=20 +++ THRD_cpl_mpi=1 +++ INPES_cpl_mpi=6 +++ JNPES_cpl_mpi=12 +++ WPG_cpl_mpi=6 +++ OCN_tasks_cpl_mpi=24 +++ ICE_tasks_cpl_mpi=12 +++ WAV_tasks_cpl_mpi=24 +++ THRD_cpl_bmrk=2 +++ INPES_cpl_bmrk=12 +++ JNPES_cpl_bmrk=8 +++ WPG_cpl_bmrk=48 +++ OCN_tasks_cpl_bmrk=120 +++ ICE_tasks_cpl_bmrk=48 +++ WAV_tasks_cpl_bmrk=100 +++ WLCLK_dflt=30 +++ export WLCLK=30 +++ WLCLK=30 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=026 ++ TEST_NR=026 ++ export JBNME=compile_026 ++ JBNME=compile_026 ++ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_026 ++ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_026 +++ date +%s ++ echo -n 'compile_026, 1681919393,' ++ source rt_utils.sh +++ set -eu +++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] +++ OPNREQ_TEST=false +++ qsub_id=0 +++ slurm_id=0 +++ bsub_id=0 ++ source atparse.bash ++ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_026 ++ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_026 ++ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_026 ++ [[ pbs = \s\l\u\r\m ]] ++ [[ pbs = \l\s\f ]] ++ [[ pbs = \p\b\s ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +Job id 9507135 +TEST 026 compile is waiting to enter the queue +TEST 026 compile is submitted +1 min. TEST 026 compile is waiting in a queue, status: Q jobid 9507135 +2 min. TEST 026 compile is waiting in a queue, status: Q jobid 9507135 +3 min. TEST 026 compile is running, status: R jobid 9507135 +4 min. TEST 026 compile is running, status: R jobid 9507135 +5 min. TEST 026 compile is running, status: R jobid 9507135 +6 min. TEST 026 compile is running, status: R jobid 9507135 +7 min. TEST 026 compile is running, status: R jobid 9507135 +8 min. TEST 026 compile is running, status: R jobid 9507135 +9 min. TEST 026 compile is running, status: R jobid 9507135 +qstat: 9507135.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information +qstat: 9507135.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information +10 min. TEST 026 compile is finished, status: - jobid 9507135 ++ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_026.exe +-rwxr-xr-x 1 jongkim ncar 296456376 Apr 19 15:58 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_026.exe ++ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_026/compile_026_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel ++ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_026/job_timestamp.txt ++ remove_fail_test ++ echo 'Removing test failure flag file for compile_026' +Removing test failure flag file for compile_026 ++ [[ false == true ]] ++ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_026 +++ date +%s ++ echo ' 1681919948, 1' ++ elapsed=555 ++ echo 'Elapsed time 555 seconds. Compile 026' +Elapsed time 555 seconds. Compile 026 ++ '[' 0 -eq 0 ']' +Compile 026 elapsed time 428 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON ++ echo PID=47281 +PID=47281 ++ SECONDS=0 ++ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT ++ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT ++ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM ++ [[ 4 != 4 ]] ++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 ++ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 ++ export MAKE_OPT=-DAPP=LND ++ MAKE_OPT=-DAPP=LND ++ export COMPILE_NR=027 ++ COMPILE_NR=027 ++ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ OPNREQ_TEST=false ++ remove_fail_test ++ echo 'Removing test failure flag file for compile_027' +Removing test failure flag file for compile_027 ++ [[ false == true ]] ++ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_027 ++ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_027.env ]] ++ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_027.env +++ export JOB_NR=185 +++ JOB_NR=185 +++ export COMPILE_NR=027 +++ COMPILE_NR=027 +++ export MACHINE_ID=cheyenne.intel +++ MACHINE_ID=cheyenne.intel +++ export RT_COMPILER=intel +++ RT_COMPILER=intel +++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests +++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests +++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel +++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel +++ export SCHEDULER=pbs +++ SCHEDULER=pbs +++ export ACCNR=NRAL0032 +++ ACCNR=NRAL0032 +++ export QUEUE=regular +++ QUEUE=regular +++ export PARTITION= +++ PARTITION= +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log +++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log +++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel +++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel ++ source default_vars.sh +++ THRD=1 +++ INPES_atmaero=4 +++ JNPES_atmaero=8 +++ WPG_atmaero=6 +++ THRD_cpl_atmw=1 +++ INPES_cpl_atmw=3 +++ JNPES_cpl_atmw=8 +++ WPG_cpl_atmw=6 +++ WAV_tasks_cpl_atmw=30 +++ WAV_thrds_cpl_atmw=1 +++ THRD_cpl_c48=1 +++ INPES_cpl_c48=1 +++ JNPES_cpl_c48=1 +++ WPG_cpl_c48=6 +++ OCN_tasks_cpl_c48=4 +++ ICE_tasks_cpl_c48=4 +++ THRD_cpl_dflt=1 +++ INPES_cpl_dflt=3 +++ JNPES_cpl_dflt=8 +++ WPG_cpl_dflt=6 +++ OCN_tasks_cpl_dflt=20 +++ ICE_tasks_cpl_dflt=10 +++ WAV_tasks_cpl_dflt=20 +++ THRD_cpl_thrd=2 +++ INPES_cpl_thrd=3 +++ JNPES_cpl_thrd=4 +++ WPG_cpl_thrd=6 +++ OCN_tasks_cpl_thrd=20 +++ OCN_thrds_cpl_thrd=1 +++ ICE_tasks_cpl_thrd=10 +++ ICE_thrds_cpl_thrd=1 +++ WAV_tasks_cpl_thrd=12 +++ WAV_thrds_cpl_thrd=2 +++ THRD_cpl_dcmp=1 +++ INPES_cpl_dcmp=4 +++ JNPES_cpl_dcmp=6 +++ WPG_cpl_dcmp=6 +++ OCN_tasks_cpl_dcmp=20 +++ ICE_tasks_cpl_dcmp=10 +++ WAV_tasks_cpl_dcmp=20 +++ THRD_cpl_mpi=1 +++ INPES_cpl_mpi=4 +++ JNPES_cpl_mpi=8 +++ WPG_cpl_mpi=6 +++ OCN_tasks_cpl_mpi=34 +++ ICE_tasks_cpl_mpi=20 +++ WAV_tasks_cpl_mpi=28 +++ THRD_cpl_bmrk=2 +++ INPES_cpl_bmrk=8 +++ JNPES_cpl_bmrk=8 +++ WPG_cpl_bmrk=48 +++ OCN_tasks_cpl_bmrk=120 +++ OCN_thrds_cpl_bmrk=1 +++ ICE_tasks_cpl_bmrk=48 +++ ICE_thrds_cpl_bmrk=1 +++ WAV_tasks_cpl_bmrk=80 +++ WAV_thrds_cpl_bmrk=2 +++ THRD_cpl_c192=2 +++ INPES_cpl_c192=6 +++ JNPES_cpl_c192=8 +++ WPG_cpl_c192=12 +++ OCN_tasks_cpl_c192=60 +++ ICE_tasks_cpl_c192=24 +++ WAV_tasks_cpl_c192=80 +++ ATM_compute_tasks_cdeps_100=12 +++ OCN_tasks_cdeps_100=16 +++ ICE_tasks_cdeps_100=12 +++ ATM_compute_tasks_cdeps_025=40 +++ OCN_tasks_cdeps_025=120 +++ ICE_tasks_cdeps_025=48 +++ INPES_aqm=33 +++ JNPES_aqm=8 +++ aqm_omp_num_threads=1 +++ atm_omp_num_threads=1 +++ chm_omp_num_threads=1 +++ ice_omp_num_threads=1 +++ lnd_omp_num_threads=1 +++ med_omp_num_threads=1 +++ ocn_omp_num_threads=1 +++ wav_omp_num_threads=1 +++ [[ cheyenne.intel = wcoss2.* ]] +++ [[ cheyenne.intel = acorn.* ]] +++ [[ cheyenne.intel = orion.* ]] +++ [[ cheyenne.intel = hera.* ]] +++ [[ cheyenne.intel = linux.* ]] +++ [[ cheyenne.intel = jet.* ]] +++ [[ cheyenne.intel = s4.* ]] +++ [[ cheyenne.intel = gaea.* ]] +++ [[ cheyenne.intel = cheyenne.* ]] +++ TPN=36 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ INPES_c384=8 +++ JNPES_c384=6 +++ THRD_c384=2 +++ INPES_c768=8 +++ JNPES_c768=16 +++ THRD_c768=2 +++ THRD_cpl_atmw_gdas=3 +++ INPES_cpl_atmw_gdas=6 +++ JNPES_cpl_atmw_gdas=8 +++ WPG_cpl_atmw_gdas=24 +++ WAV_tasks_atmw_gdas=264 +++ THRD_cpl_dflt=1 +++ INPES_cpl_dflt=6 +++ JNPES_cpl_dflt=8 +++ WPG_cpl_dflt=6 +++ OCN_tasks_cpl_dflt=20 +++ ICE_tasks_cpl_dflt=10 +++ WAV_tasks_cpl_dflt=20 +++ THRD_cpl_thrd=2 +++ INPES_cpl_thrd=6 +++ JNPES_cpl_thrd=4 +++ WPG_cpl_thrd=6 +++ OCN_tasks_cpl_thrd=20 +++ ICE_tasks_cpl_thrd=10 +++ WAV_tasks_cpl_thrd=20 +++ THRD_cpl_dcmp=1 +++ INPES_cpl_dcmp=4 +++ JNPES_cpl_dcmp=12 +++ WPG_cpl_dcmp=6 +++ OCN_tasks_cpl_dcmp=20 +++ ICE_tasks_cpl_dcmp=10 +++ WAV_tasks_cpl_dcmp=20 +++ THRD_cpl_mpi=1 +++ INPES_cpl_mpi=6 +++ JNPES_cpl_mpi=12 +++ WPG_cpl_mpi=6 +++ OCN_tasks_cpl_mpi=24 +++ ICE_tasks_cpl_mpi=12 +++ WAV_tasks_cpl_mpi=24 +++ THRD_cpl_bmrk=2 +++ INPES_cpl_bmrk=12 +++ JNPES_cpl_bmrk=8 +++ WPG_cpl_bmrk=48 +++ OCN_tasks_cpl_bmrk=120 +++ ICE_tasks_cpl_bmrk=48 +++ WAV_tasks_cpl_bmrk=100 +++ WLCLK_dflt=30 +++ export WLCLK=30 +++ WLCLK=30 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=027 ++ TEST_NR=027 ++ export JBNME=compile_027 ++ JBNME=compile_027 ++ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_027 ++ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_027 +++ date +%s ++ echo -n 'compile_027, 1681919689,' ++ source rt_utils.sh +++ set -eu +++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] +++ OPNREQ_TEST=false +++ qsub_id=0 +++ slurm_id=0 +++ bsub_id=0 ++ source atparse.bash ++ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_027 ++ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_027 ++ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_027 ++ [[ pbs = \s\l\u\r\m ]] ++ [[ pbs = \l\s\f ]] ++ [[ pbs = \p\b\s ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +Job id 9507178 +TEST 027 compile is waiting to enter the queue +TEST 027 compile is submitted +1 min. TEST 027 compile is waiting in a queue, status: Q jobid 9507178 +2 min. TEST 027 compile is waiting in a queue, status: Q jobid 9507178 +3 min. TEST 027 compile is waiting in a queue, status: Q jobid 9507178 +4 min. TEST 027 compile is running, status: R jobid 9507178 +5 min. TEST 027 compile is running, status: R jobid 9507178 +qstat: 9507178.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information +qstat: 9507178.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information +6 min. TEST 027 compile is finished, status: - jobid 9507178 ++ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_027.exe +-rwxr-xr-x 1 jongkim ncar 220506216 Apr 19 15:59 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_027.exe ++ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_027/compile_027_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel ++ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_027/job_timestamp.txt ++ remove_fail_test ++ echo 'Removing test failure flag file for compile_027' +Removing test failure flag file for compile_027 ++ [[ false == true ]] ++ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_027 +++ date +%s ++ echo ' 1681920007, 1' ++ elapsed=318 ++ echo 'Elapsed time 318 seconds. Compile 027' +Elapsed time 318 seconds. Compile 027 ++ '[' 0 -eq 0 ']' +Compile 027 elapsed time 104 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release ++ echo PID=50604 +PID=50604 ++ SECONDS=0 ++ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT ++ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT ++ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM ++ [[ 4 != 4 ]] ++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 ++ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 ++ export 'MAKE_OPT=-DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km' ++ MAKE_OPT='-DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km' ++ export COMPILE_NR=028 ++ COMPILE_NR=028 ++ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ OPNREQ_TEST=false ++ remove_fail_test ++ echo 'Removing test failure flag file for compile_028' +Removing test failure flag file for compile_028 ++ [[ false == true ]] ++ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_028 ++ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_028.env ]] ++ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_028.env +++ export JOB_NR=188 +++ JOB_NR=188 +++ export COMPILE_NR=028 +++ COMPILE_NR=028 +++ export MACHINE_ID=cheyenne.intel +++ MACHINE_ID=cheyenne.intel +++ export RT_COMPILER=intel +++ RT_COMPILER=intel +++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests +++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests +++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel +++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel +++ export SCHEDULER=pbs +++ SCHEDULER=pbs +++ export ACCNR=NRAL0032 +++ ACCNR=NRAL0032 +++ export QUEUE=regular +++ QUEUE=regular +++ export PARTITION= +++ PARTITION= +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log +++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log +++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel +++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel ++ source default_vars.sh +++ THRD=1 +++ INPES_atmaero=4 +++ JNPES_atmaero=8 +++ WPG_atmaero=6 +++ THRD_cpl_atmw=1 +++ INPES_cpl_atmw=3 +++ JNPES_cpl_atmw=8 +++ WPG_cpl_atmw=6 +++ WAV_tasks_cpl_atmw=30 +++ WAV_thrds_cpl_atmw=1 +++ THRD_cpl_c48=1 +++ INPES_cpl_c48=1 +++ JNPES_cpl_c48=1 +++ WPG_cpl_c48=6 +++ OCN_tasks_cpl_c48=4 +++ ICE_tasks_cpl_c48=4 +++ THRD_cpl_dflt=1 +++ INPES_cpl_dflt=3 +++ JNPES_cpl_dflt=8 +++ WPG_cpl_dflt=6 +++ OCN_tasks_cpl_dflt=20 +++ ICE_tasks_cpl_dflt=10 +++ WAV_tasks_cpl_dflt=20 +++ THRD_cpl_thrd=2 +++ INPES_cpl_thrd=3 +++ JNPES_cpl_thrd=4 +++ WPG_cpl_thrd=6 +++ OCN_tasks_cpl_thrd=20 +++ OCN_thrds_cpl_thrd=1 +++ ICE_tasks_cpl_thrd=10 +++ ICE_thrds_cpl_thrd=1 +++ WAV_tasks_cpl_thrd=12 +++ WAV_thrds_cpl_thrd=2 +++ THRD_cpl_dcmp=1 +++ INPES_cpl_dcmp=4 +++ JNPES_cpl_dcmp=6 +++ WPG_cpl_dcmp=6 +++ OCN_tasks_cpl_dcmp=20 +++ ICE_tasks_cpl_dcmp=10 +++ WAV_tasks_cpl_dcmp=20 +++ THRD_cpl_mpi=1 +++ INPES_cpl_mpi=4 +++ JNPES_cpl_mpi=8 +++ WPG_cpl_mpi=6 +++ OCN_tasks_cpl_mpi=34 +++ ICE_tasks_cpl_mpi=20 +++ WAV_tasks_cpl_mpi=28 +++ THRD_cpl_bmrk=2 +++ INPES_cpl_bmrk=8 +++ JNPES_cpl_bmrk=8 +++ WPG_cpl_bmrk=48 +++ OCN_tasks_cpl_bmrk=120 +++ OCN_thrds_cpl_bmrk=1 +++ ICE_tasks_cpl_bmrk=48 +++ ICE_thrds_cpl_bmrk=1 +++ WAV_tasks_cpl_bmrk=80 +++ WAV_thrds_cpl_bmrk=2 +++ THRD_cpl_c192=2 +++ INPES_cpl_c192=6 +++ JNPES_cpl_c192=8 +++ WPG_cpl_c192=12 +++ OCN_tasks_cpl_c192=60 +++ ICE_tasks_cpl_c192=24 +++ WAV_tasks_cpl_c192=80 +++ ATM_compute_tasks_cdeps_100=12 +++ OCN_tasks_cdeps_100=16 +++ ICE_tasks_cdeps_100=12 +++ ATM_compute_tasks_cdeps_025=40 +++ OCN_tasks_cdeps_025=120 +++ ICE_tasks_cdeps_025=48 +++ INPES_aqm=33 +++ JNPES_aqm=8 +++ aqm_omp_num_threads=1 +++ atm_omp_num_threads=1 +++ chm_omp_num_threads=1 +++ ice_omp_num_threads=1 +++ lnd_omp_num_threads=1 +++ med_omp_num_threads=1 +++ ocn_omp_num_threads=1 +++ wav_omp_num_threads=1 +++ [[ cheyenne.intel = wcoss2.* ]] +++ [[ cheyenne.intel = acorn.* ]] +++ [[ cheyenne.intel = orion.* ]] +++ [[ cheyenne.intel = hera.* ]] +++ [[ cheyenne.intel = linux.* ]] +++ [[ cheyenne.intel = jet.* ]] +++ [[ cheyenne.intel = s4.* ]] +++ [[ cheyenne.intel = gaea.* ]] +++ [[ cheyenne.intel = cheyenne.* ]] +++ TPN=36 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ INPES_c384=8 +++ JNPES_c384=6 +++ THRD_c384=2 +++ INPES_c768=8 +++ JNPES_c768=16 +++ THRD_c768=2 +++ THRD_cpl_atmw_gdas=3 +++ INPES_cpl_atmw_gdas=6 +++ JNPES_cpl_atmw_gdas=8 +++ WPG_cpl_atmw_gdas=24 +++ WAV_tasks_atmw_gdas=264 +++ THRD_cpl_dflt=1 +++ INPES_cpl_dflt=6 +++ JNPES_cpl_dflt=8 +++ WPG_cpl_dflt=6 +++ OCN_tasks_cpl_dflt=20 +++ ICE_tasks_cpl_dflt=10 +++ WAV_tasks_cpl_dflt=20 +++ THRD_cpl_thrd=2 +++ INPES_cpl_thrd=6 +++ JNPES_cpl_thrd=4 +++ WPG_cpl_thrd=6 +++ OCN_tasks_cpl_thrd=20 +++ ICE_tasks_cpl_thrd=10 +++ WAV_tasks_cpl_thrd=20 +++ THRD_cpl_dcmp=1 +++ INPES_cpl_dcmp=4 +++ JNPES_cpl_dcmp=12 +++ WPG_cpl_dcmp=6 +++ OCN_tasks_cpl_dcmp=20 +++ ICE_tasks_cpl_dcmp=10 +++ WAV_tasks_cpl_dcmp=20 +++ THRD_cpl_mpi=1 +++ INPES_cpl_mpi=6 +++ JNPES_cpl_mpi=12 +++ WPG_cpl_mpi=6 +++ OCN_tasks_cpl_mpi=24 +++ ICE_tasks_cpl_mpi=12 +++ WAV_tasks_cpl_mpi=24 +++ THRD_cpl_bmrk=2 +++ INPES_cpl_bmrk=12 +++ JNPES_cpl_bmrk=8 +++ WPG_cpl_bmrk=48 +++ OCN_tasks_cpl_bmrk=120 +++ ICE_tasks_cpl_bmrk=48 +++ WAV_tasks_cpl_bmrk=100 +++ WLCLK_dflt=30 +++ export WLCLK=30 +++ WLCLK=30 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=028 ++ TEST_NR=028 ++ export JBNME=compile_028 ++ JBNME=compile_028 ++ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_028 ++ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_028 +++ date +%s ++ echo -n 'compile_028, 1681919702,' ++ source rt_utils.sh +++ set -eu +++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] +++ OPNREQ_TEST=false +++ qsub_id=0 +++ slurm_id=0 +++ bsub_id=0 ++ source atparse.bash ++ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_028 ++ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_028 ++ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_028 ++ [[ pbs = \s\l\u\r\m ]] ++ [[ pbs = \l\s\f ]] ++ [[ pbs = \p\b\s ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +Job id 9507181 +TEST 028 compile is waiting to enter the queue +TEST 028 compile is submitted +1 min. TEST 028 compile is waiting in a queue, status: Q jobid 9507181 +2 min. TEST 028 compile is waiting in a queue, status: Q jobid 9507181 +3 min. TEST 028 compile is waiting in a queue, status: Q jobid 9507181 +4 min. TEST 028 compile is waiting in a queue, status: Q jobid 9507181 +5 min. TEST 028 compile is running, status: R jobid 9507181 +6 min. TEST 028 compile is running, status: R jobid 9507181 +7 min. TEST 028 compile is running, status: R jobid 9507181 +8 min. TEST 028 compile is running, status: R jobid 9507181 +9 min. TEST 028 compile is running, status: R jobid 9507181 +10 min. TEST 028 compile is running, status: R jobid 9507181 +11 min. TEST 028 compile is running, status: R jobid 9507181 +12 min. TEST 028 compile is running, status: R jobid 9507181 +13 min. TEST 028 compile is running, status: R jobid 9507181 +14 min. TEST 028 compile is running, status: R jobid 9507181 +15 min. TEST 028 compile is running, status: R jobid 9507181 +16 min. TEST 028 compile is running, status: R jobid 9507181 +17 min. TEST 028 compile is running, status: R jobid 9507181 +18 min. TEST 028 compile is running, status: R jobid 9507181 +19 min. TEST 028 compile is running, status: R jobid 9507181 +20 min. TEST 028 compile is running, status: R jobid 9507181 +qstat: 9507181.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information +qstat: 9507181.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information +21 min. TEST 028 compile is finished, status: - jobid 9507181 ++ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_028.exe +-rwxr-xr-x 1 jongkim ncar 283964880 Apr 19 16:14 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_028.exe ++ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_028/compile_028_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel ++ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_028/job_timestamp.txt ++ remove_fail_test ++ echo 'Removing test failure flag file for compile_028' +Removing test failure flag file for compile_028 ++ [[ false == true ]] ++ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_028 +++ date +%s ++ echo ' 1681920929, 1' ++ elapsed=1227 ++ echo 'Elapsed time 1227 seconds. Compile 028' +Elapsed time 1227 seconds. Compile 028 ++ '[' 0 -eq 0 ']' +Compile 028 elapsed time 961 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release ++ echo PID=64019 +PID=64019 ++ SECONDS=0 ++ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT ++ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT ++ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM ++ [[ 4 != 4 ]] ++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 ++ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 ++ export 'MAKE_OPT=-DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON' ++ MAKE_OPT='-DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON' ++ export COMPILE_NR=029 ++ COMPILE_NR=029 ++ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ OPNREQ_TEST=false ++ remove_fail_test ++ echo 'Removing test failure flag file for compile_029' +Removing test failure flag file for compile_029 ++ [[ false == true ]] ++ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_029 ++ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_029.env ]] ++ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_029.env +++ export JOB_NR=190 +++ JOB_NR=190 +++ export COMPILE_NR=029 +++ COMPILE_NR=029 +++ export MACHINE_ID=cheyenne.intel +++ MACHINE_ID=cheyenne.intel +++ export RT_COMPILER=intel +++ RT_COMPILER=intel +++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests +++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests +++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel +++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel +++ export SCHEDULER=pbs +++ SCHEDULER=pbs +++ export ACCNR=NRAL0032 +++ ACCNR=NRAL0032 +++ export QUEUE=regular +++ QUEUE=regular +++ export PARTITION= +++ PARTITION= +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log +++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log +++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel +++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel ++ source default_vars.sh +++ THRD=1 +++ INPES_atmaero=4 +++ JNPES_atmaero=8 +++ WPG_atmaero=6 +++ THRD_cpl_atmw=1 +++ INPES_cpl_atmw=3 +++ JNPES_cpl_atmw=8 +++ WPG_cpl_atmw=6 +++ WAV_tasks_cpl_atmw=30 +++ WAV_thrds_cpl_atmw=1 +++ THRD_cpl_c48=1 +++ INPES_cpl_c48=1 +++ JNPES_cpl_c48=1 +++ WPG_cpl_c48=6 +++ OCN_tasks_cpl_c48=4 +++ ICE_tasks_cpl_c48=4 +++ THRD_cpl_dflt=1 +++ INPES_cpl_dflt=3 +++ JNPES_cpl_dflt=8 +++ WPG_cpl_dflt=6 +++ OCN_tasks_cpl_dflt=20 +++ ICE_tasks_cpl_dflt=10 +++ WAV_tasks_cpl_dflt=20 +++ THRD_cpl_thrd=2 +++ INPES_cpl_thrd=3 +++ JNPES_cpl_thrd=4 +++ WPG_cpl_thrd=6 +++ OCN_tasks_cpl_thrd=20 +++ OCN_thrds_cpl_thrd=1 +++ ICE_tasks_cpl_thrd=10 +++ ICE_thrds_cpl_thrd=1 +++ WAV_tasks_cpl_thrd=12 +++ WAV_thrds_cpl_thrd=2 +++ THRD_cpl_dcmp=1 +++ INPES_cpl_dcmp=4 +++ JNPES_cpl_dcmp=6 +++ WPG_cpl_dcmp=6 +++ OCN_tasks_cpl_dcmp=20 +++ ICE_tasks_cpl_dcmp=10 +++ WAV_tasks_cpl_dcmp=20 +++ THRD_cpl_mpi=1 +++ INPES_cpl_mpi=4 +++ JNPES_cpl_mpi=8 +++ WPG_cpl_mpi=6 +++ OCN_tasks_cpl_mpi=34 +++ ICE_tasks_cpl_mpi=20 +++ WAV_tasks_cpl_mpi=28 +++ THRD_cpl_bmrk=2 +++ INPES_cpl_bmrk=8 +++ JNPES_cpl_bmrk=8 +++ WPG_cpl_bmrk=48 +++ OCN_tasks_cpl_bmrk=120 +++ OCN_thrds_cpl_bmrk=1 +++ ICE_tasks_cpl_bmrk=48 +++ ICE_thrds_cpl_bmrk=1 +++ WAV_tasks_cpl_bmrk=80 +++ WAV_thrds_cpl_bmrk=2 +++ THRD_cpl_c192=2 +++ INPES_cpl_c192=6 +++ JNPES_cpl_c192=8 +++ WPG_cpl_c192=12 +++ OCN_tasks_cpl_c192=60 +++ ICE_tasks_cpl_c192=24 +++ WAV_tasks_cpl_c192=80 +++ ATM_compute_tasks_cdeps_100=12 +++ OCN_tasks_cdeps_100=16 +++ ICE_tasks_cdeps_100=12 +++ ATM_compute_tasks_cdeps_025=40 +++ OCN_tasks_cdeps_025=120 +++ ICE_tasks_cdeps_025=48 +++ INPES_aqm=33 +++ JNPES_aqm=8 +++ aqm_omp_num_threads=1 +++ atm_omp_num_threads=1 +++ chm_omp_num_threads=1 +++ ice_omp_num_threads=1 +++ lnd_omp_num_threads=1 +++ med_omp_num_threads=1 +++ ocn_omp_num_threads=1 +++ wav_omp_num_threads=1 +++ [[ cheyenne.intel = wcoss2.* ]] +++ [[ cheyenne.intel = acorn.* ]] +++ [[ cheyenne.intel = orion.* ]] +++ [[ cheyenne.intel = hera.* ]] +++ [[ cheyenne.intel = linux.* ]] +++ [[ cheyenne.intel = jet.* ]] +++ [[ cheyenne.intel = s4.* ]] +++ [[ cheyenne.intel = gaea.* ]] +++ [[ cheyenne.intel = cheyenne.* ]] +++ TPN=36 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ INPES_c384=8 +++ JNPES_c384=6 +++ THRD_c384=2 +++ INPES_c768=8 +++ JNPES_c768=16 +++ THRD_c768=2 +++ THRD_cpl_atmw_gdas=3 +++ INPES_cpl_atmw_gdas=6 +++ JNPES_cpl_atmw_gdas=8 +++ WPG_cpl_atmw_gdas=24 +++ WAV_tasks_atmw_gdas=264 +++ THRD_cpl_dflt=1 +++ INPES_cpl_dflt=6 +++ JNPES_cpl_dflt=8 +++ WPG_cpl_dflt=6 +++ OCN_tasks_cpl_dflt=20 +++ ICE_tasks_cpl_dflt=10 +++ WAV_tasks_cpl_dflt=20 +++ THRD_cpl_thrd=2 +++ INPES_cpl_thrd=6 +++ JNPES_cpl_thrd=4 +++ WPG_cpl_thrd=6 +++ OCN_tasks_cpl_thrd=20 +++ ICE_tasks_cpl_thrd=10 +++ WAV_tasks_cpl_thrd=20 +++ THRD_cpl_dcmp=1 +++ INPES_cpl_dcmp=4 +++ JNPES_cpl_dcmp=12 +++ WPG_cpl_dcmp=6 +++ OCN_tasks_cpl_dcmp=20 +++ ICE_tasks_cpl_dcmp=10 +++ WAV_tasks_cpl_dcmp=20 +++ THRD_cpl_mpi=1 +++ INPES_cpl_mpi=6 +++ JNPES_cpl_mpi=12 +++ WPG_cpl_mpi=6 +++ OCN_tasks_cpl_mpi=24 +++ ICE_tasks_cpl_mpi=12 +++ WAV_tasks_cpl_mpi=24 +++ THRD_cpl_bmrk=2 +++ INPES_cpl_bmrk=12 +++ JNPES_cpl_bmrk=8 +++ WPG_cpl_bmrk=48 +++ OCN_tasks_cpl_bmrk=120 +++ ICE_tasks_cpl_bmrk=48 +++ WAV_tasks_cpl_bmrk=100 +++ WLCLK_dflt=30 +++ export WLCLK=30 +++ WLCLK=30 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=029 ++ TEST_NR=029 ++ export JBNME=compile_029 ++ JBNME=compile_029 ++ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_029 ++ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_029 +++ date +%s ++ echo -n 'compile_029, 1681919882,' ++ source rt_utils.sh +++ set -eu +++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] +++ OPNREQ_TEST=false +++ qsub_id=0 +++ slurm_id=0 +++ bsub_id=0 ++ source atparse.bash ++ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_029 ++ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_029 ++ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_029 ++ [[ pbs = \s\l\u\r\m ]] ++ [[ pbs = \l\s\f ]] ++ [[ pbs = \p\b\s ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +Job id 9507198 +TEST 029 compile is waiting to enter the queue +TEST 029 compile is submitted +1 min. TEST 029 compile is waiting in a queue, status: Q jobid 9507198 +2 min. TEST 029 compile is waiting in a queue, status: Q jobid 9507198 +3 min. TEST 029 compile is waiting in a queue, status: Q jobid 9507198 +4 min. TEST 029 compile is waiting in a queue, status: Q jobid 9507198 +5 min. TEST 029 compile is waiting in a queue, status: Q jobid 9507198 +6 min. TEST 029 compile is running, status: R jobid 9507198 +7 min. TEST 029 compile is running, status: R jobid 9507198 +8 min. TEST 029 compile is running, status: R jobid 9507198 +9 min. TEST 029 compile is running, status: R jobid 9507198 +10 min. TEST 029 compile is running, status: R jobid 9507198 +11 min. TEST 029 compile is running, status: R jobid 9507198 +12 min. TEST 029 compile is running, status: R jobid 9507198 +13 min. TEST 029 compile is running, status: R jobid 9507198 +14 min. TEST 029 compile is running, status: R jobid 9507198 +15 min. TEST 029 compile is running, status: R jobid 9507198 +16 min. TEST 029 compile is running, status: R jobid 9507198 +17 min. TEST 029 compile is running, status: R jobid 9507198 +18 min. TEST 029 compile is running, status: R jobid 9507198 +19 min. TEST 029 compile is running, status: R jobid 9507198 +20 min. TEST 029 compile is running, status: R jobid 9507198 +21 min. TEST 029 compile is running, status: R jobid 9507198 +qstat: 9507198.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information +qstat: 9507198.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information +22 min. TEST 029 compile is finished, status: - jobid 9507198 ++ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_029.exe +-rwxr-xr-x 1 jongkim ncar 283794768 Apr 19 16:19 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_029.exe ++ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_029/compile_029_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel ++ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_029/job_timestamp.txt ++ remove_fail_test ++ echo 'Removing test failure flag file for compile_029' +Removing test failure flag file for compile_029 ++ [[ false == true ]] ++ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_029 +++ date +%s ++ echo ' 1681921156, 1' ++ elapsed=1274 ++ echo 'Elapsed time 1274 seconds. Compile 029' +Elapsed time 1274 seconds. Compile 029 ++ '[' 0 -eq 0 ']' +Compile 029 elapsed time 1006 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release ++ echo PID=65756 +PID=65756 ++ SECONDS=0 ++ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT ++ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT ++ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM ++ [[ 4 != 4 ]] ++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 ++ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 ++ export 'MAKE_OPT=-DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON' ++ MAKE_OPT='-DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON' ++ export COMPILE_NR=030 ++ COMPILE_NR=030 ++ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ OPNREQ_TEST=false ++ remove_fail_test ++ echo 'Removing test failure flag file for compile_030' +Removing test failure flag file for compile_030 ++ [[ false == true ]] ++ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_030 ++ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_030.env ]] ++ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_030.env +++ export JOB_NR=192 +++ JOB_NR=192 +++ export COMPILE_NR=030 +++ COMPILE_NR=030 +++ export MACHINE_ID=cheyenne.intel +++ MACHINE_ID=cheyenne.intel +++ export RT_COMPILER=intel +++ RT_COMPILER=intel +++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests +++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests +++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel +++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel +++ export SCHEDULER=pbs +++ SCHEDULER=pbs +++ export ACCNR=NRAL0032 +++ ACCNR=NRAL0032 +++ export QUEUE=regular +++ QUEUE=regular +++ export PARTITION= +++ PARTITION= +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log +++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log +++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel +++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel ++ source default_vars.sh +++ THRD=1 +++ INPES_atmaero=4 +++ JNPES_atmaero=8 +++ WPG_atmaero=6 +++ THRD_cpl_atmw=1 +++ INPES_cpl_atmw=3 +++ JNPES_cpl_atmw=8 +++ WPG_cpl_atmw=6 +++ WAV_tasks_cpl_atmw=30 +++ WAV_thrds_cpl_atmw=1 +++ THRD_cpl_c48=1 +++ INPES_cpl_c48=1 +++ JNPES_cpl_c48=1 +++ WPG_cpl_c48=6 +++ OCN_tasks_cpl_c48=4 +++ ICE_tasks_cpl_c48=4 +++ THRD_cpl_dflt=1 +++ INPES_cpl_dflt=3 +++ JNPES_cpl_dflt=8 +++ WPG_cpl_dflt=6 +++ OCN_tasks_cpl_dflt=20 +++ ICE_tasks_cpl_dflt=10 +++ WAV_tasks_cpl_dflt=20 +++ THRD_cpl_thrd=2 +++ INPES_cpl_thrd=3 +++ JNPES_cpl_thrd=4 +++ WPG_cpl_thrd=6 +++ OCN_tasks_cpl_thrd=20 +++ OCN_thrds_cpl_thrd=1 +++ ICE_tasks_cpl_thrd=10 +++ ICE_thrds_cpl_thrd=1 +++ WAV_tasks_cpl_thrd=12 +++ WAV_thrds_cpl_thrd=2 +++ THRD_cpl_dcmp=1 +++ INPES_cpl_dcmp=4 +++ JNPES_cpl_dcmp=6 +++ WPG_cpl_dcmp=6 +++ OCN_tasks_cpl_dcmp=20 +++ ICE_tasks_cpl_dcmp=10 +++ WAV_tasks_cpl_dcmp=20 +++ THRD_cpl_mpi=1 +++ INPES_cpl_mpi=4 +++ JNPES_cpl_mpi=8 +++ WPG_cpl_mpi=6 +++ OCN_tasks_cpl_mpi=34 +++ ICE_tasks_cpl_mpi=20 +++ WAV_tasks_cpl_mpi=28 +++ THRD_cpl_bmrk=2 +++ INPES_cpl_bmrk=8 +++ JNPES_cpl_bmrk=8 +++ WPG_cpl_bmrk=48 +++ OCN_tasks_cpl_bmrk=120 +++ OCN_thrds_cpl_bmrk=1 +++ ICE_tasks_cpl_bmrk=48 +++ ICE_thrds_cpl_bmrk=1 +++ WAV_tasks_cpl_bmrk=80 +++ WAV_thrds_cpl_bmrk=2 +++ THRD_cpl_c192=2 +++ INPES_cpl_c192=6 +++ JNPES_cpl_c192=8 +++ WPG_cpl_c192=12 +++ OCN_tasks_cpl_c192=60 +++ ICE_tasks_cpl_c192=24 +++ WAV_tasks_cpl_c192=80 +++ ATM_compute_tasks_cdeps_100=12 +++ OCN_tasks_cdeps_100=16 +++ ICE_tasks_cdeps_100=12 +++ ATM_compute_tasks_cdeps_025=40 +++ OCN_tasks_cdeps_025=120 +++ ICE_tasks_cdeps_025=48 +++ INPES_aqm=33 +++ JNPES_aqm=8 +++ aqm_omp_num_threads=1 +++ atm_omp_num_threads=1 +++ chm_omp_num_threads=1 +++ ice_omp_num_threads=1 +++ lnd_omp_num_threads=1 +++ med_omp_num_threads=1 +++ ocn_omp_num_threads=1 +++ wav_omp_num_threads=1 +++ [[ cheyenne.intel = wcoss2.* ]] +++ [[ cheyenne.intel = acorn.* ]] +++ [[ cheyenne.intel = orion.* ]] +++ [[ cheyenne.intel = hera.* ]] +++ [[ cheyenne.intel = linux.* ]] +++ [[ cheyenne.intel = jet.* ]] +++ [[ cheyenne.intel = s4.* ]] +++ [[ cheyenne.intel = gaea.* ]] +++ [[ cheyenne.intel = cheyenne.* ]] +++ TPN=36 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ INPES_c384=8 +++ JNPES_c384=6 +++ THRD_c384=2 +++ INPES_c768=8 +++ JNPES_c768=16 +++ THRD_c768=2 +++ THRD_cpl_atmw_gdas=3 +++ INPES_cpl_atmw_gdas=6 +++ JNPES_cpl_atmw_gdas=8 +++ WPG_cpl_atmw_gdas=24 +++ WAV_tasks_atmw_gdas=264 +++ THRD_cpl_dflt=1 +++ INPES_cpl_dflt=6 +++ JNPES_cpl_dflt=8 +++ WPG_cpl_dflt=6 +++ OCN_tasks_cpl_dflt=20 +++ ICE_tasks_cpl_dflt=10 +++ WAV_tasks_cpl_dflt=20 +++ THRD_cpl_thrd=2 +++ INPES_cpl_thrd=6 +++ JNPES_cpl_thrd=4 +++ WPG_cpl_thrd=6 +++ OCN_tasks_cpl_thrd=20 +++ ICE_tasks_cpl_thrd=10 +++ WAV_tasks_cpl_thrd=20 +++ THRD_cpl_dcmp=1 +++ INPES_cpl_dcmp=4 +++ JNPES_cpl_dcmp=12 +++ WPG_cpl_dcmp=6 +++ OCN_tasks_cpl_dcmp=20 +++ ICE_tasks_cpl_dcmp=10 +++ WAV_tasks_cpl_dcmp=20 +++ THRD_cpl_mpi=1 +++ INPES_cpl_mpi=6 +++ JNPES_cpl_mpi=12 +++ WPG_cpl_mpi=6 +++ OCN_tasks_cpl_mpi=24 +++ ICE_tasks_cpl_mpi=12 +++ WAV_tasks_cpl_mpi=24 +++ THRD_cpl_bmrk=2 +++ INPES_cpl_bmrk=12 +++ JNPES_cpl_bmrk=8 +++ WPG_cpl_bmrk=48 +++ OCN_tasks_cpl_bmrk=120 +++ ICE_tasks_cpl_bmrk=48 +++ WAV_tasks_cpl_bmrk=100 +++ WLCLK_dflt=30 +++ export WLCLK=30 +++ WLCLK=30 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=030 ++ TEST_NR=030 ++ export JBNME=compile_030 ++ JBNME=compile_030 ++ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_030 ++ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_030 +++ date +%s ++ echo -n 'compile_030, 1681919931,' ++ source rt_utils.sh +++ set -eu +++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] +++ OPNREQ_TEST=false +++ qsub_id=0 +++ slurm_id=0 +++ bsub_id=0 ++ source atparse.bash ++ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_030 ++ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_030 ++ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_030 ++ [[ pbs = \s\l\u\r\m ]] ++ [[ pbs = \l\s\f ]] ++ [[ pbs = \p\b\s ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +Job id 9507202 +TEST 030 compile is waiting to enter the queue +TEST 030 compile is submitted +1 min. TEST 030 compile is waiting in a queue, status: Q jobid 9507202 +2 min. TEST 030 compile is waiting in a queue, status: Q jobid 9507202 +3 min. TEST 030 compile is waiting in a queue, status: Q jobid 9507202 +4 min. TEST 030 compile is waiting in a queue, status: Q jobid 9507202 +5 min. TEST 030 compile is running, status: R jobid 9507202 +6 min. TEST 030 compile is running, status: R jobid 9507202 +7 min. TEST 030 compile is running, status: R jobid 9507202 +8 min. TEST 030 compile is running, status: R jobid 9507202 +9 min. TEST 030 compile is running, status: R jobid 9507202 +10 min. TEST 030 compile is running, status: R jobid 9507202 +11 min. TEST 030 compile is running, status: R jobid 9507202 +12 min. TEST 030 compile is running, status: R jobid 9507202 +13 min. TEST 030 compile is running, status: R jobid 9507202 +14 min. TEST 030 compile is running, status: R jobid 9507202 +15 min. TEST 030 compile is running, status: R jobid 9507202 +16 min. TEST 030 compile is running, status: R jobid 9507202 +17 min. TEST 030 compile is running, status: R jobid 9507202 +18 min. TEST 030 compile is running, status: R jobid 9507202 +19 min. TEST 030 compile is running, status: R jobid 9507202 +20 min. TEST 030 compile is running, status: R jobid 9507202 +21 min. TEST 030 compile is running, status: R jobid 9507202 +qstat: 9507202.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information +qstat: 9507202.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information +22 min. TEST 030 compile is finished, status: - jobid 9507202 ++ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_030.exe +-rwxr-xr-x 1 jongkim ncar 283659832 Apr 19 16:19 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_030.exe ++ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_030/compile_030_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel ++ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_030/job_timestamp.txt ++ remove_fail_test ++ echo 'Removing test failure flag file for compile_030' +Removing test failure flag file for compile_030 ++ [[ false == true ]] ++ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_030 +++ date +%s ++ echo ' 1681921216, 1' ++ elapsed=1285 ++ echo 'Elapsed time 1285 seconds. Compile 030' +Elapsed time 1285 seconds. Compile 030 ++ '[' 0 -eq 0 ']' +Compile 030 elapsed time 1009 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release ++ echo PID=66428 +PID=66428 ++ SECONDS=0 ++ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT ++ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT ++ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM ++ [[ 4 != 4 ]] ++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 ++ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 ++ export 'MAKE_OPT=-DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON' ++ MAKE_OPT='-DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON' ++ export COMPILE_NR=031 ++ COMPILE_NR=031 ++ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ OPNREQ_TEST=false ++ remove_fail_test ++ echo 'Removing test failure flag file for compile_031' +Removing test failure flag file for compile_031 ++ [[ false == true ]] ++ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_031 ++ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_031.env ]] ++ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_031.env +++ export JOB_NR=194 +++ JOB_NR=194 +++ export COMPILE_NR=031 +++ COMPILE_NR=031 +++ export MACHINE_ID=cheyenne.intel +++ MACHINE_ID=cheyenne.intel +++ export RT_COMPILER=intel +++ RT_COMPILER=intel +++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests +++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests +++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel +++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel +++ export SCHEDULER=pbs +++ SCHEDULER=pbs +++ export ACCNR=NRAL0032 +++ ACCNR=NRAL0032 +++ export QUEUE=regular +++ QUEUE=regular +++ export PARTITION= +++ PARTITION= +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log +++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log +++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel +++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel ++ source default_vars.sh +++ THRD=1 +++ INPES_atmaero=4 +++ JNPES_atmaero=8 +++ WPG_atmaero=6 +++ THRD_cpl_atmw=1 +++ INPES_cpl_atmw=3 +++ JNPES_cpl_atmw=8 +++ WPG_cpl_atmw=6 +++ WAV_tasks_cpl_atmw=30 +++ WAV_thrds_cpl_atmw=1 +++ THRD_cpl_c48=1 +++ INPES_cpl_c48=1 +++ JNPES_cpl_c48=1 +++ WPG_cpl_c48=6 +++ OCN_tasks_cpl_c48=4 +++ ICE_tasks_cpl_c48=4 +++ THRD_cpl_dflt=1 +++ INPES_cpl_dflt=3 +++ JNPES_cpl_dflt=8 +++ WPG_cpl_dflt=6 +++ OCN_tasks_cpl_dflt=20 +++ ICE_tasks_cpl_dflt=10 +++ WAV_tasks_cpl_dflt=20 +++ THRD_cpl_thrd=2 +++ INPES_cpl_thrd=3 +++ JNPES_cpl_thrd=4 +++ WPG_cpl_thrd=6 +++ OCN_tasks_cpl_thrd=20 +++ OCN_thrds_cpl_thrd=1 +++ ICE_tasks_cpl_thrd=10 +++ ICE_thrds_cpl_thrd=1 +++ WAV_tasks_cpl_thrd=12 +++ WAV_thrds_cpl_thrd=2 +++ THRD_cpl_dcmp=1 +++ INPES_cpl_dcmp=4 +++ JNPES_cpl_dcmp=6 +++ WPG_cpl_dcmp=6 +++ OCN_tasks_cpl_dcmp=20 +++ ICE_tasks_cpl_dcmp=10 +++ WAV_tasks_cpl_dcmp=20 +++ THRD_cpl_mpi=1 +++ INPES_cpl_mpi=4 +++ JNPES_cpl_mpi=8 +++ WPG_cpl_mpi=6 +++ OCN_tasks_cpl_mpi=34 +++ ICE_tasks_cpl_mpi=20 +++ WAV_tasks_cpl_mpi=28 +++ THRD_cpl_bmrk=2 +++ INPES_cpl_bmrk=8 +++ JNPES_cpl_bmrk=8 +++ WPG_cpl_bmrk=48 +++ OCN_tasks_cpl_bmrk=120 +++ OCN_thrds_cpl_bmrk=1 +++ ICE_tasks_cpl_bmrk=48 +++ ICE_thrds_cpl_bmrk=1 +++ WAV_tasks_cpl_bmrk=80 +++ WAV_thrds_cpl_bmrk=2 +++ THRD_cpl_c192=2 +++ INPES_cpl_c192=6 +++ JNPES_cpl_c192=8 +++ WPG_cpl_c192=12 +++ OCN_tasks_cpl_c192=60 +++ ICE_tasks_cpl_c192=24 +++ WAV_tasks_cpl_c192=80 +++ ATM_compute_tasks_cdeps_100=12 +++ OCN_tasks_cdeps_100=16 +++ ICE_tasks_cdeps_100=12 +++ ATM_compute_tasks_cdeps_025=40 +++ OCN_tasks_cdeps_025=120 +++ ICE_tasks_cdeps_025=48 +++ INPES_aqm=33 +++ JNPES_aqm=8 +++ aqm_omp_num_threads=1 +++ atm_omp_num_threads=1 +++ chm_omp_num_threads=1 +++ ice_omp_num_threads=1 +++ lnd_omp_num_threads=1 +++ med_omp_num_threads=1 +++ ocn_omp_num_threads=1 +++ wav_omp_num_threads=1 +++ [[ cheyenne.intel = wcoss2.* ]] +++ [[ cheyenne.intel = acorn.* ]] +++ [[ cheyenne.intel = orion.* ]] +++ [[ cheyenne.intel = hera.* ]] +++ [[ cheyenne.intel = linux.* ]] +++ [[ cheyenne.intel = jet.* ]] +++ [[ cheyenne.intel = s4.* ]] +++ [[ cheyenne.intel = gaea.* ]] +++ [[ cheyenne.intel = cheyenne.* ]] +++ TPN=36 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ INPES_c384=8 +++ JNPES_c384=6 +++ THRD_c384=2 +++ INPES_c768=8 +++ JNPES_c768=16 +++ THRD_c768=2 +++ THRD_cpl_atmw_gdas=3 +++ INPES_cpl_atmw_gdas=6 +++ JNPES_cpl_atmw_gdas=8 +++ WPG_cpl_atmw_gdas=24 +++ WAV_tasks_atmw_gdas=264 +++ THRD_cpl_dflt=1 +++ INPES_cpl_dflt=6 +++ JNPES_cpl_dflt=8 +++ WPG_cpl_dflt=6 +++ OCN_tasks_cpl_dflt=20 +++ ICE_tasks_cpl_dflt=10 +++ WAV_tasks_cpl_dflt=20 +++ THRD_cpl_thrd=2 +++ INPES_cpl_thrd=6 +++ JNPES_cpl_thrd=4 +++ WPG_cpl_thrd=6 +++ OCN_tasks_cpl_thrd=20 +++ ICE_tasks_cpl_thrd=10 +++ WAV_tasks_cpl_thrd=20 +++ THRD_cpl_dcmp=1 +++ INPES_cpl_dcmp=4 +++ JNPES_cpl_dcmp=12 +++ WPG_cpl_dcmp=6 +++ OCN_tasks_cpl_dcmp=20 +++ ICE_tasks_cpl_dcmp=10 +++ WAV_tasks_cpl_dcmp=20 +++ THRD_cpl_mpi=1 +++ INPES_cpl_mpi=6 +++ JNPES_cpl_mpi=12 +++ WPG_cpl_mpi=6 +++ OCN_tasks_cpl_mpi=24 +++ ICE_tasks_cpl_mpi=12 +++ WAV_tasks_cpl_mpi=24 +++ THRD_cpl_bmrk=2 +++ INPES_cpl_bmrk=12 +++ JNPES_cpl_bmrk=8 +++ WPG_cpl_bmrk=48 +++ OCN_tasks_cpl_bmrk=120 +++ ICE_tasks_cpl_bmrk=48 +++ WAV_tasks_cpl_bmrk=100 +++ WLCLK_dflt=30 +++ export WLCLK=30 +++ WLCLK=30 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=031 ++ TEST_NR=031 ++ export JBNME=compile_031 ++ JBNME=compile_031 ++ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_031 ++ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_031 +++ date +%s ++ echo -n 'compile_031, 1681919945,' ++ source rt_utils.sh +++ set -eu +++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] +++ OPNREQ_TEST=false +++ qsub_id=0 +++ slurm_id=0 +++ bsub_id=0 ++ source atparse.bash ++ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_031 ++ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_031 ++ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_031 ++ [[ pbs = \s\l\u\r\m ]] ++ [[ pbs = \l\s\f ]] ++ [[ pbs = \p\b\s ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +Job id 9507203 +TEST 031 compile is waiting to enter the queue +TEST 031 compile is submitted +1 min. TEST 031 compile is waiting in a queue, status: Q jobid 9507203 +2 min. TEST 031 compile is waiting in a queue, status: Q jobid 9507203 +3 min. TEST 031 compile is waiting in a queue, status: Q jobid 9507203 +4 min. TEST 031 compile is waiting in a queue, status: Q jobid 9507203 +5 min. TEST 031 compile is running, status: R jobid 9507203 +6 min. TEST 031 compile is running, status: R jobid 9507203 +7 min. TEST 031 compile is running, status: R jobid 9507203 +8 min. TEST 031 compile is running, status: R jobid 9507203 +9 min. TEST 031 compile is running, status: R jobid 9507203 +10 min. TEST 031 compile is running, status: R jobid 9507203 +11 min. TEST 031 compile is running, status: R jobid 9507203 +12 min. TEST 031 compile is running, status: R jobid 9507203 +13 min. TEST 031 compile is running, status: R jobid 9507203 +14 min. TEST 031 compile is running, status: R jobid 9507203 +15 min. TEST 031 compile is running, status: R jobid 9507203 +16 min. TEST 031 compile is running, status: R jobid 9507203 +17 min. TEST 031 compile is running, status: R jobid 9507203 +18 min. TEST 031 compile is running, status: R jobid 9507203 +19 min. TEST 031 compile is running, status: R jobid 9507203 +qstat: 9507203.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information +qstat: 9507203.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information +20 min. TEST 031 compile is finished, status: - jobid 9507203 ++ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_031.exe +-rwxr-xr-x 1 jongkim ncar 360438480 Apr 19 16:17 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_031.exe ++ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_031/compile_031_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel ++ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_031/job_timestamp.txt ++ remove_fail_test ++ echo 'Removing test failure flag file for compile_031' +Removing test failure flag file for compile_031 ++ [[ false == true ]] ++ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_031 +++ date +%s ++ echo ' 1681921114, 1' ++ elapsed=1169 ++ echo 'Elapsed time 1169 seconds. Compile 031' +Elapsed time 1169 seconds. Compile 031 ++ '[' 0 -eq 0 ']' +Compile 031 elapsed time 910 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release ++ echo PID=66712 +PID=66712 ++ SECONDS=0 ++ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT ++ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT ++ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM ++ [[ 4 != 4 ]] ++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 ++ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 ++ export 'MAKE_OPT=-DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON' ++ MAKE_OPT='-DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON' ++ export COMPILE_NR=032 ++ COMPILE_NR=032 ++ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ OPNREQ_TEST=false ++ remove_fail_test ++ echo 'Removing test failure flag file for compile_032' +Removing test failure flag file for compile_032 ++ [[ false == true ]] ++ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_032 ++ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_032.env ]] ++ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_032.env +++ export JOB_NR=198 +++ JOB_NR=198 +++ export COMPILE_NR=032 +++ COMPILE_NR=032 +++ export MACHINE_ID=cheyenne.intel +++ MACHINE_ID=cheyenne.intel +++ export RT_COMPILER=intel +++ RT_COMPILER=intel +++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests +++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests +++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel +++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel +++ export SCHEDULER=pbs +++ SCHEDULER=pbs +++ export ACCNR=NRAL0032 +++ ACCNR=NRAL0032 +++ export QUEUE=regular +++ QUEUE=regular +++ export PARTITION= +++ PARTITION= +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log +++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log +++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel +++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel ++ source default_vars.sh +++ THRD=1 +++ INPES_atmaero=4 +++ JNPES_atmaero=8 +++ WPG_atmaero=6 +++ THRD_cpl_atmw=1 +++ INPES_cpl_atmw=3 +++ JNPES_cpl_atmw=8 +++ WPG_cpl_atmw=6 +++ WAV_tasks_cpl_atmw=30 +++ WAV_thrds_cpl_atmw=1 +++ THRD_cpl_c48=1 +++ INPES_cpl_c48=1 +++ JNPES_cpl_c48=1 +++ WPG_cpl_c48=6 +++ OCN_tasks_cpl_c48=4 +++ ICE_tasks_cpl_c48=4 +++ THRD_cpl_dflt=1 +++ INPES_cpl_dflt=3 +++ JNPES_cpl_dflt=8 +++ WPG_cpl_dflt=6 +++ OCN_tasks_cpl_dflt=20 +++ ICE_tasks_cpl_dflt=10 +++ WAV_tasks_cpl_dflt=20 +++ THRD_cpl_thrd=2 +++ INPES_cpl_thrd=3 +++ JNPES_cpl_thrd=4 +++ WPG_cpl_thrd=6 +++ OCN_tasks_cpl_thrd=20 +++ OCN_thrds_cpl_thrd=1 +++ ICE_tasks_cpl_thrd=10 +++ ICE_thrds_cpl_thrd=1 +++ WAV_tasks_cpl_thrd=12 +++ WAV_thrds_cpl_thrd=2 +++ THRD_cpl_dcmp=1 +++ INPES_cpl_dcmp=4 +++ JNPES_cpl_dcmp=6 +++ WPG_cpl_dcmp=6 +++ OCN_tasks_cpl_dcmp=20 +++ ICE_tasks_cpl_dcmp=10 +++ WAV_tasks_cpl_dcmp=20 +++ THRD_cpl_mpi=1 +++ INPES_cpl_mpi=4 +++ JNPES_cpl_mpi=8 +++ WPG_cpl_mpi=6 +++ OCN_tasks_cpl_mpi=34 +++ ICE_tasks_cpl_mpi=20 +++ WAV_tasks_cpl_mpi=28 +++ THRD_cpl_bmrk=2 +++ INPES_cpl_bmrk=8 +++ JNPES_cpl_bmrk=8 +++ WPG_cpl_bmrk=48 +++ OCN_tasks_cpl_bmrk=120 +++ OCN_thrds_cpl_bmrk=1 +++ ICE_tasks_cpl_bmrk=48 +++ ICE_thrds_cpl_bmrk=1 +++ WAV_tasks_cpl_bmrk=80 +++ WAV_thrds_cpl_bmrk=2 +++ THRD_cpl_c192=2 +++ INPES_cpl_c192=6 +++ JNPES_cpl_c192=8 +++ WPG_cpl_c192=12 +++ OCN_tasks_cpl_c192=60 +++ ICE_tasks_cpl_c192=24 +++ WAV_tasks_cpl_c192=80 +++ ATM_compute_tasks_cdeps_100=12 +++ OCN_tasks_cdeps_100=16 +++ ICE_tasks_cdeps_100=12 +++ ATM_compute_tasks_cdeps_025=40 +++ OCN_tasks_cdeps_025=120 +++ ICE_tasks_cdeps_025=48 +++ INPES_aqm=33 +++ JNPES_aqm=8 +++ aqm_omp_num_threads=1 +++ atm_omp_num_threads=1 +++ chm_omp_num_threads=1 +++ ice_omp_num_threads=1 +++ lnd_omp_num_threads=1 +++ med_omp_num_threads=1 +++ ocn_omp_num_threads=1 +++ wav_omp_num_threads=1 +++ [[ cheyenne.intel = wcoss2.* ]] +++ [[ cheyenne.intel = acorn.* ]] +++ [[ cheyenne.intel = orion.* ]] +++ [[ cheyenne.intel = hera.* ]] +++ [[ cheyenne.intel = linux.* ]] +++ [[ cheyenne.intel = jet.* ]] +++ [[ cheyenne.intel = s4.* ]] +++ [[ cheyenne.intel = gaea.* ]] +++ [[ cheyenne.intel = cheyenne.* ]] +++ TPN=36 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ INPES_c384=8 +++ JNPES_c384=6 +++ THRD_c384=2 +++ INPES_c768=8 +++ JNPES_c768=16 +++ THRD_c768=2 +++ THRD_cpl_atmw_gdas=3 +++ INPES_cpl_atmw_gdas=6 +++ JNPES_cpl_atmw_gdas=8 +++ WPG_cpl_atmw_gdas=24 +++ WAV_tasks_atmw_gdas=264 +++ THRD_cpl_dflt=1 +++ INPES_cpl_dflt=6 +++ JNPES_cpl_dflt=8 +++ WPG_cpl_dflt=6 +++ OCN_tasks_cpl_dflt=20 +++ ICE_tasks_cpl_dflt=10 +++ WAV_tasks_cpl_dflt=20 +++ THRD_cpl_thrd=2 +++ INPES_cpl_thrd=6 +++ JNPES_cpl_thrd=4 +++ WPG_cpl_thrd=6 +++ OCN_tasks_cpl_thrd=20 +++ ICE_tasks_cpl_thrd=10 +++ WAV_tasks_cpl_thrd=20 +++ THRD_cpl_dcmp=1 +++ INPES_cpl_dcmp=4 +++ JNPES_cpl_dcmp=12 +++ WPG_cpl_dcmp=6 +++ OCN_tasks_cpl_dcmp=20 +++ ICE_tasks_cpl_dcmp=10 +++ WAV_tasks_cpl_dcmp=20 +++ THRD_cpl_mpi=1 +++ INPES_cpl_mpi=6 +++ JNPES_cpl_mpi=12 +++ WPG_cpl_mpi=6 +++ OCN_tasks_cpl_mpi=24 +++ ICE_tasks_cpl_mpi=12 +++ WAV_tasks_cpl_mpi=24 +++ THRD_cpl_bmrk=2 +++ INPES_cpl_bmrk=12 +++ JNPES_cpl_bmrk=8 +++ WPG_cpl_bmrk=48 +++ OCN_tasks_cpl_bmrk=120 +++ ICE_tasks_cpl_bmrk=48 +++ WAV_tasks_cpl_bmrk=100 +++ WLCLK_dflt=30 +++ export WLCLK=30 +++ WLCLK=30 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=032 ++ TEST_NR=032 ++ export JBNME=compile_032 ++ JBNME=compile_032 ++ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_032 ++ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_032 +++ date +%s ++ echo -n 'compile_032, 1681919949,' ++ source rt_utils.sh +++ set -eu +++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] +++ OPNREQ_TEST=false +++ qsub_id=0 +++ slurm_id=0 +++ bsub_id=0 ++ source atparse.bash ++ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_032 ++ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_032 ++ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_032 ++ [[ pbs = \s\l\u\r\m ]] ++ [[ pbs = \l\s\f ]] ++ [[ pbs = \p\b\s ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +Job id 9507204 +TEST 032 compile is waiting to enter the queue +TEST 032 compile is submitted +1 min. TEST 032 compile is waiting in a queue, status: Q jobid 9507204 +2 min. TEST 032 compile is waiting in a queue, status: Q jobid 9507204 +3 min. TEST 032 compile is waiting in a queue, status: Q jobid 9507204 +4 min. TEST 032 compile is waiting in a queue, status: Q jobid 9507204 +5 min. TEST 032 compile is running, status: R jobid 9507204 +6 min. TEST 032 compile is running, status: R jobid 9507204 +7 min. TEST 032 compile is running, status: R jobid 9507204 +8 min. TEST 032 compile is running, status: R jobid 9507204 +9 min. TEST 032 compile is running, status: R jobid 9507204 +10 min. TEST 032 compile is running, status: R jobid 9507204 +11 min. TEST 032 compile is running, status: R jobid 9507204 +12 min. TEST 032 compile is running, status: R jobid 9507204 +13 min. TEST 032 compile is running, status: R jobid 9507204 +14 min. TEST 032 compile is running, status: R jobid 9507204 +15 min. TEST 032 compile is running, status: R jobid 9507204 +16 min. TEST 032 compile is running, status: R jobid 9507204 +17 min. TEST 032 compile is running, status: R jobid 9507204 +18 min. TEST 032 compile is running, status: R jobid 9507204 +19 min. TEST 032 compile is finished, status: E jobid 9507204 ++ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_032.exe +-rwxr-xr-x 1 jongkim ncar 277182056 Apr 19 16:17 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_032.exe ++ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_032/compile_032_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel ++ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_032/job_timestamp.txt ++ remove_fail_test ++ echo 'Removing test failure flag file for compile_032' +Removing test failure flag file for compile_032 ++ [[ false == true ]] ++ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_032 +++ date +%s ++ echo ' 1681921053, 1' ++ elapsed=1104 ++ echo 'Elapsed time 1104 seconds. Compile 032' +Elapsed time 1104 seconds. Compile 032 ++ '[' 0 -eq 0 ']' +Compile 032 elapsed time 902 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release ++ echo PID=71838 +PID=71838 ++ SECONDS=0 ++ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT ++ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT ++ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM ++ [[ 4 != 4 ]] ++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 ++ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 ++ export 'MAKE_OPT=-DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON' ++ MAKE_OPT='-DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON' ++ export COMPILE_NR=033 ++ COMPILE_NR=033 ++ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ OPNREQ_TEST=false ++ remove_fail_test ++ echo 'Removing test failure flag file for compile_033' +Removing test failure flag file for compile_033 ++ [[ false == true ]] ++ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_033 ++ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_033.env ]] ++ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_033.env +++ export JOB_NR=200 +++ JOB_NR=200 +++ export COMPILE_NR=033 +++ COMPILE_NR=033 +++ export MACHINE_ID=cheyenne.intel +++ MACHINE_ID=cheyenne.intel +++ export RT_COMPILER=intel +++ RT_COMPILER=intel +++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests +++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests +++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel +++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel +++ export SCHEDULER=pbs +++ SCHEDULER=pbs +++ export ACCNR=NRAL0032 +++ ACCNR=NRAL0032 +++ export QUEUE=regular +++ QUEUE=regular +++ export PARTITION= +++ PARTITION= +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log +++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log +++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel +++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel ++ source default_vars.sh +++ THRD=1 +++ INPES_atmaero=4 +++ JNPES_atmaero=8 +++ WPG_atmaero=6 +++ THRD_cpl_atmw=1 +++ INPES_cpl_atmw=3 +++ JNPES_cpl_atmw=8 +++ WPG_cpl_atmw=6 +++ WAV_tasks_cpl_atmw=30 +++ WAV_thrds_cpl_atmw=1 +++ THRD_cpl_c48=1 +++ INPES_cpl_c48=1 +++ JNPES_cpl_c48=1 +++ WPG_cpl_c48=6 +++ OCN_tasks_cpl_c48=4 +++ ICE_tasks_cpl_c48=4 +++ THRD_cpl_dflt=1 +++ INPES_cpl_dflt=3 +++ JNPES_cpl_dflt=8 +++ WPG_cpl_dflt=6 +++ OCN_tasks_cpl_dflt=20 +++ ICE_tasks_cpl_dflt=10 +++ WAV_tasks_cpl_dflt=20 +++ THRD_cpl_thrd=2 +++ INPES_cpl_thrd=3 +++ JNPES_cpl_thrd=4 +++ WPG_cpl_thrd=6 +++ OCN_tasks_cpl_thrd=20 +++ OCN_thrds_cpl_thrd=1 +++ ICE_tasks_cpl_thrd=10 +++ ICE_thrds_cpl_thrd=1 +++ WAV_tasks_cpl_thrd=12 +++ WAV_thrds_cpl_thrd=2 +++ THRD_cpl_dcmp=1 +++ INPES_cpl_dcmp=4 +++ JNPES_cpl_dcmp=6 +++ WPG_cpl_dcmp=6 +++ OCN_tasks_cpl_dcmp=20 +++ ICE_tasks_cpl_dcmp=10 +++ WAV_tasks_cpl_dcmp=20 +++ THRD_cpl_mpi=1 +++ INPES_cpl_mpi=4 +++ JNPES_cpl_mpi=8 +++ WPG_cpl_mpi=6 +++ OCN_tasks_cpl_mpi=34 +++ ICE_tasks_cpl_mpi=20 +++ WAV_tasks_cpl_mpi=28 +++ THRD_cpl_bmrk=2 +++ INPES_cpl_bmrk=8 +++ JNPES_cpl_bmrk=8 +++ WPG_cpl_bmrk=48 +++ OCN_tasks_cpl_bmrk=120 +++ OCN_thrds_cpl_bmrk=1 +++ ICE_tasks_cpl_bmrk=48 +++ ICE_thrds_cpl_bmrk=1 +++ WAV_tasks_cpl_bmrk=80 +++ WAV_thrds_cpl_bmrk=2 +++ THRD_cpl_c192=2 +++ INPES_cpl_c192=6 +++ JNPES_cpl_c192=8 +++ WPG_cpl_c192=12 +++ OCN_tasks_cpl_c192=60 +++ ICE_tasks_cpl_c192=24 +++ WAV_tasks_cpl_c192=80 +++ ATM_compute_tasks_cdeps_100=12 +++ OCN_tasks_cdeps_100=16 +++ ICE_tasks_cdeps_100=12 +++ ATM_compute_tasks_cdeps_025=40 +++ OCN_tasks_cdeps_025=120 +++ ICE_tasks_cdeps_025=48 +++ INPES_aqm=33 +++ JNPES_aqm=8 +++ aqm_omp_num_threads=1 +++ atm_omp_num_threads=1 +++ chm_omp_num_threads=1 +++ ice_omp_num_threads=1 +++ lnd_omp_num_threads=1 +++ med_omp_num_threads=1 +++ ocn_omp_num_threads=1 +++ wav_omp_num_threads=1 +++ [[ cheyenne.intel = wcoss2.* ]] +++ [[ cheyenne.intel = acorn.* ]] +++ [[ cheyenne.intel = orion.* ]] +++ [[ cheyenne.intel = hera.* ]] +++ [[ cheyenne.intel = linux.* ]] +++ [[ cheyenne.intel = jet.* ]] +++ [[ cheyenne.intel = s4.* ]] +++ [[ cheyenne.intel = gaea.* ]] +++ [[ cheyenne.intel = cheyenne.* ]] +++ TPN=36 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ INPES_c384=8 +++ JNPES_c384=6 +++ THRD_c384=2 +++ INPES_c768=8 +++ JNPES_c768=16 +++ THRD_c768=2 +++ THRD_cpl_atmw_gdas=3 +++ INPES_cpl_atmw_gdas=6 +++ JNPES_cpl_atmw_gdas=8 +++ WPG_cpl_atmw_gdas=24 +++ WAV_tasks_atmw_gdas=264 +++ THRD_cpl_dflt=1 +++ INPES_cpl_dflt=6 +++ JNPES_cpl_dflt=8 +++ WPG_cpl_dflt=6 +++ OCN_tasks_cpl_dflt=20 +++ ICE_tasks_cpl_dflt=10 +++ WAV_tasks_cpl_dflt=20 +++ THRD_cpl_thrd=2 +++ INPES_cpl_thrd=6 +++ JNPES_cpl_thrd=4 +++ WPG_cpl_thrd=6 +++ OCN_tasks_cpl_thrd=20 +++ ICE_tasks_cpl_thrd=10 +++ WAV_tasks_cpl_thrd=20 +++ THRD_cpl_dcmp=1 +++ INPES_cpl_dcmp=4 +++ JNPES_cpl_dcmp=12 +++ WPG_cpl_dcmp=6 +++ OCN_tasks_cpl_dcmp=20 +++ ICE_tasks_cpl_dcmp=10 +++ WAV_tasks_cpl_dcmp=20 +++ THRD_cpl_mpi=1 +++ INPES_cpl_mpi=6 +++ JNPES_cpl_mpi=12 +++ WPG_cpl_mpi=6 +++ OCN_tasks_cpl_mpi=24 +++ ICE_tasks_cpl_mpi=12 +++ WAV_tasks_cpl_mpi=24 +++ THRD_cpl_bmrk=2 +++ INPES_cpl_bmrk=12 +++ JNPES_cpl_bmrk=8 +++ WPG_cpl_bmrk=48 +++ OCN_tasks_cpl_bmrk=120 +++ ICE_tasks_cpl_bmrk=48 +++ WAV_tasks_cpl_bmrk=100 +++ WLCLK_dflt=30 +++ export WLCLK=30 +++ WLCLK=30 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=033 ++ TEST_NR=033 ++ export JBNME=compile_033 ++ JBNME=compile_033 ++ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_033 ++ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_033 +++ date +%s ++ echo -n 'compile_033, 1681920008,' ++ source rt_utils.sh +++ set -eu +++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] +++ OPNREQ_TEST=false +++ qsub_id=0 +++ slurm_id=0 +++ bsub_id=0 ++ source atparse.bash ++ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_033 ++ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_033 ++ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_033 ++ [[ pbs = \s\l\u\r\m ]] ++ [[ pbs = \l\s\f ]] ++ [[ pbs = \p\b\s ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +Job id 9507214 +TEST 033 compile is waiting to enter the queue +TEST 033 compile is submitted +1 min. TEST 033 compile is waiting in a queue, status: Q jobid 9507214 +2 min. TEST 033 compile is waiting in a queue, status: Q jobid 9507214 +3 min. TEST 033 compile is waiting in a queue, status: Q jobid 9507214 +4 min. TEST 033 compile is waiting in a queue, status: Q jobid 9507214 +5 min. TEST 033 compile is waiting in a queue, status: Q jobid 9507214 +6 min. TEST 033 compile is running, status: R jobid 9507214 +7 min. TEST 033 compile is running, status: R jobid 9507214 +8 min. TEST 033 compile is running, status: R jobid 9507214 +9 min. TEST 033 compile is running, status: R jobid 9507214 +10 min. TEST 033 compile is running, status: R jobid 9507214 +qstat: 9507214.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information +qstat: 9507214.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information +11 min. TEST 033 compile is finished, status: - jobid 9507214 ++ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_033.exe +-rwxr-xr-x 1 jongkim ncar 605857224 Apr 19 16:10 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_033.exe ++ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_033/compile_033_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel ++ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_033/job_timestamp.txt ++ remove_fail_test ++ echo 'Removing test failure flag file for compile_033' +Removing test failure flag file for compile_033 ++ [[ false == true ]] ++ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_033 +++ date +%s ++ echo ' 1681920629, 1' ++ elapsed=621 ++ echo 'Elapsed time 621 seconds. Compile 033' +Elapsed time 621 seconds. Compile 033 ++ '[' 0 -eq 0 ']' +Compile 033 elapsed time 325 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug ++ echo PID=7648 +PID=7648 ++ SECONDS=0 ++ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT ++ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT ++ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM ++ [[ 4 != 4 ]] ++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 ++ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 ++ export 'MAKE_OPT=-DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON' ++ MAKE_OPT='-DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON' ++ export COMPILE_NR=034 ++ COMPILE_NR=034 ++ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests ++ OPNREQ_TEST=false ++ remove_fail_test ++ echo 'Removing test failure flag file for compile_034' +Removing test failure flag file for compile_034 ++ [[ false == true ]] ++ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_034 ++ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_034.env ]] ++ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_034.env +++ export JOB_NR=202 +++ JOB_NR=202 +++ export COMPILE_NR=034 +++ COMPILE_NR=034 +++ export MACHINE_ID=cheyenne.intel +++ MACHINE_ID=cheyenne.intel +++ export RT_COMPILER=intel +++ RT_COMPILER=intel +++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests +++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests +++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel +++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel +++ export SCHEDULER=pbs +++ SCHEDULER=pbs +++ export ACCNR=NRAL0032 +++ ACCNR=NRAL0032 +++ export QUEUE=regular +++ QUEUE=regular +++ export PARTITION= +++ PARTITION= +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log +++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log +++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel +++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel ++ source default_vars.sh +++ THRD=1 +++ INPES_atmaero=4 +++ JNPES_atmaero=8 +++ WPG_atmaero=6 +++ THRD_cpl_atmw=1 +++ INPES_cpl_atmw=3 +++ JNPES_cpl_atmw=8 +++ WPG_cpl_atmw=6 +++ WAV_tasks_cpl_atmw=30 +++ WAV_thrds_cpl_atmw=1 +++ THRD_cpl_c48=1 +++ INPES_cpl_c48=1 +++ JNPES_cpl_c48=1 +++ WPG_cpl_c48=6 +++ OCN_tasks_cpl_c48=4 +++ ICE_tasks_cpl_c48=4 +++ THRD_cpl_dflt=1 +++ INPES_cpl_dflt=3 +++ JNPES_cpl_dflt=8 +++ WPG_cpl_dflt=6 +++ OCN_tasks_cpl_dflt=20 +++ ICE_tasks_cpl_dflt=10 +++ WAV_tasks_cpl_dflt=20 +++ THRD_cpl_thrd=2 +++ INPES_cpl_thrd=3 +++ JNPES_cpl_thrd=4 +++ WPG_cpl_thrd=6 +++ OCN_tasks_cpl_thrd=20 +++ OCN_thrds_cpl_thrd=1 +++ ICE_tasks_cpl_thrd=10 +++ ICE_thrds_cpl_thrd=1 +++ WAV_tasks_cpl_thrd=12 +++ WAV_thrds_cpl_thrd=2 +++ THRD_cpl_dcmp=1 +++ INPES_cpl_dcmp=4 +++ JNPES_cpl_dcmp=6 +++ WPG_cpl_dcmp=6 +++ OCN_tasks_cpl_dcmp=20 +++ ICE_tasks_cpl_dcmp=10 +++ WAV_tasks_cpl_dcmp=20 +++ THRD_cpl_mpi=1 +++ INPES_cpl_mpi=4 +++ JNPES_cpl_mpi=8 +++ WPG_cpl_mpi=6 +++ OCN_tasks_cpl_mpi=34 +++ ICE_tasks_cpl_mpi=20 +++ WAV_tasks_cpl_mpi=28 +++ THRD_cpl_bmrk=2 +++ INPES_cpl_bmrk=8 +++ JNPES_cpl_bmrk=8 +++ WPG_cpl_bmrk=48 +++ OCN_tasks_cpl_bmrk=120 +++ OCN_thrds_cpl_bmrk=1 +++ ICE_tasks_cpl_bmrk=48 +++ ICE_thrds_cpl_bmrk=1 +++ WAV_tasks_cpl_bmrk=80 +++ WAV_thrds_cpl_bmrk=2 +++ THRD_cpl_c192=2 +++ INPES_cpl_c192=6 +++ JNPES_cpl_c192=8 +++ WPG_cpl_c192=12 +++ OCN_tasks_cpl_c192=60 +++ ICE_tasks_cpl_c192=24 +++ WAV_tasks_cpl_c192=80 +++ ATM_compute_tasks_cdeps_100=12 +++ OCN_tasks_cdeps_100=16 +++ ICE_tasks_cdeps_100=12 +++ ATM_compute_tasks_cdeps_025=40 +++ OCN_tasks_cdeps_025=120 +++ ICE_tasks_cdeps_025=48 +++ INPES_aqm=33 +++ JNPES_aqm=8 +++ aqm_omp_num_threads=1 +++ atm_omp_num_threads=1 +++ chm_omp_num_threads=1 +++ ice_omp_num_threads=1 +++ lnd_omp_num_threads=1 +++ med_omp_num_threads=1 +++ ocn_omp_num_threads=1 +++ wav_omp_num_threads=1 +++ [[ cheyenne.intel = wcoss2.* ]] +++ [[ cheyenne.intel = acorn.* ]] +++ [[ cheyenne.intel = orion.* ]] +++ [[ cheyenne.intel = hera.* ]] +++ [[ cheyenne.intel = linux.* ]] +++ [[ cheyenne.intel = jet.* ]] +++ [[ cheyenne.intel = s4.* ]] +++ [[ cheyenne.intel = gaea.* ]] +++ [[ cheyenne.intel = cheyenne.* ]] +++ TPN=36 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ INPES_c384=8 +++ JNPES_c384=6 +++ THRD_c384=2 +++ INPES_c768=8 +++ JNPES_c768=16 +++ THRD_c768=2 +++ THRD_cpl_atmw_gdas=3 +++ INPES_cpl_atmw_gdas=6 +++ JNPES_cpl_atmw_gdas=8 +++ WPG_cpl_atmw_gdas=24 +++ WAV_tasks_atmw_gdas=264 +++ THRD_cpl_dflt=1 +++ INPES_cpl_dflt=6 +++ JNPES_cpl_dflt=8 +++ WPG_cpl_dflt=6 +++ OCN_tasks_cpl_dflt=20 +++ ICE_tasks_cpl_dflt=10 +++ WAV_tasks_cpl_dflt=20 +++ THRD_cpl_thrd=2 +++ INPES_cpl_thrd=6 +++ JNPES_cpl_thrd=4 +++ WPG_cpl_thrd=6 +++ OCN_tasks_cpl_thrd=20 +++ ICE_tasks_cpl_thrd=10 +++ WAV_tasks_cpl_thrd=20 +++ THRD_cpl_dcmp=1 +++ INPES_cpl_dcmp=4 +++ JNPES_cpl_dcmp=12 +++ WPG_cpl_dcmp=6 +++ OCN_tasks_cpl_dcmp=20 +++ ICE_tasks_cpl_dcmp=10 +++ WAV_tasks_cpl_dcmp=20 +++ THRD_cpl_mpi=1 +++ INPES_cpl_mpi=6 +++ JNPES_cpl_mpi=12 +++ WPG_cpl_mpi=6 +++ OCN_tasks_cpl_mpi=24 +++ ICE_tasks_cpl_mpi=12 +++ WAV_tasks_cpl_mpi=24 +++ THRD_cpl_bmrk=2 +++ INPES_cpl_bmrk=12 +++ JNPES_cpl_bmrk=8 +++ WPG_cpl_bmrk=48 +++ OCN_tasks_cpl_bmrk=120 +++ ICE_tasks_cpl_bmrk=48 +++ WAV_tasks_cpl_bmrk=100 +++ WLCLK_dflt=30 +++ export WLCLK=30 +++ WLCLK=30 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=034 ++ TEST_NR=034 ++ export JBNME=compile_034 ++ JBNME=compile_034 ++ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_034 ++ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_034 +++ date +%s ++ echo -n 'compile_034, 1681920189,' ++ source rt_utils.sh +++ set -eu +++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] +++ OPNREQ_TEST=false +++ qsub_id=0 +++ slurm_id=0 +++ bsub_id=0 ++ source atparse.bash ++ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_034 ++ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_034 ++ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_034 ++ [[ pbs = \s\l\u\r\m ]] ++ [[ pbs = \l\s\f ]] ++ [[ pbs = \p\b\s ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +Job id 9507232 +TEST 034 compile is waiting to enter the queue +TEST 034 compile is submitted +1 min. TEST 034 compile is waiting in a queue, status: Q jobid 9507232 +2 min. TEST 034 compile is waiting in a queue, status: Q jobid 9507232 +3 min. TEST 034 compile is running, status: R jobid 9507232 +4 min. TEST 034 compile is running, status: R jobid 9507232 +5 min. TEST 034 compile is running, status: R jobid 9507232 +6 min. TEST 034 compile is running, status: R jobid 9507232 +7 min. TEST 034 compile is running, status: R jobid 9507232 +8 min. TEST 034 compile is running, status: R jobid 9507232 +9 min. TEST 034 compile is running, status: R jobid 9507232 +10 min. TEST 034 compile is running, status: R jobid 9507232 +11 min. TEST 034 compile is running, status: R jobid 9507232 +12 min. TEST 034 compile is running, status: R jobid 9507232 +13 min. TEST 034 compile is running, status: R jobid 9507232 +14 min. TEST 034 compile is running, status: R jobid 9507232 +15 min. TEST 034 compile is running, status: R jobid 9507232 +16 min. TEST 034 compile is running, status: R jobid 9507232 +17 min. TEST 034 compile is running, status: R jobid 9507232 +18 min. TEST 034 compile is running, status: R jobid 9507232 +19 min. TEST 034 compile is running, status: R jobid 9507232 +20 min. TEST 034 compile is running, status: R jobid 9507232 +21 min. TEST 034 compile is running, status: R jobid 9507232 +qstat: 9507232.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information +qstat: 9507232.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information +22 min. TEST 034 compile is finished, status: - jobid 9507232 ++ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_034.exe +-rwxr-xr-x 1 jongkim ncar 277009936 Apr 19 16:25 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_034.exe ++ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_034/compile_034_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel ++ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_034/job_timestamp.txt ++ remove_fail_test ++ echo 'Removing test failure flag file for compile_034' +Removing test failure flag file for compile_034 ++ [[ false == true ]] ++ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_034 +++ date +%s ++ echo ' 1681921525, 1' ++ elapsed=1336 ++ echo 'Elapsed time 1336 seconds. Compile 034' +Elapsed time 1336 seconds. Compile 034 ++ '[' 0 -eq 0 ']' +Compile 034 elapsed time 1223 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8_mixedmode +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_control_p8_mixedmode +Checking test 001 cpld_control_p8_mixedmode results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + +0:The total amount of wall time = 323.247808 +0:The maximum resident set size (KB) = 2698376 + +Test 001 cpld_control_p8_mixedmode PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_gfsv17 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_control_gfsv17 +Checking test 002 cpld_control_gfsv17 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + +0:The total amount of wall time = 283.218478 +0:The maximum resident set size (KB) = 1437616 + +Test 002 cpld_control_gfsv17 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_control_p8 +Checking test 003 cpld_control_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + +0:The total amount of wall time = 325.782515 +0:The maximum resident set size (KB) = 2715216 + +Test 003 cpld_control_p8 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_restart_p8 +Checking test 004 cpld_restart_p8 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + +0:The total amount of wall time = 191.654366 +0:The maximum resident set size (KB) = 2576416 + +Test 004 cpld_restart_p8 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_control_qr_p8 +Checking test 005 cpld_control_qr_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + +0:The total amount of wall time = 333.837542 +0:The maximum resident set size (KB) = 2719236 + +Test 005 cpld_control_qr_p8 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_restart_qr_p8 +Checking test 006 cpld_restart_qr_p8 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + +0:The total amount of wall time = 203.500991 +0:The maximum resident set size (KB) = 2593572 + +Test 006 cpld_restart_qr_p8 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_2threads_p8 +Checking test 007 cpld_2threads_p8 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + +0:The total amount of wall time = 319.449605 +0:The maximum resident set size (KB) = 3178008 + +Test 007 cpld_2threads_p8 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_decomp_p8 +Checking test 008 cpld_decomp_p8 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + +0:The total amount of wall time = 326.626662 +0:The maximum resident set size (KB) = 2720184 + +Test 008 cpld_decomp_p8 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_mpi_p8 +Checking test 009 cpld_mpi_p8 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + +0:The total amount of wall time = 280.797767 +0:The maximum resident set size (KB) = 2680248 + +Test 009 cpld_mpi_p8 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_ciceC_p8 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_control_ciceC_p8 +Checking test 010 cpld_control_ciceC_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + +0:The total amount of wall time = 326.237034 +0:The maximum resident set size (KB) = 2715460 + +Test 010 cpld_control_ciceC_p8 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c192_p8 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_control_c192_p8 +Checking test 011 cpld_control_c192_p8 results .... + Comparing sfcf030.tile1.nc .........OK + Comparing sfcf030.tile2.nc .........OK + Comparing sfcf030.tile3.nc .........OK + Comparing sfcf030.tile4.nc .........OK + Comparing sfcf030.tile5.nc .........OK + Comparing sfcf030.tile6.nc .........OK + Comparing atmf030.tile1.nc .........OK + Comparing atmf030.tile2.nc .........OK + Comparing atmf030.tile3.nc .........OK + Comparing atmf030.tile4.nc .........OK + Comparing atmf030.tile5.nc .........OK + Comparing atmf030.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_1200z.nc4 .........OK + Comparing RESTART/20210323.120000.coupler.res .........OK + Comparing RESTART/20210323.120000.fv_core.res.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK + Comparing 20210323.120000.out_grd.ww3 .........OK + Comparing 20210323.120000.out_pnt.ww3 .........OK + +0:The total amount of wall time = 636.580120 +0:The maximum resident set size (KB) = 3352812 + +Test 011 cpld_control_c192_p8 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c192_p8 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_restart_c192_p8 +Checking test 012 cpld_restart_c192_p8 results .... + Comparing sfcf030.tile1.nc .........OK + Comparing sfcf030.tile2.nc .........OK + Comparing sfcf030.tile3.nc .........OK + Comparing sfcf030.tile4.nc .........OK + Comparing sfcf030.tile5.nc .........OK + Comparing sfcf030.tile6.nc .........OK + Comparing atmf030.tile1.nc .........OK + Comparing atmf030.tile2.nc .........OK + Comparing atmf030.tile3.nc .........OK + Comparing atmf030.tile4.nc .........OK + Comparing atmf030.tile5.nc .........OK + Comparing atmf030.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_1200z.nc4 .........OK + Comparing RESTART/20210323.120000.coupler.res .........OK + Comparing RESTART/20210323.120000.fv_core.res.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK + Comparing 20210323.120000.out_grd.ww3 .........OK + Comparing 20210323.120000.out_pnt.ww3 .........OK + +0:The total amount of wall time = 388.553701 +0:The maximum resident set size (KB) = 3276636 + +Test 012 cpld_restart_c192_p8 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_noaero_p8 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_control_noaero_p8 +Checking test 013 cpld_control_noaero_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + +0:The total amount of wall time = 295.894239 +0:The maximum resident set size (KB) = 1435532 + +Test 013 cpld_control_noaero_p8 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c96_noaero_p8 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_control_nowave_noaero_p8 +Checking test 014 cpld_control_nowave_noaero_p8 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 = 196.843420 +0:The maximum resident set size (KB) = 1453108 + +Test 014 cpld_control_nowave_noaero_p8 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_debug_p8 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_debug_p8 +Checking test 015 cpld_debug_p8 results .... + Comparing sfcf003.tile1.nc .........OK + Comparing sfcf003.tile2.nc .........OK + Comparing sfcf003.tile3.nc .........OK + Comparing sfcf003.tile4.nc .........OK + Comparing sfcf003.tile5.nc .........OK + Comparing sfcf003.tile6.nc .........OK + Comparing atmf003.tile1.nc .........OK + Comparing atmf003.tile2.nc .........OK + Comparing atmf003.tile3.nc .........OK + Comparing atmf003.tile4.nc .........OK + Comparing atmf003.tile5.nc .........OK + Comparing atmf003.tile6.nc .........OK + Comparing gocart.inst_aod.20210322_0900z.nc4 .........OK + Comparing RESTART/20210322.090000.coupler.res .........OK + Comparing RESTART/20210322.090000.fv_core.res.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-22-32400.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK + Comparing 20210322.090000.out_pnt.ww3 .........OK + Comparing 20210322.090000.out_grd.ww3 .........OK + +0:The total amount of wall time = 351.699327 +0:The maximum resident set size (KB) = 2778712 + +Test 015 cpld_debug_p8 PASS Tries: 2 + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_debug_noaero_p8 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_debug_noaero_p8 +Checking test 016 cpld_debug_noaero_p8 results .... + Comparing sfcf003.tile1.nc .........OK + Comparing sfcf003.tile2.nc .........OK + Comparing sfcf003.tile3.nc .........OK + Comparing sfcf003.tile4.nc .........OK + Comparing sfcf003.tile5.nc .........OK + Comparing sfcf003.tile6.nc .........OK + Comparing atmf003.tile1.nc .........OK + Comparing atmf003.tile2.nc .........OK + Comparing atmf003.tile3.nc .........OK + Comparing atmf003.tile4.nc .........OK + Comparing atmf003.tile5.nc .........OK + Comparing atmf003.tile6.nc .........OK + Comparing RESTART/20210322.090000.coupler.res .........OK + Comparing RESTART/20210322.090000.fv_core.res.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-22-32400.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK + Comparing 20210322.090000.out_pnt.ww3 .........OK + Comparing 20210322.090000.out_grd.ww3 .........OK + +0:The total amount of wall time = 302.184823 +0:The maximum resident set size (KB) = 1453924 + +Test 016 cpld_debug_noaero_p8 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_noaero_p8_agrid +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_control_noaero_p8_agrid +Checking test 017 cpld_control_noaero_p8_agrid 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 = 278.779000 +0:The maximum resident set size (KB) = 1456852 + +Test 017 cpld_control_noaero_p8_agrid PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c48 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_control_c48 +Checking test 018 cpld_control_c48 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + +0:The total amount of wall time = 606.860800 +0:The maximum resident set size (KB) = 2586392 + +Test 018 cpld_control_c48 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_warmstart_c48 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_warmstart_c48 +Checking test 019 cpld_warmstart_c48 results .... + Comparing sfcf006.tile1.nc .........OK + Comparing sfcf006.tile2.nc .........OK + Comparing sfcf006.tile3.nc .........OK + Comparing sfcf006.tile4.nc .........OK + Comparing sfcf006.tile5.nc .........OK + Comparing sfcf006.tile6.nc .........OK + Comparing atmf006.tile1.nc .........OK + Comparing atmf006.tile2.nc .........OK + Comparing atmf006.tile3.nc .........OK + Comparing atmf006.tile4.nc .........OK + Comparing atmf006.tile5.nc .........OK + Comparing atmf006.tile6.nc .........OK + Comparing RESTART/20210323.120000.coupler.res .........OK + Comparing RESTART/20210323.120000.fv_core.res.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK + +0:The total amount of wall time = 165.249660 +0:The maximum resident set size (KB) = 2601676 + +Test 019 cpld_warmstart_c48 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_warmstart_c48 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_restart_c48 +Checking test 020 cpld_restart_c48 results .... + Comparing sfcf006.tile1.nc .........OK + Comparing sfcf006.tile2.nc .........OK + Comparing sfcf006.tile3.nc .........OK + Comparing sfcf006.tile4.nc .........OK + Comparing sfcf006.tile5.nc .........OK + Comparing sfcf006.tile6.nc .........OK + Comparing atmf006.tile1.nc .........OK + Comparing atmf006.tile2.nc .........OK + Comparing atmf006.tile3.nc .........OK + Comparing atmf006.tile4.nc .........OK + Comparing atmf006.tile5.nc .........OK + Comparing atmf006.tile6.nc .........OK + Comparing RESTART/20210323.120000.coupler.res .........OK + Comparing RESTART/20210323.120000.fv_core.res.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK + +0:The total amount of wall time = 84.682398 +0:The maximum resident set size (KB) = 2018848 + +Test 020 cpld_restart_c48 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_CubedSphereGrid +Checking test 021 control_CubedSphereGrid results .... + Comparing sfcf000.tile1.nc .........OK + Comparing sfcf000.tile2.nc .........OK + Comparing sfcf000.tile3.nc .........OK + Comparing sfcf000.tile4.nc .........OK + Comparing sfcf000.tile5.nc .........OK + Comparing sfcf000.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf000.tile1.nc .........OK + Comparing atmf000.tile2.nc .........OK + Comparing atmf000.tile3.nc .........OK + Comparing atmf000.tile4.nc .........OK + Comparing atmf000.tile5.nc .........OK + Comparing atmf000.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + +0:The total amount of wall time = 142.357770 +0:The maximum resident set size (KB) = 454412 + +Test 021 control_CubedSphereGrid PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid_parallel +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_CubedSphereGrid_parallel +Checking test 022 control_CubedSphereGrid_parallel results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK + +0:The total amount of wall time = 140.270029 +0:The maximum resident set size (KB) = 454272 + +Test 022 control_CubedSphereGrid_parallel PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_latlon +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_latlon +Checking test 023 control_latlon results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + +0:The total amount of wall time = 148.352084 +0:The maximum resident set size (KB) = 454344 + +Test 023 control_latlon PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wrtGauss_netcdf_parallel +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_wrtGauss_netcdf_parallel +Checking test 024 control_wrtGauss_netcdf_parallel results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + +0:The total amount of wall time = 150.000772 +0:The maximum resident set size (KB) = 454348 + +Test 024 control_wrtGauss_netcdf_parallel PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c48 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_c48 +Checking test 025 control_c48 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 447.470574 +0:The maximum resident set size (KB) = 633508 + +Test 025 control_c48 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c192 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_c192 +Checking test 026 control_c192 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + +0:The total amount of wall time = 596.749778 +0:The maximum resident set size (KB) = 560248 + +Test 026 control_c192 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c384 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_c384 +Checking test 027 control_c384 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF12 .........OK + +0:The total amount of wall time = 590.272811 +0:The maximum resident set size (KB) = 902584 + +Test 027 control_c384 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c384gdas +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_c384gdas +Checking test 028 control_c384gdas results .... + Comparing sfcf000.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf006.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF06 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF06 .........OK + Comparing RESTART/20210322.060000.coupler.res .........OK + Comparing RESTART/20210322.060000.fv_core.res.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 525.948979 +0:The maximum resident set size (KB) = 1027116 + +Test 028 control_c384gdas PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_stochy +Checking test 029 control_stochy results .... + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF12 .........OK + +0:The total amount of wall time = 98.211706 +0:The maximum resident set size (KB) = 459220 + +Test 029 control_stochy PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_stochy_restart +Checking test 030 control_stochy_restart results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK + +0:The total amount of wall time = 53.437383 +0:The maximum resident set size (KB) = 226704 + +Test 030 control_stochy_restart PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_lndp +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_lndp +Checking test 031 control_lndp results .... + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF12 .........OK + +0:The total amount of wall time = 90.843569 +0:The maximum resident set size (KB) = 458280 + +Test 031 control_lndp PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_iovr4 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_iovr4 +Checking test 032 control_iovr4 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + +0:The total amount of wall time = 148.875263 +0:The maximum resident set size (KB) = 454416 + +Test 032 control_iovr4 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_iovr5 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_iovr5 +Checking test 033 control_iovr5 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + +0:The total amount of wall time = 148.723548 +0:The maximum resident set size (KB) = 454288 + +Test 033 control_iovr5 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_p8 +Checking test 034 control_p8 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 184.886156 +0:The maximum resident set size (KB) = 1423940 + +Test 034 control_p8 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_restart_p8 +Checking test 035 control_restart_p8 results .... + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 96.956799 +0:The maximum resident set size (KB) = 583176 + +Test 035 control_restart_p8 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_qr_p8 +Checking test 036 control_qr_p8 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + +0:The total amount of wall time = 182.303264 +0:The maximum resident set size (KB) = 1427236 + +Test 036 control_qr_p8 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_restart_qr_p8 +Checking test 037 control_restart_qr_p8 results .... + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + +0:The total amount of wall time = 99.138111 +0:The maximum resident set size (KB) = 596908 + +Test 037 control_restart_qr_p8 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_decomp_p8 +Checking test 038 control_decomp_p8 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 190.798621 +0:The maximum resident set size (KB) = 1418764 + +Test 038 control_decomp_p8 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_2threads_p8 +Checking test 039 control_2threads_p8 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 173.993645 +0:The maximum resident set size (KB) = 1510432 + +Test 039 control_2threads_p8 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_lndp +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_p8_lndp +Checking test 040 control_p8_lndp results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing sfcf048.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing atmf048.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSFLX.GrbF48 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing GFSPRS.GrbF48 .........OK + +0:The total amount of wall time = 338.425811 +0:The maximum resident set size (KB) = 1424948 + +Test 040 control_p8_lndp PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_rrtmgp +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_p8_rrtmgp +Checking test 041 control_p8_rrtmgp results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.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 = 258.756869 +0:The maximum resident set size (KB) = 1480300 + +Test 041 control_p8_rrtmgp PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_mynn +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_p8_mynn +Checking test 042 control_p8_mynn results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 187.198473 +0:The maximum resident set size (KB) = 1427956 + +Test 042 control_p8_mynn PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/merra2_thompson +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/merra2_thompson +Checking test 043 merra2_thompson results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 209.432933 +0:The maximum resident set size (KB) = 1429696 + +Test 043 merra2_thompson PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_control +Checking test 044 regional_control results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK + +0:The total amount of wall time = 345.645007 +0:The maximum resident set size (KB) = 604808 + +Test 044 regional_control PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_restart +Checking test 045 regional_restart results .... + Comparing dynf006.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF06 .........OK + +0:The total amount of wall time = 170.776429 +0:The maximum resident set size (KB) = 594212 + +Test 045 regional_restart PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_control_qr +Checking test 046 regional_control_qr results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK + +0:The total amount of wall time = 346.584383 +0:The maximum resident set size (KB) = 604832 + +Test 046 regional_control_qr PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_restart_qr +Checking test 047 regional_restart_qr results .... + Comparing dynf006.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF06 .........OK + +0:The total amount of wall time = 177.857864 +0:The maximum resident set size (KB) = 594208 + +Test 047 regional_restart_qr PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_decomp +Checking test 048 regional_decomp results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK + +0:The total amount of wall time = 361.479547 +0:The maximum resident set size (KB) = 598916 + +Test 048 regional_decomp PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_2threads +Checking test 049 regional_2threads results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK + +0:The total amount of wall time = 205.169488 +0:The maximum resident set size (KB) = 611504 + +Test 049 regional_2threads PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_noquilt +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_noquilt +Checking test 050 regional_noquilt results .... + Comparing atmos_4xdaily.nc .........OK + Comparing fv3_history2d.nc .........OK + Comparing fv3_history.nc .........OK + Comparing RESTART/fv_core.res.tile1_new.nc .........OK + Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK + +0:The total amount of wall time = 364.785237 +0:The maximum resident set size (KB) = 599052 + +Test 050 regional_noquilt PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_netcdf_parallel +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_netcdf_parallel +Checking test 051 regional_netcdf_parallel results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK + +0:The total amount of wall time = 338.888919 +0:The maximum resident set size (KB) = 596728 + +Test 051 regional_netcdf_parallel PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_2dwrtdecomp +Checking test 052 regional_2dwrtdecomp results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK + +0:The total amount of wall time = 346.737229 +0:The maximum resident set size (KB) = 604824 + +Test 052 regional_2dwrtdecomp PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/fv3_regional_wofs +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_wofs +Checking test 053 regional_wofs results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK + +0:The total amount of wall time = 429.869366 +0:The maximum resident set size (KB) = 275828 + +Test 053 regional_wofs PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_control +Checking test 054 rap_control results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 476.057633 +0:The maximum resident set size (KB) = 823364 + +Test 054 rap_control PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_spp_sppt_shum_skeb +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_spp_sppt_shum_skeb +Checking test 055 regional_spp_sppt_shum_skeb results .... + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF01 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF01 .........OK + +0:The total amount of wall time = 262.213664 +0:The maximum resident set size (KB) = 952080 + +Test 055 regional_spp_sppt_shum_skeb PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_decomp +Checking test 056 rap_decomp results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 506.633123 +0:The maximum resident set size (KB) = 822220 + +Test 056 rap_decomp PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_2threads +Checking test 057 rap_2threads results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 461.546221 +0:The maximum resident set size (KB) = 893584 + +Test 057 rap_2threads PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_restart +Checking test 058 rap_restart results .... + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 244.002679 +0:The maximum resident set size (KB) = 571484 + +Test 058 rap_restart PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_sfcdiff +Checking test 059 rap_sfcdiff results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 482.582957 +0:The maximum resident set size (KB) = 823424 + +Test 059 rap_sfcdiff PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_sfcdiff_decomp +Checking test 060 rap_sfcdiff_decomp results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 507.450761 +0:The maximum resident set size (KB) = 822240 + +Test 060 rap_sfcdiff_decomp PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_sfcdiff_restart +Checking test 061 rap_sfcdiff_restart results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 360.950337 +0:The maximum resident set size (KB) = 570544 + +Test 061 rap_sfcdiff_restart PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hrrr_control +Checking test 062 hrrr_control results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 466.603670 +0:The maximum resident set size (KB) = 820848 + +Test 062 hrrr_control PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hrrr_control_decomp +Checking test 063 hrrr_control_decomp results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 488.455334 +0:The maximum resident set size (KB) = 820848 + +Test 063 hrrr_control_decomp PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hrrr_control_2threads +Checking test 064 hrrr_control_2threads results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 442.141825 +0:The maximum resident set size (KB) = 888488 + +Test 064 hrrr_control_2threads PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hrrr_control_restart +Checking test 065 hrrr_control_restart results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 344.086012 +0:The maximum resident set size (KB) = 566352 + +Test 065 hrrr_control_restart PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1beta +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rrfs_v1beta +Checking test 066 rrfs_v1beta results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 476.729680 +0:The maximum resident set size (KB) = 819452 + +Test 066 rrfs_v1beta PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1nssl +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rrfs_v1nssl +Checking test 067 rrfs_v1nssl results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + +0:The total amount of wall time = 587.560475 +0:The maximum resident set size (KB) = 508704 + +Test 067 rrfs_v1nssl PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rrfs_v1nssl_nohailnoccn +Checking test 068 rrfs_v1nssl_nohailnoccn results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + +0:The total amount of wall time = 565.648225 +0:The maximum resident set size (KB) = 502516 + +Test 068 rrfs_v1nssl_nohailnoccn PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rrfs_smoke_conus13km_hrrr_warm +Checking test 069 rrfs_smoke_conus13km_hrrr_warm 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 + +0:The total amount of wall time = 155.222855 +0:The maximum resident set size (KB) = 675236 + +Test 069 rrfs_smoke_conus13km_hrrr_warm PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rrfs_smoke_conus13km_hrrr_warm_2threads +Checking test 070 rrfs_smoke_conus13km_hrrr_warm_2threads 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 + +0:The total amount of wall time = 95.558075 +0:The maximum resident set size (KB) = 693964 + +Test 070 rrfs_smoke_conus13km_hrrr_warm_2threads PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rrfs_conus13km_hrrr_warm +Checking test 071 rrfs_conus13km_hrrr_warm 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 + +0:The total amount of wall time = 135.446161 +0:The maximum resident set size (KB) = 654004 + +Test 071 rrfs_conus13km_hrrr_warm PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rrfs_smoke_conus13km_radar_tten_warm +Checking test 072 rrfs_smoke_conus13km_radar_tten_warm 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 + +0:The total amount of wall time = 156.980562 +0:The maximum resident set size (KB) = 677892 + +Test 072 rrfs_smoke_conus13km_radar_tten_warm PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rrfs_conus13km_hrrr_warm_restart_mismatch +Checking test 073 rrfs_conus13km_hrrr_warm_restart_mismatch results .... + Comparing sfcf002.nc .........OK + Comparing atmf002.nc .........OK + +0:The total amount of wall time = 71.902954 +0:The maximum resident set size (KB) = 632128 + +Test 073 rrfs_conus13km_hrrr_warm_restart_mismatch PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmg +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_csawmg +Checking test 074 control_csawmg results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + +0:The total amount of wall time = 398.825305 +0:The maximum resident set size (KB) = 527700 + +Test 074 control_csawmg PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmgt +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_csawmgt +Checking test 075 control_csawmgt results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + +0:The total amount of wall time = 396.293106 +0:The maximum resident set size (KB) = 528372 + +Test 075 control_csawmgt PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_ras +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_ras +Checking test 076 control_ras results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + +0:The total amount of wall time = 209.019942 +0:The maximum resident set size (KB) = 491216 + +Test 076 control_ras PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wam +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_wam +Checking test 077 control_wam results .... + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK + +0:The total amount of wall time = 130.339794 +0:The maximum resident set size (KB) = 206284 + +Test 077 control_wam PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_faster +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_p8_faster +Checking test 078 control_p8_faster results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 173.370956 +0:The maximum resident set size (KB) = 1423728 + +Test 078 control_p8_faster PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control_faster +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_control_faster +Checking test 079 regional_control_faster results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK + +0:The total amount of wall time = 327.839386 +0:The maximum resident set size (KB) = 604604 + +Test 079 regional_control_faster PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rrfs_smoke_conus13km_hrrr_warm_debug +Checking test 080 rrfs_smoke_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +0:The total amount of wall time = 873.958124 +0:The maximum resident set size (KB) = 703832 + +Test 080 rrfs_smoke_conus13km_hrrr_warm_debug PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +Checking test 081 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +0:The total amount of wall time = 497.351031 +0:The maximum resident set size (KB) = 725300 + +Test 081 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rrfs_conus13km_hrrr_warm_debug +Checking test 082 rrfs_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +0:The total amount of wall time = 779.758074 +0:The maximum resident set size (KB) = 682884 + +Test 082 rrfs_conus13km_hrrr_warm_debug PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid_debug +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_CubedSphereGrid_debug +Checking test 083 control_CubedSphereGrid_debug results .... + Comparing sfcf000.tile1.nc .........OK + Comparing sfcf000.tile2.nc .........OK + Comparing sfcf000.tile3.nc .........OK + Comparing sfcf000.tile4.nc .........OK + Comparing sfcf000.tile5.nc .........OK + Comparing sfcf000.tile6.nc .........OK + Comparing sfcf001.tile1.nc .........OK + Comparing sfcf001.tile2.nc .........OK + Comparing sfcf001.tile3.nc .........OK + Comparing sfcf001.tile4.nc .........OK + Comparing sfcf001.tile5.nc .........OK + Comparing sfcf001.tile6.nc .........OK + Comparing atmf000.tile1.nc .........OK + Comparing atmf000.tile2.nc .........OK + Comparing atmf000.tile3.nc .........OK + Comparing atmf000.tile4.nc .........OK + Comparing atmf000.tile5.nc .........OK + Comparing atmf000.tile6.nc .........OK + Comparing atmf001.tile1.nc .........OK + Comparing atmf001.tile2.nc .........OK + Comparing atmf001.tile3.nc .........OK + Comparing atmf001.tile4.nc .........OK + Comparing atmf001.tile5.nc .........OK + Comparing atmf001.tile6.nc .........OK + +0:The total amount of wall time = 155.705236 +0:The maximum resident set size (KB) = 617584 + +Test 083 control_CubedSphereGrid_debug PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_wrtGauss_netcdf_parallel_debug +Checking test 084 control_wrtGauss_netcdf_parallel_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc .........OK + +0:The total amount of wall time = 157.345775 +0:The maximum resident set size (KB) = 615524 + +Test 084 control_wrtGauss_netcdf_parallel_debug PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy_debug +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_stochy_debug +Checking test 085 control_stochy_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +0:The total amount of wall time = 175.707591 +0:The maximum resident set size (KB) = 621172 + +Test 085 control_stochy_debug PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_lndp_debug +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_lndp_debug +Checking test 086 control_lndp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +0:The total amount of wall time = 167.546108 +0:The maximum resident set size (KB) = 620028 + +Test 086 control_lndp_debug PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmg_debug +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_csawmg_debug +Checking test 087 control_csawmg_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +0:The total amount of wall time = 249.229441 +0:The maximum resident set size (KB) = 666408 + +Test 087 control_csawmg_debug PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmgt_debug +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_csawmgt_debug +Checking test 088 control_csawmgt_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +0:The total amount of wall time = 245.216343 +0:The maximum resident set size (KB) = 667396 + +Test 088 control_csawmgt_debug PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_ras_debug +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_ras_debug +Checking test 089 control_ras_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +0:The total amount of wall time = 161.219816 +0:The maximum resident set size (KB) = 630452 + +Test 089 control_ras_debug PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_diag_debug +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_diag_debug +Checking test 090 control_diag_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +0:The total amount of wall time = 160.454000 +0:The maximum resident set size (KB) = 674936 + +Test 090 control_diag_debug PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_debug_p8 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_debug_p8 +Checking test 091 control_debug_p8 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +0:The total amount of wall time = 175.846871 +0:The maximum resident set size (KB) = 1442392 + +Test 091 control_debug_p8 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_debug +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_debug +Checking test 092 regional_debug results .... + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK + +0:The total amount of wall time = 1038.893894 +0:The maximum resident set size (KB) = 625264 + +Test 092 regional_debug PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_control_debug +Checking test 093 rap_control_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +0:The total amount of wall time = 287.544591 +0:The maximum resident set size (KB) = 986676 + +Test 093 rap_control_debug PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_debug +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hrrr_control_debug +Checking test 094 hrrr_control_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +0:The total amount of wall time = 282.380766 +0:The maximum resident set size (KB) = 984240 + +Test 094 hrrr_control_debug PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_unified_drag_suite_debug +Checking test 095 rap_unified_drag_suite_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +0:The total amount of wall time = 286.901845 +0:The maximum resident set size (KB) = 986636 + +Test 095 rap_unified_drag_suite_debug PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_diag_debug +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_diag_debug +Checking test 096 rap_diag_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +0:The total amount of wall time = 298.537588 +0:The maximum resident set size (KB) = 1069996 + +Test 096 rap_diag_debug PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_cires_ugwp_debug +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_cires_ugwp_debug +Checking test 097 rap_cires_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +0:The total amount of wall time = 292.691711 +0:The maximum resident set size (KB) = 985896 + +Test 097 rap_cires_ugwp_debug PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_cires_ugwp_debug +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_unified_ugwp_debug +Checking test 098 rap_unified_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +0:The total amount of wall time = 292.833698 +0:The maximum resident set size (KB) = 986736 + +Test 098 rap_unified_ugwp_debug PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_lndp_debug +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_lndp_debug +Checking test 099 rap_lndp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +0:The total amount of wall time = 288.859725 +0:The maximum resident set size (KB) = 987288 + +Test 099 rap_lndp_debug PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_flake_debug +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_flake_debug +Checking test 100 rap_flake_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +0:The total amount of wall time = 286.913373 +0:The maximum resident set size (KB) = 986672 + +Test 100 rap_flake_debug PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_progcld_thompson_debug +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_progcld_thompson_debug +Checking test 101 rap_progcld_thompson_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +0:The total amount of wall time = 286.536893 +0:The maximum resident set size (KB) = 986688 + +Test 101 rap_progcld_thompson_debug PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_noah_debug +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_noah_debug +Checking test 102 rap_noah_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +0:The total amount of wall time = 297.647128 +0:The maximum resident set size (KB) = 984640 + +Test 102 rap_noah_debug PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff_debug +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_sfcdiff_debug +Checking test 103 rap_sfcdiff_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +0:The total amount of wall time = 288.596968 +0:The maximum resident set size (KB) = 986568 + +Test 103 rap_sfcdiff_debug PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 104 rap_noah_sfcdiff_cires_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +0:The total amount of wall time = 581.022047 +0:The maximum resident set size (KB) = 985188 + +Test 104 rap_noah_sfcdiff_cires_ugwp_debug PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1beta_debug +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rrfs_v1beta_debug +Checking test 105 rrfs_v1beta_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +0:The total amount of wall time = 285.265867 +0:The maximum resident set size (KB) = 983392 + +Test 105 rrfs_v1beta_debug PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wam_debug +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_wam_debug +Checking test 106 control_wam_debug results .... + Comparing sfcf019.nc .........OK + Comparing atmf019.nc .........OK + +0:The total amount of wall time = 290.837122 +0:The maximum resident set size (KB) = 235304 + +Test 106 control_wam_debug PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF01 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF01 .........OK + +0:The total amount of wall time = 248.192314 +0:The maximum resident set size (KB) = 851296 + +Test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_control_dyn32_phy32 +Checking test 108 rap_control_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 404.180404 +0:The maximum resident set size (KB) = 707964 + +Test 108 rap_control_dyn32_phy32 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hrrr_control_dyn32_phy32 +Checking test 109 hrrr_control_dyn32_phy32 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 = 210.697131 +0:The maximum resident set size (KB) = 706508 + +Test 109 hrrr_control_dyn32_phy32 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_2threads_dyn32_phy32 +Checking test 110 rap_2threads_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 390.548730 +0:The maximum resident set size (KB) = 759508 + +Test 110 rap_2threads_dyn32_phy32 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hrrr_control_2threads_dyn32_phy32 +Checking test 111 hrrr_control_2threads_dyn32_phy32 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 = 200.770576 +0:The maximum resident set size (KB) = 756388 + +Test 111 hrrr_control_2threads_dyn32_phy32 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hrrr_control_decomp_dyn32_phy32 +Checking test 112 hrrr_control_decomp_dyn32_phy32 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 = 219.220429 +0:The maximum resident set size (KB) = 704308 + +Test 112 hrrr_control_decomp_dyn32_phy32 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_restart_dyn32_phy32 +Checking test 113 rap_restart_dyn32_phy32 results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 298.960030 +0:The maximum resident set size (KB) = 544696 + +Test 113 rap_restart_dyn32_phy32 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hrrr_control_restart_dyn32_phy32 +Checking test 114 hrrr_control_restart_dyn32_phy32 results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........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 = 230.804297 +0:The maximum resident set size (KB) = 536892 + +Test 114 hrrr_control_restart_dyn32_phy32 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn64_phy32 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_control_dyn64_phy32 +Checking test 115 rap_control_dyn64_phy32 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 = 274.277225 +0:The maximum resident set size (KB) = 730884 + +Test 115 rap_control_dyn64_phy32 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_control_debug_dyn32_phy32 +Checking test 116 rap_control_debug_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +0:The total amount of wall time = 284.092107 +0:The maximum resident set size (KB) = 872876 + +Test 116 rap_control_debug_dyn32_phy32 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hrrr_control_debug_dyn32_phy32 +Checking test 117 hrrr_control_debug_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +0:The total amount of wall time = 280.807695 +0:The maximum resident set size (KB) = 871116 + +Test 117 hrrr_control_debug_dyn32_phy32 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug_dyn64_phy32 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_control_dyn64_phy32_debug +Checking test 118 rap_control_dyn64_phy32_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +0:The total amount of wall time = 288.275408 +0:The maximum resident set size (KB) = 890092 + +Test 118 rap_control_dyn64_phy32_debug PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_atm +Checking test 119 hafs_regional_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing HURPRS.GrbF06 .........OK + +0:The total amount of wall time = 263.337718 +0:The maximum resident set size (KB) = 741796 + +Test 119 hafs_regional_atm PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_atm_thompson_gfdlsf +Checking test 120 hafs_regional_atm_thompson_gfdlsf results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + +0:The total amount of wall time = 291.218797 +0:The maximum resident set size (KB) = 1099660 + +Test 120 hafs_regional_atm_thompson_gfdlsf PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_ocn +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_atm_ocn +Checking test 121 hafs_regional_atm_ocn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing archv.2019_241_06.a .........OK + Comparing archs.2019_241_06.a .........OK + Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + +0:The total amount of wall time = 459.257499 +0:The maximum resident set size (KB) = 740560 + +Test 121 hafs_regional_atm_ocn PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_wav +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_atm_wav +Checking test 122 hafs_regional_atm_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing 20190829.060000.out_grd.ww3 .........OK + Comparing 20190829.060000.out_pnt.ww3 .........OK + Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + +0:The total amount of wall time = 1028.036737 +0:The maximum resident set size (KB) = 768168 + +Test 122 hafs_regional_atm_wav PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_ocn_wav +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_atm_ocn_wav +Checking test 123 hafs_regional_atm_ocn_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing archv.2019_241_06.a .........OK + Comparing archs.2019_241_06.a .........OK + Comparing 20190829.060000.out_grd.ww3 .........OK + Comparing 20190829.060000.out_pnt.ww3 .........OK + Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + +0:The total amount of wall time = 1143.844600 +0:The maximum resident set size (KB) = 792436 + +Test 123 hafs_regional_atm_ocn_wav PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_1nest_atm +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_1nest_atm +Checking test 124 hafs_regional_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + +0:The total amount of wall time = 376.961886 +0:The maximum resident set size (KB) = 300192 + +Test 124 hafs_regional_1nest_atm PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_telescopic_2nests_atm +Checking test 125 hafs_regional_telescopic_2nests_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing atm.nest03.f006.nc .........OK + Comparing sfc.nest03.f006.nc .........OK + +0:The total amount of wall time = 428.291238 +0:The maximum resident set size (KB) = 320464 + +Test 125 hafs_regional_telescopic_2nests_atm PASS Tries: 2 + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_1nest_atm +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_global_1nest_atm +Checking test 126 hafs_global_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + +0:The total amount of wall time = 175.049290 +0:The maximum resident set size (KB) = 214512 + +Test 126 hafs_global_1nest_atm PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_multiple_4nests_atm +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_global_multiple_4nests_atm +Checking test 127 hafs_global_multiple_4nests_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing atm.nest03.f006.nc .........OK + Comparing sfc.nest03.f006.nc .........OK + Comparing atm.nest04.f006.nc .........OK + Comparing sfc.nest04.f006.nc .........OK + Comparing atm.nest05.f006.nc .........OK + Comparing sfc.nest05.f006.nc .........OK + Comparing HURPRS.GrbF06 .........OK + Comparing HURPRS.GrbF06.nest02 .........OK + Comparing HURPRS.GrbF06.nest03 .........OK + Comparing HURPRS.GrbF06.nest04 .........OK + Comparing HURPRS.GrbF06.nest05 .........OK + +0:The total amount of wall time = 485.414990 +0:The maximum resident set size (KB) = 302640 + +Test 127 hafs_global_multiple_4nests_atm PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_specified_moving_1nest_atm +Checking test 128 hafs_regional_specified_moving_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing HURPRS.GrbF06 .........OK + Comparing HURPRS.GrbF06.nest02 .........OK + +0:The total amount of wall time = 249.288476 +0:The maximum resident set size (KB) = 317396 + +Test 128 hafs_regional_specified_moving_1nest_atm PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_storm_following_1nest_atm +Checking test 129 hafs_regional_storm_following_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + +0:The total amount of wall time = 229.504894 +0:The maximum resident set size (KB) = 317972 + +Test 129 hafs_regional_storm_following_1nest_atm PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_storm_following_1nest_atm_ocn +Checking test 130 hafs_regional_storm_following_1nest_atm_ocn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing archv.2020_238_18.a .........OK + Comparing archs.2020_238_18.a .........OK + +0:The total amount of wall time = 300.472312 +0:The maximum resident set size (KB) = 376048 + +Test 130 hafs_regional_storm_following_1nest_atm_ocn PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_storm_following_1nest_atm +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_global_storm_following_1nest_atm +Checking test 131 hafs_global_storm_following_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + +0:The total amount of wall time = 67.161907 +0:The maximum resident set size (KB) = 233180 + +Test 131 hafs_global_storm_following_1nest_atm PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_storm_following_1nest_atm_ocn_debug +Checking test 132 hafs_regional_storm_following_1nest_atm_ocn_debug results .... + Comparing atmf001.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atm.nest02.f001.nc .........OK + Comparing sfc.nest02.f001.nc .........OK + +0:The total amount of wall time = 766.907498 +0:The maximum resident set size (KB) = 402892 + +Test 132 hafs_regional_storm_following_1nest_atm_ocn_debug PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 133 hafs_regional_storm_following_1nest_atm_ocn_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing archv.2020_238_18.a .........OK + Comparing archs.2020_238_18.a .........OK + Comparing 20200825.180000.out_grd.ww3 .........OK + Comparing 20200825.180000.out_pnt.ww3 .........OK + +0:The total amount of wall time = 724.022212 +0:The maximum resident set size (KB) = 427020 + +Test 133 hafs_regional_storm_following_1nest_atm_ocn_wav PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_docn +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_docn +Checking test 134 hafs_regional_docn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK + +0:The total amount of wall time = 405.888203 +0:The maximum resident set size (KB) = 755532 + +Test 134 hafs_regional_docn PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_docn_oisst +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_docn_oisst +Checking test 135 hafs_regional_docn_oisst results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK + +0:The total amount of wall time = 399.660057 +0:The maximum resident set size (KB) = 734800 + +Test 135 hafs_regional_docn_oisst PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_datm_cdeps +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_datm_cdeps +Checking test 136 hafs_regional_datm_cdeps results .... + Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK + Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK + Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK + +0:The total amount of wall time = 1272.203095 +0:The maximum resident set size (KB) = 887888 + +Test 136 hafs_regional_datm_cdeps PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_control_cfsr +Checking test 137 datm_cdeps_control_cfsr results .... + Comparing RESTART/20111002.000000.MOM.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 = 168.375777 +0:The maximum resident set size (KB) = 716692 + +Test 137 datm_cdeps_control_cfsr PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_restart_cfsr +Checking test 138 datm_cdeps_restart_cfsr results .... + Comparing RESTART/20111002.000000.MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK + +0:The total amount of wall time = 100.451768 +0:The maximum resident set size (KB) = 715916 + +Test 138 datm_cdeps_restart_cfsr PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_gefs +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_control_gefs +Checking test 139 datm_cdeps_control_gefs 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 = 162.952423 +0:The maximum resident set size (KB) = 607484 + +Test 139 datm_cdeps_control_gefs PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_iau_gefs +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_iau_gefs +Checking test 140 datm_cdeps_iau_gefs 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 = 163.800197 +0:The maximum resident set size (KB) = 607444 + +Test 140 datm_cdeps_iau_gefs PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_stochy_gefs +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_stochy_gefs +Checking test 141 datm_cdeps_stochy_gefs 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 = 163.599324 +0:The maximum resident set size (KB) = 607500 + +Test 141 datm_cdeps_stochy_gefs PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_ciceC_cfsr +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_ciceC_cfsr +Checking test 142 datm_cdeps_ciceC_cfsr results .... + Comparing RESTART/20111002.000000.MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK + +0:The total amount of wall time = 167.851939 +0:The maximum resident set size (KB) = 716692 + +Test 142 datm_cdeps_ciceC_cfsr PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_bulk_cfsr +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_bulk_cfsr +Checking test 143 datm_cdeps_bulk_cfsr results .... + Comparing RESTART/20111002.000000.MOM.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 = 177.420459 +0:The maximum resident set size (KB) = 716700 + +Test 143 datm_cdeps_bulk_cfsr PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_bulk_gefs +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_bulk_gefs +Checking test 144 datm_cdeps_bulk_gefs 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 = 154.810043 +0:The maximum resident set size (KB) = 607416 + +Test 144 datm_cdeps_bulk_gefs PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_mx025_cfsr +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_mx025_cfsr +Checking test 145 datm_cdeps_mx025_cfsr results .... + Comparing RESTART/20111001.120000.MOM.res.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK + Comparing RESTART/iced.2011-10-01-43200.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK + +0:The total amount of wall time = 432.039969 +0:The maximum resident set size (KB) = 514328 + +Test 145 datm_cdeps_mx025_cfsr PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_mx025_gefs +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_mx025_gefs +Checking test 146 datm_cdeps_mx025_gefs results .... + Comparing RESTART/20111001.120000.MOM.res.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK + Comparing RESTART/iced.2011-10-01-43200.nc .........OK + Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK + +0:The total amount of wall time = 420.306111 +0:The maximum resident set size (KB) = 494736 + +Test 146 datm_cdeps_mx025_gefs PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_multiple_files_cfsr +Checking test 147 datm_cdeps_multiple_files_cfsr results .... + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK + +0:The total amount of wall time = 166.376409 +0:The maximum resident set size (KB) = 717068 + +Test 147 datm_cdeps_multiple_files_cfsr PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_3072x1536_cfsr +Checking test 148 datm_cdeps_3072x1536_cfsr 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 = 268.021302 +0:The maximum resident set size (KB) = 1942028 + +Test 148 datm_cdeps_3072x1536_cfsr PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_gfs +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_gfs +Checking test 149 datm_cdeps_gfs 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 = 268.804073 +0:The maximum resident set size (KB) = 1942004 + +Test 149 datm_cdeps_gfs PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_debug_cfsr +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_debug_cfsr +Checking test 150 datm_cdeps_debug_cfsr 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 = 369.027478 +0:The maximum resident set size (KB) = 700640 + +Test 150 datm_cdeps_debug_cfsr PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr_faster +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_control_cfsr_faster +Checking test 151 datm_cdeps_control_cfsr_faster results .... + Comparing RESTART/20111002.000000.MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK + +0:The total amount of wall time = 169.297973 +0:The maximum resident set size (KB) = 728684 + +Test 151 datm_cdeps_control_cfsr_faster PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_lnd_gswp3 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_lnd_gswp3 +Checking test 152 datm_cdeps_lnd_gswp3 results .... + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK + +0:The total amount of wall time = 11.216235 +0:The maximum resident set size (KB) = 208244 + +Test 152 datm_cdeps_lnd_gswp3 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_lnd_gswp3 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_lnd_gswp3_rst +Checking test 153 datm_cdeps_lnd_gswp3_rst results .... + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK + +0:The total amount of wall time = 15.821305 +0:The maximum resident set size (KB) = 208232 + +Test 153 datm_cdeps_lnd_gswp3_rst PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_atmlnd_sbs +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_p8_atmlnd_sbs +Checking test 154 control_p8_atmlnd_sbs results .... + Comparing sfcf000.tile1.nc .........OK + Comparing sfcf000.tile2.nc .........OK + Comparing sfcf000.tile3.nc .........OK + Comparing sfcf000.tile4.nc .........OK + Comparing sfcf000.tile5.nc .........OK + Comparing sfcf000.tile6.nc .........OK + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf000.tile1.nc .........OK + Comparing atmf000.tile2.nc .........OK + Comparing atmf000.tile3.nc .........OK + Comparing atmf000.tile4.nc .........OK + Comparing atmf000.tile5.nc .........OK + Comparing atmf000.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing ufs.cpld.cpl.hi.lnd.2021-03-22-43200.nc .........OK + Comparing ufs.cpld.cpl.hi.lnd.2021-03-23-21600.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile6.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK + +0:The total amount of wall time = 236.712703 +0:The maximum resident set size (KB) = 1462932 + +Test 154 control_p8_atmlnd_sbs PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/atmwav_control_noaero_p8 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/atmwav_control_noaero_p8 +Checking test 155 atmwav_control_noaero_p8 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + Comparing RESTART/ufs.atmw.cpl.r.2021-03-22-64800.nc .........OK + Comparing 20210322.180000.out_pnt.ww3 .........OK + Comparing 20210322.180000.out_grd.ww3 .........OK + Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK + +0:The total amount of wall time = 103.280325 +0:The maximum resident set size (KB) = 1434340 + +Test 155 atmwav_control_noaero_p8 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_atmwav +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_atmwav +Checking test 156 control_atmwav results .... + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + Comparing 20210322.180000.restart.glo_1deg .........OK + +0:The total amount of wall time = 102.909689 +0:The maximum resident set size (KB) = 474692 + +Test 156 control_atmwav PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/atmaero_control_p8 +Checking test 157 atmaero_control_p8 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 = 252.567753 +0:The maximum resident set size (KB) = 2704052 + +Test 157 atmaero_control_p8 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8_rad +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/atmaero_control_p8_rad +Checking test 158 atmaero_control_p8_rad 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 = 309.250990 +0:The maximum resident set size (KB) = 2758208 + +Test 158 atmaero_control_p8_rad PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8_rad_micro +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/atmaero_control_p8_rad_micro +Checking test 159 atmaero_control_p8_rad_micro results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + 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 = 309.759897 +0:The maximum resident set size (KB) = 2764556 + +Test 159 atmaero_control_p8_rad_micro PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_atmaq +Checking test 160 regional_atmaq results .... + Comparing sfcf000.nc .........OK + Comparing sfcf003.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf003.nc .........OK + Comparing atmf006.nc .........OK + Comparing RESTART/20190801.180000.coupler.res .........OK + Comparing RESTART/20190801.180000.fv_core.res.nc .........OK + Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.phy_data.nc .........OK + Comparing RESTART/20190801.180000.sfc_data.nc .........OK + +0:The total amount of wall time = 751.258022 +0:The maximum resident set size (KB) = 999360 + +Test 160 regional_atmaq PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq_faster +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_atmaq_faster +Checking test 161 regional_atmaq_faster results .... + Comparing sfcf000.nc .........OK + Comparing sfcf003.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf003.nc .........OK + Comparing atmf006.nc .........OK + Comparing RESTART/20190801.180000.coupler.res .........OK + Comparing RESTART/20190801.180000.fv_core.res.nc .........OK + Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.phy_data.nc .........OK + Comparing RESTART/20190801.180000.sfc_data.nc .........OK + +0:The total amount of wall time = 699.046862 +0:The maximum resident set size (KB) = 999160 + +Test 161 regional_atmaq_faster PASS + +Wed Apr 19 09:16:44 MDT 2023 Start Regression test Test 008 compile FAIL -Compile 001 elapsed time 1515 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 1409 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 1357 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 459 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 389 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 1072 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 1066 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 1674 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 1076 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 976 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 011 elapsed time 945 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 795 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 1318 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Test 008 compile FAIL + +Compile 001 elapsed time 1524 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1432 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 1405 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 478 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 422 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 1089 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 1096 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 1097 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 993 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 011 elapsed time 940 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 818 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 1302 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile 014 elapsed time 404 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 262 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 835 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 263 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 863 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile 017 elapsed time 846 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 282 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 275 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 1133 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 021 elapsed time 348 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 1698 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 1121 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 024 elapsed time 433 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 204 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 433 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 109 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 949 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 994 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 1002 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 907 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 874 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 033 elapsed time 299 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 034 elapsed time 1039 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8_mixedmode -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/cpld_control_p8_mixedmode +Compile 018 elapsed time 277 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 345 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 1146 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 021 elapsed time 355 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 1573 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 1130 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 024 elapsed time 445 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 199 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 428 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 104 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 961 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 1006 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 1009 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 910 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 902 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 033 elapsed time 325 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 034 elapsed time 1223 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8_mixedmode +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -104,14 +14153,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 321.130301 -0:The maximum resident set size (KB) = 2698004 +0:The total amount of wall time = 323.247808 +0:The maximum resident set size (KB) = 2698376 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_gfsv17 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/cpld_control_gfsv17 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_gfsv17 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -175,14 +14224,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 280.682872 -0:The maximum resident set size (KB) = 1437268 +0:The total amount of wall time = 283.218478 +0:The maximum resident set size (KB) = 1437616 Test 002 cpld_control_gfsv17 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/cpld_control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -247,14 +14296,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 323.736830 -0:The maximum resident set size (KB) = 2715224 +0:The total amount of wall time = 325.782515 +0:The maximum resident set size (KB) = 2715216 Test 003 cpld_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/cpld_restart_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -307,14 +14356,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 186.372603 -0:The maximum resident set size (KB) = 2576552 +0:The total amount of wall time = 191.654366 +0:The maximum resident set size (KB) = 2576416 Test 004 cpld_restart_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/cpld_control_qr_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -379,14 +14428,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 328.036696 -0:The maximum resident set size (KB) = 2719616 +0:The total amount of wall time = 333.837542 +0:The maximum resident set size (KB) = 2719236 Test 005 cpld_control_qr_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/cpld_restart_qr_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -439,14 +14488,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 194.617490 -0:The maximum resident set size (KB) = 2593380 +0:The total amount of wall time = 203.500991 +0:The maximum resident set size (KB) = 2593572 Test 006 cpld_restart_qr_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/cpld_2threads_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -499,14 +14548,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 256.430225 -0:The maximum resident set size (KB) = 3177700 +0:The total amount of wall time = 319.449605 +0:The maximum resident set size (KB) = 3178008 Test 007 cpld_2threads_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/cpld_decomp_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -559,14 +14608,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 312.621668 -0:The maximum resident set size (KB) = 2720244 +0:The total amount of wall time = 326.626662 +0:The maximum resident set size (KB) = 2720184 Test 008 cpld_decomp_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/cpld_mpi_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -619,14 +14668,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 269.731329 -0:The maximum resident set size (KB) = 2680512 +0:The total amount of wall time = 280.797767 +0:The maximum resident set size (KB) = 2680248 Test 009 cpld_mpi_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_ciceC_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/cpld_control_ciceC_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_ciceC_p8 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -691,14 +14740,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 323.012335 -0:The maximum resident set size (KB) = 2715228 +0:The total amount of wall time = 326.237034 +0:The maximum resident set size (KB) = 2715460 Test 010 cpld_control_ciceC_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/cpld_control_c192_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c192_p8 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_control_c192_p8 Checking test 011 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -751,14 +14800,14 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -0:The total amount of wall time = 623.773572 -0:The maximum resident set size (KB) = 3352080 +0:The total amount of wall time = 636.580120 +0:The maximum resident set size (KB) = 3352812 Test 011 cpld_control_c192_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/cpld_restart_c192_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c192_p8 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_restart_c192_p8 Checking test 012 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -811,14 +14860,14 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -0:The total amount of wall time = 383.639506 -0:The maximum resident set size (KB) = 3276604 +0:The total amount of wall time = 388.553701 +0:The maximum resident set size (KB) = 3276636 Test 012 cpld_restart_c192_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/cpld_control_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_noaero_p8 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_control_noaero_p8 Checking test 013 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -882,14 +14931,14 @@ Checking test 013 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 295.013108 -0:The maximum resident set size (KB) = 1435608 +0:The total amount of wall time = 295.894239 +0:The maximum resident set size (KB) = 1435532 Test 013 cpld_control_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/cpld_control_nowave_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c96_noaero_p8 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_control_nowave_noaero_p8 Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -951,14 +15000,14 @@ Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 193.798217 -0:The maximum resident set size (KB) = 1453240 +0:The total amount of wall time = 196.843420 +0:The maximum resident set size (KB) = 1453108 Test 014 cpld_control_nowave_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/cpld_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_debug_p8 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_debug_p8 Checking test 015 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1011,14 +15060,14 @@ Checking test 015 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 351.504136 -0:The maximum resident set size (KB) = 2778664 +0:The total amount of wall time = 351.699327 +0:The maximum resident set size (KB) = 2778712 -Test 015 cpld_debug_p8 PASS +Test 015 cpld_debug_p8 PASS Tries: 2 -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_debug_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/cpld_debug_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_debug_noaero_p8 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_debug_noaero_p8 Checking test 016 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1070,14 +15119,14 @@ Checking test 016 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 302.923195 -0:The maximum resident set size (KB) = 1453936 +0:The total amount of wall time = 302.184823 +0:The maximum resident set size (KB) = 1453924 Test 016 cpld_debug_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_noaero_p8_agrid -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/cpld_control_noaero_p8_agrid +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_noaero_p8_agrid +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_control_noaero_p8_agrid Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1139,14 +15188,14 @@ Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 253.924520 -0:The maximum resident set size (KB) = 1456944 +0:The total amount of wall time = 278.779000 +0:The maximum resident set size (KB) = 1456852 Test 017 cpld_control_noaero_p8_agrid PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/cpld_control_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c48 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_control_c48 Checking test 018 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1196,14 +15245,14 @@ Checking test 018 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 610.629956 -0:The maximum resident set size (KB) = 2586356 +0:The total amount of wall time = 606.860800 +0:The maximum resident set size (KB) = 2586392 Test 018 cpld_control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/cpld_warmstart_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_warmstart_c48 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_warmstart_c48 Checking test 019 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1253,14 +15302,14 @@ Checking test 019 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -0:The total amount of wall time = 161.901745 -0:The maximum resident set size (KB) = 2601520 +0:The total amount of wall time = 165.249660 +0:The maximum resident set size (KB) = 2601676 Test 019 cpld_warmstart_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/cpld_restart_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_warmstart_c48 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_restart_c48 Checking test 020 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1310,14 +15359,14 @@ Checking test 020 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -0:The total amount of wall time = 85.693921 -0:The maximum resident set size (KB) = 2019240 +0:The total amount of wall time = 84.682398 +0:The maximum resident set size (KB) = 2018848 Test 020 cpld_restart_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_CubedSphereGrid -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_CubedSphereGrid +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_CubedSphereGrid Checking test 021 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1344,28 +15393,28 @@ Checking test 021 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -0:The total amount of wall time = 144.089710 -0:The maximum resident set size (KB) = 454280 +0:The total amount of wall time = 142.357770 +0:The maximum resident set size (KB) = 454412 Test 021 control_CubedSphereGrid PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_CubedSphereGrid_parallel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_CubedSphereGrid_parallel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid_parallel +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_CubedSphereGrid_parallel Checking test 022 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc .........OK + Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK -0:The total amount of wall time = 139.950543 -0:The maximum resident set size (KB) = 454148 +0:The total amount of wall time = 140.270029 +0:The maximum resident set size (KB) = 454272 Test 022 control_CubedSphereGrid_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_latlon -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_latlon +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_latlon +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_latlon Checking test 023 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1376,14 +15425,14 @@ Checking test 023 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 146.271458 -0:The maximum resident set size (KB) = 454240 +0:The total amount of wall time = 148.352084 +0:The maximum resident set size (KB) = 454344 Test 023 control_latlon PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_wrtGauss_netcdf_parallel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_wrtGauss_netcdf_parallel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wrtGauss_netcdf_parallel +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_wrtGauss_netcdf_parallel Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1394,14 +15443,14 @@ Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 146.583450 -0:The maximum resident set size (KB) = 454260 +0:The total amount of wall time = 150.000772 +0:The maximum resident set size (KB) = 454348 Test 024 control_wrtGauss_netcdf_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c48 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_c48 Checking test 025 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1440,14 +15489,14 @@ Checking test 025 control_c48 results .... Comparing 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.570346 -0:The maximum resident set size (KB) = 633464 +0:The total amount of wall time = 447.470574 +0:The maximum resident set size (KB) = 633508 Test 025 control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_c192 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_c192 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c192 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_c192 Checking test 026 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1458,14 +15507,14 @@ Checking test 026 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 582.018455 -0:The maximum resident set size (KB) = 560372 +0:The total amount of wall time = 596.749778 +0:The maximum resident set size (KB) = 560248 Test 026 control_c192 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_c384 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_c384 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c384 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_c384 Checking test 027 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1476,14 +15525,14 @@ Checking test 027 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 589.190692 -0:The maximum resident set size (KB) = 902572 +0:The total amount of wall time = 590.272811 +0:The maximum resident set size (KB) = 902584 Test 027 control_c384 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_c384gdas -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_c384gdas +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c384gdas +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_c384gdas Checking test 028 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1526,14 +15575,14 @@ Checking test 028 control_c384gdas 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 = 516.152287 -0:The maximum resident set size (KB) = 1026892 +0:The total amount of wall time = 525.948979 +0:The maximum resident set size (KB) = 1027116 Test 028 control_c384gdas PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_stochy +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_stochy Checking test 029 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1544,28 +15593,28 @@ Checking test 029 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 95.907408 -0:The maximum resident set size (KB) = 459156 +0:The total amount of wall time = 98.211706 +0:The maximum resident set size (KB) = 459220 Test 029 control_stochy PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_stochy_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_stochy_restart Checking test 030 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 53.764188 -0:The maximum resident set size (KB) = 226560 +0:The total amount of wall time = 53.437383 +0:The maximum resident set size (KB) = 226704 Test 030 control_stochy_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_lndp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_lndp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_lndp +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_lndp Checking test 031 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1576,14 +15625,14 @@ Checking test 031 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 90.839408 -0:The maximum resident set size (KB) = 458232 +0:The total amount of wall time = 90.843569 +0:The maximum resident set size (KB) = 458280 Test 031 control_lndp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_iovr4 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_iovr4 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_iovr4 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_iovr4 Checking test 032 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1598,14 +15647,14 @@ Checking test 032 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 149.332514 -0:The maximum resident set size (KB) = 454256 +0:The total amount of wall time = 148.875263 +0:The maximum resident set size (KB) = 454416 Test 032 control_iovr4 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_iovr5 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_iovr5 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_iovr5 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_iovr5 Checking test 033 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1620,14 +15669,14 @@ Checking test 033 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 148.203009 -0:The maximum resident set size (KB) = 454284 +0:The total amount of wall time = 148.723548 +0:The maximum resident set size (KB) = 454288 Test 033 control_iovr5 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_p8 Checking test 034 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1674,14 +15723,14 @@ Checking test 034 control_p8 results .... Comparing 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.145156 -0:The maximum resident set size (KB) = 1423892 +0:The total amount of wall time = 184.886156 +0:The maximum resident set size (KB) = 1423940 Test 034 control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_restart_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_restart_p8 Checking test 035 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1720,14 +15769,14 @@ Checking test 035 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 93.338318 -0:The maximum resident set size (KB) = 582852 +0:The total amount of wall time = 96.956799 +0:The maximum resident set size (KB) = 583176 Test 035 control_restart_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_qr_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_qr_p8 Checking test 036 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1774,14 +15823,14 @@ Checking test 036 control_qr_p8 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 = 181.681925 -0:The maximum resident set size (KB) = 1427244 +0:The total amount of wall time = 182.303264 +0:The maximum resident set size (KB) = 1427236 Test 036 control_qr_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_restart_qr_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_restart_qr_p8 Checking test 037 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1820,14 +15869,14 @@ Checking test 037 control_restart_qr_p8 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 = 97.199596 -0:The maximum resident set size (KB) = 596884 +0:The total amount of wall time = 99.138111 +0:The maximum resident set size (KB) = 596908 Test 037 control_restart_qr_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_decomp_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_decomp_p8 Checking test 038 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1870,14 +15919,14 @@ Checking test 038 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 186.243067 -0:The maximum resident set size (KB) = 1418352 +0:The total amount of wall time = 190.798621 +0:The maximum resident set size (KB) = 1418764 Test 038 control_decomp_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_2threads_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_2threads_p8 Checking test 039 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1920,14 +15969,14 @@ Checking test 039 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 173.188700 -0:The maximum resident set size (KB) = 1508928 +0:The total amount of wall time = 173.993645 +0:The maximum resident set size (KB) = 1510432 Test 039 control_2threads_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8_lndp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_p8_lndp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_lndp +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_p8_lndp Checking test 040 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1946,14 +15995,14 @@ Checking test 040 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -0:The total amount of wall time = 335.389507 -0:The maximum resident set size (KB) = 1424880 +0:The total amount of wall time = 338.425811 +0:The maximum resident set size (KB) = 1424948 Test 040 control_p8_lndp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8_rrtmgp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_p8_rrtmgp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_rrtmgp +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_p8_rrtmgp Checking test 041 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2000,14 +16049,14 @@ Checking test 041 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 245.541406 -0:The maximum resident set size (KB) = 1480276 +0:The total amount of wall time = 258.756869 +0:The maximum resident set size (KB) = 1480300 Test 041 control_p8_rrtmgp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8_mynn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_p8_mynn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_mynn +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_p8_mynn Checking test 042 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2054,14 +16103,14 @@ Checking test 042 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 181.301326 -0:The maximum resident set size (KB) = 1427940 +0:The total amount of wall time = 187.198473 +0:The maximum resident set size (KB) = 1427956 Test 042 control_p8_mynn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/merra2_thompson -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/merra2_thompson +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/merra2_thompson +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/merra2_thompson Checking test 043 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2108,14 +16157,14 @@ Checking test 043 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 200.925122 -0:The maximum resident set size (KB) = 1429656 +0:The total amount of wall time = 209.432933 +0:The maximum resident set size (KB) = 1429696 Test 043 merra2_thompson PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/regional_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_control Checking test 044 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2126,28 +16175,28 @@ Checking test 044 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 330.491854 -0:The maximum resident set size (KB) = 604744 +0:The total amount of wall time = 345.645007 +0:The maximum resident set size (KB) = 604808 Test 044 regional_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/regional_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_restart Checking test 045 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 171.628641 -0:The maximum resident set size (KB) = 594152 +0:The total amount of wall time = 170.776429 +0:The maximum resident set size (KB) = 594212 Test 045 regional_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/regional_control_qr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_control_qr Checking test 046 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2158,28 +16207,28 @@ Checking test 046 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 328.802467 -0:The maximum resident set size (KB) = 604812 +0:The total amount of wall time = 346.584383 +0:The maximum resident set size (KB) = 604832 Test 046 regional_control_qr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/regional_restart_qr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_restart_qr Checking test 047 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 170.124655 -0:The maximum resident set size (KB) = 594084 +0:The total amount of wall time = 177.857864 +0:The maximum resident set size (KB) = 594208 Test 047 regional_restart_qr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/regional_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_decomp Checking test 048 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2190,14 +16239,14 @@ Checking test 048 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 358.288374 -0:The maximum resident set size (KB) = 598888 +0:The total amount of wall time = 361.479547 +0:The maximum resident set size (KB) = 598916 Test 048 regional_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/regional_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_2threads Checking test 049 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2208,14 +16257,14 @@ Checking test 049 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 197.064710 -0:The maximum resident set size (KB) = 611488 +0:The total amount of wall time = 205.169488 +0:The maximum resident set size (KB) = 611504 Test 049 regional_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_noquilt -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/regional_noquilt +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_noquilt +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_noquilt Checking test 050 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2223,28 +16272,28 @@ Checking test 050 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -0:The total amount of wall time = 354.083616 -0:The maximum resident set size (KB) = 599064 +0:The total amount of wall time = 364.785237 +0:The maximum resident set size (KB) = 599052 Test 050 regional_noquilt PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_netcdf_parallel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/regional_netcdf_parallel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_netcdf_parallel +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_netcdf_parallel Checking test 051 regional_netcdf_parallel results .... - Comparing dynf000.nc .........OK + Comparing dynf000.nc ............ALT CHECK......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 = 340.386141 -0:The maximum resident set size (KB) = 596660 +0:The total amount of wall time = 338.888919 +0:The maximum resident set size (KB) = 596728 Test 051 regional_netcdf_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/regional_2dwrtdecomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_2dwrtdecomp Checking test 052 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2255,14 +16304,14 @@ Checking test 052 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 329.960764 -0:The maximum resident set size (KB) = 604752 +0:The total amount of wall time = 346.737229 +0:The maximum resident set size (KB) = 604824 Test 052 regional_2dwrtdecomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/fv3_regional_wofs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/regional_wofs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/fv3_regional_wofs +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_wofs Checking test 053 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2273,14 +16322,14 @@ Checking test 053 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 418.074357 -0:The maximum resident set size (KB) = 275824 +0:The total amount of wall time = 429.869366 +0:The maximum resident set size (KB) = 275828 Test 053 regional_wofs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/rap_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_control Checking test 054 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2327,14 +16376,14 @@ Checking test 054 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 479.434551 -0:The maximum resident set size (KB) = 823444 +0:The total amount of wall time = 476.057633 +0:The maximum resident set size (KB) = 823364 Test 054 rap_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_spp_sppt_shum_skeb -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/regional_spp_sppt_shum_skeb +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_spp_sppt_shum_skeb +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_spp_sppt_shum_skeb Checking test 055 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2345,14 +16394,14 @@ Checking test 055 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 255.858449 -0:The maximum resident set size (KB) = 952272 +0:The total amount of wall time = 262.213664 +0:The maximum resident set size (KB) = 952080 Test 055 regional_spp_sppt_shum_skeb PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/rap_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_decomp Checking test 056 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2399,14 +16448,14 @@ Checking test 056 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 502.119473 -0:The maximum resident set size (KB) = 822336 +0:The total amount of wall time = 506.633123 +0:The maximum resident set size (KB) = 822220 Test 056 rap_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/rap_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_2threads Checking test 057 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2453,14 +16502,14 @@ Checking test 057 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 459.390876 -0:The maximum resident set size (KB) = 893616 +0:The total amount of wall time = 461.546221 +0:The maximum resident set size (KB) = 893584 Test 057 rap_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/rap_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_restart Checking test 058 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2499,14 +16548,14 @@ Checking test 058 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 244.747412 -0:The maximum resident set size (KB) = 571416 +0:The total amount of wall time = 244.002679 +0:The maximum resident set size (KB) = 571484 Test 058 rap_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/rap_sfcdiff +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_sfcdiff Checking test 059 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2553,14 +16602,14 @@ Checking test 059 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 481.289377 -0:The maximum resident set size (KB) = 823372 +0:The total amount of wall time = 482.582957 +0:The maximum resident set size (KB) = 823424 Test 059 rap_sfcdiff PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/rap_sfcdiff_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_sfcdiff_decomp Checking test 060 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2607,14 +16656,14 @@ Checking test 060 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 510.001313 -0:The maximum resident set size (KB) = 822080 +0:The total amount of wall time = 507.450761 +0:The maximum resident set size (KB) = 822240 Test 060 rap_sfcdiff_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/rap_sfcdiff_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_sfcdiff_restart Checking test 061 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2653,14 +16702,14 @@ Checking test 061 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 349.929991 -0:The maximum resident set size (KB) = 570648 +0:The total amount of wall time = 360.950337 +0:The maximum resident set size (KB) = 570544 Test 061 rap_sfcdiff_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/hrrr_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hrrr_control Checking test 062 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2707,14 +16756,14 @@ Checking test 062 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 464.248493 -0:The maximum resident set size (KB) = 820860 +0:The total amount of wall time = 466.603670 +0:The maximum resident set size (KB) = 820848 Test 062 hrrr_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/hrrr_control_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hrrr_control_decomp Checking test 063 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2761,14 +16810,14 @@ Checking test 063 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 484.871093 -0:The maximum resident set size (KB) = 820696 +0:The total amount of wall time = 488.455334 +0:The maximum resident set size (KB) = 820848 Test 063 hrrr_control_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/hrrr_control_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hrrr_control_2threads Checking test 064 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2815,14 +16864,14 @@ Checking test 064 hrrr_control_2threads results .... Comparing 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.255252 -0:The maximum resident set size (KB) = 888448 +0:The total amount of wall time = 442.141825 +0:The maximum resident set size (KB) = 888488 Test 064 hrrr_control_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/hrrr_control_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hrrr_control_restart Checking test 065 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2861,14 +16910,14 @@ Checking test 065 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 341.610458 -0:The maximum resident set size (KB) = 566496 +0:The total amount of wall time = 344.086012 +0:The maximum resident set size (KB) = 566352 Test 065 hrrr_control_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_v1beta -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/rrfs_v1beta +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1beta +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rrfs_v1beta Checking test 066 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2915,14 +16964,14 @@ Checking test 066 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 473.338874 -0:The maximum resident set size (KB) = 819460 +0:The total amount of wall time = 476.729680 +0:The maximum resident set size (KB) = 819452 Test 066 rrfs_v1beta PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_v1nssl -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/rrfs_v1nssl +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1nssl +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rrfs_v1nssl Checking test 067 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2937,14 +16986,14 @@ Checking test 067 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 584.804226 -0:The maximum resident set size (KB) = 508672 +0:The total amount of wall time = 587.560475 +0:The maximum resident set size (KB) = 508704 Test 067 rrfs_v1nssl PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/rrfs_v1nssl_nohailnoccn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rrfs_v1nssl_nohailnoccn Checking test 068 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2959,14 +17008,14 @@ Checking test 068 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 565.421926 -0:The maximum resident set size (KB) = 502628 +0:The total amount of wall time = 565.648225 +0:The maximum resident set size (KB) = 502516 Test 068 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rrfs_smoke_conus13km_hrrr_warm Checking test 069 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2975,14 +17024,14 @@ Checking test 069 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 152.570205 -0:The maximum resident set size (KB) = 675288 +0:The total amount of wall time = 155.222855 +0:The maximum resident set size (KB) = 675236 Test 069 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 070 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2991,14 +17040,14 @@ Checking test 070 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 93.204177 -0:The maximum resident set size (KB) = 693864 +0:The total amount of wall time = 95.558075 +0:The maximum resident set size (KB) = 693964 Test 070 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/rrfs_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rrfs_conus13km_hrrr_warm Checking test 071 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3007,14 +17056,14 @@ Checking test 071 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 133.722814 -0:The maximum resident set size (KB) = 654072 +0:The total amount of wall time = 135.446161 +0:The maximum resident set size (KB) = 654004 Test 071 rrfs_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rrfs_smoke_conus13km_radar_tten_warm Checking test 072 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3023,26 +17072,26 @@ Checking test 072 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 153.158834 -0:The maximum resident set size (KB) = 677920 +0:The total amount of wall time = 156.980562 +0:The maximum resident set size (KB) = 677892 Test 072 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 073 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 69.803306 -0:The maximum resident set size (KB) = 632360 +0:The total amount of wall time = 71.902954 +0:The maximum resident set size (KB) = 632128 Test 073 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_csawmg -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_csawmg +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmg +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_csawmg Checking test 074 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3053,14 +17102,14 @@ Checking test 074 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 393.867557 -0:The maximum resident set size (KB) = 527660 +0:The total amount of wall time = 398.825305 +0:The maximum resident set size (KB) = 527700 Test 074 control_csawmg PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_csawmgt -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_csawmgt +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmgt +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_csawmgt Checking test 075 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3071,14 +17120,14 @@ Checking test 075 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 393.903939 +0:The total amount of wall time = 396.293106 0:The maximum resident set size (KB) = 528372 Test 075 control_csawmgt PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_ras -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_ras +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_ras +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_ras Checking test 076 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3089,26 +17138,26 @@ Checking test 076 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 200.579277 -0:The maximum resident set size (KB) = 491388 +0:The total amount of wall time = 209.019942 +0:The maximum resident set size (KB) = 491216 Test 076 control_ras PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_wam -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_wam +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wam +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_wam Checking test 077 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -0:The total amount of wall time = 123.470556 -0:The maximum resident set size (KB) = 206340 +0:The total amount of wall time = 130.339794 +0:The maximum resident set size (KB) = 206284 Test 077 control_wam PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8_faster -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_p8_faster +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_faster +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_p8_faster Checking test 078 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3155,14 +17204,14 @@ Checking test 078 control_p8_faster results .... Comparing 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.249224 -0:The maximum resident set size (KB) = 1423700 +0:The total amount of wall time = 173.370956 +0:The maximum resident set size (KB) = 1423728 Test 078 control_p8_faster PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control_faster -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/regional_control_faster +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control_faster +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_control_faster Checking test 079 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3173,56 +17222,56 @@ Checking test 079 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 308.485708 -0:The maximum resident set size (KB) = 604632 +0:The total amount of wall time = 327.839386 +0:The maximum resident set size (KB) = 604604 Test 079 regional_control_faster PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 080 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 875.726134 -0:The maximum resident set size (KB) = 704868 +0:The total amount of wall time = 873.958124 +0:The maximum resident set size (KB) = 703832 Test 080 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 081 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 500.842764 -0:The maximum resident set size (KB) = 725328 +0:The total amount of wall time = 497.351031 +0:The maximum resident set size (KB) = 725300 Test 081 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/rrfs_conus13km_hrrr_warm_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rrfs_conus13km_hrrr_warm_debug Checking test 082 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 782.584603 -0:The maximum resident set size (KB) = 683464 +0:The total amount of wall time = 779.758074 +0:The maximum resident set size (KB) = 682884 Test 082 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_CubedSphereGrid_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_CubedSphereGrid_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid_debug +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_CubedSphereGrid_debug Checking test 083 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3249,334 +17298,334 @@ Checking test 083 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -0:The total amount of wall time = 154.893573 -0:The maximum resident set size (KB) = 617544 +0:The total amount of wall time = 155.705236 +0:The maximum resident set size (KB) = 617584 Test 083 control_CubedSphereGrid_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_wrtGauss_netcdf_parallel_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_wrtGauss_netcdf_parallel_debug Checking test 084 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc .........OK + Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 155.276527 -0:The maximum resident set size (KB) = 615656 +0:The total amount of wall time = 157.345775 +0:The maximum resident set size (KB) = 615524 Test 084 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_stochy_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_stochy_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy_debug +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_stochy_debug Checking test 085 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 175.125345 -0:The maximum resident set size (KB) = 621176 +0:The total amount of wall time = 175.707591 +0:The maximum resident set size (KB) = 621172 Test 085 control_stochy_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_lndp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_lndp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_lndp_debug +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_lndp_debug Checking test 086 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 156.652371 +0:The total amount of wall time = 167.546108 0:The maximum resident set size (KB) = 620028 Test 086 control_lndp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_csawmg_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_csawmg_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmg_debug +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_csawmg_debug Checking test 087 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 247.371630 -0:The maximum resident set size (KB) = 666492 +0:The total amount of wall time = 249.229441 +0:The maximum resident set size (KB) = 666408 Test 087 control_csawmg_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_csawmgt_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_csawmgt_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmgt_debug +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_csawmgt_debug Checking test 088 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 243.292137 -0:The maximum resident set size (KB) = 667404 +0:The total amount of wall time = 245.216343 +0:The maximum resident set size (KB) = 667396 Test 088 control_csawmgt_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_ras_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_ras_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_ras_debug +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_ras_debug Checking test 089 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 159.113382 -0:The maximum resident set size (KB) = 630276 +0:The total amount of wall time = 161.219816 +0:The maximum resident set size (KB) = 630452 Test 089 control_ras_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_diag_debug +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_diag_debug Checking test 090 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 159.097768 -0:The maximum resident set size (KB) = 674916 +0:The total amount of wall time = 160.454000 +0:The maximum resident set size (KB) = 674936 Test 090 control_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_debug_p8 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_debug_p8 Checking test 091 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 173.940795 -0:The maximum resident set size (KB) = 1442480 +0:The total amount of wall time = 175.846871 +0:The maximum resident set size (KB) = 1442392 Test 091 control_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/regional_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_debug +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_debug Checking test 092 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 1034.767736 -0:The maximum resident set size (KB) = 625872 +0:The total amount of wall time = 1038.893894 +0:The maximum resident set size (KB) = 625264 Test 092 regional_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/rap_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_control_debug Checking test 093 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 285.541282 -0:The maximum resident set size (KB) = 986664 +0:The total amount of wall time = 287.544591 +0:The maximum resident set size (KB) = 986676 Test 093 rap_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/hrrr_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_debug +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hrrr_control_debug Checking test 094 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 281.215554 -0:The maximum resident set size (KB) = 984192 +0:The total amount of wall time = 282.380766 +0:The maximum resident set size (KB) = 984240 Test 094 hrrr_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/rap_unified_drag_suite_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_unified_drag_suite_debug Checking test 095 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 286.145203 -0:The maximum resident set size (KB) = 986744 +0:The total amount of wall time = 286.901845 +0:The maximum resident set size (KB) = 986636 Test 095 rap_unified_drag_suite_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/rap_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_diag_debug +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_diag_debug Checking test 096 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 297.976094 -0:The maximum resident set size (KB) = 1070044 +0:The total amount of wall time = 298.537588 +0:The maximum resident set size (KB) = 1069996 Test 096 rap_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/rap_cires_ugwp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_cires_ugwp_debug +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_cires_ugwp_debug Checking test 097 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 291.845483 -0:The maximum resident set size (KB) = 985884 +0:The total amount of wall time = 292.691711 +0:The maximum resident set size (KB) = 985896 Test 097 rap_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/rap_unified_ugwp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_cires_ugwp_debug +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_unified_ugwp_debug Checking test 098 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 291.828370 -0:The maximum resident set size (KB) = 986800 +0:The total amount of wall time = 292.833698 +0:The maximum resident set size (KB) = 986736 Test 098 rap_unified_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_lndp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/rap_lndp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_lndp_debug +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_lndp_debug Checking test 099 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 288.451112 -0:The maximum resident set size (KB) = 987572 +0:The total amount of wall time = 288.859725 +0:The maximum resident set size (KB) = 987288 Test 099 rap_lndp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_flake_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/rap_flake_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_flake_debug +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_flake_debug Checking test 100 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 285.296857 -0:The maximum resident set size (KB) = 986816 +0:The total amount of wall time = 286.913373 +0:The maximum resident set size (KB) = 986672 Test 100 rap_flake_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_progcld_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/rap_progcld_thompson_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_progcld_thompson_debug +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_progcld_thompson_debug Checking test 101 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 286.555288 -0:The maximum resident set size (KB) = 986836 +0:The total amount of wall time = 286.536893 +0:The maximum resident set size (KB) = 986688 Test 101 rap_progcld_thompson_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_noah_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/rap_noah_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_noah_debug +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_noah_debug Checking test 102 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 280.917316 -0:The maximum resident set size (KB) = 984496 +0:The total amount of wall time = 297.647128 +0:The maximum resident set size (KB) = 984640 Test 102 rap_noah_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_sfcdiff_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/rap_sfcdiff_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff_debug +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_sfcdiff_debug Checking test 103 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 285.936607 -0:The maximum resident set size (KB) = 986652 +0:The total amount of wall time = 288.596968 +0:The maximum resident set size (KB) = 986568 Test 103 rap_sfcdiff_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_noah_sfcdiff_cires_ugwp_debug Checking test 104 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 471.367328 -0:The maximum resident set size (KB) = 985332 +0:The total amount of wall time = 581.022047 +0:The maximum resident set size (KB) = 985188 Test 104 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_v1beta_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/rrfs_v1beta_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1beta_debug +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rrfs_v1beta_debug Checking test 105 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 282.103660 -0:The maximum resident set size (KB) = 983356 +0:The total amount of wall time = 285.265867 +0:The maximum resident set size (KB) = 983392 Test 105 rrfs_v1beta_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_wam_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_wam_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wam_debug +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_wam_debug Checking test 106 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 289.513764 -0:The maximum resident set size (KB) = 235452 +0:The total amount of wall time = 290.837122 +0:The maximum resident set size (KB) = 235304 Test 106 control_wam_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3587,14 +17636,14 @@ Checking test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 243.943488 -0:The maximum resident set size (KB) = 851124 +0:The total amount of wall time = 248.192314 +0:The maximum resident set size (KB) = 851296 Test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/rap_control_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_control_dyn32_phy32 Checking test 108 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3641,14 +17690,14 @@ Checking test 108 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 397.287879 -0:The maximum resident set size (KB) = 707844 +0:The total amount of wall time = 404.180404 +0:The maximum resident set size (KB) = 707964 Test 108 rap_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/hrrr_control_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hrrr_control_dyn32_phy32 Checking test 109 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3695,14 +17744,14 @@ Checking test 109 hrrr_control_dyn32_phy32 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 = 204.710877 -0:The maximum resident set size (KB) = 706452 +0:The total amount of wall time = 210.697131 +0:The maximum resident set size (KB) = 706508 Test 109 hrrr_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/rap_2threads_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_2threads_dyn32_phy32 Checking test 110 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3749,14 +17798,14 @@ Checking test 110 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 385.286192 -0:The maximum resident set size (KB) = 759436 +0:The total amount of wall time = 390.548730 +0:The maximum resident set size (KB) = 759508 Test 110 rap_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/hrrr_control_2threads_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hrrr_control_2threads_dyn32_phy32 Checking test 111 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3803,14 +17852,14 @@ Checking test 111 hrrr_control_2threads_dyn32_phy32 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 = 196.558522 -0:The maximum resident set size (KB) = 756432 +0:The total amount of wall time = 200.770576 +0:The maximum resident set size (KB) = 756388 Test 111 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/hrrr_control_decomp_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hrrr_control_decomp_dyn32_phy32 Checking test 112 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3857,14 +17906,14 @@ Checking test 112 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 217.406370 -0:The maximum resident set size (KB) = 704436 +0:The total amount of wall time = 219.220429 +0:The maximum resident set size (KB) = 704308 Test 112 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/rap_restart_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_restart_dyn32_phy32 Checking test 113 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3903,14 +17952,14 @@ Checking test 113 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 294.541522 -0:The maximum resident set size (KB) = 544564 +0:The total amount of wall time = 298.960030 +0:The maximum resident set size (KB) = 544696 Test 113 rap_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/hrrr_control_restart_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hrrr_control_restart_dyn32_phy32 Checking test 114 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3949,14 +17998,14 @@ Checking test 114 hrrr_control_restart_dyn32_phy32 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 = 108.696021 -0:The maximum resident set size (KB) = 537556 +0:The total amount of wall time = 230.804297 +0:The maximum resident set size (KB) = 536892 Test 114 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/rap_control_dyn64_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn64_phy32 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_control_dyn64_phy32 Checking test 115 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4003,81 +18052,81 @@ Checking test 115 rap_control_dyn64_phy32 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 = 274.111054 -0:The maximum resident set size (KB) = 730324 +0:The total amount of wall time = 274.277225 +0:The maximum resident set size (KB) = 730884 Test 115 rap_control_dyn64_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/rap_control_debug_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_control_debug_dyn32_phy32 Checking test 116 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 282.339826 -0:The maximum resident set size (KB) = 873072 +0:The total amount of wall time = 284.092107 +0:The maximum resident set size (KB) = 872876 Test 116 rap_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/hrrr_control_debug_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hrrr_control_debug_dyn32_phy32 Checking test 117 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 278.454327 -0:The maximum resident set size (KB) = 870992 +0:The total amount of wall time = 280.807695 +0:The maximum resident set size (KB) = 871116 Test 117 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/rap_control_dyn64_phy32_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug_dyn64_phy32 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_control_dyn64_phy32_debug Checking test 118 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 286.796742 -0:The maximum resident set size (KB) = 890024 +0:The total amount of wall time = 288.275408 +0:The maximum resident set size (KB) = 890092 Test 118 rap_control_dyn64_phy32_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/hafs_regional_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_atm Checking test 119 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -0:The total amount of wall time = 258.698797 -0:The maximum resident set size (KB) = 742660 +0:The total amount of wall time = 263.337718 +0:The maximum resident set size (KB) = 741796 Test 119 hafs_regional_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/hafs_regional_atm_thompson_gfdlsf +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_atm_thompson_gfdlsf Checking test 120 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -0:The total amount of wall time = 284.869152 -0:The maximum resident set size (KB) = 1100216 +0:The total amount of wall time = 291.218797 +0:The maximum resident set size (KB) = 1099660 Test 120 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm_ocn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/hafs_regional_atm_ocn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_ocn +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_atm_ocn Checking test 121 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4086,14 +18135,14 @@ Checking test 121 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 453.467857 -0:The maximum resident set size (KB) = 741180 +0:The total amount of wall time = 459.257499 +0:The maximum resident set size (KB) = 740560 Test 121 hafs_regional_atm_ocn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm_wav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/hafs_regional_atm_wav +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_wav +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_atm_wav Checking test 122 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4102,14 +18151,14 @@ Checking test 122 hafs_regional_atm_wav 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 = 1089.348462 -0:The maximum resident set size (KB) = 772188 +0:The total amount of wall time = 1028.036737 +0:The maximum resident set size (KB) = 768168 Test 122 hafs_regional_atm_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm_ocn_wav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/hafs_regional_atm_ocn_wav +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_ocn_wav +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_atm_ocn_wav Checking test 123 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4120,28 +18169,28 @@ Checking test 123 hafs_regional_atm_ocn_wav 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 = 1085.890831 -0:The maximum resident set size (KB) = 792340 +0:The total amount of wall time = 1143.844600 +0:The maximum resident set size (KB) = 792436 Test 123 hafs_regional_atm_ocn_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/hafs_regional_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_1nest_atm +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_1nest_atm Checking test 124 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 373.962479 -0:The maximum resident set size (KB) = 300948 +0:The total amount of wall time = 376.961886 +0:The maximum resident set size (KB) = 300192 Test 124 hafs_regional_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/hafs_regional_telescopic_2nests_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_telescopic_2nests_atm Checking test 125 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4150,28 +18199,28 @@ Checking test 125 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -0:The total amount of wall time = 416.336740 -0:The maximum resident set size (KB) = 320232 +0:The total amount of wall time = 428.291238 +0:The maximum resident set size (KB) = 320464 -Test 125 hafs_regional_telescopic_2nests_atm PASS +Test 125 hafs_regional_telescopic_2nests_atm PASS Tries: 2 -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_global_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/hafs_global_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_1nest_atm +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_global_1nest_atm Checking test 126 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 170.375045 -0:The maximum resident set size (KB) = 214016 +0:The total amount of wall time = 175.049290 +0:The maximum resident set size (KB) = 214512 Test 126 hafs_global_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_global_multiple_4nests_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/hafs_global_multiple_4nests_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_multiple_4nests_atm +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_global_multiple_4nests_atm Checking test 127 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4189,14 +18238,14 @@ Checking test 127 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -0:The total amount of wall time = 483.216973 -0:The maximum resident set size (KB) = 302628 +0:The total amount of wall time = 485.414990 +0:The maximum resident set size (KB) = 302640 Test 127 hafs_global_multiple_4nests_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/hafs_regional_specified_moving_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_specified_moving_1nest_atm Checking test 128 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4205,28 +18254,28 @@ Checking test 128 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -0:The total amount of wall time = 240.842106 -0:The maximum resident set size (KB) = 318572 +0:The total amount of wall time = 249.288476 +0:The maximum resident set size (KB) = 317396 Test 128 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/hafs_regional_storm_following_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_storm_following_1nest_atm Checking test 129 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 230.726916 -0:The maximum resident set size (KB) = 318604 +0:The total amount of wall time = 229.504894 +0:The maximum resident set size (KB) = 317972 Test 129 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_storm_following_1nest_atm_ocn Checking test 130 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4235,42 +18284,42 @@ Checking test 130 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -0:The total amount of wall time = 281.010240 -0:The maximum resident set size (KB) = 376364 +0:The total amount of wall time = 300.472312 +0:The maximum resident set size (KB) = 376048 Test 130 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_global_storm_following_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/hafs_global_storm_following_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_storm_following_1nest_atm +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_global_storm_following_1nest_atm Checking test 131 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 67.020585 -0:The maximum resident set size (KB) = 233284 +0:The total amount of wall time = 67.161907 +0:The maximum resident set size (KB) = 233180 Test 131 hafs_global_storm_following_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 132 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 764.456557 -0:The maximum resident set size (KB) = 402924 +0:The total amount of wall time = 766.907498 +0:The maximum resident set size (KB) = 402892 Test 132 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 133 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4281,14 +18330,14 @@ Checking test 133 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -0:The total amount of wall time = 805.780330 -0:The maximum resident set size (KB) = 427856 +0:The total amount of wall time = 724.022212 +0:The maximum resident set size (KB) = 427020 Test 133 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_docn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/hafs_regional_docn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_docn +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_docn Checking test 134 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4296,14 +18345,14 @@ Checking test 134 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 379.268603 -0:The maximum resident set size (KB) = 755164 +0:The total amount of wall time = 405.888203 +0:The maximum resident set size (KB) = 755532 Test 134 hafs_regional_docn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_docn_oisst -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/hafs_regional_docn_oisst +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_docn_oisst +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_docn_oisst Checking test 135 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4311,131 +18360,131 @@ Checking test 135 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 390.639511 -0:The maximum resident set size (KB) = 735464 +0:The total amount of wall time = 399.660057 +0:The maximum resident set size (KB) = 734800 Test 135 hafs_regional_docn_oisst PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_datm_cdeps -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/hafs_regional_datm_cdeps +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_datm_cdeps +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_datm_cdeps Checking test 136 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -0:The total amount of wall time = 1280.726798 -0:The maximum resident set size (KB) = 887880 +0:The total amount of wall time = 1272.203095 +0:The maximum resident set size (KB) = 887888 Test 136 hafs_regional_datm_cdeps PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/datm_cdeps_control_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_control_cfsr Checking test 137 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 167.999449 -0:The maximum resident set size (KB) = 728176 +0:The total amount of wall time = 168.375777 +0:The maximum resident set size (KB) = 716692 Test 137 datm_cdeps_control_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/datm_cdeps_restart_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_restart_cfsr Checking test 138 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 97.230551 -0:The maximum resident set size (KB) = 704832 +0:The total amount of wall time = 100.451768 +0:The maximum resident set size (KB) = 715916 Test 138 datm_cdeps_restart_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_control_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/datm_cdeps_control_gefs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_gefs +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_control_gefs Checking test 139 datm_cdeps_control_gefs 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.717156 -0:The maximum resident set size (KB) = 607504 +0:The total amount of wall time = 162.952423 +0:The maximum resident set size (KB) = 607484 Test 139 datm_cdeps_control_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_iau_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/datm_cdeps_iau_gefs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_iau_gefs +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_iau_gefs Checking test 140 datm_cdeps_iau_gefs 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 = 158.821399 -0:The maximum resident set size (KB) = 607488 +0:The total amount of wall time = 163.800197 +0:The maximum resident set size (KB) = 607444 Test 140 datm_cdeps_iau_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_stochy_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/datm_cdeps_stochy_gefs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_stochy_gefs +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_stochy_gefs Checking test 141 datm_cdeps_stochy_gefs 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 = 163.887368 -0:The maximum resident set size (KB) = 607492 +0:The total amount of wall time = 163.599324 +0:The maximum resident set size (KB) = 607500 Test 141 datm_cdeps_stochy_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_ciceC_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/datm_cdeps_ciceC_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_ciceC_cfsr +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_ciceC_cfsr Checking test 142 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 168.102464 -0:The maximum resident set size (KB) = 727760 +0:The total amount of wall time = 167.851939 +0:The maximum resident set size (KB) = 716692 Test 142 datm_cdeps_ciceC_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_bulk_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/datm_cdeps_bulk_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_bulk_cfsr +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_bulk_cfsr Checking test 143 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.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.022102 -0:The maximum resident set size (KB) = 717236 +0:The total amount of wall time = 177.420459 +0:The maximum resident set size (KB) = 716700 Test 143 datm_cdeps_bulk_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_bulk_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/datm_cdeps_bulk_gefs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_bulk_gefs +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_bulk_gefs Checking test 144 datm_cdeps_bulk_gefs 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 = 159.969270 -0:The maximum resident set size (KB) = 607476 +0:The total amount of wall time = 154.810043 +0:The maximum resident set size (KB) = 607416 Test 144 datm_cdeps_bulk_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_mx025_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/datm_cdeps_mx025_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_mx025_cfsr +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_mx025_cfsr Checking test 145 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4444,14 +18493,14 @@ Checking test 145 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 422.918200 -0:The maximum resident set size (KB) = 514420 +0:The total amount of wall time = 432.039969 +0:The maximum resident set size (KB) = 514328 Test 145 datm_cdeps_mx025_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_mx025_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/datm_cdeps_mx025_gefs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_mx025_gefs +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_mx025_gefs Checking test 146 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4460,77 +18509,77 @@ Checking test 146 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 425.861737 -0:The maximum resident set size (KB) = 494800 +0:The total amount of wall time = 420.306111 +0:The maximum resident set size (KB) = 494736 Test 146 datm_cdeps_mx025_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/datm_cdeps_multiple_files_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_multiple_files_cfsr Checking test 147 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 167.111860 -0:The maximum resident set size (KB) = 727884 +0:The total amount of wall time = 166.376409 +0:The maximum resident set size (KB) = 717068 Test 147 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/datm_cdeps_3072x1536_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_3072x1536_cfsr Checking test 148 datm_cdeps_3072x1536_cfsr 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 = 257.214047 -0:The maximum resident set size (KB) = 1942064 +0:The total amount of wall time = 268.021302 +0:The maximum resident set size (KB) = 1942028 Test 148 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_gfs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/datm_cdeps_gfs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_gfs +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_gfs Checking test 149 datm_cdeps_gfs 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 = 267.101490 -0:The maximum resident set size (KB) = 1941080 +0:The total amount of wall time = 268.804073 +0:The maximum resident set size (KB) = 1942004 Test 149 datm_cdeps_gfs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_debug_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/datm_cdeps_debug_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_debug_cfsr +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_debug_cfsr Checking test 150 datm_cdeps_debug_cfsr 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 = 369.967174 -0:The maximum resident set size (KB) = 700752 +0:The total amount of wall time = 369.027478 +0:The maximum resident set size (KB) = 700640 Test 150 datm_cdeps_debug_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_control_cfsr_faster -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/datm_cdeps_control_cfsr_faster +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr_faster +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_control_cfsr_faster Checking test 151 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 167.140693 -0:The maximum resident set size (KB) = 716784 +0:The total amount of wall time = 169.297973 +0:The maximum resident set size (KB) = 728684 Test 151 datm_cdeps_control_cfsr_faster PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/datm_cdeps_lnd_gswp3 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_lnd_gswp3 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_lnd_gswp3 Checking test 152 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4539,14 +18588,14 @@ Checking test 152 datm_cdeps_lnd_gswp3 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 = 10.937852 -0:The maximum resident set size (KB) = 216356 +0:The total amount of wall time = 11.216235 +0:The maximum resident set size (KB) = 208244 Test 152 datm_cdeps_lnd_gswp3 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/datm_cdeps_lnd_gswp3_rst +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_lnd_gswp3 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_lnd_gswp3_rst Checking test 153 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4555,14 +18604,14 @@ Checking test 153 datm_cdeps_lnd_gswp3_rst 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 = 15.696654 -0:The maximum resident set size (KB) = 217012 +0:The total amount of wall time = 15.821305 +0:The maximum resident set size (KB) = 208232 Test 153 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8_atmlnd_sbs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_p8_atmlnd_sbs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_atmlnd_sbs +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_p8_atmlnd_sbs Checking test 154 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4647,14 +18696,14 @@ Checking test 154 control_p8_atmlnd_sbs 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 = 235.016217 -0:The maximum resident set size (KB) = 1462972 +0:The total amount of wall time = 236.712703 +0:The maximum resident set size (KB) = 1462932 Test 154 control_p8_atmlnd_sbs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/atmwav_control_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/atmwav_control_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/atmwav_control_noaero_p8 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/atmwav_control_noaero_p8 Checking test 155 atmwav_control_noaero_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4697,14 +18746,14 @@ Checking test 155 atmwav_control_noaero_p8 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 = 102.771572 -0:The maximum resident set size (KB) = 1434492 +0:The total amount of wall time = 103.280325 +0:The maximum resident set size (KB) = 1434340 Test 155 atmwav_control_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/control_atmwav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/control_atmwav +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_atmwav +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_atmwav Checking test 156 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4748,14 +18797,14 @@ Checking test 156 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -0:The total amount of wall time = 104.629515 -0:The maximum resident set size (KB) = 474548 +0:The total amount of wall time = 102.909689 +0:The maximum resident set size (KB) = 474692 Test 156 control_atmwav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/atmaero_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/atmaero_control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8 +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/atmaero_control_p8 Checking test 157 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4799,14 +18848,14 @@ Checking test 157 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 240.479250 -0:The maximum resident set size (KB) = 2703976 +0:The total amount of wall time = 252.567753 +0:The maximum resident set size (KB) = 2704052 Test 157 atmaero_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/atmaero_control_p8_rad -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/atmaero_control_p8_rad +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8_rad +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/atmaero_control_p8_rad Checking test 158 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4850,14 +18899,14 @@ Checking test 158 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 299.604785 -0:The maximum resident set size (KB) = 2758048 +0:The total amount of wall time = 309.250990 +0:The maximum resident set size (KB) = 2758208 Test 158 atmaero_control_p8_rad PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/atmaero_control_p8_rad_micro -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/atmaero_control_p8_rad_micro +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8_rad_micro +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/atmaero_control_p8_rad_micro Checking test 159 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4901,14 +18950,14 @@ Checking test 159 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 298.331819 -0:The maximum resident set size (KB) = 2764508 +0:The total amount of wall time = 309.759897 +0:The maximum resident set size (KB) = 2764556 Test 159 atmaero_control_p8_rad_micro PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_atmaq -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/regional_atmaq +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_atmaq Checking test 160 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4924,14 +18973,14 @@ Checking test 160 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -0:The total amount of wall time = 747.020831 -0:The maximum resident set size (KB) = 999540 +0:The total amount of wall time = 751.258022 +0:The maximum resident set size (KB) = 999360 Test 160 regional_atmaq PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_atmaq_faster -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_29976/regional_atmaq_faster +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq_faster +working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_atmaq_faster Checking test 161 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4947,12 +18996,18 @@ Checking test 161 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -0:The total amount of wall time = 698.890906 -0:The maximum resident set size (KB) = 999232 +0:The total amount of wall time = 699.046862 +0:The maximum resident set size (KB) = 999160 Test 161 regional_atmaq_faster PASS +FAILED TESTS: +Test compile_008 failed in run_compile failed + +REGRESSION TEST FAILED +Wed Apr 19 10:48:06 MDT 2023 +Elapsed time: 01h:31m:23s. Have a nice day! +Wed Apr 19 10:51:42 MDT 2023 +Start Regression test -REGRESSION TEST WAS SUCCESSFUL -Fri Apr 14 19:25:25 MDT 2023 -Elapsed time: 01h:17m:03s. Have a nice day! +Compile 001 elapsed time 1767 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 78f95405c4f..dbac64b60b4 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,21 +1,21 @@ -Sat Apr 15 00:18:29 UTC 2023 +Wed Apr 19 04:24:02 UTC 2023 Start Regression test -Compile 001 elapsed time 183 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 189 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 328 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 99 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 191 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 410 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 330 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 333 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 265 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 229 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 149 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 001 elapsed time 198 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 200 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 336 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 110 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 198 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 408 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 344 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 350 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 263 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 234 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 153 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON Compile 012 elapsed time 112 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/control_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/control_c48 Checking test 001 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -54,14 +54,14 @@ Checking test 001 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 688.444396 -0: The maximum resident set size (KB) = 704520 +0: The total amount of wall time = 680.646046 +0: The maximum resident set size (KB) = 704428 Test 001 control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/control_stochy +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/control_stochy Checking test 002 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -72,14 +72,14 @@ Checking test 002 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 639.540681 - 0: The maximum resident set size (KB) = 479828 + 0: The total amount of wall time = 666.147917 + 0: The maximum resident set size (KB) = 477052 Test 002 control_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/control_ras +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/control_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/control_ras Checking test 003 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -90,14 +90,14 @@ Checking test 003 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 830.562443 - 0: The maximum resident set size (KB) = 486676 + 0: The total amount of wall time = 832.146500 + 0: The maximum resident set size (KB) = 489944 Test 003 control_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/control_p8 Checking test 004 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -144,14 +144,14 @@ Checking test 004 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 894.765008 - 0: The maximum resident set size (KB) = 1234336 + 0: The total amount of wall time = 909.898955 + 0: The maximum resident set size (KB) = 1235664 Test 004 control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/rap_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rap_control Checking test 005 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -198,14 +198,14 @@ Checking test 005 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1470.481292 - 0: The maximum resident set size (KB) = 825764 + 0: The total amount of wall time = 1477.089770 + 0: The maximum resident set size (KB) = 831268 Test 005 rap_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/rap_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rap_decomp Checking test 006 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -252,14 +252,14 @@ Checking test 006 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1434.327766 - 0: The maximum resident set size (KB) = 828428 + 0: The total amount of wall time = 1443.933834 + 0: The maximum resident set size (KB) = 831784 Test 006 rap_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/rap_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rap_2threads Checking test 007 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -306,14 +306,14 @@ Checking test 007 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1368.464408 - 0: The maximum resident set size (KB) = 891292 + 0: The total amount of wall time = 1345.133923 + 0: The maximum resident set size (KB) = 895496 Test 007 rap_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/rap_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rap_restart Checking test 008 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -352,14 +352,14 @@ Checking test 008 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 719.522610 - 0: The maximum resident set size (KB) = 545684 + 0: The total amount of wall time = 734.846781 + 0: The maximum resident set size (KB) = 550624 Test 008 rap_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/rap_sfcdiff +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rap_sfcdiff Checking test 009 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -406,14 +406,14 @@ Checking test 009 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1516.033568 - 0: The maximum resident set size (KB) = 822740 + 0: The total amount of wall time = 1485.722729 + 0: The maximum resident set size (KB) = 833180 Test 009 rap_sfcdiff PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/rap_sfcdiff_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rap_sfcdiff_decomp Checking test 010 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -460,14 +460,14 @@ Checking test 010 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1484.628876 - 0: The maximum resident set size (KB) = 825692 + 0: The total amount of wall time = 1465.122415 + 0: The maximum resident set size (KB) = 831540 Test 010 rap_sfcdiff_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/rap_sfcdiff_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rap_sfcdiff_restart Checking test 011 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -506,14 +506,14 @@ Checking test 011 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1065.712953 - 0: The maximum resident set size (KB) = 550132 + 0: The total amount of wall time = 1080.389159 + 0: The maximum resident set size (KB) = 550884 Test 011 rap_sfcdiff_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/hrrr_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/hrrr_control Checking test 012 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -560,14 +560,14 @@ Checking test 012 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1458.424499 - 0: The maximum resident set size (KB) = 826020 + 0: The total amount of wall time = 1451.774578 + 0: The maximum resident set size (KB) = 821200 Test 012 hrrr_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/hrrr_control_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/hrrr_control_2threads Checking test 013 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -614,14 +614,14 @@ Checking test 013 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1306.572428 - 0: The maximum resident set size (KB) = 893232 + 0: The total amount of wall time = 1344.397048 + 0: The maximum resident set size (KB) = 896228 Test 013 hrrr_control_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/hrrr_control_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/hrrr_control_decomp Checking test 014 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -668,14 +668,14 @@ Checking test 014 hrrr_control_decomp results .... Comparing 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.462076 - 0: The maximum resident set size (KB) = 822100 + 0: The total amount of wall time = 1427.506159 + 0: The maximum resident set size (KB) = 827200 Test 014 hrrr_control_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/hrrr_control_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/hrrr_control_restart Checking test 015 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -714,14 +714,14 @@ Checking test 015 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1053.715977 - 0: The maximum resident set size (KB) = 549548 + 0: The total amount of wall time = 1050.556873 + 0: The maximum resident set size (KB) = 542588 Test 015 hrrr_control_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/rrfs_v1beta +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rrfs_v1beta Checking test 016 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -768,14 +768,14 @@ Checking test 016 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1465.966281 - 0: The maximum resident set size (KB) = 820428 + 0: The total amount of wall time = 1430.598944 + 0: The maximum resident set size (KB) = 827152 Test 016 rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rrfs_smoke_conus13km_hrrr_warm Checking test 017 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -784,14 +784,14 @@ Checking test 017 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 817.280885 - 0: The maximum resident set size (KB) = 668100 + 0: The total amount of wall time = 771.725536 + 0: The maximum resident set size (KB) = 666864 Test 017 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 018 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -800,14 +800,14 @@ Checking test 018 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 1055.436352 - 0: The maximum resident set size (KB) = 670708 + 0: The total amount of wall time = 1054.406908 + 0: The maximum resident set size (KB) = 665304 Test 018 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/rrfs_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rrfs_conus13km_hrrr_warm Checking test 019 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -816,14 +816,14 @@ Checking test 019 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 733.871623 - 0: The maximum resident set size (KB) = 644452 + 0: The total amount of wall time = 751.921859 + 0: The maximum resident set size (KB) = 644860 Test 019 rrfs_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rrfs_smoke_conus13km_radar_tten_warm Checking test 020 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -832,234 +832,234 @@ Checking test 020 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 836.590679 - 0: The maximum resident set size (KB) = 672632 + 0: The total amount of wall time = 791.307102 + 0: The maximum resident set size (KB) = 671504 Test 020 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 021 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 396.295421 - 0: The maximum resident set size (KB) = 630868 + 0: The total amount of wall time = 395.550929 + 0: The maximum resident set size (KB) = 633828 Test 021 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/control_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/control_diag_debug Checking test 022 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 119.823720 - 0: The maximum resident set size (KB) = 530776 + 0: The total amount of wall time = 123.938123 + 0: The maximum resident set size (KB) = 527812 Test 022 control_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/regional_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/regional_debug Checking test 023 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 613.304912 - 0: The maximum resident set size (KB) = 589396 + 0: The total amount of wall time = 672.416956 + 0: The maximum resident set size (KB) = 592300 Test 023 regional_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/rap_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rap_control_debug Checking test 024 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 177.491382 - 0: The maximum resident set size (KB) = 846968 + 0: The total amount of wall time = 171.643562 + 0: The maximum resident set size (KB) = 839284 Test 024 rap_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/hrrr_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/hrrr_control_debug Checking test 025 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 170.217454 - 0: The maximum resident set size (KB) = 843124 + 0: The total amount of wall time = 174.278008 + 0: The maximum resident set size (KB) = 836940 Test 025 hrrr_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/rap_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rap_diag_debug Checking test 026 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 206.427203 - 0: The maximum resident set size (KB) = 923936 + 0: The total amount of wall time = 211.834951 + 0: The maximum resident set size (KB) = 925124 Test 026 rap_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rap_noah_sfcdiff_cires_ugwp_debug Checking test 027 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.464548 - 0: The maximum resident set size (KB) = 842076 + 0: The total amount of wall time = 280.640521 + 0: The maximum resident set size (KB) = 835272 Test 027 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/rap_progcld_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rap_progcld_thompson_debug Checking test 028 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 175.128691 - 0: The maximum resident set size (KB) = 844652 + 0: The total amount of wall time = 177.697154 + 0: The maximum resident set size (KB) = 840756 Test 028 rap_progcld_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/rrfs_v1beta_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rrfs_v1beta_debug Checking test 029 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 173.679958 - 0: The maximum resident set size (KB) = 843812 + 0: The total amount of wall time = 176.315546 + 0: The maximum resident set size (KB) = 840824 Test 029 rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/control_ras_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/control_ras_debug Checking test 030 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 104.513399 - 0: The maximum resident set size (KB) = 483500 + 0: The total amount of wall time = 101.008339 + 0: The maximum resident set size (KB) = 478828 Test 030 control_ras_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/control_stochy_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/control_stochy_debug Checking test 031 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 116.770323 - 0: The maximum resident set size (KB) = 475300 + 0: The total amount of wall time = 116.544021 + 0: The maximum resident set size (KB) = 476980 Test 031 control_stochy_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/control_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/control_debug_p8 Checking test 032 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 116.307628 - 0: The maximum resident set size (KB) = 1225080 + 0: The total amount of wall time = 120.300045 + 0: The maximum resident set size (KB) = 1230572 Test 032 control_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 033 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 640.871673 - 0: The maximum resident set size (KB) = 682184 + 0: The total amount of wall time = 614.313753 + 0: The maximum resident set size (KB) = 678680 Test 033 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 034 rrfs_smoke_conus13km_hrrr_warm_debug_2threads 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.816082 - 0: The maximum resident set size (KB) = 681592 + 0: The total amount of wall time = 747.889449 + 0: The maximum resident set size (KB) = 681772 Test 034 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/rrfs_conus13km_hrrr_warm_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_conus13km_hrrr_warm_debugs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rrfs_conus13km_hrrr_warm_debug Checking test 035 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 597.779363 - 0: The maximum resident set size (KB) = 657700 + 0: The total amount of wall time = 581.578758 + 0: The maximum resident set size (KB) = 657180 Test 035 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/control_wam_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/control_wam_debug Checking test 036 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 182.247826 - 0: The maximum resident set size (KB) = 194956 + 0: The total amount of wall time = 181.268404 + 0: The maximum resident set size (KB) = 190840 Test 036 control_wam_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/rap_control_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rap_control_dyn32_phy32 Checking test 037 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1106,14 +1106,14 @@ Checking test 037 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1514.418016 - 0: The maximum resident set size (KB) = 687112 + 0: The total amount of wall time = 1458.230588 + 0: The maximum resident set size (KB) = 687220 Test 037 rap_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/hrrr_control_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/hrrr_control_dyn32_phy32 Checking test 038 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1160,14 +1160,14 @@ Checking test 038 hrrr_control_dyn32_phy32 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 = 763.473595 - 0: The maximum resident set size (KB) = 688592 + 0: The total amount of wall time = 748.738115 + 0: The maximum resident set size (KB) = 683552 Test 038 hrrr_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/rap_2threads_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rap_2threads_dyn32_phy32 Checking test 039 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1214,14 +1214,14 @@ Checking test 039 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1315.008385 - 0: The maximum resident set size (KB) = 728644 + 0: The total amount of wall time = 1368.599506 + 0: The maximum resident set size (KB) = 729864 Test 039 rap_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/hrrr_control_2threads_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/hrrr_control_2threads_dyn32_phy32 Checking test 040 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1268,14 +1268,14 @@ Checking test 040 hrrr_control_2threads_dyn32_phy32 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 = 704.527657 - 0: The maximum resident set size (KB) = 726356 + 0: The total amount of wall time = 660.831761 + 0: The maximum resident set size (KB) = 726496 Test 040 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/hrrr_control_decomp_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/hrrr_control_decomp_dyn32_phy32 Checking test 041 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1322,14 +1322,14 @@ Checking test 041 hrrr_control_decomp_dyn32_phy32 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 = 739.922095 - 0: The maximum resident set size (KB) = 684164 + 0: The total amount of wall time = 743.348105 + 0: The maximum resident set size (KB) = 681364 Test 041 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/rap_restart_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rap_restart_dyn32_phy32 Checking test 042 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1368,14 +1368,14 @@ Checking test 042 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1059.491879 - 0: The maximum resident set size (KB) = 512268 + 0: The total amount of wall time = 1098.700591 + 0: The maximum resident set size (KB) = 506900 Test 042 rap_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/hrrr_control_restart_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/hrrr_control_restart_dyn32_phy32 Checking test 043 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1414,14 +1414,14 @@ Checking test 043 hrrr_control_restart_dyn32_phy32 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 = 357.266984 - 0: The maximum resident set size (KB) = 513140 + 0: The total amount of wall time = 367.716802 + 0: The maximum resident set size (KB) = 508488 Test 043 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/rap_control_dyn64_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rap_control_dyn64_phy32 Checking test 044 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1468,128 +1468,58 @@ Checking test 044 rap_control_dyn64_phy32 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 = 1067.149970 - 0: The maximum resident set size (KB) = 708788 + 0: The total amount of wall time = 1076.884315 + 0: The maximum resident set size (KB) = 713480 Test 044 rap_control_dyn64_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/rap_control_debug_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rap_control_debug_dyn32_phy32 Checking test 045 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 180.521505 - 0: The maximum resident set size (KB) = 696696 + 0: The total amount of wall time = 171.680183 + 0: The maximum resident set size (KB) = 702736 Test 045 rap_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/hrrr_control_debug_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/hrrr_control_debug_dyn32_phy32 Checking test 046 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 171.782527 - 0: The maximum resident set size (KB) = 701440 + 0: The total amount of wall time = 170.315544 + 0: The maximum resident set size (KB) = 698488 Test 046 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/rap_control_dyn64_phy32_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control_debug_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rap_control_dyn64_phy32_debug Checking test 047 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 204.809577 - 0: The maximum resident set size (KB) = 719120 + 0: The total amount of wall time = 202.524994 + 0: The maximum resident set size (KB) = 717740 Test 047 rap_control_dyn64_phy32_debug PASS +Test 048 cpld_control_p8 FAIL -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/cpld_control_p8 -Checking test 048 cpld_control_p8 results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 1686.007318 - 0: The maximum resident set size (KB) = 1430476 -Test 048 cpld_control_p8 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/cpld_control_nowave_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/cpld_control_c96_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/cpld_control_nowave_noaero_p8 Checking test 049 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1651,14 +1581,14 @@ Checking test 049 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 1219.333808 - 0: The maximum resident set size (KB) = 1333876 + 0: The total amount of wall time = 1236.448140 + 0: The maximum resident set size (KB) = 1334628 Test 049 cpld_control_nowave_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/cpld_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/cpld_debug_p8 Checking test 050 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1711,25 +1641,107 @@ Checking test 050 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1197.090742 - 0: The maximum resident set size (KB) = 1435496 + 0: The total amount of wall time = 1063.404887 + 0: The maximum resident set size (KB) = 1437596 Test 050 cpld_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/GNU/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10709/datm_cdeps_control_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/datm_cdeps_control_cfsr Checking test 051 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 178.344507 - 0: The maximum resident set size (KB) = 664004 + 0: The total amount of wall time = 176.945975 + 0: The maximum resident set size (KB) = 666164 Test 051 datm_cdeps_control_cfsr PASS +FAILED TESTS: +Test cpld_control_p8 048 failed in run_test failed + +REGRESSION TEST FAILED +Wed Apr 19 05:37:06 UTC 2023 +Elapsed time: 01h:13m:05s. Have a nice day! +Wed Apr 19 15:19:04 UTC 2023 +Start Regression test + +Compile 001 elapsed time 301 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25554/cpld_control_p8 +Checking test 001 cpld_control_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 1759.168579 + 0: The maximum resident set size (KB) = 1431884 + +Test 001 cpld_control_p8 PASS + REGRESSION TEST WAS SUCCESSFUL -Sat Apr 15 01:40:21 UTC 2023 -Elapsed time: 01h:21m:53s. Have a nice day! +Wed Apr 19 16:01:59 UTC 2023 +Elapsed time: 00h:42m:56s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 77a529e647b..7547bba4937 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,43 +1,43 @@ -Sat Apr 15 00:03:48 UTC 2023 +Wed Apr 19 05:14:13 UTC 2023 Start Regression test -Compile 001 elapsed time 663 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 626 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 607 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 235 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 221 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 533 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 531 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 711 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 531 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 488 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 011 elapsed time 475 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 434 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 579 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 204 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 156 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 460 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 462 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 163 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 164 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 543 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 192 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 640 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 607 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 608 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 568 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 231 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 204 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 515 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 517 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 698 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 529 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 499 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 011 elapsed time 468 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 447 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 624 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 206 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 170 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 491 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 492 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 181 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 159 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 561 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 190 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 637 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile 023 elapsed time 565 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 024 elapsed time 180 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 112 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 182 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 68 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 506 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 517 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 534 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 474 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 463 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 033 elapsed time 168 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 034 elapsed time 539 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8_mixedmode -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/cpld_control_p8_mixedmode +Compile 024 elapsed time 187 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 105 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 186 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 54 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 480 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 570 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 588 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 501 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 477 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 033 elapsed time 172 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 034 elapsed time 540 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8_mixedmode +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -102,14 +102,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 310.253047 - 0: The maximum resident set size (KB) = 3143368 + 0: The total amount of wall time = 315.048700 + 0: The maximum resident set size (KB) = 3125044 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_gfsv17 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/cpld_control_gfsv17 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_gfsv17 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -173,14 +173,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 229.561089 - 0: The maximum resident set size (KB) = 1715344 + 0: The total amount of wall time = 227.857809 + 0: The maximum resident set size (KB) = 1718772 Test 002 cpld_control_gfsv17 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/cpld_control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -245,14 +245,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 347.354855 - 0: The maximum resident set size (KB) = 3170736 + 0: The total amount of wall time = 345.569251 + 0: The maximum resident set size (KB) = 3171912 Test 003 cpld_control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/cpld_restart_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -305,14 +305,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 199.946636 - 0: The maximum resident set size (KB) = 3054660 + 0: The total amount of wall time = 200.852386 + 0: The maximum resident set size (KB) = 3046024 Test 004 cpld_restart_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/cpld_control_qr_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -377,14 +377,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 347.605650 - 0: The maximum resident set size (KB) = 3184040 + 0: The total amount of wall time = 346.830725 + 0: The maximum resident set size (KB) = 3197504 Test 005 cpld_control_qr_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/cpld_restart_qr_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -437,14 +437,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 196.713572 - 0: The maximum resident set size (KB) = 3057888 + 0: The total amount of wall time = 213.488305 + 0: The maximum resident set size (KB) = 3059564 Test 006 cpld_restart_qr_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/cpld_2threads_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -497,14 +497,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 353.348775 - 0: The maximum resident set size (KB) = 3524352 + 0: The total amount of wall time = 353.930570 + 0: The maximum resident set size (KB) = 3507132 Test 007 cpld_2threads_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/cpld_decomp_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -557,14 +557,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 351.343799 - 0: The maximum resident set size (KB) = 3144364 + 0: The total amount of wall time = 345.914323 + 0: The maximum resident set size (KB) = 3161776 Test 008 cpld_decomp_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/cpld_mpi_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -617,14 +617,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 289.839445 - 0: The maximum resident set size (KB) = 3016012 + 0: The total amount of wall time = 289.861282 + 0: The maximum resident set size (KB) = 3010656 Test 009 cpld_mpi_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_ciceC_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/cpld_control_ciceC_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_ciceC_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -689,14 +689,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 345.364330 - 0: The maximum resident set size (KB) = 3170616 + 0: The total amount of wall time = 345.767329 + 0: The maximum resident set size (KB) = 3172388 Test 010 cpld_control_ciceC_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/cpld_control_c192_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/cpld_control_c192_p8 Checking test 011 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -749,14 +749,14 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 605.507629 - 0: The maximum resident set size (KB) = 3260872 + 0: The total amount of wall time = 590.644271 + 0: The maximum resident set size (KB) = 3260324 Test 011 cpld_control_c192_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/cpld_restart_c192_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/cpld_restart_c192_p8 Checking test 012 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -809,14 +809,14 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 389.566032 - 0: The maximum resident set size (KB) = 3146636 + 0: The total amount of wall time = 402.702727 + 0: The maximum resident set size (KB) = 3146812 Test 012 cpld_restart_c192_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/cpld_bmark_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/cpld_bmark_p8 Checking test 013 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -864,14 +864,14 @@ Checking test 013 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 746.302898 - 0: The maximum resident set size (KB) = 4026992 + 0: The total amount of wall time = 737.980807 + 0: The maximum resident set size (KB) = 4018056 Test 013 cpld_bmark_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/cpld_restart_bmark_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/cpld_restart_bmark_p8 Checking test 014 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -919,14 +919,14 @@ Checking test 014 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 465.353316 - 0: The maximum resident set size (KB) = 3972208 + 0: The total amount of wall time = 458.395467 + 0: The maximum resident set size (KB) = 3956160 Test 014 cpld_restart_bmark_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/cpld_control_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/cpld_control_noaero_p8 Checking test 015 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -990,14 +990,14 @@ Checking test 015 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 273.793013 - 0: The maximum resident set size (KB) = 1727484 + 0: The total amount of wall time = 263.693705 + 0: The maximum resident set size (KB) = 1714236 Test 015 cpld_control_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/cpld_control_nowave_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c96_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/cpld_control_nowave_noaero_p8 Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1059,14 +1059,14 @@ Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 264.854911 - 0: The maximum resident set size (KB) = 1756356 + 0: The total amount of wall time = 261.027192 + 0: The maximum resident set size (KB) = 1743512 Test 016 cpld_control_nowave_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/cpld_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/cpld_debug_p8 Checking test 017 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1119,14 +1119,14 @@ Checking test 017 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 511.081174 - 0: The maximum resident set size (KB) = 3233152 + 0: The total amount of wall time = 520.383815 + 0: The maximum resident set size (KB) = 3225088 Test 017 cpld_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_debug_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/cpld_debug_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_debug_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/cpld_debug_noaero_p8 Checking test 018 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1178,14 +1178,14 @@ Checking test 018 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 360.355697 - 0: The maximum resident set size (KB) = 1736024 + 0: The total amount of wall time = 366.193999 + 0: The maximum resident set size (KB) = 1720992 Test 018 cpld_debug_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_noaero_p8_agrid -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/cpld_control_noaero_p8_agrid +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_noaero_p8_agrid +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/cpld_control_noaero_p8_agrid Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1247,14 +1247,14 @@ Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 272.210058 - 0: The maximum resident set size (KB) = 1756244 + 0: The total amount of wall time = 267.137714 + 0: The maximum resident set size (KB) = 1758644 Test 019 cpld_control_noaero_p8_agrid PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/cpld_control_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/cpld_control_c48 Checking test 020 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1304,14 +1304,14 @@ Checking test 020 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 582.592739 - 0: The maximum resident set size (KB) = 2803240 + 0: The total amount of wall time = 586.299489 + 0: The maximum resident set size (KB) = 2808376 Test 020 cpld_control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/cpld_warmstart_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_warmstart_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/cpld_warmstart_c48 Checking test 021 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1361,14 +1361,14 @@ Checking test 021 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 154.596794 - 0: The maximum resident set size (KB) = 2797352 + 0: The total amount of wall time = 156.009819 + 0: The maximum resident set size (KB) = 2791888 Test 021 cpld_warmstart_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/cpld_restart_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_warmstart_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/cpld_restart_c48 Checking test 022 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1418,14 +1418,14 @@ Checking test 022 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 80.725447 - 0: The maximum resident set size (KB) = 2239520 + 0: The total amount of wall time = 84.165865 + 0: The maximum resident set size (KB) = 2230360 Test 022 cpld_restart_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/cpld_control_p8_faster +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/cpld_control_p8_faster Checking test 023 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1490,14 +1490,14 @@ Checking test 023 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 319.340212 - 0: The maximum resident set size (KB) = 3177432 + 0: The total amount of wall time = 329.077420 + 0: The maximum resident set size (KB) = 3166148 Test 023 cpld_control_p8_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_CubedSphereGrid -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_CubedSphereGrid +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_CubedSphereGrid Checking test 024 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1524,28 +1524,28 @@ Checking test 024 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 131.095746 - 0: The maximum resident set size (KB) = 626524 + 0: The total amount of wall time = 133.420675 + 0: The maximum resident set size (KB) = 626220 Test 024 control_CubedSphereGrid PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_CubedSphereGrid_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_CubedSphereGrid_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_CubedSphereGrid_parallel Checking test 025 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc .........OK - 0: The total amount of wall time = 127.868128 - 0: The maximum resident set size (KB) = 628408 + 0: The total amount of wall time = 129.668250 + 0: The maximum resident set size (KB) = 634132 Test 025 control_CubedSphereGrid_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_latlon -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_latlon +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_latlon +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_latlon Checking test 026 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1556,14 +1556,14 @@ Checking test 026 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 133.615443 - 0: The maximum resident set size (KB) = 626560 + 0: The total amount of wall time = 134.839381 + 0: The maximum resident set size (KB) = 631216 Test 026 control_latlon PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_wrtGauss_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_wrtGauss_netcdf_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wrtGauss_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_wrtGauss_netcdf_parallel Checking test 027 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc .........OK @@ -1574,14 +1574,14 @@ Checking test 027 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 138.115671 - 0: The maximum resident set size (KB) = 628436 + 0: The total amount of wall time = 136.364210 + 0: The maximum resident set size (KB) = 629728 Test 027 control_wrtGauss_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_c48 Checking test 028 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1620,14 +1620,14 @@ Checking test 028 control_c48 results .... Comparing 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.733019 -0: The maximum resident set size (KB) = 818056 +0: The total amount of wall time = 364.696485 +0: The maximum resident set size (KB) = 820352 Test 028 control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_c192 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_c192 Checking test 029 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1638,14 +1638,14 @@ Checking test 029 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 526.080637 - 0: The maximum resident set size (KB) = 768608 + 0: The total amount of wall time = 525.736386 + 0: The maximum resident set size (KB) = 767184 Test 029 control_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_c384 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c384 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_c384 Checking test 030 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1656,14 +1656,14 @@ Checking test 030 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 522.989536 - 0: The maximum resident set size (KB) = 1265920 + 0: The total amount of wall time = 524.519196 + 0: The maximum resident set size (KB) = 1260496 Test 030 control_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_c384gdas -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_c384gdas +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c384gdas +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_c384gdas Checking test 031 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1706,14 +1706,14 @@ Checking test 031 control_c384gdas 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 = 461.874479 - 0: The maximum resident set size (KB) = 1378916 + 0: The total amount of wall time = 461.313605 + 0: The maximum resident set size (KB) = 1379948 Test 031 control_c384gdas PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_stochy +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_stochy Checking test 032 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1724,28 +1724,28 @@ Checking test 032 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 88.456108 - 0: The maximum resident set size (KB) = 634744 + 0: The total amount of wall time = 90.799079 + 0: The maximum resident set size (KB) = 634436 Test 032 control_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_stochy_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_stochy_restart Checking test 033 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 49.029293 - 0: The maximum resident set size (KB) = 483796 + 0: The total amount of wall time = 48.687137 + 0: The maximum resident set size (KB) = 483236 Test 033 control_stochy_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_lndp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_lndp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_lndp Checking test 034 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1756,14 +1756,14 @@ Checking test 034 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 82.138040 - 0: The maximum resident set size (KB) = 631016 + 0: The total amount of wall time = 86.720044 + 0: The maximum resident set size (KB) = 628380 Test 034 control_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_iovr4 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_iovr4 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_iovr4 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_iovr4 Checking test 035 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1778,14 +1778,14 @@ Checking test 035 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 137.609886 - 0: The maximum resident set size (KB) = 627768 + 0: The total amount of wall time = 138.386728 + 0: The maximum resident set size (KB) = 625980 Test 035 control_iovr4 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_iovr5 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_iovr5 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_iovr5 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_iovr5 Checking test 036 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1800,14 +1800,14 @@ Checking test 036 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 138.361453 - 0: The maximum resident set size (KB) = 628108 + 0: The total amount of wall time = 139.586866 + 0: The maximum resident set size (KB) = 628564 Test 036 control_iovr5 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_p8 Checking test 037 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1854,14 +1854,14 @@ Checking test 037 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 171.782933 - 0: The maximum resident set size (KB) = 1602892 + 0: The total amount of wall time = 172.215430 + 0: The maximum resident set size (KB) = 1578756 Test 037 control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_restart_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_restart_p8 Checking test 038 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1900,14 +1900,14 @@ Checking test 038 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 95.416434 - 0: The maximum resident set size (KB) = 867780 + 0: The total amount of wall time = 91.303210 + 0: The maximum resident set size (KB) = 859616 Test 038 control_restart_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_qr_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_qr_p8 Checking test 039 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1954,14 +1954,14 @@ Checking test 039 control_qr_p8 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 = 176.149877 - 0: The maximum resident set size (KB) = 1595940 + 0: The total amount of wall time = 170.706263 + 0: The maximum resident set size (KB) = 1590428 Test 039 control_qr_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_restart_qr_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_restart_qr_p8 Checking test 040 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2000,14 +2000,14 @@ Checking test 040 control_restart_qr_p8 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.035820 - 0: The maximum resident set size (KB) = 866100 + 0: The total amount of wall time = 91.153834 + 0: The maximum resident set size (KB) = 858800 Test 040 control_restart_qr_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_decomp_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_decomp_p8 Checking test 041 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2050,14 +2050,14 @@ Checking test 041 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 175.990417 - 0: The maximum resident set size (KB) = 1582696 + 0: The total amount of wall time = 177.236236 + 0: The maximum resident set size (KB) = 1582176 Test 041 control_decomp_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_2threads_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_2threads_p8 Checking test 042 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2100,14 +2100,14 @@ Checking test 042 control_2threads_p8 results .... Comparing 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.313441 - 0: The maximum resident set size (KB) = 1673148 + 0: The total amount of wall time = 160.341601 + 0: The maximum resident set size (KB) = 1677604 Test 042 control_2threads_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_p8_lndp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_lndp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_p8_lndp Checking test 043 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2126,14 +2126,14 @@ Checking test 043 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 319.892162 - 0: The maximum resident set size (KB) = 1595656 + 0: The total amount of wall time = 317.278428 + 0: The maximum resident set size (KB) = 1593348 Test 043 control_p8_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_p8_rrtmgp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_p8_rrtmgp Checking test 044 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2180,14 +2180,14 @@ Checking test 044 control_p8_rrtmgp results .... Comparing 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.169231 - 0: The maximum resident set size (KB) = 1660324 + 0: The total amount of wall time = 229.501157 + 0: The maximum resident set size (KB) = 1656576 Test 044 control_p8_rrtmgp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8_mynn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_p8_mynn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_mynn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_p8_mynn Checking test 045 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2234,14 +2234,14 @@ Checking test 045 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 182.533338 - 0: The maximum resident set size (KB) = 1600952 + 0: The total amount of wall time = 174.142754 + 0: The maximum resident set size (KB) = 1610620 Test 045 control_p8_mynn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/merra2_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/merra2_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/merra2_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/merra2_thompson Checking test 046 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2288,14 +2288,14 @@ Checking test 046 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 196.664480 - 0: The maximum resident set size (KB) = 1601100 + 0: The total amount of wall time = 193.661732 + 0: The maximum resident set size (KB) = 1598528 Test 046 merra2_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/regional_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/regional_control Checking test 047 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2306,28 +2306,28 @@ Checking test 047 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 301.912604 - 0: The maximum resident set size (KB) = 869444 + 0: The total amount of wall time = 299.271674 + 0: The maximum resident set size (KB) = 868120 Test 047 regional_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/regional_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/regional_restart Checking test 048 regional_restart 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.526252 - 0: The maximum resident set size (KB) = 867720 + 0: The total amount of wall time = 157.281345 + 0: The maximum resident set size (KB) = 861608 Test 048 regional_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/regional_control_qr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/regional_control_qr Checking test 049 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2338,28 +2338,28 @@ Checking test 049 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 298.981486 - 0: The maximum resident set size (KB) = 870988 + 0: The total amount of wall time = 301.818400 + 0: The maximum resident set size (KB) = 867480 Test 049 regional_control_qr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/regional_restart_qr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/regional_restart_qr Checking test 050 regional_restart_qr 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.727427 - 0: The maximum resident set size (KB) = 859576 + 0: The total amount of wall time = 152.539828 + 0: The maximum resident set size (KB) = 861632 Test 050 regional_restart_qr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/regional_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/regional_decomp Checking test 051 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2370,14 +2370,14 @@ Checking test 051 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 319.804791 - 0: The maximum resident set size (KB) = 862140 + 0: The total amount of wall time = 316.239723 + 0: The maximum resident set size (KB) = 859244 Test 051 regional_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/regional_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/regional_2threads Checking test 052 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2388,14 +2388,14 @@ Checking test 052 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 189.291434 - 0: The maximum resident set size (KB) = 856404 + 0: The total amount of wall time = 185.827407 + 0: The maximum resident set size (KB) = 851908 Test 052 regional_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_noquilt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/regional_noquilt +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_noquilt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/regional_noquilt Checking test 053 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2403,28 +2403,28 @@ Checking test 053 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 322.056972 - 0: The maximum resident set size (KB) = 856088 + 0: The total amount of wall time = 324.296149 + 0: The maximum resident set size (KB) = 854096 Test 053 regional_noquilt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/regional_netcdf_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/regional_netcdf_parallel Checking test 054 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 297.498248 - 0: The maximum resident set size (KB) = 866000 + 0: The total amount of wall time = 297.267587 + 0: The maximum resident set size (KB) = 859588 Test 054 regional_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/regional_2dwrtdecomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/regional_2dwrtdecomp Checking test 055 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2435,14 +2435,14 @@ Checking test 055 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 305.680905 - 0: The maximum resident set size (KB) = 873076 + 0: The total amount of wall time = 301.187933 + 0: The maximum resident set size (KB) = 869104 Test 055 regional_2dwrtdecomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/fv3_regional_wofs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/regional_wofs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/fv3_regional_wofs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/regional_wofs Checking test 056 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2453,14 +2453,14 @@ Checking test 056 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 376.681536 - 0: The maximum resident set size (KB) = 626536 + 0: The total amount of wall time = 377.693710 + 0: The maximum resident set size (KB) = 627636 Test 056 regional_wofs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/rap_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rap_control Checking test 057 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2507,14 +2507,14 @@ Checking test 057 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 461.586118 - 0: The maximum resident set size (KB) = 1055296 + 0: The total amount of wall time = 464.204313 + 0: The maximum resident set size (KB) = 1047036 Test 057 rap_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_spp_sppt_shum_skeb -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/regional_spp_sppt_shum_skeb +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_spp_sppt_shum_skeb +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/regional_spp_sppt_shum_skeb Checking test 058 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2525,14 +2525,14 @@ Checking test 058 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 235.133173 - 0: The maximum resident set size (KB) = 1183704 + 0: The total amount of wall time = 232.324710 + 0: The maximum resident set size (KB) = 1181092 Test 058 regional_spp_sppt_shum_skeb PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/rap_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rap_decomp Checking test 059 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2579,14 +2579,14 @@ Checking test 059 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 477.742752 - 0: The maximum resident set size (KB) = 994892 + 0: The total amount of wall time = 481.746454 + 0: The maximum resident set size (KB) = 997152 Test 059 rap_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/rap_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rap_2threads Checking test 060 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2633,14 +2633,14 @@ Checking test 060 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 436.405364 - 0: The maximum resident set size (KB) = 1135080 + 0: The total amount of wall time = 436.195100 + 0: The maximum resident set size (KB) = 1133276 Test 060 rap_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/rap_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rap_restart Checking test 061 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2679,14 +2679,14 @@ Checking test 061 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 231.174538 - 0: The maximum resident set size (KB) = 964948 + 0: The total amount of wall time = 236.462214 + 0: The maximum resident set size (KB) = 969252 Test 061 rap_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/rap_sfcdiff +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rap_sfcdiff Checking test 062 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2733,14 +2733,14 @@ Checking test 062 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 462.937970 - 0: The maximum resident set size (KB) = 1059744 + 0: The total amount of wall time = 462.069547 + 0: The maximum resident set size (KB) = 1060728 Test 062 rap_sfcdiff PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/rap_sfcdiff_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rap_sfcdiff_decomp Checking test 063 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2787,14 +2787,14 @@ Checking test 063 rap_sfcdiff_decomp results .... Comparing 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.942982 - 0: The maximum resident set size (KB) = 1003772 + 0: The total amount of wall time = 486.585766 + 0: The maximum resident set size (KB) = 996448 Test 063 rap_sfcdiff_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/rap_sfcdiff_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rap_sfcdiff_restart Checking test 064 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2833,14 +2833,14 @@ Checking test 064 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 340.624296 - 0: The maximum resident set size (KB) = 994128 + 0: The total amount of wall time = 343.315234 + 0: The maximum resident set size (KB) = 981628 Test 064 rap_sfcdiff_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/hrrr_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hrrr_control Checking test 065 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2887,14 +2887,14 @@ Checking test 065 hrrr_control results .... Comparing 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.626377 - 0: The maximum resident set size (KB) = 1047744 + 0: The total amount of wall time = 443.629352 + 0: The maximum resident set size (KB) = 1051872 Test 065 hrrr_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/hrrr_control_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hrrr_control_decomp Checking test 066 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2941,14 +2941,14 @@ Checking test 066 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 463.815303 - 0: The maximum resident set size (KB) = 990768 + 0: The total amount of wall time = 467.562913 + 0: The maximum resident set size (KB) = 993224 Test 066 hrrr_control_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/hrrr_control_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hrrr_control_2threads Checking test 067 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2995,14 +2995,14 @@ Checking test 067 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 419.303949 - 0: The maximum resident set size (KB) = 1139612 + 0: The total amount of wall time = 421.500288 + 0: The maximum resident set size (KB) = 1134808 Test 067 hrrr_control_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/hrrr_control_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hrrr_control_restart Checking test 068 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3041,14 +3041,14 @@ Checking test 068 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 329.169982 - 0: The maximum resident set size (KB) = 975600 + 0: The total amount of wall time = 333.840204 + 0: The maximum resident set size (KB) = 972344 Test 068 hrrr_control_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/rrfs_v1beta +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rrfs_v1beta Checking test 069 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3095,14 +3095,14 @@ Checking test 069 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 457.727775 - 0: The maximum resident set size (KB) = 1062848 + 0: The total amount of wall time = 455.975900 + 0: The maximum resident set size (KB) = 1060044 Test 069 rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_v1nssl -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/rrfs_v1nssl +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1nssl +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rrfs_v1nssl Checking test 070 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3117,14 +3117,14 @@ Checking test 070 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 539.724532 - 0: The maximum resident set size (KB) = 696804 + 0: The total amount of wall time = 538.559210 + 0: The maximum resident set size (KB) = 692212 Test 070 rrfs_v1nssl PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/rrfs_v1nssl_nohailnoccn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rrfs_v1nssl_nohailnoccn Checking test 071 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3139,14 +3139,14 @@ Checking test 071 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 526.714730 - 0: The maximum resident set size (KB) = 760228 + 0: The total amount of wall time = 524.111181 + 0: The maximum resident set size (KB) = 755484 Test 071 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rrfs_smoke_conus13km_hrrr_warm Checking test 072 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3155,14 +3155,14 @@ Checking test 072 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 149.059276 - 0: The maximum resident set size (KB) = 1029260 + 0: The total amount of wall time = 147.509812 + 0: The maximum resident set size (KB) = 1028244 Test 072 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 073 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3171,14 +3171,14 @@ Checking test 073 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 91.978635 - 0: The maximum resident set size (KB) = 945612 + 0: The total amount of wall time = 91.055677 + 0: The maximum resident set size (KB) = 937808 Test 073 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/rrfs_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rrfs_conus13km_hrrr_warm Checking test 074 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3187,14 +3187,14 @@ Checking test 074 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 130.922759 - 0: The maximum resident set size (KB) = 945232 + 0: The total amount of wall time = 129.916751 + 0: The maximum resident set size (KB) = 942284 Test 074 rrfs_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rrfs_smoke_conus13km_radar_tten_warm Checking test 075 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3203,26 +3203,26 @@ Checking test 075 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 147.786827 - 0: The maximum resident set size (KB) = 994272 + 0: The total amount of wall time = 148.482604 + 0: The maximum resident set size (KB) = 1037388 Test 075 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 076 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 70.471778 - 0: The maximum resident set size (KB) = 935336 + 0: The total amount of wall time = 70.072787 + 0: The maximum resident set size (KB) = 930520 Test 076 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_csawmg -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_csawmg +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmg +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_csawmg Checking test 077 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3233,14 +3233,14 @@ Checking test 077 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 345.585870 - 0: The maximum resident set size (KB) = 719804 + 0: The total amount of wall time = 343.175962 + 0: The maximum resident set size (KB) = 722900 Test 077 control_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_csawmgt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_csawmgt +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmgt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_csawmgt Checking test 078 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3251,14 +3251,14 @@ Checking test 078 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 339.587006 - 0: The maximum resident set size (KB) = 722688 + 0: The total amount of wall time = 343.691959 + 0: The maximum resident set size (KB) = 720208 Test 078 control_csawmgt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_ras +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_ras Checking test 079 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3269,26 +3269,26 @@ Checking test 079 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 183.586261 - 0: The maximum resident set size (KB) = 718184 + 0: The total amount of wall time = 181.027985 + 0: The maximum resident set size (KB) = 715624 Test 079 control_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_wam -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_wam +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wam +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_wam Checking test 080 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 111.463960 - 0: The maximum resident set size (KB) = 643612 + 0: The total amount of wall time = 112.087068 + 0: The maximum resident set size (KB) = 634292 Test 080 control_wam PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_p8_faster +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_p8_faster Checking test 081 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3335,14 +3335,14 @@ Checking test 081 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 155.540986 - 0: The maximum resident set size (KB) = 1594772 + 0: The total amount of wall time = 157.466000 + 0: The maximum resident set size (KB) = 1592160 Test 081 control_p8_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/regional_control_faster +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/regional_control_faster Checking test 082 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3353,56 +3353,56 @@ Checking test 082 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 273.255028 - 0: The maximum resident set size (KB) = 870332 + 0: The total amount of wall time = 273.233782 + 0: The maximum resident set size (KB) = 862644 Test 082 regional_control_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 083 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 832.190417 - 0: The maximum resident set size (KB) = 1057532 + 0: The total amount of wall time = 840.624263 + 0: The maximum resident set size (KB) = 1013340 Test 083 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 084 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 466.283283 - 0: The maximum resident set size (KB) = 929784 + 0: The total amount of wall time = 473.675723 + 0: The maximum resident set size (KB) = 968352 Test 084 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/rrfs_conus13km_hrrr_warm_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rrfs_conus13km_hrrr_warm_debug Checking test 085 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 720.121386 - 0: The maximum resident set size (KB) = 970056 + 0: The total amount of wall time = 738.151979 + 0: The maximum resident set size (KB) = 969632 Test 085 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_CubedSphereGrid_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_CubedSphereGrid_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_CubedSphereGrid_debug Checking test 086 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3429,334 +3429,334 @@ Checking test 086 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 147.263500 - 0: The maximum resident set size (KB) = 790644 + 0: The total amount of wall time = 144.101932 + 0: The maximum resident set size (KB) = 792896 Test 086 control_CubedSphereGrid_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_wrtGauss_netcdf_parallel_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_wrtGauss_netcdf_parallel_debug Checking test 087 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 144.581224 - 0: The maximum resident set size (KB) = 793844 + 0: The total amount of wall time = 145.113523 + 0: The maximum resident set size (KB) = 788500 Test 087 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_stochy_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_stochy_debug Checking test 088 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 165.405216 - 0: The maximum resident set size (KB) = 799584 + 0: The total amount of wall time = 164.860949 + 0: The maximum resident set size (KB) = 791884 Test 088 control_stochy_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_lndp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_lndp_debug Checking test 089 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 146.364424 - 0: The maximum resident set size (KB) = 793036 + 0: The total amount of wall time = 142.649745 + 0: The maximum resident set size (KB) = 795276 Test 089 control_lndp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_csawmg_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_csawmg_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmg_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_csawmg_debug Checking test 090 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 228.884937 - 0: The maximum resident set size (KB) = 843520 + 0: The total amount of wall time = 231.559604 + 0: The maximum resident set size (KB) = 835188 Test 090 control_csawmg_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_csawmgt_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_csawmgt_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmgt_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_csawmgt_debug Checking test 091 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 221.202463 - 0: The maximum resident set size (KB) = 834444 + 0: The total amount of wall time = 225.969750 + 0: The maximum resident set size (KB) = 836856 Test 091 control_csawmgt_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_ras_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_ras_debug Checking test 092 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 150.217758 - 0: The maximum resident set size (KB) = 807232 + 0: The total amount of wall time = 148.664144 + 0: The maximum resident set size (KB) = 805260 Test 092 control_ras_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_diag_debug Checking test 093 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 156.747462 - 0: The maximum resident set size (KB) = 846688 + 0: The total amount of wall time = 152.950665 + 0: The maximum resident set size (KB) = 845144 Test 093 control_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_debug_p8 Checking test 094 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 166.828052 - 0: The maximum resident set size (KB) = 1617488 + 0: The total amount of wall time = 166.691400 + 0: The maximum resident set size (KB) = 1624156 Test 094 control_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/regional_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/regional_debug Checking test 095 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 984.573637 - 0: The maximum resident set size (KB) = 882116 + 0: The total amount of wall time = 1002.366942 + 0: The maximum resident set size (KB) = 870188 Test 095 regional_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/rap_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rap_control_debug Checking test 096 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.047635 - 0: The maximum resident set size (KB) = 1174356 + 0: The total amount of wall time = 271.861251 + 0: The maximum resident set size (KB) = 1166156 Test 096 rap_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/hrrr_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hrrr_control_debug Checking test 097 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 270.212098 - 0: The maximum resident set size (KB) = 1165580 + 0: The total amount of wall time = 269.695126 + 0: The maximum resident set size (KB) = 1169136 Test 097 hrrr_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/rap_unified_drag_suite_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rap_unified_drag_suite_debug Checking test 098 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 270.195169 - 0: The maximum resident set size (KB) = 1171548 + 0: The total amount of wall time = 271.922701 + 0: The maximum resident set size (KB) = 1168752 Test 098 rap_unified_drag_suite_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/rap_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rap_diag_debug Checking test 099 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 285.184371 - 0: The maximum resident set size (KB) = 1254224 + 0: The total amount of wall time = 286.682045 + 0: The maximum resident set size (KB) = 1253452 Test 099 rap_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/rap_cires_ugwp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rap_cires_ugwp_debug Checking test 100 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.424479 - 0: The maximum resident set size (KB) = 1166540 + 0: The total amount of wall time = 275.082130 + 0: The maximum resident set size (KB) = 1164392 Test 100 rap_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/rap_unified_ugwp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rap_unified_ugwp_debug Checking test 101 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.142134 - 0: The maximum resident set size (KB) = 1171496 + 0: The total amount of wall time = 279.960523 + 0: The maximum resident set size (KB) = 1175156 Test 101 rap_unified_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/rap_lndp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rap_lndp_debug Checking test 102 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.580953 - 0: The maximum resident set size (KB) = 1169964 + 0: The total amount of wall time = 276.654489 + 0: The maximum resident set size (KB) = 1165472 Test 102 rap_lndp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_flake_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/rap_flake_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_flake_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rap_flake_debug Checking test 103 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 268.145146 - 0: The maximum resident set size (KB) = 1174136 + 0: The total amount of wall time = 275.416473 + 0: The maximum resident set size (KB) = 1167328 Test 103 rap_flake_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/rap_progcld_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rap_progcld_thompson_debug Checking test 104 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.691359 - 0: The maximum resident set size (KB) = 1167008 + 0: The total amount of wall time = 274.038652 + 0: The maximum resident set size (KB) = 1171944 Test 104 rap_progcld_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_noah_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/rap_noah_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_noah_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rap_noah_debug Checking test 105 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 269.581697 - 0: The maximum resident set size (KB) = 1164816 + 0: The total amount of wall time = 268.892311 + 0: The maximum resident set size (KB) = 1169852 Test 105 rap_noah_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_sfcdiff_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/rap_sfcdiff_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rap_sfcdiff_debug Checking test 106 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.099556 - 0: The maximum resident set size (KB) = 1167168 + 0: The total amount of wall time = 276.593414 + 0: The maximum resident set size (KB) = 1163856 Test 106 rap_sfcdiff_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rap_noah_sfcdiff_cires_ugwp_debug Checking test 107 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 467.669503 - 0: The maximum resident set size (KB) = 1165268 + 0: The total amount of wall time = 449.732704 + 0: The maximum resident set size (KB) = 1167232 Test 107 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/rrfs_v1beta_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rrfs_v1beta_debug Checking test 108 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 268.096513 - 0: The maximum resident set size (KB) = 1166520 + 0: The total amount of wall time = 271.161664 + 0: The maximum resident set size (KB) = 1161140 Test 108 rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_wam_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_wam_debug Checking test 109 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 275.773070 - 0: The maximum resident set size (KB) = 518988 + 0: The total amount of wall time = 281.008746 + 0: The maximum resident set size (KB) = 523532 Test 109 control_wam_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3767,14 +3767,14 @@ Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 220.379884 - 0: The maximum resident set size (KB) = 1081036 + 0: The total amount of wall time = 225.365730 + 0: The maximum resident set size (KB) = 1071196 Test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/rap_control_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rap_control_dyn32_phy32 Checking test 111 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3821,14 +3821,14 @@ Checking test 111 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 385.574647 - 0: The maximum resident set size (KB) = 997532 + 0: The total amount of wall time = 385.392330 + 0: The maximum resident set size (KB) = 995660 Test 111 rap_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/hrrr_control_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hrrr_control_dyn32_phy32 Checking test 112 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3875,14 +3875,14 @@ Checking test 112 hrrr_control_dyn32_phy32 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 = 202.333812 - 0: The maximum resident set size (KB) = 954824 + 0: The total amount of wall time = 201.459526 + 0: The maximum resident set size (KB) = 954592 Test 112 hrrr_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/rap_2threads_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rap_2threads_dyn32_phy32 Checking test 113 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3929,14 +3929,14 @@ Checking test 113 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 372.956212 - 0: The maximum resident set size (KB) = 1028516 + 0: The total amount of wall time = 372.407213 + 0: The maximum resident set size (KB) = 1020964 Test 113 rap_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/hrrr_control_2threads_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hrrr_control_2threads_dyn32_phy32 Checking test 114 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3983,14 +3983,14 @@ Checking test 114 hrrr_control_2threads_dyn32_phy32 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 = 189.425036 - 0: The maximum resident set size (KB) = 1004052 + 0: The total amount of wall time = 190.703510 + 0: The maximum resident set size (KB) = 1001412 Test 114 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/hrrr_control_decomp_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hrrr_control_decomp_dyn32_phy32 Checking test 115 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4037,14 +4037,14 @@ Checking test 115 hrrr_control_decomp_dyn32_phy32 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 = 210.344535 - 0: The maximum resident set size (KB) = 893256 + 0: The total amount of wall time = 210.478155 + 0: The maximum resident set size (KB) = 899796 Test 115 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/rap_restart_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rap_restart_dyn32_phy32 Checking test 116 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4083,14 +4083,14 @@ Checking test 116 rap_restart_dyn32_phy32 results .... Comparing 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.387394 - 0: The maximum resident set size (KB) = 949164 + 0: The total amount of wall time = 283.566555 + 0: The maximum resident set size (KB) = 949384 Test 116 rap_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/hrrr_control_restart_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hrrr_control_restart_dyn32_phy32 Checking test 117 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4129,14 +4129,14 @@ Checking test 117 hrrr_control_restart_dyn32_phy32 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 = 104.603132 - 0: The maximum resident set size (KB) = 861240 + 0: The total amount of wall time = 104.071311 + 0: The maximum resident set size (KB) = 861900 Test 117 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/rap_control_dyn64_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rap_control_dyn64_phy32 Checking test 118 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4183,81 +4183,81 @@ Checking test 118 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 245.027251 - 0: The maximum resident set size (KB) = 962360 + 0: The total amount of wall time = 247.505389 + 0: The maximum resident set size (KB) = 971420 Test 118 rap_control_dyn64_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/rap_control_debug_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rap_control_debug_dyn32_phy32 Checking test 119 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 272.879112 - 0: The maximum resident set size (KB) = 1053196 + 0: The total amount of wall time = 271.880986 + 0: The maximum resident set size (KB) = 1055564 Test 119 rap_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/hrrr_control_debug_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hrrr_control_debug_dyn32_phy32 Checking test 120 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 264.426408 - 0: The maximum resident set size (KB) = 1052596 + 0: The total amount of wall time = 263.198500 + 0: The maximum resident set size (KB) = 1052700 Test 120 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/rap_control_dyn64_phy32_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rap_control_dyn64_phy32_debug Checking test 121 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.602846 - 0: The maximum resident set size (KB) = 1092532 + 0: The total amount of wall time = 277.931268 + 0: The maximum resident set size (KB) = 1092084 Test 121 rap_control_dyn64_phy32_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/hafs_regional_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hafs_regional_atm Checking test 122 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 238.582597 - 0: The maximum resident set size (KB) = 1051860 + 0: The total amount of wall time = 236.081060 + 0: The maximum resident set size (KB) = 1045108 Test 122 hafs_regional_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/hafs_regional_atm_thompson_gfdlsf +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hafs_regional_atm_thompson_gfdlsf Checking test 123 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 377.576967 - 0: The maximum resident set size (KB) = 1400704 + 0: The total amount of wall time = 324.796742 + 0: The maximum resident set size (KB) = 1414292 Test 123 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/hafs_regional_atm_ocn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hafs_regional_atm_ocn Checking test 124 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4266,14 +4266,14 @@ Checking test 124 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 381.519255 - 0: The maximum resident set size (KB) = 1223032 + 0: The total amount of wall time = 387.538532 + 0: The maximum resident set size (KB) = 1223576 Test 124 hafs_regional_atm_ocn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/hafs_regional_atm_wav +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hafs_regional_atm_wav Checking test 125 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4282,14 +4282,14 @@ Checking test 125 hafs_regional_atm_wav 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 = 744.239842 - 0: The maximum resident set size (KB) = 1254428 + 0: The total amount of wall time = 743.235256 + 0: The maximum resident set size (KB) = 1245540 Test 125 hafs_regional_atm_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/hafs_regional_atm_ocn_wav +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hafs_regional_atm_ocn_wav Checking test 126 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4300,28 +4300,28 @@ Checking test 126 hafs_regional_atm_ocn_wav 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 = 850.827433 - 0: The maximum resident set size (KB) = 1296924 + 0: The total amount of wall time = 847.568297 + 0: The maximum resident set size (KB) = 1271868 Test 126 hafs_regional_atm_ocn_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/hafs_regional_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hafs_regional_1nest_atm Checking test 127 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 317.600628 - 0: The maximum resident set size (KB) = 506424 + 0: The total amount of wall time = 320.685898 + 0: The maximum resident set size (KB) = 499744 Test 127 hafs_regional_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/hafs_regional_telescopic_2nests_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hafs_regional_telescopic_2nests_atm Checking test 128 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4330,28 +4330,28 @@ Checking test 128 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 366.063089 - 0: The maximum resident set size (KB) = 511596 + 0: The total amount of wall time = 366.681780 + 0: The maximum resident set size (KB) = 509456 Test 128 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_global_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/hafs_global_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hafs_global_1nest_atm Checking test 129 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 147.569273 - 0: The maximum resident set size (KB) = 346468 + 0: The total amount of wall time = 149.243943 + 0: The maximum resident set size (KB) = 348240 Test 129 hafs_global_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_global_multiple_4nests_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/hafs_global_multiple_4nests_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_multiple_4nests_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hafs_global_multiple_4nests_atm Checking test 130 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4369,14 +4369,14 @@ Checking test 130 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 416.988309 - 0: The maximum resident set size (KB) = 422808 + 0: The total amount of wall time = 413.666357 + 0: The maximum resident set size (KB) = 451952 Test 130 hafs_global_multiple_4nests_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/hafs_regional_specified_moving_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hafs_regional_specified_moving_1nest_atm Checking test 131 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4385,28 +4385,28 @@ Checking test 131 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 204.479559 - 0: The maximum resident set size (KB) = 514944 + 0: The total amount of wall time = 204.399616 + 0: The maximum resident set size (KB) = 522440 Test 131 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/hafs_regional_storm_following_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hafs_regional_storm_following_1nest_atm Checking test 132 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 191.433782 - 0: The maximum resident set size (KB) = 518924 + 0: The total amount of wall time = 191.385448 + 0: The maximum resident set size (KB) = 524480 Test 132 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hafs_regional_storm_following_1nest_atm_ocn Checking test 133 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4415,42 +4415,42 @@ Checking test 133 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 226.943458 - 0: The maximum resident set size (KB) = 568348 + 0: The total amount of wall time = 225.239918 + 0: The maximum resident set size (KB) = 558700 Test 133 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_global_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/hafs_global_storm_following_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_storm_following_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hafs_global_storm_following_1nest_atm Checking test 134 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 61.245809 - 0: The maximum resident set size (KB) = 367972 + 0: The total amount of wall time = 58.478480 + 0: The maximum resident set size (KB) = 371540 Test 134 hafs_global_storm_following_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 699.276796 - 0: The maximum resident set size (KB) = 580516 + 0: The total amount of wall time = 709.842285 + 0: The maximum resident set size (KB) = 580008 Test 135 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 136 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4461,14 +4461,14 @@ Checking test 136 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 485.668241 - 0: The maximum resident set size (KB) = 614204 + 0: The total amount of wall time = 483.505918 + 0: The maximum resident set size (KB) = 618044 Test 136 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_docn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/hafs_regional_docn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_docn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hafs_regional_docn Checking test 137 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4476,14 +4476,14 @@ Checking test 137 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 359.661891 - 0: The maximum resident set size (KB) = 1228080 + 0: The total amount of wall time = 358.455072 + 0: The maximum resident set size (KB) = 1234820 Test 137 hafs_regional_docn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_docn_oisst -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/hafs_regional_docn_oisst +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_docn_oisst +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hafs_regional_docn_oisst Checking test 138 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4491,131 +4491,131 @@ Checking test 138 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 360.727019 - 0: The maximum resident set size (KB) = 1217052 + 0: The total amount of wall time = 360.612792 + 0: The maximum resident set size (KB) = 1218460 Test 138 hafs_regional_docn_oisst PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_datm_cdeps -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/hafs_regional_datm_cdeps +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_datm_cdeps +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hafs_regional_datm_cdeps Checking test 139 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 956.926185 - 0: The maximum resident set size (KB) = 1041848 + 0: The total amount of wall time = 965.447061 + 0: The maximum resident set size (KB) = 1040256 Test 139 hafs_regional_datm_cdeps PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/datm_cdeps_control_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/datm_cdeps_control_cfsr Checking test 140 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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.990943 - 0: The maximum resident set size (KB) = 1067788 + 0: The total amount of wall time = 155.127299 + 0: The maximum resident set size (KB) = 1058584 Test 140 datm_cdeps_control_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/datm_cdeps_restart_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/datm_cdeps_restart_cfsr Checking test 141 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 90.562493 - 0: The maximum resident set size (KB) = 1015136 + 0: The total amount of wall time = 92.649635 + 0: The maximum resident set size (KB) = 1017456 Test 141 datm_cdeps_restart_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/datm_cdeps_control_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/datm_cdeps_control_gefs Checking test 142 datm_cdeps_control_gefs 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.518636 - 0: The maximum resident set size (KB) = 963356 + 0: The total amount of wall time = 151.026390 + 0: The maximum resident set size (KB) = 963592 Test 142 datm_cdeps_control_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_iau_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/datm_cdeps_iau_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_iau_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/datm_cdeps_iau_gefs Checking test 143 datm_cdeps_iau_gefs 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.205883 - 0: The maximum resident set size (KB) = 985776 + 0: The total amount of wall time = 152.152208 + 0: The maximum resident set size (KB) = 968144 Test 143 datm_cdeps_iau_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_stochy_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/datm_cdeps_stochy_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_stochy_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/datm_cdeps_stochy_gefs Checking test 144 datm_cdeps_stochy_gefs 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 = 152.741466 - 0: The maximum resident set size (KB) = 966524 + 0: The total amount of wall time = 154.195511 + 0: The maximum resident set size (KB) = 969552 Test 144 datm_cdeps_stochy_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_ciceC_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/datm_cdeps_ciceC_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_ciceC_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/datm_cdeps_ciceC_cfsr Checking test 145 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 152.236268 - 0: The maximum resident set size (KB) = 1054804 + 0: The total amount of wall time = 158.554497 + 0: The maximum resident set size (KB) = 1064436 Test 145 datm_cdeps_ciceC_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/datm_cdeps_bulk_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/datm_cdeps_bulk_cfsr Checking test 146 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 156.334722 - 0: The maximum resident set size (KB) = 1072472 + 0: The total amount of wall time = 157.035213 + 0: The maximum resident set size (KB) = 1062288 Test 146 datm_cdeps_bulk_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/datm_cdeps_bulk_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/datm_cdeps_bulk_gefs Checking test 147 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.858996 - 0: The maximum resident set size (KB) = 965468 + 0: The total amount of wall time = 150.895376 + 0: The maximum resident set size (KB) = 967068 Test 147 datm_cdeps_bulk_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/datm_cdeps_mx025_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/datm_cdeps_mx025_cfsr Checking test 148 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4624,14 +4624,14 @@ Checking test 148 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 454.761229 - 0: The maximum resident set size (KB) = 879920 + 0: The total amount of wall time = 458.002044 + 0: The maximum resident set size (KB) = 879412 Test 148 datm_cdeps_mx025_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/datm_cdeps_mx025_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/datm_cdeps_mx025_gefs Checking test 149 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4640,77 +4640,77 @@ Checking test 149 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 405.970647 - 0: The maximum resident set size (KB) = 935500 + 0: The total amount of wall time = 459.538249 + 0: The maximum resident set size (KB) = 935800 Test 149 datm_cdeps_mx025_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/datm_cdeps_multiple_files_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/datm_cdeps_multiple_files_cfsr Checking test 150 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 154.723749 - 0: The maximum resident set size (KB) = 1070536 + 0: The total amount of wall time = 153.093055 + 0: The maximum resident set size (KB) = 1059268 Test 150 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/datm_cdeps_3072x1536_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/datm_cdeps_3072x1536_cfsr Checking test 151 datm_cdeps_3072x1536_cfsr 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 = 220.828151 - 0: The maximum resident set size (KB) = 2358140 + 0: The total amount of wall time = 217.838480 + 0: The maximum resident set size (KB) = 2306744 Test 151 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_gfs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/datm_cdeps_gfs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_gfs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/datm_cdeps_gfs Checking test 152 datm_cdeps_gfs 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 = 222.139467 - 0: The maximum resident set size (KB) = 2378300 + 0: The total amount of wall time = 219.263927 + 0: The maximum resident set size (KB) = 2354212 Test 152 datm_cdeps_gfs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/datm_cdeps_debug_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/datm_cdeps_debug_cfsr Checking test 153 datm_cdeps_debug_cfsr 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 = 343.912246 - 0: The maximum resident set size (KB) = 1002108 + 0: The total amount of wall time = 360.530708 + 0: The maximum resident set size (KB) = 980596 Test 153 datm_cdeps_debug_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_control_cfsr_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/datm_cdeps_control_cfsr_faster +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/datm_cdeps_control_cfsr_faster Checking test 154 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.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.828832 - 0: The maximum resident set size (KB) = 1053688 + 0: The total amount of wall time = 153.623201 + 0: The maximum resident set size (KB) = 1062244 Test 154 datm_cdeps_control_cfsr_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/datm_cdeps_lnd_gswp3 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_lnd_gswp3 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/datm_cdeps_lnd_gswp3 Checking test 155 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4719,14 +4719,14 @@ Checking test 155 datm_cdeps_lnd_gswp3 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 = 6.913405 - 0: The maximum resident set size (KB) = 264552 + 0: The total amount of wall time = 7.768949 + 0: The maximum resident set size (KB) = 258304 Test 155 datm_cdeps_lnd_gswp3 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/datm_cdeps_lnd_gswp3_rst +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_lnd_gswp3 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/datm_cdeps_lnd_gswp3_rst Checking test 156 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4735,14 +4735,14 @@ Checking test 156 datm_cdeps_lnd_gswp3_rst 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 = 15.006843 - 0: The maximum resident set size (KB) = 264688 + 0: The total amount of wall time = 13.298967 + 0: The maximum resident set size (KB) = 265548 Test 156 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8_atmlnd_sbs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_p8_atmlnd_sbs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_atmlnd_sbs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_p8_atmlnd_sbs Checking test 157 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4827,14 +4827,14 @@ Checking test 157 control_p8_atmlnd_sbs 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 = 211.725980 - 0: The maximum resident set size (KB) = 1602920 + 0: The total amount of wall time = 206.961914 + 0: The maximum resident set size (KB) = 1587552 Test 157 control_p8_atmlnd_sbs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/atmwav_control_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/atmwav_control_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/atmwav_control_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/atmwav_control_noaero_p8 Checking test 158 atmwav_control_noaero_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4877,14 +4877,14 @@ Checking test 158 atmwav_control_noaero_p8 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 = 97.600929 - 0: The maximum resident set size (KB) = 1626460 + 0: The total amount of wall time = 96.375286 + 0: The maximum resident set size (KB) = 1607224 Test 158 atmwav_control_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_atmwav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/control_atmwav +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_atmwav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_atmwav Checking test 159 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4928,14 +4928,14 @@ Checking test 159 control_atmwav 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.674124 - 0: The maximum resident set size (KB) = 657656 + 0: The total amount of wall time = 89.163925 + 0: The maximum resident set size (KB) = 660180 Test 159 control_atmwav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/atmaero_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/atmaero_control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/atmaero_control_p8 Checking test 160 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4979,14 +4979,14 @@ Checking test 160 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 234.858158 - 0: The maximum resident set size (KB) = 2957700 + 0: The total amount of wall time = 229.371520 + 0: The maximum resident set size (KB) = 2978856 Test 160 atmaero_control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/atmaero_control_p8_rad -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/atmaero_control_p8_rad +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8_rad +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/atmaero_control_p8_rad Checking test 161 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5030,14 +5030,14 @@ Checking test 161 atmaero_control_p8_rad results .... Comparing 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.767511 - 0: The maximum resident set size (KB) = 3042524 + 0: The total amount of wall time = 282.810634 + 0: The maximum resident set size (KB) = 3044764 Test 161 atmaero_control_p8_rad PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/atmaero_control_p8_rad_micro -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/atmaero_control_p8_rad_micro +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8_rad_micro +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/atmaero_control_p8_rad_micro Checking test 162 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5081,14 +5081,14 @@ Checking test 162 atmaero_control_p8_rad_micro results .... Comparing 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.834444 - 0: The maximum resident set size (KB) = 3049700 + 0: The total amount of wall time = 290.275001 + 0: The maximum resident set size (KB) = 3048520 Test 162 atmaero_control_p8_rad_micro PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_atmaq -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/regional_atmaq +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/regional_atmaq Checking test 163 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5104,14 +5104,14 @@ Checking test 163 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 653.319830 - 0: The maximum resident set size (KB) = 1444244 + 0: The total amount of wall time = 645.763304 + 0: The maximum resident set size (KB) = 1451852 Test 163 regional_atmaq PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_atmaq_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/regional_atmaq_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/regional_atmaq_debug Checking test 164 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5125,14 +5125,14 @@ Checking test 164 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1202.296664 - 0: The maximum resident set size (KB) = 1380568 + 0: The total amount of wall time = 1197.774812 + 0: The maximum resident set size (KB) = 1378572 Test 164 regional_atmaq_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_atmaq_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29106/regional_atmaq_faster +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/regional_atmaq_faster Checking test 165 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5148,12 +5148,12 @@ Checking test 165 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 565.035102 - 0: The maximum resident set size (KB) = 1467608 + 0: The total amount of wall time = 559.468073 + 0: The maximum resident set size (KB) = 1438220 Test 165 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Sat Apr 15 01:50:42 UTC 2023 -Elapsed time: 01h:46m:55s. Have a nice day! +Wed Apr 19 06:43:42 UTC 2023 +Elapsed time: 01h:29m:30s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index 500c2d7d386..9ece7063c79 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,43 +1,43 @@ -Sat Apr 15 00:08:47 UTC 2023 +Thu Apr 20 01:22:51 UTC 2023 Start Regression test -Compile 001 elapsed time 1976 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 002 elapsed time 1971 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 003 elapsed time 1844 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 004 elapsed time 292 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 265 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 1689 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 007 elapsed time 1695 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 008 elapsed time 3315 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 009 elapsed time 1814 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 010 elapsed time 1702 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 011 elapsed time 1689 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 012 elapsed time 1560 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 013 elapsed time 1974 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 014 elapsed time 265 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 218 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 1579 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 017 elapsed time 1664 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 018 elapsed time 217 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 205 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 1666 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 021 elapsed time 241 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 2067 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 023 elapsed time 1622 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 024 elapsed time 268 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 025 elapsed time 142 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 284 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 027 elapsed time 79 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 028 elapsed time 1701 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 029 elapsed time 1645 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 030 elapsed time 1641 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 031 elapsed time 1610 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 032 elapsed time 1590 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 033 elapsed time 236 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 034 elapsed time 1823 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8_mixedmode -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/cpld_control_p8_mixedmode +Compile 001 elapsed time 2030 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 002 elapsed time 2031 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 003 elapsed time 1943 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 004 elapsed time 339 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 270 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 1711 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 007 elapsed time 1429 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 008 elapsed time 3373 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 009 elapsed time 1829 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 010 elapsed time 1774 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 011 elapsed time 1682 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 012 elapsed time 1578 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 013 elapsed time 2011 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 014 elapsed time 320 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 191 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 1609 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 017 elapsed time 1627 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 018 elapsed time 176 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 190 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 1428 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 021 elapsed time 286 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 2128 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 023 elapsed time 1663 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 024 elapsed time 286 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 025 elapsed time 162 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 300 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 027 elapsed time 81 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 028 elapsed time 1442 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 029 elapsed time 1685 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 030 elapsed time 1662 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 031 elapsed time 1640 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 032 elapsed time 1298 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 033 elapsed time 256 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 034 elapsed time 1836 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8_mixedmode +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -102,14 +102,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 401.650984 - 0: The maximum resident set size (KB) = 1750732 + 0: The total amount of wall time = 471.023100 + 0: The maximum resident set size (KB) = 1751236 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_gfsv17 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/cpld_control_gfsv17 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_gfsv17 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -173,14 +173,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 297.795320 - 0: The maximum resident set size (KB) = 1638984 + 0: The total amount of wall time = 326.361741 + 0: The maximum resident set size (KB) = 1634784 Test 002 cpld_control_gfsv17 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/cpld_control_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -245,14 +245,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 457.769848 - 0: The maximum resident set size (KB) = 1802428 + 0: The total amount of wall time = 503.220807 + 0: The maximum resident set size (KB) = 1783208 Test 003 cpld_control_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/cpld_restart_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -305,14 +305,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 253.776356 - 0: The maximum resident set size (KB) = 1493040 + 0: The total amount of wall time = 285.707039 + 0: The maximum resident set size (KB) = 1483892 Test 004 cpld_restart_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/cpld_control_qr_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -377,14 +377,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 454.433805 - 0: The maximum resident set size (KB) = 1811552 + 0: The total amount of wall time = 507.838849 + 0: The maximum resident set size (KB) = 1807104 Test 005 cpld_control_qr_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/cpld_restart_qr_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -437,14 +437,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 257.877443 - 0: The maximum resident set size (KB) = 1512728 + 0: The total amount of wall time = 300.629254 + 0: The maximum resident set size (KB) = 1507292 Test 006 cpld_restart_qr_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/cpld_2threads_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -497,14 +497,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 474.245052 - 0: The maximum resident set size (KB) = 1975920 + 0: The total amount of wall time = 518.598137 + 0: The maximum resident set size (KB) = 1993992 Test 007 cpld_2threads_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/cpld_decomp_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -557,14 +557,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 455.772943 - 0: The maximum resident set size (KB) = 1769208 + 0: The total amount of wall time = 493.489545 + 0: The maximum resident set size (KB) = 1793188 Test 008 cpld_decomp_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/cpld_mpi_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -617,14 +617,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 381.285765 - 0: The maximum resident set size (KB) = 1747944 + 0: The total amount of wall time = 448.890572 + 0: The maximum resident set size (KB) = 1748764 Test 009 cpld_mpi_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_ciceC_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/cpld_control_ciceC_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_ciceC_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -689,14 +689,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 456.886840 - 0: The maximum resident set size (KB) = 1800004 + 0: The total amount of wall time = 488.363646 + 0: The maximum resident set size (KB) = 1797360 Test 010 cpld_control_ciceC_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_noaero_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/cpld_control_noaero_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_noaero_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/cpld_control_noaero_p8 Checking test 011 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -760,14 +760,14 @@ Checking test 011 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 341.505406 - 0: The maximum resident set size (KB) = 1632888 + 0: The total amount of wall time = 356.484684 + 0: The maximum resident set size (KB) = 1625508 Test 011 cpld_control_noaero_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/cpld_control_nowave_noaero_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c96_noaero_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/cpld_control_nowave_noaero_p8 Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -829,14 +829,14 @@ Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 346.525070 - 0: The maximum resident set size (KB) = 1678908 + 0: The total amount of wall time = 364.712288 + 0: The maximum resident set size (KB) = 1670948 Test 012 cpld_control_nowave_noaero_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_debug_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/cpld_debug_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_debug_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/cpld_debug_p8 Checking test 013 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -889,14 +889,14 @@ Checking test 013 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 675.616409 - 0: The maximum resident set size (KB) = 1820872 + 0: The total amount of wall time = 739.488722 + 0: The maximum resident set size (KB) = 1810320 Test 013 cpld_debug_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_debug_noaero_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/cpld_debug_noaero_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_debug_noaero_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/cpld_debug_noaero_p8 Checking test 014 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -948,14 +948,14 @@ Checking test 014 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 468.913596 - 0: The maximum resident set size (KB) = 1639388 + 0: The total amount of wall time = 489.168997 + 0: The maximum resident set size (KB) = 1637708 Test 014 cpld_debug_noaero_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/cpld_control_noaero_p8_agrid +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_noaero_p8_agrid +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/cpld_control_noaero_p8_agrid Checking test 015 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1017,14 +1017,14 @@ Checking test 015 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 368.144491 - 0: The maximum resident set size (KB) = 1689884 + 0: The total amount of wall time = 390.448759 + 0: The maximum resident set size (KB) = 1686268 Test 015 cpld_control_noaero_p8_agrid PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_c48 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/cpld_control_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c48 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/cpld_control_c48 Checking test 016 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1074,14 +1074,14 @@ Checking test 016 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 796.878991 - 0: The maximum resident set size (KB) = 2775608 + 0: The total amount of wall time = 726.859506 + 0: The maximum resident set size (KB) = 2777348 Test 016 cpld_control_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_warmstart_c48 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/cpld_warmstart_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_warmstart_c48 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/cpld_warmstart_c48 Checking test 017 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1131,14 +1131,14 @@ Checking test 017 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 212.023127 - 0: The maximum resident set size (KB) = 2775000 + 0: The total amount of wall time = 217.001570 + 0: The maximum resident set size (KB) = 2773168 Test 017 cpld_warmstart_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_warmstart_c48 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/cpld_restart_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_warmstart_c48 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/cpld_restart_c48 Checking test 018 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1188,14 +1188,14 @@ Checking test 018 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 111.613020 - 0: The maximum resident set size (KB) = 2203784 + 0: The total amount of wall time = 118.497683 + 0: The maximum resident set size (KB) = 2205900 Test 018 cpld_restart_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8_faster -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/cpld_control_p8_faster +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8_faster +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/cpld_control_p8_faster Checking test 019 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1260,14 +1260,14 @@ Checking test 019 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 431.078921 - 0: The maximum resident set size (KB) = 1777724 + 0: The total amount of wall time = 520.790463 + 0: The maximum resident set size (KB) = 1775280 Test 019 cpld_control_p8_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_CubedSphereGrid -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_CubedSphereGrid +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_CubedSphereGrid Checking test 020 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1294,28 +1294,28 @@ Checking test 020 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 181.575185 - 0: The maximum resident set size (KB) = 571292 + 0: The total amount of wall time = 200.224609 + 0: The maximum resident set size (KB) = 573800 Test 020 control_CubedSphereGrid PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_CubedSphereGrid_parallel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_CubedSphereGrid_parallel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid_parallel +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_CubedSphereGrid_parallel Checking test 021 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK - 0: The total amount of wall time = 180.367169 - 0: The maximum resident set size (KB) = 574620 + 0: The total amount of wall time = 184.837725 + 0: The maximum resident set size (KB) = 573912 Test 021 control_CubedSphereGrid_parallel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_latlon -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_latlon +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_latlon +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_latlon Checking test 022 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1326,14 +1326,14 @@ Checking test 022 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 184.326140 - 0: The maximum resident set size (KB) = 574028 + 0: The total amount of wall time = 205.481641 + 0: The maximum resident set size (KB) = 570600 Test 022 control_latlon PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_wrtGauss_netcdf_parallel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_wrtGauss_netcdf_parallel Checking test 023 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1344,14 +1344,14 @@ Checking test 023 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 189.496789 - 0: The maximum resident set size (KB) = 573716 + 0: The total amount of wall time = 201.020578 + 0: The maximum resident set size (KB) = 574816 Test 023 control_wrtGauss_netcdf_parallel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_c48 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c48 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_c48 Checking test 024 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1390,14 +1390,14 @@ Checking test 024 control_c48 results .... Comparing 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.686008 -0: The maximum resident set size (KB) = 798388 +0: The total amount of wall time = 600.623285 +0: The maximum resident set size (KB) = 799740 Test 024 control_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_c192 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_c192 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c192 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_c192 Checking test 025 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1408,14 +1408,14 @@ Checking test 025 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 732.801376 - 0: The maximum resident set size (KB) = 690108 + 0: The total amount of wall time = 767.489242 + 0: The maximum resident set size (KB) = 690204 Test 025 control_c192 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_c384 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_c384 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c384 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_c384 Checking test 026 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1426,14 +1426,14 @@ Checking test 026 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 934.943145 - 0: The maximum resident set size (KB) = 1064516 + 0: The total amount of wall time = 1014.774079 + 0: The maximum resident set size (KB) = 1048440 Test 026 control_c384 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_c384gdas -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_c384gdas +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c384gdas +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_c384gdas Checking test 027 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1476,14 +1476,14 @@ Checking test 027 control_c384gdas 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 = 801.635133 - 0: The maximum resident set size (KB) = 1198996 + 0: The total amount of wall time = 882.546680 + 0: The maximum resident set size (KB) = 1191424 Test 027 control_c384gdas PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_stochy -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_stochy +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_stochy Checking test 028 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1494,28 +1494,28 @@ Checking test 028 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 122.983864 - 0: The maximum resident set size (KB) = 578696 + 0: The total amount of wall time = 125.895933 + 0: The maximum resident set size (KB) = 572280 Test 028 control_stochy PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_stochy -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_stochy_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_stochy_restart Checking test 029 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 67.684106 - 0: The maximum resident set size (KB) = 390072 + 0: The total amount of wall time = 73.197096 + 0: The maximum resident set size (KB) = 393264 Test 029 control_stochy_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_lndp -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_lndp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_lndp +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_lndp Checking test 030 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1526,14 +1526,14 @@ Checking test 030 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 114.207624 - 0: The maximum resident set size (KB) = 574304 + 0: The total amount of wall time = 117.994735 + 0: The maximum resident set size (KB) = 577504 Test 030 control_lndp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_iovr4 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_iovr4 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_iovr4 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_iovr4 Checking test 031 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1548,14 +1548,14 @@ Checking test 031 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 190.331318 - 0: The maximum resident set size (KB) = 573960 + 0: The total amount of wall time = 220.796015 + 0: The maximum resident set size (KB) = 574636 Test 031 control_iovr4 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_iovr5 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_iovr5 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_iovr5 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_iovr5 Checking test 032 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1570,14 +1570,14 @@ Checking test 032 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 190.729086 - 0: The maximum resident set size (KB) = 572120 + 0: The total amount of wall time = 199.874858 + 0: The maximum resident set size (KB) = 572212 Test 032 control_iovr5 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_p8 Checking test 033 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1624,14 +1624,14 @@ Checking test 033 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 236.880903 - 0: The maximum resident set size (KB) = 1550996 + 0: The total amount of wall time = 245.810373 + 0: The maximum resident set size (KB) = 1531884 Test 033 control_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_restart_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_restart_p8 Checking test 034 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1670,14 +1670,14 @@ Checking test 034 control_restart_p8 results .... Comparing 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.492008 - 0: The maximum resident set size (KB) = 772644 + 0: The total amount of wall time = 136.557604 + 0: The maximum resident set size (KB) = 776400 Test 034 control_restart_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_qr_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_qr_p8 Checking test 035 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1724,14 +1724,14 @@ Checking test 035 control_qr_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 227.698586 - 0: The maximum resident set size (KB) = 1544268 + 0: The total amount of wall time = 236.610506 + 0: The maximum resident set size (KB) = 1553348 Test 035 control_qr_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_restart_qr_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_restart_qr_p8 Checking test 036 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1770,14 +1770,14 @@ Checking test 036 control_restart_qr_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 120.024762 - 0: The maximum resident set size (KB) = 790404 + 0: The total amount of wall time = 130.466269 + 0: The maximum resident set size (KB) = 787096 Test 036 control_restart_qr_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_decomp_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_decomp_p8 Checking test 037 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1820,14 +1820,14 @@ Checking test 037 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 241.389709 - 0: The maximum resident set size (KB) = 1528164 + 0: The total amount of wall time = 247.179512 + 0: The maximum resident set size (KB) = 1530352 Test 037 control_decomp_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_2threads_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_2threads_p8 Checking test 038 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1870,14 +1870,14 @@ Checking test 038 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 212.089454 - 0: The maximum resident set size (KB) = 1625792 + 0: The total amount of wall time = 229.830156 + 0: The maximum resident set size (KB) = 1620136 Test 038 control_2threads_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8_lndp -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_p8_lndp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_lndp +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_p8_lndp Checking test 039 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1896,14 +1896,14 @@ Checking test 039 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 422.231149 - 0: The maximum resident set size (KB) = 1557240 + 0: The total amount of wall time = 442.108303 + 0: The maximum resident set size (KB) = 1555992 Test 039 control_p8_lndp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8_rrtmgp -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_p8_rrtmgp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_rrtmgp +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_p8_rrtmgp Checking test 040 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1950,14 +1950,14 @@ Checking test 040 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 305.885618 - 0: The maximum resident set size (KB) = 1625624 + 0: The total amount of wall time = 326.890762 + 0: The maximum resident set size (KB) = 1619692 Test 040 control_p8_rrtmgp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8_mynn -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_p8_mynn +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_mynn +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_p8_mynn Checking test 041 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2004,14 +2004,14 @@ Checking test 041 control_p8_mynn results .... Comparing 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.244846 - 0: The maximum resident set size (KB) = 1553984 + 0: The total amount of wall time = 253.373856 + 0: The maximum resident set size (KB) = 1551524 Test 041 control_p8_mynn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/merra2_thompson -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/merra2_thompson +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/merra2_thompson +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/merra2_thompson Checking test 042 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2058,14 +2058,14 @@ Checking test 042 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 259.391544 - 0: The maximum resident set size (KB) = 1560448 + 0: The total amount of wall time = 284.080579 + 0: The maximum resident set size (KB) = 1561244 Test 042 merra2_thompson PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/regional_control +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/regional_control Checking test 043 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2076,28 +2076,28 @@ Checking test 043 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 402.905094 - 0: The maximum resident set size (KB) = 785840 + 0: The total amount of wall time = 433.017172 + 0: The maximum resident set size (KB) = 786528 Test 043 regional_control PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/regional_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/regional_restart Checking test 044 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 209.944168 - 0: The maximum resident set size (KB) = 781768 + 0: The total amount of wall time = 245.348614 + 0: The maximum resident set size (KB) = 778380 Test 044 regional_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/regional_control_qr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/regional_control_qr Checking test 045 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2108,28 +2108,28 @@ Checking test 045 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 405.958981 - 0: The maximum resident set size (KB) = 788524 + 0: The total amount of wall time = 431.533698 + 0: The maximum resident set size (KB) = 787612 Test 045 regional_control_qr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/regional_restart_qr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/regional_restart_qr Checking test 046 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 205.155402 - 0: The maximum resident set size (KB) = 778976 + 0: The total amount of wall time = 211.103906 + 0: The maximum resident set size (KB) = 780140 Test 046 regional_restart_qr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/regional_decomp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/regional_decomp Checking test 047 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2140,14 +2140,14 @@ Checking test 047 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 419.968968 - 0: The maximum resident set size (KB) = 780316 + 0: The total amount of wall time = 446.018869 + 0: The maximum resident set size (KB) = 784592 Test 047 regional_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/regional_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/regional_2threads Checking test 048 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2158,28 +2158,28 @@ Checking test 048 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 247.233681 - 0: The maximum resident set size (KB) = 775272 + 0: The total amount of wall time = 287.199903 + 0: The maximum resident set size (KB) = 774776 Test 048 regional_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_netcdf_parallel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/regional_netcdf_parallel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_netcdf_parallel +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/regional_netcdf_parallel Checking test 049 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 396.881112 - 0: The maximum resident set size (KB) = 784504 + 0: The total amount of wall time = 415.347450 + 0: The maximum resident set size (KB) = 781704 Test 049 regional_netcdf_parallel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/regional_2dwrtdecomp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/regional_2dwrtdecomp Checking test 050 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2190,14 +2190,14 @@ Checking test 050 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 406.971990 - 0: The maximum resident set size (KB) = 784820 + 0: The total amount of wall time = 438.886244 + 0: The maximum resident set size (KB) = 788788 Test 050 regional_2dwrtdecomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/rap_control +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rap_control Checking test 051 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2244,14 +2244,14 @@ Checking test 051 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 606.179905 - 0: The maximum resident set size (KB) = 942476 + 0: The total amount of wall time = 639.612939 + 0: The maximum resident set size (KB) = 943796 Test 051 rap_control PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/regional_spp_sppt_shum_skeb +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_spp_sppt_shum_skeb +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/regional_spp_sppt_shum_skeb Checking test 052 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2262,14 +2262,14 @@ Checking test 052 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 325.207291 - 0: The maximum resident set size (KB) = 1093100 + 0: The total amount of wall time = 336.065726 + 0: The maximum resident set size (KB) = 1098680 Test 052 regional_spp_sppt_shum_skeb PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/rap_decomp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rap_decomp Checking test 053 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2316,14 +2316,14 @@ Checking test 053 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 638.883844 - 0: The maximum resident set size (KB) = 947192 + 0: The total amount of wall time = 690.097590 + 0: The maximum resident set size (KB) = 959332 Test 053 rap_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/rap_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rap_2threads Checking test 054 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2370,14 +2370,14 @@ Checking test 054 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 579.587478 - 0: The maximum resident set size (KB) = 1025036 + 0: The total amount of wall time = 633.250524 + 0: The maximum resident set size (KB) = 1028704 Test 054 rap_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/rap_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rap_restart Checking test 055 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2416,14 +2416,14 @@ Checking test 055 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 302.586375 - 0: The maximum resident set size (KB) = 835628 + 0: The total amount of wall time = 345.214728 + 0: The maximum resident set size (KB) = 842572 Test 055 rap_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/rap_sfcdiff +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rap_sfcdiff Checking test 056 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2470,14 +2470,14 @@ Checking test 056 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 612.929771 - 0: The maximum resident set size (KB) = 952944 + 0: The total amount of wall time = 660.524169 + 0: The maximum resident set size (KB) = 958148 Test 056 rap_sfcdiff PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/rap_sfcdiff_decomp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rap_sfcdiff_decomp Checking test 057 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2524,14 +2524,14 @@ Checking test 057 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 649.854832 - 0: The maximum resident set size (KB) = 947936 + 0: The total amount of wall time = 750.003970 + 0: The maximum resident set size (KB) = 936984 Test 057 rap_sfcdiff_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/rap_sfcdiff_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rap_sfcdiff_restart Checking test 058 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2570,14 +2570,14 @@ Checking test 058 rap_sfcdiff_restart results .... Comparing 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.268296 - 0: The maximum resident set size (KB) = 845776 + 0: The total amount of wall time = 485.212816 + 0: The maximum resident set size (KB) = 844540 Test 058 rap_sfcdiff_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/hrrr_control +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/hrrr_control Checking test 059 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2624,14 +2624,14 @@ Checking test 059 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 592.755803 - 0: The maximum resident set size (KB) = 961608 + 0: The total amount of wall time = 652.012777 + 0: The maximum resident set size (KB) = 955004 Test 059 hrrr_control PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/hrrr_control_decomp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/hrrr_control_decomp Checking test 060 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2678,14 +2678,14 @@ Checking test 060 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 615.764966 - 0: The maximum resident set size (KB) = 945164 + 0: The total amount of wall time = 657.066218 + 0: The maximum resident set size (KB) = 936668 Test 060 hrrr_control_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/hrrr_control_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/hrrr_control_2threads Checking test 061 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2732,14 +2732,14 @@ Checking test 061 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 565.594662 - 0: The maximum resident set size (KB) = 1025176 + 0: The total amount of wall time = 617.524370 + 0: The maximum resident set size (KB) = 1027948 Test 061 hrrr_control_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/hrrr_control_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/hrrr_control_restart Checking test 062 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2778,14 +2778,14 @@ Checking test 062 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 434.060671 - 0: The maximum resident set size (KB) = 836204 + 0: The total amount of wall time = 460.022702 + 0: The maximum resident set size (KB) = 839844 Test 062 hrrr_control_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_v1beta -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/rrfs_v1beta +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1beta +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rrfs_v1beta Checking test 063 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2832,14 +2832,14 @@ Checking test 063 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 606.642801 - 0: The maximum resident set size (KB) = 953600 + 0: The total amount of wall time = 698.670666 + 0: The maximum resident set size (KB) = 958048 Test 063 rrfs_v1beta PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_v1nssl -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/rrfs_v1nssl +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1nssl +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rrfs_v1nssl Checking test 064 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2854,14 +2854,14 @@ Checking test 064 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 727.127533 - 0: The maximum resident set size (KB) = 634456 + 0: The total amount of wall time = 821.298817 + 0: The maximum resident set size (KB) = 640556 Test 064 rrfs_v1nssl PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/rrfs_v1nssl_nohailnoccn +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rrfs_v1nssl_nohailnoccn Checking test 065 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2876,14 +2876,14 @@ Checking test 065 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 723.370791 - 0: The maximum resident set size (KB) = 634088 + 0: The total amount of wall time = 826.883533 + 0: The maximum resident set size (KB) = 631072 Test 065 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rrfs_smoke_conus13km_hrrr_warm Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2892,14 +2892,14 @@ Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 198.509683 - 0: The maximum resident set size (KB) = 904472 + 0: The total amount of wall time = 223.288108 + 0: The maximum resident set size (KB) = 909384 Test 066 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 067 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2908,14 +2908,14 @@ Checking test 067 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 127.650418 - 0: The maximum resident set size (KB) = 865808 + 0: The total amount of wall time = 145.635281 + 0: The maximum resident set size (KB) = 869836 Test 067 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/rrfs_conus13km_hrrr_warm +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rrfs_conus13km_hrrr_warm Checking test 068 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2924,14 +2924,14 @@ Checking test 068 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 177.049585 - 0: The maximum resident set size (KB) = 869816 + 0: The total amount of wall time = 195.579389 + 0: The maximum resident set size (KB) = 868896 Test 068 rrfs_conus13km_hrrr_warm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rrfs_smoke_conus13km_radar_tten_warm Checking test 069 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2940,26 +2940,26 @@ Checking test 069 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 201.554724 - 0: The maximum resident set size (KB) = 909928 + 0: The total amount of wall time = 238.178758 + 0: The maximum resident set size (KB) = 917704 Test 069 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 070 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 100.054185 - 0: The maximum resident set size (KB) = 848792 + 0: The total amount of wall time = 112.302736 + 0: The maximum resident set size (KB) = 848156 Test 070 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_csawmg -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_csawmg +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmg +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_csawmg Checking test 071 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2970,14 +2970,14 @@ Checking test 071 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 467.607592 - 0: The maximum resident set size (KB) = 675148 + 0: The total amount of wall time = 469.488152 + 0: The maximum resident set size (KB) = 669280 Test 071 control_csawmg PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_csawmgt -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_csawmgt +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmgt +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_csawmgt Checking test 072 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2988,14 +2988,14 @@ Checking test 072 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 457.350199 - 0: The maximum resident set size (KB) = 668604 + 0: The total amount of wall time = 472.256143 + 0: The maximum resident set size (KB) = 670184 Test 072 control_csawmgt PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_ras -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_ras +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_ras +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_ras Checking test 073 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3006,26 +3006,26 @@ Checking test 073 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 246.500395 - 0: The maximum resident set size (KB) = 635344 + 0: The total amount of wall time = 263.103841 + 0: The maximum resident set size (KB) = 638792 Test 073 control_ras PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_wam -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_wam +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wam +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_wam Checking test 074 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 149.931921 - 0: The maximum resident set size (KB) = 478908 + 0: The total amount of wall time = 155.862357 + 0: The maximum resident set size (KB) = 487904 Test 074 control_wam PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8_faster -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_p8_faster +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_faster +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_p8_faster Checking test 075 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3072,14 +3072,14 @@ Checking test 075 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 212.223518 - 0: The maximum resident set size (KB) = 1538952 + 0: The total amount of wall time = 263.519259 + 0: The maximum resident set size (KB) = 1547740 Test 075 control_p8_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control_faster -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/regional_control_faster +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control_faster +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/regional_control_faster Checking test 076 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3090,56 +3090,56 @@ Checking test 076 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 376.510887 - 0: The maximum resident set size (KB) = 793592 + 0: The total amount of wall time = 428.268179 + 0: The maximum resident set size (KB) = 785376 Test 076 regional_control_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 077 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 1081.602503 - 0: The maximum resident set size (KB) = 937816 + 0: The total amount of wall time = 1087.951622 + 0: The maximum resident set size (KB) = 958236 Test 077 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 078 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 625.623280 - 0: The maximum resident set size (KB) = 885956 + 0: The total amount of wall time = 636.002976 + 0: The maximum resident set size (KB) = 899112 Test 078 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/rrfs_conus13km_hrrr_warm_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rrfs_conus13km_hrrr_warm_debug Checking test 079 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 963.560753 - 0: The maximum resident set size (KB) = 890444 + 0: The total amount of wall time = 971.875701 + 0: The maximum resident set size (KB) = 900720 Test 079 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_CubedSphereGrid_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_CubedSphereGrid_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_CubedSphereGrid_debug Checking test 080 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3166,334 +3166,334 @@ Checking test 080 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 185.794982 - 0: The maximum resident set size (KB) = 730508 + 0: The total amount of wall time = 188.898946 + 0: The maximum resident set size (KB) = 733456 Test 080 control_CubedSphereGrid_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_wrtGauss_netcdf_parallel_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_wrtGauss_netcdf_parallel_debug Checking test 081 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 186.973143 - 0: The maximum resident set size (KB) = 731540 + 0: The total amount of wall time = 188.438443 + 0: The maximum resident set size (KB) = 733076 Test 081 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_stochy_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_stochy_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_stochy_debug Checking test 082 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 210.352121 - 0: The maximum resident set size (KB) = 738092 + 0: The total amount of wall time = 221.319339 + 0: The maximum resident set size (KB) = 735068 Test 082 control_stochy_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_lndp_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_lndp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_lndp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_lndp_debug Checking test 083 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 192.829625 - 0: The maximum resident set size (KB) = 740288 + 0: The total amount of wall time = 192.339202 + 0: The maximum resident set size (KB) = 736844 Test 083 control_lndp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_csawmg_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_csawmg_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmg_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_csawmg_debug Checking test 084 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 297.822793 - 0: The maximum resident set size (KB) = 785256 + 0: The total amount of wall time = 303.943888 + 0: The maximum resident set size (KB) = 786612 Test 084 control_csawmg_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_csawmgt_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_csawmgt_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmgt_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_csawmgt_debug Checking test 085 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 292.515402 - 0: The maximum resident set size (KB) = 783716 + 0: The total amount of wall time = 298.877596 + 0: The maximum resident set size (KB) = 782520 Test 085 control_csawmgt_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_ras_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_ras_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_ras_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_ras_debug Checking test 086 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 191.091189 - 0: The maximum resident set size (KB) = 746248 + 0: The total amount of wall time = 199.276896 + 0: The maximum resident set size (KB) = 746524 Test 086 control_ras_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_diag_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_diag_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_diag_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_diag_debug Checking test 087 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 192.612385 - 0: The maximum resident set size (KB) = 790596 + 0: The total amount of wall time = 197.578336 + 0: The maximum resident set size (KB) = 791584 Test 087 control_diag_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_debug_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_debug_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_debug_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_debug_p8 Checking test 088 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 211.483202 - 0: The maximum resident set size (KB) = 1568076 + 0: The total amount of wall time = 252.010622 + 0: The maximum resident set size (KB) = 1559868 Test 088 control_debug_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/regional_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/regional_debug Checking test 089 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1271.300749 - 0: The maximum resident set size (KB) = 802688 + 0: The total amount of wall time = 1317.792560 + 0: The maximum resident set size (KB) = 805316 Test 089 regional_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/rap_control_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rap_control_debug Checking test 090 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 344.336014 - 0: The maximum resident set size (KB) = 1116376 + 0: The total amount of wall time = 361.095472 + 0: The maximum resident set size (KB) = 1115896 Test 090 rap_control_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/hrrr_control_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/hrrr_control_debug Checking test 091 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 339.375751 - 0: The maximum resident set size (KB) = 1115112 + 0: The total amount of wall time = 342.479682 + 0: The maximum resident set size (KB) = 1113956 Test 091 hrrr_control_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/rap_unified_drag_suite_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rap_unified_drag_suite_debug Checking test 092 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 346.578983 - 0: The maximum resident set size (KB) = 1115684 + 0: The total amount of wall time = 349.895458 + 0: The maximum resident set size (KB) = 1115420 Test 092 rap_unified_drag_suite_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_diag_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/rap_diag_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_diag_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rap_diag_debug Checking test 093 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 364.554997 - 0: The maximum resident set size (KB) = 1198200 + 0: The total amount of wall time = 376.580731 + 0: The maximum resident set size (KB) = 1196764 Test 093 rap_diag_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/rap_cires_ugwp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rap_cires_ugwp_debug Checking test 094 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 357.612134 - 0: The maximum resident set size (KB) = 1111572 + 0: The total amount of wall time = 358.947968 + 0: The maximum resident set size (KB) = 1107136 Test 094 rap_cires_ugwp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/rap_unified_ugwp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rap_unified_ugwp_debug Checking test 095 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 357.696222 - 0: The maximum resident set size (KB) = 1115724 + 0: The total amount of wall time = 355.066938 + 0: The maximum resident set size (KB) = 1116540 Test 095 rap_unified_ugwp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_lndp_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/rap_lndp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_lndp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rap_lndp_debug Checking test 096 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 350.180454 - 0: The maximum resident set size (KB) = 1116100 + 0: The total amount of wall time = 349.447598 + 0: The maximum resident set size (KB) = 1110652 Test 096 rap_lndp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_flake_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/rap_flake_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_flake_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rap_flake_debug Checking test 097 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 347.066079 - 0: The maximum resident set size (KB) = 1115924 + 0: The total amount of wall time = 348.727387 + 0: The maximum resident set size (KB) = 1117756 Test 097 rap_flake_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_progcld_thompson_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/rap_progcld_thompson_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_progcld_thompson_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rap_progcld_thompson_debug Checking test 098 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 346.296156 - 0: The maximum resident set size (KB) = 1118756 + 0: The total amount of wall time = 351.552945 + 0: The maximum resident set size (KB) = 1111844 Test 098 rap_progcld_thompson_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_noah_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/rap_noah_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_noah_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rap_noah_debug Checking test 099 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 341.072550 - 0: The maximum resident set size (KB) = 1118508 + 0: The total amount of wall time = 346.329701 + 0: The maximum resident set size (KB) = 1107444 Test 099 rap_noah_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_sfcdiff_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/rap_sfcdiff_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rap_sfcdiff_debug Checking test 100 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 347.814951 - 0: The maximum resident set size (KB) = 1119108 + 0: The total amount of wall time = 345.784204 + 0: The maximum resident set size (KB) = 1114204 Test 100 rap_sfcdiff_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rap_noah_sfcdiff_cires_ugwp_debug Checking test 101 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 574.149318 - 0: The maximum resident set size (KB) = 1112544 + 0: The total amount of wall time = 577.619688 + 0: The maximum resident set size (KB) = 1108080 Test 101 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_v1beta_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/rrfs_v1beta_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1beta_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rrfs_v1beta_debug Checking test 102 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 339.955142 - 0: The maximum resident set size (KB) = 1108516 + 0: The total amount of wall time = 343.219548 + 0: The maximum resident set size (KB) = 1110244 Test 102 rrfs_v1beta_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_wam_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_wam_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wam_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_wam_debug Checking test 103 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 353.591054 - 0: The maximum resident set size (KB) = 445324 + 0: The total amount of wall time = 361.814200 + 0: The maximum resident set size (KB) = 433612 Test 103 control_wam_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3504,14 +3504,14 @@ Checking test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 297.169161 - 0: The maximum resident set size (KB) = 991928 + 0: The total amount of wall time = 354.452830 + 0: The maximum resident set size (KB) = 986824 Test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/rap_control_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rap_control_dyn32_phy32 Checking test 105 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3558,14 +3558,14 @@ Checking test 105 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 497.498828 - 0: The maximum resident set size (KB) = 842380 + 0: The total amount of wall time = 620.502372 + 0: The maximum resident set size (KB) = 843384 Test 105 rap_control_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/hrrr_control_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/hrrr_control_dyn32_phy32 Checking test 106 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3612,14 +3612,14 @@ Checking test 106 hrrr_control_dyn32_phy32 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 = 262.442719 - 0: The maximum resident set size (KB) = 838720 + 0: The total amount of wall time = 338.040144 + 0: The maximum resident set size (KB) = 836352 Test 106 hrrr_control_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/rap_2threads_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rap_2threads_dyn32_phy32 Checking test 107 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3666,14 +3666,14 @@ Checking test 107 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 480.895563 - 0: The maximum resident set size (KB) = 889936 + 0: The total amount of wall time = 576.454580 + 0: The maximum resident set size (KB) = 894424 Test 107 rap_2threads_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/hrrr_control_2threads_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/hrrr_control_2threads_dyn32_phy32 Checking test 108 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3720,14 +3720,14 @@ Checking test 108 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 249.711315 - 0: The maximum resident set size (KB) = 884848 + 0: The total amount of wall time = 324.716508 + 0: The maximum resident set size (KB) = 879288 Test 108 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/hrrr_control_decomp_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/hrrr_control_decomp_dyn32_phy32 Checking test 109 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3774,14 +3774,14 @@ Checking test 109 hrrr_control_decomp_dyn32_phy32 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 = 276.072887 - 0: The maximum resident set size (KB) = 831528 + 0: The total amount of wall time = 317.177707 + 0: The maximum resident set size (KB) = 828512 Test 109 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/rap_restart_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rap_restart_dyn32_phy32 Checking test 110 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3820,14 +3820,14 @@ Checking test 110 rap_restart_dyn32_phy32 results .... Comparing 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.172675 - 0: The maximum resident set size (KB) = 811200 + 0: The total amount of wall time = 471.966131 + 0: The maximum resident set size (KB) = 804300 Test 110 rap_restart_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/hrrr_control_restart_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/hrrr_control_restart_dyn32_phy32 Checking test 111 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3866,14 +3866,14 @@ Checking test 111 hrrr_control_restart_dyn32_phy32 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 = 134.757585 - 0: The maximum resident set size (KB) = 764476 + 0: The total amount of wall time = 149.883309 + 0: The maximum resident set size (KB) = 763372 Test 111 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_dyn64_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/rap_control_dyn64_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn64_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rap_control_dyn64_phy32 Checking test 112 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3920,81 +3920,81 @@ Checking test 112 rap_control_dyn64_phy32 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 = 317.981809 - 0: The maximum resident set size (KB) = 870656 + 0: The total amount of wall time = 345.872111 + 0: The maximum resident set size (KB) = 869968 Test 112 rap_control_dyn64_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/rap_control_debug_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rap_control_debug_dyn32_phy32 Checking test 113 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 341.101730 - 0: The maximum resident set size (KB) = 997844 + 0: The total amount of wall time = 345.750163 + 0: The maximum resident set size (KB) = 1005096 Test 113 rap_control_debug_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/hrrr_control_debug_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/hrrr_control_debug_dyn32_phy32 Checking test 114 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 336.575042 - 0: The maximum resident set size (KB) = 992640 + 0: The total amount of wall time = 342.044103 + 0: The maximum resident set size (KB) = 993304 Test 114 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/rap_control_dyn64_phy32_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rap_control_dyn64_phy32_debug Checking test 115 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 346.053978 - 0: The maximum resident set size (KB) = 1029824 + 0: The total amount of wall time = 353.196964 + 0: The maximum resident set size (KB) = 1030964 Test 115 rap_control_dyn64_phy32_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/hafs_regional_atm +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/hafs_regional_atm Checking test 116 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 345.567233 - 0: The maximum resident set size (KB) = 1227236 + 0: The total amount of wall time = 590.226262 + 0: The maximum resident set size (KB) = 1226096 Test 116 hafs_regional_atm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/hafs_regional_atm_thompson_gfdlsf +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/hafs_regional_atm_thompson_gfdlsf Checking test 117 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 411.555717 - 0: The maximum resident set size (KB) = 1585192 + 0: The total amount of wall time = 1050.153711 + 0: The maximum resident set size (KB) = 1595064 Test 117 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm_ocn -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/hafs_regional_atm_ocn +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_ocn +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/hafs_regional_atm_ocn Checking test 118 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4003,14 +4003,14 @@ Checking test 118 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 519.980256 - 0: The maximum resident set size (KB) = 1304636 + 0: The total amount of wall time = 736.682182 + 0: The maximum resident set size (KB) = 1305196 Test 118 hafs_regional_atm_ocn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm_wav -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/hafs_regional_atm_wav +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_wav +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/hafs_regional_atm_wav Checking test 119 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4019,14 +4019,14 @@ Checking test 119 hafs_regional_atm_wav 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 = 928.353697 - 0: The maximum resident set size (KB) = 1328820 + 0: The total amount of wall time = 1102.865323 + 0: The maximum resident set size (KB) = 1326296 Test 119 hafs_regional_atm_wav PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/hafs_regional_atm_ocn_wav +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_ocn_wav +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/hafs_regional_atm_ocn_wav Checking test 120 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4037,14 +4037,14 @@ Checking test 120 hafs_regional_atm_ocn_wav 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 = 1038.543360 - 0: The maximum resident set size (KB) = 1344916 + 0: The total amount of wall time = 1179.307395 + 0: The maximum resident set size (KB) = 1285844 Test 120 hafs_regional_atm_ocn_wav PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_docn -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/hafs_regional_docn +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_docn +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/hafs_regional_docn Checking test 121 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4052,14 +4052,14 @@ Checking test 121 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 489.303936 - 0: The maximum resident set size (KB) = 1300356 + 0: The total amount of wall time = 568.395873 + 0: The maximum resident set size (KB) = 1306084 Test 121 hafs_regional_docn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_docn_oisst -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/hafs_regional_docn_oisst +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_docn_oisst +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/hafs_regional_docn_oisst Checking test 122 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4067,118 +4067,118 @@ Checking test 122 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 490.230256 - 0: The maximum resident set size (KB) = 1292116 + 0: The total amount of wall time = 560.591066 + 0: The maximum resident set size (KB) = 1291796 Test 122 hafs_regional_docn_oisst PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/datm_cdeps_control_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/datm_cdeps_control_cfsr Checking test 123 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 211.703018 - 0: The maximum resident set size (KB) = 976968 + 0: The total amount of wall time = 251.058189 + 0: The maximum resident set size (KB) = 965460 Test 123 datm_cdeps_control_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/datm_cdeps_restart_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/datm_cdeps_restart_cfsr Checking test 124 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 125.786993 - 0: The maximum resident set size (KB) = 930524 + 0: The total amount of wall time = 172.540988 + 0: The maximum resident set size (KB) = 950172 Test 124 datm_cdeps_restart_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_control_gefs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/datm_cdeps_control_gefs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/datm_cdeps_control_gefs Checking test 125 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 207.774199 - 0: The maximum resident set size (KB) = 863572 + 0: The total amount of wall time = 349.339181 + 0: The maximum resident set size (KB) = 867640 Test 125 datm_cdeps_control_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_iau_gefs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/datm_cdeps_iau_gefs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_iau_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/datm_cdeps_iau_gefs Checking test 126 datm_cdeps_iau_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 210.617674 - 0: The maximum resident set size (KB) = 854872 + 0: The total amount of wall time = 278.714667 + 0: The maximum resident set size (KB) = 871204 Test 126 datm_cdeps_iau_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_stochy_gefs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/datm_cdeps_stochy_gefs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_stochy_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/datm_cdeps_stochy_gefs Checking test 127 datm_cdeps_stochy_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 211.205960 - 0: The maximum resident set size (KB) = 863256 + 0: The total amount of wall time = 292.379097 + 0: The maximum resident set size (KB) = 864304 Test 127 datm_cdeps_stochy_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/datm_cdeps_ciceC_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_ciceC_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/datm_cdeps_ciceC_cfsr Checking test 128 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 213.603197 - 0: The maximum resident set size (KB) = 966380 + 0: The total amount of wall time = 339.379104 + 0: The maximum resident set size (KB) = 967040 Test 128 datm_cdeps_ciceC_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/datm_cdeps_bulk_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_bulk_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/datm_cdeps_bulk_cfsr Checking test 129 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 213.618205 - 0: The maximum resident set size (KB) = 958028 + 0: The total amount of wall time = 235.326648 + 0: The maximum resident set size (KB) = 964820 Test 129 datm_cdeps_bulk_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/datm_cdeps_bulk_gefs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_bulk_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/datm_cdeps_bulk_gefs Checking test 130 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 208.232038 - 0: The maximum resident set size (KB) = 853600 + 0: The total amount of wall time = 281.581902 + 0: The maximum resident set size (KB) = 864592 Test 130 datm_cdeps_bulk_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/datm_cdeps_mx025_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_mx025_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/datm_cdeps_mx025_cfsr Checking test 131 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4187,14 +4187,14 @@ Checking test 131 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 556.586142 - 0: The maximum resident set size (KB) = 764632 + 0: The total amount of wall time = 703.920062 + 0: The maximum resident set size (KB) = 763532 Test 131 datm_cdeps_mx025_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/datm_cdeps_mx025_gefs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_mx025_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/datm_cdeps_mx025_gefs Checking test 132 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4203,77 +4203,77 @@ Checking test 132 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 557.037174 - 0: The maximum resident set size (KB) = 735560 + 0: The total amount of wall time = 644.202833 + 0: The maximum resident set size (KB) = 734992 Test 132 datm_cdeps_mx025_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/datm_cdeps_multiple_files_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/datm_cdeps_multiple_files_cfsr Checking test 133 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 210.812156 - 0: The maximum resident set size (KB) = 963020 + 0: The total amount of wall time = 306.681288 + 0: The maximum resident set size (KB) = 978080 Test 133 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/datm_cdeps_3072x1536_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/datm_cdeps_3072x1536_cfsr Checking test 134 datm_cdeps_3072x1536_cfsr 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 = 324.494469 - 0: The maximum resident set size (KB) = 2185652 + 0: The total amount of wall time = 496.885645 + 0: The maximum resident set size (KB) = 2258264 Test 134 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_gfs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/datm_cdeps_gfs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_gfs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/datm_cdeps_gfs Checking test 135 datm_cdeps_gfs results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 319.436353 - 0: The maximum resident set size (KB) = 2188948 + 0: The total amount of wall time = 559.186140 + 0: The maximum resident set size (KB) = 2257224 Test 135 datm_cdeps_gfs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_debug_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/datm_cdeps_debug_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_debug_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/datm_cdeps_debug_cfsr Checking test 136 datm_cdeps_debug_cfsr 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 = 461.126575 - 0: The maximum resident set size (KB) = 908464 + 0: The total amount of wall time = 492.411281 + 0: The maximum resident set size (KB) = 936640 Test 136 datm_cdeps_debug_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_control_cfsr_faster -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/datm_cdeps_control_cfsr_faster +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr_faster +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/datm_cdeps_control_cfsr_faster Checking test 137 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 211.577474 - 0: The maximum resident set size (KB) = 967140 + 0: The total amount of wall time = 299.380243 + 0: The maximum resident set size (KB) = 960472 Test 137 datm_cdeps_control_cfsr_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/datm_cdeps_lnd_gswp3 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/datm_cdeps_lnd_gswp3 Checking test 138 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4282,14 +4282,14 @@ Checking test 138 datm_cdeps_lnd_gswp3 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 = 11.131327 - 0: The maximum resident set size (KB) = 253136 + 0: The total amount of wall time = 101.955401 + 0: The maximum resident set size (KB) = 251272 Test 138 datm_cdeps_lnd_gswp3 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/datm_cdeps_lnd_gswp3_rst +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/datm_cdeps_lnd_gswp3_rst Checking test 139 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4298,14 +4298,14 @@ Checking test 139 datm_cdeps_lnd_gswp3_rst 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.532986 - 0: The maximum resident set size (KB) = 253444 + 0: The total amount of wall time = 33.361801 + 0: The maximum resident set size (KB) = 242508 Test 139 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8_atmlnd_sbs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_p8_atmlnd_sbs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_atmlnd_sbs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_p8_atmlnd_sbs Checking test 140 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4390,14 +4390,14 @@ Checking test 140 control_p8_atmlnd_sbs 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.273417 - 0: The maximum resident set size (KB) = 1594168 + 0: The total amount of wall time = 325.163839 + 0: The maximum resident set size (KB) = 1586652 Test 140 control_p8_atmlnd_sbs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/atmwav_control_noaero_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/atmwav_control_noaero_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/atmwav_control_noaero_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/atmwav_control_noaero_p8 Checking test 141 atmwav_control_noaero_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4440,14 +4440,14 @@ Checking test 141 atmwav_control_noaero_p8 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 = 124.966332 - 0: The maximum resident set size (KB) = 1557400 + 0: The total amount of wall time = 170.514760 + 0: The maximum resident set size (KB) = 1557856 Test 141 atmwav_control_noaero_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/control_atmwav -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/control_atmwav +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_atmwav +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_atmwav Checking test 142 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4491,14 +4491,14 @@ Checking test 142 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 118.008190 - 0: The maximum resident set size (KB) = 593644 + 0: The total amount of wall time = 148.328805 + 0: The maximum resident set size (KB) = 601436 Test 142 control_atmwav PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/atmaero_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/atmaero_control_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/atmaero_control_p8 Checking test 143 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4542,14 +4542,14 @@ Checking test 143 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 305.594718 - 0: The maximum resident set size (KB) = 1634124 + 0: The total amount of wall time = 365.697515 + 0: The maximum resident set size (KB) = 1630036 Test 143 atmaero_control_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/atmaero_control_p8_rad -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/atmaero_control_p8_rad +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8_rad +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/atmaero_control_p8_rad Checking test 144 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4593,14 +4593,14 @@ Checking test 144 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 377.679503 - 0: The maximum resident set size (KB) = 1671312 + 0: The total amount of wall time = 408.763218 + 0: The maximum resident set size (KB) = 1666180 Test 144 atmaero_control_p8_rad PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230413/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_202246/atmaero_control_p8_rad_micro +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8_rad_micro +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/atmaero_control_p8_rad_micro Checking test 145 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4644,12 +4644,12 @@ Checking test 145 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 378.486484 - 0: The maximum resident set size (KB) = 1688048 + 0: The total amount of wall time = 447.357374 + 0: The maximum resident set size (KB) = 1687724 Test 145 atmaero_control_p8_rad_micro PASS REGRESSION TEST WAS SUCCESSFUL -Sat Apr 15 03:01:47 UTC 2023 -Elapsed time: 02h:53m:01s. Have a nice day! +Thu Apr 20 04:16:07 UTC 2023 +Elapsed time: 02h:53m:17s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index 370f74f444b..7d407a508ef 100755 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,43 +1,43 @@ -Sun Apr 16 08:31:48 CDT 2023 +Tue Apr 18 21:17:16 CDT 2023 Start Regression test -Compile 001 elapsed time 784 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 717 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 684 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 289 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 244 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 643 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 001 elapsed time 772 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 734 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 643 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 275 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 247 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 652 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 613 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 817 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 633 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 583 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 559 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 519 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 691 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 203 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 162 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 525 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 552 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 180 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 162 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 626 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 021 elapsed time 203 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 703 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 670 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 024 elapsed time 196 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 132 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 195 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 52 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 566 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 623 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 624 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 537 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 537 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 033 elapsed time 191 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 034 elapsed time 605 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8_mixedmode -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/cpld_control_p8_mixedmode +Compile 008 elapsed time 831 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 669 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 592 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 011 elapsed time 578 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 553 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 727 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 215 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 221 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 510 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 605 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 196 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 270 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 623 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 021 elapsed time 192 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 774 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 587 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 024 elapsed time 187 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 110 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 229 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 58 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 587 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 598 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 621 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 646 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 603 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 033 elapsed time 194 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 034 elapsed time 614 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8_mixedmode +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -102,14 +102,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 309.641419 - 0: The maximum resident set size (KB) = 3146352 + 0: The total amount of wall time = 311.718450 + 0: The maximum resident set size (KB) = 3143460 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_gfsv17 -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/cpld_control_gfsv17 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_gfsv17 +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -173,14 +173,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 225.168763 - 0: The maximum resident set size (KB) = 1740960 + 0: The total amount of wall time = 230.093113 + 0: The maximum resident set size (KB) = 1725740 Test 002 cpld_control_gfsv17 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/cpld_control_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -245,14 +245,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 350.602521 - 0: The maximum resident set size (KB) = 3185976 + 0: The total amount of wall time = 348.180306 + 0: The maximum resident set size (KB) = 3182832 Test 003 cpld_control_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/cpld_restart_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -305,14 +305,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 204.091388 - 0: The maximum resident set size (KB) = 3054804 + 0: The total amount of wall time = 199.174792 + 0: The maximum resident set size (KB) = 3050576 Test 004 cpld_restart_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/cpld_control_qr_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -377,14 +377,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 344.262214 - 0: The maximum resident set size (KB) = 3195924 + 0: The total amount of wall time = 346.581084 + 0: The maximum resident set size (KB) = 3199764 Test 005 cpld_control_qr_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/cpld_restart_qr_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -437,14 +437,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 212.391043 - 0: The maximum resident set size (KB) = 3065976 + 0: The total amount of wall time = 212.720346 + 0: The maximum resident set size (KB) = 3066276 Test 006 cpld_restart_qr_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/cpld_2threads_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -497,14 +497,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 412.627386 - 0: The maximum resident set size (KB) = 3517936 + 0: The total amount of wall time = 403.467723 + 0: The maximum resident set size (KB) = 3526200 Test 007 cpld_2threads_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/cpld_decomp_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -557,14 +557,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 355.529052 - 0: The maximum resident set size (KB) = 3172108 + 0: The total amount of wall time = 375.113537 + 0: The maximum resident set size (KB) = 3176272 Test 008 cpld_decomp_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/cpld_mpi_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -617,14 +617,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 301.007756 - 0: The maximum resident set size (KB) = 3028168 + 0: The total amount of wall time = 286.387723 + 0: The maximum resident set size (KB) = 3026164 Test 009 cpld_mpi_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_ciceC_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/cpld_control_ciceC_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_ciceC_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -689,14 +689,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 345.845741 - 0: The maximum resident set size (KB) = 3185688 + 0: The total amount of wall time = 348.976199 + 0: The maximum resident set size (KB) = 3184976 Test 010 cpld_control_ciceC_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/cpld_control_c192_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c192_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/cpld_control_c192_p8 Checking test 011 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -749,14 +749,14 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 642.400521 - 0: The maximum resident set size (KB) = 3263568 + 0: The total amount of wall time = 638.377104 + 0: The maximum resident set size (KB) = 3263516 Test 011 cpld_control_c192_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/cpld_restart_c192_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c192_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/cpld_restart_c192_p8 Checking test 012 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -809,14 +809,14 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 450.271028 - 0: The maximum resident set size (KB) = 3092724 + 0: The total amount of wall time = 443.868189 + 0: The maximum resident set size (KB) = 3162992 Test 012 cpld_restart_c192_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_bmark_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/cpld_bmark_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_bmark_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/cpld_bmark_p8 Checking test 013 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -864,14 +864,14 @@ Checking test 013 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 873.730007 - 0: The maximum resident set size (KB) = 4046936 + 0: The total amount of wall time = 883.317458 + 0: The maximum resident set size (KB) = 4029452 Test 013 cpld_bmark_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_bmark_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/cpld_restart_bmark_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_bmark_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/cpld_restart_bmark_p8 Checking test 014 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -919,14 +919,14 @@ Checking test 014 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 574.666820 - 0: The maximum resident set size (KB) = 3988632 + 0: The total amount of wall time = 548.910824 + 0: The maximum resident set size (KB) = 3957072 Test 014 cpld_restart_bmark_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_noaero_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/cpld_control_noaero_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_noaero_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/cpld_control_noaero_p8 Checking test 015 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -990,14 +990,14 @@ Checking test 015 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 251.455420 - 0: The maximum resident set size (KB) = 1723484 + 0: The total amount of wall time = 280.454861 + 0: The maximum resident set size (KB) = 1720948 Test 015 cpld_control_noaero_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_c96_noaero_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/cpld_control_nowave_noaero_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c96_noaero_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/cpld_control_nowave_noaero_p8 Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1059,14 +1059,14 @@ Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 259.985575 - 0: The maximum resident set size (KB) = 1774648 + 0: The total amount of wall time = 286.427995 + 0: The maximum resident set size (KB) = 1774832 Test 016 cpld_control_nowave_noaero_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_debug_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/cpld_debug_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_debug_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/cpld_debug_p8 Checking test 017 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1119,14 +1119,14 @@ Checking test 017 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 538.804973 - 0: The maximum resident set size (KB) = 3172940 + 0: The total amount of wall time = 552.314100 + 0: The maximum resident set size (KB) = 3238632 Test 017 cpld_debug_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_debug_noaero_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/cpld_debug_noaero_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_debug_noaero_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/cpld_debug_noaero_p8 Checking test 018 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1178,14 +1178,14 @@ Checking test 018 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 377.659503 - 0: The maximum resident set size (KB) = 1740344 + 0: The total amount of wall time = 374.461026 + 0: The maximum resident set size (KB) = 1703108 Test 018 cpld_debug_noaero_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_noaero_p8_agrid -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/cpld_control_noaero_p8_agrid +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_noaero_p8_agrid +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/cpld_control_noaero_p8_agrid Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1247,14 +1247,14 @@ Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 264.668434 - 0: The maximum resident set size (KB) = 1770024 + 0: The total amount of wall time = 293.732408 + 0: The maximum resident set size (KB) = 1777012 Test 019 cpld_control_noaero_p8_agrid PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_c48 -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/cpld_control_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/cpld_control_c48 Checking test 020 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1304,14 +1304,14 @@ Checking test 020 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 506.271245 - 0: The maximum resident set size (KB) = 2749416 + 0: The total amount of wall time = 497.942742 + 0: The maximum resident set size (KB) = 2814532 Test 020 cpld_control_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_warmstart_c48 -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/cpld_warmstart_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_warmstart_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/cpld_warmstart_c48 Checking test 021 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1361,14 +1361,14 @@ Checking test 021 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 137.084104 - 0: The maximum resident set size (KB) = 2808272 + 0: The total amount of wall time = 143.068892 + 0: The maximum resident set size (KB) = 2800788 Test 021 cpld_warmstart_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_warmstart_c48 -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/cpld_restart_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_warmstart_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/cpld_restart_c48 Checking test 022 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1418,14 +1418,14 @@ Checking test 022 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 74.757336 - 0: The maximum resident set size (KB) = 2241564 + 0: The total amount of wall time = 75.047038 + 0: The maximum resident set size (KB) = 2244616 Test 022 cpld_restart_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/cpld_control_p8_faster +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/cpld_control_p8_faster Checking test 023 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1490,14 +1490,14 @@ Checking test 023 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 322.140871 - 0: The maximum resident set size (KB) = 3190636 + 0: The total amount of wall time = 325.866733 + 0: The maximum resident set size (KB) = 3177480 Test 023 cpld_control_p8_faster PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_CubedSphereGrid -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_CubedSphereGrid +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_CubedSphereGrid Checking test 024 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1524,28 +1524,28 @@ Checking test 024 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 131.403751 - 0: The maximum resident set size (KB) = 631808 + 0: The total amount of wall time = 155.300785 + 0: The maximum resident set size (KB) = 629796 Test 024 control_CubedSphereGrid PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_CubedSphereGrid_parallel -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_CubedSphereGrid_parallel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid_parallel +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_CubedSphereGrid_parallel Checking test 025 control_CubedSphereGrid_parallel results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing atmf024.nc .........OK - 0: The total amount of wall time = 127.681610 - 0: The maximum resident set size (KB) = 626248 + 0: The total amount of wall time = 163.569592 + 0: The maximum resident set size (KB) = 633228 Test 025 control_CubedSphereGrid_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_latlon -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_latlon +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_latlon +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_latlon Checking test 026 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1556,32 +1556,32 @@ Checking test 026 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 133.756986 - 0: The maximum resident set size (KB) = 578792 + 0: The total amount of wall time = 155.188989 + 0: The maximum resident set size (KB) = 630976 Test 026 control_latlon PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_wrtGauss_netcdf_parallel -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_wrtGauss_netcdf_parallel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wrtGauss_netcdf_parallel +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_wrtGauss_netcdf_parallel Checking test 027 control_wrtGauss_netcdf_parallel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc ............ALT CHECK......OK + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc .........OK Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.600715 - 0: The maximum resident set size (KB) = 631472 + 0: The total amount of wall time = 156.571469 + 0: The maximum resident set size (KB) = 629156 Test 027 control_wrtGauss_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_c48 -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_c48 Checking test 028 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1620,14 +1620,14 @@ Checking test 028 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 346.642290 -0: The maximum resident set size (KB) = 779880 +0: The total amount of wall time = 347.540957 +0: The maximum resident set size (KB) = 824000 Test 028 control_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_c192 -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_c192 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c192 +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_c192 Checking test 029 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1638,14 +1638,14 @@ Checking test 029 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 529.287251 - 0: The maximum resident set size (KB) = 719060 + 0: The total amount of wall time = 550.512659 + 0: The maximum resident set size (KB) = 772992 Test 029 control_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_c384 -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_c384 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c384 +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_c384 Checking test 030 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1656,14 +1656,14 @@ Checking test 030 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 582.159953 - 0: The maximum resident set size (KB) = 1231504 + 0: The total amount of wall time = 610.724931 + 0: The maximum resident set size (KB) = 1193148 Test 030 control_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_c384gdas -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_c384gdas +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c384gdas +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_c384gdas Checking test 031 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1706,14 +1706,14 @@ Checking test 031 control_c384gdas 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 = 512.340862 - 0: The maximum resident set size (KB) = 1343256 + 0: The total amount of wall time = 511.442372 + 0: The maximum resident set size (KB) = 1336432 Test 031 control_c384gdas PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_stochy -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_stochy +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_stochy Checking test 032 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1724,28 +1724,28 @@ Checking test 032 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 88.241598 - 0: The maximum resident set size (KB) = 636416 + 0: The total amount of wall time = 87.666914 + 0: The maximum resident set size (KB) = 632316 Test 032 control_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_stochy -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_stochy_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_stochy_restart Checking test 033 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 49.922804 - 0: The maximum resident set size (KB) = 488568 + 0: The total amount of wall time = 48.100244 + 0: The maximum resident set size (KB) = 486172 Test 033 control_stochy_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_lndp -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_lndp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_lndp +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_lndp Checking test 034 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1756,14 +1756,14 @@ Checking test 034 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 81.761952 - 0: The maximum resident set size (KB) = 633724 + 0: The total amount of wall time = 80.675926 + 0: The maximum resident set size (KB) = 631892 Test 034 control_lndp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_iovr4 -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_iovr4 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_iovr4 +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_iovr4 Checking test 035 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1778,14 +1778,14 @@ Checking test 035 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.097851 - 0: The maximum resident set size (KB) = 635796 + 0: The total amount of wall time = 134.766805 + 0: The maximum resident set size (KB) = 631108 Test 035 control_iovr4 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_iovr5 -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_iovr5 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_iovr5 +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_iovr5 Checking test 036 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1800,14 +1800,14 @@ Checking test 036 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.232836 - 0: The maximum resident set size (KB) = 628380 + 0: The total amount of wall time = 134.552965 + 0: The maximum resident set size (KB) = 627324 Test 036 control_iovr5 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_p8 Checking test 037 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1854,14 +1854,14 @@ Checking test 037 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 168.918401 - 0: The maximum resident set size (KB) = 1602852 + 0: The total amount of wall time = 167.267938 + 0: The maximum resident set size (KB) = 1603796 Test 037 control_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_restart_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_restart_p8 Checking test 038 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1900,14 +1900,14 @@ Checking test 038 control_restart_p8 results .... Comparing 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.840837 - 0: The maximum resident set size (KB) = 870280 + 0: The total amount of wall time = 91.405014 + 0: The maximum resident set size (KB) = 877864 Test 038 control_restart_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_qr_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_qr_p8 Checking test 039 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1954,14 +1954,14 @@ Checking test 039 control_qr_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 168.546034 - 0: The maximum resident set size (KB) = 1605456 + 0: The total amount of wall time = 167.359188 + 0: The maximum resident set size (KB) = 1613188 Test 039 control_qr_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_restart_qr_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_restart_qr_p8 Checking test 040 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2000,14 +2000,14 @@ Checking test 040 control_restart_qr_p8 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 = 92.385168 - 0: The maximum resident set size (KB) = 862896 + 0: The total amount of wall time = 94.038915 + 0: The maximum resident set size (KB) = 869596 Test 040 control_restart_qr_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_decomp_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_decomp_p8 Checking test 041 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2050,14 +2050,14 @@ Checking test 041 control_decomp_p8 results .... Comparing 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.957744 - 0: The maximum resident set size (KB) = 1586940 + 0: The total amount of wall time = 174.322574 + 0: The maximum resident set size (KB) = 1585960 Test 041 control_decomp_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_2threads_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_2threads_p8 Checking test 042 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2100,14 +2100,14 @@ Checking test 042 control_2threads_p8 results .... Comparing 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.847256 - 0: The maximum resident set size (KB) = 1681560 + 0: The total amount of wall time = 183.052248 + 0: The maximum resident set size (KB) = 1684796 Test 042 control_2threads_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8_lndp -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_p8_lndp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_lndp +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_p8_lndp Checking test 043 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2126,14 +2126,14 @@ Checking test 043 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 311.667556 - 0: The maximum resident set size (KB) = 1608788 + 0: The total amount of wall time = 310.576183 + 0: The maximum resident set size (KB) = 1613112 Test 043 control_p8_lndp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8_rrtmgp -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_p8_rrtmgp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_rrtmgp +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_p8_rrtmgp Checking test 044 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2180,14 +2180,14 @@ Checking test 044 control_p8_rrtmgp results .... Comparing 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.909412 - 0: The maximum resident set size (KB) = 1677084 + 0: The total amount of wall time = 232.258734 + 0: The maximum resident set size (KB) = 1627996 Test 044 control_p8_rrtmgp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8_mynn -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_p8_mynn +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_mynn +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_p8_mynn Checking test 045 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2234,14 +2234,14 @@ Checking test 045 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 171.651696 - 0: The maximum resident set size (KB) = 1613044 + 0: The total amount of wall time = 171.757772 + 0: The maximum resident set size (KB) = 1602460 Test 045 control_p8_mynn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/merra2_thompson -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/merra2_thompson +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/merra2_thompson +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/merra2_thompson Checking test 046 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2288,14 +2288,14 @@ Checking test 046 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 189.845055 - 0: The maximum resident set size (KB) = 1610948 + 0: The total amount of wall time = 190.493109 + 0: The maximum resident set size (KB) = 1610752 Test 046 merra2_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/regional_control +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/regional_control Checking test 047 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2306,28 +2306,28 @@ Checking test 047 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 298.544728 - 0: The maximum resident set size (KB) = 869388 + 0: The total amount of wall time = 294.208235 + 0: The maximum resident set size (KB) = 871836 Test 047 regional_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/regional_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/regional_restart Checking test 048 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 155.008511 - 0: The maximum resident set size (KB) = 827540 + 0: The total amount of wall time = 155.940440 + 0: The maximum resident set size (KB) = 861424 Test 048 regional_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/regional_control_qr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/regional_control_qr Checking test 049 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2338,28 +2338,28 @@ Checking test 049 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 296.461575 - 0: The maximum resident set size (KB) = 871864 + 0: The total amount of wall time = 293.505610 + 0: The maximum resident set size (KB) = 870656 Test 049 regional_control_qr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/regional_restart_qr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/regional_restart_qr Checking test 050 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 152.894344 - 0: The maximum resident set size (KB) = 862056 + 0: The total amount of wall time = 155.724136 + 0: The maximum resident set size (KB) = 861616 Test 050 regional_restart_qr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/regional_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/regional_decomp Checking test 051 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2370,14 +2370,14 @@ Checking test 051 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 319.026978 - 0: The maximum resident set size (KB) = 864996 + 0: The total amount of wall time = 311.533598 + 0: The maximum resident set size (KB) = 858652 Test 051 regional_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/regional_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/regional_2threads Checking test 052 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2388,14 +2388,14 @@ Checking test 052 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 206.450160 - 0: The maximum resident set size (KB) = 847464 + 0: The total amount of wall time = 205.498546 + 0: The maximum resident set size (KB) = 848496 Test 052 regional_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_noquilt -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/regional_noquilt +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_noquilt +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/regional_noquilt Checking test 053 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2403,28 +2403,28 @@ Checking test 053 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 316.530905 - 0: The maximum resident set size (KB) = 860412 + 0: The total amount of wall time = 314.415975 + 0: The maximum resident set size (KB) = 860712 Test 053 regional_noquilt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_netcdf_parallel -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/regional_netcdf_parallel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_netcdf_parallel +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/regional_netcdf_parallel Checking test 054 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK + Comparing phyf006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 291.414437 - 0: The maximum resident set size (KB) = 865240 + 0: The total amount of wall time = 290.867565 + 0: The maximum resident set size (KB) = 869536 Test 054 regional_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/regional_2dwrtdecomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/regional_2dwrtdecomp Checking test 055 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2435,14 +2435,14 @@ Checking test 055 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 298.334959 - 0: The maximum resident set size (KB) = 872852 + 0: The total amount of wall time = 297.068994 + 0: The maximum resident set size (KB) = 873640 Test 055 regional_2dwrtdecomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/fv3_regional_wofs -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/regional_wofs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/fv3_regional_wofs +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/regional_wofs Checking test 056 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2453,14 +2453,14 @@ Checking test 056 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 375.810791 - 0: The maximum resident set size (KB) = 574940 + 0: The total amount of wall time = 371.826360 + 0: The maximum resident set size (KB) = 629436 Test 056 regional_wofs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/rap_control +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rap_control Checking test 057 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2507,14 +2507,14 @@ Checking test 057 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 457.957607 - 0: The maximum resident set size (KB) = 1072724 + 0: The total amount of wall time = 472.005699 + 0: The maximum resident set size (KB) = 1066248 Test 057 rap_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_spp_sppt_shum_skeb -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/regional_spp_sppt_shum_skeb +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_spp_sppt_shum_skeb +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/regional_spp_sppt_shum_skeb Checking test 058 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2525,14 +2525,14 @@ Checking test 058 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 264.871917 - 0: The maximum resident set size (KB) = 1187544 + 0: The total amount of wall time = 301.780722 + 0: The maximum resident set size (KB) = 1176668 Test 058 regional_spp_sppt_shum_skeb PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/rap_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rap_decomp Checking test 059 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2579,14 +2579,14 @@ Checking test 059 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 477.463910 - 0: The maximum resident set size (KB) = 1014896 + 0: The total amount of wall time = 505.832677 + 0: The maximum resident set size (KB) = 1002444 Test 059 rap_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/rap_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rap_2threads Checking test 060 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2633,14 +2633,14 @@ Checking test 060 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 468.925912 - 0: The maximum resident set size (KB) = 1134520 + 0: The total amount of wall time = 485.644115 + 0: The maximum resident set size (KB) = 1146848 Test 060 rap_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/rap_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rap_restart Checking test 061 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2679,14 +2679,14 @@ Checking test 061 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 233.175557 - 0: The maximum resident set size (KB) = 969744 + 0: The total amount of wall time = 232.520504 + 0: The maximum resident set size (KB) = 967692 Test 061 rap_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_sfcdiff -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/rap_sfcdiff +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rap_sfcdiff Checking test 062 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2733,14 +2733,14 @@ Checking test 062 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 459.558690 - 0: The maximum resident set size (KB) = 1066620 + 0: The total amount of wall time = 476.082184 + 0: The maximum resident set size (KB) = 1052224 Test 062 rap_sfcdiff PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_sfcdiff -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/rap_sfcdiff_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rap_sfcdiff_decomp Checking test 063 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2787,14 +2787,14 @@ Checking test 063 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 478.965488 - 0: The maximum resident set size (KB) = 1008516 + 0: The total amount of wall time = 490.022963 + 0: The maximum resident set size (KB) = 1003748 Test 063 rap_sfcdiff_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_sfcdiff -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/rap_sfcdiff_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rap_sfcdiff_restart Checking test 064 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2833,14 +2833,14 @@ Checking test 064 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 343.084605 - 0: The maximum resident set size (KB) = 990188 + 0: The total amount of wall time = 344.096581 + 0: The maximum resident set size (KB) = 996404 Test 064 rap_sfcdiff_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/hrrr_control +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hrrr_control Checking test 065 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2887,14 +2887,14 @@ Checking test 065 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 441.533138 - 0: The maximum resident set size (KB) = 1063244 + 0: The total amount of wall time = 477.365833 + 0: The maximum resident set size (KB) = 1054344 Test 065 hrrr_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/hrrr_control_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hrrr_control_decomp Checking test 066 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2941,14 +2941,14 @@ Checking test 066 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 462.422233 - 0: The maximum resident set size (KB) = 1004492 + 0: The total amount of wall time = 486.133249 + 0: The maximum resident set size (KB) = 1005908 Test 066 hrrr_control_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/hrrr_control_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hrrr_control_2threads Checking test 067 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2995,14 +2995,14 @@ Checking test 067 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 453.550667 - 0: The maximum resident set size (KB) = 1080876 + 0: The total amount of wall time = 473.891664 + 0: The maximum resident set size (KB) = 1143668 Test 067 hrrr_control_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/hrrr_control_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hrrr_control_restart Checking test 068 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3041,14 +3041,14 @@ Checking test 068 hrrr_control_restart results .... Comparing 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.568692 - 0: The maximum resident set size (KB) = 982340 + 0: The total amount of wall time = 331.619886 + 0: The maximum resident set size (KB) = 979216 Test 068 hrrr_control_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_v1beta -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/rrfs_v1beta +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1beta +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rrfs_v1beta Checking test 069 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3095,14 +3095,14 @@ Checking test 069 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 451.689371 - 0: The maximum resident set size (KB) = 1060768 + 0: The total amount of wall time = 463.179464 + 0: The maximum resident set size (KB) = 1059704 Test 069 rrfs_v1beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_v1nssl -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/rrfs_v1nssl +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1nssl +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rrfs_v1nssl Checking test 070 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3117,14 +3117,14 @@ Checking test 070 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 545.154337 - 0: The maximum resident set size (KB) = 705432 + 0: The total amount of wall time = 567.493298 + 0: The maximum resident set size (KB) = 698396 Test 070 rrfs_v1nssl PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/rrfs_v1nssl_nohailnoccn +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rrfs_v1nssl_nohailnoccn Checking test 071 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3139,14 +3139,14 @@ Checking test 071 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 527.913362 - 0: The maximum resident set size (KB) = 700424 + 0: The total amount of wall time = 534.217911 + 0: The maximum resident set size (KB) = 765948 Test 071 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rrfs_smoke_conus13km_hrrr_warm Checking test 072 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3155,14 +3155,14 @@ Checking test 072 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 145.165688 - 0: The maximum resident set size (KB) = 1042076 + 0: The total amount of wall time = 148.527839 + 0: The maximum resident set size (KB) = 1005180 Test 072 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 073 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3171,14 +3171,14 @@ Checking test 073 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 95.893379 - 0: The maximum resident set size (KB) = 951488 + 0: The total amount of wall time = 101.244927 + 0: The maximum resident set size (KB) = 909892 Test 073 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_conus13km_hrrr_warm -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/rrfs_conus13km_hrrr_warm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rrfs_conus13km_hrrr_warm Checking test 074 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3187,14 +3187,14 @@ Checking test 074 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 128.317158 - 0: The maximum resident set size (KB) = 950528 + 0: The total amount of wall time = 131.160320 + 0: The maximum resident set size (KB) = 954992 Test 074 rrfs_conus13km_hrrr_warm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rrfs_smoke_conus13km_radar_tten_warm Checking test 075 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3203,26 +3203,26 @@ Checking test 075 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 146.021434 - 0: The maximum resident set size (KB) = 1043292 + 0: The total amount of wall time = 150.438610 + 0: The maximum resident set size (KB) = 1036780 Test 075 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 076 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 68.745233 - 0: The maximum resident set size (KB) = 874104 + 0: The total amount of wall time = 70.941576 + 0: The maximum resident set size (KB) = 936928 Test 076 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_csawmg -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_csawmg +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmg +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_csawmg Checking test 077 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3233,14 +3233,14 @@ Checking test 077 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 342.365926 - 0: The maximum resident set size (KB) = 725920 + 0: The total amount of wall time = 345.565472 + 0: The maximum resident set size (KB) = 720200 Test 077 control_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_csawmgt -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_csawmgt +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmgt +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_csawmgt Checking test 078 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3251,14 +3251,14 @@ Checking test 078 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 336.589421 - 0: The maximum resident set size (KB) = 722808 + 0: The total amount of wall time = 345.441009 + 0: The maximum resident set size (KB) = 728432 Test 078 control_csawmgt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_ras -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_ras +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_ras +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_ras Checking test 079 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3269,26 +3269,26 @@ Checking test 079 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 182.040648 - 0: The maximum resident set size (KB) = 723868 + 0: The total amount of wall time = 183.363579 + 0: The maximum resident set size (KB) = 723120 Test 079 control_ras PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_wam -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_wam +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wam +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_wam Checking test 080 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 113.557258 - 0: The maximum resident set size (KB) = 644628 + 0: The total amount of wall time = 116.176332 + 0: The maximum resident set size (KB) = 640200 Test 080 control_wam PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_p8_faster +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_p8_faster Checking test 081 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3335,14 +3335,14 @@ Checking test 081 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 155.793975 - 0: The maximum resident set size (KB) = 1607292 + 0: The total amount of wall time = 156.438295 + 0: The maximum resident set size (KB) = 1602056 Test 081 control_p8_faster PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/regional_control_faster +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/regional_control_faster Checking test 082 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3353,56 +3353,56 @@ Checking test 082 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 268.939689 - 0: The maximum resident set size (KB) = 867084 + 0: The total amount of wall time = 272.584898 + 0: The maximum resident set size (KB) = 872956 Test 082 regional_control_faster PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 083 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 853.817333 - 0: The maximum resident set size (KB) = 1020664 + 0: The total amount of wall time = 823.868937 + 0: The maximum resident set size (KB) = 1065512 Test 083 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 084 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 485.543734 - 0: The maximum resident set size (KB) = 978080 + 0: The total amount of wall time = 486.549286 + 0: The maximum resident set size (KB) = 930988 Test 084 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/rrfs_conus13km_hrrr_warm_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rrfs_conus13km_hrrr_warm_debug Checking test 085 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 767.479775 - 0: The maximum resident set size (KB) = 959724 + 0: The total amount of wall time = 738.461387 + 0: The maximum resident set size (KB) = 966748 Test 085 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_CubedSphereGrid_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_CubedSphereGrid_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_CubedSphereGrid_debug Checking test 086 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3429,334 +3429,334 @@ Checking test 086 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 152.680209 - 0: The maximum resident set size (KB) = 796368 + 0: The total amount of wall time = 151.679283 + 0: The maximum resident set size (KB) = 788072 Test 086 control_CubedSphereGrid_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_wrtGauss_netcdf_parallel_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_wrtGauss_netcdf_parallel_debug Checking test 087 control_wrtGauss_netcdf_parallel_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 155.427311 - 0: The maximum resident set size (KB) = 793512 + 0: The total amount of wall time = 158.061851 + 0: The maximum resident set size (KB) = 793004 Test 087 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_stochy_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_stochy_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_stochy_debug Checking test 088 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 171.139592 - 0: The maximum resident set size (KB) = 800228 + 0: The total amount of wall time = 175.919235 + 0: The maximum resident set size (KB) = 794888 Test 088 control_stochy_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_lndp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_lndp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_lndp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_lndp_debug Checking test 089 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 153.077568 - 0: The maximum resident set size (KB) = 791920 + 0: The total amount of wall time = 162.285917 + 0: The maximum resident set size (KB) = 793008 Test 089 control_lndp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_csawmg_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_csawmg_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmg_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_csawmg_debug Checking test 090 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 230.017483 - 0: The maximum resident set size (KB) = 845676 + 0: The total amount of wall time = 237.720940 + 0: The maximum resident set size (KB) = 849040 Test 090 control_csawmg_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_csawmgt_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_csawmgt_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmgt_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_csawmgt_debug Checking test 091 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 237.911160 - 0: The maximum resident set size (KB) = 838680 + 0: The total amount of wall time = 234.177120 + 0: The maximum resident set size (KB) = 789588 Test 091 control_csawmgt_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_ras_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_ras_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_ras_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_ras_debug Checking test 092 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 156.883905 - 0: The maximum resident set size (KB) = 801736 + 0: The total amount of wall time = 158.898761 + 0: The maximum resident set size (KB) = 801856 Test 092 control_ras_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_diag_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_diag_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_diag_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_diag_debug Checking test 093 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 156.002415 - 0: The maximum resident set size (KB) = 859184 + 0: The total amount of wall time = 161.366995 + 0: The maximum resident set size (KB) = 850188 Test 093 control_diag_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_debug_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_debug_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_debug_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_debug_p8 Checking test 094 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 172.133444 - 0: The maximum resident set size (KB) = 1622956 + 0: The total amount of wall time = 177.552187 + 0: The maximum resident set size (KB) = 1623372 Test 094 control_debug_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/regional_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/regional_debug Checking test 095 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 996.622884 - 0: The maximum resident set size (KB) = 886672 + 0: The total amount of wall time = 1000.797831 + 0: The maximum resident set size (KB) = 890888 Test 095 regional_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/rap_control_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rap_control_debug Checking test 096 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.132073 - 0: The maximum resident set size (KB) = 1175696 + 0: The total amount of wall time = 290.722174 + 0: The maximum resident set size (KB) = 1174604 Test 096 rap_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/hrrr_control_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hrrr_control_debug Checking test 097 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.896810 - 0: The maximum resident set size (KB) = 1176412 + 0: The total amount of wall time = 272.963207 + 0: The maximum resident set size (KB) = 1164592 Test 097 hrrr_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/rap_unified_drag_suite_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rap_unified_drag_suite_debug Checking test 098 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.443344 - 0: The maximum resident set size (KB) = 1170952 + 0: The total amount of wall time = 276.741707 + 0: The maximum resident set size (KB) = 1167308 Test 098 rap_unified_drag_suite_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_diag_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/rap_diag_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_diag_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rap_diag_debug Checking test 099 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 292.319484 - 0: The maximum resident set size (KB) = 1259780 + 0: The total amount of wall time = 280.372876 + 0: The maximum resident set size (KB) = 1252540 Test 099 rap_diag_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/rap_cires_ugwp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_cires_ugwp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rap_cires_ugwp_debug Checking test 100 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 285.684599 - 0: The maximum resident set size (KB) = 1173080 + 0: The total amount of wall time = 284.398344 + 0: The maximum resident set size (KB) = 1170612 Test 100 rap_cires_ugwp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/rap_unified_ugwp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_cires_ugwp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rap_unified_ugwp_debug Checking test 101 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 289.887145 - 0: The maximum resident set size (KB) = 1173952 + 0: The total amount of wall time = 281.854797 + 0: The maximum resident set size (KB) = 1172612 Test 101 rap_unified_ugwp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_lndp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/rap_lndp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_lndp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rap_lndp_debug Checking test 102 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 278.164813 - 0: The maximum resident set size (KB) = 1180000 + 0: The total amount of wall time = 286.449935 + 0: The maximum resident set size (KB) = 1171376 Test 102 rap_lndp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_flake_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/rap_flake_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_flake_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rap_flake_debug Checking test 103 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 268.110474 - 0: The maximum resident set size (KB) = 1181056 + 0: The total amount of wall time = 284.375702 + 0: The maximum resident set size (KB) = 1168908 Test 103 rap_flake_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_progcld_thompson_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/rap_progcld_thompson_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_progcld_thompson_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rap_progcld_thompson_debug Checking test 104 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.925155 - 0: The maximum resident set size (KB) = 1177176 + 0: The total amount of wall time = 276.620865 + 0: The maximum resident set size (KB) = 1170908 Test 104 rap_progcld_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_noah_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/rap_noah_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_noah_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rap_noah_debug Checking test 105 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.597800 - 0: The maximum resident set size (KB) = 1175120 + 0: The total amount of wall time = 275.157400 + 0: The maximum resident set size (KB) = 1168396 Test 105 rap_noah_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_sfcdiff_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/rap_sfcdiff_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rap_sfcdiff_debug Checking test 106 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.971642 - 0: The maximum resident set size (KB) = 1172936 + 0: The total amount of wall time = 282.519247 + 0: The maximum resident set size (KB) = 1174836 Test 106 rap_sfcdiff_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rap_noah_sfcdiff_cires_ugwp_debug Checking test 107 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 454.416558 - 0: The maximum resident set size (KB) = 1178048 + 0: The total amount of wall time = 459.901576 + 0: The maximum resident set size (KB) = 1164904 Test 107 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_v1beta_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/rrfs_v1beta_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1beta_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rrfs_v1beta_debug Checking test 108 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 270.681522 - 0: The maximum resident set size (KB) = 1170540 + 0: The total amount of wall time = 278.187722 + 0: The maximum resident set size (KB) = 1160600 Test 108 rrfs_v1beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_wam_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_wam_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wam_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_wam_debug Checking test 109 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 285.779513 - 0: The maximum resident set size (KB) = 530836 + 0: The total amount of wall time = 293.271130 + 0: The maximum resident set size (KB) = 527316 Test 109 control_wam_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3767,14 +3767,14 @@ Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 251.378107 - 0: The maximum resident set size (KB) = 1023688 + 0: The total amount of wall time = 256.961402 + 0: The maximum resident set size (KB) = 1088720 Test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/rap_control_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rap_control_dyn32_phy32 Checking test 111 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3821,14 +3821,14 @@ Checking test 111 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 380.812331 - 0: The maximum resident set size (KB) = 945928 + 0: The total amount of wall time = 381.778640 + 0: The maximum resident set size (KB) = 1010444 Test 111 rap_control_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/hrrr_control_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hrrr_control_dyn32_phy32 Checking test 112 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3875,14 +3875,14 @@ Checking test 112 hrrr_control_dyn32_phy32 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 = 196.422102 - 0: The maximum resident set size (KB) = 956028 + 0: The total amount of wall time = 197.815621 + 0: The maximum resident set size (KB) = 952020 Test 112 hrrr_control_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/rap_2threads_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rap_2threads_dyn32_phy32 Checking test 113 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3929,14 +3929,14 @@ Checking test 113 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 399.684976 - 0: The maximum resident set size (KB) = 1028412 + 0: The total amount of wall time = 398.557347 + 0: The maximum resident set size (KB) = 1016196 Test 113 rap_2threads_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/hrrr_control_2threads_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hrrr_control_2threads_dyn32_phy32 Checking test 114 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3983,14 +3983,14 @@ Checking test 114 hrrr_control_2threads_dyn32_phy32 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 = 205.144022 - 0: The maximum resident set size (KB) = 999624 + 0: The total amount of wall time = 205.639857 + 0: The maximum resident set size (KB) = 1007188 Test 114 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/hrrr_control_decomp_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hrrr_control_decomp_dyn32_phy32 Checking test 115 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4037,14 +4037,14 @@ Checking test 115 hrrr_control_decomp_dyn32_phy32 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 = 207.534968 - 0: The maximum resident set size (KB) = 909572 + 0: The total amount of wall time = 211.533046 + 0: The maximum resident set size (KB) = 915468 Test 115 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/rap_restart_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rap_restart_dyn32_phy32 Checking test 116 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4083,14 +4083,14 @@ Checking test 116 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 281.718226 - 0: The maximum resident set size (KB) = 947168 + 0: The total amount of wall time = 283.062178 + 0: The maximum resident set size (KB) = 952872 Test 116 rap_restart_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/hrrr_control_restart_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hrrr_control_restart_dyn32_phy32 Checking test 117 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4129,14 +4129,14 @@ Checking test 117 hrrr_control_restart_dyn32_phy32 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 = 103.468305 - 0: The maximum resident set size (KB) = 868312 + 0: The total amount of wall time = 103.922028 + 0: The maximum resident set size (KB) = 868764 Test 117 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_dyn64_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/rap_control_dyn64_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn64_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rap_control_dyn64_phy32 Checking test 118 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4183,81 +4183,81 @@ Checking test 118 rap_control_dyn64_phy32 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 = 244.724130 - 0: The maximum resident set size (KB) = 969340 + 0: The total amount of wall time = 242.899477 + 0: The maximum resident set size (KB) = 974616 Test 118 rap_control_dyn64_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_debug_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/rap_control_debug_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rap_control_debug_dyn32_phy32 Checking test 119 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 272.973185 - 0: The maximum resident set size (KB) = 1055572 + 0: The total amount of wall time = 277.985592 + 0: The maximum resident set size (KB) = 1053704 Test 119 rap_control_debug_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/hrrr_control_debug_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hrrr_control_debug_dyn32_phy32 Checking test 120 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 270.788243 - 0: The maximum resident set size (KB) = 1054680 + 0: The total amount of wall time = 274.774497 + 0: The maximum resident set size (KB) = 1049636 Test 120 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_debug_dyn64_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/rap_control_dyn64_phy32_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug_dyn64_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rap_control_dyn64_phy32_debug Checking test 121 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.698987 - 0: The maximum resident set size (KB) = 1099084 + 0: The total amount of wall time = 281.066178 + 0: The maximum resident set size (KB) = 1098800 Test 121 rap_control_dyn64_phy32_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/hafs_regional_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hafs_regional_atm Checking test 122 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 263.703440 - 0: The maximum resident set size (KB) = 1058076 + 0: The total amount of wall time = 269.208026 + 0: The maximum resident set size (KB) = 1054420 Test 122 hafs_regional_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/hafs_regional_atm_thompson_gfdlsf +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hafs_regional_atm_thompson_gfdlsf Checking test 123 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 383.003979 - 0: The maximum resident set size (KB) = 1421836 + 0: The total amount of wall time = 424.929690 + 0: The maximum resident set size (KB) = 1423424 Test 123 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm_ocn -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/hafs_regional_atm_ocn +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_ocn +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hafs_regional_atm_ocn Checking test 124 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4266,14 +4266,14 @@ Checking test 124 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 380.597723 - 0: The maximum resident set size (KB) = 1226584 + 0: The total amount of wall time = 380.936575 + 0: The maximum resident set size (KB) = 1225844 Test 124 hafs_regional_atm_ocn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm_wav -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/hafs_regional_atm_wav +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_wav +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hafs_regional_atm_wav Checking test 125 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4282,14 +4282,14 @@ Checking test 125 hafs_regional_atm_wav 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 = 720.092396 - 0: The maximum resident set size (KB) = 1256404 + 0: The total amount of wall time = 728.128958 + 0: The maximum resident set size (KB) = 1263108 Test 125 hafs_regional_atm_wav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm_ocn_wav -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/hafs_regional_atm_ocn_wav +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_ocn_wav +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hafs_regional_atm_ocn_wav Checking test 126 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4300,28 +4300,28 @@ Checking test 126 hafs_regional_atm_ocn_wav 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 = 827.120205 - 0: The maximum resident set size (KB) = 1274144 + 0: The total amount of wall time = 828.246699 + 0: The maximum resident set size (KB) = 1221524 Test 126 hafs_regional_atm_ocn_wav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/hafs_regional_1nest_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hafs_regional_1nest_atm Checking test 127 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 361.301101 - 0: The maximum resident set size (KB) = 508512 + 0: The total amount of wall time = 364.001952 + 0: The maximum resident set size (KB) = 512676 Test 127 hafs_regional_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/hafs_regional_telescopic_2nests_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hafs_regional_telescopic_2nests_atm Checking test 128 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4330,28 +4330,28 @@ Checking test 128 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 411.412625 - 0: The maximum resident set size (KB) = 469796 + 0: The total amount of wall time = 411.548035 + 0: The maximum resident set size (KB) = 518820 Test 128 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_global_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/hafs_global_1nest_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hafs_global_1nest_atm Checking test 129 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 172.337199 - 0: The maximum resident set size (KB) = 349212 + 0: The total amount of wall time = 174.557804 + 0: The maximum resident set size (KB) = 351360 Test 129 hafs_global_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_global_multiple_4nests_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/hafs_global_multiple_4nests_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_multiple_4nests_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hafs_global_multiple_4nests_atm Checking test 130 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4369,14 +4369,14 @@ Checking test 130 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 458.323112 - 0: The maximum resident set size (KB) = 428328 + 0: The total amount of wall time = 457.650168 + 0: The maximum resident set size (KB) = 425612 Test 130 hafs_global_multiple_4nests_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/hafs_regional_specified_moving_1nest_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hafs_regional_specified_moving_1nest_atm Checking test 131 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4385,28 +4385,28 @@ Checking test 131 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 231.485263 - 0: The maximum resident set size (KB) = 520420 + 0: The total amount of wall time = 230.822361 + 0: The maximum resident set size (KB) = 519624 Test 131 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/hafs_regional_storm_following_1nest_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hafs_regional_storm_following_1nest_atm Checking test 132 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 218.264552 - 0: The maximum resident set size (KB) = 523596 + 0: The total amount of wall time = 217.707845 + 0: The maximum resident set size (KB) = 528096 Test 132 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hafs_regional_storm_following_1nest_atm_ocn Checking test 133 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4415,42 +4415,42 @@ Checking test 133 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 293.692967 - 0: The maximum resident set size (KB) = 563648 + 0: The total amount of wall time = 287.628445 + 0: The maximum resident set size (KB) = 568768 Test 133 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_global_storm_following_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/hafs_global_storm_following_1nest_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_storm_following_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hafs_global_storm_following_1nest_atm Checking test 134 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 71.165808 - 0: The maximum resident set size (KB) = 371620 + 0: The total amount of wall time = 73.999132 + 0: The maximum resident set size (KB) = 377372 Test 134 hafs_global_storm_following_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 753.054826 - 0: The maximum resident set size (KB) = 589548 + 0: The total amount of wall time = 750.193223 + 0: The maximum resident set size (KB) = 588324 Test 135 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 136 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4461,14 +4461,14 @@ Checking test 136 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 547.069037 - 0: The maximum resident set size (KB) = 571272 + 0: The total amount of wall time = 535.686951 + 0: The maximum resident set size (KB) = 627424 Test 136 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_docn -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/hafs_regional_docn +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_docn +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hafs_regional_docn Checking test 137 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4476,14 +4476,14 @@ Checking test 137 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 361.858626 - 0: The maximum resident set size (KB) = 1238864 + 0: The total amount of wall time = 358.808746 + 0: The maximum resident set size (KB) = 1238872 Test 137 hafs_regional_docn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_docn_oisst -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/hafs_regional_docn_oisst +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_docn_oisst +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hafs_regional_docn_oisst Checking test 138 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4491,131 +4491,131 @@ Checking test 138 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 364.581337 - 0: The maximum resident set size (KB) = 1220604 + 0: The total amount of wall time = 363.292017 + 0: The maximum resident set size (KB) = 1231256 Test 138 hafs_regional_docn_oisst PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_datm_cdeps -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/hafs_regional_datm_cdeps +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_datm_cdeps +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hafs_regional_datm_cdeps Checking test 139 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 923.593239 - 0: The maximum resident set size (KB) = 1040460 + 0: The total amount of wall time = 933.942370 + 0: The maximum resident set size (KB) = 1045564 Test 139 hafs_regional_datm_cdeps PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/datm_cdeps_control_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/datm_cdeps_control_cfsr Checking test 140 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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.405414 - 0: The maximum resident set size (KB) = 1050204 + 0: The total amount of wall time = 147.574864 + 0: The maximum resident set size (KB) = 1071160 Test 140 datm_cdeps_control_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/datm_cdeps_restart_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/datm_cdeps_restart_cfsr Checking test 141 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 90.622583 - 0: The maximum resident set size (KB) = 1009616 + 0: The total amount of wall time = 96.343399 + 0: The maximum resident set size (KB) = 1030596 Test 141 datm_cdeps_restart_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_control_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/datm_cdeps_control_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/datm_cdeps_control_gefs Checking test 142 datm_cdeps_control_gefs 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 = 139.968104 - 0: The maximum resident set size (KB) = 964356 + 0: The total amount of wall time = 144.834209 + 0: The maximum resident set size (KB) = 975504 Test 142 datm_cdeps_control_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_iau_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/datm_cdeps_iau_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_iau_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/datm_cdeps_iau_gefs Checking test 143 datm_cdeps_iau_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.072671 - 0: The maximum resident set size (KB) = 976096 + 0: The total amount of wall time = 148.329485 + 0: The maximum resident set size (KB) = 971464 Test 143 datm_cdeps_iau_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_stochy_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/datm_cdeps_stochy_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_stochy_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/datm_cdeps_stochy_gefs Checking test 144 datm_cdeps_stochy_gefs 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.216044 - 0: The maximum resident set size (KB) = 977088 + 0: The total amount of wall time = 145.521171 + 0: The maximum resident set size (KB) = 966768 Test 144 datm_cdeps_stochy_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_ciceC_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/datm_cdeps_ciceC_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_ciceC_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/datm_cdeps_ciceC_cfsr Checking test 145 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.722938 - 0: The maximum resident set size (KB) = 1064292 + 0: The total amount of wall time = 146.970375 + 0: The maximum resident set size (KB) = 1066316 Test 145 datm_cdeps_ciceC_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_bulk_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/datm_cdeps_bulk_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_bulk_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/datm_cdeps_bulk_cfsr Checking test 146 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.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.122276 - 0: The maximum resident set size (KB) = 1069396 + 0: The total amount of wall time = 145.861325 + 0: The maximum resident set size (KB) = 1049184 Test 146 datm_cdeps_bulk_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_bulk_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/datm_cdeps_bulk_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_bulk_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/datm_cdeps_bulk_gefs Checking test 147 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 141.722251 - 0: The maximum resident set size (KB) = 950484 + 0: The total amount of wall time = 143.974206 + 0: The maximum resident set size (KB) = 974220 Test 147 datm_cdeps_bulk_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_mx025_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/datm_cdeps_mx025_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_mx025_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/datm_cdeps_mx025_cfsr Checking test 148 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4624,14 +4624,14 @@ Checking test 148 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 441.197443 - 0: The maximum resident set size (KB) = 879092 + 0: The total amount of wall time = 439.795129 + 0: The maximum resident set size (KB) = 874752 Test 148 datm_cdeps_mx025_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_mx025_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/datm_cdeps_mx025_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_mx025_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/datm_cdeps_mx025_gefs Checking test 149 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4640,77 +4640,77 @@ Checking test 149 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 436.153364 - 0: The maximum resident set size (KB) = 934888 + 0: The total amount of wall time = 441.614795 + 0: The maximum resident set size (KB) = 925356 Test 149 datm_cdeps_mx025_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/datm_cdeps_multiple_files_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/datm_cdeps_multiple_files_cfsr Checking test 150 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 151.169807 - 0: The maximum resident set size (KB) = 1058852 + 0: The total amount of wall time = 148.891571 + 0: The maximum resident set size (KB) = 1068424 Test 150 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/datm_cdeps_3072x1536_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/datm_cdeps_3072x1536_cfsr Checking test 151 datm_cdeps_3072x1536_cfsr 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 = 198.275763 - 0: The maximum resident set size (KB) = 2366572 + 0: The total amount of wall time = 198.703107 + 0: The maximum resident set size (KB) = 2298328 Test 151 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_gfs -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/datm_cdeps_gfs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_gfs +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/datm_cdeps_gfs Checking test 152 datm_cdeps_gfs 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 = 204.471470 - 0: The maximum resident set size (KB) = 2337732 + 0: The total amount of wall time = 200.212437 + 0: The maximum resident set size (KB) = 2358704 Test 152 datm_cdeps_gfs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_debug_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/datm_cdeps_debug_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_debug_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/datm_cdeps_debug_cfsr Checking test 153 datm_cdeps_debug_cfsr results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 356.859854 - 0: The maximum resident set size (KB) = 1010136 + 0: The total amount of wall time = 371.137382 + 0: The maximum resident set size (KB) = 985920 Test 153 datm_cdeps_debug_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_control_cfsr_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/datm_cdeps_control_cfsr_faster +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/datm_cdeps_control_cfsr_faster Checking test 154 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.319895 - 0: The maximum resident set size (KB) = 1061140 + 0: The total amount of wall time = 145.602484 + 0: The maximum resident set size (KB) = 1065188 Test 154 datm_cdeps_control_cfsr_faster PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_lnd_gswp3 -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/datm_cdeps_lnd_gswp3 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_lnd_gswp3 +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/datm_cdeps_lnd_gswp3 Checking test 155 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4719,14 +4719,14 @@ Checking test 155 datm_cdeps_lnd_gswp3 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.497569 - 0: The maximum resident set size (KB) = 257956 + 0: The total amount of wall time = 12.968962 + 0: The maximum resident set size (KB) = 266144 Test 155 datm_cdeps_lnd_gswp3 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/datm_cdeps_lnd_gswp3 -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/datm_cdeps_lnd_gswp3_rst +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_lnd_gswp3 +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/datm_cdeps_lnd_gswp3_rst Checking test 156 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4735,14 +4735,14 @@ Checking test 156 datm_cdeps_lnd_gswp3_rst 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.948348 - 0: The maximum resident set size (KB) = 263496 + 0: The total amount of wall time = 15.146591 + 0: The maximum resident set size (KB) = 264424 Test 156 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8_atmlnd_sbs -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_p8_atmlnd_sbs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_atmlnd_sbs +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_p8_atmlnd_sbs Checking test 157 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4827,14 +4827,14 @@ Checking test 157 control_p8_atmlnd_sbs 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.300736 - 0: The maximum resident set size (KB) = 1614288 + 0: The total amount of wall time = 204.616404 + 0: The maximum resident set size (KB) = 1611340 Test 157 control_p8_atmlnd_sbs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/atmwav_control_noaero_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/atmwav_control_noaero_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/atmwav_control_noaero_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/atmwav_control_noaero_p8 Checking test 158 atmwav_control_noaero_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4877,14 +4877,14 @@ Checking test 158 atmwav_control_noaero_p8 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.613483 - 0: The maximum resident set size (KB) = 1643576 + 0: The total amount of wall time = 94.470959 + 0: The maximum resident set size (KB) = 1634308 Test 158 atmwav_control_noaero_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/control_atmwav -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/control_atmwav +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_atmwav +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_atmwav Checking test 159 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4928,14 +4928,14 @@ Checking test 159 control_atmwav 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.502318 - 0: The maximum resident set size (KB) = 658696 + 0: The total amount of wall time = 88.373016 + 0: The maximum resident set size (KB) = 656400 Test 159 control_atmwav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/atmaero_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/atmaero_control_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/atmaero_control_p8 Checking test 160 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4979,14 +4979,14 @@ Checking test 160 atmaero_control_p8 results .... Comparing 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.869278 - 0: The maximum resident set size (KB) = 2977032 + 0: The total amount of wall time = 227.266540 + 0: The maximum resident set size (KB) = 2981296 Test 160 atmaero_control_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/atmaero_control_p8_rad -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/atmaero_control_p8_rad +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8_rad +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/atmaero_control_p8_rad Checking test 161 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5030,14 +5030,14 @@ Checking test 161 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 281.366368 - 0: The maximum resident set size (KB) = 3050536 + 0: The total amount of wall time = 281.360653 + 0: The maximum resident set size (KB) = 3050424 Test 161 atmaero_control_p8_rad PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/atmaero_control_p8_rad_micro -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/atmaero_control_p8_rad_micro +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8_rad_micro +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/atmaero_control_p8_rad_micro Checking test 162 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5081,14 +5081,14 @@ Checking test 162 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 287.756486 - 0: The maximum resident set size (KB) = 2986740 + 0: The total amount of wall time = 287.755306 + 0: The maximum resident set size (KB) = 3058640 Test 162 atmaero_control_p8_rad_micro PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_atmaq -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/regional_atmaq +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/regional_atmaq Checking test 163 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5104,14 +5104,14 @@ Checking test 163 regional_atmaq 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.378284 - 0: The maximum resident set size (KB) = 1476840 + 0: The total amount of wall time = 639.433564 + 0: The maximum resident set size (KB) = 1482668 Test 163 regional_atmaq PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_atmaq_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/regional_atmaq_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/regional_atmaq_debug Checking test 164 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5125,14 +5125,14 @@ Checking test 164 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1219.136083 - 0: The maximum resident set size (KB) = 1402028 + 0: The total amount of wall time = 1228.737485 + 0: The maximum resident set size (KB) = 1404368 Test 164 regional_atmaq_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_atmaq_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1669/stmp/jongkim/FV3_RT/rt_231613/regional_atmaq_faster +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/regional_atmaq_faster Checking test 165 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5148,12 +5148,12 @@ Checking test 165 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 549.968594 - 0: The maximum resident set size (KB) = 1483356 + 0: The total amount of wall time = 559.522945 + 0: The maximum resident set size (KB) = 1476844 Test 165 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Sun Apr 16 09:48:37 CDT 2023 -Elapsed time: 01h:16m:50s. Have a nice day! +Tue Apr 18 22:32:15 CDT 2023 +Elapsed time: 01h:15m:00s. Have a nice day! diff --git a/tests/RegressionTests_wcoss2.intel.log b/tests/RegressionTests_wcoss2.intel.log index bc0173e8e68..6c824e6ac1d 100644 --- a/tests/RegressionTests_wcoss2.intel.log +++ b/tests/RegressionTests_wcoss2.intel.log @@ -1,34 +1,34 @@ -Mon Apr 17 11:27:20 UTC 2023 +Wed Apr 19 16:26:02 UTC 2023 Start Regression test -Compile 001 elapsed time 586 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 589 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 535 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 1017 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 005 elapsed time 494 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 1395 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 1274 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 008 elapsed time 1527 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 009 elapsed time 466 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 1086 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 568 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 268 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 013 elapsed time 628 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 670 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 015 elapsed time 979 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 599 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 017 elapsed time 459 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 846 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 019 elapsed time 866 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 654 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 840 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 022 elapsed time 628 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 853 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 024 elapsed time 551 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 025 elapsed time 772 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8_mixedmode -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/cpld_control_p8_mixedmode +Compile 001 elapsed time 1780 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1135 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 564 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 505 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 005 elapsed time 982 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 661 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 523 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 1314 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 009 elapsed time 463 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 1088 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 1093 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 508 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 153 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 014 elapsed time 922 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 776 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 395 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 017 elapsed time 219 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 1283 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 019 elapsed time 728 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 835 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 623 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 022 elapsed time 635 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 780 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 024 elapsed time 404 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 025 elapsed time 782 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8_mixedmode +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -93,14 +93,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 343.192582 -The maximum resident set size (KB) = 2954624 +The total amount of wall time = 339.539973 +The maximum resident set size (KB) = 2955000 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/cpld_control_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/cpld_control_p8 Checking test 002 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -165,14 +165,14 @@ Checking test 002 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 387.757702 -The maximum resident set size (KB) = 2983728 +The total amount of wall time = 387.269502 +The maximum resident set size (KB) = 2980728 Test 002 cpld_control_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/cpld_restart_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/cpld_restart_p8 Checking test 003 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -225,14 +225,14 @@ Checking test 003 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 232.856462 -The maximum resident set size (KB) = 2867608 +The total amount of wall time = 235.074639 +The maximum resident set size (KB) = 2871988 Test 003 cpld_restart_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/cpld_control_qr_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/cpld_control_qr_p8 Checking test 004 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -297,14 +297,14 @@ Checking test 004 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 391.087089 -The maximum resident set size (KB) = 3004400 +The total amount of wall time = 388.732844 +The maximum resident set size (KB) = 2994496 Test 004 cpld_control_qr_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/cpld_restart_qr_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/cpld_restart_qr_p8 Checking test 005 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -357,14 +357,14 @@ Checking test 005 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 237.274740 -The maximum resident set size (KB) = 2882348 +The total amount of wall time = 238.592150 +The maximum resident set size (KB) = 2881368 Test 005 cpld_restart_qr_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/cpld_2threads_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/cpld_2threads_p8 Checking test 006 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -417,14 +417,14 @@ Checking test 006 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 375.721952 -The maximum resident set size (KB) = 3287476 +The total amount of wall time = 378.232489 +The maximum resident set size (KB) = 3292164 Test 006 cpld_2threads_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/cpld_decomp_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/cpld_decomp_p8 Checking test 007 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -477,14 +477,14 @@ Checking test 007 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 386.495609 -The maximum resident set size (KB) = 2987540 +The total amount of wall time = 394.332320 +The maximum resident set size (KB) = 2982676 Test 007 cpld_decomp_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/cpld_mpi_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/cpld_mpi_p8 Checking test 008 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -537,14 +537,14 @@ Checking test 008 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 323.190535 -The maximum resident set size (KB) = 2919100 +The total amount of wall time = 330.800854 +The maximum resident set size (KB) = 2915468 Test 008 cpld_mpi_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_ciceC_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/cpld_control_ciceC_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_ciceC_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/cpld_control_ciceC_p8 Checking test 009 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -609,14 +609,14 @@ Checking test 009 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 388.732699 -The maximum resident set size (KB) = 2983424 +The total amount of wall time = 396.833674 +The maximum resident set size (KB) = 2985684 Test 009 cpld_control_ciceC_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_bmark_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/cpld_bmark_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_bmark_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/cpld_bmark_p8 Checking test 010 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -664,14 +664,14 @@ Checking test 010 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 939.639314 -The maximum resident set size (KB) = 3916744 +The total amount of wall time = 944.206164 +The maximum resident set size (KB) = 3925572 Test 010 cpld_bmark_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_bmark_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/cpld_restart_bmark_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_bmark_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/cpld_restart_bmark_p8 Checking test 011 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -719,14 +719,14 @@ Checking test 011 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 673.037764 -The maximum resident set size (KB) = 3892252 +The total amount of wall time = 660.994724 +The maximum resident set size (KB) = 3894920 Test 011 cpld_restart_bmark_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/cpld_control_noaero_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/cpld_control_noaero_p8 Checking test 012 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -790,14 +790,14 @@ Checking test 012 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 280.635387 -The maximum resident set size (KB) = 1582772 +The total amount of wall time = 287.135737 +The maximum resident set size (KB) = 1579604 Test 012 cpld_control_noaero_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/cpld_control_nowave_noaero_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c96_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/cpld_control_nowave_noaero_p8 Checking test 013 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -859,14 +859,14 @@ Checking test 013 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 298.872754 -The maximum resident set size (KB) = 1634984 +The total amount of wall time = 304.275251 +The maximum resident set size (KB) = 1630300 Test 013 cpld_control_nowave_noaero_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/cpld_control_noaero_p8_agrid +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_noaero_p8_agrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/cpld_control_noaero_p8_agrid Checking test 014 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -928,14 +928,14 @@ Checking test 014 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 310.011738 -The maximum resident set size (KB) = 1627436 +The total amount of wall time = 310.211095 +The maximum resident set size (KB) = 1628364 Test 014 cpld_control_noaero_p8_agrid PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/cpld_control_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/cpld_control_c48 Checking test 015 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -985,14 +985,14 @@ Checking test 015 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 435.122276 -The maximum resident set size (KB) = 2639544 +The total amount of wall time = 439.120708 +The maximum resident set size (KB) = 2637696 Test 015 cpld_control_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/cpld_warmstart_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/cpld_warmstart_c48 Checking test 016 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1042,14 +1042,14 @@ Checking test 016 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 122.839800 -The maximum resident set size (KB) = 2655720 +The total amount of wall time = 127.539269 +The maximum resident set size (KB) = 2653664 Test 016 cpld_warmstart_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/cpld_restart_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/cpld_restart_c48 Checking test 017 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1099,14 +1099,14 @@ Checking test 017 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 68.031903 -The maximum resident set size (KB) = 2070112 +The total amount of wall time = 71.318176 +The maximum resident set size (KB) = 2075196 Test 017 cpld_restart_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/cpld_control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/cpld_control_p8_faster +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/cpld_control_p8_faster Checking test 018 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1171,14 +1171,14 @@ Checking test 018 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 380.150639 -The maximum resident set size (KB) = 2981224 +The total amount of wall time = 383.690637 +The maximum resident set size (KB) = 2980364 Test 018 cpld_control_p8_faster PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_CubedSphereGrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/control_CubedSphereGrid +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_CubedSphereGrid Checking test 019 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1205,14 +1205,14 @@ Checking test 019 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 133.139191 -The maximum resident set size (KB) = 518480 +The total amount of wall time = 130.425935 +The maximum resident set size (KB) = 515084 Test 019 control_CubedSphereGrid PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_latlon -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/control_latlon +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_latlon +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_latlon Checking test 020 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1223,14 +1223,14 @@ Checking test 020 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 140.703711 -The maximum resident set size (KB) = 517740 +The total amount of wall time = 133.973868 +The maximum resident set size (KB) = 516248 Test 020 control_latlon PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/control_wrtGauss_netcdf_parallel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_wrtGauss_netcdf_parallel Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1241,14 +1241,14 @@ Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 141.522992 -The maximum resident set size (KB) = 513688 +The total amount of wall time = 137.440925 +The maximum resident set size (KB) = 513856 Test 021 control_wrtGauss_netcdf_parallel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/control_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_c48 Checking test 022 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1287,14 +1287,14 @@ Checking test 022 control_c48 results .... 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.580773 -The maximum resident set size (KB) = 674568 +The total amount of wall time = 328.751432 +The maximum resident set size (KB) = 678048 Test 022 control_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_c192 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/control_c192 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c192 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_c192 Checking test 023 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1305,14 +1305,14 @@ Checking test 023 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 542.667158 -The maximum resident set size (KB) = 620620 +The total amount of wall time = 531.982427 +The maximum resident set size (KB) = 616212 Test 023 control_c192 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_c384 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/control_c384 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c384 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_c384 Checking test 024 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1323,14 +1323,14 @@ Checking test 024 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 575.773876 -The maximum resident set size (KB) = 931396 +The total amount of wall time = 569.539223 +The maximum resident set size (KB) = 926136 Test 024 control_c384 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_c384gdas -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/control_c384gdas +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c384gdas +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_c384gdas Checking test 025 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1373,14 +1373,14 @@ Checking test 025 control_c384gdas 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 = 501.632122 -The maximum resident set size (KB) = 1058928 +The total amount of wall time = 499.469828 +The maximum resident set size (KB) = 1057676 Test 025 control_c384gdas PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/control_stochy +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_stochy Checking test 026 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1391,28 +1391,28 @@ Checking test 026 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 94.697382 -The maximum resident set size (KB) = 522076 +The total amount of wall time = 91.363287 +The maximum resident set size (KB) = 520244 Test 026 control_stochy PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/control_stochy_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_stochy_restart Checking test 027 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 49.293766 -The maximum resident set size (KB) = 292192 +The total amount of wall time = 49.762390 +The maximum resident set size (KB) = 291376 Test 027 control_stochy_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/control_lndp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_lndp Checking test 028 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1423,14 +1423,14 @@ Checking test 028 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 88.847566 -The maximum resident set size (KB) = 518904 +The total amount of wall time = 84.014364 +The maximum resident set size (KB) = 518540 Test 028 control_lndp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_iovr4 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/control_iovr4 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_iovr4 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_iovr4 Checking test 029 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1445,14 +1445,14 @@ Checking test 029 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 141.563104 -The maximum resident set size (KB) = 518400 +The total amount of wall time = 136.928546 +The maximum resident set size (KB) = 516116 Test 029 control_iovr4 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_iovr5 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/control_iovr5 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_iovr5 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_iovr5 Checking test 030 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1467,14 +1467,14 @@ Checking test 030 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 137.121920 -The maximum resident set size (KB) = 520744 +The total amount of wall time = 138.282185 +The maximum resident set size (KB) = 517012 Test 030 control_iovr5 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/control_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_p8 Checking test 031 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1521,14 +1521,14 @@ Checking test 031 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 182.532475 -The maximum resident set size (KB) = 1487080 +The total amount of wall time = 183.036450 +The maximum resident set size (KB) = 1491880 Test 031 control_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/control_restart_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_restart_p8 Checking test 032 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1567,14 +1567,14 @@ Checking test 032 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 105.389845 -The maximum resident set size (KB) = 658496 +The total amount of wall time = 103.282808 +The maximum resident set size (KB) = 658612 Test 032 control_restart_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/control_qr_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_qr_p8 Checking test 033 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1621,14 +1621,14 @@ Checking test 033 control_qr_p8 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 = 181.183209 -The maximum resident set size (KB) = 1491644 +The total amount of wall time = 179.959380 +The maximum resident set size (KB) = 1501064 Test 033 control_qr_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/control_restart_qr_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_restart_qr_p8 Checking test 034 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1667,14 +1667,14 @@ Checking test 034 control_restart_qr_p8 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 = 110.605341 -The maximum resident set size (KB) = 670248 +The total amount of wall time = 104.123205 +The maximum resident set size (KB) = 668208 Test 034 control_restart_qr_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/control_decomp_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_decomp_p8 Checking test 035 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1717,14 +1717,14 @@ Checking test 035 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 186.295949 -The maximum resident set size (KB) = 1480080 +The total amount of wall time = 185.844252 +The maximum resident set size (KB) = 1476740 Test 035 control_decomp_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/control_2threads_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_2threads_p8 Checking test 036 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1767,14 +1767,14 @@ Checking test 036 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 159.332600 -The maximum resident set size (KB) = 1570172 +The total amount of wall time = 158.549586 +The maximum resident set size (KB) = 1577292 Test 036 control_2threads_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/control_p8_lndp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_p8_lndp Checking test 037 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1793,14 +1793,14 @@ Checking test 037 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 324.694507 -The maximum resident set size (KB) = 1492480 +The total amount of wall time = 325.780218 +The maximum resident set size (KB) = 1489044 Test 037 control_p8_lndp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8_rrtmgp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/control_p8_rrtmgp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_rrtmgp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_p8_rrtmgp Checking test 038 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1847,14 +1847,14 @@ Checking test 038 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 238.878419 -The maximum resident set size (KB) = 1545848 +The total amount of wall time = 236.977197 +The maximum resident set size (KB) = 1552276 Test 038 control_p8_rrtmgp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8_mynn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/control_p8_mynn +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_mynn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_p8_mynn Checking test 039 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1901,14 +1901,14 @@ Checking test 039 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 183.481944 -The maximum resident set size (KB) = 1493980 +The total amount of wall time = 184.907407 +The maximum resident set size (KB) = 1497112 Test 039 control_p8_mynn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/merra2_thompson -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/merra2_thompson +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/merra2_thompson +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/merra2_thompson Checking test 040 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1955,14 +1955,14 @@ Checking test 040 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 206.776531 -The maximum resident set size (KB) = 1500312 +The total amount of wall time = 207.239155 +The maximum resident set size (KB) = 1498148 Test 040 merra2_thompson PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/regional_control +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/regional_control Checking test 041 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1973,28 +1973,28 @@ Checking test 041 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 291.866044 -The maximum resident set size (KB) = 658368 +The total amount of wall time = 295.913394 +The maximum resident set size (KB) = 658056 Test 041 regional_control PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/regional_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/regional_restart Checking test 042 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 200.614776 -The maximum resident set size (KB) = 654204 +The total amount of wall time = 163.446951 +The maximum resident set size (KB) = 652060 Test 042 regional_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/regional_control_qr +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/regional_control_qr Checking test 043 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2005,28 +2005,28 @@ Checking test 043 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 292.518709 -The maximum resident set size (KB) = 654156 +The total amount of wall time = 294.495697 +The maximum resident set size (KB) = 653172 Test 043 regional_control_qr PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/regional_restart_qr +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/regional_restart_qr Checking test 044 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 194.615542 -The maximum resident set size (KB) = 654604 +The total amount of wall time = 160.569722 +The maximum resident set size (KB) = 653444 Test 044 regional_restart_qr PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/regional_decomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/regional_decomp Checking test 045 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2037,14 +2037,14 @@ Checking test 045 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 305.135814 -The maximum resident set size (KB) = 655072 +The total amount of wall time = 310.740058 +The maximum resident set size (KB) = 658896 Test 045 regional_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/regional_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/regional_2threads Checking test 046 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2055,14 +2055,14 @@ Checking test 046 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 177.298519 -The maximum resident set size (KB) = 699948 +The total amount of wall time = 180.500578 +The maximum resident set size (KB) = 696616 Test 046 regional_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_noquilt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/regional_noquilt +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_noquilt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/regional_noquilt Checking test 047 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2070,28 +2070,28 @@ Checking test 047 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 315.292576 -The maximum resident set size (KB) = 651544 +The total amount of wall time = 315.305789 +The maximum resident set size (KB) = 647532 Test 047 regional_noquilt PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/regional_netcdf_parallel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/regional_netcdf_parallel Checking test 048 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK -The total amount of wall time = 293.403765 -The maximum resident set size (KB) = 651352 +The total amount of wall time = 291.639575 +The maximum resident set size (KB) = 654944 Test 048 regional_netcdf_parallel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/regional_2dwrtdecomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/regional_2dwrtdecomp Checking test 049 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2102,14 +2102,14 @@ Checking test 049 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 291.860041 -The maximum resident set size (KB) = 654020 +The total amount of wall time = 292.805409 +The maximum resident set size (KB) = 658356 Test 049 regional_2dwrtdecomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/fv3_regional_wofs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/regional_wofs +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/fv3_regional_wofs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/regional_wofs Checking test 050 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2120,14 +2120,14 @@ Checking test 050 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 365.525731 -The maximum resident set size (KB) = 340104 +The total amount of wall time = 383.723252 +The maximum resident set size (KB) = 340308 Test 050 regional_wofs PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/rap_control +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rap_control Checking test 051 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2174,14 +2174,14 @@ Checking test 051 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 458.293565 -The maximum resident set size (KB) = 899260 +The total amount of wall time = 422.393621 +The maximum resident set size (KB) = 893596 Test 051 rap_control PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/regional_spp_sppt_shum_skeb +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_spp_sppt_shum_skeb +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/regional_spp_sppt_shum_skeb Checking test 052 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2192,14 +2192,14 @@ Checking test 052 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 252.728022 -The maximum resident set size (KB) = 989652 +The total amount of wall time = 248.307023 +The maximum resident set size (KB) = 990696 Test 052 regional_spp_sppt_shum_skeb PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/rap_decomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rap_decomp Checking test 053 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2246,14 +2246,14 @@ Checking test 053 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 480.579993 -The maximum resident set size (KB) = 897244 +The total amount of wall time = 436.158598 +The maximum resident set size (KB) = 894000 Test 053 rap_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/rap_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rap_2threads Checking test 054 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2300,14 +2300,14 @@ Checking test 054 rap_2threads results .... 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.442944 -The maximum resident set size (KB) = 973512 +The total amount of wall time = 390.867446 +The maximum resident set size (KB) = 964400 Test 054 rap_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/rap_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rap_restart Checking test 055 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2346,14 +2346,14 @@ Checking test 055 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 215.545112 -The maximum resident set size (KB) = 649992 +The total amount of wall time = 214.356255 +The maximum resident set size (KB) = 649708 Test 055 rap_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/rap_sfcdiff +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rap_sfcdiff Checking test 056 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2400,14 +2400,14 @@ Checking test 056 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 459.257645 -The maximum resident set size (KB) = 893648 +The total amount of wall time = 424.411036 +The maximum resident set size (KB) = 896076 Test 056 rap_sfcdiff PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/rap_sfcdiff_decomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rap_sfcdiff_decomp Checking test 057 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2454,14 +2454,14 @@ Checking test 057 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 462.314501 -The maximum resident set size (KB) = 897944 +The total amount of wall time = 440.473573 +The maximum resident set size (KB) = 896912 Test 057 rap_sfcdiff_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/rap_sfcdiff_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rap_sfcdiff_restart Checking test 058 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2500,14 +2500,14 @@ Checking test 058 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 311.185559 -The maximum resident set size (KB) = 646636 +The total amount of wall time = 312.574639 +The maximum resident set size (KB) = 647448 Test 058 rap_sfcdiff_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/hrrr_control +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/hrrr_control Checking test 059 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2554,14 +2554,14 @@ Checking test 059 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 420.216143 -The maximum resident set size (KB) = 897788 +The total amount of wall time = 407.800005 +The maximum resident set size (KB) = 894940 Test 059 hrrr_control PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/hrrr_control_decomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/hrrr_control_decomp Checking test 060 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2608,14 +2608,14 @@ Checking test 060 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 460.893213 -The maximum resident set size (KB) = 897104 +The total amount of wall time = 423.007042 +The maximum resident set size (KB) = 891152 Test 060 hrrr_control_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/hrrr_control_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/hrrr_control_2threads Checking test 061 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2662,14 +2662,14 @@ Checking test 061 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 412.036422 -The maximum resident set size (KB) = 966128 +The total amount of wall time = 375.839274 +The maximum resident set size (KB) = 959256 Test 061 hrrr_control_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/hrrr_control_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/hrrr_control_restart Checking test 062 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2708,14 +2708,14 @@ Checking test 062 hrrr_control_restart results .... 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.724003 -The maximum resident set size (KB) = 643264 +The total amount of wall time = 301.159398 +The maximum resident set size (KB) = 643172 Test 062 hrrr_control_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_v1beta -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/rrfs_v1beta +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1beta +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rrfs_v1beta Checking test 063 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2762,14 +2762,14 @@ Checking test 063 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 449.702135 -The maximum resident set size (KB) = 892512 +The total amount of wall time = 422.591907 +The maximum resident set size (KB) = 888036 Test 063 rrfs_v1beta PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_v1nssl -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/rrfs_v1nssl +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1nssl +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rrfs_v1nssl Checking test 064 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2784,14 +2784,14 @@ Checking test 064 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 500.352816 -The maximum resident set size (KB) = 578592 +The total amount of wall time = 483.280264 +The maximum resident set size (KB) = 579508 Test 064 rrfs_v1nssl PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/rrfs_v1nssl_nohailnoccn +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rrfs_v1nssl_nohailnoccn Checking test 065 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2806,14 +2806,14 @@ Checking test 065 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 488.107858 -The maximum resident set size (KB) = 573484 +The total amount of wall time = 474.926020 +The maximum resident set size (KB) = 574072 Test 065 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rrfs_smoke_conus13km_hrrr_warm Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2822,14 +2822,14 @@ Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 179.359406 -The maximum resident set size (KB) = 804016 +The total amount of wall time = 153.821641 +The maximum resident set size (KB) = 803820 Test 066 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 067 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2838,14 +2838,14 @@ Checking test 067 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 148.023328 -The maximum resident set size (KB) = 808080 +The total amount of wall time = 112.144168 +The maximum resident set size (KB) = 807436 Test 067 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/rrfs_conus13km_hrrr_warm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rrfs_conus13km_hrrr_warm Checking test 068 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2854,14 +2854,14 @@ Checking test 068 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 151.287438 -The maximum resident set size (KB) = 782272 +The total amount of wall time = 142.349806 +The maximum resident set size (KB) = 782980 Test 068 rrfs_conus13km_hrrr_warm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rrfs_smoke_conus13km_radar_tten_warm Checking test 069 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2870,26 +2870,26 @@ Checking test 069 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 159.586886 -The maximum resident set size (KB) = 806840 +The total amount of wall time = 158.110560 +The maximum resident set size (KB) = 804632 Test 069 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 070 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 69.909630 -The maximum resident set size (KB) = 769808 +The total amount of wall time = 70.755517 +The maximum resident set size (KB) = 764760 Test 070 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_csawmg -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/control_csawmg +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmg +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_csawmg Checking test 071 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2900,14 +2900,14 @@ Checking test 071 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 348.810462 -The maximum resident set size (KB) = 583880 +The total amount of wall time = 348.717187 +The maximum resident set size (KB) = 585676 Test 071 control_csawmg PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_csawmgt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/control_csawmgt +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmgt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_csawmgt Checking test 072 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2918,14 +2918,14 @@ Checking test 072 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 343.922402 -The maximum resident set size (KB) = 585192 +The total amount of wall time = 343.083543 +The maximum resident set size (KB) = 583180 Test 072 control_csawmgt PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_ras -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/control_ras +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_ras +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_ras Checking test 073 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2936,26 +2936,26 @@ Checking test 073 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 182.178098 -The maximum resident set size (KB) = 556404 +The total amount of wall time = 183.355463 +The maximum resident set size (KB) = 553028 Test 073 control_ras PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_wam -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/control_wam +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wam +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_wam Checking test 074 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 117.947339 -The maximum resident set size (KB) = 275204 +The total amount of wall time = 118.721650 +The maximum resident set size (KB) = 276372 Test 074 control_wam PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/control_p8_faster +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_p8_faster Checking test 075 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3002,14 +3002,14 @@ Checking test 075 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 182.769457 -The maximum resident set size (KB) = 1490132 +The total amount of wall time = 176.390734 +The maximum resident set size (KB) = 1486628 Test 075 control_p8_faster PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_control_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/regional_control_faster +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/regional_control_faster Checking test 076 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3020,56 +3020,56 @@ Checking test 076 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 285.746985 -The maximum resident set size (KB) = 652924 +The total amount of wall time = 286.436035 +The maximum resident set size (KB) = 656880 Test 076 regional_control_faster PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 077 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 909.888727 -The maximum resident set size (KB) = 828284 +The total amount of wall time = 905.443128 +The maximum resident set size (KB) = 828344 Test 077 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 078 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 530.264578 -The maximum resident set size (KB) = 831672 +The total amount of wall time = 519.809870 +The maximum resident set size (KB) = 827556 Test 078 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/rrfs_conus13km_hrrr_warm_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rrfs_conus13km_hrrr_warm_debug Checking test 079 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 819.910606 -The maximum resident set size (KB) = 809068 +The total amount of wall time = 810.646900 +The maximum resident set size (KB) = 803752 Test 079 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_CubedSphereGrid_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/control_CubedSphereGrid_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_CubedSphereGrid_debug Checking test 080 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3096,334 +3096,334 @@ Checking test 080 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 160.764138 -The maximum resident set size (KB) = 675748 +The total amount of wall time = 157.448230 +The maximum resident set size (KB) = 674284 Test 080 control_CubedSphereGrid_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/control_wrtGauss_netcdf_parallel_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_wrtGauss_netcdf_parallel_debug Checking test 081 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 159.107369 -The maximum resident set size (KB) = 677828 +The total amount of wall time = 157.752026 +The maximum resident set size (KB) = 681364 Test 081 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_stochy_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/control_stochy_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_stochy_debug Checking test 082 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 180.699412 -The maximum resident set size (KB) = 682664 +The total amount of wall time = 180.334949 +The maximum resident set size (KB) = 686204 Test 082 control_stochy_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/control_lndp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_lndp_debug Checking test 083 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 160.834582 -The maximum resident set size (KB) = 682900 +The total amount of wall time = 159.573522 +The maximum resident set size (KB) = 683368 Test 083 control_lndp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_csawmg_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/control_csawmg_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmg_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_csawmg_debug Checking test 084 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 255.306129 -The maximum resident set size (KB) = 721132 +The total amount of wall time = 255.421356 +The maximum resident set size (KB) = 719892 Test 084 control_csawmg_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_csawmgt_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/control_csawmgt_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmgt_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_csawmgt_debug Checking test 085 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 250.816361 -The maximum resident set size (KB) = 718600 +The total amount of wall time = 251.598991 +The maximum resident set size (KB) = 718860 Test 085 control_csawmgt_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_ras_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/control_ras_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_ras_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_ras_debug Checking test 086 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 162.752347 -The maximum resident set size (KB) = 691756 +The total amount of wall time = 161.543449 +The maximum resident set size (KB) = 694292 Test 086 control_ras_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/control_diag_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_diag_debug Checking test 087 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 162.649468 -The maximum resident set size (KB) = 735928 +The total amount of wall time = 162.369050 +The maximum resident set size (KB) = 736636 Test 087 control_diag_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_debug_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/control_debug_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_debug_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_debug_p8 Checking test 088 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 184.980326 -The maximum resident set size (KB) = 1499276 +The total amount of wall time = 187.597736 +The maximum resident set size (KB) = 1498624 Test 088 control_debug_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/regional_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/regional_debug Checking test 089 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1043.192619 -The maximum resident set size (KB) = 674464 +The total amount of wall time = 1039.595080 +The maximum resident set size (KB) = 678524 Test 089 regional_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/rap_control_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rap_control_debug Checking test 090 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 295.257086 -The maximum resident set size (KB) = 1053304 +The total amount of wall time = 296.686439 +The maximum resident set size (KB) = 1056176 Test 090 rap_control_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/hrrr_control_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/hrrr_control_debug Checking test 091 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 290.582506 -The maximum resident set size (KB) = 1054228 +The total amount of wall time = 290.483752 +The maximum resident set size (KB) = 1052036 Test 091 hrrr_control_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/rap_unified_drag_suite_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rap_unified_drag_suite_debug Checking test 092 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.107316 -The maximum resident set size (KB) = 1054856 +The total amount of wall time = 297.256790 +The maximum resident set size (KB) = 1056096 Test 092 rap_unified_drag_suite_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/rap_diag_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rap_diag_debug Checking test 093 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 308.718934 -The maximum resident set size (KB) = 1133476 +The total amount of wall time = 308.625929 +The maximum resident set size (KB) = 1137020 Test 093 rap_diag_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/rap_cires_ugwp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rap_cires_ugwp_debug Checking test 094 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 303.291607 -The maximum resident set size (KB) = 1050900 +The total amount of wall time = 305.098400 +The maximum resident set size (KB) = 1051148 Test 094 rap_cires_ugwp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/rap_unified_ugwp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rap_unified_ugwp_debug Checking test 095 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 302.495481 -The maximum resident set size (KB) = 1053080 +The total amount of wall time = 303.344739 +The maximum resident set size (KB) = 1051584 Test 095 rap_unified_ugwp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/rap_lndp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rap_lndp_debug Checking test 096 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 299.737865 -The maximum resident set size (KB) = 1053924 +The total amount of wall time = 299.792449 +The maximum resident set size (KB) = 1056824 Test 096 rap_lndp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_flake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/rap_flake_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_flake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rap_flake_debug Checking test 097 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.992510 -The maximum resident set size (KB) = 1055104 +The total amount of wall time = 297.987993 +The maximum resident set size (KB) = 1054024 Test 097 rap_flake_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_progcld_thompson_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/rap_progcld_thompson_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_progcld_thompson_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rap_progcld_thompson_debug Checking test 098 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 296.372621 -The maximum resident set size (KB) = 1053804 +The total amount of wall time = 296.412497 +The maximum resident set size (KB) = 1055236 Test 098 rap_progcld_thompson_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_noah_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/rap_noah_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_noah_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rap_noah_debug Checking test 099 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 290.095008 -The maximum resident set size (KB) = 1051980 +The total amount of wall time = 292.168813 +The maximum resident set size (KB) = 1046404 Test 099 rap_noah_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_sfcdiff_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/rap_sfcdiff_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rap_sfcdiff_debug Checking test 100 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 299.425447 -The maximum resident set size (KB) = 1052332 +The total amount of wall time = 298.133766 +The maximum resident set size (KB) = 1052108 Test 100 rap_sfcdiff_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rap_noah_sfcdiff_cires_ugwp_debug Checking test 101 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 485.761932 -The maximum resident set size (KB) = 1051752 +The total amount of wall time = 493.098912 +The maximum resident set size (KB) = 1052864 Test 101 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rrfs_v1beta_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/rrfs_v1beta_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1beta_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rrfs_v1beta_debug Checking test 102 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 292.405298 -The maximum resident set size (KB) = 1048704 +The total amount of wall time = 291.553659 +The maximum resident set size (KB) = 1049100 Test 102 rrfs_v1beta_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_wam_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/control_wam_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wam_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_wam_debug Checking test 103 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 297.201466 -The maximum resident set size (KB) = 308944 +The total amount of wall time = 297.285559 +The maximum resident set size (KB) = 302080 Test 103 control_wam_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3434,14 +3434,14 @@ Checking test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 233.808219 -The maximum resident set size (KB) = 883268 +The total amount of wall time = 233.791170 +The maximum resident set size (KB) = 892048 Test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/rap_control_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rap_control_dyn32_phy32 Checking test 105 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3488,14 +3488,14 @@ Checking test 105 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 391.136393 -The maximum resident set size (KB) = 779500 +The total amount of wall time = 356.887978 +The maximum resident set size (KB) = 781652 Test 105 rap_control_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/hrrr_control_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/hrrr_control_dyn32_phy32 Checking test 106 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3542,14 +3542,14 @@ Checking test 106 hrrr_control_dyn32_phy32 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 = 196.470639 -The maximum resident set size (KB) = 775796 +The total amount of wall time = 189.453837 +The maximum resident set size (KB) = 779500 Test 106 hrrr_control_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/rap_2threads_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rap_2threads_dyn32_phy32 Checking test 107 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3596,14 +3596,14 @@ Checking test 107 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 365.551038 -The maximum resident set size (KB) = 836100 +The total amount of wall time = 331.078229 +The maximum resident set size (KB) = 837040 Test 107 rap_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/hrrr_control_2threads_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/hrrr_control_2threads_dyn32_phy32 Checking test 108 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3650,14 +3650,14 @@ Checking test 108 hrrr_control_2threads_dyn32_phy32 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 = 209.067232 -The maximum resident set size (KB) = 833260 +The total amount of wall time = 174.140247 +The maximum resident set size (KB) = 831660 Test 108 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/hrrr_control_decomp_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/hrrr_control_decomp_dyn32_phy32 Checking test 109 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3704,14 +3704,14 @@ Checking test 109 hrrr_control_decomp_dyn32_phy32 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 = 202.416796 -The maximum resident set size (KB) = 778336 +The total amount of wall time = 197.130587 +The maximum resident set size (KB) = 775064 Test 109 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/rap_restart_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rap_restart_dyn32_phy32 Checking test 110 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3750,14 +3750,14 @@ Checking test 110 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 261.857452 -The maximum resident set size (KB) = 613180 +The total amount of wall time = 260.224944 +The maximum resident set size (KB) = 611736 Test 110 rap_restart_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/hrrr_control_restart_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/hrrr_control_restart_dyn32_phy32 Checking test 111 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3796,14 +3796,14 @@ Checking test 111 hrrr_control_restart_dyn32_phy32 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 = 100.431100 -The maximum resident set size (KB) = 608124 +The total amount of wall time = 105.407498 +The maximum resident set size (KB) = 607664 Test 111 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/rap_control_dyn64_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rap_control_dyn64_phy32 Checking test 112 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3850,81 +3850,81 @@ Checking test 112 rap_control_dyn64_phy32 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 = 239.262105 -The maximum resident set size (KB) = 797108 +The total amount of wall time = 237.041281 +The maximum resident set size (KB) = 797816 Test 112 rap_control_dyn64_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/rap_control_debug_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rap_control_debug_dyn32_phy32 Checking test 113 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 289.088333 -The maximum resident set size (KB) = 937184 +The total amount of wall time = 290.416683 +The maximum resident set size (KB) = 935128 Test 113 rap_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/hrrr_control_debug_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/hrrr_control_debug_dyn32_phy32 Checking test 114 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 284.785991 -The maximum resident set size (KB) = 934896 +The total amount of wall time = 285.914488 +The maximum resident set size (KB) = 941604 Test 114 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/rap_control_dyn64_phy32_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rap_control_dyn64_phy32_debug Checking test 115 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 296.090685 -The maximum resident set size (KB) = 951332 +The total amount of wall time = 296.790541 +The maximum resident set size (KB) = 957684 Test 115 rap_control_dyn64_phy32_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/hafs_regional_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/hafs_regional_atm Checking test 116 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 274.640323 -The maximum resident set size (KB) = 825924 +The total amount of wall time = 274.460932 +The maximum resident set size (KB) = 827292 Test 116 hafs_regional_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/hafs_regional_atm_thompson_gfdlsf +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/hafs_regional_atm_thompson_gfdlsf Checking test 117 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 332.534569 -The maximum resident set size (KB) = 1187424 +The total amount of wall time = 319.377436 +The maximum resident set size (KB) = 1174352 Test 117 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/hafs_regional_atm_ocn +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/hafs_regional_atm_ocn Checking test 118 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3933,14 +3933,14 @@ Checking test 118 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 391.998233 -The maximum resident set size (KB) = 858600 +The total amount of wall time = 394.536441 +The maximum resident set size (KB) = 862804 Test 118 hafs_regional_atm_ocn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/hafs_regional_atm_wav +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/hafs_regional_atm_wav Checking test 119 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3949,14 +3949,14 @@ Checking test 119 hafs_regional_atm_wav 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 = 715.871023 -The maximum resident set size (KB) = 891996 +The total amount of wall time = 708.318408 +The maximum resident set size (KB) = 890476 Test 119 hafs_regional_atm_wav PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/hafs_regional_atm_ocn_wav +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/hafs_regional_atm_ocn_wav Checking test 120 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3967,28 +3967,28 @@ Checking test 120 hafs_regional_atm_ocn_wav 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 = 903.883925 -The maximum resident set size (KB) = 915492 +The total amount of wall time = 906.024930 +The maximum resident set size (KB) = 913276 Test 120 hafs_regional_atm_ocn_wav PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/hafs_regional_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/hafs_regional_1nest_atm Checking test 121 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 336.403822 -The maximum resident set size (KB) = 395480 +The total amount of wall time = 333.930528 +The maximum resident set size (KB) = 395672 Test 121 hafs_regional_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/hafs_regional_telescopic_2nests_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/hafs_regional_telescopic_2nests_atm Checking test 122 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3997,28 +3997,28 @@ Checking test 122 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 415.804867 -The maximum resident set size (KB) = 404836 +The total amount of wall time = 404.920408 +The maximum resident set size (KB) = 405268 Test 122 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_global_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/hafs_global_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/hafs_global_1nest_atm Checking test 123 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 178.686106 -The maximum resident set size (KB) = 289656 +The total amount of wall time = 173.229301 +The maximum resident set size (KB) = 278280 Test 123 hafs_global_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_global_multiple_4nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/hafs_global_multiple_4nests_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_multiple_4nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/hafs_global_multiple_4nests_atm Checking test 124 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4036,14 +4036,14 @@ Checking test 124 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -The total amount of wall time = 494.517658 -The maximum resident set size (KB) = 348032 +The total amount of wall time = 491.470164 +The maximum resident set size (KB) = 346568 Test 124 hafs_global_multiple_4nests_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/hafs_regional_specified_moving_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/hafs_regional_specified_moving_1nest_atm Checking test 125 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4052,28 +4052,28 @@ Checking test 125 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 224.257064 -The maximum resident set size (KB) = 417672 +The total amount of wall time = 228.048023 +The maximum resident set size (KB) = 411832 Test 125 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/hafs_regional_storm_following_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/hafs_regional_storm_following_1nest_atm Checking test 126 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 212.362617 -The maximum resident set size (KB) = 409268 +The total amount of wall time = 208.553791 +The maximum resident set size (KB) = 409144 Test 126 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/hafs_regional_storm_following_1nest_atm_ocn Checking test 127 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4082,42 +4082,42 @@ Checking test 127 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 263.700718 -The maximum resident set size (KB) = 471976 +The total amount of wall time = 255.113521 +The maximum resident set size (KB) = 480508 Test 127 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/hafs_global_storm_following_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/hafs_global_storm_following_1nest_atm Checking test 128 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 95.316896 -The maximum resident set size (KB) = 286552 +The total amount of wall time = 86.434869 +The maximum resident set size (KB) = 282832 Test 128 hafs_global_storm_following_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 129 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 804.162483 -The maximum resident set size (KB) = 491740 +The total amount of wall time = 804.588105 +The maximum resident set size (KB) = 490584 Test 129 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 130 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4128,14 +4128,14 @@ Checking test 130 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 507.919220 -The maximum resident set size (KB) = 525808 +The total amount of wall time = 505.931523 +The maximum resident set size (KB) = 526376 Test 130 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/control_p8_atmlnd_sbs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/control_p8_atmlnd_sbs +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_atmlnd_sbs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_p8_atmlnd_sbs Checking test 131 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4220,14 +4220,14 @@ Checking test 131 control_p8_atmlnd_sbs 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 = 243.938210 -The maximum resident set size (KB) = 1541344 +The total amount of wall time = 243.700148 +The maximum resident set size (KB) = 1538904 Test 131 control_p8_atmlnd_sbs PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/atmaero_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/atmaero_control_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/atmaero_control_p8 Checking test 132 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4271,14 +4271,14 @@ Checking test 132 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 254.855578 -The maximum resident set size (KB) = 2817280 +The total amount of wall time = 256.595350 +The maximum resident set size (KB) = 2816036 Test 132 atmaero_control_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/atmaero_control_p8_rad -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/atmaero_control_p8_rad +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8_rad +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/atmaero_control_p8_rad Checking test 133 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4322,14 +4322,14 @@ Checking test 133 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 290.153998 -The maximum resident set size (KB) = 2876532 +The total amount of wall time = 286.726206 +The maximum resident set size (KB) = 2879312 Test 133 atmaero_control_p8_rad PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/atmaero_control_p8_rad_micro +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8_rad_micro +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/atmaero_control_p8_rad_micro Checking test 134 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4373,14 +4373,14 @@ Checking test 134 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 295.009794 -The maximum resident set size (KB) = 2888856 +The total amount of wall time = 292.973773 +The maximum resident set size (KB) = 2888184 Test 134 atmaero_control_p8_rad_micro PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_atmaq -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/regional_atmaq +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/regional_atmaq Checking test 135 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4396,14 +4396,14 @@ Checking test 135 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 697.520950 -The maximum resident set size (KB) = 1257468 +The total amount of wall time = 687.952870 +The maximum resident set size (KB) = 1263652 Test 135 regional_atmaq PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_atmaq_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/regional_atmaq_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/regional_atmaq_debug Checking test 136 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4417,14 +4417,14 @@ Checking test 136 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1292.175775 -The maximum resident set size (KB) = 1293968 +The total amount of wall time = 1306.168366 +The maximum resident set size (KB) = 1296880 Test 136 regional_atmaq_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230413/INTEL/regional_atmaq_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_20867/regional_atmaq_faster +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/regional_atmaq_faster Checking test 137 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4440,12 +4440,12 @@ Checking test 137 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 650.561342 -The maximum resident set size (KB) = 1260212 +The total amount of wall time = 644.109381 +The maximum resident set size (KB) = 1256960 Test 137 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Mon Apr 17 12:34:03 UTC 2023 -Elapsed time: 01h:06m:44s. Have a nice day! +Wed Apr 19 17:27:38 UTC 2023 +Elapsed time: 01h:01m:37s. Have a nice day! diff --git a/tests/rt.sh b/tests/rt.sh index d6491c74f80..7848d354557 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -446,7 +446,7 @@ if [[ $TESTS_FILE =~ '35d' ]] || [[ $TESTS_FILE =~ 'weekly' ]]; then fi -BL_DATE=20230413 +BL_DATE=20230418 RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-${BL_DATE}/${RT_COMPILER^^}} diff --git a/tests/rt_utils.sh b/tests/rt_utils.sh index 99031fda15b..83407fe53cd 100755 --- a/tests/rt_utils.sh +++ b/tests/rt_utils.sh @@ -649,7 +649,7 @@ ecflow_run() { echo "ecflow_server is NOT running on ${ECF_HOST}:${ECF_PORT}" if [[ ${MACHINE_ID} == wcoss2.* || ${MACHINE_ID} == acorn.* ]]; then if [[ "${HOST::1}" == "a" ]]; then - export ECF_HOST=adecflow01 + export ECF_HOST=aecflow01 elif [[ "${HOST::1}" == "c" ]]; then export ECF_HOST=cdecflow01 elif [[ "${HOST::1}" == "d" ]]; then From 46ef6d517b18da4fd3b086a379c81865e6828384 Mon Sep 17 00:00:00 2001 From: Dusan Jovic <48258889+DusanJovic-NOAA@users.noreply.github.com> Date: Mon, 24 Apr 2023 14:25:35 -0400 Subject: [PATCH 23/30] Use nccmp to compare netcdf files in regression test on NOAA R&D machines. Update WW3 (#1702) * Use nccmp to compare netcdf files * Use nccmp only on NOAA R&D systems * Do not skip checking fv_core.res.nc when GNU compiler is used * Update ufs_common.lua * Update ufs_hera modulefiles * Cleanup compile.sh. Remove unnecessary FIXME for gnu compiler * Update WW3 --- WW3 | 2 +- modulefiles/ufs_common.lua | 84 +- modulefiles/ufs_gaea.intel.lua | 7 - modulefiles/ufs_hera.gnu.lua | 4 - modulefiles/ufs_hera.intel.lua | 4 - modulefiles/ufs_jet.intel.lua | 5 - modulefiles/ufs_orion.intel.lua | 4 - tests/RegressionTests_acorn.intel.log | 1094 +- tests/RegressionTests_cheyenne.gnu.log | 334 +- tests/RegressionTests_cheyenne.intel.log | 15099 +-------------------- tests/RegressionTests_hera.gnu.log | 486 +- tests/RegressionTests_hera.intel.log | 1070 +- tests/RegressionTests_jet.intel.log | 946 +- tests/RegressionTests_orion.intel.log | 1070 +- tests/RegressionTests_wcoss2.intel.log | 1613 +-- tests/compile.sh | 8 - tests/rt_utils.sh | 14 +- tests/run_test.sh | 6 +- 18 files changed, 3903 insertions(+), 17947 deletions(-) diff --git a/WW3 b/WW3 index 081d5a64f20..e026bcc3c74 160000 --- a/WW3 +++ b/WW3 @@ -1 +1 @@ -Subproject commit 081d5a64f205caac7f920acec6004b1a184f5709 +Subproject commit e026bcc3c748580c0e0e22d6b9394356a37d6ef8 diff --git a/modulefiles/ufs_common.lua b/modulefiles/ufs_common.lua index ae8b8e6c315..6b9c9d4042f 100644 --- a/modulefiles/ufs_common.lua +++ b/modulefiles/ufs_common.lua @@ -1,56 +1,30 @@ -help([[ -loads UFS Model common libraries -]]) - -jasper_ver=os.getenv("jasper_ver") or "2.0.25" -load(pathJoin("jasper", jasper_ver)) - -zlib_ver=os.getenv("zlib_ver") or "1.2.11" -load(pathJoin("zlib", zlib_ver)) - -libpng_ver=os.getenv("libpng_ver") or "1.6.37" -load(pathJoin("libpng", libpng_ver)) - -hdf5_ver=os.getenv("hdf5_ver") or "1.10.6" -load(pathJoin("hdf5", hdf5_ver)) - -netcdf_ver=os.getenv("netcdf_ver") or "4.7.4" -load(pathJoin("netcdf", netcdf_ver)) - -pio_ver=os.getenv("pio_ver") or "2.5.7" -load(pathJoin("pio", pio_ver)) - -esmf_ver=os.getenv("esmf_ver") or "8.3.0b09" -load(pathJoin("esmf", esmf_ver)) - -fms_ver=os.getenv("fms_ver") or "2022.04" -load(pathJoin("fms",fms_ver)) - -bacio_ver=os.getenv("bacio_ver") or "2.4.1" -load(pathJoin("bacio", bacio_ver)) - -crtm_ver=os.getenv("crtm_ver") or "2.4.0" -load(pathJoin("crtm", crtm_ver)) - -g2_ver=os.getenv("g2_ver") or "3.4.5" -load(pathJoin("g2", g2_ver)) - -g2tmpl_ver=os.getenv("g2tmpl_ver") or "1.10.2" -load(pathJoin("g2tmpl", g2tmpl_ver)) - -ip_ver=os.getenv("ip_ver") or "3.3.3" -load(pathJoin("ip", ip_ver)) - -sp_ver=os.getenv("sp_ver") or "2.3.3" -load(pathJoin("sp", sp_ver)) - -w3emc_ver=os.getenv("w3emc_ver") or "2.9.2" -load(pathJoin("w3emc", w3emc_ver)) - -gftl_shared_ver=os.getenv("gftl_shared_ver") or "v1.5.0" -load(pathJoin("gftl-shared", gftl_shared_ver)) - -mapl_ver=os.getenv("mapl_ver") or "2.22.0-esmf-8.3.0b09" -load(pathJoin("mapl", mapl_ver)) - whatis("Description: UFS build environment common libraries") + +help([[Load UFS Model common libraries]]) + +local ufs_modules = { + {["jasper"] = "2.0.25"}, + {["zlib"] = "1.2.11"}, + {["libpng"] = "1.6.37"}, + {["hdf5"] = "1.10.6"}, + {["netcdf"] = "4.7.4"}, + {["pio"] = "2.5.7"}, + {["esmf"] = "8.3.0b09"}, + {["fms"] = "2022.04"}, + {["bacio"] = "2.4.1"}, + {["crtm"] = "2.4.0"}, + {["g2"] = "3.4.5"}, + {["g2tmpl"] = "1.10.2"}, + {["ip"] = "3.3.3"}, + {["sp"] = "2.3.3"}, + {["w3emc"] = "2.9.2"}, + {["gftl-shared"] = "v1.5.0"}, + {["mapl"] = "2.22.0-esmf-8.3.0b09"}, +} + +for i = 1, #ufs_modules do + for name, default_version in pairs(ufs_modules[i]) do + local env_version_name = string.gsub(name, "-", "_") .. "_ver" + load(pathJoin(name, os.getenv(env_version_name) or default_version)) + end +end diff --git a/modulefiles/ufs_gaea.intel.lua b/modulefiles/ufs_gaea.intel.lua index fb0ded562eb..245d9d064c9 100644 --- a/modulefiles/ufs_gaea.intel.lua +++ b/modulefiles/ufs_gaea.intel.lua @@ -5,9 +5,6 @@ help([[ whatis([===[Loads libraries needed for building the UFS Weather Model on Gaea ]===]) -prepend_path("MODULEPATH", "/lustre/f2/dev/role.epic/contrib/modulefiles") -load(pathJoin("miniconda3",os.getenv("miniconda_ver") or "4.12.0")) - load(pathJoin("cmake", os.getenv("cmake_ver") or "3.20.1")) prepend_path("MODULEPATH","/lustre/f2/dev/role.epic/contrib/hpc-stack/intel-2021.3.0_noarch/modulefiles/stack") @@ -22,14 +19,10 @@ load(pathJoin("libpng", os.getenv("libpng_ver") or "1.6.37")) load(pathJoin("gcc", os.getenv("gcc_ver") or "8.3.0")) -- Needed at runtime: load("alps") -load("rocoto") load("ufs_common") setenv("CC","cc") setenv("FC","ftn") setenv("CXX","CC") -setenv("CMAKE_C_COMPILER","cc") -setenv("CMAKE_CXX_COMPILER","CC") -setenv("CMAKE_Fortran_COMPILER","ftn") setenv("CMAKE_Platform","gaea.intel") diff --git a/modulefiles/ufs_hera.gnu.lua b/modulefiles/ufs_hera.gnu.lua index eef017b7c31..1687aa8f42f 100644 --- a/modulefiles/ufs_hera.gnu.lua +++ b/modulefiles/ufs_hera.gnu.lua @@ -2,10 +2,6 @@ help([[ loads UFS Model prerequisites for Hera/GNU ]]) -prepend_path("MODULEPATH", "/scratch1/NCEPDEV/nems/role.epic/miniconda3/modulefiles") -miniconda3_ver=os.getenv("miniconda3_ver") or "4.12.0" -load(pathJoin("miniconda3", miniconda3_ver)) - prepend_path("MODULEPATH", "/contrib/sutils/modulefiles") load("sutils") diff --git a/modulefiles/ufs_hera.intel.lua b/modulefiles/ufs_hera.intel.lua index 2bc37225983..2a3b27d736a 100644 --- a/modulefiles/ufs_hera.intel.lua +++ b/modulefiles/ufs_hera.intel.lua @@ -2,10 +2,6 @@ help([[ loads UFS Model prerequisites for Hera/Intel ]]) -prepend_path("MODULEPATH", "/scratch1/NCEPDEV/nems/role.epic/miniconda3/modulefiles") -miniconda3_ver=os.getenv("miniconda3_ver") or "4.12.0" -load(pathJoin("miniconda3", miniconda3_ver)) - prepend_path("MODULEPATH", "/contrib/sutils/modulefiles") load("sutils") diff --git a/modulefiles/ufs_jet.intel.lua b/modulefiles/ufs_jet.intel.lua index 6ca3c691bce..2ce9e944ba7 100644 --- a/modulefiles/ufs_jet.intel.lua +++ b/modulefiles/ufs_jet.intel.lua @@ -8,11 +8,6 @@ load("sutils") cmake_ver=os.getenv("cmake_ver") or "3.20.1" load(pathJoin("cmake", cmake_ver)) -prepend_path("MODULEPATH", "/mnt/lfs4/HFIP/hfv3gfs/role.epic/miniconda3/modulefiles") -miniconda3_ver=os.getenv("miniconda3_ver") or "4.12.0" -load(pathJoin("miniconda3", miniconda3_ver)) - - prepend_path("MODULEPATH", "/mnt/lfs4/HFIP/hfv3gfs/role.epic/hpc-stack/libs/intel-2022.1.2/modulefiles/stack") hpc_ver=os.getenv("hpc_ver") or "1.2.0" diff --git a/modulefiles/ufs_orion.intel.lua b/modulefiles/ufs_orion.intel.lua index ab6997c3e96..0e942d9e142 100644 --- a/modulefiles/ufs_orion.intel.lua +++ b/modulefiles/ufs_orion.intel.lua @@ -8,10 +8,6 @@ load("noaatools") cmake_ver=os.getenv("cmake_ver") or "3.22.1" load(pathJoin("cmake", cmake_ver)) -prepend_path("MODULEPATH", "/work/noaa/epic-ps/role-epic-ps/miniconda3/modulefiles") -miniconda3_ver=os.getenv("miniconda3_ver") or "4.12.0" -load(pathJoin("miniconda3", miniconda3_ver)) - prepend_path("MODULEPATH", "/work/noaa/epic-ps/role-epic-ps/hpc-stack/libs/intel-2022.1.2/modulefiles/stack") hpc_ver=os.getenv("hpc_ver") or "1.2.0" diff --git a/tests/RegressionTests_acorn.intel.log b/tests/RegressionTests_acorn.intel.log index f4df8626594..f55b10487e1 100644 --- a/tests/RegressionTests_acorn.intel.log +++ b/tests/RegressionTests_acorn.intel.log @@ -1,41 +1,41 @@ -Wed Apr 19 19:35:02 UTC 2023 +Fri Apr 21 18:25:24 UTC 2023 Start Regression test -Compile 001 elapsed time 537 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 880 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 686 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 478 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 005 elapsed time 509 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 682 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 869 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 008 elapsed time 567 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 446 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 010 elapsed time 447 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 564 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 566 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 196 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 147 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 435 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 435 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 152 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 152 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 480 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 020 elapsed time 174 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 021 elapsed time 693 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 022 elapsed time 489 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 023 elapsed time 164 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 024 elapsed time 305 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 141 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 026 elapsed time 483 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 027 elapsed time 492 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 459 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 443 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 441 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 154 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 032 elapsed time 506 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 1024 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 546 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 1026 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 937 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 005 elapsed time 479 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 624 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 488 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 1014 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 1470 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 010 elapsed time 455 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 539 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 1124 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 736 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 014 elapsed time 781 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 428 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 562 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 276 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 366 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 601 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 020 elapsed time 326 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 021 elapsed time 996 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 022 elapsed time 701 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 023 elapsed time 256 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 024 elapsed time 228 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 56 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 026 elapsed time 482 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 027 elapsed time 606 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 936 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 522 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 949 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 492 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 032 elapsed time 855 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8_mixedmode -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/cpld_control_p8_mixedmode +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -100,14 +100,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 340.256574 -The maximum resident set size (KB) = 2947136 +The total amount of wall time = 331.582242 +The maximum resident set size (KB) = 2951024 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_gfsv17 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/cpld_control_gfsv17 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -171,14 +171,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 258.782268 -The maximum resident set size (KB) = 1575888 +The total amount of wall time = 259.108988 +The maximum resident set size (KB) = 1575816 Test 002 cpld_control_gfsv17 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -243,14 +243,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 386.779757 -The maximum resident set size (KB) = 2979580 +The total amount of wall time = 386.264368 +The maximum resident set size (KB) = 2978804 Test 003 cpld_control_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/cpld_restart_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -303,14 +303,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 230.632876 -The maximum resident set size (KB) = 2861944 +The total amount of wall time = 229.481995 +The maximum resident set size (KB) = 2866968 Test 004 cpld_restart_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/cpld_control_qr_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -375,14 +375,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 388.168334 -The maximum resident set size (KB) = 2990760 +The total amount of wall time = 384.311437 +The maximum resident set size (KB) = 2990136 Test 005 cpld_control_qr_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/cpld_restart_qr_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -435,14 +435,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 230.999986 -The maximum resident set size (KB) = 2876932 +The total amount of wall time = 231.849493 +The maximum resident set size (KB) = 2876676 Test 006 cpld_restart_qr_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/cpld_2threads_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -495,14 +495,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 367.734960 -The maximum resident set size (KB) = 3282864 +The total amount of wall time = 367.367543 +The maximum resident set size (KB) = 3279320 Test 007 cpld_2threads_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/cpld_decomp_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -555,14 +555,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 382.007854 -The maximum resident set size (KB) = 2973900 +The total amount of wall time = 378.417634 +The maximum resident set size (KB) = 2978040 Test 008 cpld_decomp_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/cpld_mpi_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -615,14 +615,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 317.983349 -The maximum resident set size (KB) = 2912012 +The total amount of wall time = 315.918666 +The maximum resident set size (KB) = 2905528 Test 009 cpld_mpi_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_ciceC_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/cpld_control_ciceC_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -687,14 +687,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 384.513991 -The maximum resident set size (KB) = 2977224 +The total amount of wall time = 384.920105 +The maximum resident set size (KB) = 2977536 Test 010 cpld_control_ciceC_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/cpld_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/cpld_control_noaero_p8 Checking test 011 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -758,14 +758,14 @@ Checking test 011 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 278.555733 -The maximum resident set size (KB) = 1565640 +The total amount of wall time = 279.741473 +The maximum resident set size (KB) = 1572204 Test 011 cpld_control_noaero_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/cpld_control_nowave_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/cpld_control_nowave_noaero_p8 Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -827,14 +827,14 @@ Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 299.212513 -The maximum resident set size (KB) = 1619932 +The total amount of wall time = 298.370361 +The maximum resident set size (KB) = 1629996 Test 012 cpld_control_nowave_noaero_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/cpld_control_noaero_p8_agrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/cpld_control_noaero_p8_agrid Checking test 013 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -896,14 +896,14 @@ Checking test 013 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 308.123577 -The maximum resident set size (KB) = 1621744 +The total amount of wall time = 307.973812 +The maximum resident set size (KB) = 1623124 Test 013 cpld_control_noaero_p8_agrid PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/cpld_control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/cpld_control_c48 Checking test 014 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -953,14 +953,14 @@ Checking test 014 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 434.779863 -The maximum resident set size (KB) = 2636224 +The total amount of wall time = 430.905899 +The maximum resident set size (KB) = 2634940 Test 014 cpld_control_c48 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/cpld_warmstart_c48 Checking test 015 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1010,14 +1010,14 @@ Checking test 015 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 121.665540 -The maximum resident set size (KB) = 2656548 +The total amount of wall time = 119.347991 +The maximum resident set size (KB) = 2652492 Test 015 cpld_warmstart_c48 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/cpld_restart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/cpld_restart_c48 Checking test 016 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1067,14 +1067,14 @@ Checking test 016 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 67.607169 -The maximum resident set size (KB) = 2070204 +The total amount of wall time = 67.101041 +The maximum resident set size (KB) = 2066324 Test 016 cpld_restart_c48 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/cpld_control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/cpld_control_p8_faster Checking test 017 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1139,14 +1139,14 @@ Checking test 017 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 376.399511 -The maximum resident set size (KB) = 2975964 +The total amount of wall time = 375.862362 +The maximum resident set size (KB) = 2974656 Test 017 cpld_control_p8_faster PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_CubedSphereGrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_CubedSphereGrid Checking test 018 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1173,14 +1173,14 @@ Checking test 018 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 129.436964 -The maximum resident set size (KB) = 512432 +The total amount of wall time = 129.414193 +The maximum resident set size (KB) = 510980 Test 018 control_CubedSphereGrid PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_latlon -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_latlon +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_latlon Checking test 019 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1191,14 +1191,14 @@ Checking test 019 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 132.293006 -The maximum resident set size (KB) = 513508 +The total amount of wall time = 132.238436 +The maximum resident set size (KB) = 516596 Test 019 control_latlon PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_wrtGauss_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_wrtGauss_netcdf_parallel Checking test 020 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1209,14 +1209,14 @@ Checking test 020 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 134.890204 -The maximum resident set size (KB) = 511748 +The total amount of wall time = 134.145144 +The maximum resident set size (KB) = 513400 Test 020 control_wrtGauss_netcdf_parallel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_c48 Checking test 021 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1255,14 +1255,14 @@ Checking test 021 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 329.080862 -The maximum resident set size (KB) = 673912 +The total amount of wall time = 329.204999 +The maximum resident set size (KB) = 672672 Test 021 control_c48 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c192 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_c192 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_c192 Checking test 022 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1273,14 +1273,14 @@ Checking test 022 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 528.473133 -The maximum resident set size (KB) = 611020 +The total amount of wall time = 527.214117 +The maximum resident set size (KB) = 611560 Test 022 control_c192 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c384 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_c384 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_c384 Checking test 023 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1291,14 +1291,14 @@ Checking test 023 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 571.586659 -The maximum resident set size (KB) = 920764 +The total amount of wall time = 563.207618 +The maximum resident set size (KB) = 925368 Test 023 control_c384 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c384gdas -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_c384gdas +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_c384gdas Checking test 024 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1341,14 +1341,14 @@ Checking test 024 control_c384gdas 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 = 503.318574 -The maximum resident set size (KB) = 1058448 +The total amount of wall time = 514.113576 +The maximum resident set size (KB) = 1054512 Test 024 control_c384gdas PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_stochy Checking test 025 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1359,28 +1359,28 @@ Checking test 025 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 89.533489 -The maximum resident set size (KB) = 519188 +The total amount of wall time = 90.149320 +The maximum resident set size (KB) = 517076 Test 025 control_stochy PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_stochy_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_stochy_restart Checking test 026 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 49.447596 -The maximum resident set size (KB) = 287744 +The total amount of wall time = 48.894612 +The maximum resident set size (KB) = 284936 Test 026 control_stochy_restart PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_lndp Checking test 027 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1391,14 +1391,14 @@ Checking test 027 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 83.140575 -The maximum resident set size (KB) = 513864 +The total amount of wall time = 83.082812 +The maximum resident set size (KB) = 519156 Test 027 control_lndp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_iovr4 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_iovr4 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_iovr4 Checking test 028 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1413,14 +1413,14 @@ Checking test 028 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.357668 -The maximum resident set size (KB) = 515616 +The total amount of wall time = 135.015795 +The maximum resident set size (KB) = 513020 Test 028 control_iovr4 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_iovr5 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_iovr5 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_iovr5 Checking test 029 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1435,14 +1435,14 @@ Checking test 029 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.637876 -The maximum resident set size (KB) = 516752 +The total amount of wall time = 135.803998 +The maximum resident set size (KB) = 513844 Test 029 control_iovr5 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_p8 Checking test 030 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1489,14 +1489,14 @@ Checking test 030 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 182.206499 -The maximum resident set size (KB) = 1482080 +The total amount of wall time = 180.427691 +The maximum resident set size (KB) = 1487188 Test 030 control_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_restart_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_restart_p8 Checking test 031 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1535,14 +1535,14 @@ Checking test 031 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 99.881494 -The maximum resident set size (KB) = 654684 +The total amount of wall time = 97.965837 +The maximum resident set size (KB) = 655032 Test 031 control_restart_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_qr_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_qr_p8 Checking test 032 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1589,14 +1589,14 @@ Checking test 032 control_qr_p8 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 = 180.037393 -The maximum resident set size (KB) = 1499316 +The total amount of wall time = 175.176275 +The maximum resident set size (KB) = 1494332 Test 032 control_qr_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_restart_qr_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_restart_qr_p8 Checking test 033 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1635,14 +1635,14 @@ Checking test 033 control_restart_qr_p8 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 = 98.857501 -The maximum resident set size (KB) = 668724 +The total amount of wall time = 98.702188 +The maximum resident set size (KB) = 665008 Test 033 control_restart_qr_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_decomp_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_decomp_p8 Checking test 034 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1685,14 +1685,14 @@ Checking test 034 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 185.390982 -The maximum resident set size (KB) = 1472656 +The total amount of wall time = 181.027532 +The maximum resident set size (KB) = 1482816 Test 034 control_decomp_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_2threads_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_2threads_p8 Checking test 035 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1735,14 +1735,14 @@ Checking test 035 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 160.531361 -The maximum resident set size (KB) = 1571432 +The total amount of wall time = 155.313352 +The maximum resident set size (KB) = 1565920 Test 035 control_2threads_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_p8_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_p8_lndp Checking test 036 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1761,14 +1761,14 @@ Checking test 036 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 325.738571 -The maximum resident set size (KB) = 1480376 +The total amount of wall time = 322.089296 +The maximum resident set size (KB) = 1488012 Test 036 control_p8_lndp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_rrtmgp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_p8_rrtmgp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_p8_rrtmgp Checking test 037 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1815,14 +1815,14 @@ Checking test 037 control_p8_rrtmgp results .... 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.062257 -The maximum resident set size (KB) = 1542636 +The total amount of wall time = 234.218193 +The maximum resident set size (KB) = 1545180 Test 037 control_p8_rrtmgp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_mynn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_p8_mynn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_p8_mynn Checking test 038 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1869,14 +1869,14 @@ Checking test 038 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 184.449811 -The maximum resident set size (KB) = 1490332 +The total amount of wall time = 181.393015 +The maximum resident set size (KB) = 1481864 Test 038 control_p8_mynn PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/merra2_thompson -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/merra2_thompson +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/merra2_thompson Checking test 039 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1923,14 +1923,14 @@ Checking test 039 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 207.506597 -The maximum resident set size (KB) = 1491572 +The total amount of wall time = 203.669168 +The maximum resident set size (KB) = 1488632 Test 039 merra2_thompson PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_control Checking test 040 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1941,28 +1941,28 @@ Checking test 040 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 286.594396 -The maximum resident set size (KB) = 646868 +The total amount of wall time = 286.412370 +The maximum resident set size (KB) = 651160 Test 040 regional_control PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/regional_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_restart Checking test 041 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 155.133351 -The maximum resident set size (KB) = 648488 +The total amount of wall time = 155.036567 +The maximum resident set size (KB) = 648828 Test 041 regional_restart PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/regional_control_qr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_control_qr Checking test 042 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1973,28 +1973,28 @@ Checking test 042 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 287.417256 -The maximum resident set size (KB) = 647576 +The total amount of wall time = 288.780784 +The maximum resident set size (KB) = 647092 Test 042 regional_control_qr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/regional_restart_qr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_restart_qr Checking test 043 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 158.163503 -The maximum resident set size (KB) = 648124 +The total amount of wall time = 155.881848 +The maximum resident set size (KB) = 647456 Test 043 regional_restart_qr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/regional_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_decomp Checking test 044 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2005,14 +2005,14 @@ Checking test 044 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 303.124884 -The maximum resident set size (KB) = 646232 +The total amount of wall time = 303.450971 +The maximum resident set size (KB) = 654968 Test 044 regional_decomp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/regional_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_2threads Checking test 045 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2023,14 +2023,14 @@ Checking test 045 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 177.573170 -The maximum resident set size (KB) = 692680 +The total amount of wall time = 175.718814 +The maximum resident set size (KB) = 696160 Test 045 regional_2threads PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_noquilt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/regional_noquilt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_noquilt Checking test 046 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2038,14 +2038,14 @@ Checking test 046 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 310.534344 -The maximum resident set size (KB) = 641456 +The total amount of wall time = 309.693332 +The maximum resident set size (KB) = 640660 Test 046 regional_noquilt PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/regional_2dwrtdecomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_2dwrtdecomp Checking test 047 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2056,14 +2056,14 @@ Checking test 047 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 291.548915 -The maximum resident set size (KB) = 647000 +The total amount of wall time = 288.539089 +The maximum resident set size (KB) = 650860 Test 047 regional_2dwrtdecomp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/fv3_regional_wofs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/regional_wofs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_wofs Checking test 048 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2074,14 +2074,14 @@ Checking test 048 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 364.560577 -The maximum resident set size (KB) = 338928 +The total amount of wall time = 361.432385 +The maximum resident set size (KB) = 340632 Test 048 regional_wofs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_ifi_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/regional_ifi_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_ifi_control Checking test 049 regional_ifi_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2092,14 +2092,14 @@ Checking test 049 regional_ifi_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 321.197336 -The maximum resident set size (KB) = 651480 +The total amount of wall time = 321.803922 +The maximum resident set size (KB) = 655388 Test 049 regional_ifi_control PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_ifi_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/regional_ifi_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_ifi_decomp Checking test 050 regional_ifi_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2110,14 +2110,14 @@ Checking test 050 regional_ifi_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 336.366776 -The maximum resident set size (KB) = 656648 +The total amount of wall time = 335.468450 +The maximum resident set size (KB) = 652780 Test 050 regional_ifi_decomp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_ifi_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/regional_ifi_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_ifi_2threads Checking test 051 regional_ifi_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2128,14 +2128,14 @@ Checking test 051 regional_ifi_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 196.887173 -The maximum resident set size (KB) = 694656 +The total amount of wall time = 198.442606 +The maximum resident set size (KB) = 694520 Test 051 regional_ifi_2threads PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_control Checking test 052 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2182,14 +2182,14 @@ Checking test 052 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 419.412403 -The maximum resident set size (KB) = 889328 +The total amount of wall time = 418.048586 +The maximum resident set size (KB) = 893248 Test 052 rap_control PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/regional_spp_sppt_shum_skeb +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_spp_sppt_shum_skeb Checking test 053 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2200,14 +2200,14 @@ Checking test 053 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 243.429308 -The maximum resident set size (KB) = 986160 +The total amount of wall time = 242.384099 +The maximum resident set size (KB) = 989380 Test 053 regional_spp_sppt_shum_skeb PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rap_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_decomp Checking test 054 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2254,14 +2254,14 @@ Checking test 054 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 431.619726 -The maximum resident set size (KB) = 892984 +The total amount of wall time = 433.829698 +The maximum resident set size (KB) = 890796 Test 054 rap_decomp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rap_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_2threads Checking test 055 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2308,14 +2308,14 @@ Checking test 055 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 387.392842 -The maximum resident set size (KB) = 968464 +The total amount of wall time = 387.603142 +The maximum resident set size (KB) = 965208 Test 055 rap_2threads PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rap_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_restart Checking test 056 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2354,14 +2354,14 @@ Checking test 056 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 212.838298 -The maximum resident set size (KB) = 644976 +The total amount of wall time = 212.414988 +The maximum resident set size (KB) = 644560 Test 056 rap_restart PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_sfcdiff Checking test 057 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2408,14 +2408,14 @@ Checking test 057 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 425.418338 -The maximum resident set size (KB) = 889312 +The total amount of wall time = 421.444590 +The maximum resident set size (KB) = 889104 Test 057 rap_sfcdiff PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rap_sfcdiff_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_sfcdiff_decomp Checking test 058 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2462,14 +2462,14 @@ Checking test 058 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 439.283566 -The maximum resident set size (KB) = 892668 +The total amount of wall time = 436.968936 +The maximum resident set size (KB) = 890376 Test 058 rap_sfcdiff_decomp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rap_sfcdiff_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_sfcdiff_restart Checking test 059 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2508,14 +2508,14 @@ Checking test 059 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 309.716344 -The maximum resident set size (KB) = 641836 +The total amount of wall time = 310.051931 +The maximum resident set size (KB) = 642744 Test 059 rap_sfcdiff_restart PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hrrr_control Checking test 060 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2562,14 +2562,14 @@ Checking test 060 hrrr_control results .... 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.504771 -The maximum resident set size (KB) = 892088 +The total amount of wall time = 405.586453 +The maximum resident set size (KB) = 891236 Test 060 hrrr_control PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hrrr_control_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hrrr_control_decomp Checking test 061 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2616,14 +2616,14 @@ Checking test 061 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 419.685543 -The maximum resident set size (KB) = 887312 +The total amount of wall time = 419.341317 +The maximum resident set size (KB) = 888492 Test 061 hrrr_control_decomp PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hrrr_control_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hrrr_control_2threads Checking test 062 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2670,14 +2670,14 @@ Checking test 062 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 374.165853 -The maximum resident set size (KB) = 957428 +The total amount of wall time = 372.858619 +The maximum resident set size (KB) = 959816 Test 062 hrrr_control_2threads PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hrrr_control_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hrrr_control_restart Checking test 063 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2716,14 +2716,14 @@ Checking test 063 hrrr_control_restart results .... 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.833124 -The maximum resident set size (KB) = 640676 +The total amount of wall time = 297.300262 +The maximum resident set size (KB) = 640660 Test 063 hrrr_control_restart PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1beta -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rrfs_v1beta +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rrfs_v1beta Checking test 064 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2770,14 +2770,14 @@ Checking test 064 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 418.833673 -The maximum resident set size (KB) = 887060 +The total amount of wall time = 416.513921 +The maximum resident set size (KB) = 887692 Test 064 rrfs_v1beta PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1nssl -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rrfs_v1nssl +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rrfs_v1nssl Checking test 065 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2792,14 +2792,14 @@ Checking test 065 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 481.389735 -The maximum resident set size (KB) = 578032 +The total amount of wall time = 480.644688 +The maximum resident set size (KB) = 576232 Test 065 rrfs_v1nssl PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rrfs_v1nssl_nohailnoccn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rrfs_v1nssl_nohailnoccn Checking test 066 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2814,14 +2814,14 @@ Checking test 066 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 470.891094 -The maximum resident set size (KB) = 568936 +The total amount of wall time = 470.967129 +The maximum resident set size (KB) = 567760 Test 066 rrfs_v1nssl_nohailnoccn PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rrfs_smoke_conus13km_hrrr_warm Checking test 067 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2830,14 +2830,14 @@ Checking test 067 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 142.767862 -The maximum resident set size (KB) = 804544 +The total amount of wall time = 146.010392 +The maximum resident set size (KB) = 800996 Test 067 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rrfs_smoke_conus13km_hrrr_warm_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 068 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2846,14 +2846,14 @@ Checking test 068 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 100.716066 -The maximum resident set size (KB) = 802704 +The total amount of wall time = 101.246999 +The maximum resident set size (KB) = 799884 Test 068 rrfs_smoke_conus13km_hrrr_warm_2threads PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rrfs_conus13km_hrrr_warm Checking test 069 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2862,14 +2862,14 @@ Checking test 069 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 131.503775 -The maximum resident set size (KB) = 778628 +The total amount of wall time = 131.510862 +The maximum resident set size (KB) = 778988 Test 069 rrfs_conus13km_hrrr_warm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rrfs_smoke_conus13km_radar_tten_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rrfs_smoke_conus13km_radar_tten_warm Checking test 070 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2878,26 +2878,26 @@ Checking test 070 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 145.665423 -The maximum resident set size (KB) = 805240 +The total amount of wall time = 144.499730 +The maximum resident set size (KB) = 803228 Test 070 rrfs_smoke_conus13km_radar_tten_warm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 071 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 66.049871 -The maximum resident set size (KB) = 757632 +The total amount of wall time = 67.164080 +The maximum resident set size (KB) = 758444 Test 071 rrfs_conus13km_hrrr_warm_restart_mismatch PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmg -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_csawmg +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_csawmg Checking test 072 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2908,14 +2908,14 @@ Checking test 072 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 345.902183 -The maximum resident set size (KB) = 586452 +The total amount of wall time = 346.180026 +The maximum resident set size (KB) = 582100 Test 072 control_csawmg PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmgt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_csawmgt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_csawmgt Checking test 073 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2926,14 +2926,14 @@ Checking test 073 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 342.864594 -The maximum resident set size (KB) = 583508 +The total amount of wall time = 342.665613 +The maximum resident set size (KB) = 582968 Test 073 control_csawmgt PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_ras -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_ras +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_ras Checking test 074 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2944,26 +2944,26 @@ Checking test 074 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 182.265533 -The maximum resident set size (KB) = 548868 +The total amount of wall time = 181.041377 +The maximum resident set size (KB) = 547612 Test 074 control_ras PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wam -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_wam +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_wam Checking test 075 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 117.253203 -The maximum resident set size (KB) = 270752 +The total amount of wall time = 117.211320 +The maximum resident set size (KB) = 271684 Test 075 control_wam PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_p8_faster Checking test 076 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3010,14 +3010,14 @@ Checking test 076 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 174.888853 -The maximum resident set size (KB) = 1484128 +The total amount of wall time = 173.332285 +The maximum resident set size (KB) = 1484804 Test 076 control_p8_faster PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/regional_control_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_control_faster Checking test 077 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3028,56 +3028,56 @@ Checking test 077 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 278.744977 -The maximum resident set size (KB) = 654876 +The total amount of wall time = 279.710705 +The maximum resident set size (KB) = 655256 Test 077 regional_control_faster PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 078 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 915.062653 -The maximum resident set size (KB) = 825616 +The total amount of wall time = 914.958329 +The maximum resident set size (KB) = 823828 Test 078 rrfs_smoke_conus13km_hrrr_warm_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 079 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 524.087229 -The maximum resident set size (KB) = 826572 +The total amount of wall time = 527.044834 +The maximum resident set size (KB) = 827536 Test 079 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rrfs_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rrfs_conus13km_hrrr_warm_debug Checking test 080 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 809.769963 -The maximum resident set size (KB) = 806292 +The total amount of wall time = 807.833776 +The maximum resident set size (KB) = 805132 Test 080 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_CubedSphereGrid_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_CubedSphereGrid_debug Checking test 081 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3104,334 +3104,334 @@ Checking test 081 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 158.109421 -The maximum resident set size (KB) = 673832 +The total amount of wall time = 158.407891 +The maximum resident set size (KB) = 672244 Test 081 control_CubedSphereGrid_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_wrtGauss_netcdf_parallel_debug Checking test 082 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 157.856253 -The maximum resident set size (KB) = 674920 +The total amount of wall time = 159.045584 +The maximum resident set size (KB) = 673604 Test 082 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_stochy_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_stochy_debug Checking test 083 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 178.905705 -The maximum resident set size (KB) = 678500 +The total amount of wall time = 179.498776 +The maximum resident set size (KB) = 680308 Test 083 control_stochy_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_lndp_debug Checking test 084 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 160.718006 -The maximum resident set size (KB) = 679040 +The total amount of wall time = 160.482226 +The maximum resident set size (KB) = 685060 Test 084 control_lndp_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmg_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_csawmg_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_csawmg_debug Checking test 085 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 255.253791 -The maximum resident set size (KB) = 717248 +The total amount of wall time = 255.086397 +The maximum resident set size (KB) = 716044 Test 085 control_csawmg_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmgt_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_csawmgt_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_csawmgt_debug Checking test 086 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 250.303680 -The maximum resident set size (KB) = 717644 +The total amount of wall time = 249.234783 +The maximum resident set size (KB) = 718668 Test 086 control_csawmgt_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_ras_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_ras_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_ras_debug Checking test 087 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 161.954244 -The maximum resident set size (KB) = 689616 +The total amount of wall time = 161.181065 +The maximum resident set size (KB) = 687884 Test 087 control_ras_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_diag_debug Checking test 088 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 162.369906 -The maximum resident set size (KB) = 731788 +The total amount of wall time = 162.298793 +The maximum resident set size (KB) = 734668 Test 088 control_diag_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_debug_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_debug_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_debug_p8 Checking test 089 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 185.469523 -The maximum resident set size (KB) = 1500552 +The total amount of wall time = 185.025616 +The maximum resident set size (KB) = 1502004 Test 089 control_debug_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/regional_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_debug Checking test 090 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1046.635780 -The maximum resident set size (KB) = 675304 +The total amount of wall time = 1044.948003 +The maximum resident set size (KB) = 673288 Test 090 regional_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_control_debug Checking test 091 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.917895 -The maximum resident set size (KB) = 1049984 +The total amount of wall time = 300.436440 +The maximum resident set size (KB) = 1051488 Test 091 rap_control_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hrrr_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hrrr_control_debug Checking test 092 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 292.616328 -The maximum resident set size (KB) = 1047464 +The total amount of wall time = 292.714908 +The maximum resident set size (KB) = 1049364 Test 092 hrrr_control_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rap_unified_drag_suite_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_unified_drag_suite_debug Checking test 093 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.751505 -The maximum resident set size (KB) = 1051468 +The total amount of wall time = 299.164924 +The maximum resident set size (KB) = 1052696 Test 093 rap_unified_drag_suite_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rap_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_diag_debug Checking test 094 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 308.836618 -The maximum resident set size (KB) = 1133564 +The total amount of wall time = 308.319810 +The maximum resident set size (KB) = 1134268 Test 094 rap_diag_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_cires_ugwp_debug Checking test 095 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 305.423919 -The maximum resident set size (KB) = 1051108 +The total amount of wall time = 304.514229 +The maximum resident set size (KB) = 1051200 Test 095 rap_cires_ugwp_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rap_unified_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_unified_ugwp_debug Checking test 096 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 305.029633 -The maximum resident set size (KB) = 1052316 +The total amount of wall time = 303.920430 +The maximum resident set size (KB) = 1051016 Test 096 rap_unified_ugwp_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rap_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_lndp_debug Checking test 097 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 301.486649 -The maximum resident set size (KB) = 1051944 +The total amount of wall time = 300.552875 +The maximum resident set size (KB) = 1050516 Test 097 rap_lndp_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_flake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rap_flake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_flake_debug Checking test 098 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.707585 -The maximum resident set size (KB) = 1050008 +The total amount of wall time = 297.098938 +The maximum resident set size (KB) = 1052628 Test 098 rap_flake_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_progcld_thompson_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rap_progcld_thompson_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_progcld_thompson_debug Checking test 099 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.587535 -The maximum resident set size (KB) = 1052416 +The total amount of wall time = 298.247219 +The maximum resident set size (KB) = 1048592 Test 099 rap_progcld_thompson_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_noah_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rap_noah_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_noah_debug Checking test 100 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 292.559267 -The maximum resident set size (KB) = 1051876 +The total amount of wall time = 293.100562 +The maximum resident set size (KB) = 1046260 Test 100 rap_noah_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rap_sfcdiff_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_sfcdiff_debug Checking test 101 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.983615 -The maximum resident set size (KB) = 1053760 +The total amount of wall time = 298.368443 +The maximum resident set size (KB) = 1050976 Test 101 rap_sfcdiff_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_noah_sfcdiff_cires_ugwp_debug Checking test 102 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 489.304830 -The maximum resident set size (KB) = 1048932 +The total amount of wall time = 488.159756 +The maximum resident set size (KB) = 1052528 Test 102 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1beta_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rrfs_v1beta_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rrfs_v1beta_debug Checking test 103 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 294.221928 -The maximum resident set size (KB) = 1045828 +The total amount of wall time = 292.284380 +The maximum resident set size (KB) = 1046112 Test 103 rrfs_v1beta_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wam_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_wam_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_wam_debug Checking test 104 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 295.232209 -The maximum resident set size (KB) = 302760 +The total amount of wall time = 296.277054 +The maximum resident set size (KB) = 299056 Test 104 control_wam_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 105 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3442,14 +3442,14 @@ Checking test 105 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 231.666655 -The maximum resident set size (KB) = 883008 +The total amount of wall time = 231.757094 +The maximum resident set size (KB) = 878708 Test 105 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_control_dyn32_phy32 Checking test 106 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3496,14 +3496,14 @@ Checking test 106 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 352.420588 -The maximum resident set size (KB) = 771452 +The total amount of wall time = 352.043171 +The maximum resident set size (KB) = 772360 Test 106 rap_control_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hrrr_control_dyn32_phy32 Checking test 107 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3550,14 +3550,14 @@ Checking test 107 hrrr_control_dyn32_phy32 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 = 187.954750 -The maximum resident set size (KB) = 773916 +The total amount of wall time = 186.963977 +The maximum resident set size (KB) = 774084 Test 107 hrrr_control_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rap_2threads_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_2threads_dyn32_phy32 Checking test 108 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3604,14 +3604,14 @@ Checking test 108 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 331.120899 -The maximum resident set size (KB) = 826116 +The total amount of wall time = 328.576386 +The maximum resident set size (KB) = 828660 Test 108 rap_2threads_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hrrr_control_2threads_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hrrr_control_2threads_dyn32_phy32 Checking test 109 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3658,14 +3658,14 @@ Checking test 109 hrrr_control_2threads_dyn32_phy32 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 = 172.515178 -The maximum resident set size (KB) = 821844 +The total amount of wall time = 171.878221 +The maximum resident set size (KB) = 826784 Test 109 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hrrr_control_decomp_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hrrr_control_decomp_dyn32_phy32 Checking test 110 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3712,14 +3712,14 @@ Checking test 110 hrrr_control_decomp_dyn32_phy32 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 = 193.742061 -The maximum resident set size (KB) = 773076 +The total amount of wall time = 194.008348 +The maximum resident set size (KB) = 771816 Test 110 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rap_restart_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_restart_dyn32_phy32 Checking test 111 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3758,14 +3758,14 @@ Checking test 111 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 259.025458 -The maximum resident set size (KB) = 610496 +The total amount of wall time = 257.683723 +The maximum resident set size (KB) = 613972 Test 111 rap_restart_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hrrr_control_restart_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hrrr_control_restart_dyn32_phy32 Checking test 112 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3804,14 +3804,14 @@ Checking test 112 hrrr_control_restart_dyn32_phy32 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 = 96.941551 -The maximum resident set size (KB) = 604264 +The total amount of wall time = 96.413932 +The maximum resident set size (KB) = 604336 Test 112 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rap_control_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_control_dyn64_phy32 Checking test 113 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3858,81 +3858,81 @@ Checking test 113 rap_control_dyn64_phy32 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 = 233.364580 -The maximum resident set size (KB) = 788556 +The total amount of wall time = 235.180562 +The maximum resident set size (KB) = 793688 Test 113 rap_control_dyn64_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rap_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_control_debug_dyn32_phy32 Checking test 114 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 292.605131 -The maximum resident set size (KB) = 936364 +The total amount of wall time = 293.441295 +The maximum resident set size (KB) = 935524 Test 114 rap_control_debug_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hrrr_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hrrr_control_debug_dyn32_phy32 Checking test 115 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 287.649718 -The maximum resident set size (KB) = 935296 +The total amount of wall time = 287.792674 +The maximum resident set size (KB) = 938172 Test 115 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/rap_control_dyn64_phy32_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_control_dyn64_phy32_debug Checking test 116 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 292.423911 -The maximum resident set size (KB) = 960556 +The total amount of wall time = 292.082353 +The maximum resident set size (KB) = 953204 Test 116 rap_control_dyn64_phy32_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hafs_regional_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hafs_regional_atm Checking test 117 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 268.658631 -The maximum resident set size (KB) = 824140 +The total amount of wall time = 270.115105 +The maximum resident set size (KB) = 825684 Test 117 hafs_regional_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hafs_regional_atm_thompson_gfdlsf Checking test 118 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 309.181997 -The maximum resident set size (KB) = 1183176 +The total amount of wall time = 313.085230 +The maximum resident set size (KB) = 1175724 Test 118 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hafs_regional_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hafs_regional_atm_ocn Checking test 119 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3941,14 +3941,14 @@ Checking test 119 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 386.864804 -The maximum resident set size (KB) = 858088 +The total amount of wall time = 387.693127 +The maximum resident set size (KB) = 858284 Test 119 hafs_regional_atm_ocn PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hafs_regional_atm_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hafs_regional_atm_wav Checking test 120 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3957,14 +3957,14 @@ Checking test 120 hafs_regional_atm_wav 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.303669 -The maximum resident set size (KB) = 884796 +The total amount of wall time = 701.529293 +The maximum resident set size (KB) = 883988 Test 120 hafs_regional_atm_wav PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hafs_regional_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hafs_regional_atm_ocn_wav Checking test 121 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3975,28 +3975,28 @@ Checking test 121 hafs_regional_atm_ocn_wav 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 = 887.773390 -The maximum resident set size (KB) = 911496 +The total amount of wall time = 904.871763 +The maximum resident set size (KB) = 914000 Test 121 hafs_regional_atm_ocn_wav PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hafs_regional_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hafs_regional_1nest_atm Checking test 122 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 331.069670 -The maximum resident set size (KB) = 392992 +The total amount of wall time = 333.029548 +The maximum resident set size (KB) = 392492 Test 122 hafs_regional_1nest_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hafs_regional_telescopic_2nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hafs_regional_telescopic_2nests_atm Checking test 123 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4005,28 +4005,28 @@ Checking test 123 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 403.016994 -The maximum resident set size (KB) = 403300 +The total amount of wall time = 404.887674 +The maximum resident set size (KB) = 400760 Test 123 hafs_regional_telescopic_2nests_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hafs_global_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hafs_global_1nest_atm Checking test 124 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 171.677313 -The maximum resident set size (KB) = 263924 +The total amount of wall time = 171.342424 +The maximum resident set size (KB) = 268960 Test 124 hafs_global_1nest_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_multiple_4nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hafs_global_multiple_4nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hafs_global_multiple_4nests_atm Checking test 125 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4044,14 +4044,14 @@ Checking test 125 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -The total amount of wall time = 488.845821 -The maximum resident set size (KB) = 345312 +The total amount of wall time = 490.328657 +The maximum resident set size (KB) = 344904 Test 125 hafs_global_multiple_4nests_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hafs_regional_specified_moving_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hafs_regional_specified_moving_1nest_atm Checking test 126 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4060,28 +4060,28 @@ Checking test 126 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 217.635993 -The maximum resident set size (KB) = 405964 +The total amount of wall time = 217.769907 +The maximum resident set size (KB) = 405108 Test 126 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hafs_regional_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hafs_regional_storm_following_1nest_atm Checking test 127 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 205.509154 -The maximum resident set size (KB) = 406048 +The total amount of wall time = 206.435489 +The maximum resident set size (KB) = 406156 Test 127 hafs_regional_storm_following_1nest_atm PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hafs_regional_storm_following_1nest_atm_ocn Checking test 128 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4090,30 +4090,42 @@ Checking test 128 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 251.389001 -The maximum resident set size (KB) = 467008 +The total amount of wall time = 252.757236 +The maximum resident set size (KB) = 469328 Test 128 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hafs_global_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hafs_global_storm_following_1nest_atm Checking test 129 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 84.876152 -The maximum resident set size (KB) = 282176 +The total amount of wall time = 84.877538 +The maximum resident set size (KB) = 277536 Test 129 hafs_global_storm_following_1nest_atm PASS -Test 130 hafs_regional_storm_following_1nest_atm_ocn_debug FAIL + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hafs_regional_storm_following_1nest_atm_ocn_debug +Checking test 130 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 804.051280 +The maximum resident set size (KB) = 488372 + +Test 130 hafs_regional_storm_following_1nest_atm_ocn_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 131 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4124,14 +4136,14 @@ Checking test 131 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 502.336093 -The maximum resident set size (KB) = 528272 +The total amount of wall time = 501.620933 +The maximum resident set size (KB) = 522196 Test 131 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_docn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hafs_regional_docn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hafs_regional_docn Checking test 132 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4139,14 +4151,14 @@ Checking test 132 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 368.290017 -The maximum resident set size (KB) = 862588 +The total amount of wall time = 368.600146 +The maximum resident set size (KB) = 861524 Test 132 hafs_regional_docn PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_docn_oisst -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hafs_regional_docn_oisst +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hafs_regional_docn_oisst Checking test 133 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4154,131 +4166,131 @@ Checking test 133 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 369.512790 -The maximum resident set size (KB) = 847332 +The total amount of wall time = 369.860078 +The maximum resident set size (KB) = 847960 Test 133 hafs_regional_docn_oisst PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_datm_cdeps -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/hafs_regional_datm_cdeps +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hafs_regional_datm_cdeps Checking test 134 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -The total amount of wall time = 945.598383 -The maximum resident set size (KB) = 834988 +The total amount of wall time = 947.106246 +The maximum resident set size (KB) = 833556 Test 134 hafs_regional_datm_cdeps PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/datm_cdeps_control_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/datm_cdeps_control_cfsr Checking test 135 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.673759 -The maximum resident set size (KB) = 734820 +The total amount of wall time = 140.666616 +The maximum resident set size (KB) = 732108 Test 135 datm_cdeps_control_cfsr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/datm_cdeps_restart_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/datm_cdeps_restart_cfsr Checking test 136 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 85.436396 -The maximum resident set size (KB) = 730196 +The total amount of wall time = 86.019297 +The maximum resident set size (KB) = 728436 Test 136 datm_cdeps_restart_cfsr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/datm_cdeps_control_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/datm_cdeps_control_gefs Checking test 137 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 133.837671 -The maximum resident set size (KB) = 612600 +The total amount of wall time = 133.766182 +The maximum resident set size (KB) = 612892 Test 137 datm_cdeps_control_gefs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_iau_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/datm_cdeps_iau_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/datm_cdeps_iau_gefs Checking test 138 datm_cdeps_iau_gefs 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.415523 -The maximum resident set size (KB) = 615460 +The total amount of wall time = 135.660432 +The maximum resident set size (KB) = 611276 Test 138 datm_cdeps_iau_gefs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_stochy_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/datm_cdeps_stochy_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/datm_cdeps_stochy_gefs Checking test 139 datm_cdeps_stochy_gefs 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.574166 -The maximum resident set size (KB) = 613884 +The total amount of wall time = 136.805751 +The maximum resident set size (KB) = 615576 Test 139 datm_cdeps_stochy_gefs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/datm_cdeps_ciceC_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/datm_cdeps_ciceC_cfsr Checking test 140 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.182551 -The maximum resident set size (KB) = 733924 +The total amount of wall time = 140.957978 +The maximum resident set size (KB) = 733384 Test 140 datm_cdeps_ciceC_cfsr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/datm_cdeps_bulk_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/datm_cdeps_bulk_cfsr Checking test 141 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.379622 -The maximum resident set size (KB) = 732656 +The total amount of wall time = 141.875323 +The maximum resident set size (KB) = 732476 Test 141 datm_cdeps_bulk_cfsr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/datm_cdeps_bulk_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/datm_cdeps_bulk_gefs Checking test 142 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 134.667118 -The maximum resident set size (KB) = 616340 +The total amount of wall time = 132.955777 +The maximum resident set size (KB) = 620428 Test 142 datm_cdeps_bulk_gefs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/datm_cdeps_mx025_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/datm_cdeps_mx025_cfsr Checking test 143 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4287,14 +4299,14 @@ Checking test 143 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 428.616620 -The maximum resident set size (KB) = 571772 +The total amount of wall time = 428.530056 +The maximum resident set size (KB) = 570824 Test 143 datm_cdeps_mx025_cfsr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/datm_cdeps_mx025_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/datm_cdeps_mx025_gefs Checking test 144 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4303,64 +4315,64 @@ Checking test 144 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 424.733943 -The maximum resident set size (KB) = 553988 +The total amount of wall time = 426.819736 +The maximum resident set size (KB) = 553144 Test 144 datm_cdeps_mx025_gefs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/datm_cdeps_multiple_files_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/datm_cdeps_multiple_files_cfsr Checking test 145 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 140.723685 -The maximum resident set size (KB) = 733272 +The total amount of wall time = 140.881794 +The maximum resident set size (KB) = 734144 Test 145 datm_cdeps_multiple_files_cfsr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/datm_cdeps_3072x1536_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/datm_cdeps_3072x1536_cfsr Checking test 146 datm_cdeps_3072x1536_cfsr 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 = 256.504764 -The maximum resident set size (KB) = 1980956 +The total amount of wall time = 256.993785 +The maximum resident set size (KB) = 1981204 Test 146 datm_cdeps_3072x1536_cfsr PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_gfs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/datm_cdeps_gfs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/datm_cdeps_gfs Checking test 147 datm_cdeps_gfs 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 = 255.454958 -The maximum resident set size (KB) = 1977180 +The total amount of wall time = 256.582588 +The maximum resident set size (KB) = 1979332 Test 147 datm_cdeps_gfs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/datm_cdeps_control_cfsr_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/datm_cdeps_control_cfsr_faster Checking test 148 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.023668 -The maximum resident set size (KB) = 733396 +The total amount of wall time = 141.095571 +The maximum resident set size (KB) = 731608 Test 148 datm_cdeps_control_cfsr_faster PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/datm_cdeps_lnd_gswp3 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/datm_cdeps_lnd_gswp3 Checking test 149 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4369,14 +4381,14 @@ Checking test 149 datm_cdeps_lnd_gswp3 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 = 21.827151 -The maximum resident set size (KB) = 230432 +The total amount of wall time = 22.096349 +The maximum resident set size (KB) = 227292 Test 149 datm_cdeps_lnd_gswp3 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/datm_cdeps_lnd_gswp3_rst +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/datm_cdeps_lnd_gswp3_rst Checking test 150 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4385,14 +4397,14 @@ Checking test 150 datm_cdeps_lnd_gswp3_rst 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.202287 -The maximum resident set size (KB) = 228352 +The total amount of wall time = 26.982569 +The maximum resident set size (KB) = 229492 Test 150 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_atmlnd_sbs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_p8_atmlnd_sbs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_p8_atmlnd_sbs Checking test 151 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4477,14 +4489,14 @@ Checking test 151 control_p8_atmlnd_sbs 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 = 234.656625 -The maximum resident set size (KB) = 1534332 +The total amount of wall time = 236.289314 +The maximum resident set size (KB) = 1536408 Test 151 control_p8_atmlnd_sbs PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/atmwav_control_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/atmwav_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/atmwav_control_noaero_p8 Checking test 152 atmwav_control_noaero_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4527,14 +4539,14 @@ Checking test 152 atmwav_control_noaero_p8 results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK -The total amount of wall time = 108.702077 -The maximum resident set size (KB) = 1528172 +The total amount of wall time = 110.290917 +The maximum resident set size (KB) = 1530272 Test 152 atmwav_control_noaero_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_atmwav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/control_atmwav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_atmwav Checking test 153 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4578,14 +4590,14 @@ Checking test 153 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -The total amount of wall time = 91.920065 -The maximum resident set size (KB) = 541068 +The total amount of wall time = 92.120639 +The maximum resident set size (KB) = 541620 Test 153 control_atmwav PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/atmaero_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/atmaero_control_p8 Checking test 154 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4629,14 +4641,14 @@ Checking test 154 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 245.113354 -The maximum resident set size (KB) = 2815712 +The total amount of wall time = 243.632715 +The maximum resident set size (KB) = 2812396 Test 154 atmaero_control_p8 PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8_rad -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/atmaero_control_p8_rad +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/atmaero_control_p8_rad Checking test 155 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4680,14 +4692,14 @@ Checking test 155 atmaero_control_p8_rad results .... 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.810567 -The maximum resident set size (KB) = 2876784 +The total amount of wall time = 282.829081 +The maximum resident set size (KB) = 2878356 Test 155 atmaero_control_p8_rad PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/atmaero_control_p8_rad_micro +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/atmaero_control_p8_rad_micro Checking test 156 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4731,14 +4743,14 @@ Checking test 156 atmaero_control_p8_rad_micro results .... 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.075754 -The maximum resident set size (KB) = 2884388 +The total amount of wall time = 287.878626 +The maximum resident set size (KB) = 2885196 Test 156 atmaero_control_p8_rad_micro PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/regional_atmaq +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_atmaq Checking test 157 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4754,16 +4766,35 @@ Checking test 157 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 677.943814 -The maximum resident set size (KB) = 1256784 +The total amount of wall time = 682.977333 +The maximum resident set size (KB) = 1257296 Test 157 regional_atmaq PASS -Test 158 regional_atmaq_debug FAIL + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_atmaq_debug +Checking test 158 regional_atmaq_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing RESTART/20190801.130000.coupler.res .........OK + Comparing RESTART/20190801.130000.fv_core.res.nc .........OK + Comparing RESTART/20190801.130000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20190801.130000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20190801.130000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20190801.130000.phy_data.nc .........OK + Comparing RESTART/20190801.130000.sfc_data.nc .........OK + +The total amount of wall time = 1307.193464 +The maximum resident set size (KB) = 1291952 + +Test 158 regional_atmaq_debug PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_14681/regional_atmaq_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_atmaq_faster Checking test 159 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4779,59 +4810,12 @@ Checking test 159 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 635.493432 -The maximum resident set size (KB) = 1258428 +The total amount of wall time = 632.615419 +The maximum resident set size (KB) = 1255852 Test 159 regional_atmaq_faster PASS -FAILED TESTS: -Test hafs_regional_storm_following_1nest_atm_ocn_debug 130 failed in run_test failed -Test regional_atmaq_debug 158 failed in run_test failed - -REGRESSION TEST FAILED -Wed Apr 19 22:22:23 UTC 2023 -Elapsed time: 02h:47m:22s. Have a nice day! -Thu Apr 20 12:28:42 UTC 2023 -Start Regression test - -Compile 001 elapsed time 173 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 002 elapsed time 158 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_132784/hafs_regional_storm_following_1nest_atm_ocn_debug -Checking test 001 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 801.538137 -The maximum resident set size (KB) = 487692 - -Test 001 hafs_regional_storm_following_1nest_atm_ocn_debug PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_132784/regional_atmaq_debug -Checking test 002 regional_atmaq_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing RESTART/20190801.130000.coupler.res .........OK - Comparing RESTART/20190801.130000.fv_core.res.nc .........OK - Comparing RESTART/20190801.130000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20190801.130000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20190801.130000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20190801.130000.phy_data.nc .........OK - Comparing RESTART/20190801.130000.sfc_data.nc .........OK - -The total amount of wall time = 1301.091721 -The maximum resident set size (KB) = 1292664 - -Test 002 regional_atmaq_debug PASS - REGRESSION TEST WAS SUCCESSFUL -Thu Apr 20 13:10:50 UTC 2023 -Elapsed time: 00h:42m:09s. Have a nice day! +Fri Apr 21 19:55:36 UTC 2023 +Elapsed time: 01h:30m:13s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index ba6dbda628e..6a0f0580cca 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,21 +1,21 @@ -Tue Apr 18 21:56:13 MDT 2023 +Fri Apr 21 11:14:13 MDT 2023 Start Regression test -Compile 001 elapsed time 384 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 379 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile 002 elapsed time 404 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 882 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 189 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 377 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 1125 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 881 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 880 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 641 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 579 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 347 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 012 elapsed time 304 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 868 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 187 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 376 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 1112 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 863 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 868 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 658 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 570 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 350 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 012 elapsed time 297 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/control_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/control_c48 +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/control_c48 Checking test 001 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -54,14 +54,14 @@ Checking test 001 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 823.628697 -0:The maximum resident set size (KB) = 679820 +0:The total amount of wall time = 820.092534 +0:The maximum resident set size (KB) = 679748 Test 001 control_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/control_stochy +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/control_stochy Checking test 002 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -72,14 +72,14 @@ Checking test 002 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 178.086943 -0:The maximum resident set size (KB) = 443384 +0:The total amount of wall time = 178.243191 +0:The maximum resident set size (KB) = 443848 Test 002 control_stochy PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/control_ras -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/control_ras +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/control_ras Checking test 003 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -90,14 +90,14 @@ Checking test 003 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 293.942304 -0:The maximum resident set size (KB) = 452396 +0:The total amount of wall time = 295.479192 +0:The maximum resident set size (KB) = 452736 Test 003 control_ras PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/control_p8 +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/control_p8 Checking test 004 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -144,14 +144,14 @@ Checking test 004 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 311.451227 -0:The maximum resident set size (KB) = 1225040 +0:The total amount of wall time = 310.005003 +0:The maximum resident set size (KB) = 1226792 Test 004 control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rap_control +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rap_control Checking test 005 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -198,14 +198,14 @@ Checking test 005 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 710.283670 -0:The maximum resident set size (KB) = 791820 +0:The total amount of wall time = 716.233417 +0:The maximum resident set size (KB) = 792492 Test 005 rap_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rap_decomp +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rap_decomp Checking test 006 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -252,14 +252,14 @@ Checking test 006 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 720.003905 -0:The maximum resident set size (KB) = 791508 +0:The total amount of wall time = 721.043888 +0:The maximum resident set size (KB) = 791908 Test 006 rap_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rap_2threads +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rap_2threads Checking test 007 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -306,14 +306,14 @@ Checking test 007 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 656.320166 -0:The maximum resident set size (KB) = 866180 +0:The total amount of wall time = 662.309640 +0:The maximum resident set size (KB) = 866600 Test 007 rap_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rap_restart +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rap_restart Checking test 008 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -352,14 +352,14 @@ Checking test 008 rap_restart results .... Comparing 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.994349 -0:The maximum resident set size (KB) = 539128 +0:The total amount of wall time = 356.198531 +0:The maximum resident set size (KB) = 539240 Test 008 rap_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rap_sfcdiff Checking test 009 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -406,14 +406,14 @@ Checking test 009 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 715.767104 -0:The maximum resident set size (KB) = 791884 +0:The total amount of wall time = 716.151679 +0:The maximum resident set size (KB) = 792264 Test 009 rap_sfcdiff PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rap_sfcdiff_decomp +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rap_sfcdiff_decomp Checking test 010 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -460,14 +460,14 @@ Checking test 010 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 725.293406 -0:The maximum resident set size (KB) = 791340 +0:The total amount of wall time = 727.586043 +0:The maximum resident set size (KB) = 791596 Test 010 rap_sfcdiff_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rap_sfcdiff_restart +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rap_sfcdiff_restart Checking test 011 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -506,14 +506,14 @@ Checking test 011 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 528.427451 -0:The maximum resident set size (KB) = 544260 +0:The total amount of wall time = 530.907873 +0:The maximum resident set size (KB) = 545684 Test 011 rap_sfcdiff_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/hrrr_control +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/hrrr_control Checking test 012 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -560,14 +560,14 @@ Checking test 012 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 693.538706 -0:The maximum resident set size (KB) = 789124 +0:The total amount of wall time = 692.983137 +0:The maximum resident set size (KB) = 789436 Test 012 hrrr_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/hrrr_control_2threads +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/hrrr_control_2threads Checking test 013 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -614,14 +614,14 @@ Checking test 013 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 629.031978 -0:The maximum resident set size (KB) = 860468 +0:The total amount of wall time = 624.735590 +0:The maximum resident set size (KB) = 860296 Test 013 hrrr_control_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/hrrr_control_decomp +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/hrrr_control_decomp Checking test 014 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -668,14 +668,14 @@ Checking test 014 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 691.947893 -0:The maximum resident set size (KB) = 788828 +0:The total amount of wall time = 693.018683 +0:The maximum resident set size (KB) = 789768 Test 014 hrrr_control_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/hrrr_control_restart +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/hrrr_control_restart Checking test 015 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -714,14 +714,14 @@ Checking test 015 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 512.192687 -0:The maximum resident set size (KB) = 540376 +0:The total amount of wall time = 512.158958 +0:The maximum resident set size (KB) = 540528 Test 015 hrrr_control_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_v1beta -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rrfs_v1beta +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rrfs_v1beta Checking test 016 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -768,14 +768,14 @@ Checking test 016 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 705.742245 -0:The maximum resident set size (KB) = 788796 +0:The total amount of wall time = 706.611951 +0:The maximum resident set size (KB) = 789268 Test 016 rrfs_v1beta PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rrfs_smoke_conus13km_hrrr_warm Checking test 017 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -784,14 +784,14 @@ Checking test 017 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 232.717077 -0:The maximum resident set size (KB) = 636600 +0:The total amount of wall time = 232.174520 +0:The maximum resident set size (KB) = 636528 Test 017 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rrfs_smoke_conus13km_hrrr_warm_2threads +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 018 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -800,14 +800,14 @@ Checking test 018 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 147.619665 -0:The maximum resident set size (KB) = 655708 +0:The total amount of wall time = 146.345291 +0:The maximum resident set size (KB) = 655004 Test 018 rrfs_smoke_conus13km_hrrr_warm_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rrfs_conus13km_hrrr_warm Checking test 019 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -816,14 +816,14 @@ Checking test 019 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 212.310793 -0:The maximum resident set size (KB) = 615816 +0:The total amount of wall time = 212.502976 +0:The maximum resident set size (KB) = 615824 Test 019 rrfs_conus13km_hrrr_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rrfs_smoke_conus13km_radar_tten_warm +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rrfs_smoke_conus13km_radar_tten_warm Checking test 020 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -832,234 +832,234 @@ Checking test 020 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 231.399056 -0:The maximum resident set size (KB) = 639340 +0:The total amount of wall time = 232.774128 +0:The maximum resident set size (KB) = 639292 Test 020 rrfs_smoke_conus13km_radar_tten_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 021 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 111.140208 -0:The maximum resident set size (KB) = 596568 +0:The total amount of wall time = 110.782794 +0:The maximum resident set size (KB) = 596436 Test 021 rrfs_conus13km_hrrr_warm_restart_mismatch PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/control_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/control_diag_debug +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/control_diag_debug Checking test 022 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 82.327558 -0:The maximum resident set size (KB) = 491708 +0:The total amount of wall time = 82.945457 +0:The maximum resident set size (KB) = 491476 Test 022 control_diag_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/regional_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/regional_debug +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/regional_debug Checking test 023 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 473.939334 -0:The maximum resident set size (KB) = 567704 +0:The total amount of wall time = 483.827196 +0:The maximum resident set size (KB) = 567124 Test 023 regional_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rap_control_debug +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rap_control_debug Checking test 024 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 145.591603 -0:The maximum resident set size (KB) = 805700 +0:The total amount of wall time = 147.918625 +0:The maximum resident set size (KB) = 805616 Test 024 rap_control_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/hrrr_control_debug +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/hrrr_control_debug Checking test 025 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 142.608939 -0:The maximum resident set size (KB) = 801356 +0:The total amount of wall time = 144.367559 +0:The maximum resident set size (KB) = 802076 Test 025 hrrr_control_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rap_diag_debug +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rap_diag_debug Checking test 026 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 152.367075 -0:The maximum resident set size (KB) = 888320 +0:The total amount of wall time = 154.105330 +0:The maximum resident set size (KB) = 888316 Test 026 rap_diag_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rap_noah_sfcdiff_cires_ugwp_debug Checking test 027 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 233.429552 -0:The maximum resident set size (KB) = 804232 +0:The total amount of wall time = 237.365950 +0:The maximum resident set size (KB) = 804068 Test 027 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_progcld_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rap_progcld_thompson_debug +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rap_progcld_thompson_debug Checking test 028 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 145.203191 -0:The maximum resident set size (KB) = 805740 +0:The total amount of wall time = 146.876353 +0:The maximum resident set size (KB) = 805352 Test 028 rap_progcld_thompson_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_v1beta_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rrfs_v1beta_debug +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rrfs_v1beta_debug Checking test 029 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 143.633308 -0:The maximum resident set size (KB) = 801260 +0:The total amount of wall time = 145.482124 +0:The maximum resident set size (KB) = 801304 Test 029 rrfs_v1beta_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/control_ras_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/control_ras_debug +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/control_ras_debug Checking test 030 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 81.237908 -0:The maximum resident set size (KB) = 445948 +0:The total amount of wall time = 81.573920 +0:The maximum resident set size (KB) = 446656 Test 030 control_ras_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/control_stochy_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/control_stochy_debug +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/control_stochy_debug Checking test 031 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 88.006316 -0:The maximum resident set size (KB) = 438784 +0:The total amount of wall time = 89.961958 +0:The maximum resident set size (KB) = 438112 Test 031 control_stochy_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/control_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/control_debug_p8 +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/control_debug_p8 Checking test 032 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 91.213747 -0:The maximum resident set size (KB) = 1221440 +0:The total amount of wall time = 91.862405 +0:The maximum resident set size (KB) = 1221280 Test 032 control_debug_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 033 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 434.138020 -0:The maximum resident set size (KB) = 641740 +0:The total amount of wall time = 440.514734 +0:The maximum resident set size (KB) = 641444 Test 033 rrfs_smoke_conus13km_hrrr_warm_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 034 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 254.941951 -0:The maximum resident set size (KB) = 660864 +0:The total amount of wall time = 258.466829 +0:The maximum resident set size (KB) = 665592 Test 034 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rrfs_conus13km_hrrr_warm_debug +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rrfs_conus13km_hrrr_warm_debug Checking test 035 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 395.201830 -0:The maximum resident set size (KB) = 620064 +0:The total amount of wall time = 400.157967 +0:The maximum resident set size (KB) = 619848 Test 035 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/control_wam_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/control_wam_debug +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/control_wam_debug Checking test 036 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 143.260593 -0:The maximum resident set size (KB) = 182384 +0:The total amount of wall time = 140.125540 +0:The maximum resident set size (KB) = 183548 Test 036 control_wam_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rap_control_dyn32_phy32 Checking test 037 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1106,14 +1106,14 @@ Checking test 037 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 706.794831 -0:The maximum resident set size (KB) = 672152 +0:The total amount of wall time = 703.789376 +0:The maximum resident set size (KB) = 673768 Test 037 rap_control_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/hrrr_control_dyn32_phy32 Checking test 038 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1160,14 +1160,14 @@ Checking test 038 hrrr_control_dyn32_phy32 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 = 357.526055 -0:The maximum resident set size (KB) = 671932 +0:The total amount of wall time = 355.350362 +0:The maximum resident set size (KB) = 671136 Test 038 hrrr_control_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rap_2threads_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rap_2threads_dyn32_phy32 Checking test 039 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1214,14 +1214,14 @@ Checking test 039 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 644.567909 -0:The maximum resident set size (KB) = 720212 +0:The total amount of wall time = 645.572568 +0:The maximum resident set size (KB) = 720236 Test 039 rap_2threads_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/hrrr_control_2threads_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/hrrr_control_2threads_dyn32_phy32 Checking test 040 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1268,14 +1268,14 @@ Checking test 040 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 323.489347 -0:The maximum resident set size (KB) = 716660 +0:The total amount of wall time = 322.783525 +0:The maximum resident set size (KB) = 717272 Test 040 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/hrrr_control_decomp_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/hrrr_control_decomp_dyn32_phy32 Checking test 041 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1322,14 +1322,14 @@ Checking test 041 hrrr_control_decomp_dyn32_phy32 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 = 355.430054 -0:The maximum resident set size (KB) = 669900 +0:The total amount of wall time = 356.104222 +0:The maximum resident set size (KB) = 670224 Test 041 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rap_restart_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rap_restart_dyn32_phy32 Checking test 042 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1368,14 +1368,14 @@ Checking test 042 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 526.748176 -0:The maximum resident set size (KB) = 511516 +0:The total amount of wall time = 522.334314 +0:The maximum resident set size (KB) = 512064 Test 042 rap_restart_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/hrrr_control_restart_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/hrrr_control_restart_dyn32_phy32 Checking test 043 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1414,14 +1414,14 @@ Checking test 043 hrrr_control_restart_dyn32_phy32 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 = 181.416017 -0:The maximum resident set size (KB) = 507520 +0:The total amount of wall time = 180.613272 +0:The maximum resident set size (KB) = 507152 Test 043 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rap_control_dyn64_phy32 +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rap_control_dyn64_phy32 Checking test 044 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1468,56 +1468,56 @@ Checking test 044 rap_control_dyn64_phy32 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 = 414.480487 -0:The maximum resident set size (KB) = 693368 +0:The total amount of wall time = 406.288061 +0:The maximum resident set size (KB) = 693588 Test 044 rap_control_dyn64_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rap_control_debug_dyn32_phy32 Checking test 045 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 143.793225 -0:The maximum resident set size (KB) = 688024 +0:The total amount of wall time = 144.064213 +0:The maximum resident set size (KB) = 687732 Test 045 rap_control_debug_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/hrrr_control_debug_dyn32_phy32 Checking test 046 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 142.073553 -0:The maximum resident set size (KB) = 683884 +0:The total amount of wall time = 143.497782 +0:The maximum resident set size (KB) = 683920 Test 046 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/rap_control_dyn64_phy32_debug +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rap_control_dyn64_phy32_debug Checking test 047 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 148.148992 -0:The maximum resident set size (KB) = 707780 +0:The total amount of wall time = 152.771584 +0:The maximum resident set size (KB) = 707604 Test 047 rap_control_dyn64_phy32_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/cpld_control_p8 Checking test 048 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1582,14 +1582,14 @@ Checking test 048 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 500.422889 -0:The maximum resident set size (KB) = 3159044 +0:The total amount of wall time = 500.863330 +0:The maximum resident set size (KB) = 3158608 Test 048 cpld_control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/cpld_control_nowave_noaero_p8 +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/cpld_control_nowave_noaero_p8 Checking test 049 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1651,14 +1651,14 @@ Checking test 049 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 250.410855 -0:The maximum resident set size (KB) = 1241772 +0:The total amount of wall time = 251.132624 +0:The maximum resident set size (KB) = 1240572 Test 049 cpld_control_nowave_noaero_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/cpld_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/cpld_debug_p8 +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/cpld_debug_p8 Checking test 050 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1711,25 +1711,25 @@ Checking test 050 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 199.990971 -0:The maximum resident set size (KB) = 3172664 +0:The total amount of wall time = 201.087755 +0:The maximum resident set size (KB) = 3172904 Test 050 cpld_debug_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_73141/datm_cdeps_control_cfsr +working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/datm_cdeps_control_cfsr Checking test 051 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 173.205289 -0:The maximum resident set size (KB) = 670008 +0:The total amount of wall time = 173.972822 +0:The maximum resident set size (KB) = 673660 Test 051 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Tue Apr 18 22:31:15 MDT 2023 -Elapsed time: 00h:35m:03s. Have a nice day! +Fri Apr 21 11:49:28 MDT 2023 +Elapsed time: 00h:35m:16s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 23b0456056d..7b27868dd6c 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,14094 +1,43 @@ -+ echo PID=4042 -PID=4042 -+ SECONDS=0 -+ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT -+ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT -+ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM -+ [[ 4 != 4 ]] -+ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ export 'MAKE_OPT=-DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp' -+ MAKE_OPT='-DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp' -+ export COMPILE_NR=001 -+ COMPILE_NR=001 -+ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ OPNREQ_TEST=false -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_001' -Removing test failure flag file for compile_001 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_001 -+ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_001.env ]] -+ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_001.env -++ export JOB_NR=001 -++ JOB_NR=001 -++ export COMPILE_NR=001 -++ COMPILE_NR=001 -++ export MACHINE_ID=cheyenne.intel -++ MACHINE_ID=cheyenne.intel -++ export RT_COMPILER=intel -++ RT_COMPILER=intel -++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ export SCHEDULER=pbs -++ SCHEDULER=pbs -++ export ACCNR=NRAL0032 -++ ACCNR=NRAL0032 -++ export QUEUE=regular -++ QUEUE=regular -++ export PARTITION= -++ PARTITION= -++ export ROCOTO=false -++ ROCOTO=false -++ export ECFLOW=true -++ ECFLOW=true -++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ source default_vars.sh -++ THRD=1 -++ INPES_atmaero=4 -++ JNPES_atmaero=8 -++ WPG_atmaero=6 -++ THRD_cpl_atmw=1 -++ INPES_cpl_atmw=3 -++ JNPES_cpl_atmw=8 -++ WPG_cpl_atmw=6 -++ WAV_tasks_cpl_atmw=30 -++ WAV_thrds_cpl_atmw=1 -++ THRD_cpl_c48=1 -++ INPES_cpl_c48=1 -++ JNPES_cpl_c48=1 -++ WPG_cpl_c48=6 -++ OCN_tasks_cpl_c48=4 -++ ICE_tasks_cpl_c48=4 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=3 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=3 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ OCN_thrds_cpl_thrd=1 -++ ICE_tasks_cpl_thrd=10 -++ ICE_thrds_cpl_thrd=1 -++ WAV_tasks_cpl_thrd=12 -++ WAV_thrds_cpl_thrd=2 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=6 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=4 -++ JNPES_cpl_mpi=8 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=34 -++ ICE_tasks_cpl_mpi=20 -++ WAV_tasks_cpl_mpi=28 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=8 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ OCN_thrds_cpl_bmrk=1 -++ ICE_tasks_cpl_bmrk=48 -++ ICE_thrds_cpl_bmrk=1 -++ WAV_tasks_cpl_bmrk=80 -++ WAV_thrds_cpl_bmrk=2 -++ THRD_cpl_c192=2 -++ INPES_cpl_c192=6 -++ JNPES_cpl_c192=8 -++ WPG_cpl_c192=12 -++ OCN_tasks_cpl_c192=60 -++ ICE_tasks_cpl_c192=24 -++ WAV_tasks_cpl_c192=80 -++ ATM_compute_tasks_cdeps_100=12 -++ OCN_tasks_cdeps_100=16 -++ ICE_tasks_cdeps_100=12 -++ ATM_compute_tasks_cdeps_025=40 -++ OCN_tasks_cdeps_025=120 -++ ICE_tasks_cdeps_025=48 -++ INPES_aqm=33 -++ JNPES_aqm=8 -++ aqm_omp_num_threads=1 -++ atm_omp_num_threads=1 -++ chm_omp_num_threads=1 -++ ice_omp_num_threads=1 -++ lnd_omp_num_threads=1 -++ med_omp_num_threads=1 -++ ocn_omp_num_threads=1 -++ wav_omp_num_threads=1 -++ [[ cheyenne.intel = wcoss2.* ]] -++ [[ cheyenne.intel = acorn.* ]] -++ [[ cheyenne.intel = orion.* ]] -++ [[ cheyenne.intel = hera.* ]] -++ [[ cheyenne.intel = linux.* ]] -++ [[ cheyenne.intel = jet.* ]] -++ [[ cheyenne.intel = s4.* ]] -++ [[ cheyenne.intel = gaea.* ]] -++ [[ cheyenne.intel = cheyenne.* ]] -++ TPN=36 -++ INPES_dflt=3 -++ JNPES_dflt=8 -++ INPES_thrd=3 -++ JNPES_thrd=4 -++ INPES_c384=8 -++ JNPES_c384=6 -++ THRD_c384=2 -++ INPES_c768=8 -++ JNPES_c768=16 -++ THRD_c768=2 -++ THRD_cpl_atmw_gdas=3 -++ INPES_cpl_atmw_gdas=6 -++ JNPES_cpl_atmw_gdas=8 -++ WPG_cpl_atmw_gdas=24 -++ WAV_tasks_atmw_gdas=264 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=6 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=6 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ ICE_tasks_cpl_thrd=10 -++ WAV_tasks_cpl_thrd=20 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=12 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=6 -++ JNPES_cpl_mpi=12 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=24 -++ ICE_tasks_cpl_mpi=12 -++ WAV_tasks_cpl_mpi=24 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=12 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ ICE_tasks_cpl_bmrk=48 -++ WAV_tasks_cpl_bmrk=100 -++ WLCLK_dflt=30 -++ export WLCLK=30 -++ WLCLK=30 -+ export TEST_NAME=compile -+ TEST_NAME=compile -+ export TEST_NR=001 -+ TEST_NR=001 -+ export JBNME=compile_001 -+ JBNME=compile_001 -+ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_001 -+ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_001 -++ date +%s -+ echo -n 'compile_001, 1681917418,' -+ source rt_utils.sh -++ set -eu -++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] -++ OPNREQ_TEST=false -++ qsub_id=0 -++ slurm_id=0 -++ bsub_id=0 -+ source atparse.bash -+ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_001 -+ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_001 -+ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_001 -+ [[ pbs = \s\l\u\r\m ]] -+ [[ pbs = \l\s\f ]] -+ [[ pbs = \p\b\s ]] -+ atparse -+ local __set_x -+ '[' -o xtrace ']' -+ __set_x='set -x' -+ set +x -+ [[ false = \f\a\l\s\e ]] -+ submit_and_wait job_card -+ [[ -z job_card ]] -+ '[' -o xtrace ']' -+ set_x='set -x' -+ set +x -Job id 9506856 -TEST 001 compile is waiting to enter the queue -TEST 001 compile is submitted -1 min. TEST 001 compile is waiting in a queue, status: Q jobid 9506856 -2 min. TEST 001 compile is running, status: R jobid 9506856 -3 min. TEST 001 compile is running, status: R jobid 9506856 -4 min. TEST 001 compile is running, status: R jobid 9506856 -5 min. TEST 001 compile is running, status: R jobid 9506856 -6 min. TEST 001 compile is running, status: R jobid 9506856 -7 min. TEST 001 compile is running, status: R jobid 9506856 -8 min. TEST 001 compile is running, status: R jobid 9506856 -9 min. TEST 001 compile is running, status: R jobid 9506856 -10 min. TEST 001 compile is running, status: R jobid 9506856 -11 min. TEST 001 compile is running, status: R jobid 9506856 -12 min. TEST 001 compile is running, status: R jobid 9506856 -13 min. TEST 001 compile is running, status: R jobid 9506856 -14 min. TEST 001 compile is running, status: R jobid 9506856 -15 min. TEST 001 compile is running, status: R jobid 9506856 -16 min. TEST 001 compile is running, status: R jobid 9506856 -17 min. TEST 001 compile is running, status: R jobid 9506856 -18 min. TEST 001 compile is running, status: R jobid 9506856 -19 min. TEST 001 compile is running, status: R jobid 9506856 -20 min. TEST 001 compile is running, status: R jobid 9506856 -21 min. TEST 001 compile is running, status: R jobid 9506856 -22 min. TEST 001 compile is running, status: R jobid 9506856 -23 min. TEST 001 compile is running, status: R jobid 9506856 -24 min. TEST 001 compile is running, status: R jobid 9506856 -25 min. TEST 001 compile is running, status: R jobid 9506856 -26 min. TEST 001 compile is running, status: R jobid 9506856 -qstat: 9506856.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -qstat: 9506856.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -27 min. TEST 001 compile is finished, status: - jobid 9506856 -+ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_001.exe --rwxr-xr-x 1 jongkim ncar 451703056 Apr 19 15:42 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_001.exe -+ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_001/compile_001_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_001/job_timestamp.txt -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_001' -Removing test failure flag file for compile_001 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_001 -++ date +%s -+ echo ' 1681919022, 1' -+ elapsed=1604 -+ echo 'Elapsed time 1604 seconds. Compile 001' -Elapsed time 1604 seconds. Compile 001 -+ '[' 0 -eq 0 ']' -Compile 001 elapsed time 1524 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -+ echo PID=4054 -PID=4054 -+ SECONDS=0 -+ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT -+ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT -+ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM -+ [[ 4 != 4 ]] -+ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ export 'MAKE_OPT=-DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp' -+ MAKE_OPT='-DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp' -+ export COMPILE_NR=002 -+ COMPILE_NR=002 -+ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ OPNREQ_TEST=false -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_002' -Removing test failure flag file for compile_002 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_002 -+ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_002.env ]] -+ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_002.env -++ export JOB_NR=003 -++ JOB_NR=003 -++ export COMPILE_NR=002 -++ COMPILE_NR=002 -++ export MACHINE_ID=cheyenne.intel -++ MACHINE_ID=cheyenne.intel -++ export RT_COMPILER=intel -++ RT_COMPILER=intel -++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ export SCHEDULER=pbs -++ SCHEDULER=pbs -++ export ACCNR=NRAL0032 -++ ACCNR=NRAL0032 -++ export QUEUE=regular -++ QUEUE=regular -++ export PARTITION= -++ PARTITION= -++ export ROCOTO=false -++ ROCOTO=false -++ export ECFLOW=true -++ ECFLOW=true -++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ source default_vars.sh -++ THRD=1 -++ INPES_atmaero=4 -++ JNPES_atmaero=8 -++ WPG_atmaero=6 -++ THRD_cpl_atmw=1 -++ INPES_cpl_atmw=3 -++ JNPES_cpl_atmw=8 -++ WPG_cpl_atmw=6 -++ WAV_tasks_cpl_atmw=30 -++ WAV_thrds_cpl_atmw=1 -++ THRD_cpl_c48=1 -++ INPES_cpl_c48=1 -++ JNPES_cpl_c48=1 -++ WPG_cpl_c48=6 -++ OCN_tasks_cpl_c48=4 -++ ICE_tasks_cpl_c48=4 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=3 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=3 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ OCN_thrds_cpl_thrd=1 -++ ICE_tasks_cpl_thrd=10 -++ ICE_thrds_cpl_thrd=1 -++ WAV_tasks_cpl_thrd=12 -++ WAV_thrds_cpl_thrd=2 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=6 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=4 -++ JNPES_cpl_mpi=8 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=34 -++ ICE_tasks_cpl_mpi=20 -++ WAV_tasks_cpl_mpi=28 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=8 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ OCN_thrds_cpl_bmrk=1 -++ ICE_tasks_cpl_bmrk=48 -++ ICE_thrds_cpl_bmrk=1 -++ WAV_tasks_cpl_bmrk=80 -++ WAV_thrds_cpl_bmrk=2 -++ THRD_cpl_c192=2 -++ INPES_cpl_c192=6 -++ JNPES_cpl_c192=8 -++ WPG_cpl_c192=12 -++ OCN_tasks_cpl_c192=60 -++ ICE_tasks_cpl_c192=24 -++ WAV_tasks_cpl_c192=80 -++ ATM_compute_tasks_cdeps_100=12 -++ OCN_tasks_cdeps_100=16 -++ ICE_tasks_cdeps_100=12 -++ ATM_compute_tasks_cdeps_025=40 -++ OCN_tasks_cdeps_025=120 -++ ICE_tasks_cdeps_025=48 -++ INPES_aqm=33 -++ JNPES_aqm=8 -++ aqm_omp_num_threads=1 -++ atm_omp_num_threads=1 -++ chm_omp_num_threads=1 -++ ice_omp_num_threads=1 -++ lnd_omp_num_threads=1 -++ med_omp_num_threads=1 -++ ocn_omp_num_threads=1 -++ wav_omp_num_threads=1 -++ [[ cheyenne.intel = wcoss2.* ]] -++ [[ cheyenne.intel = acorn.* ]] -++ [[ cheyenne.intel = orion.* ]] -++ [[ cheyenne.intel = hera.* ]] -++ [[ cheyenne.intel = linux.* ]] -++ [[ cheyenne.intel = jet.* ]] -++ [[ cheyenne.intel = s4.* ]] -++ [[ cheyenne.intel = gaea.* ]] -++ [[ cheyenne.intel = cheyenne.* ]] -++ TPN=36 -++ INPES_dflt=3 -++ JNPES_dflt=8 -++ INPES_thrd=3 -++ JNPES_thrd=4 -++ INPES_c384=8 -++ JNPES_c384=6 -++ THRD_c384=2 -++ INPES_c768=8 -++ JNPES_c768=16 -++ THRD_c768=2 -++ THRD_cpl_atmw_gdas=3 -++ INPES_cpl_atmw_gdas=6 -++ JNPES_cpl_atmw_gdas=8 -++ WPG_cpl_atmw_gdas=24 -++ WAV_tasks_atmw_gdas=264 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=6 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=6 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ ICE_tasks_cpl_thrd=10 -++ WAV_tasks_cpl_thrd=20 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=12 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=6 -++ JNPES_cpl_mpi=12 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=24 -++ ICE_tasks_cpl_mpi=12 -++ WAV_tasks_cpl_mpi=24 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=12 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ ICE_tasks_cpl_bmrk=48 -++ WAV_tasks_cpl_bmrk=100 -++ WLCLK_dflt=30 -++ export WLCLK=30 -++ WLCLK=30 -+ export TEST_NAME=compile -+ TEST_NAME=compile -+ export TEST_NR=002 -+ TEST_NR=002 -+ export JBNME=compile_002 -+ JBNME=compile_002 -+ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_002 -+ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_002 -++ date +%s -+ echo -n 'compile_002, 1681917418,' -+ source rt_utils.sh -++ set -eu -++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] -++ OPNREQ_TEST=false -++ qsub_id=0 -++ slurm_id=0 -++ bsub_id=0 -+ source atparse.bash -+ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_002 -+ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_002 -+ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_002 -+ [[ pbs = \s\l\u\r\m ]] -+ [[ pbs = \l\s\f ]] -+ [[ pbs = \p\b\s ]] -+ atparse -+ local __set_x -+ '[' -o xtrace ']' -+ __set_x='set -x' -+ set +x -+ [[ false = \f\a\l\s\e ]] -+ submit_and_wait job_card -+ [[ -z job_card ]] -+ '[' -o xtrace ']' -+ set_x='set -x' -+ set +x -Job id 9506857 -TEST 002 compile is waiting to enter the queue -TEST 002 compile is submitted -1 min. TEST 002 compile is waiting in a queue, status: Q jobid 9506857 -2 min. TEST 002 compile is running, status: R jobid 9506857 -3 min. TEST 002 compile is running, status: R jobid 9506857 -4 min. TEST 002 compile is running, status: R jobid 9506857 -5 min. TEST 002 compile is running, status: R jobid 9506857 -6 min. TEST 002 compile is running, status: R jobid 9506857 -7 min. TEST 002 compile is running, status: R jobid 9506857 -8 min. TEST 002 compile is running, status: R jobid 9506857 -9 min. TEST 002 compile is running, status: R jobid 9506857 -10 min. TEST 002 compile is running, status: R jobid 9506857 -11 min. TEST 002 compile is running, status: R jobid 9506857 -12 min. TEST 002 compile is running, status: R jobid 9506857 -13 min. TEST 002 compile is running, status: R jobid 9506857 -14 min. TEST 002 compile is running, status: R jobid 9506857 -15 min. TEST 002 compile is running, status: R jobid 9506857 -16 min. TEST 002 compile is running, status: R jobid 9506857 -17 min. TEST 002 compile is running, status: R jobid 9506857 -18 min. TEST 002 compile is running, status: R jobid 9506857 -19 min. TEST 002 compile is running, status: R jobid 9506857 -20 min. TEST 002 compile is running, status: R jobid 9506857 -21 min. TEST 002 compile is running, status: R jobid 9506857 -22 min. TEST 002 compile is running, status: R jobid 9506857 -23 min. TEST 002 compile is running, status: R jobid 9506857 -24 min. TEST 002 compile is running, status: R jobid 9506857 -25 min. TEST 002 compile is finished, status: E jobid 9506857 -+ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_002.exe --rwxr-xr-x 1 jongkim ncar 451833816 Apr 19 15:41 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_002.exe -+ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_002/compile_002_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_002/job_timestamp.txt -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_002' -Removing test failure flag file for compile_002 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_002 -++ date +%s -+ echo ' 1681918902, 1' -+ elapsed=1484 -+ echo 'Elapsed time 1484 seconds. Compile 002' -Elapsed time 1484 seconds. Compile 002 -+ '[' 0 -eq 0 ']' -Compile 002 elapsed time 1432 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -+ echo PID=4049 -PID=4049 -+ SECONDS=0 -+ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT -+ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT -+ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM -+ [[ 4 != 4 ]] -+ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ export 'MAKE_OPT=-DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8' -+ MAKE_OPT='-DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8' -+ export COMPILE_NR=003 -+ COMPILE_NR=003 -+ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ OPNREQ_TEST=false -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_003' -Removing test failure flag file for compile_003 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_003 -+ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_003.env ]] -+ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_003.env -++ export JOB_NR=017 -++ JOB_NR=017 -++ export COMPILE_NR=003 -++ COMPILE_NR=003 -++ export MACHINE_ID=cheyenne.intel -++ MACHINE_ID=cheyenne.intel -++ export RT_COMPILER=intel -++ RT_COMPILER=intel -++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ export SCHEDULER=pbs -++ SCHEDULER=pbs -++ export ACCNR=NRAL0032 -++ ACCNR=NRAL0032 -++ export QUEUE=regular -++ QUEUE=regular -++ export PARTITION= -++ PARTITION= -++ export ROCOTO=false -++ ROCOTO=false -++ export ECFLOW=true -++ ECFLOW=true -++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ source default_vars.sh -++ THRD=1 -++ INPES_atmaero=4 -++ JNPES_atmaero=8 -++ WPG_atmaero=6 -++ THRD_cpl_atmw=1 -++ INPES_cpl_atmw=3 -++ JNPES_cpl_atmw=8 -++ WPG_cpl_atmw=6 -++ WAV_tasks_cpl_atmw=30 -++ WAV_thrds_cpl_atmw=1 -++ THRD_cpl_c48=1 -++ INPES_cpl_c48=1 -++ JNPES_cpl_c48=1 -++ WPG_cpl_c48=6 -++ OCN_tasks_cpl_c48=4 -++ ICE_tasks_cpl_c48=4 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=3 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=3 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ OCN_thrds_cpl_thrd=1 -++ ICE_tasks_cpl_thrd=10 -++ ICE_thrds_cpl_thrd=1 -++ WAV_tasks_cpl_thrd=12 -++ WAV_thrds_cpl_thrd=2 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=6 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=4 -++ JNPES_cpl_mpi=8 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=34 -++ ICE_tasks_cpl_mpi=20 -++ WAV_tasks_cpl_mpi=28 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=8 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ OCN_thrds_cpl_bmrk=1 -++ ICE_tasks_cpl_bmrk=48 -++ ICE_thrds_cpl_bmrk=1 -++ WAV_tasks_cpl_bmrk=80 -++ WAV_thrds_cpl_bmrk=2 -++ THRD_cpl_c192=2 -++ INPES_cpl_c192=6 -++ JNPES_cpl_c192=8 -++ WPG_cpl_c192=12 -++ OCN_tasks_cpl_c192=60 -++ ICE_tasks_cpl_c192=24 -++ WAV_tasks_cpl_c192=80 -++ ATM_compute_tasks_cdeps_100=12 -++ OCN_tasks_cdeps_100=16 -++ ICE_tasks_cdeps_100=12 -++ ATM_compute_tasks_cdeps_025=40 -++ OCN_tasks_cdeps_025=120 -++ ICE_tasks_cdeps_025=48 -++ INPES_aqm=33 -++ JNPES_aqm=8 -++ aqm_omp_num_threads=1 -++ atm_omp_num_threads=1 -++ chm_omp_num_threads=1 -++ ice_omp_num_threads=1 -++ lnd_omp_num_threads=1 -++ med_omp_num_threads=1 -++ ocn_omp_num_threads=1 -++ wav_omp_num_threads=1 -++ [[ cheyenne.intel = wcoss2.* ]] -++ [[ cheyenne.intel = acorn.* ]] -++ [[ cheyenne.intel = orion.* ]] -++ [[ cheyenne.intel = hera.* ]] -++ [[ cheyenne.intel = linux.* ]] -++ [[ cheyenne.intel = jet.* ]] -++ [[ cheyenne.intel = s4.* ]] -++ [[ cheyenne.intel = gaea.* ]] -++ [[ cheyenne.intel = cheyenne.* ]] -++ TPN=36 -++ INPES_dflt=3 -++ JNPES_dflt=8 -++ INPES_thrd=3 -++ JNPES_thrd=4 -++ INPES_c384=8 -++ JNPES_c384=6 -++ THRD_c384=2 -++ INPES_c768=8 -++ JNPES_c768=16 -++ THRD_c768=2 -++ THRD_cpl_atmw_gdas=3 -++ INPES_cpl_atmw_gdas=6 -++ JNPES_cpl_atmw_gdas=8 -++ WPG_cpl_atmw_gdas=24 -++ WAV_tasks_atmw_gdas=264 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=6 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=6 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ ICE_tasks_cpl_thrd=10 -++ WAV_tasks_cpl_thrd=20 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=12 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=6 -++ JNPES_cpl_mpi=12 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=24 -++ ICE_tasks_cpl_mpi=12 -++ WAV_tasks_cpl_mpi=24 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=12 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ ICE_tasks_cpl_bmrk=48 -++ WAV_tasks_cpl_bmrk=100 -++ WLCLK_dflt=30 -++ export WLCLK=30 -++ WLCLK=30 -+ export TEST_NAME=compile -+ TEST_NAME=compile -+ export TEST_NR=003 -+ TEST_NR=003 -+ export JBNME=compile_003 -+ JBNME=compile_003 -+ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_003 -+ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_003 -++ date +%s -+ echo -n 'compile_003, 1681917418,' -+ source rt_utils.sh -++ set -eu -++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] -++ OPNREQ_TEST=false -++ qsub_id=0 -++ slurm_id=0 -++ bsub_id=0 -+ source atparse.bash -+ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_003 -+ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_003 -+ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_003 -+ [[ pbs = \s\l\u\r\m ]] -+ [[ pbs = \l\s\f ]] -+ [[ pbs = \p\b\s ]] -+ atparse -+ local __set_x -+ '[' -o xtrace ']' -+ __set_x='set -x' -+ set +x -+ [[ false = \f\a\l\s\e ]] -+ submit_and_wait job_card -+ [[ -z job_card ]] -+ '[' -o xtrace ']' -+ set_x='set -x' -+ set +x -Job id 9506858 -TEST 003 compile is waiting to enter the queue -TEST 003 compile is submitted -1 min. TEST 003 compile is waiting in a queue, status: Q jobid 9506858 -2 min. TEST 003 compile is running, status: R jobid 9506858 -3 min. TEST 003 compile is running, status: R jobid 9506858 -4 min. TEST 003 compile is running, status: R jobid 9506858 -5 min. TEST 003 compile is running, status: R jobid 9506858 -6 min. TEST 003 compile is running, status: R jobid 9506858 -7 min. TEST 003 compile is running, status: R jobid 9506858 -8 min. TEST 003 compile is running, status: R jobid 9506858 -9 min. TEST 003 compile is running, status: R jobid 9506858 -10 min. TEST 003 compile is running, status: R jobid 9506858 -11 min. TEST 003 compile is running, status: R jobid 9506858 -12 min. TEST 003 compile is running, status: R jobid 9506858 -13 min. TEST 003 compile is running, status: R jobid 9506858 -14 min. TEST 003 compile is running, status: R jobid 9506858 -15 min. TEST 003 compile is running, status: R jobid 9506858 -16 min. TEST 003 compile is running, status: R jobid 9506858 -17 min. TEST 003 compile is running, status: R jobid 9506858 -18 min. TEST 003 compile is running, status: R jobid 9506858 -19 min. TEST 003 compile is running, status: R jobid 9506858 -20 min. TEST 003 compile is running, status: R jobid 9506858 -21 min. TEST 003 compile is running, status: R jobid 9506858 -22 min. TEST 003 compile is running, status: R jobid 9506858 -23 min. TEST 003 compile is running, status: R jobid 9506858 -24 min. TEST 003 compile is running, status: R jobid 9506858 -qstat: 9506858.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -qstat: 9506858.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -25 min. TEST 003 compile is finished, status: - jobid 9506858 -+ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_003.exe --rwxr-xr-x 1 jongkim ncar 359887088 Apr 19 15:41 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_003.exe -+ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_003/compile_003_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_003/job_timestamp.txt -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_003' -Removing test failure flag file for compile_003 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_003 -++ date +%s -+ echo ' 1681918902, 1' -+ elapsed=1484 -+ echo 'Elapsed time 1484 seconds. Compile 003' -Elapsed time 1484 seconds. Compile 003 -+ '[' 0 -eq 0 ']' -Compile 003 elapsed time 1405 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -+ echo PID=4055 -PID=4055 -+ SECONDS=0 -+ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT -+ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT -+ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM -+ [[ 4 != 4 ]] -+ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ export 'MAKE_OPT=-DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp' -+ MAKE_OPT='-DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp' -+ export COMPILE_NR=004 -+ COMPILE_NR=004 -+ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ OPNREQ_TEST=false -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_004' -Removing test failure flag file for compile_004 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_004 -+ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_004.env ]] -+ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_004.env -++ export JOB_NR=020 -++ JOB_NR=020 -++ export COMPILE_NR=004 -++ COMPILE_NR=004 -++ export MACHINE_ID=cheyenne.intel -++ MACHINE_ID=cheyenne.intel -++ export RT_COMPILER=intel -++ RT_COMPILER=intel -++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ export SCHEDULER=pbs -++ SCHEDULER=pbs -++ export ACCNR=NRAL0032 -++ ACCNR=NRAL0032 -++ export QUEUE=regular -++ QUEUE=regular -++ export PARTITION= -++ PARTITION= -++ export ROCOTO=false -++ ROCOTO=false -++ export ECFLOW=true -++ ECFLOW=true -++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ source default_vars.sh -++ THRD=1 -++ INPES_atmaero=4 -++ JNPES_atmaero=8 -++ WPG_atmaero=6 -++ THRD_cpl_atmw=1 -++ INPES_cpl_atmw=3 -++ JNPES_cpl_atmw=8 -++ WPG_cpl_atmw=6 -++ WAV_tasks_cpl_atmw=30 -++ WAV_thrds_cpl_atmw=1 -++ THRD_cpl_c48=1 -++ INPES_cpl_c48=1 -++ JNPES_cpl_c48=1 -++ WPG_cpl_c48=6 -++ OCN_tasks_cpl_c48=4 -++ ICE_tasks_cpl_c48=4 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=3 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=3 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ OCN_thrds_cpl_thrd=1 -++ ICE_tasks_cpl_thrd=10 -++ ICE_thrds_cpl_thrd=1 -++ WAV_tasks_cpl_thrd=12 -++ WAV_thrds_cpl_thrd=2 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=6 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=4 -++ JNPES_cpl_mpi=8 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=34 -++ ICE_tasks_cpl_mpi=20 -++ WAV_tasks_cpl_mpi=28 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=8 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ OCN_thrds_cpl_bmrk=1 -++ ICE_tasks_cpl_bmrk=48 -++ ICE_thrds_cpl_bmrk=1 -++ WAV_tasks_cpl_bmrk=80 -++ WAV_thrds_cpl_bmrk=2 -++ THRD_cpl_c192=2 -++ INPES_cpl_c192=6 -++ JNPES_cpl_c192=8 -++ WPG_cpl_c192=12 -++ OCN_tasks_cpl_c192=60 -++ ICE_tasks_cpl_c192=24 -++ WAV_tasks_cpl_c192=80 -++ ATM_compute_tasks_cdeps_100=12 -++ OCN_tasks_cdeps_100=16 -++ ICE_tasks_cdeps_100=12 -++ ATM_compute_tasks_cdeps_025=40 -++ OCN_tasks_cdeps_025=120 -++ ICE_tasks_cdeps_025=48 -++ INPES_aqm=33 -++ JNPES_aqm=8 -++ aqm_omp_num_threads=1 -++ atm_omp_num_threads=1 -++ chm_omp_num_threads=1 -++ ice_omp_num_threads=1 -++ lnd_omp_num_threads=1 -++ med_omp_num_threads=1 -++ ocn_omp_num_threads=1 -++ wav_omp_num_threads=1 -++ [[ cheyenne.intel = wcoss2.* ]] -++ [[ cheyenne.intel = acorn.* ]] -++ [[ cheyenne.intel = orion.* ]] -++ [[ cheyenne.intel = hera.* ]] -++ [[ cheyenne.intel = linux.* ]] -++ [[ cheyenne.intel = jet.* ]] -++ [[ cheyenne.intel = s4.* ]] -++ [[ cheyenne.intel = gaea.* ]] -++ [[ cheyenne.intel = cheyenne.* ]] -++ TPN=36 -++ INPES_dflt=3 -++ JNPES_dflt=8 -++ INPES_thrd=3 -++ JNPES_thrd=4 -++ INPES_c384=8 -++ JNPES_c384=6 -++ THRD_c384=2 -++ INPES_c768=8 -++ JNPES_c768=16 -++ THRD_c768=2 -++ THRD_cpl_atmw_gdas=3 -++ INPES_cpl_atmw_gdas=6 -++ JNPES_cpl_atmw_gdas=8 -++ WPG_cpl_atmw_gdas=24 -++ WAV_tasks_atmw_gdas=264 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=6 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=6 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ ICE_tasks_cpl_thrd=10 -++ WAV_tasks_cpl_thrd=20 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=12 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=6 -++ JNPES_cpl_mpi=12 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=24 -++ ICE_tasks_cpl_mpi=12 -++ WAV_tasks_cpl_mpi=24 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=12 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ ICE_tasks_cpl_bmrk=48 -++ WAV_tasks_cpl_bmrk=100 -++ WLCLK_dflt=30 -++ export WLCLK=30 -++ WLCLK=30 -+ export TEST_NAME=compile -+ TEST_NAME=compile -+ export TEST_NR=004 -+ TEST_NR=004 -+ export JBNME=compile_004 -+ JBNME=compile_004 -+ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_004 -+ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_004 -++ date +%s -+ echo -n 'compile_004, 1681917418,' -+ source rt_utils.sh -++ set -eu -++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] -++ OPNREQ_TEST=false -++ qsub_id=0 -++ slurm_id=0 -++ bsub_id=0 -+ source atparse.bash -+ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_004 -+ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_004 -+ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_004 -+ [[ pbs = \s\l\u\r\m ]] -+ [[ pbs = \l\s\f ]] -+ [[ pbs = \p\b\s ]] -+ atparse -+ local __set_x -+ '[' -o xtrace ']' -+ __set_x='set -x' -+ set +x -+ [[ false = \f\a\l\s\e ]] -+ submit_and_wait job_card -+ [[ -z job_card ]] -+ '[' -o xtrace ']' -+ set_x='set -x' -+ set +x -Job id 9506861 -TEST 004 compile is waiting to enter the queue -TEST 004 compile is submitted -1 min. TEST 004 compile is waiting in a queue, status: Q jobid 9506861 -2 min. TEST 004 compile is running, status: R jobid 9506861 -3 min. TEST 004 compile is running, status: R jobid 9506861 -4 min. TEST 004 compile is running, status: R jobid 9506861 -5 min. TEST 004 compile is running, status: R jobid 9506861 -6 min. TEST 004 compile is running, status: R jobid 9506861 -7 min. TEST 004 compile is running, status: R jobid 9506861 -8 min. TEST 004 compile is running, status: R jobid 9506861 -9 min. TEST 004 compile is running, status: R jobid 9506861 -qstat: 9506861.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -qstat: 9506861.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -10 min. TEST 004 compile is finished, status: - jobid 9506861 -+ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_004.exe --rwxr-xr-x 1 jongkim ncar 902869984 Apr 19 15:25 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_004.exe -+ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_004/compile_004_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_004/job_timestamp.txt -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_004' -Removing test failure flag file for compile_004 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_004 -++ date +%s -+ echo ' 1681917981, 1' -+ elapsed=563 -+ echo 'Elapsed time 563 seconds. Compile 004' -Elapsed time 563 seconds. Compile 004 -+ '[' 0 -eq 0 ']' -Compile 004 elapsed time 478 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -+ echo PID=4065 -PID=4065 -+ SECONDS=0 -+ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT -+ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT -+ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM -+ [[ 4 != 4 ]] -+ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ export 'MAKE_OPT=-DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8' -+ MAKE_OPT='-DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8' -+ export COMPILE_NR=005 -+ COMPILE_NR=005 -+ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ OPNREQ_TEST=false -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_005' -Removing test failure flag file for compile_005 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_005 -+ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_005.env ]] -+ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_005.env -++ export JOB_NR=022 -++ JOB_NR=022 -++ export COMPILE_NR=005 -++ COMPILE_NR=005 -++ export MACHINE_ID=cheyenne.intel -++ MACHINE_ID=cheyenne.intel -++ export RT_COMPILER=intel -++ RT_COMPILER=intel -++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ export SCHEDULER=pbs -++ SCHEDULER=pbs -++ export ACCNR=NRAL0032 -++ ACCNR=NRAL0032 -++ export QUEUE=regular -++ QUEUE=regular -++ export PARTITION= -++ PARTITION= -++ export ROCOTO=false -++ ROCOTO=false -++ export ECFLOW=true -++ ECFLOW=true -++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ source default_vars.sh -++ THRD=1 -++ INPES_atmaero=4 -++ JNPES_atmaero=8 -++ WPG_atmaero=6 -++ THRD_cpl_atmw=1 -++ INPES_cpl_atmw=3 -++ JNPES_cpl_atmw=8 -++ WPG_cpl_atmw=6 -++ WAV_tasks_cpl_atmw=30 -++ WAV_thrds_cpl_atmw=1 -++ THRD_cpl_c48=1 -++ INPES_cpl_c48=1 -++ JNPES_cpl_c48=1 -++ WPG_cpl_c48=6 -++ OCN_tasks_cpl_c48=4 -++ ICE_tasks_cpl_c48=4 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=3 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=3 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ OCN_thrds_cpl_thrd=1 -++ ICE_tasks_cpl_thrd=10 -++ ICE_thrds_cpl_thrd=1 -++ WAV_tasks_cpl_thrd=12 -++ WAV_thrds_cpl_thrd=2 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=6 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=4 -++ JNPES_cpl_mpi=8 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=34 -++ ICE_tasks_cpl_mpi=20 -++ WAV_tasks_cpl_mpi=28 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=8 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ OCN_thrds_cpl_bmrk=1 -++ ICE_tasks_cpl_bmrk=48 -++ ICE_thrds_cpl_bmrk=1 -++ WAV_tasks_cpl_bmrk=80 -++ WAV_thrds_cpl_bmrk=2 -++ THRD_cpl_c192=2 -++ INPES_cpl_c192=6 -++ JNPES_cpl_c192=8 -++ WPG_cpl_c192=12 -++ OCN_tasks_cpl_c192=60 -++ ICE_tasks_cpl_c192=24 -++ WAV_tasks_cpl_c192=80 -++ ATM_compute_tasks_cdeps_100=12 -++ OCN_tasks_cdeps_100=16 -++ ICE_tasks_cdeps_100=12 -++ ATM_compute_tasks_cdeps_025=40 -++ OCN_tasks_cdeps_025=120 -++ ICE_tasks_cdeps_025=48 -++ INPES_aqm=33 -++ JNPES_aqm=8 -++ aqm_omp_num_threads=1 -++ atm_omp_num_threads=1 -++ chm_omp_num_threads=1 -++ ice_omp_num_threads=1 -++ lnd_omp_num_threads=1 -++ med_omp_num_threads=1 -++ ocn_omp_num_threads=1 -++ wav_omp_num_threads=1 -++ [[ cheyenne.intel = wcoss2.* ]] -++ [[ cheyenne.intel = acorn.* ]] -++ [[ cheyenne.intel = orion.* ]] -++ [[ cheyenne.intel = hera.* ]] -++ [[ cheyenne.intel = linux.* ]] -++ [[ cheyenne.intel = jet.* ]] -++ [[ cheyenne.intel = s4.* ]] -++ [[ cheyenne.intel = gaea.* ]] -++ [[ cheyenne.intel = cheyenne.* ]] -++ TPN=36 -++ INPES_dflt=3 -++ JNPES_dflt=8 -++ INPES_thrd=3 -++ JNPES_thrd=4 -++ INPES_c384=8 -++ JNPES_c384=6 -++ THRD_c384=2 -++ INPES_c768=8 -++ JNPES_c768=16 -++ THRD_c768=2 -++ THRD_cpl_atmw_gdas=3 -++ INPES_cpl_atmw_gdas=6 -++ JNPES_cpl_atmw_gdas=8 -++ WPG_cpl_atmw_gdas=24 -++ WAV_tasks_atmw_gdas=264 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=6 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=6 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ ICE_tasks_cpl_thrd=10 -++ WAV_tasks_cpl_thrd=20 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=12 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=6 -++ JNPES_cpl_mpi=12 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=24 -++ ICE_tasks_cpl_mpi=12 -++ WAV_tasks_cpl_mpi=24 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=12 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ ICE_tasks_cpl_bmrk=48 -++ WAV_tasks_cpl_bmrk=100 -++ WLCLK_dflt=30 -++ export WLCLK=30 -++ WLCLK=30 -+ export TEST_NAME=compile -+ TEST_NAME=compile -+ export TEST_NR=005 -+ TEST_NR=005 -+ export JBNME=compile_005 -+ JBNME=compile_005 -+ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_005 -+ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_005 -++ date +%s -+ echo -n 'compile_005, 1681917418,' -+ source rt_utils.sh -++ set -eu -++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] -++ OPNREQ_TEST=false -++ qsub_id=0 -++ slurm_id=0 -++ bsub_id=0 -+ source atparse.bash -+ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_005 -+ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_005 -+ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_005 -+ [[ pbs = \s\l\u\r\m ]] -+ [[ pbs = \l\s\f ]] -+ [[ pbs = \p\b\s ]] -+ atparse -+ local __set_x -+ '[' -o xtrace ']' -+ __set_x='set -x' -+ set +x -+ [[ false = \f\a\l\s\e ]] -+ submit_and_wait job_card -+ [[ -z job_card ]] -+ '[' -o xtrace ']' -+ set_x='set -x' -+ set +x -Job id 9506860 -TEST 005 compile is waiting to enter the queue -TEST 005 compile is submitted -1 min. TEST 005 compile is waiting in a queue, status: Q jobid 9506860 -2 min. TEST 005 compile is running, status: R jobid 9506860 -3 min. TEST 005 compile is running, status: R jobid 9506860 -4 min. TEST 005 compile is running, status: R jobid 9506860 -5 min. TEST 005 compile is running, status: R jobid 9506860 -6 min. TEST 005 compile is running, status: R jobid 9506860 -7 min. TEST 005 compile is running, status: R jobid 9506860 -8 min. TEST 005 compile is running, status: R jobid 9506860 -qstat: 9506860.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -qstat: 9506860.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -9 min. TEST 005 compile is finished, status: - jobid 9506860 -+ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_005.exe --rwxr-xr-x 1 jongkim ncar 770195432 Apr 19 15:25 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_005.exe -+ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_005/compile_005_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_005/job_timestamp.txt -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_005' -Removing test failure flag file for compile_005 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_005 -++ date +%s -+ echo ' 1681917920, 1' -+ elapsed=502 -+ echo 'Elapsed time 502 seconds. Compile 005' -Elapsed time 502 seconds. Compile 005 -+ '[' 0 -eq 0 ']' -Compile 005 elapsed time 422 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -+ echo PID=4072 -PID=4072 -+ SECONDS=0 -+ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT -+ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT -+ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM -+ [[ 4 != 4 ]] -+ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ export 'MAKE_OPT=-DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON' -+ MAKE_OPT='-DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON' -+ export COMPILE_NR=006 -+ COMPILE_NR=006 -+ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ OPNREQ_TEST=false -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_006' -Removing test failure flag file for compile_006 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_006 -+ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_006.env ]] -+ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_006.env -++ export JOB_NR=024 -++ JOB_NR=024 -++ export COMPILE_NR=006 -++ COMPILE_NR=006 -++ export MACHINE_ID=cheyenne.intel -++ MACHINE_ID=cheyenne.intel -++ export RT_COMPILER=intel -++ RT_COMPILER=intel -++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ export SCHEDULER=pbs -++ SCHEDULER=pbs -++ export ACCNR=NRAL0032 -++ ACCNR=NRAL0032 -++ export QUEUE=regular -++ QUEUE=regular -++ export PARTITION= -++ PARTITION= -++ export ROCOTO=false -++ ROCOTO=false -++ export ECFLOW=true -++ ECFLOW=true -++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ source default_vars.sh -++ THRD=1 -++ INPES_atmaero=4 -++ JNPES_atmaero=8 -++ WPG_atmaero=6 -++ THRD_cpl_atmw=1 -++ INPES_cpl_atmw=3 -++ JNPES_cpl_atmw=8 -++ WPG_cpl_atmw=6 -++ WAV_tasks_cpl_atmw=30 -++ WAV_thrds_cpl_atmw=1 -++ THRD_cpl_c48=1 -++ INPES_cpl_c48=1 -++ JNPES_cpl_c48=1 -++ WPG_cpl_c48=6 -++ OCN_tasks_cpl_c48=4 -++ ICE_tasks_cpl_c48=4 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=3 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=3 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ OCN_thrds_cpl_thrd=1 -++ ICE_tasks_cpl_thrd=10 -++ ICE_thrds_cpl_thrd=1 -++ WAV_tasks_cpl_thrd=12 -++ WAV_thrds_cpl_thrd=2 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=6 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=4 -++ JNPES_cpl_mpi=8 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=34 -++ ICE_tasks_cpl_mpi=20 -++ WAV_tasks_cpl_mpi=28 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=8 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ OCN_thrds_cpl_bmrk=1 -++ ICE_tasks_cpl_bmrk=48 -++ ICE_thrds_cpl_bmrk=1 -++ WAV_tasks_cpl_bmrk=80 -++ WAV_thrds_cpl_bmrk=2 -++ THRD_cpl_c192=2 -++ INPES_cpl_c192=6 -++ JNPES_cpl_c192=8 -++ WPG_cpl_c192=12 -++ OCN_tasks_cpl_c192=60 -++ ICE_tasks_cpl_c192=24 -++ WAV_tasks_cpl_c192=80 -++ ATM_compute_tasks_cdeps_100=12 -++ OCN_tasks_cdeps_100=16 -++ ICE_tasks_cdeps_100=12 -++ ATM_compute_tasks_cdeps_025=40 -++ OCN_tasks_cdeps_025=120 -++ ICE_tasks_cdeps_025=48 -++ INPES_aqm=33 -++ JNPES_aqm=8 -++ aqm_omp_num_threads=1 -++ atm_omp_num_threads=1 -++ chm_omp_num_threads=1 -++ ice_omp_num_threads=1 -++ lnd_omp_num_threads=1 -++ med_omp_num_threads=1 -++ ocn_omp_num_threads=1 -++ wav_omp_num_threads=1 -++ [[ cheyenne.intel = wcoss2.* ]] -++ [[ cheyenne.intel = acorn.* ]] -++ [[ cheyenne.intel = orion.* ]] -++ [[ cheyenne.intel = hera.* ]] -++ [[ cheyenne.intel = linux.* ]] -++ [[ cheyenne.intel = jet.* ]] -++ [[ cheyenne.intel = s4.* ]] -++ [[ cheyenne.intel = gaea.* ]] -++ [[ cheyenne.intel = cheyenne.* ]] -++ TPN=36 -++ INPES_dflt=3 -++ JNPES_dflt=8 -++ INPES_thrd=3 -++ JNPES_thrd=4 -++ INPES_c384=8 -++ JNPES_c384=6 -++ THRD_c384=2 -++ INPES_c768=8 -++ JNPES_c768=16 -++ THRD_c768=2 -++ THRD_cpl_atmw_gdas=3 -++ INPES_cpl_atmw_gdas=6 -++ JNPES_cpl_atmw_gdas=8 -++ WPG_cpl_atmw_gdas=24 -++ WAV_tasks_atmw_gdas=264 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=6 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=6 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ ICE_tasks_cpl_thrd=10 -++ WAV_tasks_cpl_thrd=20 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=12 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=6 -++ JNPES_cpl_mpi=12 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=24 -++ ICE_tasks_cpl_mpi=12 -++ WAV_tasks_cpl_mpi=24 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=12 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ ICE_tasks_cpl_bmrk=48 -++ WAV_tasks_cpl_bmrk=100 -++ WLCLK_dflt=30 -++ export WLCLK=30 -++ WLCLK=30 -+ export TEST_NAME=compile -+ TEST_NAME=compile -+ export TEST_NR=006 -+ TEST_NR=006 -+ export JBNME=compile_006 -+ JBNME=compile_006 -+ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_006 -+ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_006 -++ date +%s -+ echo -n 'compile_006, 1681917418,' -+ source rt_utils.sh -++ set -eu -++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] -++ OPNREQ_TEST=false -++ qsub_id=0 -++ slurm_id=0 -++ bsub_id=0 -+ source atparse.bash -+ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_006 -+ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_006 -+ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_006 -+ [[ pbs = \s\l\u\r\m ]] -+ [[ pbs = \l\s\f ]] -+ [[ pbs = \p\b\s ]] -+ atparse -+ local __set_x -+ '[' -o xtrace ']' -+ __set_x='set -x' -+ set +x -+ [[ false = \f\a\l\s\e ]] -+ submit_and_wait job_card -+ [[ -z job_card ]] -+ '[' -o xtrace ']' -+ set_x='set -x' -+ set +x -Job id 9506866 -TEST 006 compile is waiting to enter the queue -TEST 006 compile is submitted -1 min. TEST 006 compile is waiting in a queue, status: Q jobid 9506866 -2 min. TEST 006 compile is waiting in a queue, status: Q jobid 9506866 -3 min. TEST 006 compile is running, status: R jobid 9506866 -4 min. TEST 006 compile is running, status: R jobid 9506866 -5 min. TEST 006 compile is running, status: R jobid 9506866 -6 min. TEST 006 compile is running, status: R jobid 9506866 -7 min. TEST 006 compile is running, status: R jobid 9506866 -8 min. TEST 006 compile is running, status: R jobid 9506866 -9 min. TEST 006 compile is running, status: R jobid 9506866 -10 min. TEST 006 compile is running, status: R jobid 9506866 -11 min. TEST 006 compile is running, status: R jobid 9506866 -12 min. TEST 006 compile is running, status: R jobid 9506866 -13 min. TEST 006 compile is running, status: R jobid 9506866 -14 min. TEST 006 compile is running, status: R jobid 9506866 -15 min. TEST 006 compile is running, status: R jobid 9506866 -16 min. TEST 006 compile is running, status: R jobid 9506866 -17 min. TEST 006 compile is running, status: R jobid 9506866 -18 min. TEST 006 compile is running, status: R jobid 9506866 -19 min. TEST 006 compile is running, status: R jobid 9506866 -20 min. TEST 006 compile is running, status: R jobid 9506866 -qstat: 9506866.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -qstat: 9506866.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -21 min. TEST 006 compile is finished, status: - jobid 9506866 -+ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_006.exe --rwxr-xr-x 1 jongkim ncar 353279504 Apr 19 15:37 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_006.exe -+ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_006/compile_006_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_006/job_timestamp.txt -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_006' -Removing test failure flag file for compile_006 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_006 -++ date +%s -+ echo ' 1681918652, 1' -+ elapsed=1234 -+ echo 'Elapsed time 1234 seconds. Compile 006' -Elapsed time 1234 seconds. Compile 006 -+ '[' 0 -eq 0 ']' -Compile 006 elapsed time 1089 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -+ echo PID=4070 -PID=4070 -+ SECONDS=0 -+ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT -+ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT -+ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM -+ [[ 4 != 4 ]] -+ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ export 'MAKE_OPT=-DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8' -+ MAKE_OPT='-DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8' -+ export COMPILE_NR=007 -+ COMPILE_NR=007 -+ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ OPNREQ_TEST=false -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_007' -Removing test failure flag file for compile_007 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_007 -+ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_007.env ]] -+ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_007.env -++ export JOB_NR=026 -++ JOB_NR=026 -++ export COMPILE_NR=007 -++ COMPILE_NR=007 -++ export MACHINE_ID=cheyenne.intel -++ MACHINE_ID=cheyenne.intel -++ export RT_COMPILER=intel -++ RT_COMPILER=intel -++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ export SCHEDULER=pbs -++ SCHEDULER=pbs -++ export ACCNR=NRAL0032 -++ ACCNR=NRAL0032 -++ export QUEUE=regular -++ QUEUE=regular -++ export PARTITION= -++ PARTITION= -++ export ROCOTO=false -++ ROCOTO=false -++ export ECFLOW=true -++ ECFLOW=true -++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ source default_vars.sh -++ THRD=1 -++ INPES_atmaero=4 -++ JNPES_atmaero=8 -++ WPG_atmaero=6 -++ THRD_cpl_atmw=1 -++ INPES_cpl_atmw=3 -++ JNPES_cpl_atmw=8 -++ WPG_cpl_atmw=6 -++ WAV_tasks_cpl_atmw=30 -++ WAV_thrds_cpl_atmw=1 -++ THRD_cpl_c48=1 -++ INPES_cpl_c48=1 -++ JNPES_cpl_c48=1 -++ WPG_cpl_c48=6 -++ OCN_tasks_cpl_c48=4 -++ ICE_tasks_cpl_c48=4 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=3 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=3 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ OCN_thrds_cpl_thrd=1 -++ ICE_tasks_cpl_thrd=10 -++ ICE_thrds_cpl_thrd=1 -++ WAV_tasks_cpl_thrd=12 -++ WAV_thrds_cpl_thrd=2 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=6 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=4 -++ JNPES_cpl_mpi=8 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=34 -++ ICE_tasks_cpl_mpi=20 -++ WAV_tasks_cpl_mpi=28 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=8 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ OCN_thrds_cpl_bmrk=1 -++ ICE_tasks_cpl_bmrk=48 -++ ICE_thrds_cpl_bmrk=1 -++ WAV_tasks_cpl_bmrk=80 -++ WAV_thrds_cpl_bmrk=2 -++ THRD_cpl_c192=2 -++ INPES_cpl_c192=6 -++ JNPES_cpl_c192=8 -++ WPG_cpl_c192=12 -++ OCN_tasks_cpl_c192=60 -++ ICE_tasks_cpl_c192=24 -++ WAV_tasks_cpl_c192=80 -++ ATM_compute_tasks_cdeps_100=12 -++ OCN_tasks_cdeps_100=16 -++ ICE_tasks_cdeps_100=12 -++ ATM_compute_tasks_cdeps_025=40 -++ OCN_tasks_cdeps_025=120 -++ ICE_tasks_cdeps_025=48 -++ INPES_aqm=33 -++ JNPES_aqm=8 -++ aqm_omp_num_threads=1 -++ atm_omp_num_threads=1 -++ chm_omp_num_threads=1 -++ ice_omp_num_threads=1 -++ lnd_omp_num_threads=1 -++ med_omp_num_threads=1 -++ ocn_omp_num_threads=1 -++ wav_omp_num_threads=1 -++ [[ cheyenne.intel = wcoss2.* ]] -++ [[ cheyenne.intel = acorn.* ]] -++ [[ cheyenne.intel = orion.* ]] -++ [[ cheyenne.intel = hera.* ]] -++ [[ cheyenne.intel = linux.* ]] -++ [[ cheyenne.intel = jet.* ]] -++ [[ cheyenne.intel = s4.* ]] -++ [[ cheyenne.intel = gaea.* ]] -++ [[ cheyenne.intel = cheyenne.* ]] -++ TPN=36 -++ INPES_dflt=3 -++ JNPES_dflt=8 -++ INPES_thrd=3 -++ JNPES_thrd=4 -++ INPES_c384=8 -++ JNPES_c384=6 -++ THRD_c384=2 -++ INPES_c768=8 -++ JNPES_c768=16 -++ THRD_c768=2 -++ THRD_cpl_atmw_gdas=3 -++ INPES_cpl_atmw_gdas=6 -++ JNPES_cpl_atmw_gdas=8 -++ WPG_cpl_atmw_gdas=24 -++ WAV_tasks_atmw_gdas=264 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=6 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=6 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ ICE_tasks_cpl_thrd=10 -++ WAV_tasks_cpl_thrd=20 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=12 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=6 -++ JNPES_cpl_mpi=12 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=24 -++ ICE_tasks_cpl_mpi=12 -++ WAV_tasks_cpl_mpi=24 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=12 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ ICE_tasks_cpl_bmrk=48 -++ WAV_tasks_cpl_bmrk=100 -++ WLCLK_dflt=30 -++ export WLCLK=30 -++ WLCLK=30 -+ export TEST_NAME=compile -+ TEST_NAME=compile -+ export TEST_NR=007 -+ TEST_NR=007 -+ export JBNME=compile_007 -+ JBNME=compile_007 -+ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_007 -+ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_007 -++ date +%s -+ echo -n 'compile_007, 1681917418,' -+ source rt_utils.sh -++ set -eu -++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] -++ OPNREQ_TEST=false -++ qsub_id=0 -++ slurm_id=0 -++ bsub_id=0 -+ source atparse.bash -+ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_007 -+ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_007 -+ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_007 -+ [[ pbs = \s\l\u\r\m ]] -+ [[ pbs = \l\s\f ]] -+ [[ pbs = \p\b\s ]] -+ atparse -+ local __set_x -+ '[' -o xtrace ']' -+ __set_x='set -x' -+ set +x -+ [[ false = \f\a\l\s\e ]] -+ submit_and_wait job_card -+ [[ -z job_card ]] -+ '[' -o xtrace ']' -+ set_x='set -x' -+ set +x -Job id 9506859 -TEST 007 compile is waiting to enter the queue -TEST 007 compile is submitted -1 min. TEST 007 compile is waiting in a queue, status: Q jobid 9506859 -2 min. TEST 007 compile is running, status: R jobid 9506859 -3 min. TEST 007 compile is running, status: R jobid 9506859 -4 min. TEST 007 compile is running, status: R jobid 9506859 -5 min. TEST 007 compile is running, status: R jobid 9506859 -6 min. TEST 007 compile is running, status: R jobid 9506859 -7 min. TEST 007 compile is running, status: R jobid 9506859 -8 min. TEST 007 compile is running, status: R jobid 9506859 -9 min. TEST 007 compile is running, status: R jobid 9506859 -10 min. TEST 007 compile is running, status: R jobid 9506859 -11 min. TEST 007 compile is running, status: R jobid 9506859 -12 min. TEST 007 compile is running, status: R jobid 9506859 -13 min. TEST 007 compile is running, status: R jobid 9506859 -14 min. TEST 007 compile is running, status: R jobid 9506859 -15 min. TEST 007 compile is running, status: R jobid 9506859 -16 min. TEST 007 compile is running, status: R jobid 9506859 -17 min. TEST 007 compile is running, status: R jobid 9506859 -18 min. TEST 007 compile is running, status: R jobid 9506859 -19 min. TEST 007 compile is running, status: R jobid 9506859 -qstat: 9506859.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -qstat: 9506859.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -20 min. TEST 007 compile is finished, status: - jobid 9506859 -+ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_007.exe --rwxr-xr-x 1 jongkim ncar 352887752 Apr 19 15:36 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_007.exe -+ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_007/compile_007_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_007/job_timestamp.txt -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_007' -Removing test failure flag file for compile_007 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_007 -++ date +%s -+ echo ' 1681918592, 1' -+ elapsed=1174 -+ echo 'Elapsed time 1174 seconds. Compile 007' -Elapsed time 1174 seconds. Compile 007 -+ '[' 0 -eq 0 ']' -Compile 007 elapsed time 1096 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -+ echo PID=20480 -PID=20480 -+ SECONDS=0 -+ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT -+ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT -+ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM -+ [[ 4 != 4 ]] -+ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ export 'MAKE_OPT=-DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON' -+ MAKE_OPT='-DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON' -+ export COMPILE_NR=008 -+ COMPILE_NR=008 -+ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ OPNREQ_TEST=false -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_008' -Removing test failure flag file for compile_008 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_008 -+ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_008.env ]] -+ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_008.env -++ export JOB_NR=030 -++ JOB_NR=030 -++ export COMPILE_NR=008 -++ COMPILE_NR=008 -++ export MACHINE_ID=cheyenne.intel -++ MACHINE_ID=cheyenne.intel -++ export RT_COMPILER=intel -++ RT_COMPILER=intel -++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ export SCHEDULER=pbs -++ SCHEDULER=pbs -++ export ACCNR=NRAL0032 -++ ACCNR=NRAL0032 -++ export QUEUE=regular -++ QUEUE=regular -++ export PARTITION= -++ PARTITION= -++ export ROCOTO=false -++ ROCOTO=false -++ export ECFLOW=true -++ ECFLOW=true -++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ source default_vars.sh -++ THRD=1 -++ INPES_atmaero=4 -++ JNPES_atmaero=8 -++ WPG_atmaero=6 -++ THRD_cpl_atmw=1 -++ INPES_cpl_atmw=3 -++ JNPES_cpl_atmw=8 -++ WPG_cpl_atmw=6 -++ WAV_tasks_cpl_atmw=30 -++ WAV_thrds_cpl_atmw=1 -++ THRD_cpl_c48=1 -++ INPES_cpl_c48=1 -++ JNPES_cpl_c48=1 -++ WPG_cpl_c48=6 -++ OCN_tasks_cpl_c48=4 -++ ICE_tasks_cpl_c48=4 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=3 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=3 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ OCN_thrds_cpl_thrd=1 -++ ICE_tasks_cpl_thrd=10 -++ ICE_thrds_cpl_thrd=1 -++ WAV_tasks_cpl_thrd=12 -++ WAV_thrds_cpl_thrd=2 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=6 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=4 -++ JNPES_cpl_mpi=8 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=34 -++ ICE_tasks_cpl_mpi=20 -++ WAV_tasks_cpl_mpi=28 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=8 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ OCN_thrds_cpl_bmrk=1 -++ ICE_tasks_cpl_bmrk=48 -++ ICE_thrds_cpl_bmrk=1 -++ WAV_tasks_cpl_bmrk=80 -++ WAV_thrds_cpl_bmrk=2 -++ THRD_cpl_c192=2 -++ INPES_cpl_c192=6 -++ JNPES_cpl_c192=8 -++ WPG_cpl_c192=12 -++ OCN_tasks_cpl_c192=60 -++ ICE_tasks_cpl_c192=24 -++ WAV_tasks_cpl_c192=80 -++ ATM_compute_tasks_cdeps_100=12 -++ OCN_tasks_cdeps_100=16 -++ ICE_tasks_cdeps_100=12 -++ ATM_compute_tasks_cdeps_025=40 -++ OCN_tasks_cdeps_025=120 -++ ICE_tasks_cdeps_025=48 -++ INPES_aqm=33 -++ JNPES_aqm=8 -++ aqm_omp_num_threads=1 -++ atm_omp_num_threads=1 -++ chm_omp_num_threads=1 -++ ice_omp_num_threads=1 -++ lnd_omp_num_threads=1 -++ med_omp_num_threads=1 -++ ocn_omp_num_threads=1 -++ wav_omp_num_threads=1 -++ [[ cheyenne.intel = wcoss2.* ]] -++ [[ cheyenne.intel = acorn.* ]] -++ [[ cheyenne.intel = orion.* ]] -++ [[ cheyenne.intel = hera.* ]] -++ [[ cheyenne.intel = linux.* ]] -++ [[ cheyenne.intel = jet.* ]] -++ [[ cheyenne.intel = s4.* ]] -++ [[ cheyenne.intel = gaea.* ]] -++ [[ cheyenne.intel = cheyenne.* ]] -++ TPN=36 -++ INPES_dflt=3 -++ JNPES_dflt=8 -++ INPES_thrd=3 -++ JNPES_thrd=4 -++ INPES_c384=8 -++ JNPES_c384=6 -++ THRD_c384=2 -++ INPES_c768=8 -++ JNPES_c768=16 -++ THRD_c768=2 -++ THRD_cpl_atmw_gdas=3 -++ INPES_cpl_atmw_gdas=6 -++ JNPES_cpl_atmw_gdas=8 -++ WPG_cpl_atmw_gdas=24 -++ WAV_tasks_atmw_gdas=264 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=6 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=6 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ ICE_tasks_cpl_thrd=10 -++ WAV_tasks_cpl_thrd=20 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=12 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=6 -++ JNPES_cpl_mpi=12 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=24 -++ ICE_tasks_cpl_mpi=12 -++ WAV_tasks_cpl_mpi=24 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=12 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ ICE_tasks_cpl_bmrk=48 -++ WAV_tasks_cpl_bmrk=100 -++ WLCLK_dflt=30 -++ export WLCLK=30 -++ WLCLK=30 -+ export TEST_NAME=compile -+ TEST_NAME=compile -+ export TEST_NR=008 -+ TEST_NR=008 -+ export JBNME=compile_008 -+ JBNME=compile_008 -+ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_008 -+ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_008 -++ date +%s -+ echo -n 'compile_008, 1681919326,' -+ source rt_utils.sh -++ set -eu -++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] -++ OPNREQ_TEST=false -++ qsub_id=0 -++ slurm_id=0 -++ bsub_id=0 -+ source atparse.bash -+ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_008 -+ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_008 -+ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_008 -+ [[ pbs = \s\l\u\r\m ]] -+ [[ pbs = \l\s\f ]] -+ [[ pbs = \p\b\s ]] -+ atparse -+ local __set_x -+ '[' -o xtrace ']' -+ __set_x='set -x' -+ set +x -+ [[ false = \f\a\l\s\e ]] -+ submit_and_wait job_card -+ [[ -z job_card ]] -+ '[' -o xtrace ']' -+ set_x='set -x' -+ set +x -Job id 9507118 -TEST 008 compile is waiting to enter the queue -TEST 008 compile is submitted -1 min. TEST 008 compile is waiting in a queue, status: Q jobid 9507118 -2 min. TEST 008 compile is waiting in a queue, status: Q jobid 9507118 -3 min. TEST 008 compile is waiting in a queue, status: Q jobid 9507118 -4 min. TEST 008 compile is running, status: R jobid 9507118 -5 min. TEST 008 compile is running, status: R jobid 9507118 -6 min. TEST 008 compile is running, status: R jobid 9507118 -7 min. TEST 008 compile is running, status: R jobid 9507118 -8 min. TEST 008 compile is running, status: R jobid 9507118 -9 min. TEST 008 compile is running, status: R jobid 9507118 -10 min. TEST 008 compile is running, status: R jobid 9507118 -11 min. TEST 008 compile is running, status: R jobid 9507118 -12 min. TEST 008 compile is running, status: R jobid 9507118 -13 min. TEST 008 compile is running, status: R jobid 9507118 -14 min. TEST 008 compile is running, status: R jobid 9507118 -15 min. TEST 008 compile is running, status: R jobid 9507118 -16 min. TEST 008 compile is running, status: R jobid 9507118 -17 min. TEST 008 compile is running, status: R jobid 9507118 -18 min. TEST 008 compile is running, status: R jobid 9507118 -19 min. TEST 008 compile is running, status: R jobid 9507118 -20 min. TEST 008 compile is running, status: R jobid 9507118 -21 min. TEST 008 compile is running, status: R jobid 9507118 -22 min. TEST 008 compile is running, status: R jobid 9507118 -23 min. TEST 008 compile is running, status: R jobid 9507118 -24 min. TEST 008 compile is running, status: R jobid 9507118 -25 min. TEST 008 compile is running, status: R jobid 9507118 -26 min. TEST 008 compile is running, status: R jobid 9507118 -27 min. TEST 008 compile is running, status: R jobid 9507118 -28 min. TEST 008 compile is running, status: R jobid 9507118 -29 min. TEST 008 compile is running, status: R jobid 9507118 -30 min. TEST 008 compile is running, status: R jobid 9507118 -31 min. TEST 008 compile is running, status: R jobid 9507118 -32 min. TEST 008 compile is running, status: R jobid 9507118 -33 min. TEST 008 compile is running, status: R jobid 9507118 -qstat: 9507118.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -qstat: 9507118.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -34 min. TEST 008 compile is finished, status: - jobid 9507118 - - -Test 008 compile FAIL -+ echo PID=4073 -PID=4073 -+ SECONDS=0 -+ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT -+ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT -+ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM -+ [[ 4 != 4 ]] -+ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ export 'MAKE_OPT=-DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON' -+ MAKE_OPT='-DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON' -+ export COMPILE_NR=009 -+ COMPILE_NR=009 -+ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ OPNREQ_TEST=false -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_009' -Removing test failure flag file for compile_009 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_009 -+ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_009.env ]] -+ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_009.env -++ export JOB_NR=032 -++ JOB_NR=032 -++ export COMPILE_NR=009 -++ COMPILE_NR=009 -++ export MACHINE_ID=cheyenne.intel -++ MACHINE_ID=cheyenne.intel -++ export RT_COMPILER=intel -++ RT_COMPILER=intel -++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ export SCHEDULER=pbs -++ SCHEDULER=pbs -++ export ACCNR=NRAL0032 -++ ACCNR=NRAL0032 -++ export QUEUE=regular -++ QUEUE=regular -++ export PARTITION= -++ PARTITION= -++ export ROCOTO=false -++ ROCOTO=false -++ export ECFLOW=true -++ ECFLOW=true -++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ source default_vars.sh -++ THRD=1 -++ INPES_atmaero=4 -++ JNPES_atmaero=8 -++ WPG_atmaero=6 -++ THRD_cpl_atmw=1 -++ INPES_cpl_atmw=3 -++ JNPES_cpl_atmw=8 -++ WPG_cpl_atmw=6 -++ WAV_tasks_cpl_atmw=30 -++ WAV_thrds_cpl_atmw=1 -++ THRD_cpl_c48=1 -++ INPES_cpl_c48=1 -++ JNPES_cpl_c48=1 -++ WPG_cpl_c48=6 -++ OCN_tasks_cpl_c48=4 -++ ICE_tasks_cpl_c48=4 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=3 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=3 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ OCN_thrds_cpl_thrd=1 -++ ICE_tasks_cpl_thrd=10 -++ ICE_thrds_cpl_thrd=1 -++ WAV_tasks_cpl_thrd=12 -++ WAV_thrds_cpl_thrd=2 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=6 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=4 -++ JNPES_cpl_mpi=8 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=34 -++ ICE_tasks_cpl_mpi=20 -++ WAV_tasks_cpl_mpi=28 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=8 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ OCN_thrds_cpl_bmrk=1 -++ ICE_tasks_cpl_bmrk=48 -++ ICE_thrds_cpl_bmrk=1 -++ WAV_tasks_cpl_bmrk=80 -++ WAV_thrds_cpl_bmrk=2 -++ THRD_cpl_c192=2 -++ INPES_cpl_c192=6 -++ JNPES_cpl_c192=8 -++ WPG_cpl_c192=12 -++ OCN_tasks_cpl_c192=60 -++ ICE_tasks_cpl_c192=24 -++ WAV_tasks_cpl_c192=80 -++ ATM_compute_tasks_cdeps_100=12 -++ OCN_tasks_cdeps_100=16 -++ ICE_tasks_cdeps_100=12 -++ ATM_compute_tasks_cdeps_025=40 -++ OCN_tasks_cdeps_025=120 -++ ICE_tasks_cdeps_025=48 -++ INPES_aqm=33 -++ JNPES_aqm=8 -++ aqm_omp_num_threads=1 -++ atm_omp_num_threads=1 -++ chm_omp_num_threads=1 -++ ice_omp_num_threads=1 -++ lnd_omp_num_threads=1 -++ med_omp_num_threads=1 -++ ocn_omp_num_threads=1 -++ wav_omp_num_threads=1 -++ [[ cheyenne.intel = wcoss2.* ]] -++ [[ cheyenne.intel = acorn.* ]] -++ [[ cheyenne.intel = orion.* ]] -++ [[ cheyenne.intel = hera.* ]] -++ [[ cheyenne.intel = linux.* ]] -++ [[ cheyenne.intel = jet.* ]] -++ [[ cheyenne.intel = s4.* ]] -++ [[ cheyenne.intel = gaea.* ]] -++ [[ cheyenne.intel = cheyenne.* ]] -++ TPN=36 -++ INPES_dflt=3 -++ JNPES_dflt=8 -++ INPES_thrd=3 -++ JNPES_thrd=4 -++ INPES_c384=8 -++ JNPES_c384=6 -++ THRD_c384=2 -++ INPES_c768=8 -++ JNPES_c768=16 -++ THRD_c768=2 -++ THRD_cpl_atmw_gdas=3 -++ INPES_cpl_atmw_gdas=6 -++ JNPES_cpl_atmw_gdas=8 -++ WPG_cpl_atmw_gdas=24 -++ WAV_tasks_atmw_gdas=264 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=6 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=6 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ ICE_tasks_cpl_thrd=10 -++ WAV_tasks_cpl_thrd=20 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=12 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=6 -++ JNPES_cpl_mpi=12 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=24 -++ ICE_tasks_cpl_mpi=12 -++ WAV_tasks_cpl_mpi=24 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=12 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ ICE_tasks_cpl_bmrk=48 -++ WAV_tasks_cpl_bmrk=100 -++ WLCLK_dflt=30 -++ export WLCLK=30 -++ WLCLK=30 -+ export TEST_NAME=compile -+ TEST_NAME=compile -+ export TEST_NR=009 -+ TEST_NR=009 -+ export JBNME=compile_009 -+ JBNME=compile_009 -+ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_009 -+ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_009 -++ date +%s -+ echo -n 'compile_009, 1681917418,' -+ source rt_utils.sh -++ set -eu -++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] -++ OPNREQ_TEST=false -++ qsub_id=0 -++ slurm_id=0 -++ bsub_id=0 -+ source atparse.bash -+ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_009 -+ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_009 -+ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_009 -+ [[ pbs = \s\l\u\r\m ]] -+ [[ pbs = \l\s\f ]] -+ [[ pbs = \p\b\s ]] -+ atparse -+ local __set_x -+ '[' -o xtrace ']' -+ __set_x='set -x' -+ set +x -+ [[ false = \f\a\l\s\e ]] -+ submit_and_wait job_card -+ [[ -z job_card ]] -+ '[' -o xtrace ']' -+ set_x='set -x' -+ set +x -Job id 9506864 -TEST 009 compile is waiting to enter the queue -TEST 009 compile is submitted -1 min. TEST 009 compile is waiting in a queue, status: Q jobid 9506864 -2 min. TEST 009 compile is waiting in a queue, status: Q jobid 9506864 -3 min. TEST 009 compile is running, status: R jobid 9506864 -4 min. TEST 009 compile is running, status: R jobid 9506864 -5 min. TEST 009 compile is running, status: R jobid 9506864 -6 min. TEST 009 compile is running, status: R jobid 9506864 -7 min. TEST 009 compile is running, status: R jobid 9506864 -8 min. TEST 009 compile is running, status: R jobid 9506864 -9 min. TEST 009 compile is running, status: R jobid 9506864 -10 min. TEST 009 compile is running, status: R jobid 9506864 -11 min. TEST 009 compile is running, status: R jobid 9506864 -12 min. TEST 009 compile is running, status: R jobid 9506864 -13 min. TEST 009 compile is running, status: R jobid 9506864 -14 min. TEST 009 compile is running, status: R jobid 9506864 -15 min. TEST 009 compile is running, status: R jobid 9506864 -16 min. TEST 009 compile is running, status: R jobid 9506864 -17 min. TEST 009 compile is running, status: R jobid 9506864 -18 min. TEST 009 compile is running, status: R jobid 9506864 -19 min. TEST 009 compile is running, status: R jobid 9506864 -20 min. TEST 009 compile is finished, status: E jobid 9506864 -+ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_009.exe --rwxr-xr-x 1 jongkim ncar 285380352 Apr 19 15:36 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_009.exe -+ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_009/compile_009_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_009/job_timestamp.txt -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_009' -Removing test failure flag file for compile_009 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_009 -++ date +%s -+ echo ' 1681918592, 1' -+ elapsed=1174 -+ echo 'Elapsed time 1174 seconds. Compile 009' -Elapsed time 1174 seconds. Compile 009 -+ '[' 0 -eq 0 ']' -Compile 009 elapsed time 1097 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -+ echo PID=4067 -PID=4067 -+ SECONDS=0 -+ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT -+ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT -+ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM -+ [[ 4 != 4 ]] -+ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ export 'MAKE_OPT=-DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON' -+ MAKE_OPT='-DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON' -+ export COMPILE_NR=010 -+ COMPILE_NR=010 -+ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ OPNREQ_TEST=false -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_010' -Removing test failure flag file for compile_010 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_010 -+ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_010.env ]] -+ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_010.env -++ export JOB_NR=070 -++ JOB_NR=070 -++ export COMPILE_NR=010 -++ COMPILE_NR=010 -++ export MACHINE_ID=cheyenne.intel -++ MACHINE_ID=cheyenne.intel -++ export RT_COMPILER=intel -++ RT_COMPILER=intel -++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ export SCHEDULER=pbs -++ SCHEDULER=pbs -++ export ACCNR=NRAL0032 -++ ACCNR=NRAL0032 -++ export QUEUE=regular -++ QUEUE=regular -++ export PARTITION= -++ PARTITION= -++ export ROCOTO=false -++ ROCOTO=false -++ export ECFLOW=true -++ ECFLOW=true -++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ source default_vars.sh -++ THRD=1 -++ INPES_atmaero=4 -++ JNPES_atmaero=8 -++ WPG_atmaero=6 -++ THRD_cpl_atmw=1 -++ INPES_cpl_atmw=3 -++ JNPES_cpl_atmw=8 -++ WPG_cpl_atmw=6 -++ WAV_tasks_cpl_atmw=30 -++ WAV_thrds_cpl_atmw=1 -++ THRD_cpl_c48=1 -++ INPES_cpl_c48=1 -++ JNPES_cpl_c48=1 -++ WPG_cpl_c48=6 -++ OCN_tasks_cpl_c48=4 -++ ICE_tasks_cpl_c48=4 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=3 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=3 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ OCN_thrds_cpl_thrd=1 -++ ICE_tasks_cpl_thrd=10 -++ ICE_thrds_cpl_thrd=1 -++ WAV_tasks_cpl_thrd=12 -++ WAV_thrds_cpl_thrd=2 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=6 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=4 -++ JNPES_cpl_mpi=8 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=34 -++ ICE_tasks_cpl_mpi=20 -++ WAV_tasks_cpl_mpi=28 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=8 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ OCN_thrds_cpl_bmrk=1 -++ ICE_tasks_cpl_bmrk=48 -++ ICE_thrds_cpl_bmrk=1 -++ WAV_tasks_cpl_bmrk=80 -++ WAV_thrds_cpl_bmrk=2 -++ THRD_cpl_c192=2 -++ INPES_cpl_c192=6 -++ JNPES_cpl_c192=8 -++ WPG_cpl_c192=12 -++ OCN_tasks_cpl_c192=60 -++ ICE_tasks_cpl_c192=24 -++ WAV_tasks_cpl_c192=80 -++ ATM_compute_tasks_cdeps_100=12 -++ OCN_tasks_cdeps_100=16 -++ ICE_tasks_cdeps_100=12 -++ ATM_compute_tasks_cdeps_025=40 -++ OCN_tasks_cdeps_025=120 -++ ICE_tasks_cdeps_025=48 -++ INPES_aqm=33 -++ JNPES_aqm=8 -++ aqm_omp_num_threads=1 -++ atm_omp_num_threads=1 -++ chm_omp_num_threads=1 -++ ice_omp_num_threads=1 -++ lnd_omp_num_threads=1 -++ med_omp_num_threads=1 -++ ocn_omp_num_threads=1 -++ wav_omp_num_threads=1 -++ [[ cheyenne.intel = wcoss2.* ]] -++ [[ cheyenne.intel = acorn.* ]] -++ [[ cheyenne.intel = orion.* ]] -++ [[ cheyenne.intel = hera.* ]] -++ [[ cheyenne.intel = linux.* ]] -++ [[ cheyenne.intel = jet.* ]] -++ [[ cheyenne.intel = s4.* ]] -++ [[ cheyenne.intel = gaea.* ]] -++ [[ cheyenne.intel = cheyenne.* ]] -++ TPN=36 -++ INPES_dflt=3 -++ JNPES_dflt=8 -++ INPES_thrd=3 -++ JNPES_thrd=4 -++ INPES_c384=8 -++ JNPES_c384=6 -++ THRD_c384=2 -++ INPES_c768=8 -++ JNPES_c768=16 -++ THRD_c768=2 -++ THRD_cpl_atmw_gdas=3 -++ INPES_cpl_atmw_gdas=6 -++ JNPES_cpl_atmw_gdas=8 -++ WPG_cpl_atmw_gdas=24 -++ WAV_tasks_atmw_gdas=264 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=6 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=6 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ ICE_tasks_cpl_thrd=10 -++ WAV_tasks_cpl_thrd=20 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=12 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=6 -++ JNPES_cpl_mpi=12 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=24 -++ ICE_tasks_cpl_mpi=12 -++ WAV_tasks_cpl_mpi=24 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=12 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ ICE_tasks_cpl_bmrk=48 -++ WAV_tasks_cpl_bmrk=100 -++ WLCLK_dflt=30 -++ export WLCLK=30 -++ WLCLK=30 -+ export TEST_NAME=compile -+ TEST_NAME=compile -+ export TEST_NR=010 -+ TEST_NR=010 -+ export JBNME=compile_010 -+ JBNME=compile_010 -+ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_010 -+ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_010 -++ date +%s -+ echo -n 'compile_010, 1681917418,' -+ source rt_utils.sh -++ set -eu -++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] -++ OPNREQ_TEST=false -++ qsub_id=0 -++ slurm_id=0 -++ bsub_id=0 -+ source atparse.bash -+ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_010 -+ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_010 -+ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_010 -+ [[ pbs = \s\l\u\r\m ]] -+ [[ pbs = \l\s\f ]] -+ [[ pbs = \p\b\s ]] -+ atparse -+ local __set_x -+ '[' -o xtrace ']' -+ __set_x='set -x' -+ set +x -+ [[ false = \f\a\l\s\e ]] -+ submit_and_wait job_card -+ [[ -z job_card ]] -+ '[' -o xtrace ']' -+ set_x='set -x' -+ set +x -Job id 9506862 -TEST 010 compile is waiting to enter the queue -TEST 010 compile is submitted -1 min. TEST 010 compile is waiting in a queue, status: Q jobid 9506862 -2 min. TEST 010 compile is running, status: R jobid 9506862 -3 min. TEST 010 compile is running, status: R jobid 9506862 -4 min. TEST 010 compile is running, status: R jobid 9506862 -5 min. TEST 010 compile is running, status: R jobid 9506862 -6 min. TEST 010 compile is running, status: R jobid 9506862 -7 min. TEST 010 compile is running, status: R jobid 9506862 -8 min. TEST 010 compile is running, status: R jobid 9506862 -9 min. TEST 010 compile is running, status: R jobid 9506862 -10 min. TEST 010 compile is running, status: R jobid 9506862 -11 min. TEST 010 compile is running, status: R jobid 9506862 -12 min. TEST 010 compile is running, status: R jobid 9506862 -13 min. TEST 010 compile is running, status: R jobid 9506862 -14 min. TEST 010 compile is running, status: R jobid 9506862 -15 min. TEST 010 compile is running, status: R jobid 9506862 -16 min. TEST 010 compile is running, status: R jobid 9506862 -17 min. TEST 010 compile is running, status: R jobid 9506862 -18 min. TEST 010 compile is running, status: R jobid 9506862 -qstat: 9506862.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -qstat: 9506862.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -19 min. TEST 010 compile is finished, status: - jobid 9506862 -+ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_010.exe --rwxr-xr-x 1 jongkim ncar 280625768 Apr 19 15:34 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_010.exe -+ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_010/compile_010_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_010/job_timestamp.txt -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_010' -Removing test failure flag file for compile_010 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_010 -++ date +%s -+ echo ' 1681918531, 1' -+ elapsed=1113 -+ echo 'Elapsed time 1113 seconds. Compile 010' -Elapsed time 1113 seconds. Compile 010 -+ '[' 0 -eq 0 ']' -Compile 010 elapsed time 993 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 -+ echo PID=28508 -PID=28508 -+ SECONDS=0 -+ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT -+ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT -+ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM -+ [[ 4 != 4 ]] -+ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ export 'MAKE_OPT=-DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp' -+ MAKE_OPT='-DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp' -+ export COMPILE_NR=011 -+ COMPILE_NR=011 -+ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ OPNREQ_TEST=false -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_011' -Removing test failure flag file for compile_011 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_011 -+ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_011.env ]] -+ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_011.env -++ export JOB_NR=091 -++ JOB_NR=091 -++ export COMPILE_NR=011 -++ COMPILE_NR=011 -++ export MACHINE_ID=cheyenne.intel -++ MACHINE_ID=cheyenne.intel -++ export RT_COMPILER=intel -++ RT_COMPILER=intel -++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ export SCHEDULER=pbs -++ SCHEDULER=pbs -++ export ACCNR=NRAL0032 -++ ACCNR=NRAL0032 -++ export QUEUE=regular -++ QUEUE=regular -++ export PARTITION= -++ PARTITION= -++ export ROCOTO=false -++ ROCOTO=false -++ export ECFLOW=true -++ ECFLOW=true -++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ source default_vars.sh -++ THRD=1 -++ INPES_atmaero=4 -++ JNPES_atmaero=8 -++ WPG_atmaero=6 -++ THRD_cpl_atmw=1 -++ INPES_cpl_atmw=3 -++ JNPES_cpl_atmw=8 -++ WPG_cpl_atmw=6 -++ WAV_tasks_cpl_atmw=30 -++ WAV_thrds_cpl_atmw=1 -++ THRD_cpl_c48=1 -++ INPES_cpl_c48=1 -++ JNPES_cpl_c48=1 -++ WPG_cpl_c48=6 -++ OCN_tasks_cpl_c48=4 -++ ICE_tasks_cpl_c48=4 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=3 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=3 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ OCN_thrds_cpl_thrd=1 -++ ICE_tasks_cpl_thrd=10 -++ ICE_thrds_cpl_thrd=1 -++ WAV_tasks_cpl_thrd=12 -++ WAV_thrds_cpl_thrd=2 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=6 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=4 -++ JNPES_cpl_mpi=8 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=34 -++ ICE_tasks_cpl_mpi=20 -++ WAV_tasks_cpl_mpi=28 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=8 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ OCN_thrds_cpl_bmrk=1 -++ ICE_tasks_cpl_bmrk=48 -++ ICE_thrds_cpl_bmrk=1 -++ WAV_tasks_cpl_bmrk=80 -++ WAV_thrds_cpl_bmrk=2 -++ THRD_cpl_c192=2 -++ INPES_cpl_c192=6 -++ JNPES_cpl_c192=8 -++ WPG_cpl_c192=12 -++ OCN_tasks_cpl_c192=60 -++ ICE_tasks_cpl_c192=24 -++ WAV_tasks_cpl_c192=80 -++ ATM_compute_tasks_cdeps_100=12 -++ OCN_tasks_cdeps_100=16 -++ ICE_tasks_cdeps_100=12 -++ ATM_compute_tasks_cdeps_025=40 -++ OCN_tasks_cdeps_025=120 -++ ICE_tasks_cdeps_025=48 -++ INPES_aqm=33 -++ JNPES_aqm=8 -++ aqm_omp_num_threads=1 -++ atm_omp_num_threads=1 -++ chm_omp_num_threads=1 -++ ice_omp_num_threads=1 -++ lnd_omp_num_threads=1 -++ med_omp_num_threads=1 -++ ocn_omp_num_threads=1 -++ wav_omp_num_threads=1 -++ [[ cheyenne.intel = wcoss2.* ]] -++ [[ cheyenne.intel = acorn.* ]] -++ [[ cheyenne.intel = orion.* ]] -++ [[ cheyenne.intel = hera.* ]] -++ [[ cheyenne.intel = linux.* ]] -++ [[ cheyenne.intel = jet.* ]] -++ [[ cheyenne.intel = s4.* ]] -++ [[ cheyenne.intel = gaea.* ]] -++ [[ cheyenne.intel = cheyenne.* ]] -++ TPN=36 -++ INPES_dflt=3 -++ JNPES_dflt=8 -++ INPES_thrd=3 -++ JNPES_thrd=4 -++ INPES_c384=8 -++ JNPES_c384=6 -++ THRD_c384=2 -++ INPES_c768=8 -++ JNPES_c768=16 -++ THRD_c768=2 -++ THRD_cpl_atmw_gdas=3 -++ INPES_cpl_atmw_gdas=6 -++ JNPES_cpl_atmw_gdas=8 -++ WPG_cpl_atmw_gdas=24 -++ WAV_tasks_atmw_gdas=264 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=6 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=6 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ ICE_tasks_cpl_thrd=10 -++ WAV_tasks_cpl_thrd=20 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=12 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=6 -++ JNPES_cpl_mpi=12 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=24 -++ ICE_tasks_cpl_mpi=12 -++ WAV_tasks_cpl_mpi=24 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=12 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ ICE_tasks_cpl_bmrk=48 -++ WAV_tasks_cpl_bmrk=100 -++ WLCLK_dflt=30 -++ export WLCLK=30 -++ WLCLK=30 -+ export TEST_NAME=compile -+ TEST_NAME=compile -+ export TEST_NR=011 -+ TEST_NR=011 -+ export JBNME=compile_011 -+ JBNME=compile_011 -+ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_011 -+ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_011 -++ date +%s -+ echo -n 'compile_011, 1681917920,' -+ source rt_utils.sh -++ set -eu -++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] -++ OPNREQ_TEST=false -++ qsub_id=0 -++ slurm_id=0 -++ bsub_id=0 -+ source atparse.bash -+ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_011 -+ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_011 -+ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_011 -+ [[ pbs = \s\l\u\r\m ]] -+ [[ pbs = \l\s\f ]] -+ [[ pbs = \p\b\s ]] -+ atparse -+ local __set_x -+ '[' -o xtrace ']' -+ __set_x='set -x' -+ set +x -+ [[ false = \f\a\l\s\e ]] -+ submit_and_wait job_card -+ [[ -z job_card ]] -+ '[' -o xtrace ']' -+ set_x='set -x' -+ set +x -Job id 9506920 -TEST 011 compile is waiting to enter the queue -TEST 011 compile is submitted -1 min. TEST 011 compile is waiting in a queue, status: Q jobid 9506920 -2 min. TEST 011 compile is running, status: R jobid 9506920 -3 min. TEST 011 compile is running, status: R jobid 9506920 -4 min. TEST 011 compile is running, status: R jobid 9506920 -5 min. TEST 011 compile is running, status: R jobid 9506920 -6 min. TEST 011 compile is running, status: R jobid 9506920 -7 min. TEST 011 compile is running, status: R jobid 9506920 -8 min. TEST 011 compile is running, status: R jobid 9506920 -9 min. TEST 011 compile is running, status: R jobid 9506920 -10 min. TEST 011 compile is running, status: R jobid 9506920 -11 min. TEST 011 compile is running, status: R jobid 9506920 -12 min. TEST 011 compile is running, status: R jobid 9506920 -13 min. TEST 011 compile is running, status: R jobid 9506920 -14 min. TEST 011 compile is running, status: R jobid 9506920 -15 min. TEST 011 compile is running, status: R jobid 9506920 -16 min. TEST 011 compile is running, status: R jobid 9506920 -17 min. TEST 011 compile is running, status: R jobid 9506920 -qstat: 9506920.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -qstat: 9506920.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -18 min. TEST 011 compile is finished, status: - jobid 9506920 -+ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_011.exe --rwxr-xr-x 1 jongkim ncar 279381360 Apr 19 15:41 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_011.exe -+ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_011/compile_011_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_011/job_timestamp.txt -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_011' -Removing test failure flag file for compile_011 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_011 -++ date +%s -+ echo ' 1681918962, 1' -+ elapsed=1042 -+ echo 'Elapsed time 1042 seconds. Compile 011' -Elapsed time 1042 seconds. Compile 011 -+ '[' 0 -eq 0 ']' -Compile 011 elapsed time 940 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -+ echo PID=29399 -PID=29399 -+ SECONDS=0 -+ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT -+ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT -+ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM -+ [[ 4 != 4 ]] -+ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ export 'MAKE_OPT=-DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON' -+ MAKE_OPT='-DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON' -+ export COMPILE_NR=012 -+ COMPILE_NR=012 -+ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ OPNREQ_TEST=false -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_012' -Removing test failure flag file for compile_012 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_012 -+ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_012.env ]] -+ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_012.env -++ export JOB_NR=095 -++ JOB_NR=095 -++ export COMPILE_NR=012 -++ COMPILE_NR=012 -++ export MACHINE_ID=cheyenne.intel -++ MACHINE_ID=cheyenne.intel -++ export RT_COMPILER=intel -++ RT_COMPILER=intel -++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ export SCHEDULER=pbs -++ SCHEDULER=pbs -++ export ACCNR=NRAL0032 -++ ACCNR=NRAL0032 -++ export QUEUE=regular -++ QUEUE=regular -++ export PARTITION= -++ PARTITION= -++ export ROCOTO=false -++ ROCOTO=false -++ export ECFLOW=true -++ ECFLOW=true -++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ source default_vars.sh -++ THRD=1 -++ INPES_atmaero=4 -++ JNPES_atmaero=8 -++ WPG_atmaero=6 -++ THRD_cpl_atmw=1 -++ INPES_cpl_atmw=3 -++ JNPES_cpl_atmw=8 -++ WPG_cpl_atmw=6 -++ WAV_tasks_cpl_atmw=30 -++ WAV_thrds_cpl_atmw=1 -++ THRD_cpl_c48=1 -++ INPES_cpl_c48=1 -++ JNPES_cpl_c48=1 -++ WPG_cpl_c48=6 -++ OCN_tasks_cpl_c48=4 -++ ICE_tasks_cpl_c48=4 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=3 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=3 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ OCN_thrds_cpl_thrd=1 -++ ICE_tasks_cpl_thrd=10 -++ ICE_thrds_cpl_thrd=1 -++ WAV_tasks_cpl_thrd=12 -++ WAV_thrds_cpl_thrd=2 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=6 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=4 -++ JNPES_cpl_mpi=8 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=34 -++ ICE_tasks_cpl_mpi=20 -++ WAV_tasks_cpl_mpi=28 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=8 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ OCN_thrds_cpl_bmrk=1 -++ ICE_tasks_cpl_bmrk=48 -++ ICE_thrds_cpl_bmrk=1 -++ WAV_tasks_cpl_bmrk=80 -++ WAV_thrds_cpl_bmrk=2 -++ THRD_cpl_c192=2 -++ INPES_cpl_c192=6 -++ JNPES_cpl_c192=8 -++ WPG_cpl_c192=12 -++ OCN_tasks_cpl_c192=60 -++ ICE_tasks_cpl_c192=24 -++ WAV_tasks_cpl_c192=80 -++ ATM_compute_tasks_cdeps_100=12 -++ OCN_tasks_cdeps_100=16 -++ ICE_tasks_cdeps_100=12 -++ ATM_compute_tasks_cdeps_025=40 -++ OCN_tasks_cdeps_025=120 -++ ICE_tasks_cdeps_025=48 -++ INPES_aqm=33 -++ JNPES_aqm=8 -++ aqm_omp_num_threads=1 -++ atm_omp_num_threads=1 -++ chm_omp_num_threads=1 -++ ice_omp_num_threads=1 -++ lnd_omp_num_threads=1 -++ med_omp_num_threads=1 -++ ocn_omp_num_threads=1 -++ wav_omp_num_threads=1 -++ [[ cheyenne.intel = wcoss2.* ]] -++ [[ cheyenne.intel = acorn.* ]] -++ [[ cheyenne.intel = orion.* ]] -++ [[ cheyenne.intel = hera.* ]] -++ [[ cheyenne.intel = linux.* ]] -++ [[ cheyenne.intel = jet.* ]] -++ [[ cheyenne.intel = s4.* ]] -++ [[ cheyenne.intel = gaea.* ]] -++ [[ cheyenne.intel = cheyenne.* ]] -++ TPN=36 -++ INPES_dflt=3 -++ JNPES_dflt=8 -++ INPES_thrd=3 -++ JNPES_thrd=4 -++ INPES_c384=8 -++ JNPES_c384=6 -++ THRD_c384=2 -++ INPES_c768=8 -++ JNPES_c768=16 -++ THRD_c768=2 -++ THRD_cpl_atmw_gdas=3 -++ INPES_cpl_atmw_gdas=6 -++ JNPES_cpl_atmw_gdas=8 -++ WPG_cpl_atmw_gdas=24 -++ WAV_tasks_atmw_gdas=264 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=6 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=6 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ ICE_tasks_cpl_thrd=10 -++ WAV_tasks_cpl_thrd=20 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=12 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=6 -++ JNPES_cpl_mpi=12 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=24 -++ ICE_tasks_cpl_mpi=12 -++ WAV_tasks_cpl_mpi=24 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=12 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ ICE_tasks_cpl_bmrk=48 -++ WAV_tasks_cpl_bmrk=100 -++ WLCLK_dflt=30 -++ export WLCLK=30 -++ WLCLK=30 -+ export TEST_NAME=compile -+ TEST_NAME=compile -+ export TEST_NR=012 -+ TEST_NR=012 -+ export JBNME=compile_012 -+ JBNME=compile_012 -+ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_012 -+ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_012 -++ date +%s -+ echo -n 'compile_012, 1681917981,' -+ source rt_utils.sh -++ set -eu -++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] -++ OPNREQ_TEST=false -++ qsub_id=0 -++ slurm_id=0 -++ bsub_id=0 -+ source atparse.bash -+ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_012 -+ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_012 -+ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_012 -+ [[ pbs = \s\l\u\r\m ]] -+ [[ pbs = \l\s\f ]] -+ [[ pbs = \p\b\s ]] -+ atparse -+ local __set_x -+ '[' -o xtrace ']' -+ __set_x='set -x' -+ set +x -+ [[ false = \f\a\l\s\e ]] -+ submit_and_wait job_card -+ [[ -z job_card ]] -+ '[' -o xtrace ']' -+ set_x='set -x' -+ set +x -Job id 9506927 -TEST 012 compile is waiting to enter the queue -TEST 012 compile is submitted -1 min. TEST 012 compile is waiting in a queue, status: Q jobid 9506927 -2 min. TEST 012 compile is waiting in a queue, status: Q jobid 9506927 -3 min. TEST 012 compile is running, status: R jobid 9506927 -4 min. TEST 012 compile is running, status: R jobid 9506927 -5 min. TEST 012 compile is running, status: R jobid 9506927 -6 min. TEST 012 compile is running, status: R jobid 9506927 -7 min. TEST 012 compile is running, status: R jobid 9506927 -8 min. TEST 012 compile is running, status: R jobid 9506927 -9 min. TEST 012 compile is running, status: R jobid 9506927 -10 min. TEST 012 compile is running, status: R jobid 9506927 -11 min. TEST 012 compile is running, status: R jobid 9506927 -12 min. TEST 012 compile is running, status: R jobid 9506927 -13 min. TEST 012 compile is running, status: R jobid 9506927 -14 min. TEST 012 compile is running, status: R jobid 9506927 -15 min. TEST 012 compile is running, status: R jobid 9506927 -qstat: 9506927.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -qstat: 9506927.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -16 min. TEST 012 compile is finished, status: - jobid 9506927 -+ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_012.exe --rwxr-xr-x 1 jongkim ncar 271124760 Apr 19 15:41 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_012.exe -+ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_012/compile_012_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_012/job_timestamp.txt -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_012' -Removing test failure flag file for compile_012 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_012 -++ date +%s -+ echo ' 1681918902, 1' -+ elapsed=921 -+ echo 'Elapsed time 921 seconds. Compile 012' -Elapsed time 921 seconds. Compile 012 -+ '[' 0 -eq 0 ']' -Compile 012 elapsed time 818 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -+ echo PID=64659 -PID=64659 -+ SECONDS=0 -+ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT -+ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT -+ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM -+ [[ 4 != 4 ]] -+ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ export 'MAKE_OPT=-DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON' -+ MAKE_OPT='-DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON' -+ export COMPILE_NR=013 -+ COMPILE_NR=013 -+ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ OPNREQ_TEST=false -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_013' -Removing test failure flag file for compile_013 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_013 -+ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_013.env ]] -+ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_013.env -++ export JOB_NR=097 -++ JOB_NR=097 -++ export COMPILE_NR=013 -++ COMPILE_NR=013 -++ export MACHINE_ID=cheyenne.intel -++ MACHINE_ID=cheyenne.intel -++ export RT_COMPILER=intel -++ RT_COMPILER=intel -++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ export SCHEDULER=pbs -++ SCHEDULER=pbs -++ export ACCNR=NRAL0032 -++ ACCNR=NRAL0032 -++ export QUEUE=regular -++ QUEUE=regular -++ export PARTITION= -++ PARTITION= -++ export ROCOTO=false -++ ROCOTO=false -++ export ECFLOW=true -++ ECFLOW=true -++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ source default_vars.sh -++ THRD=1 -++ INPES_atmaero=4 -++ JNPES_atmaero=8 -++ WPG_atmaero=6 -++ THRD_cpl_atmw=1 -++ INPES_cpl_atmw=3 -++ JNPES_cpl_atmw=8 -++ WPG_cpl_atmw=6 -++ WAV_tasks_cpl_atmw=30 -++ WAV_thrds_cpl_atmw=1 -++ THRD_cpl_c48=1 -++ INPES_cpl_c48=1 -++ JNPES_cpl_c48=1 -++ WPG_cpl_c48=6 -++ OCN_tasks_cpl_c48=4 -++ ICE_tasks_cpl_c48=4 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=3 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=3 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ OCN_thrds_cpl_thrd=1 -++ ICE_tasks_cpl_thrd=10 -++ ICE_thrds_cpl_thrd=1 -++ WAV_tasks_cpl_thrd=12 -++ WAV_thrds_cpl_thrd=2 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=6 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=4 -++ JNPES_cpl_mpi=8 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=34 -++ ICE_tasks_cpl_mpi=20 -++ WAV_tasks_cpl_mpi=28 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=8 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ OCN_thrds_cpl_bmrk=1 -++ ICE_tasks_cpl_bmrk=48 -++ ICE_thrds_cpl_bmrk=1 -++ WAV_tasks_cpl_bmrk=80 -++ WAV_thrds_cpl_bmrk=2 -++ THRD_cpl_c192=2 -++ INPES_cpl_c192=6 -++ JNPES_cpl_c192=8 -++ WPG_cpl_c192=12 -++ OCN_tasks_cpl_c192=60 -++ ICE_tasks_cpl_c192=24 -++ WAV_tasks_cpl_c192=80 -++ ATM_compute_tasks_cdeps_100=12 -++ OCN_tasks_cdeps_100=16 -++ ICE_tasks_cdeps_100=12 -++ ATM_compute_tasks_cdeps_025=40 -++ OCN_tasks_cdeps_025=120 -++ ICE_tasks_cdeps_025=48 -++ INPES_aqm=33 -++ JNPES_aqm=8 -++ aqm_omp_num_threads=1 -++ atm_omp_num_threads=1 -++ chm_omp_num_threads=1 -++ ice_omp_num_threads=1 -++ lnd_omp_num_threads=1 -++ med_omp_num_threads=1 -++ ocn_omp_num_threads=1 -++ wav_omp_num_threads=1 -++ [[ cheyenne.intel = wcoss2.* ]] -++ [[ cheyenne.intel = acorn.* ]] -++ [[ cheyenne.intel = orion.* ]] -++ [[ cheyenne.intel = hera.* ]] -++ [[ cheyenne.intel = linux.* ]] -++ [[ cheyenne.intel = jet.* ]] -++ [[ cheyenne.intel = s4.* ]] -++ [[ cheyenne.intel = gaea.* ]] -++ [[ cheyenne.intel = cheyenne.* ]] -++ TPN=36 -++ INPES_dflt=3 -++ JNPES_dflt=8 -++ INPES_thrd=3 -++ JNPES_thrd=4 -++ INPES_c384=8 -++ JNPES_c384=6 -++ THRD_c384=2 -++ INPES_c768=8 -++ JNPES_c768=16 -++ THRD_c768=2 -++ THRD_cpl_atmw_gdas=3 -++ INPES_cpl_atmw_gdas=6 -++ JNPES_cpl_atmw_gdas=8 -++ WPG_cpl_atmw_gdas=24 -++ WAV_tasks_atmw_gdas=264 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=6 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=6 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ ICE_tasks_cpl_thrd=10 -++ WAV_tasks_cpl_thrd=20 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=12 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=6 -++ JNPES_cpl_mpi=12 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=24 -++ ICE_tasks_cpl_mpi=12 -++ WAV_tasks_cpl_mpi=24 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=12 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ ICE_tasks_cpl_bmrk=48 -++ WAV_tasks_cpl_bmrk=100 -++ WLCLK_dflt=30 -++ export WLCLK=30 -++ WLCLK=30 -+ export TEST_NAME=compile -+ TEST_NAME=compile -+ export TEST_NR=013 -+ TEST_NR=013 -+ export JBNME=compile_013 -+ JBNME=compile_013 -+ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_013 -+ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_013 -++ date +%s -+ echo -n 'compile_013, 1681918532,' -+ source rt_utils.sh -++ set -eu -++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] -++ OPNREQ_TEST=false -++ qsub_id=0 -++ slurm_id=0 -++ bsub_id=0 -+ source atparse.bash -+ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_013 -+ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_013 -+ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_013 -+ [[ pbs = \s\l\u\r\m ]] -+ [[ pbs = \l\s\f ]] -+ [[ pbs = \p\b\s ]] -+ atparse -+ local __set_x -+ '[' -o xtrace ']' -+ __set_x='set -x' -+ set +x -+ [[ false = \f\a\l\s\e ]] -+ submit_and_wait job_card -+ [[ -z job_card ]] -+ '[' -o xtrace ']' -+ set_x='set -x' -+ set +x -Job id 9506957 -TEST 013 compile is waiting to enter the queue -TEST 013 compile is submitted -1 min. TEST 013 compile is waiting in a queue, status: Q jobid 9506957 -2 min. TEST 013 compile is running, status: R jobid 9506957 -3 min. TEST 013 compile is running, status: R jobid 9506957 -4 min. TEST 013 compile is running, status: R jobid 9506957 -5 min. TEST 013 compile is running, status: R jobid 9506957 -6 min. TEST 013 compile is running, status: R jobid 9506957 -7 min. TEST 013 compile is running, status: R jobid 9506957 -8 min. TEST 013 compile is running, status: R jobid 9506957 -9 min. TEST 013 compile is running, status: R jobid 9506957 -10 min. TEST 013 compile is running, status: R jobid 9506957 -11 min. TEST 013 compile is running, status: R jobid 9506957 -12 min. TEST 013 compile is running, status: R jobid 9506957 -13 min. TEST 013 compile is running, status: R jobid 9506957 -14 min. TEST 013 compile is running, status: R jobid 9506957 -15 min. TEST 013 compile is running, status: R jobid 9506957 -16 min. TEST 013 compile is running, status: R jobid 9506957 -17 min. TEST 013 compile is running, status: R jobid 9506957 -18 min. TEST 013 compile is running, status: R jobid 9506957 -19 min. TEST 013 compile is running, status: R jobid 9506957 -20 min. TEST 013 compile is running, status: R jobid 9506957 -21 min. TEST 013 compile is running, status: R jobid 9506957 -22 min. TEST 013 compile is running, status: R jobid 9506957 -23 min. TEST 013 compile is running, status: R jobid 9506957 -qstat: 9506957.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -qstat: 9506957.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -24 min. TEST 013 compile is finished, status: - jobid 9506957 -+ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_013.exe --rwxr-xr-x 1 jongkim ncar 283130688 Apr 19 15:58 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_013.exe -+ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_013/compile_013_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_013/job_timestamp.txt -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_013' -Removing test failure flag file for compile_013 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_013 -++ date +%s -+ echo ' 1681919931, 1' -+ elapsed=1399 -+ echo 'Elapsed time 1399 seconds. Compile 013' -Elapsed time 1399 seconds. Compile 013 -+ '[' 0 -eq 0 ']' -Compile 013 elapsed time 1302 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -+ echo PID=69717 -PID=69717 -+ SECONDS=0 -+ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT -+ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT -+ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM -+ [[ 4 != 4 ]] -+ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ export 'MAKE_OPT=-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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta' -+ MAKE_OPT='-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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta' -+ export COMPILE_NR=014 -+ COMPILE_NR=014 -+ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ OPNREQ_TEST=false -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_014' -Removing test failure flag file for compile_014 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_014 -+ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_014.env ]] -+ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_014.env -++ export JOB_NR=100 -++ JOB_NR=100 -++ export COMPILE_NR=014 -++ COMPILE_NR=014 -++ export MACHINE_ID=cheyenne.intel -++ MACHINE_ID=cheyenne.intel -++ export RT_COMPILER=intel -++ RT_COMPILER=intel -++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ export SCHEDULER=pbs -++ SCHEDULER=pbs -++ export ACCNR=NRAL0032 -++ ACCNR=NRAL0032 -++ export QUEUE=regular -++ QUEUE=regular -++ export PARTITION= -++ PARTITION= -++ export ROCOTO=false -++ ROCOTO=false -++ export ECFLOW=true -++ ECFLOW=true -++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ source default_vars.sh -++ THRD=1 -++ INPES_atmaero=4 -++ JNPES_atmaero=8 -++ WPG_atmaero=6 -++ THRD_cpl_atmw=1 -++ INPES_cpl_atmw=3 -++ JNPES_cpl_atmw=8 -++ WPG_cpl_atmw=6 -++ WAV_tasks_cpl_atmw=30 -++ WAV_thrds_cpl_atmw=1 -++ THRD_cpl_c48=1 -++ INPES_cpl_c48=1 -++ JNPES_cpl_c48=1 -++ WPG_cpl_c48=6 -++ OCN_tasks_cpl_c48=4 -++ ICE_tasks_cpl_c48=4 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=3 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=3 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ OCN_thrds_cpl_thrd=1 -++ ICE_tasks_cpl_thrd=10 -++ ICE_thrds_cpl_thrd=1 -++ WAV_tasks_cpl_thrd=12 -++ WAV_thrds_cpl_thrd=2 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=6 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=4 -++ JNPES_cpl_mpi=8 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=34 -++ ICE_tasks_cpl_mpi=20 -++ WAV_tasks_cpl_mpi=28 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=8 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ OCN_thrds_cpl_bmrk=1 -++ ICE_tasks_cpl_bmrk=48 -++ ICE_thrds_cpl_bmrk=1 -++ WAV_tasks_cpl_bmrk=80 -++ WAV_thrds_cpl_bmrk=2 -++ THRD_cpl_c192=2 -++ INPES_cpl_c192=6 -++ JNPES_cpl_c192=8 -++ WPG_cpl_c192=12 -++ OCN_tasks_cpl_c192=60 -++ ICE_tasks_cpl_c192=24 -++ WAV_tasks_cpl_c192=80 -++ ATM_compute_tasks_cdeps_100=12 -++ OCN_tasks_cdeps_100=16 -++ ICE_tasks_cdeps_100=12 -++ ATM_compute_tasks_cdeps_025=40 -++ OCN_tasks_cdeps_025=120 -++ ICE_tasks_cdeps_025=48 -++ INPES_aqm=33 -++ JNPES_aqm=8 -++ aqm_omp_num_threads=1 -++ atm_omp_num_threads=1 -++ chm_omp_num_threads=1 -++ ice_omp_num_threads=1 -++ lnd_omp_num_threads=1 -++ med_omp_num_threads=1 -++ ocn_omp_num_threads=1 -++ wav_omp_num_threads=1 -++ [[ cheyenne.intel = wcoss2.* ]] -++ [[ cheyenne.intel = acorn.* ]] -++ [[ cheyenne.intel = orion.* ]] -++ [[ cheyenne.intel = hera.* ]] -++ [[ cheyenne.intel = linux.* ]] -++ [[ cheyenne.intel = jet.* ]] -++ [[ cheyenne.intel = s4.* ]] -++ [[ cheyenne.intel = gaea.* ]] -++ [[ cheyenne.intel = cheyenne.* ]] -++ TPN=36 -++ INPES_dflt=3 -++ JNPES_dflt=8 -++ INPES_thrd=3 -++ JNPES_thrd=4 -++ INPES_c384=8 -++ JNPES_c384=6 -++ THRD_c384=2 -++ INPES_c768=8 -++ JNPES_c768=16 -++ THRD_c768=2 -++ THRD_cpl_atmw_gdas=3 -++ INPES_cpl_atmw_gdas=6 -++ JNPES_cpl_atmw_gdas=8 -++ WPG_cpl_atmw_gdas=24 -++ WAV_tasks_atmw_gdas=264 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=6 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=6 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ ICE_tasks_cpl_thrd=10 -++ WAV_tasks_cpl_thrd=20 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=12 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=6 -++ JNPES_cpl_mpi=12 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=24 -++ ICE_tasks_cpl_mpi=12 -++ WAV_tasks_cpl_mpi=24 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=12 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ ICE_tasks_cpl_bmrk=48 -++ WAV_tasks_cpl_bmrk=100 -++ WLCLK_dflt=30 -++ export WLCLK=30 -++ WLCLK=30 -+ export TEST_NAME=compile -+ TEST_NAME=compile -+ export TEST_NR=014 -+ TEST_NR=014 -+ export JBNME=compile_014 -+ JBNME=compile_014 -+ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_014 -+ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_014 -++ date +%s -+ echo -n 'compile_014, 1681918593,' -+ source rt_utils.sh -++ set -eu -++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] -++ OPNREQ_TEST=false -++ qsub_id=0 -++ slurm_id=0 -++ bsub_id=0 -+ source atparse.bash -+ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_014 -+ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_014 -+ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_014 -+ [[ pbs = \s\l\u\r\m ]] -+ [[ pbs = \l\s\f ]] -+ [[ pbs = \p\b\s ]] -+ atparse -+ local __set_x -+ '[' -o xtrace ']' -+ __set_x='set -x' -+ set +x -+ [[ false = \f\a\l\s\e ]] -+ submit_and_wait job_card -+ [[ -z job_card ]] -+ '[' -o xtrace ']' -+ set_x='set -x' -+ set +x -Job id 9506980 -TEST 014 compile is waiting to enter the queue -TEST 014 compile is submitted -1 min. TEST 014 compile is waiting in a queue, status: Q jobid 9506980 -2 min. TEST 014 compile is running, status: R jobid 9506980 -3 min. TEST 014 compile is running, status: R jobid 9506980 -4 min. TEST 014 compile is running, status: R jobid 9506980 -5 min. TEST 014 compile is running, status: R jobid 9506980 -6 min. TEST 014 compile is running, status: R jobid 9506980 -7 min. TEST 014 compile is running, status: R jobid 9506980 -8 min. TEST 014 compile is running, status: R jobid 9506980 -qstat: 9506980.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -qstat: 9506980.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -9 min. TEST 014 compile is finished, status: - jobid 9506980 -+ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_014.exe --rwxr-xr-x 1 jongkim ncar 791011432 Apr 19 15:44 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_014.exe -+ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_014/compile_014_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_014/job_timestamp.txt -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_014' -Removing test failure flag file for compile_014 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_014 -++ date +%s -+ echo ' 1681919082, 1' -+ elapsed=489 -+ echo 'Elapsed time 489 seconds. Compile 014' -Elapsed time 489 seconds. Compile 014 -+ '[' 0 -eq 0 ']' -Compile 014 elapsed time 404 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -+ echo PID=69720 -PID=69720 -+ SECONDS=0 -+ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT -+ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT -+ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM -+ [[ 4 != 4 ]] -+ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ export 'MAKE_OPT=-DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON' -+ MAKE_OPT='-DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON' -+ export COMPILE_NR=015 -+ COMPILE_NR=015 -+ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ OPNREQ_TEST=false -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_015' -Removing test failure flag file for compile_015 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_015 -+ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_015.env ]] -+ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_015.env -++ export JOB_NR=127 -++ JOB_NR=127 -++ export COMPILE_NR=015 -++ COMPILE_NR=015 -++ export MACHINE_ID=cheyenne.intel -++ MACHINE_ID=cheyenne.intel -++ export RT_COMPILER=intel -++ RT_COMPILER=intel -++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ export SCHEDULER=pbs -++ SCHEDULER=pbs -++ export ACCNR=NRAL0032 -++ ACCNR=NRAL0032 -++ export QUEUE=regular -++ QUEUE=regular -++ export PARTITION= -++ PARTITION= -++ export ROCOTO=false -++ ROCOTO=false -++ export ECFLOW=true -++ ECFLOW=true -++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ source default_vars.sh -++ THRD=1 -++ INPES_atmaero=4 -++ JNPES_atmaero=8 -++ WPG_atmaero=6 -++ THRD_cpl_atmw=1 -++ INPES_cpl_atmw=3 -++ JNPES_cpl_atmw=8 -++ WPG_cpl_atmw=6 -++ WAV_tasks_cpl_atmw=30 -++ WAV_thrds_cpl_atmw=1 -++ THRD_cpl_c48=1 -++ INPES_cpl_c48=1 -++ JNPES_cpl_c48=1 -++ WPG_cpl_c48=6 -++ OCN_tasks_cpl_c48=4 -++ ICE_tasks_cpl_c48=4 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=3 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=3 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ OCN_thrds_cpl_thrd=1 -++ ICE_tasks_cpl_thrd=10 -++ ICE_thrds_cpl_thrd=1 -++ WAV_tasks_cpl_thrd=12 -++ WAV_thrds_cpl_thrd=2 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=6 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=4 -++ JNPES_cpl_mpi=8 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=34 -++ ICE_tasks_cpl_mpi=20 -++ WAV_tasks_cpl_mpi=28 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=8 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ OCN_thrds_cpl_bmrk=1 -++ ICE_tasks_cpl_bmrk=48 -++ ICE_thrds_cpl_bmrk=1 -++ WAV_tasks_cpl_bmrk=80 -++ WAV_thrds_cpl_bmrk=2 -++ THRD_cpl_c192=2 -++ INPES_cpl_c192=6 -++ JNPES_cpl_c192=8 -++ WPG_cpl_c192=12 -++ OCN_tasks_cpl_c192=60 -++ ICE_tasks_cpl_c192=24 -++ WAV_tasks_cpl_c192=80 -++ ATM_compute_tasks_cdeps_100=12 -++ OCN_tasks_cdeps_100=16 -++ ICE_tasks_cdeps_100=12 -++ ATM_compute_tasks_cdeps_025=40 -++ OCN_tasks_cdeps_025=120 -++ ICE_tasks_cdeps_025=48 -++ INPES_aqm=33 -++ JNPES_aqm=8 -++ aqm_omp_num_threads=1 -++ atm_omp_num_threads=1 -++ chm_omp_num_threads=1 -++ ice_omp_num_threads=1 -++ lnd_omp_num_threads=1 -++ med_omp_num_threads=1 -++ ocn_omp_num_threads=1 -++ wav_omp_num_threads=1 -++ [[ cheyenne.intel = wcoss2.* ]] -++ [[ cheyenne.intel = acorn.* ]] -++ [[ cheyenne.intel = orion.* ]] -++ [[ cheyenne.intel = hera.* ]] -++ [[ cheyenne.intel = linux.* ]] -++ [[ cheyenne.intel = jet.* ]] -++ [[ cheyenne.intel = s4.* ]] -++ [[ cheyenne.intel = gaea.* ]] -++ [[ cheyenne.intel = cheyenne.* ]] -++ TPN=36 -++ INPES_dflt=3 -++ JNPES_dflt=8 -++ INPES_thrd=3 -++ JNPES_thrd=4 -++ INPES_c384=8 -++ JNPES_c384=6 -++ THRD_c384=2 -++ INPES_c768=8 -++ JNPES_c768=16 -++ THRD_c768=2 -++ THRD_cpl_atmw_gdas=3 -++ INPES_cpl_atmw_gdas=6 -++ JNPES_cpl_atmw_gdas=8 -++ WPG_cpl_atmw_gdas=24 -++ WAV_tasks_atmw_gdas=264 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=6 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=6 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ ICE_tasks_cpl_thrd=10 -++ WAV_tasks_cpl_thrd=20 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=12 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=6 -++ JNPES_cpl_mpi=12 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=24 -++ ICE_tasks_cpl_mpi=12 -++ WAV_tasks_cpl_mpi=24 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=12 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ ICE_tasks_cpl_bmrk=48 -++ WAV_tasks_cpl_bmrk=100 -++ WLCLK_dflt=30 -++ export WLCLK=30 -++ WLCLK=30 -+ export TEST_NAME=compile -+ TEST_NAME=compile -+ export TEST_NR=015 -+ TEST_NR=015 -+ export JBNME=compile_015 -+ JBNME=compile_015 -+ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_015 -+ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_015 -++ date +%s -+ echo -n 'compile_015, 1681918593,' -+ source rt_utils.sh -++ set -eu -++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] -++ OPNREQ_TEST=false -++ qsub_id=0 -++ slurm_id=0 -++ bsub_id=0 -+ source atparse.bash -+ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_015 -+ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_015 -+ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_015 -+ [[ pbs = \s\l\u\r\m ]] -+ [[ pbs = \l\s\f ]] -+ [[ pbs = \p\b\s ]] -+ atparse -+ local __set_x -+ '[' -o xtrace ']' -+ __set_x='set -x' -+ set +x -+ [[ false = \f\a\l\s\e ]] -+ submit_and_wait job_card -+ [[ -z job_card ]] -+ '[' -o xtrace ']' -+ set_x='set -x' -+ set +x -Job id 9506981 -TEST 015 compile is waiting to enter the queue -TEST 015 compile is submitted -1 min. TEST 015 compile is waiting in a queue, status: Q jobid 9506981 -2 min. TEST 015 compile is running, status: R jobid 9506981 -3 min. TEST 015 compile is running, status: R jobid 9506981 -4 min. TEST 015 compile is running, status: R jobid 9506981 -5 min. TEST 015 compile is running, status: R jobid 9506981 -6 min. TEST 015 compile is running, status: R jobid 9506981 -qstat: 9506981.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -qstat: 9506981.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -7 min. TEST 015 compile is finished, status: - jobid 9506981 -+ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_015.exe --rwxr-xr-x 1 jongkim ncar 584008944 Apr 19 15:41 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_015.exe -+ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_015/compile_015_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_015/job_timestamp.txt -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_015' -Removing test failure flag file for compile_015 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_015 -++ date +%s -+ echo ' 1681918962, 1' -+ elapsed=369 -+ echo 'Elapsed time 369 seconds. Compile 015' -Elapsed time 369 seconds. Compile 015 -+ '[' 0 -eq 0 ']' -Compile 015 elapsed time 263 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -+ echo PID=73059 -PID=73059 -+ SECONDS=0 -+ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT -+ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT -+ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM -+ [[ 4 != 4 ]] -+ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ export 'MAKE_OPT=-DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON' -+ MAKE_OPT='-DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON' -+ export COMPILE_NR=016 -+ COMPILE_NR=016 -+ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ OPNREQ_TEST=false -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_016' -Removing test failure flag file for compile_016 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_016 -+ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_016.env ]] -+ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_016.env -++ export JOB_NR=129 -++ JOB_NR=129 -++ export COMPILE_NR=016 -++ COMPILE_NR=016 -++ export MACHINE_ID=cheyenne.intel -++ MACHINE_ID=cheyenne.intel -++ export RT_COMPILER=intel -++ RT_COMPILER=intel -++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ export SCHEDULER=pbs -++ SCHEDULER=pbs -++ export ACCNR=NRAL0032 -++ ACCNR=NRAL0032 -++ export QUEUE=regular -++ QUEUE=regular -++ export PARTITION= -++ PARTITION= -++ export ROCOTO=false -++ ROCOTO=false -++ export ECFLOW=true -++ ECFLOW=true -++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ source default_vars.sh -++ THRD=1 -++ INPES_atmaero=4 -++ JNPES_atmaero=8 -++ WPG_atmaero=6 -++ THRD_cpl_atmw=1 -++ INPES_cpl_atmw=3 -++ JNPES_cpl_atmw=8 -++ WPG_cpl_atmw=6 -++ WAV_tasks_cpl_atmw=30 -++ WAV_thrds_cpl_atmw=1 -++ THRD_cpl_c48=1 -++ INPES_cpl_c48=1 -++ JNPES_cpl_c48=1 -++ WPG_cpl_c48=6 -++ OCN_tasks_cpl_c48=4 -++ ICE_tasks_cpl_c48=4 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=3 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=3 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ OCN_thrds_cpl_thrd=1 -++ ICE_tasks_cpl_thrd=10 -++ ICE_thrds_cpl_thrd=1 -++ WAV_tasks_cpl_thrd=12 -++ WAV_thrds_cpl_thrd=2 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=6 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=4 -++ JNPES_cpl_mpi=8 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=34 -++ ICE_tasks_cpl_mpi=20 -++ WAV_tasks_cpl_mpi=28 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=8 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ OCN_thrds_cpl_bmrk=1 -++ ICE_tasks_cpl_bmrk=48 -++ ICE_thrds_cpl_bmrk=1 -++ WAV_tasks_cpl_bmrk=80 -++ WAV_thrds_cpl_bmrk=2 -++ THRD_cpl_c192=2 -++ INPES_cpl_c192=6 -++ JNPES_cpl_c192=8 -++ WPG_cpl_c192=12 -++ OCN_tasks_cpl_c192=60 -++ ICE_tasks_cpl_c192=24 -++ WAV_tasks_cpl_c192=80 -++ ATM_compute_tasks_cdeps_100=12 -++ OCN_tasks_cdeps_100=16 -++ ICE_tasks_cdeps_100=12 -++ ATM_compute_tasks_cdeps_025=40 -++ OCN_tasks_cdeps_025=120 -++ ICE_tasks_cdeps_025=48 -++ INPES_aqm=33 -++ JNPES_aqm=8 -++ aqm_omp_num_threads=1 -++ atm_omp_num_threads=1 -++ chm_omp_num_threads=1 -++ ice_omp_num_threads=1 -++ lnd_omp_num_threads=1 -++ med_omp_num_threads=1 -++ ocn_omp_num_threads=1 -++ wav_omp_num_threads=1 -++ [[ cheyenne.intel = wcoss2.* ]] -++ [[ cheyenne.intel = acorn.* ]] -++ [[ cheyenne.intel = orion.* ]] -++ [[ cheyenne.intel = hera.* ]] -++ [[ cheyenne.intel = linux.* ]] -++ [[ cheyenne.intel = jet.* ]] -++ [[ cheyenne.intel = s4.* ]] -++ [[ cheyenne.intel = gaea.* ]] -++ [[ cheyenne.intel = cheyenne.* ]] -++ TPN=36 -++ INPES_dflt=3 -++ JNPES_dflt=8 -++ INPES_thrd=3 -++ JNPES_thrd=4 -++ INPES_c384=8 -++ JNPES_c384=6 -++ THRD_c384=2 -++ INPES_c768=8 -++ JNPES_c768=16 -++ THRD_c768=2 -++ THRD_cpl_atmw_gdas=3 -++ INPES_cpl_atmw_gdas=6 -++ JNPES_cpl_atmw_gdas=8 -++ WPG_cpl_atmw_gdas=24 -++ WAV_tasks_atmw_gdas=264 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=6 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=6 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ ICE_tasks_cpl_thrd=10 -++ WAV_tasks_cpl_thrd=20 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=12 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=6 -++ JNPES_cpl_mpi=12 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=24 -++ ICE_tasks_cpl_mpi=12 -++ WAV_tasks_cpl_mpi=24 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=12 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ ICE_tasks_cpl_bmrk=48 -++ WAV_tasks_cpl_bmrk=100 -++ WLCLK_dflt=30 -++ export WLCLK=30 -++ WLCLK=30 -+ export TEST_NAME=compile -+ TEST_NAME=compile -+ export TEST_NR=016 -+ TEST_NR=016 -+ export JBNME=compile_016 -+ JBNME=compile_016 -+ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_016 -+ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_016 -++ date +%s -+ echo -n 'compile_016, 1681918653,' -+ source rt_utils.sh -++ set -eu -++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] -++ OPNREQ_TEST=false -++ qsub_id=0 -++ slurm_id=0 -++ bsub_id=0 -+ source atparse.bash -+ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_016 -+ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_016 -+ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_016 -+ [[ pbs = \s\l\u\r\m ]] -+ [[ pbs = \l\s\f ]] -+ [[ pbs = \p\b\s ]] -+ atparse -+ local __set_x -+ '[' -o xtrace ']' -+ __set_x='set -x' -+ set +x -+ [[ false = \f\a\l\s\e ]] -+ submit_and_wait job_card -+ [[ -z job_card ]] -+ '[' -o xtrace ']' -+ set_x='set -x' -+ set +x -Job id 9506996 -TEST 016 compile is waiting to enter the queue -TEST 016 compile is submitted -1 min. TEST 016 compile is waiting in a queue, status: Q jobid 9506996 -2 min. TEST 016 compile is waiting in a queue, status: Q jobid 9506996 -3 min. TEST 016 compile is running, status: R jobid 9506996 -4 min. TEST 016 compile is running, status: R jobid 9506996 -5 min. TEST 016 compile is running, status: R jobid 9506996 -6 min. TEST 016 compile is running, status: R jobid 9506996 -7 min. TEST 016 compile is running, status: R jobid 9506996 -8 min. TEST 016 compile is running, status: R jobid 9506996 -9 min. TEST 016 compile is running, status: R jobid 9506996 -10 min. TEST 016 compile is running, status: R jobid 9506996 -11 min. TEST 016 compile is running, status: R jobid 9506996 -12 min. TEST 016 compile is running, status: R jobid 9506996 -13 min. TEST 016 compile is running, status: R jobid 9506996 -14 min. TEST 016 compile is running, status: R jobid 9506996 -15 min. TEST 016 compile is running, status: R jobid 9506996 -16 min. TEST 016 compile is running, status: R jobid 9506996 -17 min. TEST 016 compile is running, status: R jobid 9506996 -qstat: 9506996.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -qstat: 9506996.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -18 min. TEST 016 compile is finished, status: - jobid 9506996 -+ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_016.exe --rwxr-xr-x 1 jongkim ncar 272728712 Apr 19 15:53 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_016.exe -+ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_016/compile_016_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_016/job_timestamp.txt -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_016' -Removing test failure flag file for compile_016 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_016 -++ date +%s -+ echo ' 1681919689, 1' -+ elapsed=1036 -+ echo 'Elapsed time 1036 seconds. Compile 016' -Elapsed time 1036 seconds. Compile 016 -+ '[' 0 -eq 0 ']' -Compile 016 elapsed time 863 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -+ echo PID=19839 -PID=19839 -+ SECONDS=0 -+ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT -+ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT -+ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM -+ [[ 4 != 4 ]] -+ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ export 'MAKE_OPT=-DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON' -+ MAKE_OPT='-DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON' -+ export COMPILE_NR=017 -+ COMPILE_NR=017 -+ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ OPNREQ_TEST=false -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_017' -Removing test failure flag file for compile_017 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_017 -+ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_017.env ]] -+ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_017.env -++ export JOB_NR=138 -++ JOB_NR=138 -++ export COMPILE_NR=017 -++ COMPILE_NR=017 -++ export MACHINE_ID=cheyenne.intel -++ MACHINE_ID=cheyenne.intel -++ export RT_COMPILER=intel -++ RT_COMPILER=intel -++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ export SCHEDULER=pbs -++ SCHEDULER=pbs -++ export ACCNR=NRAL0032 -++ ACCNR=NRAL0032 -++ export QUEUE=regular -++ QUEUE=regular -++ export PARTITION= -++ PARTITION= -++ export ROCOTO=false -++ ROCOTO=false -++ export ECFLOW=true -++ ECFLOW=true -++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ source default_vars.sh -++ THRD=1 -++ INPES_atmaero=4 -++ JNPES_atmaero=8 -++ WPG_atmaero=6 -++ THRD_cpl_atmw=1 -++ INPES_cpl_atmw=3 -++ JNPES_cpl_atmw=8 -++ WPG_cpl_atmw=6 -++ WAV_tasks_cpl_atmw=30 -++ WAV_thrds_cpl_atmw=1 -++ THRD_cpl_c48=1 -++ INPES_cpl_c48=1 -++ JNPES_cpl_c48=1 -++ WPG_cpl_c48=6 -++ OCN_tasks_cpl_c48=4 -++ ICE_tasks_cpl_c48=4 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=3 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=3 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ OCN_thrds_cpl_thrd=1 -++ ICE_tasks_cpl_thrd=10 -++ ICE_thrds_cpl_thrd=1 -++ WAV_tasks_cpl_thrd=12 -++ WAV_thrds_cpl_thrd=2 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=6 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=4 -++ JNPES_cpl_mpi=8 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=34 -++ ICE_tasks_cpl_mpi=20 -++ WAV_tasks_cpl_mpi=28 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=8 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ OCN_thrds_cpl_bmrk=1 -++ ICE_tasks_cpl_bmrk=48 -++ ICE_thrds_cpl_bmrk=1 -++ WAV_tasks_cpl_bmrk=80 -++ WAV_thrds_cpl_bmrk=2 -++ THRD_cpl_c192=2 -++ INPES_cpl_c192=6 -++ JNPES_cpl_c192=8 -++ WPG_cpl_c192=12 -++ OCN_tasks_cpl_c192=60 -++ ICE_tasks_cpl_c192=24 -++ WAV_tasks_cpl_c192=80 -++ ATM_compute_tasks_cdeps_100=12 -++ OCN_tasks_cdeps_100=16 -++ ICE_tasks_cdeps_100=12 -++ ATM_compute_tasks_cdeps_025=40 -++ OCN_tasks_cdeps_025=120 -++ ICE_tasks_cdeps_025=48 -++ INPES_aqm=33 -++ JNPES_aqm=8 -++ aqm_omp_num_threads=1 -++ atm_omp_num_threads=1 -++ chm_omp_num_threads=1 -++ ice_omp_num_threads=1 -++ lnd_omp_num_threads=1 -++ med_omp_num_threads=1 -++ ocn_omp_num_threads=1 -++ wav_omp_num_threads=1 -++ [[ cheyenne.intel = wcoss2.* ]] -++ [[ cheyenne.intel = acorn.* ]] -++ [[ cheyenne.intel = orion.* ]] -++ [[ cheyenne.intel = hera.* ]] -++ [[ cheyenne.intel = linux.* ]] -++ [[ cheyenne.intel = jet.* ]] -++ [[ cheyenne.intel = s4.* ]] -++ [[ cheyenne.intel = gaea.* ]] -++ [[ cheyenne.intel = cheyenne.* ]] -++ TPN=36 -++ INPES_dflt=3 -++ JNPES_dflt=8 -++ INPES_thrd=3 -++ JNPES_thrd=4 -++ INPES_c384=8 -++ JNPES_c384=6 -++ THRD_c384=2 -++ INPES_c768=8 -++ JNPES_c768=16 -++ THRD_c768=2 -++ THRD_cpl_atmw_gdas=3 -++ INPES_cpl_atmw_gdas=6 -++ JNPES_cpl_atmw_gdas=8 -++ WPG_cpl_atmw_gdas=24 -++ WAV_tasks_atmw_gdas=264 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=6 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=6 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ ICE_tasks_cpl_thrd=10 -++ WAV_tasks_cpl_thrd=20 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=12 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=6 -++ JNPES_cpl_mpi=12 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=24 -++ ICE_tasks_cpl_mpi=12 -++ WAV_tasks_cpl_mpi=24 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=12 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ ICE_tasks_cpl_bmrk=48 -++ WAV_tasks_cpl_bmrk=100 -++ WLCLK_dflt=30 -++ export WLCLK=30 -++ WLCLK=30 -+ export TEST_NAME=compile -+ TEST_NAME=compile -+ export TEST_NR=017 -+ TEST_NR=017 -+ export JBNME=compile_017 -+ JBNME=compile_017 -+ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_017 -+ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_017 -++ date +%s -+ echo -n 'compile_017, 1681918902,' -+ source rt_utils.sh -++ set -eu -++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] -++ OPNREQ_TEST=false -++ qsub_id=0 -++ slurm_id=0 -++ bsub_id=0 -+ source atparse.bash -+ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_017 -+ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_017 -+ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_017 -+ [[ pbs = \s\l\u\r\m ]] -+ [[ pbs = \l\s\f ]] -+ [[ pbs = \p\b\s ]] -+ atparse -+ local __set_x -+ '[' -o xtrace ']' -+ __set_x='set -x' -+ set +x -+ [[ false = \f\a\l\s\e ]] -+ submit_and_wait job_card -+ [[ -z job_card ]] -+ '[' -o xtrace ']' -+ set_x='set -x' -+ set +x -Job id 9507030 -TEST 017 compile is waiting to enter the queue -TEST 017 compile is submitted -1 min. TEST 017 compile is waiting in a queue, status: Q jobid 9507030 -2 min. TEST 017 compile is waiting in a queue, status: Q jobid 9507030 -3 min. TEST 017 compile is running, status: R jobid 9507030 -4 min. TEST 017 compile is running, status: R jobid 9507030 -5 min. TEST 017 compile is running, status: R jobid 9507030 -6 min. TEST 017 compile is running, status: R jobid 9507030 -7 min. TEST 017 compile is running, status: R jobid 9507030 -8 min. TEST 017 compile is running, status: R jobid 9507030 -9 min. TEST 017 compile is running, status: R jobid 9507030 -10 min. TEST 017 compile is running, status: R jobid 9507030 -11 min. TEST 017 compile is running, status: R jobid 9507030 -12 min. TEST 017 compile is running, status: R jobid 9507030 -13 min. TEST 017 compile is running, status: R jobid 9507030 -14 min. TEST 017 compile is running, status: R jobid 9507030 -15 min. TEST 017 compile is running, status: R jobid 9507030 -16 min. TEST 017 compile is running, status: R jobid 9507030 -qstat: 9507030.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -qstat: 9507030.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -17 min. TEST 017 compile is finished, status: - jobid 9507030 -+ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_017.exe --rwxr-xr-x 1 jongkim ncar 272901872 Apr 19 15:57 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_017.exe -+ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_017/compile_017_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_017/job_timestamp.txt -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_017' -Removing test failure flag file for compile_017 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_017 -++ date +%s -+ echo ' 1681919882, 1' -+ elapsed=980 -+ echo 'Elapsed time 980 seconds. Compile 017' -Elapsed time 980 seconds. Compile 017 -+ '[' 0 -eq 0 ']' -Compile 017 elapsed time 846 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -+ echo PID=19838 -PID=19838 -+ SECONDS=0 -+ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT -+ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT -+ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM -+ [[ 4 != 4 ]] -+ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ export 'MAKE_OPT=-DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON' -+ MAKE_OPT='-DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON' -+ export COMPILE_NR=018 -+ COMPILE_NR=018 -+ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ OPNREQ_TEST=false -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_018' -Removing test failure flag file for compile_018 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_018 -+ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_018.env ]] -+ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_018.env -++ export JOB_NR=140 -++ JOB_NR=140 -++ export COMPILE_NR=018 -++ COMPILE_NR=018 -++ export MACHINE_ID=cheyenne.intel -++ MACHINE_ID=cheyenne.intel -++ export RT_COMPILER=intel -++ RT_COMPILER=intel -++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ export SCHEDULER=pbs -++ SCHEDULER=pbs -++ export ACCNR=NRAL0032 -++ ACCNR=NRAL0032 -++ export QUEUE=regular -++ QUEUE=regular -++ export PARTITION= -++ PARTITION= -++ export ROCOTO=false -++ ROCOTO=false -++ export ECFLOW=true -++ ECFLOW=true -++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ source default_vars.sh -++ THRD=1 -++ INPES_atmaero=4 -++ JNPES_atmaero=8 -++ WPG_atmaero=6 -++ THRD_cpl_atmw=1 -++ INPES_cpl_atmw=3 -++ JNPES_cpl_atmw=8 -++ WPG_cpl_atmw=6 -++ WAV_tasks_cpl_atmw=30 -++ WAV_thrds_cpl_atmw=1 -++ THRD_cpl_c48=1 -++ INPES_cpl_c48=1 -++ JNPES_cpl_c48=1 -++ WPG_cpl_c48=6 -++ OCN_tasks_cpl_c48=4 -++ ICE_tasks_cpl_c48=4 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=3 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=3 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ OCN_thrds_cpl_thrd=1 -++ ICE_tasks_cpl_thrd=10 -++ ICE_thrds_cpl_thrd=1 -++ WAV_tasks_cpl_thrd=12 -++ WAV_thrds_cpl_thrd=2 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=6 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=4 -++ JNPES_cpl_mpi=8 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=34 -++ ICE_tasks_cpl_mpi=20 -++ WAV_tasks_cpl_mpi=28 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=8 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ OCN_thrds_cpl_bmrk=1 -++ ICE_tasks_cpl_bmrk=48 -++ ICE_thrds_cpl_bmrk=1 -++ WAV_tasks_cpl_bmrk=80 -++ WAV_thrds_cpl_bmrk=2 -++ THRD_cpl_c192=2 -++ INPES_cpl_c192=6 -++ JNPES_cpl_c192=8 -++ WPG_cpl_c192=12 -++ OCN_tasks_cpl_c192=60 -++ ICE_tasks_cpl_c192=24 -++ WAV_tasks_cpl_c192=80 -++ ATM_compute_tasks_cdeps_100=12 -++ OCN_tasks_cdeps_100=16 -++ ICE_tasks_cdeps_100=12 -++ ATM_compute_tasks_cdeps_025=40 -++ OCN_tasks_cdeps_025=120 -++ ICE_tasks_cdeps_025=48 -++ INPES_aqm=33 -++ JNPES_aqm=8 -++ aqm_omp_num_threads=1 -++ atm_omp_num_threads=1 -++ chm_omp_num_threads=1 -++ ice_omp_num_threads=1 -++ lnd_omp_num_threads=1 -++ med_omp_num_threads=1 -++ ocn_omp_num_threads=1 -++ wav_omp_num_threads=1 -++ [[ cheyenne.intel = wcoss2.* ]] -++ [[ cheyenne.intel = acorn.* ]] -++ [[ cheyenne.intel = orion.* ]] -++ [[ cheyenne.intel = hera.* ]] -++ [[ cheyenne.intel = linux.* ]] -++ [[ cheyenne.intel = jet.* ]] -++ [[ cheyenne.intel = s4.* ]] -++ [[ cheyenne.intel = gaea.* ]] -++ [[ cheyenne.intel = cheyenne.* ]] -++ TPN=36 -++ INPES_dflt=3 -++ JNPES_dflt=8 -++ INPES_thrd=3 -++ JNPES_thrd=4 -++ INPES_c384=8 -++ JNPES_c384=6 -++ THRD_c384=2 -++ INPES_c768=8 -++ JNPES_c768=16 -++ THRD_c768=2 -++ THRD_cpl_atmw_gdas=3 -++ INPES_cpl_atmw_gdas=6 -++ JNPES_cpl_atmw_gdas=8 -++ WPG_cpl_atmw_gdas=24 -++ WAV_tasks_atmw_gdas=264 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=6 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=6 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ ICE_tasks_cpl_thrd=10 -++ WAV_tasks_cpl_thrd=20 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=12 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=6 -++ JNPES_cpl_mpi=12 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=24 -++ ICE_tasks_cpl_mpi=12 -++ WAV_tasks_cpl_mpi=24 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=12 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ ICE_tasks_cpl_bmrk=48 -++ WAV_tasks_cpl_bmrk=100 -++ WLCLK_dflt=30 -++ export WLCLK=30 -++ WLCLK=30 -+ export TEST_NAME=compile -+ TEST_NAME=compile -+ export TEST_NR=018 -+ TEST_NR=018 -+ export JBNME=compile_018 -+ JBNME=compile_018 -+ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_018 -+ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_018 -++ date +%s -+ echo -n 'compile_018, 1681918902,' -+ source rt_utils.sh -++ set -eu -++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] -++ OPNREQ_TEST=false -++ qsub_id=0 -++ slurm_id=0 -++ bsub_id=0 -+ source atparse.bash -+ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_018 -+ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_018 -+ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_018 -+ [[ pbs = \s\l\u\r\m ]] -+ [[ pbs = \l\s\f ]] -+ [[ pbs = \p\b\s ]] -+ atparse -+ local __set_x -+ '[' -o xtrace ']' -+ __set_x='set -x' -+ set +x -+ [[ false = \f\a\l\s\e ]] -+ submit_and_wait job_card -+ [[ -z job_card ]] -+ '[' -o xtrace ']' -+ set_x='set -x' -+ set +x -Job id 9507031 -TEST 018 compile is waiting to enter the queue -TEST 018 compile is submitted -1 min. TEST 018 compile is waiting in a queue, status: Q jobid 9507031 -2 min. TEST 018 compile is waiting in a queue, status: Q jobid 9507031 -3 min. TEST 018 compile is running, status: R jobid 9507031 -4 min. TEST 018 compile is running, status: R jobid 9507031 -5 min. TEST 018 compile is running, status: R jobid 9507031 -6 min. TEST 018 compile is running, status: R jobid 9507031 -qstat: 9507031.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -qstat: 9507031.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -7 min. TEST 018 compile is finished, status: - jobid 9507031 -+ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_018.exe --rwxr-xr-x 1 jongkim ncar 497104040 Apr 19 15:47 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_018.exe -+ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_018/compile_018_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_018/job_timestamp.txt -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_018' -Removing test failure flag file for compile_018 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_018 -++ date +%s -+ echo ' 1681919270, 1' -+ elapsed=368 -+ echo 'Elapsed time 368 seconds. Compile 018' -Elapsed time 368 seconds. Compile 018 -+ '[' 0 -eq 0 ']' -Compile 018 elapsed time 277 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -+ echo PID=19840 -PID=19840 -+ SECONDS=0 -+ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT -+ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT -+ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM -+ [[ 4 != 4 ]] -+ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ export 'MAKE_OPT=-DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON' -+ MAKE_OPT='-DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON' -+ export COMPILE_NR=019 -+ COMPILE_NR=019 -+ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ OPNREQ_TEST=false -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_019' -Removing test failure flag file for compile_019 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_019 -+ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_019.env ]] -+ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_019.env -++ export JOB_NR=143 -++ JOB_NR=143 -++ export COMPILE_NR=019 -++ COMPILE_NR=019 -++ export MACHINE_ID=cheyenne.intel -++ MACHINE_ID=cheyenne.intel -++ export RT_COMPILER=intel -++ RT_COMPILER=intel -++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ export SCHEDULER=pbs -++ SCHEDULER=pbs -++ export ACCNR=NRAL0032 -++ ACCNR=NRAL0032 -++ export QUEUE=regular -++ QUEUE=regular -++ export PARTITION= -++ PARTITION= -++ export ROCOTO=false -++ ROCOTO=false -++ export ECFLOW=true -++ ECFLOW=true -++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ source default_vars.sh -++ THRD=1 -++ INPES_atmaero=4 -++ JNPES_atmaero=8 -++ WPG_atmaero=6 -++ THRD_cpl_atmw=1 -++ INPES_cpl_atmw=3 -++ JNPES_cpl_atmw=8 -++ WPG_cpl_atmw=6 -++ WAV_tasks_cpl_atmw=30 -++ WAV_thrds_cpl_atmw=1 -++ THRD_cpl_c48=1 -++ INPES_cpl_c48=1 -++ JNPES_cpl_c48=1 -++ WPG_cpl_c48=6 -++ OCN_tasks_cpl_c48=4 -++ ICE_tasks_cpl_c48=4 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=3 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=3 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ OCN_thrds_cpl_thrd=1 -++ ICE_tasks_cpl_thrd=10 -++ ICE_thrds_cpl_thrd=1 -++ WAV_tasks_cpl_thrd=12 -++ WAV_thrds_cpl_thrd=2 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=6 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=4 -++ JNPES_cpl_mpi=8 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=34 -++ ICE_tasks_cpl_mpi=20 -++ WAV_tasks_cpl_mpi=28 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=8 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ OCN_thrds_cpl_bmrk=1 -++ ICE_tasks_cpl_bmrk=48 -++ ICE_thrds_cpl_bmrk=1 -++ WAV_tasks_cpl_bmrk=80 -++ WAV_thrds_cpl_bmrk=2 -++ THRD_cpl_c192=2 -++ INPES_cpl_c192=6 -++ JNPES_cpl_c192=8 -++ WPG_cpl_c192=12 -++ OCN_tasks_cpl_c192=60 -++ ICE_tasks_cpl_c192=24 -++ WAV_tasks_cpl_c192=80 -++ ATM_compute_tasks_cdeps_100=12 -++ OCN_tasks_cdeps_100=16 -++ ICE_tasks_cdeps_100=12 -++ ATM_compute_tasks_cdeps_025=40 -++ OCN_tasks_cdeps_025=120 -++ ICE_tasks_cdeps_025=48 -++ INPES_aqm=33 -++ JNPES_aqm=8 -++ aqm_omp_num_threads=1 -++ atm_omp_num_threads=1 -++ chm_omp_num_threads=1 -++ ice_omp_num_threads=1 -++ lnd_omp_num_threads=1 -++ med_omp_num_threads=1 -++ ocn_omp_num_threads=1 -++ wav_omp_num_threads=1 -++ [[ cheyenne.intel = wcoss2.* ]] -++ [[ cheyenne.intel = acorn.* ]] -++ [[ cheyenne.intel = orion.* ]] -++ [[ cheyenne.intel = hera.* ]] -++ [[ cheyenne.intel = linux.* ]] -++ [[ cheyenne.intel = jet.* ]] -++ [[ cheyenne.intel = s4.* ]] -++ [[ cheyenne.intel = gaea.* ]] -++ [[ cheyenne.intel = cheyenne.* ]] -++ TPN=36 -++ INPES_dflt=3 -++ JNPES_dflt=8 -++ INPES_thrd=3 -++ JNPES_thrd=4 -++ INPES_c384=8 -++ JNPES_c384=6 -++ THRD_c384=2 -++ INPES_c768=8 -++ JNPES_c768=16 -++ THRD_c768=2 -++ THRD_cpl_atmw_gdas=3 -++ INPES_cpl_atmw_gdas=6 -++ JNPES_cpl_atmw_gdas=8 -++ WPG_cpl_atmw_gdas=24 -++ WAV_tasks_atmw_gdas=264 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=6 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=6 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ ICE_tasks_cpl_thrd=10 -++ WAV_tasks_cpl_thrd=20 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=12 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=6 -++ JNPES_cpl_mpi=12 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=24 -++ ICE_tasks_cpl_mpi=12 -++ WAV_tasks_cpl_mpi=24 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=12 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ ICE_tasks_cpl_bmrk=48 -++ WAV_tasks_cpl_bmrk=100 -++ WLCLK_dflt=30 -++ export WLCLK=30 -++ WLCLK=30 -+ export TEST_NAME=compile -+ TEST_NAME=compile -+ export TEST_NR=019 -+ TEST_NR=019 -+ export JBNME=compile_019 -+ JBNME=compile_019 -+ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_019 -+ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_019 -++ date +%s -+ echo -n 'compile_019, 1681918902,' -+ source rt_utils.sh -++ set -eu -++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] -++ OPNREQ_TEST=false -++ qsub_id=0 -++ slurm_id=0 -++ bsub_id=0 -+ source atparse.bash -+ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_019 -+ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_019 -+ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_019 -+ [[ pbs = \s\l\u\r\m ]] -+ [[ pbs = \l\s\f ]] -+ [[ pbs = \p\b\s ]] -+ atparse -+ local __set_x -+ '[' -o xtrace ']' -+ __set_x='set -x' -+ set +x -+ [[ false = \f\a\l\s\e ]] -+ submit_and_wait job_card -+ [[ -z job_card ]] -+ '[' -o xtrace ']' -+ set_x='set -x' -+ set +x -Job id 9507032 -TEST 019 compile is waiting to enter the queue -TEST 019 compile is submitted -1 min. TEST 019 compile is waiting in a queue, status: Q jobid 9507032 -2 min. TEST 019 compile is waiting in a queue, status: Q jobid 9507032 -3 min. TEST 019 compile is running, status: R jobid 9507032 -4 min. TEST 019 compile is running, status: R jobid 9507032 -5 min. TEST 019 compile is running, status: R jobid 9507032 -6 min. TEST 019 compile is running, status: R jobid 9507032 -7 min. TEST 019 compile is running, status: R jobid 9507032 -8 min. TEST 019 compile is running, status: R jobid 9507032 -qstat: 9507032.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -qstat: 9507032.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -9 min. TEST 019 compile is finished, status: - jobid 9507032 -+ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_019.exe --rwxr-xr-x 1 jongkim ncar 497150376 Apr 19 15:49 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_019.exe -+ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_019/compile_019_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_019/job_timestamp.txt -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_019' -Removing test failure flag file for compile_019 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_019 -++ date +%s -+ echo ' 1681919392, 1' -+ elapsed=490 -+ echo 'Elapsed time 490 seconds. Compile 019' -Elapsed time 490 seconds. Compile 019 -+ '[' 0 -eq 0 ']' -Compile 019 elapsed time 345 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -+ echo PID=23377 -PID=23377 -+ SECONDS=0 -+ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT -+ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT -+ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM -+ [[ 4 != 4 ]] -+ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ export 'MAKE_OPT=-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' -+ MAKE_OPT='-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' -+ export COMPILE_NR=020 -+ COMPILE_NR=020 -+ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ OPNREQ_TEST=false -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_020' -Removing test failure flag file for compile_020 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_020 -+ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_020.env ]] -+ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_020.env -++ export JOB_NR=145 -++ JOB_NR=145 -++ export COMPILE_NR=020 -++ COMPILE_NR=020 -++ export MACHINE_ID=cheyenne.intel -++ MACHINE_ID=cheyenne.intel -++ export RT_COMPILER=intel -++ RT_COMPILER=intel -++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ export SCHEDULER=pbs -++ SCHEDULER=pbs -++ export ACCNR=NRAL0032 -++ ACCNR=NRAL0032 -++ export QUEUE=regular -++ QUEUE=regular -++ export PARTITION= -++ PARTITION= -++ export ROCOTO=false -++ ROCOTO=false -++ export ECFLOW=true -++ ECFLOW=true -++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ source default_vars.sh -++ THRD=1 -++ INPES_atmaero=4 -++ JNPES_atmaero=8 -++ WPG_atmaero=6 -++ THRD_cpl_atmw=1 -++ INPES_cpl_atmw=3 -++ JNPES_cpl_atmw=8 -++ WPG_cpl_atmw=6 -++ WAV_tasks_cpl_atmw=30 -++ WAV_thrds_cpl_atmw=1 -++ THRD_cpl_c48=1 -++ INPES_cpl_c48=1 -++ JNPES_cpl_c48=1 -++ WPG_cpl_c48=6 -++ OCN_tasks_cpl_c48=4 -++ ICE_tasks_cpl_c48=4 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=3 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=3 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ OCN_thrds_cpl_thrd=1 -++ ICE_tasks_cpl_thrd=10 -++ ICE_thrds_cpl_thrd=1 -++ WAV_tasks_cpl_thrd=12 -++ WAV_thrds_cpl_thrd=2 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=6 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=4 -++ JNPES_cpl_mpi=8 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=34 -++ ICE_tasks_cpl_mpi=20 -++ WAV_tasks_cpl_mpi=28 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=8 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ OCN_thrds_cpl_bmrk=1 -++ ICE_tasks_cpl_bmrk=48 -++ ICE_thrds_cpl_bmrk=1 -++ WAV_tasks_cpl_bmrk=80 -++ WAV_thrds_cpl_bmrk=2 -++ THRD_cpl_c192=2 -++ INPES_cpl_c192=6 -++ JNPES_cpl_c192=8 -++ WPG_cpl_c192=12 -++ OCN_tasks_cpl_c192=60 -++ ICE_tasks_cpl_c192=24 -++ WAV_tasks_cpl_c192=80 -++ ATM_compute_tasks_cdeps_100=12 -++ OCN_tasks_cdeps_100=16 -++ ICE_tasks_cdeps_100=12 -++ ATM_compute_tasks_cdeps_025=40 -++ OCN_tasks_cdeps_025=120 -++ ICE_tasks_cdeps_025=48 -++ INPES_aqm=33 -++ JNPES_aqm=8 -++ aqm_omp_num_threads=1 -++ atm_omp_num_threads=1 -++ chm_omp_num_threads=1 -++ ice_omp_num_threads=1 -++ lnd_omp_num_threads=1 -++ med_omp_num_threads=1 -++ ocn_omp_num_threads=1 -++ wav_omp_num_threads=1 -++ [[ cheyenne.intel = wcoss2.* ]] -++ [[ cheyenne.intel = acorn.* ]] -++ [[ cheyenne.intel = orion.* ]] -++ [[ cheyenne.intel = hera.* ]] -++ [[ cheyenne.intel = linux.* ]] -++ [[ cheyenne.intel = jet.* ]] -++ [[ cheyenne.intel = s4.* ]] -++ [[ cheyenne.intel = gaea.* ]] -++ [[ cheyenne.intel = cheyenne.* ]] -++ TPN=36 -++ INPES_dflt=3 -++ JNPES_dflt=8 -++ INPES_thrd=3 -++ JNPES_thrd=4 -++ INPES_c384=8 -++ JNPES_c384=6 -++ THRD_c384=2 -++ INPES_c768=8 -++ JNPES_c768=16 -++ THRD_c768=2 -++ THRD_cpl_atmw_gdas=3 -++ INPES_cpl_atmw_gdas=6 -++ JNPES_cpl_atmw_gdas=8 -++ WPG_cpl_atmw_gdas=24 -++ WAV_tasks_atmw_gdas=264 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=6 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=6 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ ICE_tasks_cpl_thrd=10 -++ WAV_tasks_cpl_thrd=20 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=12 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=6 -++ JNPES_cpl_mpi=12 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=24 -++ ICE_tasks_cpl_mpi=12 -++ WAV_tasks_cpl_mpi=24 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=12 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ ICE_tasks_cpl_bmrk=48 -++ WAV_tasks_cpl_bmrk=100 -++ WLCLK_dflt=30 -++ export WLCLK=30 -++ WLCLK=30 -+ export TEST_NAME=compile -+ TEST_NAME=compile -+ export TEST_NR=020 -+ TEST_NR=020 -+ export JBNME=compile_020 -+ JBNME=compile_020 -+ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_020 -+ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_020 -++ date +%s -+ echo -n 'compile_020, 1681918962,' -+ source rt_utils.sh -++ set -eu -++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] -++ OPNREQ_TEST=false -++ qsub_id=0 -++ slurm_id=0 -++ bsub_id=0 -+ source atparse.bash -+ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_020 -+ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_020 -+ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_020 -+ [[ pbs = \s\l\u\r\m ]] -+ [[ pbs = \l\s\f ]] -+ [[ pbs = \p\b\s ]] -+ atparse -+ local __set_x -+ '[' -o xtrace ']' -+ __set_x='set -x' -+ set +x -+ [[ false = \f\a\l\s\e ]] -+ submit_and_wait job_card -+ [[ -z job_card ]] -+ '[' -o xtrace ']' -+ set_x='set -x' -+ set +x -Job id 9507050 -TEST 020 compile is waiting to enter the queue -TEST 020 compile is submitted -1 min. TEST 020 compile is waiting in a queue, status: Q jobid 9507050 -2 min. TEST 020 compile is running, status: R jobid 9507050 -3 min. TEST 020 compile is running, status: R jobid 9507050 -4 min. TEST 020 compile is running, status: R jobid 9507050 -5 min. TEST 020 compile is running, status: R jobid 9507050 -6 min. TEST 020 compile is running, status: R jobid 9507050 -7 min. TEST 020 compile is running, status: R jobid 9507050 -8 min. TEST 020 compile is running, status: R jobid 9507050 -9 min. TEST 020 compile is running, status: R jobid 9507050 -10 min. TEST 020 compile is running, status: R jobid 9507050 -11 min. TEST 020 compile is running, status: R jobid 9507050 -12 min. TEST 020 compile is running, status: R jobid 9507050 -13 min. TEST 020 compile is running, status: R jobid 9507050 -14 min. TEST 020 compile is running, status: R jobid 9507050 -15 min. TEST 020 compile is running, status: R jobid 9507050 -16 min. TEST 020 compile is running, status: R jobid 9507050 -17 min. TEST 020 compile is running, status: R jobid 9507050 -18 min. TEST 020 compile is running, status: R jobid 9507050 -19 min. TEST 020 compile is running, status: R jobid 9507050 -20 min. TEST 020 compile is running, status: R jobid 9507050 -qstat: 9507050.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -qstat: 9507050.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -21 min. TEST 020 compile is finished, status: - jobid 9507050 -+ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_020.exe --rwxr-xr-x 1 jongkim ncar 296056624 Apr 19 16:02 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_020.exe -+ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_020/compile_020_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_020/job_timestamp.txt -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_020' -Removing test failure flag file for compile_020 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_020 -++ date +%s -+ echo ' 1681920188, 1' -+ elapsed=1226 -+ echo 'Elapsed time 1226 seconds. Compile 020' -Elapsed time 1226 seconds. Compile 020 -+ '[' 0 -eq 0 ']' -Compile 020 elapsed time 1146 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 -+ echo PID=23500 -PID=23500 -+ SECONDS=0 -+ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT -+ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT -+ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM -+ [[ 4 != 4 ]] -+ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ export 'MAKE_OPT=-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 -DDEBUG=ON' -+ MAKE_OPT='-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 -DDEBUG=ON' -+ export COMPILE_NR=021 -+ COMPILE_NR=021 -+ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ OPNREQ_TEST=false -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_021' -Removing test failure flag file for compile_021 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_021 -+ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_021.env ]] -+ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_021.env -++ export JOB_NR=159 -++ JOB_NR=159 -++ export COMPILE_NR=021 -++ COMPILE_NR=021 -++ export MACHINE_ID=cheyenne.intel -++ MACHINE_ID=cheyenne.intel -++ export RT_COMPILER=intel -++ RT_COMPILER=intel -++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ export SCHEDULER=pbs -++ SCHEDULER=pbs -++ export ACCNR=NRAL0032 -++ ACCNR=NRAL0032 -++ export QUEUE=regular -++ QUEUE=regular -++ export PARTITION= -++ PARTITION= -++ export ROCOTO=false -++ ROCOTO=false -++ export ECFLOW=true -++ ECFLOW=true -++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ source default_vars.sh -++ THRD=1 -++ INPES_atmaero=4 -++ JNPES_atmaero=8 -++ WPG_atmaero=6 -++ THRD_cpl_atmw=1 -++ INPES_cpl_atmw=3 -++ JNPES_cpl_atmw=8 -++ WPG_cpl_atmw=6 -++ WAV_tasks_cpl_atmw=30 -++ WAV_thrds_cpl_atmw=1 -++ THRD_cpl_c48=1 -++ INPES_cpl_c48=1 -++ JNPES_cpl_c48=1 -++ WPG_cpl_c48=6 -++ OCN_tasks_cpl_c48=4 -++ ICE_tasks_cpl_c48=4 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=3 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=3 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ OCN_thrds_cpl_thrd=1 -++ ICE_tasks_cpl_thrd=10 -++ ICE_thrds_cpl_thrd=1 -++ WAV_tasks_cpl_thrd=12 -++ WAV_thrds_cpl_thrd=2 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=6 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=4 -++ JNPES_cpl_mpi=8 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=34 -++ ICE_tasks_cpl_mpi=20 -++ WAV_tasks_cpl_mpi=28 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=8 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ OCN_thrds_cpl_bmrk=1 -++ ICE_tasks_cpl_bmrk=48 -++ ICE_thrds_cpl_bmrk=1 -++ WAV_tasks_cpl_bmrk=80 -++ WAV_thrds_cpl_bmrk=2 -++ THRD_cpl_c192=2 -++ INPES_cpl_c192=6 -++ JNPES_cpl_c192=8 -++ WPG_cpl_c192=12 -++ OCN_tasks_cpl_c192=60 -++ ICE_tasks_cpl_c192=24 -++ WAV_tasks_cpl_c192=80 -++ ATM_compute_tasks_cdeps_100=12 -++ OCN_tasks_cdeps_100=16 -++ ICE_tasks_cdeps_100=12 -++ ATM_compute_tasks_cdeps_025=40 -++ OCN_tasks_cdeps_025=120 -++ ICE_tasks_cdeps_025=48 -++ INPES_aqm=33 -++ JNPES_aqm=8 -++ aqm_omp_num_threads=1 -++ atm_omp_num_threads=1 -++ chm_omp_num_threads=1 -++ ice_omp_num_threads=1 -++ lnd_omp_num_threads=1 -++ med_omp_num_threads=1 -++ ocn_omp_num_threads=1 -++ wav_omp_num_threads=1 -++ [[ cheyenne.intel = wcoss2.* ]] -++ [[ cheyenne.intel = acorn.* ]] -++ [[ cheyenne.intel = orion.* ]] -++ [[ cheyenne.intel = hera.* ]] -++ [[ cheyenne.intel = linux.* ]] -++ [[ cheyenne.intel = jet.* ]] -++ [[ cheyenne.intel = s4.* ]] -++ [[ cheyenne.intel = gaea.* ]] -++ [[ cheyenne.intel = cheyenne.* ]] -++ TPN=36 -++ INPES_dflt=3 -++ JNPES_dflt=8 -++ INPES_thrd=3 -++ JNPES_thrd=4 -++ INPES_c384=8 -++ JNPES_c384=6 -++ THRD_c384=2 -++ INPES_c768=8 -++ JNPES_c768=16 -++ THRD_c768=2 -++ THRD_cpl_atmw_gdas=3 -++ INPES_cpl_atmw_gdas=6 -++ JNPES_cpl_atmw_gdas=8 -++ WPG_cpl_atmw_gdas=24 -++ WAV_tasks_atmw_gdas=264 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=6 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=6 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ ICE_tasks_cpl_thrd=10 -++ WAV_tasks_cpl_thrd=20 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=12 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=6 -++ JNPES_cpl_mpi=12 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=24 -++ ICE_tasks_cpl_mpi=12 -++ WAV_tasks_cpl_mpi=24 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=12 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ ICE_tasks_cpl_bmrk=48 -++ WAV_tasks_cpl_bmrk=100 -++ WLCLK_dflt=30 -++ export WLCLK=30 -++ WLCLK=30 -+ export TEST_NAME=compile -+ TEST_NAME=compile -+ export TEST_NR=021 -+ TEST_NR=021 -+ export JBNME=compile_021 -+ JBNME=compile_021 -+ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_021 -+ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_021 -++ date +%s -+ echo -n 'compile_021, 1681918963,' -+ source rt_utils.sh -++ set -eu -++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] -++ OPNREQ_TEST=false -++ qsub_id=0 -++ slurm_id=0 -++ bsub_id=0 -+ source atparse.bash -+ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_021 -+ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_021 -+ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_021 -+ [[ pbs = \s\l\u\r\m ]] -+ [[ pbs = \l\s\f ]] -+ [[ pbs = \p\b\s ]] -+ atparse -+ local __set_x -+ '[' -o xtrace ']' -+ __set_x='set -x' -+ set +x -+ [[ false = \f\a\l\s\e ]] -+ submit_and_wait job_card -+ [[ -z job_card ]] -+ '[' -o xtrace ']' -+ set_x='set -x' -+ set +x -Job id 9507052 -TEST 021 compile is waiting to enter the queue -TEST 021 compile is submitted -1 min. TEST 021 compile is waiting in a queue, status: Q jobid 9507052 -2 min. TEST 021 compile is running, status: R jobid 9507052 -3 min. TEST 021 compile is running, status: R jobid 9507052 -4 min. TEST 021 compile is running, status: R jobid 9507052 -5 min. TEST 021 compile is running, status: R jobid 9507052 -6 min. TEST 021 compile is running, status: R jobid 9507052 -7 min. TEST 021 compile is running, status: R jobid 9507052 -qstat: 9507052.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -qstat: 9507052.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -8 min. TEST 021 compile is finished, status: - jobid 9507052 -+ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_021.exe --rwxr-xr-x 1 jongkim ncar 687198528 Apr 19 15:49 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_021.exe -+ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_021/compile_021_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_021/job_timestamp.txt -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_021' -Removing test failure flag file for compile_021 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_021 -++ date +%s -+ echo ' 1681919392, 1' -+ elapsed=429 -+ echo 'Elapsed time 429 seconds. Compile 021' -Elapsed time 429 seconds. Compile 021 -+ '[' 0 -eq 0 ']' -Compile 021 elapsed time 355 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -+ echo PID=33333 -PID=33333 -+ SECONDS=0 -+ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT -+ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT -+ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM -+ [[ 4 != 4 ]] -+ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ export 'MAKE_OPT=-DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON' -+ MAKE_OPT='-DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON' -+ export COMPILE_NR=022 -+ COMPILE_NR=022 -+ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ OPNREQ_TEST=false -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_022' -Removing test failure flag file for compile_022 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_022 -+ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_022.env ]] -+ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_022.env -++ export JOB_NR=161 -++ JOB_NR=161 -++ export COMPILE_NR=022 -++ COMPILE_NR=022 -++ export MACHINE_ID=cheyenne.intel -++ MACHINE_ID=cheyenne.intel -++ export RT_COMPILER=intel -++ RT_COMPILER=intel -++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ export SCHEDULER=pbs -++ SCHEDULER=pbs -++ export ACCNR=NRAL0032 -++ ACCNR=NRAL0032 -++ export QUEUE=regular -++ QUEUE=regular -++ export PARTITION= -++ PARTITION= -++ export ROCOTO=false -++ ROCOTO=false -++ export ECFLOW=true -++ ECFLOW=true -++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ source default_vars.sh -++ THRD=1 -++ INPES_atmaero=4 -++ JNPES_atmaero=8 -++ WPG_atmaero=6 -++ THRD_cpl_atmw=1 -++ INPES_cpl_atmw=3 -++ JNPES_cpl_atmw=8 -++ WPG_cpl_atmw=6 -++ WAV_tasks_cpl_atmw=30 -++ WAV_thrds_cpl_atmw=1 -++ THRD_cpl_c48=1 -++ INPES_cpl_c48=1 -++ JNPES_cpl_c48=1 -++ WPG_cpl_c48=6 -++ OCN_tasks_cpl_c48=4 -++ ICE_tasks_cpl_c48=4 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=3 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=3 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ OCN_thrds_cpl_thrd=1 -++ ICE_tasks_cpl_thrd=10 -++ ICE_thrds_cpl_thrd=1 -++ WAV_tasks_cpl_thrd=12 -++ WAV_thrds_cpl_thrd=2 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=6 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=4 -++ JNPES_cpl_mpi=8 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=34 -++ ICE_tasks_cpl_mpi=20 -++ WAV_tasks_cpl_mpi=28 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=8 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ OCN_thrds_cpl_bmrk=1 -++ ICE_tasks_cpl_bmrk=48 -++ ICE_thrds_cpl_bmrk=1 -++ WAV_tasks_cpl_bmrk=80 -++ WAV_thrds_cpl_bmrk=2 -++ THRD_cpl_c192=2 -++ INPES_cpl_c192=6 -++ JNPES_cpl_c192=8 -++ WPG_cpl_c192=12 -++ OCN_tasks_cpl_c192=60 -++ ICE_tasks_cpl_c192=24 -++ WAV_tasks_cpl_c192=80 -++ ATM_compute_tasks_cdeps_100=12 -++ OCN_tasks_cdeps_100=16 -++ ICE_tasks_cdeps_100=12 -++ ATM_compute_tasks_cdeps_025=40 -++ OCN_tasks_cdeps_025=120 -++ ICE_tasks_cdeps_025=48 -++ INPES_aqm=33 -++ JNPES_aqm=8 -++ aqm_omp_num_threads=1 -++ atm_omp_num_threads=1 -++ chm_omp_num_threads=1 -++ ice_omp_num_threads=1 -++ lnd_omp_num_threads=1 -++ med_omp_num_threads=1 -++ ocn_omp_num_threads=1 -++ wav_omp_num_threads=1 -++ [[ cheyenne.intel = wcoss2.* ]] -++ [[ cheyenne.intel = acorn.* ]] -++ [[ cheyenne.intel = orion.* ]] -++ [[ cheyenne.intel = hera.* ]] -++ [[ cheyenne.intel = linux.* ]] -++ [[ cheyenne.intel = jet.* ]] -++ [[ cheyenne.intel = s4.* ]] -++ [[ cheyenne.intel = gaea.* ]] -++ [[ cheyenne.intel = cheyenne.* ]] -++ TPN=36 -++ INPES_dflt=3 -++ JNPES_dflt=8 -++ INPES_thrd=3 -++ JNPES_thrd=4 -++ INPES_c384=8 -++ JNPES_c384=6 -++ THRD_c384=2 -++ INPES_c768=8 -++ JNPES_c768=16 -++ THRD_c768=2 -++ THRD_cpl_atmw_gdas=3 -++ INPES_cpl_atmw_gdas=6 -++ JNPES_cpl_atmw_gdas=8 -++ WPG_cpl_atmw_gdas=24 -++ WAV_tasks_atmw_gdas=264 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=6 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=6 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ ICE_tasks_cpl_thrd=10 -++ WAV_tasks_cpl_thrd=20 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=12 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=6 -++ JNPES_cpl_mpi=12 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=24 -++ ICE_tasks_cpl_mpi=12 -++ WAV_tasks_cpl_mpi=24 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=12 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ ICE_tasks_cpl_bmrk=48 -++ WAV_tasks_cpl_bmrk=100 -++ WLCLK_dflt=30 -++ export WLCLK=30 -++ WLCLK=30 -+ export TEST_NAME=compile -+ TEST_NAME=compile -+ export TEST_NR=022 -+ TEST_NR=022 -+ export JBNME=compile_022 -+ JBNME=compile_022 -+ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_022 -+ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_022 -++ date +%s -+ echo -n 'compile_022, 1681919023,' -+ source rt_utils.sh -++ set -eu -++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] -++ OPNREQ_TEST=false -++ qsub_id=0 -++ slurm_id=0 -++ bsub_id=0 -+ source atparse.bash -+ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_022 -+ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_022 -+ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_022 -+ [[ pbs = \s\l\u\r\m ]] -+ [[ pbs = \l\s\f ]] -+ [[ pbs = \p\b\s ]] -+ atparse -+ local __set_x -+ '[' -o xtrace ']' -+ __set_x='set -x' -+ set +x -+ [[ false = \f\a\l\s\e ]] -+ submit_and_wait job_card -+ [[ -z job_card ]] -+ '[' -o xtrace ']' -+ set_x='set -x' -+ set +x -Job id 9507062 -TEST 022 compile is waiting to enter the queue -TEST 022 compile is submitted -1 min. TEST 022 compile is waiting in a queue, status: Q jobid 9507062 -2 min. TEST 022 compile is running, status: R jobid 9507062 -3 min. TEST 022 compile is running, status: R jobid 9507062 -4 min. TEST 022 compile is running, status: R jobid 9507062 -5 min. TEST 022 compile is running, status: R jobid 9507062 -6 min. TEST 022 compile is running, status: R jobid 9507062 -7 min. TEST 022 compile is running, status: R jobid 9507062 -8 min. TEST 022 compile is running, status: R jobid 9507062 -9 min. TEST 022 compile is running, status: R jobid 9507062 -10 min. TEST 022 compile is running, status: R jobid 9507062 -11 min. TEST 022 compile is running, status: R jobid 9507062 -12 min. TEST 022 compile is running, status: R jobid 9507062 -13 min. TEST 022 compile is running, status: R jobid 9507062 -14 min. TEST 022 compile is running, status: R jobid 9507062 -15 min. TEST 022 compile is running, status: R jobid 9507062 -16 min. TEST 022 compile is running, status: R jobid 9507062 -17 min. TEST 022 compile is running, status: R jobid 9507062 -18 min. TEST 022 compile is running, status: R jobid 9507062 -19 min. TEST 022 compile is running, status: R jobid 9507062 -20 min. TEST 022 compile is running, status: R jobid 9507062 -21 min. TEST 022 compile is running, status: R jobid 9507062 -22 min. TEST 022 compile is running, status: R jobid 9507062 -23 min. TEST 022 compile is running, status: R jobid 9507062 -24 min. TEST 022 compile is running, status: R jobid 9507062 -25 min. TEST 022 compile is running, status: R jobid 9507062 -26 min. TEST 022 compile is running, status: R jobid 9507062 -27 min. TEST 022 compile is running, status: R jobid 9507062 -qstat: 9507062.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -qstat: 9507062.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -28 min. TEST 022 compile is finished, status: - jobid 9507062 -+ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_022.exe --rwxr-xr-x 1 jongkim ncar 302209256 Apr 19 16:10 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_022.exe -+ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_022/compile_022_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_022/job_timestamp.txt -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_022' -Removing test failure flag file for compile_022 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_022 -++ date +%s -+ echo ' 1681920671, 1' -+ elapsed=1648 -+ echo 'Elapsed time 1648 seconds. Compile 022' -Elapsed time 1648 seconds. Compile 022 -+ '[' 0 -eq 0 ']' -Compile 022 elapsed time 1573 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -+ echo PID=41419 -PID=41419 -+ SECONDS=0 -+ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT -+ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT -+ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM -+ [[ 4 != 4 ]] -+ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ export 'MAKE_OPT=-DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON' -+ MAKE_OPT='-DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON' -+ export COMPILE_NR=023 -+ COMPILE_NR=023 -+ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ OPNREQ_TEST=false -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_023' -Removing test failure flag file for compile_023 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_023 -+ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_023.env ]] -+ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_023.env -++ export JOB_NR=163 -++ JOB_NR=163 -++ export COMPILE_NR=023 -++ COMPILE_NR=023 -++ export MACHINE_ID=cheyenne.intel -++ MACHINE_ID=cheyenne.intel -++ export RT_COMPILER=intel -++ RT_COMPILER=intel -++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ export SCHEDULER=pbs -++ SCHEDULER=pbs -++ export ACCNR=NRAL0032 -++ ACCNR=NRAL0032 -++ export QUEUE=regular -++ QUEUE=regular -++ export PARTITION= -++ PARTITION= -++ export ROCOTO=false -++ ROCOTO=false -++ export ECFLOW=true -++ ECFLOW=true -++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ source default_vars.sh -++ THRD=1 -++ INPES_atmaero=4 -++ JNPES_atmaero=8 -++ WPG_atmaero=6 -++ THRD_cpl_atmw=1 -++ INPES_cpl_atmw=3 -++ JNPES_cpl_atmw=8 -++ WPG_cpl_atmw=6 -++ WAV_tasks_cpl_atmw=30 -++ WAV_thrds_cpl_atmw=1 -++ THRD_cpl_c48=1 -++ INPES_cpl_c48=1 -++ JNPES_cpl_c48=1 -++ WPG_cpl_c48=6 -++ OCN_tasks_cpl_c48=4 -++ ICE_tasks_cpl_c48=4 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=3 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=3 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ OCN_thrds_cpl_thrd=1 -++ ICE_tasks_cpl_thrd=10 -++ ICE_thrds_cpl_thrd=1 -++ WAV_tasks_cpl_thrd=12 -++ WAV_thrds_cpl_thrd=2 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=6 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=4 -++ JNPES_cpl_mpi=8 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=34 -++ ICE_tasks_cpl_mpi=20 -++ WAV_tasks_cpl_mpi=28 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=8 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ OCN_thrds_cpl_bmrk=1 -++ ICE_tasks_cpl_bmrk=48 -++ ICE_thrds_cpl_bmrk=1 -++ WAV_tasks_cpl_bmrk=80 -++ WAV_thrds_cpl_bmrk=2 -++ THRD_cpl_c192=2 -++ INPES_cpl_c192=6 -++ JNPES_cpl_c192=8 -++ WPG_cpl_c192=12 -++ OCN_tasks_cpl_c192=60 -++ ICE_tasks_cpl_c192=24 -++ WAV_tasks_cpl_c192=80 -++ ATM_compute_tasks_cdeps_100=12 -++ OCN_tasks_cdeps_100=16 -++ ICE_tasks_cdeps_100=12 -++ ATM_compute_tasks_cdeps_025=40 -++ OCN_tasks_cdeps_025=120 -++ ICE_tasks_cdeps_025=48 -++ INPES_aqm=33 -++ JNPES_aqm=8 -++ aqm_omp_num_threads=1 -++ atm_omp_num_threads=1 -++ chm_omp_num_threads=1 -++ ice_omp_num_threads=1 -++ lnd_omp_num_threads=1 -++ med_omp_num_threads=1 -++ ocn_omp_num_threads=1 -++ wav_omp_num_threads=1 -++ [[ cheyenne.intel = wcoss2.* ]] -++ [[ cheyenne.intel = acorn.* ]] -++ [[ cheyenne.intel = orion.* ]] -++ [[ cheyenne.intel = hera.* ]] -++ [[ cheyenne.intel = linux.* ]] -++ [[ cheyenne.intel = jet.* ]] -++ [[ cheyenne.intel = s4.* ]] -++ [[ cheyenne.intel = gaea.* ]] -++ [[ cheyenne.intel = cheyenne.* ]] -++ TPN=36 -++ INPES_dflt=3 -++ JNPES_dflt=8 -++ INPES_thrd=3 -++ JNPES_thrd=4 -++ INPES_c384=8 -++ JNPES_c384=6 -++ THRD_c384=2 -++ INPES_c768=8 -++ JNPES_c768=16 -++ THRD_c768=2 -++ THRD_cpl_atmw_gdas=3 -++ INPES_cpl_atmw_gdas=6 -++ JNPES_cpl_atmw_gdas=8 -++ WPG_cpl_atmw_gdas=24 -++ WAV_tasks_atmw_gdas=264 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=6 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=6 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ ICE_tasks_cpl_thrd=10 -++ WAV_tasks_cpl_thrd=20 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=12 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=6 -++ JNPES_cpl_mpi=12 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=24 -++ ICE_tasks_cpl_mpi=12 -++ WAV_tasks_cpl_mpi=24 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=12 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ ICE_tasks_cpl_bmrk=48 -++ WAV_tasks_cpl_bmrk=100 -++ WLCLK_dflt=30 -++ export WLCLK=30 -++ WLCLK=30 -+ export TEST_NAME=compile -+ TEST_NAME=compile -+ export TEST_NR=023 -+ TEST_NR=023 -+ export JBNME=compile_023 -+ JBNME=compile_023 -+ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_023 -+ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_023 -++ date +%s -+ echo -n 'compile_023, 1681919090,' -+ source rt_utils.sh -++ set -eu -++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] -++ OPNREQ_TEST=false -++ qsub_id=0 -++ slurm_id=0 -++ bsub_id=0 -+ source atparse.bash -+ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_023 -+ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_023 -+ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_023 -+ [[ pbs = \s\l\u\r\m ]] -+ [[ pbs = \l\s\f ]] -+ [[ pbs = \p\b\s ]] -+ atparse -+ local __set_x -+ '[' -o xtrace ']' -+ __set_x='set -x' -+ set +x -+ [[ false = \f\a\l\s\e ]] -+ submit_and_wait job_card -+ [[ -z job_card ]] -+ '[' -o xtrace ']' -+ set_x='set -x' -+ set +x -Job id 9507074 -TEST 023 compile is waiting to enter the queue -TEST 023 compile is submitted -1 min. TEST 023 compile is waiting in a queue, status: Q jobid 9507074 -2 min. TEST 023 compile is waiting in a queue, status: Q jobid 9507074 -3 min. TEST 023 compile is running, status: R jobid 9507074 -4 min. TEST 023 compile is running, status: R jobid 9507074 -5 min. TEST 023 compile is running, status: R jobid 9507074 -6 min. TEST 023 compile is running, status: R jobid 9507074 -7 min. TEST 023 compile is running, status: R jobid 9507074 -8 min. TEST 023 compile is running, status: R jobid 9507074 -9 min. TEST 023 compile is running, status: R jobid 9507074 -10 min. TEST 023 compile is running, status: R jobid 9507074 -11 min. TEST 023 compile is running, status: R jobid 9507074 -12 min. TEST 023 compile is running, status: R jobid 9507074 -13 min. TEST 023 compile is running, status: R jobid 9507074 -14 min. TEST 023 compile is running, status: R jobid 9507074 -15 min. TEST 023 compile is running, status: R jobid 9507074 -16 min. TEST 023 compile is running, status: R jobid 9507074 -17 min. TEST 023 compile is running, status: R jobid 9507074 -18 min. TEST 023 compile is running, status: R jobid 9507074 -19 min. TEST 023 compile is running, status: R jobid 9507074 -20 min. TEST 023 compile is running, status: R jobid 9507074 -qstat: 9507074.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -qstat: 9507074.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -21 min. TEST 023 compile is finished, status: - jobid 9507074 -+ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_023.exe --rwxr-xr-x 1 jongkim ncar 292205152 Apr 19 16:04 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_023.exe -+ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_023/compile_023_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_023/job_timestamp.txt -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_023' -Removing test failure flag file for compile_023 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_023 -++ date +%s -+ echo ' 1681920310, 1' -+ elapsed=1220 -+ echo 'Elapsed time 1220 seconds. Compile 023' -Elapsed time 1220 seconds. Compile 023 -+ '[' 0 -eq 0 ']' -Compile 023 elapsed time 1130 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 -+ echo PID=11955 -PID=11955 -+ SECONDS=0 -+ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT -+ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT -+ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM -+ [[ 4 != 4 ]] -+ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ export MAKE_OPT=-DAPP=NG-GODAS -+ MAKE_OPT=-DAPP=NG-GODAS -+ export COMPILE_NR=024 -+ COMPILE_NR=024 -+ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ OPNREQ_TEST=false -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_024' -Removing test failure flag file for compile_024 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_024 -+ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_024.env ]] -+ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_024.env -++ export JOB_NR=167 -++ JOB_NR=167 -++ export COMPILE_NR=024 -++ COMPILE_NR=024 -++ export MACHINE_ID=cheyenne.intel -++ MACHINE_ID=cheyenne.intel -++ export RT_COMPILER=intel -++ RT_COMPILER=intel -++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ export SCHEDULER=pbs -++ SCHEDULER=pbs -++ export ACCNR=NRAL0032 -++ ACCNR=NRAL0032 -++ export QUEUE=regular -++ QUEUE=regular -++ export PARTITION= -++ PARTITION= -++ export ROCOTO=false -++ ROCOTO=false -++ export ECFLOW=true -++ ECFLOW=true -++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ source default_vars.sh -++ THRD=1 -++ INPES_atmaero=4 -++ JNPES_atmaero=8 -++ WPG_atmaero=6 -++ THRD_cpl_atmw=1 -++ INPES_cpl_atmw=3 -++ JNPES_cpl_atmw=8 -++ WPG_cpl_atmw=6 -++ WAV_tasks_cpl_atmw=30 -++ WAV_thrds_cpl_atmw=1 -++ THRD_cpl_c48=1 -++ INPES_cpl_c48=1 -++ JNPES_cpl_c48=1 -++ WPG_cpl_c48=6 -++ OCN_tasks_cpl_c48=4 -++ ICE_tasks_cpl_c48=4 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=3 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=3 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ OCN_thrds_cpl_thrd=1 -++ ICE_tasks_cpl_thrd=10 -++ ICE_thrds_cpl_thrd=1 -++ WAV_tasks_cpl_thrd=12 -++ WAV_thrds_cpl_thrd=2 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=6 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=4 -++ JNPES_cpl_mpi=8 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=34 -++ ICE_tasks_cpl_mpi=20 -++ WAV_tasks_cpl_mpi=28 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=8 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ OCN_thrds_cpl_bmrk=1 -++ ICE_tasks_cpl_bmrk=48 -++ ICE_thrds_cpl_bmrk=1 -++ WAV_tasks_cpl_bmrk=80 -++ WAV_thrds_cpl_bmrk=2 -++ THRD_cpl_c192=2 -++ INPES_cpl_c192=6 -++ JNPES_cpl_c192=8 -++ WPG_cpl_c192=12 -++ OCN_tasks_cpl_c192=60 -++ ICE_tasks_cpl_c192=24 -++ WAV_tasks_cpl_c192=80 -++ ATM_compute_tasks_cdeps_100=12 -++ OCN_tasks_cdeps_100=16 -++ ICE_tasks_cdeps_100=12 -++ ATM_compute_tasks_cdeps_025=40 -++ OCN_tasks_cdeps_025=120 -++ ICE_tasks_cdeps_025=48 -++ INPES_aqm=33 -++ JNPES_aqm=8 -++ aqm_omp_num_threads=1 -++ atm_omp_num_threads=1 -++ chm_omp_num_threads=1 -++ ice_omp_num_threads=1 -++ lnd_omp_num_threads=1 -++ med_omp_num_threads=1 -++ ocn_omp_num_threads=1 -++ wav_omp_num_threads=1 -++ [[ cheyenne.intel = wcoss2.* ]] -++ [[ cheyenne.intel = acorn.* ]] -++ [[ cheyenne.intel = orion.* ]] -++ [[ cheyenne.intel = hera.* ]] -++ [[ cheyenne.intel = linux.* ]] -++ [[ cheyenne.intel = jet.* ]] -++ [[ cheyenne.intel = s4.* ]] -++ [[ cheyenne.intel = gaea.* ]] -++ [[ cheyenne.intel = cheyenne.* ]] -++ TPN=36 -++ INPES_dflt=3 -++ JNPES_dflt=8 -++ INPES_thrd=3 -++ JNPES_thrd=4 -++ INPES_c384=8 -++ JNPES_c384=6 -++ THRD_c384=2 -++ INPES_c768=8 -++ JNPES_c768=16 -++ THRD_c768=2 -++ THRD_cpl_atmw_gdas=3 -++ INPES_cpl_atmw_gdas=6 -++ JNPES_cpl_atmw_gdas=8 -++ WPG_cpl_atmw_gdas=24 -++ WAV_tasks_atmw_gdas=264 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=6 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=6 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ ICE_tasks_cpl_thrd=10 -++ WAV_tasks_cpl_thrd=20 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=12 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=6 -++ JNPES_cpl_mpi=12 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=24 -++ ICE_tasks_cpl_mpi=12 -++ WAV_tasks_cpl_mpi=24 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=12 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ ICE_tasks_cpl_bmrk=48 -++ WAV_tasks_cpl_bmrk=100 -++ WLCLK_dflt=30 -++ export WLCLK=30 -++ WLCLK=30 -+ export TEST_NAME=compile -+ TEST_NAME=compile -+ export TEST_NR=024 -+ TEST_NR=024 -+ export JBNME=compile_024 -+ JBNME=compile_024 -+ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_024 -+ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_024 -++ date +%s -+ echo -n 'compile_024, 1681919271,' -+ source rt_utils.sh -++ set -eu -++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] -++ OPNREQ_TEST=false -++ qsub_id=0 -++ slurm_id=0 -++ bsub_id=0 -+ source atparse.bash -+ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_024 -+ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_024 -+ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_024 -+ [[ pbs = \s\l\u\r\m ]] -+ [[ pbs = \l\s\f ]] -+ [[ pbs = \p\b\s ]] -+ atparse -+ local __set_x -+ '[' -o xtrace ']' -+ __set_x='set -x' -+ set +x -+ [[ false = \f\a\l\s\e ]] -+ submit_and_wait job_card -+ [[ -z job_card ]] -+ '[' -o xtrace ']' -+ set_x='set -x' -+ set +x -Job id 9507106 -TEST 024 compile is waiting to enter the queue -TEST 024 compile is submitted -1 min. TEST 024 compile is waiting in a queue, status: Q jobid 9507106 -2 min. TEST 024 compile is waiting in a queue, status: Q jobid 9507106 -3 min. TEST 024 compile is waiting in a queue, status: Q jobid 9507106 -4 min. TEST 024 compile is running, status: R jobid 9507106 -5 min. TEST 024 compile is running, status: R jobid 9507106 -6 min. TEST 024 compile is running, status: R jobid 9507106 -7 min. TEST 024 compile is running, status: R jobid 9507106 -8 min. TEST 024 compile is running, status: R jobid 9507106 -9 min. TEST 024 compile is running, status: R jobid 9507106 -10 min. TEST 024 compile is running, status: R jobid 9507106 -11 min. TEST 024 compile is running, status: R jobid 9507106 -qstat: 9507106.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -qstat: 9507106.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -12 min. TEST 024 compile is finished, status: - jobid 9507106 -+ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_024.exe --rwxr-xr-x 1 jongkim ncar 296489880 Apr 19 15:58 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_024.exe -+ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_024/compile_024_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_024/job_timestamp.txt -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_024' -Removing test failure flag file for compile_024 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_024 -++ date +%s -+ echo ' 1681919945, 1' -+ elapsed=673 -+ echo 'Elapsed time 673 seconds. Compile 024' -Elapsed time 673 seconds. Compile 024 -+ '[' 0 -eq 0 ']' -Compile 024 elapsed time 445 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -+ echo PID=24558 -PID=24558 -+ SECONDS=0 -+ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT -+ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT -+ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM -+ [[ 4 != 4 ]] -+ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ export 'MAKE_OPT=-DAPP=NG-GODAS -DDEBUG=ON' -+ MAKE_OPT='-DAPP=NG-GODAS -DDEBUG=ON' -+ export COMPILE_NR=025 -+ COMPILE_NR=025 -+ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ OPNREQ_TEST=false -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_025' -Removing test failure flag file for compile_025 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_025 -+ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_025.env ]] -+ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_025.env -++ export JOB_NR=181 -++ JOB_NR=181 -++ export COMPILE_NR=025 -++ COMPILE_NR=025 -++ export MACHINE_ID=cheyenne.intel -++ MACHINE_ID=cheyenne.intel -++ export RT_COMPILER=intel -++ RT_COMPILER=intel -++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ export SCHEDULER=pbs -++ SCHEDULER=pbs -++ export ACCNR=NRAL0032 -++ ACCNR=NRAL0032 -++ export QUEUE=regular -++ QUEUE=regular -++ export PARTITION= -++ PARTITION= -++ export ROCOTO=false -++ ROCOTO=false -++ export ECFLOW=true -++ ECFLOW=true -++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ source default_vars.sh -++ THRD=1 -++ INPES_atmaero=4 -++ JNPES_atmaero=8 -++ WPG_atmaero=6 -++ THRD_cpl_atmw=1 -++ INPES_cpl_atmw=3 -++ JNPES_cpl_atmw=8 -++ WPG_cpl_atmw=6 -++ WAV_tasks_cpl_atmw=30 -++ WAV_thrds_cpl_atmw=1 -++ THRD_cpl_c48=1 -++ INPES_cpl_c48=1 -++ JNPES_cpl_c48=1 -++ WPG_cpl_c48=6 -++ OCN_tasks_cpl_c48=4 -++ ICE_tasks_cpl_c48=4 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=3 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=3 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ OCN_thrds_cpl_thrd=1 -++ ICE_tasks_cpl_thrd=10 -++ ICE_thrds_cpl_thrd=1 -++ WAV_tasks_cpl_thrd=12 -++ WAV_thrds_cpl_thrd=2 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=6 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=4 -++ JNPES_cpl_mpi=8 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=34 -++ ICE_tasks_cpl_mpi=20 -++ WAV_tasks_cpl_mpi=28 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=8 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ OCN_thrds_cpl_bmrk=1 -++ ICE_tasks_cpl_bmrk=48 -++ ICE_thrds_cpl_bmrk=1 -++ WAV_tasks_cpl_bmrk=80 -++ WAV_thrds_cpl_bmrk=2 -++ THRD_cpl_c192=2 -++ INPES_cpl_c192=6 -++ JNPES_cpl_c192=8 -++ WPG_cpl_c192=12 -++ OCN_tasks_cpl_c192=60 -++ ICE_tasks_cpl_c192=24 -++ WAV_tasks_cpl_c192=80 -++ ATM_compute_tasks_cdeps_100=12 -++ OCN_tasks_cdeps_100=16 -++ ICE_tasks_cdeps_100=12 -++ ATM_compute_tasks_cdeps_025=40 -++ OCN_tasks_cdeps_025=120 -++ ICE_tasks_cdeps_025=48 -++ INPES_aqm=33 -++ JNPES_aqm=8 -++ aqm_omp_num_threads=1 -++ atm_omp_num_threads=1 -++ chm_omp_num_threads=1 -++ ice_omp_num_threads=1 -++ lnd_omp_num_threads=1 -++ med_omp_num_threads=1 -++ ocn_omp_num_threads=1 -++ wav_omp_num_threads=1 -++ [[ cheyenne.intel = wcoss2.* ]] -++ [[ cheyenne.intel = acorn.* ]] -++ [[ cheyenne.intel = orion.* ]] -++ [[ cheyenne.intel = hera.* ]] -++ [[ cheyenne.intel = linux.* ]] -++ [[ cheyenne.intel = jet.* ]] -++ [[ cheyenne.intel = s4.* ]] -++ [[ cheyenne.intel = gaea.* ]] -++ [[ cheyenne.intel = cheyenne.* ]] -++ TPN=36 -++ INPES_dflt=3 -++ JNPES_dflt=8 -++ INPES_thrd=3 -++ JNPES_thrd=4 -++ INPES_c384=8 -++ JNPES_c384=6 -++ THRD_c384=2 -++ INPES_c768=8 -++ JNPES_c768=16 -++ THRD_c768=2 -++ THRD_cpl_atmw_gdas=3 -++ INPES_cpl_atmw_gdas=6 -++ JNPES_cpl_atmw_gdas=8 -++ WPG_cpl_atmw_gdas=24 -++ WAV_tasks_atmw_gdas=264 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=6 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=6 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ ICE_tasks_cpl_thrd=10 -++ WAV_tasks_cpl_thrd=20 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=12 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=6 -++ JNPES_cpl_mpi=12 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=24 -++ ICE_tasks_cpl_mpi=12 -++ WAV_tasks_cpl_mpi=24 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=12 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ ICE_tasks_cpl_bmrk=48 -++ WAV_tasks_cpl_bmrk=100 -++ WLCLK_dflt=30 -++ export WLCLK=30 -++ WLCLK=30 -+ export TEST_NAME=compile -+ TEST_NAME=compile -+ export TEST_NR=025 -+ TEST_NR=025 -+ export JBNME=compile_025 -+ JBNME=compile_025 -+ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_025 -+ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_025 -++ date +%s -+ echo -n 'compile_025, 1681919392,' -+ source rt_utils.sh -++ set -eu -++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] -++ OPNREQ_TEST=false -++ qsub_id=0 -++ slurm_id=0 -++ bsub_id=0 -+ source atparse.bash -+ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_025 -+ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_025 -+ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_025 -+ [[ pbs = \s\l\u\r\m ]] -+ [[ pbs = \l\s\f ]] -+ [[ pbs = \p\b\s ]] -+ atparse -+ local __set_x -+ '[' -o xtrace ']' -+ __set_x='set -x' -+ set +x -+ [[ false = \f\a\l\s\e ]] -+ submit_and_wait job_card -+ [[ -z job_card ]] -+ '[' -o xtrace ']' -+ set_x='set -x' -+ set +x -Job id 9507134 -TEST 025 compile is waiting to enter the queue -TEST 025 compile is submitted -1 min. TEST 025 compile is waiting in a queue, status: Q jobid 9507134 -2 min. TEST 025 compile is waiting in a queue, status: Q jobid 9507134 -3 min. TEST 025 compile is running, status: R jobid 9507134 -4 min. TEST 025 compile is running, status: R jobid 9507134 -5 min. TEST 025 compile is running, status: R jobid 9507134 -qstat: 9507134.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -qstat: 9507134.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -6 min. TEST 025 compile is finished, status: - jobid 9507134 -+ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_025.exe --rwxr-xr-x 1 jongkim ncar 372675624 Apr 19 15:54 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_025.exe -+ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_025/compile_025_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_025/job_timestamp.txt -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_025' -Removing test failure flag file for compile_025 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_025 -++ date +%s -+ echo ' 1681919702, 1' -+ elapsed=310 -+ echo 'Elapsed time 310 seconds. Compile 025' -Elapsed time 310 seconds. Compile 025 -+ '[' 0 -eq 0 ']' -Compile 025 elapsed time 199 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -+ echo PID=24767 -PID=24767 -+ SECONDS=0 -+ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT -+ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT -+ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM -+ [[ 4 != 4 ]] -+ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ export 'MAKE_OPT=-DAPP=NG-GODAS -DFASTER=ON' -+ MAKE_OPT='-DAPP=NG-GODAS -DFASTER=ON' -+ export COMPILE_NR=026 -+ COMPILE_NR=026 -+ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ OPNREQ_TEST=false -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_026' -Removing test failure flag file for compile_026 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_026 -+ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_026.env ]] -+ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_026.env -++ export JOB_NR=183 -++ JOB_NR=183 -++ export COMPILE_NR=026 -++ COMPILE_NR=026 -++ export MACHINE_ID=cheyenne.intel -++ MACHINE_ID=cheyenne.intel -++ export RT_COMPILER=intel -++ RT_COMPILER=intel -++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ export SCHEDULER=pbs -++ SCHEDULER=pbs -++ export ACCNR=NRAL0032 -++ ACCNR=NRAL0032 -++ export QUEUE=regular -++ QUEUE=regular -++ export PARTITION= -++ PARTITION= -++ export ROCOTO=false -++ ROCOTO=false -++ export ECFLOW=true -++ ECFLOW=true -++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ source default_vars.sh -++ THRD=1 -++ INPES_atmaero=4 -++ JNPES_atmaero=8 -++ WPG_atmaero=6 -++ THRD_cpl_atmw=1 -++ INPES_cpl_atmw=3 -++ JNPES_cpl_atmw=8 -++ WPG_cpl_atmw=6 -++ WAV_tasks_cpl_atmw=30 -++ WAV_thrds_cpl_atmw=1 -++ THRD_cpl_c48=1 -++ INPES_cpl_c48=1 -++ JNPES_cpl_c48=1 -++ WPG_cpl_c48=6 -++ OCN_tasks_cpl_c48=4 -++ ICE_tasks_cpl_c48=4 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=3 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=3 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ OCN_thrds_cpl_thrd=1 -++ ICE_tasks_cpl_thrd=10 -++ ICE_thrds_cpl_thrd=1 -++ WAV_tasks_cpl_thrd=12 -++ WAV_thrds_cpl_thrd=2 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=6 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=4 -++ JNPES_cpl_mpi=8 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=34 -++ ICE_tasks_cpl_mpi=20 -++ WAV_tasks_cpl_mpi=28 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=8 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ OCN_thrds_cpl_bmrk=1 -++ ICE_tasks_cpl_bmrk=48 -++ ICE_thrds_cpl_bmrk=1 -++ WAV_tasks_cpl_bmrk=80 -++ WAV_thrds_cpl_bmrk=2 -++ THRD_cpl_c192=2 -++ INPES_cpl_c192=6 -++ JNPES_cpl_c192=8 -++ WPG_cpl_c192=12 -++ OCN_tasks_cpl_c192=60 -++ ICE_tasks_cpl_c192=24 -++ WAV_tasks_cpl_c192=80 -++ ATM_compute_tasks_cdeps_100=12 -++ OCN_tasks_cdeps_100=16 -++ ICE_tasks_cdeps_100=12 -++ ATM_compute_tasks_cdeps_025=40 -++ OCN_tasks_cdeps_025=120 -++ ICE_tasks_cdeps_025=48 -++ INPES_aqm=33 -++ JNPES_aqm=8 -++ aqm_omp_num_threads=1 -++ atm_omp_num_threads=1 -++ chm_omp_num_threads=1 -++ ice_omp_num_threads=1 -++ lnd_omp_num_threads=1 -++ med_omp_num_threads=1 -++ ocn_omp_num_threads=1 -++ wav_omp_num_threads=1 -++ [[ cheyenne.intel = wcoss2.* ]] -++ [[ cheyenne.intel = acorn.* ]] -++ [[ cheyenne.intel = orion.* ]] -++ [[ cheyenne.intel = hera.* ]] -++ [[ cheyenne.intel = linux.* ]] -++ [[ cheyenne.intel = jet.* ]] -++ [[ cheyenne.intel = s4.* ]] -++ [[ cheyenne.intel = gaea.* ]] -++ [[ cheyenne.intel = cheyenne.* ]] -++ TPN=36 -++ INPES_dflt=3 -++ JNPES_dflt=8 -++ INPES_thrd=3 -++ JNPES_thrd=4 -++ INPES_c384=8 -++ JNPES_c384=6 -++ THRD_c384=2 -++ INPES_c768=8 -++ JNPES_c768=16 -++ THRD_c768=2 -++ THRD_cpl_atmw_gdas=3 -++ INPES_cpl_atmw_gdas=6 -++ JNPES_cpl_atmw_gdas=8 -++ WPG_cpl_atmw_gdas=24 -++ WAV_tasks_atmw_gdas=264 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=6 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=6 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ ICE_tasks_cpl_thrd=10 -++ WAV_tasks_cpl_thrd=20 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=12 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=6 -++ JNPES_cpl_mpi=12 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=24 -++ ICE_tasks_cpl_mpi=12 -++ WAV_tasks_cpl_mpi=24 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=12 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ ICE_tasks_cpl_bmrk=48 -++ WAV_tasks_cpl_bmrk=100 -++ WLCLK_dflt=30 -++ export WLCLK=30 -++ WLCLK=30 -+ export TEST_NAME=compile -+ TEST_NAME=compile -+ export TEST_NR=026 -+ TEST_NR=026 -+ export JBNME=compile_026 -+ JBNME=compile_026 -+ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_026 -+ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_026 -++ date +%s -+ echo -n 'compile_026, 1681919393,' -+ source rt_utils.sh -++ set -eu -++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] -++ OPNREQ_TEST=false -++ qsub_id=0 -++ slurm_id=0 -++ bsub_id=0 -+ source atparse.bash -+ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_026 -+ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_026 -+ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_026 -+ [[ pbs = \s\l\u\r\m ]] -+ [[ pbs = \l\s\f ]] -+ [[ pbs = \p\b\s ]] -+ atparse -+ local __set_x -+ '[' -o xtrace ']' -+ __set_x='set -x' -+ set +x -+ [[ false = \f\a\l\s\e ]] -+ submit_and_wait job_card -+ [[ -z job_card ]] -+ '[' -o xtrace ']' -+ set_x='set -x' -+ set +x -Job id 9507135 -TEST 026 compile is waiting to enter the queue -TEST 026 compile is submitted -1 min. TEST 026 compile is waiting in a queue, status: Q jobid 9507135 -2 min. TEST 026 compile is waiting in a queue, status: Q jobid 9507135 -3 min. TEST 026 compile is running, status: R jobid 9507135 -4 min. TEST 026 compile is running, status: R jobid 9507135 -5 min. TEST 026 compile is running, status: R jobid 9507135 -6 min. TEST 026 compile is running, status: R jobid 9507135 -7 min. TEST 026 compile is running, status: R jobid 9507135 -8 min. TEST 026 compile is running, status: R jobid 9507135 -9 min. TEST 026 compile is running, status: R jobid 9507135 -qstat: 9507135.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -qstat: 9507135.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -10 min. TEST 026 compile is finished, status: - jobid 9507135 -+ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_026.exe --rwxr-xr-x 1 jongkim ncar 296456376 Apr 19 15:58 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_026.exe -+ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_026/compile_026_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_026/job_timestamp.txt -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_026' -Removing test failure flag file for compile_026 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_026 -++ date +%s -+ echo ' 1681919948, 1' -+ elapsed=555 -+ echo 'Elapsed time 555 seconds. Compile 026' -Elapsed time 555 seconds. Compile 026 -+ '[' 0 -eq 0 ']' -Compile 026 elapsed time 428 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -+ echo PID=47281 -PID=47281 -+ SECONDS=0 -+ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT -+ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT -+ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM -+ [[ 4 != 4 ]] -+ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ export MAKE_OPT=-DAPP=LND -+ MAKE_OPT=-DAPP=LND -+ export COMPILE_NR=027 -+ COMPILE_NR=027 -+ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ OPNREQ_TEST=false -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_027' -Removing test failure flag file for compile_027 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_027 -+ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_027.env ]] -+ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_027.env -++ export JOB_NR=185 -++ JOB_NR=185 -++ export COMPILE_NR=027 -++ COMPILE_NR=027 -++ export MACHINE_ID=cheyenne.intel -++ MACHINE_ID=cheyenne.intel -++ export RT_COMPILER=intel -++ RT_COMPILER=intel -++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ export SCHEDULER=pbs -++ SCHEDULER=pbs -++ export ACCNR=NRAL0032 -++ ACCNR=NRAL0032 -++ export QUEUE=regular -++ QUEUE=regular -++ export PARTITION= -++ PARTITION= -++ export ROCOTO=false -++ ROCOTO=false -++ export ECFLOW=true -++ ECFLOW=true -++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ source default_vars.sh -++ THRD=1 -++ INPES_atmaero=4 -++ JNPES_atmaero=8 -++ WPG_atmaero=6 -++ THRD_cpl_atmw=1 -++ INPES_cpl_atmw=3 -++ JNPES_cpl_atmw=8 -++ WPG_cpl_atmw=6 -++ WAV_tasks_cpl_atmw=30 -++ WAV_thrds_cpl_atmw=1 -++ THRD_cpl_c48=1 -++ INPES_cpl_c48=1 -++ JNPES_cpl_c48=1 -++ WPG_cpl_c48=6 -++ OCN_tasks_cpl_c48=4 -++ ICE_tasks_cpl_c48=4 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=3 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=3 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ OCN_thrds_cpl_thrd=1 -++ ICE_tasks_cpl_thrd=10 -++ ICE_thrds_cpl_thrd=1 -++ WAV_tasks_cpl_thrd=12 -++ WAV_thrds_cpl_thrd=2 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=6 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=4 -++ JNPES_cpl_mpi=8 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=34 -++ ICE_tasks_cpl_mpi=20 -++ WAV_tasks_cpl_mpi=28 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=8 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ OCN_thrds_cpl_bmrk=1 -++ ICE_tasks_cpl_bmrk=48 -++ ICE_thrds_cpl_bmrk=1 -++ WAV_tasks_cpl_bmrk=80 -++ WAV_thrds_cpl_bmrk=2 -++ THRD_cpl_c192=2 -++ INPES_cpl_c192=6 -++ JNPES_cpl_c192=8 -++ WPG_cpl_c192=12 -++ OCN_tasks_cpl_c192=60 -++ ICE_tasks_cpl_c192=24 -++ WAV_tasks_cpl_c192=80 -++ ATM_compute_tasks_cdeps_100=12 -++ OCN_tasks_cdeps_100=16 -++ ICE_tasks_cdeps_100=12 -++ ATM_compute_tasks_cdeps_025=40 -++ OCN_tasks_cdeps_025=120 -++ ICE_tasks_cdeps_025=48 -++ INPES_aqm=33 -++ JNPES_aqm=8 -++ aqm_omp_num_threads=1 -++ atm_omp_num_threads=1 -++ chm_omp_num_threads=1 -++ ice_omp_num_threads=1 -++ lnd_omp_num_threads=1 -++ med_omp_num_threads=1 -++ ocn_omp_num_threads=1 -++ wav_omp_num_threads=1 -++ [[ cheyenne.intel = wcoss2.* ]] -++ [[ cheyenne.intel = acorn.* ]] -++ [[ cheyenne.intel = orion.* ]] -++ [[ cheyenne.intel = hera.* ]] -++ [[ cheyenne.intel = linux.* ]] -++ [[ cheyenne.intel = jet.* ]] -++ [[ cheyenne.intel = s4.* ]] -++ [[ cheyenne.intel = gaea.* ]] -++ [[ cheyenne.intel = cheyenne.* ]] -++ TPN=36 -++ INPES_dflt=3 -++ JNPES_dflt=8 -++ INPES_thrd=3 -++ JNPES_thrd=4 -++ INPES_c384=8 -++ JNPES_c384=6 -++ THRD_c384=2 -++ INPES_c768=8 -++ JNPES_c768=16 -++ THRD_c768=2 -++ THRD_cpl_atmw_gdas=3 -++ INPES_cpl_atmw_gdas=6 -++ JNPES_cpl_atmw_gdas=8 -++ WPG_cpl_atmw_gdas=24 -++ WAV_tasks_atmw_gdas=264 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=6 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=6 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ ICE_tasks_cpl_thrd=10 -++ WAV_tasks_cpl_thrd=20 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=12 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=6 -++ JNPES_cpl_mpi=12 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=24 -++ ICE_tasks_cpl_mpi=12 -++ WAV_tasks_cpl_mpi=24 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=12 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ ICE_tasks_cpl_bmrk=48 -++ WAV_tasks_cpl_bmrk=100 -++ WLCLK_dflt=30 -++ export WLCLK=30 -++ WLCLK=30 -+ export TEST_NAME=compile -+ TEST_NAME=compile -+ export TEST_NR=027 -+ TEST_NR=027 -+ export JBNME=compile_027 -+ JBNME=compile_027 -+ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_027 -+ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_027 -++ date +%s -+ echo -n 'compile_027, 1681919689,' -+ source rt_utils.sh -++ set -eu -++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] -++ OPNREQ_TEST=false -++ qsub_id=0 -++ slurm_id=0 -++ bsub_id=0 -+ source atparse.bash -+ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_027 -+ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_027 -+ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_027 -+ [[ pbs = \s\l\u\r\m ]] -+ [[ pbs = \l\s\f ]] -+ [[ pbs = \p\b\s ]] -+ atparse -+ local __set_x -+ '[' -o xtrace ']' -+ __set_x='set -x' -+ set +x -+ [[ false = \f\a\l\s\e ]] -+ submit_and_wait job_card -+ [[ -z job_card ]] -+ '[' -o xtrace ']' -+ set_x='set -x' -+ set +x -Job id 9507178 -TEST 027 compile is waiting to enter the queue -TEST 027 compile is submitted -1 min. TEST 027 compile is waiting in a queue, status: Q jobid 9507178 -2 min. TEST 027 compile is waiting in a queue, status: Q jobid 9507178 -3 min. TEST 027 compile is waiting in a queue, status: Q jobid 9507178 -4 min. TEST 027 compile is running, status: R jobid 9507178 -5 min. TEST 027 compile is running, status: R jobid 9507178 -qstat: 9507178.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -qstat: 9507178.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -6 min. TEST 027 compile is finished, status: - jobid 9507178 -+ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_027.exe --rwxr-xr-x 1 jongkim ncar 220506216 Apr 19 15:59 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_027.exe -+ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_027/compile_027_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_027/job_timestamp.txt -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_027' -Removing test failure flag file for compile_027 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_027 -++ date +%s -+ echo ' 1681920007, 1' -+ elapsed=318 -+ echo 'Elapsed time 318 seconds. Compile 027' -Elapsed time 318 seconds. Compile 027 -+ '[' 0 -eq 0 ']' -Compile 027 elapsed time 104 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -+ echo PID=50604 -PID=50604 -+ SECONDS=0 -+ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT -+ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT -+ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM -+ [[ 4 != 4 ]] -+ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ export 'MAKE_OPT=-DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km' -+ MAKE_OPT='-DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km' -+ export COMPILE_NR=028 -+ COMPILE_NR=028 -+ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ OPNREQ_TEST=false -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_028' -Removing test failure flag file for compile_028 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_028 -+ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_028.env ]] -+ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_028.env -++ export JOB_NR=188 -++ JOB_NR=188 -++ export COMPILE_NR=028 -++ COMPILE_NR=028 -++ export MACHINE_ID=cheyenne.intel -++ MACHINE_ID=cheyenne.intel -++ export RT_COMPILER=intel -++ RT_COMPILER=intel -++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ export SCHEDULER=pbs -++ SCHEDULER=pbs -++ export ACCNR=NRAL0032 -++ ACCNR=NRAL0032 -++ export QUEUE=regular -++ QUEUE=regular -++ export PARTITION= -++ PARTITION= -++ export ROCOTO=false -++ ROCOTO=false -++ export ECFLOW=true -++ ECFLOW=true -++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ source default_vars.sh -++ THRD=1 -++ INPES_atmaero=4 -++ JNPES_atmaero=8 -++ WPG_atmaero=6 -++ THRD_cpl_atmw=1 -++ INPES_cpl_atmw=3 -++ JNPES_cpl_atmw=8 -++ WPG_cpl_atmw=6 -++ WAV_tasks_cpl_atmw=30 -++ WAV_thrds_cpl_atmw=1 -++ THRD_cpl_c48=1 -++ INPES_cpl_c48=1 -++ JNPES_cpl_c48=1 -++ WPG_cpl_c48=6 -++ OCN_tasks_cpl_c48=4 -++ ICE_tasks_cpl_c48=4 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=3 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=3 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ OCN_thrds_cpl_thrd=1 -++ ICE_tasks_cpl_thrd=10 -++ ICE_thrds_cpl_thrd=1 -++ WAV_tasks_cpl_thrd=12 -++ WAV_thrds_cpl_thrd=2 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=6 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=4 -++ JNPES_cpl_mpi=8 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=34 -++ ICE_tasks_cpl_mpi=20 -++ WAV_tasks_cpl_mpi=28 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=8 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ OCN_thrds_cpl_bmrk=1 -++ ICE_tasks_cpl_bmrk=48 -++ ICE_thrds_cpl_bmrk=1 -++ WAV_tasks_cpl_bmrk=80 -++ WAV_thrds_cpl_bmrk=2 -++ THRD_cpl_c192=2 -++ INPES_cpl_c192=6 -++ JNPES_cpl_c192=8 -++ WPG_cpl_c192=12 -++ OCN_tasks_cpl_c192=60 -++ ICE_tasks_cpl_c192=24 -++ WAV_tasks_cpl_c192=80 -++ ATM_compute_tasks_cdeps_100=12 -++ OCN_tasks_cdeps_100=16 -++ ICE_tasks_cdeps_100=12 -++ ATM_compute_tasks_cdeps_025=40 -++ OCN_tasks_cdeps_025=120 -++ ICE_tasks_cdeps_025=48 -++ INPES_aqm=33 -++ JNPES_aqm=8 -++ aqm_omp_num_threads=1 -++ atm_omp_num_threads=1 -++ chm_omp_num_threads=1 -++ ice_omp_num_threads=1 -++ lnd_omp_num_threads=1 -++ med_omp_num_threads=1 -++ ocn_omp_num_threads=1 -++ wav_omp_num_threads=1 -++ [[ cheyenne.intel = wcoss2.* ]] -++ [[ cheyenne.intel = acorn.* ]] -++ [[ cheyenne.intel = orion.* ]] -++ [[ cheyenne.intel = hera.* ]] -++ [[ cheyenne.intel = linux.* ]] -++ [[ cheyenne.intel = jet.* ]] -++ [[ cheyenne.intel = s4.* ]] -++ [[ cheyenne.intel = gaea.* ]] -++ [[ cheyenne.intel = cheyenne.* ]] -++ TPN=36 -++ INPES_dflt=3 -++ JNPES_dflt=8 -++ INPES_thrd=3 -++ JNPES_thrd=4 -++ INPES_c384=8 -++ JNPES_c384=6 -++ THRD_c384=2 -++ INPES_c768=8 -++ JNPES_c768=16 -++ THRD_c768=2 -++ THRD_cpl_atmw_gdas=3 -++ INPES_cpl_atmw_gdas=6 -++ JNPES_cpl_atmw_gdas=8 -++ WPG_cpl_atmw_gdas=24 -++ WAV_tasks_atmw_gdas=264 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=6 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=6 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ ICE_tasks_cpl_thrd=10 -++ WAV_tasks_cpl_thrd=20 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=12 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=6 -++ JNPES_cpl_mpi=12 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=24 -++ ICE_tasks_cpl_mpi=12 -++ WAV_tasks_cpl_mpi=24 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=12 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ ICE_tasks_cpl_bmrk=48 -++ WAV_tasks_cpl_bmrk=100 -++ WLCLK_dflt=30 -++ export WLCLK=30 -++ WLCLK=30 -+ export TEST_NAME=compile -+ TEST_NAME=compile -+ export TEST_NR=028 -+ TEST_NR=028 -+ export JBNME=compile_028 -+ JBNME=compile_028 -+ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_028 -+ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_028 -++ date +%s -+ echo -n 'compile_028, 1681919702,' -+ source rt_utils.sh -++ set -eu -++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] -++ OPNREQ_TEST=false -++ qsub_id=0 -++ slurm_id=0 -++ bsub_id=0 -+ source atparse.bash -+ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_028 -+ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_028 -+ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_028 -+ [[ pbs = \s\l\u\r\m ]] -+ [[ pbs = \l\s\f ]] -+ [[ pbs = \p\b\s ]] -+ atparse -+ local __set_x -+ '[' -o xtrace ']' -+ __set_x='set -x' -+ set +x -+ [[ false = \f\a\l\s\e ]] -+ submit_and_wait job_card -+ [[ -z job_card ]] -+ '[' -o xtrace ']' -+ set_x='set -x' -+ set +x -Job id 9507181 -TEST 028 compile is waiting to enter the queue -TEST 028 compile is submitted -1 min. TEST 028 compile is waiting in a queue, status: Q jobid 9507181 -2 min. TEST 028 compile is waiting in a queue, status: Q jobid 9507181 -3 min. TEST 028 compile is waiting in a queue, status: Q jobid 9507181 -4 min. TEST 028 compile is waiting in a queue, status: Q jobid 9507181 -5 min. TEST 028 compile is running, status: R jobid 9507181 -6 min. TEST 028 compile is running, status: R jobid 9507181 -7 min. TEST 028 compile is running, status: R jobid 9507181 -8 min. TEST 028 compile is running, status: R jobid 9507181 -9 min. TEST 028 compile is running, status: R jobid 9507181 -10 min. TEST 028 compile is running, status: R jobid 9507181 -11 min. TEST 028 compile is running, status: R jobid 9507181 -12 min. TEST 028 compile is running, status: R jobid 9507181 -13 min. TEST 028 compile is running, status: R jobid 9507181 -14 min. TEST 028 compile is running, status: R jobid 9507181 -15 min. TEST 028 compile is running, status: R jobid 9507181 -16 min. TEST 028 compile is running, status: R jobid 9507181 -17 min. TEST 028 compile is running, status: R jobid 9507181 -18 min. TEST 028 compile is running, status: R jobid 9507181 -19 min. TEST 028 compile is running, status: R jobid 9507181 -20 min. TEST 028 compile is running, status: R jobid 9507181 -qstat: 9507181.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -qstat: 9507181.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -21 min. TEST 028 compile is finished, status: - jobid 9507181 -+ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_028.exe --rwxr-xr-x 1 jongkim ncar 283964880 Apr 19 16:14 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_028.exe -+ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_028/compile_028_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_028/job_timestamp.txt -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_028' -Removing test failure flag file for compile_028 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_028 -++ date +%s -+ echo ' 1681920929, 1' -+ elapsed=1227 -+ echo 'Elapsed time 1227 seconds. Compile 028' -Elapsed time 1227 seconds. Compile 028 -+ '[' 0 -eq 0 ']' -Compile 028 elapsed time 961 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -+ echo PID=64019 -PID=64019 -+ SECONDS=0 -+ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT -+ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT -+ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM -+ [[ 4 != 4 ]] -+ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ export 'MAKE_OPT=-DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON' -+ MAKE_OPT='-DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON' -+ export COMPILE_NR=029 -+ COMPILE_NR=029 -+ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ OPNREQ_TEST=false -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_029' -Removing test failure flag file for compile_029 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_029 -+ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_029.env ]] -+ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_029.env -++ export JOB_NR=190 -++ JOB_NR=190 -++ export COMPILE_NR=029 -++ COMPILE_NR=029 -++ export MACHINE_ID=cheyenne.intel -++ MACHINE_ID=cheyenne.intel -++ export RT_COMPILER=intel -++ RT_COMPILER=intel -++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ export SCHEDULER=pbs -++ SCHEDULER=pbs -++ export ACCNR=NRAL0032 -++ ACCNR=NRAL0032 -++ export QUEUE=regular -++ QUEUE=regular -++ export PARTITION= -++ PARTITION= -++ export ROCOTO=false -++ ROCOTO=false -++ export ECFLOW=true -++ ECFLOW=true -++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ source default_vars.sh -++ THRD=1 -++ INPES_atmaero=4 -++ JNPES_atmaero=8 -++ WPG_atmaero=6 -++ THRD_cpl_atmw=1 -++ INPES_cpl_atmw=3 -++ JNPES_cpl_atmw=8 -++ WPG_cpl_atmw=6 -++ WAV_tasks_cpl_atmw=30 -++ WAV_thrds_cpl_atmw=1 -++ THRD_cpl_c48=1 -++ INPES_cpl_c48=1 -++ JNPES_cpl_c48=1 -++ WPG_cpl_c48=6 -++ OCN_tasks_cpl_c48=4 -++ ICE_tasks_cpl_c48=4 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=3 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=3 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ OCN_thrds_cpl_thrd=1 -++ ICE_tasks_cpl_thrd=10 -++ ICE_thrds_cpl_thrd=1 -++ WAV_tasks_cpl_thrd=12 -++ WAV_thrds_cpl_thrd=2 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=6 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=4 -++ JNPES_cpl_mpi=8 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=34 -++ ICE_tasks_cpl_mpi=20 -++ WAV_tasks_cpl_mpi=28 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=8 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ OCN_thrds_cpl_bmrk=1 -++ ICE_tasks_cpl_bmrk=48 -++ ICE_thrds_cpl_bmrk=1 -++ WAV_tasks_cpl_bmrk=80 -++ WAV_thrds_cpl_bmrk=2 -++ THRD_cpl_c192=2 -++ INPES_cpl_c192=6 -++ JNPES_cpl_c192=8 -++ WPG_cpl_c192=12 -++ OCN_tasks_cpl_c192=60 -++ ICE_tasks_cpl_c192=24 -++ WAV_tasks_cpl_c192=80 -++ ATM_compute_tasks_cdeps_100=12 -++ OCN_tasks_cdeps_100=16 -++ ICE_tasks_cdeps_100=12 -++ ATM_compute_tasks_cdeps_025=40 -++ OCN_tasks_cdeps_025=120 -++ ICE_tasks_cdeps_025=48 -++ INPES_aqm=33 -++ JNPES_aqm=8 -++ aqm_omp_num_threads=1 -++ atm_omp_num_threads=1 -++ chm_omp_num_threads=1 -++ ice_omp_num_threads=1 -++ lnd_omp_num_threads=1 -++ med_omp_num_threads=1 -++ ocn_omp_num_threads=1 -++ wav_omp_num_threads=1 -++ [[ cheyenne.intel = wcoss2.* ]] -++ [[ cheyenne.intel = acorn.* ]] -++ [[ cheyenne.intel = orion.* ]] -++ [[ cheyenne.intel = hera.* ]] -++ [[ cheyenne.intel = linux.* ]] -++ [[ cheyenne.intel = jet.* ]] -++ [[ cheyenne.intel = s4.* ]] -++ [[ cheyenne.intel = gaea.* ]] -++ [[ cheyenne.intel = cheyenne.* ]] -++ TPN=36 -++ INPES_dflt=3 -++ JNPES_dflt=8 -++ INPES_thrd=3 -++ JNPES_thrd=4 -++ INPES_c384=8 -++ JNPES_c384=6 -++ THRD_c384=2 -++ INPES_c768=8 -++ JNPES_c768=16 -++ THRD_c768=2 -++ THRD_cpl_atmw_gdas=3 -++ INPES_cpl_atmw_gdas=6 -++ JNPES_cpl_atmw_gdas=8 -++ WPG_cpl_atmw_gdas=24 -++ WAV_tasks_atmw_gdas=264 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=6 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=6 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ ICE_tasks_cpl_thrd=10 -++ WAV_tasks_cpl_thrd=20 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=12 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=6 -++ JNPES_cpl_mpi=12 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=24 -++ ICE_tasks_cpl_mpi=12 -++ WAV_tasks_cpl_mpi=24 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=12 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ ICE_tasks_cpl_bmrk=48 -++ WAV_tasks_cpl_bmrk=100 -++ WLCLK_dflt=30 -++ export WLCLK=30 -++ WLCLK=30 -+ export TEST_NAME=compile -+ TEST_NAME=compile -+ export TEST_NR=029 -+ TEST_NR=029 -+ export JBNME=compile_029 -+ JBNME=compile_029 -+ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_029 -+ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_029 -++ date +%s -+ echo -n 'compile_029, 1681919882,' -+ source rt_utils.sh -++ set -eu -++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] -++ OPNREQ_TEST=false -++ qsub_id=0 -++ slurm_id=0 -++ bsub_id=0 -+ source atparse.bash -+ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_029 -+ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_029 -+ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_029 -+ [[ pbs = \s\l\u\r\m ]] -+ [[ pbs = \l\s\f ]] -+ [[ pbs = \p\b\s ]] -+ atparse -+ local __set_x -+ '[' -o xtrace ']' -+ __set_x='set -x' -+ set +x -+ [[ false = \f\a\l\s\e ]] -+ submit_and_wait job_card -+ [[ -z job_card ]] -+ '[' -o xtrace ']' -+ set_x='set -x' -+ set +x -Job id 9507198 -TEST 029 compile is waiting to enter the queue -TEST 029 compile is submitted -1 min. TEST 029 compile is waiting in a queue, status: Q jobid 9507198 -2 min. TEST 029 compile is waiting in a queue, status: Q jobid 9507198 -3 min. TEST 029 compile is waiting in a queue, status: Q jobid 9507198 -4 min. TEST 029 compile is waiting in a queue, status: Q jobid 9507198 -5 min. TEST 029 compile is waiting in a queue, status: Q jobid 9507198 -6 min. TEST 029 compile is running, status: R jobid 9507198 -7 min. TEST 029 compile is running, status: R jobid 9507198 -8 min. TEST 029 compile is running, status: R jobid 9507198 -9 min. TEST 029 compile is running, status: R jobid 9507198 -10 min. TEST 029 compile is running, status: R jobid 9507198 -11 min. TEST 029 compile is running, status: R jobid 9507198 -12 min. TEST 029 compile is running, status: R jobid 9507198 -13 min. TEST 029 compile is running, status: R jobid 9507198 -14 min. TEST 029 compile is running, status: R jobid 9507198 -15 min. TEST 029 compile is running, status: R jobid 9507198 -16 min. TEST 029 compile is running, status: R jobid 9507198 -17 min. TEST 029 compile is running, status: R jobid 9507198 -18 min. TEST 029 compile is running, status: R jobid 9507198 -19 min. TEST 029 compile is running, status: R jobid 9507198 -20 min. TEST 029 compile is running, status: R jobid 9507198 -21 min. TEST 029 compile is running, status: R jobid 9507198 -qstat: 9507198.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -qstat: 9507198.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -22 min. TEST 029 compile is finished, status: - jobid 9507198 -+ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_029.exe --rwxr-xr-x 1 jongkim ncar 283794768 Apr 19 16:19 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_029.exe -+ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_029/compile_029_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_029/job_timestamp.txt -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_029' -Removing test failure flag file for compile_029 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_029 -++ date +%s -+ echo ' 1681921156, 1' -+ elapsed=1274 -+ echo 'Elapsed time 1274 seconds. Compile 029' -Elapsed time 1274 seconds. Compile 029 -+ '[' 0 -eq 0 ']' -Compile 029 elapsed time 1006 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -+ echo PID=65756 -PID=65756 -+ SECONDS=0 -+ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT -+ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT -+ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM -+ [[ 4 != 4 ]] -+ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ export 'MAKE_OPT=-DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON' -+ MAKE_OPT='-DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON' -+ export COMPILE_NR=030 -+ COMPILE_NR=030 -+ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ OPNREQ_TEST=false -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_030' -Removing test failure flag file for compile_030 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_030 -+ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_030.env ]] -+ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_030.env -++ export JOB_NR=192 -++ JOB_NR=192 -++ export COMPILE_NR=030 -++ COMPILE_NR=030 -++ export MACHINE_ID=cheyenne.intel -++ MACHINE_ID=cheyenne.intel -++ export RT_COMPILER=intel -++ RT_COMPILER=intel -++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ export SCHEDULER=pbs -++ SCHEDULER=pbs -++ export ACCNR=NRAL0032 -++ ACCNR=NRAL0032 -++ export QUEUE=regular -++ QUEUE=regular -++ export PARTITION= -++ PARTITION= -++ export ROCOTO=false -++ ROCOTO=false -++ export ECFLOW=true -++ ECFLOW=true -++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ source default_vars.sh -++ THRD=1 -++ INPES_atmaero=4 -++ JNPES_atmaero=8 -++ WPG_atmaero=6 -++ THRD_cpl_atmw=1 -++ INPES_cpl_atmw=3 -++ JNPES_cpl_atmw=8 -++ WPG_cpl_atmw=6 -++ WAV_tasks_cpl_atmw=30 -++ WAV_thrds_cpl_atmw=1 -++ THRD_cpl_c48=1 -++ INPES_cpl_c48=1 -++ JNPES_cpl_c48=1 -++ WPG_cpl_c48=6 -++ OCN_tasks_cpl_c48=4 -++ ICE_tasks_cpl_c48=4 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=3 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=3 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ OCN_thrds_cpl_thrd=1 -++ ICE_tasks_cpl_thrd=10 -++ ICE_thrds_cpl_thrd=1 -++ WAV_tasks_cpl_thrd=12 -++ WAV_thrds_cpl_thrd=2 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=6 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=4 -++ JNPES_cpl_mpi=8 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=34 -++ ICE_tasks_cpl_mpi=20 -++ WAV_tasks_cpl_mpi=28 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=8 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ OCN_thrds_cpl_bmrk=1 -++ ICE_tasks_cpl_bmrk=48 -++ ICE_thrds_cpl_bmrk=1 -++ WAV_tasks_cpl_bmrk=80 -++ WAV_thrds_cpl_bmrk=2 -++ THRD_cpl_c192=2 -++ INPES_cpl_c192=6 -++ JNPES_cpl_c192=8 -++ WPG_cpl_c192=12 -++ OCN_tasks_cpl_c192=60 -++ ICE_tasks_cpl_c192=24 -++ WAV_tasks_cpl_c192=80 -++ ATM_compute_tasks_cdeps_100=12 -++ OCN_tasks_cdeps_100=16 -++ ICE_tasks_cdeps_100=12 -++ ATM_compute_tasks_cdeps_025=40 -++ OCN_tasks_cdeps_025=120 -++ ICE_tasks_cdeps_025=48 -++ INPES_aqm=33 -++ JNPES_aqm=8 -++ aqm_omp_num_threads=1 -++ atm_omp_num_threads=1 -++ chm_omp_num_threads=1 -++ ice_omp_num_threads=1 -++ lnd_omp_num_threads=1 -++ med_omp_num_threads=1 -++ ocn_omp_num_threads=1 -++ wav_omp_num_threads=1 -++ [[ cheyenne.intel = wcoss2.* ]] -++ [[ cheyenne.intel = acorn.* ]] -++ [[ cheyenne.intel = orion.* ]] -++ [[ cheyenne.intel = hera.* ]] -++ [[ cheyenne.intel = linux.* ]] -++ [[ cheyenne.intel = jet.* ]] -++ [[ cheyenne.intel = s4.* ]] -++ [[ cheyenne.intel = gaea.* ]] -++ [[ cheyenne.intel = cheyenne.* ]] -++ TPN=36 -++ INPES_dflt=3 -++ JNPES_dflt=8 -++ INPES_thrd=3 -++ JNPES_thrd=4 -++ INPES_c384=8 -++ JNPES_c384=6 -++ THRD_c384=2 -++ INPES_c768=8 -++ JNPES_c768=16 -++ THRD_c768=2 -++ THRD_cpl_atmw_gdas=3 -++ INPES_cpl_atmw_gdas=6 -++ JNPES_cpl_atmw_gdas=8 -++ WPG_cpl_atmw_gdas=24 -++ WAV_tasks_atmw_gdas=264 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=6 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=6 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ ICE_tasks_cpl_thrd=10 -++ WAV_tasks_cpl_thrd=20 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=12 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=6 -++ JNPES_cpl_mpi=12 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=24 -++ ICE_tasks_cpl_mpi=12 -++ WAV_tasks_cpl_mpi=24 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=12 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ ICE_tasks_cpl_bmrk=48 -++ WAV_tasks_cpl_bmrk=100 -++ WLCLK_dflt=30 -++ export WLCLK=30 -++ WLCLK=30 -+ export TEST_NAME=compile -+ TEST_NAME=compile -+ export TEST_NR=030 -+ TEST_NR=030 -+ export JBNME=compile_030 -+ JBNME=compile_030 -+ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_030 -+ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_030 -++ date +%s -+ echo -n 'compile_030, 1681919931,' -+ source rt_utils.sh -++ set -eu -++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] -++ OPNREQ_TEST=false -++ qsub_id=0 -++ slurm_id=0 -++ bsub_id=0 -+ source atparse.bash -+ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_030 -+ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_030 -+ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_030 -+ [[ pbs = \s\l\u\r\m ]] -+ [[ pbs = \l\s\f ]] -+ [[ pbs = \p\b\s ]] -+ atparse -+ local __set_x -+ '[' -o xtrace ']' -+ __set_x='set -x' -+ set +x -+ [[ false = \f\a\l\s\e ]] -+ submit_and_wait job_card -+ [[ -z job_card ]] -+ '[' -o xtrace ']' -+ set_x='set -x' -+ set +x -Job id 9507202 -TEST 030 compile is waiting to enter the queue -TEST 030 compile is submitted -1 min. TEST 030 compile is waiting in a queue, status: Q jobid 9507202 -2 min. TEST 030 compile is waiting in a queue, status: Q jobid 9507202 -3 min. TEST 030 compile is waiting in a queue, status: Q jobid 9507202 -4 min. TEST 030 compile is waiting in a queue, status: Q jobid 9507202 -5 min. TEST 030 compile is running, status: R jobid 9507202 -6 min. TEST 030 compile is running, status: R jobid 9507202 -7 min. TEST 030 compile is running, status: R jobid 9507202 -8 min. TEST 030 compile is running, status: R jobid 9507202 -9 min. TEST 030 compile is running, status: R jobid 9507202 -10 min. TEST 030 compile is running, status: R jobid 9507202 -11 min. TEST 030 compile is running, status: R jobid 9507202 -12 min. TEST 030 compile is running, status: R jobid 9507202 -13 min. TEST 030 compile is running, status: R jobid 9507202 -14 min. TEST 030 compile is running, status: R jobid 9507202 -15 min. TEST 030 compile is running, status: R jobid 9507202 -16 min. TEST 030 compile is running, status: R jobid 9507202 -17 min. TEST 030 compile is running, status: R jobid 9507202 -18 min. TEST 030 compile is running, status: R jobid 9507202 -19 min. TEST 030 compile is running, status: R jobid 9507202 -20 min. TEST 030 compile is running, status: R jobid 9507202 -21 min. TEST 030 compile is running, status: R jobid 9507202 -qstat: 9507202.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -qstat: 9507202.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -22 min. TEST 030 compile is finished, status: - jobid 9507202 -+ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_030.exe --rwxr-xr-x 1 jongkim ncar 283659832 Apr 19 16:19 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_030.exe -+ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_030/compile_030_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_030/job_timestamp.txt -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_030' -Removing test failure flag file for compile_030 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_030 -++ date +%s -+ echo ' 1681921216, 1' -+ elapsed=1285 -+ echo 'Elapsed time 1285 seconds. Compile 030' -Elapsed time 1285 seconds. Compile 030 -+ '[' 0 -eq 0 ']' -Compile 030 elapsed time 1009 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -+ echo PID=66428 -PID=66428 -+ SECONDS=0 -+ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT -+ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT -+ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM -+ [[ 4 != 4 ]] -+ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ export 'MAKE_OPT=-DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON' -+ MAKE_OPT='-DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON' -+ export COMPILE_NR=031 -+ COMPILE_NR=031 -+ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ OPNREQ_TEST=false -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_031' -Removing test failure flag file for compile_031 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_031 -+ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_031.env ]] -+ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_031.env -++ export JOB_NR=194 -++ JOB_NR=194 -++ export COMPILE_NR=031 -++ COMPILE_NR=031 -++ export MACHINE_ID=cheyenne.intel -++ MACHINE_ID=cheyenne.intel -++ export RT_COMPILER=intel -++ RT_COMPILER=intel -++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ export SCHEDULER=pbs -++ SCHEDULER=pbs -++ export ACCNR=NRAL0032 -++ ACCNR=NRAL0032 -++ export QUEUE=regular -++ QUEUE=regular -++ export PARTITION= -++ PARTITION= -++ export ROCOTO=false -++ ROCOTO=false -++ export ECFLOW=true -++ ECFLOW=true -++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ source default_vars.sh -++ THRD=1 -++ INPES_atmaero=4 -++ JNPES_atmaero=8 -++ WPG_atmaero=6 -++ THRD_cpl_atmw=1 -++ INPES_cpl_atmw=3 -++ JNPES_cpl_atmw=8 -++ WPG_cpl_atmw=6 -++ WAV_tasks_cpl_atmw=30 -++ WAV_thrds_cpl_atmw=1 -++ THRD_cpl_c48=1 -++ INPES_cpl_c48=1 -++ JNPES_cpl_c48=1 -++ WPG_cpl_c48=6 -++ OCN_tasks_cpl_c48=4 -++ ICE_tasks_cpl_c48=4 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=3 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=3 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ OCN_thrds_cpl_thrd=1 -++ ICE_tasks_cpl_thrd=10 -++ ICE_thrds_cpl_thrd=1 -++ WAV_tasks_cpl_thrd=12 -++ WAV_thrds_cpl_thrd=2 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=6 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=4 -++ JNPES_cpl_mpi=8 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=34 -++ ICE_tasks_cpl_mpi=20 -++ WAV_tasks_cpl_mpi=28 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=8 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ OCN_thrds_cpl_bmrk=1 -++ ICE_tasks_cpl_bmrk=48 -++ ICE_thrds_cpl_bmrk=1 -++ WAV_tasks_cpl_bmrk=80 -++ WAV_thrds_cpl_bmrk=2 -++ THRD_cpl_c192=2 -++ INPES_cpl_c192=6 -++ JNPES_cpl_c192=8 -++ WPG_cpl_c192=12 -++ OCN_tasks_cpl_c192=60 -++ ICE_tasks_cpl_c192=24 -++ WAV_tasks_cpl_c192=80 -++ ATM_compute_tasks_cdeps_100=12 -++ OCN_tasks_cdeps_100=16 -++ ICE_tasks_cdeps_100=12 -++ ATM_compute_tasks_cdeps_025=40 -++ OCN_tasks_cdeps_025=120 -++ ICE_tasks_cdeps_025=48 -++ INPES_aqm=33 -++ JNPES_aqm=8 -++ aqm_omp_num_threads=1 -++ atm_omp_num_threads=1 -++ chm_omp_num_threads=1 -++ ice_omp_num_threads=1 -++ lnd_omp_num_threads=1 -++ med_omp_num_threads=1 -++ ocn_omp_num_threads=1 -++ wav_omp_num_threads=1 -++ [[ cheyenne.intel = wcoss2.* ]] -++ [[ cheyenne.intel = acorn.* ]] -++ [[ cheyenne.intel = orion.* ]] -++ [[ cheyenne.intel = hera.* ]] -++ [[ cheyenne.intel = linux.* ]] -++ [[ cheyenne.intel = jet.* ]] -++ [[ cheyenne.intel = s4.* ]] -++ [[ cheyenne.intel = gaea.* ]] -++ [[ cheyenne.intel = cheyenne.* ]] -++ TPN=36 -++ INPES_dflt=3 -++ JNPES_dflt=8 -++ INPES_thrd=3 -++ JNPES_thrd=4 -++ INPES_c384=8 -++ JNPES_c384=6 -++ THRD_c384=2 -++ INPES_c768=8 -++ JNPES_c768=16 -++ THRD_c768=2 -++ THRD_cpl_atmw_gdas=3 -++ INPES_cpl_atmw_gdas=6 -++ JNPES_cpl_atmw_gdas=8 -++ WPG_cpl_atmw_gdas=24 -++ WAV_tasks_atmw_gdas=264 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=6 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=6 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ ICE_tasks_cpl_thrd=10 -++ WAV_tasks_cpl_thrd=20 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=12 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=6 -++ JNPES_cpl_mpi=12 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=24 -++ ICE_tasks_cpl_mpi=12 -++ WAV_tasks_cpl_mpi=24 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=12 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ ICE_tasks_cpl_bmrk=48 -++ WAV_tasks_cpl_bmrk=100 -++ WLCLK_dflt=30 -++ export WLCLK=30 -++ WLCLK=30 -+ export TEST_NAME=compile -+ TEST_NAME=compile -+ export TEST_NR=031 -+ TEST_NR=031 -+ export JBNME=compile_031 -+ JBNME=compile_031 -+ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_031 -+ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_031 -++ date +%s -+ echo -n 'compile_031, 1681919945,' -+ source rt_utils.sh -++ set -eu -++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] -++ OPNREQ_TEST=false -++ qsub_id=0 -++ slurm_id=0 -++ bsub_id=0 -+ source atparse.bash -+ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_031 -+ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_031 -+ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_031 -+ [[ pbs = \s\l\u\r\m ]] -+ [[ pbs = \l\s\f ]] -+ [[ pbs = \p\b\s ]] -+ atparse -+ local __set_x -+ '[' -o xtrace ']' -+ __set_x='set -x' -+ set +x -+ [[ false = \f\a\l\s\e ]] -+ submit_and_wait job_card -+ [[ -z job_card ]] -+ '[' -o xtrace ']' -+ set_x='set -x' -+ set +x -Job id 9507203 -TEST 031 compile is waiting to enter the queue -TEST 031 compile is submitted -1 min. TEST 031 compile is waiting in a queue, status: Q jobid 9507203 -2 min. TEST 031 compile is waiting in a queue, status: Q jobid 9507203 -3 min. TEST 031 compile is waiting in a queue, status: Q jobid 9507203 -4 min. TEST 031 compile is waiting in a queue, status: Q jobid 9507203 -5 min. TEST 031 compile is running, status: R jobid 9507203 -6 min. TEST 031 compile is running, status: R jobid 9507203 -7 min. TEST 031 compile is running, status: R jobid 9507203 -8 min. TEST 031 compile is running, status: R jobid 9507203 -9 min. TEST 031 compile is running, status: R jobid 9507203 -10 min. TEST 031 compile is running, status: R jobid 9507203 -11 min. TEST 031 compile is running, status: R jobid 9507203 -12 min. TEST 031 compile is running, status: R jobid 9507203 -13 min. TEST 031 compile is running, status: R jobid 9507203 -14 min. TEST 031 compile is running, status: R jobid 9507203 -15 min. TEST 031 compile is running, status: R jobid 9507203 -16 min. TEST 031 compile is running, status: R jobid 9507203 -17 min. TEST 031 compile is running, status: R jobid 9507203 -18 min. TEST 031 compile is running, status: R jobid 9507203 -19 min. TEST 031 compile is running, status: R jobid 9507203 -qstat: 9507203.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -qstat: 9507203.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -20 min. TEST 031 compile is finished, status: - jobid 9507203 -+ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_031.exe --rwxr-xr-x 1 jongkim ncar 360438480 Apr 19 16:17 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_031.exe -+ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_031/compile_031_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_031/job_timestamp.txt -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_031' -Removing test failure flag file for compile_031 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_031 -++ date +%s -+ echo ' 1681921114, 1' -+ elapsed=1169 -+ echo 'Elapsed time 1169 seconds. Compile 031' -Elapsed time 1169 seconds. Compile 031 -+ '[' 0 -eq 0 ']' -Compile 031 elapsed time 910 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -+ echo PID=66712 -PID=66712 -+ SECONDS=0 -+ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT -+ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT -+ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM -+ [[ 4 != 4 ]] -+ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ export 'MAKE_OPT=-DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON' -+ MAKE_OPT='-DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON' -+ export COMPILE_NR=032 -+ COMPILE_NR=032 -+ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ OPNREQ_TEST=false -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_032' -Removing test failure flag file for compile_032 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_032 -+ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_032.env ]] -+ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_032.env -++ export JOB_NR=198 -++ JOB_NR=198 -++ export COMPILE_NR=032 -++ COMPILE_NR=032 -++ export MACHINE_ID=cheyenne.intel -++ MACHINE_ID=cheyenne.intel -++ export RT_COMPILER=intel -++ RT_COMPILER=intel -++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ export SCHEDULER=pbs -++ SCHEDULER=pbs -++ export ACCNR=NRAL0032 -++ ACCNR=NRAL0032 -++ export QUEUE=regular -++ QUEUE=regular -++ export PARTITION= -++ PARTITION= -++ export ROCOTO=false -++ ROCOTO=false -++ export ECFLOW=true -++ ECFLOW=true -++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ source default_vars.sh -++ THRD=1 -++ INPES_atmaero=4 -++ JNPES_atmaero=8 -++ WPG_atmaero=6 -++ THRD_cpl_atmw=1 -++ INPES_cpl_atmw=3 -++ JNPES_cpl_atmw=8 -++ WPG_cpl_atmw=6 -++ WAV_tasks_cpl_atmw=30 -++ WAV_thrds_cpl_atmw=1 -++ THRD_cpl_c48=1 -++ INPES_cpl_c48=1 -++ JNPES_cpl_c48=1 -++ WPG_cpl_c48=6 -++ OCN_tasks_cpl_c48=4 -++ ICE_tasks_cpl_c48=4 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=3 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=3 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ OCN_thrds_cpl_thrd=1 -++ ICE_tasks_cpl_thrd=10 -++ ICE_thrds_cpl_thrd=1 -++ WAV_tasks_cpl_thrd=12 -++ WAV_thrds_cpl_thrd=2 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=6 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=4 -++ JNPES_cpl_mpi=8 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=34 -++ ICE_tasks_cpl_mpi=20 -++ WAV_tasks_cpl_mpi=28 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=8 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ OCN_thrds_cpl_bmrk=1 -++ ICE_tasks_cpl_bmrk=48 -++ ICE_thrds_cpl_bmrk=1 -++ WAV_tasks_cpl_bmrk=80 -++ WAV_thrds_cpl_bmrk=2 -++ THRD_cpl_c192=2 -++ INPES_cpl_c192=6 -++ JNPES_cpl_c192=8 -++ WPG_cpl_c192=12 -++ OCN_tasks_cpl_c192=60 -++ ICE_tasks_cpl_c192=24 -++ WAV_tasks_cpl_c192=80 -++ ATM_compute_tasks_cdeps_100=12 -++ OCN_tasks_cdeps_100=16 -++ ICE_tasks_cdeps_100=12 -++ ATM_compute_tasks_cdeps_025=40 -++ OCN_tasks_cdeps_025=120 -++ ICE_tasks_cdeps_025=48 -++ INPES_aqm=33 -++ JNPES_aqm=8 -++ aqm_omp_num_threads=1 -++ atm_omp_num_threads=1 -++ chm_omp_num_threads=1 -++ ice_omp_num_threads=1 -++ lnd_omp_num_threads=1 -++ med_omp_num_threads=1 -++ ocn_omp_num_threads=1 -++ wav_omp_num_threads=1 -++ [[ cheyenne.intel = wcoss2.* ]] -++ [[ cheyenne.intel = acorn.* ]] -++ [[ cheyenne.intel = orion.* ]] -++ [[ cheyenne.intel = hera.* ]] -++ [[ cheyenne.intel = linux.* ]] -++ [[ cheyenne.intel = jet.* ]] -++ [[ cheyenne.intel = s4.* ]] -++ [[ cheyenne.intel = gaea.* ]] -++ [[ cheyenne.intel = cheyenne.* ]] -++ TPN=36 -++ INPES_dflt=3 -++ JNPES_dflt=8 -++ INPES_thrd=3 -++ JNPES_thrd=4 -++ INPES_c384=8 -++ JNPES_c384=6 -++ THRD_c384=2 -++ INPES_c768=8 -++ JNPES_c768=16 -++ THRD_c768=2 -++ THRD_cpl_atmw_gdas=3 -++ INPES_cpl_atmw_gdas=6 -++ JNPES_cpl_atmw_gdas=8 -++ WPG_cpl_atmw_gdas=24 -++ WAV_tasks_atmw_gdas=264 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=6 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=6 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ ICE_tasks_cpl_thrd=10 -++ WAV_tasks_cpl_thrd=20 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=12 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=6 -++ JNPES_cpl_mpi=12 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=24 -++ ICE_tasks_cpl_mpi=12 -++ WAV_tasks_cpl_mpi=24 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=12 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ ICE_tasks_cpl_bmrk=48 -++ WAV_tasks_cpl_bmrk=100 -++ WLCLK_dflt=30 -++ export WLCLK=30 -++ WLCLK=30 -+ export TEST_NAME=compile -+ TEST_NAME=compile -+ export TEST_NR=032 -+ TEST_NR=032 -+ export JBNME=compile_032 -+ JBNME=compile_032 -+ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_032 -+ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_032 -++ date +%s -+ echo -n 'compile_032, 1681919949,' -+ source rt_utils.sh -++ set -eu -++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] -++ OPNREQ_TEST=false -++ qsub_id=0 -++ slurm_id=0 -++ bsub_id=0 -+ source atparse.bash -+ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_032 -+ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_032 -+ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_032 -+ [[ pbs = \s\l\u\r\m ]] -+ [[ pbs = \l\s\f ]] -+ [[ pbs = \p\b\s ]] -+ atparse -+ local __set_x -+ '[' -o xtrace ']' -+ __set_x='set -x' -+ set +x -+ [[ false = \f\a\l\s\e ]] -+ submit_and_wait job_card -+ [[ -z job_card ]] -+ '[' -o xtrace ']' -+ set_x='set -x' -+ set +x -Job id 9507204 -TEST 032 compile is waiting to enter the queue -TEST 032 compile is submitted -1 min. TEST 032 compile is waiting in a queue, status: Q jobid 9507204 -2 min. TEST 032 compile is waiting in a queue, status: Q jobid 9507204 -3 min. TEST 032 compile is waiting in a queue, status: Q jobid 9507204 -4 min. TEST 032 compile is waiting in a queue, status: Q jobid 9507204 -5 min. TEST 032 compile is running, status: R jobid 9507204 -6 min. TEST 032 compile is running, status: R jobid 9507204 -7 min. TEST 032 compile is running, status: R jobid 9507204 -8 min. TEST 032 compile is running, status: R jobid 9507204 -9 min. TEST 032 compile is running, status: R jobid 9507204 -10 min. TEST 032 compile is running, status: R jobid 9507204 -11 min. TEST 032 compile is running, status: R jobid 9507204 -12 min. TEST 032 compile is running, status: R jobid 9507204 -13 min. TEST 032 compile is running, status: R jobid 9507204 -14 min. TEST 032 compile is running, status: R jobid 9507204 -15 min. TEST 032 compile is running, status: R jobid 9507204 -16 min. TEST 032 compile is running, status: R jobid 9507204 -17 min. TEST 032 compile is running, status: R jobid 9507204 -18 min. TEST 032 compile is running, status: R jobid 9507204 -19 min. TEST 032 compile is finished, status: E jobid 9507204 -+ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_032.exe --rwxr-xr-x 1 jongkim ncar 277182056 Apr 19 16:17 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_032.exe -+ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_032/compile_032_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_032/job_timestamp.txt -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_032' -Removing test failure flag file for compile_032 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_032 -++ date +%s -+ echo ' 1681921053, 1' -+ elapsed=1104 -+ echo 'Elapsed time 1104 seconds. Compile 032' -Elapsed time 1104 seconds. Compile 032 -+ '[' 0 -eq 0 ']' -Compile 032 elapsed time 902 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -+ echo PID=71838 -PID=71838 -+ SECONDS=0 -+ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT -+ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT -+ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM -+ [[ 4 != 4 ]] -+ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ export 'MAKE_OPT=-DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON' -+ MAKE_OPT='-DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON' -+ export COMPILE_NR=033 -+ COMPILE_NR=033 -+ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ OPNREQ_TEST=false -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_033' -Removing test failure flag file for compile_033 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_033 -+ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_033.env ]] -+ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_033.env -++ export JOB_NR=200 -++ JOB_NR=200 -++ export COMPILE_NR=033 -++ COMPILE_NR=033 -++ export MACHINE_ID=cheyenne.intel -++ MACHINE_ID=cheyenne.intel -++ export RT_COMPILER=intel -++ RT_COMPILER=intel -++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ export SCHEDULER=pbs -++ SCHEDULER=pbs -++ export ACCNR=NRAL0032 -++ ACCNR=NRAL0032 -++ export QUEUE=regular -++ QUEUE=regular -++ export PARTITION= -++ PARTITION= -++ export ROCOTO=false -++ ROCOTO=false -++ export ECFLOW=true -++ ECFLOW=true -++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ source default_vars.sh -++ THRD=1 -++ INPES_atmaero=4 -++ JNPES_atmaero=8 -++ WPG_atmaero=6 -++ THRD_cpl_atmw=1 -++ INPES_cpl_atmw=3 -++ JNPES_cpl_atmw=8 -++ WPG_cpl_atmw=6 -++ WAV_tasks_cpl_atmw=30 -++ WAV_thrds_cpl_atmw=1 -++ THRD_cpl_c48=1 -++ INPES_cpl_c48=1 -++ JNPES_cpl_c48=1 -++ WPG_cpl_c48=6 -++ OCN_tasks_cpl_c48=4 -++ ICE_tasks_cpl_c48=4 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=3 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=3 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ OCN_thrds_cpl_thrd=1 -++ ICE_tasks_cpl_thrd=10 -++ ICE_thrds_cpl_thrd=1 -++ WAV_tasks_cpl_thrd=12 -++ WAV_thrds_cpl_thrd=2 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=6 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=4 -++ JNPES_cpl_mpi=8 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=34 -++ ICE_tasks_cpl_mpi=20 -++ WAV_tasks_cpl_mpi=28 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=8 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ OCN_thrds_cpl_bmrk=1 -++ ICE_tasks_cpl_bmrk=48 -++ ICE_thrds_cpl_bmrk=1 -++ WAV_tasks_cpl_bmrk=80 -++ WAV_thrds_cpl_bmrk=2 -++ THRD_cpl_c192=2 -++ INPES_cpl_c192=6 -++ JNPES_cpl_c192=8 -++ WPG_cpl_c192=12 -++ OCN_tasks_cpl_c192=60 -++ ICE_tasks_cpl_c192=24 -++ WAV_tasks_cpl_c192=80 -++ ATM_compute_tasks_cdeps_100=12 -++ OCN_tasks_cdeps_100=16 -++ ICE_tasks_cdeps_100=12 -++ ATM_compute_tasks_cdeps_025=40 -++ OCN_tasks_cdeps_025=120 -++ ICE_tasks_cdeps_025=48 -++ INPES_aqm=33 -++ JNPES_aqm=8 -++ aqm_omp_num_threads=1 -++ atm_omp_num_threads=1 -++ chm_omp_num_threads=1 -++ ice_omp_num_threads=1 -++ lnd_omp_num_threads=1 -++ med_omp_num_threads=1 -++ ocn_omp_num_threads=1 -++ wav_omp_num_threads=1 -++ [[ cheyenne.intel = wcoss2.* ]] -++ [[ cheyenne.intel = acorn.* ]] -++ [[ cheyenne.intel = orion.* ]] -++ [[ cheyenne.intel = hera.* ]] -++ [[ cheyenne.intel = linux.* ]] -++ [[ cheyenne.intel = jet.* ]] -++ [[ cheyenne.intel = s4.* ]] -++ [[ cheyenne.intel = gaea.* ]] -++ [[ cheyenne.intel = cheyenne.* ]] -++ TPN=36 -++ INPES_dflt=3 -++ JNPES_dflt=8 -++ INPES_thrd=3 -++ JNPES_thrd=4 -++ INPES_c384=8 -++ JNPES_c384=6 -++ THRD_c384=2 -++ INPES_c768=8 -++ JNPES_c768=16 -++ THRD_c768=2 -++ THRD_cpl_atmw_gdas=3 -++ INPES_cpl_atmw_gdas=6 -++ JNPES_cpl_atmw_gdas=8 -++ WPG_cpl_atmw_gdas=24 -++ WAV_tasks_atmw_gdas=264 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=6 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=6 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ ICE_tasks_cpl_thrd=10 -++ WAV_tasks_cpl_thrd=20 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=12 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=6 -++ JNPES_cpl_mpi=12 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=24 -++ ICE_tasks_cpl_mpi=12 -++ WAV_tasks_cpl_mpi=24 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=12 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ ICE_tasks_cpl_bmrk=48 -++ WAV_tasks_cpl_bmrk=100 -++ WLCLK_dflt=30 -++ export WLCLK=30 -++ WLCLK=30 -+ export TEST_NAME=compile -+ TEST_NAME=compile -+ export TEST_NR=033 -+ TEST_NR=033 -+ export JBNME=compile_033 -+ JBNME=compile_033 -+ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_033 -+ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_033 -++ date +%s -+ echo -n 'compile_033, 1681920008,' -+ source rt_utils.sh -++ set -eu -++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] -++ OPNREQ_TEST=false -++ qsub_id=0 -++ slurm_id=0 -++ bsub_id=0 -+ source atparse.bash -+ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_033 -+ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_033 -+ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_033 -+ [[ pbs = \s\l\u\r\m ]] -+ [[ pbs = \l\s\f ]] -+ [[ pbs = \p\b\s ]] -+ atparse -+ local __set_x -+ '[' -o xtrace ']' -+ __set_x='set -x' -+ set +x -+ [[ false = \f\a\l\s\e ]] -+ submit_and_wait job_card -+ [[ -z job_card ]] -+ '[' -o xtrace ']' -+ set_x='set -x' -+ set +x -Job id 9507214 -TEST 033 compile is waiting to enter the queue -TEST 033 compile is submitted -1 min. TEST 033 compile is waiting in a queue, status: Q jobid 9507214 -2 min. TEST 033 compile is waiting in a queue, status: Q jobid 9507214 -3 min. TEST 033 compile is waiting in a queue, status: Q jobid 9507214 -4 min. TEST 033 compile is waiting in a queue, status: Q jobid 9507214 -5 min. TEST 033 compile is waiting in a queue, status: Q jobid 9507214 -6 min. TEST 033 compile is running, status: R jobid 9507214 -7 min. TEST 033 compile is running, status: R jobid 9507214 -8 min. TEST 033 compile is running, status: R jobid 9507214 -9 min. TEST 033 compile is running, status: R jobid 9507214 -10 min. TEST 033 compile is running, status: R jobid 9507214 -qstat: 9507214.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -qstat: 9507214.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -11 min. TEST 033 compile is finished, status: - jobid 9507214 -+ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_033.exe --rwxr-xr-x 1 jongkim ncar 605857224 Apr 19 16:10 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_033.exe -+ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_033/compile_033_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_033/job_timestamp.txt -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_033' -Removing test failure flag file for compile_033 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_033 -++ date +%s -+ echo ' 1681920629, 1' -+ elapsed=621 -+ echo 'Elapsed time 621 seconds. Compile 033' -Elapsed time 621 seconds. Compile 033 -+ '[' 0 -eq 0 ']' -Compile 033 elapsed time 325 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -+ echo PID=7648 -PID=7648 -+ SECONDS=0 -+ trap '[ "$?" -eq 0 ] || write_fail_test' EXIT -+ trap 'echo "run_compile.sh interrupted PID=$$"; cleanup' INT -+ trap 'echo "run_compile.sh terminated PID=$$"; cleanup' TERM -+ [[ 4 != 4 ]] -+ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ export RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ RUNDIR_ROOT=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247 -+ export 'MAKE_OPT=-DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON' -+ MAKE_OPT='-DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON' -+ export COMPILE_NR=034 -+ COMPILE_NR=034 -+ cd /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -+ OPNREQ_TEST=false -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_034' -Removing test failure flag file for compile_034 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_034 -+ [[ -e /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_034.env ]] -+ source /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_034.env -++ export JOB_NR=202 -++ JOB_NR=202 -++ export COMPILE_NR=034 -++ COMPILE_NR=034 -++ export MACHINE_ID=cheyenne.intel -++ MACHINE_ID=cheyenne.intel -++ export RT_COMPILER=intel -++ RT_COMPILER=intel -++ export PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ PATHRT=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests -++ export PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ PATHTR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel -++ export SCHEDULER=pbs -++ SCHEDULER=pbs -++ export ACCNR=NRAL0032 -++ ACCNR=NRAL0032 -++ export QUEUE=regular -++ QUEUE=regular -++ export PARTITION= -++ PARTITION= -++ export ROCOTO=false -++ ROCOTO=false -++ export ECFLOW=true -++ ECFLOW=true -++ export REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ REGRESSIONTEST_LOG=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/RegressionTests_cheyenne.intel.log -++ export LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -++ LOG_DIR=/glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ source default_vars.sh -++ THRD=1 -++ INPES_atmaero=4 -++ JNPES_atmaero=8 -++ WPG_atmaero=6 -++ THRD_cpl_atmw=1 -++ INPES_cpl_atmw=3 -++ JNPES_cpl_atmw=8 -++ WPG_cpl_atmw=6 -++ WAV_tasks_cpl_atmw=30 -++ WAV_thrds_cpl_atmw=1 -++ THRD_cpl_c48=1 -++ INPES_cpl_c48=1 -++ JNPES_cpl_c48=1 -++ WPG_cpl_c48=6 -++ OCN_tasks_cpl_c48=4 -++ ICE_tasks_cpl_c48=4 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=3 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=3 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ OCN_thrds_cpl_thrd=1 -++ ICE_tasks_cpl_thrd=10 -++ ICE_thrds_cpl_thrd=1 -++ WAV_tasks_cpl_thrd=12 -++ WAV_thrds_cpl_thrd=2 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=6 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=4 -++ JNPES_cpl_mpi=8 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=34 -++ ICE_tasks_cpl_mpi=20 -++ WAV_tasks_cpl_mpi=28 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=8 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ OCN_thrds_cpl_bmrk=1 -++ ICE_tasks_cpl_bmrk=48 -++ ICE_thrds_cpl_bmrk=1 -++ WAV_tasks_cpl_bmrk=80 -++ WAV_thrds_cpl_bmrk=2 -++ THRD_cpl_c192=2 -++ INPES_cpl_c192=6 -++ JNPES_cpl_c192=8 -++ WPG_cpl_c192=12 -++ OCN_tasks_cpl_c192=60 -++ ICE_tasks_cpl_c192=24 -++ WAV_tasks_cpl_c192=80 -++ ATM_compute_tasks_cdeps_100=12 -++ OCN_tasks_cdeps_100=16 -++ ICE_tasks_cdeps_100=12 -++ ATM_compute_tasks_cdeps_025=40 -++ OCN_tasks_cdeps_025=120 -++ ICE_tasks_cdeps_025=48 -++ INPES_aqm=33 -++ JNPES_aqm=8 -++ aqm_omp_num_threads=1 -++ atm_omp_num_threads=1 -++ chm_omp_num_threads=1 -++ ice_omp_num_threads=1 -++ lnd_omp_num_threads=1 -++ med_omp_num_threads=1 -++ ocn_omp_num_threads=1 -++ wav_omp_num_threads=1 -++ [[ cheyenne.intel = wcoss2.* ]] -++ [[ cheyenne.intel = acorn.* ]] -++ [[ cheyenne.intel = orion.* ]] -++ [[ cheyenne.intel = hera.* ]] -++ [[ cheyenne.intel = linux.* ]] -++ [[ cheyenne.intel = jet.* ]] -++ [[ cheyenne.intel = s4.* ]] -++ [[ cheyenne.intel = gaea.* ]] -++ [[ cheyenne.intel = cheyenne.* ]] -++ TPN=36 -++ INPES_dflt=3 -++ JNPES_dflt=8 -++ INPES_thrd=3 -++ JNPES_thrd=4 -++ INPES_c384=8 -++ JNPES_c384=6 -++ THRD_c384=2 -++ INPES_c768=8 -++ JNPES_c768=16 -++ THRD_c768=2 -++ THRD_cpl_atmw_gdas=3 -++ INPES_cpl_atmw_gdas=6 -++ JNPES_cpl_atmw_gdas=8 -++ WPG_cpl_atmw_gdas=24 -++ WAV_tasks_atmw_gdas=264 -++ THRD_cpl_dflt=1 -++ INPES_cpl_dflt=6 -++ JNPES_cpl_dflt=8 -++ WPG_cpl_dflt=6 -++ OCN_tasks_cpl_dflt=20 -++ ICE_tasks_cpl_dflt=10 -++ WAV_tasks_cpl_dflt=20 -++ THRD_cpl_thrd=2 -++ INPES_cpl_thrd=6 -++ JNPES_cpl_thrd=4 -++ WPG_cpl_thrd=6 -++ OCN_tasks_cpl_thrd=20 -++ ICE_tasks_cpl_thrd=10 -++ WAV_tasks_cpl_thrd=20 -++ THRD_cpl_dcmp=1 -++ INPES_cpl_dcmp=4 -++ JNPES_cpl_dcmp=12 -++ WPG_cpl_dcmp=6 -++ OCN_tasks_cpl_dcmp=20 -++ ICE_tasks_cpl_dcmp=10 -++ WAV_tasks_cpl_dcmp=20 -++ THRD_cpl_mpi=1 -++ INPES_cpl_mpi=6 -++ JNPES_cpl_mpi=12 -++ WPG_cpl_mpi=6 -++ OCN_tasks_cpl_mpi=24 -++ ICE_tasks_cpl_mpi=12 -++ WAV_tasks_cpl_mpi=24 -++ THRD_cpl_bmrk=2 -++ INPES_cpl_bmrk=12 -++ JNPES_cpl_bmrk=8 -++ WPG_cpl_bmrk=48 -++ OCN_tasks_cpl_bmrk=120 -++ ICE_tasks_cpl_bmrk=48 -++ WAV_tasks_cpl_bmrk=100 -++ WLCLK_dflt=30 -++ export WLCLK=30 -++ WLCLK=30 -+ export TEST_NAME=compile -+ TEST_NAME=compile -+ export TEST_NR=034 -+ TEST_NR=034 -+ export JBNME=compile_034 -+ JBNME=compile_034 -+ export RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_034 -+ RUNDIR=/glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_034 -++ date +%s -+ echo -n 'compile_034, 1681920189,' -+ source rt_utils.sh -++ set -eu -++ [[ /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] -++ OPNREQ_TEST=false -++ qsub_id=0 -++ slurm_id=0 -++ bsub_id=0 -+ source atparse.bash -+ rm -rf /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_034 -+ mkdir -p /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_034 -+ cd /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_034 -+ [[ pbs = \s\l\u\r\m ]] -+ [[ pbs = \l\s\f ]] -+ [[ pbs = \p\b\s ]] -+ atparse -+ local __set_x -+ '[' -o xtrace ']' -+ __set_x='set -x' -+ set +x -+ [[ false = \f\a\l\s\e ]] -+ submit_and_wait job_card -+ [[ -z job_card ]] -+ '[' -o xtrace ']' -+ set_x='set -x' -+ set +x -Job id 9507232 -TEST 034 compile is waiting to enter the queue -TEST 034 compile is submitted -1 min. TEST 034 compile is waiting in a queue, status: Q jobid 9507232 -2 min. TEST 034 compile is waiting in a queue, status: Q jobid 9507232 -3 min. TEST 034 compile is running, status: R jobid 9507232 -4 min. TEST 034 compile is running, status: R jobid 9507232 -5 min. TEST 034 compile is running, status: R jobid 9507232 -6 min. TEST 034 compile is running, status: R jobid 9507232 -7 min. TEST 034 compile is running, status: R jobid 9507232 -8 min. TEST 034 compile is running, status: R jobid 9507232 -9 min. TEST 034 compile is running, status: R jobid 9507232 -10 min. TEST 034 compile is running, status: R jobid 9507232 -11 min. TEST 034 compile is running, status: R jobid 9507232 -12 min. TEST 034 compile is running, status: R jobid 9507232 -13 min. TEST 034 compile is running, status: R jobid 9507232 -14 min. TEST 034 compile is running, status: R jobid 9507232 -15 min. TEST 034 compile is running, status: R jobid 9507232 -16 min. TEST 034 compile is running, status: R jobid 9507232 -17 min. TEST 034 compile is running, status: R jobid 9507232 -18 min. TEST 034 compile is running, status: R jobid 9507232 -19 min. TEST 034 compile is running, status: R jobid 9507232 -20 min. TEST 034 compile is running, status: R jobid 9507232 -21 min. TEST 034 compile is running, status: R jobid 9507232 -qstat: 9507232.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -qstat: 9507232.chadmin1.ib0.cheyenne.ucar.edu Job has finished, use -x or -H to obtain historical job information -22 min. TEST 034 compile is finished, status: - jobid 9507232 -+ ls -l /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_034.exe --rwxr-xr-x 1 jongkim ncar 277009936 Apr 19 16:25 /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fv3_034.exe -+ cp /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_034/compile_034_time.log /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/log_cheyenne.intel -+ cat /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/compile_034/job_timestamp.txt -+ remove_fail_test -+ echo 'Removing test failure flag file for compile_034' -Removing test failure flag file for compile_034 -+ [[ false == true ]] -+ rm -f /glade/scratch/jongkim/UFS-RT-tests/rt-1713-intel/tests/fail_compile_034 -++ date +%s -+ echo ' 1681921525, 1' -+ elapsed=1336 -+ echo 'Elapsed time 1336 seconds. Compile 034' -Elapsed time 1336 seconds. Compile 034 -+ '[' 0 -eq 0 ']' -Compile 034 elapsed time 1223 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8_mixedmode -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_control_p8_mixedmode -Checking test 001 cpld_control_p8_mixedmode results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -0:The total amount of wall time = 323.247808 -0:The maximum resident set size (KB) = 2698376 - -Test 001 cpld_control_p8_mixedmode PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_gfsv17 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_control_gfsv17 -Checking test 002 cpld_control_gfsv17 results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -0:The total amount of wall time = 283.218478 -0:The maximum resident set size (KB) = 1437616 - -Test 002 cpld_control_gfsv17 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_control_p8 -Checking test 003 cpld_control_p8 results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -0:The total amount of wall time = 325.782515 -0:The maximum resident set size (KB) = 2715216 - -Test 003 cpld_control_p8 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_restart_p8 -Checking test 004 cpld_restart_p8 results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -0:The total amount of wall time = 191.654366 -0:The maximum resident set size (KB) = 2576416 - -Test 004 cpld_restart_p8 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_control_qr_p8 -Checking test 005 cpld_control_qr_p8 results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -0:The total amount of wall time = 333.837542 -0:The maximum resident set size (KB) = 2719236 - -Test 005 cpld_control_qr_p8 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_restart_qr_p8 -Checking test 006 cpld_restart_qr_p8 results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -0:The total amount of wall time = 203.500991 -0:The maximum resident set size (KB) = 2593572 - -Test 006 cpld_restart_qr_p8 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_2threads_p8 -Checking test 007 cpld_2threads_p8 results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -0:The total amount of wall time = 319.449605 -0:The maximum resident set size (KB) = 3178008 - -Test 007 cpld_2threads_p8 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_decomp_p8 -Checking test 008 cpld_decomp_p8 results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -0:The total amount of wall time = 326.626662 -0:The maximum resident set size (KB) = 2720184 - -Test 008 cpld_decomp_p8 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_mpi_p8 -Checking test 009 cpld_mpi_p8 results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -0:The total amount of wall time = 280.797767 -0:The maximum resident set size (KB) = 2680248 - -Test 009 cpld_mpi_p8 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_ciceC_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_control_ciceC_p8 -Checking test 010 cpld_control_ciceC_p8 results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -0:The total amount of wall time = 326.237034 -0:The maximum resident set size (KB) = 2715460 - -Test 010 cpld_control_ciceC_p8 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_control_c192_p8 -Checking test 011 cpld_control_c192_p8 results .... - Comparing sfcf030.tile1.nc .........OK - Comparing sfcf030.tile2.nc .........OK - Comparing sfcf030.tile3.nc .........OK - Comparing sfcf030.tile4.nc .........OK - Comparing sfcf030.tile5.nc .........OK - Comparing sfcf030.tile6.nc .........OK - Comparing atmf030.tile1.nc .........OK - Comparing atmf030.tile2.nc .........OK - Comparing atmf030.tile3.nc .........OK - Comparing atmf030.tile4.nc .........OK - Comparing atmf030.tile5.nc .........OK - Comparing atmf030.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_1200z.nc4 .........OK - Comparing RESTART/20210323.120000.coupler.res .........OK - Comparing RESTART/20210323.120000.fv_core.res.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - Comparing 20210323.120000.out_grd.ww3 .........OK - Comparing 20210323.120000.out_pnt.ww3 .........OK - -0:The total amount of wall time = 636.580120 -0:The maximum resident set size (KB) = 3352812 - -Test 011 cpld_control_c192_p8 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_restart_c192_p8 -Checking test 012 cpld_restart_c192_p8 results .... - Comparing sfcf030.tile1.nc .........OK - Comparing sfcf030.tile2.nc .........OK - Comparing sfcf030.tile3.nc .........OK - Comparing sfcf030.tile4.nc .........OK - Comparing sfcf030.tile5.nc .........OK - Comparing sfcf030.tile6.nc .........OK - Comparing atmf030.tile1.nc .........OK - Comparing atmf030.tile2.nc .........OK - Comparing atmf030.tile3.nc .........OK - Comparing atmf030.tile4.nc .........OK - Comparing atmf030.tile5.nc .........OK - Comparing atmf030.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_1200z.nc4 .........OK - Comparing RESTART/20210323.120000.coupler.res .........OK - Comparing RESTART/20210323.120000.fv_core.res.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - Comparing 20210323.120000.out_grd.ww3 .........OK - Comparing 20210323.120000.out_pnt.ww3 .........OK - -0:The total amount of wall time = 388.553701 -0:The maximum resident set size (KB) = 3276636 - -Test 012 cpld_restart_c192_p8 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_noaero_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_control_noaero_p8 -Checking test 013 cpld_control_noaero_p8 results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -0:The total amount of wall time = 295.894239 -0:The maximum resident set size (KB) = 1435532 - -Test 013 cpld_control_noaero_p8 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_control_nowave_noaero_p8 -Checking test 014 cpld_control_nowave_noaero_p8 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 = 196.843420 -0:The maximum resident set size (KB) = 1453108 - -Test 014 cpld_control_nowave_noaero_p8 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_debug_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_debug_p8 -Checking test 015 cpld_debug_p8 results .... - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing gocart.inst_aod.20210322_0900z.nc4 .........OK - Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-32400.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK - Comparing 20210322.090000.out_pnt.ww3 .........OK - Comparing 20210322.090000.out_grd.ww3 .........OK - -0:The total amount of wall time = 351.699327 -0:The maximum resident set size (KB) = 2778712 - -Test 015 cpld_debug_p8 PASS Tries: 2 - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_debug_noaero_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_debug_noaero_p8 -Checking test 016 cpld_debug_noaero_p8 results .... - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-32400.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK - Comparing 20210322.090000.out_pnt.ww3 .........OK - Comparing 20210322.090000.out_grd.ww3 .........OK - -0:The total amount of wall time = 302.184823 -0:The maximum resident set size (KB) = 1453924 - -Test 016 cpld_debug_noaero_p8 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_noaero_p8_agrid -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_control_noaero_p8_agrid -Checking test 017 cpld_control_noaero_p8_agrid 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 = 278.779000 -0:The maximum resident set size (KB) = 1456852 - -Test 017 cpld_control_noaero_p8_agrid PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c48 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_control_c48 -Checking test 018 cpld_control_c48 results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - -0:The total amount of wall time = 606.860800 -0:The maximum resident set size (KB) = 2586392 - -Test 018 cpld_control_c48 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_warmstart_c48 -Checking test 019 cpld_warmstart_c48 results .... - Comparing sfcf006.tile1.nc .........OK - Comparing sfcf006.tile2.nc .........OK - Comparing sfcf006.tile3.nc .........OK - Comparing sfcf006.tile4.nc .........OK - Comparing sfcf006.tile5.nc .........OK - Comparing sfcf006.tile6.nc .........OK - Comparing atmf006.tile1.nc .........OK - Comparing atmf006.tile2.nc .........OK - Comparing atmf006.tile3.nc .........OK - Comparing atmf006.tile4.nc .........OK - Comparing atmf006.tile5.nc .........OK - Comparing atmf006.tile6.nc .........OK - Comparing RESTART/20210323.120000.coupler.res .........OK - Comparing RESTART/20210323.120000.fv_core.res.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - -0:The total amount of wall time = 165.249660 -0:The maximum resident set size (KB) = 2601676 - -Test 019 cpld_warmstart_c48 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_restart_c48 -Checking test 020 cpld_restart_c48 results .... - Comparing sfcf006.tile1.nc .........OK - Comparing sfcf006.tile2.nc .........OK - Comparing sfcf006.tile3.nc .........OK - Comparing sfcf006.tile4.nc .........OK - Comparing sfcf006.tile5.nc .........OK - Comparing sfcf006.tile6.nc .........OK - Comparing atmf006.tile1.nc .........OK - Comparing atmf006.tile2.nc .........OK - Comparing atmf006.tile3.nc .........OK - Comparing atmf006.tile4.nc .........OK - Comparing atmf006.tile5.nc .........OK - Comparing atmf006.tile6.nc .........OK - Comparing RESTART/20210323.120000.coupler.res .........OK - Comparing RESTART/20210323.120000.fv_core.res.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - -0:The total amount of wall time = 84.682398 -0:The maximum resident set size (KB) = 2018848 - -Test 020 cpld_restart_c48 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_CubedSphereGrid -Checking test 021 control_CubedSphereGrid results .... - Comparing sfcf000.tile1.nc .........OK - Comparing sfcf000.tile2.nc .........OK - Comparing sfcf000.tile3.nc .........OK - Comparing sfcf000.tile4.nc .........OK - Comparing sfcf000.tile5.nc .........OK - Comparing sfcf000.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf000.tile1.nc .........OK - Comparing atmf000.tile2.nc .........OK - Comparing atmf000.tile3.nc .........OK - Comparing atmf000.tile4.nc .........OK - Comparing atmf000.tile5.nc .........OK - Comparing atmf000.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - -0:The total amount of wall time = 142.357770 -0:The maximum resident set size (KB) = 454412 - -Test 021 control_CubedSphereGrid PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid_parallel -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_CubedSphereGrid_parallel -Checking test 022 control_CubedSphereGrid_parallel results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK - -0:The total amount of wall time = 140.270029 -0:The maximum resident set size (KB) = 454272 - -Test 022 control_CubedSphereGrid_parallel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_latlon -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_latlon -Checking test 023 control_latlon results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -0:The total amount of wall time = 148.352084 -0:The maximum resident set size (KB) = 454344 - -Test 023 control_latlon PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wrtGauss_netcdf_parallel -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_wrtGauss_netcdf_parallel -Checking test 024 control_wrtGauss_netcdf_parallel results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -0:The total amount of wall time = 150.000772 -0:The maximum resident set size (KB) = 454348 - -Test 024 control_wrtGauss_netcdf_parallel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c48 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_c48 -Checking test 025 control_c48 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 447.470574 -0:The maximum resident set size (KB) = 633508 - -Test 025 control_c48 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c192 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_c192 -Checking test 026 control_c192 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -0:The total amount of wall time = 596.749778 -0:The maximum resident set size (KB) = 560248 - -Test 026 control_c192 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c384 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_c384 -Checking test 027 control_c384 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK - -0:The total amount of wall time = 590.272811 -0:The maximum resident set size (KB) = 902584 - -Test 027 control_c384 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c384gdas -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_c384gdas -Checking test 028 control_c384gdas results .... - Comparing sfcf000.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf006.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF06 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF06 .........OK - Comparing RESTART/20210322.060000.coupler.res .........OK - Comparing RESTART/20210322.060000.fv_core.res.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 525.948979 -0:The maximum resident set size (KB) = 1027116 - -Test 028 control_c384gdas PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_stochy -Checking test 029 control_stochy results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK - -0:The total amount of wall time = 98.211706 -0:The maximum resident set size (KB) = 459220 - -Test 029 control_stochy PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_stochy_restart -Checking test 030 control_stochy_restart results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - -0:The total amount of wall time = 53.437383 -0:The maximum resident set size (KB) = 226704 - -Test 030 control_stochy_restart PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_lndp -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_lndp -Checking test 031 control_lndp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK - -0:The total amount of wall time = 90.843569 -0:The maximum resident set size (KB) = 458280 - -Test 031 control_lndp PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_iovr4 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_iovr4 -Checking test 032 control_iovr4 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - -0:The total amount of wall time = 148.875263 -0:The maximum resident set size (KB) = 454416 - -Test 032 control_iovr4 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_iovr5 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_iovr5 -Checking test 033 control_iovr5 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - -0:The total amount of wall time = 148.723548 -0:The maximum resident set size (KB) = 454288 - -Test 033 control_iovr5 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_p8 -Checking test 034 control_p8 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 184.886156 -0:The maximum resident set size (KB) = 1423940 - -Test 034 control_p8 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_restart_p8 -Checking test 035 control_restart_p8 results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 96.956799 -0:The maximum resident set size (KB) = 583176 - -Test 035 control_restart_p8 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_qr_p8 -Checking test 036 control_qr_p8 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -0:The total amount of wall time = 182.303264 -0:The maximum resident set size (KB) = 1427236 - -Test 036 control_qr_p8 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_restart_qr_p8 -Checking test 037 control_restart_qr_p8 results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -0:The total amount of wall time = 99.138111 -0:The maximum resident set size (KB) = 596908 - -Test 037 control_restart_qr_p8 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_decomp_p8 -Checking test 038 control_decomp_p8 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 190.798621 -0:The maximum resident set size (KB) = 1418764 - -Test 038 control_decomp_p8 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_2threads_p8 -Checking test 039 control_2threads_p8 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 173.993645 -0:The maximum resident set size (KB) = 1510432 - -Test 039 control_2threads_p8 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_lndp -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_p8_lndp -Checking test 040 control_p8_lndp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing sfcf048.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing atmf048.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSFLX.GrbF48 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing GFSPRS.GrbF48 .........OK - -0:The total amount of wall time = 338.425811 -0:The maximum resident set size (KB) = 1424948 - -Test 040 control_p8_lndp PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_rrtmgp -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_p8_rrtmgp -Checking test 041 control_p8_rrtmgp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.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 = 258.756869 -0:The maximum resident set size (KB) = 1480300 - -Test 041 control_p8_rrtmgp PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_mynn -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_p8_mynn -Checking test 042 control_p8_mynn results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 187.198473 -0:The maximum resident set size (KB) = 1427956 - -Test 042 control_p8_mynn PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/merra2_thompson -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/merra2_thompson -Checking test 043 merra2_thompson results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 209.432933 -0:The maximum resident set size (KB) = 1429696 - -Test 043 merra2_thompson PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_control -Checking test 044 regional_control results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - -0:The total amount of wall time = 345.645007 -0:The maximum resident set size (KB) = 604808 - -Test 044 regional_control PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_restart -Checking test 045 regional_restart results .... - Comparing dynf006.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF06 .........OK - -0:The total amount of wall time = 170.776429 -0:The maximum resident set size (KB) = 594212 - -Test 045 regional_restart PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_control_qr -Checking test 046 regional_control_qr results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - -0:The total amount of wall time = 346.584383 -0:The maximum resident set size (KB) = 604832 - -Test 046 regional_control_qr PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_restart_qr -Checking test 047 regional_restart_qr results .... - Comparing dynf006.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF06 .........OK - -0:The total amount of wall time = 177.857864 -0:The maximum resident set size (KB) = 594208 - -Test 047 regional_restart_qr PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_decomp -Checking test 048 regional_decomp results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - -0:The total amount of wall time = 361.479547 -0:The maximum resident set size (KB) = 598916 - -Test 048 regional_decomp PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_2threads -Checking test 049 regional_2threads results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - -0:The total amount of wall time = 205.169488 -0:The maximum resident set size (KB) = 611504 - -Test 049 regional_2threads PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_noquilt -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_noquilt -Checking test 050 regional_noquilt results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK - Comparing RESTART/fv_core.res.tile1_new.nc .........OK - Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - -0:The total amount of wall time = 364.785237 -0:The maximum resident set size (KB) = 599052 - -Test 050 regional_noquilt PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_netcdf_parallel -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_netcdf_parallel -Checking test 051 regional_netcdf_parallel results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK - -0:The total amount of wall time = 338.888919 -0:The maximum resident set size (KB) = 596728 - -Test 051 regional_netcdf_parallel PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_2dwrtdecomp -Checking test 052 regional_2dwrtdecomp results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - -0:The total amount of wall time = 346.737229 -0:The maximum resident set size (KB) = 604824 - -Test 052 regional_2dwrtdecomp PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/fv3_regional_wofs -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_wofs -Checking test 053 regional_wofs results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - -0:The total amount of wall time = 429.869366 -0:The maximum resident set size (KB) = 275828 - -Test 053 regional_wofs PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_control -Checking test 054 rap_control results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 476.057633 -0:The maximum resident set size (KB) = 823364 - -Test 054 rap_control PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_spp_sppt_shum_skeb -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_spp_sppt_shum_skeb -Checking test 055 regional_spp_sppt_shum_skeb results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF01 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF01 .........OK - -0:The total amount of wall time = 262.213664 -0:The maximum resident set size (KB) = 952080 - -Test 055 regional_spp_sppt_shum_skeb PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_decomp -Checking test 056 rap_decomp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 506.633123 -0:The maximum resident set size (KB) = 822220 - -Test 056 rap_decomp PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_2threads -Checking test 057 rap_2threads results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 461.546221 -0:The maximum resident set size (KB) = 893584 - -Test 057 rap_2threads PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_restart -Checking test 058 rap_restart results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 244.002679 -0:The maximum resident set size (KB) = 571484 - -Test 058 rap_restart PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_sfcdiff -Checking test 059 rap_sfcdiff results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 482.582957 -0:The maximum resident set size (KB) = 823424 - -Test 059 rap_sfcdiff PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_sfcdiff_decomp -Checking test 060 rap_sfcdiff_decomp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 507.450761 -0:The maximum resident set size (KB) = 822240 - -Test 060 rap_sfcdiff_decomp PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_sfcdiff_restart -Checking test 061 rap_sfcdiff_restart results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 360.950337 -0:The maximum resident set size (KB) = 570544 - -Test 061 rap_sfcdiff_restart PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hrrr_control -Checking test 062 hrrr_control results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 466.603670 -0:The maximum resident set size (KB) = 820848 - -Test 062 hrrr_control PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hrrr_control_decomp -Checking test 063 hrrr_control_decomp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 488.455334 -0:The maximum resident set size (KB) = 820848 - -Test 063 hrrr_control_decomp PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hrrr_control_2threads -Checking test 064 hrrr_control_2threads results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 442.141825 -0:The maximum resident set size (KB) = 888488 - -Test 064 hrrr_control_2threads PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hrrr_control_restart -Checking test 065 hrrr_control_restart results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 344.086012 -0:The maximum resident set size (KB) = 566352 - -Test 065 hrrr_control_restart PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1beta -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rrfs_v1beta -Checking test 066 rrfs_v1beta results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 476.729680 -0:The maximum resident set size (KB) = 819452 - -Test 066 rrfs_v1beta PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1nssl -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rrfs_v1nssl -Checking test 067 rrfs_v1nssl results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - -0:The total amount of wall time = 587.560475 -0:The maximum resident set size (KB) = 508704 - -Test 067 rrfs_v1nssl PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rrfs_v1nssl_nohailnoccn -Checking test 068 rrfs_v1nssl_nohailnoccn results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - -0:The total amount of wall time = 565.648225 -0:The maximum resident set size (KB) = 502516 - -Test 068 rrfs_v1nssl_nohailnoccn PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rrfs_smoke_conus13km_hrrr_warm -Checking test 069 rrfs_smoke_conus13km_hrrr_warm 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 - -0:The total amount of wall time = 155.222855 -0:The maximum resident set size (KB) = 675236 - -Test 069 rrfs_smoke_conus13km_hrrr_warm PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rrfs_smoke_conus13km_hrrr_warm_2threads -Checking test 070 rrfs_smoke_conus13km_hrrr_warm_2threads 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 - -0:The total amount of wall time = 95.558075 -0:The maximum resident set size (KB) = 693964 - -Test 070 rrfs_smoke_conus13km_hrrr_warm_2threads PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rrfs_conus13km_hrrr_warm -Checking test 071 rrfs_conus13km_hrrr_warm 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 - -0:The total amount of wall time = 135.446161 -0:The maximum resident set size (KB) = 654004 - -Test 071 rrfs_conus13km_hrrr_warm PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rrfs_smoke_conus13km_radar_tten_warm -Checking test 072 rrfs_smoke_conus13km_radar_tten_warm 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 - -0:The total amount of wall time = 156.980562 -0:The maximum resident set size (KB) = 677892 - -Test 072 rrfs_smoke_conus13km_radar_tten_warm PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rrfs_conus13km_hrrr_warm_restart_mismatch -Checking test 073 rrfs_conus13km_hrrr_warm_restart_mismatch results .... - Comparing sfcf002.nc .........OK - Comparing atmf002.nc .........OK - -0:The total amount of wall time = 71.902954 -0:The maximum resident set size (KB) = 632128 - -Test 073 rrfs_conus13km_hrrr_warm_restart_mismatch PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmg -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_csawmg -Checking test 074 control_csawmg results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -0:The total amount of wall time = 398.825305 -0:The maximum resident set size (KB) = 527700 - -Test 074 control_csawmg PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmgt -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_csawmgt -Checking test 075 control_csawmgt results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -0:The total amount of wall time = 396.293106 -0:The maximum resident set size (KB) = 528372 - -Test 075 control_csawmgt PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_ras -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_ras -Checking test 076 control_ras results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -0:The total amount of wall time = 209.019942 -0:The maximum resident set size (KB) = 491216 - -Test 076 control_ras PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wam -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_wam -Checking test 077 control_wam results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - -0:The total amount of wall time = 130.339794 -0:The maximum resident set size (KB) = 206284 - -Test 077 control_wam PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_faster -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_p8_faster -Checking test 078 control_p8_faster results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 173.370956 -0:The maximum resident set size (KB) = 1423728 - -Test 078 control_p8_faster PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control_faster -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_control_faster -Checking test 079 regional_control_faster results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - -0:The total amount of wall time = 327.839386 -0:The maximum resident set size (KB) = 604604 - -Test 079 regional_control_faster PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rrfs_smoke_conus13km_hrrr_warm_debug -Checking test 080 rrfs_smoke_conus13km_hrrr_warm_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 873.958124 -0:The maximum resident set size (KB) = 703832 - -Test 080 rrfs_smoke_conus13km_hrrr_warm_debug PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rrfs_smoke_conus13km_hrrr_warm_debug_2threads -Checking test 081 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 497.351031 -0:The maximum resident set size (KB) = 725300 - -Test 081 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rrfs_conus13km_hrrr_warm_debug -Checking test 082 rrfs_conus13km_hrrr_warm_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 779.758074 -0:The maximum resident set size (KB) = 682884 - -Test 082 rrfs_conus13km_hrrr_warm_debug PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_CubedSphereGrid_debug -Checking test 083 control_CubedSphereGrid_debug results .... - Comparing sfcf000.tile1.nc .........OK - Comparing sfcf000.tile2.nc .........OK - Comparing sfcf000.tile3.nc .........OK - Comparing sfcf000.tile4.nc .........OK - Comparing sfcf000.tile5.nc .........OK - Comparing sfcf000.tile6.nc .........OK - Comparing sfcf001.tile1.nc .........OK - Comparing sfcf001.tile2.nc .........OK - Comparing sfcf001.tile3.nc .........OK - Comparing sfcf001.tile4.nc .........OK - Comparing sfcf001.tile5.nc .........OK - Comparing sfcf001.tile6.nc .........OK - Comparing atmf000.tile1.nc .........OK - Comparing atmf000.tile2.nc .........OK - Comparing atmf000.tile3.nc .........OK - Comparing atmf000.tile4.nc .........OK - Comparing atmf000.tile5.nc .........OK - Comparing atmf000.tile6.nc .........OK - Comparing atmf001.tile1.nc .........OK - Comparing atmf001.tile2.nc .........OK - Comparing atmf001.tile3.nc .........OK - Comparing atmf001.tile4.nc .........OK - Comparing atmf001.tile5.nc .........OK - Comparing atmf001.tile6.nc .........OK - -0:The total amount of wall time = 155.705236 -0:The maximum resident set size (KB) = 617584 - -Test 083 control_CubedSphereGrid_debug PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_wrtGauss_netcdf_parallel_debug -Checking test 084 control_wrtGauss_netcdf_parallel_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 157.345775 -0:The maximum resident set size (KB) = 615524 - -Test 084 control_wrtGauss_netcdf_parallel_debug PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_stochy_debug -Checking test 085 control_stochy_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 175.707591 -0:The maximum resident set size (KB) = 621172 - -Test 085 control_stochy_debug PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_lndp_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_lndp_debug -Checking test 086 control_lndp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 167.546108 -0:The maximum resident set size (KB) = 620028 - -Test 086 control_lndp_debug PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmg_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_csawmg_debug -Checking test 087 control_csawmg_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 249.229441 -0:The maximum resident set size (KB) = 666408 - -Test 087 control_csawmg_debug PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmgt_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_csawmgt_debug -Checking test 088 control_csawmgt_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 245.216343 -0:The maximum resident set size (KB) = 667396 - -Test 088 control_csawmgt_debug PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_ras_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_ras_debug -Checking test 089 control_ras_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 161.219816 -0:The maximum resident set size (KB) = 630452 - -Test 089 control_ras_debug PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_diag_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_diag_debug -Checking test 090 control_diag_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 160.454000 -0:The maximum resident set size (KB) = 674936 - -Test 090 control_diag_debug PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_debug_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_debug_p8 -Checking test 091 control_debug_p8 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 175.846871 -0:The maximum resident set size (KB) = 1442392 - -Test 091 control_debug_p8 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_debug -Checking test 092 regional_debug results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - -0:The total amount of wall time = 1038.893894 -0:The maximum resident set size (KB) = 625264 - -Test 092 regional_debug PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_control_debug -Checking test 093 rap_control_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 287.544591 -0:The maximum resident set size (KB) = 986676 - -Test 093 rap_control_debug PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hrrr_control_debug -Checking test 094 hrrr_control_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 282.380766 -0:The maximum resident set size (KB) = 984240 - -Test 094 hrrr_control_debug PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_unified_drag_suite_debug -Checking test 095 rap_unified_drag_suite_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 286.901845 -0:The maximum resident set size (KB) = 986636 - -Test 095 rap_unified_drag_suite_debug PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_diag_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_diag_debug -Checking test 096 rap_diag_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 298.537588 -0:The maximum resident set size (KB) = 1069996 - -Test 096 rap_diag_debug PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_cires_ugwp_debug -Checking test 097 rap_cires_ugwp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 292.691711 -0:The maximum resident set size (KB) = 985896 - -Test 097 rap_cires_ugwp_debug PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_unified_ugwp_debug -Checking test 098 rap_unified_ugwp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 292.833698 -0:The maximum resident set size (KB) = 986736 - -Test 098 rap_unified_ugwp_debug PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_lndp_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_lndp_debug -Checking test 099 rap_lndp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 288.859725 -0:The maximum resident set size (KB) = 987288 - -Test 099 rap_lndp_debug PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_flake_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_flake_debug -Checking test 100 rap_flake_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 286.913373 -0:The maximum resident set size (KB) = 986672 - -Test 100 rap_flake_debug PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_progcld_thompson_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_progcld_thompson_debug -Checking test 101 rap_progcld_thompson_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 286.536893 -0:The maximum resident set size (KB) = 986688 - -Test 101 rap_progcld_thompson_debug PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_noah_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_noah_debug -Checking test 102 rap_noah_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 297.647128 -0:The maximum resident set size (KB) = 984640 - -Test 102 rap_noah_debug PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_sfcdiff_debug -Checking test 103 rap_sfcdiff_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 288.596968 -0:The maximum resident set size (KB) = 986568 - -Test 103 rap_sfcdiff_debug PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 104 rap_noah_sfcdiff_cires_ugwp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 581.022047 -0:The maximum resident set size (KB) = 985188 - -Test 104 rap_noah_sfcdiff_cires_ugwp_debug PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1beta_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rrfs_v1beta_debug -Checking test 105 rrfs_v1beta_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 285.265867 -0:The maximum resident set size (KB) = 983392 - -Test 105 rrfs_v1beta_debug PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wam_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_wam_debug -Checking test 106 control_wam_debug results .... - Comparing sfcf019.nc .........OK - Comparing atmf019.nc .........OK - -0:The total amount of wall time = 290.837122 -0:The maximum resident set size (KB) = 235304 - -Test 106 control_wam_debug PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_spp_sppt_shum_skeb_dyn32_phy32 -Checking test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF01 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF01 .........OK - -0:The total amount of wall time = 248.192314 -0:The maximum resident set size (KB) = 851296 - -Test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_control_dyn32_phy32 -Checking test 108 rap_control_dyn32_phy32 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 404.180404 -0:The maximum resident set size (KB) = 707964 - -Test 108 rap_control_dyn32_phy32 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hrrr_control_dyn32_phy32 -Checking test 109 hrrr_control_dyn32_phy32 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 = 210.697131 -0:The maximum resident set size (KB) = 706508 - -Test 109 hrrr_control_dyn32_phy32 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_2threads_dyn32_phy32 -Checking test 110 rap_2threads_dyn32_phy32 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 390.548730 -0:The maximum resident set size (KB) = 759508 - -Test 110 rap_2threads_dyn32_phy32 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hrrr_control_2threads_dyn32_phy32 -Checking test 111 hrrr_control_2threads_dyn32_phy32 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 = 200.770576 -0:The maximum resident set size (KB) = 756388 - -Test 111 hrrr_control_2threads_dyn32_phy32 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hrrr_control_decomp_dyn32_phy32 -Checking test 112 hrrr_control_decomp_dyn32_phy32 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 = 219.220429 -0:The maximum resident set size (KB) = 704308 - -Test 112 hrrr_control_decomp_dyn32_phy32 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_restart_dyn32_phy32 -Checking test 113 rap_restart_dyn32_phy32 results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 298.960030 -0:The maximum resident set size (KB) = 544696 - -Test 113 rap_restart_dyn32_phy32 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hrrr_control_restart_dyn32_phy32 -Checking test 114 hrrr_control_restart_dyn32_phy32 results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........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 = 230.804297 -0:The maximum resident set size (KB) = 536892 - -Test 114 hrrr_control_restart_dyn32_phy32 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn64_phy32 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_control_dyn64_phy32 -Checking test 115 rap_control_dyn64_phy32 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 = 274.277225 -0:The maximum resident set size (KB) = 730884 - -Test 115 rap_control_dyn64_phy32 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_control_debug_dyn32_phy32 -Checking test 116 rap_control_debug_dyn32_phy32 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 284.092107 -0:The maximum resident set size (KB) = 872876 - -Test 116 rap_control_debug_dyn32_phy32 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hrrr_control_debug_dyn32_phy32 -Checking test 117 hrrr_control_debug_dyn32_phy32 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 280.807695 -0:The maximum resident set size (KB) = 871116 - -Test 117 hrrr_control_debug_dyn32_phy32 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_control_dyn64_phy32_debug -Checking test 118 rap_control_dyn64_phy32_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 288.275408 -0:The maximum resident set size (KB) = 890092 - -Test 118 rap_control_dyn64_phy32_debug PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_atm -Checking test 119 hafs_regional_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing HURPRS.GrbF06 .........OK - -0:The total amount of wall time = 263.337718 -0:The maximum resident set size (KB) = 741796 - -Test 119 hafs_regional_atm PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_atm_thompson_gfdlsf -Checking test 120 hafs_regional_atm_thompson_gfdlsf results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - -0:The total amount of wall time = 291.218797 -0:The maximum resident set size (KB) = 1099660 - -Test 120 hafs_regional_atm_thompson_gfdlsf PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_ocn -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_atm_ocn -Checking test 121 hafs_regional_atm_ocn results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing archv.2019_241_06.a .........OK - Comparing archs.2019_241_06.a .........OK - Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - -0:The total amount of wall time = 459.257499 -0:The maximum resident set size (KB) = 740560 - -Test 121 hafs_regional_atm_ocn PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_wav -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_atm_wav -Checking test 122 hafs_regional_atm_wav results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing 20190829.060000.out_grd.ww3 .........OK - Comparing 20190829.060000.out_pnt.ww3 .........OK - Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - -0:The total amount of wall time = 1028.036737 -0:The maximum resident set size (KB) = 768168 - -Test 122 hafs_regional_atm_wav PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_ocn_wav -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_atm_ocn_wav -Checking test 123 hafs_regional_atm_ocn_wav results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing archv.2019_241_06.a .........OK - Comparing archs.2019_241_06.a .........OK - Comparing 20190829.060000.out_grd.ww3 .........OK - Comparing 20190829.060000.out_pnt.ww3 .........OK - Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - -0:The total amount of wall time = 1143.844600 -0:The maximum resident set size (KB) = 792436 - -Test 123 hafs_regional_atm_ocn_wav PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_1nest_atm -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_1nest_atm -Checking test 124 hafs_regional_1nest_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - -0:The total amount of wall time = 376.961886 -0:The maximum resident set size (KB) = 300192 - -Test 124 hafs_regional_1nest_atm PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_telescopic_2nests_atm -Checking test 125 hafs_regional_telescopic_2nests_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest03.f006.nc .........OK - -0:The total amount of wall time = 428.291238 -0:The maximum resident set size (KB) = 320464 - -Test 125 hafs_regional_telescopic_2nests_atm PASS Tries: 2 - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_1nest_atm -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_global_1nest_atm -Checking test 126 hafs_global_1nest_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - -0:The total amount of wall time = 175.049290 -0:The maximum resident set size (KB) = 214512 - -Test 126 hafs_global_1nest_atm PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_multiple_4nests_atm -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_global_multiple_4nests_atm -Checking test 127 hafs_global_multiple_4nests_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest03.f006.nc .........OK - Comparing atm.nest04.f006.nc .........OK - Comparing sfc.nest04.f006.nc .........OK - Comparing atm.nest05.f006.nc .........OK - Comparing sfc.nest05.f006.nc .........OK - Comparing HURPRS.GrbF06 .........OK - Comparing HURPRS.GrbF06.nest02 .........OK - Comparing HURPRS.GrbF06.nest03 .........OK - Comparing HURPRS.GrbF06.nest04 .........OK - Comparing HURPRS.GrbF06.nest05 .........OK - -0:The total amount of wall time = 485.414990 -0:The maximum resident set size (KB) = 302640 - -Test 127 hafs_global_multiple_4nests_atm PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_specified_moving_1nest_atm -Checking test 128 hafs_regional_specified_moving_1nest_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing HURPRS.GrbF06 .........OK - Comparing HURPRS.GrbF06.nest02 .........OK - -0:The total amount of wall time = 249.288476 -0:The maximum resident set size (KB) = 317396 - -Test 128 hafs_regional_specified_moving_1nest_atm PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_storm_following_1nest_atm -Checking test 129 hafs_regional_storm_following_1nest_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - -0:The total amount of wall time = 229.504894 -0:The maximum resident set size (KB) = 317972 - -Test 129 hafs_regional_storm_following_1nest_atm PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_storm_following_1nest_atm_ocn -Checking test 130 hafs_regional_storm_following_1nest_atm_ocn results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing archv.2020_238_18.a .........OK - Comparing archs.2020_238_18.a .........OK - -0:The total amount of wall time = 300.472312 -0:The maximum resident set size (KB) = 376048 - -Test 130 hafs_regional_storm_following_1nest_atm_ocn PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_storm_following_1nest_atm -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_global_storm_following_1nest_atm -Checking test 131 hafs_global_storm_following_1nest_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - -0:The total amount of wall time = 67.161907 -0:The maximum resident set size (KB) = 233180 - -Test 131 hafs_global_storm_following_1nest_atm PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_storm_following_1nest_atm_ocn_debug -Checking test 132 hafs_regional_storm_following_1nest_atm_ocn_debug results .... - Comparing atmf001.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atm.nest02.f001.nc .........OK - Comparing sfc.nest02.f001.nc .........OK - -0:The total amount of wall time = 766.907498 -0:The maximum resident set size (KB) = 402892 - -Test 132 hafs_regional_storm_following_1nest_atm_ocn_debug PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_storm_following_1nest_atm_ocn_wav -Checking test 133 hafs_regional_storm_following_1nest_atm_ocn_wav results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing archv.2020_238_18.a .........OK - Comparing archs.2020_238_18.a .........OK - Comparing 20200825.180000.out_grd.ww3 .........OK - Comparing 20200825.180000.out_pnt.ww3 .........OK - -0:The total amount of wall time = 724.022212 -0:The maximum resident set size (KB) = 427020 - -Test 133 hafs_regional_storm_following_1nest_atm_ocn_wav PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_docn -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_docn -Checking test 134 hafs_regional_docn results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - -0:The total amount of wall time = 405.888203 -0:The maximum resident set size (KB) = 755532 - -Test 134 hafs_regional_docn PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_docn_oisst -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_docn_oisst -Checking test 135 hafs_regional_docn_oisst results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - -0:The total amount of wall time = 399.660057 -0:The maximum resident set size (KB) = 734800 - -Test 135 hafs_regional_docn_oisst PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_datm_cdeps -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_datm_cdeps -Checking test 136 hafs_regional_datm_cdeps results .... - Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK - Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK - Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - -0:The total amount of wall time = 1272.203095 -0:The maximum resident set size (KB) = 887888 - -Test 136 hafs_regional_datm_cdeps PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_control_cfsr -Checking test 137 datm_cdeps_control_cfsr results .... - Comparing RESTART/20111002.000000.MOM.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 = 168.375777 -0:The maximum resident set size (KB) = 716692 - -Test 137 datm_cdeps_control_cfsr PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_restart_cfsr -Checking test 138 datm_cdeps_restart_cfsr results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - -0:The total amount of wall time = 100.451768 -0:The maximum resident set size (KB) = 715916 - -Test 138 datm_cdeps_restart_cfsr PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_gefs -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_control_gefs -Checking test 139 datm_cdeps_control_gefs 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 = 162.952423 -0:The maximum resident set size (KB) = 607484 - -Test 139 datm_cdeps_control_gefs PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_iau_gefs -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_iau_gefs -Checking test 140 datm_cdeps_iau_gefs 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 = 163.800197 -0:The maximum resident set size (KB) = 607444 - -Test 140 datm_cdeps_iau_gefs PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_stochy_gefs -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_stochy_gefs -Checking test 141 datm_cdeps_stochy_gefs 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 = 163.599324 -0:The maximum resident set size (KB) = 607500 - -Test 141 datm_cdeps_stochy_gefs PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_ciceC_cfsr -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_ciceC_cfsr -Checking test 142 datm_cdeps_ciceC_cfsr results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - -0:The total amount of wall time = 167.851939 -0:The maximum resident set size (KB) = 716692 - -Test 142 datm_cdeps_ciceC_cfsr PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_bulk_cfsr -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_bulk_cfsr -Checking test 143 datm_cdeps_bulk_cfsr results .... - Comparing RESTART/20111002.000000.MOM.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 = 177.420459 -0:The maximum resident set size (KB) = 716700 - -Test 143 datm_cdeps_bulk_cfsr PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_bulk_gefs -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_bulk_gefs -Checking test 144 datm_cdeps_bulk_gefs 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 = 154.810043 -0:The maximum resident set size (KB) = 607416 - -Test 144 datm_cdeps_bulk_gefs PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_mx025_cfsr -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_mx025_cfsr -Checking test 145 datm_cdeps_mx025_cfsr results .... - Comparing RESTART/20111001.120000.MOM.res.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK - Comparing RESTART/iced.2011-10-01-43200.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - -0:The total amount of wall time = 432.039969 -0:The maximum resident set size (KB) = 514328 - -Test 145 datm_cdeps_mx025_cfsr PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_mx025_gefs -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_mx025_gefs -Checking test 146 datm_cdeps_mx025_gefs results .... - Comparing RESTART/20111001.120000.MOM.res.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK - Comparing RESTART/iced.2011-10-01-43200.nc .........OK - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - -0:The total amount of wall time = 420.306111 -0:The maximum resident set size (KB) = 494736 - -Test 146 datm_cdeps_mx025_gefs PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_multiple_files_cfsr -Checking test 147 datm_cdeps_multiple_files_cfsr results .... - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - -0:The total amount of wall time = 166.376409 -0:The maximum resident set size (KB) = 717068 - -Test 147 datm_cdeps_multiple_files_cfsr PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_3072x1536_cfsr -Checking test 148 datm_cdeps_3072x1536_cfsr 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 = 268.021302 -0:The maximum resident set size (KB) = 1942028 - -Test 148 datm_cdeps_3072x1536_cfsr PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_gfs -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_gfs -Checking test 149 datm_cdeps_gfs 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 = 268.804073 -0:The maximum resident set size (KB) = 1942004 - -Test 149 datm_cdeps_gfs PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_debug_cfsr -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_debug_cfsr -Checking test 150 datm_cdeps_debug_cfsr 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 = 369.027478 -0:The maximum resident set size (KB) = 700640 - -Test 150 datm_cdeps_debug_cfsr PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr_faster -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_control_cfsr_faster -Checking test 151 datm_cdeps_control_cfsr_faster results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - -0:The total amount of wall time = 169.297973 -0:The maximum resident set size (KB) = 728684 - -Test 151 datm_cdeps_control_cfsr_faster PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_lnd_gswp3 -Checking test 152 datm_cdeps_lnd_gswp3 results .... - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - -0:The total amount of wall time = 11.216235 -0:The maximum resident set size (KB) = 208244 - -Test 152 datm_cdeps_lnd_gswp3 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_lnd_gswp3_rst -Checking test 153 datm_cdeps_lnd_gswp3_rst results .... - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - -0:The total amount of wall time = 15.821305 -0:The maximum resident set size (KB) = 208232 - -Test 153 datm_cdeps_lnd_gswp3_rst PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_atmlnd_sbs -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_p8_atmlnd_sbs -Checking test 154 control_p8_atmlnd_sbs results .... - Comparing sfcf000.tile1.nc .........OK - Comparing sfcf000.tile2.nc .........OK - Comparing sfcf000.tile3.nc .........OK - Comparing sfcf000.tile4.nc .........OK - Comparing sfcf000.tile5.nc .........OK - Comparing sfcf000.tile6.nc .........OK - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf000.tile1.nc .........OK - Comparing atmf000.tile2.nc .........OK - Comparing atmf000.tile3.nc .........OK - Comparing atmf000.tile4.nc .........OK - Comparing atmf000.tile5.nc .........OK - Comparing atmf000.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing ufs.cpld.cpl.hi.lnd.2021-03-22-43200.nc .........OK - Comparing ufs.cpld.cpl.hi.lnd.2021-03-23-21600.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile6.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - -0:The total amount of wall time = 236.712703 -0:The maximum resident set size (KB) = 1462932 - -Test 154 control_p8_atmlnd_sbs PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/atmwav_control_noaero_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/atmwav_control_noaero_p8 -Checking test 155 atmwav_control_noaero_p8 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - Comparing RESTART/ufs.atmw.cpl.r.2021-03-22-64800.nc .........OK - Comparing 20210322.180000.out_pnt.ww3 .........OK - Comparing 20210322.180000.out_grd.ww3 .........OK - Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - -0:The total amount of wall time = 103.280325 -0:The maximum resident set size (KB) = 1434340 - -Test 155 atmwav_control_noaero_p8 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_atmwav -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_atmwav -Checking test 156 control_atmwav results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - Comparing 20210322.180000.restart.glo_1deg .........OK - -0:The total amount of wall time = 102.909689 -0:The maximum resident set size (KB) = 474692 - -Test 156 control_atmwav PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/atmaero_control_p8 -Checking test 157 atmaero_control_p8 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 = 252.567753 -0:The maximum resident set size (KB) = 2704052 - -Test 157 atmaero_control_p8 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8_rad -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/atmaero_control_p8_rad -Checking test 158 atmaero_control_p8_rad 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 = 309.250990 -0:The maximum resident set size (KB) = 2758208 - -Test 158 atmaero_control_p8_rad PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8_rad_micro -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/atmaero_control_p8_rad_micro -Checking test 159 atmaero_control_p8_rad_micro results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - 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 = 309.759897 -0:The maximum resident set size (KB) = 2764556 - -Test 159 atmaero_control_p8_rad_micro PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_atmaq -Checking test 160 regional_atmaq results .... - Comparing sfcf000.nc .........OK - Comparing sfcf003.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf003.nc .........OK - Comparing atmf006.nc .........OK - Comparing RESTART/20190801.180000.coupler.res .........OK - Comparing RESTART/20190801.180000.fv_core.res.nc .........OK - Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.phy_data.nc .........OK - Comparing RESTART/20190801.180000.sfc_data.nc .........OK - -0:The total amount of wall time = 751.258022 -0:The maximum resident set size (KB) = 999360 - -Test 160 regional_atmaq PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq_faster -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_atmaq_faster -Checking test 161 regional_atmaq_faster results .... - Comparing sfcf000.nc .........OK - Comparing sfcf003.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf003.nc .........OK - Comparing atmf006.nc .........OK - Comparing RESTART/20190801.180000.coupler.res .........OK - Comparing RESTART/20190801.180000.fv_core.res.nc .........OK - Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.phy_data.nc .........OK - Comparing RESTART/20190801.180000.sfc_data.nc .........OK - -0:The total amount of wall time = 699.046862 -0:The maximum resident set size (KB) = 999160 - -Test 161 regional_atmaq_faster PASS - -Wed Apr 19 09:16:44 MDT 2023 +Fri Apr 21 13:23:30 MDT 2023 Start Regression test -Test 008 compile FAIL - -Test 008 compile FAIL - -Compile 001 elapsed time 1524 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 1432 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 1405 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 478 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 422 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 1089 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 001 elapsed time 1474 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1515 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 1390 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 455 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 390 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 1071 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 1096 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 1097 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 993 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 011 elapsed time 940 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 1804 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 1075 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 969 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 011 elapsed time 932 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile 012 elapsed time 818 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 1302 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 404 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 263 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 863 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 846 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 277 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 345 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 1146 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 021 elapsed time 355 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 1573 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 1130 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 024 elapsed time 445 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 199 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 428 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 104 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 1263 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 397 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 262 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 833 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 833 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 269 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 271 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 1114 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 021 elapsed time 340 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 1580 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 1105 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 024 elapsed time 430 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 195 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 429 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 110 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile 028 elapsed time 961 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 1006 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 1009 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 910 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 902 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 033 elapsed time 325 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 034 elapsed time 1223 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 989 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 1015 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 907 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 873 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 033 elapsed time 288 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 034 elapsed time 1020 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8_mixedmode -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_control_p8_mixedmode +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -14153,14 +102,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 323.247808 -0:The maximum resident set size (KB) = 2698376 +0:The total amount of wall time = 324.519956 +0:The maximum resident set size (KB) = 2698440 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_gfsv17 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_control_gfsv17 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -14224,14 +173,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 283.218478 -0:The maximum resident set size (KB) = 1437616 +0:The total amount of wall time = 283.118296 +0:The maximum resident set size (KB) = 1437688 Test 002 cpld_control_gfsv17 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -14296,14 +245,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 325.782515 -0:The maximum resident set size (KB) = 2715216 +0:The total amount of wall time = 322.808786 +0:The maximum resident set size (KB) = 2715196 Test 003 cpld_control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_restart_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -14356,14 +305,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 191.654366 -0:The maximum resident set size (KB) = 2576416 +0:The total amount of wall time = 186.085532 +0:The maximum resident set size (KB) = 2576488 Test 004 cpld_restart_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_control_qr_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -14428,14 +377,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 333.837542 -0:The maximum resident set size (KB) = 2719236 +0:The total amount of wall time = 320.882650 +0:The maximum resident set size (KB) = 2719364 Test 005 cpld_control_qr_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_restart_qr_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -14488,14 +437,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 203.500991 -0:The maximum resident set size (KB) = 2593572 +0:The total amount of wall time = 200.080221 +0:The maximum resident set size (KB) = 2593640 Test 006 cpld_restart_qr_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_2threads_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -14548,14 +497,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 319.449605 -0:The maximum resident set size (KB) = 3178008 +0:The total amount of wall time = 250.324959 +0:The maximum resident set size (KB) = 3178164 Test 007 cpld_2threads_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_decomp_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -14608,14 +557,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 326.626662 -0:The maximum resident set size (KB) = 2720184 +0:The total amount of wall time = 321.796032 +0:The maximum resident set size (KB) = 2720236 Test 008 cpld_decomp_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_mpi_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -14668,14 +617,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 280.797767 -0:The maximum resident set size (KB) = 2680248 +0:The total amount of wall time = 278.563096 +0:The maximum resident set size (KB) = 2680208 Test 009 cpld_mpi_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_ciceC_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_control_ciceC_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -14740,14 +689,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 326.237034 -0:The maximum resident set size (KB) = 2715460 +0:The total amount of wall time = 322.504974 +0:The maximum resident set size (KB) = 2715312 Test 010 cpld_control_ciceC_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_control_c192_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_control_c192_p8 Checking test 011 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -14800,14 +749,14 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -0:The total amount of wall time = 636.580120 -0:The maximum resident set size (KB) = 3352812 +0:The total amount of wall time = 635.473410 +0:The maximum resident set size (KB) = 3351932 Test 011 cpld_control_c192_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_restart_c192_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_restart_c192_p8 Checking test 012 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -14860,14 +809,14 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -0:The total amount of wall time = 388.553701 -0:The maximum resident set size (KB) = 3276636 +0:The total amount of wall time = 386.942961 +0:The maximum resident set size (KB) = 3276112 Test 012 cpld_restart_c192_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_noaero_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_control_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_control_noaero_p8 Checking test 013 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -14931,14 +880,14 @@ Checking test 013 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 295.894239 -0:The maximum resident set size (KB) = 1435532 +0:The total amount of wall time = 287.924072 +0:The maximum resident set size (KB) = 1435696 Test 013 cpld_control_noaero_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_control_nowave_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_control_nowave_noaero_p8 Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -15000,14 +949,14 @@ Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 196.843420 -0:The maximum resident set size (KB) = 1453108 +0:The total amount of wall time = 198.067762 +0:The maximum resident set size (KB) = 1453008 Test 014 cpld_control_nowave_noaero_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_debug_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_debug_p8 Checking test 015 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -15060,14 +1009,14 @@ Checking test 015 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 351.699327 -0:The maximum resident set size (KB) = 2778712 +0:The total amount of wall time = 351.436859 +0:The maximum resident set size (KB) = 2778756 -Test 015 cpld_debug_p8 PASS Tries: 2 +Test 015 cpld_debug_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_debug_noaero_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_debug_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_debug_noaero_p8 Checking test 016 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -15119,14 +1068,14 @@ Checking test 016 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 302.184823 -0:The maximum resident set size (KB) = 1453924 +0:The total amount of wall time = 301.265299 +0:The maximum resident set size (KB) = 1454024 Test 016 cpld_debug_noaero_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_noaero_p8_agrid -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_control_noaero_p8_agrid +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_control_noaero_p8_agrid Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -15188,14 +1137,14 @@ Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 278.779000 -0:The maximum resident set size (KB) = 1456852 +0:The total amount of wall time = 251.765652 +0:The maximum resident set size (KB) = 1456912 Test 017 cpld_control_noaero_p8_agrid PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c48 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_control_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_control_c48 Checking test 018 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -15245,14 +1194,14 @@ Checking test 018 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 606.860800 -0:The maximum resident set size (KB) = 2586392 +0:The total amount of wall time = 601.613846 +0:The maximum resident set size (KB) = 2586480 Test 018 cpld_control_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_warmstart_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_warmstart_c48 Checking test 019 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -15302,14 +1251,14 @@ Checking test 019 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -0:The total amount of wall time = 165.249660 -0:The maximum resident set size (KB) = 2601676 +0:The total amount of wall time = 163.439060 +0:The maximum resident set size (KB) = 2601536 Test 019 cpld_warmstart_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/cpld_restart_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_restart_c48 Checking test 020 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -15359,14 +1308,14 @@ Checking test 020 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -0:The total amount of wall time = 84.682398 -0:The maximum resident set size (KB) = 2018848 +0:The total amount of wall time = 85.281952 +0:The maximum resident set size (KB) = 2019616 Test 020 cpld_restart_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_CubedSphereGrid +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_CubedSphereGrid Checking test 021 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -15393,28 +1342,28 @@ Checking test 021 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -0:The total amount of wall time = 142.357770 -0:The maximum resident set size (KB) = 454412 +0:The total amount of wall time = 143.325584 +0:The maximum resident set size (KB) = 454260 Test 021 control_CubedSphereGrid PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid_parallel -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_CubedSphereGrid_parallel +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_CubedSphereGrid_parallel Checking test 022 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK -0:The total amount of wall time = 140.270029 -0:The maximum resident set size (KB) = 454272 +0:The total amount of wall time = 140.253719 +0:The maximum resident set size (KB) = 454216 Test 022 control_CubedSphereGrid_parallel PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_latlon -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_latlon +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_latlon Checking test 023 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -15425,14 +1374,14 @@ Checking test 023 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 148.352084 -0:The maximum resident set size (KB) = 454344 +0:The total amount of wall time = 147.236305 +0:The maximum resident set size (KB) = 454296 Test 023 control_latlon PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wrtGauss_netcdf_parallel -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_wrtGauss_netcdf_parallel +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_wrtGauss_netcdf_parallel Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -15443,14 +1392,14 @@ Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 150.000772 -0:The maximum resident set size (KB) = 454348 +0:The total amount of wall time = 150.193007 +0:The maximum resident set size (KB) = 454288 Test 024 control_wrtGauss_netcdf_parallel PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c48 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_c48 Checking test 025 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -15489,14 +1438,14 @@ Checking test 025 control_c48 results .... Comparing 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.470574 -0:The maximum resident set size (KB) = 633508 +0:The total amount of wall time = 444.470436 +0:The maximum resident set size (KB) = 633524 Test 025 control_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c192 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_c192 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_c192 Checking test 026 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -15507,14 +1456,14 @@ Checking test 026 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 596.749778 -0:The maximum resident set size (KB) = 560248 +0:The total amount of wall time = 599.519531 +0:The maximum resident set size (KB) = 560304 Test 026 control_c192 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c384 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_c384 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_c384 Checking test 027 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -15525,14 +1474,14 @@ Checking test 027 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 590.272811 -0:The maximum resident set size (KB) = 902584 +0:The total amount of wall time = 586.513005 +0:The maximum resident set size (KB) = 899512 Test 027 control_c384 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c384gdas -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_c384gdas +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_c384gdas Checking test 028 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -15575,14 +1524,14 @@ Checking test 028 control_c384gdas 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 = 525.948979 -0:The maximum resident set size (KB) = 1027116 +0:The total amount of wall time = 517.549484 +0:The maximum resident set size (KB) = 1027252 Test 028 control_c384gdas PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_stochy +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_stochy Checking test 029 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -15593,28 +1542,28 @@ Checking test 029 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 98.211706 -0:The maximum resident set size (KB) = 459220 +0:The total amount of wall time = 98.793386 +0:The maximum resident set size (KB) = 459240 Test 029 control_stochy PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_stochy_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_stochy_restart Checking test 030 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 53.437383 -0:The maximum resident set size (KB) = 226704 +0:The total amount of wall time = 53.174056 +0:The maximum resident set size (KB) = 226480 Test 030 control_stochy_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_lndp -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_lndp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_lndp Checking test 031 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -15625,14 +1574,14 @@ Checking test 031 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 90.843569 -0:The maximum resident set size (KB) = 458280 +0:The total amount of wall time = 90.734473 +0:The maximum resident set size (KB) = 458276 Test 031 control_lndp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_iovr4 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_iovr4 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_iovr4 Checking test 032 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -15647,14 +1596,14 @@ Checking test 032 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 148.875263 -0:The maximum resident set size (KB) = 454416 +0:The total amount of wall time = 147.550293 +0:The maximum resident set size (KB) = 454228 Test 032 control_iovr4 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_iovr5 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_iovr5 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_iovr5 Checking test 033 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -15669,14 +1618,14 @@ Checking test 033 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 148.723548 -0:The maximum resident set size (KB) = 454288 +0:The total amount of wall time = 148.294688 +0:The maximum resident set size (KB) = 454220 Test 033 control_iovr5 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_p8 Checking test 034 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -15723,14 +1672,14 @@ Checking test 034 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 184.886156 -0:The maximum resident set size (KB) = 1423940 +0:The total amount of wall time = 183.019509 +0:The maximum resident set size (KB) = 1423916 Test 034 control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_restart_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_restart_p8 Checking test 035 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -15769,14 +1718,14 @@ Checking test 035 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 96.956799 -0:The maximum resident set size (KB) = 583176 +0:The total amount of wall time = 95.944739 +0:The maximum resident set size (KB) = 582868 Test 035 control_restart_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_qr_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_qr_p8 Checking test 036 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -15823,14 +1772,14 @@ Checking test 036 control_qr_p8 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 = 182.303264 -0:The maximum resident set size (KB) = 1427236 +0:The total amount of wall time = 183.529750 +0:The maximum resident set size (KB) = 1427212 Test 036 control_qr_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_restart_qr_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_restart_qr_p8 Checking test 037 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -15869,14 +1818,14 @@ Checking test 037 control_restart_qr_p8 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 = 99.138111 -0:The maximum resident set size (KB) = 596908 +0:The total amount of wall time = 97.405363 +0:The maximum resident set size (KB) = 596860 Test 037 control_restart_qr_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_decomp_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_decomp_p8 Checking test 038 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -15919,14 +1868,14 @@ Checking test 038 control_decomp_p8 results .... Comparing 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.798621 -0:The maximum resident set size (KB) = 1418764 +0:The total amount of wall time = 190.730726 +0:The maximum resident set size (KB) = 1418408 Test 038 control_decomp_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_2threads_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_2threads_p8 Checking test 039 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -15969,14 +1918,14 @@ Checking test 039 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 173.993645 -0:The maximum resident set size (KB) = 1510432 +0:The total amount of wall time = 171.118969 +0:The maximum resident set size (KB) = 1509200 Test 039 control_2threads_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_lndp -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_p8_lndp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_p8_lndp Checking test 040 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -15995,14 +1944,14 @@ Checking test 040 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -0:The total amount of wall time = 338.425811 +0:The total amount of wall time = 335.711546 0:The maximum resident set size (KB) = 1424948 Test 040 control_p8_lndp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_rrtmgp -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_p8_rrtmgp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_p8_rrtmgp Checking test 041 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -16049,14 +1998,14 @@ Checking test 041 control_p8_rrtmgp results .... Comparing 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.756869 -0:The maximum resident set size (KB) = 1480300 +0:The total amount of wall time = 255.776175 +0:The maximum resident set size (KB) = 1480304 Test 041 control_p8_rrtmgp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_mynn -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_p8_mynn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_p8_mynn Checking test 042 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -16103,14 +2052,14 @@ Checking test 042 control_p8_mynn results .... Comparing 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.198473 -0:The maximum resident set size (KB) = 1427956 +0:The total amount of wall time = 184.704349 +0:The maximum resident set size (KB) = 1427940 Test 042 control_p8_mynn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/merra2_thompson -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/merra2_thompson +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/merra2_thompson Checking test 043 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -16157,14 +2106,14 @@ Checking test 043 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 209.432933 -0:The maximum resident set size (KB) = 1429696 +0:The total amount of wall time = 201.847984 +0:The maximum resident set size (KB) = 1429724 Test 043 merra2_thompson PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/regional_control Checking test 044 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -16175,28 +2124,28 @@ Checking test 044 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 345.645007 -0:The maximum resident set size (KB) = 604808 +0:The total amount of wall time = 340.684976 +0:The maximum resident set size (KB) = 604856 Test 044 regional_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/regional_restart Checking test 045 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 170.776429 -0:The maximum resident set size (KB) = 594212 +0:The total amount of wall time = 175.307742 +0:The maximum resident set size (KB) = 594236 Test 045 regional_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_control_qr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/regional_control_qr Checking test 046 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -16207,28 +2156,28 @@ Checking test 046 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 346.584383 -0:The maximum resident set size (KB) = 604832 +0:The total amount of wall time = 341.766730 +0:The maximum resident set size (KB) = 604828 Test 046 regional_control_qr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_restart_qr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/regional_restart_qr Checking test 047 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 177.857864 -0:The maximum resident set size (KB) = 594208 +0:The total amount of wall time = 177.924105 +0:The maximum resident set size (KB) = 594172 Test 047 regional_restart_qr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_decomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/regional_decomp Checking test 048 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -16239,14 +2188,14 @@ Checking test 048 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 361.479547 -0:The maximum resident set size (KB) = 598916 +0:The total amount of wall time = 363.628035 +0:The maximum resident set size (KB) = 598888 Test 048 regional_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/regional_2threads Checking test 049 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -16257,14 +2206,14 @@ Checking test 049 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 205.169488 -0:The maximum resident set size (KB) = 611504 +0:The total amount of wall time = 204.270757 +0:The maximum resident set size (KB) = 611600 Test 049 regional_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_noquilt -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_noquilt +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/regional_noquilt Checking test 050 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -16272,28 +2221,28 @@ Checking test 050 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -0:The total amount of wall time = 364.785237 -0:The maximum resident set size (KB) = 599052 +0:The total amount of wall time = 356.822041 +0:The maximum resident set size (KB) = 599032 Test 050 regional_noquilt PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_netcdf_parallel -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_netcdf_parallel +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/regional_netcdf_parallel Checking test 051 regional_netcdf_parallel results .... - Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf006.nc ............ALT CHECK......OK -0:The total amount of wall time = 338.888919 -0:The maximum resident set size (KB) = 596728 +0:The total amount of wall time = 339.817267 +0:The maximum resident set size (KB) = 596732 Test 051 regional_netcdf_parallel PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_2dwrtdecomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/regional_2dwrtdecomp Checking test 052 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -16304,14 +2253,14 @@ Checking test 052 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 346.737229 -0:The maximum resident set size (KB) = 604824 +0:The total amount of wall time = 340.159184 +0:The maximum resident set size (KB) = 604832 Test 052 regional_2dwrtdecomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/fv3_regional_wofs -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_wofs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/regional_wofs Checking test 053 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -16322,14 +2271,14 @@ Checking test 053 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 429.869366 -0:The maximum resident set size (KB) = 275828 +0:The total amount of wall time = 431.846936 +0:The maximum resident set size (KB) = 275892 Test 053 regional_wofs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_control Checking test 054 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -16376,14 +2325,14 @@ Checking test 054 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 476.057633 -0:The maximum resident set size (KB) = 823364 +0:The total amount of wall time = 481.913263 +0:The maximum resident set size (KB) = 823376 Test 054 rap_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_spp_sppt_shum_skeb -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_spp_sppt_shum_skeb +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/regional_spp_sppt_shum_skeb Checking test 055 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -16394,14 +2343,14 @@ Checking test 055 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 262.213664 -0:The maximum resident set size (KB) = 952080 +0:The total amount of wall time = 261.659529 +0:The maximum resident set size (KB) = 952340 Test 055 regional_spp_sppt_shum_skeb PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_decomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_decomp Checking test 056 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -16448,14 +2397,14 @@ Checking test 056 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 506.633123 -0:The maximum resident set size (KB) = 822220 +0:The total amount of wall time = 504.691957 +0:The maximum resident set size (KB) = 822192 Test 056 rap_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_2threads Checking test 057 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -16502,14 +2451,14 @@ Checking test 057 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 461.546221 -0:The maximum resident set size (KB) = 893584 +0:The total amount of wall time = 462.180223 +0:The maximum resident set size (KB) = 893540 Test 057 rap_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_restart Checking test 058 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -16548,14 +2497,14 @@ Checking test 058 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 244.002679 -0:The maximum resident set size (KB) = 571484 +0:The total amount of wall time = 239.216202 +0:The maximum resident set size (KB) = 571332 Test 058 rap_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_sfcdiff Checking test 059 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -16602,14 +2551,14 @@ Checking test 059 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 482.582957 -0:The maximum resident set size (KB) = 823424 +0:The total amount of wall time = 484.678902 +0:The maximum resident set size (KB) = 823340 Test 059 rap_sfcdiff PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_sfcdiff_decomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_sfcdiff_decomp Checking test 060 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -16656,14 +2605,14 @@ Checking test 060 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 507.450761 -0:The maximum resident set size (KB) = 822240 +0:The total amount of wall time = 504.403689 +0:The maximum resident set size (KB) = 822328 Test 060 rap_sfcdiff_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_sfcdiff_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_sfcdiff_restart Checking test 061 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -16702,14 +2651,14 @@ Checking test 061 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 360.950337 -0:The maximum resident set size (KB) = 570544 +0:The total amount of wall time = 359.800845 +0:The maximum resident set size (KB) = 570656 Test 061 rap_sfcdiff_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hrrr_control Checking test 062 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -16756,14 +2705,14 @@ Checking test 062 hrrr_control results .... Comparing 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.603670 -0:The maximum resident set size (KB) = 820848 +0:The total amount of wall time = 462.437771 +0:The maximum resident set size (KB) = 820816 Test 062 hrrr_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hrrr_control_decomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hrrr_control_decomp Checking test 063 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -16810,14 +2759,14 @@ Checking test 063 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 488.455334 -0:The maximum resident set size (KB) = 820848 +0:The total amount of wall time = 485.078210 +0:The maximum resident set size (KB) = 820648 Test 063 hrrr_control_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hrrr_control_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hrrr_control_2threads Checking test 064 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -16864,14 +2813,14 @@ Checking test 064 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 442.141825 -0:The maximum resident set size (KB) = 888488 +0:The total amount of wall time = 440.016661 +0:The maximum resident set size (KB) = 888408 Test 064 hrrr_control_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hrrr_control_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hrrr_control_restart Checking test 065 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -16910,14 +2859,14 @@ Checking test 065 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 344.086012 -0:The maximum resident set size (KB) = 566352 +0:The total amount of wall time = 343.926956 +0:The maximum resident set size (KB) = 566572 Test 065 hrrr_control_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1beta -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rrfs_v1beta +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rrfs_v1beta Checking test 066 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -16964,14 +2913,14 @@ Checking test 066 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 476.729680 -0:The maximum resident set size (KB) = 819452 +0:The total amount of wall time = 476.645696 +0:The maximum resident set size (KB) = 819472 Test 066 rrfs_v1beta PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1nssl -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rrfs_v1nssl +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rrfs_v1nssl Checking test 067 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -16986,14 +2935,14 @@ Checking test 067 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 587.560475 -0:The maximum resident set size (KB) = 508704 +0:The total amount of wall time = 589.871051 +0:The maximum resident set size (KB) = 508796 Test 067 rrfs_v1nssl PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rrfs_v1nssl_nohailnoccn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rrfs_v1nssl_nohailnoccn Checking test 068 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -17008,14 +2957,14 @@ Checking test 068 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 565.648225 -0:The maximum resident set size (KB) = 502516 +0:The total amount of wall time = 569.606949 +0:The maximum resident set size (KB) = 502712 Test 068 rrfs_v1nssl_nohailnoccn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rrfs_smoke_conus13km_hrrr_warm Checking test 069 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -17024,14 +2973,14 @@ Checking test 069 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 155.222855 -0:The maximum resident set size (KB) = 675236 +0:The total amount of wall time = 152.907438 +0:The maximum resident set size (KB) = 675324 Test 069 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rrfs_smoke_conus13km_hrrr_warm_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 070 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -17040,14 +2989,14 @@ Checking test 070 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 95.558075 -0:The maximum resident set size (KB) = 693964 +0:The total amount of wall time = 93.245534 +0:The maximum resident set size (KB) = 693856 Test 070 rrfs_smoke_conus13km_hrrr_warm_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rrfs_conus13km_hrrr_warm Checking test 071 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -17056,14 +3005,14 @@ Checking test 071 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 135.446161 -0:The maximum resident set size (KB) = 654004 +0:The total amount of wall time = 137.550660 +0:The maximum resident set size (KB) = 654104 Test 071 rrfs_conus13km_hrrr_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rrfs_smoke_conus13km_radar_tten_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rrfs_smoke_conus13km_radar_tten_warm Checking test 072 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -17072,26 +3021,26 @@ Checking test 072 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 156.980562 -0:The maximum resident set size (KB) = 677892 +0:The total amount of wall time = 153.935152 +0:The maximum resident set size (KB) = 677920 Test 072 rrfs_smoke_conus13km_radar_tten_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 073 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 71.902954 -0:The maximum resident set size (KB) = 632128 +0:The total amount of wall time = 70.610874 +0:The maximum resident set size (KB) = 632208 Test 073 rrfs_conus13km_hrrr_warm_restart_mismatch PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmg -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_csawmg +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_csawmg Checking test 074 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -17102,14 +3051,14 @@ Checking test 074 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 398.825305 -0:The maximum resident set size (KB) = 527700 +0:The total amount of wall time = 400.249782 +0:The maximum resident set size (KB) = 527740 Test 074 control_csawmg PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmgt -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_csawmgt +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_csawmgt Checking test 075 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -17120,14 +3069,14 @@ Checking test 075 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 396.293106 -0:The maximum resident set size (KB) = 528372 +0:The total amount of wall time = 394.323575 +0:The maximum resident set size (KB) = 528404 Test 075 control_csawmgt PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_ras -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_ras +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_ras Checking test 076 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -17138,26 +3087,26 @@ Checking test 076 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 209.019942 -0:The maximum resident set size (KB) = 491216 +0:The total amount of wall time = 205.739704 +0:The maximum resident set size (KB) = 491288 Test 076 control_ras PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wam -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_wam +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_wam Checking test 077 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -0:The total amount of wall time = 130.339794 -0:The maximum resident set size (KB) = 206284 +0:The total amount of wall time = 129.525401 +0:The maximum resident set size (KB) = 206292 Test 077 control_wam PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_faster -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_p8_faster +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_p8_faster Checking test 078 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -17204,14 +3153,14 @@ Checking test 078 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 173.370956 -0:The maximum resident set size (KB) = 1423728 +0:The total amount of wall time = 167.029387 +0:The maximum resident set size (KB) = 1423720 Test 078 control_p8_faster PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control_faster -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_control_faster +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/regional_control_faster Checking test 079 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -17222,56 +3171,56 @@ Checking test 079 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 327.839386 -0:The maximum resident set size (KB) = 604604 +0:The total amount of wall time = 324.581453 +0:The maximum resident set size (KB) = 604708 Test 079 regional_control_faster PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 080 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 873.958124 -0:The maximum resident set size (KB) = 703832 +0:The total amount of wall time = 871.802541 +0:The maximum resident set size (KB) = 704768 Test 080 rrfs_smoke_conus13km_hrrr_warm_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 081 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 497.351031 -0:The maximum resident set size (KB) = 725300 +0:The total amount of wall time = 499.740002 +0:The maximum resident set size (KB) = 724256 Test 081 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rrfs_conus13km_hrrr_warm_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rrfs_conus13km_hrrr_warm_debug Checking test 082 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 779.758074 -0:The maximum resident set size (KB) = 682884 +0:The total amount of wall time = 782.177368 +0:The maximum resident set size (KB) = 683284 Test 082 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_CubedSphereGrid_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_CubedSphereGrid_debug Checking test 083 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -17298,334 +3247,334 @@ Checking test 083 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -0:The total amount of wall time = 155.705236 -0:The maximum resident set size (KB) = 617584 +0:The total amount of wall time = 157.352526 +0:The maximum resident set size (KB) = 617452 Test 083 control_CubedSphereGrid_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_wrtGauss_netcdf_parallel_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_wrtGauss_netcdf_parallel_debug Checking test 084 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 157.345775 -0:The maximum resident set size (KB) = 615524 +0:The total amount of wall time = 156.062841 +0:The maximum resident set size (KB) = 615548 Test 084 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_stochy_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_stochy_debug Checking test 085 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 175.707591 -0:The maximum resident set size (KB) = 621172 +0:The total amount of wall time = 175.308146 +0:The maximum resident set size (KB) = 621216 Test 085 control_stochy_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_lndp_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_lndp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_lndp_debug Checking test 086 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 167.546108 -0:The maximum resident set size (KB) = 620028 +0:The total amount of wall time = 157.292235 +0:The maximum resident set size (KB) = 620000 Test 086 control_lndp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmg_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_csawmg_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_csawmg_debug Checking test 087 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 249.229441 -0:The maximum resident set size (KB) = 666408 +0:The total amount of wall time = 248.097119 +0:The maximum resident set size (KB) = 666368 Test 087 control_csawmg_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmgt_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_csawmgt_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_csawmgt_debug Checking test 088 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 245.216343 -0:The maximum resident set size (KB) = 667396 +0:The total amount of wall time = 244.860441 +0:The maximum resident set size (KB) = 667372 Test 088 control_csawmgt_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_ras_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_ras_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_ras_debug Checking test 089 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 161.219816 -0:The maximum resident set size (KB) = 630452 +0:The total amount of wall time = 162.424074 +0:The maximum resident set size (KB) = 630328 Test 089 control_ras_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_diag_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_diag_debug Checking test 090 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 160.454000 -0:The maximum resident set size (KB) = 674936 +0:The total amount of wall time = 159.185965 +0:The maximum resident set size (KB) = 674836 Test 090 control_diag_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_debug_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_debug_p8 Checking test 091 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 175.846871 -0:The maximum resident set size (KB) = 1442392 +0:The total amount of wall time = 176.308639 +0:The maximum resident set size (KB) = 1442356 Test 091 control_debug_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/regional_debug Checking test 092 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 1038.893894 -0:The maximum resident set size (KB) = 625264 +0:The total amount of wall time = 1036.935412 +0:The maximum resident set size (KB) = 625924 Test 092 regional_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_control_debug Checking test 093 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 287.544591 -0:The maximum resident set size (KB) = 986676 +0:The total amount of wall time = 287.084698 +0:The maximum resident set size (KB) = 986496 Test 093 rap_control_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hrrr_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hrrr_control_debug Checking test 094 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 282.380766 -0:The maximum resident set size (KB) = 984240 +0:The total amount of wall time = 281.600489 +0:The maximum resident set size (KB) = 984084 Test 094 hrrr_control_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_unified_drag_suite_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_unified_drag_suite_debug Checking test 095 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 286.901845 -0:The maximum resident set size (KB) = 986636 +0:The total amount of wall time = 287.472533 +0:The maximum resident set size (KB) = 986652 Test 095 rap_unified_drag_suite_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_diag_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_diag_debug Checking test 096 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 298.537588 -0:The maximum resident set size (KB) = 1069996 +0:The total amount of wall time = 297.992960 +0:The maximum resident set size (KB) = 1069984 Test 096 rap_diag_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_cires_ugwp_debug Checking test 097 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 292.691711 -0:The maximum resident set size (KB) = 985896 +0:The total amount of wall time = 291.742725 +0:The maximum resident set size (KB) = 985792 Test 097 rap_cires_ugwp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_unified_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_unified_ugwp_debug Checking test 098 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 292.833698 -0:The maximum resident set size (KB) = 986736 +0:The total amount of wall time = 295.201147 +0:The maximum resident set size (KB) = 986816 Test 098 rap_unified_ugwp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_lndp_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_lndp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_lndp_debug Checking test 099 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 288.859725 -0:The maximum resident set size (KB) = 987288 +0:The total amount of wall time = 290.173800 +0:The maximum resident set size (KB) = 987444 Test 099 rap_lndp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_flake_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_flake_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_flake_debug Checking test 100 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 286.913373 -0:The maximum resident set size (KB) = 986672 +0:The total amount of wall time = 287.976333 +0:The maximum resident set size (KB) = 986616 Test 100 rap_flake_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_progcld_thompson_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_progcld_thompson_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_progcld_thompson_debug Checking test 101 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 286.536893 -0:The maximum resident set size (KB) = 986688 +0:The total amount of wall time = 286.456969 +0:The maximum resident set size (KB) = 986588 Test 101 rap_progcld_thompson_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_noah_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_noah_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_noah_debug Checking test 102 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 297.647128 -0:The maximum resident set size (KB) = 984640 +0:The total amount of wall time = 282.083508 +0:The maximum resident set size (KB) = 984456 Test 102 rap_noah_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_sfcdiff_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_sfcdiff_debug Checking test 103 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 288.596968 -0:The maximum resident set size (KB) = 986568 +0:The total amount of wall time = 286.240114 +0:The maximum resident set size (KB) = 986356 Test 103 rap_sfcdiff_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_noah_sfcdiff_cires_ugwp_debug Checking test 104 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 581.022047 -0:The maximum resident set size (KB) = 985188 +0:The total amount of wall time = 474.892403 +0:The maximum resident set size (KB) = 985280 Test 104 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1beta_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rrfs_v1beta_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rrfs_v1beta_debug Checking test 105 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 285.265867 -0:The maximum resident set size (KB) = 983392 +0:The total amount of wall time = 282.222650 +0:The maximum resident set size (KB) = 983432 Test 105 rrfs_v1beta_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wam_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_wam_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_wam_debug Checking test 106 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 290.837122 -0:The maximum resident set size (KB) = 235304 +0:The total amount of wall time = 299.066112 +0:The maximum resident set size (KB) = 235296 Test 106 control_wam_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -17636,14 +3585,14 @@ Checking test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 248.192314 -0:The maximum resident set size (KB) = 851296 +0:The total amount of wall time = 239.645019 +0:The maximum resident set size (KB) = 851052 Test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_control_dyn32_phy32 Checking test 108 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -17690,14 +3639,14 @@ Checking test 108 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 404.180404 -0:The maximum resident set size (KB) = 707964 +0:The total amount of wall time = 402.020825 +0:The maximum resident set size (KB) = 707908 Test 108 rap_control_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hrrr_control_dyn32_phy32 Checking test 109 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -17744,14 +3693,14 @@ Checking test 109 hrrr_control_dyn32_phy32 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 = 210.697131 -0:The maximum resident set size (KB) = 706508 +0:The total amount of wall time = 209.381857 +0:The maximum resident set size (KB) = 706424 Test 109 hrrr_control_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_2threads_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_2threads_dyn32_phy32 Checking test 110 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -17798,14 +3747,14 @@ Checking test 110 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 390.548730 -0:The maximum resident set size (KB) = 759508 +0:The total amount of wall time = 386.799841 +0:The maximum resident set size (KB) = 759676 Test 110 rap_2threads_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hrrr_control_2threads_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hrrr_control_2threads_dyn32_phy32 Checking test 111 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -17852,14 +3801,14 @@ Checking test 111 hrrr_control_2threads_dyn32_phy32 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 = 200.770576 -0:The maximum resident set size (KB) = 756388 +0:The total amount of wall time = 201.205524 +0:The maximum resident set size (KB) = 756484 Test 111 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hrrr_control_decomp_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hrrr_control_decomp_dyn32_phy32 Checking test 112 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -17906,14 +3855,14 @@ Checking test 112 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 219.220429 -0:The maximum resident set size (KB) = 704308 +0:The total amount of wall time = 218.799957 +0:The maximum resident set size (KB) = 704432 Test 112 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_restart_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_restart_dyn32_phy32 Checking test 113 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -17952,14 +3901,14 @@ Checking test 113 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 298.960030 -0:The maximum resident set size (KB) = 544696 +0:The total amount of wall time = 296.595500 +0:The maximum resident set size (KB) = 544672 Test 113 rap_restart_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hrrr_control_restart_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hrrr_control_restart_dyn32_phy32 Checking test 114 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -17998,14 +3947,14 @@ Checking test 114 hrrr_control_restart_dyn32_phy32 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 = 230.804297 -0:The maximum resident set size (KB) = 536892 +0:The total amount of wall time = 107.270669 +0:The maximum resident set size (KB) = 537424 Test 114 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn64_phy32 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_control_dyn64_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_control_dyn64_phy32 Checking test 115 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -18052,81 +4001,81 @@ Checking test 115 rap_control_dyn64_phy32 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 = 274.277225 -0:The maximum resident set size (KB) = 730884 +0:The total amount of wall time = 274.048274 +0:The maximum resident set size (KB) = 730388 Test 115 rap_control_dyn64_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_control_debug_dyn32_phy32 Checking test 116 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 284.092107 -0:The maximum resident set size (KB) = 872876 +0:The total amount of wall time = 287.017359 +0:The maximum resident set size (KB) = 872972 Test 116 rap_control_debug_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hrrr_control_debug_dyn32_phy32 Checking test 117 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 280.807695 -0:The maximum resident set size (KB) = 871116 +0:The total amount of wall time = 283.245002 +0:The maximum resident set size (KB) = 871140 Test 117 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/rap_control_dyn64_phy32_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_control_dyn64_phy32_debug Checking test 118 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 288.275408 -0:The maximum resident set size (KB) = 890092 +0:The total amount of wall time = 289.687981 +0:The maximum resident set size (KB) = 890056 Test 118 rap_control_dyn64_phy32_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hafs_regional_atm Checking test 119 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -0:The total amount of wall time = 263.337718 -0:The maximum resident set size (KB) = 741796 +0:The total amount of wall time = 261.333436 +0:The maximum resident set size (KB) = 742668 Test 119 hafs_regional_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_atm_thompson_gfdlsf +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hafs_regional_atm_thompson_gfdlsf Checking test 120 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -0:The total amount of wall time = 291.218797 -0:The maximum resident set size (KB) = 1099660 +0:The total amount of wall time = 294.815274 +0:The maximum resident set size (KB) = 1099664 Test 120 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_ocn -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_atm_ocn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hafs_regional_atm_ocn Checking test 121 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -18135,14 +4084,14 @@ Checking test 121 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 459.257499 -0:The maximum resident set size (KB) = 740560 +0:The total amount of wall time = 454.040584 +0:The maximum resident set size (KB) = 741072 Test 121 hafs_regional_atm_ocn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_wav -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_atm_wav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hafs_regional_atm_wav Checking test 122 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -18151,14 +4100,14 @@ Checking test 122 hafs_regional_atm_wav 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 = 1028.036737 -0:The maximum resident set size (KB) = 768168 +0:The total amount of wall time = 1022.908737 +0:The maximum resident set size (KB) = 768840 Test 122 hafs_regional_atm_wav PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_ocn_wav -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_atm_ocn_wav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hafs_regional_atm_ocn_wav Checking test 123 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -18169,28 +4118,28 @@ Checking test 123 hafs_regional_atm_ocn_wav 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 = 1143.844600 -0:The maximum resident set size (KB) = 792436 +0:The total amount of wall time = 1108.879963 +0:The maximum resident set size (KB) = 792712 Test 123 hafs_regional_atm_ocn_wav PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_1nest_atm -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hafs_regional_1nest_atm Checking test 124 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 376.961886 -0:The maximum resident set size (KB) = 300192 +0:The total amount of wall time = 377.178905 +0:The maximum resident set size (KB) = 300764 Test 124 hafs_regional_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_telescopic_2nests_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hafs_regional_telescopic_2nests_atm Checking test 125 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -18199,28 +4148,28 @@ Checking test 125 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -0:The total amount of wall time = 428.291238 -0:The maximum resident set size (KB) = 320464 +0:The total amount of wall time = 418.540193 +0:The maximum resident set size (KB) = 320444 -Test 125 hafs_regional_telescopic_2nests_atm PASS Tries: 2 +Test 125 hafs_regional_telescopic_2nests_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_1nest_atm -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_global_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hafs_global_1nest_atm Checking test 126 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 175.049290 -0:The maximum resident set size (KB) = 214512 +0:The total amount of wall time = 172.018136 +0:The maximum resident set size (KB) = 213700 Test 126 hafs_global_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_multiple_4nests_atm -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_global_multiple_4nests_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hafs_global_multiple_4nests_atm Checking test 127 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -18238,14 +4187,14 @@ Checking test 127 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -0:The total amount of wall time = 485.414990 -0:The maximum resident set size (KB) = 302640 +0:The total amount of wall time = 484.704166 +0:The maximum resident set size (KB) = 302524 Test 127 hafs_global_multiple_4nests_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_specified_moving_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hafs_regional_specified_moving_1nest_atm Checking test 128 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -18254,28 +4203,28 @@ Checking test 128 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -0:The total amount of wall time = 249.288476 -0:The maximum resident set size (KB) = 317396 +0:The total amount of wall time = 243.374540 +0:The maximum resident set size (KB) = 318936 Test 128 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_storm_following_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hafs_regional_storm_following_1nest_atm Checking test 129 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 229.504894 -0:The maximum resident set size (KB) = 317972 +0:The total amount of wall time = 227.031099 +0:The maximum resident set size (KB) = 317752 Test 129 hafs_regional_storm_following_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_storm_following_1nest_atm_ocn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hafs_regional_storm_following_1nest_atm_ocn Checking test 130 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -18284,42 +4233,42 @@ Checking test 130 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -0:The total amount of wall time = 300.472312 -0:The maximum resident set size (KB) = 376048 +0:The total amount of wall time = 282.631944 +0:The maximum resident set size (KB) = 375972 Test 130 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_storm_following_1nest_atm -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_global_storm_following_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hafs_global_storm_following_1nest_atm Checking test 131 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 67.161907 -0:The maximum resident set size (KB) = 233180 +0:The total amount of wall time = 66.853354 +0:The maximum resident set size (KB) = 234016 Test 131 hafs_global_storm_following_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 132 hafs_regional_storm_following_1nest_atm_ocn_debug results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK -0:The total amount of wall time = 766.907498 -0:The maximum resident set size (KB) = 402892 +0:The total amount of wall time = 768.075635 +0:The maximum resident set size (KB) = 402732 Test 132 hafs_regional_storm_following_1nest_atm_ocn_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 133 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -18330,14 +4279,14 @@ Checking test 133 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -0:The total amount of wall time = 724.022212 -0:The maximum resident set size (KB) = 427020 +0:The total amount of wall time = 723.795493 +0:The maximum resident set size (KB) = 426604 Test 133 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_docn -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_docn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hafs_regional_docn Checking test 134 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -18345,14 +4294,14 @@ Checking test 134 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 405.888203 -0:The maximum resident set size (KB) = 755532 +0:The total amount of wall time = 389.591145 +0:The maximum resident set size (KB) = 755448 Test 134 hafs_regional_docn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_docn_oisst -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_docn_oisst +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hafs_regional_docn_oisst Checking test 135 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -18360,131 +4309,131 @@ Checking test 135 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 399.660057 -0:The maximum resident set size (KB) = 734800 +0:The total amount of wall time = 394.331574 +0:The maximum resident set size (KB) = 735456 Test 135 hafs_regional_docn_oisst PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_datm_cdeps -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/hafs_regional_datm_cdeps +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hafs_regional_datm_cdeps Checking test 136 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -0:The total amount of wall time = 1272.203095 -0:The maximum resident set size (KB) = 887888 +0:The total amount of wall time = 1268.985930 +0:The maximum resident set size (KB) = 887848 Test 136 hafs_regional_datm_cdeps PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/datm_cdeps_control_cfsr Checking test 137 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 168.375777 -0:The maximum resident set size (KB) = 716692 +0:The total amount of wall time = 166.872791 +0:The maximum resident set size (KB) = 727772 Test 137 datm_cdeps_control_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_restart_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/datm_cdeps_restart_cfsr Checking test 138 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 100.451768 -0:The maximum resident set size (KB) = 715916 +0:The total amount of wall time = 99.624296 +0:The maximum resident set size (KB) = 704856 Test 138 datm_cdeps_restart_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_gefs -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_control_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/datm_cdeps_control_gefs Checking test 139 datm_cdeps_control_gefs 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 = 162.952423 -0:The maximum resident set size (KB) = 607484 +0:The total amount of wall time = 161.703123 +0:The maximum resident set size (KB) = 607440 Test 139 datm_cdeps_control_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_iau_gefs -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_iau_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/datm_cdeps_iau_gefs Checking test 140 datm_cdeps_iau_gefs 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 = 163.800197 -0:The maximum resident set size (KB) = 607444 +0:The total amount of wall time = 159.030606 +0:The maximum resident set size (KB) = 607468 Test 140 datm_cdeps_iau_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_stochy_gefs -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_stochy_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/datm_cdeps_stochy_gefs Checking test 141 datm_cdeps_stochy_gefs 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 = 163.599324 -0:The maximum resident set size (KB) = 607500 +0:The total amount of wall time = 164.820867 +0:The maximum resident set size (KB) = 607456 Test 141 datm_cdeps_stochy_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_ciceC_cfsr -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_ciceC_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/datm_cdeps_ciceC_cfsr Checking test 142 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 167.851939 -0:The maximum resident set size (KB) = 716692 +0:The total amount of wall time = 162.864883 +0:The maximum resident set size (KB) = 716680 Test 142 datm_cdeps_ciceC_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_bulk_cfsr -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_bulk_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/datm_cdeps_bulk_cfsr Checking test 143 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 177.420459 -0:The maximum resident set size (KB) = 716700 +0:The total amount of wall time = 168.512628 +0:The maximum resident set size (KB) = 717176 Test 143 datm_cdeps_bulk_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_bulk_gefs -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_bulk_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/datm_cdeps_bulk_gefs Checking test 144 datm_cdeps_bulk_gefs 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 = 154.810043 -0:The maximum resident set size (KB) = 607416 +0:The total amount of wall time = 161.004640 +0:The maximum resident set size (KB) = 607492 Test 144 datm_cdeps_bulk_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_mx025_cfsr -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_mx025_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/datm_cdeps_mx025_cfsr Checking test 145 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -18493,14 +4442,14 @@ Checking test 145 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 432.039969 -0:The maximum resident set size (KB) = 514328 +0:The total amount of wall time = 415.369157 +0:The maximum resident set size (KB) = 514264 Test 145 datm_cdeps_mx025_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_mx025_gefs -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_mx025_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/datm_cdeps_mx025_gefs Checking test 146 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -18509,77 +4458,77 @@ Checking test 146 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 420.306111 -0:The maximum resident set size (KB) = 494736 +0:The total amount of wall time = 416.438795 +0:The maximum resident set size (KB) = 494816 Test 146 datm_cdeps_mx025_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_multiple_files_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/datm_cdeps_multiple_files_cfsr Checking test 147 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 166.376409 -0:The maximum resident set size (KB) = 717068 +0:The total amount of wall time = 166.644257 +0:The maximum resident set size (KB) = 716720 Test 147 datm_cdeps_multiple_files_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_3072x1536_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/datm_cdeps_3072x1536_cfsr Checking test 148 datm_cdeps_3072x1536_cfsr 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 = 268.021302 -0:The maximum resident set size (KB) = 1942028 +0:The total amount of wall time = 255.611279 +0:The maximum resident set size (KB) = 1910064 Test 148 datm_cdeps_3072x1536_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_gfs -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_gfs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/datm_cdeps_gfs Checking test 149 datm_cdeps_gfs 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 = 268.804073 -0:The maximum resident set size (KB) = 1942004 +0:The total amount of wall time = 257.571916 +0:The maximum resident set size (KB) = 1941108 Test 149 datm_cdeps_gfs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_debug_cfsr -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_debug_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/datm_cdeps_debug_cfsr Checking test 150 datm_cdeps_debug_cfsr 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 = 369.027478 -0:The maximum resident set size (KB) = 700640 +0:The total amount of wall time = 369.353290 +0:The maximum resident set size (KB) = 700732 Test 150 datm_cdeps_debug_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr_faster -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_control_cfsr_faster +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/datm_cdeps_control_cfsr_faster Checking test 151 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 169.297973 -0:The maximum resident set size (KB) = 728684 +0:The total amount of wall time = 166.831336 +0:The maximum resident set size (KB) = 716744 Test 151 datm_cdeps_control_cfsr_faster PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_lnd_gswp3 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/datm_cdeps_lnd_gswp3 Checking test 152 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -18588,14 +4537,14 @@ Checking test 152 datm_cdeps_lnd_gswp3 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 = 11.216235 -0:The maximum resident set size (KB) = 208244 +0:The total amount of wall time = 10.709243 +0:The maximum resident set size (KB) = 208688 Test 152 datm_cdeps_lnd_gswp3 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/datm_cdeps_lnd_gswp3_rst +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/datm_cdeps_lnd_gswp3_rst Checking test 153 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -18604,14 +4553,14 @@ Checking test 153 datm_cdeps_lnd_gswp3_rst 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 = 15.821305 -0:The maximum resident set size (KB) = 208232 +0:The total amount of wall time = 15.693225 +0:The maximum resident set size (KB) = 208248 Test 153 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_atmlnd_sbs -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_p8_atmlnd_sbs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_p8_atmlnd_sbs Checking test 154 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -18696,14 +4645,14 @@ Checking test 154 control_p8_atmlnd_sbs 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 = 236.712703 -0:The maximum resident set size (KB) = 1462932 +0:The total amount of wall time = 237.255222 +0:The maximum resident set size (KB) = 1462940 Test 154 control_p8_atmlnd_sbs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/atmwav_control_noaero_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/atmwav_control_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/atmwav_control_noaero_p8 Checking test 155 atmwav_control_noaero_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -18746,14 +4695,14 @@ Checking test 155 atmwav_control_noaero_p8 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 = 103.280325 -0:The maximum resident set size (KB) = 1434340 +0:The total amount of wall time = 101.540638 +0:The maximum resident set size (KB) = 1434376 Test 155 atmwav_control_noaero_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_atmwav -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/control_atmwav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_atmwav Checking test 156 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -18797,14 +4746,14 @@ Checking test 156 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -0:The total amount of wall time = 102.909689 -0:The maximum resident set size (KB) = 474692 +0:The total amount of wall time = 101.155118 +0:The maximum resident set size (KB) = 474472 Test 156 control_atmwav PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8 -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/atmaero_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/atmaero_control_p8 Checking test 157 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -18848,14 +4797,14 @@ Checking test 157 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 252.567753 -0:The maximum resident set size (KB) = 2704052 +0:The total amount of wall time = 243.896824 +0:The maximum resident set size (KB) = 2704068 Test 157 atmaero_control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8_rad -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/atmaero_control_p8_rad +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/atmaero_control_p8_rad Checking test 158 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -18899,14 +4848,14 @@ Checking test 158 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 309.250990 -0:The maximum resident set size (KB) = 2758208 +0:The total amount of wall time = 307.088496 +0:The maximum resident set size (KB) = 2757996 Test 158 atmaero_control_p8_rad PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8_rad_micro -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/atmaero_control_p8_rad_micro +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/atmaero_control_p8_rad_micro Checking test 159 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -18950,14 +4899,14 @@ Checking test 159 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 309.759897 -0:The maximum resident set size (KB) = 2764556 +0:The total amount of wall time = 311.157547 +0:The maximum resident set size (KB) = 2764584 Test 159 atmaero_control_p8_rad_micro PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_atmaq +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/regional_atmaq Checking test 160 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -18973,14 +4922,14 @@ Checking test 160 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -0:The total amount of wall time = 751.258022 -0:The maximum resident set size (KB) = 999360 +0:The total amount of wall time = 727.375377 +0:The maximum resident set size (KB) = 999612 Test 160 regional_atmaq PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq_faster -working dir = /glade/scratch/jongkim/rt-1713-intel/jongkim/FV3_RT/rt_70247/regional_atmaq_faster +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/regional_atmaq_faster Checking test 161 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -18996,18 +4945,12 @@ Checking test 161 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -0:The total amount of wall time = 699.046862 -0:The maximum resident set size (KB) = 999160 +0:The total amount of wall time = 703.434730 +0:The maximum resident set size (KB) = 999268 Test 161 regional_atmaq_faster PASS -FAILED TESTS: -Test compile_008 failed in run_compile failed - -REGRESSION TEST FAILED -Wed Apr 19 10:48:06 MDT 2023 -Elapsed time: 01h:31m:23s. Have a nice day! -Wed Apr 19 10:51:42 MDT 2023 -Start Regression test -Compile 001 elapsed time 1767 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +REGRESSION TEST WAS SUCCESSFUL +Fri Apr 21 15:17:35 MDT 2023 +Elapsed time: 01h:54m:05s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index dbac64b60b4..a448ac5e452 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,21 +1,21 @@ -Wed Apr 19 04:24:02 UTC 2023 +Fri Apr 21 20:03:16 UTC 2023 Start Regression test -Compile 001 elapsed time 198 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 200 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 336 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 110 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 198 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 408 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 344 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 350 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 263 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 234 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 153 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 012 elapsed time 112 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 001 elapsed time 186 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 186 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 333 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 96 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 185 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 405 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 327 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 331 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 252 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 224 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 145 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 012 elapsed time 114 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/control_c48 Checking test 001 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -54,14 +54,14 @@ Checking test 001 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 680.646046 -0: The maximum resident set size (KB) = 704428 +0: The total amount of wall time = 685.754207 +0: The maximum resident set size (KB) = 707088 Test 001 control_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/control_stochy Checking test 002 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -72,14 +72,14 @@ Checking test 002 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 666.147917 - 0: The maximum resident set size (KB) = 477052 + 0: The total amount of wall time = 645.658326 + 0: The maximum resident set size (KB) = 478852 Test 002 control_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/control_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/control_ras Checking test 003 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -90,14 +90,14 @@ Checking test 003 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 832.146500 - 0: The maximum resident set size (KB) = 489944 + 0: The total amount of wall time = 827.448455 + 0: The maximum resident set size (KB) = 488764 Test 003 control_ras PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/control_p8 Checking test 004 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -144,14 +144,14 @@ Checking test 004 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 909.898955 - 0: The maximum resident set size (KB) = 1235664 + 0: The total amount of wall time = 883.943395 + 0: The maximum resident set size (KB) = 1233284 Test 004 control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rap_control Checking test 005 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -198,14 +198,14 @@ Checking test 005 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1477.089770 - 0: The maximum resident set size (KB) = 831268 + 0: The total amount of wall time = 1461.481846 + 0: The maximum resident set size (KB) = 829732 Test 005 rap_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rap_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rap_decomp Checking test 006 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -252,14 +252,14 @@ Checking test 006 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1443.933834 - 0: The maximum resident set size (KB) = 831784 + 0: The total amount of wall time = 1420.600032 + 0: The maximum resident set size (KB) = 832296 Test 006 rap_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rap_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rap_2threads Checking test 007 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -306,14 +306,14 @@ Checking test 007 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1345.133923 - 0: The maximum resident set size (KB) = 895496 + 0: The total amount of wall time = 1320.895143 + 0: The maximum resident set size (KB) = 900324 Test 007 rap_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rap_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rap_restart Checking test 008 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -352,14 +352,14 @@ Checking test 008 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 734.846781 - 0: The maximum resident set size (KB) = 550624 + 0: The total amount of wall time = 712.371835 + 0: The maximum resident set size (KB) = 550820 Test 008 rap_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rap_sfcdiff Checking test 009 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -406,14 +406,14 @@ Checking test 009 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1485.722729 - 0: The maximum resident set size (KB) = 833180 + 0: The total amount of wall time = 1460.235117 + 0: The maximum resident set size (KB) = 831300 Test 009 rap_sfcdiff PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rap_sfcdiff_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rap_sfcdiff_decomp Checking test 010 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -460,14 +460,14 @@ Checking test 010 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1465.122415 - 0: The maximum resident set size (KB) = 831540 + 0: The total amount of wall time = 1450.169646 + 0: The maximum resident set size (KB) = 831856 Test 010 rap_sfcdiff_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rap_sfcdiff_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rap_sfcdiff_restart Checking test 011 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -506,14 +506,14 @@ Checking test 011 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1080.389159 - 0: The maximum resident set size (KB) = 550884 + 0: The total amount of wall time = 1048.602920 + 0: The maximum resident set size (KB) = 550848 Test 011 rap_sfcdiff_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/hrrr_control Checking test 012 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -560,14 +560,14 @@ Checking test 012 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1451.774578 - 0: The maximum resident set size (KB) = 821200 + 0: The total amount of wall time = 1416.628887 + 0: The maximum resident set size (KB) = 826692 Test 012 hrrr_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/hrrr_control_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/hrrr_control_2threads Checking test 013 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -614,14 +614,14 @@ Checking test 013 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1344.397048 - 0: The maximum resident set size (KB) = 896228 + 0: The total amount of wall time = 1298.646632 + 0: The maximum resident set size (KB) = 893940 Test 013 hrrr_control_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/hrrr_control_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/hrrr_control_decomp Checking test 014 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -668,14 +668,14 @@ Checking test 014 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1427.506159 - 0: The maximum resident set size (KB) = 827200 + 0: The total amount of wall time = 1407.631640 + 0: The maximum resident set size (KB) = 822928 Test 014 hrrr_control_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/hrrr_control_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/hrrr_control_restart Checking test 015 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -714,14 +714,14 @@ Checking test 015 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1050.556873 - 0: The maximum resident set size (KB) = 542588 + 0: The total amount of wall time = 1064.019766 + 0: The maximum resident set size (KB) = 551732 Test 015 hrrr_control_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rrfs_v1beta Checking test 016 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -768,14 +768,14 @@ Checking test 016 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1430.598944 - 0: The maximum resident set size (KB) = 827152 + 0: The total amount of wall time = 1473.555726 + 0: The maximum resident set size (KB) = 832336 Test 016 rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rrfs_smoke_conus13km_hrrr_warm Checking test 017 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -784,14 +784,14 @@ Checking test 017 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 771.725536 - 0: The maximum resident set size (KB) = 666864 + 0: The total amount of wall time = 789.215541 + 0: The maximum resident set size (KB) = 669488 Test 017 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rrfs_smoke_conus13km_hrrr_warm_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 018 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -800,14 +800,14 @@ Checking test 018 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 1054.406908 - 0: The maximum resident set size (KB) = 665304 + 0: The total amount of wall time = 1024.336600 + 0: The maximum resident set size (KB) = 666648 Test 018 rrfs_smoke_conus13km_hrrr_warm_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rrfs_conus13km_hrrr_warm Checking test 019 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -816,14 +816,14 @@ Checking test 019 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 751.921859 - 0: The maximum resident set size (KB) = 644860 + 0: The total amount of wall time = 732.482214 + 0: The maximum resident set size (KB) = 644996 Test 019 rrfs_conus13km_hrrr_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rrfs_smoke_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rrfs_smoke_conus13km_radar_tten_warm Checking test 020 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -832,234 +832,234 @@ Checking test 020 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 791.307102 - 0: The maximum resident set size (KB) = 671504 + 0: The total amount of wall time = 778.384203 + 0: The maximum resident set size (KB) = 670092 Test 020 rrfs_smoke_conus13km_radar_tten_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 021 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 395.550929 - 0: The maximum resident set size (KB) = 633828 + 0: The total amount of wall time = 406.540805 + 0: The maximum resident set size (KB) = 632324 Test 021 rrfs_conus13km_hrrr_warm_restart_mismatch PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/control_diag_debug Checking test 022 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 123.938123 - 0: The maximum resident set size (KB) = 527812 + 0: The total amount of wall time = 122.335229 + 0: The maximum resident set size (KB) = 526668 Test 022 control_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/regional_debug Checking test 023 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 672.416956 - 0: The maximum resident set size (KB) = 592300 + 0: The total amount of wall time = 615.470758 + 0: The maximum resident set size (KB) = 592296 Test 023 regional_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rap_control_debug Checking test 024 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 171.643562 - 0: The maximum resident set size (KB) = 839284 + 0: The total amount of wall time = 172.474629 + 0: The maximum resident set size (KB) = 841140 Test 024 rap_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/hrrr_control_debug Checking test 025 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 174.278008 - 0: The maximum resident set size (KB) = 836940 + 0: The total amount of wall time = 168.437426 + 0: The maximum resident set size (KB) = 835852 Test 025 hrrr_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rap_diag_debug Checking test 026 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 211.834951 - 0: The maximum resident set size (KB) = 925124 + 0: The total amount of wall time = 210.682550 + 0: The maximum resident set size (KB) = 922624 Test 026 rap_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rap_noah_sfcdiff_cires_ugwp_debug Checking test 027 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.640521 - 0: The maximum resident set size (KB) = 835272 + 0: The total amount of wall time = 269.877852 + 0: The maximum resident set size (KB) = 840996 Test 027 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rap_progcld_thompson_debug Checking test 028 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 177.697154 - 0: The maximum resident set size (KB) = 840756 + 0: The total amount of wall time = 172.929537 + 0: The maximum resident set size (KB) = 841240 Test 028 rap_progcld_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rrfs_v1beta_debug Checking test 029 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 176.315546 - 0: The maximum resident set size (KB) = 840824 + 0: The total amount of wall time = 173.358292 + 0: The maximum resident set size (KB) = 834672 Test 029 rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/control_ras_debug Checking test 030 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 101.008339 - 0: The maximum resident set size (KB) = 478828 + 0: The total amount of wall time = 102.810316 + 0: The maximum resident set size (KB) = 484560 Test 030 control_ras_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/control_stochy_debug Checking test 031 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 116.544021 - 0: The maximum resident set size (KB) = 476980 + 0: The total amount of wall time = 117.450603 + 0: The maximum resident set size (KB) = 477252 Test 031 control_stochy_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/control_debug_p8 Checking test 032 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 120.300045 - 0: The maximum resident set size (KB) = 1230572 + 0: The total amount of wall time = 117.623415 + 0: The maximum resident set size (KB) = 1226480 Test 032 control_debug_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 033 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 614.313753 - 0: The maximum resident set size (KB) = 678680 + 0: The total amount of wall time = 624.358942 + 0: The maximum resident set size (KB) = 685308 Test 033 rrfs_smoke_conus13km_hrrr_warm_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 034 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 747.889449 - 0: The maximum resident set size (KB) = 681772 + 0: The total amount of wall time = 742.594878 + 0: The maximum resident set size (KB) = 682036 Test 034 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rrfs_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rrfs_conus13km_hrrr_warm_debug Checking test 035 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 581.578758 - 0: The maximum resident set size (KB) = 657180 + 0: The total amount of wall time = 590.182539 + 0: The maximum resident set size (KB) = 658428 Test 035 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/control_wam_debug Checking test 036 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 181.268404 - 0: The maximum resident set size (KB) = 190840 + 0: The total amount of wall time = 183.796772 + 0: The maximum resident set size (KB) = 194908 Test 036 control_wam_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rap_control_dyn32_phy32 Checking test 037 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1106,14 +1106,14 @@ Checking test 037 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1458.230588 - 0: The maximum resident set size (KB) = 687220 + 0: The total amount of wall time = 1455.594933 + 0: The maximum resident set size (KB) = 686188 Test 037 rap_control_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/hrrr_control_dyn32_phy32 Checking test 038 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1160,14 +1160,14 @@ Checking test 038 hrrr_control_dyn32_phy32 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 = 748.738115 - 0: The maximum resident set size (KB) = 683552 + 0: The total amount of wall time = 751.083337 + 0: The maximum resident set size (KB) = 682424 Test 038 hrrr_control_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rap_2threads_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rap_2threads_dyn32_phy32 Checking test 039 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1214,14 +1214,14 @@ Checking test 039 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1368.599506 - 0: The maximum resident set size (KB) = 729864 + 0: The total amount of wall time = 1375.653263 + 0: The maximum resident set size (KB) = 727304 Test 039 rap_2threads_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/hrrr_control_2threads_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/hrrr_control_2threads_dyn32_phy32 Checking test 040 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1268,14 +1268,14 @@ Checking test 040 hrrr_control_2threads_dyn32_phy32 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 = 660.831761 - 0: The maximum resident set size (KB) = 726496 + 0: The total amount of wall time = 670.354670 + 0: The maximum resident set size (KB) = 728912 Test 040 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/hrrr_control_decomp_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/hrrr_control_decomp_dyn32_phy32 Checking test 041 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1322,14 +1322,14 @@ Checking test 041 hrrr_control_decomp_dyn32_phy32 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 = 743.348105 - 0: The maximum resident set size (KB) = 681364 + 0: The total amount of wall time = 742.760271 + 0: The maximum resident set size (KB) = 684568 Test 041 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rap_restart_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rap_restart_dyn32_phy32 Checking test 042 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1368,14 +1368,14 @@ Checking test 042 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1098.700591 - 0: The maximum resident set size (KB) = 506900 + 0: The total amount of wall time = 1059.836923 + 0: The maximum resident set size (KB) = 511216 Test 042 rap_restart_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/hrrr_control_restart_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/hrrr_control_restart_dyn32_phy32 Checking test 043 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1414,14 +1414,14 @@ Checking test 043 hrrr_control_restart_dyn32_phy32 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 = 367.716802 - 0: The maximum resident set size (KB) = 508488 + 0: The total amount of wall time = 361.944052 + 0: The maximum resident set size (KB) = 512796 Test 043 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rap_control_dyn64_phy32 Checking test 044 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1468,58 +1468,128 @@ Checking test 044 rap_control_dyn64_phy32 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 = 1076.884315 - 0: The maximum resident set size (KB) = 713480 + 0: The total amount of wall time = 1083.345711 + 0: The maximum resident set size (KB) = 708152 Test 044 rap_control_dyn64_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rap_control_debug_dyn32_phy32 Checking test 045 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 171.680183 - 0: The maximum resident set size (KB) = 702736 + 0: The total amount of wall time = 174.573852 + 0: The maximum resident set size (KB) = 703144 Test 045 rap_control_debug_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/hrrr_control_debug_dyn32_phy32 Checking test 046 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 170.315544 - 0: The maximum resident set size (KB) = 698488 + 0: The total amount of wall time = 172.216297 + 0: The maximum resident set size (KB) = 701488 Test 046 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/rap_control_dyn64_phy32_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rap_control_dyn64_phy32_debug Checking test 047 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 202.524994 - 0: The maximum resident set size (KB) = 717740 + 0: The total amount of wall time = 204.191701 + 0: The maximum resident set size (KB) = 720396 Test 047 rap_control_dyn64_phy32_debug PASS -Test 048 cpld_control_p8 FAIL + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/cpld_control_p8 +Checking test 048 cpld_control_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 1679.149683 + 0: The maximum resident set size (KB) = 1428860 + +Test 048 cpld_control_p8 PASS Tries: 2 baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/cpld_control_nowave_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/cpld_control_nowave_noaero_p8 Checking test 049 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1581,14 +1651,14 @@ Checking test 049 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 1236.448140 - 0: The maximum resident set size (KB) = 1334628 + 0: The total amount of wall time = 1221.029659 + 0: The maximum resident set size (KB) = 1331116 Test 049 cpld_control_nowave_noaero_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/cpld_debug_p8 Checking test 050 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1641,107 +1711,25 @@ Checking test 050 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1063.404887 - 0: The maximum resident set size (KB) = 1437596 + 0: The total amount of wall time = 806.567312 + 0: The maximum resident set size (KB) = 1436080 -Test 050 cpld_debug_p8 PASS +Test 050 cpld_debug_p8 PASS Tries: 2 baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7658/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/datm_cdeps_control_cfsr Checking test 051 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 176.945975 - 0: The maximum resident set size (KB) = 666164 + 0: The total amount of wall time = 170.101565 + 0: The maximum resident set size (KB) = 664976 Test 051 datm_cdeps_control_cfsr PASS -FAILED TESTS: -Test cpld_control_p8 048 failed in run_test failed - -REGRESSION TEST FAILED -Wed Apr 19 05:37:06 UTC 2023 -Elapsed time: 01h:13m:05s. Have a nice day! -Wed Apr 19 15:19:04 UTC 2023 -Start Regression test - -Compile 001 elapsed time 301 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_25554/cpld_control_p8 -Checking test 001 cpld_control_p8 results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 1759.168579 - 0: The maximum resident set size (KB) = 1431884 - -Test 001 cpld_control_p8 PASS - REGRESSION TEST WAS SUCCESSFUL -Wed Apr 19 16:01:59 UTC 2023 -Elapsed time: 00h:42m:56s. Have a nice day! +Sat Apr 22 01:34:56 UTC 2023 +Elapsed time: 05h:31m:41s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 7547bba4937..09f4a6a2671 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,43 +1,43 @@ -Wed Apr 19 05:14:13 UTC 2023 +Fri Apr 21 19:48:25 UTC 2023 Start Regression test -Compile 001 elapsed time 607 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 608 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 568 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 231 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 204 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 515 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 517 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 698 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 529 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 499 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 011 elapsed time 468 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 447 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 624 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 206 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 170 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 491 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 492 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 181 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 001 elapsed time 603 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 625 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 573 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 219 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 193 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 516 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 505 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 693 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 534 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 496 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 011 elapsed time 477 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 428 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 595 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 221 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 154 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 460 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 455 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 184 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug Compile 019 elapsed time 159 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 561 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 190 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 637 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 565 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 024 elapsed time 187 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 105 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 186 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 54 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 480 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 570 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 588 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 501 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 477 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 033 elapsed time 172 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 034 elapsed time 540 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 020 elapsed time 563 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 213 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 656 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 572 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 024 elapsed time 177 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 103 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 179 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 52 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 481 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 558 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 581 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 480 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 468 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 033 elapsed time 178 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 034 elapsed time 533 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8_mixedmode -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/cpld_control_p8_mixedmode +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -102,14 +102,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 315.048700 - 0: The maximum resident set size (KB) = 3125044 + 0: The total amount of wall time = 313.845767 + 0: The maximum resident set size (KB) = 3129184 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_gfsv17 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/cpld_control_gfsv17 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -173,14 +173,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 227.857809 - 0: The maximum resident set size (KB) = 1718772 + 0: The total amount of wall time = 226.885053 + 0: The maximum resident set size (KB) = 1721264 Test 002 cpld_control_gfsv17 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -245,14 +245,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 345.569251 - 0: The maximum resident set size (KB) = 3171912 + 0: The total amount of wall time = 340.722766 + 0: The maximum resident set size (KB) = 3168428 Test 003 cpld_control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/cpld_restart_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -305,14 +305,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 200.852386 - 0: The maximum resident set size (KB) = 3046024 + 0: The total amount of wall time = 194.480249 + 0: The maximum resident set size (KB) = 3036384 Test 004 cpld_restart_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/cpld_control_qr_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -377,14 +377,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 346.830725 - 0: The maximum resident set size (KB) = 3197504 + 0: The total amount of wall time = 342.880460 + 0: The maximum resident set size (KB) = 3182432 Test 005 cpld_control_qr_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/cpld_restart_qr_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -437,14 +437,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 213.488305 - 0: The maximum resident set size (KB) = 3059564 + 0: The total amount of wall time = 196.493429 + 0: The maximum resident set size (KB) = 3059500 Test 006 cpld_restart_qr_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/cpld_2threads_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -497,14 +497,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 353.930570 - 0: The maximum resident set size (KB) = 3507132 + 0: The total amount of wall time = 351.206456 + 0: The maximum resident set size (KB) = 3508708 Test 007 cpld_2threads_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/cpld_decomp_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -557,14 +557,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 345.914323 - 0: The maximum resident set size (KB) = 3161776 + 0: The total amount of wall time = 352.210609 + 0: The maximum resident set size (KB) = 3154860 Test 008 cpld_decomp_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/cpld_mpi_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -617,14 +617,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 289.861282 - 0: The maximum resident set size (KB) = 3010656 + 0: The total amount of wall time = 286.531103 + 0: The maximum resident set size (KB) = 3014564 Test 009 cpld_mpi_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_ciceC_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/cpld_control_ciceC_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -689,14 +689,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 345.767329 - 0: The maximum resident set size (KB) = 3172388 + 0: The total amount of wall time = 343.661918 + 0: The maximum resident set size (KB) = 3181744 Test 010 cpld_control_ciceC_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_control_c192_p8 Checking test 011 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -749,14 +749,14 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 590.644271 - 0: The maximum resident set size (KB) = 3260324 + 0: The total amount of wall time = 582.103889 + 0: The maximum resident set size (KB) = 3246940 Test 011 cpld_control_c192_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/cpld_restart_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_restart_c192_p8 Checking test 012 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -809,14 +809,14 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 402.702727 - 0: The maximum resident set size (KB) = 3146812 + 0: The total amount of wall time = 388.929073 + 0: The maximum resident set size (KB) = 3144876 Test 012 cpld_restart_c192_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/cpld_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_bmark_p8 Checking test 013 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -864,14 +864,14 @@ Checking test 013 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 737.980807 - 0: The maximum resident set size (KB) = 4018056 + 0: The total amount of wall time = 712.878992 + 0: The maximum resident set size (KB) = 4062416 Test 013 cpld_bmark_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/cpld_restart_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_restart_bmark_p8 Checking test 014 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -919,14 +919,14 @@ Checking test 014 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 458.395467 - 0: The maximum resident set size (KB) = 3956160 + 0: The total amount of wall time = 442.544723 + 0: The maximum resident set size (KB) = 3954656 Test 014 cpld_restart_bmark_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/cpld_control_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_control_noaero_p8 Checking test 015 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -990,14 +990,14 @@ Checking test 015 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 263.693705 - 0: The maximum resident set size (KB) = 1714236 + 0: The total amount of wall time = 263.828328 + 0: The maximum resident set size (KB) = 1710940 Test 015 cpld_control_noaero_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/cpld_control_nowave_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_control_nowave_noaero_p8 Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1059,14 +1059,14 @@ Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 261.027192 - 0: The maximum resident set size (KB) = 1743512 + 0: The total amount of wall time = 264.079039 + 0: The maximum resident set size (KB) = 1762972 Test 016 cpld_control_nowave_noaero_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_debug_p8 Checking test 017 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1119,14 +1119,14 @@ Checking test 017 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 520.383815 - 0: The maximum resident set size (KB) = 3225088 + 0: The total amount of wall time = 520.635401 + 0: The maximum resident set size (KB) = 3229780 Test 017 cpld_debug_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_debug_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/cpld_debug_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_debug_noaero_p8 Checking test 018 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1178,14 +1178,14 @@ Checking test 018 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 366.193999 - 0: The maximum resident set size (KB) = 1720992 + 0: The total amount of wall time = 356.385664 + 0: The maximum resident set size (KB) = 1733072 Test 018 cpld_debug_noaero_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_noaero_p8_agrid -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/cpld_control_noaero_p8_agrid +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_control_noaero_p8_agrid Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1247,14 +1247,14 @@ Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 267.137714 - 0: The maximum resident set size (KB) = 1758644 + 0: The total amount of wall time = 275.161546 + 0: The maximum resident set size (KB) = 1716768 Test 019 cpld_control_noaero_p8_agrid PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/cpld_control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_control_c48 Checking test 020 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1304,14 +1304,14 @@ Checking test 020 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 586.299489 - 0: The maximum resident set size (KB) = 2808376 + 0: The total amount of wall time = 576.795053 + 0: The maximum resident set size (KB) = 2796864 Test 020 cpld_control_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/cpld_warmstart_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_warmstart_c48 Checking test 021 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1361,14 +1361,14 @@ Checking test 021 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 156.009819 - 0: The maximum resident set size (KB) = 2791888 + 0: The total amount of wall time = 154.939661 + 0: The maximum resident set size (KB) = 2803208 Test 021 cpld_warmstart_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/cpld_restart_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_restart_c48 Checking test 022 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1418,14 +1418,14 @@ Checking test 022 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 84.165865 - 0: The maximum resident set size (KB) = 2230360 + 0: The total amount of wall time = 80.324876 + 0: The maximum resident set size (KB) = 2228680 Test 022 cpld_restart_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/cpld_control_p8_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_control_p8_faster Checking test 023 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1490,14 +1490,14 @@ Checking test 023 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 329.077420 - 0: The maximum resident set size (KB) = 3166148 + 0: The total amount of wall time = 323.842588 + 0: The maximum resident set size (KB) = 3158164 Test 023 cpld_control_p8_faster PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_CubedSphereGrid +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_CubedSphereGrid Checking test 024 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1524,28 +1524,28 @@ Checking test 024 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 133.420675 - 0: The maximum resident set size (KB) = 626220 + 0: The total amount of wall time = 131.680836 + 0: The maximum resident set size (KB) = 626232 Test 024 control_CubedSphereGrid PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_CubedSphereGrid_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_CubedSphereGrid_parallel Checking test 025 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc ............ALT CHECK......OK - 0: The total amount of wall time = 129.668250 - 0: The maximum resident set size (KB) = 634132 + 0: The total amount of wall time = 128.308982 + 0: The maximum resident set size (KB) = 623452 Test 025 control_CubedSphereGrid_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_latlon -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_latlon +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_latlon Checking test 026 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1556,16 +1556,16 @@ Checking test 026 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.839381 - 0: The maximum resident set size (KB) = 631216 + 0: The total amount of wall time = 134.753068 + 0: The maximum resident set size (KB) = 628812 Test 026 control_latlon PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wrtGauss_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_wrtGauss_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_wrtGauss_netcdf_parallel Checking test 027 control_wrtGauss_netcdf_parallel results .... - Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK @@ -1574,14 +1574,14 @@ Checking test 027 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.364210 - 0: The maximum resident set size (KB) = 629728 + 0: The total amount of wall time = 136.711069 + 0: The maximum resident set size (KB) = 628248 Test 027 control_wrtGauss_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_c48 Checking test 028 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1620,14 +1620,14 @@ Checking test 028 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 364.696485 -0: The maximum resident set size (KB) = 820352 +0: The total amount of wall time = 369.811489 +0: The maximum resident set size (KB) = 822568 Test 028 control_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_c192 Checking test 029 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1638,14 +1638,14 @@ Checking test 029 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 525.736386 - 0: The maximum resident set size (KB) = 767184 + 0: The total amount of wall time = 526.251915 + 0: The maximum resident set size (KB) = 762728 Test 029 control_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_c384 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_c384 Checking test 030 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1656,14 +1656,14 @@ Checking test 030 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 524.519196 - 0: The maximum resident set size (KB) = 1260496 + 0: The total amount of wall time = 525.803939 + 0: The maximum resident set size (KB) = 1260384 Test 030 control_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c384gdas -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_c384gdas +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_c384gdas Checking test 031 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1706,14 +1706,14 @@ Checking test 031 control_c384gdas 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 = 461.313605 - 0: The maximum resident set size (KB) = 1379948 + 0: The total amount of wall time = 458.959745 + 0: The maximum resident set size (KB) = 1371616 Test 031 control_c384gdas PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_stochy Checking test 032 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1724,28 +1724,28 @@ Checking test 032 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 90.799079 - 0: The maximum resident set size (KB) = 634436 + 0: The total amount of wall time = 87.834032 + 0: The maximum resident set size (KB) = 636592 Test 032 control_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_stochy_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_stochy_restart Checking test 033 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 48.687137 - 0: The maximum resident set size (KB) = 483236 + 0: The total amount of wall time = 48.443286 + 0: The maximum resident set size (KB) = 489676 Test 033 control_stochy_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_lndp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_lndp Checking test 034 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1756,14 +1756,14 @@ Checking test 034 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 86.720044 - 0: The maximum resident set size (KB) = 628380 + 0: The total amount of wall time = 81.306858 + 0: The maximum resident set size (KB) = 630596 Test 034 control_lndp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_iovr4 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_iovr4 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_iovr4 Checking test 035 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1778,14 +1778,14 @@ Checking test 035 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 138.386728 - 0: The maximum resident set size (KB) = 625980 + 0: The total amount of wall time = 136.631196 + 0: The maximum resident set size (KB) = 631996 Test 035 control_iovr4 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_iovr5 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_iovr5 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_iovr5 Checking test 036 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1800,14 +1800,14 @@ Checking test 036 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 139.586866 - 0: The maximum resident set size (KB) = 628564 + 0: The total amount of wall time = 137.055690 + 0: The maximum resident set size (KB) = 630856 Test 036 control_iovr5 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_p8 Checking test 037 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1854,14 +1854,14 @@ Checking test 037 control_p8 results .... Comparing 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.215430 - 0: The maximum resident set size (KB) = 1578756 + 0: The total amount of wall time = 168.680255 + 0: The maximum resident set size (KB) = 1589520 Test 037 control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_restart_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_restart_p8 Checking test 038 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1900,14 +1900,14 @@ Checking test 038 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 91.303210 - 0: The maximum resident set size (KB) = 859616 + 0: The total amount of wall time = 89.532858 + 0: The maximum resident set size (KB) = 861480 Test 038 control_restart_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_qr_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_qr_p8 Checking test 039 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1954,14 +1954,14 @@ Checking test 039 control_qr_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 170.706263 - 0: The maximum resident set size (KB) = 1590428 + 0: The total amount of wall time = 169.719193 + 0: The maximum resident set size (KB) = 1597084 Test 039 control_qr_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_restart_qr_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_restart_qr_p8 Checking test 040 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2000,14 +2000,14 @@ Checking test 040 control_restart_qr_p8 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.153834 - 0: The maximum resident set size (KB) = 858800 + 0: The total amount of wall time = 91.670313 + 0: The maximum resident set size (KB) = 855404 Test 040 control_restart_qr_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_decomp_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_decomp_p8 Checking test 041 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2050,14 +2050,14 @@ Checking test 041 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 177.236236 - 0: The maximum resident set size (KB) = 1582176 + 0: The total amount of wall time = 175.847306 + 0: The maximum resident set size (KB) = 1579652 Test 041 control_decomp_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_2threads_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_2threads_p8 Checking test 042 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2100,14 +2100,14 @@ Checking test 042 control_2threads_p8 results .... Comparing 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.341601 - 0: The maximum resident set size (KB) = 1677604 + 0: The total amount of wall time = 160.543874 + 0: The maximum resident set size (KB) = 1674820 Test 042 control_2threads_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_p8_lndp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_p8_lndp Checking test 043 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2126,14 +2126,14 @@ Checking test 043 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 317.278428 - 0: The maximum resident set size (KB) = 1593348 + 0: The total amount of wall time = 313.431372 + 0: The maximum resident set size (KB) = 1602056 Test 043 control_p8_lndp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_p8_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_p8_rrtmgp Checking test 044 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2180,14 +2180,14 @@ Checking test 044 control_p8_rrtmgp results .... Comparing 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.501157 - 0: The maximum resident set size (KB) = 1656576 + 0: The total amount of wall time = 224.841525 + 0: The maximum resident set size (KB) = 1667828 Test 044 control_p8_rrtmgp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_mynn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_p8_mynn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_p8_mynn Checking test 045 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2234,14 +2234,14 @@ Checking test 045 control_p8_mynn results .... Comparing 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.142754 - 0: The maximum resident set size (KB) = 1610620 + 0: The total amount of wall time = 173.090905 + 0: The maximum resident set size (KB) = 1586108 Test 045 control_p8_mynn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/merra2_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/merra2_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/merra2_thompson Checking test 046 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2288,14 +2288,14 @@ Checking test 046 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 193.661732 - 0: The maximum resident set size (KB) = 1598528 + 0: The total amount of wall time = 193.815663 + 0: The maximum resident set size (KB) = 1597328 Test 046 merra2_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/regional_control Checking test 047 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2306,28 +2306,28 @@ Checking test 047 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 299.271674 - 0: The maximum resident set size (KB) = 868120 + 0: The total amount of wall time = 296.130830 + 0: The maximum resident set size (KB) = 865512 Test 047 regional_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/regional_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/regional_restart Checking test 048 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 157.281345 - 0: The maximum resident set size (KB) = 861608 + 0: The total amount of wall time = 150.026495 + 0: The maximum resident set size (KB) = 860736 Test 048 regional_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/regional_control_qr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/regional_control_qr Checking test 049 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2338,28 +2338,28 @@ Checking test 049 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 301.818400 - 0: The maximum resident set size (KB) = 867480 + 0: The total amount of wall time = 295.435789 + 0: The maximum resident set size (KB) = 867424 Test 049 regional_control_qr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/regional_restart_qr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/regional_restart_qr Checking test 050 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 152.539828 - 0: The maximum resident set size (KB) = 861632 + 0: The total amount of wall time = 151.293518 + 0: The maximum resident set size (KB) = 863980 Test 050 regional_restart_qr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/regional_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/regional_decomp Checking test 051 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2370,14 +2370,14 @@ Checking test 051 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 316.239723 - 0: The maximum resident set size (KB) = 859244 + 0: The total amount of wall time = 312.853424 + 0: The maximum resident set size (KB) = 863532 Test 051 regional_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/regional_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/regional_2threads Checking test 052 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2388,14 +2388,14 @@ Checking test 052 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 185.827407 - 0: The maximum resident set size (KB) = 851908 + 0: The total amount of wall time = 181.396503 + 0: The maximum resident set size (KB) = 847156 Test 052 regional_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_noquilt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/regional_noquilt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/regional_noquilt Checking test 053 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2403,28 +2403,28 @@ Checking test 053 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 324.296149 - 0: The maximum resident set size (KB) = 854096 + 0: The total amount of wall time = 317.418019 + 0: The maximum resident set size (KB) = 853672 Test 053 regional_noquilt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/regional_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/regional_netcdf_parallel Checking test 054 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 297.267587 - 0: The maximum resident set size (KB) = 859588 + 0: The total amount of wall time = 295.545573 + 0: The maximum resident set size (KB) = 862004 Test 054 regional_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/regional_2dwrtdecomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/regional_2dwrtdecomp Checking test 055 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2435,14 +2435,14 @@ Checking test 055 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 301.187933 - 0: The maximum resident set size (KB) = 869104 + 0: The total amount of wall time = 297.919046 + 0: The maximum resident set size (KB) = 864244 Test 055 regional_2dwrtdecomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/fv3_regional_wofs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/regional_wofs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/regional_wofs Checking test 056 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2453,14 +2453,14 @@ Checking test 056 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 377.693710 - 0: The maximum resident set size (KB) = 627636 + 0: The total amount of wall time = 379.936380 + 0: The maximum resident set size (KB) = 625532 Test 056 regional_wofs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_control Checking test 057 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2507,14 +2507,14 @@ Checking test 057 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 464.204313 - 0: The maximum resident set size (KB) = 1047036 + 0: The total amount of wall time = 459.236767 + 0: The maximum resident set size (KB) = 1054504 Test 057 rap_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_spp_sppt_shum_skeb -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/regional_spp_sppt_shum_skeb +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/regional_spp_sppt_shum_skeb Checking test 058 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2525,14 +2525,14 @@ Checking test 058 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 232.324710 - 0: The maximum resident set size (KB) = 1181092 + 0: The total amount of wall time = 235.196168 + 0: The maximum resident set size (KB) = 1182864 Test 058 regional_spp_sppt_shum_skeb PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rap_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_decomp Checking test 059 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2579,14 +2579,14 @@ Checking test 059 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 481.746454 - 0: The maximum resident set size (KB) = 997152 + 0: The total amount of wall time = 479.025563 + 0: The maximum resident set size (KB) = 999488 Test 059 rap_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rap_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_2threads Checking test 060 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2633,14 +2633,14 @@ Checking test 060 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 436.195100 - 0: The maximum resident set size (KB) = 1133276 + 0: The total amount of wall time = 434.379803 + 0: The maximum resident set size (KB) = 1131304 Test 060 rap_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rap_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_restart Checking test 061 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2679,14 +2679,14 @@ Checking test 061 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 236.462214 - 0: The maximum resident set size (KB) = 969252 + 0: The total amount of wall time = 232.648211 + 0: The maximum resident set size (KB) = 962296 Test 061 rap_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_sfcdiff Checking test 062 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2733,14 +2733,14 @@ Checking test 062 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 462.069547 - 0: The maximum resident set size (KB) = 1060728 + 0: The total amount of wall time = 460.229518 + 0: The maximum resident set size (KB) = 1038372 Test 062 rap_sfcdiff PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rap_sfcdiff_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_sfcdiff_decomp Checking test 063 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2787,14 +2787,14 @@ Checking test 063 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 486.585766 - 0: The maximum resident set size (KB) = 996448 + 0: The total amount of wall time = 482.165978 + 0: The maximum resident set size (KB) = 1000240 Test 063 rap_sfcdiff_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rap_sfcdiff_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_sfcdiff_restart Checking test 064 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2833,14 +2833,14 @@ Checking test 064 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 343.315234 - 0: The maximum resident set size (KB) = 981628 + 0: The total amount of wall time = 341.473494 + 0: The maximum resident set size (KB) = 985732 Test 064 rap_sfcdiff_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hrrr_control Checking test 065 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2887,14 +2887,14 @@ Checking test 065 hrrr_control results .... Comparing 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.629352 - 0: The maximum resident set size (KB) = 1051872 + 0: The total amount of wall time = 442.898679 + 0: The maximum resident set size (KB) = 1051840 Test 065 hrrr_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hrrr_control_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hrrr_control_decomp Checking test 066 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2941,14 +2941,14 @@ Checking test 066 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 467.562913 - 0: The maximum resident set size (KB) = 993224 + 0: The total amount of wall time = 465.947576 + 0: The maximum resident set size (KB) = 998636 Test 066 hrrr_control_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hrrr_control_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hrrr_control_2threads Checking test 067 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2995,14 +2995,14 @@ Checking test 067 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 421.500288 - 0: The maximum resident set size (KB) = 1134808 + 0: The total amount of wall time = 418.819054 + 0: The maximum resident set size (KB) = 1138980 Test 067 hrrr_control_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hrrr_control_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hrrr_control_restart Checking test 068 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3041,14 +3041,14 @@ Checking test 068 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 333.840204 - 0: The maximum resident set size (KB) = 972344 + 0: The total amount of wall time = 329.386755 + 0: The maximum resident set size (KB) = 983252 Test 068 hrrr_control_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rrfs_v1beta Checking test 069 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3095,14 +3095,14 @@ Checking test 069 rrfs_v1beta results .... Comparing 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.975900 - 0: The maximum resident set size (KB) = 1060044 + 0: The total amount of wall time = 456.885537 + 0: The maximum resident set size (KB) = 1038784 Test 069 rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1nssl -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rrfs_v1nssl +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rrfs_v1nssl Checking test 070 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3117,14 +3117,14 @@ Checking test 070 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 538.559210 - 0: The maximum resident set size (KB) = 692212 + 0: The total amount of wall time = 535.161206 + 0: The maximum resident set size (KB) = 690708 Test 070 rrfs_v1nssl PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rrfs_v1nssl_nohailnoccn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rrfs_v1nssl_nohailnoccn Checking test 071 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3139,14 +3139,14 @@ Checking test 071 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 524.111181 - 0: The maximum resident set size (KB) = 755484 + 0: The total amount of wall time = 523.267471 + 0: The maximum resident set size (KB) = 753488 Test 071 rrfs_v1nssl_nohailnoccn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rrfs_smoke_conus13km_hrrr_warm Checking test 072 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3155,14 +3155,14 @@ Checking test 072 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 147.509812 - 0: The maximum resident set size (KB) = 1028244 + 0: The total amount of wall time = 144.706119 + 0: The maximum resident set size (KB) = 1028268 Test 072 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rrfs_smoke_conus13km_hrrr_warm_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 073 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3171,14 +3171,14 @@ Checking test 073 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 91.055677 - 0: The maximum resident set size (KB) = 937808 + 0: The total amount of wall time = 88.963342 + 0: The maximum resident set size (KB) = 942660 Test 073 rrfs_smoke_conus13km_hrrr_warm_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rrfs_conus13km_hrrr_warm Checking test 074 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3187,14 +3187,14 @@ Checking test 074 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 129.916751 - 0: The maximum resident set size (KB) = 942284 + 0: The total amount of wall time = 128.305485 + 0: The maximum resident set size (KB) = 947144 Test 074 rrfs_conus13km_hrrr_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rrfs_smoke_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rrfs_smoke_conus13km_radar_tten_warm Checking test 075 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3203,26 +3203,26 @@ Checking test 075 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 148.482604 - 0: The maximum resident set size (KB) = 1037388 + 0: The total amount of wall time = 147.053916 + 0: The maximum resident set size (KB) = 1037472 Test 075 rrfs_smoke_conus13km_radar_tten_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 076 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 70.072787 - 0: The maximum resident set size (KB) = 930520 + 0: The total amount of wall time = 68.517204 + 0: The maximum resident set size (KB) = 929536 Test 076 rrfs_conus13km_hrrr_warm_restart_mismatch PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmg -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_csawmg +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_csawmg Checking test 077 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3233,14 +3233,14 @@ Checking test 077 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 343.175962 - 0: The maximum resident set size (KB) = 722900 + 0: The total amount of wall time = 340.970335 + 0: The maximum resident set size (KB) = 724540 Test 077 control_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmgt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_csawmgt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_csawmgt Checking test 078 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3251,14 +3251,14 @@ Checking test 078 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 343.691959 - 0: The maximum resident set size (KB) = 720208 + 0: The total amount of wall time = 337.681849 + 0: The maximum resident set size (KB) = 727608 Test 078 control_csawmgt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_ras Checking test 079 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3269,26 +3269,26 @@ Checking test 079 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 181.027985 - 0: The maximum resident set size (KB) = 715624 + 0: The total amount of wall time = 180.517807 + 0: The maximum resident set size (KB) = 722936 Test 079 control_ras PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wam -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_wam +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_wam Checking test 080 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 112.087068 - 0: The maximum resident set size (KB) = 634292 + 0: The total amount of wall time = 111.141245 + 0: The maximum resident set size (KB) = 631808 Test 080 control_wam PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_p8_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_p8_faster Checking test 081 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3335,14 +3335,14 @@ Checking test 081 control_p8_faster results .... Comparing 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.466000 - 0: The maximum resident set size (KB) = 1592160 + 0: The total amount of wall time = 152.497659 + 0: The maximum resident set size (KB) = 1592824 Test 081 control_p8_faster PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/regional_control_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/regional_control_faster Checking test 082 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3353,56 +3353,56 @@ Checking test 082 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 273.233782 - 0: The maximum resident set size (KB) = 862644 + 0: The total amount of wall time = 271.046891 + 0: The maximum resident set size (KB) = 872680 Test 082 regional_control_faster PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 083 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 840.624263 - 0: The maximum resident set size (KB) = 1013340 + 0: The total amount of wall time = 830.878579 + 0: The maximum resident set size (KB) = 1019476 Test 083 rrfs_smoke_conus13km_hrrr_warm_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 084 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 473.675723 - 0: The maximum resident set size (KB) = 968352 + 0: The total amount of wall time = 457.687845 + 0: The maximum resident set size (KB) = 966960 Test 084 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rrfs_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rrfs_conus13km_hrrr_warm_debug Checking test 085 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 738.151979 - 0: The maximum resident set size (KB) = 969632 + 0: The total amount of wall time = 738.552028 + 0: The maximum resident set size (KB) = 957460 Test 085 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_CubedSphereGrid_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_CubedSphereGrid_debug Checking test 086 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3429,334 +3429,334 @@ Checking test 086 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 144.101932 - 0: The maximum resident set size (KB) = 792896 + 0: The total amount of wall time = 144.480896 + 0: The maximum resident set size (KB) = 788760 Test 086 control_CubedSphereGrid_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_wrtGauss_netcdf_parallel_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_wrtGauss_netcdf_parallel_debug Checking test 087 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 145.113523 - 0: The maximum resident set size (KB) = 788500 + 0: The total amount of wall time = 143.809119 + 0: The maximum resident set size (KB) = 790576 Test 087 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_stochy_debug Checking test 088 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 164.860949 - 0: The maximum resident set size (KB) = 791884 + 0: The total amount of wall time = 167.012943 + 0: The maximum resident set size (KB) = 797780 Test 088 control_stochy_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_lndp_debug Checking test 089 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 142.649745 - 0: The maximum resident set size (KB) = 795276 + 0: The total amount of wall time = 144.668339 + 0: The maximum resident set size (KB) = 793716 Test 089 control_lndp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmg_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_csawmg_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_csawmg_debug Checking test 090 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 231.559604 - 0: The maximum resident set size (KB) = 835188 + 0: The total amount of wall time = 225.858928 + 0: The maximum resident set size (KB) = 843500 Test 090 control_csawmg_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmgt_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_csawmgt_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_csawmgt_debug Checking test 091 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 225.969750 - 0: The maximum resident set size (KB) = 836856 + 0: The total amount of wall time = 223.361157 + 0: The maximum resident set size (KB) = 838300 Test 091 control_csawmgt_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_ras_debug Checking test 092 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 148.664144 - 0: The maximum resident set size (KB) = 805260 + 0: The total amount of wall time = 149.663483 + 0: The maximum resident set size (KB) = 802636 Test 092 control_ras_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_diag_debug Checking test 093 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 152.950665 - 0: The maximum resident set size (KB) = 845144 + 0: The total amount of wall time = 150.678206 + 0: The maximum resident set size (KB) = 850308 Test 093 control_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_debug_p8 Checking test 094 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 166.691400 - 0: The maximum resident set size (KB) = 1624156 + 0: The total amount of wall time = 166.583627 + 0: The maximum resident set size (KB) = 1615572 Test 094 control_debug_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/regional_debug Checking test 095 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1002.366942 - 0: The maximum resident set size (KB) = 870188 + 0: The total amount of wall time = 995.547622 + 0: The maximum resident set size (KB) = 884460 Test 095 regional_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_control_debug Checking test 096 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.861251 - 0: The maximum resident set size (KB) = 1166156 + 0: The total amount of wall time = 274.754605 + 0: The maximum resident set size (KB) = 1174144 Test 096 rap_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hrrr_control_debug Checking test 097 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 269.695126 - 0: The maximum resident set size (KB) = 1169136 + 0: The total amount of wall time = 269.753968 + 0: The maximum resident set size (KB) = 1164252 Test 097 hrrr_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rap_unified_drag_suite_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_unified_drag_suite_debug Checking test 098 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.922701 - 0: The maximum resident set size (KB) = 1168752 + 0: The total amount of wall time = 271.010235 + 0: The maximum resident set size (KB) = 1165596 Test 098 rap_unified_drag_suite_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_diag_debug Checking test 099 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 286.682045 - 0: The maximum resident set size (KB) = 1253452 + 0: The total amount of wall time = 285.852411 + 0: The maximum resident set size (KB) = 1251032 Test 099 rap_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rap_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_cires_ugwp_debug Checking test 100 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.082130 - 0: The maximum resident set size (KB) = 1164392 + 0: The total amount of wall time = 271.675809 + 0: The maximum resident set size (KB) = 1171972 Test 100 rap_cires_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rap_unified_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_unified_ugwp_debug Checking test 101 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.960523 - 0: The maximum resident set size (KB) = 1175156 + 0: The total amount of wall time = 277.955627 + 0: The maximum resident set size (KB) = 1171204 Test 101 rap_unified_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rap_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_lndp_debug Checking test 102 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.654489 - 0: The maximum resident set size (KB) = 1165472 + 0: The total amount of wall time = 272.619395 + 0: The maximum resident set size (KB) = 1171592 Test 102 rap_lndp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_flake_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rap_flake_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_flake_debug Checking test 103 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.416473 - 0: The maximum resident set size (KB) = 1167328 + 0: The total amount of wall time = 271.007058 + 0: The maximum resident set size (KB) = 1166604 Test 103 rap_flake_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_progcld_thompson_debug Checking test 104 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.038652 - 0: The maximum resident set size (KB) = 1171944 + 0: The total amount of wall time = 269.649000 + 0: The maximum resident set size (KB) = 1170824 Test 104 rap_progcld_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_noah_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rap_noah_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_noah_debug Checking test 105 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 268.892311 - 0: The maximum resident set size (KB) = 1169852 + 0: The total amount of wall time = 267.892200 + 0: The maximum resident set size (KB) = 1165860 Test 105 rap_noah_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rap_sfcdiff_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_sfcdiff_debug Checking test 106 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.593414 - 0: The maximum resident set size (KB) = 1163856 + 0: The total amount of wall time = 269.735326 + 0: The maximum resident set size (KB) = 1171156 Test 106 rap_sfcdiff_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_noah_sfcdiff_cires_ugwp_debug Checking test 107 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 449.732704 - 0: The maximum resident set size (KB) = 1167232 + 0: The total amount of wall time = 444.977429 + 0: The maximum resident set size (KB) = 1168224 Test 107 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rrfs_v1beta_debug Checking test 108 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.161664 - 0: The maximum resident set size (KB) = 1161140 + 0: The total amount of wall time = 270.188909 + 0: The maximum resident set size (KB) = 1164980 Test 108 rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_wam_debug Checking test 109 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 281.008746 - 0: The maximum resident set size (KB) = 523532 + 0: The total amount of wall time = 271.030404 + 0: The maximum resident set size (KB) = 526028 Test 109 control_wam_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3767,14 +3767,14 @@ Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 225.365730 - 0: The maximum resident set size (KB) = 1071196 + 0: The total amount of wall time = 216.406266 + 0: The maximum resident set size (KB) = 1073684 Test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_control_dyn32_phy32 Checking test 111 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3821,14 +3821,14 @@ Checking test 111 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 385.392330 - 0: The maximum resident set size (KB) = 995660 + 0: The total amount of wall time = 382.353700 + 0: The maximum resident set size (KB) = 1009100 Test 111 rap_control_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hrrr_control_dyn32_phy32 Checking test 112 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3875,14 +3875,14 @@ Checking test 112 hrrr_control_dyn32_phy32 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 = 201.459526 - 0: The maximum resident set size (KB) = 954592 + 0: The total amount of wall time = 197.950261 + 0: The maximum resident set size (KB) = 952884 Test 112 hrrr_control_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rap_2threads_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_2threads_dyn32_phy32 Checking test 113 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3929,14 +3929,14 @@ Checking test 113 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 372.407213 - 0: The maximum resident set size (KB) = 1020964 + 0: The total amount of wall time = 363.650138 + 0: The maximum resident set size (KB) = 1025920 Test 113 rap_2threads_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hrrr_control_2threads_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hrrr_control_2threads_dyn32_phy32 Checking test 114 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3983,14 +3983,14 @@ Checking test 114 hrrr_control_2threads_dyn32_phy32 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 = 190.703510 - 0: The maximum resident set size (KB) = 1001412 + 0: The total amount of wall time = 186.947731 + 0: The maximum resident set size (KB) = 1004392 Test 114 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hrrr_control_decomp_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hrrr_control_decomp_dyn32_phy32 Checking test 115 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4037,14 +4037,14 @@ Checking test 115 hrrr_control_decomp_dyn32_phy32 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 = 210.478155 - 0: The maximum resident set size (KB) = 899796 + 0: The total amount of wall time = 208.407845 + 0: The maximum resident set size (KB) = 902816 Test 115 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rap_restart_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_restart_dyn32_phy32 Checking test 116 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4083,14 +4083,14 @@ Checking test 116 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 283.566555 - 0: The maximum resident set size (KB) = 949384 + 0: The total amount of wall time = 283.072889 + 0: The maximum resident set size (KB) = 941076 Test 116 rap_restart_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hrrr_control_restart_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hrrr_control_restart_dyn32_phy32 Checking test 117 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4129,14 +4129,14 @@ Checking test 117 hrrr_control_restart_dyn32_phy32 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 = 104.071311 - 0: The maximum resident set size (KB) = 861900 + 0: The total amount of wall time = 102.184101 + 0: The maximum resident set size (KB) = 862812 Test 117 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_control_dyn64_phy32 Checking test 118 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4183,81 +4183,81 @@ Checking test 118 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 247.505389 - 0: The maximum resident set size (KB) = 971420 + 0: The total amount of wall time = 244.578370 + 0: The maximum resident set size (KB) = 967532 Test 118 rap_control_dyn64_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_control_debug_dyn32_phy32 Checking test 119 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.880986 - 0: The maximum resident set size (KB) = 1055564 + 0: The total amount of wall time = 266.501640 + 0: The maximum resident set size (KB) = 1053432 Test 119 rap_control_debug_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hrrr_control_debug_dyn32_phy32 Checking test 120 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 263.198500 - 0: The maximum resident set size (KB) = 1052700 + 0: The total amount of wall time = 263.109494 + 0: The maximum resident set size (KB) = 1052128 Test 120 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/rap_control_dyn64_phy32_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_control_dyn64_phy32_debug Checking test 121 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.931268 - 0: The maximum resident set size (KB) = 1092084 + 0: The total amount of wall time = 276.013436 + 0: The maximum resident set size (KB) = 1096724 Test 121 rap_control_dyn64_phy32_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hafs_regional_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hafs_regional_atm Checking test 122 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 236.081060 - 0: The maximum resident set size (KB) = 1045108 + 0: The total amount of wall time = 241.110790 + 0: The maximum resident set size (KB) = 1043160 Test 122 hafs_regional_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hafs_regional_atm_thompson_gfdlsf +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hafs_regional_atm_thompson_gfdlsf Checking test 123 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 324.796742 - 0: The maximum resident set size (KB) = 1414292 + 0: The total amount of wall time = 309.118887 + 0: The maximum resident set size (KB) = 1399648 Test 123 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hafs_regional_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hafs_regional_atm_ocn Checking test 124 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4266,14 +4266,14 @@ Checking test 124 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 387.538532 - 0: The maximum resident set size (KB) = 1223576 + 0: The total amount of wall time = 391.374709 + 0: The maximum resident set size (KB) = 1221612 Test 124 hafs_regional_atm_ocn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hafs_regional_atm_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hafs_regional_atm_wav Checking test 125 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4282,14 +4282,14 @@ Checking test 125 hafs_regional_atm_wav 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 = 743.235256 - 0: The maximum resident set size (KB) = 1245540 + 0: The total amount of wall time = 745.023783 + 0: The maximum resident set size (KB) = 1247500 Test 125 hafs_regional_atm_wav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hafs_regional_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hafs_regional_atm_ocn_wav Checking test 126 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4300,28 +4300,28 @@ Checking test 126 hafs_regional_atm_ocn_wav 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 = 847.568297 - 0: The maximum resident set size (KB) = 1271868 + 0: The total amount of wall time = 841.290650 + 0: The maximum resident set size (KB) = 1259688 Test 126 hafs_regional_atm_ocn_wav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hafs_regional_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hafs_regional_1nest_atm Checking test 127 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 320.685898 - 0: The maximum resident set size (KB) = 499744 + 0: The total amount of wall time = 318.079058 + 0: The maximum resident set size (KB) = 504332 Test 127 hafs_regional_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hafs_regional_telescopic_2nests_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hafs_regional_telescopic_2nests_atm Checking test 128 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4330,28 +4330,28 @@ Checking test 128 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 366.681780 - 0: The maximum resident set size (KB) = 509456 + 0: The total amount of wall time = 363.724567 + 0: The maximum resident set size (KB) = 513708 Test 128 hafs_regional_telescopic_2nests_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hafs_global_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hafs_global_1nest_atm Checking test 129 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 149.243943 - 0: The maximum resident set size (KB) = 348240 + 0: The total amount of wall time = 148.081087 + 0: The maximum resident set size (KB) = 350400 Test 129 hafs_global_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_multiple_4nests_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hafs_global_multiple_4nests_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hafs_global_multiple_4nests_atm Checking test 130 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4369,14 +4369,14 @@ Checking test 130 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 413.666357 - 0: The maximum resident set size (KB) = 451952 + 0: The total amount of wall time = 411.217716 + 0: The maximum resident set size (KB) = 422552 Test 130 hafs_global_multiple_4nests_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hafs_regional_specified_moving_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hafs_regional_specified_moving_1nest_atm Checking test 131 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4385,28 +4385,28 @@ Checking test 131 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 204.399616 - 0: The maximum resident set size (KB) = 522440 + 0: The total amount of wall time = 201.418022 + 0: The maximum resident set size (KB) = 520736 Test 131 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hafs_regional_storm_following_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hafs_regional_storm_following_1nest_atm Checking test 132 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 191.385448 - 0: The maximum resident set size (KB) = 524480 + 0: The total amount of wall time = 189.602653 + 0: The maximum resident set size (KB) = 519200 Test 132 hafs_regional_storm_following_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hafs_regional_storm_following_1nest_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hafs_regional_storm_following_1nest_atm_ocn Checking test 133 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4415,42 +4415,42 @@ Checking test 133 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 225.239918 - 0: The maximum resident set size (KB) = 558700 + 0: The total amount of wall time = 222.832744 + 0: The maximum resident set size (KB) = 562000 Test 133 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hafs_global_storm_following_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hafs_global_storm_following_1nest_atm Checking test 134 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 58.478480 - 0: The maximum resident set size (KB) = 371540 + 0: The total amount of wall time = 59.869879 + 0: The maximum resident set size (KB) = 368308 Test 134 hafs_global_storm_following_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 709.842285 - 0: The maximum resident set size (KB) = 580008 + 0: The total amount of wall time = 722.447572 + 0: The maximum resident set size (KB) = 578176 Test 135 hafs_regional_storm_following_1nest_atm_ocn_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 136 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4461,14 +4461,14 @@ Checking test 136 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 483.505918 - 0: The maximum resident set size (KB) = 618044 + 0: The total amount of wall time = 483.535901 + 0: The maximum resident set size (KB) = 620020 Test 136 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_docn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hafs_regional_docn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hafs_regional_docn Checking test 137 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4476,14 +4476,14 @@ Checking test 137 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 358.455072 - 0: The maximum resident set size (KB) = 1234820 + 0: The total amount of wall time = 357.137667 + 0: The maximum resident set size (KB) = 1225568 Test 137 hafs_regional_docn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_docn_oisst -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hafs_regional_docn_oisst +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hafs_regional_docn_oisst Checking test 138 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4491,131 +4491,131 @@ Checking test 138 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 360.612792 - 0: The maximum resident set size (KB) = 1218460 + 0: The total amount of wall time = 356.823961 + 0: The maximum resident set size (KB) = 1212636 Test 138 hafs_regional_docn_oisst PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_datm_cdeps -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/hafs_regional_datm_cdeps +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hafs_regional_datm_cdeps Checking test 139 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 965.447061 - 0: The maximum resident set size (KB) = 1040256 + 0: The total amount of wall time = 954.011029 + 0: The maximum resident set size (KB) = 1041504 Test 139 hafs_regional_datm_cdeps PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/datm_cdeps_control_cfsr Checking test 140 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 155.127299 - 0: The maximum resident set size (KB) = 1058584 + 0: The total amount of wall time = 152.245264 + 0: The maximum resident set size (KB) = 1070292 Test 140 datm_cdeps_control_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/datm_cdeps_restart_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/datm_cdeps_restart_cfsr Checking test 141 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 92.649635 - 0: The maximum resident set size (KB) = 1017456 + 0: The total amount of wall time = 91.113047 + 0: The maximum resident set size (KB) = 1010236 Test 141 datm_cdeps_restart_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/datm_cdeps_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/datm_cdeps_control_gefs Checking test 142 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 151.026390 - 0: The maximum resident set size (KB) = 963592 + 0: The total amount of wall time = 149.651808 + 0: The maximum resident set size (KB) = 961348 Test 142 datm_cdeps_control_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_iau_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/datm_cdeps_iau_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/datm_cdeps_iau_gefs Checking test 143 datm_cdeps_iau_gefs 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 = 152.152208 - 0: The maximum resident set size (KB) = 968144 + 0: The total amount of wall time = 152.982446 + 0: The maximum resident set size (KB) = 959748 Test 143 datm_cdeps_iau_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_stochy_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/datm_cdeps_stochy_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/datm_cdeps_stochy_gefs Checking test 144 datm_cdeps_stochy_gefs 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 = 154.195511 - 0: The maximum resident set size (KB) = 969552 + 0: The total amount of wall time = 154.464637 + 0: The maximum resident set size (KB) = 960892 Test 144 datm_cdeps_stochy_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_ciceC_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/datm_cdeps_ciceC_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/datm_cdeps_ciceC_cfsr Checking test 145 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 158.554497 - 0: The maximum resident set size (KB) = 1064436 + 0: The total amount of wall time = 153.435664 + 0: The maximum resident set size (KB) = 1067460 Test 145 datm_cdeps_ciceC_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/datm_cdeps_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/datm_cdeps_bulk_cfsr Checking test 146 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 157.035213 - 0: The maximum resident set size (KB) = 1062288 + 0: The total amount of wall time = 152.318899 + 0: The maximum resident set size (KB) = 1054336 Test 146 datm_cdeps_bulk_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/datm_cdeps_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/datm_cdeps_bulk_gefs Checking test 147 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.895376 - 0: The maximum resident set size (KB) = 967068 + 0: The total amount of wall time = 150.977234 + 0: The maximum resident set size (KB) = 961736 Test 147 datm_cdeps_bulk_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/datm_cdeps_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/datm_cdeps_mx025_cfsr Checking test 148 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4624,14 +4624,14 @@ Checking test 148 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 458.002044 - 0: The maximum resident set size (KB) = 879412 + 0: The total amount of wall time = 419.501905 + 0: The maximum resident set size (KB) = 884920 Test 148 datm_cdeps_mx025_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/datm_cdeps_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/datm_cdeps_mx025_gefs Checking test 149 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4640,77 +4640,77 @@ Checking test 149 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 459.538249 - 0: The maximum resident set size (KB) = 935800 + 0: The total amount of wall time = 429.839144 + 0: The maximum resident set size (KB) = 936652 Test 149 datm_cdeps_mx025_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/datm_cdeps_multiple_files_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/datm_cdeps_multiple_files_cfsr Checking test 150 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 153.093055 - 0: The maximum resident set size (KB) = 1059268 + 0: The total amount of wall time = 156.821041 + 0: The maximum resident set size (KB) = 1062268 Test 150 datm_cdeps_multiple_files_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/datm_cdeps_3072x1536_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/datm_cdeps_3072x1536_cfsr Checking test 151 datm_cdeps_3072x1536_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 217.838480 - 0: The maximum resident set size (KB) = 2306744 + 0: The total amount of wall time = 221.703392 + 0: The maximum resident set size (KB) = 2362296 Test 151 datm_cdeps_3072x1536_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_gfs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/datm_cdeps_gfs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/datm_cdeps_gfs Checking test 152 datm_cdeps_gfs 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 = 219.263927 - 0: The maximum resident set size (KB) = 2354212 + 0: The total amount of wall time = 222.344843 + 0: The maximum resident set size (KB) = 2360852 Test 152 datm_cdeps_gfs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/datm_cdeps_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/datm_cdeps_debug_cfsr Checking test 153 datm_cdeps_debug_cfsr 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 = 360.530708 - 0: The maximum resident set size (KB) = 980596 + 0: The total amount of wall time = 356.256004 + 0: The maximum resident set size (KB) = 993768 Test 153 datm_cdeps_debug_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/datm_cdeps_control_cfsr_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/datm_cdeps_control_cfsr_faster Checking test 154 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 153.623201 - 0: The maximum resident set size (KB) = 1062244 + 0: The total amount of wall time = 152.167901 + 0: The maximum resident set size (KB) = 1069080 Test 154 datm_cdeps_control_cfsr_faster PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/datm_cdeps_lnd_gswp3 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/datm_cdeps_lnd_gswp3 Checking test 155 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4719,14 +4719,14 @@ Checking test 155 datm_cdeps_lnd_gswp3 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.768949 - 0: The maximum resident set size (KB) = 258304 + 0: The total amount of wall time = 6.859700 + 0: The maximum resident set size (KB) = 265580 Test 155 datm_cdeps_lnd_gswp3 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/datm_cdeps_lnd_gswp3_rst +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/datm_cdeps_lnd_gswp3_rst Checking test 156 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4735,14 +4735,14 @@ Checking test 156 datm_cdeps_lnd_gswp3_rst 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.298967 - 0: The maximum resident set size (KB) = 265548 + 0: The total amount of wall time = 12.597385 + 0: The maximum resident set size (KB) = 265384 Test 156 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_atmlnd_sbs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_p8_atmlnd_sbs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_p8_atmlnd_sbs Checking test 157 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4827,14 +4827,14 @@ Checking test 157 control_p8_atmlnd_sbs 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 = 206.961914 - 0: The maximum resident set size (KB) = 1587552 + 0: The total amount of wall time = 207.654375 + 0: The maximum resident set size (KB) = 1607796 Test 157 control_p8_atmlnd_sbs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/atmwav_control_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/atmwav_control_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/atmwav_control_noaero_p8 Checking test 158 atmwav_control_noaero_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4877,14 +4877,14 @@ Checking test 158 atmwav_control_noaero_p8 results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 96.375286 - 0: The maximum resident set size (KB) = 1607224 + 0: The total amount of wall time = 92.160044 + 0: The maximum resident set size (KB) = 1629748 Test 158 atmwav_control_noaero_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_atmwav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/control_atmwav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_atmwav Checking test 159 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4928,14 +4928,14 @@ Checking test 159 control_atmwav 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.163925 - 0: The maximum resident set size (KB) = 660180 + 0: The total amount of wall time = 86.575261 + 0: The maximum resident set size (KB) = 662320 Test 159 control_atmwav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/atmaero_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/atmaero_control_p8 Checking test 160 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4979,14 +4979,14 @@ Checking test 160 atmaero_control_p8 results .... Comparing 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.371520 - 0: The maximum resident set size (KB) = 2978856 + 0: The total amount of wall time = 230.038896 + 0: The maximum resident set size (KB) = 2966456 Test 160 atmaero_control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8_rad -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/atmaero_control_p8_rad +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/atmaero_control_p8_rad Checking test 161 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5030,14 +5030,14 @@ Checking test 161 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 282.810634 - 0: The maximum resident set size (KB) = 3044764 + 0: The total amount of wall time = 288.920746 + 0: The maximum resident set size (KB) = 3049556 Test 161 atmaero_control_p8_rad PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8_rad_micro -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/atmaero_control_p8_rad_micro +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/atmaero_control_p8_rad_micro Checking test 162 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5081,14 +5081,14 @@ Checking test 162 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 290.275001 - 0: The maximum resident set size (KB) = 3048520 + 0: The total amount of wall time = 286.236572 + 0: The maximum resident set size (KB) = 3048420 Test 162 atmaero_control_p8_rad_micro PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/regional_atmaq +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/regional_atmaq Checking test 163 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5104,14 +5104,14 @@ Checking test 163 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 645.763304 - 0: The maximum resident set size (KB) = 1451852 + 0: The total amount of wall time = 644.020082 + 0: The maximum resident set size (KB) = 1449276 Test 163 regional_atmaq PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/regional_atmaq_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/regional_atmaq_debug Checking test 164 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5125,14 +5125,14 @@ Checking test 164 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1197.774812 - 0: The maximum resident set size (KB) = 1378572 + 0: The total amount of wall time = 1184.873163 + 0: The maximum resident set size (KB) = 1222468 Test 164 regional_atmaq_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_5348/regional_atmaq_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/regional_atmaq_faster Checking test 165 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5148,12 +5148,12 @@ Checking test 165 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 559.468073 - 0: The maximum resident set size (KB) = 1438220 + 0: The total amount of wall time = 556.870228 + 0: The maximum resident set size (KB) = 1413828 Test 165 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Wed Apr 19 06:43:42 UTC 2023 -Elapsed time: 01h:29m:30s. Have a nice day! +Sat Apr 22 01:30:42 UTC 2023 +Elapsed time: 05h:42m:18s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index 9ece7063c79..10e339b92a9 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,43 +1,43 @@ -Thu Apr 20 01:22:51 UTC 2023 +Fri Apr 21 19:23:58 UTC 2023 Start Regression test -Compile 001 elapsed time 2030 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 002 elapsed time 2031 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 003 elapsed time 1943 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 004 elapsed time 339 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 270 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 1711 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 007 elapsed time 1429 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 008 elapsed time 3373 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 009 elapsed time 1829 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 010 elapsed time 1774 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 011 elapsed time 1682 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 012 elapsed time 1578 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 013 elapsed time 2011 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 014 elapsed time 320 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 191 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 1609 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 017 elapsed time 1627 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 018 elapsed time 176 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 190 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 1428 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 001 elapsed time 1992 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 002 elapsed time 2067 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 003 elapsed time 1863 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 004 elapsed time 336 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 280 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 1698 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 007 elapsed time 1664 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 008 elapsed time 3335 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 009 elapsed time 1751 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 010 elapsed time 1717 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 011 elapsed time 1664 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 012 elapsed time 1560 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 013 elapsed time 1983 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 014 elapsed time 279 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 234 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 1596 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 017 elapsed time 1618 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 018 elapsed time 244 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 210 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 1715 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 021 elapsed time 286 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 2128 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 023 elapsed time 1663 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 024 elapsed time 286 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 025 elapsed time 162 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 300 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 027 elapsed time 81 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 028 elapsed time 1442 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 029 elapsed time 1685 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 030 elapsed time 1662 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 031 elapsed time 1640 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 032 elapsed time 1298 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 022 elapsed time 2119 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 023 elapsed time 1683 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 024 elapsed time 268 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 025 elapsed time 155 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 309 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 027 elapsed time 113 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 028 elapsed time 1735 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 029 elapsed time 1696 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 030 elapsed time 1705 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 031 elapsed time 1638 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 032 elapsed time 1662 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON Compile 033 elapsed time 256 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 034 elapsed time 1836 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 034 elapsed time 1822 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8_mixedmode -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/cpld_control_p8_mixedmode +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -102,14 +102,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 471.023100 - 0: The maximum resident set size (KB) = 1751236 + 0: The total amount of wall time = 443.630985 + 0: The maximum resident set size (KB) = 1748088 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_gfsv17 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/cpld_control_gfsv17 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -173,14 +173,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 326.361741 - 0: The maximum resident set size (KB) = 1634784 + 0: The total amount of wall time = 331.183592 + 0: The maximum resident set size (KB) = 1644520 Test 002 cpld_control_gfsv17 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/cpld_control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -245,14 +245,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 503.220807 - 0: The maximum resident set size (KB) = 1783208 + 0: The total amount of wall time = 488.318913 + 0: The maximum resident set size (KB) = 1798424 Test 003 cpld_control_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/cpld_restart_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -305,14 +305,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 285.707039 - 0: The maximum resident set size (KB) = 1483892 + 0: The total amount of wall time = 291.252508 + 0: The maximum resident set size (KB) = 1484524 Test 004 cpld_restart_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/cpld_control_qr_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -377,14 +377,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 507.838849 - 0: The maximum resident set size (KB) = 1807104 + 0: The total amount of wall time = 491.324838 + 0: The maximum resident set size (KB) = 1796404 Test 005 cpld_control_qr_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/cpld_restart_qr_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -437,14 +437,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 300.629254 - 0: The maximum resident set size (KB) = 1507292 + 0: The total amount of wall time = 284.363778 + 0: The maximum resident set size (KB) = 1501980 Test 006 cpld_restart_qr_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/cpld_2threads_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -497,14 +497,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 518.598137 - 0: The maximum resident set size (KB) = 1993992 + 0: The total amount of wall time = 521.611812 + 0: The maximum resident set size (KB) = 2004188 Test 007 cpld_2threads_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/cpld_decomp_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -557,14 +557,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 493.489545 - 0: The maximum resident set size (KB) = 1793188 + 0: The total amount of wall time = 492.194939 + 0: The maximum resident set size (KB) = 1766724 Test 008 cpld_decomp_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/cpld_mpi_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -617,14 +617,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 448.890572 - 0: The maximum resident set size (KB) = 1748764 + 0: The total amount of wall time = 424.448168 + 0: The maximum resident set size (KB) = 1750292 Test 009 cpld_mpi_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_ciceC_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/cpld_control_ciceC_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -689,14 +689,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 488.363646 - 0: The maximum resident set size (KB) = 1797360 + 0: The total amount of wall time = 494.573432 + 0: The maximum resident set size (KB) = 1808072 Test 010 cpld_control_ciceC_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_noaero_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/cpld_control_noaero_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_control_noaero_p8 Checking test 011 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -760,14 +760,14 @@ Checking test 011 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 356.484684 - 0: The maximum resident set size (KB) = 1625508 + 0: The total amount of wall time = 368.322322 + 0: The maximum resident set size (KB) = 1620016 Test 011 cpld_control_noaero_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/cpld_control_nowave_noaero_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_control_nowave_noaero_p8 Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -829,14 +829,14 @@ Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 364.712288 - 0: The maximum resident set size (KB) = 1670948 + 0: The total amount of wall time = 371.515692 + 0: The maximum resident set size (KB) = 1670540 Test 012 cpld_control_nowave_noaero_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_debug_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/cpld_debug_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_debug_p8 Checking test 013 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -889,14 +889,14 @@ Checking test 013 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 739.488722 - 0: The maximum resident set size (KB) = 1810320 + 0: The total amount of wall time = 679.826066 + 0: The maximum resident set size (KB) = 1811208 Test 013 cpld_debug_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_debug_noaero_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/cpld_debug_noaero_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_debug_noaero_p8 Checking test 014 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -948,14 +948,14 @@ Checking test 014 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 489.168997 - 0: The maximum resident set size (KB) = 1637708 + 0: The total amount of wall time = 474.215220 + 0: The maximum resident set size (KB) = 1633928 Test 014 cpld_debug_noaero_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/cpld_control_noaero_p8_agrid +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_control_noaero_p8_agrid Checking test 015 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1017,14 +1017,14 @@ Checking test 015 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 390.448759 - 0: The maximum resident set size (KB) = 1686268 + 0: The total amount of wall time = 406.047024 + 0: The maximum resident set size (KB) = 1672424 Test 015 cpld_control_noaero_p8_agrid PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c48 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/cpld_control_c48 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_control_c48 Checking test 016 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1074,14 +1074,14 @@ Checking test 016 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 726.859506 - 0: The maximum resident set size (KB) = 2777348 + 0: The total amount of wall time = 798.535254 + 0: The maximum resident set size (KB) = 2766512 Test 016 cpld_control_c48 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_warmstart_c48 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/cpld_warmstart_c48 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_warmstart_c48 Checking test 017 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1131,14 +1131,14 @@ Checking test 017 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 217.001570 - 0: The maximum resident set size (KB) = 2773168 + 0: The total amount of wall time = 222.475568 + 0: The maximum resident set size (KB) = 2767428 Test 017 cpld_warmstart_c48 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_warmstart_c48 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/cpld_restart_c48 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_restart_c48 Checking test 018 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1188,14 +1188,14 @@ Checking test 018 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 118.497683 - 0: The maximum resident set size (KB) = 2205900 + 0: The total amount of wall time = 114.744559 + 0: The maximum resident set size (KB) = 2205308 Test 018 cpld_restart_c48 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8_faster -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/cpld_control_p8_faster +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_control_p8_faster Checking test 019 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1260,14 +1260,14 @@ Checking test 019 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 520.790463 - 0: The maximum resident set size (KB) = 1775280 + 0: The total amount of wall time = 480.888272 + 0: The maximum resident set size (KB) = 1777892 Test 019 cpld_control_p8_faster PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_CubedSphereGrid +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_CubedSphereGrid Checking test 020 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1294,28 +1294,28 @@ Checking test 020 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 200.224609 - 0: The maximum resident set size (KB) = 573800 + 0: The total amount of wall time = 188.426509 + 0: The maximum resident set size (KB) = 571816 Test 020 control_CubedSphereGrid PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid_parallel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_CubedSphereGrid_parallel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_CubedSphereGrid_parallel Checking test 021 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing atmf024.nc .........OK - 0: The total amount of wall time = 184.837725 - 0: The maximum resident set size (KB) = 573912 + 0: The total amount of wall time = 188.132647 + 0: The maximum resident set size (KB) = 574228 Test 021 control_CubedSphereGrid_parallel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_latlon -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_latlon +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_latlon Checking test 022 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1326,16 +1326,16 @@ Checking test 022 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 205.481641 - 0: The maximum resident set size (KB) = 570600 + 0: The total amount of wall time = 189.950633 + 0: The maximum resident set size (KB) = 573592 Test 022 control_latlon PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_wrtGauss_netcdf_parallel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_wrtGauss_netcdf_parallel Checking test 023 control_wrtGauss_netcdf_parallel results .... - Comparing sfcf000.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK @@ -1344,14 +1344,14 @@ Checking test 023 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 201.020578 - 0: The maximum resident set size (KB) = 574816 + 0: The total amount of wall time = 196.680383 + 0: The maximum resident set size (KB) = 570252 Test 023 control_wrtGauss_netcdf_parallel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c48 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_c48 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_c48 Checking test 024 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1390,14 +1390,14 @@ Checking test 024 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 600.623285 -0: The maximum resident set size (KB) = 799740 +0: The total amount of wall time = 603.166283 +0: The maximum resident set size (KB) = 793988 Test 024 control_c48 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c192 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_c192 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_c192 Checking test 025 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1408,14 +1408,14 @@ Checking test 025 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 767.489242 - 0: The maximum resident set size (KB) = 690204 + 0: The total amount of wall time = 743.418199 + 0: The maximum resident set size (KB) = 691972 Test 025 control_c192 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c384 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_c384 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_c384 Checking test 026 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1426,14 +1426,14 @@ Checking test 026 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1014.774079 - 0: The maximum resident set size (KB) = 1048440 + 0: The total amount of wall time = 958.148980 + 0: The maximum resident set size (KB) = 1059312 Test 026 control_c384 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c384gdas -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_c384gdas +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_c384gdas Checking test 027 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1476,14 +1476,14 @@ Checking test 027 control_c384gdas 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 = 882.546680 - 0: The maximum resident set size (KB) = 1191424 + 0: The total amount of wall time = 839.067430 + 0: The maximum resident set size (KB) = 1197748 Test 027 control_c384gdas PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_stochy +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_stochy Checking test 028 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1494,28 +1494,28 @@ Checking test 028 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 125.895933 - 0: The maximum resident set size (KB) = 572280 + 0: The total amount of wall time = 134.646865 + 0: The maximum resident set size (KB) = 576192 Test 028 control_stochy PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_stochy_restart +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_stochy_restart Checking test 029 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 73.197096 - 0: The maximum resident set size (KB) = 393264 + 0: The total amount of wall time = 69.854432 + 0: The maximum resident set size (KB) = 392044 Test 029 control_stochy_restart PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_lndp -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_lndp +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_lndp Checking test 030 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1526,14 +1526,14 @@ Checking test 030 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 117.994735 - 0: The maximum resident set size (KB) = 577504 + 0: The total amount of wall time = 119.688203 + 0: The maximum resident set size (KB) = 573868 Test 030 control_lndp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_iovr4 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_iovr4 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_iovr4 Checking test 031 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1548,14 +1548,14 @@ Checking test 031 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 220.796015 - 0: The maximum resident set size (KB) = 574636 + 0: The total amount of wall time = 198.595043 + 0: The maximum resident set size (KB) = 580532 Test 031 control_iovr4 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_iovr5 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_iovr5 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_iovr5 Checking test 032 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1570,14 +1570,14 @@ Checking test 032 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 199.874858 - 0: The maximum resident set size (KB) = 572212 + 0: The total amount of wall time = 194.721438 + 0: The maximum resident set size (KB) = 571220 Test 032 control_iovr5 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_p8 Checking test 033 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1624,14 +1624,14 @@ Checking test 033 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 245.810373 - 0: The maximum resident set size (KB) = 1531884 + 0: The total amount of wall time = 240.650993 + 0: The maximum resident set size (KB) = 1546696 Test 033 control_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_restart_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_restart_p8 Checking test 034 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1670,14 +1670,14 @@ Checking test 034 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 136.557604 - 0: The maximum resident set size (KB) = 776400 + 0: The total amount of wall time = 126.378364 + 0: The maximum resident set size (KB) = 775728 Test 034 control_restart_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_qr_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_qr_p8 Checking test 035 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1724,14 +1724,14 @@ Checking test 035 control_qr_p8 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 = 236.610506 - 0: The maximum resident set size (KB) = 1553348 + 0: The total amount of wall time = 243.732579 + 0: The maximum resident set size (KB) = 1543412 Test 035 control_qr_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_restart_qr_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_restart_qr_p8 Checking test 036 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1770,14 +1770,14 @@ Checking test 036 control_restart_qr_p8 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 = 130.466269 - 0: The maximum resident set size (KB) = 787096 + 0: The total amount of wall time = 131.908070 + 0: The maximum resident set size (KB) = 785884 Test 036 control_restart_qr_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_decomp_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_decomp_p8 Checking test 037 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1820,14 +1820,14 @@ Checking test 037 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 247.179512 - 0: The maximum resident set size (KB) = 1530352 + 0: The total amount of wall time = 241.155908 + 0: The maximum resident set size (KB) = 1521360 Test 037 control_decomp_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_2threads_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_2threads_p8 Checking test 038 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1870,14 +1870,14 @@ Checking test 038 control_2threads_p8 results .... Comparing 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.830156 - 0: The maximum resident set size (KB) = 1620136 + 0: The total amount of wall time = 224.822693 + 0: The maximum resident set size (KB) = 1613368 Test 038 control_2threads_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_lndp -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_p8_lndp +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_p8_lndp Checking test 039 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1896,14 +1896,14 @@ Checking test 039 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 442.108303 - 0: The maximum resident set size (KB) = 1555992 + 0: The total amount of wall time = 435.362457 + 0: The maximum resident set size (KB) = 1536500 Test 039 control_p8_lndp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_rrtmgp -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_p8_rrtmgp +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_p8_rrtmgp Checking test 040 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1950,14 +1950,14 @@ Checking test 040 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 326.890762 - 0: The maximum resident set size (KB) = 1619692 + 0: The total amount of wall time = 320.835062 + 0: The maximum resident set size (KB) = 1602100 Test 040 control_p8_rrtmgp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_mynn -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_p8_mynn +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_p8_mynn Checking test 041 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2004,14 +2004,14 @@ Checking test 041 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 253.373856 - 0: The maximum resident set size (KB) = 1551524 + 0: The total amount of wall time = 242.330984 + 0: The maximum resident set size (KB) = 1535920 Test 041 control_p8_mynn PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/merra2_thompson -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/merra2_thompson +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/merra2_thompson Checking test 042 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2058,14 +2058,14 @@ Checking test 042 merra2_thompson results .... Comparing 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.080579 - 0: The maximum resident set size (KB) = 1561244 + 0: The total amount of wall time = 285.080429 + 0: The maximum resident set size (KB) = 1549260 Test 042 merra2_thompson PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/regional_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/regional_control Checking test 043 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2076,28 +2076,28 @@ Checking test 043 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 433.017172 - 0: The maximum resident set size (KB) = 786528 + 0: The total amount of wall time = 442.944459 + 0: The maximum resident set size (KB) = 786948 Test 043 regional_control PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/regional_restart +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/regional_restart Checking test 044 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 245.348614 - 0: The maximum resident set size (KB) = 778380 + 0: The total amount of wall time = 225.249457 + 0: The maximum resident set size (KB) = 778636 Test 044 regional_restart PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/regional_control_qr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/regional_control_qr Checking test 045 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2108,28 +2108,28 @@ Checking test 045 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 431.533698 - 0: The maximum resident set size (KB) = 787612 + 0: The total amount of wall time = 414.086159 + 0: The maximum resident set size (KB) = 785144 Test 045 regional_control_qr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/regional_restart_qr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/regional_restart_qr Checking test 046 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 211.103906 - 0: The maximum resident set size (KB) = 780140 + 0: The total amount of wall time = 221.641734 + 0: The maximum resident set size (KB) = 775684 Test 046 regional_restart_qr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/regional_decomp +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/regional_decomp Checking test 047 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2140,14 +2140,14 @@ Checking test 047 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 446.018869 - 0: The maximum resident set size (KB) = 784592 + 0: The total amount of wall time = 442.557101 + 0: The maximum resident set size (KB) = 787796 Test 047 regional_decomp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/regional_2threads +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/regional_2threads Checking test 048 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2158,28 +2158,28 @@ Checking test 048 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 287.199903 - 0: The maximum resident set size (KB) = 774776 + 0: The total amount of wall time = 280.961931 + 0: The maximum resident set size (KB) = 770928 Test 048 regional_2threads PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/regional_netcdf_parallel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/regional_netcdf_parallel Checking test 049 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK + Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 415.347450 - 0: The maximum resident set size (KB) = 781704 + 0: The total amount of wall time = 425.871812 + 0: The maximum resident set size (KB) = 782440 Test 049 regional_netcdf_parallel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/regional_2dwrtdecomp +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/regional_2dwrtdecomp Checking test 050 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2190,14 +2190,14 @@ Checking test 050 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 438.886244 - 0: The maximum resident set size (KB) = 788788 + 0: The total amount of wall time = 426.095455 + 0: The maximum resident set size (KB) = 784424 Test 050 regional_2dwrtdecomp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rap_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_control Checking test 051 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2244,14 +2244,14 @@ Checking test 051 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 639.612939 - 0: The maximum resident set size (KB) = 943796 + 0: The total amount of wall time = 623.215357 + 0: The maximum resident set size (KB) = 960468 Test 051 rap_control PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/regional_spp_sppt_shum_skeb +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/regional_spp_sppt_shum_skeb Checking test 052 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2262,14 +2262,14 @@ Checking test 052 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 336.065726 - 0: The maximum resident set size (KB) = 1098680 + 0: The total amount of wall time = 343.522599 + 0: The maximum resident set size (KB) = 1096248 Test 052 regional_spp_sppt_shum_skeb PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rap_decomp +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_decomp Checking test 053 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2316,14 +2316,14 @@ Checking test 053 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 690.097590 - 0: The maximum resident set size (KB) = 959332 + 0: The total amount of wall time = 659.138053 + 0: The maximum resident set size (KB) = 958128 Test 053 rap_decomp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rap_2threads +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_2threads Checking test 054 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2370,14 +2370,14 @@ Checking test 054 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 633.250524 - 0: The maximum resident set size (KB) = 1028704 + 0: The total amount of wall time = 613.461286 + 0: The maximum resident set size (KB) = 1030120 Test 054 rap_2threads PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rap_restart +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_restart Checking test 055 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2416,14 +2416,14 @@ Checking test 055 rap_restart results .... Comparing 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.214728 - 0: The maximum resident set size (KB) = 842572 + 0: The total amount of wall time = 327.493920 + 0: The maximum resident set size (KB) = 835396 Test 055 rap_restart PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rap_sfcdiff +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_sfcdiff Checking test 056 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2470,14 +2470,14 @@ Checking test 056 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 660.524169 - 0: The maximum resident set size (KB) = 958148 + 0: The total amount of wall time = 647.072706 + 0: The maximum resident set size (KB) = 958632 Test 056 rap_sfcdiff PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rap_sfcdiff_decomp +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_sfcdiff_decomp Checking test 057 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2524,14 +2524,14 @@ Checking test 057 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 750.003970 - 0: The maximum resident set size (KB) = 936984 + 0: The total amount of wall time = 671.183145 + 0: The maximum resident set size (KB) = 933992 Test 057 rap_sfcdiff_decomp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rap_sfcdiff_restart +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_sfcdiff_restart Checking test 058 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2570,14 +2570,14 @@ Checking test 058 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 485.212816 - 0: The maximum resident set size (KB) = 844540 + 0: The total amount of wall time = 470.966816 + 0: The maximum resident set size (KB) = 845672 Test 058 rap_sfcdiff_restart PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/hrrr_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/hrrr_control Checking test 059 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2624,14 +2624,14 @@ Checking test 059 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 652.012777 - 0: The maximum resident set size (KB) = 955004 + 0: The total amount of wall time = 598.166330 + 0: The maximum resident set size (KB) = 956280 Test 059 hrrr_control PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/hrrr_control_decomp +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/hrrr_control_decomp Checking test 060 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2678,14 +2678,14 @@ Checking test 060 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 657.066218 - 0: The maximum resident set size (KB) = 936668 + 0: The total amount of wall time = 643.000446 + 0: The maximum resident set size (KB) = 951820 Test 060 hrrr_control_decomp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/hrrr_control_2threads +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/hrrr_control_2threads Checking test 061 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2732,14 +2732,14 @@ Checking test 061 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 617.524370 - 0: The maximum resident set size (KB) = 1027948 + 0: The total amount of wall time = 586.053537 + 0: The maximum resident set size (KB) = 1021640 Test 061 hrrr_control_2threads PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/hrrr_control_restart +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/hrrr_control_restart Checking test 062 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2778,14 +2778,14 @@ Checking test 062 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 460.022702 - 0: The maximum resident set size (KB) = 839844 + 0: The total amount of wall time = 455.903230 + 0: The maximum resident set size (KB) = 834076 Test 062 hrrr_control_restart PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1beta -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rrfs_v1beta +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rrfs_v1beta Checking test 063 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2832,14 +2832,14 @@ Checking test 063 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 698.670666 - 0: The maximum resident set size (KB) = 958048 + 0: The total amount of wall time = 635.401598 + 0: The maximum resident set size (KB) = 944528 Test 063 rrfs_v1beta PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1nssl -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rrfs_v1nssl +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rrfs_v1nssl Checking test 064 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2854,14 +2854,14 @@ Checking test 064 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 821.298817 - 0: The maximum resident set size (KB) = 640556 + 0: The total amount of wall time = 757.369414 + 0: The maximum resident set size (KB) = 641540 Test 064 rrfs_v1nssl PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rrfs_v1nssl_nohailnoccn +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rrfs_v1nssl_nohailnoccn Checking test 065 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2876,14 +2876,14 @@ Checking test 065 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 826.883533 - 0: The maximum resident set size (KB) = 631072 + 0: The total amount of wall time = 751.446673 + 0: The maximum resident set size (KB) = 637340 Test 065 rrfs_v1nssl_nohailnoccn PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rrfs_smoke_conus13km_hrrr_warm Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2892,14 +2892,14 @@ Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 223.288108 - 0: The maximum resident set size (KB) = 909384 + 0: The total amount of wall time = 206.554490 + 0: The maximum resident set size (KB) = 901300 Test 066 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rrfs_smoke_conus13km_hrrr_warm_2threads +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 067 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2908,14 +2908,14 @@ Checking test 067 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 145.635281 - 0: The maximum resident set size (KB) = 869836 + 0: The total amount of wall time = 136.216368 + 0: The maximum resident set size (KB) = 870144 Test 067 rrfs_smoke_conus13km_hrrr_warm_2threads PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rrfs_conus13km_hrrr_warm +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rrfs_conus13km_hrrr_warm Checking test 068 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2924,14 +2924,14 @@ Checking test 068 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 195.579389 - 0: The maximum resident set size (KB) = 868896 + 0: The total amount of wall time = 182.135329 + 0: The maximum resident set size (KB) = 868064 Test 068 rrfs_conus13km_hrrr_warm PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rrfs_smoke_conus13km_radar_tten_warm +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rrfs_smoke_conus13km_radar_tten_warm Checking test 069 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2940,26 +2940,26 @@ Checking test 069 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 238.178758 - 0: The maximum resident set size (KB) = 917704 + 0: The total amount of wall time = 202.451376 + 0: The maximum resident set size (KB) = 914304 Test 069 rrfs_smoke_conus13km_radar_tten_warm PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 070 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 112.302736 - 0: The maximum resident set size (KB) = 848156 + 0: The total amount of wall time = 100.471581 + 0: The maximum resident set size (KB) = 846096 Test 070 rrfs_conus13km_hrrr_warm_restart_mismatch PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmg -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_csawmg +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_csawmg Checking test 071 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2970,14 +2970,14 @@ Checking test 071 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 469.488152 - 0: The maximum resident set size (KB) = 669280 + 0: The total amount of wall time = 483.792711 + 0: The maximum resident set size (KB) = 670204 Test 071 control_csawmg PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmgt -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_csawmgt +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_csawmgt Checking test 072 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2988,14 +2988,14 @@ Checking test 072 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 472.256143 - 0: The maximum resident set size (KB) = 670184 + 0: The total amount of wall time = 473.206316 + 0: The maximum resident set size (KB) = 670568 Test 072 control_csawmgt PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_ras -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_ras +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_ras Checking test 073 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3006,26 +3006,26 @@ Checking test 073 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 263.103841 - 0: The maximum resident set size (KB) = 638792 + 0: The total amount of wall time = 264.357137 + 0: The maximum resident set size (KB) = 633924 Test 073 control_ras PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wam -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_wam +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_wam Checking test 074 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 155.862357 - 0: The maximum resident set size (KB) = 487904 + 0: The total amount of wall time = 164.899145 + 0: The maximum resident set size (KB) = 480668 Test 074 control_wam PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_faster -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_p8_faster +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_p8_faster Checking test 075 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3072,14 +3072,14 @@ Checking test 075 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 263.519259 - 0: The maximum resident set size (KB) = 1547740 + 0: The total amount of wall time = 217.277743 + 0: The maximum resident set size (KB) = 1551652 Test 075 control_p8_faster PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control_faster -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/regional_control_faster +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/regional_control_faster Checking test 076 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3090,56 +3090,56 @@ Checking test 076 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 428.268179 - 0: The maximum resident set size (KB) = 785376 + 0: The total amount of wall time = 389.987092 + 0: The maximum resident set size (KB) = 786368 Test 076 regional_control_faster PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 077 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 1087.951622 - 0: The maximum resident set size (KB) = 958236 + 0: The total amount of wall time = 1082.810865 + 0: The maximum resident set size (KB) = 929788 Test 077 rrfs_smoke_conus13km_hrrr_warm_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 078 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 636.002976 - 0: The maximum resident set size (KB) = 899112 + 0: The total amount of wall time = 626.758931 + 0: The maximum resident set size (KB) = 897408 Test 078 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rrfs_conus13km_hrrr_warm_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rrfs_conus13km_hrrr_warm_debug Checking test 079 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 971.875701 - 0: The maximum resident set size (KB) = 900720 + 0: The total amount of wall time = 968.562793 + 0: The maximum resident set size (KB) = 898912 Test 079 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_CubedSphereGrid_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_CubedSphereGrid_debug Checking test 080 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3166,334 +3166,334 @@ Checking test 080 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 188.898946 - 0: The maximum resident set size (KB) = 733456 + 0: The total amount of wall time = 189.025535 + 0: The maximum resident set size (KB) = 734512 Test 080 control_CubedSphereGrid_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_wrtGauss_netcdf_parallel_debug Checking test 081 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 188.438443 - 0: The maximum resident set size (KB) = 733076 + 0: The total amount of wall time = 188.753733 + 0: The maximum resident set size (KB) = 730688 Test 081 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_stochy_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_stochy_debug Checking test 082 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 221.319339 - 0: The maximum resident set size (KB) = 735068 + 0: The total amount of wall time = 213.060189 + 0: The maximum resident set size (KB) = 739788 Test 082 control_stochy_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_lndp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_lndp_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_lndp_debug Checking test 083 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 192.339202 - 0: The maximum resident set size (KB) = 736844 + 0: The total amount of wall time = 190.504080 + 0: The maximum resident set size (KB) = 738304 Test 083 control_lndp_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmg_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_csawmg_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_csawmg_debug Checking test 084 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 303.943888 - 0: The maximum resident set size (KB) = 786612 + 0: The total amount of wall time = 302.509403 + 0: The maximum resident set size (KB) = 784688 Test 084 control_csawmg_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmgt_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_csawmgt_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_csawmgt_debug Checking test 085 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 298.877596 - 0: The maximum resident set size (KB) = 782520 + 0: The total amount of wall time = 296.951173 + 0: The maximum resident set size (KB) = 780828 Test 085 control_csawmgt_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_ras_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_ras_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_ras_debug Checking test 086 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 199.276896 - 0: The maximum resident set size (KB) = 746524 + 0: The total amount of wall time = 194.856618 + 0: The maximum resident set size (KB) = 747392 Test 086 control_ras_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_diag_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_diag_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_diag_debug Checking test 087 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 197.578336 - 0: The maximum resident set size (KB) = 791584 + 0: The total amount of wall time = 223.965022 + 0: The maximum resident set size (KB) = 790860 Test 087 control_diag_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_debug_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_debug_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_debug_p8 Checking test 088 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 252.010622 - 0: The maximum resident set size (KB) = 1559868 + 0: The total amount of wall time = 214.783883 + 0: The maximum resident set size (KB) = 1556540 Test 088 control_debug_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/regional_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/regional_debug Checking test 089 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1317.792560 - 0: The maximum resident set size (KB) = 805316 + 0: The total amount of wall time = 1279.188968 + 0: The maximum resident set size (KB) = 806432 Test 089 regional_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rap_control_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_control_debug Checking test 090 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 361.095472 - 0: The maximum resident set size (KB) = 1115896 + 0: The total amount of wall time = 351.317247 + 0: The maximum resident set size (KB) = 1108816 Test 090 rap_control_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/hrrr_control_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/hrrr_control_debug Checking test 091 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 342.479682 - 0: The maximum resident set size (KB) = 1113956 + 0: The total amount of wall time = 345.567716 + 0: The maximum resident set size (KB) = 1105116 Test 091 hrrr_control_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rap_unified_drag_suite_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_unified_drag_suite_debug Checking test 092 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 349.895458 - 0: The maximum resident set size (KB) = 1115420 + 0: The total amount of wall time = 350.868033 + 0: The maximum resident set size (KB) = 1114440 Test 092 rap_unified_drag_suite_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_diag_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rap_diag_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_diag_debug Checking test 093 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 376.580731 - 0: The maximum resident set size (KB) = 1196764 + 0: The total amount of wall time = 376.442306 + 0: The maximum resident set size (KB) = 1192512 Test 093 rap_diag_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rap_cires_ugwp_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_cires_ugwp_debug Checking test 094 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 358.947968 - 0: The maximum resident set size (KB) = 1107136 + 0: The total amount of wall time = 355.569394 + 0: The maximum resident set size (KB) = 1109908 Test 094 rap_cires_ugwp_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rap_unified_ugwp_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_unified_ugwp_debug Checking test 095 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 355.066938 - 0: The maximum resident set size (KB) = 1116540 + 0: The total amount of wall time = 355.065703 + 0: The maximum resident set size (KB) = 1111856 Test 095 rap_unified_ugwp_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_lndp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rap_lndp_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_lndp_debug Checking test 096 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 349.447598 - 0: The maximum resident set size (KB) = 1110652 + 0: The total amount of wall time = 366.910950 + 0: The maximum resident set size (KB) = 1109576 Test 096 rap_lndp_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_flake_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rap_flake_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_flake_debug Checking test 097 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 348.727387 - 0: The maximum resident set size (KB) = 1117756 + 0: The total amount of wall time = 349.271185 + 0: The maximum resident set size (KB) = 1105132 Test 097 rap_flake_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_progcld_thompson_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rap_progcld_thompson_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_progcld_thompson_debug Checking test 098 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 351.552945 - 0: The maximum resident set size (KB) = 1111844 + 0: The total amount of wall time = 351.988066 + 0: The maximum resident set size (KB) = 1107632 Test 098 rap_progcld_thompson_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_noah_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rap_noah_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_noah_debug Checking test 099 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 346.329701 - 0: The maximum resident set size (KB) = 1107444 + 0: The total amount of wall time = 343.453457 + 0: The maximum resident set size (KB) = 1113380 Test 099 rap_noah_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rap_sfcdiff_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_sfcdiff_debug Checking test 100 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 345.784204 - 0: The maximum resident set size (KB) = 1114204 + 0: The total amount of wall time = 355.031698 + 0: The maximum resident set size (KB) = 1115900 Test 100 rap_sfcdiff_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_noah_sfcdiff_cires_ugwp_debug Checking test 101 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 577.619688 - 0: The maximum resident set size (KB) = 1108080 + 0: The total amount of wall time = 577.169911 + 0: The maximum resident set size (KB) = 1113624 Test 101 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1beta_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rrfs_v1beta_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rrfs_v1beta_debug Checking test 102 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 343.219548 - 0: The maximum resident set size (KB) = 1110244 + 0: The total amount of wall time = 346.348804 + 0: The maximum resident set size (KB) = 1111072 Test 102 rrfs_v1beta_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wam_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_wam_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_wam_debug Checking test 103 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 361.814200 - 0: The maximum resident set size (KB) = 433612 + 0: The total amount of wall time = 364.722562 + 0: The maximum resident set size (KB) = 432968 Test 103 control_wam_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3504,14 +3504,14 @@ Checking test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 354.452830 - 0: The maximum resident set size (KB) = 986824 + 0: The total amount of wall time = 301.648563 + 0: The maximum resident set size (KB) = 979260 Test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_control_dyn32_phy32 Checking test 105 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3558,14 +3558,14 @@ Checking test 105 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 620.502372 - 0: The maximum resident set size (KB) = 843384 + 0: The total amount of wall time = 535.712665 + 0: The maximum resident set size (KB) = 839668 Test 105 rap_control_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/hrrr_control_dyn32_phy32 Checking test 106 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3612,14 +3612,14 @@ Checking test 106 hrrr_control_dyn32_phy32 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 = 338.040144 - 0: The maximum resident set size (KB) = 836352 + 0: The total amount of wall time = 278.418249 + 0: The maximum resident set size (KB) = 839700 Test 106 hrrr_control_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rap_2threads_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_2threads_dyn32_phy32 Checking test 107 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3666,14 +3666,14 @@ Checking test 107 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 576.454580 - 0: The maximum resident set size (KB) = 894424 + 0: The total amount of wall time = 505.019702 + 0: The maximum resident set size (KB) = 879956 Test 107 rap_2threads_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/hrrr_control_2threads_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/hrrr_control_2threads_dyn32_phy32 Checking test 108 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3720,14 +3720,14 @@ Checking test 108 hrrr_control_2threads_dyn32_phy32 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 = 324.716508 - 0: The maximum resident set size (KB) = 879288 + 0: The total amount of wall time = 269.089527 + 0: The maximum resident set size (KB) = 886724 Test 108 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/hrrr_control_decomp_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/hrrr_control_decomp_dyn32_phy32 Checking test 109 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3774,14 +3774,14 @@ Checking test 109 hrrr_control_decomp_dyn32_phy32 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 = 317.177707 - 0: The maximum resident set size (KB) = 828512 + 0: The total amount of wall time = 298.957549 + 0: The maximum resident set size (KB) = 828132 Test 109 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rap_restart_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_restart_dyn32_phy32 Checking test 110 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3820,14 +3820,14 @@ Checking test 110 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 471.966131 - 0: The maximum resident set size (KB) = 804300 + 0: The total amount of wall time = 432.291553 + 0: The maximum resident set size (KB) = 807572 Test 110 rap_restart_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/hrrr_control_restart_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/hrrr_control_restart_dyn32_phy32 Checking test 111 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3866,14 +3866,14 @@ Checking test 111 hrrr_control_restart_dyn32_phy32 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 = 149.883309 - 0: The maximum resident set size (KB) = 763372 + 0: The total amount of wall time = 140.258455 + 0: The maximum resident set size (KB) = 760480 Test 111 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn64_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rap_control_dyn64_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_control_dyn64_phy32 Checking test 112 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3920,81 +3920,81 @@ Checking test 112 rap_control_dyn64_phy32 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 = 345.872111 - 0: The maximum resident set size (KB) = 869968 + 0: The total amount of wall time = 324.036989 + 0: The maximum resident set size (KB) = 876780 Test 112 rap_control_dyn64_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rap_control_debug_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_control_debug_dyn32_phy32 Checking test 113 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 345.750163 - 0: The maximum resident set size (KB) = 1005096 + 0: The total amount of wall time = 347.076640 + 0: The maximum resident set size (KB) = 999008 Test 113 rap_control_debug_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/hrrr_control_debug_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/hrrr_control_debug_dyn32_phy32 Checking test 114 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 342.044103 - 0: The maximum resident set size (KB) = 993304 + 0: The total amount of wall time = 343.078375 + 0: The maximum resident set size (KB) = 992836 Test 114 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/rap_control_dyn64_phy32_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_control_dyn64_phy32_debug Checking test 115 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 353.196964 - 0: The maximum resident set size (KB) = 1030964 + 0: The total amount of wall time = 354.159035 + 0: The maximum resident set size (KB) = 1031380 Test 115 rap_control_dyn64_phy32_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/hafs_regional_atm +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/hafs_regional_atm Checking test 116 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 590.226262 - 0: The maximum resident set size (KB) = 1226096 + 0: The total amount of wall time = 352.464767 + 0: The maximum resident set size (KB) = 1217452 Test 116 hafs_regional_atm PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/hafs_regional_atm_thompson_gfdlsf Checking test 117 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 1050.153711 - 0: The maximum resident set size (KB) = 1595064 + 0: The total amount of wall time = 470.490195 + 0: The maximum resident set size (KB) = 1502108 Test 117 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_ocn -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/hafs_regional_atm_ocn +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/hafs_regional_atm_ocn Checking test 118 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4003,14 +4003,14 @@ Checking test 118 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 736.682182 - 0: The maximum resident set size (KB) = 1305196 + 0: The total amount of wall time = 558.558158 + 0: The maximum resident set size (KB) = 1300624 Test 118 hafs_regional_atm_ocn PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_wav -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/hafs_regional_atm_wav +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/hafs_regional_atm_wav Checking test 119 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4019,14 +4019,14 @@ Checking test 119 hafs_regional_atm_wav 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 = 1102.865323 - 0: The maximum resident set size (KB) = 1326296 + 0: The total amount of wall time = 955.608380 + 0: The maximum resident set size (KB) = 1328064 Test 119 hafs_regional_atm_wav PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/hafs_regional_atm_ocn_wav +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/hafs_regional_atm_ocn_wav Checking test 120 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4037,14 +4037,14 @@ Checking test 120 hafs_regional_atm_ocn_wav 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 = 1179.307395 - 0: The maximum resident set size (KB) = 1285844 + 0: The total amount of wall time = 1075.541877 + 0: The maximum resident set size (KB) = 1350700 Test 120 hafs_regional_atm_ocn_wav PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_docn -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/hafs_regional_docn +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/hafs_regional_docn Checking test 121 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4052,14 +4052,14 @@ Checking test 121 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 568.395873 - 0: The maximum resident set size (KB) = 1306084 + 0: The total amount of wall time = 529.489892 + 0: The maximum resident set size (KB) = 1303712 Test 121 hafs_regional_docn PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_docn_oisst -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/hafs_regional_docn_oisst +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/hafs_regional_docn_oisst Checking test 122 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4067,118 +4067,118 @@ Checking test 122 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 560.591066 - 0: The maximum resident set size (KB) = 1291796 + 0: The total amount of wall time = 547.522988 + 0: The maximum resident set size (KB) = 1294196 Test 122 hafs_regional_docn_oisst PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/datm_cdeps_control_cfsr Checking test 123 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 251.058189 - 0: The maximum resident set size (KB) = 965460 + 0: The total amount of wall time = 228.220423 + 0: The maximum resident set size (KB) = 979576 Test 123 datm_cdeps_control_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/datm_cdeps_restart_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/datm_cdeps_restart_cfsr Checking test 124 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 172.540988 - 0: The maximum resident set size (KB) = 950172 + 0: The total amount of wall time = 148.822474 + 0: The maximum resident set size (KB) = 933456 Test 124 datm_cdeps_restart_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/datm_cdeps_control_gefs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/datm_cdeps_control_gefs Checking test 125 datm_cdeps_control_gefs 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 = 349.339181 - 0: The maximum resident set size (KB) = 867640 + 0: The total amount of wall time = 208.932438 + 0: The maximum resident set size (KB) = 861900 Test 125 datm_cdeps_control_gefs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_iau_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/datm_cdeps_iau_gefs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/datm_cdeps_iau_gefs Checking test 126 datm_cdeps_iau_gefs 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 = 278.714667 - 0: The maximum resident set size (KB) = 871204 + 0: The total amount of wall time = 223.586938 + 0: The maximum resident set size (KB) = 856936 Test 126 datm_cdeps_iau_gefs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_stochy_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/datm_cdeps_stochy_gefs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/datm_cdeps_stochy_gefs Checking test 127 datm_cdeps_stochy_gefs 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 = 292.379097 - 0: The maximum resident set size (KB) = 864304 + 0: The total amount of wall time = 221.337956 + 0: The maximum resident set size (KB) = 859412 Test 127 datm_cdeps_stochy_gefs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/datm_cdeps_ciceC_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/datm_cdeps_ciceC_cfsr Checking test 128 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 339.379104 - 0: The maximum resident set size (KB) = 967040 + 0: The total amount of wall time = 232.349424 + 0: The maximum resident set size (KB) = 970596 Test 128 datm_cdeps_ciceC_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/datm_cdeps_bulk_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/datm_cdeps_bulk_cfsr Checking test 129 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 235.326648 - 0: The maximum resident set size (KB) = 964820 + 0: The total amount of wall time = 227.914356 + 0: The maximum resident set size (KB) = 956028 Test 129 datm_cdeps_bulk_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/datm_cdeps_bulk_gefs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/datm_cdeps_bulk_gefs Checking test 130 datm_cdeps_bulk_gefs 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 = 281.581902 - 0: The maximum resident set size (KB) = 864592 + 0: The total amount of wall time = 228.414463 + 0: The maximum resident set size (KB) = 862196 Test 130 datm_cdeps_bulk_gefs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/datm_cdeps_mx025_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/datm_cdeps_mx025_cfsr Checking test 131 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4187,14 +4187,14 @@ Checking test 131 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 703.920062 - 0: The maximum resident set size (KB) = 763532 + 0: The total amount of wall time = 603.563157 + 0: The maximum resident set size (KB) = 757408 Test 131 datm_cdeps_mx025_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/datm_cdeps_mx025_gefs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/datm_cdeps_mx025_gefs Checking test 132 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4203,77 +4203,77 @@ Checking test 132 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 644.202833 - 0: The maximum resident set size (KB) = 734992 + 0: The total amount of wall time = 583.113448 + 0: The maximum resident set size (KB) = 750000 Test 132 datm_cdeps_mx025_gefs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/datm_cdeps_multiple_files_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/datm_cdeps_multiple_files_cfsr Checking test 133 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 306.681288 - 0: The maximum resident set size (KB) = 978080 + 0: The total amount of wall time = 228.381820 + 0: The maximum resident set size (KB) = 965396 Test 133 datm_cdeps_multiple_files_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/datm_cdeps_3072x1536_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/datm_cdeps_3072x1536_cfsr Checking test 134 datm_cdeps_3072x1536_cfsr 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 = 496.885645 - 0: The maximum resident set size (KB) = 2258264 + 0: The total amount of wall time = 298.346503 + 0: The maximum resident set size (KB) = 2255560 Test 134 datm_cdeps_3072x1536_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_gfs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/datm_cdeps_gfs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/datm_cdeps_gfs Checking test 135 datm_cdeps_gfs 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 = 559.186140 - 0: The maximum resident set size (KB) = 2257224 + 0: The total amount of wall time = 311.796535 + 0: The maximum resident set size (KB) = 2255584 Test 135 datm_cdeps_gfs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_debug_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/datm_cdeps_debug_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/datm_cdeps_debug_cfsr Checking test 136 datm_cdeps_debug_cfsr 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 = 492.411281 - 0: The maximum resident set size (KB) = 936640 + 0: The total amount of wall time = 465.293722 + 0: The maximum resident set size (KB) = 930700 Test 136 datm_cdeps_debug_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr_faster -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/datm_cdeps_control_cfsr_faster +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/datm_cdeps_control_cfsr_faster Checking test 137 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.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 = 299.380243 - 0: The maximum resident set size (KB) = 960472 + 0: The total amount of wall time = 217.595538 + 0: The maximum resident set size (KB) = 971744 Test 137 datm_cdeps_control_cfsr_faster PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/datm_cdeps_lnd_gswp3 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/datm_cdeps_lnd_gswp3 Checking test 138 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4282,14 +4282,14 @@ Checking test 138 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 101.955401 - 0: The maximum resident set size (KB) = 251272 + 0: The total amount of wall time = 23.698417 + 0: The maximum resident set size (KB) = 241464 Test 138 datm_cdeps_lnd_gswp3 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/datm_cdeps_lnd_gswp3_rst +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/datm_cdeps_lnd_gswp3_rst Checking test 139 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4298,14 +4298,14 @@ Checking test 139 datm_cdeps_lnd_gswp3_rst 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 = 33.361801 - 0: The maximum resident set size (KB) = 242508 + 0: The total amount of wall time = 47.016365 + 0: The maximum resident set size (KB) = 241360 Test 139 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_atmlnd_sbs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_p8_atmlnd_sbs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_p8_atmlnd_sbs Checking test 140 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4390,14 +4390,14 @@ Checking test 140 control_p8_atmlnd_sbs 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 = 325.163839 - 0: The maximum resident set size (KB) = 1586652 + 0: The total amount of wall time = 307.760864 + 0: The maximum resident set size (KB) = 1591116 Test 140 control_p8_atmlnd_sbs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/atmwav_control_noaero_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/atmwav_control_noaero_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/atmwav_control_noaero_p8 Checking test 141 atmwav_control_noaero_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4440,14 +4440,14 @@ Checking test 141 atmwav_control_noaero_p8 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 = 170.514760 - 0: The maximum resident set size (KB) = 1557856 + 0: The total amount of wall time = 137.929911 + 0: The maximum resident set size (KB) = 1570172 Test 141 atmwav_control_noaero_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_atmwav -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/control_atmwav +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_atmwav Checking test 142 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4491,14 +4491,14 @@ Checking test 142 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 148.328805 - 0: The maximum resident set size (KB) = 601436 + 0: The total amount of wall time = 169.980371 + 0: The maximum resident set size (KB) = 593792 Test 142 control_atmwav PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/atmaero_control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/atmaero_control_p8 Checking test 143 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4542,14 +4542,14 @@ Checking test 143 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 365.697515 - 0: The maximum resident set size (KB) = 1630036 + 0: The total amount of wall time = 373.495836 + 0: The maximum resident set size (KB) = 1633712 Test 143 atmaero_control_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8_rad -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/atmaero_control_p8_rad +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/atmaero_control_p8_rad Checking test 144 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4593,14 +4593,14 @@ Checking test 144 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 408.763218 - 0: The maximum resident set size (KB) = 1666180 + 0: The total amount of wall time = 451.676386 + 0: The maximum resident set size (KB) = 1658448 Test 144 atmaero_control_p8_rad PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_43790/atmaero_control_p8_rad_micro +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/atmaero_control_p8_rad_micro Checking test 145 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4644,12 +4644,12 @@ Checking test 145 atmaero_control_p8_rad_micro results .... Comparing 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.357374 - 0: The maximum resident set size (KB) = 1687724 + 0: The total amount of wall time = 424.931475 + 0: The maximum resident set size (KB) = 1668052 Test 145 atmaero_control_p8_rad_micro PASS REGRESSION TEST WAS SUCCESSFUL -Thu Apr 20 04:16:07 UTC 2023 -Elapsed time: 02h:53m:17s. Have a nice day! +Fri Apr 21 22:18:48 UTC 2023 +Elapsed time: 02h:54m:50s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index 7d407a508ef..b246ac86e79 100755 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,43 +1,43 @@ -Tue Apr 18 21:17:16 CDT 2023 +Sat Apr 22 13:01:49 CDT 2023 Start Regression test -Compile 001 elapsed time 772 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 734 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 643 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 275 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 247 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 652 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 613 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 831 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 669 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 592 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 011 elapsed time 578 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 553 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 727 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 215 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 221 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 510 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 605 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 196 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 270 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 623 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 021 elapsed time 192 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 774 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 587 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 024 elapsed time 187 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 110 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 229 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 58 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 587 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 598 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 621 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 646 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 603 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 033 elapsed time 194 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 034 elapsed time 614 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 804 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 811 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 816 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 326 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 258 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 590 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 655 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 808 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 672 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 594 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 011 elapsed time 569 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 601 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 694 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 270 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 208 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 503 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 559 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 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 019 elapsed time 177 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 634 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 206 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 755 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 621 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 024 elapsed time 213 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 131 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 231 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 101 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 603 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 614 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 628 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 545 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 526 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 033 elapsed time 171 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 034 elapsed time 725 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8_mixedmode -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/cpld_control_p8_mixedmode +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -102,14 +102,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 311.718450 - 0: The maximum resident set size (KB) = 3143460 + 0: The total amount of wall time = 340.349049 + 0: The maximum resident set size (KB) = 3147532 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_gfsv17 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/cpld_control_gfsv17 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -173,14 +173,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 230.093113 - 0: The maximum resident set size (KB) = 1725740 + 0: The total amount of wall time = 223.706663 + 0: The maximum resident set size (KB) = 1724024 Test 002 cpld_control_gfsv17 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -245,14 +245,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 348.180306 - 0: The maximum resident set size (KB) = 3182832 + 0: The total amount of wall time = 344.363159 + 0: The maximum resident set size (KB) = 3187464 Test 003 cpld_control_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/cpld_restart_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -305,14 +305,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 199.174792 - 0: The maximum resident set size (KB) = 3050576 + 0: The total amount of wall time = 216.954052 + 0: The maximum resident set size (KB) = 3056136 Test 004 cpld_restart_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/cpld_control_qr_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -377,14 +377,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 346.581084 - 0: The maximum resident set size (KB) = 3199764 + 0: The total amount of wall time = 346.982369 + 0: The maximum resident set size (KB) = 3198052 Test 005 cpld_control_qr_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/cpld_restart_qr_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -437,14 +437,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 212.720346 - 0: The maximum resident set size (KB) = 3066276 + 0: The total amount of wall time = 207.826832 + 0: The maximum resident set size (KB) = 3068292 Test 006 cpld_restart_qr_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/cpld_2threads_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -497,14 +497,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 403.467723 - 0: The maximum resident set size (KB) = 3526200 + 0: The total amount of wall time = 408.547569 + 0: The maximum resident set size (KB) = 3520552 Test 007 cpld_2threads_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/cpld_decomp_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -557,14 +557,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 375.113537 - 0: The maximum resident set size (KB) = 3176272 + 0: The total amount of wall time = 342.283899 + 0: The maximum resident set size (KB) = 3183040 Test 008 cpld_decomp_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/cpld_mpi_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -617,14 +617,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 286.387723 - 0: The maximum resident set size (KB) = 3026164 + 0: The total amount of wall time = 282.510653 + 0: The maximum resident set size (KB) = 3030508 Test 009 cpld_mpi_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_ciceC_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/cpld_control_ciceC_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -689,14 +689,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 348.976199 - 0: The maximum resident set size (KB) = 3184976 + 0: The total amount of wall time = 341.641213 + 0: The maximum resident set size (KB) = 3186056 Test 010 cpld_control_ciceC_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/cpld_control_c192_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_control_c192_p8 Checking test 011 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -749,14 +749,14 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 638.377104 - 0: The maximum resident set size (KB) = 3263516 + 0: The total amount of wall time = 643.549427 + 0: The maximum resident set size (KB) = 3269232 Test 011 cpld_control_c192_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/cpld_restart_c192_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_restart_c192_p8 Checking test 012 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -809,14 +809,14 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 443.868189 - 0: The maximum resident set size (KB) = 3162992 + 0: The total amount of wall time = 439.877977 + 0: The maximum resident set size (KB) = 3165276 Test 012 cpld_restart_c192_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_bmark_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/cpld_bmark_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_bmark_p8 Checking test 013 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -864,14 +864,14 @@ Checking test 013 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 883.317458 - 0: The maximum resident set size (KB) = 4029452 + 0: The total amount of wall time = 880.891270 + 0: The maximum resident set size (KB) = 4042604 Test 013 cpld_bmark_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_bmark_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/cpld_restart_bmark_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_restart_bmark_p8 Checking test 014 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -919,14 +919,14 @@ Checking test 014 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 548.910824 - 0: The maximum resident set size (KB) = 3957072 + 0: The total amount of wall time = 545.150846 + 0: The maximum resident set size (KB) = 3980456 Test 014 cpld_restart_bmark_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_noaero_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/cpld_control_noaero_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_control_noaero_p8 Checking test 015 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -990,14 +990,14 @@ Checking test 015 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 280.454861 - 0: The maximum resident set size (KB) = 1720948 + 0: The total amount of wall time = 283.390650 + 0: The maximum resident set size (KB) = 1718268 Test 015 cpld_control_noaero_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c96_noaero_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/cpld_control_nowave_noaero_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_control_nowave_noaero_p8 Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1059,14 +1059,14 @@ Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 286.427995 - 0: The maximum resident set size (KB) = 1774832 + 0: The total amount of wall time = 261.768945 + 0: The maximum resident set size (KB) = 1766080 Test 016 cpld_control_nowave_noaero_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_debug_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/cpld_debug_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_debug_p8 Checking test 017 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1119,14 +1119,14 @@ Checking test 017 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 552.314100 - 0: The maximum resident set size (KB) = 3238632 + 0: The total amount of wall time = 561.042129 + 0: The maximum resident set size (KB) = 3244036 Test 017 cpld_debug_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_debug_noaero_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/cpld_debug_noaero_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_debug_noaero_p8 Checking test 018 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1178,14 +1178,14 @@ Checking test 018 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 374.461026 - 0: The maximum resident set size (KB) = 1703108 + 0: The total amount of wall time = 388.093541 + 0: The maximum resident set size (KB) = 1731364 Test 018 cpld_debug_noaero_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_noaero_p8_agrid -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/cpld_control_noaero_p8_agrid +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_control_noaero_p8_agrid Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1247,14 +1247,14 @@ Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 293.732408 - 0: The maximum resident set size (KB) = 1777012 + 0: The total amount of wall time = 290.571138 + 0: The maximum resident set size (KB) = 1773020 Test 019 cpld_control_noaero_p8_agrid PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c48 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/cpld_control_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_control_c48 Checking test 020 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1304,14 +1304,14 @@ Checking test 020 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 497.942742 - 0: The maximum resident set size (KB) = 2814532 + 0: The total amount of wall time = 497.909250 + 0: The maximum resident set size (KB) = 2814372 Test 020 cpld_control_c48 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_warmstart_c48 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/cpld_warmstart_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_warmstart_c48 Checking test 021 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1361,14 +1361,14 @@ Checking test 021 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 143.068892 - 0: The maximum resident set size (KB) = 2800788 + 0: The total amount of wall time = 141.830701 + 0: The maximum resident set size (KB) = 2801312 Test 021 cpld_warmstart_c48 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_warmstart_c48 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/cpld_restart_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_restart_c48 Checking test 022 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1418,14 +1418,14 @@ Checking test 022 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 75.047038 - 0: The maximum resident set size (KB) = 2244616 + 0: The total amount of wall time = 79.897323 + 0: The maximum resident set size (KB) = 2246568 Test 022 cpld_restart_c48 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/cpld_control_p8_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_control_p8_faster Checking test 023 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1490,14 +1490,14 @@ Checking test 023 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 325.866733 - 0: The maximum resident set size (KB) = 3177480 + 0: The total amount of wall time = 357.242648 + 0: The maximum resident set size (KB) = 3182100 Test 023 cpld_control_p8_faster PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_CubedSphereGrid +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_CubedSphereGrid Checking test 024 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1524,28 +1524,28 @@ Checking test 024 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 155.300785 - 0: The maximum resident set size (KB) = 629796 + 0: The total amount of wall time = 130.933245 + 0: The maximum resident set size (KB) = 631584 Test 024 control_CubedSphereGrid PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid_parallel -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_CubedSphereGrid_parallel +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_CubedSphereGrid_parallel Checking test 025 control_CubedSphereGrid_parallel 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 = 163.569592 - 0: The maximum resident set size (KB) = 633228 + 0: The total amount of wall time = 128.912409 + 0: The maximum resident set size (KB) = 634400 Test 025 control_CubedSphereGrid_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_latlon -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_latlon +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_latlon Checking test 026 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1556,32 +1556,32 @@ Checking test 026 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 155.188989 - 0: The maximum resident set size (KB) = 630976 + 0: The total amount of wall time = 134.141163 + 0: The maximum resident set size (KB) = 634432 Test 026 control_latlon PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wrtGauss_netcdf_parallel -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_wrtGauss_netcdf_parallel +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_wrtGauss_netcdf_parallel Checking test 027 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 156.571469 - 0: The maximum resident set size (KB) = 629156 + 0: The total amount of wall time = 137.229937 + 0: The maximum resident set size (KB) = 633716 Test 027 control_wrtGauss_netcdf_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c48 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_c48 Checking test 028 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1620,14 +1620,14 @@ Checking test 028 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 347.540957 -0: The maximum resident set size (KB) = 824000 +0: The total amount of wall time = 346.639114 +0: The maximum resident set size (KB) = 823652 Test 028 control_c48 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c192 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_c192 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_c192 Checking test 029 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1638,14 +1638,14 @@ Checking test 029 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 550.512659 - 0: The maximum resident set size (KB) = 772992 + 0: The total amount of wall time = 528.366183 + 0: The maximum resident set size (KB) = 775104 Test 029 control_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c384 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_c384 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_c384 Checking test 030 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1656,14 +1656,14 @@ Checking test 030 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 610.724931 - 0: The maximum resident set size (KB) = 1193148 + 0: The total amount of wall time = 587.749641 + 0: The maximum resident set size (KB) = 1235512 Test 030 control_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c384gdas -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_c384gdas +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_c384gdas Checking test 031 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1706,14 +1706,14 @@ Checking test 031 control_c384gdas 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 = 511.442372 - 0: The maximum resident set size (KB) = 1336432 + 0: The total amount of wall time = 575.456429 + 0: The maximum resident set size (KB) = 1340248 Test 031 control_c384gdas PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_stochy +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_stochy Checking test 032 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1724,28 +1724,28 @@ Checking test 032 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 87.666914 - 0: The maximum resident set size (KB) = 632316 + 0: The total amount of wall time = 87.940240 + 0: The maximum resident set size (KB) = 639996 Test 032 control_stochy PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_stochy_restart +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_stochy_restart Checking test 033 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 48.100244 - 0: The maximum resident set size (KB) = 486172 + 0: The total amount of wall time = 56.707512 + 0: The maximum resident set size (KB) = 485732 Test 033 control_stochy_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_lndp -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_lndp +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_lndp Checking test 034 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1756,14 +1756,14 @@ Checking test 034 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 80.675926 - 0: The maximum resident set size (KB) = 631892 + 0: The total amount of wall time = 96.133819 + 0: The maximum resident set size (KB) = 633616 Test 034 control_lndp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_iovr4 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_iovr4 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_iovr4 Checking test 035 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1778,14 +1778,14 @@ Checking test 035 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.766805 - 0: The maximum resident set size (KB) = 631108 + 0: The total amount of wall time = 137.304691 + 0: The maximum resident set size (KB) = 634328 Test 035 control_iovr4 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_iovr5 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_iovr5 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_iovr5 Checking test 036 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1800,14 +1800,14 @@ Checking test 036 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.552965 - 0: The maximum resident set size (KB) = 627324 + 0: The total amount of wall time = 137.709563 + 0: The maximum resident set size (KB) = 628224 Test 036 control_iovr5 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_p8 Checking test 037 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1854,14 +1854,14 @@ Checking test 037 control_p8 results .... Comparing 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.267938 - 0: The maximum resident set size (KB) = 1603796 + 0: The total amount of wall time = 174.704934 + 0: The maximum resident set size (KB) = 1613060 Test 037 control_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_restart_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_restart_p8 Checking test 038 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1900,14 +1900,14 @@ Checking test 038 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 91.405014 - 0: The maximum resident set size (KB) = 877864 + 0: The total amount of wall time = 90.355714 + 0: The maximum resident set size (KB) = 874280 Test 038 control_restart_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_qr_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_qr_p8 Checking test 039 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1954,14 +1954,14 @@ Checking test 039 control_qr_p8 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.359188 - 0: The maximum resident set size (KB) = 1613188 + 0: The total amount of wall time = 175.870726 + 0: The maximum resident set size (KB) = 1605476 Test 039 control_qr_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_restart_qr_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_restart_qr_p8 Checking test 040 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2000,14 +2000,14 @@ Checking test 040 control_restart_qr_p8 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 = 94.038915 - 0: The maximum resident set size (KB) = 869596 + 0: The total amount of wall time = 91.815738 + 0: The maximum resident set size (KB) = 867680 Test 040 control_restart_qr_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_decomp_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_decomp_p8 Checking test 041 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2050,14 +2050,14 @@ Checking test 041 control_decomp_p8 results .... Comparing 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.322574 - 0: The maximum resident set size (KB) = 1585960 + 0: The total amount of wall time = 181.534516 + 0: The maximum resident set size (KB) = 1586024 Test 041 control_decomp_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_2threads_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_2threads_p8 Checking test 042 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2100,14 +2100,14 @@ Checking test 042 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 183.052248 - 0: The maximum resident set size (KB) = 1684796 + 0: The total amount of wall time = 182.436807 + 0: The maximum resident set size (KB) = 1685320 Test 042 control_2threads_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_lndp -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_p8_lndp +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_p8_lndp Checking test 043 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2126,14 +2126,14 @@ Checking test 043 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 310.576183 - 0: The maximum resident set size (KB) = 1613112 + 0: The total amount of wall time = 320.134426 + 0: The maximum resident set size (KB) = 1614384 Test 043 control_p8_lndp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_rrtmgp -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_p8_rrtmgp +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_p8_rrtmgp Checking test 044 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2180,14 +2180,14 @@ Checking test 044 control_p8_rrtmgp results .... Comparing 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.258734 - 0: The maximum resident set size (KB) = 1627996 + 0: The total amount of wall time = 233.165065 + 0: The maximum resident set size (KB) = 1679124 Test 044 control_p8_rrtmgp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_mynn -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_p8_mynn +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_p8_mynn Checking test 045 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2234,14 +2234,14 @@ Checking test 045 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 171.757772 - 0: The maximum resident set size (KB) = 1602460 + 0: The total amount of wall time = 177.869777 + 0: The maximum resident set size (KB) = 1603732 Test 045 control_p8_mynn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/merra2_thompson -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/merra2_thompson +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/merra2_thompson Checking test 046 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2288,14 +2288,14 @@ Checking test 046 merra2_thompson results .... Comparing 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.493109 - 0: The maximum resident set size (KB) = 1610752 + 0: The total amount of wall time = 189.897204 + 0: The maximum resident set size (KB) = 1613224 Test 046 merra2_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/regional_control Checking test 047 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2306,28 +2306,28 @@ Checking test 047 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 294.208235 - 0: The maximum resident set size (KB) = 871836 + 0: The total amount of wall time = 296.250519 + 0: The maximum resident set size (KB) = 872352 Test 047 regional_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/regional_restart +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/regional_restart Checking test 048 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 155.940440 - 0: The maximum resident set size (KB) = 861424 + 0: The total amount of wall time = 150.441789 + 0: The maximum resident set size (KB) = 863096 Test 048 regional_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/regional_control_qr +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/regional_control_qr Checking test 049 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2338,28 +2338,28 @@ Checking test 049 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 293.505610 - 0: The maximum resident set size (KB) = 870656 + 0: The total amount of wall time = 296.284969 + 0: The maximum resident set size (KB) = 871928 Test 049 regional_control_qr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/regional_restart_qr +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/regional_restart_qr Checking test 050 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 155.724136 - 0: The maximum resident set size (KB) = 861616 + 0: The total amount of wall time = 150.668417 + 0: The maximum resident set size (KB) = 864368 Test 050 regional_restart_qr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/regional_decomp +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/regional_decomp Checking test 051 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2370,14 +2370,14 @@ Checking test 051 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 311.533598 - 0: The maximum resident set size (KB) = 858652 + 0: The total amount of wall time = 314.138155 + 0: The maximum resident set size (KB) = 864560 Test 051 regional_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/regional_2threads +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/regional_2threads Checking test 052 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2388,14 +2388,14 @@ Checking test 052 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 205.498546 - 0: The maximum resident set size (KB) = 848496 + 0: The total amount of wall time = 208.330174 + 0: The maximum resident set size (KB) = 847248 Test 052 regional_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_noquilt -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/regional_noquilt +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/regional_noquilt Checking test 053 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2403,28 +2403,28 @@ Checking test 053 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 314.415975 - 0: The maximum resident set size (KB) = 860712 + 0: The total amount of wall time = 316.868419 + 0: The maximum resident set size (KB) = 862092 Test 053 regional_noquilt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_netcdf_parallel -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/regional_netcdf_parallel +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/regional_netcdf_parallel Checking test 054 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing phyf006.nc .........OK - 0: The total amount of wall time = 290.867565 - 0: The maximum resident set size (KB) = 869536 + 0: The total amount of wall time = 291.317738 + 0: The maximum resident set size (KB) = 872028 Test 054 regional_netcdf_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/regional_2dwrtdecomp +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/regional_2dwrtdecomp Checking test 055 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2435,14 +2435,14 @@ Checking test 055 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 297.068994 - 0: The maximum resident set size (KB) = 873640 + 0: The total amount of wall time = 294.729708 + 0: The maximum resident set size (KB) = 865656 Test 055 regional_2dwrtdecomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/fv3_regional_wofs -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/regional_wofs +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/regional_wofs Checking test 056 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2453,14 +2453,14 @@ Checking test 056 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 371.826360 - 0: The maximum resident set size (KB) = 629436 + 0: The total amount of wall time = 384.669585 + 0: The maximum resident set size (KB) = 628844 Test 056 regional_wofs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rap_control +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_control Checking test 057 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2507,14 +2507,14 @@ Checking test 057 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 472.005699 - 0: The maximum resident set size (KB) = 1066248 + 0: The total amount of wall time = 473.138083 + 0: The maximum resident set size (KB) = 1071160 Test 057 rap_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_spp_sppt_shum_skeb -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/regional_spp_sppt_shum_skeb +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/regional_spp_sppt_shum_skeb Checking test 058 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2525,14 +2525,14 @@ Checking test 058 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 301.780722 - 0: The maximum resident set size (KB) = 1176668 + 0: The total amount of wall time = 287.503634 + 0: The maximum resident set size (KB) = 1188932 Test 058 regional_spp_sppt_shum_skeb PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rap_decomp +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_decomp Checking test 059 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2579,14 +2579,14 @@ Checking test 059 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 505.832677 - 0: The maximum resident set size (KB) = 1002444 + 0: The total amount of wall time = 506.940735 + 0: The maximum resident set size (KB) = 1009544 Test 059 rap_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rap_2threads +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_2threads Checking test 060 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2633,14 +2633,14 @@ Checking test 060 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 485.644115 - 0: The maximum resident set size (KB) = 1146848 + 0: The total amount of wall time = 495.992707 + 0: The maximum resident set size (KB) = 1143224 Test 060 rap_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rap_restart +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_restart Checking test 061 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2679,14 +2679,14 @@ Checking test 061 rap_restart results .... Comparing 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.520504 - 0: The maximum resident set size (KB) = 967692 + 0: The total amount of wall time = 231.469637 + 0: The maximum resident set size (KB) = 979324 Test 061 rap_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rap_sfcdiff +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_sfcdiff Checking test 062 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2733,14 +2733,14 @@ Checking test 062 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 476.082184 - 0: The maximum resident set size (KB) = 1052224 + 0: The total amount of wall time = 481.524676 + 0: The maximum resident set size (KB) = 1061140 Test 062 rap_sfcdiff PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rap_sfcdiff_decomp +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_sfcdiff_decomp Checking test 063 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2787,14 +2787,14 @@ Checking test 063 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 490.022963 - 0: The maximum resident set size (KB) = 1003748 + 0: The total amount of wall time = 488.616673 + 0: The maximum resident set size (KB) = 1012884 Test 063 rap_sfcdiff_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rap_sfcdiff_restart +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_sfcdiff_restart Checking test 064 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2833,14 +2833,14 @@ Checking test 064 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 344.096581 - 0: The maximum resident set size (KB) = 996404 + 0: The total amount of wall time = 345.169361 + 0: The maximum resident set size (KB) = 995408 Test 064 rap_sfcdiff_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hrrr_control +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hrrr_control Checking test 065 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2887,14 +2887,14 @@ Checking test 065 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 477.365833 - 0: The maximum resident set size (KB) = 1054344 + 0: The total amount of wall time = 465.362285 + 0: The maximum resident set size (KB) = 1067784 Test 065 hrrr_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hrrr_control_decomp +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hrrr_control_decomp Checking test 066 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2941,14 +2941,14 @@ Checking test 066 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 486.133249 - 0: The maximum resident set size (KB) = 1005908 + 0: The total amount of wall time = 496.633956 + 0: The maximum resident set size (KB) = 1002428 Test 066 hrrr_control_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hrrr_control_2threads +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hrrr_control_2threads Checking test 067 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2995,14 +2995,14 @@ Checking test 067 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 473.891664 - 0: The maximum resident set size (KB) = 1143668 + 0: The total amount of wall time = 472.964130 + 0: The maximum resident set size (KB) = 1146328 Test 067 hrrr_control_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hrrr_control_restart +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hrrr_control_restart Checking test 068 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3041,14 +3041,14 @@ Checking test 068 hrrr_control_restart results .... Comparing 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.619886 - 0: The maximum resident set size (KB) = 979216 + 0: The total amount of wall time = 338.996321 + 0: The maximum resident set size (KB) = 984604 Test 068 hrrr_control_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1beta -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rrfs_v1beta +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rrfs_v1beta Checking test 069 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3095,14 +3095,14 @@ Checking test 069 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 463.179464 - 0: The maximum resident set size (KB) = 1059704 + 0: The total amount of wall time = 483.758640 + 0: The maximum resident set size (KB) = 1063556 Test 069 rrfs_v1beta PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1nssl -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rrfs_v1nssl +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rrfs_v1nssl Checking test 070 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3117,14 +3117,14 @@ Checking test 070 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 567.493298 - 0: The maximum resident set size (KB) = 698396 + 0: The total amount of wall time = 557.382468 + 0: The maximum resident set size (KB) = 701552 Test 070 rrfs_v1nssl PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rrfs_v1nssl_nohailnoccn +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rrfs_v1nssl_nohailnoccn Checking test 071 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3139,14 +3139,14 @@ Checking test 071 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 534.217911 - 0: The maximum resident set size (KB) = 765948 + 0: The total amount of wall time = 544.909232 + 0: The maximum resident set size (KB) = 763976 Test 071 rrfs_v1nssl_nohailnoccn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rrfs_smoke_conus13km_hrrr_warm +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rrfs_smoke_conus13km_hrrr_warm Checking test 072 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3155,14 +3155,14 @@ Checking test 072 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 148.527839 - 0: The maximum resident set size (KB) = 1005180 + 0: The total amount of wall time = 155.346733 + 0: The maximum resident set size (KB) = 1004724 Test 072 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rrfs_smoke_conus13km_hrrr_warm_2threads +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 073 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3171,14 +3171,14 @@ Checking test 073 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 101.244927 - 0: The maximum resident set size (KB) = 909892 + 0: The total amount of wall time = 104.178417 + 0: The maximum resident set size (KB) = 914000 Test 073 rrfs_smoke_conus13km_hrrr_warm_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rrfs_conus13km_hrrr_warm +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rrfs_conus13km_hrrr_warm Checking test 074 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3187,14 +3187,14 @@ Checking test 074 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 131.160320 - 0: The maximum resident set size (KB) = 954992 + 0: The total amount of wall time = 136.460323 + 0: The maximum resident set size (KB) = 943912 Test 074 rrfs_conus13km_hrrr_warm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rrfs_smoke_conus13km_radar_tten_warm +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rrfs_smoke_conus13km_radar_tten_warm Checking test 075 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3203,26 +3203,26 @@ Checking test 075 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 150.438610 - 0: The maximum resident set size (KB) = 1036780 + 0: The total amount of wall time = 160.257335 + 0: The maximum resident set size (KB) = 1038208 Test 075 rrfs_smoke_conus13km_radar_tten_warm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 076 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 70.941576 - 0: The maximum resident set size (KB) = 936928 + 0: The total amount of wall time = 67.900861 + 0: The maximum resident set size (KB) = 935628 Test 076 rrfs_conus13km_hrrr_warm_restart_mismatch PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmg -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_csawmg +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_csawmg Checking test 077 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3233,14 +3233,14 @@ Checking test 077 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 345.565472 - 0: The maximum resident set size (KB) = 720200 + 0: The total amount of wall time = 342.601558 + 0: The maximum resident set size (KB) = 725024 Test 077 control_csawmg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmgt -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_csawmgt +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_csawmgt Checking test 078 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3251,14 +3251,14 @@ Checking test 078 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 345.441009 - 0: The maximum resident set size (KB) = 728432 + 0: The total amount of wall time = 337.820731 + 0: The maximum resident set size (KB) = 722960 Test 078 control_csawmgt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_ras -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_ras +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_ras Checking test 079 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3269,26 +3269,26 @@ Checking test 079 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 183.363579 - 0: The maximum resident set size (KB) = 723120 + 0: The total amount of wall time = 184.159346 + 0: The maximum resident set size (KB) = 726288 Test 079 control_ras PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wam -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_wam +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_wam Checking test 080 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 116.176332 - 0: The maximum resident set size (KB) = 640200 + 0: The total amount of wall time = 112.182828 + 0: The maximum resident set size (KB) = 648892 Test 080 control_wam PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_p8_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_p8_faster Checking test 081 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3335,14 +3335,14 @@ Checking test 081 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 156.438295 - 0: The maximum resident set size (KB) = 1602056 + 0: The total amount of wall time = 153.211896 + 0: The maximum resident set size (KB) = 1601916 Test 081 control_p8_faster PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/regional_control_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/regional_control_faster Checking test 082 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3353,56 +3353,56 @@ Checking test 082 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 272.584898 - 0: The maximum resident set size (KB) = 872956 + 0: The total amount of wall time = 268.545515 + 0: The maximum resident set size (KB) = 867936 Test 082 regional_control_faster PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 083 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 823.868937 - 0: The maximum resident set size (KB) = 1065512 + 0: The total amount of wall time = 823.938870 + 0: The maximum resident set size (KB) = 1066060 Test 083 rrfs_smoke_conus13km_hrrr_warm_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 084 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 486.549286 - 0: The maximum resident set size (KB) = 930988 + 0: The total amount of wall time = 470.623706 + 0: The maximum resident set size (KB) = 979260 Test 084 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rrfs_conus13km_hrrr_warm_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rrfs_conus13km_hrrr_warm_debug Checking test 085 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 738.461387 - 0: The maximum resident set size (KB) = 966748 + 0: The total amount of wall time = 753.487954 + 0: The maximum resident set size (KB) = 970608 Test 085 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_CubedSphereGrid_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_CubedSphereGrid_debug Checking test 086 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3429,334 +3429,334 @@ Checking test 086 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 151.679283 - 0: The maximum resident set size (KB) = 788072 + 0: The total amount of wall time = 149.832720 + 0: The maximum resident set size (KB) = 796516 Test 086 control_CubedSphereGrid_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_wrtGauss_netcdf_parallel_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_wrtGauss_netcdf_parallel_debug Checking test 087 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 158.061851 - 0: The maximum resident set size (KB) = 793004 + 0: The total amount of wall time = 155.925682 + 0: The maximum resident set size (KB) = 793144 Test 087 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_stochy_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_stochy_debug Checking test 088 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 175.919235 - 0: The maximum resident set size (KB) = 794888 + 0: The total amount of wall time = 169.063351 + 0: The maximum resident set size (KB) = 804208 Test 088 control_stochy_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_lndp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_lndp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_lndp_debug Checking test 089 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 162.285917 - 0: The maximum resident set size (KB) = 793008 + 0: The total amount of wall time = 190.861094 + 0: The maximum resident set size (KB) = 801584 Test 089 control_lndp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmg_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_csawmg_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_csawmg_debug Checking test 090 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 237.720940 - 0: The maximum resident set size (KB) = 849040 + 0: The total amount of wall time = 260.560003 + 0: The maximum resident set size (KB) = 846920 Test 090 control_csawmg_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmgt_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_csawmgt_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_csawmgt_debug Checking test 091 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 234.177120 - 0: The maximum resident set size (KB) = 789588 + 0: The total amount of wall time = 258.914282 + 0: The maximum resident set size (KB) = 842304 Test 091 control_csawmgt_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_ras_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_ras_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_ras_debug Checking test 092 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 158.898761 - 0: The maximum resident set size (KB) = 801856 + 0: The total amount of wall time = 179.201496 + 0: The maximum resident set size (KB) = 805632 Test 092 control_ras_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_diag_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_diag_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_diag_debug Checking test 093 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 161.366995 - 0: The maximum resident set size (KB) = 850188 + 0: The total amount of wall time = 173.877021 + 0: The maximum resident set size (KB) = 848340 Test 093 control_diag_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_debug_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_debug_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_debug_p8 Checking test 094 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 177.552187 - 0: The maximum resident set size (KB) = 1623372 + 0: The total amount of wall time = 195.892904 + 0: The maximum resident set size (KB) = 1625116 Test 094 control_debug_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/regional_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/regional_debug Checking test 095 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1000.797831 - 0: The maximum resident set size (KB) = 890888 + 0: The total amount of wall time = 996.269674 + 0: The maximum resident set size (KB) = 885456 Test 095 regional_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rap_control_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_control_debug Checking test 096 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 290.722174 - 0: The maximum resident set size (KB) = 1174604 + 0: The total amount of wall time = 275.745979 + 0: The maximum resident set size (KB) = 1168932 Test 096 rap_control_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hrrr_control_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hrrr_control_debug Checking test 097 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 272.963207 - 0: The maximum resident set size (KB) = 1164592 + 0: The total amount of wall time = 271.590196 + 0: The maximum resident set size (KB) = 1168596 Test 097 hrrr_control_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rap_unified_drag_suite_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_unified_drag_suite_debug Checking test 098 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.741707 - 0: The maximum resident set size (KB) = 1167308 + 0: The total amount of wall time = 280.528576 + 0: The maximum resident set size (KB) = 1173592 Test 098 rap_unified_drag_suite_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_diag_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rap_diag_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_diag_debug Checking test 099 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.372876 - 0: The maximum resident set size (KB) = 1252540 + 0: The total amount of wall time = 288.454772 + 0: The maximum resident set size (KB) = 1263052 Test 099 rap_diag_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rap_cires_ugwp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_cires_ugwp_debug Checking test 100 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 284.398344 - 0: The maximum resident set size (KB) = 1170612 + 0: The total amount of wall time = 275.417120 + 0: The maximum resident set size (KB) = 1170928 Test 100 rap_cires_ugwp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rap_unified_ugwp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_unified_ugwp_debug Checking test 101 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.854797 - 0: The maximum resident set size (KB) = 1172612 + 0: The total amount of wall time = 284.750515 + 0: The maximum resident set size (KB) = 1173148 Test 101 rap_unified_ugwp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_lndp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rap_lndp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_lndp_debug Checking test 102 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 286.449935 - 0: The maximum resident set size (KB) = 1171376 + 0: The total amount of wall time = 282.531938 + 0: The maximum resident set size (KB) = 1175336 Test 102 rap_lndp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_flake_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rap_flake_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_flake_debug Checking test 103 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 284.375702 - 0: The maximum resident set size (KB) = 1168908 + 0: The total amount of wall time = 274.982551 + 0: The maximum resident set size (KB) = 1173488 Test 103 rap_flake_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_progcld_thompson_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rap_progcld_thompson_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_progcld_thompson_debug Checking test 104 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.620865 - 0: The maximum resident set size (KB) = 1170908 + 0: The total amount of wall time = 276.614952 + 0: The maximum resident set size (KB) = 1176848 Test 104 rap_progcld_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_noah_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rap_noah_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_noah_debug Checking test 105 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.157400 - 0: The maximum resident set size (KB) = 1168396 + 0: The total amount of wall time = 267.427999 + 0: The maximum resident set size (KB) = 1169628 Test 105 rap_noah_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rap_sfcdiff_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_sfcdiff_debug Checking test 106 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 282.519247 - 0: The maximum resident set size (KB) = 1174836 + 0: The total amount of wall time = 276.141650 + 0: The maximum resident set size (KB) = 1173796 Test 106 rap_sfcdiff_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_noah_sfcdiff_cires_ugwp_debug Checking test 107 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 459.901576 - 0: The maximum resident set size (KB) = 1164904 + 0: The total amount of wall time = 457.003310 + 0: The maximum resident set size (KB) = 1171896 Test 107 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1beta_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rrfs_v1beta_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rrfs_v1beta_debug Checking test 108 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 278.187722 - 0: The maximum resident set size (KB) = 1160600 + 0: The total amount of wall time = 275.502771 + 0: The maximum resident set size (KB) = 1178176 Test 108 rrfs_v1beta_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wam_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_wam_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_wam_debug Checking test 109 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 293.271130 - 0: The maximum resident set size (KB) = 527316 + 0: The total amount of wall time = 289.936492 + 0: The maximum resident set size (KB) = 521536 Test 109 control_wam_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3767,14 +3767,14 @@ Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 256.961402 - 0: The maximum resident set size (KB) = 1088720 + 0: The total amount of wall time = 252.647918 + 0: The maximum resident set size (KB) = 1087688 Test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rap_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_control_dyn32_phy32 Checking test 111 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3821,14 +3821,14 @@ Checking test 111 rap_control_dyn32_phy32 results .... Comparing 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.778640 - 0: The maximum resident set size (KB) = 1010444 + 0: The total amount of wall time = 383.758112 + 0: The maximum resident set size (KB) = 1006020 Test 111 rap_control_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hrrr_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hrrr_control_dyn32_phy32 Checking test 112 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3875,14 +3875,14 @@ Checking test 112 hrrr_control_dyn32_phy32 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 = 197.815621 - 0: The maximum resident set size (KB) = 952020 + 0: The total amount of wall time = 203.432345 + 0: The maximum resident set size (KB) = 960216 Test 112 hrrr_control_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rap_2threads_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_2threads_dyn32_phy32 Checking test 113 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3929,14 +3929,14 @@ Checking test 113 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 398.557347 - 0: The maximum resident set size (KB) = 1016196 + 0: The total amount of wall time = 400.134561 + 0: The maximum resident set size (KB) = 1030680 Test 113 rap_2threads_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hrrr_control_2threads_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hrrr_control_2threads_dyn32_phy32 Checking test 114 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3983,14 +3983,14 @@ Checking test 114 hrrr_control_2threads_dyn32_phy32 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 = 205.639857 - 0: The maximum resident set size (KB) = 1007188 + 0: The total amount of wall time = 206.607952 + 0: The maximum resident set size (KB) = 1006572 Test 114 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hrrr_control_decomp_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hrrr_control_decomp_dyn32_phy32 Checking test 115 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4037,14 +4037,14 @@ Checking test 115 hrrr_control_decomp_dyn32_phy32 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 = 211.533046 - 0: The maximum resident set size (KB) = 915468 + 0: The total amount of wall time = 215.344012 + 0: The maximum resident set size (KB) = 902636 Test 115 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rap_restart_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_restart_dyn32_phy32 Checking test 116 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4083,14 +4083,14 @@ Checking test 116 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 283.062178 - 0: The maximum resident set size (KB) = 952872 + 0: The total amount of wall time = 282.287813 + 0: The maximum resident set size (KB) = 954616 Test 116 rap_restart_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hrrr_control_restart_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hrrr_control_restart_dyn32_phy32 Checking test 117 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4129,14 +4129,14 @@ Checking test 117 hrrr_control_restart_dyn32_phy32 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 = 103.922028 - 0: The maximum resident set size (KB) = 868764 + 0: The total amount of wall time = 103.415718 + 0: The maximum resident set size (KB) = 869096 Test 117 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn64_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rap_control_dyn64_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_control_dyn64_phy32 Checking test 118 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4183,81 +4183,81 @@ Checking test 118 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 242.899477 - 0: The maximum resident set size (KB) = 974616 + 0: The total amount of wall time = 250.548117 + 0: The maximum resident set size (KB) = 975360 Test 118 rap_control_dyn64_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rap_control_debug_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_control_debug_dyn32_phy32 Checking test 119 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.985592 - 0: The maximum resident set size (KB) = 1053704 + 0: The total amount of wall time = 273.325041 + 0: The maximum resident set size (KB) = 1059336 Test 119 rap_control_debug_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hrrr_control_debug_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hrrr_control_debug_dyn32_phy32 Checking test 120 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.774497 - 0: The maximum resident set size (KB) = 1049636 + 0: The total amount of wall time = 282.257416 + 0: The maximum resident set size (KB) = 1053436 Test 120 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug_dyn64_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/rap_control_dyn64_phy32_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_control_dyn64_phy32_debug Checking test 121 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.066178 - 0: The maximum resident set size (KB) = 1098800 + 0: The total amount of wall time = 285.234600 + 0: The maximum resident set size (KB) = 1103200 Test 121 rap_control_dyn64_phy32_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hafs_regional_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hafs_regional_atm Checking test 122 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 269.208026 - 0: The maximum resident set size (KB) = 1054420 + 0: The total amount of wall time = 269.737592 + 0: The maximum resident set size (KB) = 1055196 Test 122 hafs_regional_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hafs_regional_atm_thompson_gfdlsf +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hafs_regional_atm_thompson_gfdlsf Checking test 123 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 424.929690 - 0: The maximum resident set size (KB) = 1423424 + 0: The total amount of wall time = 398.032081 + 0: The maximum resident set size (KB) = 1422116 Test 123 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_ocn -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hafs_regional_atm_ocn +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hafs_regional_atm_ocn Checking test 124 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4266,14 +4266,14 @@ Checking test 124 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 380.936575 - 0: The maximum resident set size (KB) = 1225844 + 0: The total amount of wall time = 386.481844 + 0: The maximum resident set size (KB) = 1229488 Test 124 hafs_regional_atm_ocn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_wav -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hafs_regional_atm_wav +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hafs_regional_atm_wav Checking test 125 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4282,14 +4282,14 @@ Checking test 125 hafs_regional_atm_wav 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 = 728.128958 - 0: The maximum resident set size (KB) = 1263108 + 0: The total amount of wall time = 733.354407 + 0: The maximum resident set size (KB) = 1261740 Test 125 hafs_regional_atm_wav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_ocn_wav -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hafs_regional_atm_ocn_wav +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hafs_regional_atm_ocn_wav Checking test 126 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4300,28 +4300,28 @@ Checking test 126 hafs_regional_atm_ocn_wav 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 = 828.246699 - 0: The maximum resident set size (KB) = 1221524 + 0: The total amount of wall time = 832.389094 + 0: The maximum resident set size (KB) = 1282792 Test 126 hafs_regional_atm_ocn_wav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hafs_regional_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hafs_regional_1nest_atm Checking test 127 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 364.001952 - 0: The maximum resident set size (KB) = 512676 + 0: The total amount of wall time = 365.599015 + 0: The maximum resident set size (KB) = 513020 Test 127 hafs_regional_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hafs_regional_telescopic_2nests_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hafs_regional_telescopic_2nests_atm Checking test 128 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4330,28 +4330,28 @@ Checking test 128 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 411.548035 - 0: The maximum resident set size (KB) = 518820 + 0: The total amount of wall time = 415.958286 + 0: The maximum resident set size (KB) = 515156 Test 128 hafs_regional_telescopic_2nests_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hafs_global_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hafs_global_1nest_atm Checking test 129 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 174.557804 - 0: The maximum resident set size (KB) = 351360 + 0: The total amount of wall time = 175.662200 + 0: The maximum resident set size (KB) = 357592 Test 129 hafs_global_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_multiple_4nests_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hafs_global_multiple_4nests_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hafs_global_multiple_4nests_atm Checking test 130 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4369,14 +4369,14 @@ Checking test 130 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 457.650168 - 0: The maximum resident set size (KB) = 425612 + 0: The total amount of wall time = 469.955226 + 0: The maximum resident set size (KB) = 427488 Test 130 hafs_global_multiple_4nests_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hafs_regional_specified_moving_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hafs_regional_specified_moving_1nest_atm Checking test 131 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4385,28 +4385,28 @@ Checking test 131 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 230.822361 - 0: The maximum resident set size (KB) = 519624 + 0: The total amount of wall time = 229.514594 + 0: The maximum resident set size (KB) = 525540 Test 131 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hafs_regional_storm_following_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hafs_regional_storm_following_1nest_atm Checking test 132 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 217.707845 - 0: The maximum resident set size (KB) = 528096 + 0: The total amount of wall time = 217.383257 + 0: The maximum resident set size (KB) = 520812 Test 132 hafs_regional_storm_following_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hafs_regional_storm_following_1nest_atm_ocn +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hafs_regional_storm_following_1nest_atm_ocn Checking test 133 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4415,42 +4415,42 @@ Checking test 133 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 287.628445 - 0: The maximum resident set size (KB) = 568768 + 0: The total amount of wall time = 288.268738 + 0: The maximum resident set size (KB) = 567400 Test 133 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_storm_following_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hafs_global_storm_following_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hafs_global_storm_following_1nest_atm Checking test 134 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 73.999132 - 0: The maximum resident set size (KB) = 377372 + 0: The total amount of wall time = 67.916198 + 0: The maximum resident set size (KB) = 372756 Test 134 hafs_global_storm_following_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 750.193223 - 0: The maximum resident set size (KB) = 588324 + 0: The total amount of wall time = 747.687513 + 0: The maximum resident set size (KB) = 587772 Test 135 hafs_regional_storm_following_1nest_atm_ocn_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 136 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4461,14 +4461,14 @@ Checking test 136 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 535.686951 - 0: The maximum resident set size (KB) = 627424 + 0: The total amount of wall time = 542.186519 + 0: The maximum resident set size (KB) = 617936 Test 136 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_docn -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hafs_regional_docn +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hafs_regional_docn Checking test 137 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4476,14 +4476,14 @@ Checking test 137 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 358.808746 - 0: The maximum resident set size (KB) = 1238872 + 0: The total amount of wall time = 360.868688 + 0: The maximum resident set size (KB) = 1231964 Test 137 hafs_regional_docn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_docn_oisst -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hafs_regional_docn_oisst +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hafs_regional_docn_oisst Checking test 138 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4491,131 +4491,131 @@ Checking test 138 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 363.292017 - 0: The maximum resident set size (KB) = 1231256 + 0: The total amount of wall time = 359.140965 + 0: The maximum resident set size (KB) = 1230980 Test 138 hafs_regional_docn_oisst PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_datm_cdeps -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/hafs_regional_datm_cdeps +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hafs_regional_datm_cdeps Checking test 139 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 933.942370 - 0: The maximum resident set size (KB) = 1045564 + 0: The total amount of wall time = 945.569260 + 0: The maximum resident set size (KB) = 1045080 Test 139 hafs_regional_datm_cdeps PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/datm_cdeps_control_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/datm_cdeps_control_cfsr Checking test 140 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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.574864 - 0: The maximum resident set size (KB) = 1071160 + 0: The total amount of wall time = 146.198151 + 0: The maximum resident set size (KB) = 1058448 Test 140 datm_cdeps_control_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/datm_cdeps_restart_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/datm_cdeps_restart_cfsr Checking test 141 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 96.343399 - 0: The maximum resident set size (KB) = 1030596 + 0: The total amount of wall time = 91.947296 + 0: The maximum resident set size (KB) = 1008020 Test 141 datm_cdeps_restart_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/datm_cdeps_control_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/datm_cdeps_control_gefs Checking test 142 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 144.834209 - 0: The maximum resident set size (KB) = 975504 + 0: The total amount of wall time = 146.022056 + 0: The maximum resident set size (KB) = 959064 Test 142 datm_cdeps_control_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_iau_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/datm_cdeps_iau_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/datm_cdeps_iau_gefs Checking test 143 datm_cdeps_iau_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.329485 - 0: The maximum resident set size (KB) = 971464 + 0: The total amount of wall time = 145.581507 + 0: The maximum resident set size (KB) = 968112 Test 143 datm_cdeps_iau_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_stochy_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/datm_cdeps_stochy_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/datm_cdeps_stochy_gefs Checking test 144 datm_cdeps_stochy_gefs 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.521171 - 0: The maximum resident set size (KB) = 966768 + 0: The total amount of wall time = 142.841358 + 0: The maximum resident set size (KB) = 976704 Test 144 datm_cdeps_stochy_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_ciceC_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/datm_cdeps_ciceC_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/datm_cdeps_ciceC_cfsr Checking test 145 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.970375 - 0: The maximum resident set size (KB) = 1066316 + 0: The total amount of wall time = 144.747532 + 0: The maximum resident set size (KB) = 1074384 Test 145 datm_cdeps_ciceC_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_bulk_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/datm_cdeps_bulk_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/datm_cdeps_bulk_cfsr Checking test 146 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 145.861325 - 0: The maximum resident set size (KB) = 1049184 + 0: The total amount of wall time = 147.278170 + 0: The maximum resident set size (KB) = 1071232 Test 146 datm_cdeps_bulk_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_bulk_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/datm_cdeps_bulk_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/datm_cdeps_bulk_gefs Checking test 147 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 143.974206 - 0: The maximum resident set size (KB) = 974220 + 0: The total amount of wall time = 146.761412 + 0: The maximum resident set size (KB) = 972640 Test 147 datm_cdeps_bulk_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_mx025_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/datm_cdeps_mx025_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/datm_cdeps_mx025_cfsr Checking test 148 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4624,14 +4624,14 @@ Checking test 148 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 439.795129 - 0: The maximum resident set size (KB) = 874752 + 0: The total amount of wall time = 446.164853 + 0: The maximum resident set size (KB) = 881144 Test 148 datm_cdeps_mx025_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_mx025_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/datm_cdeps_mx025_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/datm_cdeps_mx025_gefs Checking test 149 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4640,77 +4640,77 @@ Checking test 149 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 441.614795 - 0: The maximum resident set size (KB) = 925356 + 0: The total amount of wall time = 447.343849 + 0: The maximum resident set size (KB) = 926128 Test 149 datm_cdeps_mx025_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/datm_cdeps_multiple_files_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/datm_cdeps_multiple_files_cfsr Checking test 150 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.891571 - 0: The maximum resident set size (KB) = 1068424 + 0: The total amount of wall time = 149.634590 + 0: The maximum resident set size (KB) = 1055320 Test 150 datm_cdeps_multiple_files_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/datm_cdeps_3072x1536_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/datm_cdeps_3072x1536_cfsr Checking test 151 datm_cdeps_3072x1536_cfsr 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 = 198.703107 - 0: The maximum resident set size (KB) = 2298328 + 0: The total amount of wall time = 197.917689 + 0: The maximum resident set size (KB) = 2365664 Test 151 datm_cdeps_3072x1536_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_gfs -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/datm_cdeps_gfs +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/datm_cdeps_gfs Checking test 152 datm_cdeps_gfs 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 = 200.212437 - 0: The maximum resident set size (KB) = 2358704 + 0: The total amount of wall time = 198.168709 + 0: The maximum resident set size (KB) = 2359908 Test 152 datm_cdeps_gfs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_debug_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/datm_cdeps_debug_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/datm_cdeps_debug_cfsr Checking test 153 datm_cdeps_debug_cfsr 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 = 371.137382 - 0: The maximum resident set size (KB) = 985920 + 0: The total amount of wall time = 354.017644 + 0: The maximum resident set size (KB) = 991668 Test 153 datm_cdeps_debug_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/datm_cdeps_control_cfsr_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/datm_cdeps_control_cfsr_faster Checking test 154 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 145.602484 - 0: The maximum resident set size (KB) = 1065188 + 0: The total amount of wall time = 143.991181 + 0: The maximum resident set size (KB) = 1070184 Test 154 datm_cdeps_control_cfsr_faster PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_lnd_gswp3 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/datm_cdeps_lnd_gswp3 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/datm_cdeps_lnd_gswp3 Checking test 155 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4719,14 +4719,14 @@ Checking test 155 datm_cdeps_lnd_gswp3 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.968962 - 0: The maximum resident set size (KB) = 266144 + 0: The total amount of wall time = 7.030856 + 0: The maximum resident set size (KB) = 261612 Test 155 datm_cdeps_lnd_gswp3 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_lnd_gswp3 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/datm_cdeps_lnd_gswp3_rst +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/datm_cdeps_lnd_gswp3_rst Checking test 156 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4735,14 +4735,14 @@ Checking test 156 datm_cdeps_lnd_gswp3_rst 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 = 15.146591 - 0: The maximum resident set size (KB) = 264424 + 0: The total amount of wall time = 13.267089 + 0: The maximum resident set size (KB) = 284856 Test 156 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_atmlnd_sbs -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_p8_atmlnd_sbs +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_p8_atmlnd_sbs Checking test 157 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4827,14 +4827,14 @@ Checking test 157 control_p8_atmlnd_sbs 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 = 204.616404 - 0: The maximum resident set size (KB) = 1611340 + 0: The total amount of wall time = 203.681403 + 0: The maximum resident set size (KB) = 1606260 Test 157 control_p8_atmlnd_sbs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/atmwav_control_noaero_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/atmwav_control_noaero_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/atmwav_control_noaero_p8 Checking test 158 atmwav_control_noaero_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4877,14 +4877,14 @@ Checking test 158 atmwav_control_noaero_p8 results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 94.470959 - 0: The maximum resident set size (KB) = 1634308 + 0: The total amount of wall time = 93.705737 + 0: The maximum resident set size (KB) = 1645460 Test 158 atmwav_control_noaero_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_atmwav -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/control_atmwav +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_atmwav Checking test 159 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4928,14 +4928,14 @@ Checking test 159 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 88.373016 - 0: The maximum resident set size (KB) = 656400 + 0: The total amount of wall time = 87.494969 + 0: The maximum resident set size (KB) = 665408 Test 159 control_atmwav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/atmaero_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/atmaero_control_p8 Checking test 160 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4979,14 +4979,14 @@ Checking test 160 atmaero_control_p8 results .... Comparing 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.266540 - 0: The maximum resident set size (KB) = 2981296 + 0: The total amount of wall time = 227.145887 + 0: The maximum resident set size (KB) = 2975780 Test 160 atmaero_control_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8_rad -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/atmaero_control_p8_rad +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/atmaero_control_p8_rad Checking test 161 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5030,14 +5030,14 @@ Checking test 161 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 281.360653 - 0: The maximum resident set size (KB) = 3050424 + 0: The total amount of wall time = 279.132207 + 0: The maximum resident set size (KB) = 3050592 Test 161 atmaero_control_p8_rad PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8_rad_micro -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/atmaero_control_p8_rad_micro +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/atmaero_control_p8_rad_micro Checking test 162 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5081,14 +5081,14 @@ Checking test 162 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 287.755306 - 0: The maximum resident set size (KB) = 3058640 + 0: The total amount of wall time = 286.603984 + 0: The maximum resident set size (KB) = 3055608 Test 162 atmaero_control_p8_rad_micro PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/regional_atmaq +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/regional_atmaq Checking test 163 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5104,14 +5104,14 @@ Checking test 163 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 639.433564 - 0: The maximum resident set size (KB) = 1482668 + 0: The total amount of wall time = 615.116390 + 0: The maximum resident set size (KB) = 1478476 Test 163 regional_atmaq PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/regional_atmaq_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/regional_atmaq_debug Checking test 164 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5125,14 +5125,14 @@ Checking test 164 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1228.737485 - 0: The maximum resident set size (KB) = 1404368 + 0: The total amount of wall time = 1205.516766 + 0: The maximum resident set size (KB) = 1401464 Test 164 regional_atmaq_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1713/stmp/jongkim/FV3_RT/rt_131161/regional_atmaq_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/regional_atmaq_faster Checking test 165 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5148,12 +5148,12 @@ Checking test 165 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 559.522945 - 0: The maximum resident set size (KB) = 1476844 + 0: The total amount of wall time = 541.524071 + 0: The maximum resident set size (KB) = 1474248 Test 165 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Tue Apr 18 22:32:15 CDT 2023 -Elapsed time: 01h:15m:00s. Have a nice day! +Sat Apr 22 14:16:41 CDT 2023 +Elapsed time: 01h:14m:53s. Have a nice day! diff --git a/tests/RegressionTests_wcoss2.intel.log b/tests/RegressionTests_wcoss2.intel.log index 6c824e6ac1d..529b8cf6572 100644 --- a/tests/RegressionTests_wcoss2.intel.log +++ b/tests/RegressionTests_wcoss2.intel.log @@ -1,34 +1,35 @@ -Wed Apr 19 16:26:02 UTC 2023 +Mon Apr 24 12:59:32 UTC 2023 Start Regression test -Compile 001 elapsed time 1780 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 1135 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 564 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 505 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 005 elapsed time 982 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 661 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 523 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 008 elapsed time 1314 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 009 elapsed time 463 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 1088 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 1093 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 508 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 013 elapsed time 153 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 922 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 015 elapsed time 776 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 395 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 017 elapsed time 219 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 1283 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 019 elapsed time 728 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 835 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 623 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 022 elapsed time 635 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 780 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 024 elapsed time 404 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 025 elapsed time 782 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Test 012 compile FAIL + +Compile 001 elapsed time 589 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1114 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 2263 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 510 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 005 elapsed time 1121 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 873 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 525 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 962 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 009 elapsed time 471 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 1422 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 1739 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 568 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 014 elapsed time 803 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 1088 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 2135 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 017 elapsed time 2220 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 1673 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 019 elapsed time 1175 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 1515 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 2527 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 022 elapsed time 1329 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 2053 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 024 elapsed time 1049 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 025 elapsed time 1437 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8_mixedmode -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/cpld_control_p8_mixedmode +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -93,14 +94,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 339.539973 -The maximum resident set size (KB) = 2955000 +The total amount of wall time = 332.786944 +The maximum resident set size (KB) = 2954188 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/cpld_control_p8 Checking test 002 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -165,14 +166,14 @@ Checking test 002 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 387.269502 -The maximum resident set size (KB) = 2980728 +The total amount of wall time = 384.428658 +The maximum resident set size (KB) = 2981552 Test 002 cpld_control_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/cpld_restart_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/cpld_restart_p8 Checking test 003 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -225,14 +226,14 @@ Checking test 003 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 235.074639 -The maximum resident set size (KB) = 2871988 +The total amount of wall time = 235.382308 +The maximum resident set size (KB) = 2871276 Test 003 cpld_restart_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/cpld_control_qr_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/cpld_control_qr_p8 Checking test 004 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -297,14 +298,14 @@ Checking test 004 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 388.732844 -The maximum resident set size (KB) = 2994496 +The total amount of wall time = 384.675576 +The maximum resident set size (KB) = 2993652 Test 004 cpld_control_qr_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/cpld_restart_qr_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/cpld_restart_qr_p8 Checking test 005 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -357,14 +358,14 @@ Checking test 005 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 238.592150 -The maximum resident set size (KB) = 2881368 +The total amount of wall time = 245.986310 +The maximum resident set size (KB) = 2880060 Test 005 cpld_restart_qr_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/cpld_2threads_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/cpld_2threads_p8 Checking test 006 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -417,14 +418,14 @@ Checking test 006 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 378.232489 -The maximum resident set size (KB) = 3292164 +The total amount of wall time = 367.611283 +The maximum resident set size (KB) = 3283632 Test 006 cpld_2threads_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/cpld_decomp_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/cpld_decomp_p8 Checking test 007 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -477,14 +478,14 @@ Checking test 007 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 394.332320 -The maximum resident set size (KB) = 2982676 +The total amount of wall time = 383.471617 +The maximum resident set size (KB) = 2977728 Test 007 cpld_decomp_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/cpld_mpi_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/cpld_mpi_p8 Checking test 008 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -537,14 +538,14 @@ Checking test 008 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 330.800854 -The maximum resident set size (KB) = 2915468 +The total amount of wall time = 316.137772 +The maximum resident set size (KB) = 2910048 Test 008 cpld_mpi_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_ciceC_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/cpld_control_ciceC_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/cpld_control_ciceC_p8 Checking test 009 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -609,14 +610,14 @@ Checking test 009 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 396.833674 -The maximum resident set size (KB) = 2985684 +The total amount of wall time = 386.377634 +The maximum resident set size (KB) = 2980368 Test 009 cpld_control_ciceC_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_bmark_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/cpld_bmark_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/cpld_bmark_p8 Checking test 010 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -664,14 +665,14 @@ Checking test 010 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 944.206164 -The maximum resident set size (KB) = 3925572 +The total amount of wall time = 936.996522 +The maximum resident set size (KB) = 3920880 Test 010 cpld_bmark_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_bmark_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/cpld_restart_bmark_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/cpld_restart_bmark_p8 Checking test 011 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -719,14 +720,14 @@ Checking test 011 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 660.994724 -The maximum resident set size (KB) = 3894920 +The total amount of wall time = 651.935188 +The maximum resident set size (KB) = 3896992 Test 011 cpld_restart_bmark_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/cpld_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/cpld_control_noaero_p8 Checking test 012 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -790,14 +791,14 @@ Checking test 012 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 287.135737 -The maximum resident set size (KB) = 1579604 +The total amount of wall time = 281.641551 +The maximum resident set size (KB) = 1575968 Test 012 cpld_control_noaero_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/cpld_control_nowave_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/cpld_control_nowave_noaero_p8 Checking test 013 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -859,14 +860,14 @@ Checking test 013 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 304.275251 -The maximum resident set size (KB) = 1630300 +The total amount of wall time = 298.902385 +The maximum resident set size (KB) = 1635732 Test 013 cpld_control_nowave_noaero_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/cpld_control_noaero_p8_agrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/cpld_control_noaero_p8_agrid Checking test 014 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -928,14 +929,14 @@ Checking test 014 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 310.211095 -The maximum resident set size (KB) = 1628364 +The total amount of wall time = 306.436427 +The maximum resident set size (KB) = 1628592 Test 014 cpld_control_noaero_p8_agrid PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/cpld_control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/cpld_control_c48 Checking test 015 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -985,14 +986,14 @@ Checking test 015 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 439.120708 -The maximum resident set size (KB) = 2637696 +The total amount of wall time = 433.637237 +The maximum resident set size (KB) = 2636848 Test 015 cpld_control_c48 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/cpld_warmstart_c48 Checking test 016 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1042,14 +1043,14 @@ Checking test 016 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 127.539269 -The maximum resident set size (KB) = 2653664 +The total amount of wall time = 122.526893 +The maximum resident set size (KB) = 2654352 Test 016 cpld_warmstart_c48 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/cpld_restart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/cpld_restart_c48 Checking test 017 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1099,14 +1100,14 @@ Checking test 017 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 71.318176 -The maximum resident set size (KB) = 2075196 +The total amount of wall time = 68.401655 +The maximum resident set size (KB) = 2072660 Test 017 cpld_restart_c48 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/cpld_control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/cpld_control_p8_faster Checking test 018 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1171,14 +1172,14 @@ Checking test 018 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 383.690637 -The maximum resident set size (KB) = 2980364 +The total amount of wall time = 382.884060 +The maximum resident set size (KB) = 2979692 Test 018 cpld_control_p8_faster PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_CubedSphereGrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_CubedSphereGrid Checking test 019 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1205,14 +1206,14 @@ Checking test 019 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 130.425935 -The maximum resident set size (KB) = 515084 +The total amount of wall time = 131.389203 +The maximum resident set size (KB) = 518472 Test 019 control_CubedSphereGrid PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_latlon -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_latlon +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_latlon Checking test 020 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1223,14 +1224,14 @@ Checking test 020 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 133.973868 -The maximum resident set size (KB) = 516248 +The total amount of wall time = 132.968888 +The maximum resident set size (KB) = 517172 Test 020 control_latlon PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_wrtGauss_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_wrtGauss_netcdf_parallel Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1241,14 +1242,14 @@ Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 137.440925 -The maximum resident set size (KB) = 513856 +The total amount of wall time = 135.753891 +The maximum resident set size (KB) = 513400 Test 021 control_wrtGauss_netcdf_parallel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_c48 Checking test 022 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1287,14 +1288,14 @@ Checking test 022 control_c48 results .... 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.751432 -The maximum resident set size (KB) = 678048 +The total amount of wall time = 327.610061 +The maximum resident set size (KB) = 673976 Test 022 control_c48 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c192 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_c192 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_c192 Checking test 023 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1305,14 +1306,14 @@ Checking test 023 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 531.982427 -The maximum resident set size (KB) = 616212 +The total amount of wall time = 531.961170 +The maximum resident set size (KB) = 616828 Test 023 control_c192 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c384 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_c384 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_c384 Checking test 024 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1323,14 +1324,14 @@ Checking test 024 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 569.539223 -The maximum resident set size (KB) = 926136 +The total amount of wall time = 589.700932 +The maximum resident set size (KB) = 920804 Test 024 control_c384 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c384gdas -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_c384gdas +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_c384gdas Checking test 025 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1373,14 +1374,14 @@ Checking test 025 control_c384gdas 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 = 499.469828 -The maximum resident set size (KB) = 1057676 +The total amount of wall time = 498.218990 +The maximum resident set size (KB) = 1064028 Test 025 control_c384gdas PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_stochy Checking test 026 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1391,28 +1392,28 @@ Checking test 026 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 91.363287 -The maximum resident set size (KB) = 520244 +The total amount of wall time = 90.417520 +The maximum resident set size (KB) = 522660 Test 026 control_stochy PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_stochy_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_stochy_restart Checking test 027 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 49.762390 -The maximum resident set size (KB) = 291376 +The total amount of wall time = 49.242742 +The maximum resident set size (KB) = 290832 Test 027 control_stochy_restart PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_lndp Checking test 028 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1423,14 +1424,14 @@ Checking test 028 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 84.014364 -The maximum resident set size (KB) = 518540 +The total amount of wall time = 83.451979 +The maximum resident set size (KB) = 520864 Test 028 control_lndp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_iovr4 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_iovr4 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_iovr4 Checking test 029 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1445,14 +1446,14 @@ Checking test 029 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 136.928546 -The maximum resident set size (KB) = 516116 +The total amount of wall time = 136.424906 +The maximum resident set size (KB) = 516640 Test 029 control_iovr4 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_iovr5 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_iovr5 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_iovr5 Checking test 030 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1467,14 +1468,14 @@ Checking test 030 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 138.282185 -The maximum resident set size (KB) = 517012 +The total amount of wall time = 136.648895 +The maximum resident set size (KB) = 519496 Test 030 control_iovr5 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_p8 Checking test 031 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1521,14 +1522,14 @@ Checking test 031 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 183.036450 -The maximum resident set size (KB) = 1491880 +The total amount of wall time = 191.641218 +The maximum resident set size (KB) = 1485720 Test 031 control_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_restart_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_restart_p8 Checking test 032 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1567,14 +1568,14 @@ Checking test 032 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 103.282808 -The maximum resident set size (KB) = 658612 +The total amount of wall time = 101.539990 +The maximum resident set size (KB) = 656120 Test 032 control_restart_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_qr_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_qr_p8 Checking test 033 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1621,14 +1622,14 @@ Checking test 033 control_qr_p8 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 = 179.959380 -The maximum resident set size (KB) = 1501064 +The total amount of wall time = 179.926871 +The maximum resident set size (KB) = 1498956 Test 033 control_qr_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_restart_qr_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_restart_qr_p8 Checking test 034 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1667,14 +1668,14 @@ Checking test 034 control_restart_qr_p8 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 = 104.123205 -The maximum resident set size (KB) = 668208 +The total amount of wall time = 101.997620 +The maximum resident set size (KB) = 666896 Test 034 control_restart_qr_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_decomp_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_decomp_p8 Checking test 035 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1717,14 +1718,14 @@ Checking test 035 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 185.844252 -The maximum resident set size (KB) = 1476740 +The total amount of wall time = 200.108793 +The maximum resident set size (KB) = 1479360 Test 035 control_decomp_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_2threads_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_2threads_p8 Checking test 036 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1767,14 +1768,14 @@ Checking test 036 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 158.549586 -The maximum resident set size (KB) = 1577292 +The total amount of wall time = 176.135736 +The maximum resident set size (KB) = 1580672 Test 036 control_2threads_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_p8_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_p8_lndp Checking test 037 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1793,14 +1794,14 @@ Checking test 037 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 325.780218 -The maximum resident set size (KB) = 1489044 +The total amount of wall time = 330.925937 +The maximum resident set size (KB) = 1488000 Test 037 control_p8_lndp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_rrtmgp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_p8_rrtmgp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_p8_rrtmgp Checking test 038 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1847,14 +1848,14 @@ Checking test 038 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 236.977197 -The maximum resident set size (KB) = 1552276 +The total amount of wall time = 251.732612 +The maximum resident set size (KB) = 1547224 Test 038 control_p8_rrtmgp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_mynn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_p8_mynn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_p8_mynn Checking test 039 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1901,14 +1902,14 @@ Checking test 039 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 184.907407 -The maximum resident set size (KB) = 1497112 +The total amount of wall time = 195.904170 +The maximum resident set size (KB) = 1498264 Test 039 control_p8_mynn PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/merra2_thompson -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/merra2_thompson +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/merra2_thompson Checking test 040 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1955,14 +1956,14 @@ Checking test 040 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 207.239155 -The maximum resident set size (KB) = 1498148 +The total amount of wall time = 208.681940 +The maximum resident set size (KB) = 1491160 Test 040 merra2_thompson PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/regional_control Checking test 041 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1973,28 +1974,28 @@ Checking test 041 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 295.913394 -The maximum resident set size (KB) = 658056 +The total amount of wall time = 311.992347 +The maximum resident set size (KB) = 657496 Test 041 regional_control PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/regional_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/regional_restart Checking test 042 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 163.446951 -The maximum resident set size (KB) = 652060 +The total amount of wall time = 155.597256 +The maximum resident set size (KB) = 653292 Test 042 regional_restart PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/regional_control_qr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/regional_control_qr Checking test 043 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2005,28 +2006,28 @@ Checking test 043 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 294.495697 -The maximum resident set size (KB) = 653172 +The total amount of wall time = 308.573372 +The maximum resident set size (KB) = 653556 Test 043 regional_control_qr PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/regional_restart_qr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/regional_restart_qr Checking test 044 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 160.569722 -The maximum resident set size (KB) = 653444 +The total amount of wall time = 156.610277 +The maximum resident set size (KB) = 653332 Test 044 regional_restart_qr PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/regional_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/regional_decomp Checking test 045 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2037,14 +2038,14 @@ Checking test 045 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 310.740058 -The maximum resident set size (KB) = 658896 +The total amount of wall time = 325.659223 +The maximum resident set size (KB) = 654516 Test 045 regional_decomp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/regional_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/regional_2threads Checking test 046 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2055,14 +2056,14 @@ Checking test 046 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 180.500578 -The maximum resident set size (KB) = 696616 +The total amount of wall time = 193.509057 +The maximum resident set size (KB) = 693768 Test 046 regional_2threads PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_noquilt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/regional_noquilt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/regional_noquilt Checking test 047 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2070,28 +2071,28 @@ Checking test 047 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 315.305789 -The maximum resident set size (KB) = 647532 +The total amount of wall time = 315.075000 +The maximum resident set size (KB) = 650708 Test 047 regional_noquilt PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/regional_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/regional_netcdf_parallel Checking test 048 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK -The total amount of wall time = 291.639575 -The maximum resident set size (KB) = 654944 +The total amount of wall time = 290.159693 +The maximum resident set size (KB) = 650444 Test 048 regional_netcdf_parallel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/regional_2dwrtdecomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/regional_2dwrtdecomp Checking test 049 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2102,14 +2103,14 @@ Checking test 049 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 292.805409 -The maximum resident set size (KB) = 658356 +The total amount of wall time = 306.258222 +The maximum resident set size (KB) = 654280 Test 049 regional_2dwrtdecomp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/fv3_regional_wofs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/regional_wofs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/regional_wofs Checking test 050 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2120,14 +2121,14 @@ Checking test 050 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 383.723252 -The maximum resident set size (KB) = 340308 +The total amount of wall time = 366.468870 +The maximum resident set size (KB) = 342520 Test 050 regional_wofs PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rap_control Checking test 051 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2174,14 +2175,14 @@ Checking test 051 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 422.393621 -The maximum resident set size (KB) = 893596 +The total amount of wall time = 418.516176 +The maximum resident set size (KB) = 891092 Test 051 rap_control PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/regional_spp_sppt_shum_skeb +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/regional_spp_sppt_shum_skeb Checking test 052 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2192,14 +2193,14 @@ Checking test 052 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 248.307023 -The maximum resident set size (KB) = 990696 +The total amount of wall time = 245.803208 +The maximum resident set size (KB) = 990588 Test 052 regional_spp_sppt_shum_skeb PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rap_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rap_decomp Checking test 053 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2246,14 +2247,14 @@ Checking test 053 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 436.158598 -The maximum resident set size (KB) = 894000 +The total amount of wall time = 433.654119 +The maximum resident set size (KB) = 896048 Test 053 rap_decomp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rap_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rap_2threads Checking test 054 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2300,14 +2301,14 @@ Checking test 054 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 390.867446 -The maximum resident set size (KB) = 964400 +The total amount of wall time = 388.907757 +The maximum resident set size (KB) = 970204 Test 054 rap_2threads PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rap_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rap_restart Checking test 055 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2346,14 +2347,14 @@ Checking test 055 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 214.356255 -The maximum resident set size (KB) = 649708 +The total amount of wall time = 213.645148 +The maximum resident set size (KB) = 649556 Test 055 rap_restart PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rap_sfcdiff Checking test 056 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2400,14 +2401,14 @@ Checking test 056 rap_sfcdiff results .... 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.411036 -The maximum resident set size (KB) = 896076 +The total amount of wall time = 423.262494 +The maximum resident set size (KB) = 894008 Test 056 rap_sfcdiff PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rap_sfcdiff_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rap_sfcdiff_decomp Checking test 057 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2454,14 +2455,14 @@ Checking test 057 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 440.473573 -The maximum resident set size (KB) = 896912 +The total amount of wall time = 439.354757 +The maximum resident set size (KB) = 894784 Test 057 rap_sfcdiff_decomp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rap_sfcdiff_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rap_sfcdiff_restart Checking test 058 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2500,14 +2501,14 @@ Checking test 058 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 312.574639 -The maximum resident set size (KB) = 647448 +The total amount of wall time = 310.769795 +The maximum resident set size (KB) = 645264 Test 058 rap_sfcdiff_restart PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hrrr_control Checking test 059 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2554,14 +2555,14 @@ Checking test 059 hrrr_control results .... 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.800005 -The maximum resident set size (KB) = 894940 +The total amount of wall time = 406.789067 +The maximum resident set size (KB) = 895696 Test 059 hrrr_control PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/hrrr_control_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hrrr_control_decomp Checking test 060 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2608,14 +2609,14 @@ Checking test 060 hrrr_control_decomp results .... 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.007042 -The maximum resident set size (KB) = 891152 +The total amount of wall time = 421.128381 +The maximum resident set size (KB) = 894680 Test 060 hrrr_control_decomp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/hrrr_control_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hrrr_control_2threads Checking test 061 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2662,14 +2663,14 @@ Checking test 061 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 375.839274 -The maximum resident set size (KB) = 959256 +The total amount of wall time = 374.072111 +The maximum resident set size (KB) = 961276 Test 061 hrrr_control_2threads PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/hrrr_control_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hrrr_control_restart Checking test 062 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2708,14 +2709,14 @@ Checking test 062 hrrr_control_restart results .... 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.159398 -The maximum resident set size (KB) = 643172 +The total amount of wall time = 298.532114 +The maximum resident set size (KB) = 640484 Test 062 hrrr_control_restart PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1beta -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rrfs_v1beta +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rrfs_v1beta Checking test 063 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2762,14 +2763,14 @@ Checking test 063 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 422.591907 -The maximum resident set size (KB) = 888036 +The total amount of wall time = 417.091979 +The maximum resident set size (KB) = 894008 Test 063 rrfs_v1beta PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1nssl -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rrfs_v1nssl +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rrfs_v1nssl Checking test 064 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2784,14 +2785,14 @@ Checking test 064 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 483.280264 -The maximum resident set size (KB) = 579508 +The total amount of wall time = 481.173609 +The maximum resident set size (KB) = 579812 Test 064 rrfs_v1nssl PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rrfs_v1nssl_nohailnoccn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rrfs_v1nssl_nohailnoccn Checking test 065 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2806,14 +2807,14 @@ Checking test 065 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 474.926020 -The maximum resident set size (KB) = 574072 +The total amount of wall time = 473.839734 +The maximum resident set size (KB) = 573532 Test 065 rrfs_v1nssl_nohailnoccn PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rrfs_smoke_conus13km_hrrr_warm Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2822,14 +2823,14 @@ Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 153.821641 -The maximum resident set size (KB) = 803820 +The total amount of wall time = 149.146413 +The maximum resident set size (KB) = 802528 Test 066 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rrfs_smoke_conus13km_hrrr_warm_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 067 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2838,14 +2839,14 @@ Checking test 067 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 112.144168 -The maximum resident set size (KB) = 807436 +The total amount of wall time = 106.625431 +The maximum resident set size (KB) = 806268 Test 067 rrfs_smoke_conus13km_hrrr_warm_2threads PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rrfs_conus13km_hrrr_warm Checking test 068 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2854,14 +2855,14 @@ Checking test 068 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 142.349806 -The maximum resident set size (KB) = 782980 +The total amount of wall time = 138.435385 +The maximum resident set size (KB) = 783120 Test 068 rrfs_conus13km_hrrr_warm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rrfs_smoke_conus13km_radar_tten_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rrfs_smoke_conus13km_radar_tten_warm Checking test 069 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2870,26 +2871,26 @@ Checking test 069 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 158.110560 -The maximum resident set size (KB) = 804632 +The total amount of wall time = 150.744601 +The maximum resident set size (KB) = 806468 Test 069 rrfs_smoke_conus13km_radar_tten_warm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 070 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 70.755517 -The maximum resident set size (KB) = 764760 +The total amount of wall time = 69.626581 +The maximum resident set size (KB) = 767764 Test 070 rrfs_conus13km_hrrr_warm_restart_mismatch PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmg -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_csawmg +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_csawmg Checking test 071 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2900,14 +2901,14 @@ Checking test 071 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 348.717187 -The maximum resident set size (KB) = 585676 +The total amount of wall time = 349.275207 +The maximum resident set size (KB) = 584444 Test 071 control_csawmg PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmgt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_csawmgt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_csawmgt Checking test 072 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2918,14 +2919,14 @@ Checking test 072 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 343.083543 -The maximum resident set size (KB) = 583180 +The total amount of wall time = 364.245652 +The maximum resident set size (KB) = 583840 Test 072 control_csawmgt PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_ras -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_ras +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_ras Checking test 073 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2936,26 +2937,26 @@ Checking test 073 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 183.355463 -The maximum resident set size (KB) = 553028 +The total amount of wall time = 181.458349 +The maximum resident set size (KB) = 552340 Test 073 control_ras PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wam -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_wam +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_wam Checking test 074 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 118.721650 -The maximum resident set size (KB) = 276372 +The total amount of wall time = 118.067153 +The maximum resident set size (KB) = 275504 Test 074 control_wam PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_p8_faster Checking test 075 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3002,14 +3003,14 @@ Checking test 075 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 176.390734 -The maximum resident set size (KB) = 1486628 +The total amount of wall time = 188.289726 +The maximum resident set size (KB) = 1493756 Test 075 control_p8_faster PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/regional_control_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/regional_control_faster Checking test 076 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3020,410 +3021,26 @@ Checking test 076 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 286.436035 -The maximum resident set size (KB) = 656880 +The total amount of wall time = 295.851219 +The maximum resident set size (KB) = 653092 Test 076 regional_control_faster PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rrfs_smoke_conus13km_hrrr_warm_debug -Checking test 077 rrfs_smoke_conus13km_hrrr_warm_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 905.443128 -The maximum resident set size (KB) = 828344 - -Test 077 rrfs_smoke_conus13km_hrrr_warm_debug PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rrfs_smoke_conus13km_hrrr_warm_debug_2threads -Checking test 078 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 519.809870 -The maximum resident set size (KB) = 827556 - -Test 078 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rrfs_conus13km_hrrr_warm_debug -Checking test 079 rrfs_conus13km_hrrr_warm_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 810.646900 -The maximum resident set size (KB) = 803752 - -Test 079 rrfs_conus13km_hrrr_warm_debug PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_CubedSphereGrid_debug -Checking test 080 control_CubedSphereGrid_debug results .... - Comparing sfcf000.tile1.nc .........OK - Comparing sfcf000.tile2.nc .........OK - Comparing sfcf000.tile3.nc .........OK - Comparing sfcf000.tile4.nc .........OK - Comparing sfcf000.tile5.nc .........OK - Comparing sfcf000.tile6.nc .........OK - Comparing sfcf001.tile1.nc .........OK - Comparing sfcf001.tile2.nc .........OK - Comparing sfcf001.tile3.nc .........OK - Comparing sfcf001.tile4.nc .........OK - Comparing sfcf001.tile5.nc .........OK - Comparing sfcf001.tile6.nc .........OK - Comparing atmf000.tile1.nc .........OK - Comparing atmf000.tile2.nc .........OK - Comparing atmf000.tile3.nc .........OK - Comparing atmf000.tile4.nc .........OK - Comparing atmf000.tile5.nc .........OK - Comparing atmf000.tile6.nc .........OK - Comparing atmf001.tile1.nc .........OK - Comparing atmf001.tile2.nc .........OK - Comparing atmf001.tile3.nc .........OK - Comparing atmf001.tile4.nc .........OK - Comparing atmf001.tile5.nc .........OK - Comparing atmf001.tile6.nc .........OK - -The total amount of wall time = 157.448230 -The maximum resident set size (KB) = 674284 - -Test 080 control_CubedSphereGrid_debug PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_wrtGauss_netcdf_parallel_debug -Checking test 081 control_wrtGauss_netcdf_parallel_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 157.752026 -The maximum resident set size (KB) = 681364 - -Test 081 control_wrtGauss_netcdf_parallel_debug PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_stochy_debug -Checking test 082 control_stochy_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 180.334949 -The maximum resident set size (KB) = 686204 - -Test 082 control_stochy_debug PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_lndp_debug -Checking test 083 control_lndp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 159.573522 -The maximum resident set size (KB) = 683368 - -Test 083 control_lndp_debug PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmg_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_csawmg_debug -Checking test 084 control_csawmg_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 255.421356 -The maximum resident set size (KB) = 719892 - -Test 084 control_csawmg_debug PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmgt_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_csawmgt_debug -Checking test 085 control_csawmgt_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 251.598991 -The maximum resident set size (KB) = 718860 - -Test 085 control_csawmgt_debug PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_ras_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_ras_debug -Checking test 086 control_ras_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 161.543449 -The maximum resident set size (KB) = 694292 - -Test 086 control_ras_debug PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_diag_debug -Checking test 087 control_diag_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 162.369050 -The maximum resident set size (KB) = 736636 - -Test 087 control_diag_debug PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_debug_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_debug_p8 -Checking test 088 control_debug_p8 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 187.597736 -The maximum resident set size (KB) = 1498624 - -Test 088 control_debug_p8 PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/regional_debug -Checking test 089 regional_debug results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - -The total amount of wall time = 1039.595080 -The maximum resident set size (KB) = 678524 - -Test 089 regional_debug PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rap_control_debug -Checking test 090 rap_control_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 296.686439 -The maximum resident set size (KB) = 1056176 - -Test 090 rap_control_debug PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/hrrr_control_debug -Checking test 091 hrrr_control_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 290.483752 -The maximum resident set size (KB) = 1052036 - -Test 091 hrrr_control_debug PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rap_unified_drag_suite_debug -Checking test 092 rap_unified_drag_suite_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 297.256790 -The maximum resident set size (KB) = 1056096 - -Test 092 rap_unified_drag_suite_debug PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rap_diag_debug -Checking test 093 rap_diag_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 308.625929 -The maximum resident set size (KB) = 1137020 - -Test 093 rap_diag_debug PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rap_cires_ugwp_debug -Checking test 094 rap_cires_ugwp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 305.098400 -The maximum resident set size (KB) = 1051148 - -Test 094 rap_cires_ugwp_debug PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rap_unified_ugwp_debug -Checking test 095 rap_unified_ugwp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 303.344739 -The maximum resident set size (KB) = 1051584 - -Test 095 rap_unified_ugwp_debug PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rap_lndp_debug -Checking test 096 rap_lndp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 299.792449 -The maximum resident set size (KB) = 1056824 - -Test 096 rap_lndp_debug PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_flake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rap_flake_debug -Checking test 097 rap_flake_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 297.987993 -The maximum resident set size (KB) = 1054024 - -Test 097 rap_flake_debug PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_progcld_thompson_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rap_progcld_thompson_debug -Checking test 098 rap_progcld_thompson_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 296.412497 -The maximum resident set size (KB) = 1055236 - -Test 098 rap_progcld_thompson_debug PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_noah_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rap_noah_debug -Checking test 099 rap_noah_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 292.168813 -The maximum resident set size (KB) = 1046404 - -Test 099 rap_noah_debug PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rap_sfcdiff_debug -Checking test 100 rap_sfcdiff_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 298.133766 -The maximum resident set size (KB) = 1052108 - -Test 100 rap_sfcdiff_debug PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 101 rap_noah_sfcdiff_cires_ugwp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 493.098912 -The maximum resident set size (KB) = 1052864 - -Test 101 rap_noah_sfcdiff_cires_ugwp_debug PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1beta_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rrfs_v1beta_debug -Checking test 102 rrfs_v1beta_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 291.553659 -The maximum resident set size (KB) = 1049100 - -Test 102 rrfs_v1beta_debug PASS - - baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wam_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_wam_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_wam_debug Checking test 103 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 297.285559 -The maximum resident set size (KB) = 302080 +The total amount of wall time = 297.294187 +The maximum resident set size (KB) = 302664 Test 103 control_wam_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3434,14 +3051,14 @@ Checking test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 233.791170 -The maximum resident set size (KB) = 892048 +The total amount of wall time = 232.449938 +The maximum resident set size (KB) = 887800 Test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rap_control_dyn32_phy32 Checking test 105 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3488,14 +3105,14 @@ Checking test 105 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 356.887978 -The maximum resident set size (KB) = 781652 +The total amount of wall time = 353.386201 +The maximum resident set size (KB) = 782124 Test 105 rap_control_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hrrr_control_dyn32_phy32 Checking test 106 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3542,14 +3159,14 @@ Checking test 106 hrrr_control_dyn32_phy32 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 = 189.453837 -The maximum resident set size (KB) = 779500 +The total amount of wall time = 188.356154 +The maximum resident set size (KB) = 776808 Test 106 hrrr_control_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rap_2threads_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rap_2threads_dyn32_phy32 Checking test 107 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3596,14 +3213,14 @@ Checking test 107 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 331.078229 -The maximum resident set size (KB) = 837040 +The total amount of wall time = 332.172607 +The maximum resident set size (KB) = 833488 Test 107 rap_2threads_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/hrrr_control_2threads_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hrrr_control_2threads_dyn32_phy32 Checking test 108 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3650,14 +3267,14 @@ Checking test 108 hrrr_control_2threads_dyn32_phy32 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 = 174.140247 -The maximum resident set size (KB) = 831660 +The total amount of wall time = 173.043021 +The maximum resident set size (KB) = 832080 Test 108 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/hrrr_control_decomp_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hrrr_control_decomp_dyn32_phy32 Checking test 109 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3704,14 +3321,14 @@ Checking test 109 hrrr_control_decomp_dyn32_phy32 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 = 197.130587 -The maximum resident set size (KB) = 775064 +The total amount of wall time = 195.623567 +The maximum resident set size (KB) = 777624 Test 109 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rap_restart_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rap_restart_dyn32_phy32 Checking test 110 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3750,14 +3367,14 @@ Checking test 110 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 260.224944 -The maximum resident set size (KB) = 611736 +The total amount of wall time = 260.245192 +The maximum resident set size (KB) = 615148 Test 110 rap_restart_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/hrrr_control_restart_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hrrr_control_restart_dyn32_phy32 Checking test 111 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3796,14 +3413,14 @@ Checking test 111 hrrr_control_restart_dyn32_phy32 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 = 105.407498 -The maximum resident set size (KB) = 607664 +The total amount of wall time = 96.968978 +The maximum resident set size (KB) = 607968 Test 111 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rap_control_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rap_control_dyn64_phy32 Checking test 112 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3850,81 +3467,81 @@ Checking test 112 rap_control_dyn64_phy32 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 = 237.041281 -The maximum resident set size (KB) = 797816 +The total amount of wall time = 245.604524 +The maximum resident set size (KB) = 793952 Test 112 rap_control_dyn64_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rap_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rap_control_debug_dyn32_phy32 Checking test 113 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 290.416683 -The maximum resident set size (KB) = 935128 +The total amount of wall time = 289.219485 +The maximum resident set size (KB) = 942148 Test 113 rap_control_debug_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/hrrr_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hrrr_control_debug_dyn32_phy32 Checking test 114 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 285.914488 -The maximum resident set size (KB) = 941604 +The total amount of wall time = 285.418426 +The maximum resident set size (KB) = 934880 Test 114 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/rap_control_dyn64_phy32_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rap_control_dyn64_phy32_debug Checking test 115 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 296.790541 -The maximum resident set size (KB) = 957684 +The total amount of wall time = 295.636388 +The maximum resident set size (KB) = 955432 Test 115 rap_control_dyn64_phy32_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/hafs_regional_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hafs_regional_atm Checking test 116 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 274.460932 -The maximum resident set size (KB) = 827292 +The total amount of wall time = 275.096473 +The maximum resident set size (KB) = 825000 Test 116 hafs_regional_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hafs_regional_atm_thompson_gfdlsf Checking test 117 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 319.377436 -The maximum resident set size (KB) = 1174352 +The total amount of wall time = 316.464386 +The maximum resident set size (KB) = 1185620 Test 117 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/hafs_regional_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hafs_regional_atm_ocn Checking test 118 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3933,14 +3550,14 @@ Checking test 118 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 394.536441 -The maximum resident set size (KB) = 862804 +The total amount of wall time = 391.437555 +The maximum resident set size (KB) = 858736 Test 118 hafs_regional_atm_ocn PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/hafs_regional_atm_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hafs_regional_atm_wav Checking test 119 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3949,14 +3566,14 @@ Checking test 119 hafs_regional_atm_wav 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 = 708.318408 -The maximum resident set size (KB) = 890476 +The total amount of wall time = 705.815195 +The maximum resident set size (KB) = 890876 Test 119 hafs_regional_atm_wav PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/hafs_regional_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hafs_regional_atm_ocn_wav Checking test 120 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3967,28 +3584,28 @@ Checking test 120 hafs_regional_atm_ocn_wav 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 = 906.024930 -The maximum resident set size (KB) = 913276 +The total amount of wall time = 899.418705 +The maximum resident set size (KB) = 915200 Test 120 hafs_regional_atm_ocn_wav PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/hafs_regional_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hafs_regional_1nest_atm Checking test 121 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 333.930528 -The maximum resident set size (KB) = 395672 +The total amount of wall time = 338.143935 +The maximum resident set size (KB) = 395516 Test 121 hafs_regional_1nest_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/hafs_regional_telescopic_2nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hafs_regional_telescopic_2nests_atm Checking test 122 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3997,28 +3614,28 @@ Checking test 122 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 404.920408 -The maximum resident set size (KB) = 405268 +The total amount of wall time = 404.011449 +The maximum resident set size (KB) = 405352 Test 122 hafs_regional_telescopic_2nests_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/hafs_global_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hafs_global_1nest_atm Checking test 123 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 173.229301 -The maximum resident set size (KB) = 278280 +The total amount of wall time = 173.408393 +The maximum resident set size (KB) = 266360 Test 123 hafs_global_1nest_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_multiple_4nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/hafs_global_multiple_4nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hafs_global_multiple_4nests_atm Checking test 124 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4036,14 +3653,14 @@ Checking test 124 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -The total amount of wall time = 491.470164 -The maximum resident set size (KB) = 346568 +The total amount of wall time = 490.282445 +The maximum resident set size (KB) = 350360 Test 124 hafs_global_multiple_4nests_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/hafs_regional_specified_moving_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hafs_regional_specified_moving_1nest_atm Checking test 125 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4052,28 +3669,28 @@ Checking test 125 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 228.048023 -The maximum resident set size (KB) = 411832 +The total amount of wall time = 219.430252 +The maximum resident set size (KB) = 408844 Test 125 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/hafs_regional_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hafs_regional_storm_following_1nest_atm Checking test 126 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 208.553791 -The maximum resident set size (KB) = 409144 +The total amount of wall time = 213.039662 +The maximum resident set size (KB) = 408800 Test 126 hafs_regional_storm_following_1nest_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hafs_regional_storm_following_1nest_atm_ocn Checking test 127 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4082,42 +3699,42 @@ Checking test 127 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 255.113521 -The maximum resident set size (KB) = 480508 +The total amount of wall time = 254.164521 +The maximum resident set size (KB) = 495172 Test 127 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/hafs_global_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hafs_global_storm_following_1nest_atm Checking test 128 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 86.434869 -The maximum resident set size (KB) = 282832 +The total amount of wall time = 85.543090 +The maximum resident set size (KB) = 291076 Test 128 hafs_global_storm_following_1nest_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 129 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 804.588105 -The maximum resident set size (KB) = 490584 +The total amount of wall time = 805.965424 +The maximum resident set size (KB) = 491240 Test 129 hafs_regional_storm_following_1nest_atm_ocn_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 130 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4128,14 +3745,14 @@ Checking test 130 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 505.931523 -The maximum resident set size (KB) = 526376 +The total amount of wall time = 506.890615 +The maximum resident set size (KB) = 529368 Test 130 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_atmlnd_sbs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/control_p8_atmlnd_sbs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_p8_atmlnd_sbs Checking test 131 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4220,14 +3837,14 @@ Checking test 131 control_p8_atmlnd_sbs 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 = 243.700148 -The maximum resident set size (KB) = 1538904 +The total amount of wall time = 254.506716 +The maximum resident set size (KB) = 1541332 Test 131 control_p8_atmlnd_sbs PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/atmaero_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/atmaero_control_p8 Checking test 132 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4262,23 +3879,10 @@ Checking test 132 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 256.595350 -The maximum resident set size (KB) = 2816036 - -Test 132 atmaero_control_p8 PASS - + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......ERROR baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8_rad -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/atmaero_control_p8_rad +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/atmaero_control_p8_rad Checking test 133 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4322,14 +3926,14 @@ Checking test 133 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 286.726206 -The maximum resident set size (KB) = 2879312 +The total amount of wall time = 283.990505 +The maximum resident set size (KB) = 2879264 Test 133 atmaero_control_p8_rad PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/atmaero_control_p8_rad_micro +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/atmaero_control_p8_rad_micro Checking test 134 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4373,14 +3977,14 @@ Checking test 134 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 292.973773 -The maximum resident set size (KB) = 2888184 +The total amount of wall time = 295.965472 +The maximum resident set size (KB) = 2886548 Test 134 atmaero_control_p8_rad_micro PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/regional_atmaq +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/regional_atmaq Checking test 135 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4396,14 +4000,14 @@ Checking test 135 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 687.952870 -The maximum resident set size (KB) = 1263652 +The total amount of wall time = 988.702540 +The maximum resident set size (KB) = 1259292 Test 135 regional_atmaq PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/regional_atmaq_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/regional_atmaq_debug Checking test 136 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4417,14 +4021,14 @@ Checking test 136 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1306.168366 -The maximum resident set size (KB) = 1296880 +The total amount of wall time = 1329.841478 +The maximum resident set size (KB) = 1289728 Test 136 regional_atmaq_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_78334/regional_atmaq_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/regional_atmaq_faster Checking test 137 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4440,12 +4044,507 @@ Checking test 137 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 644.109381 -The maximum resident set size (KB) = 1256960 +The total amount of wall time = 764.609880 +The maximum resident set size (KB) = 1258652 Test 137 regional_atmaq_faster PASS +FAILED TESTS: +Test atmaero_control_p8 132 failed in run_test failed +Test compile_012 failed in run_compile failed + +REGRESSION TEST FAILED +Mon Apr 24 14:34:04 UTC 2023 +Elapsed time: 01h:34m:33s. Have a nice day! +Mon Apr 24 14:37:59 UTC 2023 +Start Regression test + +Compile 001 elapsed time 209 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 002 elapsed time 465 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/rrfs_smoke_conus13km_hrrr_warm_debug +Checking test 001 rrfs_smoke_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 907.828960 +The maximum resident set size (KB) = 834208 + +Test 001 rrfs_smoke_conus13km_hrrr_warm_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +Checking test 002 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 523.101721 +The maximum resident set size (KB) = 830936 + +Test 002 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/rrfs_conus13km_hrrr_warm_debug +Checking test 003 rrfs_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 810.772608 +The maximum resident set size (KB) = 802388 + +Test 003 rrfs_conus13km_hrrr_warm_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/control_CubedSphereGrid_debug +Checking test 004 control_CubedSphereGrid_debug results .... + Comparing sfcf000.tile1.nc .........OK + Comparing sfcf000.tile2.nc .........OK + Comparing sfcf000.tile3.nc .........OK + Comparing sfcf000.tile4.nc .........OK + Comparing sfcf000.tile5.nc .........OK + Comparing sfcf000.tile6.nc .........OK + Comparing sfcf001.tile1.nc .........OK + Comparing sfcf001.tile2.nc .........OK + Comparing sfcf001.tile3.nc .........OK + Comparing sfcf001.tile4.nc .........OK + Comparing sfcf001.tile5.nc .........OK + Comparing sfcf001.tile6.nc .........OK + Comparing atmf000.tile1.nc .........OK + Comparing atmf000.tile2.nc .........OK + Comparing atmf000.tile3.nc .........OK + Comparing atmf000.tile4.nc .........OK + Comparing atmf000.tile5.nc .........OK + Comparing atmf000.tile6.nc .........OK + Comparing atmf001.tile1.nc .........OK + Comparing atmf001.tile2.nc .........OK + Comparing atmf001.tile3.nc .........OK + Comparing atmf001.tile4.nc .........OK + Comparing atmf001.tile5.nc .........OK + Comparing atmf001.tile6.nc .........OK + +The total amount of wall time = 158.821739 +The maximum resident set size (KB) = 673868 + +Test 004 control_CubedSphereGrid_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/control_wrtGauss_netcdf_parallel_debug +Checking test 005 control_wrtGauss_netcdf_parallel_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 158.668342 +The maximum resident set size (KB) = 677184 + +Test 005 control_wrtGauss_netcdf_parallel_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/control_stochy_debug +Checking test 006 control_stochy_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 179.640409 +The maximum resident set size (KB) = 685172 + +Test 006 control_stochy_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/control_lndp_debug +Checking test 007 control_lndp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 160.334670 +The maximum resident set size (KB) = 682840 + +Test 007 control_lndp_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmg_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/control_csawmg_debug +Checking test 008 control_csawmg_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 256.294985 +The maximum resident set size (KB) = 719888 + +Test 008 control_csawmg_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmgt_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/control_csawmgt_debug +Checking test 009 control_csawmgt_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 252.602767 +The maximum resident set size (KB) = 722360 + +Test 009 control_csawmgt_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_ras_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/control_ras_debug +Checking test 010 control_ras_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 162.257201 +The maximum resident set size (KB) = 694868 + +Test 010 control_ras_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/control_diag_debug +Checking test 011 control_diag_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 164.961975 +The maximum resident set size (KB) = 737296 + +Test 011 control_diag_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_debug_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/control_debug_p8 +Checking test 012 control_debug_p8 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 186.065222 +The maximum resident set size (KB) = 1505676 + +Test 012 control_debug_p8 PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/regional_debug +Checking test 013 regional_debug results .... + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK + +The total amount of wall time = 1037.325789 +The maximum resident set size (KB) = 677636 + +Test 013 regional_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/rap_control_debug +Checking test 014 rap_control_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 296.944590 +The maximum resident set size (KB) = 1054700 + +Test 014 rap_control_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/hrrr_control_debug +Checking test 015 hrrr_control_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 290.306582 +The maximum resident set size (KB) = 1047212 + +Test 015 hrrr_control_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/rap_unified_drag_suite_debug +Checking test 016 rap_unified_drag_suite_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 296.234072 +The maximum resident set size (KB) = 1057256 + +Test 016 rap_unified_drag_suite_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/rap_diag_debug +Checking test 017 rap_diag_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 307.911077 +The maximum resident set size (KB) = 1135276 + +Test 017 rap_diag_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/rap_cires_ugwp_debug +Checking test 018 rap_cires_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 302.521620 +The maximum resident set size (KB) = 1053676 + +Test 018 rap_cires_ugwp_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/rap_unified_ugwp_debug +Checking test 019 rap_unified_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 303.310686 +The maximum resident set size (KB) = 1056240 + +Test 019 rap_unified_ugwp_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/rap_lndp_debug +Checking test 020 rap_lndp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 300.522189 +The maximum resident set size (KB) = 1054548 + +Test 020 rap_lndp_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_flake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/rap_flake_debug +Checking test 021 rap_flake_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 296.139168 +The maximum resident set size (KB) = 1053616 + +Test 021 rap_flake_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_progcld_thompson_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/rap_progcld_thompson_debug +Checking test 022 rap_progcld_thompson_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 297.245024 +The maximum resident set size (KB) = 1057192 + +Test 022 rap_progcld_thompson_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_noah_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/rap_noah_debug +Checking test 023 rap_noah_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 291.404869 +The maximum resident set size (KB) = 1048908 + +Test 023 rap_noah_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/rap_sfcdiff_debug +Checking test 024 rap_sfcdiff_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 297.967733 +The maximum resident set size (KB) = 1052580 + +Test 024 rap_sfcdiff_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 025 rap_noah_sfcdiff_cires_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 487.318256 +The maximum resident set size (KB) = 1051996 + +Test 025 rap_noah_sfcdiff_cires_ugwp_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1beta_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/rrfs_v1beta_debug +Checking test 026 rrfs_v1beta_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 292.024711 +The maximum resident set size (KB) = 1046360 + +Test 026 rrfs_v1beta_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/atmaero_control_p8 +Checking test 027 atmaero_control_p8 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 ............ALT CHECK......ERROR +FAILED TESTS: +Test atmaero_control_p8 027 failed in run_test failed + +REGRESSION TEST FAILED +Mon Apr 24 15:02:40 UTC 2023 +Elapsed time: 00h:24m:42s. Have a nice day! +Mon Apr 24 15:55:26 UTC 2023 +Start Regression test + +Compile 001 elapsed time 459 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_92479/atmaero_control_p8 +Checking test 001 atmaero_control_p8 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 250.529149 +The maximum resident set size (KB) = 2814932 + +Test 001 atmaero_control_p8 PASS + REGRESSION TEST WAS SUCCESSFUL -Wed Apr 19 17:27:38 UTC 2023 -Elapsed time: 01h:01m:37s. Have a nice day! +Mon Apr 24 16:11:03 UTC 2023 +Elapsed time: 00h:15m:38s. Have a nice day! diff --git a/tests/compile.sh b/tests/compile.sh index 56249c35005..be580872cb8 100755 --- a/tests/compile.sh +++ b/tests/compile.sh @@ -73,14 +73,6 @@ echo "Compiling ${MAKE_OPT} into $BUILD_NAME.exe on $MACHINE_ID" # set CMAKE_FLAGS based on $MAKE_OPT CMAKE_FLAGS=$MAKE_OPT - -# FIXME - create CCPP include directory before building FMS to avoid -# gfortran warnings of non-existent include directory (adding -# -Wno-missing-include-dirs) to the GNU compiler flags does not work, -# see also https://gcc.gnu.org/bugzilla/show_bug.cgi?id=55534); -# this line can be removed once FMS becomes a pre-installed library -mkdir -p $PATHTR/FV3/ccpp/include - CMAKE_FLAGS+=" -DMPI=ON" if [[ "${MAKE_OPT}" == *"-DDEBUG=ON"* ]]; then diff --git a/tests/rt_utils.sh b/tests/rt_utils.sh index 83407fe53cd..0b5e4e3ef08 100755 --- a/tests/rt_utils.sh +++ b/tests/rt_utils.sh @@ -345,14 +345,6 @@ check_results() { echo ".......MISSING baseline" test_status='FAIL' - elif [[ $RT_COMPILER == "gnu" && $i == "RESTART/fv_core.res.nc" ]] ; then - - # Although identical in ncdiff, RESTART/fv_core.res.nc differs in byte 469, line 3, - # for the fv3_control_32bit test between each run (without changing the source code) - # for GNU compilers - skip comparison. - echo ".......SKIP for gnu compilers" >> ${REGRESSIONTEST_LOG} - echo ".......SKIP for gnu compilers" - else cmp ${RTPWD}/${CNTL_DIR}/$i ${RUNDIR}/$i >/dev/null 2>&1 && d=$? || d=$? @@ -366,7 +358,11 @@ check_results() { if [[ ${MACHINE_ID} =~ orion || ${MACHINE_ID} =~ hera || ${MACHINE_ID} =~ wcoss2 || ${MACHINE_ID} =~ acorn || ${MACHINE_ID} =~ cheyenne || ${MACHINE_ID} =~ gaea || ${MACHINE_ID} =~ jet || ${MACHINE_ID} =~ s4 ]] ; then printf ".......ALT CHECK.." >> ${REGRESSIONTEST_LOG} printf ".......ALT CHECK.." - ${PATHRT}/compare_ncfile.py ${RTPWD}/${CNTL_DIR}/$i ${RUNDIR}/$i > compare_ncfile.log 2>&1 && d=$? || d=$? + if [[ ${MACHINE_ID} =~ orion || ${MACHINE_ID} =~ hera || ${MACHINE_ID} =~ gaea || ${MACHINE_ID} =~ jet || ${MACHINE_ID} =~ cheyenne ]] ; then + nccmp -d -f -g -B --Attribute=checksum --warn=format ${RTPWD}/${CNTL_DIR}/${i} ${RUNDIR}/${i} > ${i}_nccmp.log 2>&1 && d=$? || d=$? + else + ${PATHRT}/compare_ncfile.py ${RTPWD}/${CNTL_DIR}/$i ${RUNDIR}/$i > compare_ncfile.log 2>&1 && d=$? || d=$? + fi if [[ $d -eq 1 ]]; then echo "....ERROR" >> ${REGRESSIONTEST_LOG} echo "....ERROR" diff --git a/tests/run_test.sh b/tests/run_test.sh index 1baa002a456..ac84897b970 100755 --- a/tests/run_test.sh +++ b/tests/run_test.sh @@ -105,6 +105,11 @@ if [[ $MACHINE_ID == wcoss2.* ]] || [[ $MACHINE_ID == acorn.* ]] ; then module load gcc/10.3.0 python/3.8.6 fi +# load nccmp module +if [[ $MACHINE_ID == hera.* ]] || [[ $MACHINE_ID == orion.* ]] || [[ $MACHINE_ID == gaea.* ]] || [[ $MACHINE_ID == jet.* ]] || [[ $MACHINE_ID == cheyenne.* ]]; then + module load nccmp +fi + SRCD="${PATHTR}" RUND="${RUNDIR}" @@ -276,7 +281,6 @@ if [[ $SCHEDULER = 'none' ]]; then ulimit -s unlimited if [[ $CI_TEST = 'true' ]]; then - eval ${OMP_ENV} mpiexec -n ${TASKS} ./fv3.exe >out 2> >(tee err >&3) else mpiexec -n ${TASKS} ./fv3.exe >out 2> >(tee err >&3) From 3cc95d67734a130c73ddc5b29676e379e548b656 Mon Sep 17 00:00:00 2001 From: "Samuel Trahan (NOAA contractor)" <39415369+SamuelTrahanNOAA@users.noreply.github.com> Date: Wed, 26 Apr 2023 12:55:47 -0400 Subject: [PATCH 24/30] Add CLM Lake Model and update Flake (#1509) setup RT for flake * add fv3-conf for flake * add clm lake to FV3 * bug fixes, clm lake restart, and clm lake suite * flake_control_run.IN => lake_control_run.IN --- CMEPS-interface/CMEPS | 2 +- FV3 | 2 +- tests/RegressionTests_acorn.intel.log | 2436 ++++++------ tests/RegressionTests_cheyenne.gnu.log | 1197 +++--- tests/RegressionTests_cheyenne.intel.log | 2461 ++++++------ tests/RegressionTests_hera.gnu.log | 1185 +++--- tests/RegressionTests_hera.intel.log | 2496 ++++++------ tests/RegressionTests_jet.intel.log | 3352 ++++++++--------- tests/RegressionTests_orion.intel.log | 1074 +++--- tests/RegressionTests_wcoss2.intel.log | 3209 ++++++++-------- tests/default_vars.sh | 8 +- tests/fv3_conf/lake_control_run.IN | 152 + tests/parm/control_flake.nml.IN | 6 + tests/parm/rap.nml.IN | 2 + tests/parm/rrfs_conus13km_hrrr.nml.IN | 2 + tests/rt.conf | 18 +- tests/rt.sh | 2 +- tests/rt_gnu.conf | 8 +- tests/tests/control_flake | 6 +- tests/tests/control_flake_debug | 40 + tests/tests/hrrr_control | 74 +- tests/tests/hrrr_control_2threads | 75 +- tests/tests/hrrr_control_2threads_dyn32_phy32 | 77 +- tests/tests/hrrr_control_debug | 10 +- tests/tests/hrrr_control_debug_dyn32_phy32 | 12 +- tests/tests/hrrr_control_decomp | 74 +- tests/tests/hrrr_control_decomp_dyn32_phy32 | 76 +- tests/tests/hrrr_control_dyn32_phy32 | 76 +- tests/tests/hrrr_control_restart | 44 +- tests/tests/hrrr_control_restart_dyn32_phy32 | 46 +- tests/tests/rap_clm_lake | 106 + tests/tests/rap_clm_lake_debug | 66 + tests/tests/rap_flake_debug | 3 +- tests/tests/rrfs_conus13km_hrrr_warm | 3 + tests/tests/rrfs_conus13km_hrrr_warm_2threads | 4 + tests/tests/rrfs_conus13km_hrrr_warm_debug | 3 + tests/tests/rrfs_conus13km_hrrr_warm_decomp | 3 + tests/tests/rrfs_conus13km_hrrr_warm_restart | 3 + .../rrfs_conus13km_hrrr_warm_restart_mismatch | 2 + tests/tests/rrfs_conus13km_radar_tten_warm | 3 + .../rrfs_conus13km_radar_tten_warm_2threads | 3 + .../rrfs_conus13km_radar_tten_warm_debug | 3 + .../rrfs_conus13km_radar_tten_warm_decomp | 3 + .../rrfs_conus13km_radar_tten_warm_restart | 3 + tests/tests/rrfs_smoke_conus13km_hrrr_warm | 4 +- .../rrfs_smoke_conus13km_hrrr_warm_2threads | 2 + .../rrfs_smoke_conus13km_hrrr_warm_debug | 2 + ...s_smoke_conus13km_hrrr_warm_debug_2threads | 2 + ...rfs_smoke_conus13km_hrrr_warm_debug_decomp | 2 + .../rrfs_smoke_conus13km_hrrr_warm_decomp | 2 + .../rrfs_smoke_conus13km_hrrr_warm_restart | 2 + .../rrfs_smoke_conus13km_radar_tten_warm | 2 + 52 files changed, 9318 insertions(+), 9130 deletions(-) create mode 100644 tests/fv3_conf/lake_control_run.IN create mode 100644 tests/tests/control_flake_debug create mode 100644 tests/tests/rap_clm_lake create mode 100644 tests/tests/rap_clm_lake_debug diff --git a/CMEPS-interface/CMEPS b/CMEPS-interface/CMEPS index 75fed2b0e1d..fe2c15820c2 160000 --- a/CMEPS-interface/CMEPS +++ b/CMEPS-interface/CMEPS @@ -1 +1 @@ -Subproject commit 75fed2b0e1d7f81543b62f586aa648f36b290b5a +Subproject commit fe2c15820c27808260c313fa5caa0ae69e987dae diff --git a/FV3 b/FV3 index aed060737ad..33ac26df83d 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit aed060737ad8e65b4a101e5c61724fb8adbe94f5 +Subproject commit 33ac26df83d1eccf2b591392396f9e6682a3d856 diff --git a/tests/RegressionTests_acorn.intel.log b/tests/RegressionTests_acorn.intel.log index f55b10487e1..9dedcd48f05 100644 --- a/tests/RegressionTests_acorn.intel.log +++ b/tests/RegressionTests_acorn.intel.log @@ -1,41 +1,41 @@ -Fri Apr 21 18:25:24 UTC 2023 +Tue Apr 25 01:35:00 UTC 2023 Start Regression test -Compile 001 elapsed time 1024 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 546 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 1026 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 937 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 005 elapsed time 479 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 624 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 488 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 008 elapsed time 1014 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 1470 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 010 elapsed time 455 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 539 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 1124 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 736 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 781 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 428 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 562 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 276 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 366 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 601 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 020 elapsed time 326 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 021 elapsed time 996 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 022 elapsed time 701 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 023 elapsed time 256 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 024 elapsed time 228 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 56 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 026 elapsed time 482 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 027 elapsed time 606 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 936 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 522 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 949 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 492 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 032 elapsed time 855 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8_mixedmode -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/cpld_control_p8_mixedmode +Compile 001 elapsed time 725 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1304 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 539 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 518 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 005 elapsed time 1046 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 663 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 540 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 008 elapsed time 1274 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 1043 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 1147 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 975 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 1163 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 690 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 014 elapsed time 512 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 981 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 653 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 572 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 542 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 505 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 020 elapsed time 303 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 021 elapsed time 1007 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 022 elapsed time 745 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 023 elapsed time 200 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 024 elapsed time 202 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 265 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 026 elapsed time 499 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 027 elapsed time 971 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 490 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 903 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 537 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 585 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 032 elapsed time 960 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8_mixedmode +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -100,14 +100,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 331.582242 -The maximum resident set size (KB) = 2951024 +The total amount of wall time = 332.503414 +The maximum resident set size (KB) = 2946220 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_gfsv17 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/cpld_control_gfsv17 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_gfsv17 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -171,14 +171,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 259.108988 -The maximum resident set size (KB) = 1575816 +The total amount of wall time = 259.036510 +The maximum resident set size (KB) = 1575492 Test 002 cpld_control_gfsv17 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/cpld_control_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -243,14 +243,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 386.264368 -The maximum resident set size (KB) = 2978804 +The total amount of wall time = 386.852413 +The maximum resident set size (KB) = 2979948 Test 003 cpld_control_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/cpld_restart_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -303,14 +303,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 229.481995 -The maximum resident set size (KB) = 2866968 +The total amount of wall time = 228.843863 +The maximum resident set size (KB) = 2863488 Test 004 cpld_restart_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/cpld_control_qr_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -375,14 +375,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 384.311437 -The maximum resident set size (KB) = 2990136 +The total amount of wall time = 385.434544 +The maximum resident set size (KB) = 2991160 Test 005 cpld_control_qr_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/cpld_restart_qr_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -435,14 +435,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 231.849493 -The maximum resident set size (KB) = 2876676 +The total amount of wall time = 232.030900 +The maximum resident set size (KB) = 2878164 Test 006 cpld_restart_qr_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/cpld_2threads_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -495,14 +495,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 367.367543 -The maximum resident set size (KB) = 3279320 +The total amount of wall time = 364.696515 +The maximum resident set size (KB) = 3280884 Test 007 cpld_2threads_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/cpld_decomp_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -555,14 +555,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 378.417634 -The maximum resident set size (KB) = 2978040 +The total amount of wall time = 377.377611 +The maximum resident set size (KB) = 2977248 Test 008 cpld_decomp_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/cpld_mpi_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -615,14 +615,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 315.918666 -The maximum resident set size (KB) = 2905528 +The total amount of wall time = 317.477901 +The maximum resident set size (KB) = 2908888 Test 009 cpld_mpi_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_ciceC_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/cpld_control_ciceC_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_ciceC_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -687,14 +687,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 384.920105 -The maximum resident set size (KB) = 2977536 +The total amount of wall time = 383.074433 +The maximum resident set size (KB) = 2978716 Test 010 cpld_control_ciceC_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/cpld_control_noaero_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/cpld_control_noaero_p8 Checking test 011 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -758,14 +758,14 @@ Checking test 011 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 279.741473 -The maximum resident set size (KB) = 1572204 +The total amount of wall time = 280.923937 +The maximum resident set size (KB) = 1567880 Test 011 cpld_control_noaero_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/cpld_control_nowave_noaero_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_c96_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/cpld_control_nowave_noaero_p8 Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -827,14 +827,14 @@ Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 298.370361 -The maximum resident set size (KB) = 1629996 +The total amount of wall time = 299.076175 +The maximum resident set size (KB) = 1629640 Test 012 cpld_control_nowave_noaero_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/cpld_control_noaero_p8_agrid +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_noaero_p8_agrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/cpld_control_noaero_p8_agrid Checking test 013 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -896,14 +896,14 @@ Checking test 013 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 307.973812 -The maximum resident set size (KB) = 1623124 +The total amount of wall time = 306.489492 +The maximum resident set size (KB) = 1621068 Test 013 cpld_control_noaero_p8_agrid PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/cpld_control_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/cpld_control_c48 Checking test 014 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -953,14 +953,14 @@ Checking test 014 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 430.905899 -The maximum resident set size (KB) = 2634940 +The total amount of wall time = 432.714083 +The maximum resident set size (KB) = 2637688 Test 014 cpld_control_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/cpld_warmstart_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/cpld_warmstart_c48 Checking test 015 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1010,14 +1010,14 @@ Checking test 015 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 119.347991 -The maximum resident set size (KB) = 2652492 +The total amount of wall time = 121.209738 +The maximum resident set size (KB) = 2647960 Test 015 cpld_warmstart_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/cpld_restart_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/cpld_restart_c48 Checking test 016 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1067,14 +1067,14 @@ Checking test 016 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 67.101041 -The maximum resident set size (KB) = 2066324 +The total amount of wall time = 66.663834 +The maximum resident set size (KB) = 2072020 Test 016 cpld_restart_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/cpld_control_p8_faster +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/cpld_control_p8_faster Checking test 017 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1139,15 +1139,33 @@ Checking test 017 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 375.862362 -The maximum resident set size (KB) = 2974656 +The total amount of wall time = 378.047782 +The maximum resident set size (KB) = 2975272 Test 017 cpld_control_p8_faster PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_CubedSphereGrid -Checking test 018 control_CubedSphereGrid results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_flake +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_flake +Checking test 018 control_flake results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + +The total amount of wall time = 213.026507 +The maximum resident set size (KB) = 559700 + +Test 018 control_flake PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_CubedSphereGrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_CubedSphereGrid +Checking test 019 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1173,15 +1191,15 @@ Checking test 018 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 129.414193 -The maximum resident set size (KB) = 510980 +The total amount of wall time = 129.698798 +The maximum resident set size (KB) = 511524 -Test 018 control_CubedSphereGrid PASS +Test 019 control_CubedSphereGrid PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_latlon -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_latlon -Checking test 019 control_latlon results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_latlon +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_latlon +Checking test 020 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1191,15 +1209,15 @@ Checking test 019 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 132.238436 -The maximum resident set size (KB) = 516596 +The total amount of wall time = 133.161425 +The maximum resident set size (KB) = 512560 -Test 019 control_latlon PASS +Test 020 control_latlon PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_wrtGauss_netcdf_parallel -Checking test 020 control_wrtGauss_netcdf_parallel results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_wrtGauss_netcdf_parallel +Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1209,15 +1227,15 @@ Checking test 020 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 134.145144 -The maximum resident set size (KB) = 513400 +The total amount of wall time = 135.047327 +The maximum resident set size (KB) = 514576 -Test 020 control_wrtGauss_netcdf_parallel PASS +Test 021 control_wrtGauss_netcdf_parallel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_c48 -Checking test 021 control_c48 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_c48 +Checking test 022 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1255,15 +1273,15 @@ Checking test 021 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 329.204999 -The maximum resident set size (KB) = 672672 +The total amount of wall time = 329.457511 +The maximum resident set size (KB) = 675008 -Test 021 control_c48 PASS +Test 022 control_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c192 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_c192 -Checking test 022 control_c192 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_c192 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_c192 +Checking test 023 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1273,15 +1291,15 @@ Checking test 022 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 527.214117 -The maximum resident set size (KB) = 611560 +The total amount of wall time = 528.534169 +The maximum resident set size (KB) = 614968 -Test 022 control_c192 PASS +Test 023 control_c192 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c384 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_c384 -Checking test 023 control_c384 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_c384 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_c384 +Checking test 024 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1291,15 +1309,15 @@ Checking test 023 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 563.207618 -The maximum resident set size (KB) = 925368 +The total amount of wall time = 568.087683 +The maximum resident set size (KB) = 924148 -Test 023 control_c384 PASS +Test 024 control_c384 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c384gdas -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_c384gdas -Checking test 024 control_c384gdas results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_c384gdas +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_c384gdas +Checking test 025 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -1341,15 +1359,15 @@ Checking test 024 control_c384gdas results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 514.113576 -The maximum resident set size (KB) = 1054512 +The total amount of wall time = 500.756593 +The maximum resident set size (KB) = 1060456 -Test 024 control_c384gdas PASS +Test 025 control_c384gdas PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_stochy -Checking test 025 control_stochy results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_stochy +Checking test 026 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1359,29 +1377,29 @@ Checking test 025 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 90.149320 -The maximum resident set size (KB) = 517076 +The total amount of wall time = 89.539990 +The maximum resident set size (KB) = 516012 -Test 025 control_stochy PASS +Test 026 control_stochy PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_stochy_restart -Checking test 026 control_stochy_restart results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_stochy_restart +Checking test 027 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 48.894612 -The maximum resident set size (KB) = 284936 +The total amount of wall time = 49.292419 +The maximum resident set size (KB) = 288652 -Test 026 control_stochy_restart PASS +Test 027 control_stochy_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_lndp -Checking test 027 control_lndp results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_lndp +Checking test 028 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1391,15 +1409,15 @@ Checking test 027 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 83.082812 -The maximum resident set size (KB) = 519156 +The total amount of wall time = 83.965880 +The maximum resident set size (KB) = 519356 -Test 027 control_lndp PASS +Test 028 control_lndp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_iovr4 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_iovr4 -Checking test 028 control_iovr4 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_iovr4 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_iovr4 +Checking test 029 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1413,15 +1431,15 @@ Checking test 028 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.015795 -The maximum resident set size (KB) = 513020 +The total amount of wall time = 137.054505 +The maximum resident set size (KB) = 513868 -Test 028 control_iovr4 PASS +Test 029 control_iovr4 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_iovr5 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_iovr5 -Checking test 029 control_iovr5 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_iovr5 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_iovr5 +Checking test 030 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1435,15 +1453,15 @@ Checking test 029 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.803998 -The maximum resident set size (KB) = 513844 +The total amount of wall time = 135.542871 +The maximum resident set size (KB) = 515444 -Test 029 control_iovr5 PASS +Test 030 control_iovr5 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_p8 -Checking test 030 control_p8 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_p8 +Checking test 031 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1489,15 +1507,15 @@ Checking test 030 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 180.427691 -The maximum resident set size (KB) = 1487188 +The total amount of wall time = 177.910423 +The maximum resident set size (KB) = 1485196 -Test 030 control_p8 PASS +Test 031 control_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_restart_p8 -Checking test 031 control_restart_p8 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_restart_p8 +Checking test 032 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1535,15 +1553,15 @@ Checking test 031 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 97.965837 -The maximum resident set size (KB) = 655032 +The total amount of wall time = 99.868718 +The maximum resident set size (KB) = 651492 -Test 031 control_restart_p8 PASS +Test 032 control_restart_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_qr_p8 -Checking test 032 control_qr_p8 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_qr_p8 +Checking test 033 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1589,15 +1607,15 @@ Checking test 032 control_qr_p8 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 = 175.176275 -The maximum resident set size (KB) = 1494332 +The total amount of wall time = 176.198411 +The maximum resident set size (KB) = 1495060 -Test 032 control_qr_p8 PASS +Test 033 control_qr_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_restart_qr_p8 -Checking test 033 control_restart_qr_p8 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_restart_qr_p8 +Checking test 034 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1635,15 +1653,15 @@ Checking test 033 control_restart_qr_p8 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 = 98.702188 -The maximum resident set size (KB) = 665008 +The total amount of wall time = 100.776790 +The maximum resident set size (KB) = 668700 -Test 033 control_restart_qr_p8 PASS +Test 034 control_restart_qr_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_decomp_p8 -Checking test 034 control_decomp_p8 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_decomp_p8 +Checking test 035 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1685,15 +1703,15 @@ Checking test 034 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 181.027532 -The maximum resident set size (KB) = 1482816 +The total amount of wall time = 180.922074 +The maximum resident set size (KB) = 1472136 -Test 034 control_decomp_p8 PASS +Test 035 control_decomp_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_2threads_p8 -Checking test 035 control_2threads_p8 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_2threads_p8 +Checking test 036 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1735,15 +1753,15 @@ Checking test 035 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 155.313352 -The maximum resident set size (KB) = 1565920 +The total amount of wall time = 156.641468 +The maximum resident set size (KB) = 1563452 -Test 035 control_2threads_p8 PASS +Test 036 control_2threads_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_p8_lndp -Checking test 036 control_p8_lndp results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_p8_lndp +Checking test 037 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1761,15 +1779,15 @@ Checking test 036 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 322.089296 -The maximum resident set size (KB) = 1488012 +The total amount of wall time = 324.749760 +The maximum resident set size (KB) = 1482376 -Test 036 control_p8_lndp PASS +Test 037 control_p8_lndp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_rrtmgp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_p8_rrtmgp -Checking test 037 control_p8_rrtmgp results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8_rrtmgp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_p8_rrtmgp +Checking test 038 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1815,15 +1833,15 @@ Checking test 037 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 234.218193 -The maximum resident set size (KB) = 1545180 +The total amount of wall time = 234.183749 +The maximum resident set size (KB) = 1539732 -Test 037 control_p8_rrtmgp PASS +Test 038 control_p8_rrtmgp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_mynn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_p8_mynn -Checking test 038 control_p8_mynn results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8_mynn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_p8_mynn +Checking test 039 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1869,15 +1887,15 @@ Checking test 038 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 181.393015 -The maximum resident set size (KB) = 1481864 +The total amount of wall time = 179.273121 +The maximum resident set size (KB) = 1480620 -Test 038 control_p8_mynn PASS +Test 039 control_p8_mynn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/merra2_thompson -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/merra2_thompson -Checking test 039 merra2_thompson results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/merra2_thompson +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/merra2_thompson +Checking test 040 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1923,15 +1941,15 @@ Checking test 039 merra2_thompson results .... 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.669168 -The maximum resident set size (KB) = 1488632 +The total amount of wall time = 202.877962 +The maximum resident set size (KB) = 1492004 -Test 039 merra2_thompson PASS +Test 040 merra2_thompson PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_control -Checking test 040 regional_control results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/regional_control +Checking test 041 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1941,29 +1959,29 @@ Checking test 040 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 286.412370 -The maximum resident set size (KB) = 651160 +The total amount of wall time = 286.966050 +The maximum resident set size (KB) = 652712 -Test 040 regional_control PASS +Test 041 regional_control PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_restart -Checking test 041 regional_restart results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/regional_restart +Checking test 042 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 155.036567 -The maximum resident set size (KB) = 648828 +The total amount of wall time = 153.659323 +The maximum resident set size (KB) = 648624 -Test 041 regional_restart PASS +Test 042 regional_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_control_qr -Checking test 042 regional_control_qr results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/regional_control_qr +Checking test 043 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1973,29 +1991,29 @@ Checking test 042 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 288.780784 -The maximum resident set size (KB) = 647092 +The total amount of wall time = 288.187873 +The maximum resident set size (KB) = 649640 -Test 042 regional_control_qr PASS +Test 043 regional_control_qr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_restart_qr -Checking test 043 regional_restart_qr results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/regional_restart_qr +Checking test 044 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 155.881848 -The maximum resident set size (KB) = 647456 +The total amount of wall time = 158.270760 +The maximum resident set size (KB) = 648028 -Test 043 regional_restart_qr PASS +Test 044 regional_restart_qr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_decomp -Checking test 044 regional_decomp results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/regional_decomp +Checking test 045 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2005,15 +2023,15 @@ Checking test 044 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 303.450971 -The maximum resident set size (KB) = 654968 +The total amount of wall time = 304.625717 +The maximum resident set size (KB) = 651556 -Test 044 regional_decomp PASS +Test 045 regional_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_2threads -Checking test 045 regional_2threads results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/regional_2threads +Checking test 046 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2023,30 +2041,30 @@ Checking test 045 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 175.718814 -The maximum resident set size (KB) = 696160 +The total amount of wall time = 176.752243 +The maximum resident set size (KB) = 696880 -Test 045 regional_2threads PASS +Test 046 regional_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_noquilt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_noquilt -Checking test 046 regional_noquilt results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_noquilt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/regional_noquilt +Checking test 047 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 309.693332 -The maximum resident set size (KB) = 640660 +The total amount of wall time = 308.783888 +The maximum resident set size (KB) = 644044 -Test 046 regional_noquilt PASS +Test 047 regional_noquilt PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_2dwrtdecomp -Checking test 047 regional_2dwrtdecomp results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/regional_2dwrtdecomp +Checking test 048 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2056,15 +2074,15 @@ Checking test 047 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 288.539089 -The maximum resident set size (KB) = 650860 +The total amount of wall time = 287.392399 +The maximum resident set size (KB) = 653068 -Test 047 regional_2dwrtdecomp PASS +Test 048 regional_2dwrtdecomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/fv3_regional_wofs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_wofs -Checking test 048 regional_wofs results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/fv3_regional_wofs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/regional_wofs +Checking test 049 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2074,15 +2092,15 @@ Checking test 048 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 361.432385 -The maximum resident set size (KB) = 340632 +The total amount of wall time = 365.704319 +The maximum resident set size (KB) = 338960 -Test 048 regional_wofs PASS +Test 049 regional_wofs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_ifi_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_ifi_control -Checking test 049 regional_ifi_control results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_ifi_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/regional_ifi_control +Checking test 050 regional_ifi_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2092,15 +2110,15 @@ Checking test 049 regional_ifi_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 321.803922 -The maximum resident set size (KB) = 655388 +The total amount of wall time = 317.408957 +The maximum resident set size (KB) = 651740 -Test 049 regional_ifi_control PASS +Test 050 regional_ifi_control PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_ifi_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_ifi_decomp -Checking test 050 regional_ifi_decomp results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_ifi_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/regional_ifi_decomp +Checking test 051 regional_ifi_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2110,15 +2128,15 @@ Checking test 050 regional_ifi_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 335.468450 -The maximum resident set size (KB) = 652780 +The total amount of wall time = 332.072259 +The maximum resident set size (KB) = 655852 -Test 050 regional_ifi_decomp PASS +Test 051 regional_ifi_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_ifi_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_ifi_2threads -Checking test 051 regional_ifi_2threads results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_ifi_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/regional_ifi_2threads +Checking test 052 regional_ifi_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2128,15 +2146,15 @@ Checking test 051 regional_ifi_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 198.442606 -The maximum resident set size (KB) = 694520 +The total amount of wall time = 196.301940 +The maximum resident set size (KB) = 698424 -Test 051 regional_ifi_2threads PASS +Test 052 regional_ifi_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_control -Checking test 052 rap_control results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rap_control +Checking test 053 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2182,15 +2200,15 @@ Checking test 052 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 418.048586 -The maximum resident set size (KB) = 893248 +The total amount of wall time = 419.306486 +The maximum resident set size (KB) = 889028 -Test 052 rap_control PASS +Test 053 rap_control PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_spp_sppt_shum_skeb -Checking test 053 regional_spp_sppt_shum_skeb results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_spp_sppt_shum_skeb +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/regional_spp_sppt_shum_skeb +Checking test 054 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -2200,15 +2218,15 @@ Checking test 053 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 242.384099 -The maximum resident set size (KB) = 989380 +The total amount of wall time = 241.788012 +The maximum resident set size (KB) = 977936 -Test 053 regional_spp_sppt_shum_skeb PASS +Test 054 regional_spp_sppt_shum_skeb PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_decomp -Checking test 054 rap_decomp results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rap_decomp +Checking test 055 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2254,15 +2272,15 @@ Checking test 054 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 433.829698 -The maximum resident set size (KB) = 890796 +The total amount of wall time = 432.484372 +The maximum resident set size (KB) = 890056 -Test 054 rap_decomp PASS +Test 055 rap_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_2threads -Checking test 055 rap_2threads results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rap_2threads +Checking test 056 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2308,15 +2326,15 @@ Checking test 055 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 387.603142 -The maximum resident set size (KB) = 965208 +The total amount of wall time = 387.586093 +The maximum resident set size (KB) = 966468 -Test 055 rap_2threads PASS +Test 056 rap_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_restart -Checking test 056 rap_restart results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rap_restart +Checking test 057 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2354,15 +2372,15 @@ Checking test 056 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 212.414988 -The maximum resident set size (KB) = 644560 +The total amount of wall time = 212.238369 +The maximum resident set size (KB) = 644096 -Test 056 rap_restart PASS +Test 057 rap_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_sfcdiff -Checking test 057 rap_sfcdiff results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rap_sfcdiff +Checking test 058 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2408,15 +2426,15 @@ Checking test 057 rap_sfcdiff results .... 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.444590 -The maximum resident set size (KB) = 889104 +The total amount of wall time = 420.611038 +The maximum resident set size (KB) = 890376 -Test 057 rap_sfcdiff PASS +Test 058 rap_sfcdiff PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_sfcdiff_decomp -Checking test 058 rap_sfcdiff_decomp results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rap_sfcdiff_decomp +Checking test 059 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2462,15 +2480,15 @@ Checking test 058 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 436.968936 -The maximum resident set size (KB) = 890376 +The total amount of wall time = 438.881814 +The maximum resident set size (KB) = 890716 -Test 058 rap_sfcdiff_decomp PASS +Test 059 rap_sfcdiff_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_sfcdiff_restart -Checking test 059 rap_sfcdiff_restart results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rap_sfcdiff_restart +Checking test 060 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2508,15 +2526,15 @@ Checking test 059 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 310.051931 -The maximum resident set size (KB) = 642744 +The total amount of wall time = 310.123551 +The maximum resident set size (KB) = 640896 -Test 059 rap_sfcdiff_restart PASS +Test 060 rap_sfcdiff_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hrrr_control -Checking test 060 hrrr_control results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hrrr_control +Checking test 061 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2529,48 +2547,48 @@ Checking test 060 hrrr_control results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 405.586453 -The maximum resident set size (KB) = 891236 - -Test 060 hrrr_control PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hrrr_control_decomp -Checking test 061 hrrr_control_decomp results .... + 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.106892 +The maximum resident set size (KB) = 884644 + +Test 061 hrrr_control PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hrrr_control_decomp +Checking test 062 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2583,48 +2601,48 @@ Checking test 061 hrrr_control_decomp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 419.341317 -The maximum resident set size (KB) = 888492 - -Test 061 hrrr_control_decomp PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hrrr_control_2threads -Checking test 062 hrrr_control_2threads results .... + 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 = 404.226075 +The maximum resident set size (KB) = 885404 + +Test 062 hrrr_control_decomp PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hrrr_control_2threads +Checking test 063 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2637,94 +2655,62 @@ Checking test 062 hrrr_control_2threads results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 372.858619 -The maximum resident set size (KB) = 959816 - -Test 062 hrrr_control_2threads PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hrrr_control_restart -Checking test 063 hrrr_control_restart results .... + 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 = 350.207711 +The maximum resident set size (KB) = 954528 + +Test 063 hrrr_control_2threads PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hrrr_control_restart +Checking test 064 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 297.300262 -The maximum resident set size (KB) = 640660 +The total amount of wall time = 285.898651 +The maximum resident set size (KB) = 637304 -Test 063 hrrr_control_restart PASS +Test 064 hrrr_control_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1beta -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rrfs_v1beta -Checking test 064 rrfs_v1beta results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_v1beta +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rrfs_v1beta +Checking test 065 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2770,15 +2756,15 @@ Checking test 064 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 416.513921 -The maximum resident set size (KB) = 887692 +The total amount of wall time = 417.404808 +The maximum resident set size (KB) = 885696 -Test 064 rrfs_v1beta PASS +Test 065 rrfs_v1beta PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1nssl -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rrfs_v1nssl -Checking test 065 rrfs_v1nssl results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_v1nssl +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rrfs_v1nssl +Checking test 066 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2792,15 +2778,15 @@ Checking test 065 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 480.644688 -The maximum resident set size (KB) = 576232 +The total amount of wall time = 479.621658 +The maximum resident set size (KB) = 579844 -Test 065 rrfs_v1nssl PASS +Test 066 rrfs_v1nssl PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rrfs_v1nssl_nohailnoccn -Checking test 066 rrfs_v1nssl_nohailnoccn results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rrfs_v1nssl_nohailnoccn +Checking test 067 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2814,15 +2800,15 @@ Checking test 066 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 470.967129 -The maximum resident set size (KB) = 567760 +The total amount of wall time = 469.530701 +The maximum resident set size (KB) = 571032 -Test 066 rrfs_v1nssl_nohailnoccn PASS +Test 067 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rrfs_smoke_conus13km_hrrr_warm -Checking test 067 rrfs_smoke_conus13km_hrrr_warm results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rrfs_smoke_conus13km_hrrr_warm +Checking test 068 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2830,15 +2816,15 @@ Checking test 067 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 146.010392 -The maximum resident set size (KB) = 800996 +The total amount of wall time = 143.957309 +The maximum resident set size (KB) = 796576 -Test 067 rrfs_smoke_conus13km_hrrr_warm PASS +Test 068 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rrfs_smoke_conus13km_hrrr_warm_2threads -Checking test 068 rrfs_smoke_conus13km_hrrr_warm_2threads results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rrfs_smoke_conus13km_hrrr_warm_2threads +Checking test 069 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2846,15 +2832,15 @@ Checking test 068 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 101.246999 -The maximum resident set size (KB) = 799884 +The total amount of wall time = 104.106063 +The maximum resident set size (KB) = 802808 -Test 068 rrfs_smoke_conus13km_hrrr_warm_2threads PASS +Test 069 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rrfs_conus13km_hrrr_warm -Checking test 069 rrfs_conus13km_hrrr_warm results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rrfs_conus13km_hrrr_warm +Checking test 070 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2862,15 +2848,15 @@ Checking test 069 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 131.510862 -The maximum resident set size (KB) = 778988 +The total amount of wall time = 130.540335 +The maximum resident set size (KB) = 790348 -Test 069 rrfs_conus13km_hrrr_warm PASS +Test 070 rrfs_conus13km_hrrr_warm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rrfs_smoke_conus13km_radar_tten_warm -Checking test 070 rrfs_smoke_conus13km_radar_tten_warm results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rrfs_smoke_conus13km_radar_tten_warm +Checking test 071 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2878,27 +2864,27 @@ Checking test 070 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 144.499730 -The maximum resident set size (KB) = 803228 +The total amount of wall time = 146.531610 +The maximum resident set size (KB) = 797540 -Test 070 rrfs_smoke_conus13km_radar_tten_warm PASS +Test 071 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rrfs_conus13km_hrrr_warm_restart_mismatch -Checking test 071 rrfs_conus13km_hrrr_warm_restart_mismatch results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rrfs_conus13km_hrrr_warm_restart_mismatch +Checking test 072 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 67.164080 -The maximum resident set size (KB) = 758444 +The total amount of wall time = 68.509058 +The maximum resident set size (KB) = 768776 -Test 071 rrfs_conus13km_hrrr_warm_restart_mismatch PASS +Test 072 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmg -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_csawmg -Checking test 072 control_csawmg results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_csawmg +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_csawmg +Checking test 073 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2908,15 +2894,15 @@ Checking test 072 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 346.180026 -The maximum resident set size (KB) = 582100 +The total amount of wall time = 346.330929 +The maximum resident set size (KB) = 582456 -Test 072 control_csawmg PASS +Test 073 control_csawmg PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmgt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_csawmgt -Checking test 073 control_csawmgt results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_csawmgt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_csawmgt +Checking test 074 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2926,15 +2912,15 @@ Checking test 073 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 342.665613 -The maximum resident set size (KB) = 582968 +The total amount of wall time = 341.911782 +The maximum resident set size (KB) = 582172 -Test 073 control_csawmgt PASS +Test 074 control_csawmgt PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_ras -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_ras -Checking test 074 control_ras results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_ras +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_ras +Checking test 075 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2944,27 +2930,27 @@ Checking test 074 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 181.041377 -The maximum resident set size (KB) = 547612 +The total amount of wall time = 181.158071 +The maximum resident set size (KB) = 547152 -Test 074 control_ras PASS +Test 075 control_ras PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wam -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_wam -Checking test 075 control_wam results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_wam +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_wam +Checking test 076 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 117.211320 -The maximum resident set size (KB) = 271684 +The total amount of wall time = 117.841629 +The maximum resident set size (KB) = 272352 -Test 075 control_wam PASS +Test 076 control_wam PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_p8_faster -Checking test 076 control_p8_faster results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_p8_faster +Checking test 077 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -3010,15 +2996,15 @@ Checking test 076 control_p8_faster results .... 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.332285 -The maximum resident set size (KB) = 1484804 +The total amount of wall time = 172.885917 +The maximum resident set size (KB) = 1482732 -Test 076 control_p8_faster PASS +Test 077 control_p8_faster PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_control_faster -Checking test 077 regional_control_faster results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/regional_control_faster +Checking test 078 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -3028,57 +3014,57 @@ Checking test 077 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 279.710705 -The maximum resident set size (KB) = 655256 +The total amount of wall time = 276.966803 +The maximum resident set size (KB) = 649328 -Test 077 regional_control_faster PASS +Test 078 regional_control_faster PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rrfs_smoke_conus13km_hrrr_warm_debug -Checking test 078 rrfs_smoke_conus13km_hrrr_warm_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rrfs_smoke_conus13km_hrrr_warm_debug +Checking test 079 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 914.958329 -The maximum resident set size (KB) = 823828 +The total amount of wall time = 898.773687 +The maximum resident set size (KB) = 827256 -Test 078 rrfs_smoke_conus13km_hrrr_warm_debug PASS +Test 079 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rrfs_smoke_conus13km_hrrr_warm_debug_2threads -Checking test 079 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +Checking test 080 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 527.044834 -The maximum resident set size (KB) = 827536 +The total amount of wall time = 517.095439 +The maximum resident set size (KB) = 829636 -Test 079 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS +Test 080 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rrfs_conus13km_hrrr_warm_debug -Checking test 080 rrfs_conus13km_hrrr_warm_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rrfs_conus13km_hrrr_warm_debug +Checking test 081 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 807.833776 -The maximum resident set size (KB) = 805132 +The total amount of wall time = 807.998591 +The maximum resident set size (KB) = 826152 -Test 080 rrfs_conus13km_hrrr_warm_debug PASS +Test 081 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_CubedSphereGrid_debug -Checking test 081 control_CubedSphereGrid_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_CubedSphereGrid_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_CubedSphereGrid_debug +Checking test 082 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3104,335 +3090,349 @@ Checking test 081 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 158.407891 -The maximum resident set size (KB) = 672244 +The total amount of wall time = 157.428852 +The maximum resident set size (KB) = 673832 -Test 081 control_CubedSphereGrid_debug PASS +Test 082 control_CubedSphereGrid_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_wrtGauss_netcdf_parallel_debug -Checking test 082 control_wrtGauss_netcdf_parallel_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_wrtGauss_netcdf_parallel_debug +Checking test 083 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 159.045584 -The maximum resident set size (KB) = 673604 +The total amount of wall time = 156.907810 +The maximum resident set size (KB) = 678680 -Test 082 control_wrtGauss_netcdf_parallel_debug PASS +Test 083 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_stochy_debug -Checking test 083 control_stochy_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_stochy_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_stochy_debug +Checking test 084 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 179.498776 -The maximum resident set size (KB) = 680308 +The total amount of wall time = 176.423371 +The maximum resident set size (KB) = 679172 -Test 083 control_stochy_debug PASS +Test 084 control_stochy_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_lndp_debug -Checking test 084 control_lndp_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_lndp_debug +Checking test 085 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 160.482226 -The maximum resident set size (KB) = 685060 +The total amount of wall time = 159.359116 +The maximum resident set size (KB) = 687076 -Test 084 control_lndp_debug PASS +Test 085 control_lndp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmg_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_csawmg_debug -Checking test 085 control_csawmg_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_csawmg_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_csawmg_debug +Checking test 086 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 255.086397 -The maximum resident set size (KB) = 716044 +The total amount of wall time = 252.793712 +The maximum resident set size (KB) = 715632 -Test 085 control_csawmg_debug PASS +Test 086 control_csawmg_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmgt_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_csawmgt_debug -Checking test 086 control_csawmgt_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_csawmgt_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_csawmgt_debug +Checking test 087 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 249.234783 -The maximum resident set size (KB) = 718668 +The total amount of wall time = 250.510955 +The maximum resident set size (KB) = 718940 -Test 086 control_csawmgt_debug PASS +Test 087 control_csawmgt_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_ras_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_ras_debug -Checking test 087 control_ras_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_ras_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_ras_debug +Checking test 088 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 161.181065 -The maximum resident set size (KB) = 687884 +The total amount of wall time = 160.005396 +The maximum resident set size (KB) = 688996 -Test 087 control_ras_debug PASS +Test 088 control_ras_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_diag_debug -Checking test 088 control_diag_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_diag_debug +Checking test 089 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 162.298793 -The maximum resident set size (KB) = 734668 +The total amount of wall time = 161.503499 +The maximum resident set size (KB) = 734364 -Test 088 control_diag_debug PASS +Test 089 control_diag_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_debug_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_debug_p8 -Checking test 089 control_debug_p8 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_debug_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_debug_p8 +Checking test 090 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 185.025616 -The maximum resident set size (KB) = 1502004 +The total amount of wall time = 184.336125 +The maximum resident set size (KB) = 1496300 -Test 089 control_debug_p8 PASS +Test 090 control_debug_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_debug -Checking test 090 regional_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/regional_debug +Checking test 091 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1044.948003 -The maximum resident set size (KB) = 673288 - -Test 090 regional_debug PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_control_debug -Checking test 091 rap_control_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 300.436440 -The maximum resident set size (KB) = 1051488 +The total amount of wall time = 1039.669373 +The maximum resident set size (KB) = 676040 -Test 091 rap_control_debug PASS +Test 091 regional_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hrrr_control_debug -Checking test 092 hrrr_control_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rap_control_debug +Checking test 092 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 292.714908 -The maximum resident set size (KB) = 1049364 +The total amount of wall time = 295.044246 +The maximum resident set size (KB) = 1051288 -Test 092 hrrr_control_debug PASS +Test 092 rap_control_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_unified_drag_suite_debug -Checking test 093 rap_unified_drag_suite_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hrrr_control_debug +Checking test 093 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 299.164924 -The maximum resident set size (KB) = 1052696 +The total amount of wall time = 288.530139 +The maximum resident set size (KB) = 1044764 -Test 093 rap_unified_drag_suite_debug PASS +Test 093 hrrr_control_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_diag_debug -Checking test 094 rap_diag_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rap_unified_drag_suite_debug +Checking test 094 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 308.319810 -The maximum resident set size (KB) = 1134268 +The total amount of wall time = 295.111154 +The maximum resident set size (KB) = 1053420 -Test 094 rap_diag_debug PASS +Test 094 rap_unified_drag_suite_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_cires_ugwp_debug -Checking test 095 rap_cires_ugwp_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rap_diag_debug +Checking test 095 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 304.514229 -The maximum resident set size (KB) = 1051200 +The total amount of wall time = 305.298835 +The maximum resident set size (KB) = 1131004 -Test 095 rap_cires_ugwp_debug PASS +Test 095 rap_diag_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_unified_ugwp_debug -Checking test 096 rap_unified_ugwp_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rap_cires_ugwp_debug +Checking test 096 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 303.920430 -The maximum resident set size (KB) = 1051016 +The total amount of wall time = 300.930620 +The maximum resident set size (KB) = 1050688 -Test 096 rap_unified_ugwp_debug PASS +Test 096 rap_cires_ugwp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_lndp_debug -Checking test 097 rap_lndp_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rap_unified_ugwp_debug +Checking test 097 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.552875 -The maximum resident set size (KB) = 1050516 +The total amount of wall time = 302.975966 +The maximum resident set size (KB) = 1052692 -Test 097 rap_lndp_debug PASS +Test 097 rap_unified_ugwp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_flake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_flake_debug -Checking test 098 rap_flake_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rap_lndp_debug +Checking test 098 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.098938 -The maximum resident set size (KB) = 1052628 +The total amount of wall time = 298.119052 +The maximum resident set size (KB) = 1047880 -Test 098 rap_flake_debug PASS +Test 098 rap_lndp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_progcld_thompson_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_progcld_thompson_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_progcld_thompson_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rap_progcld_thompson_debug Checking test 099 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.247219 -The maximum resident set size (KB) = 1048592 +The total amount of wall time = 295.505475 +The maximum resident set size (KB) = 1052332 Test 099 rap_progcld_thompson_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_noah_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_noah_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_noah_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rap_noah_debug Checking test 100 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 293.100562 -The maximum resident set size (KB) = 1046260 +The total amount of wall time = 289.453663 +The maximum resident set size (KB) = 1052164 Test 100 rap_noah_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_sfcdiff_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_sfcdiff_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rap_sfcdiff_debug Checking test 101 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.368443 -The maximum resident set size (KB) = 1050976 +The total amount of wall time = 295.922589 +The maximum resident set size (KB) = 1053244 Test 101 rap_sfcdiff_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rap_noah_sfcdiff_cires_ugwp_debug Checking test 102 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 488.159756 -The maximum resident set size (KB) = 1052528 +The total amount of wall time = 484.283430 +The maximum resident set size (KB) = 1049332 Test 102 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1beta_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rrfs_v1beta_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_v1beta_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rrfs_v1beta_debug Checking test 103 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 292.284380 -The maximum resident set size (KB) = 1046112 +The total amount of wall time = 291.339331 +The maximum resident set size (KB) = 1047748 Test 103 rrfs_v1beta_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wam_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_wam_debug -Checking test 104 control_wam_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_clm_lake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rap_clm_lake_debug +Checking test 104 rap_clm_lake_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 352.745001 +The maximum resident set size (KB) = 1051968 + +Test 104 rap_clm_lake_debug PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_flake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rap_flake_debug +Checking test 105 rap_flake_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 295.869833 +The maximum resident set size (KB) = 1050468 + +Test 105 rap_flake_debug PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_wam_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_wam_debug +Checking test 106 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 296.277054 -The maximum resident set size (KB) = 299056 +The total amount of wall time = 293.001947 +The maximum resident set size (KB) = 301660 -Test 104 control_wam_debug PASS +Test 106 control_wam_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_spp_sppt_shum_skeb_dyn32_phy32 -Checking test 105 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -3442,15 +3442,15 @@ Checking test 105 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 231.757094 -The maximum resident set size (KB) = 878708 +The total amount of wall time = 231.387745 +The maximum resident set size (KB) = 893092 -Test 105 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS +Test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_control_dyn32_phy32 -Checking test 106 rap_control_dyn32_phy32 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rap_control_dyn32_phy32 +Checking test 108 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3496,15 +3496,15 @@ Checking test 106 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 352.043171 -The maximum resident set size (KB) = 772360 +The total amount of wall time = 352.014813 +The maximum resident set size (KB) = 774556 -Test 106 rap_control_dyn32_phy32 PASS +Test 108 rap_control_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hrrr_control_dyn32_phy32 -Checking test 107 hrrr_control_dyn32_phy32 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hrrr_control_dyn32_phy32 +Checking test 109 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3517,48 +3517,48 @@ Checking test 107 hrrr_control_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 186.963977 -The maximum resident set size (KB) = 774084 - -Test 107 hrrr_control_dyn32_phy32 PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_2threads_dyn32_phy32 -Checking test 108 rap_2threads_dyn32_phy32 results .... + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 178.345427 +The maximum resident set size (KB) = 774948 + +Test 109 hrrr_control_dyn32_phy32 PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rap_2threads_dyn32_phy32 +Checking test 110 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3604,15 +3604,15 @@ Checking test 108 rap_2threads_dyn32_phy32 results .... 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.576386 -The maximum resident set size (KB) = 828660 +The total amount of wall time = 328.593921 +The maximum resident set size (KB) = 828668 -Test 108 rap_2threads_dyn32_phy32 PASS +Test 110 rap_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hrrr_control_2threads_dyn32_phy32 -Checking test 109 hrrr_control_2threads_dyn32_phy32 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hrrr_control_2threads_dyn32_phy32 +Checking test 111 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3625,48 +3625,48 @@ Checking test 109 hrrr_control_2threads_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 171.878221 -The maximum resident set size (KB) = 826784 - -Test 109 hrrr_control_2threads_dyn32_phy32 PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hrrr_control_decomp_dyn32_phy32 -Checking test 110 hrrr_control_decomp_dyn32_phy32 results .... + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 161.145695 +The maximum resident set size (KB) = 821972 + +Test 111 hrrr_control_2threads_dyn32_phy32 PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hrrr_control_decomp_dyn32_phy32 +Checking test 112 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3679,48 +3679,48 @@ Checking test 110 hrrr_control_decomp_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 194.008348 -The maximum resident set size (KB) = 771816 - -Test 110 hrrr_control_decomp_dyn32_phy32 PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_restart_dyn32_phy32 -Checking test 111 rap_restart_dyn32_phy32 results .... + 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 = 186.871536 +The maximum resident set size (KB) = 775740 + +Test 112 hrrr_control_decomp_dyn32_phy32 PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rap_restart_dyn32_phy32 +Checking test 113 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3758,61 +3758,29 @@ Checking test 111 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 257.683723 -The maximum resident set size (KB) = 613972 +The total amount of wall time = 257.699055 +The maximum resident set size (KB) = 610188 -Test 111 rap_restart_dyn32_phy32 PASS +Test 113 rap_restart_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hrrr_control_restart_dyn32_phy32 -Checking test 112 hrrr_control_restart_dyn32_phy32 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hrrr_control_restart_dyn32_phy32 +Checking test 114 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -The total amount of wall time = 96.413932 -The maximum resident set size (KB) = 604336 +The total amount of wall time = 93.053785 +The maximum resident set size (KB) = 606640 -Test 112 hrrr_control_restart_dyn32_phy32 PASS +Test 114 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_control_dyn64_phy32 -Checking test 113 rap_control_dyn64_phy32 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rap_control_dyn64_phy32 +Checking test 115 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3858,82 +3826,82 @@ Checking test 113 rap_control_dyn64_phy32 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 = 235.180562 -The maximum resident set size (KB) = 793688 +The total amount of wall time = 233.962423 +The maximum resident set size (KB) = 792368 -Test 113 rap_control_dyn64_phy32 PASS +Test 115 rap_control_dyn64_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_control_debug_dyn32_phy32 -Checking test 114 rap_control_debug_dyn32_phy32 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rap_control_debug_dyn32_phy32 +Checking test 116 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 293.441295 -The maximum resident set size (KB) = 935524 +The total amount of wall time = 289.606467 +The maximum resident set size (KB) = 930800 -Test 114 rap_control_debug_dyn32_phy32 PASS +Test 116 rap_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hrrr_control_debug_dyn32_phy32 -Checking test 115 hrrr_control_debug_dyn32_phy32 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hrrr_control_debug_dyn32_phy32 +Checking test 117 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 287.792674 -The maximum resident set size (KB) = 938172 +The total amount of wall time = 283.080337 +The maximum resident set size (KB) = 931004 -Test 115 hrrr_control_debug_dyn32_phy32 PASS +Test 117 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/rap_control_dyn64_phy32_debug -Checking test 116 rap_control_dyn64_phy32_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rap_control_dyn64_phy32_debug +Checking test 118 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 292.082353 -The maximum resident set size (KB) = 953204 +The total amount of wall time = 290.912371 +The maximum resident set size (KB) = 952872 -Test 116 rap_control_dyn64_phy32_debug PASS +Test 118 rap_control_dyn64_phy32_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hafs_regional_atm -Checking test 117 hafs_regional_atm results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hafs_regional_atm +Checking test 119 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 270.115105 -The maximum resident set size (KB) = 825684 +The total amount of wall time = 271.131951 +The maximum resident set size (KB) = 818776 -Test 117 hafs_regional_atm PASS +Test 119 hafs_regional_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hafs_regional_atm_thompson_gfdlsf -Checking test 118 hafs_regional_atm_thompson_gfdlsf results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hafs_regional_atm_thompson_gfdlsf +Checking test 120 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 313.085230 -The maximum resident set size (KB) = 1175724 +The total amount of wall time = 312.502017 +The maximum resident set size (KB) = 1175900 -Test 118 hafs_regional_atm_thompson_gfdlsf PASS +Test 120 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hafs_regional_atm_ocn -Checking test 119 hafs_regional_atm_ocn results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hafs_regional_atm_ocn +Checking test 121 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -3941,15 +3909,15 @@ Checking test 119 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 387.693127 -The maximum resident set size (KB) = 858284 +The total amount of wall time = 387.807990 +The maximum resident set size (KB) = 857720 -Test 119 hafs_regional_atm_ocn PASS +Test 121 hafs_regional_atm_ocn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hafs_regional_atm_wav -Checking test 120 hafs_regional_atm_wav results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_atm_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hafs_regional_atm_wav +Checking test 122 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing 20190829.060000.out_grd.ww3 .........OK @@ -3957,15 +3925,15 @@ Checking test 120 hafs_regional_atm_wav 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 = 701.529293 -The maximum resident set size (KB) = 883988 +The total amount of wall time = 707.475831 +The maximum resident set size (KB) = 888400 -Test 120 hafs_regional_atm_wav PASS +Test 122 hafs_regional_atm_wav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hafs_regional_atm_ocn_wav -Checking test 121 hafs_regional_atm_ocn_wav results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hafs_regional_atm_ocn_wav +Checking test 123 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -3975,29 +3943,29 @@ Checking test 121 hafs_regional_atm_ocn_wav 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 = 904.871763 -The maximum resident set size (KB) = 914000 +The total amount of wall time = 894.137436 +The maximum resident set size (KB) = 910144 -Test 121 hafs_regional_atm_ocn_wav PASS +Test 123 hafs_regional_atm_ocn_wav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hafs_regional_1nest_atm -Checking test 122 hafs_regional_1nest_atm results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hafs_regional_1nest_atm +Checking test 124 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 333.029548 -The maximum resident set size (KB) = 392492 +The total amount of wall time = 335.647488 +The maximum resident set size (KB) = 395032 -Test 122 hafs_regional_1nest_atm PASS +Test 124 hafs_regional_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hafs_regional_telescopic_2nests_atm -Checking test 123 hafs_regional_telescopic_2nests_atm results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hafs_regional_telescopic_2nests_atm +Checking test 125 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4005,29 +3973,29 @@ Checking test 123 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 404.887674 -The maximum resident set size (KB) = 400760 +The total amount of wall time = 405.381878 +The maximum resident set size (KB) = 401444 -Test 123 hafs_regional_telescopic_2nests_atm PASS +Test 125 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hafs_global_1nest_atm -Checking test 124 hafs_global_1nest_atm results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_global_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hafs_global_1nest_atm +Checking test 126 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 171.342424 -The maximum resident set size (KB) = 268960 +The total amount of wall time = 172.021684 +The maximum resident set size (KB) = 260832 -Test 124 hafs_global_1nest_atm PASS +Test 126 hafs_global_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_multiple_4nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hafs_global_multiple_4nests_atm -Checking test 125 hafs_global_multiple_4nests_atm results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_global_multiple_4nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hafs_global_multiple_4nests_atm +Checking test 127 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4044,15 +4012,15 @@ Checking test 125 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -The total amount of wall time = 490.328657 -The maximum resident set size (KB) = 344904 +The total amount of wall time = 492.537257 +The maximum resident set size (KB) = 346392 -Test 125 hafs_global_multiple_4nests_atm PASS +Test 127 hafs_global_multiple_4nests_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hafs_regional_specified_moving_1nest_atm -Checking test 126 hafs_regional_specified_moving_1nest_atm results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hafs_regional_specified_moving_1nest_atm +Checking test 128 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4060,29 +4028,29 @@ Checking test 126 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 217.769907 -The maximum resident set size (KB) = 405108 +The total amount of wall time = 217.972996 +The maximum resident set size (KB) = 403008 -Test 126 hafs_regional_specified_moving_1nest_atm PASS +Test 128 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hafs_regional_storm_following_1nest_atm -Checking test 127 hafs_regional_storm_following_1nest_atm results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hafs_regional_storm_following_1nest_atm +Checking test 129 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 206.435489 -The maximum resident set size (KB) = 406156 +The total amount of wall time = 206.918285 +The maximum resident set size (KB) = 403260 -Test 127 hafs_regional_storm_following_1nest_atm PASS +Test 129 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hafs_regional_storm_following_1nest_atm_ocn -Checking test 128 hafs_regional_storm_following_1nest_atm_ocn results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hafs_regional_storm_following_1nest_atm_ocn +Checking test 130 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4090,43 +4058,43 @@ Checking test 128 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 252.757236 -The maximum resident set size (KB) = 469328 +The total amount of wall time = 252.375631 +The maximum resident set size (KB) = 466172 -Test 128 hafs_regional_storm_following_1nest_atm_ocn PASS +Test 130 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hafs_global_storm_following_1nest_atm -Checking test 129 hafs_global_storm_following_1nest_atm results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_global_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hafs_global_storm_following_1nest_atm +Checking test 131 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 84.877538 -The maximum resident set size (KB) = 277536 +The total amount of wall time = 84.842896 +The maximum resident set size (KB) = 277996 -Test 129 hafs_global_storm_following_1nest_atm PASS +Test 131 hafs_global_storm_following_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hafs_regional_storm_following_1nest_atm_ocn_debug -Checking test 130 hafs_regional_storm_following_1nest_atm_ocn_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hafs_regional_storm_following_1nest_atm_ocn_debug +Checking test 132 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 804.051280 -The maximum resident set size (KB) = 488372 +The total amount of wall time = 809.358704 +The maximum resident set size (KB) = 487016 -Test 130 hafs_regional_storm_following_1nest_atm_ocn_debug PASS +Test 132 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hafs_regional_storm_following_1nest_atm_ocn_wav -Checking test 131 hafs_regional_storm_following_1nest_atm_ocn_wav results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 133 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4136,162 +4104,162 @@ Checking test 131 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 501.620933 -The maximum resident set size (KB) = 522196 +The total amount of wall time = 502.807302 +The maximum resident set size (KB) = 517888 -Test 131 hafs_regional_storm_following_1nest_atm_ocn_wav PASS +Test 133 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_docn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hafs_regional_docn -Checking test 132 hafs_regional_docn results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_docn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hafs_regional_docn +Checking test 134 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 368.600146 -The maximum resident set size (KB) = 861524 +The total amount of wall time = 367.059310 +The maximum resident set size (KB) = 862016 -Test 132 hafs_regional_docn PASS +Test 134 hafs_regional_docn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_docn_oisst -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hafs_regional_docn_oisst -Checking test 133 hafs_regional_docn_oisst results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_docn_oisst +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hafs_regional_docn_oisst +Checking test 135 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 369.860078 -The maximum resident set size (KB) = 847960 +The total amount of wall time = 371.148902 +The maximum resident set size (KB) = 849032 -Test 133 hafs_regional_docn_oisst PASS +Test 135 hafs_regional_docn_oisst PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_datm_cdeps -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/hafs_regional_datm_cdeps -Checking test 134 hafs_regional_datm_cdeps results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_datm_cdeps +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hafs_regional_datm_cdeps +Checking test 136 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -The total amount of wall time = 947.106246 -The maximum resident set size (KB) = 833556 +The total amount of wall time = 942.119798 +The maximum resident set size (KB) = 833000 -Test 134 hafs_regional_datm_cdeps PASS +Test 136 hafs_regional_datm_cdeps PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/datm_cdeps_control_cfsr -Checking test 135 datm_cdeps_control_cfsr results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_control_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/datm_cdeps_control_cfsr +Checking test 137 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 140.666616 -The maximum resident set size (KB) = 732108 +The total amount of wall time = 140.744837 +The maximum resident set size (KB) = 732924 -Test 135 datm_cdeps_control_cfsr PASS +Test 137 datm_cdeps_control_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/datm_cdeps_restart_cfsr -Checking test 136 datm_cdeps_restart_cfsr results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_control_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/datm_cdeps_restart_cfsr +Checking test 138 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 86.019297 -The maximum resident set size (KB) = 728436 +The total amount of wall time = 85.758098 +The maximum resident set size (KB) = 728424 -Test 136 datm_cdeps_restart_cfsr PASS +Test 138 datm_cdeps_restart_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/datm_cdeps_control_gefs -Checking test 137 datm_cdeps_control_gefs results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_control_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/datm_cdeps_control_gefs +Checking test 139 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 133.766182 -The maximum resident set size (KB) = 612892 +The total amount of wall time = 132.665571 +The maximum resident set size (KB) = 613748 -Test 137 datm_cdeps_control_gefs PASS +Test 139 datm_cdeps_control_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_iau_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/datm_cdeps_iau_gefs -Checking test 138 datm_cdeps_iau_gefs results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_iau_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/datm_cdeps_iau_gefs +Checking test 140 datm_cdeps_iau_gefs 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.660432 -The maximum resident set size (KB) = 611276 +The total amount of wall time = 135.610741 +The maximum resident set size (KB) = 613776 -Test 138 datm_cdeps_iau_gefs PASS +Test 140 datm_cdeps_iau_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_stochy_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/datm_cdeps_stochy_gefs -Checking test 139 datm_cdeps_stochy_gefs results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_stochy_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/datm_cdeps_stochy_gefs +Checking test 141 datm_cdeps_stochy_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 136.805751 -The maximum resident set size (KB) = 615576 +The total amount of wall time = 137.605773 +The maximum resident set size (KB) = 612372 -Test 139 datm_cdeps_stochy_gefs PASS +Test 141 datm_cdeps_stochy_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/datm_cdeps_ciceC_cfsr -Checking test 140 datm_cdeps_ciceC_cfsr results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_ciceC_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/datm_cdeps_ciceC_cfsr +Checking test 142 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 140.957978 -The maximum resident set size (KB) = 733384 +The total amount of wall time = 140.783842 +The maximum resident set size (KB) = 733972 -Test 140 datm_cdeps_ciceC_cfsr PASS +Test 142 datm_cdeps_ciceC_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/datm_cdeps_bulk_cfsr -Checking test 141 datm_cdeps_bulk_cfsr results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_bulk_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/datm_cdeps_bulk_cfsr +Checking test 143 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.875323 -The maximum resident set size (KB) = 732476 +The total amount of wall time = 140.738749 +The maximum resident set size (KB) = 723820 -Test 141 datm_cdeps_bulk_cfsr PASS +Test 143 datm_cdeps_bulk_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/datm_cdeps_bulk_gefs -Checking test 142 datm_cdeps_bulk_gefs results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_bulk_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/datm_cdeps_bulk_gefs +Checking test 144 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 132.955777 -The maximum resident set size (KB) = 620428 +The total amount of wall time = 133.743134 +The maximum resident set size (KB) = 616560 -Test 142 datm_cdeps_bulk_gefs PASS +Test 144 datm_cdeps_bulk_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/datm_cdeps_mx025_cfsr -Checking test 143 datm_cdeps_mx025_cfsr results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_mx025_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/datm_cdeps_mx025_cfsr +Checking test 145 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4299,15 +4267,15 @@ Checking test 143 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 428.530056 -The maximum resident set size (KB) = 570824 +The total amount of wall time = 426.950148 +The maximum resident set size (KB) = 570208 -Test 143 datm_cdeps_mx025_cfsr PASS +Test 145 datm_cdeps_mx025_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/datm_cdeps_mx025_gefs -Checking test 144 datm_cdeps_mx025_gefs results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_mx025_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/datm_cdeps_mx025_gefs +Checking test 146 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4315,65 +4283,65 @@ Checking test 144 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 426.819736 -The maximum resident set size (KB) = 553144 +The total amount of wall time = 428.380634 +The maximum resident set size (KB) = 547092 -Test 144 datm_cdeps_mx025_gefs PASS +Test 146 datm_cdeps_mx025_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/datm_cdeps_multiple_files_cfsr -Checking test 145 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_control_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/datm_cdeps_multiple_files_cfsr +Checking test 147 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 140.881794 -The maximum resident set size (KB) = 734144 +The total amount of wall time = 140.054176 +The maximum resident set size (KB) = 732480 -Test 145 datm_cdeps_multiple_files_cfsr PASS +Test 147 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/datm_cdeps_3072x1536_cfsr -Checking test 146 datm_cdeps_3072x1536_cfsr results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/datm_cdeps_3072x1536_cfsr +Checking test 148 datm_cdeps_3072x1536_cfsr 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 = 256.993785 -The maximum resident set size (KB) = 1981204 +The total amount of wall time = 255.988311 +The maximum resident set size (KB) = 1980344 -Test 146 datm_cdeps_3072x1536_cfsr PASS +Test 148 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_gfs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/datm_cdeps_gfs -Checking test 147 datm_cdeps_gfs results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_gfs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/datm_cdeps_gfs +Checking test 149 datm_cdeps_gfs 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 = 256.582588 -The maximum resident set size (KB) = 1979332 +The total amount of wall time = 256.805003 +The maximum resident set size (KB) = 1981228 -Test 147 datm_cdeps_gfs PASS +Test 149 datm_cdeps_gfs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/datm_cdeps_control_cfsr_faster -Checking test 148 datm_cdeps_control_cfsr_faster results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_control_cfsr_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/datm_cdeps_control_cfsr_faster +Checking test 150 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.095571 -The maximum resident set size (KB) = 731608 +The total amount of wall time = 140.595927 +The maximum resident set size (KB) = 723600 -Test 148 datm_cdeps_control_cfsr_faster PASS +Test 150 datm_cdeps_control_cfsr_faster PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/datm_cdeps_lnd_gswp3 -Checking test 149 datm_cdeps_lnd_gswp3 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/datm_cdeps_lnd_gswp3 +Checking test 151 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4381,15 +4349,15 @@ Checking test 149 datm_cdeps_lnd_gswp3 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.096349 -The maximum resident set size (KB) = 227292 +The total amount of wall time = 22.288985 +The maximum resident set size (KB) = 225776 -Test 149 datm_cdeps_lnd_gswp3 PASS +Test 151 datm_cdeps_lnd_gswp3 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/datm_cdeps_lnd_gswp3_rst -Checking test 150 datm_cdeps_lnd_gswp3_rst results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/datm_cdeps_lnd_gswp3_rst +Checking test 152 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4397,15 +4365,15 @@ Checking test 150 datm_cdeps_lnd_gswp3_rst 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 = 26.982569 -The maximum resident set size (KB) = 229492 +The total amount of wall time = 27.563774 +The maximum resident set size (KB) = 232556 -Test 150 datm_cdeps_lnd_gswp3_rst PASS +Test 152 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_atmlnd_sbs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_p8_atmlnd_sbs -Checking test 151 control_p8_atmlnd_sbs results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8_atmlnd_sbs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_p8_atmlnd_sbs +Checking test 153 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -4489,15 +4457,15 @@ Checking test 151 control_p8_atmlnd_sbs 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 = 236.289314 -The maximum resident set size (KB) = 1536408 +The total amount of wall time = 234.701639 +The maximum resident set size (KB) = 1542144 -Test 151 control_p8_atmlnd_sbs PASS +Test 153 control_p8_atmlnd_sbs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/atmwav_control_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/atmwav_control_noaero_p8 -Checking test 152 atmwav_control_noaero_p8 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/atmwav_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/atmwav_control_noaero_p8 +Checking test 154 atmwav_control_noaero_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -4539,15 +4507,15 @@ Checking test 152 atmwav_control_noaero_p8 results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK -The total amount of wall time = 110.290917 -The maximum resident set size (KB) = 1530272 +The total amount of wall time = 107.050699 +The maximum resident set size (KB) = 1528808 -Test 152 atmwav_control_noaero_p8 PASS +Test 154 atmwav_control_noaero_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_atmwav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/control_atmwav -Checking test 153 control_atmwav results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_atmwav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_atmwav +Checking test 155 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -4590,15 +4558,15 @@ Checking test 153 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -The total amount of wall time = 92.120639 -The maximum resident set size (KB) = 541620 +The total amount of wall time = 90.784628 +The maximum resident set size (KB) = 544164 -Test 153 control_atmwav PASS +Test 155 control_atmwav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/atmaero_control_p8 -Checking test 154 atmaero_control_p8 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/atmaero_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/atmaero_control_p8 +Checking test 156 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4641,15 +4609,15 @@ Checking test 154 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 243.632715 -The maximum resident set size (KB) = 2812396 +The total amount of wall time = 243.583357 +The maximum resident set size (KB) = 2815320 -Test 154 atmaero_control_p8 PASS +Test 156 atmaero_control_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8_rad -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/atmaero_control_p8_rad -Checking test 155 atmaero_control_p8_rad results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/atmaero_control_p8_rad +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/atmaero_control_p8_rad +Checking test 157 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4692,15 +4660,15 @@ Checking test 155 atmaero_control_p8_rad results .... 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.829081 -The maximum resident set size (KB) = 2878356 +The total amount of wall time = 282.632257 +The maximum resident set size (KB) = 2876660 -Test 155 atmaero_control_p8_rad PASS +Test 157 atmaero_control_p8_rad PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/atmaero_control_p8_rad_micro -Checking test 156 atmaero_control_p8_rad_micro results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/atmaero_control_p8_rad_micro +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/atmaero_control_p8_rad_micro +Checking test 158 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4743,15 +4711,15 @@ Checking test 156 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 287.878626 -The maximum resident set size (KB) = 2885196 +The total amount of wall time = 287.932948 +The maximum resident set size (KB) = 2886296 -Test 156 atmaero_control_p8_rad_micro PASS +Test 158 atmaero_control_p8_rad_micro PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_atmaq -Checking test 157 regional_atmaq results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_atmaq +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/regional_atmaq +Checking test 159 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -4766,15 +4734,15 @@ Checking test 157 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 682.977333 -The maximum resident set size (KB) = 1257296 +The total amount of wall time = 681.071942 +The maximum resident set size (KB) = 1253668 -Test 157 regional_atmaq PASS +Test 159 regional_atmaq PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_atmaq_debug -Checking test 158 regional_atmaq_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_atmaq_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/regional_atmaq_debug +Checking test 160 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -4787,15 +4755,15 @@ Checking test 158 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1307.193464 -The maximum resident set size (KB) = 1291952 +The total amount of wall time = 1305.593756 +The maximum resident set size (KB) = 1288544 -Test 158 regional_atmaq_debug PASS +Test 160 regional_atmaq_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_27838/regional_atmaq_faster -Checking test 159 regional_atmaq_faster results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_atmaq_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/regional_atmaq_faster +Checking test 161 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -4810,12 +4778,12 @@ Checking test 159 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 632.615419 -The maximum resident set size (KB) = 1255852 +The total amount of wall time = 641.423207 +The maximum resident set size (KB) = 1248804 -Test 159 regional_atmaq_faster PASS +Test 161 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Fri Apr 21 19:55:36 UTC 2023 -Elapsed time: 01h:30m:13s. Have a nice day! +Tue Apr 25 03:06:56 UTC 2023 +Elapsed time: 01h:31m:56s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index 6a0f0580cca..8cf097e0da2 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,21 +1,21 @@ -Fri Apr 21 11:14:13 MDT 2023 +Tue Apr 25 09:28:02 MDT 2023 Start Regression test -Compile 001 elapsed time 379 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 400 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 002 elapsed time 404 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 868 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 187 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 376 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 1112 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 863 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 868 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 658 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 570 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 350 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 012 elapsed time 297 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/control_c48 -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/control_c48 +Compile 003 elapsed time 895 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 192 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 394 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 1141 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 900 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 903 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 648 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 577 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 356 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 012 elapsed time 296 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/control_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/control_c48 Checking test 001 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -54,14 +54,14 @@ Checking test 001 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 820.092534 -0:The maximum resident set size (KB) = 679748 +0:The total amount of wall time = 821.223042 +0:The maximum resident set size (KB) = 680340 Test 001 control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/control_stochy -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/control_stochy +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/control_stochy +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/control_stochy Checking test 002 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -72,14 +72,14 @@ Checking test 002 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 178.243191 -0:The maximum resident set size (KB) = 443848 +0:The total amount of wall time = 178.475006 +0:The maximum resident set size (KB) = 443712 Test 002 control_stochy PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/control_ras -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/control_ras +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/control_ras +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/control_ras Checking test 003 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -90,14 +90,14 @@ Checking test 003 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 295.479192 -0:The maximum resident set size (KB) = 452736 +0:The total amount of wall time = 296.635178 +0:The maximum resident set size (KB) = 452768 Test 003 control_ras PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/control_p8 -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/control_p8 Checking test 004 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -144,15 +144,33 @@ Checking test 004 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 310.005003 -0:The maximum resident set size (KB) = 1226792 +0:The total amount of wall time = 311.342686 +0:The maximum resident set size (KB) = 1225320 Test 004 control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rap_control -Checking test 005 rap_control results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/control_flake +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/control_flake +Checking test 005 control_flake results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK + Comparing GFSFLX.GrbF00 .........NOT OK + Comparing GFSFLX.GrbF24 .........NOT OK + Comparing GFSPRS.GrbF00 .........NOT OK + Comparing GFSPRS.GrbF24 .........NOT OK + +0:The total amount of wall time = 358.216644 +0:The maximum resident set size (KB) = 490488 + +Test 005 control_flake FAIL Tries: 2 + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rap_control +Checking test 006 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -198,15 +216,15 @@ Checking test 005 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 716.233417 -0:The maximum resident set size (KB) = 792492 +0:The total amount of wall time = 715.738660 +0:The maximum resident set size (KB) = 792404 -Test 005 rap_control PASS +Test 006 rap_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rap_decomp -Checking test 006 rap_decomp results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rap_decomp +Checking test 007 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -252,15 +270,15 @@ Checking test 006 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 721.043888 -0:The maximum resident set size (KB) = 791908 +0:The total amount of wall time = 717.271854 +0:The maximum resident set size (KB) = 791724 -Test 006 rap_decomp PASS +Test 007 rap_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rap_2threads -Checking test 007 rap_2threads results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rap_2threads +Checking test 008 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -306,15 +324,15 @@ Checking test 007 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 662.309640 -0:The maximum resident set size (KB) = 866600 +0:The total amount of wall time = 654.809101 +0:The maximum resident set size (KB) = 866068 -Test 007 rap_2threads PASS +Test 008 rap_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rap_restart -Checking test 008 rap_restart results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rap_restart +Checking test 009 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -352,15 +370,15 @@ Checking test 008 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 356.198531 -0:The maximum resident set size (KB) = 539240 +0:The total amount of wall time = 355.564379 +0:The maximum resident set size (KB) = 539380 -Test 008 rap_restart PASS +Test 009 rap_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rap_sfcdiff -Checking test 009 rap_sfcdiff results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rap_sfcdiff +Checking test 010 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -406,15 +424,15 @@ Checking test 009 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 716.151679 -0:The maximum resident set size (KB) = 792264 +0:The total amount of wall time = 714.598937 +0:The maximum resident set size (KB) = 791844 -Test 009 rap_sfcdiff PASS +Test 010 rap_sfcdiff PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rap_sfcdiff_decomp -Checking test 010 rap_sfcdiff_decomp results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rap_sfcdiff_decomp +Checking test 011 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -460,15 +478,15 @@ Checking test 010 rap_sfcdiff_decomp results .... Comparing 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.586043 -0:The maximum resident set size (KB) = 791596 +0:The total amount of wall time = 725.825589 +0:The maximum resident set size (KB) = 791532 -Test 010 rap_sfcdiff_decomp PASS +Test 011 rap_sfcdiff_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rap_sfcdiff_restart -Checking test 011 rap_sfcdiff_restart results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rap_sfcdiff_restart +Checking test 012 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -506,15 +524,15 @@ Checking test 011 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 530.907873 -0:The maximum resident set size (KB) = 545684 +0:The total amount of wall time = 527.180584 +0:The maximum resident set size (KB) = 544448 -Test 011 rap_sfcdiff_restart PASS +Test 012 rap_sfcdiff_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/hrrr_control -Checking test 012 hrrr_control results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/hrrr_control +Checking test 013 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -527,48 +545,48 @@ Checking test 012 hrrr_control results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 692.983137 -0:The maximum resident set size (KB) = 789436 - -Test 012 hrrr_control PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/hrrr_control_2threads -Checking test 013 hrrr_control_2threads results .... + 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 = 686.636349 +0:The maximum resident set size (KB) = 789196 + +Test 013 hrrr_control PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/hrrr_control_2threads +Checking test 014 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -581,48 +599,48 @@ Checking test 013 hrrr_control_2threads results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 624.735590 -0:The maximum resident set size (KB) = 860296 - -Test 013 hrrr_control_2threads PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/hrrr_control_decomp -Checking test 014 hrrr_control_decomp results .... + 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 = 709.930656 +0:The maximum resident set size (KB) = 855972 + +Test 014 hrrr_control_2threads PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/hrrr_control_decomp +Checking test 015 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -635,94 +653,62 @@ Checking test 014 hrrr_control_decomp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 693.018683 -0:The maximum resident set size (KB) = 789768 - -Test 014 hrrr_control_decomp PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/hrrr_control_restart -Checking test 015 hrrr_control_restart results .... + 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 = 684.619393 +0:The maximum resident set size (KB) = 788572 + +Test 015 hrrr_control_decomp PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/hrrr_control_restart +Checking test 016 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 512.158958 -0:The maximum resident set size (KB) = 540528 +0:The total amount of wall time = 507.374280 +0:The maximum resident set size (KB) = 539804 -Test 015 hrrr_control_restart PASS +Test 016 hrrr_control_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_v1beta -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rrfs_v1beta -Checking test 016 rrfs_v1beta results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rrfs_v1beta +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rrfs_v1beta +Checking test 017 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -768,15 +754,15 @@ Checking test 016 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 706.611951 -0:The maximum resident set size (KB) = 789268 +0:The total amount of wall time = 707.089396 +0:The maximum resident set size (KB) = 789656 -Test 016 rrfs_v1beta PASS +Test 017 rrfs_v1beta PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rrfs_smoke_conus13km_hrrr_warm -Checking test 017 rrfs_smoke_conus13km_hrrr_warm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rrfs_smoke_conus13km_hrrr_warm +Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -784,15 +770,15 @@ Checking test 017 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 232.174520 -0:The maximum resident set size (KB) = 636528 +0:The total amount of wall time = 234.040580 +0:The maximum resident set size (KB) = 639548 -Test 017 rrfs_smoke_conus13km_hrrr_warm PASS +Test 018 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rrfs_smoke_conus13km_hrrr_warm_2threads -Checking test 018 rrfs_smoke_conus13km_hrrr_warm_2threads results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rrfs_smoke_conus13km_hrrr_warm_2threads +Checking test 019 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -800,15 +786,15 @@ Checking test 018 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 146.345291 -0:The maximum resident set size (KB) = 655004 +0:The total amount of wall time = 146.867956 +0:The maximum resident set size (KB) = 658632 -Test 018 rrfs_smoke_conus13km_hrrr_warm_2threads PASS +Test 019 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rrfs_conus13km_hrrr_warm -Checking test 019 rrfs_conus13km_hrrr_warm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rrfs_conus13km_hrrr_warm +Checking test 020 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -816,15 +802,15 @@ Checking test 019 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 212.502976 -0:The maximum resident set size (KB) = 615824 +0:The total amount of wall time = 212.626743 +0:The maximum resident set size (KB) = 618564 -Test 019 rrfs_conus13km_hrrr_warm PASS +Test 020 rrfs_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rrfs_smoke_conus13km_radar_tten_warm -Checking test 020 rrfs_smoke_conus13km_radar_tten_warm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rrfs_smoke_conus13km_radar_tten_warm +Checking test 021 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -832,235 +818,263 @@ Checking test 020 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 232.774128 -0:The maximum resident set size (KB) = 639292 +0:The total amount of wall time = 231.910875 +0:The maximum resident set size (KB) = 642248 -Test 020 rrfs_smoke_conus13km_radar_tten_warm PASS +Test 021 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rrfs_conus13km_hrrr_warm_restart_mismatch -Checking test 021 rrfs_conus13km_hrrr_warm_restart_mismatch results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rrfs_conus13km_hrrr_warm_restart_mismatch +Checking test 022 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 110.782794 -0:The maximum resident set size (KB) = 596436 +0:The total amount of wall time = 111.802692 +0:The maximum resident set size (KB) = 599640 -Test 021 rrfs_conus13km_hrrr_warm_restart_mismatch PASS +Test 022 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/control_diag_debug -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/control_diag_debug -Checking test 022 control_diag_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/control_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/control_diag_debug +Checking test 023 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 82.945457 -0:The maximum resident set size (KB) = 491476 +0:The total amount of wall time = 82.335787 +0:The maximum resident set size (KB) = 492248 -Test 022 control_diag_debug PASS +Test 023 control_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/regional_debug -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/regional_debug -Checking test 023 regional_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/regional_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/regional_debug +Checking test 024 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 483.827196 -0:The maximum resident set size (KB) = 567124 +0:The total amount of wall time = 477.611827 +0:The maximum resident set size (KB) = 567596 -Test 023 regional_debug PASS +Test 024 regional_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control_debug -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rap_control_debug -Checking test 024 rap_control_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rap_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rap_control_debug +Checking test 025 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 147.918625 -0:The maximum resident set size (KB) = 805616 +0:The total amount of wall time = 145.333649 +0:The maximum resident set size (KB) = 806280 -Test 024 rap_control_debug PASS +Test 025 rap_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control_debug -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/hrrr_control_debug -Checking test 025 hrrr_control_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/hrrr_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/hrrr_control_debug +Checking test 026 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 144.367559 -0:The maximum resident set size (KB) = 802076 +0:The total amount of wall time = 142.656386 +0:The maximum resident set size (KB) = 801812 -Test 025 hrrr_control_debug PASS +Test 026 hrrr_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_diag_debug -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rap_diag_debug -Checking test 026 rap_diag_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rap_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rap_diag_debug +Checking test 027 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 154.105330 -0:The maximum resident set size (KB) = 888316 +0:The total amount of wall time = 152.308834 +0:The maximum resident set size (KB) = 888396 -Test 026 rap_diag_debug PASS +Test 027 rap_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 027 rap_noah_sfcdiff_cires_ugwp_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 028 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 237.365950 -0:The maximum resident set size (KB) = 804068 +0:The total amount of wall time = 235.155081 +0:The maximum resident set size (KB) = 804660 -Test 027 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 028 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_progcld_thompson_debug -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rap_progcld_thompson_debug -Checking test 028 rap_progcld_thompson_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rap_progcld_thompson_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rap_progcld_thompson_debug +Checking test 029 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 146.876353 -0:The maximum resident set size (KB) = 805352 +0:The total amount of wall time = 145.316687 +0:The maximum resident set size (KB) = 806460 -Test 028 rap_progcld_thompson_debug PASS +Test 029 rap_progcld_thompson_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_v1beta_debug -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rrfs_v1beta_debug -Checking test 029 rrfs_v1beta_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rrfs_v1beta_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rrfs_v1beta_debug +Checking test 030 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 145.482124 -0:The maximum resident set size (KB) = 801304 +0:The total amount of wall time = 144.992259 +0:The maximum resident set size (KB) = 801456 -Test 029 rrfs_v1beta_debug PASS +Test 030 rrfs_v1beta_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/control_ras_debug -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/control_ras_debug -Checking test 030 control_ras_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/control_ras_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/control_ras_debug +Checking test 031 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 81.573920 -0:The maximum resident set size (KB) = 446656 +0:The total amount of wall time = 81.317173 +0:The maximum resident set size (KB) = 446480 -Test 030 control_ras_debug PASS +Test 031 control_ras_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/control_stochy_debug -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/control_stochy_debug -Checking test 031 control_stochy_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/control_stochy_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/control_stochy_debug +Checking test 032 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 89.961958 -0:The maximum resident set size (KB) = 438112 +0:The total amount of wall time = 88.672079 +0:The maximum resident set size (KB) = 439104 -Test 031 control_stochy_debug PASS +Test 032 control_stochy_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/control_debug_p8 -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/control_debug_p8 -Checking test 032 control_debug_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/control_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/control_debug_p8 +Checking test 033 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 91.862405 -0:The maximum resident set size (KB) = 1221280 +0:The total amount of wall time = 90.781517 +0:The maximum resident set size (KB) = 1223544 -Test 032 control_debug_p8 PASS +Test 033 control_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rrfs_smoke_conus13km_hrrr_warm_debug -Checking test 033 rrfs_smoke_conus13km_hrrr_warm_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rrfs_smoke_conus13km_hrrr_warm_debug +Checking test 034 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 440.514734 -0:The maximum resident set size (KB) = 641444 +0:The total amount of wall time = 438.337660 +0:The maximum resident set size (KB) = 645168 -Test 033 rrfs_smoke_conus13km_hrrr_warm_debug PASS +Test 034 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rrfs_smoke_conus13km_hrrr_warm_debug_2threads -Checking test 034 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +Checking test 035 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 258.466829 -0:The maximum resident set size (KB) = 665592 +0:The total amount of wall time = 259.779408 +0:The maximum resident set size (KB) = 669872 -Test 034 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS +Test 035 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rrfs_conus13km_hrrr_warm_debug -Checking test 035 rrfs_conus13km_hrrr_warm_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rrfs_conus13km_hrrr_warm_debugs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rrfs_conus13km_hrrr_warm_debug +Checking test 036 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 400.157967 -0:The maximum resident set size (KB) = 619848 +0:The total amount of wall time = 396.828254 +0:The maximum resident set size (KB) = 623964 -Test 035 rrfs_conus13km_hrrr_warm_debug PASS +Test 036 rrfs_conus13km_hrrr_warm_debug PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rap_flake_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rap_flake_debug +Checking test 037 rap_flake_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +0:The total amount of wall time = 145.651202 +0:The maximum resident set size (KB) = 806384 + +Test 037 rap_flake_debug PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rap_clm_lake_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rap_clm_lake_debug +Checking test 038 rap_clm_lake_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK +0:The total amount of wall time = 164.560342 +0:The maximum resident set size (KB) = 808004 -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/control_wam_debug -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/control_wam_debug -Checking test 036 control_wam_debug results .... +Test 038 rap_clm_lake_debug PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/control_wam_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/control_wam_debug +Checking test 039 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 140.125540 -0:The maximum resident set size (KB) = 183548 +0:The total amount of wall time = 140.457916 +0:The maximum resident set size (KB) = 182852 -Test 036 control_wam_debug PASS +Test 039 control_wam_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rap_control_dyn32_phy32 -Checking test 037 rap_control_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rap_control_dyn32_phy32 +Checking test 040 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -1106,15 +1120,15 @@ Checking test 037 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 703.789376 -0:The maximum resident set size (KB) = 673768 +0:The total amount of wall time = 704.103266 +0:The maximum resident set size (KB) = 672584 -Test 037 rap_control_dyn32_phy32 PASS +Test 040 rap_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/hrrr_control_dyn32_phy32 -Checking test 038 hrrr_control_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/hrrr_control_dyn32_phy32 +Checking test 041 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -1127,48 +1141,48 @@ Checking test 038 hrrr_control_dyn32_phy32 results .... 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 = 355.350362 -0:The maximum resident set size (KB) = 671136 - -Test 038 hrrr_control_dyn32_phy32 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rap_2threads_dyn32_phy32 -Checking test 039 rap_2threads_dyn32_phy32 results .... + 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 = 354.097209 +0:The maximum resident set size (KB) = 671196 + +Test 041 hrrr_control_dyn32_phy32 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rap_2threads_dyn32_phy32 +Checking test 042 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -1214,15 +1228,15 @@ Checking test 039 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 645.572568 -0:The maximum resident set size (KB) = 720236 +0:The total amount of wall time = 646.051970 +0:The maximum resident set size (KB) = 720680 -Test 039 rap_2threads_dyn32_phy32 PASS +Test 042 rap_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/hrrr_control_2threads_dyn32_phy32 -Checking test 040 hrrr_control_2threads_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/hrrr_control_2threads_dyn32_phy32 +Checking test 043 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -1235,48 +1249,48 @@ Checking test 040 hrrr_control_2threads_dyn32_phy32 results .... 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 = 322.783525 -0:The maximum resident set size (KB) = 717272 - -Test 040 hrrr_control_2threads_dyn32_phy32 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/hrrr_control_decomp_dyn32_phy32 -Checking test 041 hrrr_control_decomp_dyn32_phy32 results .... + 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 = 402.237329 +0:The maximum resident set size (KB) = 711840 + +Test 043 hrrr_control_2threads_dyn32_phy32 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/hrrr_control_decomp_dyn32_phy32 +Checking test 044 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -1289,48 +1303,48 @@ Checking test 041 hrrr_control_decomp_dyn32_phy32 results .... 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 = 356.104222 -0:The maximum resident set size (KB) = 670224 - -Test 041 hrrr_control_decomp_dyn32_phy32 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rap_restart_dyn32_phy32 -Checking test 042 rap_restart_dyn32_phy32 results .... + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 351.532691 +0:The maximum resident set size (KB) = 670092 + +Test 044 hrrr_control_decomp_dyn32_phy32 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rap_restart_dyn32_phy32 +Checking test 045 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -1368,61 +1382,29 @@ Checking test 042 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 522.334314 -0:The maximum resident set size (KB) = 512064 +0:The total amount of wall time = 520.605488 +0:The maximum resident set size (KB) = 511860 -Test 042 rap_restart_dyn32_phy32 PASS +Test 045 rap_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/hrrr_control_restart_dyn32_phy32 -Checking test 043 hrrr_control_restart_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/hrrr_control_restart_dyn32_phy32 +Checking test 046 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........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 = 180.613272 -0:The maximum resident set size (KB) = 507152 +0:The total amount of wall time = 178.086046 +0:The maximum resident set size (KB) = 506076 -Test 043 hrrr_control_restart_dyn32_phy32 PASS +Test 046 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control_dyn64_phy32 -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rap_control_dyn64_phy32 -Checking test 044 rap_control_dyn64_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rap_control_dyn64_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rap_control_dyn64_phy32 +Checking test 047 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -1468,57 +1450,57 @@ Checking test 044 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 406.288061 -0:The maximum resident set size (KB) = 693588 +0:The total amount of wall time = 406.944035 +0:The maximum resident set size (KB) = 693900 -Test 044 rap_control_dyn64_phy32 PASS +Test 047 rap_control_dyn64_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rap_control_debug_dyn32_phy32 -Checking test 045 rap_control_debug_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rap_control_debug_dyn32_phy32 +Checking test 048 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 144.064213 -0:The maximum resident set size (KB) = 687732 +0:The total amount of wall time = 143.871322 +0:The maximum resident set size (KB) = 687060 -Test 045 rap_control_debug_dyn32_phy32 PASS +Test 048 rap_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/hrrr_control_debug_dyn32_phy32 -Checking test 046 hrrr_control_debug_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/hrrr_control_debug_dyn32_phy32 +Checking test 049 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 143.497782 -0:The maximum resident set size (KB) = 683920 +0:The total amount of wall time = 140.286344 +0:The maximum resident set size (KB) = 684392 -Test 046 hrrr_control_debug_dyn32_phy32 PASS +Test 049 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/rap_control_dyn64_phy32_debug -Checking test 047 rap_control_dyn64_phy32_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rap_control_debug_dyn64_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rap_control_dyn64_phy32_debug +Checking test 050 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 152.771584 -0:The maximum resident set size (KB) = 707604 +0:The total amount of wall time = 148.716276 +0:The maximum resident set size (KB) = 708252 -Test 047 rap_control_dyn64_phy32_debug PASS +Test 050 rap_control_dyn64_phy32_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/cpld_control_p8 -Checking test 048 cpld_control_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/cpld_control_p8 +Checking test 051 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1582,15 +1564,15 @@ Checking test 048 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 500.863330 -0:The maximum resident set size (KB) = 3158608 +0:The total amount of wall time = 493.149174 +0:The maximum resident set size (KB) = 3158640 -Test 048 cpld_control_p8 PASS +Test 051 cpld_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/cpld_control_nowave_noaero_p8 -Checking test 049 cpld_control_nowave_noaero_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/cpld_control_c96_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/cpld_control_nowave_noaero_p8 +Checking test 052 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1651,15 +1633,15 @@ Checking test 049 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 251.132624 -0:The maximum resident set size (KB) = 1240572 +0:The total amount of wall time = 248.685388 +0:The maximum resident set size (KB) = 1241160 -Test 049 cpld_control_nowave_noaero_p8 PASS +Test 052 cpld_control_nowave_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/cpld_debug_p8 -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/cpld_debug_p8 -Checking test 050 cpld_debug_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/cpld_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/cpld_debug_p8 +Checking test 053 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -1711,25 +1693,54 @@ Checking test 050 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 201.087755 -0:The maximum resident set size (KB) = 3172904 +0:The total amount of wall time = 197.906466 +0:The maximum resident set size (KB) = 3175780 -Test 050 cpld_debug_p8 PASS +Test 053 cpld_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/GNU/datm_cdeps_control_cfsr -working dir = /glade/scratch/jongkim/rt-1702-gnu/jongkim/FV3_RT/rt_22613/datm_cdeps_control_cfsr -Checking test 051 datm_cdeps_control_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/datm_cdeps_control_cfsr +Checking test 054 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 173.972822 -0:The maximum resident set size (KB) = 673660 +0:The total amount of wall time = 179.628570 +0:The maximum resident set size (KB) = 677408 + +Test 054 datm_cdeps_control_cfsr PASS + +FAILED TESTS: +Test control_flake 005 failed in check_result failed +Test control_flake 005 failed in run_test failed + +REGRESSION TEST FAILED +Tue Apr 25 10:17:24 MDT 2023 +Elapsed time: 00h:49m:23s. Have a nice day! +Tue Apr 25 11:15:27 MDT 2023 +Start Regression test + +Compile 001 elapsed time 441 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/control_flake +working dir = /glade/scratch/zshrader/FV3_RT/rt_55899/control_flake +Checking test 001 control_flake results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + +0:The total amount of wall time = 325.583330 +0:The maximum resident set size (KB) = 472880 -Test 051 datm_cdeps_control_cfsr PASS +Test 001 control_flake PASS REGRESSION TEST WAS SUCCESSFUL -Fri Apr 21 11:49:28 MDT 2023 -Elapsed time: 00h:35m:16s. Have a nice day! +Tue Apr 25 11:29:49 MDT 2023 +Elapsed time: 00h:14m:22s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 7b27868dd6c..be6ab9d4c40 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,43 +1,43 @@ -Fri Apr 21 13:23:30 MDT 2023 +Tue Apr 25 09:05:52 MDT 2023 Start Regression test -Compile 001 elapsed time 1474 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 1515 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 1390 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 455 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 390 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 1071 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 1096 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 1804 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 1075 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 969 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 011 elapsed time 932 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 818 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 1263 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 397 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 262 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 833 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 833 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 269 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 271 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 1114 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 021 elapsed time 340 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 1580 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 1105 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 024 elapsed time 430 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 195 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 429 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 110 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 961 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 989 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 1015 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 907 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 873 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 033 elapsed time 288 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 034 elapsed time 1020 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8_mixedmode -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_control_p8_mixedmode +Compile 001 elapsed time 1574 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1502 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 1416 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 460 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 397 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 1150 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 1137 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 1507 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 1157 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 010 elapsed time 1056 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 1009 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 884 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 1354 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 437 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 015 elapsed time 277 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 939 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 918 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 287 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 283 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 1226 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 021 elapsed time 351 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 1639 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 1196 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 024 elapsed time 427 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 191 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 424 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 105 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 1029 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 1074 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 1093 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 979 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 940 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 033 elapsed time 305 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 034 elapsed time 1102 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8_mixedmode +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -102,14 +102,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 324.519956 -0:The maximum resident set size (KB) = 2698440 +0:The total amount of wall time = 319.142246 +0:The maximum resident set size (KB) = 2699076 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_gfsv17 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_control_gfsv17 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_gfsv17 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -173,14 +173,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 283.118296 -0:The maximum resident set size (KB) = 1437688 +0:The total amount of wall time = 282.091307 +0:The maximum resident set size (KB) = 1437752 Test 002 cpld_control_gfsv17 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -245,14 +245,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 322.808786 -0:The maximum resident set size (KB) = 2715196 +0:The total amount of wall time = 322.872873 +0:The maximum resident set size (KB) = 2715328 Test 003 cpld_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_restart_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -305,14 +305,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 186.085532 -0:The maximum resident set size (KB) = 2576488 +0:The total amount of wall time = 179.073898 +0:The maximum resident set size (KB) = 2576904 Test 004 cpld_restart_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_control_qr_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -377,14 +377,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 320.882650 -0:The maximum resident set size (KB) = 2719364 +0:The total amount of wall time = 326.391025 +0:The maximum resident set size (KB) = 2719892 Test 005 cpld_control_qr_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_restart_qr_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -437,14 +437,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 200.080221 -0:The maximum resident set size (KB) = 2593640 +0:The total amount of wall time = 193.005260 +0:The maximum resident set size (KB) = 2593124 Test 006 cpld_restart_qr_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_2threads_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -497,14 +497,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 250.324959 -0:The maximum resident set size (KB) = 3178164 +0:The total amount of wall time = 250.366377 +0:The maximum resident set size (KB) = 3177784 Test 007 cpld_2threads_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_decomp_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -557,14 +557,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 321.796032 -0:The maximum resident set size (KB) = 2720236 +0:The total amount of wall time = 320.186557 +0:The maximum resident set size (KB) = 2720480 Test 008 cpld_decomp_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_mpi_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -617,14 +617,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 278.563096 -0:The maximum resident set size (KB) = 2680208 +0:The total amount of wall time = 268.096945 +0:The maximum resident set size (KB) = 2681604 Test 009 cpld_mpi_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_ciceC_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_control_ciceC_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_ciceC_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -689,14 +689,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 322.504974 -0:The maximum resident set size (KB) = 2715312 +0:The total amount of wall time = 311.391171 +0:The maximum resident set size (KB) = 2715320 Test 010 cpld_control_ciceC_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_control_c192_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_c192_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/cpld_control_c192_p8 Checking test 011 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -749,14 +749,14 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -0:The total amount of wall time = 635.473410 -0:The maximum resident set size (KB) = 3351932 +0:The total amount of wall time = 627.702178 +0:The maximum resident set size (KB) = 3352088 Test 011 cpld_control_c192_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_restart_c192_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_c192_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/cpld_restart_c192_p8 Checking test 012 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -809,14 +809,14 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -0:The total amount of wall time = 386.942961 -0:The maximum resident set size (KB) = 3276112 +0:The total amount of wall time = 382.339707 +0:The maximum resident set size (KB) = 3276816 Test 012 cpld_restart_c192_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_control_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/cpld_control_noaero_p8 Checking test 013 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -880,14 +880,14 @@ Checking test 013 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 287.924072 -0:The maximum resident set size (KB) = 1435696 +0:The total amount of wall time = 294.515743 +0:The maximum resident set size (KB) = 1436000 Test 013 cpld_control_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_control_nowave_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_c96_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/cpld_control_nowave_noaero_p8 Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -949,14 +949,14 @@ Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 198.067762 -0:The maximum resident set size (KB) = 1453008 +0:The total amount of wall time = 189.305163 +0:The maximum resident set size (KB) = 1453540 Test 014 cpld_control_nowave_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/cpld_debug_p8 Checking test 015 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1009,14 +1009,14 @@ Checking test 015 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 351.436859 -0:The maximum resident set size (KB) = 2778756 +0:The total amount of wall time = 354.497090 +0:The maximum resident set size (KB) = 2780228 Test 015 cpld_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_debug_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_debug_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_debug_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/cpld_debug_noaero_p8 Checking test 016 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1068,14 +1068,14 @@ Checking test 016 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 301.265299 -0:The maximum resident set size (KB) = 1454024 +0:The total amount of wall time = 301.086565 +0:The maximum resident set size (KB) = 1454132 Test 016 cpld_debug_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_noaero_p8_agrid -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_control_noaero_p8_agrid +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_noaero_p8_agrid +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/cpld_control_noaero_p8_agrid Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1137,14 +1137,14 @@ Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 251.765652 -0:The maximum resident set size (KB) = 1456912 +0:The total amount of wall time = 252.488962 +0:The maximum resident set size (KB) = 1457092 Test 017 cpld_control_noaero_p8_agrid PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_control_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/cpld_control_c48 Checking test 018 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1194,14 +1194,14 @@ Checking test 018 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 601.613846 -0:The maximum resident set size (KB) = 2586480 +0:The total amount of wall time = 605.315782 +0:The maximum resident set size (KB) = 2587140 Test 018 cpld_control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_warmstart_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_warmstart_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/cpld_warmstart_c48 Checking test 019 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1251,14 +1251,14 @@ Checking test 019 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -0:The total amount of wall time = 163.439060 -0:The maximum resident set size (KB) = 2601536 +0:The total amount of wall time = 161.737542 +0:The maximum resident set size (KB) = 2602592 Test 019 cpld_warmstart_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/cpld_restart_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_warmstart_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/cpld_restart_c48 Checking test 020 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1308,15 +1308,33 @@ Checking test 020 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -0:The total amount of wall time = 85.281952 -0:The maximum resident set size (KB) = 2019616 +0:The total amount of wall time = 84.844466 +0:The maximum resident set size (KB) = 2020340 Test 020 cpld_restart_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_CubedSphereGrid -Checking test 021 control_CubedSphereGrid results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_flake +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_flake +Checking test 021 control_flake results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + +0:The total amount of wall time = 221.017367 +0:The maximum resident set size (KB) = 501376 + +Test 021 control_flake PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_CubedSphereGrid +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_CubedSphereGrid +Checking test 022 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1342,29 +1360,29 @@ Checking test 021 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -0:The total amount of wall time = 143.325584 -0:The maximum resident set size (KB) = 454260 +0:The total amount of wall time = 142.593650 +0:The maximum resident set size (KB) = 454496 -Test 021 control_CubedSphereGrid PASS +Test 022 control_CubedSphereGrid PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid_parallel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_CubedSphereGrid_parallel -Checking test 022 control_CubedSphereGrid_parallel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_CubedSphereGrid_parallel +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_CubedSphereGrid_parallel +Checking test 023 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK -0:The total amount of wall time = 140.253719 -0:The maximum resident set size (KB) = 454216 +0:The total amount of wall time = 140.628343 +0:The maximum resident set size (KB) = 454532 -Test 022 control_CubedSphereGrid_parallel PASS +Test 023 control_CubedSphereGrid_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_latlon -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_latlon -Checking test 023 control_latlon results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_latlon +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_latlon +Checking test 024 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1374,15 +1392,15 @@ Checking test 023 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 147.236305 -0:The maximum resident set size (KB) = 454296 +0:The total amount of wall time = 148.348467 +0:The maximum resident set size (KB) = 454684 -Test 023 control_latlon PASS +Test 024 control_latlon PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wrtGauss_netcdf_parallel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_wrtGauss_netcdf_parallel -Checking test 024 control_wrtGauss_netcdf_parallel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_wrtGauss_netcdf_parallel +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_wrtGauss_netcdf_parallel +Checking test 025 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK @@ -1392,15 +1410,15 @@ Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 150.193007 -0:The maximum resident set size (KB) = 454288 +0:The total amount of wall time = 150.540535 +0:The maximum resident set size (KB) = 454680 -Test 024 control_wrtGauss_netcdf_parallel PASS +Test 025 control_wrtGauss_netcdf_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_c48 -Checking test 025 control_c48 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_c48 +Checking test 026 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1438,15 +1456,15 @@ Checking test 025 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 444.470436 -0:The maximum resident set size (KB) = 633524 +0:The total amount of wall time = 443.357985 +0:The maximum resident set size (KB) = 634316 -Test 025 control_c48 PASS +Test 026 control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c192 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_c192 -Checking test 026 control_c192 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_c192 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_c192 +Checking test 027 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1456,15 +1474,15 @@ Checking test 026 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 599.519531 -0:The maximum resident set size (KB) = 560304 +0:The total amount of wall time = 597.320944 +0:The maximum resident set size (KB) = 560252 -Test 026 control_c192 PASS +Test 027 control_c192 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c384 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_c384 -Checking test 027 control_c384 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_c384 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_c384 +Checking test 028 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1474,15 +1492,15 @@ Checking test 027 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 586.513005 -0:The maximum resident set size (KB) = 899512 +0:The total amount of wall time = 591.531437 +0:The maximum resident set size (KB) = 903324 -Test 027 control_c384 PASS +Test 028 control_c384 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c384gdas -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_c384gdas -Checking test 028 control_c384gdas results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_c384gdas +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_c384gdas +Checking test 029 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -1524,15 +1542,15 @@ Checking test 028 control_c384gdas 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 = 517.549484 -0:The maximum resident set size (KB) = 1027252 +0:The total amount of wall time = 520.854193 +0:The maximum resident set size (KB) = 1029044 -Test 028 control_c384gdas PASS +Test 029 control_c384gdas PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_stochy -Checking test 029 control_stochy results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_stochy +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_stochy +Checking test 030 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1542,29 +1560,29 @@ Checking test 029 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 98.793386 -0:The maximum resident set size (KB) = 459240 +0:The total amount of wall time = 101.169607 +0:The maximum resident set size (KB) = 459428 -Test 029 control_stochy PASS +Test 030 control_stochy PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_stochy_restart -Checking test 030 control_stochy_restart results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_stochy +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_stochy_restart +Checking test 031 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 53.174056 -0:The maximum resident set size (KB) = 226480 +0:The total amount of wall time = 54.124517 +0:The maximum resident set size (KB) = 227652 -Test 030 control_stochy_restart PASS +Test 031 control_stochy_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_lndp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_lndp -Checking test 031 control_lndp results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_lndp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_lndp +Checking test 032 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1574,15 +1592,15 @@ Checking test 031 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 90.734473 -0:The maximum resident set size (KB) = 458276 +0:The total amount of wall time = 93.151098 +0:The maximum resident set size (KB) = 459068 -Test 031 control_lndp PASS +Test 032 control_lndp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_iovr4 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_iovr4 -Checking test 032 control_iovr4 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_iovr4 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_iovr4 +Checking test 033 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1596,15 +1614,15 @@ Checking test 032 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 147.550293 -0:The maximum resident set size (KB) = 454228 +0:The total amount of wall time = 148.849094 +0:The maximum resident set size (KB) = 454560 -Test 032 control_iovr4 PASS +Test 033 control_iovr4 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_iovr5 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_iovr5 -Checking test 033 control_iovr5 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_iovr5 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_iovr5 +Checking test 034 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1618,15 +1636,15 @@ Checking test 033 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 148.294688 -0:The maximum resident set size (KB) = 454220 +0:The total amount of wall time = 150.285252 +0:The maximum resident set size (KB) = 454612 -Test 033 control_iovr5 PASS +Test 034 control_iovr5 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_p8 -Checking test 034 control_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_p8 +Checking test 035 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1672,15 +1690,15 @@ Checking test 034 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 183.019509 -0:The maximum resident set size (KB) = 1423916 +0:The total amount of wall time = 183.796042 +0:The maximum resident set size (KB) = 1423960 -Test 034 control_p8 PASS +Test 035 control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_restart_p8 -Checking test 035 control_restart_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_restart_p8 +Checking test 036 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1718,15 +1736,15 @@ Checking test 035 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 95.944739 -0:The maximum resident set size (KB) = 582868 +0:The total amount of wall time = 97.025329 +0:The maximum resident set size (KB) = 582120 -Test 035 control_restart_p8 PASS +Test 036 control_restart_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_qr_p8 -Checking test 036 control_qr_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_qr_p8 +Checking test 037 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1772,15 +1790,15 @@ Checking test 036 control_qr_p8 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 = 183.529750 -0:The maximum resident set size (KB) = 1427212 +0:The total amount of wall time = 183.158950 +0:The maximum resident set size (KB) = 1427676 -Test 036 control_qr_p8 PASS +Test 037 control_qr_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_restart_qr_p8 -Checking test 037 control_restart_qr_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_restart_qr_p8 +Checking test 038 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1818,15 +1836,15 @@ Checking test 037 control_restart_qr_p8 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 = 97.405363 -0:The maximum resident set size (KB) = 596860 +0:The total amount of wall time = 100.841784 +0:The maximum resident set size (KB) = 597252 -Test 037 control_restart_qr_p8 PASS +Test 038 control_restart_qr_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_decomp_p8 -Checking test 038 control_decomp_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_decomp_p8 +Checking test 039 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1868,15 +1886,15 @@ Checking test 038 control_decomp_p8 results .... Comparing 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.730726 -0:The maximum resident set size (KB) = 1418408 +0:The total amount of wall time = 184.082874 +0:The maximum resident set size (KB) = 1417712 -Test 038 control_decomp_p8 PASS +Test 039 control_decomp_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_2threads_p8 -Checking test 039 control_2threads_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_2threads_p8 +Checking test 040 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1918,15 +1936,15 @@ Checking test 039 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 171.118969 -0:The maximum resident set size (KB) = 1509200 +0:The total amount of wall time = 169.776354 +0:The maximum resident set size (KB) = 1509436 -Test 039 control_2threads_p8 PASS +Test 040 control_2threads_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_lndp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_p8_lndp -Checking test 040 control_p8_lndp results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8_lndp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_p8_lndp +Checking test 041 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1944,15 +1962,15 @@ Checking test 040 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -0:The total amount of wall time = 335.711546 -0:The maximum resident set size (KB) = 1424948 +0:The total amount of wall time = 337.202653 +0:The maximum resident set size (KB) = 1424256 -Test 040 control_p8_lndp PASS +Test 041 control_p8_lndp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_rrtmgp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_p8_rrtmgp -Checking test 041 control_p8_rrtmgp results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8_rrtmgp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_p8_rrtmgp +Checking test 042 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1998,15 +2016,15 @@ Checking test 041 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 255.776175 -0:The maximum resident set size (KB) = 1480304 +0:The total amount of wall time = 256.025478 +0:The maximum resident set size (KB) = 1480648 -Test 041 control_p8_rrtmgp PASS +Test 042 control_p8_rrtmgp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_mynn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_p8_mynn -Checking test 042 control_p8_mynn results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8_mynn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_p8_mynn +Checking test 043 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2052,15 +2070,15 @@ Checking test 042 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 184.704349 -0:The maximum resident set size (KB) = 1427940 +0:The total amount of wall time = 185.545363 +0:The maximum resident set size (KB) = 1428408 -Test 042 control_p8_mynn PASS +Test 043 control_p8_mynn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/merra2_thompson -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/merra2_thompson -Checking test 043 merra2_thompson results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/merra2_thompson +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/merra2_thompson +Checking test 044 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2106,15 +2124,15 @@ Checking test 043 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 201.847984 -0:The maximum resident set size (KB) = 1429724 +0:The total amount of wall time = 204.690595 +0:The maximum resident set size (KB) = 1429988 -Test 043 merra2_thompson PASS +Test 044 merra2_thompson PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/regional_control -Checking test 044 regional_control results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/regional_control +Checking test 045 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2124,29 +2142,29 @@ Checking test 044 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 340.684976 -0:The maximum resident set size (KB) = 604856 +0:The total amount of wall time = 343.603222 +0:The maximum resident set size (KB) = 605060 -Test 044 regional_control PASS +Test 045 regional_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/regional_restart -Checking test 045 regional_restart results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/regional_restart +Checking test 046 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 175.307742 -0:The maximum resident set size (KB) = 594236 +0:The total amount of wall time = 178.538046 +0:The maximum resident set size (KB) = 594408 -Test 045 regional_restart PASS +Test 046 regional_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/regional_control_qr -Checking test 046 regional_control_qr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/regional_control_qr +Checking test 047 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2156,29 +2174,29 @@ Checking test 046 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 341.766730 -0:The maximum resident set size (KB) = 604828 +0:The total amount of wall time = 346.923378 +0:The maximum resident set size (KB) = 605096 -Test 046 regional_control_qr PASS +Test 047 regional_control_qr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/regional_restart_qr -Checking test 047 regional_restart_qr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/regional_restart_qr +Checking test 048 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 177.924105 -0:The maximum resident set size (KB) = 594172 +0:The total amount of wall time = 176.171623 +0:The maximum resident set size (KB) = 594352 -Test 047 regional_restart_qr PASS +Test 048 regional_restart_qr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/regional_decomp -Checking test 048 regional_decomp results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/regional_decomp +Checking test 049 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2188,15 +2206,15 @@ Checking test 048 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 363.628035 -0:The maximum resident set size (KB) = 598888 +0:The total amount of wall time = 359.487914 +0:The maximum resident set size (KB) = 598864 -Test 048 regional_decomp PASS +Test 049 regional_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/regional_2threads -Checking test 049 regional_2threads results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/regional_2threads +Checking test 050 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2206,44 +2224,44 @@ Checking test 049 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 204.270757 -0:The maximum resident set size (KB) = 611600 +0:The total amount of wall time = 213.610658 +0:The maximum resident set size (KB) = 611888 -Test 049 regional_2threads PASS +Test 050 regional_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_noquilt -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/regional_noquilt -Checking test 050 regional_noquilt results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_noquilt +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/regional_noquilt +Checking test 051 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -0:The total amount of wall time = 356.822041 -0:The maximum resident set size (KB) = 599032 +0:The total amount of wall time = 369.085155 +0:The maximum resident set size (KB) = 599504 -Test 050 regional_noquilt PASS +Test 051 regional_noquilt PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_netcdf_parallel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/regional_netcdf_parallel -Checking test 051 regional_netcdf_parallel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_netcdf_parallel +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/regional_netcdf_parallel +Checking test 052 regional_netcdf_parallel results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf006.nc ............ALT CHECK......OK Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf006.nc ............ALT CHECK......OK -0:The total amount of wall time = 339.817267 -0:The maximum resident set size (KB) = 596732 +0:The total amount of wall time = 325.509123 +0:The maximum resident set size (KB) = 597000 -Test 051 regional_netcdf_parallel PASS +Test 052 regional_netcdf_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/regional_2dwrtdecomp -Checking test 052 regional_2dwrtdecomp results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/regional_2dwrtdecomp +Checking test 053 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2253,15 +2271,15 @@ Checking test 052 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 340.159184 -0:The maximum resident set size (KB) = 604832 +0:The total amount of wall time = 346.086194 +0:The maximum resident set size (KB) = 605088 -Test 052 regional_2dwrtdecomp PASS +Test 053 regional_2dwrtdecomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/fv3_regional_wofs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/regional_wofs -Checking test 053 regional_wofs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/fv3_regional_wofs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/regional_wofs +Checking test 054 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2271,15 +2289,15 @@ Checking test 053 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 431.846936 -0:The maximum resident set size (KB) = 275892 +0:The total amount of wall time = 437.602462 +0:The maximum resident set size (KB) = 276188 -Test 053 regional_wofs PASS +Test 054 regional_wofs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_control -Checking test 054 rap_control results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rap_control +Checking test 055 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2325,15 +2343,15 @@ Checking test 054 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 481.913263 -0:The maximum resident set size (KB) = 823376 +0:The total amount of wall time = 481.614392 +0:The maximum resident set size (KB) = 823904 -Test 054 rap_control PASS +Test 055 rap_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_spp_sppt_shum_skeb -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/regional_spp_sppt_shum_skeb -Checking test 055 regional_spp_sppt_shum_skeb results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_spp_sppt_shum_skeb +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/regional_spp_sppt_shum_skeb +Checking test 056 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -2343,15 +2361,15 @@ Checking test 055 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 261.659529 -0:The maximum resident set size (KB) = 952340 +0:The total amount of wall time = 261.943940 +0:The maximum resident set size (KB) = 953608 -Test 055 regional_spp_sppt_shum_skeb PASS +Test 056 regional_spp_sppt_shum_skeb PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_decomp -Checking test 056 rap_decomp results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rap_decomp +Checking test 057 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2397,15 +2415,15 @@ Checking test 056 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 504.691957 -0:The maximum resident set size (KB) = 822192 +0:The total amount of wall time = 503.703374 +0:The maximum resident set size (KB) = 822692 -Test 056 rap_decomp PASS +Test 057 rap_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_2threads -Checking test 057 rap_2threads results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rap_2threads +Checking test 058 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2451,15 +2469,15 @@ Checking test 057 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 462.180223 -0:The maximum resident set size (KB) = 893540 +0:The total amount of wall time = 462.323234 +0:The maximum resident set size (KB) = 895540 -Test 057 rap_2threads PASS +Test 058 rap_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_restart -Checking test 058 rap_restart results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rap_restart +Checking test 059 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2497,15 +2515,15 @@ Checking test 058 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 239.216202 -0:The maximum resident set size (KB) = 571332 +0:The total amount of wall time = 244.873261 +0:The maximum resident set size (KB) = 571668 -Test 058 rap_restart PASS +Test 059 rap_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_sfcdiff -Checking test 059 rap_sfcdiff results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rap_sfcdiff +Checking test 060 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2551,15 +2569,15 @@ Checking test 059 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 484.678902 -0:The maximum resident set size (KB) = 823340 +0:The total amount of wall time = 483.212165 +0:The maximum resident set size (KB) = 823632 -Test 059 rap_sfcdiff PASS +Test 060 rap_sfcdiff PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_sfcdiff_decomp -Checking test 060 rap_sfcdiff_decomp results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rap_sfcdiff_decomp +Checking test 061 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2605,15 +2623,15 @@ Checking test 060 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 504.403689 -0:The maximum resident set size (KB) = 822328 +0:The total amount of wall time = 508.142870 +0:The maximum resident set size (KB) = 822596 -Test 060 rap_sfcdiff_decomp PASS +Test 061 rap_sfcdiff_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_sfcdiff_restart -Checking test 061 rap_sfcdiff_restart results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rap_sfcdiff_restart +Checking test 062 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2651,15 +2669,15 @@ Checking test 061 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 359.800845 -0:The maximum resident set size (KB) = 570656 +0:The total amount of wall time = 356.779505 +0:The maximum resident set size (KB) = 571672 -Test 061 rap_sfcdiff_restart PASS +Test 062 rap_sfcdiff_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hrrr_control -Checking test 062 hrrr_control results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hrrr_control +Checking test 063 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2672,48 +2690,48 @@ Checking test 062 hrrr_control results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 462.437771 -0:The maximum resident set size (KB) = 820816 - -Test 062 hrrr_control PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hrrr_control_decomp -Checking test 063 hrrr_control_decomp results .... + 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 = 451.936788 +0:The maximum resident set size (KB) = 820876 + +Test 063 hrrr_control PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hrrr_control_decomp +Checking test 064 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2726,48 +2744,48 @@ Checking test 063 hrrr_control_decomp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 485.078210 -0:The maximum resident set size (KB) = 820648 - -Test 063 hrrr_control_decomp PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hrrr_control_2threads -Checking test 064 hrrr_control_2threads results .... + 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 = 466.824717 +0:The maximum resident set size (KB) = 820612 + +Test 064 hrrr_control_decomp PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hrrr_control_2threads +Checking test 065 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2780,94 +2798,62 @@ Checking test 064 hrrr_control_2threads results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 440.016661 -0:The maximum resident set size (KB) = 888408 - -Test 064 hrrr_control_2threads PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hrrr_control_restart -Checking test 065 hrrr_control_restart results .... + 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 = 500.394242 +0:The maximum resident set size (KB) = 890476 + +Test 065 hrrr_control_2threads PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hrrr_control_restart +Checking test 066 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 343.926956 -0:The maximum resident set size (KB) = 566572 +0:The total amount of wall time = 335.459898 +0:The maximum resident set size (KB) = 567700 -Test 065 hrrr_control_restart PASS +Test 066 hrrr_control_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1beta -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rrfs_v1beta -Checking test 066 rrfs_v1beta results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_v1beta +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rrfs_v1beta +Checking test 067 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2913,15 +2899,15 @@ Checking test 066 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 476.645696 -0:The maximum resident set size (KB) = 819472 +0:The total amount of wall time = 480.958742 +0:The maximum resident set size (KB) = 819696 -Test 066 rrfs_v1beta PASS +Test 067 rrfs_v1beta PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1nssl -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rrfs_v1nssl -Checking test 067 rrfs_v1nssl results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_v1nssl +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rrfs_v1nssl +Checking test 068 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2935,15 +2921,15 @@ Checking test 067 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 589.871051 -0:The maximum resident set size (KB) = 508796 +0:The total amount of wall time = 588.168385 +0:The maximum resident set size (KB) = 508696 -Test 067 rrfs_v1nssl PASS +Test 068 rrfs_v1nssl PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rrfs_v1nssl_nohailnoccn -Checking test 068 rrfs_v1nssl_nohailnoccn results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rrfs_v1nssl_nohailnoccn +Checking test 069 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2957,15 +2943,15 @@ Checking test 068 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 569.606949 -0:The maximum resident set size (KB) = 502712 +0:The total amount of wall time = 559.822019 +0:The maximum resident set size (KB) = 502952 -Test 068 rrfs_v1nssl_nohailnoccn PASS +Test 069 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rrfs_smoke_conus13km_hrrr_warm -Checking test 069 rrfs_smoke_conus13km_hrrr_warm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rrfs_smoke_conus13km_hrrr_warm +Checking test 070 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2973,15 +2959,15 @@ Checking test 069 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 152.907438 -0:The maximum resident set size (KB) = 675324 +0:The total amount of wall time = 153.433492 +0:The maximum resident set size (KB) = 670996 -Test 069 rrfs_smoke_conus13km_hrrr_warm PASS +Test 070 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rrfs_smoke_conus13km_hrrr_warm_2threads -Checking test 070 rrfs_smoke_conus13km_hrrr_warm_2threads results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rrfs_smoke_conus13km_hrrr_warm_2threads +Checking test 071 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2989,15 +2975,15 @@ Checking test 070 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 93.245534 -0:The maximum resident set size (KB) = 693856 +0:The total amount of wall time = 93.673821 +0:The maximum resident set size (KB) = 692960 -Test 070 rrfs_smoke_conus13km_hrrr_warm_2threads PASS +Test 071 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rrfs_conus13km_hrrr_warm -Checking test 071 rrfs_conus13km_hrrr_warm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rrfs_conus13km_hrrr_warm +Checking test 072 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -3005,15 +2991,15 @@ Checking test 071 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 137.550660 -0:The maximum resident set size (KB) = 654104 +0:The total amount of wall time = 137.259061 +0:The maximum resident set size (KB) = 667288 -Test 071 rrfs_conus13km_hrrr_warm PASS +Test 072 rrfs_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rrfs_smoke_conus13km_radar_tten_warm -Checking test 072 rrfs_smoke_conus13km_radar_tten_warm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rrfs_smoke_conus13km_radar_tten_warm +Checking test 073 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -3021,27 +3007,27 @@ Checking test 072 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 153.935152 -0:The maximum resident set size (KB) = 677920 +0:The total amount of wall time = 152.146323 +0:The maximum resident set size (KB) = 677492 -Test 072 rrfs_smoke_conus13km_radar_tten_warm PASS +Test 073 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rrfs_conus13km_hrrr_warm_restart_mismatch -Checking test 073 rrfs_conus13km_hrrr_warm_restart_mismatch results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rrfs_conus13km_hrrr_warm_restart_mismatch +Checking test 074 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 70.610874 -0:The maximum resident set size (KB) = 632208 +0:The total amount of wall time = 71.848995 +0:The maximum resident set size (KB) = 640380 -Test 073 rrfs_conus13km_hrrr_warm_restart_mismatch PASS +Test 074 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmg -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_csawmg -Checking test 074 control_csawmg results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_csawmg +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_csawmg +Checking test 075 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3051,15 +3037,15 @@ Checking test 074 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 400.249782 -0:The maximum resident set size (KB) = 527740 +0:The total amount of wall time = 399.153662 +0:The maximum resident set size (KB) = 528024 -Test 074 control_csawmg PASS +Test 075 control_csawmg PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmgt -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_csawmgt -Checking test 075 control_csawmgt results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_csawmgt +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_csawmgt +Checking test 076 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3069,15 +3055,15 @@ Checking test 075 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 394.323575 -0:The maximum resident set size (KB) = 528404 +0:The total amount of wall time = 393.571350 +0:The maximum resident set size (KB) = 528864 -Test 075 control_csawmgt PASS +Test 076 control_csawmgt PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_ras -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_ras -Checking test 076 control_ras results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_ras +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_ras +Checking test 077 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3087,27 +3073,27 @@ Checking test 076 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 205.739704 -0:The maximum resident set size (KB) = 491288 +0:The total amount of wall time = 206.027748 +0:The maximum resident set size (KB) = 491172 -Test 076 control_ras PASS +Test 077 control_ras PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wam -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_wam -Checking test 077 control_wam results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_wam +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_wam +Checking test 078 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -0:The total amount of wall time = 129.525401 -0:The maximum resident set size (KB) = 206292 +0:The total amount of wall time = 129.915771 +0:The maximum resident set size (KB) = 206720 -Test 077 control_wam PASS +Test 078 control_wam PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_faster -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_p8_faster -Checking test 078 control_p8_faster results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8_faster +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_p8_faster +Checking test 079 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -3153,15 +3139,15 @@ Checking test 078 control_p8_faster results .... Comparing 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.029387 -0:The maximum resident set size (KB) = 1423720 +0:The total amount of wall time = 171.041008 +0:The maximum resident set size (KB) = 1423832 -Test 078 control_p8_faster PASS +Test 079 control_p8_faster PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control_faster -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/regional_control_faster -Checking test 079 regional_control_faster results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control_faster +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/regional_control_faster +Checking test 080 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -3171,57 +3157,57 @@ Checking test 079 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 324.581453 -0:The maximum resident set size (KB) = 604708 +0:The total amount of wall time = 320.044249 +0:The maximum resident set size (KB) = 604904 -Test 079 regional_control_faster PASS +Test 080 regional_control_faster PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rrfs_smoke_conus13km_hrrr_warm_debug -Checking test 080 rrfs_smoke_conus13km_hrrr_warm_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rrfs_smoke_conus13km_hrrr_warm_debug +Checking test 081 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 871.802541 -0:The maximum resident set size (KB) = 704768 +0:The total amount of wall time = 876.976384 +0:The maximum resident set size (KB) = 704312 -Test 080 rrfs_smoke_conus13km_hrrr_warm_debug PASS +Test 081 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rrfs_smoke_conus13km_hrrr_warm_debug_2threads -Checking test 081 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +Checking test 082 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 499.740002 -0:The maximum resident set size (KB) = 724256 +0:The total amount of wall time = 500.511114 +0:The maximum resident set size (KB) = 723836 -Test 081 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS +Test 082 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rrfs_conus13km_hrrr_warm_debug -Checking test 082 rrfs_conus13km_hrrr_warm_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rrfs_conus13km_hrrr_warm_debug +Checking test 083 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 782.177368 -0:The maximum resident set size (KB) = 683284 +0:The total amount of wall time = 783.249919 +0:The maximum resident set size (KB) = 697548 -Test 082 rrfs_conus13km_hrrr_warm_debug PASS +Test 083 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_CubedSphereGrid_debug -Checking test 083 control_CubedSphereGrid_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_CubedSphereGrid_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_CubedSphereGrid_debug +Checking test 084 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3247,335 +3233,349 @@ Checking test 083 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -0:The total amount of wall time = 157.352526 -0:The maximum resident set size (KB) = 617452 +0:The total amount of wall time = 160.584418 +0:The maximum resident set size (KB) = 618020 -Test 083 control_CubedSphereGrid_debug PASS +Test 084 control_CubedSphereGrid_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_wrtGauss_netcdf_parallel_debug -Checking test 084 control_wrtGauss_netcdf_parallel_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_wrtGauss_netcdf_parallel_debug +Checking test 085 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 156.062841 -0:The maximum resident set size (KB) = 615548 +0:The total amount of wall time = 157.271955 +0:The maximum resident set size (KB) = 615660 -Test 084 control_wrtGauss_netcdf_parallel_debug PASS +Test 085 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_stochy_debug -Checking test 085 control_stochy_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_stochy_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_stochy_debug +Checking test 086 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 175.308146 -0:The maximum resident set size (KB) = 621216 +0:The total amount of wall time = 174.521472 +0:The maximum resident set size (KB) = 621116 -Test 085 control_stochy_debug PASS +Test 086 control_stochy_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_lndp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_lndp_debug -Checking test 086 control_lndp_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_lndp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_lndp_debug +Checking test 087 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 157.292235 -0:The maximum resident set size (KB) = 620000 +0:The total amount of wall time = 157.276354 +0:The maximum resident set size (KB) = 620584 -Test 086 control_lndp_debug PASS +Test 087 control_lndp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmg_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_csawmg_debug -Checking test 087 control_csawmg_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_csawmg_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_csawmg_debug +Checking test 088 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 248.097119 -0:The maximum resident set size (KB) = 666368 +0:The total amount of wall time = 248.369859 +0:The maximum resident set size (KB) = 666872 -Test 087 control_csawmg_debug PASS +Test 088 control_csawmg_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmgt_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_csawmgt_debug -Checking test 088 control_csawmgt_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_csawmgt_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_csawmgt_debug +Checking test 089 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 244.860441 -0:The maximum resident set size (KB) = 667372 +0:The total amount of wall time = 244.411680 +0:The maximum resident set size (KB) = 667800 -Test 088 control_csawmgt_debug PASS +Test 089 control_csawmgt_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_ras_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_ras_debug -Checking test 089 control_ras_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_ras_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_ras_debug +Checking test 090 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 162.424074 -0:The maximum resident set size (KB) = 630328 +0:The total amount of wall time = 158.812406 +0:The maximum resident set size (KB) = 630068 -Test 089 control_ras_debug PASS +Test 090 control_ras_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_diag_debug -Checking test 090 control_diag_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_diag_debug +Checking test 091 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 159.185965 -0:The maximum resident set size (KB) = 674836 +0:The total amount of wall time = 159.084354 +0:The maximum resident set size (KB) = 675440 -Test 090 control_diag_debug PASS +Test 091 control_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_debug_p8 -Checking test 091 control_debug_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_debug_p8 +Checking test 092 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 176.308639 -0:The maximum resident set size (KB) = 1442356 +0:The total amount of wall time = 174.682814 +0:The maximum resident set size (KB) = 1443456 -Test 091 control_debug_p8 PASS +Test 092 control_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/regional_debug -Checking test 092 regional_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/regional_debug +Checking test 093 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 1036.935412 -0:The maximum resident set size (KB) = 625924 - -Test 092 regional_debug PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_control_debug -Checking test 093 rap_control_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 287.084698 -0:The maximum resident set size (KB) = 986496 +0:The total amount of wall time = 1033.525203 +0:The maximum resident set size (KB) = 626424 -Test 093 rap_control_debug PASS +Test 093 regional_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hrrr_control_debug -Checking test 094 hrrr_control_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rap_control_debug +Checking test 094 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 281.600489 -0:The maximum resident set size (KB) = 984084 +0:The total amount of wall time = 286.025062 +0:The maximum resident set size (KB) = 987052 -Test 094 hrrr_control_debug PASS +Test 094 rap_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_unified_drag_suite_debug -Checking test 095 rap_unified_drag_suite_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hrrr_control_debug +Checking test 095 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 287.472533 -0:The maximum resident set size (KB) = 986652 +0:The total amount of wall time = 279.986715 +0:The maximum resident set size (KB) = 983260 -Test 095 rap_unified_drag_suite_debug PASS +Test 095 hrrr_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_diag_debug -Checking test 096 rap_diag_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rap_unified_drag_suite_debug +Checking test 096 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 297.992960 -0:The maximum resident set size (KB) = 1069984 +0:The total amount of wall time = 286.425862 +0:The maximum resident set size (KB) = 987060 -Test 096 rap_diag_debug PASS +Test 096 rap_unified_drag_suite_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_cires_ugwp_debug -Checking test 097 rap_cires_ugwp_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rap_diag_debug +Checking test 097 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 291.742725 -0:The maximum resident set size (KB) = 985792 +0:The total amount of wall time = 297.463093 +0:The maximum resident set size (KB) = 1070312 -Test 097 rap_cires_ugwp_debug PASS +Test 097 rap_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_unified_ugwp_debug -Checking test 098 rap_unified_ugwp_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rap_cires_ugwp_debug +Checking test 098 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 295.201147 -0:The maximum resident set size (KB) = 986816 +0:The total amount of wall time = 292.622886 +0:The maximum resident set size (KB) = 986260 -Test 098 rap_unified_ugwp_debug PASS +Test 098 rap_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_lndp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_lndp_debug -Checking test 099 rap_lndp_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rap_unified_ugwp_debug +Checking test 099 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 290.173800 -0:The maximum resident set size (KB) = 987444 +0:The total amount of wall time = 292.282315 +0:The maximum resident set size (KB) = 987268 -Test 099 rap_lndp_debug PASS +Test 099 rap_unified_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_flake_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_flake_debug -Checking test 100 rap_flake_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_lndp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rap_lndp_debug +Checking test 100 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 287.976333 -0:The maximum resident set size (KB) = 986616 +0:The total amount of wall time = 288.947041 +0:The maximum resident set size (KB) = 987828 -Test 100 rap_flake_debug PASS +Test 100 rap_lndp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_progcld_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_progcld_thompson_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_progcld_thompson_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rap_progcld_thompson_debug Checking test 101 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 286.456969 -0:The maximum resident set size (KB) = 986588 +0:The total amount of wall time = 286.892291 +0:The maximum resident set size (KB) = 987112 Test 101 rap_progcld_thompson_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_noah_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_noah_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_noah_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rap_noah_debug Checking test 102 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 282.083508 -0:The maximum resident set size (KB) = 984456 +0:The total amount of wall time = 281.234122 +0:The maximum resident set size (KB) = 985180 Test 102 rap_noah_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_sfcdiff_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_sfcdiff_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rap_sfcdiff_debug Checking test 103 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 286.240114 -0:The maximum resident set size (KB) = 986356 +0:The total amount of wall time = 287.418756 +0:The maximum resident set size (KB) = 986952 Test 103 rap_sfcdiff_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rap_noah_sfcdiff_cires_ugwp_debug Checking test 104 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 474.892403 -0:The maximum resident set size (KB) = 985280 +0:The total amount of wall time = 469.999853 +0:The maximum resident set size (KB) = 985804 Test 104 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1beta_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rrfs_v1beta_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_v1beta_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rrfs_v1beta_debug Checking test 105 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 282.222650 -0:The maximum resident set size (KB) = 983432 +0:The total amount of wall time = 282.840863 +0:The maximum resident set size (KB) = 983004 Test 105 rrfs_v1beta_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wam_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_wam_debug -Checking test 106 control_wam_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_clm_lake_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rap_clm_lake_debug +Checking test 106 rap_clm_lake_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +0:The total amount of wall time = 352.130988 +0:The maximum resident set size (KB) = 989996 + +Test 106 rap_clm_lake_debug PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_flake_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rap_flake_debug +Checking test 107 rap_flake_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +0:The total amount of wall time = 287.902870 +0:The maximum resident set size (KB) = 987348 + +Test 107 rap_flake_debug PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_wam_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_wam_debug +Checking test 108 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 299.066112 -0:The maximum resident set size (KB) = 235296 +0:The total amount of wall time = 290.175655 +0:The maximum resident set size (KB) = 235700 -Test 106 control_wam_debug PASS +Test 108 control_wam_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/regional_spp_sppt_shum_skeb_dyn32_phy32 -Checking test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 109 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -3585,15 +3585,15 @@ Checking test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 239.645019 -0:The maximum resident set size (KB) = 851052 +0:The total amount of wall time = 246.296774 +0:The maximum resident set size (KB) = 855112 -Test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS +Test 109 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_control_dyn32_phy32 -Checking test 108 rap_control_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rap_control_dyn32_phy32 +Checking test 110 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3639,15 +3639,15 @@ Checking test 108 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 402.020825 -0:The maximum resident set size (KB) = 707908 +0:The total amount of wall time = 395.741265 +0:The maximum resident set size (KB) = 708008 -Test 108 rap_control_dyn32_phy32 PASS +Test 110 rap_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hrrr_control_dyn32_phy32 -Checking test 109 hrrr_control_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hrrr_control_dyn32_phy32 +Checking test 111 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3660,48 +3660,48 @@ Checking test 109 hrrr_control_dyn32_phy32 results .... 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 = 209.381857 -0:The maximum resident set size (KB) = 706424 - -Test 109 hrrr_control_dyn32_phy32 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_2threads_dyn32_phy32 -Checking test 110 rap_2threads_dyn32_phy32 results .... + 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 = 202.195920 +0:The maximum resident set size (KB) = 707968 + +Test 111 hrrr_control_dyn32_phy32 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rap_2threads_dyn32_phy32 +Checking test 112 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3747,15 +3747,15 @@ Checking test 110 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 386.799841 -0:The maximum resident set size (KB) = 759676 +0:The total amount of wall time = 384.915491 +0:The maximum resident set size (KB) = 759788 -Test 110 rap_2threads_dyn32_phy32 PASS +Test 112 rap_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hrrr_control_2threads_dyn32_phy32 -Checking test 111 hrrr_control_2threads_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hrrr_control_2threads_dyn32_phy32 +Checking test 113 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3768,48 +3768,48 @@ Checking test 111 hrrr_control_2threads_dyn32_phy32 results .... 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 = 201.205524 -0:The maximum resident set size (KB) = 756484 - -Test 111 hrrr_control_2threads_dyn32_phy32 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hrrr_control_decomp_dyn32_phy32 -Checking test 112 hrrr_control_decomp_dyn32_phy32 results .... + 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 = 274.564757 +0:The maximum resident set size (KB) = 753348 + +Test 113 hrrr_control_2threads_dyn32_phy32 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hrrr_control_decomp_dyn32_phy32 +Checking test 114 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3822,48 +3822,48 @@ Checking test 112 hrrr_control_decomp_dyn32_phy32 results .... 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 = 218.799957 -0:The maximum resident set size (KB) = 704432 - -Test 112 hrrr_control_decomp_dyn32_phy32 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_restart_dyn32_phy32 -Checking test 113 rap_restart_dyn32_phy32 results .... + 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 = 212.351834 +0:The maximum resident set size (KB) = 705864 + +Test 114 hrrr_control_decomp_dyn32_phy32 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rap_restart_dyn32_phy32 +Checking test 115 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3901,61 +3901,29 @@ Checking test 113 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 296.595500 -0:The maximum resident set size (KB) = 544672 +0:The total amount of wall time = 297.465616 +0:The maximum resident set size (KB) = 545340 -Test 113 rap_restart_dyn32_phy32 PASS +Test 115 rap_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hrrr_control_restart_dyn32_phy32 -Checking test 114 hrrr_control_restart_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hrrr_control_restart_dyn32_phy32 +Checking test 116 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........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 = 107.270669 -0:The maximum resident set size (KB) = 537424 +0:The total amount of wall time = 103.509032 +0:The maximum resident set size (KB) = 536636 -Test 114 hrrr_control_restart_dyn32_phy32 PASS +Test 116 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_control_dyn64_phy32 -Checking test 115 rap_control_dyn64_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_dyn64_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rap_control_dyn64_phy32 +Checking test 117 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4001,82 +3969,82 @@ Checking test 115 rap_control_dyn64_phy32 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 = 274.048274 -0:The maximum resident set size (KB) = 730388 +0:The total amount of wall time = 273.628032 +0:The maximum resident set size (KB) = 730556 -Test 115 rap_control_dyn64_phy32 PASS +Test 117 rap_control_dyn64_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_control_debug_dyn32_phy32 -Checking test 116 rap_control_debug_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rap_control_debug_dyn32_phy32 +Checking test 118 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 287.017359 -0:The maximum resident set size (KB) = 872972 +0:The total amount of wall time = 282.128325 +0:The maximum resident set size (KB) = 872220 -Test 116 rap_control_debug_dyn32_phy32 PASS +Test 118 rap_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hrrr_control_debug_dyn32_phy32 -Checking test 117 hrrr_control_debug_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hrrr_control_debug_dyn32_phy32 +Checking test 119 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 283.245002 -0:The maximum resident set size (KB) = 871140 +0:The total amount of wall time = 275.179346 +0:The maximum resident set size (KB) = 870928 -Test 117 hrrr_control_debug_dyn32_phy32 PASS +Test 119 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/rap_control_dyn64_phy32_debug -Checking test 118 rap_control_dyn64_phy32_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_debug_dyn64_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rap_control_dyn64_phy32_debug +Checking test 120 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 289.687981 -0:The maximum resident set size (KB) = 890056 +0:The total amount of wall time = 285.197823 +0:The maximum resident set size (KB) = 893076 -Test 118 rap_control_dyn64_phy32_debug PASS +Test 120 rap_control_dyn64_phy32_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hafs_regional_atm -Checking test 119 hafs_regional_atm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hafs_regional_atm +Checking test 121 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -0:The total amount of wall time = 261.333436 -0:The maximum resident set size (KB) = 742668 +0:The total amount of wall time = 259.493244 +0:The maximum resident set size (KB) = 742816 -Test 119 hafs_regional_atm PASS +Test 121 hafs_regional_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hafs_regional_atm_thompson_gfdlsf -Checking test 120 hafs_regional_atm_thompson_gfdlsf results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hafs_regional_atm_thompson_gfdlsf +Checking test 122 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -0:The total amount of wall time = 294.815274 -0:The maximum resident set size (KB) = 1099664 +0:The total amount of wall time = 293.170057 +0:The maximum resident set size (KB) = 1098432 -Test 120 hafs_regional_atm_thompson_gfdlsf PASS +Test 122 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_ocn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hafs_regional_atm_ocn -Checking test 121 hafs_regional_atm_ocn results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_atm_ocn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hafs_regional_atm_ocn +Checking test 123 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4084,15 +4052,15 @@ Checking test 121 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 454.040584 -0:The maximum resident set size (KB) = 741072 +0:The total amount of wall time = 454.458371 +0:The maximum resident set size (KB) = 743464 -Test 121 hafs_regional_atm_ocn PASS +Test 123 hafs_regional_atm_ocn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_wav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hafs_regional_atm_wav -Checking test 122 hafs_regional_atm_wav results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_atm_wav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hafs_regional_atm_wav +Checking test 124 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing 20190829.060000.out_grd.ww3 .........OK @@ -4100,15 +4068,15 @@ Checking test 122 hafs_regional_atm_wav 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 = 1022.908737 -0:The maximum resident set size (KB) = 768840 +0:The total amount of wall time = 1045.810077 +0:The maximum resident set size (KB) = 772600 -Test 122 hafs_regional_atm_wav PASS +Test 124 hafs_regional_atm_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_ocn_wav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hafs_regional_atm_ocn_wav -Checking test 123 hafs_regional_atm_ocn_wav results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_atm_ocn_wav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hafs_regional_atm_ocn_wav +Checking test 125 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4118,29 +4086,29 @@ Checking test 123 hafs_regional_atm_ocn_wav 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 = 1108.879963 -0:The maximum resident set size (KB) = 792712 +0:The total amount of wall time = 1111.222502 +0:The maximum resident set size (KB) = 793424 -Test 123 hafs_regional_atm_ocn_wav PASS +Test 125 hafs_regional_atm_ocn_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hafs_regional_1nest_atm -Checking test 124 hafs_regional_1nest_atm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hafs_regional_1nest_atm +Checking test 126 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 377.178905 -0:The maximum resident set size (KB) = 300764 +0:The total amount of wall time = 378.622629 +0:The maximum resident set size (KB) = 301120 -Test 124 hafs_regional_1nest_atm PASS +Test 126 hafs_regional_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hafs_regional_telescopic_2nests_atm -Checking test 125 hafs_regional_telescopic_2nests_atm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hafs_regional_telescopic_2nests_atm +Checking test 127 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4148,29 +4116,29 @@ Checking test 125 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -0:The total amount of wall time = 418.540193 -0:The maximum resident set size (KB) = 320444 +0:The total amount of wall time = 416.035723 +0:The maximum resident set size (KB) = 320820 -Test 125 hafs_regional_telescopic_2nests_atm PASS +Test 127 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hafs_global_1nest_atm -Checking test 126 hafs_global_1nest_atm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_global_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hafs_global_1nest_atm +Checking test 128 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 172.018136 -0:The maximum resident set size (KB) = 213700 +0:The total amount of wall time = 171.550175 +0:The maximum resident set size (KB) = 214460 -Test 126 hafs_global_1nest_atm PASS +Test 128 hafs_global_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_multiple_4nests_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hafs_global_multiple_4nests_atm -Checking test 127 hafs_global_multiple_4nests_atm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_global_multiple_4nests_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hafs_global_multiple_4nests_atm +Checking test 129 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4187,15 +4155,15 @@ Checking test 127 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -0:The total amount of wall time = 484.704166 -0:The maximum resident set size (KB) = 302524 +0:The total amount of wall time = 479.916174 +0:The maximum resident set size (KB) = 303304 -Test 127 hafs_global_multiple_4nests_atm PASS +Test 129 hafs_global_multiple_4nests_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hafs_regional_specified_moving_1nest_atm -Checking test 128 hafs_regional_specified_moving_1nest_atm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hafs_regional_specified_moving_1nest_atm +Checking test 130 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4203,29 +4171,29 @@ Checking test 128 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -0:The total amount of wall time = 243.374540 -0:The maximum resident set size (KB) = 318936 +0:The total amount of wall time = 241.769804 +0:The maximum resident set size (KB) = 319100 -Test 128 hafs_regional_specified_moving_1nest_atm PASS +Test 130 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hafs_regional_storm_following_1nest_atm -Checking test 129 hafs_regional_storm_following_1nest_atm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hafs_regional_storm_following_1nest_atm +Checking test 131 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 227.031099 -0:The maximum resident set size (KB) = 317752 +0:The total amount of wall time = 229.445505 +0:The maximum resident set size (KB) = 318776 -Test 129 hafs_regional_storm_following_1nest_atm PASS +Test 131 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hafs_regional_storm_following_1nest_atm_ocn -Checking test 130 hafs_regional_storm_following_1nest_atm_ocn results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hafs_regional_storm_following_1nest_atm_ocn +Checking test 132 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4233,43 +4201,43 @@ Checking test 130 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -0:The total amount of wall time = 282.631944 -0:The maximum resident set size (KB) = 375972 +0:The total amount of wall time = 281.890180 +0:The maximum resident set size (KB) = 375404 -Test 130 hafs_regional_storm_following_1nest_atm_ocn PASS +Test 132 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_storm_following_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hafs_global_storm_following_1nest_atm -Checking test 131 hafs_global_storm_following_1nest_atm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_global_storm_following_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hafs_global_storm_following_1nest_atm +Checking test 133 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 66.853354 -0:The maximum resident set size (KB) = 234016 +0:The total amount of wall time = 66.496798 +0:The maximum resident set size (KB) = 233716 -Test 131 hafs_global_storm_following_1nest_atm PASS +Test 133 hafs_global_storm_following_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hafs_regional_storm_following_1nest_atm_ocn_debug -Checking test 132 hafs_regional_storm_following_1nest_atm_ocn_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hafs_regional_storm_following_1nest_atm_ocn_debug +Checking test 134 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 768.075635 -0:The maximum resident set size (KB) = 402732 +0:The total amount of wall time = 764.056021 +0:The maximum resident set size (KB) = 401668 -Test 132 hafs_regional_storm_following_1nest_atm_ocn_debug PASS +Test 134 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hafs_regional_storm_following_1nest_atm_ocn_wav -Checking test 133 hafs_regional_storm_following_1nest_atm_ocn_wav results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4279,162 +4247,162 @@ Checking test 133 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -0:The total amount of wall time = 723.795493 -0:The maximum resident set size (KB) = 426604 +0:The total amount of wall time = 726.646921 +0:The maximum resident set size (KB) = 427572 -Test 133 hafs_regional_storm_following_1nest_atm_ocn_wav PASS +Test 135 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_docn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hafs_regional_docn -Checking test 134 hafs_regional_docn results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_docn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hafs_regional_docn +Checking test 136 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 389.591145 -0:The maximum resident set size (KB) = 755448 +0:The total amount of wall time = 390.016329 +0:The maximum resident set size (KB) = 756560 -Test 134 hafs_regional_docn PASS +Test 136 hafs_regional_docn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_docn_oisst -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hafs_regional_docn_oisst -Checking test 135 hafs_regional_docn_oisst results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_docn_oisst +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hafs_regional_docn_oisst +Checking test 137 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 394.331574 -0:The maximum resident set size (KB) = 735456 +0:The total amount of wall time = 383.875071 +0:The maximum resident set size (KB) = 736276 -Test 135 hafs_regional_docn_oisst PASS +Test 137 hafs_regional_docn_oisst PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_datm_cdeps -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/hafs_regional_datm_cdeps -Checking test 136 hafs_regional_datm_cdeps results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_datm_cdeps +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hafs_regional_datm_cdeps +Checking test 138 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -0:The total amount of wall time = 1268.985930 -0:The maximum resident set size (KB) = 887848 +0:The total amount of wall time = 1278.174986 +0:The maximum resident set size (KB) = 887836 -Test 136 hafs_regional_datm_cdeps PASS +Test 138 hafs_regional_datm_cdeps PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/datm_cdeps_control_cfsr -Checking test 137 datm_cdeps_control_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/datm_cdeps_control_cfsr +Checking test 139 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 166.872791 -0:The maximum resident set size (KB) = 727772 +0:The total amount of wall time = 167.988598 +0:The maximum resident set size (KB) = 727976 -Test 137 datm_cdeps_control_cfsr PASS +Test 139 datm_cdeps_control_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/datm_cdeps_restart_cfsr -Checking test 138 datm_cdeps_restart_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/datm_cdeps_restart_cfsr +Checking test 140 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 99.624296 -0:The maximum resident set size (KB) = 704856 +0:The total amount of wall time = 101.299942 +0:The maximum resident set size (KB) = 704812 -Test 138 datm_cdeps_restart_cfsr PASS +Test 140 datm_cdeps_restart_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/datm_cdeps_control_gefs -Checking test 139 datm_cdeps_control_gefs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_control_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/datm_cdeps_control_gefs +Checking test 141 datm_cdeps_control_gefs 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 = 161.703123 -0:The maximum resident set size (KB) = 607440 +0:The total amount of wall time = 155.804191 +0:The maximum resident set size (KB) = 607488 -Test 139 datm_cdeps_control_gefs PASS +Test 141 datm_cdeps_control_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_iau_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/datm_cdeps_iau_gefs -Checking test 140 datm_cdeps_iau_gefs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_iau_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/datm_cdeps_iau_gefs +Checking test 142 datm_cdeps_iau_gefs 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 = 159.030606 -0:The maximum resident set size (KB) = 607468 +0:The total amount of wall time = 163.732550 +0:The maximum resident set size (KB) = 607436 -Test 140 datm_cdeps_iau_gefs PASS +Test 142 datm_cdeps_iau_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_stochy_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/datm_cdeps_stochy_gefs -Checking test 141 datm_cdeps_stochy_gefs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_stochy_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/datm_cdeps_stochy_gefs +Checking test 143 datm_cdeps_stochy_gefs 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 = 164.820867 -0:The maximum resident set size (KB) = 607456 +0:The total amount of wall time = 164.583837 +0:The maximum resident set size (KB) = 607492 -Test 141 datm_cdeps_stochy_gefs PASS +Test 143 datm_cdeps_stochy_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_ciceC_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/datm_cdeps_ciceC_cfsr -Checking test 142 datm_cdeps_ciceC_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_ciceC_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/datm_cdeps_ciceC_cfsr +Checking test 144 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.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.864883 -0:The maximum resident set size (KB) = 716680 +0:The total amount of wall time = 167.462734 +0:The maximum resident set size (KB) = 716676 -Test 142 datm_cdeps_ciceC_cfsr PASS +Test 144 datm_cdeps_ciceC_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_bulk_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/datm_cdeps_bulk_cfsr -Checking test 143 datm_cdeps_bulk_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_bulk_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/datm_cdeps_bulk_cfsr +Checking test 145 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 168.512628 -0:The maximum resident set size (KB) = 717176 +0:The total amount of wall time = 168.237363 +0:The maximum resident set size (KB) = 716704 -Test 143 datm_cdeps_bulk_cfsr PASS +Test 145 datm_cdeps_bulk_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_bulk_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/datm_cdeps_bulk_gefs -Checking test 144 datm_cdeps_bulk_gefs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_bulk_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/datm_cdeps_bulk_gefs +Checking test 146 datm_cdeps_bulk_gefs 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 = 161.004640 -0:The maximum resident set size (KB) = 607492 +0:The total amount of wall time = 160.403618 +0:The maximum resident set size (KB) = 607456 -Test 144 datm_cdeps_bulk_gefs PASS +Test 146 datm_cdeps_bulk_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_mx025_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/datm_cdeps_mx025_cfsr -Checking test 145 datm_cdeps_mx025_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_mx025_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/datm_cdeps_mx025_cfsr +Checking test 147 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4442,15 +4410,15 @@ Checking test 145 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 415.369157 -0:The maximum resident set size (KB) = 514264 +0:The total amount of wall time = 427.807135 +0:The maximum resident set size (KB) = 514356 -Test 145 datm_cdeps_mx025_cfsr PASS +Test 147 datm_cdeps_mx025_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_mx025_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/datm_cdeps_mx025_gefs -Checking test 146 datm_cdeps_mx025_gefs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_mx025_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/datm_cdeps_mx025_gefs +Checking test 148 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4458,78 +4426,78 @@ Checking test 146 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 416.438795 -0:The maximum resident set size (KB) = 494816 +0:The total amount of wall time = 415.046214 +0:The maximum resident set size (KB) = 494796 -Test 146 datm_cdeps_mx025_gefs PASS +Test 148 datm_cdeps_mx025_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/datm_cdeps_multiple_files_cfsr -Checking test 147 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/datm_cdeps_multiple_files_cfsr +Checking test 149 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 166.644257 -0:The maximum resident set size (KB) = 716720 +0:The total amount of wall time = 166.806932 +0:The maximum resident set size (KB) = 727832 -Test 147 datm_cdeps_multiple_files_cfsr PASS +Test 149 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/datm_cdeps_3072x1536_cfsr -Checking test 148 datm_cdeps_3072x1536_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/datm_cdeps_3072x1536_cfsr +Checking test 150 datm_cdeps_3072x1536_cfsr 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 = 255.611279 -0:The maximum resident set size (KB) = 1910064 +0:The total amount of wall time = 266.848176 +0:The maximum resident set size (KB) = 1940268 -Test 148 datm_cdeps_3072x1536_cfsr PASS +Test 150 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_gfs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/datm_cdeps_gfs -Checking test 149 datm_cdeps_gfs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_gfs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/datm_cdeps_gfs +Checking test 151 datm_cdeps_gfs 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 = 257.571916 -0:The maximum resident set size (KB) = 1941108 +0:The total amount of wall time = 256.226723 +0:The maximum resident set size (KB) = 1940260 -Test 149 datm_cdeps_gfs PASS +Test 151 datm_cdeps_gfs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_debug_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/datm_cdeps_debug_cfsr -Checking test 150 datm_cdeps_debug_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_debug_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/datm_cdeps_debug_cfsr +Checking test 152 datm_cdeps_debug_cfsr 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 = 369.353290 -0:The maximum resident set size (KB) = 700732 +0:The total amount of wall time = 369.686146 +0:The maximum resident set size (KB) = 700692 -Test 150 datm_cdeps_debug_cfsr PASS +Test 152 datm_cdeps_debug_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr_faster -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/datm_cdeps_control_cfsr_faster -Checking test 151 datm_cdeps_control_cfsr_faster results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_control_cfsr_faster +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/datm_cdeps_control_cfsr_faster +Checking test 153 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 166.831336 -0:The maximum resident set size (KB) = 716744 +0:The total amount of wall time = 167.310780 +0:The maximum resident set size (KB) = 727848 -Test 151 datm_cdeps_control_cfsr_faster PASS +Test 153 datm_cdeps_control_cfsr_faster PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/datm_cdeps_lnd_gswp3 -Checking test 152 datm_cdeps_lnd_gswp3 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_lnd_gswp3 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/datm_cdeps_lnd_gswp3 +Checking test 154 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4537,15 +4505,15 @@ Checking test 152 datm_cdeps_lnd_gswp3 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 = 10.709243 -0:The maximum resident set size (KB) = 208688 +0:The total amount of wall time = 10.845983 +0:The maximum resident set size (KB) = 210100 -Test 152 datm_cdeps_lnd_gswp3 PASS +Test 154 datm_cdeps_lnd_gswp3 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/datm_cdeps_lnd_gswp3_rst -Checking test 153 datm_cdeps_lnd_gswp3_rst results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_lnd_gswp3 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/datm_cdeps_lnd_gswp3_rst +Checking test 155 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4553,15 +4521,15 @@ Checking test 153 datm_cdeps_lnd_gswp3_rst 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 = 15.693225 -0:The maximum resident set size (KB) = 208248 +0:The total amount of wall time = 15.741011 +0:The maximum resident set size (KB) = 216400 -Test 153 datm_cdeps_lnd_gswp3_rst PASS +Test 155 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_atmlnd_sbs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_p8_atmlnd_sbs -Checking test 154 control_p8_atmlnd_sbs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8_atmlnd_sbs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_p8_atmlnd_sbs +Checking test 156 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -4645,15 +4613,15 @@ Checking test 154 control_p8_atmlnd_sbs 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 = 237.255222 -0:The maximum resident set size (KB) = 1462940 +0:The total amount of wall time = 234.260114 +0:The maximum resident set size (KB) = 1463200 -Test 154 control_p8_atmlnd_sbs PASS +Test 156 control_p8_atmlnd_sbs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/atmwav_control_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/atmwav_control_noaero_p8 -Checking test 155 atmwav_control_noaero_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/atmwav_control_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/atmwav_control_noaero_p8 +Checking test 157 atmwav_control_noaero_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -4695,15 +4663,15 @@ Checking test 155 atmwav_control_noaero_p8 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 = 101.540638 -0:The maximum resident set size (KB) = 1434376 +0:The total amount of wall time = 100.975854 +0:The maximum resident set size (KB) = 1434544 -Test 155 atmwav_control_noaero_p8 PASS +Test 157 atmwav_control_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/control_atmwav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/control_atmwav -Checking test 156 control_atmwav results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_atmwav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_atmwav +Checking test 158 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -4746,15 +4714,15 @@ Checking test 156 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -0:The total amount of wall time = 101.155118 -0:The maximum resident set size (KB) = 474472 +0:The total amount of wall time = 99.786197 +0:The maximum resident set size (KB) = 475444 -Test 156 control_atmwav PASS +Test 158 control_atmwav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/atmaero_control_p8 -Checking test 157 atmaero_control_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/atmaero_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/atmaero_control_p8 +Checking test 159 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4797,15 +4765,15 @@ Checking test 157 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 243.896824 -0:The maximum resident set size (KB) = 2704068 +0:The total amount of wall time = 252.227823 +0:The maximum resident set size (KB) = 2703964 -Test 157 atmaero_control_p8 PASS +Test 159 atmaero_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8_rad -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/atmaero_control_p8_rad -Checking test 158 atmaero_control_p8_rad results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/atmaero_control_p8_rad +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/atmaero_control_p8_rad +Checking test 160 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4848,15 +4816,15 @@ Checking test 158 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 307.088496 -0:The maximum resident set size (KB) = 2757996 +0:The total amount of wall time = 303.601197 +0:The maximum resident set size (KB) = 2758792 -Test 158 atmaero_control_p8_rad PASS +Test 160 atmaero_control_p8_rad PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8_rad_micro -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/atmaero_control_p8_rad_micro -Checking test 159 atmaero_control_p8_rad_micro results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/atmaero_control_p8_rad_micro +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/atmaero_control_p8_rad_micro +Checking test 161 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4899,15 +4867,15 @@ Checking test 159 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 311.157547 -0:The maximum resident set size (KB) = 2764584 +0:The total amount of wall time = 299.300384 +0:The maximum resident set size (KB) = 2765644 -Test 159 atmaero_control_p8_rad_micro PASS +Test 161 atmaero_control_p8_rad_micro PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/regional_atmaq -Checking test 160 regional_atmaq results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_atmaq +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/regional_atmaq +Checking test 162 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -4922,15 +4890,15 @@ Checking test 160 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -0:The total amount of wall time = 727.375377 -0:The maximum resident set size (KB) = 999612 +0:The total amount of wall time = 745.669904 +0:The maximum resident set size (KB) = 999632 -Test 160 regional_atmaq PASS +Test 162 regional_atmaq PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq_faster -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_7309/regional_atmaq_faster -Checking test 161 regional_atmaq_faster results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_atmaq_faster +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/regional_atmaq_faster +Checking test 163 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -4945,12 +4913,11 @@ Checking test 161 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -0:The total amount of wall time = 703.434730 -0:The maximum resident set size (KB) = 999268 - -Test 161 regional_atmaq_faster PASS +0:The total amount of wall time = 696.999379 +0:The maximum resident set size (KB) = 999404 +Test 163 regional_atmaq_faster PASS -REGRESSION TEST WAS SUCCESSFUL -Fri Apr 21 15:17:35 MDT 2023 -Elapsed time: 01h:54m:05s. Have a nice day! +REGRESSION TEST SUCCESSFUL +Tue Apr 25 10:35:04 MDT 2023 +Elapsed time: 01h:29m:12s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index a448ac5e452..8a083e6d318 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,21 +1,21 @@ -Fri Apr 21 20:03:16 UTC 2023 +Tue Apr 25 17:34:36 UTC 2023 Start Regression test -Compile 001 elapsed time 186 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 186 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 333 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 96 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 185 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 405 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 327 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 331 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 252 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 224 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 145 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 012 elapsed time 114 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/control_c48 +Compile 001 elapsed time 189 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 002 elapsed time 202 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 342 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 101 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 199 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 434 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 359 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 349 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 278 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 240 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 155 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 012 elapsed time 124 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/control_c48 Checking test 001 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -54,14 +54,14 @@ Checking test 001 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 685.754207 -0: The maximum resident set size (KB) = 707088 +0: The total amount of wall time = 685.156530 +0: The maximum resident set size (KB) = 705740 Test 001 control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/control_stochy +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/control_stochy Checking test 002 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -72,14 +72,14 @@ Checking test 002 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 645.658326 - 0: The maximum resident set size (KB) = 478852 + 0: The total amount of wall time = 658.160391 + 0: The maximum resident set size (KB) = 484236 Test 002 control_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/control_ras +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/control_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/control_ras Checking test 003 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -90,14 +90,14 @@ Checking test 003 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 827.448455 - 0: The maximum resident set size (KB) = 488764 + 0: The total amount of wall time = 809.562433 + 0: The maximum resident set size (KB) = 490012 Test 003 control_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/control_p8 Checking test 004 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -144,15 +144,20 @@ Checking test 004 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 883.943395 - 0: The maximum resident set size (KB) = 1233284 + 0: The total amount of wall time = 894.918791 + 0: The maximum resident set size (KB) = 1240588 Test 004 control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rap_control -Checking test 005 rap_control results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/control_flake +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/control_flake +Checking test 005 control_flake results .... + Comparing sfcf000.nc ............ALT CHECK......ERROR + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rap_control +Checking test 006 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -198,15 +203,15 @@ Checking test 005 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1461.481846 - 0: The maximum resident set size (KB) = 829732 + 0: The total amount of wall time = 1452.843644 + 0: The maximum resident set size (KB) = 832504 -Test 005 rap_control PASS +Test 006 rap_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rap_decomp -Checking test 006 rap_decomp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rap_decomp +Checking test 007 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -252,15 +257,15 @@ Checking test 006 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1420.600032 - 0: The maximum resident set size (KB) = 832296 + 0: The total amount of wall time = 1452.393206 + 0: The maximum resident set size (KB) = 828192 -Test 006 rap_decomp PASS +Test 007 rap_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rap_2threads -Checking test 007 rap_2threads results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rap_2threads +Checking test 008 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -306,15 +311,15 @@ Checking test 007 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1320.895143 - 0: The maximum resident set size (KB) = 900324 + 0: The total amount of wall time = 1344.649956 + 0: The maximum resident set size (KB) = 898784 -Test 007 rap_2threads PASS +Test 008 rap_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rap_restart -Checking test 008 rap_restart results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rap_restart +Checking test 009 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -352,15 +357,15 @@ Checking test 008 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 712.371835 - 0: The maximum resident set size (KB) = 550820 + 0: The total amount of wall time = 728.053853 + 0: The maximum resident set size (KB) = 535284 -Test 008 rap_restart PASS +Test 009 rap_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rap_sfcdiff -Checking test 009 rap_sfcdiff results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rap_sfcdiff +Checking test 010 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -406,15 +411,15 @@ Checking test 009 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1460.235117 - 0: The maximum resident set size (KB) = 831300 + 0: The total amount of wall time = 1456.389081 + 0: The maximum resident set size (KB) = 828880 -Test 009 rap_sfcdiff PASS +Test 010 rap_sfcdiff PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rap_sfcdiff_decomp -Checking test 010 rap_sfcdiff_decomp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rap_sfcdiff_decomp +Checking test 011 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -460,15 +465,15 @@ Checking test 010 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1450.169646 - 0: The maximum resident set size (KB) = 831856 + 0: The total amount of wall time = 1467.282201 + 0: The maximum resident set size (KB) = 828888 -Test 010 rap_sfcdiff_decomp PASS +Test 011 rap_sfcdiff_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rap_sfcdiff_restart -Checking test 011 rap_sfcdiff_restart results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rap_sfcdiff_restart +Checking test 012 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -506,15 +511,15 @@ Checking test 011 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1048.602920 - 0: The maximum resident set size (KB) = 550848 + 0: The total amount of wall time = 1081.510378 + 0: The maximum resident set size (KB) = 554944 -Test 011 rap_sfcdiff_restart PASS +Test 012 rap_sfcdiff_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/hrrr_control -Checking test 012 hrrr_control results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/hrrr_control +Checking test 013 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -527,48 +532,48 @@ Checking test 012 hrrr_control results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 1416.628887 - 0: The maximum resident set size (KB) = 826692 - -Test 012 hrrr_control PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/hrrr_control_2threads -Checking test 013 hrrr_control_2threads results .... + 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 = 1454.785342 + 0: The maximum resident set size (KB) = 828124 + +Test 013 hrrr_control PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/hrrr_control_2threads +Checking test 014 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -581,48 +586,48 @@ Checking test 013 hrrr_control_2threads results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 1298.646632 - 0: The maximum resident set size (KB) = 893940 - -Test 013 hrrr_control_2threads PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/hrrr_control_decomp -Checking test 014 hrrr_control_decomp results .... + 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 = 1503.975894 + 0: The maximum resident set size (KB) = 894520 + +Test 014 hrrr_control_2threads PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/hrrr_control_decomp +Checking test 015 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -635,94 +640,62 @@ Checking test 014 hrrr_control_decomp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 1407.631640 - 0: The maximum resident set size (KB) = 822928 - -Test 014 hrrr_control_decomp PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/hrrr_control_restart -Checking test 015 hrrr_control_restart results .... + 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 = 1432.846183 + 0: The maximum resident set size (KB) = 824296 + +Test 015 hrrr_control_decomp PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/hrrr_control_restart +Checking test 016 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1064.019766 - 0: The maximum resident set size (KB) = 551732 + 0: The total amount of wall time = 1062.431919 + 0: The maximum resident set size (KB) = 548812 -Test 015 hrrr_control_restart PASS +Test 016 hrrr_control_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rrfs_v1beta -Checking test 016 rrfs_v1beta results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rrfs_v1beta +Checking test 017 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -768,15 +741,15 @@ Checking test 016 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1473.555726 - 0: The maximum resident set size (KB) = 832336 + 0: The total amount of wall time = 1463.107031 + 0: The maximum resident set size (KB) = 821480 -Test 016 rrfs_v1beta PASS +Test 017 rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rrfs_smoke_conus13km_hrrr_warm -Checking test 017 rrfs_smoke_conus13km_hrrr_warm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rrfs_smoke_conus13km_hrrr_warm +Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -784,15 +757,15 @@ Checking test 017 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 789.215541 - 0: The maximum resident set size (KB) = 669488 + 0: The total amount of wall time = 783.849939 + 0: The maximum resident set size (KB) = 671872 -Test 017 rrfs_smoke_conus13km_hrrr_warm PASS +Test 018 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rrfs_smoke_conus13km_hrrr_warm_2threads -Checking test 018 rrfs_smoke_conus13km_hrrr_warm_2threads results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rrfs_smoke_conus13km_hrrr_warm_2threads +Checking test 019 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -800,15 +773,15 @@ Checking test 018 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 1024.336600 - 0: The maximum resident set size (KB) = 666648 + 0: The total amount of wall time = 1076.271708 + 0: The maximum resident set size (KB) = 669860 -Test 018 rrfs_smoke_conus13km_hrrr_warm_2threads PASS +Test 019 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rrfs_conus13km_hrrr_warm -Checking test 019 rrfs_conus13km_hrrr_warm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rrfs_conus13km_hrrr_warm +Checking test 020 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -816,15 +789,15 @@ Checking test 019 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 732.482214 - 0: The maximum resident set size (KB) = 644996 + 0: The total amount of wall time = 757.091492 + 0: The maximum resident set size (KB) = 648220 -Test 019 rrfs_conus13km_hrrr_warm PASS +Test 020 rrfs_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rrfs_smoke_conus13km_radar_tten_warm -Checking test 020 rrfs_smoke_conus13km_radar_tten_warm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rrfs_smoke_conus13km_radar_tten_warm +Checking test 021 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -832,235 +805,263 @@ Checking test 020 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 778.384203 - 0: The maximum resident set size (KB) = 670092 + 0: The total amount of wall time = 798.274666 + 0: The maximum resident set size (KB) = 675204 -Test 020 rrfs_smoke_conus13km_radar_tten_warm PASS +Test 021 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rrfs_conus13km_hrrr_warm_restart_mismatch -Checking test 021 rrfs_conus13km_hrrr_warm_restart_mismatch results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rrfs_conus13km_hrrr_warm_restart_mismatch +Checking test 022 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 406.540805 - 0: The maximum resident set size (KB) = 632324 + 0: The total amount of wall time = 418.052523 + 0: The maximum resident set size (KB) = 634972 -Test 021 rrfs_conus13km_hrrr_warm_restart_mismatch PASS +Test 022 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/control_diag_debug -Checking test 022 control_diag_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/control_diag_debug +Checking test 023 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 122.335229 - 0: The maximum resident set size (KB) = 526668 + 0: The total amount of wall time = 128.753604 + 0: The maximum resident set size (KB) = 528288 -Test 022 control_diag_debug PASS +Test 023 control_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/regional_debug -Checking test 023 regional_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/regional_debug +Checking test 024 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 615.470758 - 0: The maximum resident set size (KB) = 592296 + 0: The total amount of wall time = 656.602924 + 0: The maximum resident set size (KB) = 591856 + +Test 024 regional_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rap_control_debug +Checking test 025 rap_control_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 178.666019 + 0: The maximum resident set size (KB) = 842860 + +Test 025 rap_control_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/hrrr_control_debug +Checking test 026 hrrr_control_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 167.093889 + 0: The maximum resident set size (KB) = 841524 -Test 023 regional_debug PASS +Test 026 hrrr_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rap_control_debug -Checking test 024 rap_control_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rap_diag_debug +Checking test 027 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 172.474629 - 0: The maximum resident set size (KB) = 841140 + 0: The total amount of wall time = 214.947296 + 0: The maximum resident set size (KB) = 918936 -Test 024 rap_control_debug PASS +Test 027 rap_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/hrrr_control_debug -Checking test 025 hrrr_control_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 028 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 168.437426 - 0: The maximum resident set size (KB) = 835852 + 0: The total amount of wall time = 277.289831 + 0: The maximum resident set size (KB) = 833428 -Test 025 hrrr_control_debug PASS +Test 028 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rap_diag_debug -Checking test 026 rap_diag_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rap_progcld_thompson_debug +Checking test 029 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 210.682550 - 0: The maximum resident set size (KB) = 922624 + 0: The total amount of wall time = 172.739108 + 0: The maximum resident set size (KB) = 836188 -Test 026 rap_diag_debug PASS +Test 029 rap_progcld_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 027 rap_noah_sfcdiff_cires_ugwp_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rrfs_v1beta_debug +Checking test 030 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 269.877852 - 0: The maximum resident set size (KB) = 840996 + 0: The total amount of wall time = 177.106344 + 0: The maximum resident set size (KB) = 836944 -Test 027 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 030 rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rap_progcld_thompson_debug -Checking test 028 rap_progcld_thompson_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/control_ras_debug +Checking test 031 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 172.929537 - 0: The maximum resident set size (KB) = 841240 + 0: The total amount of wall time = 105.786286 + 0: The maximum resident set size (KB) = 481264 -Test 028 rap_progcld_thompson_debug PASS +Test 031 control_ras_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rrfs_v1beta_debug -Checking test 029 rrfs_v1beta_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/control_stochy_debug +Checking test 032 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 173.358292 - 0: The maximum resident set size (KB) = 834672 + 0: The total amount of wall time = 121.770821 + 0: The maximum resident set size (KB) = 469640 -Test 029 rrfs_v1beta_debug PASS +Test 032 control_stochy_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/control_ras_debug -Checking test 030 control_ras_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/control_debug_p8 +Checking test 033 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 102.810316 - 0: The maximum resident set size (KB) = 484560 + 0: The total amount of wall time = 121.138125 + 0: The maximum resident set size (KB) = 1225048 -Test 030 control_ras_debug PASS +Test 033 control_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/control_stochy_debug -Checking test 031 control_stochy_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rrfs_smoke_conus13km_hrrr_warm_debug +Checking test 034 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 117.450603 - 0: The maximum resident set size (KB) = 477252 + 0: The total amount of wall time = 615.177272 + 0: The maximum resident set size (KB) = 687344 -Test 031 control_stochy_debug PASS +Test 034 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/control_debug_p8 -Checking test 032 control_debug_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +Checking test 035 rrfs_smoke_conus13km_hrrr_warm_debug_2threads 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.623415 - 0: The maximum resident set size (KB) = 1226480 + 0: The total amount of wall time = 759.146448 + 0: The maximum resident set size (KB) = 681880 -Test 032 control_debug_p8 PASS +Test 035 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rrfs_smoke_conus13km_hrrr_warm_debug -Checking test 033 rrfs_smoke_conus13km_hrrr_warm_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rrfs_conus13km_hrrr_warm_debugs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rrfs_conus13km_hrrr_warm_debug +Checking test 036 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 624.358942 - 0: The maximum resident set size (KB) = 685308 + 0: The total amount of wall time = 567.952831 + 0: The maximum resident set size (KB) = 662196 -Test 033 rrfs_smoke_conus13km_hrrr_warm_debug PASS +Test 036 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rrfs_smoke_conus13km_hrrr_warm_debug_2threads -Checking test 034 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rap_flake_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rap_flake_debug +Checking test 037 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 742.594878 - 0: The maximum resident set size (KB) = 682036 + 0: The total amount of wall time = 178.155110 + 0: The maximum resident set size (KB) = 842000 -Test 034 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS +Test 037 rap_flake_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rrfs_conus13km_hrrr_warm_debug -Checking test 035 rrfs_conus13km_hrrr_warm_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rap_clm_lake_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rap_clm_lake_debug +Checking test 038 rap_clm_lake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 590.182539 - 0: The maximum resident set size (KB) = 658428 + 0: The total amount of wall time = 198.667015 + 0: The maximum resident set size (KB) = 845664 -Test 035 rrfs_conus13km_hrrr_warm_debug PASS +Test 038 rap_clm_lake_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/control_wam_debug -Checking test 036 control_wam_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/control_wam_debug +Checking test 039 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 183.796772 - 0: The maximum resident set size (KB) = 194908 + 0: The total amount of wall time = 187.096267 + 0: The maximum resident set size (KB) = 194848 -Test 036 control_wam_debug PASS +Test 039 control_wam_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rap_control_dyn32_phy32 -Checking test 037 rap_control_dyn32_phy32 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rap_control_dyn32_phy32 +Checking test 040 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -1106,15 +1107,15 @@ Checking test 037 rap_control_dyn32_phy32 results .... Comparing 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.594933 - 0: The maximum resident set size (KB) = 686188 + 0: The total amount of wall time = 1487.118979 + 0: The maximum resident set size (KB) = 686908 -Test 037 rap_control_dyn32_phy32 PASS +Test 040 rap_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/hrrr_control_dyn32_phy32 -Checking test 038 hrrr_control_dyn32_phy32 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/hrrr_control_dyn32_phy32 +Checking test 041 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -1127,48 +1128,48 @@ Checking test 038 hrrr_control_dyn32_phy32 results .... 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 = 751.083337 - 0: The maximum resident set size (KB) = 682424 - -Test 038 hrrr_control_dyn32_phy32 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rap_2threads_dyn32_phy32 -Checking test 039 rap_2threads_dyn32_phy32 results .... + 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 = 740.503240 + 0: The maximum resident set size (KB) = 680628 + +Test 041 hrrr_control_dyn32_phy32 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rap_2threads_dyn32_phy32 +Checking test 042 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -1214,15 +1215,15 @@ Checking test 039 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1375.653263 - 0: The maximum resident set size (KB) = 727304 + 0: The total amount of wall time = 1344.285233 + 0: The maximum resident set size (KB) = 735344 -Test 039 rap_2threads_dyn32_phy32 PASS +Test 042 rap_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/hrrr_control_2threads_dyn32_phy32 -Checking test 040 hrrr_control_2threads_dyn32_phy32 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/hrrr_control_2threads_dyn32_phy32 +Checking test 043 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -1235,48 +1236,48 @@ Checking test 040 hrrr_control_2threads_dyn32_phy32 results .... 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 = 670.354670 - 0: The maximum resident set size (KB) = 728912 - -Test 040 hrrr_control_2threads_dyn32_phy32 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/hrrr_control_decomp_dyn32_phy32 -Checking test 041 hrrr_control_decomp_dyn32_phy32 results .... + 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 = 776.035914 + 0: The maximum resident set size (KB) = 728100 + +Test 043 hrrr_control_2threads_dyn32_phy32 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/hrrr_control_decomp_dyn32_phy32 +Checking test 044 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -1289,48 +1290,48 @@ Checking test 041 hrrr_control_decomp_dyn32_phy32 results .... 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 = 742.760271 - 0: The maximum resident set size (KB) = 684568 - -Test 041 hrrr_control_decomp_dyn32_phy32 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rap_restart_dyn32_phy32 -Checking test 042 rap_restart_dyn32_phy32 results .... + 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 = 729.827151 + 0: The maximum resident set size (KB) = 691380 + +Test 044 hrrr_control_decomp_dyn32_phy32 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rap_restart_dyn32_phy32 +Checking test 045 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -1368,61 +1369,29 @@ Checking test 042 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1059.836923 - 0: The maximum resident set size (KB) = 511216 + 0: The total amount of wall time = 1101.583583 + 0: The maximum resident set size (KB) = 512732 -Test 042 rap_restart_dyn32_phy32 PASS +Test 045 rap_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/hrrr_control_restart_dyn32_phy32 -Checking test 043 hrrr_control_restart_dyn32_phy32 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/hrrr_control_restart_dyn32_phy32 +Checking test 046 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........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 = 361.944052 - 0: The maximum resident set size (KB) = 512796 + 0: The total amount of wall time = 358.215006 + 0: The maximum resident set size (KB) = 509752 -Test 043 hrrr_control_restart_dyn32_phy32 PASS +Test 046 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rap_control_dyn64_phy32 -Checking test 044 rap_control_dyn64_phy32 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rap_control_dyn64_phy32 +Checking test 047 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -1468,57 +1437,57 @@ Checking test 044 rap_control_dyn64_phy32 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 = 1083.345711 - 0: The maximum resident set size (KB) = 708152 + 0: The total amount of wall time = 1075.006151 + 0: The maximum resident set size (KB) = 708312 -Test 044 rap_control_dyn64_phy32 PASS +Test 047 rap_control_dyn64_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rap_control_debug_dyn32_phy32 -Checking test 045 rap_control_debug_dyn32_phy32 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rap_control_debug_dyn32_phy32 +Checking test 048 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 174.573852 - 0: The maximum resident set size (KB) = 703144 + 0: The total amount of wall time = 173.531699 + 0: The maximum resident set size (KB) = 695664 -Test 045 rap_control_debug_dyn32_phy32 PASS +Test 048 rap_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/hrrr_control_debug_dyn32_phy32 -Checking test 046 hrrr_control_debug_dyn32_phy32 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/hrrr_control_debug_dyn32_phy32 +Checking test 049 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 172.216297 - 0: The maximum resident set size (KB) = 701488 + 0: The total amount of wall time = 171.532601 + 0: The maximum resident set size (KB) = 703072 -Test 046 hrrr_control_debug_dyn32_phy32 PASS +Test 049 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/rap_control_dyn64_phy32_debug -Checking test 047 rap_control_dyn64_phy32_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rap_control_debug_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rap_control_dyn64_phy32_debug +Checking test 050 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 204.191701 - 0: The maximum resident set size (KB) = 720396 + 0: The total amount of wall time = 206.398304 + 0: The maximum resident set size (KB) = 716296 -Test 047 rap_control_dyn64_phy32_debug PASS +Test 050 rap_control_dyn64_phy32_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/cpld_control_p8 -Checking test 048 cpld_control_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/cpld_control_p8 +Checking test 051 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1582,15 +1551,15 @@ Checking test 048 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1679.149683 - 0: The maximum resident set size (KB) = 1428860 + 0: The total amount of wall time = 1679.804702 + 0: The maximum resident set size (KB) = 1433244 -Test 048 cpld_control_p8 PASS Tries: 2 +Test 051 cpld_control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/cpld_control_nowave_noaero_p8 -Checking test 049 cpld_control_nowave_noaero_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/cpld_control_c96_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/cpld_control_nowave_noaero_p8 +Checking test 052 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1651,15 +1620,15 @@ Checking test 049 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 1221.029659 - 0: The maximum resident set size (KB) = 1331116 + 0: The total amount of wall time = 1218.244104 + 0: The maximum resident set size (KB) = 1331088 -Test 049 cpld_control_nowave_noaero_p8 PASS +Test 052 cpld_control_nowave_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/cpld_debug_p8 -Checking test 050 cpld_debug_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/cpld_debug_p8 +Checking test 053 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -1711,25 +1680,53 @@ Checking test 050 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 806.567312 - 0: The maximum resident set size (KB) = 1436080 + 0: The total amount of wall time = 850.146856 + 0: The maximum resident set size (KB) = 1437136 -Test 050 cpld_debug_p8 PASS Tries: 2 +Test 053 cpld_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/GNU/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14118/datm_cdeps_control_cfsr -Checking test 051 datm_cdeps_control_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/datm_cdeps_control_cfsr +Checking test 054 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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.101565 - 0: The maximum resident set size (KB) = 664976 + 0: The total amount of wall time = 179.260979 + 0: The maximum resident set size (KB) = 669436 + +Test 054 datm_cdeps_control_cfsr PASS + +FAILED TESTS: +Test control_flake 005 failed in run_test failed + +REGRESSION TEST FAILED +Tue Apr 25 18:41:19 UTC 2023 +Elapsed time: 01h:06m:44s. Have a nice day! +Tue Apr 25 18:53:32 UTC 2023 +Start Regression test + +Compile 001 elapsed time 209 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/control_flake +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_64771/control_flake +Checking test 001 control_flake results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + + 0: The total amount of wall time = 1171.856518 + 0: The maximum resident set size (KB) = 511916 -Test 051 datm_cdeps_control_cfsr PASS +Test 001 control_flake PASS REGRESSION TEST WAS SUCCESSFUL -Sat Apr 22 01:34:56 UTC 2023 -Elapsed time: 05h:31m:41s. Have a nice day! +Tue Apr 25 19:24:09 UTC 2023 +Elapsed time: 00h:30m:38s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 09f4a6a2671..c174013c8a8 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,43 +1,43 @@ -Fri Apr 21 19:48:25 UTC 2023 +Tue Apr 25 22:13:17 UTC 2023 Start Regression test -Compile 001 elapsed time 603 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 625 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 573 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 219 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 193 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 516 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 505 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 693 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 534 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 496 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 011 elapsed time 477 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 428 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 595 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 221 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 154 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 460 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 455 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 184 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 159 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 563 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 213 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 656 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 572 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 024 elapsed time 177 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 103 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 179 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 52 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 481 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 558 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 581 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 480 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 468 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 033 elapsed time 178 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 034 elapsed time 533 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8_mixedmode -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_control_p8_mixedmode +Compile 001 elapsed time 644 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 645 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 639 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 262 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 211 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 583 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 568 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 792 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 596 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 010 elapsed time 542 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 534 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 481 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 616 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 227 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 015 elapsed time 168 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 506 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 506 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 176 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 169 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 568 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 217 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 674 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 589 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 024 elapsed time 180 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 106 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 181 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 61 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 524 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 566 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 600 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 527 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 503 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 033 elapsed time 175 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 034 elapsed time 583 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8_mixedmode +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -102,14 +102,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 313.845767 - 0: The maximum resident set size (KB) = 3129184 + 0: The total amount of wall time = 315.183618 + 0: The maximum resident set size (KB) = 3137576 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_gfsv17 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_control_gfsv17 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_gfsv17 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -173,14 +173,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 226.885053 - 0: The maximum resident set size (KB) = 1721264 + 0: The total amount of wall time = 229.451630 + 0: The maximum resident set size (KB) = 1704984 Test 002 cpld_control_gfsv17 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -245,14 +245,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 340.722766 - 0: The maximum resident set size (KB) = 3168428 + 0: The total amount of wall time = 345.592919 + 0: The maximum resident set size (KB) = 3178448 Test 003 cpld_control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_restart_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -305,14 +305,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 194.480249 - 0: The maximum resident set size (KB) = 3036384 + 0: The total amount of wall time = 198.057921 + 0: The maximum resident set size (KB) = 3038128 Test 004 cpld_restart_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_control_qr_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -377,14 +377,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 342.880460 - 0: The maximum resident set size (KB) = 3182432 + 0: The total amount of wall time = 354.255660 + 0: The maximum resident set size (KB) = 3171588 Test 005 cpld_control_qr_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_restart_qr_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -437,14 +437,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 196.493429 - 0: The maximum resident set size (KB) = 3059500 + 0: The total amount of wall time = 201.415772 + 0: The maximum resident set size (KB) = 3048104 Test 006 cpld_restart_qr_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_2threads_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -497,14 +497,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 351.206456 - 0: The maximum resident set size (KB) = 3508708 + 0: The total amount of wall time = 370.257514 + 0: The maximum resident set size (KB) = 3505532 Test 007 cpld_2threads_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_decomp_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -557,14 +557,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 352.210609 - 0: The maximum resident set size (KB) = 3154860 + 0: The total amount of wall time = 350.298672 + 0: The maximum resident set size (KB) = 3141668 Test 008 cpld_decomp_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_mpi_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -617,14 +617,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 286.531103 - 0: The maximum resident set size (KB) = 3014564 + 0: The total amount of wall time = 288.319734 + 0: The maximum resident set size (KB) = 2998240 Test 009 cpld_mpi_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_ciceC_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_control_ciceC_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_ciceC_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -689,14 +689,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 343.661918 - 0: The maximum resident set size (KB) = 3181744 + 0: The total amount of wall time = 348.116770 + 0: The maximum resident set size (KB) = 3154672 Test 010 cpld_control_ciceC_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_control_c192_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/cpld_control_c192_p8 Checking test 011 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -749,14 +749,14 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 582.103889 - 0: The maximum resident set size (KB) = 3246940 + 0: The total amount of wall time = 594.039399 + 0: The maximum resident set size (KB) = 3253488 Test 011 cpld_control_c192_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_restart_c192_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/cpld_restart_c192_p8 Checking test 012 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -809,14 +809,14 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 388.929073 - 0: The maximum resident set size (KB) = 3144876 + 0: The total amount of wall time = 383.620048 + 0: The maximum resident set size (KB) = 3142300 Test 012 cpld_restart_c192_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_bmark_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/cpld_bmark_p8 Checking test 013 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -864,14 +864,14 @@ Checking test 013 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 712.878992 - 0: The maximum resident set size (KB) = 4062416 + 0: The total amount of wall time = 735.294895 + 0: The maximum resident set size (KB) = 4009620 Test 013 cpld_bmark_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_restart_bmark_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/cpld_restart_bmark_p8 Checking test 014 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -919,14 +919,14 @@ Checking test 014 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 442.544723 - 0: The maximum resident set size (KB) = 3954656 + 0: The total amount of wall time = 458.308375 + 0: The maximum resident set size (KB) = 4010128 Test 014 cpld_restart_bmark_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_control_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/cpld_control_noaero_p8 Checking test 015 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -990,14 +990,14 @@ Checking test 015 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 263.828328 - 0: The maximum resident set size (KB) = 1710940 + 0: The total amount of wall time = 269.068385 + 0: The maximum resident set size (KB) = 1709312 Test 015 cpld_control_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_control_nowave_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_c96_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/cpld_control_nowave_noaero_p8 Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1059,14 +1059,14 @@ Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 264.079039 - 0: The maximum resident set size (KB) = 1762972 + 0: The total amount of wall time = 265.190367 + 0: The maximum resident set size (KB) = 1736904 Test 016 cpld_control_nowave_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/cpld_debug_p8 Checking test 017 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1119,14 +1119,14 @@ Checking test 017 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 520.635401 - 0: The maximum resident set size (KB) = 3229780 + 0: The total amount of wall time = 519.740757 + 0: The maximum resident set size (KB) = 3235040 Test 017 cpld_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_debug_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_debug_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_debug_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/cpld_debug_noaero_p8 Checking test 018 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1178,14 +1178,14 @@ Checking test 018 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 356.385664 - 0: The maximum resident set size (KB) = 1733072 + 0: The total amount of wall time = 368.088314 + 0: The maximum resident set size (KB) = 1728088 Test 018 cpld_debug_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_noaero_p8_agrid -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_control_noaero_p8_agrid +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_noaero_p8_agrid +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/cpld_control_noaero_p8_agrid Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1247,14 +1247,14 @@ Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 275.161546 - 0: The maximum resident set size (KB) = 1716768 + 0: The total amount of wall time = 275.996213 + 0: The maximum resident set size (KB) = 1749016 Test 019 cpld_control_noaero_p8_agrid PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_control_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_c48 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/cpld_control_c48 Checking test 020 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1304,14 +1304,14 @@ Checking test 020 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 576.795053 - 0: The maximum resident set size (KB) = 2796864 + 0: The total amount of wall time = 587.375773 + 0: The maximum resident set size (KB) = 2800592 Test 020 cpld_control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_warmstart_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_warmstart_c48 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/cpld_warmstart_c48 Checking test 021 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1361,14 +1361,14 @@ Checking test 021 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 154.939661 - 0: The maximum resident set size (KB) = 2803208 + 0: The total amount of wall time = 154.960683 + 0: The maximum resident set size (KB) = 2795980 Test 021 cpld_warmstart_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_restart_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_warmstart_c48 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/cpld_restart_c48 Checking test 022 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1418,14 +1418,14 @@ Checking test 022 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 80.324876 - 0: The maximum resident set size (KB) = 2228680 + 0: The total amount of wall time = 80.520531 + 0: The maximum resident set size (KB) = 2243272 Test 022 cpld_restart_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/cpld_control_p8_faster +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8_faster +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/cpld_control_p8_faster Checking test 023 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1490,15 +1490,33 @@ Checking test 023 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 323.842588 - 0: The maximum resident set size (KB) = 3158164 + 0: The total amount of wall time = 324.037872 + 0: The maximum resident set size (KB) = 3169136 Test 023 cpld_control_p8_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_CubedSphereGrid -Checking test 024 control_CubedSphereGrid results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_flake +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_flake +Checking test 024 control_flake results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + + 0: The total amount of wall time = 189.314313 + 0: The maximum resident set size (KB) = 684680 + +Test 024 control_flake PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_CubedSphereGrid +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_CubedSphereGrid +Checking test 025 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1524,29 +1542,29 @@ Checking test 024 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 131.680836 - 0: The maximum resident set size (KB) = 626232 + 0: The total amount of wall time = 131.640550 + 0: The maximum resident set size (KB) = 626472 -Test 024 control_CubedSphereGrid PASS +Test 025 control_CubedSphereGrid PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_CubedSphereGrid_parallel -Checking test 025 control_CubedSphereGrid_parallel results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_CubedSphereGrid_parallel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_CubedSphereGrid_parallel +Checking test 026 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc .........OK + Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing atmf024.nc .........OK - 0: The total amount of wall time = 128.308982 - 0: The maximum resident set size (KB) = 623452 + 0: The total amount of wall time = 129.864225 + 0: The maximum resident set size (KB) = 628036 -Test 025 control_CubedSphereGrid_parallel PASS +Test 026 control_CubedSphereGrid_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_latlon -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_latlon -Checking test 026 control_latlon results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_latlon +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_latlon +Checking test 027 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1556,15 +1574,15 @@ Checking test 026 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.753068 - 0: The maximum resident set size (KB) = 628812 + 0: The total amount of wall time = 136.450335 + 0: The maximum resident set size (KB) = 626432 -Test 026 control_latlon PASS +Test 027 control_latlon PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wrtGauss_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_wrtGauss_netcdf_parallel -Checking test 027 control_wrtGauss_netcdf_parallel results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_wrtGauss_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_wrtGauss_netcdf_parallel +Checking test 028 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1574,15 +1592,15 @@ Checking test 027 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.711069 - 0: The maximum resident set size (KB) = 628248 + 0: The total amount of wall time = 137.940196 + 0: The maximum resident set size (KB) = 626312 -Test 027 control_wrtGauss_netcdf_parallel PASS +Test 028 control_wrtGauss_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_c48 -Checking test 028 control_c48 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_c48 +Checking test 029 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1620,15 +1638,15 @@ Checking test 028 control_c48 results .... Comparing 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.811489 -0: The maximum resident set size (KB) = 822568 +0: The total amount of wall time = 368.168598 +0: The maximum resident set size (KB) = 808216 -Test 028 control_c48 PASS +Test 029 control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_c192 -Checking test 029 control_c192 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_c192 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_c192 +Checking test 030 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1638,15 +1656,15 @@ Checking test 029 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 526.251915 - 0: The maximum resident set size (KB) = 762728 + 0: The total amount of wall time = 526.120028 + 0: The maximum resident set size (KB) = 764116 -Test 029 control_c192 PASS +Test 030 control_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_c384 -Checking test 030 control_c384 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_c384 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_c384 +Checking test 031 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1656,15 +1674,15 @@ Checking test 030 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 525.803939 - 0: The maximum resident set size (KB) = 1260384 + 0: The total amount of wall time = 524.038564 + 0: The maximum resident set size (KB) = 1263656 -Test 030 control_c384 PASS +Test 031 control_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c384gdas -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_c384gdas -Checking test 031 control_c384gdas results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_c384gdas +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_c384gdas +Checking test 032 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -1706,15 +1724,15 @@ Checking test 031 control_c384gdas 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 = 458.959745 - 0: The maximum resident set size (KB) = 1371616 + 0: The total amount of wall time = 457.624122 + 0: The maximum resident set size (KB) = 1374068 -Test 031 control_c384gdas PASS +Test 032 control_c384gdas PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_stochy -Checking test 032 control_stochy results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_stochy +Checking test 033 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1724,29 +1742,29 @@ Checking test 032 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 87.834032 - 0: The maximum resident set size (KB) = 636592 + 0: The total amount of wall time = 91.590453 + 0: The maximum resident set size (KB) = 635544 -Test 032 control_stochy PASS +Test 033 control_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_stochy_restart -Checking test 033 control_stochy_restart results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_stochy_restart +Checking test 034 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 48.443286 - 0: The maximum resident set size (KB) = 489676 + 0: The total amount of wall time = 49.168516 + 0: The maximum resident set size (KB) = 480800 -Test 033 control_stochy_restart PASS +Test 034 control_stochy_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_lndp -Checking test 034 control_lndp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_lndp +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_lndp +Checking test 035 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1756,15 +1774,15 @@ Checking test 034 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 81.306858 - 0: The maximum resident set size (KB) = 630596 + 0: The total amount of wall time = 83.658803 + 0: The maximum resident set size (KB) = 631112 -Test 034 control_lndp PASS +Test 035 control_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_iovr4 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_iovr4 -Checking test 035 control_iovr4 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_iovr4 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_iovr4 +Checking test 036 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1778,15 +1796,15 @@ Checking test 035 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.631196 - 0: The maximum resident set size (KB) = 631996 + 0: The total amount of wall time = 140.226148 + 0: The maximum resident set size (KB) = 626396 -Test 035 control_iovr4 PASS +Test 036 control_iovr4 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_iovr5 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_iovr5 -Checking test 036 control_iovr5 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_iovr5 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_iovr5 +Checking test 037 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1800,15 +1818,15 @@ Checking test 036 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 137.055690 - 0: The maximum resident set size (KB) = 630856 + 0: The total amount of wall time = 136.225965 + 0: The maximum resident set size (KB) = 626276 -Test 036 control_iovr5 PASS +Test 037 control_iovr5 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_p8 -Checking test 037 control_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_p8 +Checking test 038 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1854,15 +1872,15 @@ Checking test 037 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 168.680255 - 0: The maximum resident set size (KB) = 1589520 + 0: The total amount of wall time = 170.837047 + 0: The maximum resident set size (KB) = 1591312 -Test 037 control_p8 PASS +Test 038 control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_restart_p8 -Checking test 038 control_restart_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_restart_p8 +Checking test 039 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1900,15 +1918,15 @@ Checking test 038 control_restart_p8 results .... Comparing 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.532858 - 0: The maximum resident set size (KB) = 861480 + 0: The total amount of wall time = 90.183683 + 0: The maximum resident set size (KB) = 865516 -Test 038 control_restart_p8 PASS +Test 039 control_restart_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_qr_p8 -Checking test 039 control_qr_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_qr_p8 +Checking test 040 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1954,15 +1972,15 @@ Checking test 039 control_qr_p8 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.719193 - 0: The maximum resident set size (KB) = 1597084 + 0: The total amount of wall time = 167.863620 + 0: The maximum resident set size (KB) = 1600688 -Test 039 control_qr_p8 PASS +Test 040 control_qr_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_restart_qr_p8 -Checking test 040 control_restart_qr_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_restart_qr_p8 +Checking test 041 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2000,15 +2018,15 @@ Checking test 040 control_restart_qr_p8 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.670313 - 0: The maximum resident set size (KB) = 855404 + 0: The total amount of wall time = 93.514471 + 0: The maximum resident set size (KB) = 862568 -Test 040 control_restart_qr_p8 PASS +Test 041 control_restart_qr_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_decomp_p8 -Checking test 041 control_decomp_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_decomp_p8 +Checking test 042 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2050,15 +2068,15 @@ Checking test 041 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 175.847306 - 0: The maximum resident set size (KB) = 1579652 + 0: The total amount of wall time = 176.426503 + 0: The maximum resident set size (KB) = 1582132 -Test 041 control_decomp_p8 PASS +Test 042 control_decomp_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_2threads_p8 -Checking test 042 control_2threads_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_2threads_p8 +Checking test 043 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2100,15 +2118,15 @@ Checking test 042 control_2threads_p8 results .... Comparing 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.543874 - 0: The maximum resident set size (KB) = 1674820 + 0: The total amount of wall time = 159.135755 + 0: The maximum resident set size (KB) = 1679788 -Test 042 control_2threads_p8 PASS +Test 043 control_2threads_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_p8_lndp -Checking test 043 control_p8_lndp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8_lndp +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_p8_lndp +Checking test 044 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2126,15 +2144,15 @@ Checking test 043 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 313.431372 - 0: The maximum resident set size (KB) = 1602056 + 0: The total amount of wall time = 318.228252 + 0: The maximum resident set size (KB) = 1599704 -Test 043 control_p8_lndp PASS +Test 044 control_p8_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_p8_rrtmgp -Checking test 044 control_p8_rrtmgp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_p8_rrtmgp +Checking test 045 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2180,15 +2198,15 @@ Checking test 044 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 224.841525 - 0: The maximum resident set size (KB) = 1667828 + 0: The total amount of wall time = 228.704093 + 0: The maximum resident set size (KB) = 1668524 -Test 044 control_p8_rrtmgp PASS +Test 045 control_p8_rrtmgp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_mynn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_p8_mynn -Checking test 045 control_p8_mynn results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8_mynn +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_p8_mynn +Checking test 046 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2234,15 +2252,15 @@ Checking test 045 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 173.090905 - 0: The maximum resident set size (KB) = 1586108 + 0: The total amount of wall time = 176.800060 + 0: The maximum resident set size (KB) = 1579352 -Test 045 control_p8_mynn PASS +Test 046 control_p8_mynn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/merra2_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/merra2_thompson -Checking test 046 merra2_thompson results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/merra2_thompson +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/merra2_thompson +Checking test 047 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2288,15 +2306,15 @@ Checking test 046 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 193.815663 - 0: The maximum resident set size (KB) = 1597328 + 0: The total amount of wall time = 191.359710 + 0: The maximum resident set size (KB) = 1605316 -Test 046 merra2_thompson PASS +Test 047 merra2_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/regional_control -Checking test 047 regional_control results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/regional_control +Checking test 048 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2306,29 +2324,29 @@ Checking test 047 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 296.130830 - 0: The maximum resident set size (KB) = 865512 + 0: The total amount of wall time = 299.052499 + 0: The maximum resident set size (KB) = 865112 -Test 047 regional_control PASS +Test 048 regional_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/regional_restart -Checking test 048 regional_restart results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/regional_restart +Checking test 049 regional_restart 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.026495 - 0: The maximum resident set size (KB) = 860736 + 0: The total amount of wall time = 154.386061 + 0: The maximum resident set size (KB) = 861340 -Test 048 regional_restart PASS +Test 049 regional_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/regional_control_qr -Checking test 049 regional_control_qr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/regional_control_qr +Checking test 050 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2338,29 +2356,29 @@ Checking test 049 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 295.435789 - 0: The maximum resident set size (KB) = 867424 + 0: The total amount of wall time = 298.932127 + 0: The maximum resident set size (KB) = 867804 -Test 049 regional_control_qr PASS +Test 050 regional_control_qr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/regional_restart_qr -Checking test 050 regional_restart_qr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/regional_restart_qr +Checking test 051 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 151.293518 - 0: The maximum resident set size (KB) = 863980 + 0: The total amount of wall time = 157.222442 + 0: The maximum resident set size (KB) = 859172 -Test 050 regional_restart_qr PASS +Test 051 regional_restart_qr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/regional_decomp -Checking test 051 regional_decomp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/regional_decomp +Checking test 052 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2370,15 +2388,15 @@ Checking test 051 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 312.853424 - 0: The maximum resident set size (KB) = 863532 + 0: The total amount of wall time = 316.292250 + 0: The maximum resident set size (KB) = 863720 -Test 051 regional_decomp PASS +Test 052 regional_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/regional_2threads -Checking test 052 regional_2threads results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/regional_2threads +Checking test 053 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2388,44 +2406,44 @@ Checking test 052 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 181.396503 - 0: The maximum resident set size (KB) = 847156 + 0: The total amount of wall time = 181.841676 + 0: The maximum resident set size (KB) = 841532 -Test 052 regional_2threads PASS +Test 053 regional_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_noquilt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/regional_noquilt -Checking test 053 regional_noquilt results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_noquilt +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/regional_noquilt +Checking test 054 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 317.418019 - 0: The maximum resident set size (KB) = 853672 + 0: The total amount of wall time = 327.831040 + 0: The maximum resident set size (KB) = 859448 -Test 053 regional_noquilt PASS +Test 054 regional_noquilt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/regional_netcdf_parallel -Checking test 054 regional_netcdf_parallel results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/regional_netcdf_parallel +Checking test 055 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 295.545573 - 0: The maximum resident set size (KB) = 862004 + 0: The total amount of wall time = 294.442566 + 0: The maximum resident set size (KB) = 864764 -Test 054 regional_netcdf_parallel PASS +Test 055 regional_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/regional_2dwrtdecomp -Checking test 055 regional_2dwrtdecomp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/regional_2dwrtdecomp +Checking test 056 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2435,15 +2453,15 @@ Checking test 055 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 297.919046 - 0: The maximum resident set size (KB) = 864244 + 0: The total amount of wall time = 300.282823 + 0: The maximum resident set size (KB) = 871140 -Test 055 regional_2dwrtdecomp PASS +Test 056 regional_2dwrtdecomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/fv3_regional_wofs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/regional_wofs -Checking test 056 regional_wofs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/fv3_regional_wofs +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/regional_wofs +Checking test 057 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2453,15 +2471,15 @@ Checking test 056 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 379.936380 - 0: The maximum resident set size (KB) = 625532 + 0: The total amount of wall time = 377.751497 + 0: The maximum resident set size (KB) = 627712 -Test 056 regional_wofs PASS +Test 057 regional_wofs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_control -Checking test 057 rap_control results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rap_control +Checking test 058 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2507,15 +2525,15 @@ Checking test 057 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 459.236767 - 0: The maximum resident set size (KB) = 1054504 + 0: The total amount of wall time = 462.708787 + 0: The maximum resident set size (KB) = 1052276 -Test 057 rap_control PASS +Test 058 rap_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_spp_sppt_shum_skeb -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/regional_spp_sppt_shum_skeb -Checking test 058 regional_spp_sppt_shum_skeb results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_spp_sppt_shum_skeb +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/regional_spp_sppt_shum_skeb +Checking test 059 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -2525,15 +2543,15 @@ Checking test 058 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 235.196168 - 0: The maximum resident set size (KB) = 1182864 + 0: The total amount of wall time = 235.447277 + 0: The maximum resident set size (KB) = 1180456 -Test 058 regional_spp_sppt_shum_skeb PASS +Test 059 regional_spp_sppt_shum_skeb PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_decomp -Checking test 059 rap_decomp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rap_decomp +Checking test 060 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2579,15 +2597,15 @@ Checking test 059 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 479.025563 - 0: The maximum resident set size (KB) = 999488 + 0: The total amount of wall time = 481.188620 + 0: The maximum resident set size (KB) = 1003160 -Test 059 rap_decomp PASS +Test 060 rap_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_2threads -Checking test 060 rap_2threads results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rap_2threads +Checking test 061 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2633,15 +2651,15 @@ Checking test 060 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 434.379803 - 0: The maximum resident set size (KB) = 1131304 + 0: The total amount of wall time = 434.336228 + 0: The maximum resident set size (KB) = 1126260 -Test 060 rap_2threads PASS +Test 061 rap_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_restart -Checking test 061 rap_restart results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rap_restart +Checking test 062 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2679,15 +2697,15 @@ Checking test 061 rap_restart results .... Comparing 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.648211 - 0: The maximum resident set size (KB) = 962296 + 0: The total amount of wall time = 236.071406 + 0: The maximum resident set size (KB) = 965340 -Test 061 rap_restart PASS +Test 062 rap_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_sfcdiff -Checking test 062 rap_sfcdiff results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rap_sfcdiff +Checking test 063 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2733,15 +2751,15 @@ Checking test 062 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 460.229518 - 0: The maximum resident set size (KB) = 1038372 + 0: The total amount of wall time = 462.363223 + 0: The maximum resident set size (KB) = 1054892 -Test 062 rap_sfcdiff PASS +Test 063 rap_sfcdiff PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_sfcdiff_decomp -Checking test 063 rap_sfcdiff_decomp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rap_sfcdiff_decomp +Checking test 064 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2787,15 +2805,15 @@ Checking test 063 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 482.165978 - 0: The maximum resident set size (KB) = 1000240 + 0: The total amount of wall time = 484.210346 + 0: The maximum resident set size (KB) = 987092 -Test 063 rap_sfcdiff_decomp PASS +Test 064 rap_sfcdiff_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_sfcdiff_restart -Checking test 064 rap_sfcdiff_restart results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rap_sfcdiff_restart +Checking test 065 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2833,15 +2851,15 @@ Checking test 064 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 341.473494 - 0: The maximum resident set size (KB) = 985732 + 0: The total amount of wall time = 341.491706 + 0: The maximum resident set size (KB) = 984580 -Test 064 rap_sfcdiff_restart PASS +Test 065 rap_sfcdiff_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hrrr_control -Checking test 065 hrrr_control results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hrrr_control +Checking test 066 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2854,48 +2872,48 @@ Checking test 065 hrrr_control results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 442.898679 - 0: The maximum resident set size (KB) = 1051840 - -Test 065 hrrr_control PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hrrr_control_decomp -Checking test 066 hrrr_control_decomp results .... + 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 = 432.130202 + 0: The maximum resident set size (KB) = 1051188 + +Test 066 hrrr_control PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hrrr_control_decomp +Checking test 067 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2908,48 +2926,48 @@ Checking test 066 hrrr_control_decomp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 465.947576 - 0: The maximum resident set size (KB) = 998636 - -Test 066 hrrr_control_decomp PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hrrr_control_2threads -Checking test 067 hrrr_control_2threads results .... + 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 = 448.726603 + 0: The maximum resident set size (KB) = 992580 + +Test 067 hrrr_control_decomp PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hrrr_control_2threads +Checking test 068 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2962,94 +2980,62 @@ Checking test 067 hrrr_control_2threads results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 418.819054 - 0: The maximum resident set size (KB) = 1138980 - -Test 067 hrrr_control_2threads PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hrrr_control_restart -Checking test 068 hrrr_control_restart results .... + 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 = 399.886318 + 0: The maximum resident set size (KB) = 1075320 + +Test 068 hrrr_control_2threads PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hrrr_control_restart +Checking test 069 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 329.386755 - 0: The maximum resident set size (KB) = 983252 + 0: The total amount of wall time = 318.569423 + 0: The maximum resident set size (KB) = 983352 -Test 068 hrrr_control_restart PASS +Test 069 hrrr_control_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rrfs_v1beta -Checking test 069 rrfs_v1beta results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rrfs_v1beta +Checking test 070 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3095,15 +3081,15 @@ Checking test 069 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 456.885537 - 0: The maximum resident set size (KB) = 1038784 + 0: The total amount of wall time = 460.259390 + 0: The maximum resident set size (KB) = 1055648 -Test 069 rrfs_v1beta PASS +Test 070 rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1nssl -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rrfs_v1nssl -Checking test 070 rrfs_v1nssl results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_v1nssl +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rrfs_v1nssl +Checking test 071 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3117,15 +3103,15 @@ Checking test 070 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 535.161206 - 0: The maximum resident set size (KB) = 690708 + 0: The total amount of wall time = 538.762571 + 0: The maximum resident set size (KB) = 693484 -Test 070 rrfs_v1nssl PASS +Test 071 rrfs_v1nssl PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rrfs_v1nssl_nohailnoccn -Checking test 071 rrfs_v1nssl_nohailnoccn results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rrfs_v1nssl_nohailnoccn +Checking test 072 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3139,15 +3125,15 @@ Checking test 071 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 523.267471 - 0: The maximum resident set size (KB) = 753488 + 0: The total amount of wall time = 524.564368 + 0: The maximum resident set size (KB) = 752904 -Test 071 rrfs_v1nssl_nohailnoccn PASS +Test 072 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rrfs_smoke_conus13km_hrrr_warm -Checking test 072 rrfs_smoke_conus13km_hrrr_warm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rrfs_smoke_conus13km_hrrr_warm +Checking test 073 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -3155,15 +3141,15 @@ Checking test 072 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 144.706119 - 0: The maximum resident set size (KB) = 1028268 + 0: The total amount of wall time = 149.825040 + 0: The maximum resident set size (KB) = 1024276 -Test 072 rrfs_smoke_conus13km_hrrr_warm PASS +Test 073 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rrfs_smoke_conus13km_hrrr_warm_2threads -Checking test 073 rrfs_smoke_conus13km_hrrr_warm_2threads results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rrfs_smoke_conus13km_hrrr_warm_2threads +Checking test 074 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -3171,15 +3157,15 @@ Checking test 073 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 88.963342 - 0: The maximum resident set size (KB) = 942660 + 0: The total amount of wall time = 92.187926 + 0: The maximum resident set size (KB) = 936676 -Test 073 rrfs_smoke_conus13km_hrrr_warm_2threads PASS +Test 074 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rrfs_conus13km_hrrr_warm -Checking test 074 rrfs_conus13km_hrrr_warm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rrfs_conus13km_hrrr_warm +Checking test 075 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -3187,15 +3173,15 @@ Checking test 074 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 128.305485 - 0: The maximum resident set size (KB) = 947144 + 0: The total amount of wall time = 131.780477 + 0: The maximum resident set size (KB) = 990572 -Test 074 rrfs_conus13km_hrrr_warm PASS +Test 075 rrfs_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rrfs_smoke_conus13km_radar_tten_warm -Checking test 075 rrfs_smoke_conus13km_radar_tten_warm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rrfs_smoke_conus13km_radar_tten_warm +Checking test 076 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -3203,27 +3189,27 @@ Checking test 075 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 147.053916 - 0: The maximum resident set size (KB) = 1037472 + 0: The total amount of wall time = 149.429404 + 0: The maximum resident set size (KB) = 1039356 -Test 075 rrfs_smoke_conus13km_radar_tten_warm PASS +Test 076 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rrfs_conus13km_hrrr_warm_restart_mismatch -Checking test 076 rrfs_conus13km_hrrr_warm_restart_mismatch results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rrfs_conus13km_hrrr_warm_restart_mismatch +Checking test 077 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 68.517204 - 0: The maximum resident set size (KB) = 929536 + 0: The total amount of wall time = 71.416792 + 0: The maximum resident set size (KB) = 969692 -Test 076 rrfs_conus13km_hrrr_warm_restart_mismatch PASS +Test 077 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmg -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_csawmg -Checking test 077 control_csawmg results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_csawmg +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_csawmg +Checking test 078 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3233,15 +3219,15 @@ Checking test 077 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 340.970335 - 0: The maximum resident set size (KB) = 724540 + 0: The total amount of wall time = 344.586889 + 0: The maximum resident set size (KB) = 723780 -Test 077 control_csawmg PASS +Test 078 control_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmgt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_csawmgt -Checking test 078 control_csawmgt results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_csawmgt +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_csawmgt +Checking test 079 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3251,15 +3237,15 @@ Checking test 078 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 337.681849 - 0: The maximum resident set size (KB) = 727608 + 0: The total amount of wall time = 340.288775 + 0: The maximum resident set size (KB) = 727876 -Test 078 control_csawmgt PASS +Test 079 control_csawmgt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_ras -Checking test 079 control_ras results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_ras +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_ras +Checking test 080 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3269,27 +3255,27 @@ Checking test 079 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 180.517807 - 0: The maximum resident set size (KB) = 722936 + 0: The total amount of wall time = 184.841316 + 0: The maximum resident set size (KB) = 724532 -Test 079 control_ras PASS +Test 080 control_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wam -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_wam -Checking test 080 control_wam results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_wam +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_wam +Checking test 081 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 111.141245 - 0: The maximum resident set size (KB) = 631808 + 0: The total amount of wall time = 113.241081 + 0: The maximum resident set size (KB) = 642320 -Test 080 control_wam PASS +Test 081 control_wam PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_p8_faster -Checking test 081 control_p8_faster results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8_faster +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_p8_faster +Checking test 082 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -3335,15 +3321,15 @@ Checking test 081 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 152.497659 - 0: The maximum resident set size (KB) = 1592824 + 0: The total amount of wall time = 154.680591 + 0: The maximum resident set size (KB) = 1594544 -Test 081 control_p8_faster PASS +Test 082 control_p8_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/regional_control_faster -Checking test 082 regional_control_faster results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control_faster +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/regional_control_faster +Checking test 083 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -3353,57 +3339,57 @@ Checking test 082 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 271.046891 - 0: The maximum resident set size (KB) = 872680 + 0: The total amount of wall time = 275.730386 + 0: The maximum resident set size (KB) = 866444 -Test 082 regional_control_faster PASS +Test 083 regional_control_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rrfs_smoke_conus13km_hrrr_warm_debug -Checking test 083 rrfs_smoke_conus13km_hrrr_warm_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rrfs_smoke_conus13km_hrrr_warm_debug +Checking test 084 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 830.878579 - 0: The maximum resident set size (KB) = 1019476 + 0: The total amount of wall time = 840.078425 + 0: The maximum resident set size (KB) = 1055204 -Test 083 rrfs_smoke_conus13km_hrrr_warm_debug PASS +Test 084 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rrfs_smoke_conus13km_hrrr_warm_debug_2threads -Checking test 084 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +Checking test 085 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 457.687845 - 0: The maximum resident set size (KB) = 966960 + 0: The total amount of wall time = 473.099800 + 0: The maximum resident set size (KB) = 975324 -Test 084 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS +Test 085 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rrfs_conus13km_hrrr_warm_debug -Checking test 085 rrfs_conus13km_hrrr_warm_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rrfs_conus13km_hrrr_warm_debug +Checking test 086 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 738.552028 - 0: The maximum resident set size (KB) = 957460 + 0: The total amount of wall time = 751.351361 + 0: The maximum resident set size (KB) = 1014392 -Test 085 rrfs_conus13km_hrrr_warm_debug PASS +Test 086 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_CubedSphereGrid_debug -Checking test 086 control_CubedSphereGrid_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_CubedSphereGrid_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_CubedSphereGrid_debug +Checking test 087 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3429,335 +3415,349 @@ Checking test 086 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 144.480896 - 0: The maximum resident set size (KB) = 788760 + 0: The total amount of wall time = 147.745344 + 0: The maximum resident set size (KB) = 791108 -Test 086 control_CubedSphereGrid_debug PASS +Test 087 control_CubedSphereGrid_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_wrtGauss_netcdf_parallel_debug -Checking test 087 control_wrtGauss_netcdf_parallel_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_wrtGauss_netcdf_parallel_debug +Checking test 088 control_wrtGauss_netcdf_parallel_debug results .... + Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK + Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 143.809119 - 0: The maximum resident set size (KB) = 790576 + 0: The total amount of wall time = 147.383087 + 0: The maximum resident set size (KB) = 787604 -Test 087 control_wrtGauss_netcdf_parallel_debug PASS +Test 088 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_stochy_debug -Checking test 088 control_stochy_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_stochy_debug +Checking test 089 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 167.012943 - 0: The maximum resident set size (KB) = 797780 + 0: The total amount of wall time = 166.129663 + 0: The maximum resident set size (KB) = 796512 -Test 088 control_stochy_debug PASS +Test 089 control_stochy_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_lndp_debug -Checking test 089 control_lndp_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_lndp_debug +Checking test 090 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 144.668339 - 0: The maximum resident set size (KB) = 793716 + 0: The total amount of wall time = 146.156263 + 0: The maximum resident set size (KB) = 793284 -Test 089 control_lndp_debug PASS +Test 090 control_lndp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmg_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_csawmg_debug -Checking test 090 control_csawmg_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_csawmg_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_csawmg_debug +Checking test 091 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 225.858928 - 0: The maximum resident set size (KB) = 843500 + 0: The total amount of wall time = 228.587433 + 0: The maximum resident set size (KB) = 840588 -Test 090 control_csawmg_debug PASS +Test 091 control_csawmg_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmgt_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_csawmgt_debug -Checking test 091 control_csawmgt_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_csawmgt_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_csawmgt_debug +Checking test 092 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 223.361157 - 0: The maximum resident set size (KB) = 838300 + 0: The total amount of wall time = 223.122845 + 0: The maximum resident set size (KB) = 834840 -Test 091 control_csawmgt_debug PASS +Test 092 control_csawmgt_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_ras_debug -Checking test 092 control_ras_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_ras_debug +Checking test 093 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 149.663483 - 0: The maximum resident set size (KB) = 802636 + 0: The total amount of wall time = 149.239354 + 0: The maximum resident set size (KB) = 800920 -Test 092 control_ras_debug PASS +Test 093 control_ras_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_diag_debug -Checking test 093 control_diag_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_diag_debug +Checking test 094 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 150.678206 - 0: The maximum resident set size (KB) = 850308 + 0: The total amount of wall time = 157.313716 + 0: The maximum resident set size (KB) = 852944 -Test 093 control_diag_debug PASS +Test 094 control_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_debug_p8 -Checking test 094 control_debug_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_debug_p8 +Checking test 095 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 166.583627 - 0: The maximum resident set size (KB) = 1615572 + 0: The total amount of wall time = 167.045297 + 0: The maximum resident set size (KB) = 1618560 -Test 094 control_debug_p8 PASS +Test 095 control_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/regional_debug -Checking test 095 regional_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/regional_debug +Checking test 096 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 995.547622 - 0: The maximum resident set size (KB) = 884460 + 0: The total amount of wall time = 996.761045 + 0: The maximum resident set size (KB) = 879080 -Test 095 regional_debug PASS +Test 096 regional_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_control_debug -Checking test 096 rap_control_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rap_control_debug +Checking test 097 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.754605 - 0: The maximum resident set size (KB) = 1174144 + 0: The total amount of wall time = 277.482534 + 0: The maximum resident set size (KB) = 1163116 -Test 096 rap_control_debug PASS +Test 097 rap_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hrrr_control_debug -Checking test 097 hrrr_control_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hrrr_control_debug +Checking test 098 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 269.753968 - 0: The maximum resident set size (KB) = 1164252 + 0: The total amount of wall time = 267.028086 + 0: The maximum resident set size (KB) = 1163324 -Test 097 hrrr_control_debug PASS +Test 098 hrrr_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_unified_drag_suite_debug -Checking test 098 rap_unified_drag_suite_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rap_unified_drag_suite_debug +Checking test 099 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.010235 - 0: The maximum resident set size (KB) = 1165596 + 0: The total amount of wall time = 275.637171 + 0: The maximum resident set size (KB) = 1166908 -Test 098 rap_unified_drag_suite_debug PASS +Test 099 rap_unified_drag_suite_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_diag_debug -Checking test 099 rap_diag_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rap_diag_debug +Checking test 100 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 285.852411 - 0: The maximum resident set size (KB) = 1251032 + 0: The total amount of wall time = 289.463384 + 0: The maximum resident set size (KB) = 1246024 -Test 099 rap_diag_debug PASS +Test 100 rap_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_cires_ugwp_debug -Checking test 100 rap_cires_ugwp_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rap_cires_ugwp_debug +Checking test 101 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.675809 - 0: The maximum resident set size (KB) = 1171972 + 0: The total amount of wall time = 281.308504 + 0: The maximum resident set size (KB) = 1163600 -Test 100 rap_cires_ugwp_debug PASS +Test 101 rap_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_unified_ugwp_debug -Checking test 101 rap_unified_ugwp_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rap_unified_ugwp_debug +Checking test 102 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.955627 - 0: The maximum resident set size (KB) = 1171204 + 0: The total amount of wall time = 275.916348 + 0: The maximum resident set size (KB) = 1164888 -Test 101 rap_unified_ugwp_debug PASS +Test 102 rap_unified_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_lndp_debug -Checking test 102 rap_lndp_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rap_lndp_debug +Checking test 103 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 272.619395 - 0: The maximum resident set size (KB) = 1171592 + 0: The total amount of wall time = 276.631823 + 0: The maximum resident set size (KB) = 1170544 -Test 102 rap_lndp_debug PASS +Test 103 rap_lndp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_flake_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_flake_debug -Checking test 103 rap_flake_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 271.007058 - 0: The maximum resident set size (KB) = 1166604 - -Test 103 rap_flake_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_progcld_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rap_progcld_thompson_debug Checking test 104 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 269.649000 - 0: The maximum resident set size (KB) = 1170824 + 0: The total amount of wall time = 276.828171 + 0: The maximum resident set size (KB) = 1163752 Test 104 rap_progcld_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_noah_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_noah_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_noah_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rap_noah_debug Checking test 105 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 267.892200 - 0: The maximum resident set size (KB) = 1165860 + 0: The total amount of wall time = 277.208216 + 0: The maximum resident set size (KB) = 1167268 Test 105 rap_noah_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_sfcdiff_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_sfcdiff_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rap_sfcdiff_debug Checking test 106 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 269.735326 - 0: The maximum resident set size (KB) = 1171156 + 0: The total amount of wall time = 272.646402 + 0: The maximum resident set size (KB) = 1166996 Test 106 rap_sfcdiff_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rap_noah_sfcdiff_cires_ugwp_debug Checking test 107 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 444.977429 - 0: The maximum resident set size (KB) = 1168224 + 0: The total amount of wall time = 447.682267 + 0: The maximum resident set size (KB) = 1164088 Test 107 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rrfs_v1beta_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rrfs_v1beta_debug Checking test 108 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 270.188909 - 0: The maximum resident set size (KB) = 1164980 + 0: The total amount of wall time = 271.611679 + 0: The maximum resident set size (KB) = 1155376 Test 108 rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_wam_debug -Checking test 109 control_wam_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_clm_lake_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rap_clm_lake_debug +Checking test 109 rap_clm_lake_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 334.996405 + 0: The maximum resident set size (KB) = 1171012 + +Test 109 rap_clm_lake_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_flake_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rap_flake_debug +Checking test 110 rap_flake_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 276.630306 + 0: The maximum resident set size (KB) = 1164480 + +Test 110 rap_flake_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_wam_debug +Checking test 111 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 271.030404 - 0: The maximum resident set size (KB) = 526028 + 0: The total amount of wall time = 279.416584 + 0: The maximum resident set size (KB) = 519984 -Test 109 control_wam_debug PASS +Test 111 control_wam_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/regional_spp_sppt_shum_skeb_dyn32_phy32 -Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 112 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -3767,15 +3767,15 @@ Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 216.406266 - 0: The maximum resident set size (KB) = 1073684 + 0: The total amount of wall time = 223.885694 + 0: The maximum resident set size (KB) = 1064456 -Test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS +Test 112 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_control_dyn32_phy32 -Checking test 111 rap_control_dyn32_phy32 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rap_control_dyn32_phy32 +Checking test 113 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3821,15 +3821,15 @@ Checking test 111 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 382.353700 - 0: The maximum resident set size (KB) = 1009100 + 0: The total amount of wall time = 386.579380 + 0: The maximum resident set size (KB) = 992264 -Test 111 rap_control_dyn32_phy32 PASS +Test 113 rap_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hrrr_control_dyn32_phy32 -Checking test 112 hrrr_control_dyn32_phy32 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hrrr_control_dyn32_phy32 +Checking test 114 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3842,48 +3842,48 @@ Checking test 112 hrrr_control_dyn32_phy32 results .... 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 = 197.950261 - 0: The maximum resident set size (KB) = 952884 - -Test 112 hrrr_control_dyn32_phy32 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_2threads_dyn32_phy32 -Checking test 113 rap_2threads_dyn32_phy32 results .... + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 193.240896 + 0: The maximum resident set size (KB) = 950040 + +Test 114 hrrr_control_dyn32_phy32 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rap_2threads_dyn32_phy32 +Checking test 115 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3929,15 +3929,15 @@ Checking test 113 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 363.650138 - 0: The maximum resident set size (KB) = 1025920 + 0: The total amount of wall time = 371.312069 + 0: The maximum resident set size (KB) = 1018388 -Test 113 rap_2threads_dyn32_phy32 PASS +Test 115 rap_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hrrr_control_2threads_dyn32_phy32 -Checking test 114 hrrr_control_2threads_dyn32_phy32 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hrrr_control_2threads_dyn32_phy32 +Checking test 116 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3950,48 +3950,48 @@ Checking test 114 hrrr_control_2threads_dyn32_phy32 results .... 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 = 186.947731 - 0: The maximum resident set size (KB) = 1004392 - -Test 114 hrrr_control_2threads_dyn32_phy32 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hrrr_control_decomp_dyn32_phy32 -Checking test 115 hrrr_control_decomp_dyn32_phy32 results .... + 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 = 176.885596 + 0: The maximum resident set size (KB) = 921740 + +Test 116 hrrr_control_2threads_dyn32_phy32 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hrrr_control_decomp_dyn32_phy32 +Checking test 117 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4004,48 +4004,48 @@ Checking test 115 hrrr_control_decomp_dyn32_phy32 results .... 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 = 208.407845 - 0: The maximum resident set size (KB) = 902816 - -Test 115 hrrr_control_decomp_dyn32_phy32 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_restart_dyn32_phy32 -Checking test 116 rap_restart_dyn32_phy32 results .... + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 201.785846 + 0: The maximum resident set size (KB) = 889692 + +Test 117 hrrr_control_decomp_dyn32_phy32 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rap_restart_dyn32_phy32 +Checking test 118 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -4083,61 +4083,29 @@ Checking test 116 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 283.072889 - 0: The maximum resident set size (KB) = 941076 + 0: The total amount of wall time = 285.311360 + 0: The maximum resident set size (KB) = 945132 -Test 116 rap_restart_dyn32_phy32 PASS +Test 118 rap_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hrrr_control_restart_dyn32_phy32 -Checking test 117 hrrr_control_restart_dyn32_phy32 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hrrr_control_restart_dyn32_phy32 +Checking test 119 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........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 = 102.184101 - 0: The maximum resident set size (KB) = 862812 + 0: The total amount of wall time = 100.088442 + 0: The maximum resident set size (KB) = 853832 -Test 117 hrrr_control_restart_dyn32_phy32 PASS +Test 119 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_control_dyn64_phy32 -Checking test 118 rap_control_dyn64_phy32 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rap_control_dyn64_phy32 +Checking test 120 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4183,82 +4151,82 @@ Checking test 118 rap_control_dyn64_phy32 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 = 244.578370 - 0: The maximum resident set size (KB) = 967532 + 0: The total amount of wall time = 249.277923 + 0: The maximum resident set size (KB) = 933172 -Test 118 rap_control_dyn64_phy32 PASS +Test 120 rap_control_dyn64_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_control_debug_dyn32_phy32 -Checking test 119 rap_control_debug_dyn32_phy32 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rap_control_debug_dyn32_phy32 +Checking test 121 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 266.501640 - 0: The maximum resident set size (KB) = 1053432 + 0: The total amount of wall time = 271.077134 + 0: The maximum resident set size (KB) = 1063140 -Test 119 rap_control_debug_dyn32_phy32 PASS +Test 121 rap_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hrrr_control_debug_dyn32_phy32 -Checking test 120 hrrr_control_debug_dyn32_phy32 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hrrr_control_debug_dyn32_phy32 +Checking test 122 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 263.109494 - 0: The maximum resident set size (KB) = 1052128 + 0: The total amount of wall time = 264.013748 + 0: The maximum resident set size (KB) = 1052988 -Test 120 hrrr_control_debug_dyn32_phy32 PASS +Test 122 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/rap_control_dyn64_phy32_debug -Checking test 121 rap_control_dyn64_phy32_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_debug_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rap_control_dyn64_phy32_debug +Checking test 123 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.013436 - 0: The maximum resident set size (KB) = 1096724 + 0: The total amount of wall time = 271.228853 + 0: The maximum resident set size (KB) = 1092776 -Test 121 rap_control_dyn64_phy32_debug PASS +Test 123 rap_control_dyn64_phy32_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hafs_regional_atm -Checking test 122 hafs_regional_atm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_atm +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hafs_regional_atm +Checking test 124 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 241.110790 - 0: The maximum resident set size (KB) = 1043160 + 0: The total amount of wall time = 239.581316 + 0: The maximum resident set size (KB) = 1044108 -Test 122 hafs_regional_atm PASS +Test 124 hafs_regional_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hafs_regional_atm_thompson_gfdlsf -Checking test 123 hafs_regional_atm_thompson_gfdlsf results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hafs_regional_atm_thompson_gfdlsf +Checking test 125 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 309.118887 - 0: The maximum resident set size (KB) = 1399648 + 0: The total amount of wall time = 353.702716 + 0: The maximum resident set size (KB) = 1400416 -Test 123 hafs_regional_atm_thompson_gfdlsf PASS +Test 125 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hafs_regional_atm_ocn -Checking test 124 hafs_regional_atm_ocn results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hafs_regional_atm_ocn +Checking test 126 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4266,15 +4234,15 @@ Checking test 124 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 391.374709 - 0: The maximum resident set size (KB) = 1221612 + 0: The total amount of wall time = 386.047452 + 0: The maximum resident set size (KB) = 1211768 -Test 124 hafs_regional_atm_ocn PASS +Test 126 hafs_regional_atm_ocn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hafs_regional_atm_wav -Checking test 125 hafs_regional_atm_wav results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_atm_wav +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hafs_regional_atm_wav +Checking test 127 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing 20190829.060000.out_grd.ww3 .........OK @@ -4282,15 +4250,15 @@ Checking test 125 hafs_regional_atm_wav 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 = 745.023783 - 0: The maximum resident set size (KB) = 1247500 + 0: The total amount of wall time = 742.583049 + 0: The maximum resident set size (KB) = 1247344 -Test 125 hafs_regional_atm_wav PASS +Test 127 hafs_regional_atm_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hafs_regional_atm_ocn_wav -Checking test 126 hafs_regional_atm_ocn_wav results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hafs_regional_atm_ocn_wav +Checking test 128 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4300,29 +4268,29 @@ Checking test 126 hafs_regional_atm_ocn_wav 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 = 841.290650 - 0: The maximum resident set size (KB) = 1259688 + 0: The total amount of wall time = 846.225602 + 0: The maximum resident set size (KB) = 1264956 -Test 126 hafs_regional_atm_ocn_wav PASS +Test 128 hafs_regional_atm_ocn_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hafs_regional_1nest_atm -Checking test 127 hafs_regional_1nest_atm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hafs_regional_1nest_atm +Checking test 129 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 318.079058 - 0: The maximum resident set size (KB) = 504332 + 0: The total amount of wall time = 322.933548 + 0: The maximum resident set size (KB) = 499412 -Test 127 hafs_regional_1nest_atm PASS +Test 129 hafs_regional_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hafs_regional_telescopic_2nests_atm -Checking test 128 hafs_regional_telescopic_2nests_atm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hafs_regional_telescopic_2nests_atm +Checking test 130 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4330,29 +4298,29 @@ Checking test 128 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 363.724567 - 0: The maximum resident set size (KB) = 513708 + 0: The total amount of wall time = 368.772058 + 0: The maximum resident set size (KB) = 511080 -Test 128 hafs_regional_telescopic_2nests_atm PASS +Test 130 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hafs_global_1nest_atm -Checking test 129 hafs_global_1nest_atm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_global_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hafs_global_1nest_atm +Checking test 131 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 148.081087 - 0: The maximum resident set size (KB) = 350400 + 0: The total amount of wall time = 147.881652 + 0: The maximum resident set size (KB) = 348084 -Test 129 hafs_global_1nest_atm PASS +Test 131 hafs_global_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_multiple_4nests_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hafs_global_multiple_4nests_atm -Checking test 130 hafs_global_multiple_4nests_atm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_global_multiple_4nests_atm +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hafs_global_multiple_4nests_atm +Checking test 132 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4369,15 +4337,15 @@ Checking test 130 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 411.217716 - 0: The maximum resident set size (KB) = 422552 + 0: The total amount of wall time = 415.990435 + 0: The maximum resident set size (KB) = 448332 -Test 130 hafs_global_multiple_4nests_atm PASS +Test 132 hafs_global_multiple_4nests_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hafs_regional_specified_moving_1nest_atm -Checking test 131 hafs_regional_specified_moving_1nest_atm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hafs_regional_specified_moving_1nest_atm +Checking test 133 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4385,29 +4353,29 @@ Checking test 131 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 201.418022 - 0: The maximum resident set size (KB) = 520736 + 0: The total amount of wall time = 206.222910 + 0: The maximum resident set size (KB) = 514636 -Test 131 hafs_regional_specified_moving_1nest_atm PASS +Test 133 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hafs_regional_storm_following_1nest_atm -Checking test 132 hafs_regional_storm_following_1nest_atm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hafs_regional_storm_following_1nest_atm +Checking test 134 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 189.602653 - 0: The maximum resident set size (KB) = 519200 + 0: The total amount of wall time = 193.692543 + 0: The maximum resident set size (KB) = 519644 -Test 132 hafs_regional_storm_following_1nest_atm PASS +Test 134 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hafs_regional_storm_following_1nest_atm_ocn -Checking test 133 hafs_regional_storm_following_1nest_atm_ocn results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hafs_regional_storm_following_1nest_atm_ocn +Checking test 135 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4415,43 +4383,43 @@ Checking test 133 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 222.832744 - 0: The maximum resident set size (KB) = 562000 + 0: The total amount of wall time = 224.827045 + 0: The maximum resident set size (KB) = 563056 -Test 133 hafs_regional_storm_following_1nest_atm_ocn PASS +Test 135 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hafs_global_storm_following_1nest_atm -Checking test 134 hafs_global_storm_following_1nest_atm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_global_storm_following_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hafs_global_storm_following_1nest_atm +Checking test 136 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 59.869879 - 0: The maximum resident set size (KB) = 368308 + 0: The total amount of wall time = 59.129524 + 0: The maximum resident set size (KB) = 371752 -Test 134 hafs_global_storm_following_1nest_atm PASS +Test 136 hafs_global_storm_following_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hafs_regional_storm_following_1nest_atm_ocn_debug -Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hafs_regional_storm_following_1nest_atm_ocn_debug +Checking test 137 hafs_regional_storm_following_1nest_atm_ocn_debug results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 722.447572 - 0: The maximum resident set size (KB) = 578176 + 0: The total amount of wall time = 716.877806 + 0: The maximum resident set size (KB) = 580056 -Test 135 hafs_regional_storm_following_1nest_atm_ocn_debug PASS +Test 137 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hafs_regional_storm_following_1nest_atm_ocn_wav -Checking test 136 hafs_regional_storm_following_1nest_atm_ocn_wav results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 138 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4461,162 +4429,162 @@ Checking test 136 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 483.535901 - 0: The maximum resident set size (KB) = 620020 + 0: The total amount of wall time = 481.579140 + 0: The maximum resident set size (KB) = 624228 -Test 136 hafs_regional_storm_following_1nest_atm_ocn_wav PASS +Test 138 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_docn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hafs_regional_docn -Checking test 137 hafs_regional_docn results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_docn +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hafs_regional_docn +Checking test 139 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 357.137667 - 0: The maximum resident set size (KB) = 1225568 + 0: The total amount of wall time = 356.774765 + 0: The maximum resident set size (KB) = 1230480 -Test 137 hafs_regional_docn PASS +Test 139 hafs_regional_docn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_docn_oisst -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hafs_regional_docn_oisst -Checking test 138 hafs_regional_docn_oisst results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_docn_oisst +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hafs_regional_docn_oisst +Checking test 140 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 356.823961 - 0: The maximum resident set size (KB) = 1212636 + 0: The total amount of wall time = 360.739062 + 0: The maximum resident set size (KB) = 1213380 -Test 138 hafs_regional_docn_oisst PASS +Test 140 hafs_regional_docn_oisst PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_datm_cdeps -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/hafs_regional_datm_cdeps -Checking test 139 hafs_regional_datm_cdeps results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_datm_cdeps +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hafs_regional_datm_cdeps +Checking test 141 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 954.011029 - 0: The maximum resident set size (KB) = 1041504 + 0: The total amount of wall time = 956.806767 + 0: The maximum resident set size (KB) = 1032756 -Test 139 hafs_regional_datm_cdeps PASS +Test 141 hafs_regional_datm_cdeps PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/datm_cdeps_control_cfsr -Checking test 140 datm_cdeps_control_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/datm_cdeps_control_cfsr +Checking test 142 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 152.245264 - 0: The maximum resident set size (KB) = 1070292 + 0: The total amount of wall time = 157.450695 + 0: The maximum resident set size (KB) = 1060548 -Test 140 datm_cdeps_control_cfsr PASS +Test 142 datm_cdeps_control_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/datm_cdeps_restart_cfsr -Checking test 141 datm_cdeps_restart_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/datm_cdeps_restart_cfsr +Checking test 143 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 91.113047 - 0: The maximum resident set size (KB) = 1010236 + 0: The total amount of wall time = 91.114685 + 0: The maximum resident set size (KB) = 1012928 -Test 141 datm_cdeps_restart_cfsr PASS +Test 143 datm_cdeps_restart_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/datm_cdeps_control_gefs -Checking test 142 datm_cdeps_control_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/datm_cdeps_control_gefs +Checking test 144 datm_cdeps_control_gefs 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.651808 - 0: The maximum resident set size (KB) = 961348 + 0: The total amount of wall time = 152.826055 + 0: The maximum resident set size (KB) = 955336 -Test 142 datm_cdeps_control_gefs PASS +Test 144 datm_cdeps_control_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_iau_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/datm_cdeps_iau_gefs -Checking test 143 datm_cdeps_iau_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_iau_gefs +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/datm_cdeps_iau_gefs +Checking test 145 datm_cdeps_iau_gefs 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 = 152.982446 - 0: The maximum resident set size (KB) = 959748 + 0: The total amount of wall time = 149.662893 + 0: The maximum resident set size (KB) = 967912 -Test 143 datm_cdeps_iau_gefs PASS +Test 145 datm_cdeps_iau_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_stochy_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/datm_cdeps_stochy_gefs -Checking test 144 datm_cdeps_stochy_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_stochy_gefs +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/datm_cdeps_stochy_gefs +Checking test 146 datm_cdeps_stochy_gefs 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 = 154.464637 - 0: The maximum resident set size (KB) = 960892 + 0: The total amount of wall time = 151.189126 + 0: The maximum resident set size (KB) = 968504 -Test 144 datm_cdeps_stochy_gefs PASS +Test 146 datm_cdeps_stochy_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_ciceC_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/datm_cdeps_ciceC_cfsr -Checking test 145 datm_cdeps_ciceC_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_ciceC_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/datm_cdeps_ciceC_cfsr +Checking test 147 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 153.435664 - 0: The maximum resident set size (KB) = 1067460 + 0: The total amount of wall time = 148.977896 + 0: The maximum resident set size (KB) = 1057728 -Test 145 datm_cdeps_ciceC_cfsr PASS +Test 147 datm_cdeps_ciceC_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/datm_cdeps_bulk_cfsr -Checking test 146 datm_cdeps_bulk_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/datm_cdeps_bulk_cfsr +Checking test 148 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 152.318899 - 0: The maximum resident set size (KB) = 1054336 + 0: The total amount of wall time = 151.728915 + 0: The maximum resident set size (KB) = 1051604 -Test 146 datm_cdeps_bulk_cfsr PASS +Test 148 datm_cdeps_bulk_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/datm_cdeps_bulk_gefs -Checking test 147 datm_cdeps_bulk_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/datm_cdeps_bulk_gefs +Checking test 149 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.977234 - 0: The maximum resident set size (KB) = 961736 + 0: The total amount of wall time = 150.705574 + 0: The maximum resident set size (KB) = 956164 -Test 147 datm_cdeps_bulk_gefs PASS +Test 149 datm_cdeps_bulk_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/datm_cdeps_mx025_cfsr -Checking test 148 datm_cdeps_mx025_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/datm_cdeps_mx025_cfsr +Checking test 150 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4624,15 +4592,15 @@ Checking test 148 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 419.501905 - 0: The maximum resident set size (KB) = 884920 + 0: The total amount of wall time = 416.348860 + 0: The maximum resident set size (KB) = 880104 -Test 148 datm_cdeps_mx025_cfsr PASS +Test 150 datm_cdeps_mx025_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/datm_cdeps_mx025_gefs -Checking test 149 datm_cdeps_mx025_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/datm_cdeps_mx025_gefs +Checking test 151 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4640,78 +4608,78 @@ Checking test 149 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 429.839144 - 0: The maximum resident set size (KB) = 936652 + 0: The total amount of wall time = 408.041583 + 0: The maximum resident set size (KB) = 922612 -Test 149 datm_cdeps_mx025_gefs PASS +Test 151 datm_cdeps_mx025_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/datm_cdeps_multiple_files_cfsr -Checking test 150 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/datm_cdeps_multiple_files_cfsr +Checking test 152 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 156.821041 - 0: The maximum resident set size (KB) = 1062268 + 0: The total amount of wall time = 158.920295 + 0: The maximum resident set size (KB) = 1057988 -Test 150 datm_cdeps_multiple_files_cfsr PASS +Test 152 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/datm_cdeps_3072x1536_cfsr -Checking test 151 datm_cdeps_3072x1536_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/datm_cdeps_3072x1536_cfsr +Checking test 153 datm_cdeps_3072x1536_cfsr 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 = 221.703392 - 0: The maximum resident set size (KB) = 2362296 + 0: The total amount of wall time = 221.072229 + 0: The maximum resident set size (KB) = 2367840 -Test 151 datm_cdeps_3072x1536_cfsr PASS +Test 153 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_gfs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/datm_cdeps_gfs -Checking test 152 datm_cdeps_gfs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_gfs +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/datm_cdeps_gfs +Checking test 154 datm_cdeps_gfs 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 = 222.344843 - 0: The maximum resident set size (KB) = 2360852 + 0: The total amount of wall time = 220.659313 + 0: The maximum resident set size (KB) = 2362488 -Test 152 datm_cdeps_gfs PASS +Test 154 datm_cdeps_gfs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/datm_cdeps_debug_cfsr -Checking test 153 datm_cdeps_debug_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/datm_cdeps_debug_cfsr +Checking test 155 datm_cdeps_debug_cfsr results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 356.256004 - 0: The maximum resident set size (KB) = 993768 + 0: The total amount of wall time = 359.627955 + 0: The maximum resident set size (KB) = 978520 -Test 153 datm_cdeps_debug_cfsr PASS +Test 155 datm_cdeps_debug_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/datm_cdeps_control_cfsr_faster -Checking test 154 datm_cdeps_control_cfsr_faster results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_control_cfsr_faster +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/datm_cdeps_control_cfsr_faster +Checking test 156 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 152.167901 - 0: The maximum resident set size (KB) = 1069080 + 0: The total amount of wall time = 153.739606 + 0: The maximum resident set size (KB) = 1060044 -Test 154 datm_cdeps_control_cfsr_faster PASS +Test 156 datm_cdeps_control_cfsr_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/datm_cdeps_lnd_gswp3 -Checking test 155 datm_cdeps_lnd_gswp3 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_lnd_gswp3 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/datm_cdeps_lnd_gswp3 +Checking test 157 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4719,15 +4687,15 @@ Checking test 155 datm_cdeps_lnd_gswp3 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 = 6.859700 - 0: The maximum resident set size (KB) = 265580 + 0: The total amount of wall time = 7.377264 + 0: The maximum resident set size (KB) = 263692 -Test 155 datm_cdeps_lnd_gswp3 PASS +Test 157 datm_cdeps_lnd_gswp3 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/datm_cdeps_lnd_gswp3_rst -Checking test 156 datm_cdeps_lnd_gswp3_rst results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_lnd_gswp3 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/datm_cdeps_lnd_gswp3_rst +Checking test 158 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4735,15 +4703,15 @@ Checking test 156 datm_cdeps_lnd_gswp3_rst 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.597385 - 0: The maximum resident set size (KB) = 265384 + 0: The total amount of wall time = 12.163117 + 0: The maximum resident set size (KB) = 254532 -Test 156 datm_cdeps_lnd_gswp3_rst PASS +Test 158 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_atmlnd_sbs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_p8_atmlnd_sbs -Checking test 157 control_p8_atmlnd_sbs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8_atmlnd_sbs +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_p8_atmlnd_sbs +Checking test 159 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -4827,15 +4795,15 @@ Checking test 157 control_p8_atmlnd_sbs 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 = 207.654375 - 0: The maximum resident set size (KB) = 1607796 + 0: The total amount of wall time = 209.003053 + 0: The maximum resident set size (KB) = 1604188 -Test 157 control_p8_atmlnd_sbs PASS +Test 159 control_p8_atmlnd_sbs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/atmwav_control_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/atmwav_control_noaero_p8 -Checking test 158 atmwav_control_noaero_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/atmwav_control_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/atmwav_control_noaero_p8 +Checking test 160 atmwav_control_noaero_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -4877,15 +4845,15 @@ Checking test 158 atmwav_control_noaero_p8 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.160044 - 0: The maximum resident set size (KB) = 1629748 + 0: The total amount of wall time = 98.677716 + 0: The maximum resident set size (KB) = 1627084 -Test 158 atmwav_control_noaero_p8 PASS +Test 160 atmwav_control_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_atmwav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/control_atmwav -Checking test 159 control_atmwav results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_atmwav +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_atmwav +Checking test 161 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -4928,15 +4896,15 @@ Checking test 159 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 86.575261 - 0: The maximum resident set size (KB) = 662320 + 0: The total amount of wall time = 88.452743 + 0: The maximum resident set size (KB) = 658800 -Test 159 control_atmwav PASS +Test 161 control_atmwav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/atmaero_control_p8 -Checking test 160 atmaero_control_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/atmaero_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/atmaero_control_p8 +Checking test 162 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4979,15 +4947,15 @@ Checking test 160 atmaero_control_p8 results .... Comparing 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.038896 - 0: The maximum resident set size (KB) = 2966456 + 0: The total amount of wall time = 235.341280 + 0: The maximum resident set size (KB) = 2958492 -Test 160 atmaero_control_p8 PASS +Test 162 atmaero_control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8_rad -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/atmaero_control_p8_rad -Checking test 161 atmaero_control_p8_rad results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/atmaero_control_p8_rad +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/atmaero_control_p8_rad +Checking test 163 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5030,15 +4998,15 @@ Checking test 161 atmaero_control_p8_rad results .... Comparing 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.920746 - 0: The maximum resident set size (KB) = 3049556 + 0: The total amount of wall time = 290.300735 + 0: The maximum resident set size (KB) = 3032992 -Test 161 atmaero_control_p8_rad PASS +Test 163 atmaero_control_p8_rad PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8_rad_micro -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/atmaero_control_p8_rad_micro -Checking test 162 atmaero_control_p8_rad_micro results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/atmaero_control_p8_rad_micro +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/atmaero_control_p8_rad_micro +Checking test 164 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5081,15 +5049,15 @@ Checking test 162 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 286.236572 - 0: The maximum resident set size (KB) = 3048420 + 0: The total amount of wall time = 291.012058 + 0: The maximum resident set size (KB) = 3047288 -Test 162 atmaero_control_p8_rad_micro PASS +Test 164 atmaero_control_p8_rad_micro PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/regional_atmaq -Checking test 163 regional_atmaq results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_atmaq +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/regional_atmaq +Checking test 165 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -5104,15 +5072,15 @@ Checking test 163 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 644.020082 - 0: The maximum resident set size (KB) = 1449276 + 0: The total amount of wall time = 648.282718 + 0: The maximum resident set size (KB) = 1471896 -Test 163 regional_atmaq PASS +Test 165 regional_atmaq PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/regional_atmaq_debug -Checking test 164 regional_atmaq_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_atmaq_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/regional_atmaq_debug +Checking test 166 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -5125,15 +5093,15 @@ Checking test 164 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1184.873163 - 0: The maximum resident set size (KB) = 1222468 + 0: The total amount of wall time = 1190.509924 + 0: The maximum resident set size (KB) = 1390732 -Test 164 regional_atmaq_debug PASS +Test 166 regional_atmaq_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25584/regional_atmaq_faster -Checking test 165 regional_atmaq_faster results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_atmaq_faster +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/regional_atmaq_faster +Checking test 167 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -5148,12 +5116,12 @@ Checking test 165 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 556.870228 - 0: The maximum resident set size (KB) = 1413828 + 0: The total amount of wall time = 568.949091 + 0: The maximum resident set size (KB) = 1392832 -Test 165 regional_atmaq_faster PASS +Test 167 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Sat Apr 22 01:30:42 UTC 2023 -Elapsed time: 05h:42m:18s. Have a nice day! +Wed Apr 26 01:59:43 UTC 2023 +Elapsed time: 03h:46m:26s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index 10e339b92a9..795f312ed51 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,44 +1,46 @@ -Fri Apr 21 19:23:58 UTC 2023 +Tue Apr 25 22:16:41 UTC 2023 Start Regression test -Compile 001 elapsed time 1992 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 002 elapsed time 2067 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 003 elapsed time 1863 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 004 elapsed time 336 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 280 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 1698 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 007 elapsed time 1664 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 008 elapsed time 3335 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 009 elapsed time 1751 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 010 elapsed time 1717 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 011 elapsed time 1664 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 012 elapsed time 1560 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 013 elapsed time 1983 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 014 elapsed time 279 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 234 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 1596 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 017 elapsed time 1618 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 018 elapsed time 244 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 210 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 1715 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 021 elapsed time 286 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 2119 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 023 elapsed time 1683 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 024 elapsed time 268 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 025 elapsed time 155 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 309 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 027 elapsed time 113 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 028 elapsed time 1735 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 029 elapsed time 1696 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 030 elapsed time 1705 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 031 elapsed time 1638 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 032 elapsed time 1662 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 033 elapsed time 256 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 034 elapsed time 1822 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8_mixedmode -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_control_p8_mixedmode -Checking test 001 cpld_control_p8_mixedmode results .... +Compile 001 elapsed time 2075 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 002 elapsed time 2003 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 003 elapsed time 1941 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 004 elapsed time 475 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 328 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 1839 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 007 elapsed time 1953 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 008 elapsed time 3515 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 009 elapsed time 1815 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 010 elapsed time 1765 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 011 elapsed time 1765 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 012 elapsed time 1589 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 013 elapsed time 2355 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 014 elapsed time 389 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 015 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 016 elapsed time 1722 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 017 elapsed time 1813 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 018 elapsed time 613 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 520 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 2472 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 021 elapsed time 282 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 2387 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 023 elapsed time 1645 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 024 elapsed time 455 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 025 elapsed time 202 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 607 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 027 elapsed time 499 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 028 elapsed time 2028 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 029 elapsed time 1777 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 030 elapsed time 1730 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 031 elapsed time 1862 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 032 elapsed time 1679 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 033 elapsed time 306 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 034 elapsed time 2000 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Test 001 cpld_control_p8_mixedmode FAIL + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_gfsv17 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/cpld_control_gfsv17 +Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -63,7 +65,6 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -102,15 +103,15 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 443.630985 - 0: The maximum resident set size (KB) = 1748088 + 0: The total amount of wall time = 541.779936 + 0: The maximum resident set size (KB) = 1613340 -Test 001 cpld_control_p8_mixedmode PASS +Test 002 cpld_control_gfsv17 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_gfsv17 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_control_gfsv17 -Checking test 002 cpld_control_gfsv17 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/cpld_control_p8 +Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -135,6 +136,7 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -173,27 +175,15 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 331.183592 - 0: The maximum resident set size (KB) = 1644520 + 0: The total amount of wall time = 834.536963 + 0: The maximum resident set size (KB) = 1795604 -Test 002 cpld_control_gfsv17 PASS +Test 003 cpld_control_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_control_p8 -Checking test 003 cpld_control_p8 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 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/cpld_restart_p8 +Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -245,15 +235,19 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 488.318913 - 0: The maximum resident set size (KB) = 1798424 + 0: The total amount of wall time = 797.912968 + 0: The maximum resident set size (KB) = 1491488 -Test 003 cpld_control_p8 PASS +Test 004 cpld_restart_p8 PASS +Test 005 cpld_control_qr_p8 FAIL -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_restart_p8 -Checking test 004 cpld_restart_p8 results .... +Test 007 cpld_2threads_p8 FAIL + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/cpld_decomp_p8 +Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -305,15 +299,19 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 291.252508 - 0: The maximum resident set size (KB) = 1484524 + 0: The total amount of wall time = 1769.613946 + 0: The maximum resident set size (KB) = 1771260 -Test 004 cpld_restart_p8 PASS +Test 008 cpld_decomp_p8 PASS Tries: 2 + +Test 009 cpld_mpi_p8 FAIL +Test 010 cpld_control_ciceC_p8 FAIL -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_control_qr_p8 -Checking test 005 cpld_control_qr_p8 results .... + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_noaero_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/cpld_control_noaero_p8 +Checking test 011 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -338,247 +336,6 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 491.324838 - 0: The maximum resident set size (KB) = 1796404 - -Test 005 cpld_control_qr_p8 PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_restart_qr_p8 -Checking test 006 cpld_restart_qr_p8 results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 284.363778 - 0: The maximum resident set size (KB) = 1501980 - -Test 006 cpld_restart_qr_p8 PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_2threads_p8 -Checking test 007 cpld_2threads_p8 results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 521.611812 - 0: The maximum resident set size (KB) = 2004188 - -Test 007 cpld_2threads_p8 PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_decomp_p8 -Checking test 008 cpld_decomp_p8 results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 492.194939 - 0: The maximum resident set size (KB) = 1766724 - -Test 008 cpld_decomp_p8 PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_mpi_p8 -Checking test 009 cpld_mpi_p8 results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -617,158 +374,15 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 424.448168 - 0: The maximum resident set size (KB) = 1750292 + 0: The total amount of wall time = 789.693138 + 0: The maximum resident set size (KB) = 1634816 -Test 009 cpld_mpi_p8 PASS +Test 011 cpld_control_noaero_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_ciceC_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_control_ciceC_p8 -Checking test 010 cpld_control_ciceC_p8 results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 494.573432 - 0: The maximum resident set size (KB) = 1808072 - -Test 010 cpld_control_ciceC_p8 PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_noaero_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_control_noaero_p8 -Checking test 011 cpld_control_noaero_p8 results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 368.322322 - 0: The maximum resident set size (KB) = 1620016 - -Test 011 cpld_control_noaero_p8 PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_control_nowave_noaero_p8 -Checking test 012 cpld_control_nowave_noaero_p8 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_c96_noaero_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/cpld_control_nowave_noaero_p8 +Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -829,14 +443,14 @@ Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 371.515692 - 0: The maximum resident set size (KB) = 1670540 + 0: The total amount of wall time = 555.211943 + 0: The maximum resident set size (KB) = 1677776 Test 012 cpld_control_nowave_noaero_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_debug_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_debug_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_debug_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/cpld_debug_p8 Checking test 013 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -889,14 +503,14 @@ Checking test 013 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 679.826066 - 0: The maximum resident set size (KB) = 1811208 + 0: The total amount of wall time = 705.338038 + 0: The maximum resident set size (KB) = 1816628 Test 013 cpld_debug_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_debug_noaero_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_debug_noaero_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_debug_noaero_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/cpld_debug_noaero_p8 Checking test 014 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -948,14 +562,14 @@ Checking test 014 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 474.215220 - 0: The maximum resident set size (KB) = 1633928 + 0: The total amount of wall time = 1139.657658 + 0: The maximum resident set size (KB) = 1650220 Test 014 cpld_debug_noaero_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_control_noaero_p8_agrid +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_noaero_p8_agrid +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/cpld_control_noaero_p8_agrid Checking test 015 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1017,14 +631,14 @@ Checking test 015 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 406.047024 - 0: The maximum resident set size (KB) = 1672424 + 0: The total amount of wall time = 1669.781823 + 0: The maximum resident set size (KB) = 1686996 Test 015 cpld_control_noaero_p8_agrid PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c48 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_control_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_c48 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/cpld_control_c48 Checking test 016 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1074,14 +688,14 @@ Checking test 016 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 798.535254 - 0: The maximum resident set size (KB) = 2766512 + 0: The total amount of wall time = 806.841778 + 0: The maximum resident set size (KB) = 2771108 Test 016 cpld_control_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_warmstart_c48 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_warmstart_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_warmstart_c48 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/cpld_warmstart_c48 Checking test 017 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1131,14 +745,14 @@ Checking test 017 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 222.475568 - 0: The maximum resident set size (KB) = 2767428 + 0: The total amount of wall time = 460.772598 + 0: The maximum resident set size (KB) = 2775968 Test 017 cpld_warmstart_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_warmstart_c48 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_restart_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_warmstart_c48 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/cpld_restart_c48 Checking test 018 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1188,14 +802,14 @@ Checking test 018 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 114.744559 - 0: The maximum resident set size (KB) = 2205308 + 0: The total amount of wall time = 228.536557 + 0: The maximum resident set size (KB) = 2196492 Test 018 cpld_restart_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8_faster -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/cpld_control_p8_faster +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8_faster +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/cpld_control_p8_faster Checking test 019 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1260,15 +874,33 @@ Checking test 019 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 480.888272 - 0: The maximum resident set size (KB) = 1777892 + 0: The total amount of wall time = 606.991522 + 0: The maximum resident set size (KB) = 1771036 + +Test 019 cpld_control_p8_faster PASS Tries: 2 + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_flake +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_flake +Checking test 020 control_flake results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + + 0: The total amount of wall time = 508.912055 + 0: The maximum resident set size (KB) = 620532 -Test 019 cpld_control_p8_faster PASS +Test 020 control_flake PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_CubedSphereGrid -Checking test 020 control_CubedSphereGrid results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_CubedSphereGrid +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_CubedSphereGrid +Checking test 021 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1294,29 +926,29 @@ Checking test 020 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 188.426509 - 0: The maximum resident set size (KB) = 571816 + 0: The total amount of wall time = 1051.291487 + 0: The maximum resident set size (KB) = 573628 -Test 020 control_CubedSphereGrid PASS +Test 021 control_CubedSphereGrid PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid_parallel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_CubedSphereGrid_parallel -Checking test 021 control_CubedSphereGrid_parallel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_CubedSphereGrid_parallel +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_CubedSphereGrid_parallel +Checking test 022 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 188.132647 - 0: The maximum resident set size (KB) = 574228 + 0: The total amount of wall time = 185.824620 + 0: The maximum resident set size (KB) = 568332 -Test 021 control_CubedSphereGrid_parallel PASS +Test 022 control_CubedSphereGrid_parallel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_latlon -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_latlon -Checking test 022 control_latlon results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_latlon +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_latlon +Checking test 023 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1326,16 +958,16 @@ Checking test 022 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 189.950633 - 0: The maximum resident set size (KB) = 573592 + 0: The total amount of wall time = 299.515628 + 0: The maximum resident set size (KB) = 573160 -Test 022 control_latlon PASS +Test 023 control_latlon PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_wrtGauss_netcdf_parallel -Checking test 023 control_wrtGauss_netcdf_parallel results .... - Comparing sfcf000.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_wrtGauss_netcdf_parallel +Checking test 024 control_wrtGauss_netcdf_parallel results .... + Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK @@ -1344,15 +976,15 @@ Checking test 023 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 196.680383 - 0: The maximum resident set size (KB) = 570252 + 0: The total amount of wall time = 194.425994 + 0: The maximum resident set size (KB) = 570604 -Test 023 control_wrtGauss_netcdf_parallel PASS +Test 024 control_wrtGauss_netcdf_parallel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c48 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_c48 -Checking test 024 control_c48 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_c48 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_c48 +Checking test 025 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1390,15 +1022,15 @@ Checking test 024 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 603.166283 -0: The maximum resident set size (KB) = 793988 +0: The total amount of wall time = 595.822612 +0: The maximum resident set size (KB) = 798756 -Test 024 control_c48 PASS +Test 025 control_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c192 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_c192 -Checking test 025 control_c192 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_c192 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_c192 +Checking test 026 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1408,15 +1040,15 @@ Checking test 025 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 743.418199 - 0: The maximum resident set size (KB) = 691972 + 0: The total amount of wall time = 1113.792880 + 0: The maximum resident set size (KB) = 694072 -Test 025 control_c192 PASS +Test 026 control_c192 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c384 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_c384 -Checking test 026 control_c384 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_c384 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_c384 +Checking test 027 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1426,65 +1058,17 @@ Checking test 026 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 958.148980 - 0: The maximum resident set size (KB) = 1059312 - -Test 026 control_c384 PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c384gdas -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_c384gdas -Checking test 027 control_c384gdas results .... - Comparing sfcf000.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf006.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF06 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF06 .........OK - Comparing RESTART/20210322.060000.coupler.res .........OK - Comparing RESTART/20210322.060000.fv_core.res.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK + 0: The total amount of wall time = 1515.419402 + 0: The maximum resident set size (KB) = 1076688 - 0: The total amount of wall time = 839.067430 - 0: The maximum resident set size (KB) = 1197748 +Test 027 control_c384 PASS -Test 027 control_c384gdas PASS +Test 028 control_c384gdas FAIL -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_stochy -Checking test 028 control_stochy results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_stochy +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_stochy +Checking test 029 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1494,29 +1078,29 @@ Checking test 028 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 134.646865 - 0: The maximum resident set size (KB) = 576192 + 0: The total amount of wall time = 245.063296 + 0: The maximum resident set size (KB) = 578296 -Test 028 control_stochy PASS +Test 029 control_stochy PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_stochy_restart -Checking test 029 control_stochy_restart results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_stochy +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_stochy_restart +Checking test 030 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 69.854432 - 0: The maximum resident set size (KB) = 392044 + 0: The total amount of wall time = 133.125810 + 0: The maximum resident set size (KB) = 390188 -Test 029 control_stochy_restart PASS +Test 030 control_stochy_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_lndp -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_lndp -Checking test 030 control_lndp results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_lndp +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_lndp +Checking test 031 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1526,15 +1110,15 @@ Checking test 030 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 119.688203 - 0: The maximum resident set size (KB) = 573868 + 0: The total amount of wall time = 205.580808 + 0: The maximum resident set size (KB) = 576512 -Test 030 control_lndp PASS +Test 031 control_lndp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_iovr4 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_iovr4 -Checking test 031 control_iovr4 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_iovr4 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_iovr4 +Checking test 032 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1548,15 +1132,15 @@ Checking test 031 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 198.595043 - 0: The maximum resident set size (KB) = 580532 + 0: The total amount of wall time = 239.223917 + 0: The maximum resident set size (KB) = 573032 -Test 031 control_iovr4 PASS +Test 032 control_iovr4 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_iovr5 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_iovr5 -Checking test 032 control_iovr5 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_iovr5 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_iovr5 +Checking test 033 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1570,15 +1154,15 @@ Checking test 032 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 194.721438 - 0: The maximum resident set size (KB) = 571220 + 0: The total amount of wall time = 339.643847 + 0: The maximum resident set size (KB) = 570596 -Test 032 control_iovr5 PASS +Test 033 control_iovr5 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_p8 -Checking test 033 control_p8 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_p8 +Checking test 034 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1624,15 +1208,15 @@ Checking test 033 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 240.650993 - 0: The maximum resident set size (KB) = 1546696 + 0: The total amount of wall time = 317.048375 + 0: The maximum resident set size (KB) = 1532832 -Test 033 control_p8 PASS +Test 034 control_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_restart_p8 -Checking test 034 control_restart_p8 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_restart_p8 +Checking test 035 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1670,15 +1254,15 @@ Checking test 034 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 126.378364 - 0: The maximum resident set size (KB) = 775728 + 0: The total amount of wall time = 151.038303 + 0: The maximum resident set size (KB) = 774840 -Test 034 control_restart_p8 PASS +Test 035 control_restart_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_qr_p8 -Checking test 035 control_qr_p8 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_qr_p8 +Checking test 036 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1724,15 +1308,15 @@ Checking test 035 control_qr_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 243.732579 - 0: The maximum resident set size (KB) = 1543412 + 0: The total amount of wall time = 365.105543 + 0: The maximum resident set size (KB) = 1550432 -Test 035 control_qr_p8 PASS +Test 036 control_qr_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_restart_qr_p8 -Checking test 036 control_restart_qr_p8 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_restart_qr_p8 +Checking test 037 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1770,15 +1354,15 @@ Checking test 036 control_restart_qr_p8 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 = 131.908070 - 0: The maximum resident set size (KB) = 785884 + 0: The total amount of wall time = 177.473479 + 0: The maximum resident set size (KB) = 788036 -Test 036 control_restart_qr_p8 PASS +Test 037 control_restart_qr_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_decomp_p8 -Checking test 037 control_decomp_p8 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_decomp_p8 +Checking test 038 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1820,15 +1404,15 @@ Checking test 037 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 241.155908 - 0: The maximum resident set size (KB) = 1521360 + 0: The total amount of wall time = 383.895162 + 0: The maximum resident set size (KB) = 1534016 -Test 037 control_decomp_p8 PASS +Test 038 control_decomp_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_2threads_p8 -Checking test 038 control_2threads_p8 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_2threads_p8 +Checking test 039 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1870,15 +1454,15 @@ Checking test 038 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 224.822693 - 0: The maximum resident set size (KB) = 1613368 + 0: The total amount of wall time = 290.672870 + 0: The maximum resident set size (KB) = 1628468 -Test 038 control_2threads_p8 PASS +Test 039 control_2threads_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_lndp -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_p8_lndp -Checking test 039 control_p8_lndp results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8_lndp +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_p8_lndp +Checking test 040 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1896,15 +1480,15 @@ Checking test 039 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 435.362457 - 0: The maximum resident set size (KB) = 1536500 + 0: The total amount of wall time = 667.754468 + 0: The maximum resident set size (KB) = 1552944 -Test 039 control_p8_lndp PASS +Test 040 control_p8_lndp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_rrtmgp -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_p8_rrtmgp -Checking test 040 control_p8_rrtmgp results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8_rrtmgp +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_p8_rrtmgp +Checking test 041 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1950,15 +1534,15 @@ Checking test 040 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 320.835062 - 0: The maximum resident set size (KB) = 1602100 + 0: The total amount of wall time = 432.736041 + 0: The maximum resident set size (KB) = 1615992 -Test 040 control_p8_rrtmgp PASS +Test 041 control_p8_rrtmgp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_mynn -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_p8_mynn -Checking test 041 control_p8_mynn results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8_mynn +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_p8_mynn +Checking test 042 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2004,15 +1588,15 @@ Checking test 041 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 242.330984 - 0: The maximum resident set size (KB) = 1535920 + 0: The total amount of wall time = 603.243833 + 0: The maximum resident set size (KB) = 1550964 -Test 041 control_p8_mynn PASS +Test 042 control_p8_mynn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/merra2_thompson -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/merra2_thompson -Checking test 042 merra2_thompson results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/merra2_thompson +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/merra2_thompson +Checking test 043 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2058,15 +1642,15 @@ Checking test 042 merra2_thompson results .... Comparing 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.080429 - 0: The maximum resident set size (KB) = 1549260 + 0: The total amount of wall time = 583.475521 + 0: The maximum resident set size (KB) = 1552508 -Test 042 merra2_thompson PASS +Test 043 merra2_thompson PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/regional_control -Checking test 043 regional_control results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/regional_control +Checking test 044 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2076,29 +1660,29 @@ Checking test 043 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 442.944459 - 0: The maximum resident set size (KB) = 786948 + 0: The total amount of wall time = 743.416191 + 0: The maximum resident set size (KB) = 783808 -Test 043 regional_control PASS +Test 044 regional_control PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/regional_restart -Checking test 044 regional_restart results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/regional_restart +Checking test 045 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 225.249457 - 0: The maximum resident set size (KB) = 778636 + 0: The total amount of wall time = 334.114614 + 0: The maximum resident set size (KB) = 777284 -Test 044 regional_restart PASS +Test 045 regional_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/regional_control_qr -Checking test 045 regional_control_qr results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/regional_control_qr +Checking test 046 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2108,29 +1692,29 @@ Checking test 045 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 414.086159 - 0: The maximum resident set size (KB) = 785144 + 0: The total amount of wall time = 800.304081 + 0: The maximum resident set size (KB) = 785300 -Test 045 regional_control_qr PASS +Test 046 regional_control_qr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/regional_restart_qr -Checking test 046 regional_restart_qr results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/regional_restart_qr +Checking test 047 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 221.641734 - 0: The maximum resident set size (KB) = 775684 + 0: The total amount of wall time = 284.118304 + 0: The maximum resident set size (KB) = 779844 -Test 046 regional_restart_qr PASS +Test 047 regional_restart_qr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/regional_decomp -Checking test 047 regional_decomp results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/regional_decomp +Checking test 048 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2140,15 +1724,15 @@ Checking test 047 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 442.557101 - 0: The maximum resident set size (KB) = 787796 + 0: The total amount of wall time = 662.241079 + 0: The maximum resident set size (KB) = 778476 -Test 047 regional_decomp PASS +Test 048 regional_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/regional_2threads -Checking test 048 regional_2threads results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/regional_2threads +Checking test 049 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2158,29 +1742,29 @@ Checking test 048 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 280.961931 - 0: The maximum resident set size (KB) = 770928 + 0: The total amount of wall time = 770.049625 + 0: The maximum resident set size (KB) = 770296 -Test 048 regional_2threads PASS +Test 049 regional_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_netcdf_parallel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/regional_netcdf_parallel -Checking test 049 regional_netcdf_parallel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_netcdf_parallel +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/regional_netcdf_parallel +Checking test 050 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 425.871812 - 0: The maximum resident set size (KB) = 782440 + 0: The total amount of wall time = 633.726172 + 0: The maximum resident set size (KB) = 783832 -Test 049 regional_netcdf_parallel PASS +Test 050 regional_netcdf_parallel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/regional_2dwrtdecomp -Checking test 050 regional_2dwrtdecomp results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/regional_2dwrtdecomp +Checking test 051 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2190,15 +1774,15 @@ Checking test 050 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 426.095455 - 0: The maximum resident set size (KB) = 784424 + 0: The total amount of wall time = 655.020623 + 0: The maximum resident set size (KB) = 784496 -Test 050 regional_2dwrtdecomp PASS +Test 051 regional_2dwrtdecomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_control -Checking test 051 rap_control results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rap_control +Checking test 052 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2244,15 +1828,15 @@ Checking test 051 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 623.215357 - 0: The maximum resident set size (KB) = 960468 + 0: The total amount of wall time = 927.954727 + 0: The maximum resident set size (KB) = 950912 -Test 051 rap_control PASS +Test 052 rap_control PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/regional_spp_sppt_shum_skeb -Checking test 052 regional_spp_sppt_shum_skeb results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_spp_sppt_shum_skeb +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/regional_spp_sppt_shum_skeb +Checking test 053 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -2262,15 +1846,15 @@ Checking test 052 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 343.522599 - 0: The maximum resident set size (KB) = 1096248 + 0: The total amount of wall time = 559.897301 + 0: The maximum resident set size (KB) = 1087496 -Test 052 regional_spp_sppt_shum_skeb PASS +Test 053 regional_spp_sppt_shum_skeb PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_decomp -Checking test 053 rap_decomp results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rap_decomp +Checking test 054 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2316,15 +1900,15 @@ Checking test 053 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 659.138053 - 0: The maximum resident set size (KB) = 958128 + 0: The total amount of wall time = 1062.252039 + 0: The maximum resident set size (KB) = 944804 -Test 053 rap_decomp PASS +Test 054 rap_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_2threads -Checking test 054 rap_2threads results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rap_2threads +Checking test 055 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2370,15 +1954,15 @@ Checking test 054 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 613.461286 - 0: The maximum resident set size (KB) = 1030120 + 0: The total amount of wall time = 1315.873939 + 0: The maximum resident set size (KB) = 1023132 -Test 054 rap_2threads PASS +Test 055 rap_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_restart -Checking test 055 rap_restart results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rap_restart +Checking test 056 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2416,15 +2000,15 @@ Checking test 055 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 327.493920 - 0: The maximum resident set size (KB) = 835396 + 0: The total amount of wall time = 493.076552 + 0: The maximum resident set size (KB) = 834624 -Test 055 rap_restart PASS +Test 056 rap_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_sfcdiff -Checking test 056 rap_sfcdiff results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rap_sfcdiff +Checking test 057 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2470,15 +2054,15 @@ Checking test 056 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 647.072706 - 0: The maximum resident set size (KB) = 958632 + 0: The total amount of wall time = 754.096573 + 0: The maximum resident set size (KB) = 951844 -Test 056 rap_sfcdiff PASS +Test 057 rap_sfcdiff PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_sfcdiff_decomp -Checking test 057 rap_sfcdiff_decomp results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rap_sfcdiff_decomp +Checking test 058 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2524,15 +2108,15 @@ Checking test 057 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 671.183145 - 0: The maximum resident set size (KB) = 933992 + 0: The total amount of wall time = 1027.122034 + 0: The maximum resident set size (KB) = 945336 -Test 057 rap_sfcdiff_decomp PASS +Test 058 rap_sfcdiff_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_sfcdiff_restart -Checking test 058 rap_sfcdiff_restart results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rap_sfcdiff_restart +Checking test 059 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2570,15 +2154,15 @@ Checking test 058 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 470.966816 - 0: The maximum resident set size (KB) = 845672 + 0: The total amount of wall time = 1174.902766 + 0: The maximum resident set size (KB) = 840276 -Test 058 rap_sfcdiff_restart PASS +Test 059 rap_sfcdiff_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/hrrr_control -Checking test 059 hrrr_control results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/hrrr_control +Checking test 060 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2591,48 +2175,170 @@ Checking test 059 hrrr_control results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + 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 = 1115.205188 + 0: The maximum resident set size (KB) = 948552 + +Test 060 hrrr_control PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/hrrr_control_decomp +Checking test 061 hrrr_control_decomp 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 = 731.885231 + 0: The maximum resident set size (KB) = 946944 + +Test 061 hrrr_control_decomp PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/hrrr_control_2threads +Checking test 062 hrrr_control_2threads 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 = 872.215900 + 0: The maximum resident set size (KB) = 1012884 + +Test 062 hrrr_control_2threads PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/hrrr_control_restart +Checking test 063 hrrr_control_restart results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 598.166330 - 0: The maximum resident set size (KB) = 956280 + 0: The total amount of wall time = 873.892104 + 0: The maximum resident set size (KB) = 837476 -Test 059 hrrr_control PASS +Test 063 hrrr_control_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/hrrr_control_decomp -Checking test 060 hrrr_control_decomp results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_v1beta +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rrfs_v1beta +Checking test 064 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2678,169 +2384,15 @@ Checking test 060 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 643.000446 - 0: The maximum resident set size (KB) = 951820 + 0: The total amount of wall time = 811.786545 + 0: The maximum resident set size (KB) = 940888 -Test 060 hrrr_control_decomp PASS +Test 064 rrfs_v1beta PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/hrrr_control_2threads -Checking test 061 hrrr_control_2threads results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 586.053537 - 0: The maximum resident set size (KB) = 1021640 - -Test 061 hrrr_control_2threads PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/hrrr_control_restart -Checking test 062 hrrr_control_restart results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 455.903230 - 0: The maximum resident set size (KB) = 834076 - -Test 062 hrrr_control_restart PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1beta -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rrfs_v1beta -Checking test 063 rrfs_v1beta results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 635.401598 - 0: The maximum resident set size (KB) = 944528 - -Test 063 rrfs_v1beta PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1nssl -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rrfs_v1nssl -Checking test 064 rrfs_v1nssl results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_v1nssl +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rrfs_v1nssl +Checking test 065 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2854,15 +2406,15 @@ Checking test 064 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 757.369414 - 0: The maximum resident set size (KB) = 641540 + 0: The total amount of wall time = 1124.703002 + 0: The maximum resident set size (KB) = 633160 -Test 064 rrfs_v1nssl PASS +Test 065 rrfs_v1nssl PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rrfs_v1nssl_nohailnoccn -Checking test 065 rrfs_v1nssl_nohailnoccn results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rrfs_v1nssl_nohailnoccn +Checking test 066 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2876,15 +2428,15 @@ Checking test 065 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 751.446673 - 0: The maximum resident set size (KB) = 637340 + 0: The total amount of wall time = 856.249778 + 0: The maximum resident set size (KB) = 636720 -Test 065 rrfs_v1nssl_nohailnoccn PASS +Test 066 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rrfs_smoke_conus13km_hrrr_warm -Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rrfs_smoke_conus13km_hrrr_warm +Checking test 067 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2892,15 +2444,15 @@ Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 206.554490 - 0: The maximum resident set size (KB) = 901300 + 0: The total amount of wall time = 338.718479 + 0: The maximum resident set size (KB) = 906680 -Test 066 rrfs_smoke_conus13km_hrrr_warm PASS +Test 067 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rrfs_smoke_conus13km_hrrr_warm_2threads -Checking test 067 rrfs_smoke_conus13km_hrrr_warm_2threads results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rrfs_smoke_conus13km_hrrr_warm_2threads +Checking test 068 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2908,15 +2460,15 @@ Checking test 067 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 136.216368 - 0: The maximum resident set size (KB) = 870144 + 0: The total amount of wall time = 174.563965 + 0: The maximum resident set size (KB) = 863676 -Test 067 rrfs_smoke_conus13km_hrrr_warm_2threads PASS +Test 068 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rrfs_conus13km_hrrr_warm -Checking test 068 rrfs_conus13km_hrrr_warm results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rrfs_conus13km_hrrr_warm +Checking test 069 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2924,15 +2476,15 @@ Checking test 068 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 182.135329 - 0: The maximum resident set size (KB) = 868064 + 0: The total amount of wall time = 223.039398 + 0: The maximum resident set size (KB) = 882192 -Test 068 rrfs_conus13km_hrrr_warm PASS +Test 069 rrfs_conus13km_hrrr_warm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rrfs_smoke_conus13km_radar_tten_warm -Checking test 069 rrfs_smoke_conus13km_radar_tten_warm results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rrfs_smoke_conus13km_radar_tten_warm +Checking test 070 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2940,27 +2492,27 @@ Checking test 069 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 202.451376 - 0: The maximum resident set size (KB) = 914304 + 0: The total amount of wall time = 338.899824 + 0: The maximum resident set size (KB) = 898532 -Test 069 rrfs_smoke_conus13km_radar_tten_warm PASS +Test 070 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rrfs_conus13km_hrrr_warm_restart_mismatch -Checking test 070 rrfs_conus13km_hrrr_warm_restart_mismatch results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rrfs_conus13km_hrrr_warm_restart_mismatch +Checking test 071 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 100.471581 - 0: The maximum resident set size (KB) = 846096 + 0: The total amount of wall time = 420.204096 + 0: The maximum resident set size (KB) = 856272 -Test 070 rrfs_conus13km_hrrr_warm_restart_mismatch PASS +Test 071 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmg -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_csawmg -Checking test 071 control_csawmg results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_csawmg +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_csawmg +Checking test 072 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2970,15 +2522,15 @@ Checking test 071 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 483.792711 - 0: The maximum resident set size (KB) = 670204 + 0: The total amount of wall time = 498.683014 + 0: The maximum resident set size (KB) = 665156 -Test 071 control_csawmg PASS +Test 072 control_csawmg PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmgt -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_csawmgt -Checking test 072 control_csawmgt results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_csawmgt +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_csawmgt +Checking test 073 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2988,15 +2540,15 @@ Checking test 072 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 473.206316 - 0: The maximum resident set size (KB) = 670568 + 0: The total amount of wall time = 684.661957 + 0: The maximum resident set size (KB) = 663468 -Test 072 control_csawmgt PASS +Test 073 control_csawmgt PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_ras -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_ras -Checking test 073 control_ras results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_ras +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_ras +Checking test 074 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3006,27 +2558,27 @@ Checking test 073 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 264.357137 - 0: The maximum resident set size (KB) = 633924 + 0: The total amount of wall time = 473.327202 + 0: The maximum resident set size (KB) = 637404 -Test 073 control_ras PASS +Test 074 control_ras PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wam -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_wam -Checking test 074 control_wam results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_wam +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_wam +Checking test 075 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 164.899145 - 0: The maximum resident set size (KB) = 480668 + 0: The total amount of wall time = 230.773736 + 0: The maximum resident set size (KB) = 483800 -Test 074 control_wam PASS +Test 075 control_wam PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_faster -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_p8_faster -Checking test 075 control_p8_faster results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8_faster +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_p8_faster +Checking test 076 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -3072,15 +2624,15 @@ Checking test 075 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 217.277743 - 0: The maximum resident set size (KB) = 1551652 + 0: The total amount of wall time = 352.158028 + 0: The maximum resident set size (KB) = 1535324 -Test 075 control_p8_faster PASS +Test 076 control_p8_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control_faster -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/regional_control_faster -Checking test 076 regional_control_faster results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control_faster +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/regional_control_faster +Checking test 077 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -3090,57 +2642,57 @@ Checking test 076 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 389.987092 - 0: The maximum resident set size (KB) = 786368 + 0: The total amount of wall time = 715.145646 + 0: The maximum resident set size (KB) = 782824 -Test 076 regional_control_faster PASS +Test 077 regional_control_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rrfs_smoke_conus13km_hrrr_warm_debug -Checking test 077 rrfs_smoke_conus13km_hrrr_warm_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rrfs_smoke_conus13km_hrrr_warm_debug +Checking test 078 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 1082.810865 - 0: The maximum resident set size (KB) = 929788 + 0: The total amount of wall time = 1088.102505 + 0: The maximum resident set size (KB) = 936372 -Test 077 rrfs_smoke_conus13km_hrrr_warm_debug PASS +Test 078 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rrfs_smoke_conus13km_hrrr_warm_debug_2threads -Checking test 078 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +Checking test 079 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 626.758931 - 0: The maximum resident set size (KB) = 897408 + 0: The total amount of wall time = 806.174740 + 0: The maximum resident set size (KB) = 894316 -Test 078 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS +Test 079 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rrfs_conus13km_hrrr_warm_debug -Checking test 079 rrfs_conus13km_hrrr_warm_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rrfs_conus13km_hrrr_warm_debug +Checking test 080 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 968.562793 - 0: The maximum resident set size (KB) = 898912 + 0: The total amount of wall time = 1105.868362 + 0: The maximum resident set size (KB) = 908840 -Test 079 rrfs_conus13km_hrrr_warm_debug PASS +Test 080 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_CubedSphereGrid_debug -Checking test 080 control_CubedSphereGrid_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_CubedSphereGrid_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_CubedSphereGrid_debug +Checking test 081 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3166,335 +2718,349 @@ Checking test 080 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 189.025535 - 0: The maximum resident set size (KB) = 734512 + 0: The total amount of wall time = 211.440533 + 0: The maximum resident set size (KB) = 731260 -Test 080 control_CubedSphereGrid_debug PASS +Test 081 control_CubedSphereGrid_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_wrtGauss_netcdf_parallel_debug -Checking test 081 control_wrtGauss_netcdf_parallel_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_wrtGauss_netcdf_parallel_debug +Checking test 082 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 188.753733 - 0: The maximum resident set size (KB) = 730688 + 0: The total amount of wall time = 191.665066 + 0: The maximum resident set size (KB) = 735088 -Test 081 control_wrtGauss_netcdf_parallel_debug PASS +Test 082 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_stochy_debug -Checking test 082 control_stochy_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_stochy_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_stochy_debug +Checking test 083 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 213.060189 - 0: The maximum resident set size (KB) = 739788 + 0: The total amount of wall time = 245.820533 + 0: The maximum resident set size (KB) = 739840 -Test 082 control_stochy_debug PASS +Test 083 control_stochy_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_lndp_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_lndp_debug -Checking test 083 control_lndp_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_lndp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_lndp_debug +Checking test 084 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 190.504080 - 0: The maximum resident set size (KB) = 738304 + 0: The total amount of wall time = 197.293387 + 0: The maximum resident set size (KB) = 740876 -Test 083 control_lndp_debug PASS +Test 084 control_lndp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmg_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_csawmg_debug -Checking test 084 control_csawmg_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_csawmg_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_csawmg_debug +Checking test 085 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 302.509403 - 0: The maximum resident set size (KB) = 784688 + 0: The total amount of wall time = 476.377811 + 0: The maximum resident set size (KB) = 781916 -Test 084 control_csawmg_debug PASS +Test 085 control_csawmg_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmgt_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_csawmgt_debug -Checking test 085 control_csawmgt_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_csawmgt_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_csawmgt_debug +Checking test 086 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 296.951173 - 0: The maximum resident set size (KB) = 780828 + 0: The total amount of wall time = 458.143188 + 0: The maximum resident set size (KB) = 779216 -Test 085 control_csawmgt_debug PASS +Test 086 control_csawmgt_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_ras_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_ras_debug -Checking test 086 control_ras_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_ras_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_ras_debug +Checking test 087 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 194.856618 - 0: The maximum resident set size (KB) = 747392 + 0: The total amount of wall time = 211.425546 + 0: The maximum resident set size (KB) = 748160 -Test 086 control_ras_debug PASS +Test 087 control_ras_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_diag_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_diag_debug -Checking test 087 control_diag_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_diag_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_diag_debug +Checking test 088 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 223.965022 - 0: The maximum resident set size (KB) = 790860 + 0: The total amount of wall time = 572.286548 + 0: The maximum resident set size (KB) = 795444 -Test 087 control_diag_debug PASS +Test 088 control_diag_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_debug_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_debug_p8 -Checking test 088 control_debug_p8 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_debug_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_debug_p8 +Checking test 089 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 214.783883 - 0: The maximum resident set size (KB) = 1556540 + 0: The total amount of wall time = 258.441354 + 0: The maximum resident set size (KB) = 1560508 -Test 088 control_debug_p8 PASS +Test 089 control_debug_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/regional_debug -Checking test 089 regional_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/regional_debug +Checking test 090 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1279.188968 - 0: The maximum resident set size (KB) = 806432 - -Test 089 regional_debug PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_control_debug -Checking test 090 rap_control_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 351.317247 - 0: The maximum resident set size (KB) = 1108816 + 0: The total amount of wall time = 1567.362872 + 0: The maximum resident set size (KB) = 824032 -Test 090 rap_control_debug PASS +Test 090 regional_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/hrrr_control_debug -Checking test 091 hrrr_control_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rap_control_debug +Checking test 091 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 345.567716 - 0: The maximum resident set size (KB) = 1105116 + 0: The total amount of wall time = 501.201443 + 0: The maximum resident set size (KB) = 1118216 -Test 091 hrrr_control_debug PASS +Test 091 rap_control_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_unified_drag_suite_debug -Checking test 092 rap_unified_drag_suite_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/hrrr_control_debug +Checking test 092 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 350.868033 - 0: The maximum resident set size (KB) = 1114440 + 0: The total amount of wall time = 420.829692 + 0: The maximum resident set size (KB) = 1106716 -Test 092 rap_unified_drag_suite_debug PASS +Test 092 hrrr_control_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_diag_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_diag_debug -Checking test 093 rap_diag_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rap_unified_drag_suite_debug +Checking test 093 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 376.442306 - 0: The maximum resident set size (KB) = 1192512 + 0: The total amount of wall time = 511.779501 + 0: The maximum resident set size (KB) = 1115360 -Test 093 rap_diag_debug PASS +Test 093 rap_unified_drag_suite_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_cires_ugwp_debug -Checking test 094 rap_cires_ugwp_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_diag_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rap_diag_debug +Checking test 094 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 355.569394 - 0: The maximum resident set size (KB) = 1109908 + 0: The total amount of wall time = 686.319565 + 0: The maximum resident set size (KB) = 1194864 -Test 094 rap_cires_ugwp_debug PASS +Test 094 rap_diag_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_unified_ugwp_debug -Checking test 095 rap_unified_ugwp_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rap_cires_ugwp_debug +Checking test 095 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 355.065703 - 0: The maximum resident set size (KB) = 1111856 + 0: The total amount of wall time = 488.270366 + 0: The maximum resident set size (KB) = 1112932 -Test 095 rap_unified_ugwp_debug PASS +Test 095 rap_cires_ugwp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_lndp_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_lndp_debug -Checking test 096 rap_lndp_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rap_unified_ugwp_debug +Checking test 096 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 366.910950 - 0: The maximum resident set size (KB) = 1109576 + 0: The total amount of wall time = 456.761668 + 0: The maximum resident set size (KB) = 1115652 -Test 096 rap_lndp_debug PASS +Test 096 rap_unified_ugwp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_flake_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_flake_debug -Checking test 097 rap_flake_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_lndp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rap_lndp_debug +Checking test 097 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 349.271185 - 0: The maximum resident set size (KB) = 1105132 + 0: The total amount of wall time = 544.037966 + 0: The maximum resident set size (KB) = 1108332 -Test 097 rap_flake_debug PASS +Test 097 rap_lndp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_progcld_thompson_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_progcld_thompson_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_progcld_thompson_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rap_progcld_thompson_debug Checking test 098 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 351.988066 - 0: The maximum resident set size (KB) = 1107632 + 0: The total amount of wall time = 397.107005 + 0: The maximum resident set size (KB) = 1116324 Test 098 rap_progcld_thompson_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_noah_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_noah_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_noah_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rap_noah_debug Checking test 099 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 343.453457 - 0: The maximum resident set size (KB) = 1113380 + 0: The total amount of wall time = 603.725137 + 0: The maximum resident set size (KB) = 1117412 Test 099 rap_noah_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_sfcdiff_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_sfcdiff_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rap_sfcdiff_debug Checking test 100 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 355.031698 - 0: The maximum resident set size (KB) = 1115900 + 0: The total amount of wall time = 386.484029 + 0: The maximum resident set size (KB) = 1113224 Test 100 rap_sfcdiff_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rap_noah_sfcdiff_cires_ugwp_debug Checking test 101 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 577.169911 - 0: The maximum resident set size (KB) = 1113624 + 0: The total amount of wall time = 632.745466 + 0: The maximum resident set size (KB) = 1111456 Test 101 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1beta_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rrfs_v1beta_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_v1beta_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rrfs_v1beta_debug Checking test 102 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 346.348804 - 0: The maximum resident set size (KB) = 1111072 + 0: The total amount of wall time = 415.418733 + 0: The maximum resident set size (KB) = 1109844 Test 102 rrfs_v1beta_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wam_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_wam_debug -Checking test 103 control_wam_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_clm_lake_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rap_clm_lake_debug +Checking test 103 rap_clm_lake_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 565.034853 + 0: The maximum resident set size (KB) = 1116300 + +Test 103 rap_clm_lake_debug PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_flake_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rap_flake_debug +Checking test 104 rap_flake_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 407.386360 + 0: The maximum resident set size (KB) = 1110880 + +Test 104 rap_flake_debug PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_wam_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_wam_debug +Checking test 105 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 364.722562 - 0: The maximum resident set size (KB) = 432968 + 0: The total amount of wall time = 376.883167 + 0: The maximum resident set size (KB) = 436428 -Test 103 control_wam_debug PASS +Test 105 control_wam_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/regional_spp_sppt_shum_skeb_dyn32_phy32 -Checking test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -3504,15 +3070,15 @@ Checking test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 301.648563 - 0: The maximum resident set size (KB) = 979260 + 0: The total amount of wall time = 465.685516 + 0: The maximum resident set size (KB) = 994832 -Test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS +Test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_control_dyn32_phy32 -Checking test 105 rap_control_dyn32_phy32 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rap_control_dyn32_phy32 +Checking test 107 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3558,15 +3124,15 @@ Checking test 105 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 535.712665 - 0: The maximum resident set size (KB) = 839668 + 0: The total amount of wall time = 751.227276 + 0: The maximum resident set size (KB) = 845068 -Test 105 rap_control_dyn32_phy32 PASS +Test 107 rap_control_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/hrrr_control_dyn32_phy32 -Checking test 106 hrrr_control_dyn32_phy32 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/hrrr_control_dyn32_phy32 +Checking test 108 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3579,48 +3145,156 @@ Checking test 106 hrrr_control_dyn32_phy32 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + Comparing 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 = 345.516802 + 0: The maximum resident set size (KB) = 834272 + +Test 108 hrrr_control_dyn32_phy32 PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rap_2threads_dyn32_phy32 +Checking test 109 rap_2threads_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 278.418249 - 0: The maximum resident set size (KB) = 839700 + 0: The total amount of wall time = 651.540258 + 0: The maximum resident set size (KB) = 894192 -Test 106 hrrr_control_dyn32_phy32 PASS +Test 109 rap_2threads_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_2threads_dyn32_phy32 -Checking test 107 rap_2threads_dyn32_phy32 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/hrrr_control_2threads_dyn32_phy32 +Checking test 110 hrrr_control_2threads_dyn32_phy32 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 = 259.621154 + 0: The maximum resident set size (KB) = 871248 + +Test 110 hrrr_control_2threads_dyn32_phy32 PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/hrrr_control_decomp_dyn32_phy32 +Checking test 111 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3633,6 +3307,52 @@ Checking test 107 rap_2threads_dyn32_phy32 results .... 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 = 374.670985 + 0: The maximum resident set size (KB) = 830288 + +Test 111 hrrr_control_decomp_dyn32_phy32 PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rap_restart_dyn32_phy32 +Checking test 112 rap_restart_dyn32_phy32 results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -3666,15 +3386,29 @@ Checking test 107 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 505.019702 - 0: The maximum resident set size (KB) = 879956 + 0: The total amount of wall time = 483.300853 + 0: The maximum resident set size (KB) = 810520 + +Test 112 rap_restart_dyn32_phy32 PASS + -Test 107 rap_2threads_dyn32_phy32 PASS +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/hrrr_control_restart_dyn32_phy32 +Checking test 113 hrrr_control_restart_dyn32_phy32 results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK + 0: The total amount of wall time = 198.052056 + 0: The maximum resident set size (KB) = 764000 -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/hrrr_control_2threads_dyn32_phy32 -Checking test 108 hrrr_control_2threads_dyn32_phy32 results .... +Test 113 hrrr_control_restart_dyn32_phy32 PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_dyn64_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rap_control_dyn64_phy32 +Checking test 114 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3720,282 +3454,72 @@ Checking test 108 hrrr_control_2threads_dyn32_phy32 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 = 269.089527 - 0: The maximum resident set size (KB) = 886724 + 0: The total amount of wall time = 356.289718 + 0: The maximum resident set size (KB) = 872172 -Test 108 hrrr_control_2threads_dyn32_phy32 PASS +Test 114 rap_control_dyn64_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/hrrr_control_decomp_dyn32_phy32 -Checking test 109 hrrr_control_decomp_dyn32_phy32 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 = 298.957549 - 0: The maximum resident set size (KB) = 828132 - -Test 109 hrrr_control_decomp_dyn32_phy32 PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_restart_dyn32_phy32 -Checking test 110 rap_restart_dyn32_phy32 results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 432.291553 - 0: The maximum resident set size (KB) = 807572 - -Test 110 rap_restart_dyn32_phy32 PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/hrrr_control_restart_dyn32_phy32 -Checking test 111 hrrr_control_restart_dyn32_phy32 results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........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 = 140.258455 - 0: The maximum resident set size (KB) = 760480 - -Test 111 hrrr_control_restart_dyn32_phy32 PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn64_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_control_dyn64_phy32 -Checking test 112 rap_control_dyn64_phy32 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 = 324.036989 - 0: The maximum resident set size (KB) = 876780 - -Test 112 rap_control_dyn64_phy32 PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_control_debug_dyn32_phy32 -Checking test 113 rap_control_debug_dyn32_phy32 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rap_control_debug_dyn32_phy32 +Checking test 115 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 347.076640 - 0: The maximum resident set size (KB) = 999008 + 0: The total amount of wall time = 362.162825 + 0: The maximum resident set size (KB) = 999604 -Test 113 rap_control_debug_dyn32_phy32 PASS +Test 115 rap_control_debug_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/hrrr_control_debug_dyn32_phy32 -Checking test 114 hrrr_control_debug_dyn32_phy32 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/hrrr_control_debug_dyn32_phy32 +Checking test 116 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 343.078375 - 0: The maximum resident set size (KB) = 992836 + 0: The total amount of wall time = 355.784321 + 0: The maximum resident set size (KB) = 992012 -Test 114 hrrr_control_debug_dyn32_phy32 PASS +Test 116 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/rap_control_dyn64_phy32_debug -Checking test 115 rap_control_dyn64_phy32_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rap_control_dyn64_phy32_debug +Checking test 117 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 354.159035 - 0: The maximum resident set size (KB) = 1031380 + 0: The total amount of wall time = 408.706419 + 0: The maximum resident set size (KB) = 1032368 -Test 115 rap_control_dyn64_phy32_debug PASS +Test 117 rap_control_dyn64_phy32_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/hafs_regional_atm -Checking test 116 hafs_regional_atm results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_atm +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/hafs_regional_atm +Checking test 118 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 352.464767 - 0: The maximum resident set size (KB) = 1217452 - -Test 116 hafs_regional_atm PASS - + 0: The total amount of wall time = 628.381032 + 0: The maximum resident set size (KB) = 1222092 -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/hafs_regional_atm_thompson_gfdlsf -Checking test 117 hafs_regional_atm_thompson_gfdlsf results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK +Test 118 hafs_regional_atm PASS - 0: The total amount of wall time = 470.490195 - 0: The maximum resident set size (KB) = 1502108 +Test 119 hafs_regional_atm_thompson_gfdlsf FAIL -Test 117 hafs_regional_atm_thompson_gfdlsf PASS - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_ocn -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/hafs_regional_atm_ocn -Checking test 118 hafs_regional_atm_ocn results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_atm_ocn +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/hafs_regional_atm_ocn +Checking test 120 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4003,15 +3527,15 @@ Checking test 118 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 558.558158 - 0: The maximum resident set size (KB) = 1300624 + 0: The total amount of wall time = 1349.865207 + 0: The maximum resident set size (KB) = 1302916 -Test 118 hafs_regional_atm_ocn PASS +Test 120 hafs_regional_atm_ocn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_wav -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/hafs_regional_atm_wav -Checking test 119 hafs_regional_atm_wav results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_atm_wav +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/hafs_regional_atm_wav +Checking test 121 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing 20190829.060000.out_grd.ww3 .........OK @@ -4019,15 +3543,15 @@ Checking test 119 hafs_regional_atm_wav 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 = 955.608380 - 0: The maximum resident set size (KB) = 1328064 + 0: The total amount of wall time = 1299.885636 + 0: The maximum resident set size (KB) = 1328924 -Test 119 hafs_regional_atm_wav PASS +Test 121 hafs_regional_atm_wav PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/hafs_regional_atm_ocn_wav -Checking test 120 hafs_regional_atm_ocn_wav results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_atm_ocn_wav +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/hafs_regional_atm_ocn_wav +Checking test 122 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4037,149 +3561,149 @@ Checking test 120 hafs_regional_atm_ocn_wav 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 = 1075.541877 - 0: The maximum resident set size (KB) = 1350700 + 0: The total amount of wall time = 1461.245429 + 0: The maximum resident set size (KB) = 1340308 -Test 120 hafs_regional_atm_ocn_wav PASS +Test 122 hafs_regional_atm_ocn_wav PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_docn -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/hafs_regional_docn -Checking test 121 hafs_regional_docn results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_docn +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/hafs_regional_docn +Checking test 123 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 529.489892 - 0: The maximum resident set size (KB) = 1303712 + 0: The total amount of wall time = 1022.530639 + 0: The maximum resident set size (KB) = 1282940 -Test 121 hafs_regional_docn PASS +Test 123 hafs_regional_docn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_docn_oisst -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/hafs_regional_docn_oisst -Checking test 122 hafs_regional_docn_oisst results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_docn_oisst +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/hafs_regional_docn_oisst +Checking test 124 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 547.522988 - 0: The maximum resident set size (KB) = 1294196 + 0: The total amount of wall time = 1286.962939 + 0: The maximum resident set size (KB) = 1258744 -Test 122 hafs_regional_docn_oisst PASS +Test 124 hafs_regional_docn_oisst PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/datm_cdeps_control_cfsr -Checking test 123 datm_cdeps_control_cfsr results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/datm_cdeps_control_cfsr +Checking test 125 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 228.220423 - 0: The maximum resident set size (KB) = 979576 + 0: The total amount of wall time = 297.278984 + 0: The maximum resident set size (KB) = 964696 -Test 123 datm_cdeps_control_cfsr PASS +Test 125 datm_cdeps_control_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/datm_cdeps_restart_cfsr -Checking test 124 datm_cdeps_restart_cfsr results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/datm_cdeps_restart_cfsr +Checking test 126 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.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.822474 - 0: The maximum resident set size (KB) = 933456 + 0: The total amount of wall time = 214.970358 + 0: The maximum resident set size (KB) = 935300 -Test 124 datm_cdeps_restart_cfsr PASS +Test 126 datm_cdeps_restart_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_gefs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/datm_cdeps_control_gefs -Checking test 125 datm_cdeps_control_gefs results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_control_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/datm_cdeps_control_gefs +Checking test 127 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 208.932438 - 0: The maximum resident set size (KB) = 861900 + 0: The total amount of wall time = 317.010783 + 0: The maximum resident set size (KB) = 864672 -Test 125 datm_cdeps_control_gefs PASS +Test 127 datm_cdeps_control_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_iau_gefs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/datm_cdeps_iau_gefs -Checking test 126 datm_cdeps_iau_gefs results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_iau_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/datm_cdeps_iau_gefs +Checking test 128 datm_cdeps_iau_gefs 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 = 223.586938 - 0: The maximum resident set size (KB) = 856936 + 0: The total amount of wall time = 332.964386 + 0: The maximum resident set size (KB) = 865804 -Test 126 datm_cdeps_iau_gefs PASS +Test 128 datm_cdeps_iau_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_stochy_gefs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/datm_cdeps_stochy_gefs -Checking test 127 datm_cdeps_stochy_gefs results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_stochy_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/datm_cdeps_stochy_gefs +Checking test 129 datm_cdeps_stochy_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 221.337956 - 0: The maximum resident set size (KB) = 859412 + 0: The total amount of wall time = 266.961245 + 0: The maximum resident set size (KB) = 854048 -Test 127 datm_cdeps_stochy_gefs PASS +Test 129 datm_cdeps_stochy_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/datm_cdeps_ciceC_cfsr -Checking test 128 datm_cdeps_ciceC_cfsr results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_ciceC_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/datm_cdeps_ciceC_cfsr +Checking test 130 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 232.349424 - 0: The maximum resident set size (KB) = 970596 + 0: The total amount of wall time = 259.351408 + 0: The maximum resident set size (KB) = 972804 -Test 128 datm_cdeps_ciceC_cfsr PASS +Test 130 datm_cdeps_ciceC_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/datm_cdeps_bulk_cfsr -Checking test 129 datm_cdeps_bulk_cfsr results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_bulk_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/datm_cdeps_bulk_cfsr +Checking test 131 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 227.914356 - 0: The maximum resident set size (KB) = 956028 + 0: The total amount of wall time = 257.312705 + 0: The maximum resident set size (KB) = 972324 -Test 129 datm_cdeps_bulk_cfsr PASS +Test 131 datm_cdeps_bulk_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/datm_cdeps_bulk_gefs -Checking test 130 datm_cdeps_bulk_gefs results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_bulk_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/datm_cdeps_bulk_gefs +Checking test 132 datm_cdeps_bulk_gefs 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 = 228.414463 - 0: The maximum resident set size (KB) = 862196 + 0: The total amount of wall time = 272.629434 + 0: The maximum resident set size (KB) = 858792 -Test 130 datm_cdeps_bulk_gefs PASS +Test 132 datm_cdeps_bulk_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/datm_cdeps_mx025_cfsr -Checking test 131 datm_cdeps_mx025_cfsr results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_mx025_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/datm_cdeps_mx025_cfsr +Checking test 133 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4187,15 +3711,15 @@ Checking test 131 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 603.563157 - 0: The maximum resident set size (KB) = 757408 + 0: The total amount of wall time = 906.761663 + 0: The maximum resident set size (KB) = 764436 -Test 131 datm_cdeps_mx025_cfsr PASS +Test 133 datm_cdeps_mx025_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/datm_cdeps_mx025_gefs -Checking test 132 datm_cdeps_mx025_gefs results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_mx025_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/datm_cdeps_mx025_gefs +Checking test 134 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4203,78 +3727,78 @@ Checking test 132 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 583.113448 - 0: The maximum resident set size (KB) = 750000 + 0: The total amount of wall time = 1642.498904 + 0: The maximum resident set size (KB) = 736096 -Test 132 datm_cdeps_mx025_gefs PASS +Test 134 datm_cdeps_mx025_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/datm_cdeps_multiple_files_cfsr -Checking test 133 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/datm_cdeps_multiple_files_cfsr +Checking test 135 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 228.381820 - 0: The maximum resident set size (KB) = 965396 + 0: The total amount of wall time = 233.145695 + 0: The maximum resident set size (KB) = 976760 -Test 133 datm_cdeps_multiple_files_cfsr PASS +Test 135 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/datm_cdeps_3072x1536_cfsr -Checking test 134 datm_cdeps_3072x1536_cfsr results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/datm_cdeps_3072x1536_cfsr +Checking test 136 datm_cdeps_3072x1536_cfsr 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 = 298.346503 - 0: The maximum resident set size (KB) = 2255560 + 0: The total amount of wall time = 423.026792 + 0: The maximum resident set size (KB) = 2257768 -Test 134 datm_cdeps_3072x1536_cfsr PASS +Test 136 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_gfs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/datm_cdeps_gfs -Checking test 135 datm_cdeps_gfs results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_gfs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/datm_cdeps_gfs +Checking test 137 datm_cdeps_gfs 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 = 311.796535 - 0: The maximum resident set size (KB) = 2255584 + 0: The total amount of wall time = 948.507121 + 0: The maximum resident set size (KB) = 2255288 -Test 135 datm_cdeps_gfs PASS +Test 137 datm_cdeps_gfs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_debug_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/datm_cdeps_debug_cfsr -Checking test 136 datm_cdeps_debug_cfsr results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_debug_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/datm_cdeps_debug_cfsr +Checking test 138 datm_cdeps_debug_cfsr 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 = 465.293722 - 0: The maximum resident set size (KB) = 930700 + 0: The total amount of wall time = 458.967552 + 0: The maximum resident set size (KB) = 917940 -Test 136 datm_cdeps_debug_cfsr PASS +Test 138 datm_cdeps_debug_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr_faster -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/datm_cdeps_control_cfsr_faster -Checking test 137 datm_cdeps_control_cfsr_faster results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_control_cfsr_faster +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/datm_cdeps_control_cfsr_faster +Checking test 139 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.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 = 217.595538 - 0: The maximum resident set size (KB) = 971744 + 0: The total amount of wall time = 225.698271 + 0: The maximum resident set size (KB) = 956876 -Test 137 datm_cdeps_control_cfsr_faster PASS +Test 139 datm_cdeps_control_cfsr_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/datm_cdeps_lnd_gswp3 -Checking test 138 datm_cdeps_lnd_gswp3 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/datm_cdeps_lnd_gswp3 +Checking test 140 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4282,15 +3806,15 @@ Checking test 138 datm_cdeps_lnd_gswp3 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 = 23.698417 - 0: The maximum resident set size (KB) = 241464 + 0: The total amount of wall time = 19.378989 + 0: The maximum resident set size (KB) = 242748 -Test 138 datm_cdeps_lnd_gswp3 PASS +Test 140 datm_cdeps_lnd_gswp3 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/datm_cdeps_lnd_gswp3_rst -Checking test 139 datm_cdeps_lnd_gswp3_rst results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/datm_cdeps_lnd_gswp3_rst +Checking test 141 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4298,15 +3822,15 @@ Checking test 139 datm_cdeps_lnd_gswp3_rst 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 = 47.016365 - 0: The maximum resident set size (KB) = 241360 + 0: The total amount of wall time = 40.813832 + 0: The maximum resident set size (KB) = 239924 -Test 139 datm_cdeps_lnd_gswp3_rst PASS +Test 141 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_atmlnd_sbs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_p8_atmlnd_sbs -Checking test 140 control_p8_atmlnd_sbs results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8_atmlnd_sbs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_p8_atmlnd_sbs +Checking test 142 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -4390,15 +3914,15 @@ Checking test 140 control_p8_atmlnd_sbs 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 = 307.760864 - 0: The maximum resident set size (KB) = 1591116 + 0: The total amount of wall time = 481.370458 + 0: The maximum resident set size (KB) = 1584992 -Test 140 control_p8_atmlnd_sbs PASS +Test 142 control_p8_atmlnd_sbs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/atmwav_control_noaero_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/atmwav_control_noaero_p8 -Checking test 141 atmwav_control_noaero_p8 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/atmwav_control_noaero_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/atmwav_control_noaero_p8 +Checking test 143 atmwav_control_noaero_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -4440,15 +3964,15 @@ Checking test 141 atmwav_control_noaero_p8 results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 137.929911 - 0: The maximum resident set size (KB) = 1570172 + 0: The total amount of wall time = 227.608003 + 0: The maximum resident set size (KB) = 1546600 -Test 141 atmwav_control_noaero_p8 PASS +Test 143 atmwav_control_noaero_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/control_atmwav -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/control_atmwav -Checking test 142 control_atmwav results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_atmwav +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_atmwav +Checking test 144 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -4491,15 +4015,15 @@ Checking test 142 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 169.980371 - 0: The maximum resident set size (KB) = 593792 + 0: The total amount of wall time = 204.312186 + 0: The maximum resident set size (KB) = 601428 -Test 142 control_atmwav PASS +Test 144 control_atmwav PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/atmaero_control_p8 -Checking test 143 atmaero_control_p8 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/atmaero_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/atmaero_control_p8 +Checking test 145 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4542,15 +4066,15 @@ Checking test 143 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 373.495836 - 0: The maximum resident set size (KB) = 1633712 + 0: The total amount of wall time = 620.033504 + 0: The maximum resident set size (KB) = 1649140 -Test 143 atmaero_control_p8 PASS +Test 145 atmaero_control_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8_rad -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/atmaero_control_p8_rad -Checking test 144 atmaero_control_p8_rad results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/atmaero_control_p8_rad +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/atmaero_control_p8_rad +Checking test 146 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4593,15 +4117,15 @@ Checking test 144 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 451.676386 - 0: The maximum resident set size (KB) = 1658448 + 0: The total amount of wall time = 563.589076 + 0: The maximum resident set size (KB) = 1680404 -Test 144 atmaero_control_p8_rad PASS +Test 146 atmaero_control_p8_rad PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_191324/atmaero_control_p8_rad_micro -Checking test 145 atmaero_control_p8_rad_micro results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/atmaero_control_p8_rad_micro +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/atmaero_control_p8_rad_micro +Checking test 147 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4644,12 +4168,478 @@ Checking test 145 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 424.931475 - 0: The maximum resident set size (KB) = 1668052 + 0: The total amount of wall time = 600.489491 + 0: The maximum resident set size (KB) = 1690404 + +Test 147 atmaero_control_p8_rad_micro PASS + +FAILED TESTS: +Test cpld_control_p8_mixedmode 001 failed in run_test failed +Test cpld_control_qr_p8 005 failed in run_test failed +Test cpld_2threads_p8 007 failed in run_test failed +Test cpld_mpi_p8 009 failed in run_test failed +Test cpld_control_ciceC_p8 010 failed in run_test failed +Test control_c384gdas 028 failed in run_test failed +Test hafs_regional_atm_thompson_gfdlsf 119 failed in run_test failed + +REGRESSION TEST FAILED +Wed Apr 26 05:18:46 UTC 2023 +Elapsed time: 07h:02m:06s. Have a nice day! + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8_mixedmode +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_67779/cpld_control_p8_mixedmode +Checking test 001 cpld_control_p8_mixedmode results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 477.988262 + 0: The maximum resident set size (KB) = 1750920 + +Test 001 cpld_control_p8_mixedmode PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_67779/cpld_control_qr_p8 +Checking test 002 cpld_control_qr_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 508.021551 + 0: The maximum resident set size (KB) = 1803772 + +Test 002 cpld_control_qr_p8 PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_67779/cpld_restart_qr_p8 +Checking test 003 cpld_restart_qr_p8 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 319.322146 + 0: The maximum resident set size (KB) = 1524420 + +Test 003 cpld_restart_qr_p8 PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_67779/cpld_2threads_p8 +Checking test 004 cpld_2threads_p8 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 547.724249 + 0: The maximum resident set size (KB) = 1984824 + +Test 004 cpld_2threads_p8 PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_67779/cpld_mpi_p8 +Checking test 005 cpld_mpi_p8 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 441.034900 + 0: The maximum resident set size (KB) = 1735992 + +Test 005 cpld_mpi_p8 PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_ciceC_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_67779/cpld_control_ciceC_p8 +Checking test 006 cpld_control_ciceC_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 490.429934 + 0: The maximum resident set size (KB) = 1792980 + +Test 006 cpld_control_ciceC_p8 PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_c384gdas +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_67779/control_c384gdas +Checking test 007 control_c384gdas results .... + Comparing sfcf000.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf006.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF06 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF06 .........OK + Comparing RESTART/20210322.060000.coupler.res .........OK + Comparing RESTART/20210322.060000.fv_core.res.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 883.665298 + 0: The maximum resident set size (KB) = 1200448 + +Test 007 control_c384gdas PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_67779/hafs_regional_atm_thompson_gfdlsf +Checking test 008 hafs_regional_atm_thompson_gfdlsf results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK -Test 145 atmaero_control_p8_rad_micro PASS + 0: The total amount of wall time = 464.964168 + 0: The maximum resident set size (KB) = 1579828 +Test 008 hafs_regional_atm_thompson_gfdlsf PASS -REGRESSION TEST WAS SUCCESSFUL -Fri Apr 21 22:18:48 UTC 2023 -Elapsed time: 02h:54m:50s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index b246ac86e79..d728fc03160 100755 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,43 +1,43 @@ -Sat Apr 22 13:01:49 CDT 2023 +Tue Apr 25 09:03:16 CDT 2023 Start Regression test -Compile 001 elapsed time 804 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 811 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 816 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 326 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 258 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 590 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 655 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 808 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 672 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 594 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 011 elapsed time 569 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 601 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 694 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 270 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 208 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 503 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 559 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 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 019 elapsed time 177 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 634 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 206 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 755 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 621 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 024 elapsed time 213 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 131 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 231 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 101 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 603 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 614 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 628 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 545 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 526 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 033 elapsed time 171 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 034 elapsed time 725 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 690 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 825 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 664 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 267 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 256 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 631 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 686 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 917 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 633 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 604 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 011 elapsed time 627 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 574 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 672 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 329 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 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 016 elapsed time 577 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 537 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 187 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 203 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 736 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 021 elapsed time 207 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 818 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 664 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 024 elapsed time 226 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 136 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 196 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 54 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 560 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 612 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 621 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 613 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 541 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 033 elapsed time 180 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 034 elapsed time 611 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8_mixedmode -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_control_p8_mixedmode +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -102,14 +102,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 340.349049 - 0: The maximum resident set size (KB) = 3147532 + 0: The total amount of wall time = 323.106602 + 0: The maximum resident set size (KB) = 3142984 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_gfsv17 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_control_gfsv17 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -173,14 +173,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 223.706663 - 0: The maximum resident set size (KB) = 1724024 + 0: The total amount of wall time = 248.382726 + 0: The maximum resident set size (KB) = 1724444 Test 002 cpld_control_gfsv17 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -245,14 +245,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 344.363159 - 0: The maximum resident set size (KB) = 3187464 + 0: The total amount of wall time = 370.301697 + 0: The maximum resident set size (KB) = 3184380 Test 003 cpld_control_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_restart_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -305,14 +305,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 216.954052 - 0: The maximum resident set size (KB) = 3056136 + 0: The total amount of wall time = 205.956281 + 0: The maximum resident set size (KB) = 3056268 Test 004 cpld_restart_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_control_qr_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -377,14 +377,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 346.982369 - 0: The maximum resident set size (KB) = 3198052 + 0: The total amount of wall time = 356.262273 + 0: The maximum resident set size (KB) = 3193832 Test 005 cpld_control_qr_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_restart_qr_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -437,14 +437,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 207.826832 - 0: The maximum resident set size (KB) = 3068292 + 0: The total amount of wall time = 211.512241 + 0: The maximum resident set size (KB) = 3069244 Test 006 cpld_restart_qr_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_2threads_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -497,14 +497,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 408.547569 - 0: The maximum resident set size (KB) = 3520552 + 0: The total amount of wall time = 425.616415 + 0: The maximum resident set size (KB) = 3516532 Test 007 cpld_2threads_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_decomp_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -557,14 +557,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 342.283899 - 0: The maximum resident set size (KB) = 3183040 + 0: The total amount of wall time = 362.812632 + 0: The maximum resident set size (KB) = 3176332 Test 008 cpld_decomp_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_mpi_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -617,14 +617,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 282.510653 - 0: The maximum resident set size (KB) = 3030508 + 0: The total amount of wall time = 319.893227 + 0: The maximum resident set size (KB) = 3021696 Test 009 cpld_mpi_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_ciceC_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_control_ciceC_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -689,14 +689,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 341.641213 - 0: The maximum resident set size (KB) = 3186056 + 0: The total amount of wall time = 377.198489 + 0: The maximum resident set size (KB) = 3183676 Test 010 cpld_control_ciceC_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_control_c192_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/cpld_control_c192_p8 Checking test 011 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -749,14 +749,14 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 643.549427 - 0: The maximum resident set size (KB) = 3269232 + 0: The total amount of wall time = 703.311087 + 0: The maximum resident set size (KB) = 3262328 -Test 011 cpld_control_c192_p8 PASS +Test 011 cpld_control_c192_p8 PASS Tries: 2 baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_restart_c192_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/cpld_restart_c192_p8 Checking test 012 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -809,14 +809,14 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 439.877977 - 0: The maximum resident set size (KB) = 3165276 + 0: The total amount of wall time = 445.538689 + 0: The maximum resident set size (KB) = 3165388 Test 012 cpld_restart_c192_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_bmark_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_bmark_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/cpld_bmark_p8 Checking test 013 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -864,14 +864,14 @@ Checking test 013 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 880.891270 - 0: The maximum resident set size (KB) = 4042604 + 0: The total amount of wall time = 881.800429 + 0: The maximum resident set size (KB) = 4047640 Test 013 cpld_bmark_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_bmark_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_restart_bmark_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/cpld_restart_bmark_p8 Checking test 014 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -919,14 +919,14 @@ Checking test 014 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 545.150846 - 0: The maximum resident set size (KB) = 3980456 + 0: The total amount of wall time = 552.186043 + 0: The maximum resident set size (KB) = 3975660 Test 014 cpld_restart_bmark_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_noaero_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_control_noaero_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/cpld_control_noaero_p8 Checking test 015 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -990,14 +990,14 @@ Checking test 015 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 283.390650 - 0: The maximum resident set size (KB) = 1718268 + 0: The total amount of wall time = 274.572888 + 0: The maximum resident set size (KB) = 1728336 Test 015 cpld_control_noaero_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c96_noaero_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_control_nowave_noaero_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/cpld_control_nowave_noaero_p8 Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1059,14 +1059,14 @@ Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 261.768945 - 0: The maximum resident set size (KB) = 1766080 + 0: The total amount of wall time = 278.409426 + 0: The maximum resident set size (KB) = 1766920 Test 016 cpld_control_nowave_noaero_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_debug_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_debug_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/cpld_debug_p8 Checking test 017 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1119,14 +1119,14 @@ Checking test 017 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 561.042129 - 0: The maximum resident set size (KB) = 3244036 + 0: The total amount of wall time = 551.928659 + 0: The maximum resident set size (KB) = 3237912 Test 017 cpld_debug_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_debug_noaero_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_debug_noaero_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/cpld_debug_noaero_p8 Checking test 018 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1178,14 +1178,14 @@ Checking test 018 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 388.093541 - 0: The maximum resident set size (KB) = 1731364 + 0: The total amount of wall time = 392.698915 + 0: The maximum resident set size (KB) = 1732088 Test 018 cpld_debug_noaero_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_noaero_p8_agrid -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_control_noaero_p8_agrid +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/cpld_control_noaero_p8_agrid Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1247,14 +1247,14 @@ Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 290.571138 - 0: The maximum resident set size (KB) = 1773020 + 0: The total amount of wall time = 294.424506 + 0: The maximum resident set size (KB) = 1761888 Test 019 cpld_control_noaero_p8_agrid PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c48 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_control_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/cpld_control_c48 Checking test 020 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1304,14 +1304,14 @@ Checking test 020 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 497.909250 - 0: The maximum resident set size (KB) = 2814372 + 0: The total amount of wall time = 520.686374 + 0: The maximum resident set size (KB) = 2818420 Test 020 cpld_control_c48 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_warmstart_c48 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_warmstart_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/cpld_warmstart_c48 Checking test 021 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1361,14 +1361,14 @@ Checking test 021 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 141.830701 - 0: The maximum resident set size (KB) = 2801312 + 0: The total amount of wall time = 141.700542 + 0: The maximum resident set size (KB) = 2804892 Test 021 cpld_warmstart_c48 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_warmstart_c48 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_restart_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/cpld_restart_c48 Checking test 022 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1418,14 +1418,14 @@ Checking test 022 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 79.897323 - 0: The maximum resident set size (KB) = 2246568 + 0: The total amount of wall time = 76.173240 + 0: The maximum resident set size (KB) = 2236916 Test 022 cpld_restart_c48 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/cpld_control_p8_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/cpld_control_p8_faster Checking test 023 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1490,14 +1490,14 @@ Checking test 023 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 357.242648 - 0: The maximum resident set size (KB) = 3182100 + 0: The total amount of wall time = 322.426920 + 0: The maximum resident set size (KB) = 3180548 Test 023 cpld_control_p8_faster PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_CubedSphereGrid +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_CubedSphereGrid Checking test 024 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1524,28 +1524,28 @@ Checking test 024 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 130.933245 - 0: The maximum resident set size (KB) = 631584 + 0: The total amount of wall time = 148.170701 + 0: The maximum resident set size (KB) = 578596 Test 024 control_CubedSphereGrid PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid_parallel -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_CubedSphereGrid_parallel +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_CubedSphereGrid_parallel Checking test 025 control_CubedSphereGrid_parallel results .... 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.912409 - 0: The maximum resident set size (KB) = 634400 + 0: The total amount of wall time = 145.901836 + 0: The maximum resident set size (KB) = 633116 Test 025 control_CubedSphereGrid_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_latlon -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_latlon +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_latlon Checking test 026 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1556,32 +1556,32 @@ Checking test 026 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.141163 - 0: The maximum resident set size (KB) = 634432 + 0: The total amount of wall time = 149.741590 + 0: The maximum resident set size (KB) = 630904 Test 026 control_latlon PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wrtGauss_netcdf_parallel -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_wrtGauss_netcdf_parallel +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_wrtGauss_netcdf_parallel Checking test 027 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 137.229937 - 0: The maximum resident set size (KB) = 633716 + 0: The total amount of wall time = 156.957944 + 0: The maximum resident set size (KB) = 630060 Test 027 control_wrtGauss_netcdf_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c48 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_c48 Checking test 028 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1620,14 +1620,14 @@ Checking test 028 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 346.639114 -0: The maximum resident set size (KB) = 823652 +0: The total amount of wall time = 349.245605 +0: The maximum resident set size (KB) = 823148 Test 028 control_c48 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c192 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_c192 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_c192 Checking test 029 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1638,14 +1638,14 @@ Checking test 029 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 528.366183 - 0: The maximum resident set size (KB) = 775104 + 0: The total amount of wall time = 533.755254 + 0: The maximum resident set size (KB) = 766260 Test 029 control_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c384 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_c384 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_c384 Checking test 030 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1656,14 +1656,14 @@ Checking test 030 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 587.749641 - 0: The maximum resident set size (KB) = 1235512 + 0: The total amount of wall time = 604.947170 + 0: The maximum resident set size (KB) = 1231324 Test 030 control_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c384gdas -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_c384gdas +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_c384gdas Checking test 031 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1706,14 +1706,14 @@ Checking test 031 control_c384gdas 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 = 575.456429 - 0: The maximum resident set size (KB) = 1340248 + 0: The total amount of wall time = 536.156230 + 0: The maximum resident set size (KB) = 1340928 Test 031 control_c384gdas PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_stochy +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_stochy Checking test 032 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1724,28 +1724,28 @@ Checking test 032 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 87.940240 - 0: The maximum resident set size (KB) = 639996 + 0: The total amount of wall time = 89.450052 + 0: The maximum resident set size (KB) = 634980 Test 032 control_stochy PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_stochy_restart +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_stochy_restart Checking test 033 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 56.707512 - 0: The maximum resident set size (KB) = 485732 + 0: The total amount of wall time = 48.982157 + 0: The maximum resident set size (KB) = 485884 Test 033 control_stochy_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_lndp -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_lndp +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_lndp Checking test 034 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1756,14 +1756,14 @@ Checking test 034 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 96.133819 - 0: The maximum resident set size (KB) = 633616 + 0: The total amount of wall time = 83.290984 + 0: The maximum resident set size (KB) = 636244 Test 034 control_lndp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_iovr4 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_iovr4 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_iovr4 Checking test 035 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1778,14 +1778,14 @@ Checking test 035 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 137.304691 - 0: The maximum resident set size (KB) = 634328 + 0: The total amount of wall time = 135.500700 + 0: The maximum resident set size (KB) = 630820 Test 035 control_iovr4 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_iovr5 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_iovr5 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_iovr5 Checking test 036 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1800,14 +1800,14 @@ Checking test 036 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 137.709563 - 0: The maximum resident set size (KB) = 628224 + 0: The total amount of wall time = 134.919604 + 0: The maximum resident set size (KB) = 633568 Test 036 control_iovr5 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_p8 Checking test 037 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1854,14 +1854,14 @@ Checking test 037 control_p8 results .... Comparing 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.704934 - 0: The maximum resident set size (KB) = 1613060 + 0: The total amount of wall time = 169.551815 + 0: The maximum resident set size (KB) = 1598108 Test 037 control_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_restart_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_restart_p8 Checking test 038 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1900,14 +1900,14 @@ Checking test 038 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 90.355714 - 0: The maximum resident set size (KB) = 874280 + 0: The total amount of wall time = 91.276745 + 0: The maximum resident set size (KB) = 873404 Test 038 control_restart_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_qr_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_qr_p8 Checking test 039 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1954,14 +1954,14 @@ Checking test 039 control_qr_p8 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 = 175.870726 - 0: The maximum resident set size (KB) = 1605476 + 0: The total amount of wall time = 171.542917 + 0: The maximum resident set size (KB) = 1594148 Test 039 control_qr_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_restart_qr_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_restart_qr_p8 Checking test 040 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2000,14 +2000,14 @@ Checking test 040 control_restart_qr_p8 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.815738 - 0: The maximum resident set size (KB) = 867680 + 0: The total amount of wall time = 91.370183 + 0: The maximum resident set size (KB) = 869808 Test 040 control_restart_qr_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_decomp_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_decomp_p8 Checking test 041 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2050,14 +2050,14 @@ Checking test 041 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 181.534516 - 0: The maximum resident set size (KB) = 1586024 + 0: The total amount of wall time = 177.732256 + 0: The maximum resident set size (KB) = 1582512 Test 041 control_decomp_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_2threads_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_2threads_p8 Checking test 042 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2100,14 +2100,14 @@ Checking test 042 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 182.436807 - 0: The maximum resident set size (KB) = 1685320 + 0: The total amount of wall time = 179.549417 + 0: The maximum resident set size (KB) = 1683524 Test 042 control_2threads_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_lndp -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_p8_lndp +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_p8_lndp Checking test 043 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2126,14 +2126,14 @@ Checking test 043 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 320.134426 - 0: The maximum resident set size (KB) = 1614384 + 0: The total amount of wall time = 314.640049 + 0: The maximum resident set size (KB) = 1609664 Test 043 control_p8_lndp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_rrtmgp -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_p8_rrtmgp +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_p8_rrtmgp Checking test 044 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2180,14 +2180,14 @@ Checking test 044 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 233.165065 - 0: The maximum resident set size (KB) = 1679124 + 0: The total amount of wall time = 231.649370 + 0: The maximum resident set size (KB) = 1621212 Test 044 control_p8_rrtmgp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_mynn -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_p8_mynn +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_p8_mynn Checking test 045 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2234,14 +2234,14 @@ Checking test 045 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 177.869777 - 0: The maximum resident set size (KB) = 1603732 + 0: The total amount of wall time = 176.484499 + 0: The maximum resident set size (KB) = 1550612 Test 045 control_p8_mynn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/merra2_thompson -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/merra2_thompson +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/merra2_thompson Checking test 046 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2288,14 +2288,14 @@ Checking test 046 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 189.897204 - 0: The maximum resident set size (KB) = 1613224 + 0: The total amount of wall time = 192.275886 + 0: The maximum resident set size (KB) = 1608124 Test 046 merra2_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/regional_control Checking test 047 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2306,28 +2306,28 @@ Checking test 047 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 296.250519 - 0: The maximum resident set size (KB) = 872352 + 0: The total amount of wall time = 296.690439 + 0: The maximum resident set size (KB) = 872180 Test 047 regional_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/regional_restart +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/regional_restart Checking test 048 regional_restart 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.441789 - 0: The maximum resident set size (KB) = 863096 + 0: The total amount of wall time = 151.850426 + 0: The maximum resident set size (KB) = 838788 Test 048 regional_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/regional_control_qr +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/regional_control_qr Checking test 049 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2338,28 +2338,28 @@ Checking test 049 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 296.284969 - 0: The maximum resident set size (KB) = 871928 + 0: The total amount of wall time = 296.961465 + 0: The maximum resident set size (KB) = 871188 Test 049 regional_control_qr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/regional_restart_qr +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/regional_restart_qr Checking test 050 regional_restart_qr 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.668417 - 0: The maximum resident set size (KB) = 864368 + 0: The total amount of wall time = 152.661163 + 0: The maximum resident set size (KB) = 859432 Test 050 regional_restart_qr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/regional_decomp +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/regional_decomp Checking test 051 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2370,14 +2370,14 @@ Checking test 051 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 314.138155 - 0: The maximum resident set size (KB) = 864560 + 0: The total amount of wall time = 315.103740 + 0: The maximum resident set size (KB) = 860236 Test 051 regional_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/regional_2threads +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/regional_2threads Checking test 052 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2388,14 +2388,14 @@ Checking test 052 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 208.330174 - 0: The maximum resident set size (KB) = 847248 + 0: The total amount of wall time = 206.498476 + 0: The maximum resident set size (KB) = 847364 Test 052 regional_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_noquilt -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/regional_noquilt +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/regional_noquilt Checking test 053 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2403,28 +2403,28 @@ Checking test 053 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 316.868419 - 0: The maximum resident set size (KB) = 862092 + 0: The total amount of wall time = 319.845043 + 0: The maximum resident set size (KB) = 833288 Test 053 regional_noquilt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_netcdf_parallel -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/regional_netcdf_parallel +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/regional_netcdf_parallel Checking test 054 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK + Comparing phyf006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 291.317738 - 0: The maximum resident set size (KB) = 872028 + 0: The total amount of wall time = 294.973074 + 0: The maximum resident set size (KB) = 866664 Test 054 regional_netcdf_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/regional_2dwrtdecomp +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/regional_2dwrtdecomp Checking test 055 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2435,14 +2435,14 @@ Checking test 055 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 294.729708 - 0: The maximum resident set size (KB) = 865656 + 0: The total amount of wall time = 297.018233 + 0: The maximum resident set size (KB) = 874572 Test 055 regional_2dwrtdecomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/fv3_regional_wofs -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/regional_wofs +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/regional_wofs Checking test 056 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2453,14 +2453,14 @@ Checking test 056 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 384.669585 - 0: The maximum resident set size (KB) = 628844 + 0: The total amount of wall time = 379.614371 + 0: The maximum resident set size (KB) = 575228 Test 056 regional_wofs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_control +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rap_control Checking test 057 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2507,14 +2507,14 @@ Checking test 057 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 473.138083 - 0: The maximum resident set size (KB) = 1071160 + 0: The total amount of wall time = 469.605490 + 0: The maximum resident set size (KB) = 1068664 Test 057 rap_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_spp_sppt_shum_skeb -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/regional_spp_sppt_shum_skeb +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/regional_spp_sppt_shum_skeb Checking test 058 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2525,14 +2525,14 @@ Checking test 058 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 287.503634 - 0: The maximum resident set size (KB) = 1188932 + 0: The total amount of wall time = 289.349721 + 0: The maximum resident set size (KB) = 1182808 Test 058 regional_spp_sppt_shum_skeb PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_decomp +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rap_decomp Checking test 059 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2579,14 +2579,14 @@ Checking test 059 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 506.940735 - 0: The maximum resident set size (KB) = 1009544 + 0: The total amount of wall time = 499.494772 + 0: The maximum resident set size (KB) = 1003760 Test 059 rap_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_2threads +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rap_2threads Checking test 060 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2633,14 +2633,14 @@ Checking test 060 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 495.992707 - 0: The maximum resident set size (KB) = 1143224 + 0: The total amount of wall time = 485.046221 + 0: The maximum resident set size (KB) = 1140412 Test 060 rap_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_restart +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rap_restart Checking test 061 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2679,14 +2679,14 @@ Checking test 061 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 231.469637 - 0: The maximum resident set size (KB) = 979324 + 0: The total amount of wall time = 234.011072 + 0: The maximum resident set size (KB) = 965748 Test 061 rap_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_sfcdiff +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rap_sfcdiff Checking test 062 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2733,14 +2733,14 @@ Checking test 062 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 481.524676 - 0: The maximum resident set size (KB) = 1061140 + 0: The total amount of wall time = 462.665207 + 0: The maximum resident set size (KB) = 1047872 Test 062 rap_sfcdiff PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_sfcdiff_decomp +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rap_sfcdiff_decomp Checking test 063 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2787,14 +2787,14 @@ Checking test 063 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 488.616673 - 0: The maximum resident set size (KB) = 1012884 + 0: The total amount of wall time = 510.398029 + 0: The maximum resident set size (KB) = 1005344 Test 063 rap_sfcdiff_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_sfcdiff_restart +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rap_sfcdiff_restart Checking test 064 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2833,14 +2833,14 @@ Checking test 064 rap_sfcdiff_restart results .... Comparing 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.169361 - 0: The maximum resident set size (KB) = 995408 + 0: The total amount of wall time = 342.191397 + 0: The maximum resident set size (KB) = 986528 Test 064 rap_sfcdiff_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hrrr_control +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hrrr_control Checking test 065 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2887,14 +2887,14 @@ Checking test 065 hrrr_control results .... Comparing 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.362285 - 0: The maximum resident set size (KB) = 1067784 + 0: The total amount of wall time = 460.724498 + 0: The maximum resident set size (KB) = 1061812 Test 065 hrrr_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hrrr_control_decomp +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hrrr_control_decomp Checking test 066 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2941,14 +2941,14 @@ Checking test 066 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 496.633956 - 0: The maximum resident set size (KB) = 1002428 + 0: The total amount of wall time = 464.284108 + 0: The maximum resident set size (KB) = 1002688 Test 066 hrrr_control_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hrrr_control_2threads +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hrrr_control_2threads Checking test 067 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2995,14 +2995,14 @@ Checking test 067 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 472.964130 - 0: The maximum resident set size (KB) = 1146328 + 0: The total amount of wall time = 455.889068 + 0: The maximum resident set size (KB) = 1138292 Test 067 hrrr_control_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hrrr_control_restart +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hrrr_control_restart Checking test 068 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3041,14 +3041,14 @@ Checking test 068 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 338.996321 - 0: The maximum resident set size (KB) = 984604 + 0: The total amount of wall time = 332.436845 + 0: The maximum resident set size (KB) = 983116 Test 068 hrrr_control_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1beta -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rrfs_v1beta +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rrfs_v1beta Checking test 069 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3095,14 +3095,14 @@ Checking test 069 rrfs_v1beta results .... Comparing 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.758640 - 0: The maximum resident set size (KB) = 1063556 + 0: The total amount of wall time = 455.915325 + 0: The maximum resident set size (KB) = 1065308 Test 069 rrfs_v1beta PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1nssl -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rrfs_v1nssl +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rrfs_v1nssl Checking test 070 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3117,14 +3117,14 @@ Checking test 070 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 557.382468 - 0: The maximum resident set size (KB) = 701552 + 0: The total amount of wall time = 563.364641 + 0: The maximum resident set size (KB) = 698944 Test 070 rrfs_v1nssl PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rrfs_v1nssl_nohailnoccn +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rrfs_v1nssl_nohailnoccn Checking test 071 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3139,14 +3139,14 @@ Checking test 071 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 544.909232 - 0: The maximum resident set size (KB) = 763976 + 0: The total amount of wall time = 551.735761 + 0: The maximum resident set size (KB) = 761752 Test 071 rrfs_v1nssl_nohailnoccn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rrfs_smoke_conus13km_hrrr_warm +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rrfs_smoke_conus13km_hrrr_warm Checking test 072 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3155,14 +3155,14 @@ Checking test 072 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 155.346733 - 0: The maximum resident set size (KB) = 1004724 + 0: The total amount of wall time = 160.446491 + 0: The maximum resident set size (KB) = 1039692 Test 072 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rrfs_smoke_conus13km_hrrr_warm_2threads +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 073 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3171,14 +3171,14 @@ Checking test 073 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 104.178417 - 0: The maximum resident set size (KB) = 914000 + 0: The total amount of wall time = 101.509351 + 0: The maximum resident set size (KB) = 944808 Test 073 rrfs_smoke_conus13km_hrrr_warm_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rrfs_conus13km_hrrr_warm +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rrfs_conus13km_hrrr_warm Checking test 074 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3187,14 +3187,14 @@ Checking test 074 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 136.460323 - 0: The maximum resident set size (KB) = 943912 + 0: The total amount of wall time = 143.209510 + 0: The maximum resident set size (KB) = 888420 Test 074 rrfs_conus13km_hrrr_warm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rrfs_smoke_conus13km_radar_tten_warm +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rrfs_smoke_conus13km_radar_tten_warm Checking test 075 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3203,26 +3203,26 @@ Checking test 075 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 160.257335 - 0: The maximum resident set size (KB) = 1038208 + 0: The total amount of wall time = 152.935807 + 0: The maximum resident set size (KB) = 1003804 Test 075 rrfs_smoke_conus13km_radar_tten_warm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 076 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 67.900861 - 0: The maximum resident set size (KB) = 935628 + 0: The total amount of wall time = 69.407238 + 0: The maximum resident set size (KB) = 937700 Test 076 rrfs_conus13km_hrrr_warm_restart_mismatch PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmg -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_csawmg +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_csawmg Checking test 077 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3233,14 +3233,14 @@ Checking test 077 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 342.601558 - 0: The maximum resident set size (KB) = 725024 + 0: The total amount of wall time = 345.365789 + 0: The maximum resident set size (KB) = 728128 Test 077 control_csawmg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmgt -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_csawmgt +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_csawmgt Checking test 078 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3251,14 +3251,14 @@ Checking test 078 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 337.820731 - 0: The maximum resident set size (KB) = 722960 + 0: The total amount of wall time = 341.750828 + 0: The maximum resident set size (KB) = 724340 Test 078 control_csawmgt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_ras -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_ras +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_ras Checking test 079 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3269,26 +3269,26 @@ Checking test 079 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 184.159346 - 0: The maximum resident set size (KB) = 726288 + 0: The total amount of wall time = 183.649354 + 0: The maximum resident set size (KB) = 716536 Test 079 control_ras PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wam -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_wam +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_wam Checking test 080 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 112.182828 - 0: The maximum resident set size (KB) = 648892 + 0: The total amount of wall time = 114.544416 + 0: The maximum resident set size (KB) = 646944 Test 080 control_wam PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_p8_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_p8_faster Checking test 081 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3335,14 +3335,14 @@ Checking test 081 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 153.211896 - 0: The maximum resident set size (KB) = 1601916 + 0: The total amount of wall time = 151.498623 + 0: The maximum resident set size (KB) = 1603504 Test 081 control_p8_faster PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/regional_control_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/regional_control_faster Checking test 082 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3353,56 +3353,56 @@ Checking test 082 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 268.545515 - 0: The maximum resident set size (KB) = 867936 + 0: The total amount of wall time = 268.798068 + 0: The maximum resident set size (KB) = 875568 Test 082 regional_control_faster PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 083 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 823.938870 - 0: The maximum resident set size (KB) = 1066060 + 0: The total amount of wall time = 838.517845 + 0: The maximum resident set size (KB) = 1061404 Test 083 rrfs_smoke_conus13km_hrrr_warm_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 084 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 470.623706 - 0: The maximum resident set size (KB) = 979260 + 0: The total amount of wall time = 480.614712 + 0: The maximum resident set size (KB) = 977152 Test 084 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rrfs_conus13km_hrrr_warm_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rrfs_conus13km_hrrr_warm_debug Checking test 085 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 753.487954 - 0: The maximum resident set size (KB) = 970608 + 0: The total amount of wall time = 761.187304 + 0: The maximum resident set size (KB) = 969892 Test 085 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_CubedSphereGrid_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_CubedSphereGrid_debug Checking test 086 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3429,334 +3429,334 @@ Checking test 086 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 149.832720 - 0: The maximum resident set size (KB) = 796516 + 0: The total amount of wall time = 157.947123 + 0: The maximum resident set size (KB) = 752676 Test 086 control_CubedSphereGrid_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_wrtGauss_netcdf_parallel_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_wrtGauss_netcdf_parallel_debug Checking test 087 control_wrtGauss_netcdf_parallel_debug results .... - Comparing sfcf000.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.nc ............ALT CHECK......OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 155.925682 - 0: The maximum resident set size (KB) = 793144 + 0: The total amount of wall time = 152.440084 + 0: The maximum resident set size (KB) = 792668 Test 087 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_stochy_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_stochy_debug Checking test 088 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 169.063351 - 0: The maximum resident set size (KB) = 804208 + 0: The total amount of wall time = 170.502161 + 0: The maximum resident set size (KB) = 792268 Test 088 control_stochy_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_lndp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_lndp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_lndp_debug Checking test 089 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 190.861094 - 0: The maximum resident set size (KB) = 801584 + 0: The total amount of wall time = 154.166166 + 0: The maximum resident set size (KB) = 793720 Test 089 control_lndp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmg_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_csawmg_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_csawmg_debug Checking test 090 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 260.560003 - 0: The maximum resident set size (KB) = 846920 + 0: The total amount of wall time = 225.114471 + 0: The maximum resident set size (KB) = 844876 Test 090 control_csawmg_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmgt_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_csawmgt_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_csawmgt_debug Checking test 091 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 258.914282 - 0: The maximum resident set size (KB) = 842304 + 0: The total amount of wall time = 235.824733 + 0: The maximum resident set size (KB) = 845956 Test 091 control_csawmgt_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_ras_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_ras_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_ras_debug Checking test 092 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 179.201496 - 0: The maximum resident set size (KB) = 805632 + 0: The total amount of wall time = 152.362287 + 0: The maximum resident set size (KB) = 797524 Test 092 control_ras_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_diag_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_diag_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_diag_debug Checking test 093 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 173.877021 - 0: The maximum resident set size (KB) = 848340 + 0: The total amount of wall time = 157.906755 + 0: The maximum resident set size (KB) = 851812 Test 093 control_diag_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_debug_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_debug_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_debug_p8 Checking test 094 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 195.892904 - 0: The maximum resident set size (KB) = 1625116 + 0: The total amount of wall time = 190.383688 + 0: The maximum resident set size (KB) = 1623428 Test 094 control_debug_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/regional_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/regional_debug Checking test 095 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 996.269674 - 0: The maximum resident set size (KB) = 885456 + 0: The total amount of wall time = 1022.742049 + 0: The maximum resident set size (KB) = 887824 Test 095 regional_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_control_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rap_control_debug Checking test 096 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.745979 - 0: The maximum resident set size (KB) = 1168932 + 0: The total amount of wall time = 272.642879 + 0: The maximum resident set size (KB) = 1170836 Test 096 rap_control_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hrrr_control_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hrrr_control_debug Checking test 097 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.590196 - 0: The maximum resident set size (KB) = 1168596 + 0: The total amount of wall time = 267.970165 + 0: The maximum resident set size (KB) = 1173164 Test 097 hrrr_control_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_unified_drag_suite_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rap_unified_drag_suite_debug Checking test 098 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.528576 - 0: The maximum resident set size (KB) = 1173592 + 0: The total amount of wall time = 279.975636 + 0: The maximum resident set size (KB) = 1175140 Test 098 rap_unified_drag_suite_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_diag_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_diag_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rap_diag_debug Checking test 099 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 288.454772 - 0: The maximum resident set size (KB) = 1263052 + 0: The total amount of wall time = 295.833705 + 0: The maximum resident set size (KB) = 1260056 Test 099 rap_diag_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_cires_ugwp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rap_cires_ugwp_debug Checking test 100 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.417120 - 0: The maximum resident set size (KB) = 1170928 + 0: The total amount of wall time = 280.861960 + 0: The maximum resident set size (KB) = 1173196 Test 100 rap_cires_ugwp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_unified_ugwp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rap_unified_ugwp_debug Checking test 101 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 284.750515 - 0: The maximum resident set size (KB) = 1173148 + 0: The total amount of wall time = 287.140099 + 0: The maximum resident set size (KB) = 1172844 Test 101 rap_unified_ugwp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_lndp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_lndp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rap_lndp_debug Checking test 102 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 282.531938 - 0: The maximum resident set size (KB) = 1175336 + 0: The total amount of wall time = 299.775164 + 0: The maximum resident set size (KB) = 1170796 Test 102 rap_lndp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_flake_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_flake_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rap_flake_debug Checking test 103 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.982551 - 0: The maximum resident set size (KB) = 1173488 + 0: The total amount of wall time = 278.462184 + 0: The maximum resident set size (KB) = 1172236 Test 103 rap_flake_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_progcld_thompson_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_progcld_thompson_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rap_progcld_thompson_debug Checking test 104 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.614952 - 0: The maximum resident set size (KB) = 1176848 + 0: The total amount of wall time = 277.910478 + 0: The maximum resident set size (KB) = 1169060 Test 104 rap_progcld_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_noah_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_noah_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rap_noah_debug Checking test 105 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 267.427999 - 0: The maximum resident set size (KB) = 1169628 + 0: The total amount of wall time = 275.583400 + 0: The maximum resident set size (KB) = 1177188 Test 105 rap_noah_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_sfcdiff_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rap_sfcdiff_debug Checking test 106 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.141650 - 0: The maximum resident set size (KB) = 1173796 + 0: The total amount of wall time = 278.262049 + 0: The maximum resident set size (KB) = 1173512 Test 106 rap_sfcdiff_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rap_noah_sfcdiff_cires_ugwp_debug Checking test 107 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 457.003310 - 0: The maximum resident set size (KB) = 1171896 + 0: The total amount of wall time = 463.974215 + 0: The maximum resident set size (KB) = 1170280 Test 107 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1beta_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rrfs_v1beta_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rrfs_v1beta_debug Checking test 108 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.502771 - 0: The maximum resident set size (KB) = 1178176 + 0: The total amount of wall time = 279.962891 + 0: The maximum resident set size (KB) = 1140912 Test 108 rrfs_v1beta_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wam_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_wam_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_wam_debug Checking test 109 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 289.936492 - 0: The maximum resident set size (KB) = 521536 + 0: The total amount of wall time = 310.902856 + 0: The maximum resident set size (KB) = 522836 Test 109 control_wam_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3767,14 +3767,14 @@ Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 252.647918 - 0: The maximum resident set size (KB) = 1087688 + 0: The total amount of wall time = 300.192800 + 0: The maximum resident set size (KB) = 1094528 Test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rap_control_dyn32_phy32 Checking test 111 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3821,14 +3821,14 @@ Checking test 111 rap_control_dyn32_phy32 results .... Comparing 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.758112 - 0: The maximum resident set size (KB) = 1006020 + 0: The total amount of wall time = 409.977149 + 0: The maximum resident set size (KB) = 1001512 Test 111 rap_control_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hrrr_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hrrr_control_dyn32_phy32 Checking test 112 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3875,14 +3875,14 @@ Checking test 112 hrrr_control_dyn32_phy32 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 = 203.432345 - 0: The maximum resident set size (KB) = 960216 + 0: The total amount of wall time = 199.697349 + 0: The maximum resident set size (KB) = 904376 Test 112 hrrr_control_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_2threads_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rap_2threads_dyn32_phy32 Checking test 113 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3929,14 +3929,14 @@ Checking test 113 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 400.134561 - 0: The maximum resident set size (KB) = 1030680 + 0: The total amount of wall time = 430.549800 + 0: The maximum resident set size (KB) = 1023092 Test 113 rap_2threads_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hrrr_control_2threads_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hrrr_control_2threads_dyn32_phy32 Checking test 114 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3983,14 +3983,14 @@ Checking test 114 hrrr_control_2threads_dyn32_phy32 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 = 206.607952 - 0: The maximum resident set size (KB) = 1006572 + 0: The total amount of wall time = 205.844018 + 0: The maximum resident set size (KB) = 1004944 Test 114 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hrrr_control_decomp_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hrrr_control_decomp_dyn32_phy32 Checking test 115 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4037,14 +4037,14 @@ Checking test 115 hrrr_control_decomp_dyn32_phy32 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 = 215.344012 - 0: The maximum resident set size (KB) = 902636 + 0: The total amount of wall time = 210.840531 + 0: The maximum resident set size (KB) = 905488 Test 115 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_restart_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rap_restart_dyn32_phy32 Checking test 116 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4083,14 +4083,14 @@ Checking test 116 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 282.287813 - 0: The maximum resident set size (KB) = 954616 + 0: The total amount of wall time = 283.640350 + 0: The maximum resident set size (KB) = 942716 Test 116 rap_restart_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hrrr_control_restart_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hrrr_control_restart_dyn32_phy32 Checking test 117 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4129,14 +4129,14 @@ Checking test 117 hrrr_control_restart_dyn32_phy32 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 = 103.415718 - 0: The maximum resident set size (KB) = 869096 + 0: The total amount of wall time = 102.336733 + 0: The maximum resident set size (KB) = 868344 Test 117 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn64_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_control_dyn64_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rap_control_dyn64_phy32 Checking test 118 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4183,81 +4183,81 @@ Checking test 118 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 250.548117 - 0: The maximum resident set size (KB) = 975360 + 0: The total amount of wall time = 276.146607 + 0: The maximum resident set size (KB) = 972832 Test 118 rap_control_dyn64_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_control_debug_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rap_control_debug_dyn32_phy32 Checking test 119 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.325041 - 0: The maximum resident set size (KB) = 1059336 + 0: The total amount of wall time = 275.967615 + 0: The maximum resident set size (KB) = 1060872 Test 119 rap_control_debug_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hrrr_control_debug_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hrrr_control_debug_dyn32_phy32 Checking test 120 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 282.257416 - 0: The maximum resident set size (KB) = 1053436 + 0: The total amount of wall time = 268.454857 + 0: The maximum resident set size (KB) = 1057460 Test 120 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug_dyn64_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/rap_control_dyn64_phy32_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rap_control_dyn64_phy32_debug Checking test 121 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 285.234600 - 0: The maximum resident set size (KB) = 1103200 + 0: The total amount of wall time = 285.853197 + 0: The maximum resident set size (KB) = 1092604 Test 121 rap_control_dyn64_phy32_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hafs_regional_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hafs_regional_atm Checking test 122 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 269.737592 - 0: The maximum resident set size (KB) = 1055196 + 0: The total amount of wall time = 312.887134 + 0: The maximum resident set size (KB) = 1053460 Test 122 hafs_regional_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hafs_regional_atm_thompson_gfdlsf +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hafs_regional_atm_thompson_gfdlsf Checking test 123 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 398.032081 - 0: The maximum resident set size (KB) = 1422116 + 0: The total amount of wall time = 467.225919 + 0: The maximum resident set size (KB) = 1424704 Test 123 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_ocn -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hafs_regional_atm_ocn +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hafs_regional_atm_ocn Checking test 124 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4266,14 +4266,14 @@ Checking test 124 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 386.481844 - 0: The maximum resident set size (KB) = 1229488 + 0: The total amount of wall time = 417.792851 + 0: The maximum resident set size (KB) = 1230944 Test 124 hafs_regional_atm_ocn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_wav -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hafs_regional_atm_wav +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hafs_regional_atm_wav Checking test 125 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4282,14 +4282,14 @@ Checking test 125 hafs_regional_atm_wav 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 = 733.354407 - 0: The maximum resident set size (KB) = 1261740 + 0: The total amount of wall time = 800.225245 + 0: The maximum resident set size (KB) = 1260232 Test 125 hafs_regional_atm_wav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_ocn_wav -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hafs_regional_atm_ocn_wav +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hafs_regional_atm_ocn_wav Checking test 126 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4300,28 +4300,28 @@ Checking test 126 hafs_regional_atm_ocn_wav results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 832.389094 - 0: The maximum resident set size (KB) = 1282792 + 0: The total amount of wall time = 835.929364 + 0: The maximum resident set size (KB) = 1279908 Test 126 hafs_regional_atm_ocn_wav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hafs_regional_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hafs_regional_1nest_atm Checking test 127 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 365.599015 - 0: The maximum resident set size (KB) = 513020 + 0: The total amount of wall time = 381.244364 + 0: The maximum resident set size (KB) = 505840 Test 127 hafs_regional_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hafs_regional_telescopic_2nests_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hafs_regional_telescopic_2nests_atm Checking test 128 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4330,28 +4330,28 @@ Checking test 128 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 415.958286 - 0: The maximum resident set size (KB) = 515156 + 0: The total amount of wall time = 414.924558 + 0: The maximum resident set size (KB) = 462512 Test 128 hafs_regional_telescopic_2nests_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hafs_global_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hafs_global_1nest_atm Checking test 129 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 175.662200 - 0: The maximum resident set size (KB) = 357592 + 0: The total amount of wall time = 177.796777 + 0: The maximum resident set size (KB) = 353644 Test 129 hafs_global_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_multiple_4nests_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hafs_global_multiple_4nests_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hafs_global_multiple_4nests_atm Checking test 130 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4369,14 +4369,14 @@ Checking test 130 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 469.955226 - 0: The maximum resident set size (KB) = 427488 + 0: The total amount of wall time = 458.244974 + 0: The maximum resident set size (KB) = 424220 Test 130 hafs_global_multiple_4nests_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hafs_regional_specified_moving_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hafs_regional_specified_moving_1nest_atm Checking test 131 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4385,28 +4385,28 @@ Checking test 131 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 229.514594 - 0: The maximum resident set size (KB) = 525540 + 0: The total amount of wall time = 228.732503 + 0: The maximum resident set size (KB) = 523224 Test 131 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hafs_regional_storm_following_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hafs_regional_storm_following_1nest_atm Checking test 132 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 217.383257 - 0: The maximum resident set size (KB) = 520812 + 0: The total amount of wall time = 217.123713 + 0: The maximum resident set size (KB) = 524396 Test 132 hafs_regional_storm_following_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hafs_regional_storm_following_1nest_atm_ocn +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hafs_regional_storm_following_1nest_atm_ocn Checking test 133 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4415,42 +4415,42 @@ Checking test 133 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 288.268738 - 0: The maximum resident set size (KB) = 567400 + 0: The total amount of wall time = 286.415148 + 0: The maximum resident set size (KB) = 567684 Test 133 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_storm_following_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hafs_global_storm_following_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hafs_global_storm_following_1nest_atm Checking test 134 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 67.916198 - 0: The maximum resident set size (KB) = 372756 + 0: The total amount of wall time = 68.068170 + 0: The maximum resident set size (KB) = 372676 Test 134 hafs_global_storm_following_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 747.687513 - 0: The maximum resident set size (KB) = 587772 + 0: The total amount of wall time = 767.205881 + 0: The maximum resident set size (KB) = 586256 Test 135 hafs_regional_storm_following_1nest_atm_ocn_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 136 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4461,14 +4461,14 @@ Checking test 136 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 542.186519 - 0: The maximum resident set size (KB) = 617936 + 0: The total amount of wall time = 535.659874 + 0: The maximum resident set size (KB) = 620276 Test 136 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_docn -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hafs_regional_docn +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hafs_regional_docn Checking test 137 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4476,14 +4476,14 @@ Checking test 137 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 360.868688 - 0: The maximum resident set size (KB) = 1231964 + 0: The total amount of wall time = 361.940368 + 0: The maximum resident set size (KB) = 1234596 Test 137 hafs_regional_docn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_docn_oisst -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hafs_regional_docn_oisst +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hafs_regional_docn_oisst Checking test 138 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4491,131 +4491,131 @@ Checking test 138 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 359.140965 - 0: The maximum resident set size (KB) = 1230980 + 0: The total amount of wall time = 359.957137 + 0: The maximum resident set size (KB) = 1228128 Test 138 hafs_regional_docn_oisst PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_datm_cdeps -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/hafs_regional_datm_cdeps +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hafs_regional_datm_cdeps Checking test 139 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 945.569260 - 0: The maximum resident set size (KB) = 1045080 + 0: The total amount of wall time = 935.386400 + 0: The maximum resident set size (KB) = 1038440 Test 139 hafs_regional_datm_cdeps PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/datm_cdeps_control_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/datm_cdeps_control_cfsr Checking test 140 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.198151 - 0: The maximum resident set size (KB) = 1058448 + 0: The total amount of wall time = 146.301524 + 0: The maximum resident set size (KB) = 1069068 Test 140 datm_cdeps_control_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/datm_cdeps_restart_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/datm_cdeps_restart_cfsr Checking test 141 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 91.947296 - 0: The maximum resident set size (KB) = 1008020 + 0: The total amount of wall time = 89.795551 + 0: The maximum resident set size (KB) = 1027020 Test 141 datm_cdeps_restart_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/datm_cdeps_control_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/datm_cdeps_control_gefs Checking test 142 datm_cdeps_control_gefs 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.022056 - 0: The maximum resident set size (KB) = 959064 + 0: The total amount of wall time = 145.340231 + 0: The maximum resident set size (KB) = 967048 Test 142 datm_cdeps_control_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_iau_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/datm_cdeps_iau_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/datm_cdeps_iau_gefs Checking test 143 datm_cdeps_iau_gefs 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.581507 - 0: The maximum resident set size (KB) = 968112 + 0: The total amount of wall time = 146.731199 + 0: The maximum resident set size (KB) = 960924 Test 143 datm_cdeps_iau_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_stochy_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/datm_cdeps_stochy_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/datm_cdeps_stochy_gefs Checking test 144 datm_cdeps_stochy_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 142.841358 - 0: The maximum resident set size (KB) = 976704 + 0: The total amount of wall time = 148.690260 + 0: The maximum resident set size (KB) = 970292 Test 144 datm_cdeps_stochy_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_ciceC_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/datm_cdeps_ciceC_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/datm_cdeps_ciceC_cfsr Checking test 145 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 144.747532 - 0: The maximum resident set size (KB) = 1074384 + 0: The total amount of wall time = 146.904658 + 0: The maximum resident set size (KB) = 1065564 Test 145 datm_cdeps_ciceC_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_bulk_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/datm_cdeps_bulk_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/datm_cdeps_bulk_cfsr Checking test 146 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.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.278170 - 0: The maximum resident set size (KB) = 1071232 + 0: The total amount of wall time = 144.742426 + 0: The maximum resident set size (KB) = 1077088 Test 146 datm_cdeps_bulk_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_bulk_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/datm_cdeps_bulk_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/datm_cdeps_bulk_gefs Checking test 147 datm_cdeps_bulk_gefs 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.761412 - 0: The maximum resident set size (KB) = 972640 + 0: The total amount of wall time = 145.280203 + 0: The maximum resident set size (KB) = 964556 Test 147 datm_cdeps_bulk_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_mx025_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/datm_cdeps_mx025_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/datm_cdeps_mx025_cfsr Checking test 148 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4624,14 +4624,14 @@ Checking test 148 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 446.164853 - 0: The maximum resident set size (KB) = 881144 + 0: The total amount of wall time = 432.216900 + 0: The maximum resident set size (KB) = 883584 Test 148 datm_cdeps_mx025_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_mx025_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/datm_cdeps_mx025_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/datm_cdeps_mx025_gefs Checking test 149 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4640,77 +4640,77 @@ Checking test 149 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 447.343849 - 0: The maximum resident set size (KB) = 926128 + 0: The total amount of wall time = 452.654056 + 0: The maximum resident set size (KB) = 929892 Test 149 datm_cdeps_mx025_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/datm_cdeps_multiple_files_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/datm_cdeps_multiple_files_cfsr Checking test 150 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 149.634590 - 0: The maximum resident set size (KB) = 1055320 + 0: The total amount of wall time = 143.535851 + 0: The maximum resident set size (KB) = 1074024 Test 150 datm_cdeps_multiple_files_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/datm_cdeps_3072x1536_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/datm_cdeps_3072x1536_cfsr Checking test 151 datm_cdeps_3072x1536_cfsr 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 = 197.917689 - 0: The maximum resident set size (KB) = 2365664 + 0: The total amount of wall time = 200.885737 + 0: The maximum resident set size (KB) = 2357588 Test 151 datm_cdeps_3072x1536_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_gfs -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/datm_cdeps_gfs +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/datm_cdeps_gfs Checking test 152 datm_cdeps_gfs 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 = 198.168709 - 0: The maximum resident set size (KB) = 2359908 + 0: The total amount of wall time = 200.305562 + 0: The maximum resident set size (KB) = 2352240 Test 152 datm_cdeps_gfs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_debug_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/datm_cdeps_debug_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/datm_cdeps_debug_cfsr Checking test 153 datm_cdeps_debug_cfsr results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 354.017644 - 0: The maximum resident set size (KB) = 991668 + 0: The total amount of wall time = 358.782533 + 0: The maximum resident set size (KB) = 995112 Test 153 datm_cdeps_debug_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/datm_cdeps_control_cfsr_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/datm_cdeps_control_cfsr_faster Checking test 154 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 143.991181 - 0: The maximum resident set size (KB) = 1070184 + 0: The total amount of wall time = 151.496396 + 0: The maximum resident set size (KB) = 1028396 Test 154 datm_cdeps_control_cfsr_faster PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_lnd_gswp3 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/datm_cdeps_lnd_gswp3 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/datm_cdeps_lnd_gswp3 Checking test 155 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4719,14 +4719,14 @@ Checking test 155 datm_cdeps_lnd_gswp3 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.030856 - 0: The maximum resident set size (KB) = 261612 + 0: The total amount of wall time = 7.421626 + 0: The maximum resident set size (KB) = 260444 Test 155 datm_cdeps_lnd_gswp3 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_lnd_gswp3 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/datm_cdeps_lnd_gswp3_rst +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/datm_cdeps_lnd_gswp3_rst Checking test 156 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4735,14 +4735,14 @@ Checking test 156 datm_cdeps_lnd_gswp3_rst 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.267089 - 0: The maximum resident set size (KB) = 284856 + 0: The total amount of wall time = 18.881271 + 0: The maximum resident set size (KB) = 273100 Test 156 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_atmlnd_sbs -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_p8_atmlnd_sbs +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_p8_atmlnd_sbs Checking test 157 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4827,14 +4827,14 @@ Checking test 157 control_p8_atmlnd_sbs 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.681403 - 0: The maximum resident set size (KB) = 1606260 + 0: The total amount of wall time = 208.973431 + 0: The maximum resident set size (KB) = 1615744 Test 157 control_p8_atmlnd_sbs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/atmwav_control_noaero_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/atmwav_control_noaero_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/atmwav_control_noaero_p8 Checking test 158 atmwav_control_noaero_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4877,14 +4877,14 @@ Checking test 158 atmwav_control_noaero_p8 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.705737 - 0: The maximum resident set size (KB) = 1645460 + 0: The total amount of wall time = 95.535265 + 0: The maximum resident set size (KB) = 1637160 Test 158 atmwav_control_noaero_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_atmwav -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/control_atmwav +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_atmwav Checking test 159 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4928,14 +4928,14 @@ Checking test 159 control_atmwav 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.494969 - 0: The maximum resident set size (KB) = 665408 + 0: The total amount of wall time = 88.006758 + 0: The maximum resident set size (KB) = 662596 Test 159 control_atmwav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/atmaero_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/atmaero_control_p8 Checking test 160 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4979,14 +4979,14 @@ Checking test 160 atmaero_control_p8 results .... Comparing 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.145887 - 0: The maximum resident set size (KB) = 2975780 + 0: The total amount of wall time = 231.506948 + 0: The maximum resident set size (KB) = 2901316 Test 160 atmaero_control_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8_rad -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/atmaero_control_p8_rad +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/atmaero_control_p8_rad Checking test 161 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5030,14 +5030,14 @@ Checking test 161 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 279.132207 - 0: The maximum resident set size (KB) = 3050592 + 0: The total amount of wall time = 280.125635 + 0: The maximum resident set size (KB) = 3052032 Test 161 atmaero_control_p8_rad PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8_rad_micro -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/atmaero_control_p8_rad_micro +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/atmaero_control_p8_rad_micro Checking test 162 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5081,14 +5081,14 @@ Checking test 162 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 286.603984 - 0: The maximum resident set size (KB) = 3055608 + 0: The total amount of wall time = 286.367837 + 0: The maximum resident set size (KB) = 3049360 Test 162 atmaero_control_p8_rad_micro PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/regional_atmaq +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/regional_atmaq Checking test 163 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5104,14 +5104,14 @@ Checking test 163 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 615.116390 - 0: The maximum resident set size (KB) = 1478476 + 0: The total amount of wall time = 625.820746 + 0: The maximum resident set size (KB) = 1479892 Test 163 regional_atmaq PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/regional_atmaq_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/regional_atmaq_debug Checking test 164 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5125,14 +5125,14 @@ Checking test 164 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1205.516766 - 0: The maximum resident set size (KB) = 1401464 + 0: The total amount of wall time = 1240.038893 + 0: The maximum resident set size (KB) = 1398692 Test 164 regional_atmaq_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_6350/regional_atmaq_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/regional_atmaq_faster Checking test 165 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5148,12 +5148,12 @@ Checking test 165 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 541.524071 - 0: The maximum resident set size (KB) = 1474248 + 0: The total amount of wall time = 545.173445 + 0: The maximum resident set size (KB) = 1481952 Test 165 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Sat Apr 22 14:16:41 CDT 2023 -Elapsed time: 01h:14m:53s. Have a nice day! +Tue Apr 25 10:19:11 CDT 2023 +Elapsed time: 01h:15m:56s. Have a nice day! diff --git a/tests/RegressionTests_wcoss2.intel.log b/tests/RegressionTests_wcoss2.intel.log index 529b8cf6572..5cff1d5aceb 100644 --- a/tests/RegressionTests_wcoss2.intel.log +++ b/tests/RegressionTests_wcoss2.intel.log @@ -1,35 +1,34 @@ -Mon Apr 24 12:59:32 UTC 2023 +Tue Apr 25 01:34:50 UTC 2023 Start Regression test -Test 012 compile FAIL - -Compile 001 elapsed time 589 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 1114 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 2263 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 510 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 005 elapsed time 1121 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 873 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 525 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 008 elapsed time 962 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 009 elapsed time 471 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 1422 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 1739 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 568 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 803 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 015 elapsed time 1088 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 2135 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 017 elapsed time 2220 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 1673 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 019 elapsed time 1175 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 1515 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 2527 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 022 elapsed time 1329 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 2053 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 024 elapsed time 1049 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 025 elapsed time 1437 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8_mixedmode -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/cpld_control_p8_mixedmode +Compile 001 elapsed time 813 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1766 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 632 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 533 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 005 elapsed time 1901 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 982 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 1045 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 008 elapsed time 1163 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 493 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 1046 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 696 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 826 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 013 elapsed time 310 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 014 elapsed time 772 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 632 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 225 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 017 elapsed time 680 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 987 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 019 elapsed time 423 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 1122 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 1149 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 022 elapsed time 826 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 497 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 024 elapsed time 457 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 025 elapsed time 970 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8_mixedmode +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -94,14 +93,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 332.786944 -The maximum resident set size (KB) = 2954188 +The total amount of wall time = 340.001886 +The maximum resident set size (KB) = 2953484 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/cpld_control_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/cpld_control_p8 Checking test 002 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -166,14 +165,14 @@ Checking test 002 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 384.428658 -The maximum resident set size (KB) = 2981552 +The total amount of wall time = 391.877435 +The maximum resident set size (KB) = 2983508 Test 002 cpld_control_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/cpld_restart_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/cpld_restart_p8 Checking test 003 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -226,14 +225,14 @@ Checking test 003 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 235.382308 -The maximum resident set size (KB) = 2871276 +The total amount of wall time = 235.956127 +The maximum resident set size (KB) = 2873452 Test 003 cpld_restart_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/cpld_control_qr_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/cpld_control_qr_p8 Checking test 004 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -298,14 +297,14 @@ Checking test 004 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 384.675576 -The maximum resident set size (KB) = 2993652 +The total amount of wall time = 393.197844 +The maximum resident set size (KB) = 2994132 Test 004 cpld_control_qr_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/cpld_restart_qr_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/cpld_restart_qr_p8 Checking test 005 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -358,14 +357,14 @@ Checking test 005 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 245.986310 -The maximum resident set size (KB) = 2880060 +The total amount of wall time = 235.985489 +The maximum resident set size (KB) = 2884632 Test 005 cpld_restart_qr_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/cpld_2threads_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/cpld_2threads_p8 Checking test 006 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -418,14 +417,14 @@ Checking test 006 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 367.611283 -The maximum resident set size (KB) = 3283632 +The total amount of wall time = 372.954929 +The maximum resident set size (KB) = 3286324 Test 006 cpld_2threads_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/cpld_decomp_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/cpld_decomp_p8 Checking test 007 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -478,14 +477,14 @@ Checking test 007 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 383.471617 -The maximum resident set size (KB) = 2977728 +The total amount of wall time = 386.889054 +The maximum resident set size (KB) = 2982984 Test 007 cpld_decomp_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/cpld_mpi_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/cpld_mpi_p8 Checking test 008 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -538,14 +537,14 @@ Checking test 008 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 316.137772 -The maximum resident set size (KB) = 2910048 +The total amount of wall time = 318.863659 +The maximum resident set size (KB) = 2922880 Test 008 cpld_mpi_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_ciceC_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/cpld_control_ciceC_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_ciceC_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/cpld_control_ciceC_p8 Checking test 009 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -610,14 +609,14 @@ Checking test 009 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 386.377634 -The maximum resident set size (KB) = 2980368 +The total amount of wall time = 390.747703 +The maximum resident set size (KB) = 2987300 Test 009 cpld_control_ciceC_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_bmark_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/cpld_bmark_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_bmark_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/cpld_bmark_p8 Checking test 010 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -665,14 +664,14 @@ Checking test 010 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 936.996522 -The maximum resident set size (KB) = 3920880 +The total amount of wall time = 945.765071 +The maximum resident set size (KB) = 3922176 Test 010 cpld_bmark_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_bmark_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/cpld_restart_bmark_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_bmark_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/cpld_restart_bmark_p8 Checking test 011 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -720,14 +719,14 @@ Checking test 011 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 651.935188 -The maximum resident set size (KB) = 3896992 +The total amount of wall time = 671.830979 +The maximum resident set size (KB) = 3896688 Test 011 cpld_restart_bmark_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/cpld_control_noaero_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/cpld_control_noaero_p8 Checking test 012 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -791,14 +790,14 @@ Checking test 012 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 281.641551 -The maximum resident set size (KB) = 1575968 +The total amount of wall time = 284.112706 +The maximum resident set size (KB) = 1575508 Test 012 cpld_control_noaero_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/cpld_control_nowave_noaero_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_c96_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/cpld_control_nowave_noaero_p8 Checking test 013 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -860,14 +859,14 @@ Checking test 013 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 298.902385 -The maximum resident set size (KB) = 1635732 +The total amount of wall time = 302.515510 +The maximum resident set size (KB) = 1628184 Test 013 cpld_control_nowave_noaero_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/cpld_control_noaero_p8_agrid +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_noaero_p8_agrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/cpld_control_noaero_p8_agrid Checking test 014 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -929,14 +928,14 @@ Checking test 014 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 306.436427 -The maximum resident set size (KB) = 1628592 +The total amount of wall time = 308.277910 +The maximum resident set size (KB) = 1623840 Test 014 cpld_control_noaero_p8_agrid PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/cpld_control_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/cpld_control_c48 Checking test 015 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -986,14 +985,14 @@ Checking test 015 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 433.637237 -The maximum resident set size (KB) = 2636848 +The total amount of wall time = 440.804071 +The maximum resident set size (KB) = 2640584 Test 015 cpld_control_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/cpld_warmstart_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/cpld_warmstart_c48 Checking test 016 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1043,14 +1042,14 @@ Checking test 016 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 122.526893 -The maximum resident set size (KB) = 2654352 +The total amount of wall time = 125.741119 +The maximum resident set size (KB) = 2656936 Test 016 cpld_warmstart_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/cpld_restart_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/cpld_restart_c48 Checking test 017 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1100,14 +1099,14 @@ Checking test 017 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 68.401655 -The maximum resident set size (KB) = 2072660 +The total amount of wall time = 71.214394 +The maximum resident set size (KB) = 2071140 Test 017 cpld_restart_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/cpld_control_p8_faster +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/cpld_control_p8_faster Checking test 018 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1172,15 +1171,33 @@ Checking test 018 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 382.884060 -The maximum resident set size (KB) = 2979692 +The total amount of wall time = 384.508364 +The maximum resident set size (KB) = 2985052 Test 018 cpld_control_p8_faster PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_CubedSphereGrid -Checking test 019 control_CubedSphereGrid results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_flake +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_flake +Checking test 019 control_flake results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + +The total amount of wall time = 215.676452 +The maximum resident set size (KB) = 568584 + +Test 019 control_flake PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_CubedSphereGrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_CubedSphereGrid +Checking test 020 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1206,15 +1223,15 @@ Checking test 019 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 131.389203 -The maximum resident set size (KB) = 518472 +The total amount of wall time = 130.713541 +The maximum resident set size (KB) = 520448 -Test 019 control_CubedSphereGrid PASS +Test 020 control_CubedSphereGrid PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_latlon -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_latlon -Checking test 020 control_latlon results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_latlon +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_latlon +Checking test 021 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1224,15 +1241,15 @@ Checking test 020 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 132.968888 -The maximum resident set size (KB) = 517172 +The total amount of wall time = 133.657363 +The maximum resident set size (KB) = 519504 -Test 020 control_latlon PASS +Test 021 control_latlon PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_wrtGauss_netcdf_parallel -Checking test 021 control_wrtGauss_netcdf_parallel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_wrtGauss_netcdf_parallel +Checking test 022 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1242,15 +1259,15 @@ Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.753891 -The maximum resident set size (KB) = 513400 +The total amount of wall time = 135.388301 +The maximum resident set size (KB) = 517448 -Test 021 control_wrtGauss_netcdf_parallel PASS +Test 022 control_wrtGauss_netcdf_parallel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_c48 -Checking test 022 control_c48 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_c48 +Checking test 023 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1288,15 +1305,15 @@ Checking test 022 control_c48 results .... 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.610061 -The maximum resident set size (KB) = 673976 +The total amount of wall time = 327.192590 +The maximum resident set size (KB) = 680900 -Test 022 control_c48 PASS +Test 023 control_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c192 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_c192 -Checking test 023 control_c192 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_c192 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_c192 +Checking test 024 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1306,15 +1323,15 @@ Checking test 023 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 531.961170 -The maximum resident set size (KB) = 616828 +The total amount of wall time = 528.809717 +The maximum resident set size (KB) = 621520 -Test 023 control_c192 PASS +Test 024 control_c192 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c384 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_c384 -Checking test 024 control_c384 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_c384 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_c384 +Checking test 025 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1324,15 +1341,15 @@ Checking test 024 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 589.700932 -The maximum resident set size (KB) = 920804 +The total amount of wall time = 566.547287 +The maximum resident set size (KB) = 935640 -Test 024 control_c384 PASS +Test 025 control_c384 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c384gdas -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_c384gdas -Checking test 025 control_c384gdas results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_c384gdas +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_c384gdas +Checking test 026 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -1374,15 +1391,15 @@ Checking test 025 control_c384gdas 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 = 498.218990 -The maximum resident set size (KB) = 1064028 +The total amount of wall time = 495.644387 +The maximum resident set size (KB) = 1064724 -Test 025 control_c384gdas PASS +Test 026 control_c384gdas PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_stochy -Checking test 026 control_stochy results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_stochy +Checking test 027 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1392,29 +1409,29 @@ Checking test 026 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 90.417520 -The maximum resident set size (KB) = 522660 +The total amount of wall time = 90.294792 +The maximum resident set size (KB) = 525916 -Test 026 control_stochy PASS +Test 027 control_stochy PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_stochy_restart -Checking test 027 control_stochy_restart results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_stochy_restart +Checking test 028 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 49.242742 -The maximum resident set size (KB) = 290832 +The total amount of wall time = 50.322031 +The maximum resident set size (KB) = 296000 -Test 027 control_stochy_restart PASS +Test 028 control_stochy_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_lndp -Checking test 028 control_lndp results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_lndp +Checking test 029 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1424,15 +1441,15 @@ Checking test 028 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 83.451979 -The maximum resident set size (KB) = 520864 +The total amount of wall time = 83.224283 +The maximum resident set size (KB) = 522204 -Test 028 control_lndp PASS +Test 029 control_lndp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_iovr4 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_iovr4 -Checking test 029 control_iovr4 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_iovr4 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_iovr4 +Checking test 030 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1446,15 +1463,15 @@ Checking test 029 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 136.424906 -The maximum resident set size (KB) = 516640 +The total amount of wall time = 136.468942 +The maximum resident set size (KB) = 520820 -Test 029 control_iovr4 PASS +Test 030 control_iovr4 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_iovr5 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_iovr5 -Checking test 030 control_iovr5 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_iovr5 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_iovr5 +Checking test 031 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1468,15 +1485,15 @@ Checking test 030 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 136.648895 -The maximum resident set size (KB) = 519496 +The total amount of wall time = 135.818032 +The maximum resident set size (KB) = 522432 -Test 030 control_iovr5 PASS +Test 031 control_iovr5 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_p8 -Checking test 031 control_p8 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_p8 +Checking test 032 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1522,15 +1539,15 @@ Checking test 031 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 191.641218 -The maximum resident set size (KB) = 1485720 +The total amount of wall time = 180.231538 +The maximum resident set size (KB) = 1488380 -Test 031 control_p8 PASS +Test 032 control_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_restart_p8 -Checking test 032 control_restart_p8 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_restart_p8 +Checking test 033 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1568,15 +1585,15 @@ Checking test 032 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 101.539990 -The maximum resident set size (KB) = 656120 +The total amount of wall time = 105.972900 +The maximum resident set size (KB) = 659764 -Test 032 control_restart_p8 PASS +Test 033 control_restart_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_qr_p8 -Checking test 033 control_qr_p8 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_qr_p8 +Checking test 034 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1622,15 +1639,15 @@ Checking test 033 control_qr_p8 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 = 179.926871 -The maximum resident set size (KB) = 1498956 +The total amount of wall time = 179.075772 +The maximum resident set size (KB) = 1494784 -Test 033 control_qr_p8 PASS +Test 034 control_qr_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_restart_qr_p8 -Checking test 034 control_restart_qr_p8 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_restart_qr_p8 +Checking test 035 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1668,15 +1685,15 @@ Checking test 034 control_restart_qr_p8 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 = 101.997620 -The maximum resident set size (KB) = 666896 +The total amount of wall time = 105.970015 +The maximum resident set size (KB) = 668788 -Test 034 control_restart_qr_p8 PASS +Test 035 control_restart_qr_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_decomp_p8 -Checking test 035 control_decomp_p8 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_decomp_p8 +Checking test 036 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1718,15 +1735,15 @@ Checking test 035 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 200.108793 -The maximum resident set size (KB) = 1479360 +The total amount of wall time = 182.475428 +The maximum resident set size (KB) = 1489336 -Test 035 control_decomp_p8 PASS +Test 036 control_decomp_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_2threads_p8 -Checking test 036 control_2threads_p8 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_2threads_p8 +Checking test 037 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1768,15 +1785,15 @@ Checking test 036 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 176.135736 -The maximum resident set size (KB) = 1580672 +The total amount of wall time = 157.310533 +The maximum resident set size (KB) = 1575452 -Test 036 control_2threads_p8 PASS +Test 037 control_2threads_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_p8_lndp -Checking test 037 control_p8_lndp results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_p8_lndp +Checking test 038 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1794,15 +1811,15 @@ Checking test 037 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 330.925937 -The maximum resident set size (KB) = 1488000 +The total amount of wall time = 321.669075 +The maximum resident set size (KB) = 1487980 -Test 037 control_p8_lndp PASS +Test 038 control_p8_lndp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_rrtmgp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_p8_rrtmgp -Checking test 038 control_p8_rrtmgp results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8_rrtmgp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_p8_rrtmgp +Checking test 039 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1848,15 +1865,15 @@ Checking test 038 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 251.732612 -The maximum resident set size (KB) = 1547224 +The total amount of wall time = 236.029674 +The maximum resident set size (KB) = 1550064 -Test 038 control_p8_rrtmgp PASS +Test 039 control_p8_rrtmgp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_mynn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_p8_mynn -Checking test 039 control_p8_mynn results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8_mynn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_p8_mynn +Checking test 040 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1902,15 +1919,15 @@ Checking test 039 control_p8_mynn results .... 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.904170 -The maximum resident set size (KB) = 1498264 +The total amount of wall time = 181.534677 +The maximum resident set size (KB) = 1486308 -Test 039 control_p8_mynn PASS +Test 040 control_p8_mynn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/merra2_thompson -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/merra2_thompson -Checking test 040 merra2_thompson results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/merra2_thompson +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/merra2_thompson +Checking test 041 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1956,15 +1973,15 @@ Checking test 040 merra2_thompson results .... 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.681940 -The maximum resident set size (KB) = 1491160 +The total amount of wall time = 205.300003 +The maximum resident set size (KB) = 1497852 -Test 040 merra2_thompson PASS +Test 041 merra2_thompson PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/regional_control -Checking test 041 regional_control results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/regional_control +Checking test 042 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1974,29 +1991,29 @@ Checking test 041 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 311.992347 -The maximum resident set size (KB) = 657496 +The total amount of wall time = 292.945252 +The maximum resident set size (KB) = 660052 -Test 041 regional_control PASS +Test 042 regional_control PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/regional_restart -Checking test 042 regional_restart results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/regional_restart +Checking test 043 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 155.597256 -The maximum resident set size (KB) = 653292 +The total amount of wall time = 164.919689 +The maximum resident set size (KB) = 654936 -Test 042 regional_restart PASS +Test 043 regional_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/regional_control_qr -Checking test 043 regional_control_qr results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/regional_control_qr +Checking test 044 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2006,29 +2023,29 @@ Checking test 043 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 308.573372 -The maximum resident set size (KB) = 653556 +The total amount of wall time = 293.707452 +The maximum resident set size (KB) = 659648 -Test 043 regional_control_qr PASS +Test 044 regional_control_qr PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/regional_restart_qr -Checking test 044 regional_restart_qr results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/regional_restart_qr +Checking test 045 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 156.610277 -The maximum resident set size (KB) = 653332 +The total amount of wall time = 161.915663 +The maximum resident set size (KB) = 660728 -Test 044 regional_restart_qr PASS +Test 045 regional_restart_qr PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/regional_decomp -Checking test 045 regional_decomp results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/regional_decomp +Checking test 046 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2038,15 +2055,15 @@ Checking test 045 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 325.659223 -The maximum resident set size (KB) = 654516 +The total amount of wall time = 310.196459 +The maximum resident set size (KB) = 658016 -Test 045 regional_decomp PASS +Test 046 regional_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/regional_2threads -Checking test 046 regional_2threads results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/regional_2threads +Checking test 047 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2056,44 +2073,44 @@ Checking test 046 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 193.509057 -The maximum resident set size (KB) = 693768 +The total amount of wall time = 181.326331 +The maximum resident set size (KB) = 697080 -Test 046 regional_2threads PASS +Test 047 regional_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_noquilt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/regional_noquilt -Checking test 047 regional_noquilt results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_noquilt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/regional_noquilt +Checking test 048 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 315.075000 -The maximum resident set size (KB) = 650708 +The total amount of wall time = 317.633157 +The maximum resident set size (KB) = 651488 -Test 047 regional_noquilt PASS +Test 048 regional_noquilt PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/regional_netcdf_parallel -Checking test 048 regional_netcdf_parallel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/regional_netcdf_parallel +Checking test 049 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK -The total amount of wall time = 290.159693 -The maximum resident set size (KB) = 650444 +The total amount of wall time = 286.236683 +The maximum resident set size (KB) = 654196 -Test 048 regional_netcdf_parallel PASS +Test 049 regional_netcdf_parallel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/regional_2dwrtdecomp -Checking test 049 regional_2dwrtdecomp results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/regional_2dwrtdecomp +Checking test 050 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2103,15 +2120,15 @@ Checking test 049 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 306.258222 -The maximum resident set size (KB) = 654280 +The total amount of wall time = 290.824230 +The maximum resident set size (KB) = 655852 -Test 049 regional_2dwrtdecomp PASS +Test 050 regional_2dwrtdecomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/fv3_regional_wofs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/regional_wofs -Checking test 050 regional_wofs results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/fv3_regional_wofs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/regional_wofs +Checking test 051 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2121,15 +2138,15 @@ Checking test 050 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 366.468870 -The maximum resident set size (KB) = 342520 +The total amount of wall time = 370.850743 +The maximum resident set size (KB) = 346728 -Test 050 regional_wofs PASS +Test 051 regional_wofs PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rap_control -Checking test 051 rap_control results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rap_control +Checking test 052 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2175,15 +2192,15 @@ Checking test 051 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 418.516176 -The maximum resident set size (KB) = 891092 +The total amount of wall time = 426.408955 +The maximum resident set size (KB) = 897632 -Test 051 rap_control PASS +Test 052 rap_control PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/regional_spp_sppt_shum_skeb -Checking test 052 regional_spp_sppt_shum_skeb results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_spp_sppt_shum_skeb +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/regional_spp_sppt_shum_skeb +Checking test 053 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -2193,15 +2210,15 @@ Checking test 052 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 245.803208 -The maximum resident set size (KB) = 990588 +The total amount of wall time = 246.958778 +The maximum resident set size (KB) = 983776 -Test 052 regional_spp_sppt_shum_skeb PASS +Test 053 regional_spp_sppt_shum_skeb PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rap_decomp -Checking test 053 rap_decomp results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rap_decomp +Checking test 054 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2247,15 +2264,15 @@ Checking test 053 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 433.654119 -The maximum resident set size (KB) = 896048 +The total amount of wall time = 435.465914 +The maximum resident set size (KB) = 898648 -Test 053 rap_decomp PASS +Test 054 rap_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rap_2threads -Checking test 054 rap_2threads results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rap_2threads +Checking test 055 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2301,15 +2318,15 @@ Checking test 054 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 388.907757 -The maximum resident set size (KB) = 970204 +The total amount of wall time = 387.026344 +The maximum resident set size (KB) = 973852 -Test 054 rap_2threads PASS +Test 055 rap_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rap_restart -Checking test 055 rap_restart results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rap_restart +Checking test 056 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2347,15 +2364,15 @@ Checking test 055 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 213.645148 -The maximum resident set size (KB) = 649556 +The total amount of wall time = 214.220548 +The maximum resident set size (KB) = 648204 -Test 055 rap_restart PASS +Test 056 rap_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rap_sfcdiff -Checking test 056 rap_sfcdiff results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rap_sfcdiff +Checking test 057 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2401,15 +2418,15 @@ Checking test 056 rap_sfcdiff results .... 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.262494 -The maximum resident set size (KB) = 894008 +The total amount of wall time = 421.484752 +The maximum resident set size (KB) = 893364 -Test 056 rap_sfcdiff PASS +Test 057 rap_sfcdiff PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rap_sfcdiff_decomp -Checking test 057 rap_sfcdiff_decomp results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rap_sfcdiff_decomp +Checking test 058 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2455,15 +2472,15 @@ Checking test 057 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 439.354757 -The maximum resident set size (KB) = 894784 +The total amount of wall time = 439.361313 +The maximum resident set size (KB) = 898140 -Test 057 rap_sfcdiff_decomp PASS +Test 058 rap_sfcdiff_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rap_sfcdiff_restart -Checking test 058 rap_sfcdiff_restart results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rap_sfcdiff_restart +Checking test 059 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2501,15 +2518,15 @@ Checking test 058 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 310.769795 -The maximum resident set size (KB) = 645264 +The total amount of wall time = 311.059053 +The maximum resident set size (KB) = 647844 -Test 058 rap_sfcdiff_restart PASS +Test 059 rap_sfcdiff_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hrrr_control -Checking test 059 hrrr_control results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/hrrr_control +Checking test 060 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2522,48 +2539,48 @@ Checking test 059 hrrr_control results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 406.789067 -The maximum resident set size (KB) = 895696 - -Test 059 hrrr_control PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hrrr_control_decomp -Checking test 060 hrrr_control_decomp results .... + 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 = 391.966938 +The maximum resident set size (KB) = 892764 + +Test 060 hrrr_control PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/hrrr_control_decomp +Checking test 061 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2576,48 +2593,48 @@ Checking test 060 hrrr_control_decomp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 421.128381 -The maximum resident set size (KB) = 894680 - -Test 060 hrrr_control_decomp PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hrrr_control_2threads -Checking test 061 hrrr_control_2threads results .... + 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 = 406.295730 +The maximum resident set size (KB) = 891460 + +Test 061 hrrr_control_decomp PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/hrrr_control_2threads +Checking test 062 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2630,94 +2647,62 @@ Checking test 061 hrrr_control_2threads results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 374.072111 -The maximum resident set size (KB) = 961276 - -Test 061 hrrr_control_2threads PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hrrr_control_restart -Checking test 062 hrrr_control_restart results .... + 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 = 352.018282 +The maximum resident set size (KB) = 959628 + +Test 062 hrrr_control_2threads PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/hrrr_control_restart +Checking test 063 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 298.532114 -The maximum resident set size (KB) = 640484 +The total amount of wall time = 287.085873 +The maximum resident set size (KB) = 645640 -Test 062 hrrr_control_restart PASS +Test 063 hrrr_control_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1beta -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rrfs_v1beta -Checking test 063 rrfs_v1beta results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_v1beta +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rrfs_v1beta +Checking test 064 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2763,15 +2748,15 @@ Checking test 063 rrfs_v1beta results .... 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.091979 -The maximum resident set size (KB) = 894008 +The total amount of wall time = 422.205324 +The maximum resident set size (KB) = 895836 -Test 063 rrfs_v1beta PASS +Test 064 rrfs_v1beta PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1nssl -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rrfs_v1nssl -Checking test 064 rrfs_v1nssl results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_v1nssl +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rrfs_v1nssl +Checking test 065 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2785,15 +2770,15 @@ Checking test 064 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 481.173609 -The maximum resident set size (KB) = 579812 +The total amount of wall time = 482.519029 +The maximum resident set size (KB) = 585844 -Test 064 rrfs_v1nssl PASS +Test 065 rrfs_v1nssl PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rrfs_v1nssl_nohailnoccn -Checking test 065 rrfs_v1nssl_nohailnoccn results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rrfs_v1nssl_nohailnoccn +Checking test 066 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2807,15 +2792,15 @@ Checking test 065 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 473.839734 -The maximum resident set size (KB) = 573532 +The total amount of wall time = 473.651330 +The maximum resident set size (KB) = 574552 -Test 065 rrfs_v1nssl_nohailnoccn PASS +Test 066 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rrfs_smoke_conus13km_hrrr_warm -Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rrfs_smoke_conus13km_hrrr_warm +Checking test 067 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2823,15 +2808,15 @@ Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 149.146413 -The maximum resident set size (KB) = 802528 +The total amount of wall time = 145.634869 +The maximum resident set size (KB) = 801492 -Test 066 rrfs_smoke_conus13km_hrrr_warm PASS +Test 067 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rrfs_smoke_conus13km_hrrr_warm_2threads -Checking test 067 rrfs_smoke_conus13km_hrrr_warm_2threads results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rrfs_smoke_conus13km_hrrr_warm_2threads +Checking test 068 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2839,15 +2824,15 @@ Checking test 067 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 106.625431 -The maximum resident set size (KB) = 806268 +The total amount of wall time = 103.969064 +The maximum resident set size (KB) = 803560 -Test 067 rrfs_smoke_conus13km_hrrr_warm_2threads PASS +Test 068 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rrfs_conus13km_hrrr_warm -Checking test 068 rrfs_conus13km_hrrr_warm results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rrfs_conus13km_hrrr_warm +Checking test 069 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2855,15 +2840,15 @@ Checking test 068 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 138.435385 -The maximum resident set size (KB) = 783120 +The total amount of wall time = 140.189998 +The maximum resident set size (KB) = 795300 -Test 068 rrfs_conus13km_hrrr_warm PASS +Test 069 rrfs_conus13km_hrrr_warm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rrfs_smoke_conus13km_radar_tten_warm -Checking test 069 rrfs_smoke_conus13km_radar_tten_warm results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rrfs_smoke_conus13km_radar_tten_warm +Checking test 070 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2871,27 +2856,27 @@ Checking test 069 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 150.744601 -The maximum resident set size (KB) = 806468 +The total amount of wall time = 155.268933 +The maximum resident set size (KB) = 807192 -Test 069 rrfs_smoke_conus13km_radar_tten_warm PASS +Test 070 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rrfs_conus13km_hrrr_warm_restart_mismatch -Checking test 070 rrfs_conus13km_hrrr_warm_restart_mismatch results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rrfs_conus13km_hrrr_warm_restart_mismatch +Checking test 071 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 69.626581 -The maximum resident set size (KB) = 767764 +The total amount of wall time = 68.620298 +The maximum resident set size (KB) = 771980 -Test 070 rrfs_conus13km_hrrr_warm_restart_mismatch PASS +Test 071 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmg -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_csawmg -Checking test 071 control_csawmg results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_csawmg +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_csawmg +Checking test 072 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2901,15 +2886,15 @@ Checking test 071 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 349.275207 -The maximum resident set size (KB) = 584444 +The total amount of wall time = 352.731147 +The maximum resident set size (KB) = 585948 -Test 071 control_csawmg PASS +Test 072 control_csawmg PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmgt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_csawmgt -Checking test 072 control_csawmgt results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_csawmgt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_csawmgt +Checking test 073 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2919,15 +2904,15 @@ Checking test 072 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 364.245652 -The maximum resident set size (KB) = 583840 +The total amount of wall time = 347.335254 +The maximum resident set size (KB) = 585900 -Test 072 control_csawmgt PASS +Test 073 control_csawmgt PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_ras -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_ras -Checking test 073 control_ras results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_ras +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_ras +Checking test 074 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2937,27 +2922,27 @@ Checking test 073 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 181.458349 -The maximum resident set size (KB) = 552340 +The total amount of wall time = 189.592706 +The maximum resident set size (KB) = 552880 -Test 073 control_ras PASS +Test 074 control_ras PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wam -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_wam -Checking test 074 control_wam results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_wam +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_wam +Checking test 075 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 118.067153 -The maximum resident set size (KB) = 275504 +The total amount of wall time = 118.717535 +The maximum resident set size (KB) = 275452 -Test 074 control_wam PASS +Test 075 control_wam PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_p8_faster -Checking test 075 control_p8_faster results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_p8_faster +Checking test 076 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -3003,15 +2988,15 @@ Checking test 075 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 188.289726 -The maximum resident set size (KB) = 1493756 +The total amount of wall time = 178.549647 +The maximum resident set size (KB) = 1487340 -Test 075 control_p8_faster PASS +Test 076 control_p8_faster PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/regional_control_faster -Checking test 076 regional_control_faster results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/regional_control_faster +Checking test 077 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -3021,775 +3006,455 @@ Checking test 076 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 295.851219 -The maximum resident set size (KB) = 653092 +The total amount of wall time = 286.845675 +The maximum resident set size (KB) = 659584 -Test 076 regional_control_faster PASS +Test 077 regional_control_faster PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wam_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_wam_debug -Checking test 103 control_wam_debug results .... - Comparing sfcf019.nc .........OK - Comparing atmf019.nc .........OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rrfs_smoke_conus13km_hrrr_warm_debug +Checking test 078 rrfs_smoke_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 297.294187 -The maximum resident set size (KB) = 302664 +The total amount of wall time = 918.267553 +The maximum resident set size (KB) = 834056 -Test 103 control_wam_debug PASS +Test 078 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/regional_spp_sppt_shum_skeb_dyn32_phy32 -Checking test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF01 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF01 .........OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +Checking test 079 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 232.449938 -The maximum resident set size (KB) = 887800 +The total amount of wall time = 527.116577 +The maximum resident set size (KB) = 831224 -Test 104 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS +Test 079 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rap_control_dyn32_phy32 -Checking test 105 rap_control_dyn32_phy32 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rrfs_conus13km_hrrr_warm_debug +Checking test 080 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK + Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 815.262939 +The maximum resident set size (KB) = 822580 + +Test 080 rrfs_conus13km_hrrr_warm_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_CubedSphereGrid_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_CubedSphereGrid_debug +Checking test 081 control_CubedSphereGrid_debug results .... + Comparing sfcf000.tile1.nc .........OK + Comparing sfcf000.tile2.nc .........OK + Comparing sfcf000.tile3.nc .........OK + Comparing sfcf000.tile4.nc .........OK + Comparing sfcf000.tile5.nc .........OK + Comparing sfcf000.tile6.nc .........OK + Comparing sfcf001.tile1.nc .........OK + Comparing sfcf001.tile2.nc .........OK + Comparing sfcf001.tile3.nc .........OK + Comparing sfcf001.tile4.nc .........OK + Comparing sfcf001.tile5.nc .........OK + Comparing sfcf001.tile6.nc .........OK + Comparing atmf000.tile1.nc .........OK + Comparing atmf000.tile2.nc .........OK + Comparing atmf000.tile3.nc .........OK + Comparing atmf000.tile4.nc .........OK + Comparing atmf000.tile5.nc .........OK + Comparing atmf000.tile6.nc .........OK + Comparing atmf001.tile1.nc .........OK + Comparing atmf001.tile2.nc .........OK + Comparing atmf001.tile3.nc .........OK + Comparing atmf001.tile4.nc .........OK + Comparing atmf001.tile5.nc .........OK + Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 353.386201 -The maximum resident set size (KB) = 782124 +The total amount of wall time = 159.833838 +The maximum resident set size (KB) = 680304 -Test 105 rap_control_dyn32_phy32 PASS +Test 081 control_CubedSphereGrid_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hrrr_control_dyn32_phy32 -Checking test 106 hrrr_control_dyn32_phy32 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_wrtGauss_netcdf_parallel_debug +Checking test 082 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK + Comparing sfcf001.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 + Comparing atmf001.nc .........OK -The total amount of wall time = 188.356154 -The maximum resident set size (KB) = 776808 +The total amount of wall time = 159.720755 +The maximum resident set size (KB) = 683876 -Test 106 hrrr_control_dyn32_phy32 PASS +Test 082 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rap_2threads_dyn32_phy32 -Checking test 107 rap_2threads_dyn32_phy32 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_stochy_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_stochy_debug +Checking test 083 control_stochy_debug results .... Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK + Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 332.172607 -The maximum resident set size (KB) = 833488 +The total amount of wall time = 180.842088 +The maximum resident set size (KB) = 687104 -Test 107 rap_2threads_dyn32_phy32 PASS +Test 083 control_stochy_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hrrr_control_2threads_dyn32_phy32 -Checking test 108 hrrr_control_2threads_dyn32_phy32 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_lndp_debug +Checking test 084 control_lndp_debug results .... Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK + Comparing sfcf001.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 + Comparing atmf001.nc .........OK -The total amount of wall time = 173.043021 -The maximum resident set size (KB) = 832080 +The total amount of wall time = 162.417269 +The maximum resident set size (KB) = 686040 -Test 108 hrrr_control_2threads_dyn32_phy32 PASS +Test 084 control_lndp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hrrr_control_decomp_dyn32_phy32 -Checking test 109 hrrr_control_decomp_dyn32_phy32 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_csawmg_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_csawmg_debug +Checking test 085 control_csawmg_debug results .... Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK + Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 195.623567 -The maximum resident set size (KB) = 777624 - -Test 109 hrrr_control_decomp_dyn32_phy32 PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rap_restart_dyn32_phy32 -Checking test 110 rap_restart_dyn32_phy32 results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 260.245192 -The maximum resident set size (KB) = 615148 +The total amount of wall time = 255.902153 +The maximum resident set size (KB) = 727928 -Test 110 rap_restart_dyn32_phy32 PASS +Test 085 control_csawmg_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hrrr_control_restart_dyn32_phy32 -Checking test 111 hrrr_control_restart_dyn32_phy32 results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........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 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_csawmgt_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_csawmgt_debug +Checking test 086 control_csawmgt_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 96.968978 -The maximum resident set size (KB) = 607968 +The total amount of wall time = 252.671875 +The maximum resident set size (KB) = 723872 -Test 111 hrrr_control_restart_dyn32_phy32 PASS +Test 086 control_csawmgt_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rap_control_dyn64_phy32 -Checking test 112 rap_control_dyn64_phy32 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_ras_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_ras_debug +Checking test 087 control_ras_debug results .... Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK + Comparing sfcf001.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 + Comparing atmf001.nc .........OK -The total amount of wall time = 245.604524 -The maximum resident set size (KB) = 793952 +The total amount of wall time = 163.427095 +The maximum resident set size (KB) = 694096 -Test 112 rap_control_dyn64_phy32 PASS +Test 087 control_ras_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rap_control_debug_dyn32_phy32 -Checking test 113 rap_control_debug_dyn32_phy32 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_diag_debug +Checking test 088 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 289.219485 -The maximum resident set size (KB) = 942148 +The total amount of wall time = 164.735275 +The maximum resident set size (KB) = 740324 -Test 113 rap_control_debug_dyn32_phy32 PASS +Test 088 control_diag_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hrrr_control_debug_dyn32_phy32 -Checking test 114 hrrr_control_debug_dyn32_phy32 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_debug_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_debug_p8 +Checking test 089 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 285.418426 -The maximum resident set size (KB) = 934880 +The total amount of wall time = 186.244542 +The maximum resident set size (KB) = 1510392 + +Test 089 control_debug_p8 PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/regional_debug +Checking test 090 regional_debug results .... + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK + +The total amount of wall time = 1047.339132 +The maximum resident set size (KB) = 681656 -Test 114 hrrr_control_debug_dyn32_phy32 PASS +Test 090 regional_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/rap_control_dyn64_phy32_debug -Checking test 115 rap_control_dyn64_phy32_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rap_control_debug +Checking test 091 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 295.636388 -The maximum resident set size (KB) = 955432 +The total amount of wall time = 308.379621 +The maximum resident set size (KB) = 1055756 -Test 115 rap_control_dyn64_phy32_debug PASS +Test 091 rap_control_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hafs_regional_atm -Checking test 116 hafs_regional_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing HURPRS.GrbF06 .........OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/hrrr_control_debug +Checking test 092 hrrr_control_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 275.096473 -The maximum resident set size (KB) = 825000 +The total amount of wall time = 291.861001 +The maximum resident set size (KB) = 1050644 -Test 116 hafs_regional_atm PASS +Test 092 hrrr_control_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hafs_regional_atm_thompson_gfdlsf -Checking test 117 hafs_regional_atm_thompson_gfdlsf results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rap_unified_drag_suite_debug +Checking test 093 rap_unified_drag_suite_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 316.464386 -The maximum resident set size (KB) = 1185620 +The total amount of wall time = 299.846912 +The maximum resident set size (KB) = 1055600 -Test 117 hafs_regional_atm_thompson_gfdlsf PASS +Test 093 rap_unified_drag_suite_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hafs_regional_atm_ocn -Checking test 118 hafs_regional_atm_ocn results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing archv.2019_241_06.a .........OK - Comparing archs.2019_241_06.a .........OK - Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rap_diag_debug +Checking test 094 rap_diag_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 391.437555 -The maximum resident set size (KB) = 858736 +The total amount of wall time = 311.695973 +The maximum resident set size (KB) = 1140584 -Test 118 hafs_regional_atm_ocn PASS +Test 094 rap_diag_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hafs_regional_atm_wav -Checking test 119 hafs_regional_atm_wav results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing 20190829.060000.out_grd.ww3 .........OK - Comparing 20190829.060000.out_pnt.ww3 .........OK - Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rap_cires_ugwp_debug +Checking test 095 rap_cires_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 705.815195 -The maximum resident set size (KB) = 890876 +The total amount of wall time = 309.185274 +The maximum resident set size (KB) = 1058516 -Test 119 hafs_regional_atm_wav PASS +Test 095 rap_cires_ugwp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hafs_regional_atm_ocn_wav -Checking test 120 hafs_regional_atm_ocn_wav results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing archv.2019_241_06.a .........OK - Comparing archs.2019_241_06.a .........OK - Comparing 20190829.060000.out_grd.ww3 .........OK - Comparing 20190829.060000.out_pnt.ww3 .........OK - Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rap_unified_ugwp_debug +Checking test 096 rap_unified_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 899.418705 -The maximum resident set size (KB) = 915200 +The total amount of wall time = 306.960885 +The maximum resident set size (KB) = 1059620 -Test 120 hafs_regional_atm_ocn_wav PASS +Test 096 rap_unified_ugwp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hafs_regional_1nest_atm -Checking test 121 hafs_regional_1nest_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rap_lndp_debug +Checking test 097 rap_lndp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 338.143935 -The maximum resident set size (KB) = 395516 +The total amount of wall time = 303.343090 +The maximum resident set size (KB) = 1056380 -Test 121 hafs_regional_1nest_atm PASS +Test 097 rap_lndp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hafs_regional_telescopic_2nests_atm -Checking test 122 hafs_regional_telescopic_2nests_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest03.f006.nc .........OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_progcld_thompson_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rap_progcld_thompson_debug +Checking test 098 rap_progcld_thompson_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 404.011449 -The maximum resident set size (KB) = 405352 +The total amount of wall time = 301.167759 +The maximum resident set size (KB) = 1056728 -Test 122 hafs_regional_telescopic_2nests_atm PASS +Test 098 rap_progcld_thompson_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hafs_global_1nest_atm -Checking test 123 hafs_global_1nest_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_noah_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rap_noah_debug +Checking test 099 rap_noah_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 173.408393 -The maximum resident set size (KB) = 266360 +The total amount of wall time = 294.755934 +The maximum resident set size (KB) = 1051408 -Test 123 hafs_global_1nest_atm PASS +Test 099 rap_noah_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_multiple_4nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hafs_global_multiple_4nests_atm -Checking test 124 hafs_global_multiple_4nests_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest03.f006.nc .........OK - Comparing atm.nest04.f006.nc .........OK - Comparing sfc.nest04.f006.nc .........OK - Comparing atm.nest05.f006.nc .........OK - Comparing sfc.nest05.f006.nc .........OK - Comparing HURPRS.GrbF06 .........OK - Comparing HURPRS.GrbF06.nest02 .........OK - Comparing HURPRS.GrbF06.nest03 .........OK - Comparing HURPRS.GrbF06.nest04 .........OK - Comparing HURPRS.GrbF06.nest05 .........OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_sfcdiff_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rap_sfcdiff_debug +Checking test 100 rap_sfcdiff_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 490.282445 -The maximum resident set size (KB) = 350360 +The total amount of wall time = 300.759388 +The maximum resident set size (KB) = 1060788 -Test 124 hafs_global_multiple_4nests_atm PASS +Test 100 rap_sfcdiff_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hafs_regional_specified_moving_1nest_atm -Checking test 125 hafs_regional_specified_moving_1nest_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing HURPRS.GrbF06 .........OK - Comparing HURPRS.GrbF06.nest02 .........OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 101 rap_noah_sfcdiff_cires_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 219.430252 -The maximum resident set size (KB) = 408844 +The total amount of wall time = 495.085353 +The maximum resident set size (KB) = 1058112 -Test 125 hafs_regional_specified_moving_1nest_atm PASS +Test 101 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hafs_regional_storm_following_1nest_atm -Checking test 126 hafs_regional_storm_following_1nest_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_v1beta_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rrfs_v1beta_debug +Checking test 102 rrfs_v1beta_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 213.039662 -The maximum resident set size (KB) = 408800 +The total amount of wall time = 298.325036 +The maximum resident set size (KB) = 1049944 -Test 126 hafs_regional_storm_following_1nest_atm PASS +Test 102 rrfs_v1beta_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hafs_regional_storm_following_1nest_atm_ocn -Checking test 127 hafs_regional_storm_following_1nest_atm_ocn results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing archv.2020_238_18.a .........OK - Comparing archs.2020_238_18.a .........OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_clm_lake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rap_clm_lake_debug +Checking test 103 rap_clm_lake_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 254.164521 -The maximum resident set size (KB) = 495172 +The total amount of wall time = 379.757465 +The maximum resident set size (KB) = 1057800 -Test 127 hafs_regional_storm_following_1nest_atm_ocn PASS +Test 103 rap_clm_lake_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hafs_global_storm_following_1nest_atm -Checking test 128 hafs_global_storm_following_1nest_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_flake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rap_flake_debug +Checking test 104 rap_flake_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 85.543090 -The maximum resident set size (KB) = 291076 +The total amount of wall time = 300.856289 +The maximum resident set size (KB) = 1059060 -Test 128 hafs_global_storm_following_1nest_atm PASS +Test 104 rap_flake_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hafs_regional_storm_following_1nest_atm_ocn_debug -Checking test 129 hafs_regional_storm_following_1nest_atm_ocn_debug results .... - Comparing atmf001.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atm.nest02.f001.nc .........OK - Comparing sfc.nest02.f001.nc .........OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_wam_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_wam_debug +Checking test 105 control_wam_debug results .... + Comparing sfcf019.nc .........OK + Comparing atmf019.nc .........OK -The total amount of wall time = 805.965424 -The maximum resident set size (KB) = 491240 +The total amount of wall time = 295.989475 +The maximum resident set size (KB) = 306264 -Test 129 hafs_regional_storm_following_1nest_atm_ocn_debug PASS +Test 105 control_wam_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/hafs_regional_storm_following_1nest_atm_ocn_wav -Checking test 130 hafs_regional_storm_following_1nest_atm_ocn_wav results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing archv.2020_238_18.a .........OK - Comparing archs.2020_238_18.a .........OK - Comparing 20200825.180000.out_grd.ww3 .........OK - Comparing 20200825.180000.out_pnt.ww3 .........OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF01 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 506.890615 -The maximum resident set size (KB) = 529368 +The total amount of wall time = 235.339661 +The maximum resident set size (KB) = 904664 -Test 130 hafs_regional_storm_following_1nest_atm_ocn_wav PASS +Test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_atmlnd_sbs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/control_p8_atmlnd_sbs -Checking test 131 control_p8_atmlnd_sbs results .... - Comparing sfcf000.tile1.nc .........OK - Comparing sfcf000.tile2.nc .........OK - Comparing sfcf000.tile3.nc .........OK - Comparing sfcf000.tile4.nc .........OK - Comparing sfcf000.tile5.nc .........OK - Comparing sfcf000.tile6.nc .........OK - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf000.tile1.nc .........OK - Comparing atmf000.tile2.nc .........OK - Comparing atmf000.tile3.nc .........OK - Comparing atmf000.tile4.nc .........OK - Comparing atmf000.tile5.nc .........OK - Comparing atmf000.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rap_control_dyn32_phy32 +Checking test 107 rap_control_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -3822,77 +3487,82 @@ Checking test 131 control_p8_atmlnd_sbs results .... Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing ufs.cpld.cpl.hi.lnd.2021-03-22-43200.nc .........OK - Comparing ufs.cpld.cpl.hi.lnd.2021-03-23-21600.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile6.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 254.506716 -The maximum resident set size (KB) = 1541332 +The total amount of wall time = 356.195688 +The maximum resident set size (KB) = 777196 -Test 131 control_p8_atmlnd_sbs PASS +Test 107 rap_control_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/atmaero_control_p8 -Checking test 132 atmaero_control_p8 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/hrrr_control_dyn32_phy32 +Checking test 108 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........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 ............ALT CHECK......ERROR - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8_rad -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/atmaero_control_p8_rad -Checking test 133 atmaero_control_p8_rad results .... + 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 = 181.081766 +The maximum resident set size (KB) = 781356 + +Test 108 hrrr_control_dyn32_phy32 PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rap_2threads_dyn32_phy32 +Checking test 109 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -3926,24 +3596,127 @@ Checking test 133 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 283.990505 -The maximum resident set size (KB) = 2879264 +The total amount of wall time = 332.278035 +The maximum resident set size (KB) = 836116 -Test 133 atmaero_control_p8_rad PASS +Test 109 rap_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/atmaero_control_p8_rad_micro -Checking test 134 atmaero_control_p8_rad_micro results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/hrrr_control_2threads_dyn32_phy32 +Checking test 110 hrrr_control_2threads_dyn32_phy32 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 = 163.037889 +The maximum resident set size (KB) = 822404 + +Test 110 hrrr_control_2threads_dyn32_phy32 PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/hrrr_control_decomp_dyn32_phy32 +Checking test 111 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 188.921828 +The maximum resident set size (KB) = 775188 + +Test 111 hrrr_control_decomp_dyn32_phy32 PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rap_restart_dyn32_phy32 +Checking test 112 rap_restart_dyn32_phy32 results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -3977,478 +3750,504 @@ Checking test 134 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 295.965472 -The maximum resident set size (KB) = 2886548 - -Test 134 atmaero_control_p8_rad_micro PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/regional_atmaq -Checking test 135 regional_atmaq results .... - Comparing sfcf000.nc .........OK - Comparing sfcf003.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf003.nc .........OK - Comparing atmf006.nc .........OK - Comparing RESTART/20190801.180000.coupler.res .........OK - Comparing RESTART/20190801.180000.fv_core.res.nc .........OK - Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.phy_data.nc .........OK - Comparing RESTART/20190801.180000.sfc_data.nc .........OK - -The total amount of wall time = 988.702540 -The maximum resident set size (KB) = 1259292 - -Test 135 regional_atmaq PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/regional_atmaq_debug -Checking test 136 regional_atmaq_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing RESTART/20190801.130000.coupler.res .........OK - Comparing RESTART/20190801.130000.fv_core.res.nc .........OK - Comparing RESTART/20190801.130000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20190801.130000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20190801.130000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20190801.130000.phy_data.nc .........OK - Comparing RESTART/20190801.130000.sfc_data.nc .........OK - -The total amount of wall time = 1329.841478 -The maximum resident set size (KB) = 1289728 - -Test 136 regional_atmaq_debug PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_207441/regional_atmaq_faster -Checking test 137 regional_atmaq_faster results .... - Comparing sfcf000.nc .........OK - Comparing sfcf003.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf003.nc .........OK - Comparing atmf006.nc .........OK - Comparing RESTART/20190801.180000.coupler.res .........OK - Comparing RESTART/20190801.180000.fv_core.res.nc .........OK - Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.phy_data.nc .........OK - Comparing RESTART/20190801.180000.sfc_data.nc .........OK - -The total amount of wall time = 764.609880 -The maximum resident set size (KB) = 1258652 - -Test 137 regional_atmaq_faster PASS - -FAILED TESTS: -Test atmaero_control_p8 132 failed in run_test failed -Test compile_012 failed in run_compile failed - -REGRESSION TEST FAILED -Mon Apr 24 14:34:04 UTC 2023 -Elapsed time: 01h:34m:33s. Have a nice day! -Mon Apr 24 14:37:59 UTC 2023 -Start Regression test - -Compile 001 elapsed time 209 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 002 elapsed time 465 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/rrfs_smoke_conus13km_hrrr_warm_debug -Checking test 001 rrfs_smoke_conus13km_hrrr_warm_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 907.828960 -The maximum resident set size (KB) = 834208 - -Test 001 rrfs_smoke_conus13km_hrrr_warm_debug PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/rrfs_smoke_conus13km_hrrr_warm_debug_2threads -Checking test 002 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 523.101721 -The maximum resident set size (KB) = 830936 - -Test 002 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS +The total amount of wall time = 270.255535 +The maximum resident set size (KB) = 619432 +Test 112 rap_restart_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/rrfs_conus13km_hrrr_warm_debug -Checking test 003 rrfs_conus13km_hrrr_warm_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK -The total amount of wall time = 810.772608 -The maximum resident set size (KB) = 802388 - -Test 003 rrfs_conus13km_hrrr_warm_debug PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/control_CubedSphereGrid_debug -Checking test 004 control_CubedSphereGrid_debug results .... - Comparing sfcf000.tile1.nc .........OK - Comparing sfcf000.tile2.nc .........OK - Comparing sfcf000.tile3.nc .........OK - Comparing sfcf000.tile4.nc .........OK - Comparing sfcf000.tile5.nc .........OK - Comparing sfcf000.tile6.nc .........OK - Comparing sfcf001.tile1.nc .........OK - Comparing sfcf001.tile2.nc .........OK - Comparing sfcf001.tile3.nc .........OK - Comparing sfcf001.tile4.nc .........OK - Comparing sfcf001.tile5.nc .........OK - Comparing sfcf001.tile6.nc .........OK - Comparing atmf000.tile1.nc .........OK - Comparing atmf000.tile2.nc .........OK - Comparing atmf000.tile3.nc .........OK - Comparing atmf000.tile4.nc .........OK - Comparing atmf000.tile5.nc .........OK - Comparing atmf000.tile6.nc .........OK - Comparing atmf001.tile1.nc .........OK - Comparing atmf001.tile2.nc .........OK - Comparing atmf001.tile3.nc .........OK - Comparing atmf001.tile4.nc .........OK - Comparing atmf001.tile5.nc .........OK - Comparing atmf001.tile6.nc .........OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/hrrr_control_restart_dyn32_phy32 +Checking test 113 hrrr_control_restart_dyn32_phy32 results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 158.821739 -The maximum resident set size (KB) = 673868 +The total amount of wall time = 94.862429 +The maximum resident set size (KB) = 604820 -Test 004 control_CubedSphereGrid_debug PASS +Test 113 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/control_wrtGauss_netcdf_parallel_debug -Checking test 005 control_wrtGauss_netcdf_parallel_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rap_control_dyn64_phy32 +Checking test 114 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -The total amount of wall time = 158.668342 -The maximum resident set size (KB) = 677184 +The total amount of wall time = 236.226549 +The maximum resident set size (KB) = 793204 -Test 005 control_wrtGauss_netcdf_parallel_debug PASS +Test 114 rap_control_dyn64_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/control_stochy_debug -Checking test 006 control_stochy_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rap_control_debug_dyn32_phy32 +Checking test 115 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 179.640409 -The maximum resident set size (KB) = 685172 +The total amount of wall time = 295.116520 +The maximum resident set size (KB) = 940488 -Test 006 control_stochy_debug PASS +Test 115 rap_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/control_lndp_debug -Checking test 007 control_lndp_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/hrrr_control_debug_dyn32_phy32 +Checking test 116 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 160.334670 -The maximum resident set size (KB) = 682840 +The total amount of wall time = 288.227537 +The maximum resident set size (KB) = 939648 -Test 007 control_lndp_debug PASS +Test 116 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmg_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/control_csawmg_debug -Checking test 008 control_csawmg_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rap_control_dyn64_phy32_debug +Checking test 117 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 256.294985 -The maximum resident set size (KB) = 719888 +The total amount of wall time = 297.757859 +The maximum resident set size (KB) = 957784 -Test 008 control_csawmg_debug PASS +Test 117 rap_control_dyn64_phy32_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmgt_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/control_csawmgt_debug -Checking test 009 control_csawmgt_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/hafs_regional_atm +Checking test 118 hafs_regional_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 252.602767 -The maximum resident set size (KB) = 722360 +The total amount of wall time = 276.613477 +The maximum resident set size (KB) = 824016 -Test 009 control_csawmgt_debug PASS +Test 118 hafs_regional_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_ras_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/control_ras_debug -Checking test 010 control_ras_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/hafs_regional_atm_thompson_gfdlsf +Checking test 119 hafs_regional_atm_thompson_gfdlsf results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK -The total amount of wall time = 162.257201 -The maximum resident set size (KB) = 694868 +The total amount of wall time = 330.753986 +The maximum resident set size (KB) = 1183320 -Test 010 control_ras_debug PASS +Test 119 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/control_diag_debug -Checking test 011 control_diag_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/hafs_regional_atm_ocn +Checking test 120 hafs_regional_atm_ocn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing archv.2019_241_06.a .........OK + Comparing archs.2019_241_06.a .........OK + Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 164.961975 -The maximum resident set size (KB) = 737296 +The total amount of wall time = 399.785582 +The maximum resident set size (KB) = 860852 -Test 011 control_diag_debug PASS +Test 120 hafs_regional_atm_ocn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/control_debug_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/control_debug_p8 -Checking test 012 control_debug_p8 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_atm_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/hafs_regional_atm_wav +Checking test 121 hafs_regional_atm_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing 20190829.060000.out_grd.ww3 .........OK + Comparing 20190829.060000.out_pnt.ww3 .........OK + Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 186.065222 -The maximum resident set size (KB) = 1505676 +The total amount of wall time = 712.474343 +The maximum resident set size (KB) = 896568 -Test 012 control_debug_p8 PASS +Test 121 hafs_regional_atm_wav PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/regional_debug -Checking test 013 regional_debug results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/hafs_regional_atm_ocn_wav +Checking test 122 hafs_regional_atm_ocn_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing archv.2019_241_06.a .........OK + Comparing archs.2019_241_06.a .........OK + Comparing 20190829.060000.out_grd.ww3 .........OK + Comparing 20190829.060000.out_pnt.ww3 .........OK + Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 1037.325789 -The maximum resident set size (KB) = 677636 +The total amount of wall time = 902.081405 +The maximum resident set size (KB) = 919484 -Test 013 regional_debug PASS +Test 122 hafs_regional_atm_ocn_wav PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/rap_control_debug -Checking test 014 rap_control_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/hafs_regional_1nest_atm +Checking test 123 hafs_regional_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 296.944590 -The maximum resident set size (KB) = 1054700 +The total amount of wall time = 335.720823 +The maximum resident set size (KB) = 396212 -Test 014 rap_control_debug PASS +Test 123 hafs_regional_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/hrrr_control_debug -Checking test 015 hrrr_control_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/hafs_regional_telescopic_2nests_atm +Checking test 124 hafs_regional_telescopic_2nests_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing atm.nest03.f006.nc .........OK + Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 290.306582 -The maximum resident set size (KB) = 1047212 +The total amount of wall time = 404.645006 +The maximum resident set size (KB) = 403824 -Test 015 hrrr_control_debug PASS +Test 124 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/rap_unified_drag_suite_debug -Checking test 016 rap_unified_drag_suite_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_global_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/hafs_global_1nest_atm +Checking test 125 hafs_global_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 296.234072 -The maximum resident set size (KB) = 1057256 +The total amount of wall time = 174.475008 +The maximum resident set size (KB) = 270900 -Test 016 rap_unified_drag_suite_debug PASS +Test 125 hafs_global_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/rap_diag_debug -Checking test 017 rap_diag_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_global_multiple_4nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/hafs_global_multiple_4nests_atm +Checking test 126 hafs_global_multiple_4nests_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing atm.nest03.f006.nc .........OK + Comparing sfc.nest03.f006.nc .........OK + Comparing atm.nest04.f006.nc .........OK + Comparing sfc.nest04.f006.nc .........OK + Comparing atm.nest05.f006.nc .........OK + Comparing sfc.nest05.f006.nc .........OK + Comparing HURPRS.GrbF06 .........OK + Comparing HURPRS.GrbF06.nest02 .........OK + Comparing HURPRS.GrbF06.nest03 .........OK + Comparing HURPRS.GrbF06.nest04 .........OK + Comparing HURPRS.GrbF06.nest05 .........OK -The total amount of wall time = 307.911077 -The maximum resident set size (KB) = 1135276 +The total amount of wall time = 490.421231 +The maximum resident set size (KB) = 347856 -Test 017 rap_diag_debug PASS +Test 126 hafs_global_multiple_4nests_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/rap_cires_ugwp_debug -Checking test 018 rap_cires_ugwp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/hafs_regional_specified_moving_1nest_atm +Checking test 127 hafs_regional_specified_moving_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing HURPRS.GrbF06 .........OK + Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 302.521620 -The maximum resident set size (KB) = 1053676 +The total amount of wall time = 220.197761 +The maximum resident set size (KB) = 411776 -Test 018 rap_cires_ugwp_debug PASS +Test 127 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/rap_unified_ugwp_debug -Checking test 019 rap_unified_ugwp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/hafs_regional_storm_following_1nest_atm +Checking test 128 hafs_regional_storm_following_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 303.310686 -The maximum resident set size (KB) = 1056240 +The total amount of wall time = 206.943437 +The maximum resident set size (KB) = 413628 -Test 019 rap_unified_ugwp_debug PASS +Test 128 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/rap_lndp_debug -Checking test 020 rap_lndp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/hafs_regional_storm_following_1nest_atm_ocn +Checking test 129 hafs_regional_storm_following_1nest_atm_ocn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing archv.2020_238_18.a .........OK + Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 300.522189 -The maximum resident set size (KB) = 1054548 +The total amount of wall time = 260.872560 +The maximum resident set size (KB) = 471132 -Test 020 rap_lndp_debug PASS +Test 129 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_flake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/rap_flake_debug -Checking test 021 rap_flake_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_global_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/hafs_global_storm_following_1nest_atm +Checking test 130 hafs_global_storm_following_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 296.139168 -The maximum resident set size (KB) = 1053616 +The total amount of wall time = 86.952880 +The maximum resident set size (KB) = 281604 -Test 021 rap_flake_debug PASS +Test 130 hafs_global_storm_following_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_progcld_thompson_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/rap_progcld_thompson_debug -Checking test 022 rap_progcld_thompson_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/hafs_regional_storm_following_1nest_atm_ocn_debug +Checking test 131 hafs_regional_storm_following_1nest_atm_ocn_debug results .... Comparing atmf001.nc .........OK - -The total amount of wall time = 297.245024 -The maximum resident set size (KB) = 1057192 - -Test 022 rap_progcld_thompson_debug PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_noah_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/rap_noah_debug -Checking test 023 rap_noah_debug results .... - Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing atm.nest02.f001.nc .........OK + Comparing sfc.nest02.f001.nc .........OK -The total amount of wall time = 291.404869 -The maximum resident set size (KB) = 1048908 +The total amount of wall time = 806.226257 +The maximum resident set size (KB) = 497256 -Test 023 rap_noah_debug PASS +Test 131 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/rap_sfcdiff_debug -Checking test 024 rap_sfcdiff_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 132 hafs_regional_storm_following_1nest_atm_ocn_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing archv.2020_238_18.a .........OK + Comparing archs.2020_238_18.a .........OK + Comparing 20200825.180000.out_grd.ww3 .........OK + Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 297.967733 -The maximum resident set size (KB) = 1052580 +The total amount of wall time = 506.702596 +The maximum resident set size (KB) = 528772 -Test 024 rap_sfcdiff_debug PASS +Test 132 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 025 rap_noah_sfcdiff_cires_ugwp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8_atmlnd_sbs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_p8_atmlnd_sbs +Checking test 133 control_p8_atmlnd_sbs results .... + Comparing sfcf000.tile1.nc .........OK + Comparing sfcf000.tile2.nc .........OK + Comparing sfcf000.tile3.nc .........OK + Comparing sfcf000.tile4.nc .........OK + Comparing sfcf000.tile5.nc .........OK + Comparing sfcf000.tile6.nc .........OK + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf000.tile1.nc .........OK + Comparing atmf000.tile2.nc .........OK + Comparing atmf000.tile3.nc .........OK + Comparing atmf000.tile4.nc .........OK + Comparing atmf000.tile5.nc .........OK + Comparing atmf000.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing ufs.cpld.cpl.hi.lnd.2021-03-22-43200.nc .........OK + Comparing ufs.cpld.cpl.hi.lnd.2021-03-23-21600.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile6.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 487.318256 -The maximum resident set size (KB) = 1051996 +The total amount of wall time = 239.379563 +The maximum resident set size (KB) = 1547396 -Test 025 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 133 control_p8_atmlnd_sbs PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1beta_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/rrfs_v1beta_debug -Checking test 026 rrfs_v1beta_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/atmaero_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/atmaero_control_p8 +Checking test 134 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK + Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 292.024711 -The maximum resident set size (KB) = 1046360 +The total amount of wall time = 251.143116 +The maximum resident set size (KB) = 2815120 -Test 026 rrfs_v1beta_debug PASS +Test 134 atmaero_control_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66056/atmaero_control_p8 -Checking test 027 atmaero_control_p8 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/atmaero_control_p8_rad +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/atmaero_control_p8_rad +Checking test 135 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4482,21 +4281,24 @@ Checking test 027 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......ERROR -FAILED TESTS: -Test atmaero_control_p8 027 failed in run_test failed - -REGRESSION TEST FAILED -Mon Apr 24 15:02:40 UTC 2023 -Elapsed time: 00h:24m:42s. Have a nice day! -Mon Apr 24 15:55:26 UTC 2023 -Start Regression test + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 285.061763 +The maximum resident set size (KB) = 2878984 -Compile 001 elapsed time 459 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Test 135 atmaero_control_p8_rad PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_92479/atmaero_control_p8 -Checking test 001 atmaero_control_p8 results .... + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/atmaero_control_p8_rad_micro +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/atmaero_control_p8_rad_micro +Checking test 136 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4539,12 +4341,79 @@ Checking test 001 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 250.529149 -The maximum resident set size (KB) = 2814932 +The total amount of wall time = 290.907880 +The maximum resident set size (KB) = 2885808 + +Test 136 atmaero_control_p8_rad_micro PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_atmaq +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/regional_atmaq +Checking test 137 regional_atmaq results .... + Comparing sfcf000.nc .........OK + Comparing sfcf003.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf003.nc .........OK + Comparing atmf006.nc .........OK + Comparing RESTART/20190801.180000.coupler.res .........OK + Comparing RESTART/20190801.180000.fv_core.res.nc .........OK + Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.phy_data.nc .........OK + Comparing RESTART/20190801.180000.sfc_data.nc .........OK + +The total amount of wall time = 697.203483 +The maximum resident set size (KB) = 1261036 + +Test 137 regional_atmaq PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_atmaq_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/regional_atmaq_debug +Checking test 138 regional_atmaq_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing RESTART/20190801.130000.coupler.res .........OK + Comparing RESTART/20190801.130000.fv_core.res.nc .........OK + Comparing RESTART/20190801.130000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20190801.130000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20190801.130000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20190801.130000.phy_data.nc .........OK + Comparing RESTART/20190801.130000.sfc_data.nc .........OK + +The total amount of wall time = 1312.111708 +The maximum resident set size (KB) = 1292148 + +Test 138 regional_atmaq_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_atmaq_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/regional_atmaq_faster +Checking test 139 regional_atmaq_faster results .... + Comparing sfcf000.nc .........OK + Comparing sfcf003.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf003.nc .........OK + Comparing atmf006.nc .........OK + Comparing RESTART/20190801.180000.coupler.res .........OK + Comparing RESTART/20190801.180000.fv_core.res.nc .........OK + Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.phy_data.nc .........OK + Comparing RESTART/20190801.180000.sfc_data.nc .........OK + +The total amount of wall time = 645.223778 +The maximum resident set size (KB) = 1261108 -Test 001 atmaero_control_p8 PASS +Test 139 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Mon Apr 24 16:11:03 UTC 2023 -Elapsed time: 00h:15m:38s. Have a nice day! +Tue Apr 25 02:45:34 UTC 2023 +Elapsed time: 01h:10m:45s. Have a nice day! diff --git a/tests/default_vars.sh b/tests/default_vars.sh index bb4fe900be0..435415ab689 100755 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -457,8 +457,12 @@ export OZ_PHYS_OLD=.true. export OZ_PHYS_NEW=.false. export H2O_PHYS=.false. -# Flake model -export LKM=0 +# Lake models +export LKM=0 # 0=no lake, 1=run lake model, 2=run both lake and nsst on lake points +export IOPT_LAKE=2 # 1=flake, 2=clm lake +export LAKEFRAC_THRESHOLD=0.0 # lake fraction must be higher for lake model to run it +export LAKEDEPTH_THRESHOLD=1.0 # lake must be deeper (in meters) for a lake model to run it +export FRAC_ICE=.false. export CPL=.false. export CPLCHM=.false. diff --git a/tests/fv3_conf/lake_control_run.IN b/tests/fv3_conf/lake_control_run.IN new file mode 100644 index 00000000000..7d34e82e233 --- /dev/null +++ b/tests/fv3_conf/lake_control_run.IN @@ -0,0 +1,152 @@ +rm -fr INPUT RESTART +if [ $NPX = 97 ]; then + inputdir=FV3_input_data +elif [ $NPX = 49 ]; then + inputdir=FV3_input_data48 +elif [ $NPX = 193 ]; then + inputdir=FV3_input_data192 +elif [ $NPX = 385 ]; then + inputdir=FV3_input_data384 +elif [ $NPX = 769 ]; then + inputdir=FV3_input_data768 +fi +echo "inputdir=$inputdir,NPX=$NPX" + +LAKE_DATA_PATH=@[INPUTDATA_ROOT]/lake_p8_water_fraction2020 + +OPNREQ_TEST=${OPNREQ_TEST:-false} +SUFFIX=${RT_SUFFIX} +if [ $WARM_START = .false. ]; then + mkdir INPUT RESTART + cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT_L127/* ./INPUT/. +# cp -r @[INPUTDATA_ROOT]/${inputdir}/ORO_FLAKE/* ./INPUT/. + cp $LAKE_DATA_PATH/oro_C96.mx100.tile1.nc ./INPUT/oro_data.tile1.nc + cp $LAKE_DATA_PATH/oro_C96.mx100.tile2.nc ./INPUT/oro_data.tile2.nc + cp $LAKE_DATA_PATH/oro_C96.mx100.tile3.nc ./INPUT/oro_data.tile3.nc + cp $LAKE_DATA_PATH/oro_C96.mx100.tile4.nc ./INPUT/oro_data.tile4.nc + cp $LAKE_DATA_PATH/oro_C96.mx100.tile5.nc ./INPUT/oro_data.tile5.nc + cp $LAKE_DATA_PATH/oro_C96.mx100.tile6.nc ./INPUT/oro_data.tile6.nc +else + mkdir INPUT RESTART + + if [[ ${OPNREQ_TEST} == true ]]; then + SUFFIX=${BL_SUFFIX} + fi + + if [ $MODEL_INITIALIZATION = false ]; then + #read_inc and iau tests restart from fh=24 + CURRDIR=`pwd` + FILEDIR=${CURRDIR}/../${DEP_RUN}${SUFFIX}/RESTART + else + #for warm start from initialiation time + FILEDIR=@[INPUTDATA_ROOT]/${inputdir}/INPUT_L127_GDAS + fi + + if [[ ${IAU_OFFSET} != 0 ]] || [[ $READ_INCREMENT = .true. ]]; then + + if [ $MODEL_INITIALIZATION = false ]; then + cp ${FILEDIR}/../INPUT/fv3_increment.nc INPUT/. + cp ${FILEDIR}/../INPUT/grid_spec.nc INPUT/. + cp ${FILEDIR}/../INPUT/*_grid.tile*.nc INPUT/. + cp ${FILEDIR}/../INPUT/oro_data.tile*.nc INPUT/. + else + cp ${FILEDIR}/fv_increment*.nc INPUT/. + cp ${FILEDIR}/grid_spec.nc INPUT/. + cp ${FILEDIR}/*_grid.tile*.nc INPUT/. + cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT_L127/* ./INPUT/. +# cp -r @[INPUTDATA_ROOT]/${inputdir}/ORO_FLAKE/* ./INPUT/. + cp $LAKE_DATA_PATH/oro_C96.mx100.tile1.nc ./INPUT/oro_data.tile1.nc + cp $LAKE_DATA_PATH/oro_C96.mx100.tile2.nc ./INPUT/oro_data.tile2.nc + cp $LAKE_DATA_PATH/oro_C96.mx100.tile3.nc ./INPUT/oro_data.tile3.nc + cp $LAKE_DATA_PATH/oro_C96.mx100.tile4.nc ./INPUT/oro_data.tile4.nc + cp $LAKE_DATA_PATH/oro_C96.mx100.tile5.nc ./INPUT/oro_data.tile5.nc + cp $LAKE_DATA_PATH/oro_C96.mx100.tile6.nc ./INPUT/oro_data.tile6.nc + fi + cp ${FILEDIR}/coupler.res INPUT/. + cp ${FILEDIR}/fv_core.res.* INPUT/. + cp ${FILEDIR}/fv_srf_wnd.res.* INPUT/. + cp ${FILEDIR}/fv_tracer.* INPUT/. + cp ${FILEDIR}/phy_data.* INPUT/. + cp ${FILEDIR}/sfc_data.* INPUT/. + else + #restart test start from fh FHROT + cp -r ../${DEP_RUN}${SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.* ./INPUT + rm -f INPUT/fv_core.res.* + rm -f INPUT/fv_srf_wnd.res.* + rm -f INPUT/fv_tracer.res.* + rm -f INPUT/phy_data.* + rm -f INPUT/sfc_data.* + cp ${FILEDIR}/../INPUT/grid_spec.nc INPUT/. + cp ${FILEDIR}/../INPUT/*_grid.tile*.nc INPUT/. + cp ${FILEDIR}/../INPUT/oro_data*.nc INPUT/. + for RFILE in ../${DEP_RUN}${SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.*; do + [ -e $RFILE ] || exit 1 + RFILE_OLD=$(basename $RFILE) + RFILE_NEW="${RFILE_OLD//${RESTART_FILE_PREFIX}./}" + cp $RFILE INPUT/${RFILE_NEW} + done + fi + +fi + +if [ $TILEDFIX = .true. ]; then + cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[ATMRES]/@[ATMRES]*.nc . + cp @[INPUTDATA_ROOT]/FV3_fix/global_glacier.2x2.grb . + cp @[INPUTDATA_ROOT]/FV3_fix/global_maxice.2x2.grb . + cp @[INPUTDATA_ROOT]/FV3_fix/RTGSST.1982.2012.monthly.clim.grb . + cp @[INPUTDATA_ROOT]/FV3_fix/global_snoclim.1.875.grb . + cp @[INPUTDATA_ROOT]/FV3_fix/CFSR.SEAICE.1982.2012.monthly.clim.grb . + cp @[INPUTDATA_ROOT]/${inputdir}/@[FNSMCC] . + cp @[INPUTDATA_ROOT]/${inputdir}/@[FNMSKH_control] . +else + cp @[INPUTDATA_ROOT]/${inputdir}/*grb . +fi + +if [ $CPLWAV = .true. ]; then + cp @[INPUTDATA_ROOT_WW3]/mod_def.* . + cp @[INPUTDATA_ROOT_WW3]/rmp_src* . +fi + +#inline post +if [[ $POSTAPP = 'global' ]]; then + cp ${PATHRT}/parm/post_itag_gfs itag + cp ${PATHRT}/parm/postxconfig-NT-gfs.txt postxconfig-NT.txt + cp ${PATHRT}/parm/postxconfig-NT-gfs_FH00.txt postxconfig-NT_FH00.txt + cp ${PATHRT}/parm/params_grib2_tbl_new params_grib2_tbl_new +fi + +#rrtmgp +if [ $DO_RRTMGP = .true. ]; then + cp @[INPUTDATA_ROOT]/FV3_input_data_RRTMGP/* . +fi + +#merra2 +if [ $USE_MERRA2 = .true. ]; then + for n in 01 02 03 04 05 06 07 08 09 10 11 12; do + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m${n}.nc aeroclim.m${n}.nc + done + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_BC.v1_3.dat optics_BC.dat + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_OC.v1_3.dat optics_OC.dat + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_DU.v15_3.dat optics_DU.dat + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SS.v3_3.dat optics_SS.dat + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SU.v1_3.dat optics_SU.dat +fi + +#ugwpv1 +if [ $DO_UGWP_V1 = .true. ]; then + cp @[INPUTDATA_ROOT]/FV3_input_data/ugwp_c384_tau.nc ./ugwp_limb_tau.nc +fi + +#Thompson +if [ $IMP_PHYSICS = 8 ]; then + cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/qr_acr_qsV2.dat . + cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/qr_acr_qgV2.dat . + cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/freezeH2O.dat . + cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/CCN_ACTIVATE.BIN . +fi + +#prognostic aerosols +if [ $CPLCHM = .true. ]; then + cp ${PATHRT}/parm/gocart/*.rc . + ln -sf @[INPUTDATA_ROOT]/GOCART/ExtData . +fi diff --git a/tests/parm/control_flake.nml.IN b/tests/parm/control_flake.nml.IN index 8c637562c81..8855c40d729 100644 --- a/tests/parm/control_flake.nml.IN +++ b/tests/parm/control_flake.nml.IN @@ -106,6 +106,12 @@ deflate_level=1 / &gfs_physics_nml + lkm = @[LKM] + iopt_lake = @[IOPT_LAKE] + lakefrac_threshold = @[LAKEFRAC_THRESHOLD] ! 0.15 + lakedepth_threshold = @[LAKEDEPTH_THRESHOLD] ! 0.5 + clm_lake_debug = .false. + fhzero = 6 h2o_phys = .true. ldiag3d = .false. diff --git a/tests/parm/rap.nml.IN b/tests/parm/rap.nml.IN index eea8cc353f2..75177cc3266 100644 --- a/tests/parm/rap.nml.IN +++ b/tests/parm/rap.nml.IN @@ -132,6 +132,7 @@ deflate_level=1 pdfcld = .false. fhswr = 3600. fhlwr = 3600. + frac_ice = @[FRAC_ICE] ialb = @[IALB] iems = @[IEMS] iaer = @[IAER] @@ -190,6 +191,7 @@ deflate_level=1 nstf_name = 2,0,0,0,0 nst_anl = .true. lkm = @[LKM] + iopt_lake = @[IOPT_LAKE] psautco = 0.0008,0.0005 prautco = 0.00015,0.00015 lgfdlmprad = .true. diff --git a/tests/parm/rrfs_conus13km_hrrr.nml.IN b/tests/parm/rrfs_conus13km_hrrr.nml.IN index bbcc30e1849..1d6ea99ad35 100644 --- a/tests/parm/rrfs_conus13km_hrrr.nml.IN +++ b/tests/parm/rrfs_conus13km_hrrr.nml.IN @@ -195,6 +195,7 @@ fhlwr = 1200.0 fhswr = 1200.0 fhzero = @[FHZERO] + frac_ice = @[FRAC_ICE] ! fscav_aero = @[FSCAV_AERO] gwd_opt = @[GWD_OPT] h2o_phys = .true. @@ -240,6 +241,7 @@ ! lfnc_p0 = @[LFNC_P0] lheatstrg = @[LHEATSTRG] lkm = @[LKM] + iopt_lake = @[IOPT_LAKE] lndp_type = @[LNDP_TYPE] lradar = @[LRADAR] lrefres = .true. diff --git a/tests/rt.conf b/tests/rt.conf index da5d08f6cf9..8316a06c495 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -48,7 +48,8 @@ RUN | cpld_control_p8_faster # ATM tests # ################################################################################################################################################################################### -COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON | | fv3 | +COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 | | fv3 | +RUN | control_flake | | fv3 | RUN | control_CubedSphereGrid | | fv3 | RUN | control_CubedSphereGrid_parallel | - wcoss2.intel acorn.intel | fv3 | RUN | control_latlon | | fv3 | @@ -92,7 +93,7 @@ RUN | regional_ifi_control RUN | regional_ifi_decomp | + acorn.intel | | RUN | regional_ifi_2threads | + acorn.intel | | -COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON | | fv3 | +COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON | | fv3 | RUN | rap_control | | fv3 | RUN | regional_spp_sppt_shum_skeb | | fv3 | @@ -106,6 +107,7 @@ RUN | hrrr_control RUN | hrrr_control_decomp | | | RUN | hrrr_control_2threads | | | RUN | hrrr_control_restart | | | hrrr_control + RUN | rrfs_v1beta | | fv3 | RUN | rrfs_v1nssl | | fv3 | RUN | rrfs_v1nssl_nohailnoccn | | fv3 | @@ -139,7 +141,7 @@ RUN | regional_control_faster # DEBUG ATM tests # ################################################################################################################################################################################### -COMPILE | -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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta | | fv3 | +COMPILE | -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta | | fv3 | RUN | rrfs_smoke_conus13km_hrrr_warm_debug | | fv3 | RUN | rrfs_smoke_conus13km_hrrr_warm_debug_2threads | | | @@ -166,13 +168,15 @@ RUN | rap_diag_debug RUN | rap_cires_ugwp_debug | | fv3 | RUN | rap_unified_ugwp_debug | | | RUN | rap_lndp_debug | | fv3 | -RUN | rap_flake_debug | | fv3 | RUN | rap_progcld_thompson_debug | | fv3 | RUN | rap_noah_debug | | fv3 | RUN | rap_sfcdiff_debug | | fv3 | RUN | rap_noah_sfcdiff_cires_ugwp_debug | | fv3 | RUN | rrfs_v1beta_debug | | fv3 | +RUN | rap_clm_lake_debug | | fv3 | +RUN | rap_flake_debug | | fv3 | + COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON | | fv3 | RUN | control_wam_debug | | fv3 | @@ -181,7 +185,7 @@ RUN | control_wam_debug ################################################################################################################################################################################### # -COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON | | fv3 | +COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON | | fv3 | RUN | regional_spp_sppt_shum_skeb_dyn32_phy32 | | fv3 | RUN | rap_control_dyn32_phy32 | | fv3 | RUN | hrrr_control_dyn32_phy32 | | fv3 | @@ -194,11 +198,11 @@ RUN | hrrr_control_restart_dyn32_phy32 COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON | | fv3 | RUN | rap_control_dyn64_phy32 | | fv3 | -COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON | | fv3 | +COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON | | fv3 | RUN | rap_control_debug_dyn32_phy32 | | fv3 | RUN | hrrr_control_debug_dyn32_phy32 | | fv3 | -COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON | | fv3 | +COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON | | fv3 | RUN | rap_control_dyn64_phy32_debug | | fv3 | ################################################################################################################################################################################### diff --git a/tests/rt.sh b/tests/rt.sh index 7848d354557..df6885638e4 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -446,7 +446,7 @@ if [[ $TESTS_FILE =~ '35d' ]] || [[ $TESTS_FILE =~ 'weekly' ]]; then fi -BL_DATE=20230418 +BL_DATE=20230424 RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-${BL_DATE}/${RT_COMPILER^^}} diff --git a/tests/rt_gnu.conf b/tests/rt_gnu.conf index 2ec838b1ab2..c0145a8456e 100644 --- a/tests/rt_gnu.conf +++ b/tests/rt_gnu.conf @@ -2,12 +2,13 @@ # CCPP PROD tests # ################################################################################################################################################################## -COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 | | fv3 | +COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8 | | fv3 | RUN | control_c48 | | fv3 | RUN | control_stochy | | fv3 | RUN | control_ras | | fv3 | RUN | control_p8 | | fv3 | +RUN | control_flake | | fv3 | COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON | | fv3 | @@ -60,6 +61,9 @@ RUN | rrfs_conus13km_hrrr_warm_debug # This will run and not crash, but will not match its baseline: #RUN | rrfs_smoke_conus13km_hrrr_warm_debug_decomp | | | +RUN | rap_flake_debug | | fv3 | +RUN | rap_clm_lake_debug | | fv3 | + COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON | | fv3 | RUN | control_wam_debug | | fv3 | @@ -68,7 +72,7 @@ RUN | control_wam_debug # 32-bit physics tests # ################################################################################################################################################################## -COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON | | fv3 | +COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON | | fv3 | RUN | rap_control_dyn32_phy32 | | fv3 | RUN | hrrr_control_dyn32_phy32 | | fv3 | RUN | rap_2threads_dyn32_phy32 | | | diff --git a/tests/tests/control_flake b/tests/tests/control_flake index cb3df6e9a65..7a732aa695f 100644 --- a/tests/tests/control_flake +++ b/tests/tests/control_flake @@ -29,11 +29,15 @@ export OUTPUT_GRID='gaussian_grid' export NSTF_NAME='2,0,0,0,0' export WRITE_DOPOST=.true. export IAER=5111 +export RESTART_INTERVAL=6 + +export LKM=1 +export IOPT_LAKE=1 export DO_SPPT=.true. export DO_SHUM=.true. export DO_SKEB=.true. -export FV3_RUN=control_run.IN +export FV3_RUN=lake_control_run.IN export CCPP_SUITE=FV3_GFS_v16_flake export INPUT_NML=control_flake.nml.IN diff --git a/tests/tests/control_flake_debug b/tests/tests/control_flake_debug new file mode 100644 index 00000000000..b5403e8c85f --- /dev/null +++ b/tests/tests/control_flake_debug @@ -0,0 +1,40 @@ +############################################################################### +# +# Global control with flake test +# +############################################################################### + +export TEST_DESCR="Compare global control flake results with previous trunk version" + +export CNTL_DIR=control_flake_debug + +export LIST_FILES="sfcf000.nc \ + sfcf001.nc \ + atmf000.nc \ + atmf001.nc" + +export_fv3 +export NPZ=127 +export NPZP=128 +export DT_ATMOS=720 +export SYEAR=2021 +export SMONTH=03 +export SDAY=22 +export SHOUR=06 +export OUTPUT_GRID='gaussian_grid' +export NSTF_NAME='2,0,0,0,0' +#export WRITE_DOPOST=.true. +export IAER=5111 +export FHMAX=1 +export OUTPUT_FH="0 1" + +export LKM=1 +export IOPT_LAKE=1 + +export DO_SPPT=.true. +export DO_SHUM=.true. +export DO_SKEB=.true. + +export FV3_RUN=lake_control_run.IN +export CCPP_SUITE=FV3_GFS_v16_flake +export INPUT_NML=control_flake.nml.IN diff --git a/tests/tests/hrrr_control b/tests/tests/hrrr_control index 1e47a413f24..7e78491304f 100644 --- a/tests/tests/hrrr_control +++ b/tests/tests/hrrr_control @@ -4,7 +4,7 @@ # ############################################################################### -export TEST_DESCR="Compare HRRR results with previous trunk version" +export TEST_DESCR="Compare HRRR CLM Lake results with previous trunk version" export CNTL_DIR=hrrr_control @@ -20,38 +20,38 @@ export LIST_FILES="sfcf000.nc \ GFSPRS.GrbF00 \ GFSPRS.GrbF09 \ GFSPRS.GrbF12 \ - RESTART/20210323.060000.coupler.res \ - RESTART/20210323.060000.fv_core.res.nc \ - RESTART/20210323.060000.fv_core.res.tile1.nc \ - RESTART/20210323.060000.fv_core.res.tile2.nc \ - RESTART/20210323.060000.fv_core.res.tile3.nc \ - RESTART/20210323.060000.fv_core.res.tile4.nc \ - RESTART/20210323.060000.fv_core.res.tile5.nc \ - RESTART/20210323.060000.fv_core.res.tile6.nc \ - RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ - RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ - RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ - RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ - RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ - RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ - RESTART/20210323.060000.fv_tracer.res.tile1.nc \ - RESTART/20210323.060000.fv_tracer.res.tile2.nc \ - RESTART/20210323.060000.fv_tracer.res.tile3.nc \ - RESTART/20210323.060000.fv_tracer.res.tile4.nc \ - RESTART/20210323.060000.fv_tracer.res.tile5.nc \ - RESTART/20210323.060000.fv_tracer.res.tile6.nc \ - RESTART/20210323.060000.phy_data.tile1.nc \ - RESTART/20210323.060000.phy_data.tile2.nc \ - RESTART/20210323.060000.phy_data.tile3.nc \ - RESTART/20210323.060000.phy_data.tile4.nc \ - RESTART/20210323.060000.phy_data.tile5.nc \ - RESTART/20210323.060000.phy_data.tile6.nc \ - RESTART/20210323.060000.sfc_data.tile1.nc \ - RESTART/20210323.060000.sfc_data.tile2.nc \ - RESTART/20210323.060000.sfc_data.tile3.nc \ - RESTART/20210323.060000.sfc_data.tile4.nc \ - RESTART/20210323.060000.sfc_data.tile5.nc \ - RESTART/20210323.060000.sfc_data.tile6.nc" + RESTART/20210322.120000.coupler.res \ + RESTART/20210322.120000.fv_core.res.nc \ + RESTART/20210322.120000.fv_core.res.tile1.nc \ + RESTART/20210322.120000.fv_core.res.tile2.nc \ + RESTART/20210322.120000.fv_core.res.tile3.nc \ + RESTART/20210322.120000.fv_core.res.tile4.nc \ + RESTART/20210322.120000.fv_core.res.tile5.nc \ + RESTART/20210322.120000.fv_core.res.tile6.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210322.120000.fv_tracer.res.tile1.nc \ + RESTART/20210322.120000.fv_tracer.res.tile2.nc \ + RESTART/20210322.120000.fv_tracer.res.tile3.nc \ + RESTART/20210322.120000.fv_tracer.res.tile4.nc \ + RESTART/20210322.120000.fv_tracer.res.tile5.nc \ + RESTART/20210322.120000.fv_tracer.res.tile6.nc \ + RESTART/20210322.120000.phy_data.tile1.nc \ + RESTART/20210322.120000.phy_data.tile2.nc \ + RESTART/20210322.120000.phy_data.tile3.nc \ + RESTART/20210322.120000.phy_data.tile4.nc \ + RESTART/20210322.120000.phy_data.tile5.nc \ + RESTART/20210322.120000.phy_data.tile6.nc \ + RESTART/20210322.120000.sfc_data.tile1.nc \ + RESTART/20210322.120000.sfc_data.tile2.nc \ + RESTART/20210322.120000.sfc_data.tile3.nc \ + RESTART/20210322.120000.sfc_data.tile4.nc \ + RESTART/20210322.120000.sfc_data.tile5.nc \ + RESTART/20210322.120000.sfc_data.tile6.nc" export_fv3 export NPZ=127 @@ -68,15 +68,19 @@ export WRITE_DOPOST=.true. export IAER=5111 export OUTPUT_FH='0 09 12' -export FV3_RUN=control_run.IN +export FRAC_GRID=.false. +export FRAC_ICE=.true. + +export FV3_RUN=lake_control_run.IN export CCPP_SUITE=FV3_HRRR export INPUT_NML=rap.nml.IN export FIELD_TABLE=field_table_thompson_aero_tke -export DIAG_TABLE=diag_table_rap +export NEW_DIAGTABLE=diag_table_rap export SFCLAY_COMPUTE_FLUX=.true. export LKM=1 +export IOPT_LAKE=2 export IMP_PHYSICS=8 export DNATS=0 export DO_SAT_ADJ=.false. diff --git a/tests/tests/hrrr_control_2threads b/tests/tests/hrrr_control_2threads index be17532b243..008ca80846a 100644 --- a/tests/tests/hrrr_control_2threads +++ b/tests/tests/hrrr_control_2threads @@ -4,7 +4,7 @@ # ############################################################################### -export TEST_DESCR="Compare HRRR with 2 threads results with control test" +export TEST_DESCR="Compare HRRR CLM Lake with 2 threads results with control test" export CNTL_DIR=hrrr_control @@ -20,38 +20,38 @@ export LIST_FILES="sfcf000.nc \ GFSPRS.GrbF00 \ GFSPRS.GrbF09 \ GFSPRS.GrbF12 \ - RESTART/20210323.060000.coupler.res \ - RESTART/20210323.060000.fv_core.res.nc \ - RESTART/20210323.060000.fv_core.res.tile1.nc \ - RESTART/20210323.060000.fv_core.res.tile2.nc \ - RESTART/20210323.060000.fv_core.res.tile3.nc \ - RESTART/20210323.060000.fv_core.res.tile4.nc \ - RESTART/20210323.060000.fv_core.res.tile5.nc \ - RESTART/20210323.060000.fv_core.res.tile6.nc \ - RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ - RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ - RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ - RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ - RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ - RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ - RESTART/20210323.060000.fv_tracer.res.tile1.nc \ - RESTART/20210323.060000.fv_tracer.res.tile2.nc \ - RESTART/20210323.060000.fv_tracer.res.tile3.nc \ - RESTART/20210323.060000.fv_tracer.res.tile4.nc \ - RESTART/20210323.060000.fv_tracer.res.tile5.nc \ - RESTART/20210323.060000.fv_tracer.res.tile6.nc \ - RESTART/20210323.060000.phy_data.tile1.nc \ - RESTART/20210323.060000.phy_data.tile2.nc \ - RESTART/20210323.060000.phy_data.tile3.nc \ - RESTART/20210323.060000.phy_data.tile4.nc \ - RESTART/20210323.060000.phy_data.tile5.nc \ - RESTART/20210323.060000.phy_data.tile6.nc \ - RESTART/20210323.060000.sfc_data.tile1.nc \ - RESTART/20210323.060000.sfc_data.tile2.nc \ - RESTART/20210323.060000.sfc_data.tile3.nc \ - RESTART/20210323.060000.sfc_data.tile4.nc \ - RESTART/20210323.060000.sfc_data.tile5.nc \ - RESTART/20210323.060000.sfc_data.tile6.nc" + RESTART/20210322.120000.coupler.res \ + RESTART/20210322.120000.fv_core.res.nc \ + RESTART/20210322.120000.fv_core.res.tile1.nc \ + RESTART/20210322.120000.fv_core.res.tile2.nc \ + RESTART/20210322.120000.fv_core.res.tile3.nc \ + RESTART/20210322.120000.fv_core.res.tile4.nc \ + RESTART/20210322.120000.fv_core.res.tile5.nc \ + RESTART/20210322.120000.fv_core.res.tile6.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210322.120000.fv_tracer.res.tile1.nc \ + RESTART/20210322.120000.fv_tracer.res.tile2.nc \ + RESTART/20210322.120000.fv_tracer.res.tile3.nc \ + RESTART/20210322.120000.fv_tracer.res.tile4.nc \ + RESTART/20210322.120000.fv_tracer.res.tile5.nc \ + RESTART/20210322.120000.fv_tracer.res.tile6.nc \ + RESTART/20210322.120000.phy_data.tile1.nc \ + RESTART/20210322.120000.phy_data.tile2.nc \ + RESTART/20210322.120000.phy_data.tile3.nc \ + RESTART/20210322.120000.phy_data.tile4.nc \ + RESTART/20210322.120000.phy_data.tile5.nc \ + RESTART/20210322.120000.phy_data.tile6.nc \ + RESTART/20210322.120000.sfc_data.tile1.nc \ + RESTART/20210322.120000.sfc_data.tile2.nc \ + RESTART/20210322.120000.sfc_data.tile3.nc \ + RESTART/20210322.120000.sfc_data.tile4.nc \ + RESTART/20210322.120000.sfc_data.tile5.nc \ + RESTART/20210322.120000.sfc_data.tile6.nc" export_fv3 export NPZ=127 @@ -68,20 +68,25 @@ export WRITE_DOPOST=.true. export IAER=5111 export OUTPUT_FH='0 09 12' +export FRAC_GRID=.false. +export FRAC_ICE=.true. + +export THRD=2 export atm_omp_num_threads=2 export INPES=$INPES_thrd export JNPES=$JNPES_thrd export WRTTASK_PER_GROUP=6 -export FV3_RUN=control_run.IN +export FV3_RUN=lake_control_run.IN export CCPP_SUITE=FV3_HRRR export INPUT_NML=rap.nml.IN export FIELD_TABLE=field_table_thompson_aero_tke -export DIAG_TABLE=diag_table_rap +export NEW_DIAGTABLE=diag_table_rap export SFCLAY_COMPUTE_FLUX=.true. export LKM=1 +export IOPT_LAKE=2 export IMP_PHYSICS=8 export DNATS=0 export DO_SAT_ADJ=.false. diff --git a/tests/tests/hrrr_control_2threads_dyn32_phy32 b/tests/tests/hrrr_control_2threads_dyn32_phy32 index cfecbb0a2ca..a53cdd4a5cc 100644 --- a/tests/tests/hrrr_control_2threads_dyn32_phy32 +++ b/tests/tests/hrrr_control_2threads_dyn32_phy32 @@ -1,10 +1,10 @@ ############################################################################### # -# HRRR control with 2 threads test +# HRRR CLM Lake with 2 threads test # ############################################################################### -export TEST_DESCR="Compare HRRR with 2 threads results with control test" +export TEST_DESCR="Compare HRRR CLM Lake with 2 threads results with control test" export CNTL_DIR=hrrr_control_dyn32_phy32 @@ -20,38 +20,38 @@ export LIST_FILES="sfcf000.nc \ GFSPRS.GrbF00 \ GFSPRS.GrbF09 \ GFSPRS.GrbF12 \ - RESTART/20210322.180000.coupler.res \ - RESTART/20210322.180000.fv_core.res.nc \ - RESTART/20210322.180000.fv_core.res.tile1.nc \ - RESTART/20210322.180000.fv_core.res.tile2.nc \ - RESTART/20210322.180000.fv_core.res.tile3.nc \ - RESTART/20210322.180000.fv_core.res.tile4.nc \ - RESTART/20210322.180000.fv_core.res.tile5.nc \ - RESTART/20210322.180000.fv_core.res.tile6.nc \ - RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc \ - RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc \ - RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc \ - RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc \ - RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc \ - RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc \ - RESTART/20210322.180000.fv_tracer.res.tile1.nc \ - RESTART/20210322.180000.fv_tracer.res.tile2.nc \ - RESTART/20210322.180000.fv_tracer.res.tile3.nc \ - RESTART/20210322.180000.fv_tracer.res.tile4.nc \ - RESTART/20210322.180000.fv_tracer.res.tile5.nc \ - RESTART/20210322.180000.fv_tracer.res.tile6.nc \ - RESTART/20210322.180000.phy_data.tile1.nc \ - RESTART/20210322.180000.phy_data.tile2.nc \ - RESTART/20210322.180000.phy_data.tile3.nc \ - RESTART/20210322.180000.phy_data.tile4.nc \ - RESTART/20210322.180000.phy_data.tile5.nc \ - RESTART/20210322.180000.phy_data.tile6.nc \ - RESTART/20210322.180000.sfc_data.tile1.nc \ - RESTART/20210322.180000.sfc_data.tile2.nc \ - RESTART/20210322.180000.sfc_data.tile3.nc \ - RESTART/20210322.180000.sfc_data.tile4.nc \ - RESTART/20210322.180000.sfc_data.tile5.nc \ - RESTART/20210322.180000.sfc_data.tile6.nc" + RESTART/20210322.120000.coupler.res \ + RESTART/20210322.120000.fv_core.res.nc \ + RESTART/20210322.120000.fv_core.res.tile1.nc \ + RESTART/20210322.120000.fv_core.res.tile2.nc \ + RESTART/20210322.120000.fv_core.res.tile3.nc \ + RESTART/20210322.120000.fv_core.res.tile4.nc \ + RESTART/20210322.120000.fv_core.res.tile5.nc \ + RESTART/20210322.120000.fv_core.res.tile6.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210322.120000.fv_tracer.res.tile1.nc \ + RESTART/20210322.120000.fv_tracer.res.tile2.nc \ + RESTART/20210322.120000.fv_tracer.res.tile3.nc \ + RESTART/20210322.120000.fv_tracer.res.tile4.nc \ + RESTART/20210322.120000.fv_tracer.res.tile5.nc \ + RESTART/20210322.120000.fv_tracer.res.tile6.nc \ + RESTART/20210322.120000.phy_data.tile1.nc \ + RESTART/20210322.120000.phy_data.tile2.nc \ + RESTART/20210322.120000.phy_data.tile3.nc \ + RESTART/20210322.120000.phy_data.tile4.nc \ + RESTART/20210322.120000.phy_data.tile5.nc \ + RESTART/20210322.120000.phy_data.tile6.nc \ + RESTART/20210322.120000.sfc_data.tile1.nc \ + RESTART/20210322.120000.sfc_data.tile2.nc \ + RESTART/20210322.120000.sfc_data.tile3.nc \ + RESTART/20210322.120000.sfc_data.tile4.nc \ + RESTART/20210322.120000.sfc_data.tile5.nc \ + RESTART/20210322.120000.sfc_data.tile6.nc" export_fv3 export NPZ=127 @@ -69,20 +69,25 @@ export IAER=5111 export OUTPUT_FH='0 09 12' export FHMAX=12 +export FRAC_GRID=.false. +export FRAC_ICE=.true. + +export THRD=2 export atm_omp_num_threads=2 export INPES=$INPES_thrd export JNPES=$JNPES_thrd export WRTTASK_PER_GROUP=6 -export FV3_RUN=control_run.IN +export FV3_RUN=lake_control_run.IN export CCPP_SUITE=FV3_HRRR export INPUT_NML=rap.nml.IN export FIELD_TABLE=field_table_thompson_aero_tke -export DIAG_TABLE=diag_table_rap +export NEW_DIAGTABLE=diag_table_rap export SFCLAY_COMPUTE_FLUX=.true. export LKM=1 +export IOPT_LAKE=2 export IMP_PHYSICS=8 export DNATS=0 export DO_SAT_ADJ=.false. diff --git a/tests/tests/hrrr_control_debug b/tests/tests/hrrr_control_debug index 7067153aff7..c03bd04b3e2 100644 --- a/tests/tests/hrrr_control_debug +++ b/tests/tests/hrrr_control_debug @@ -4,7 +4,7 @@ # ############################################################################### -export TEST_DESCR="Compare HRRR debug results with previous trunk version" +export TEST_DESCR="Compare HRRR CLM Lake debug results with previous trunk version" export CNTL_DIR=hrrr_control_debug @@ -27,15 +27,19 @@ export IAER=5111 export OUTPUT_FH='0 1' export FHMAX=1 -export FV3_RUN=control_run.IN +export FRAC_GRID=.false. +export FRAC_ICE=.true. + +export FV3_RUN=lake_control_run.IN export CCPP_SUITE=FV3_HRRR export INPUT_NML=rap.nml.IN export FIELD_TABLE=field_table_thompson_aero_tke -export DIAG_TABLE=diag_table_rap +export NEW_DIAGTABLE=diag_table_rap export SFCLAY_COMPUTE_FLUX=.true. export LKM=1 +export IOPT_LAKE=2 export IMP_PHYSICS=8 export DNATS=0 export DO_SAT_ADJ=.false. diff --git a/tests/tests/hrrr_control_debug_dyn32_phy32 b/tests/tests/hrrr_control_debug_dyn32_phy32 index 7a2438e435f..e0b1820c883 100644 --- a/tests/tests/hrrr_control_debug_dyn32_phy32 +++ b/tests/tests/hrrr_control_debug_dyn32_phy32 @@ -1,10 +1,10 @@ ############################################################################## # -# HRRR debug control test: atmosphere only at C96L127 +# HRRR debug CLM Lake control test: atmosphere only at C96L127 # ############################################################################### -export TEST_DESCR="Compare HRRR debug results with previous trunk version" +export TEST_DESCR="Compare HRRR CLM Lake debug results with previous trunk version" export CNTL_DIR=hrrr_control_debug_dyn32_phy32 @@ -27,15 +27,19 @@ export IAER=5111 export OUTPUT_FH='0 1' export FHMAX=1 -export FV3_RUN=control_run.IN +export FRAC_GRID=.false. +export FRAC_ICE=.true. + +export FV3_RUN=lake_control_run.IN export CCPP_SUITE=FV3_HRRR export INPUT_NML=rap.nml.IN export FIELD_TABLE=field_table_thompson_aero_tke -export DIAG_TABLE=diag_table_rap +export NEW_DIAGTABLE=diag_table_rap export SFCLAY_COMPUTE_FLUX=.true. export LKM=1 +export IOPT_LAKE=2 export IMP_PHYSICS=8 export DNATS=0 export DO_SAT_ADJ=.false. diff --git a/tests/tests/hrrr_control_decomp b/tests/tests/hrrr_control_decomp index 77b89a34758..ff5a8979194 100644 --- a/tests/tests/hrrr_control_decomp +++ b/tests/tests/hrrr_control_decomp @@ -4,7 +4,7 @@ # ############################################################################### -export TEST_DESCR="Compare HRRR decomp results with control" +export TEST_DESCR="Compare HRRR CLM Lake decomp results with control" export CNTL_DIR=hrrr_control @@ -20,38 +20,38 @@ export LIST_FILES="sfcf000.nc \ GFSPRS.GrbF00 \ GFSPRS.GrbF09 \ GFSPRS.GrbF12 \ - RESTART/20210323.060000.coupler.res \ - RESTART/20210323.060000.fv_core.res.nc \ - RESTART/20210323.060000.fv_core.res.tile1.nc \ - RESTART/20210323.060000.fv_core.res.tile2.nc \ - RESTART/20210323.060000.fv_core.res.tile3.nc \ - RESTART/20210323.060000.fv_core.res.tile4.nc \ - RESTART/20210323.060000.fv_core.res.tile5.nc \ - RESTART/20210323.060000.fv_core.res.tile6.nc \ - RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ - RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ - RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ - RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ - RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ - RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ - RESTART/20210323.060000.fv_tracer.res.tile1.nc \ - RESTART/20210323.060000.fv_tracer.res.tile2.nc \ - RESTART/20210323.060000.fv_tracer.res.tile3.nc \ - RESTART/20210323.060000.fv_tracer.res.tile4.nc \ - RESTART/20210323.060000.fv_tracer.res.tile5.nc \ - RESTART/20210323.060000.fv_tracer.res.tile6.nc \ - RESTART/20210323.060000.phy_data.tile1.nc \ - RESTART/20210323.060000.phy_data.tile2.nc \ - RESTART/20210323.060000.phy_data.tile3.nc \ - RESTART/20210323.060000.phy_data.tile4.nc \ - RESTART/20210323.060000.phy_data.tile5.nc \ - RESTART/20210323.060000.phy_data.tile6.nc \ - RESTART/20210323.060000.sfc_data.tile1.nc \ - RESTART/20210323.060000.sfc_data.tile2.nc \ - RESTART/20210323.060000.sfc_data.tile3.nc \ - RESTART/20210323.060000.sfc_data.tile4.nc \ - RESTART/20210323.060000.sfc_data.tile5.nc \ - RESTART/20210323.060000.sfc_data.tile6.nc" + RESTART/20210322.120000.coupler.res \ + RESTART/20210322.120000.fv_core.res.nc \ + RESTART/20210322.120000.fv_core.res.tile1.nc \ + RESTART/20210322.120000.fv_core.res.tile2.nc \ + RESTART/20210322.120000.fv_core.res.tile3.nc \ + RESTART/20210322.120000.fv_core.res.tile4.nc \ + RESTART/20210322.120000.fv_core.res.tile5.nc \ + RESTART/20210322.120000.fv_core.res.tile6.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210322.120000.fv_tracer.res.tile1.nc \ + RESTART/20210322.120000.fv_tracer.res.tile2.nc \ + RESTART/20210322.120000.fv_tracer.res.tile3.nc \ + RESTART/20210322.120000.fv_tracer.res.tile4.nc \ + RESTART/20210322.120000.fv_tracer.res.tile5.nc \ + RESTART/20210322.120000.fv_tracer.res.tile6.nc \ + RESTART/20210322.120000.phy_data.tile1.nc \ + RESTART/20210322.120000.phy_data.tile2.nc \ + RESTART/20210322.120000.phy_data.tile3.nc \ + RESTART/20210322.120000.phy_data.tile4.nc \ + RESTART/20210322.120000.phy_data.tile5.nc \ + RESTART/20210322.120000.phy_data.tile6.nc \ + RESTART/20210322.120000.sfc_data.tile1.nc \ + RESTART/20210322.120000.sfc_data.tile2.nc \ + RESTART/20210322.120000.sfc_data.tile3.nc \ + RESTART/20210322.120000.sfc_data.tile4.nc \ + RESTART/20210322.120000.sfc_data.tile5.nc \ + RESTART/20210322.120000.sfc_data.tile6.nc" export_fv3 export NPZ=127 @@ -68,18 +68,22 @@ export WRITE_DOPOST=.true. export IAER=5111 export OUTPUT_FH='0 09 12' +export FRAC_GRID=.false. +export FRAC_ICE=.true. + export INPES=6 export JNPES=4 -export FV3_RUN=control_run.IN +export FV3_RUN=lake_control_run.IN export CCPP_SUITE=FV3_HRRR export INPUT_NML=rap.nml.IN export FIELD_TABLE=field_table_thompson_aero_tke -export DIAG_TABLE=diag_table_rap +export NEW_DIAGTABLE=diag_table_rap export SFCLAY_COMPUTE_FLUX=.true. export LKM=1 +export IOPT_LAKE=2 export IMP_PHYSICS=8 export DNATS=0 export DO_SAT_ADJ=.false. diff --git a/tests/tests/hrrr_control_decomp_dyn32_phy32 b/tests/tests/hrrr_control_decomp_dyn32_phy32 index f7837892e45..d4b1c516df2 100644 --- a/tests/tests/hrrr_control_decomp_dyn32_phy32 +++ b/tests/tests/hrrr_control_decomp_dyn32_phy32 @@ -1,10 +1,10 @@ ############################################################################### # -# HRRR control test with different PEs +# HRRR CLM Lake control test with different PEs # ############################################################################### -export TEST_DESCR="Compare HRRR decomp results with control" +export TEST_DESCR="Compare HRRR CLM Lake decomp results with control" export CNTL_DIR=hrrr_control_dyn32_phy32 @@ -20,38 +20,38 @@ export LIST_FILES="sfcf000.nc \ GFSPRS.GrbF00 \ GFSPRS.GrbF09 \ GFSPRS.GrbF12 \ - RESTART/20210322.180000.coupler.res \ - RESTART/20210322.180000.fv_core.res.nc \ - RESTART/20210322.180000.fv_core.res.tile1.nc \ - RESTART/20210322.180000.fv_core.res.tile2.nc \ - RESTART/20210322.180000.fv_core.res.tile3.nc \ - RESTART/20210322.180000.fv_core.res.tile4.nc \ - RESTART/20210322.180000.fv_core.res.tile5.nc \ - RESTART/20210322.180000.fv_core.res.tile6.nc \ - RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc \ - RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc \ - RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc \ - RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc \ - RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc \ - RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc \ - RESTART/20210322.180000.fv_tracer.res.tile1.nc \ - RESTART/20210322.180000.fv_tracer.res.tile2.nc \ - RESTART/20210322.180000.fv_tracer.res.tile3.nc \ - RESTART/20210322.180000.fv_tracer.res.tile4.nc \ - RESTART/20210322.180000.fv_tracer.res.tile5.nc \ - RESTART/20210322.180000.fv_tracer.res.tile6.nc \ - RESTART/20210322.180000.phy_data.tile1.nc \ - RESTART/20210322.180000.phy_data.tile2.nc \ - RESTART/20210322.180000.phy_data.tile3.nc \ - RESTART/20210322.180000.phy_data.tile4.nc \ - RESTART/20210322.180000.phy_data.tile5.nc \ - RESTART/20210322.180000.phy_data.tile6.nc \ - RESTART/20210322.180000.sfc_data.tile1.nc \ - RESTART/20210322.180000.sfc_data.tile2.nc \ - RESTART/20210322.180000.sfc_data.tile3.nc \ - RESTART/20210322.180000.sfc_data.tile4.nc \ - RESTART/20210322.180000.sfc_data.tile5.nc \ - RESTART/20210322.180000.sfc_data.tile6.nc" + RESTART/20210322.120000.coupler.res \ + RESTART/20210322.120000.fv_core.res.nc \ + RESTART/20210322.120000.fv_core.res.tile1.nc \ + RESTART/20210322.120000.fv_core.res.tile2.nc \ + RESTART/20210322.120000.fv_core.res.tile3.nc \ + RESTART/20210322.120000.fv_core.res.tile4.nc \ + RESTART/20210322.120000.fv_core.res.tile5.nc \ + RESTART/20210322.120000.fv_core.res.tile6.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210322.120000.fv_tracer.res.tile1.nc \ + RESTART/20210322.120000.fv_tracer.res.tile2.nc \ + RESTART/20210322.120000.fv_tracer.res.tile3.nc \ + RESTART/20210322.120000.fv_tracer.res.tile4.nc \ + RESTART/20210322.120000.fv_tracer.res.tile5.nc \ + RESTART/20210322.120000.fv_tracer.res.tile6.nc \ + RESTART/20210322.120000.phy_data.tile1.nc \ + RESTART/20210322.120000.phy_data.tile2.nc \ + RESTART/20210322.120000.phy_data.tile3.nc \ + RESTART/20210322.120000.phy_data.tile4.nc \ + RESTART/20210322.120000.phy_data.tile5.nc \ + RESTART/20210322.120000.phy_data.tile6.nc \ + RESTART/20210322.120000.sfc_data.tile1.nc \ + RESTART/20210322.120000.sfc_data.tile2.nc \ + RESTART/20210322.120000.sfc_data.tile3.nc \ + RESTART/20210322.120000.sfc_data.tile4.nc \ + RESTART/20210322.120000.sfc_data.tile5.nc \ + RESTART/20210322.120000.sfc_data.tile6.nc" export_fv3 export NPZ=127 @@ -69,18 +69,22 @@ export IAER=5111 export OUTPUT_FH='0 09 12' export FHMAX=12 +export FRAC_GRID=.false. +export FRAC_ICE=.true. + export INPES=6 export JNPES=4 -export FV3_RUN=control_run.IN +export FV3_RUN=lake_control_run.IN export CCPP_SUITE=FV3_HRRR export INPUT_NML=rap.nml.IN export FIELD_TABLE=field_table_thompson_aero_tke -export DIAG_TABLE=diag_table_rap +export NEW_DIAGTABLE=diag_table_rap export SFCLAY_COMPUTE_FLUX=.true. export LKM=1 +export IOPT_LAKE=2 export IMP_PHYSICS=8 export DNATS=0 export DO_SAT_ADJ=.false. diff --git a/tests/tests/hrrr_control_dyn32_phy32 b/tests/tests/hrrr_control_dyn32_phy32 index aee729a1311..04669a8a645 100644 --- a/tests/tests/hrrr_control_dyn32_phy32 +++ b/tests/tests/hrrr_control_dyn32_phy32 @@ -1,10 +1,10 @@ ############################################################################### # -# HRRR control test: atmosphere only at C96L127 +# HRRR clm lake test: atmosphere only at C96L127 # ############################################################################### -export TEST_DESCR="Compare HRRR results with previous trunk version" +export TEST_DESCR="Compare HRRR CLM Lake results with previous trunk version" export CNTL_DIR=hrrr_control_dyn32_phy32 @@ -20,38 +20,38 @@ export LIST_FILES="sfcf000.nc \ GFSPRS.GrbF00 \ GFSPRS.GrbF09 \ GFSPRS.GrbF12 \ - RESTART/20210322.180000.coupler.res \ - RESTART/20210322.180000.fv_core.res.nc \ - RESTART/20210322.180000.fv_core.res.tile1.nc \ - RESTART/20210322.180000.fv_core.res.tile2.nc \ - RESTART/20210322.180000.fv_core.res.tile3.nc \ - RESTART/20210322.180000.fv_core.res.tile4.nc \ - RESTART/20210322.180000.fv_core.res.tile5.nc \ - RESTART/20210322.180000.fv_core.res.tile6.nc \ - RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc \ - RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc \ - RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc \ - RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc \ - RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc \ - RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc \ - RESTART/20210322.180000.fv_tracer.res.tile1.nc \ - RESTART/20210322.180000.fv_tracer.res.tile2.nc \ - RESTART/20210322.180000.fv_tracer.res.tile3.nc \ - RESTART/20210322.180000.fv_tracer.res.tile4.nc \ - RESTART/20210322.180000.fv_tracer.res.tile5.nc \ - RESTART/20210322.180000.fv_tracer.res.tile6.nc \ - RESTART/20210322.180000.phy_data.tile1.nc \ - RESTART/20210322.180000.phy_data.tile2.nc \ - RESTART/20210322.180000.phy_data.tile3.nc \ - RESTART/20210322.180000.phy_data.tile4.nc \ - RESTART/20210322.180000.phy_data.tile5.nc \ - RESTART/20210322.180000.phy_data.tile6.nc \ - RESTART/20210322.180000.sfc_data.tile1.nc \ - RESTART/20210322.180000.sfc_data.tile2.nc \ - RESTART/20210322.180000.sfc_data.tile3.nc \ - RESTART/20210322.180000.sfc_data.tile4.nc \ - RESTART/20210322.180000.sfc_data.tile5.nc \ - RESTART/20210322.180000.sfc_data.tile6.nc" + RESTART/20210322.120000.coupler.res \ + RESTART/20210322.120000.fv_core.res.nc \ + RESTART/20210322.120000.fv_core.res.tile1.nc \ + RESTART/20210322.120000.fv_core.res.tile2.nc \ + RESTART/20210322.120000.fv_core.res.tile3.nc \ + RESTART/20210322.120000.fv_core.res.tile4.nc \ + RESTART/20210322.120000.fv_core.res.tile5.nc \ + RESTART/20210322.120000.fv_core.res.tile6.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210322.120000.fv_tracer.res.tile1.nc \ + RESTART/20210322.120000.fv_tracer.res.tile2.nc \ + RESTART/20210322.120000.fv_tracer.res.tile3.nc \ + RESTART/20210322.120000.fv_tracer.res.tile4.nc \ + RESTART/20210322.120000.fv_tracer.res.tile5.nc \ + RESTART/20210322.120000.fv_tracer.res.tile6.nc \ + RESTART/20210322.120000.phy_data.tile1.nc \ + RESTART/20210322.120000.phy_data.tile2.nc \ + RESTART/20210322.120000.phy_data.tile3.nc \ + RESTART/20210322.120000.phy_data.tile4.nc \ + RESTART/20210322.120000.phy_data.tile5.nc \ + RESTART/20210322.120000.phy_data.tile6.nc \ + RESTART/20210322.120000.sfc_data.tile1.nc \ + RESTART/20210322.120000.sfc_data.tile2.nc \ + RESTART/20210322.120000.sfc_data.tile3.nc \ + RESTART/20210322.120000.sfc_data.tile4.nc \ + RESTART/20210322.120000.sfc_data.tile5.nc \ + RESTART/20210322.120000.sfc_data.tile6.nc" export_fv3 export NPZ=127 @@ -69,15 +69,19 @@ export IAER=5111 export OUTPUT_FH='0 09 12' export FHMAX=12 -export FV3_RUN=control_run.IN +export FRAC_GRID=.false. +export FRAC_ICE=.true. + +export FV3_RUN=lake_control_run.IN export CCPP_SUITE=FV3_HRRR export INPUT_NML=rap.nml.IN export FIELD_TABLE=field_table_thompson_aero_tke -export DIAG_TABLE=diag_table_rap +export NEW_DIAGTABLE=diag_table_rap export SFCLAY_COMPUTE_FLUX=.true. export LHEATSTRG=.false. export LKM=1 +export IOPT_LAKE=2 export IMP_PHYSICS=8 export DNATS=0 export DO_SAT_ADJ=.false. diff --git a/tests/tests/hrrr_control_restart b/tests/tests/hrrr_control_restart index 9292f6e8fad..c37a7510bc6 100644 --- a/tests/tests/hrrr_control_restart +++ b/tests/tests/hrrr_control_restart @@ -4,46 +4,14 @@ # ############################################################################### -export TEST_DESCR="Compare HRRR restart results with control" +export TEST_DESCR="Compare HRRR CLM Lake restart results with control" export CNTL_DIR=hrrr_control export LIST_FILES="sfcf012.nc \ atmf012.nc \ GFSFLX.GrbF12 \ - GFSPRS.GrbF12 \ - RESTART/20210323.060000.coupler.res \ - RESTART/20210323.060000.fv_core.res.nc \ - RESTART/20210323.060000.fv_core.res.tile1.nc \ - RESTART/20210323.060000.fv_core.res.tile2.nc \ - RESTART/20210323.060000.fv_core.res.tile3.nc \ - RESTART/20210323.060000.fv_core.res.tile4.nc \ - RESTART/20210323.060000.fv_core.res.tile5.nc \ - RESTART/20210323.060000.fv_core.res.tile6.nc \ - RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ - RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ - RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ - RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ - RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ - RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ - RESTART/20210323.060000.fv_tracer.res.tile1.nc \ - RESTART/20210323.060000.fv_tracer.res.tile2.nc \ - RESTART/20210323.060000.fv_tracer.res.tile3.nc \ - RESTART/20210323.060000.fv_tracer.res.tile4.nc \ - RESTART/20210323.060000.fv_tracer.res.tile5.nc \ - RESTART/20210323.060000.fv_tracer.res.tile6.nc \ - RESTART/20210323.060000.phy_data.tile1.nc \ - RESTART/20210323.060000.phy_data.tile2.nc \ - RESTART/20210323.060000.phy_data.tile3.nc \ - RESTART/20210323.060000.phy_data.tile4.nc \ - RESTART/20210323.060000.phy_data.tile5.nc \ - RESTART/20210323.060000.phy_data.tile6.nc \ - RESTART/20210323.060000.sfc_data.tile1.nc \ - RESTART/20210323.060000.sfc_data.tile2.nc \ - RESTART/20210323.060000.sfc_data.tile3.nc \ - RESTART/20210323.060000.sfc_data.tile4.nc \ - RESTART/20210323.060000.sfc_data.tile5.nc \ - RESTART/20210323.060000.sfc_data.tile6.nc" + GFSPRS.GrbF12" export_fv3 export NPZ=127 @@ -59,6 +27,9 @@ export WRITE_DOPOST=.true. export IAER=5111 export FHROT=6 +export FRAC_GRID=.false. +export FRAC_ICE=.true. + export WARM_START=.true. export NGGPS_IC=.false. export EXTERNAL_IC=.false. @@ -66,16 +37,17 @@ export MAKE_NH=.false. export MOUNTAIN=.true. export NA_INIT=0 -export FV3_RUN=control_run.IN +export FV3_RUN=lake_control_run.IN export CCPP_SUITE=FV3_HRRR export INPUT_NML=rap.nml.IN export FIELD_TABLE=field_table_thompson_aero_tke -export DIAG_TABLE=diag_table_rap +export NEW_DIAGTABLE=diag_table_rap export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${SHOUR} + ${FHROT} )))0000" export SFCLAY_COMPUTE_FLUX=.true. export LKM=1 +export IOPT_LAKE=2 export IMP_PHYSICS=8 export DNATS=0 export DO_SAT_ADJ=.false. diff --git a/tests/tests/hrrr_control_restart_dyn32_phy32 b/tests/tests/hrrr_control_restart_dyn32_phy32 index a10379c0883..3edf8beb15b 100644 --- a/tests/tests/hrrr_control_restart_dyn32_phy32 +++ b/tests/tests/hrrr_control_restart_dyn32_phy32 @@ -1,49 +1,17 @@ ############################################################################### # -# HRRR restart test +# HRRR CLM Lake restart test # ############################################################################### -export TEST_DESCR="Compare HRRR restart results with control" +export TEST_DESCR="Compare HRRR CLM Lake restart results with control" export CNTL_DIR=hrrr_control_dyn32_phy32 export LIST_FILES="sfcf012.nc \ atmf012.nc \ GFSFLX.GrbF12 \ - GFSPRS.GrbF12 \ - RESTART/20210322.180000.coupler.res \ - RESTART/20210322.180000.fv_core.res.nc \ - RESTART/20210322.180000.fv_core.res.tile1.nc \ - RESTART/20210322.180000.fv_core.res.tile2.nc \ - RESTART/20210322.180000.fv_core.res.tile3.nc \ - RESTART/20210322.180000.fv_core.res.tile4.nc \ - RESTART/20210322.180000.fv_core.res.tile5.nc \ - RESTART/20210322.180000.fv_core.res.tile6.nc \ - RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc \ - RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc \ - RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc \ - RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc \ - RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc \ - RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc \ - RESTART/20210322.180000.fv_tracer.res.tile1.nc \ - RESTART/20210322.180000.fv_tracer.res.tile2.nc \ - RESTART/20210322.180000.fv_tracer.res.tile3.nc \ - RESTART/20210322.180000.fv_tracer.res.tile4.nc \ - RESTART/20210322.180000.fv_tracer.res.tile5.nc \ - RESTART/20210322.180000.fv_tracer.res.tile6.nc \ - RESTART/20210322.180000.phy_data.tile1.nc \ - RESTART/20210322.180000.phy_data.tile2.nc \ - RESTART/20210322.180000.phy_data.tile3.nc \ - RESTART/20210322.180000.phy_data.tile4.nc \ - RESTART/20210322.180000.phy_data.tile5.nc \ - RESTART/20210322.180000.phy_data.tile6.nc \ - RESTART/20210322.180000.sfc_data.tile1.nc \ - RESTART/20210322.180000.sfc_data.tile2.nc \ - RESTART/20210322.180000.sfc_data.tile3.nc \ - RESTART/20210322.180000.sfc_data.tile4.nc \ - RESTART/20210322.180000.sfc_data.tile5.nc \ - RESTART/20210322.180000.sfc_data.tile6.nc" + GFSPRS.GrbF12" export_fv3 export NPZ=127 @@ -60,6 +28,9 @@ export IAER=5111 export FHROT=6 export FHMAX=12 +export FRAC_GRID=.false. +export FRAC_ICE=.true. + export WARM_START=.true. export NGGPS_IC=.false. export EXTERNAL_IC=.false. @@ -67,16 +38,17 @@ export MAKE_NH=.false. export MOUNTAIN=.true. export NA_INIT=0 -export FV3_RUN=control_run.IN +export FV3_RUN=lake_control_run.IN export CCPP_SUITE=FV3_HRRR export INPUT_NML=rap.nml.IN export FIELD_TABLE=field_table_thompson_aero_tke -export DIAG_TABLE=diag_table_rap +export NEW_DIAGTABLE=diag_table_rap export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${SHOUR} + ${FHROT} )))0000" export SFCLAY_COMPUTE_FLUX=.true. export LHEATSTRG=.false. export LKM=1 +export IOPT_LAKE=2 export IMP_PHYSICS=8 export DNATS=0 export DO_SAT_ADJ=.false. diff --git a/tests/tests/rap_clm_lake b/tests/tests/rap_clm_lake new file mode 100644 index 00000000000..c424fbb196d --- /dev/null +++ b/tests/tests/rap_clm_lake @@ -0,0 +1,106 @@ +############################################################################### +# +# RAP control test: lake coupled at C96L127 +# +############################################################################### + +export TEST_DESCR="Compare RAP lake coupled results with previous trunk version" + +export CNTL_DIR=rap_clm_lake + +export LIST_FILES="sfcf000.nc \ + sfcf021.nc \ + sfcf024.nc \ + atmf000.nc \ + atmf021.nc \ + atmf024.nc \ + GFSFLX.GrbF00 \ + GFSFLX.GrbF21 \ + GFSFLX.GrbF24 \ + GFSPRS.GrbF00 \ + GFSPRS.GrbF21 \ + GFSPRS.GrbF24 \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc" + +export_fv3 +export NPZ=127 +export NPZP=128 +export DT_ATMOS=300 +export SYEAR=2021 +export SMONTH=03 +export SDAY=22 +export SHOUR=06 +export RESTART_INTERVAL="12 -1" +export OUTPUT_GRID='gaussian_grid' +export NSTF_NAME='2,0,0,0,0' +export WRITE_DOPOST=.true. +export IAER=5111 +export OUTPUT_FH='0 21 24' + +export FV3_RUN=lake_control_run.IN +export CCPP_SUITE=FV3_RAP_clm_lake +export INPUT_NML=rap.nml.IN +export FIELD_TABLE=field_table_thompson_aero_tke +export DIAG_TABLE=diag_table_rap + +export LKM=1 +export IOPT_LAKE=2 +export FRAC_ICE=.true. + +export LHEATSTRG=.false. +export IMP_PHYSICS=8 +export DNATS=0 +export DO_SAT_ADJ=.false. +export LRADAR=.true. +export LTAEROSOL=.true. +export IALB=2 +export IEMS=2 +export HYBEDMF=.false. +export DO_MYNNEDMF=.true. +export DO_MYNNSFCLAY=.true. +export IMFSHALCNV=3 +export IMFDEEPCNV=3 +export LSM=3 +export LSOIL_LSM=9 +export KICE=9 + +export GWD_OPT=3 +export DO_UGWP_V0=.false. +export DO_UGWP_V0_OROG_ONLY=.false. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GSL_DRAG_SS=.true. +export DO_GSL_DRAG_TOFD=.true. +export DO_UGWP_V1=.false. +export DO_UGWP_V1_OROG_ONLY=.false. + diff --git a/tests/tests/rap_clm_lake_debug b/tests/tests/rap_clm_lake_debug new file mode 100644 index 00000000000..79a5d70d63c --- /dev/null +++ b/tests/tests/rap_clm_lake_debug @@ -0,0 +1,66 @@ +############################################################################### +# +# RAP control test: lake coupled at C96L127 (debug mode) +# +############################################################################### + +export TEST_DESCR="Compare RAP lake coupled results in debug mode with previous trunk version" + +export CNTL_DIR=rap_clm_lake_debug + +export LIST_FILES="sfcf000.nc \ + sfcf001.nc \ + atmf000.nc \ + atmf001.nc" + +export_fv3 +export NPZ=127 +export NPZP=128 +export DT_ATMOS=300 +export SYEAR=2021 +export SMONTH=03 +export SDAY=22 +export SHOUR=06 +export OUTPUT_GRID='gaussian_grid' +export NSTF_NAME='2,0,0,0,0' +export WRITE_DOPOST=.true. +export IAER=5111 +export OUTPUT_FH='0 1' +export FHMAX=1 + +export FV3_RUN=lake_control_run.IN +export CCPP_SUITE=FV3_RAP_clm_lake +export INPUT_NML=rap.nml.IN +export FIELD_TABLE=field_table_thompson_aero_tke +export DIAG_TABLE=diag_table_rap + +export LKM=1 +export IOPT_LAKE=2 +export FRAC_ICE=.true. + +export LHEATSTRG=.false. +export IMP_PHYSICS=8 +export DNATS=0 +export DO_SAT_ADJ=.false. +export LRADAR=.true. +export LTAEROSOL=.true. +export IALB=2 +export IEMS=2 +export HYBEDMF=.false. +export DO_MYNNEDMF=.true. +export DO_MYNNSFCLAY=.true. +export IMFSHALCNV=3 +export IMFDEEPCNV=3 +export LSM=3 +export LSOIL_LSM=9 +export KICE=9 + +export GWD_OPT=3 +export DO_UGWP_V0=.false. +export DO_UGWP_V0_OROG_ONLY=.false. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GSL_DRAG_SS=.true. +export DO_GSL_DRAG_TOFD=.true. +export DO_UGWP_V1=.false. +export DO_UGWP_V1_OROG_ONLY=.false. + diff --git a/tests/tests/rap_flake_debug b/tests/tests/rap_flake_debug index 39b90e85f1c..5f6d19f77a0 100644 --- a/tests/tests/rap_flake_debug +++ b/tests/tests/rap_flake_debug @@ -28,7 +28,7 @@ export FHMAX=1 export OUTPUT_FH="0 1" #export WRITE_DOPOST=.true. -export FV3_RUN=control_run.IN +export FV3_RUN=lake_control_run.IN export CCPP_SUITE=FV3_RAP_flake export INPUT_NML=rap.nml.IN export FIELD_TABLE=field_table_thompson_aero_tke @@ -51,6 +51,7 @@ export LSM=3 export LSOIL_LSM=9 export KICE=9 export LKM=1 +export IOPT_LAKE=1 export GWD_OPT=3 export DO_UGWP_V0=.false. diff --git a/tests/tests/rrfs_conus13km_hrrr_warm b/tests/tests/rrfs_conus13km_hrrr_warm index 7b85d19b379..aee7ecbe8e4 100644 --- a/tests/tests/rrfs_conus13km_hrrr_warm +++ b/tests/tests/rrfs_conus13km_hrrr_warm @@ -41,6 +41,7 @@ export SEDI_SEMI=.false. export DECFL=8 export LKM=1 +export IOPT_LAKE=2 export SFCLAY_COMPUTE_FLUX=.true. export IALB=2 export ICLIQ_SW=2 @@ -105,3 +106,5 @@ export INPUT_NML=rrfs_conus13km_hrrr.nml.IN export FIELD_TABLE=field_table_thompson_aero_tke export DIAG_TABLE=diag_table_hrrr export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN + +export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_conus13km_hrrr_warm_2threads b/tests/tests/rrfs_conus13km_hrrr_warm_2threads index 0334f2a7d73..7bcb6927a3a 100644 --- a/tests/tests/rrfs_conus13km_hrrr_warm_2threads +++ b/tests/tests/rrfs_conus13km_hrrr_warm_2threads @@ -46,6 +46,7 @@ export SEDI_SEMI=.false. export DECFL=8 export LKM=1 +export IOPT_LAKE=2 export SFCLAY_COMPUTE_FLUX=.true. export IALB=2 export ICLIQ_SW=2 @@ -110,3 +111,6 @@ export INPUT_NML=rrfs_conus13km_hrrr.nml.IN export FIELD_TABLE=field_table_thompson_aero_tke export DIAG_TABLE=diag_table_hrrr export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN + + +export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_conus13km_hrrr_warm_debug b/tests/tests/rrfs_conus13km_hrrr_warm_debug index 00be635af0f..af160182e37 100644 --- a/tests/tests/rrfs_conus13km_hrrr_warm_debug +++ b/tests/tests/rrfs_conus13km_hrrr_warm_debug @@ -39,6 +39,7 @@ export SEDI_SEMI=.false. export DECFL=8 export LKM=1 +export IOPT_LAKE=2 export SFCLAY_COMPUTE_FLUX=.true. export IALB=2 export ICLIQ_SW=2 @@ -103,3 +104,5 @@ export INPUT_NML=rrfs_conus13km_hrrr.nml.IN export FIELD_TABLE=field_table_thompson_aero_tke export DIAG_TABLE=diag_table_hrrr export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN + +export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_conus13km_hrrr_warm_decomp b/tests/tests/rrfs_conus13km_hrrr_warm_decomp index b90e11d20a9..ee84b2e021d 100644 --- a/tests/tests/rrfs_conus13km_hrrr_warm_decomp +++ b/tests/tests/rrfs_conus13km_hrrr_warm_decomp @@ -44,6 +44,7 @@ export SEDI_SEMI=.false. export DECFL=8 export LKM=1 +export IOPT_LAKE=2 export SFCLAY_COMPUTE_FLUX=.true. export IALB=2 export ICLIQ_SW=2 @@ -106,3 +107,5 @@ export INPUT_NML=rrfs_conus13km_hrrr.nml.IN export FIELD_TABLE=field_table_thompson_aero_tke export DIAG_TABLE=diag_table_hrrr export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN + +export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_conus13km_hrrr_warm_restart b/tests/tests/rrfs_conus13km_hrrr_warm_restart index 9a8ea267638..20caf15e1e7 100644 --- a/tests/tests/rrfs_conus13km_hrrr_warm_restart +++ b/tests/tests/rrfs_conus13km_hrrr_warm_restart @@ -40,6 +40,7 @@ export SEDI_SEMI=.false. export DECFL=8 export LKM=1 +export IOPT_LAKE=2 export SFCLAY_COMPUTE_FLUX=.true. export IALB=2 export ICLIQ_SW=2 @@ -104,3 +105,5 @@ export INPUT_NML=rrfs_conus13km_hrrr.nml.IN export FIELD_TABLE=field_table_thompson_aero_tke export DIAG_TABLE=diag_table_hrrr export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN + +export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_conus13km_hrrr_warm_restart_mismatch b/tests/tests/rrfs_conus13km_hrrr_warm_restart_mismatch index 9c31539088a..b2703d1481a 100644 --- a/tests/tests/rrfs_conus13km_hrrr_warm_restart_mismatch +++ b/tests/tests/rrfs_conus13km_hrrr_warm_restart_mismatch @@ -104,3 +104,5 @@ export INPUT_NML=rrfs_conus13km_hrrr.nml.IN export FIELD_TABLE=field_table_thompson_aero_tke export DIAG_TABLE=diag_table_hrrr export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN + +export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_conus13km_radar_tten_warm b/tests/tests/rrfs_conus13km_radar_tten_warm index dc82d24e9fa..346907349df 100644 --- a/tests/tests/rrfs_conus13km_radar_tten_warm +++ b/tests/tests/rrfs_conus13km_radar_tten_warm @@ -43,6 +43,7 @@ export SEDI_SEMI=.false. export DECFL=8 export LKM=1 +export IOPT_LAKE=2 export SFCLAY_COMPUTE_FLUX=.true. export IALB=2 export ICLIQ_SW=2 @@ -107,3 +108,5 @@ export INPUT_NML=rrfs_conus13km_hrrr.nml.IN export FIELD_TABLE=field_table_thompson_aero_tke export DIAG_TABLE=diag_table_hrrr export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN + +export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_conus13km_radar_tten_warm_2threads b/tests/tests/rrfs_conus13km_radar_tten_warm_2threads index 173142c35d2..3f5ab71ddcd 100644 --- a/tests/tests/rrfs_conus13km_radar_tten_warm_2threads +++ b/tests/tests/rrfs_conus13km_radar_tten_warm_2threads @@ -48,6 +48,7 @@ export SEDI_SEMI=.false. export DECFL=8 export LKM=1 +export IOPT_LAKE=2 export SFCLAY_COMPUTE_FLUX=.true. export IALB=2 export ICLIQ_SW=2 @@ -112,3 +113,5 @@ export INPUT_NML=rrfs_conus13km_hrrr.nml.IN export FIELD_TABLE=field_table_thompson_aero_tke export DIAG_TABLE=diag_table_hrrr export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN + +export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_conus13km_radar_tten_warm_debug b/tests/tests/rrfs_conus13km_radar_tten_warm_debug index 962175f9aa6..46736e8cfcc 100644 --- a/tests/tests/rrfs_conus13km_radar_tten_warm_debug +++ b/tests/tests/rrfs_conus13km_radar_tten_warm_debug @@ -41,6 +41,7 @@ export SEDI_SEMI=.false. export DECFL=8 export LKM=1 +export IOPT_LAKE=2 export SFCLAY_COMPUTE_FLUX=.true. export IALB=2 export ICLIQ_SW=2 @@ -105,3 +106,5 @@ export INPUT_NML=rrfs_conus13km_hrrr.nml.IN export FIELD_TABLE=field_table_thompson_aero_tke export DIAG_TABLE=diag_table_hrrr export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN + +export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_conus13km_radar_tten_warm_decomp b/tests/tests/rrfs_conus13km_radar_tten_warm_decomp index 761e27952ec..18eb6c33741 100644 --- a/tests/tests/rrfs_conus13km_radar_tten_warm_decomp +++ b/tests/tests/rrfs_conus13km_radar_tten_warm_decomp @@ -46,6 +46,7 @@ export SEDI_SEMI=.false. export DECFL=8 export LKM=1 +export IOPT_LAKE=2 export SFCLAY_COMPUTE_FLUX=.true. export IALB=2 export ICLIQ_SW=2 @@ -108,3 +109,5 @@ export INPUT_NML=rrfs_conus13km_hrrr.nml.IN export FIELD_TABLE=field_table_thompson_aero_tke export DIAG_TABLE=diag_table_hrrr export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN + +export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_conus13km_radar_tten_warm_restart b/tests/tests/rrfs_conus13km_radar_tten_warm_restart index 14d365e679a..52233523f17 100644 --- a/tests/tests/rrfs_conus13km_radar_tten_warm_restart +++ b/tests/tests/rrfs_conus13km_radar_tten_warm_restart @@ -42,6 +42,7 @@ export SEDI_SEMI=.false. export DECFL=8 export LKM=1 +export IOPT_LAKE=2 export SFCLAY_COMPUTE_FLUX=.true. export IALB=2 export ICLIQ_SW=2 @@ -106,3 +107,5 @@ export INPUT_NML=rrfs_conus13km_hrrr.nml.IN export FIELD_TABLE=field_table_thompson_aero_tke export DIAG_TABLE=diag_table_hrrr export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN + +export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_smoke_conus13km_hrrr_warm b/tests/tests/rrfs_smoke_conus13km_hrrr_warm index 6e9c9dee6e7..b3d41a2f026 100644 --- a/tests/tests/rrfs_smoke_conus13km_hrrr_warm +++ b/tests/tests/rrfs_smoke_conus13km_hrrr_warm @@ -44,6 +44,7 @@ export RRFS_SMOKE=.true. export SEAS_OPT=0 export LKM=1 +export IOPT_LAKE=2 export SFCLAY_COMPUTE_FLUX=.true. export IALB=2 export ICLIQ_SW=2 @@ -108,4 +109,5 @@ export INPUT_NML=rrfs_conus13km_hrrr.nml.IN export FIELD_TABLE=field_table_thompson_aero_tke_smoke export DIAG_TABLE=diag_table_hrrr export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN -export DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke \ No newline at end of file +export DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke +export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_smoke_conus13km_hrrr_warm_2threads b/tests/tests/rrfs_smoke_conus13km_hrrr_warm_2threads index 9d70a751280..df8f0238227 100644 --- a/tests/tests/rrfs_smoke_conus13km_hrrr_warm_2threads +++ b/tests/tests/rrfs_smoke_conus13km_hrrr_warm_2threads @@ -114,3 +114,5 @@ export FIELD_TABLE=field_table_thompson_aero_tke_smoke export DIAG_TABLE=diag_table_hrrr export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN export DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke + +export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_smoke_conus13km_hrrr_warm_debug b/tests/tests/rrfs_smoke_conus13km_hrrr_warm_debug index 661fff7ca7e..14950bfbbf0 100644 --- a/tests/tests/rrfs_smoke_conus13km_hrrr_warm_debug +++ b/tests/tests/rrfs_smoke_conus13km_hrrr_warm_debug @@ -107,3 +107,5 @@ export FIELD_TABLE=field_table_thompson_aero_tke_smoke export DIAG_TABLE=diag_table_hrrr export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN export DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke + +export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_smoke_conus13km_hrrr_warm_debug_2threads b/tests/tests/rrfs_smoke_conus13km_hrrr_warm_debug_2threads index 124e93de521..1fde465f1be 100644 --- a/tests/tests/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +++ b/tests/tests/rrfs_smoke_conus13km_hrrr_warm_debug_2threads @@ -112,3 +112,5 @@ export FIELD_TABLE=field_table_thompson_aero_tke_smoke export DIAG_TABLE=diag_table_hrrr export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN export DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke + +export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_smoke_conus13km_hrrr_warm_debug_decomp b/tests/tests/rrfs_smoke_conus13km_hrrr_warm_debug_decomp index 2031fc77d1a..4860e9e67da 100644 --- a/tests/tests/rrfs_smoke_conus13km_hrrr_warm_debug_decomp +++ b/tests/tests/rrfs_smoke_conus13km_hrrr_warm_debug_decomp @@ -108,3 +108,5 @@ export FIELD_TABLE=field_table_thompson_aero_tke_smoke export DIAG_TABLE=diag_table_hrrr export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN export DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke + +export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_smoke_conus13km_hrrr_warm_decomp b/tests/tests/rrfs_smoke_conus13km_hrrr_warm_decomp index 58b07b3ea4a..cbffadb7c4c 100644 --- a/tests/tests/rrfs_smoke_conus13km_hrrr_warm_decomp +++ b/tests/tests/rrfs_smoke_conus13km_hrrr_warm_decomp @@ -110,3 +110,5 @@ export FIELD_TABLE=field_table_thompson_aero_tke_smoke export DIAG_TABLE=diag_table_hrrr export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN export DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke + +export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_smoke_conus13km_hrrr_warm_restart b/tests/tests/rrfs_smoke_conus13km_hrrr_warm_restart index efd07b9fab8..a7df19d2693 100644 --- a/tests/tests/rrfs_smoke_conus13km_hrrr_warm_restart +++ b/tests/tests/rrfs_smoke_conus13km_hrrr_warm_restart @@ -108,3 +108,5 @@ export FIELD_TABLE=field_table_thompson_aero_tke_smoke export DIAG_TABLE=diag_table_hrrr export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN export DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke + +export FRAC_ICE=.true. diff --git a/tests/tests/rrfs_smoke_conus13km_radar_tten_warm b/tests/tests/rrfs_smoke_conus13km_radar_tten_warm index 1366e3462c5..6e47ece44b6 100644 --- a/tests/tests/rrfs_smoke_conus13km_radar_tten_warm +++ b/tests/tests/rrfs_smoke_conus13km_radar_tten_warm @@ -111,3 +111,5 @@ export FIELD_TABLE=field_table_thompson_aero_tke_smoke export DIAG_TABLE=diag_table_hrrr export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN export DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke + +export FRAC_ICE=.true. From 6c7d5d43d3802fa49dddfed50112bf683e5c14d7 Mon Sep 17 00:00:00 2001 From: XiaqiongZhou-NOAA <48254930+XiaqiongZhou-NOAA@users.noreply.github.com> Date: Fri, 28 Apr 2023 11:29:53 -0400 Subject: [PATCH 25/30] Dycore semi-implicit solver update (#1720) * Update FV3 to a new version: Dycore semi-implicit solver update --- FV3 | 2 +- tests/RegressionTests_acorn.intel.log | 1360 ++++++------ tests/RegressionTests_cheyenne.gnu.log | 517 ++--- tests/RegressionTests_cheyenne.intel.log | 1376 ++++++------ tests/RegressionTests_hera.gnu.log | 503 +++-- tests/RegressionTests_hera.intel.log | 1416 ++++++------ tests/RegressionTests_jet.intel.log | 2175 ++++++++++--------- tests/RegressionTests_orion.intel.log | 2506 +++++++++++----------- tests/RegressionTests_wcoss2.intel.log | 1170 +++++----- tests/rt.conf | 2 +- tests/rt.sh | 2 +- 11 files changed, 5470 insertions(+), 5559 deletions(-) diff --git a/FV3 b/FV3 index 33ac26df83d..e0d95b11393 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 33ac26df83d1eccf2b591392396f9e6682a3d856 +Subproject commit e0d95b11393585e8b88f00664030a27964645b98 diff --git a/tests/RegressionTests_acorn.intel.log b/tests/RegressionTests_acorn.intel.log index 9dedcd48f05..7a5d1b42f5e 100644 --- a/tests/RegressionTests_acorn.intel.log +++ b/tests/RegressionTests_acorn.intel.log @@ -1,41 +1,41 @@ -Tue Apr 25 01:35:00 UTC 2023 +Thu Apr 27 14:13:50 UTC 2023 Start Regression test -Compile 001 elapsed time 725 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 1304 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 539 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 518 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 005 elapsed time 1046 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 663 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 540 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 008 elapsed time 1274 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 1043 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 1147 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 975 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 1163 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 690 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 014 elapsed time 512 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 981 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 653 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 572 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 542 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 505 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 020 elapsed time 303 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 021 elapsed time 1007 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 022 elapsed time 745 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 023 elapsed time 200 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 024 elapsed time 202 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 265 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 026 elapsed time 499 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 027 elapsed time 971 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 490 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 903 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 537 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 585 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 032 elapsed time 960 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8_mixedmode -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/cpld_control_p8_mixedmode +Compile 001 elapsed time 574 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1113 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 544 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 509 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 005 elapsed time 1322 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 871 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 811 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 008 elapsed time 2033 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 1222 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 483 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 454 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 1167 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 837 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 014 elapsed time 243 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 473 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 1495 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 611 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 373 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 644 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 020 elapsed time 442 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 021 elapsed time 644 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 022 elapsed time 600 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 023 elapsed time 558 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 024 elapsed time 466 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 266 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 026 elapsed time 912 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 027 elapsed time 585 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 972 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 904 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 473 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 165 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 032 elapsed time 555 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8_mixedmode +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -100,14 +100,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 332.503414 -The maximum resident set size (KB) = 2946220 +The total amount of wall time = 334.970583 +The maximum resident set size (KB) = 2946900 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_gfsv17 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/cpld_control_gfsv17 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_gfsv17 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -171,14 +171,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 259.036510 -The maximum resident set size (KB) = 1575492 +The total amount of wall time = 257.948058 +The maximum resident set size (KB) = 1585616 Test 002 cpld_control_gfsv17 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/cpld_control_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -243,14 +243,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 386.852413 -The maximum resident set size (KB) = 2979948 +The total amount of wall time = 384.332978 +The maximum resident set size (KB) = 2979260 Test 003 cpld_control_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/cpld_restart_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -303,14 +303,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 228.843863 -The maximum resident set size (KB) = 2863488 +The total amount of wall time = 230.364475 +The maximum resident set size (KB) = 2864448 Test 004 cpld_restart_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/cpld_control_qr_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -375,14 +375,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 385.434544 -The maximum resident set size (KB) = 2991160 +The total amount of wall time = 386.711042 +The maximum resident set size (KB) = 2989144 Test 005 cpld_control_qr_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/cpld_restart_qr_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -435,14 +435,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 232.030900 -The maximum resident set size (KB) = 2878164 +The total amount of wall time = 230.204309 +The maximum resident set size (KB) = 2884676 Test 006 cpld_restart_qr_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/cpld_2threads_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -495,14 +495,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 364.696515 -The maximum resident set size (KB) = 3280884 +The total amount of wall time = 366.182083 +The maximum resident set size (KB) = 3285460 Test 007 cpld_2threads_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/cpld_decomp_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -555,14 +555,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 377.377611 -The maximum resident set size (KB) = 2977248 +The total amount of wall time = 378.646031 +The maximum resident set size (KB) = 2977732 Test 008 cpld_decomp_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/cpld_mpi_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -615,14 +615,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 317.477901 -The maximum resident set size (KB) = 2908888 +The total amount of wall time = 316.649093 +The maximum resident set size (KB) = 2906772 Test 009 cpld_mpi_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_ciceC_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/cpld_control_ciceC_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_ciceC_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -687,14 +687,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 383.074433 -The maximum resident set size (KB) = 2978716 +The total amount of wall time = 384.075029 +The maximum resident set size (KB) = 2979236 Test 010 cpld_control_ciceC_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/cpld_control_noaero_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/cpld_control_noaero_p8 Checking test 011 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -758,14 +758,14 @@ Checking test 011 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 280.923937 -The maximum resident set size (KB) = 1567880 +The total amount of wall time = 282.441869 +The maximum resident set size (KB) = 1574864 Test 011 cpld_control_noaero_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/cpld_control_nowave_noaero_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_c96_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/cpld_control_nowave_noaero_p8 Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -827,14 +827,14 @@ Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 299.076175 -The maximum resident set size (KB) = 1629640 +The total amount of wall time = 300.398391 +The maximum resident set size (KB) = 1626124 Test 012 cpld_control_nowave_noaero_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/cpld_control_noaero_p8_agrid +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_noaero_p8_agrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/cpld_control_noaero_p8_agrid Checking test 013 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -896,14 +896,14 @@ Checking test 013 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 306.489492 -The maximum resident set size (KB) = 1621068 +The total amount of wall time = 307.498730 +The maximum resident set size (KB) = 1619172 Test 013 cpld_control_noaero_p8_agrid PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/cpld_control_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/cpld_control_c48 Checking test 014 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -953,14 +953,14 @@ Checking test 014 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 432.714083 -The maximum resident set size (KB) = 2637688 +The total amount of wall time = 433.585655 +The maximum resident set size (KB) = 2635624 Test 014 cpld_control_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/cpld_warmstart_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/cpld_warmstart_c48 Checking test 015 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1010,14 +1010,14 @@ Checking test 015 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 121.209738 -The maximum resident set size (KB) = 2647960 +The total amount of wall time = 122.256311 +The maximum resident set size (KB) = 2651192 Test 015 cpld_warmstart_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/cpld_restart_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/cpld_restart_c48 Checking test 016 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1067,14 +1067,14 @@ Checking test 016 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 66.663834 -The maximum resident set size (KB) = 2072020 +The total amount of wall time = 67.322926 +The maximum resident set size (KB) = 2065892 Test 016 cpld_restart_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/cpld_control_p8_faster +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/cpld_control_p8_faster Checking test 017 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1139,14 +1139,14 @@ Checking test 017 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 378.047782 -The maximum resident set size (KB) = 2975272 +The total amount of wall time = 376.132145 +The maximum resident set size (KB) = 2985756 Test 017 cpld_control_p8_faster PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_flake -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_flake +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_flake +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_flake Checking test 018 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1157,14 +1157,14 @@ Checking test 018 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 213.026507 -The maximum resident set size (KB) = 559700 +The total amount of wall time = 214.004516 +The maximum resident set size (KB) = 562340 Test 018 control_flake PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_CubedSphereGrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_CubedSphereGrid +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_CubedSphereGrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_CubedSphereGrid Checking test 019 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1191,14 +1191,14 @@ Checking test 019 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 129.698798 -The maximum resident set size (KB) = 511524 +The total amount of wall time = 128.529015 +The maximum resident set size (KB) = 513360 Test 019 control_CubedSphereGrid PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_latlon -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_latlon +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_latlon +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_latlon Checking test 020 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1209,14 +1209,14 @@ Checking test 020 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 133.161425 -The maximum resident set size (KB) = 512560 +The total amount of wall time = 131.436175 +The maximum resident set size (KB) = 517404 Test 020 control_latlon PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_wrtGauss_netcdf_parallel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_wrtGauss_netcdf_parallel Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1227,14 +1227,14 @@ Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.047327 -The maximum resident set size (KB) = 514576 +The total amount of wall time = 134.824789 +The maximum resident set size (KB) = 512652 Test 021 control_wrtGauss_netcdf_parallel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_c48 Checking test 022 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1273,14 +1273,14 @@ Checking test 022 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 329.457511 -The maximum resident set size (KB) = 675008 +The total amount of wall time = 329.127175 +The maximum resident set size (KB) = 675396 Test 022 control_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_c192 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_c192 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_c192 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_c192 Checking test 023 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1291,14 +1291,14 @@ Checking test 023 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 528.534169 -The maximum resident set size (KB) = 614968 +The total amount of wall time = 528.563552 +The maximum resident set size (KB) = 615544 Test 023 control_c192 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_c384 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_c384 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_c384 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_c384 Checking test 024 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1309,14 +1309,14 @@ Checking test 024 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 568.087683 -The maximum resident set size (KB) = 924148 +The total amount of wall time = 567.252767 +The maximum resident set size (KB) = 917376 Test 024 control_c384 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_c384gdas -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_c384gdas +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_c384gdas +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_c384gdas Checking test 025 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1359,14 +1359,14 @@ Checking test 025 control_c384gdas 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 = 500.756593 -The maximum resident set size (KB) = 1060456 +The total amount of wall time = 509.747385 +The maximum resident set size (KB) = 1060532 Test 025 control_c384gdas PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_stochy +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_stochy Checking test 026 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1377,28 +1377,28 @@ Checking test 026 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 89.539990 -The maximum resident set size (KB) = 516012 +The total amount of wall time = 90.438187 +The maximum resident set size (KB) = 517032 Test 026 control_stochy PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_stochy_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_stochy_restart Checking test 027 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 49.292419 -The maximum resident set size (KB) = 288652 +The total amount of wall time = 48.933130 +The maximum resident set size (KB) = 288256 Test 027 control_stochy_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_lndp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_lndp Checking test 028 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1409,14 +1409,14 @@ Checking test 028 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 83.965880 -The maximum resident set size (KB) = 519356 +The total amount of wall time = 83.069142 +The maximum resident set size (KB) = 516144 Test 028 control_lndp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_iovr4 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_iovr4 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_iovr4 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_iovr4 Checking test 029 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1431,14 +1431,14 @@ Checking test 029 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 137.054505 -The maximum resident set size (KB) = 513868 +The total amount of wall time = 136.299052 +The maximum resident set size (KB) = 515432 Test 029 control_iovr4 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_iovr5 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_iovr5 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_iovr5 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_iovr5 Checking test 030 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1453,14 +1453,14 @@ Checking test 030 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.542871 -The maximum resident set size (KB) = 515444 +The total amount of wall time = 135.385311 +The maximum resident set size (KB) = 515160 Test 030 control_iovr5 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_p8 Checking test 031 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1507,14 +1507,14 @@ Checking test 031 control_p8 results .... 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.910423 -The maximum resident set size (KB) = 1485196 +The total amount of wall time = 178.419774 +The maximum resident set size (KB) = 1481816 Test 031 control_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_restart_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_restart_p8 Checking test 032 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1553,14 +1553,14 @@ Checking test 032 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 99.868718 -The maximum resident set size (KB) = 651492 +The total amount of wall time = 98.242831 +The maximum resident set size (KB) = 651960 Test 032 control_restart_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_qr_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_qr_p8 Checking test 033 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1607,14 +1607,14 @@ Checking test 033 control_qr_p8 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.198411 -The maximum resident set size (KB) = 1495060 +The total amount of wall time = 174.792100 +The maximum resident set size (KB) = 1492740 Test 033 control_qr_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_restart_qr_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_restart_qr_p8 Checking test 034 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1653,14 +1653,14 @@ Checking test 034 control_restart_qr_p8 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 = 100.776790 -The maximum resident set size (KB) = 668700 +The total amount of wall time = 97.422629 +The maximum resident set size (KB) = 667520 Test 034 control_restart_qr_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_decomp_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_decomp_p8 Checking test 035 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1703,14 +1703,14 @@ Checking test 035 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 180.922074 -The maximum resident set size (KB) = 1472136 +The total amount of wall time = 179.913369 +The maximum resident set size (KB) = 1472360 Test 035 control_decomp_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_2threads_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_2threads_p8 Checking test 036 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1753,14 +1753,14 @@ Checking test 036 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 156.641468 -The maximum resident set size (KB) = 1563452 +The total amount of wall time = 154.523797 +The maximum resident set size (KB) = 1568236 Test 036 control_2threads_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_p8_lndp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_p8_lndp Checking test 037 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1779,14 +1779,14 @@ Checking test 037 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 324.749760 -The maximum resident set size (KB) = 1482376 +The total amount of wall time = 319.887606 +The maximum resident set size (KB) = 1482496 Test 037 control_p8_lndp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8_rrtmgp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_p8_rrtmgp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8_rrtmgp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_p8_rrtmgp Checking test 038 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1833,14 +1833,14 @@ Checking test 038 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 234.183749 -The maximum resident set size (KB) = 1539732 +The total amount of wall time = 233.134772 +The maximum resident set size (KB) = 1546004 Test 038 control_p8_rrtmgp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8_mynn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_p8_mynn +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8_mynn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_p8_mynn Checking test 039 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1887,14 +1887,14 @@ Checking test 039 control_p8_mynn results .... 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.273121 -The maximum resident set size (KB) = 1480620 +The total amount of wall time = 178.641219 +The maximum resident set size (KB) = 1481592 Test 039 control_p8_mynn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/merra2_thompson -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/merra2_thompson +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/merra2_thompson +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/merra2_thompson Checking test 040 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1941,14 +1941,14 @@ Checking test 040 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 202.877962 -The maximum resident set size (KB) = 1492004 +The total amount of wall time = 202.528037 +The maximum resident set size (KB) = 1494480 Test 040 merra2_thompson PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/regional_control +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/regional_control Checking test 041 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1959,28 +1959,28 @@ Checking test 041 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 286.966050 -The maximum resident set size (KB) = 652712 +The total amount of wall time = 287.947455 +The maximum resident set size (KB) = 653264 Test 041 regional_control PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/regional_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/regional_restart Checking test 042 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 153.659323 -The maximum resident set size (KB) = 648624 +The total amount of wall time = 156.251526 +The maximum resident set size (KB) = 646760 Test 042 regional_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/regional_control_qr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/regional_control_qr Checking test 043 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1991,28 +1991,28 @@ Checking test 043 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 288.187873 -The maximum resident set size (KB) = 649640 +The total amount of wall time = 287.908621 +The maximum resident set size (KB) = 651324 Test 043 regional_control_qr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/regional_restart_qr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/regional_restart_qr Checking test 044 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 158.270760 -The maximum resident set size (KB) = 648028 +The total amount of wall time = 154.938382 +The maximum resident set size (KB) = 646700 Test 044 regional_restart_qr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/regional_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/regional_decomp Checking test 045 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2023,14 +2023,14 @@ Checking test 045 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 304.625717 -The maximum resident set size (KB) = 651556 +The total amount of wall time = 306.441800 +The maximum resident set size (KB) = 649284 Test 045 regional_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/regional_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/regional_2threads Checking test 046 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2041,14 +2041,14 @@ Checking test 046 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 176.752243 -The maximum resident set size (KB) = 696880 +The total amount of wall time = 174.718856 +The maximum resident set size (KB) = 690332 Test 046 regional_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_noquilt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/regional_noquilt +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_noquilt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/regional_noquilt Checking test 047 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2056,14 +2056,14 @@ Checking test 047 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 308.783888 -The maximum resident set size (KB) = 644044 +The total amount of wall time = 310.853407 +The maximum resident set size (KB) = 644752 Test 047 regional_noquilt PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/regional_2dwrtdecomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/regional_2dwrtdecomp Checking test 048 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2074,14 +2074,14 @@ Checking test 048 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 287.392399 -The maximum resident set size (KB) = 653068 +The total amount of wall time = 286.594324 +The maximum resident set size (KB) = 652056 Test 048 regional_2dwrtdecomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/fv3_regional_wofs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/regional_wofs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/fv3_regional_wofs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/regional_wofs Checking test 049 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2092,14 +2092,14 @@ Checking test 049 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 365.704319 -The maximum resident set size (KB) = 338960 +The total amount of wall time = 360.899315 +The maximum resident set size (KB) = 339756 Test 049 regional_wofs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_ifi_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/regional_ifi_control +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_ifi_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/regional_ifi_control Checking test 050 regional_ifi_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2110,14 +2110,14 @@ Checking test 050 regional_ifi_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 317.408957 -The maximum resident set size (KB) = 651740 +The total amount of wall time = 320.241930 +The maximum resident set size (KB) = 651480 Test 050 regional_ifi_control PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_ifi_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/regional_ifi_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_ifi_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/regional_ifi_decomp Checking test 051 regional_ifi_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2128,14 +2128,14 @@ Checking test 051 regional_ifi_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 332.072259 -The maximum resident set size (KB) = 655852 +The total amount of wall time = 337.234935 +The maximum resident set size (KB) = 653088 Test 051 regional_ifi_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_ifi_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/regional_ifi_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_ifi_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/regional_ifi_2threads Checking test 052 regional_ifi_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2146,14 +2146,14 @@ Checking test 052 regional_ifi_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 196.301940 -The maximum resident set size (KB) = 698424 +The total amount of wall time = 197.689396 +The maximum resident set size (KB) = 695844 Test 052 regional_ifi_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rap_control +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/rap_control Checking test 053 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2200,14 +2200,14 @@ Checking test 053 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 419.306486 -The maximum resident set size (KB) = 889028 +The total amount of wall time = 418.394679 +The maximum resident set size (KB) = 889772 Test 053 rap_control PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/regional_spp_sppt_shum_skeb +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_spp_sppt_shum_skeb +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/regional_spp_sppt_shum_skeb Checking test 054 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2218,14 +2218,14 @@ Checking test 054 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 241.788012 -The maximum resident set size (KB) = 977936 +The total amount of wall time = 243.971254 +The maximum resident set size (KB) = 984660 Test 054 regional_spp_sppt_shum_skeb PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rap_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/rap_decomp Checking test 055 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2272,14 +2272,14 @@ Checking test 055 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 432.484372 -The maximum resident set size (KB) = 890056 +The total amount of wall time = 432.729580 +The maximum resident set size (KB) = 887544 Test 055 rap_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rap_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/rap_2threads Checking test 056 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2326,14 +2326,14 @@ Checking test 056 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 387.586093 -The maximum resident set size (KB) = 966468 +The total amount of wall time = 386.643076 +The maximum resident set size (KB) = 958932 Test 056 rap_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rap_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/rap_restart Checking test 057 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2372,14 +2372,14 @@ Checking test 057 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 212.238369 -The maximum resident set size (KB) = 644096 +The total amount of wall time = 213.096256 +The maximum resident set size (KB) = 640028 Test 057 rap_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rap_sfcdiff +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/rap_sfcdiff Checking test 058 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2426,14 +2426,14 @@ Checking test 058 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 420.611038 -The maximum resident set size (KB) = 890376 +The total amount of wall time = 419.838999 +The maximum resident set size (KB) = 888940 Test 058 rap_sfcdiff PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rap_sfcdiff_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/rap_sfcdiff_decomp Checking test 059 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2480,14 +2480,14 @@ Checking test 059 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 438.881814 -The maximum resident set size (KB) = 890716 +The total amount of wall time = 438.460462 +The maximum resident set size (KB) = 889316 Test 059 rap_sfcdiff_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rap_sfcdiff_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/rap_sfcdiff_restart Checking test 060 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2526,14 +2526,14 @@ Checking test 060 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 310.123551 -The maximum resident set size (KB) = 640896 +The total amount of wall time = 310.200203 +The maximum resident set size (KB) = 641136 Test 060 rap_sfcdiff_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hrrr_control +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/hrrr_control Checking test 061 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2580,14 +2580,14 @@ Checking test 061 hrrr_control 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 = 390.106892 -The maximum resident set size (KB) = 884644 +The total amount of wall time = 389.327867 +The maximum resident set size (KB) = 885980 Test 061 hrrr_control PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hrrr_control_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/hrrr_control_decomp Checking test 062 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2634,14 +2634,14 @@ Checking test 062 hrrr_control_decomp 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 = 404.226075 -The maximum resident set size (KB) = 885404 +The total amount of wall time = 403.774750 +The maximum resident set size (KB) = 886448 Test 062 hrrr_control_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hrrr_control_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/hrrr_control_2threads Checking test 063 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2688,28 +2688,28 @@ Checking test 063 hrrr_control_2threads 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 = 350.207711 -The maximum resident set size (KB) = 954528 +The total amount of wall time = 349.911539 +The maximum resident set size (KB) = 954420 Test 063 hrrr_control_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hrrr_control_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/hrrr_control_restart Checking test 064 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 285.898651 -The maximum resident set size (KB) = 637304 +The total amount of wall time = 285.998352 +The maximum resident set size (KB) = 637064 Test 064 hrrr_control_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_v1beta -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rrfs_v1beta +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_v1beta +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/rrfs_v1beta Checking test 065 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2756,14 +2756,14 @@ Checking test 065 rrfs_v1beta results .... 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.404808 -The maximum resident set size (KB) = 885696 +The total amount of wall time = 415.990616 +The maximum resident set size (KB) = 888188 Test 065 rrfs_v1beta PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_v1nssl -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rrfs_v1nssl +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_v1nssl +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/rrfs_v1nssl Checking test 066 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2778,14 +2778,14 @@ Checking test 066 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 479.621658 -The maximum resident set size (KB) = 579844 +The total amount of wall time = 483.743142 +The maximum resident set size (KB) = 572144 Test 066 rrfs_v1nssl PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rrfs_v1nssl_nohailnoccn +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/rrfs_v1nssl_nohailnoccn Checking test 067 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2800,14 +2800,14 @@ Checking test 067 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 469.530701 -The maximum resident set size (KB) = 571032 +The total amount of wall time = 470.211167 +The maximum resident set size (KB) = 564832 Test 067 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/rrfs_smoke_conus13km_hrrr_warm Checking test 068 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2816,14 +2816,14 @@ Checking test 068 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 143.957309 -The maximum resident set size (KB) = 796576 +The total amount of wall time = 144.347866 +The maximum resident set size (KB) = 804188 Test 068 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 069 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2832,14 +2832,14 @@ Checking test 069 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 104.106063 -The maximum resident set size (KB) = 802808 +The total amount of wall time = 101.460548 +The maximum resident set size (KB) = 800408 Test 069 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rrfs_conus13km_hrrr_warm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/rrfs_conus13km_hrrr_warm Checking test 070 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2848,14 +2848,14 @@ Checking test 070 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 130.540335 -The maximum resident set size (KB) = 790348 +The total amount of wall time = 130.796197 +The maximum resident set size (KB) = 794004 Test 070 rrfs_conus13km_hrrr_warm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/rrfs_smoke_conus13km_radar_tten_warm Checking test 071 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2864,26 +2864,26 @@ Checking test 071 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 146.531610 -The maximum resident set size (KB) = 797540 +The total amount of wall time = 145.737464 +The maximum resident set size (KB) = 798132 Test 071 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 072 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 68.509058 -The maximum resident set size (KB) = 768776 +The total amount of wall time = 67.750017 +The maximum resident set size (KB) = 760692 Test 072 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_csawmg -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_csawmg +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_csawmg +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_csawmg Checking test 073 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2894,14 +2894,14 @@ Checking test 073 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 346.330929 -The maximum resident set size (KB) = 582456 +The total amount of wall time = 351.611311 +The maximum resident set size (KB) = 582596 Test 073 control_csawmg PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_csawmgt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_csawmgt +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_csawmgt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_csawmgt Checking test 074 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2912,14 +2912,14 @@ Checking test 074 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 341.911782 -The maximum resident set size (KB) = 582172 +The total amount of wall time = 345.673247 +The maximum resident set size (KB) = 585888 Test 074 control_csawmgt PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_ras -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_ras +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_ras +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_ras Checking test 075 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2930,26 +2930,26 @@ Checking test 075 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 181.158071 -The maximum resident set size (KB) = 547152 +The total amount of wall time = 181.205608 +The maximum resident set size (KB) = 549252 Test 075 control_ras PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_wam -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_wam +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_wam +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_wam Checking test 076 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 117.841629 -The maximum resident set size (KB) = 272352 +The total amount of wall time = 118.009489 +The maximum resident set size (KB) = 271512 Test 076 control_wam PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_p8_faster +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_p8_faster Checking test 077 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2996,14 +2996,14 @@ Checking test 077 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 172.885917 -The maximum resident set size (KB) = 1482732 +The total amount of wall time = 173.693131 +The maximum resident set size (KB) = 1481736 Test 077 control_p8_faster PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/regional_control_faster +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/regional_control_faster Checking test 078 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3014,56 +3014,56 @@ Checking test 078 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 276.966803 -The maximum resident set size (KB) = 649328 +The total amount of wall time = 278.786369 +The maximum resident set size (KB) = 650968 Test 078 regional_control_faster PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 079 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 898.773687 -The maximum resident set size (KB) = 827256 +The total amount of wall time = 894.620346 +The maximum resident set size (KB) = 823324 Test 079 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 080 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 517.095439 -The maximum resident set size (KB) = 829636 +The total amount of wall time = 515.170800 +The maximum resident set size (KB) = 834056 Test 080 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rrfs_conus13km_hrrr_warm_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/rrfs_conus13km_hrrr_warm_debug Checking test 081 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 807.998591 -The maximum resident set size (KB) = 826152 +The total amount of wall time = 806.583103 +The maximum resident set size (KB) = 819448 Test 081 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_CubedSphereGrid_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_CubedSphereGrid_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_CubedSphereGrid_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_CubedSphereGrid_debug Checking test 082 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3090,348 +3090,348 @@ Checking test 082 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 157.428852 -The maximum resident set size (KB) = 673832 +The total amount of wall time = 155.872613 +The maximum resident set size (KB) = 677912 Test 082 control_CubedSphereGrid_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_wrtGauss_netcdf_parallel_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_wrtGauss_netcdf_parallel_debug Checking test 083 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 156.907810 -The maximum resident set size (KB) = 678680 +The total amount of wall time = 155.715084 +The maximum resident set size (KB) = 677372 Test 083 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_stochy_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_stochy_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_stochy_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_stochy_debug Checking test 084 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 176.423371 -The maximum resident set size (KB) = 679172 +The total amount of wall time = 176.845606 +The maximum resident set size (KB) = 678932 Test 084 control_stochy_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_lndp_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_lndp_debug Checking test 085 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 159.359116 -The maximum resident set size (KB) = 687076 +The total amount of wall time = 158.548498 +The maximum resident set size (KB) = 684656 Test 085 control_lndp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_csawmg_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_csawmg_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_csawmg_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_csawmg_debug Checking test 086 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 252.793712 -The maximum resident set size (KB) = 715632 +The total amount of wall time = 252.090842 +The maximum resident set size (KB) = 717656 Test 086 control_csawmg_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_csawmgt_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_csawmgt_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_csawmgt_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_csawmgt_debug Checking test 087 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 250.510955 -The maximum resident set size (KB) = 718940 +The total amount of wall time = 248.247893 +The maximum resident set size (KB) = 715808 Test 087 control_csawmgt_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_ras_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_ras_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_ras_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_ras_debug Checking test 088 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 160.005396 -The maximum resident set size (KB) = 688996 +The total amount of wall time = 160.987102 +The maximum resident set size (KB) = 688868 Test 088 control_ras_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_diag_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_diag_debug Checking test 089 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 161.503499 -The maximum resident set size (KB) = 734364 +The total amount of wall time = 161.595317 +The maximum resident set size (KB) = 737036 Test 089 control_diag_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_debug_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_debug_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_debug_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_debug_p8 Checking test 090 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 184.336125 -The maximum resident set size (KB) = 1496300 +The total amount of wall time = 184.118549 +The maximum resident set size (KB) = 1507360 Test 090 control_debug_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/regional_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/regional_debug Checking test 091 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1039.669373 -The maximum resident set size (KB) = 676040 +The total amount of wall time = 1042.761338 +The maximum resident set size (KB) = 673756 Test 091 regional_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rap_control_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/rap_control_debug Checking test 092 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 295.044246 -The maximum resident set size (KB) = 1051288 +The total amount of wall time = 294.622732 +The maximum resident set size (KB) = 1048464 Test 092 rap_control_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hrrr_control_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/hrrr_control_debug Checking test 093 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 288.530139 -The maximum resident set size (KB) = 1044764 +The total amount of wall time = 288.771519 +The maximum resident set size (KB) = 1046468 Test 093 hrrr_control_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rap_unified_drag_suite_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/rap_unified_drag_suite_debug Checking test 094 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 295.111154 -The maximum resident set size (KB) = 1053420 +The total amount of wall time = 296.572349 +The maximum resident set size (KB) = 1053192 Test 094 rap_unified_drag_suite_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rap_diag_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/rap_diag_debug Checking test 095 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 305.298835 -The maximum resident set size (KB) = 1131004 +The total amount of wall time = 306.268152 +The maximum resident set size (KB) = 1133496 Test 095 rap_diag_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rap_cires_ugwp_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/rap_cires_ugwp_debug Checking test 096 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.930620 -The maximum resident set size (KB) = 1050688 +The total amount of wall time = 302.692940 +The maximum resident set size (KB) = 1054296 Test 096 rap_cires_ugwp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rap_unified_ugwp_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/rap_unified_ugwp_debug Checking test 097 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 302.975966 -The maximum resident set size (KB) = 1052692 +The total amount of wall time = 302.845805 +The maximum resident set size (KB) = 1052204 Test 097 rap_unified_ugwp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rap_lndp_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/rap_lndp_debug Checking test 098 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.119052 -The maximum resident set size (KB) = 1047880 +The total amount of wall time = 298.153473 +The maximum resident set size (KB) = 1054188 Test 098 rap_lndp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_progcld_thompson_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rap_progcld_thompson_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_progcld_thompson_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/rap_progcld_thompson_debug Checking test 099 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 295.505475 -The maximum resident set size (KB) = 1052332 +The total amount of wall time = 295.918970 +The maximum resident set size (KB) = 1048672 Test 099 rap_progcld_thompson_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_noah_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rap_noah_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_noah_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/rap_noah_debug Checking test 100 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 289.453663 -The maximum resident set size (KB) = 1052164 +The total amount of wall time = 289.397223 +The maximum resident set size (KB) = 1051012 Test 100 rap_noah_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_sfcdiff_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rap_sfcdiff_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_sfcdiff_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/rap_sfcdiff_debug Checking test 101 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 295.922589 -The maximum resident set size (KB) = 1053244 +The total amount of wall time = 295.509391 +The maximum resident set size (KB) = 1052192 Test 101 rap_sfcdiff_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/rap_noah_sfcdiff_cires_ugwp_debug Checking test 102 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 484.283430 -The maximum resident set size (KB) = 1049332 +The total amount of wall time = 484.142871 +The maximum resident set size (KB) = 1048332 Test 102 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_v1beta_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rrfs_v1beta_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_v1beta_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/rrfs_v1beta_debug Checking test 103 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 291.339331 -The maximum resident set size (KB) = 1047748 +The total amount of wall time = 290.168735 +The maximum resident set size (KB) = 1049472 Test 103 rrfs_v1beta_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_clm_lake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rap_clm_lake_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_clm_lake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/rap_clm_lake_debug Checking test 104 rap_clm_lake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 352.745001 -The maximum resident set size (KB) = 1051968 +The total amount of wall time = 351.686991 +The maximum resident set size (KB) = 1052736 Test 104 rap_clm_lake_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_flake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rap_flake_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_flake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/rap_flake_debug Checking test 105 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 295.869833 -The maximum resident set size (KB) = 1050468 +The total amount of wall time = 295.372184 +The maximum resident set size (KB) = 1056196 Test 105 rap_flake_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_wam_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_wam_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_wam_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_wam_debug Checking test 106 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 293.001947 -The maximum resident set size (KB) = 301660 +The total amount of wall time = 294.395504 +The maximum resident set size (KB) = 301400 Test 106 control_wam_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3442,14 +3442,14 @@ Checking test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 231.387745 -The maximum resident set size (KB) = 893092 +The total amount of wall time = 232.283366 +The maximum resident set size (KB) = 894932 Test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rap_control_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/rap_control_dyn32_phy32 Checking test 108 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3496,14 +3496,14 @@ Checking test 108 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 352.014813 -The maximum resident set size (KB) = 774556 +The total amount of wall time = 353.273913 +The maximum resident set size (KB) = 773940 Test 108 rap_control_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hrrr_control_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/hrrr_control_dyn32_phy32 Checking test 109 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3550,14 +3550,14 @@ Checking test 109 hrrr_control_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 178.345427 -The maximum resident set size (KB) = 774948 +The total amount of wall time = 179.106032 +The maximum resident set size (KB) = 779564 Test 109 hrrr_control_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rap_2threads_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/rap_2threads_dyn32_phy32 Checking test 110 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3604,14 +3604,14 @@ Checking test 110 rap_2threads_dyn32_phy32 results .... 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.593921 -The maximum resident set size (KB) = 828668 +The total amount of wall time = 331.293114 +The maximum resident set size (KB) = 830820 Test 110 rap_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hrrr_control_2threads_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/hrrr_control_2threads_dyn32_phy32 Checking test 111 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3658,14 +3658,14 @@ Checking test 111 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 161.145695 -The maximum resident set size (KB) = 821972 +The total amount of wall time = 160.384930 +The maximum resident set size (KB) = 817460 Test 111 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hrrr_control_decomp_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/hrrr_control_decomp_dyn32_phy32 Checking test 112 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3712,14 +3712,14 @@ Checking test 112 hrrr_control_decomp_dyn32_phy32 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.871536 -The maximum resident set size (KB) = 775740 +The total amount of wall time = 186.680764 +The maximum resident set size (KB) = 772628 Test 112 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rap_restart_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/rap_restart_dyn32_phy32 Checking test 113 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3758,28 +3758,28 @@ Checking test 113 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 257.699055 -The maximum resident set size (KB) = 610188 +The total amount of wall time = 257.895787 +The maximum resident set size (KB) = 612428 Test 113 rap_restart_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hrrr_control_restart_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/hrrr_control_restart_dyn32_phy32 Checking test 114 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 93.053785 -The maximum resident set size (KB) = 606640 +The total amount of wall time = 92.716330 +The maximum resident set size (KB) = 602664 Test 114 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rap_control_dyn64_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/rap_control_dyn64_phy32 Checking test 115 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3826,81 +3826,81 @@ Checking test 115 rap_control_dyn64_phy32 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 = 233.962423 -The maximum resident set size (KB) = 792368 +The total amount of wall time = 235.304475 +The maximum resident set size (KB) = 790920 Test 115 rap_control_dyn64_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rap_control_debug_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/rap_control_debug_dyn32_phy32 Checking test 116 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 289.606467 -The maximum resident set size (KB) = 930800 +The total amount of wall time = 292.881320 +The maximum resident set size (KB) = 934924 Test 116 rap_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hrrr_control_debug_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/hrrr_control_debug_dyn32_phy32 Checking test 117 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 283.080337 -The maximum resident set size (KB) = 931004 +The total amount of wall time = 286.707705 +The maximum resident set size (KB) = 934528 Test 117 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/rap_control_dyn64_phy32_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/rap_control_dyn64_phy32_debug Checking test 118 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 290.912371 -The maximum resident set size (KB) = 952872 +The total amount of wall time = 291.892308 +The maximum resident set size (KB) = 951820 Test 118 rap_control_dyn64_phy32_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hafs_regional_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/hafs_regional_atm Checking test 119 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 271.131951 -The maximum resident set size (KB) = 818776 +The total amount of wall time = 270.285468 +The maximum resident set size (KB) = 824656 Test 119 hafs_regional_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hafs_regional_atm_thompson_gfdlsf +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/hafs_regional_atm_thompson_gfdlsf Checking test 120 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 312.502017 -The maximum resident set size (KB) = 1175900 +The total amount of wall time = 310.472976 +The maximum resident set size (KB) = 1175580 Test 120 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hafs_regional_atm_ocn +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/hafs_regional_atm_ocn Checking test 121 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3909,14 +3909,14 @@ Checking test 121 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 387.807990 -The maximum resident set size (KB) = 857720 +The total amount of wall time = 387.460727 +The maximum resident set size (KB) = 857972 Test 121 hafs_regional_atm_ocn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_atm_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hafs_regional_atm_wav +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_atm_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/hafs_regional_atm_wav Checking test 122 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3925,14 +3925,14 @@ Checking test 122 hafs_regional_atm_wav 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 = 707.475831 -The maximum resident set size (KB) = 888400 +The total amount of wall time = 704.619816 +The maximum resident set size (KB) = 886876 Test 122 hafs_regional_atm_wav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hafs_regional_atm_ocn_wav +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/hafs_regional_atm_ocn_wav Checking test 123 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3943,28 +3943,28 @@ Checking test 123 hafs_regional_atm_ocn_wav 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.137436 -The maximum resident set size (KB) = 910144 +The total amount of wall time = 896.019169 +The maximum resident set size (KB) = 909700 Test 123 hafs_regional_atm_ocn_wav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hafs_regional_1nest_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/hafs_regional_1nest_atm Checking test 124 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 335.647488 -The maximum resident set size (KB) = 395032 +The total amount of wall time = 332.386169 +The maximum resident set size (KB) = 392672 Test 124 hafs_regional_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hafs_regional_telescopic_2nests_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/hafs_regional_telescopic_2nests_atm Checking test 125 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3973,28 +3973,28 @@ Checking test 125 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 405.381878 -The maximum resident set size (KB) = 401444 +The total amount of wall time = 403.876175 +The maximum resident set size (KB) = 399400 Test 125 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_global_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hafs_global_1nest_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_global_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/hafs_global_1nest_atm Checking test 126 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 172.021684 -The maximum resident set size (KB) = 260832 +The total amount of wall time = 171.272327 +The maximum resident set size (KB) = 259540 Test 126 hafs_global_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_global_multiple_4nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hafs_global_multiple_4nests_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_global_multiple_4nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/hafs_global_multiple_4nests_atm Checking test 127 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4012,14 +4012,14 @@ Checking test 127 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -The total amount of wall time = 492.537257 -The maximum resident set size (KB) = 346392 +The total amount of wall time = 493.063413 +The maximum resident set size (KB) = 343980 Test 127 hafs_global_multiple_4nests_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hafs_regional_specified_moving_1nest_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/hafs_regional_specified_moving_1nest_atm Checking test 128 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4028,28 +4028,28 @@ Checking test 128 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 217.972996 -The maximum resident set size (KB) = 403008 +The total amount of wall time = 218.826950 +The maximum resident set size (KB) = 402780 Test 128 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hafs_regional_storm_following_1nest_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/hafs_regional_storm_following_1nest_atm Checking test 129 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 206.918285 -The maximum resident set size (KB) = 403260 +The total amount of wall time = 207.200774 +The maximum resident set size (KB) = 403424 Test 129 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/hafs_regional_storm_following_1nest_atm_ocn Checking test 130 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4058,42 +4058,42 @@ Checking test 130 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 252.375631 -The maximum resident set size (KB) = 466172 +The total amount of wall time = 252.331954 +The maximum resident set size (KB) = 467112 Test 130 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hafs_global_storm_following_1nest_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_global_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/hafs_global_storm_following_1nest_atm Checking test 131 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 84.842896 -The maximum resident set size (KB) = 277996 +The total amount of wall time = 84.637092 +The maximum resident set size (KB) = 279856 Test 131 hafs_global_storm_following_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 132 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 809.358704 -The maximum resident set size (KB) = 487016 +The total amount of wall time = 802.192767 +The maximum resident set size (KB) = 490192 Test 132 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 133 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4104,14 +4104,14 @@ Checking test 133 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 502.807302 -The maximum resident set size (KB) = 517888 +The total amount of wall time = 504.365961 +The maximum resident set size (KB) = 518084 Test 133 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_docn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hafs_regional_docn +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_docn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/hafs_regional_docn Checking test 134 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4119,14 +4119,14 @@ Checking test 134 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 367.059310 -The maximum resident set size (KB) = 862016 +The total amount of wall time = 369.455942 +The maximum resident set size (KB) = 857376 Test 134 hafs_regional_docn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_docn_oisst -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hafs_regional_docn_oisst +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_docn_oisst +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/hafs_regional_docn_oisst Checking test 135 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4134,131 +4134,131 @@ Checking test 135 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 371.148902 -The maximum resident set size (KB) = 849032 +The total amount of wall time = 371.529379 +The maximum resident set size (KB) = 847556 Test 135 hafs_regional_docn_oisst PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_datm_cdeps -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/hafs_regional_datm_cdeps +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_datm_cdeps +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/hafs_regional_datm_cdeps Checking test 136 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -The total amount of wall time = 942.119798 -The maximum resident set size (KB) = 833000 +The total amount of wall time = 945.232676 +The maximum resident set size (KB) = 867344 Test 136 hafs_regional_datm_cdeps PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/datm_cdeps_control_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_control_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/datm_cdeps_control_cfsr Checking test 137 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 140.744837 -The maximum resident set size (KB) = 732924 +The total amount of wall time = 141.185751 +The maximum resident set size (KB) = 735156 Test 137 datm_cdeps_control_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/datm_cdeps_restart_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_control_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/datm_cdeps_restart_cfsr Checking test 138 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 85.758098 -The maximum resident set size (KB) = 728424 +The total amount of wall time = 86.326617 +The maximum resident set size (KB) = 728304 Test 138 datm_cdeps_restart_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_control_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/datm_cdeps_control_gefs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_control_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/datm_cdeps_control_gefs Checking test 139 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 132.665571 -The maximum resident set size (KB) = 613748 +The total amount of wall time = 133.002344 +The maximum resident set size (KB) = 613452 Test 139 datm_cdeps_control_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_iau_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/datm_cdeps_iau_gefs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_iau_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/datm_cdeps_iau_gefs Checking test 140 datm_cdeps_iau_gefs 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.610741 -The maximum resident set size (KB) = 613776 +The total amount of wall time = 136.147979 +The maximum resident set size (KB) = 611580 Test 140 datm_cdeps_iau_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_stochy_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/datm_cdeps_stochy_gefs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_stochy_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/datm_cdeps_stochy_gefs Checking test 141 datm_cdeps_stochy_gefs 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.605773 -The maximum resident set size (KB) = 612372 +The total amount of wall time = 138.029234 +The maximum resident set size (KB) = 615608 Test 141 datm_cdeps_stochy_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/datm_cdeps_ciceC_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_ciceC_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/datm_cdeps_ciceC_cfsr Checking test 142 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 140.783842 -The maximum resident set size (KB) = 733972 +The total amount of wall time = 140.847989 +The maximum resident set size (KB) = 731940 Test 142 datm_cdeps_ciceC_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/datm_cdeps_bulk_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_bulk_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/datm_cdeps_bulk_cfsr Checking test 143 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 140.738749 -The maximum resident set size (KB) = 723820 +The total amount of wall time = 141.632354 +The maximum resident set size (KB) = 734072 Test 143 datm_cdeps_bulk_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/datm_cdeps_bulk_gefs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_bulk_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/datm_cdeps_bulk_gefs Checking test 144 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 133.743134 -The maximum resident set size (KB) = 616560 +The total amount of wall time = 132.687503 +The maximum resident set size (KB) = 617800 Test 144 datm_cdeps_bulk_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/datm_cdeps_mx025_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_mx025_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/datm_cdeps_mx025_cfsr Checking test 145 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4267,14 +4267,14 @@ Checking test 145 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 426.950148 -The maximum resident set size (KB) = 570208 +The total amount of wall time = 426.166067 +The maximum resident set size (KB) = 570408 Test 145 datm_cdeps_mx025_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/datm_cdeps_mx025_gefs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_mx025_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/datm_cdeps_mx025_gefs Checking test 146 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4283,64 +4283,64 @@ Checking test 146 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 428.380634 -The maximum resident set size (KB) = 547092 +The total amount of wall time = 428.497890 +The maximum resident set size (KB) = 549728 Test 146 datm_cdeps_mx025_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/datm_cdeps_multiple_files_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_control_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/datm_cdeps_multiple_files_cfsr Checking test 147 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 140.054176 -The maximum resident set size (KB) = 732480 +The total amount of wall time = 141.063763 +The maximum resident set size (KB) = 733376 Test 147 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/datm_cdeps_3072x1536_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/datm_cdeps_3072x1536_cfsr Checking test 148 datm_cdeps_3072x1536_cfsr 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 = 255.988311 -The maximum resident set size (KB) = 1980344 +The total amount of wall time = 255.984519 +The maximum resident set size (KB) = 1980016 Test 148 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_gfs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/datm_cdeps_gfs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_gfs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/datm_cdeps_gfs Checking test 149 datm_cdeps_gfs 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 = 256.805003 -The maximum resident set size (KB) = 1981228 +The total amount of wall time = 256.118505 +The maximum resident set size (KB) = 1981492 Test 149 datm_cdeps_gfs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_control_cfsr_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/datm_cdeps_control_cfsr_faster +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_control_cfsr_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/datm_cdeps_control_cfsr_faster Checking test 150 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 140.595927 -The maximum resident set size (KB) = 723600 +The total amount of wall time = 140.920383 +The maximum resident set size (KB) = 737108 Test 150 datm_cdeps_control_cfsr_faster PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/datm_cdeps_lnd_gswp3 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/datm_cdeps_lnd_gswp3 Checking test 151 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4349,14 +4349,14 @@ Checking test 151 datm_cdeps_lnd_gswp3 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.288985 -The maximum resident set size (KB) = 225776 +The total amount of wall time = 21.595168 +The maximum resident set size (KB) = 226352 Test 151 datm_cdeps_lnd_gswp3 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/datm_cdeps_lnd_gswp3_rst +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/datm_cdeps_lnd_gswp3_rst Checking test 152 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4365,14 +4365,14 @@ Checking test 152 datm_cdeps_lnd_gswp3_rst 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.563774 -The maximum resident set size (KB) = 232556 +The total amount of wall time = 27.186602 +The maximum resident set size (KB) = 236352 Test 152 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8_atmlnd_sbs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_p8_atmlnd_sbs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8_atmlnd_sbs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_p8_atmlnd_sbs Checking test 153 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4457,14 +4457,14 @@ Checking test 153 control_p8_atmlnd_sbs 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 = 234.701639 -The maximum resident set size (KB) = 1542144 +The total amount of wall time = 234.720193 +The maximum resident set size (KB) = 1545924 Test 153 control_p8_atmlnd_sbs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/atmwav_control_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/atmwav_control_noaero_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/atmwav_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/atmwav_control_noaero_p8 Checking test 154 atmwav_control_noaero_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4507,14 +4507,14 @@ Checking test 154 atmwav_control_noaero_p8 results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK -The total amount of wall time = 107.050699 -The maximum resident set size (KB) = 1528808 +The total amount of wall time = 111.029240 +The maximum resident set size (KB) = 1524852 Test 154 atmwav_control_noaero_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_atmwav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/control_atmwav +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_atmwav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_atmwav Checking test 155 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4558,14 +4558,14 @@ Checking test 155 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -The total amount of wall time = 90.784628 -The maximum resident set size (KB) = 544164 +The total amount of wall time = 91.363175 +The maximum resident set size (KB) = 545288 Test 155 control_atmwav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/atmaero_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/atmaero_control_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/atmaero_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/atmaero_control_p8 Checking test 156 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4609,14 +4609,14 @@ Checking test 156 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 243.583357 -The maximum resident set size (KB) = 2815320 +The total amount of wall time = 243.887943 +The maximum resident set size (KB) = 2814904 Test 156 atmaero_control_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/atmaero_control_p8_rad -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/atmaero_control_p8_rad +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/atmaero_control_p8_rad +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/atmaero_control_p8_rad Checking test 157 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4660,14 +4660,14 @@ Checking test 157 atmaero_control_p8_rad results .... 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.632257 -The maximum resident set size (KB) = 2876660 +The total amount of wall time = 281.828094 +The maximum resident set size (KB) = 2877924 Test 157 atmaero_control_p8_rad PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/atmaero_control_p8_rad_micro +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/atmaero_control_p8_rad_micro +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/atmaero_control_p8_rad_micro Checking test 158 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4711,14 +4711,14 @@ Checking test 158 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 287.932948 -The maximum resident set size (KB) = 2886296 +The total amount of wall time = 288.696433 +The maximum resident set size (KB) = 2884168 Test 158 atmaero_control_p8_rad_micro PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_atmaq -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/regional_atmaq +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_atmaq +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/regional_atmaq Checking test 159 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4734,14 +4734,14 @@ Checking test 159 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 681.071942 -The maximum resident set size (KB) = 1253668 +The total amount of wall time = 681.523528 +The maximum resident set size (KB) = 1253552 Test 159 regional_atmaq PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_atmaq_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/regional_atmaq_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_atmaq_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/regional_atmaq_debug Checking test 160 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4755,14 +4755,14 @@ Checking test 160 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1305.593756 -The maximum resident set size (KB) = 1288544 +The total amount of wall time = 1304.769061 +The maximum resident set size (KB) = 1287284 Test 160 regional_atmaq_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_atmaq_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22465/regional_atmaq_faster +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_atmaq_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/regional_atmaq_faster Checking test 161 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4778,12 +4778,12 @@ Checking test 161 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 641.423207 -The maximum resident set size (KB) = 1248804 +The total amount of wall time = 632.188589 +The maximum resident set size (KB) = 1253612 Test 161 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Tue Apr 25 03:06:56 UTC 2023 -Elapsed time: 01h:31m:56s. Have a nice day! +Thu Apr 27 15:49:36 UTC 2023 +Elapsed time: 01h:35m:47s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index 8cf097e0da2..6e98f08f18b 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,21 +1,21 @@ -Tue Apr 25 09:28:02 MDT 2023 +Wed Apr 26 14:42:07 MDT 2023 Start Regression test -Compile 001 elapsed time 400 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 002 elapsed time 404 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 895 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 192 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 394 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 1141 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 900 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 903 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 648 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 577 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 356 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 012 elapsed time 296 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/control_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/control_c48 +Compile 001 elapsed time 404 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 002 elapsed time 412 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 912 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 196 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 398 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 1156 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 909 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 920 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 682 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 591 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 359 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 012 elapsed time 301 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/control_c48 +working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/control_c48 Checking test 001 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -54,14 +54,14 @@ Checking test 001 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 821.223042 -0:The maximum resident set size (KB) = 680340 +0:The total amount of wall time = 821.666932 +0:The maximum resident set size (KB) = 680320 Test 001 control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/control_stochy +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/control_stochy +working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/control_stochy Checking test 002 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -72,14 +72,14 @@ Checking test 002 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 178.475006 -0:The maximum resident set size (KB) = 443712 +0:The total amount of wall time = 178.411834 +0:The maximum resident set size (KB) = 443860 Test 002 control_stochy PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/control_ras -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/control_ras +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/control_ras +working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/control_ras Checking test 003 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -90,14 +90,14 @@ Checking test 003 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 296.635178 -0:The maximum resident set size (KB) = 452768 +0:The total amount of wall time = 293.673589 +0:The maximum resident set size (KB) = 452504 Test 003 control_ras PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/control_p8 +working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/control_p8 Checking test 004 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -144,32 +144,32 @@ Checking test 004 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 311.342686 -0:The maximum resident set size (KB) = 1225320 +0:The total amount of wall time = 311.698072 +0:The maximum resident set size (KB) = 1225312 Test 004 control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/control_flake -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/control_flake +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/control_flake +working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/control_flake Checking test 005 control_flake results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK - Comparing GFSFLX.GrbF00 .........NOT OK - Comparing GFSFLX.GrbF24 .........NOT OK - Comparing GFSPRS.GrbF00 .........NOT OK - Comparing GFSPRS.GrbF24 .........NOT OK + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 358.216644 -0:The maximum resident set size (KB) = 490488 +0:The total amount of wall time = 352.735421 +0:The maximum resident set size (KB) = 490472 -Test 005 control_flake FAIL Tries: 2 +Test 005 control_flake PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rap_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/rap_control +working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/rap_control Checking test 006 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -216,14 +216,14 @@ Checking test 006 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 715.738660 -0:The maximum resident set size (KB) = 792404 +0:The total amount of wall time = 718.154238 +0:The maximum resident set size (KB) = 792848 Test 006 rap_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rap_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/rap_control +working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/rap_decomp Checking test 007 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -270,14 +270,14 @@ Checking test 007 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 717.271854 -0:The maximum resident set size (KB) = 791724 +0:The total amount of wall time = 724.565444 +0:The maximum resident set size (KB) = 792132 Test 007 rap_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rap_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/rap_control +working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/rap_2threads Checking test 008 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -324,14 +324,14 @@ Checking test 008 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 654.809101 -0:The maximum resident set size (KB) = 866068 +0:The total amount of wall time = 657.826195 +0:The maximum resident set size (KB) = 866516 Test 008 rap_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rap_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/rap_control +working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/rap_restart Checking test 009 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -370,14 +370,14 @@ Checking test 009 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 355.564379 -0:The maximum resident set size (KB) = 539380 +0:The total amount of wall time = 355.380939 +0:The maximum resident set size (KB) = 539156 Test 009 rap_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rap_sfcdiff +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/rap_sfcdiff Checking test 010 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -424,14 +424,14 @@ Checking test 010 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 714.598937 -0:The maximum resident set size (KB) = 791844 +0:The total amount of wall time = 721.081241 +0:The maximum resident set size (KB) = 792712 Test 010 rap_sfcdiff PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rap_sfcdiff_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/rap_sfcdiff_decomp Checking test 011 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -478,14 +478,14 @@ Checking test 011 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 725.825589 -0:The maximum resident set size (KB) = 791532 +0:The total amount of wall time = 727.362003 +0:The maximum resident set size (KB) = 791692 Test 011 rap_sfcdiff_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rap_sfcdiff_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/rap_sfcdiff_restart Checking test 012 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -524,14 +524,14 @@ Checking test 012 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 527.180584 -0:The maximum resident set size (KB) = 544448 +0:The total amount of wall time = 529.599977 +0:The maximum resident set size (KB) = 544760 Test 012 rap_sfcdiff_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/hrrr_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/hrrr_control +working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/hrrr_control Checking test 013 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -578,14 +578,14 @@ Checking test 013 hrrr_control results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 686.636349 -0:The maximum resident set size (KB) = 789196 +0:The total amount of wall time = 690.112776 +0:The maximum resident set size (KB) = 789588 Test 013 hrrr_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/hrrr_control_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/hrrr_control +working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/hrrr_control_2threads Checking test 014 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -632,14 +632,14 @@ Checking test 014 hrrr_control_2threads results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 709.930656 -0:The maximum resident set size (KB) = 855972 +0:The total amount of wall time = 705.610823 +0:The maximum resident set size (KB) = 855476 Test 014 hrrr_control_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/hrrr_control_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/hrrr_control +working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/hrrr_control_decomp Checking test 015 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -686,28 +686,28 @@ Checking test 015 hrrr_control_decomp results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 684.619393 -0:The maximum resident set size (KB) = 788572 +0:The total amount of wall time = 684.701051 +0:The maximum resident set size (KB) = 788532 Test 015 hrrr_control_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/hrrr_control_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/hrrr_control +working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/hrrr_control_restart Checking test 016 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 507.374280 -0:The maximum resident set size (KB) = 539804 +0:The total amount of wall time = 506.648333 +0:The maximum resident set size (KB) = 539828 Test 016 hrrr_control_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rrfs_v1beta -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rrfs_v1beta +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/rrfs_v1beta +working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/rrfs_v1beta Checking test 017 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -754,14 +754,14 @@ Checking test 017 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 707.089396 -0:The maximum resident set size (KB) = 789656 +0:The total amount of wall time = 708.286504 +0:The maximum resident set size (KB) = 789600 Test 017 rrfs_v1beta PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/rrfs_smoke_conus13km_hrrr_warm Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -770,14 +770,14 @@ Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 234.040580 -0:The maximum resident set size (KB) = 639548 +0:The total amount of wall time = 233.216925 +0:The maximum resident set size (KB) = 639468 Test 018 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 019 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -786,14 +786,14 @@ Checking test 019 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 146.867956 -0:The maximum resident set size (KB) = 658632 +0:The total amount of wall time = 148.125660 +0:The maximum resident set size (KB) = 664108 Test 019 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rrfs_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/rrfs_conus13km_hrrr_warm Checking test 020 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -802,14 +802,14 @@ Checking test 020 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 212.626743 -0:The maximum resident set size (KB) = 618564 +0:The total amount of wall time = 214.318308 +0:The maximum resident set size (KB) = 618540 Test 020 rrfs_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/rrfs_smoke_conus13km_radar_tten_warm Checking test 021 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -818,262 +818,262 @@ Checking test 021 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 231.910875 -0:The maximum resident set size (KB) = 642248 +0:The total amount of wall time = 234.235852 +0:The maximum resident set size (KB) = 642216 Test 021 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 022 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 111.802692 -0:The maximum resident set size (KB) = 599640 +0:The total amount of wall time = 111.576956 +0:The maximum resident set size (KB) = 599652 Test 022 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/control_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/control_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/control_diag_debug +working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/control_diag_debug Checking test 023 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 82.335787 -0:The maximum resident set size (KB) = 492248 +0:The total amount of wall time = 82.834558 +0:The maximum resident set size (KB) = 492040 Test 023 control_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/regional_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/regional_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/regional_debug +working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/regional_debug Checking test 024 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 477.611827 -0:The maximum resident set size (KB) = 567596 +0:The total amount of wall time = 478.314801 +0:The maximum resident set size (KB) = 567144 Test 024 regional_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rap_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/rap_control_debug +working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/rap_control_debug Checking test 025 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 145.333649 -0:The maximum resident set size (KB) = 806280 +0:The total amount of wall time = 146.405702 +0:The maximum resident set size (KB) = 806232 Test 025 rap_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/hrrr_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/hrrr_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/hrrr_control_debug +working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/hrrr_control_debug Checking test 026 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 142.656386 -0:The maximum resident set size (KB) = 801812 +0:The total amount of wall time = 143.636606 +0:The maximum resident set size (KB) = 801528 Test 026 hrrr_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rap_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rap_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/rap_diag_debug +working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/rap_diag_debug Checking test 027 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 152.308834 -0:The maximum resident set size (KB) = 888396 +0:The total amount of wall time = 152.613155 +0:The maximum resident set size (KB) = 888568 Test 027 rap_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/rap_noah_sfcdiff_cires_ugwp_debug Checking test 028 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 235.155081 -0:The maximum resident set size (KB) = 804660 +0:The total amount of wall time = 233.862331 +0:The maximum resident set size (KB) = 804436 Test 028 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rap_progcld_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rap_progcld_thompson_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/rap_progcld_thompson_debug +working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/rap_progcld_thompson_debug Checking test 029 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 145.316687 -0:The maximum resident set size (KB) = 806460 +0:The total amount of wall time = 146.597785 +0:The maximum resident set size (KB) = 806292 Test 029 rap_progcld_thompson_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rrfs_v1beta_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rrfs_v1beta_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/rrfs_v1beta_debug +working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/rrfs_v1beta_debug Checking test 030 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 144.992259 -0:The maximum resident set size (KB) = 801456 +0:The total amount of wall time = 145.799157 +0:The maximum resident set size (KB) = 801272 Test 030 rrfs_v1beta_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/control_ras_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/control_ras_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/control_ras_debug +working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/control_ras_debug Checking test 031 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 81.317173 -0:The maximum resident set size (KB) = 446480 +0:The total amount of wall time = 82.351778 +0:The maximum resident set size (KB) = 446032 Test 031 control_ras_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/control_stochy_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/control_stochy_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/control_stochy_debug +working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/control_stochy_debug Checking test 032 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 88.672079 -0:The maximum resident set size (KB) = 439104 +0:The total amount of wall time = 88.284932 +0:The maximum resident set size (KB) = 438748 Test 032 control_stochy_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/control_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/control_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/control_debug_p8 +working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/control_debug_p8 Checking test 033 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 90.781517 -0:The maximum resident set size (KB) = 1223544 +0:The total amount of wall time = 91.510262 +0:The maximum resident set size (KB) = 1223236 Test 033 control_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 034 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 438.337660 -0:The maximum resident set size (KB) = 645168 +0:The total amount of wall time = 440.463281 +0:The maximum resident set size (KB) = 644916 Test 034 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 035 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 259.779408 -0:The maximum resident set size (KB) = 669872 +0:The total amount of wall time = 260.156145 +0:The maximum resident set size (KB) = 664064 Test 035 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rrfs_conus13km_hrrr_warm_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/rrfs_conus13km_hrrr_warm_debugs +working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/rrfs_conus13km_hrrr_warm_debug Checking test 036 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 396.828254 -0:The maximum resident set size (KB) = 623964 +0:The total amount of wall time = 395.704054 +0:The maximum resident set size (KB) = 623392 Test 036 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rap_flake_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rap_flake_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/rap_flake_debug +working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/rap_flake_debug Checking test 037 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 145.651202 -0:The maximum resident set size (KB) = 806384 +0:The total amount of wall time = 144.893731 +0:The maximum resident set size (KB) = 806560 Test 037 rap_flake_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rap_clm_lake_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rap_clm_lake_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/rap_clm_lake_debug +working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/rap_clm_lake_debug Checking test 038 rap_clm_lake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 164.560342 -0:The maximum resident set size (KB) = 808004 +0:The total amount of wall time = 165.188366 +0:The maximum resident set size (KB) = 807768 Test 038 rap_clm_lake_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/control_wam_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/control_wam_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/control_wam_debug +working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/control_wam_debug Checking test 039 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 140.457916 -0:The maximum resident set size (KB) = 182852 +0:The total amount of wall time = 139.716351 +0:The maximum resident set size (KB) = 182260 Test 039 control_wam_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rap_control_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/rap_control_dyn32_phy32 Checking test 040 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1120,14 +1120,14 @@ Checking test 040 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 704.103266 -0:The maximum resident set size (KB) = 672584 +0:The total amount of wall time = 704.650669 +0:The maximum resident set size (KB) = 672688 Test 040 rap_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/hrrr_control_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/hrrr_control_dyn32_phy32 Checking test 041 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1174,14 +1174,14 @@ Checking test 041 hrrr_control_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 354.097209 -0:The maximum resident set size (KB) = 671196 +0:The total amount of wall time = 352.972868 +0:The maximum resident set size (KB) = 671184 Test 041 hrrr_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rap_2threads_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/rap_2threads_dyn32_phy32 Checking test 042 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1228,14 +1228,14 @@ Checking test 042 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 646.051970 -0:The maximum resident set size (KB) = 720680 +0:The total amount of wall time = 643.766850 +0:The maximum resident set size (KB) = 720704 Test 042 rap_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/hrrr_control_2threads_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/hrrr_control_2threads_dyn32_phy32 Checking test 043 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1282,14 +1282,14 @@ Checking test 043 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 402.237329 -0:The maximum resident set size (KB) = 711840 +0:The total amount of wall time = 403.558423 +0:The maximum resident set size (KB) = 711708 Test 043 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/hrrr_control_decomp_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/hrrr_control_decomp_dyn32_phy32 Checking test 044 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1336,14 +1336,14 @@ Checking test 044 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 351.532691 -0:The maximum resident set size (KB) = 670092 +0:The total amount of wall time = 351.473007 +0:The maximum resident set size (KB) = 670052 Test 044 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rap_restart_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/rap_restart_dyn32_phy32 Checking test 045 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1382,28 +1382,28 @@ Checking test 045 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 520.605488 -0:The maximum resident set size (KB) = 511860 +0:The total amount of wall time = 522.806007 +0:The maximum resident set size (KB) = 511808 Test 045 rap_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/hrrr_control_restart_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/hrrr_control_restart_dyn32_phy32 Checking test 046 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 178.086046 -0:The maximum resident set size (KB) = 506076 +0:The total amount of wall time = 178.948606 +0:The maximum resident set size (KB) = 506132 Test 046 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rap_control_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rap_control_dyn64_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/rap_control_dyn64_phy32 +working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/rap_control_dyn64_phy32 Checking test 047 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1450,56 +1450,42 @@ Checking test 047 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 406.944035 -0:The maximum resident set size (KB) = 693900 +0:The total amount of wall time = 414.334016 +0:The maximum resident set size (KB) = 692924 Test 047 rap_control_dyn64_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rap_control_debug_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/rap_control_debug_dyn32_phy32 Checking test 048 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 143.871322 -0:The maximum resident set size (KB) = 687060 +0:The total amount of wall time = 146.952694 +0:The maximum resident set size (KB) = 686876 Test 048 rap_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/hrrr_control_debug_dyn32_phy32 -Checking test 049 hrrr_control_debug_dyn32_phy32 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 140.286344 -0:The maximum resident set size (KB) = 684392 - -Test 049 hrrr_control_debug_dyn32_phy32 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/rap_control_dyn64_phy32_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/rap_control_debug_dyn64_phy32 +working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/rap_control_dyn64_phy32_debug Checking test 050 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 148.716276 -0:The maximum resident set size (KB) = 708252 +0:The total amount of wall time = 147.059296 +0:The maximum resident set size (KB) = 708532 Test 050 rap_control_dyn64_phy32_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/cpld_control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/cpld_control_p8 Checking test 051 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1564,14 +1550,14 @@ Checking test 051 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 493.149174 -0:The maximum resident set size (KB) = 3158640 +0:The total amount of wall time = 490.322111 +0:The maximum resident set size (KB) = 3161856 Test 051 cpld_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/cpld_control_nowave_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/cpld_control_c96_noaero_p8 +working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/cpld_control_nowave_noaero_p8 Checking test 052 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1633,14 +1619,14 @@ Checking test 052 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 248.685388 -0:The maximum resident set size (KB) = 1241160 +0:The total amount of wall time = 248.974062 +0:The maximum resident set size (KB) = 1240924 Test 052 cpld_control_nowave_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/cpld_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/cpld_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/cpld_debug_p8 +working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/cpld_debug_p8 Checking test 053 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1693,54 +1679,27 @@ Checking test 053 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 197.906466 -0:The maximum resident set size (KB) = 3175780 +0:The total amount of wall time = 202.205864 +0:The maximum resident set size (KB) = 3173084 Test 053 cpld_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_18838/datm_cdeps_control_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/datm_cdeps_control_cfsr +working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/datm_cdeps_control_cfsr Checking test 054 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 179.628570 -0:The maximum resident set size (KB) = 677408 +0:The total amount of wall time = 179.176757 +0:The maximum resident set size (KB) = 673688 Test 054 datm_cdeps_control_cfsr PASS FAILED TESTS: -Test control_flake 005 failed in check_result failed -Test control_flake 005 failed in run_test failed +Test hrrr_control_debug_dyn32_phy32 049 failed in run_test failed REGRESSION TEST FAILED -Tue Apr 25 10:17:24 MDT 2023 -Elapsed time: 00h:49m:23s. Have a nice day! -Tue Apr 25 11:15:27 MDT 2023 -Start Regression test - -Compile 001 elapsed time 441 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/GNU/control_flake -working dir = /glade/scratch/zshrader/FV3_RT/rt_55899/control_flake -Checking test 001 control_flake results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -0:The total amount of wall time = 325.583330 -0:The maximum resident set size (KB) = 472880 - -Test 001 control_flake PASS - - -REGRESSION TEST WAS SUCCESSFUL -Tue Apr 25 11:29:49 MDT 2023 -Elapsed time: 00h:14m:22s. Have a nice day! +Wed Apr 26 15:15:10 MDT 2023 +Elapsed time: 00h:33m:03s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index be6ab9d4c40..c7c39ad9509 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,43 +1,46 @@ -Tue Apr 25 09:05:52 MDT 2023 +Wed Apr 26 14:41:40 MDT 2023 Start Regression test -Compile 001 elapsed time 1574 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 1502 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 1416 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 460 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 397 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 1150 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 1137 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 1507 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 1157 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 010 elapsed time 1056 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 1009 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 884 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 1354 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 437 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 015 elapsed time 277 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 939 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 918 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 287 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 283 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 1226 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 021 elapsed time 351 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 1639 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 1196 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 024 elapsed time 427 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 191 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 424 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 105 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 1029 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 1074 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 1093 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 979 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 940 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Test 008 compile FAIL + +Test 008 compile FAIL + +Compile 001 elapsed time 1529 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1557 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 1436 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 485 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 416 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 1149 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 1132 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 1160 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 010 elapsed time 1076 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 984 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 877 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 1358 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 433 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 015 elapsed time 270 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 935 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 909 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 293 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 295 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 1246 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 021 elapsed time 358 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 1659 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 1164 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 024 elapsed time 431 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 196 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 431 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 103 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 1019 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 1063 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 1142 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 963 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 962 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile 033 elapsed time 305 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 034 elapsed time 1102 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 034 elapsed time 1120 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8_mixedmode -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/cpld_control_p8_mixedmode +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8_mixedmode +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -102,14 +105,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 319.142246 -0:The maximum resident set size (KB) = 2699076 +0:The total amount of wall time = 321.672887 +0:The maximum resident set size (KB) = 2699020 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_gfsv17 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/cpld_control_gfsv17 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_gfsv17 +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -173,14 +176,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 282.091307 -0:The maximum resident set size (KB) = 1437752 +0:The total amount of wall time = 280.958015 +0:The maximum resident set size (KB) = 1437764 Test 002 cpld_control_gfsv17 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/cpld_control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -245,14 +248,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 322.872873 -0:The maximum resident set size (KB) = 2715328 +0:The total amount of wall time = 323.563944 +0:The maximum resident set size (KB) = 2715308 Test 003 cpld_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/cpld_restart_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -305,14 +308,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 179.073898 -0:The maximum resident set size (KB) = 2576904 +0:The total amount of wall time = 183.949542 +0:The maximum resident set size (KB) = 2576764 Test 004 cpld_restart_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/cpld_control_qr_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -377,14 +380,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 326.391025 -0:The maximum resident set size (KB) = 2719892 +0:The total amount of wall time = 325.726496 +0:The maximum resident set size (KB) = 2719812 Test 005 cpld_control_qr_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/cpld_restart_qr_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -437,14 +440,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 193.005260 -0:The maximum resident set size (KB) = 2593124 +0:The total amount of wall time = 195.095804 +0:The maximum resident set size (KB) = 2593160 Test 006 cpld_restart_qr_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/cpld_2threads_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -497,14 +500,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 250.366377 -0:The maximum resident set size (KB) = 3177784 +0:The total amount of wall time = 253.983628 +0:The maximum resident set size (KB) = 3178452 Test 007 cpld_2threads_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/cpld_decomp_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -557,14 +560,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 320.186557 -0:The maximum resident set size (KB) = 2720480 +0:The total amount of wall time = 322.776657 +0:The maximum resident set size (KB) = 2720660 Test 008 cpld_decomp_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/cpld_mpi_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -617,14 +620,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 268.096945 -0:The maximum resident set size (KB) = 2681604 +0:The total amount of wall time = 275.594945 +0:The maximum resident set size (KB) = 2681524 Test 009 cpld_mpi_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_ciceC_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/cpld_control_ciceC_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_ciceC_p8 +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -689,14 +692,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 311.391171 -0:The maximum resident set size (KB) = 2715320 +0:The total amount of wall time = 323.964411 +0:The maximum resident set size (KB) = 2715344 Test 010 cpld_control_ciceC_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/cpld_control_c192_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_c192_p8 +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/cpld_control_c192_p8 Checking test 011 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -749,14 +752,14 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -0:The total amount of wall time = 627.702178 -0:The maximum resident set size (KB) = 3352088 +0:The total amount of wall time = 628.140020 +0:The maximum resident set size (KB) = 3352724 Test 011 cpld_control_c192_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/cpld_restart_c192_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_c192_p8 +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/cpld_restart_c192_p8 Checking test 012 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -809,14 +812,14 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -0:The total amount of wall time = 382.339707 -0:The maximum resident set size (KB) = 3276816 +0:The total amount of wall time = 384.302422 +0:The maximum resident set size (KB) = 3276380 Test 012 cpld_restart_c192_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/cpld_control_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_noaero_p8 +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/cpld_control_noaero_p8 Checking test 013 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -880,14 +883,14 @@ Checking test 013 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 294.515743 -0:The maximum resident set size (KB) = 1436000 +0:The total amount of wall time = 294.151897 +0:The maximum resident set size (KB) = 1435816 Test 013 cpld_control_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/cpld_control_nowave_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_c96_noaero_p8 +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/cpld_control_nowave_noaero_p8 Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -949,14 +952,14 @@ Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 189.305163 -0:The maximum resident set size (KB) = 1453540 +0:The total amount of wall time = 195.731487 +0:The maximum resident set size (KB) = 1453536 Test 014 cpld_control_nowave_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/cpld_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_debug_p8 +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/cpld_debug_p8 Checking test 015 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1009,14 +1012,14 @@ Checking test 015 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 354.497090 -0:The maximum resident set size (KB) = 2780228 +0:The total amount of wall time = 351.153945 +0:The maximum resident set size (KB) = 2780136 Test 015 cpld_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_debug_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/cpld_debug_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_debug_noaero_p8 +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/cpld_debug_noaero_p8 Checking test 016 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1068,14 +1071,14 @@ Checking test 016 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 301.086565 -0:The maximum resident set size (KB) = 1454132 +0:The total amount of wall time = 302.615718 +0:The maximum resident set size (KB) = 1454456 Test 016 cpld_debug_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_noaero_p8_agrid -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/cpld_control_noaero_p8_agrid +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_noaero_p8_agrid +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/cpld_control_noaero_p8_agrid Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1137,14 +1140,14 @@ Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 252.488962 -0:The maximum resident set size (KB) = 1457092 +0:The total amount of wall time = 247.537902 +0:The maximum resident set size (KB) = 1457068 Test 017 cpld_control_noaero_p8_agrid PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/cpld_control_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_c48 +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/cpld_control_c48 Checking test 018 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1194,14 +1197,14 @@ Checking test 018 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 605.315782 -0:The maximum resident set size (KB) = 2587140 +0:The total amount of wall time = 606.168265 +0:The maximum resident set size (KB) = 2586980 Test 018 cpld_control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/cpld_warmstart_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_warmstart_c48 +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/cpld_warmstart_c48 Checking test 019 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1251,14 +1254,14 @@ Checking test 019 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -0:The total amount of wall time = 161.737542 -0:The maximum resident set size (KB) = 2602592 +0:The total amount of wall time = 161.660271 +0:The maximum resident set size (KB) = 2602716 Test 019 cpld_warmstart_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/cpld_restart_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_warmstart_c48 +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/cpld_restart_c48 Checking test 020 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1308,14 +1311,14 @@ Checking test 020 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -0:The total amount of wall time = 84.844466 -0:The maximum resident set size (KB) = 2020340 +0:The total amount of wall time = 84.113766 +0:The maximum resident set size (KB) = 2019748 Test 020 cpld_restart_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_flake -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_flake +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_flake +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_flake Checking test 021 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1326,14 +1329,14 @@ Checking test 021 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 221.017367 -0:The maximum resident set size (KB) = 501376 +0:The total amount of wall time = 219.288733 +0:The maximum resident set size (KB) = 501536 Test 021 control_flake PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_CubedSphereGrid -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_CubedSphereGrid +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_CubedSphereGrid +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_CubedSphereGrid Checking test 022 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1360,28 +1363,28 @@ Checking test 022 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -0:The total amount of wall time = 142.593650 -0:The maximum resident set size (KB) = 454496 +0:The total amount of wall time = 142.719364 +0:The maximum resident set size (KB) = 454740 Test 022 control_CubedSphereGrid PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_CubedSphereGrid_parallel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_CubedSphereGrid_parallel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_CubedSphereGrid_parallel +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_CubedSphereGrid_parallel Checking test 023 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK -0:The total amount of wall time = 140.628343 -0:The maximum resident set size (KB) = 454532 +0:The total amount of wall time = 140.641405 +0:The maximum resident set size (KB) = 454632 Test 023 control_CubedSphereGrid_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_latlon -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_latlon +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_latlon +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_latlon Checking test 024 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1392,14 +1395,14 @@ Checking test 024 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 148.348467 -0:The maximum resident set size (KB) = 454684 +0:The total amount of wall time = 147.817864 +0:The maximum resident set size (KB) = 454580 Test 024 control_latlon PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_wrtGauss_netcdf_parallel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_wrtGauss_netcdf_parallel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_wrtGauss_netcdf_parallel +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_wrtGauss_netcdf_parallel Checking test 025 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1410,14 +1413,14 @@ Checking test 025 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 150.540535 -0:The maximum resident set size (KB) = 454680 +0:The total amount of wall time = 150.544199 +0:The maximum resident set size (KB) = 454472 Test 025 control_wrtGauss_netcdf_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_c48 +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_c48 Checking test 026 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1456,14 +1459,14 @@ Checking test 026 control_c48 results .... Comparing 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.357985 -0:The maximum resident set size (KB) = 634316 +0:The total amount of wall time = 443.421936 +0:The maximum resident set size (KB) = 634292 Test 026 control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_c192 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_c192 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_c192 +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_c192 Checking test 027 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1474,14 +1477,14 @@ Checking test 027 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 597.320944 -0:The maximum resident set size (KB) = 560252 +0:The total amount of wall time = 595.327913 +0:The maximum resident set size (KB) = 560284 Test 027 control_c192 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_c384 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_c384 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_c384 +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_c384 Checking test 028 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1492,14 +1495,14 @@ Checking test 028 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 591.531437 -0:The maximum resident set size (KB) = 903324 +0:The total amount of wall time = 593.675796 +0:The maximum resident set size (KB) = 903184 Test 028 control_c384 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_c384gdas -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_c384gdas +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_c384gdas +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_c384gdas Checking test 029 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1542,14 +1545,14 @@ Checking test 029 control_c384gdas results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 520.854193 -0:The maximum resident set size (KB) = 1029044 +0:The total amount of wall time = 520.435298 +0:The maximum resident set size (KB) = 1028460 Test 029 control_c384gdas PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_stochy +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_stochy +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_stochy Checking test 030 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1560,28 +1563,28 @@ Checking test 030 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 101.169607 -0:The maximum resident set size (KB) = 459428 +0:The total amount of wall time = 98.877239 +0:The maximum resident set size (KB) = 459604 Test 030 control_stochy PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_stochy_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_stochy +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_stochy_restart Checking test 031 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 54.124517 -0:The maximum resident set size (KB) = 227652 +0:The total amount of wall time = 54.408631 +0:The maximum resident set size (KB) = 228000 Test 031 control_stochy_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_lndp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_lndp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_lndp +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_lndp Checking test 032 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1592,14 +1595,14 @@ Checking test 032 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 93.151098 -0:The maximum resident set size (KB) = 459068 +0:The total amount of wall time = 90.732675 +0:The maximum resident set size (KB) = 459216 Test 032 control_lndp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_iovr4 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_iovr4 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_iovr4 +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_iovr4 Checking test 033 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1614,14 +1617,14 @@ Checking test 033 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 148.849094 -0:The maximum resident set size (KB) = 454560 +0:The total amount of wall time = 150.531650 +0:The maximum resident set size (KB) = 454672 Test 033 control_iovr4 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_iovr5 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_iovr5 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_iovr5 +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_iovr5 Checking test 034 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1636,14 +1639,14 @@ Checking test 034 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 150.285252 -0:The maximum resident set size (KB) = 454612 +0:The total amount of wall time = 150.897408 +0:The maximum resident set size (KB) = 454544 Test 034 control_iovr5 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8 +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_p8 Checking test 035 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1690,14 +1693,14 @@ Checking test 035 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 183.796042 -0:The maximum resident set size (KB) = 1423960 +0:The total amount of wall time = 177.540012 +0:The maximum resident set size (KB) = 1424012 Test 035 control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_restart_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8 +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_restart_p8 Checking test 036 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1736,14 +1739,14 @@ Checking test 036 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 97.025329 -0:The maximum resident set size (KB) = 582120 +0:The total amount of wall time = 97.333872 +0:The maximum resident set size (KB) = 582184 Test 036 control_restart_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_qr_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8 +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_qr_p8 Checking test 037 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1790,14 +1793,14 @@ Checking test 037 control_qr_p8 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 = 183.158950 -0:The maximum resident set size (KB) = 1427676 +0:The total amount of wall time = 183.019694 +0:The maximum resident set size (KB) = 1427728 Test 037 control_qr_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_restart_qr_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8 +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_restart_qr_p8 Checking test 038 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1836,14 +1839,14 @@ Checking test 038 control_restart_qr_p8 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 = 100.841784 -0:The maximum resident set size (KB) = 597252 +0:The total amount of wall time = 99.079184 +0:The maximum resident set size (KB) = 597240 Test 038 control_restart_qr_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_decomp_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8 +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_decomp_p8 Checking test 039 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1886,14 +1889,14 @@ Checking test 039 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 184.082874 -0:The maximum resident set size (KB) = 1417712 +0:The total amount of wall time = 183.987236 +0:The maximum resident set size (KB) = 1417756 Test 039 control_decomp_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_2threads_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8 +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_2threads_p8 Checking test 040 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1936,14 +1939,14 @@ Checking test 040 control_2threads_p8 results .... Comparing 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.776354 -0:The maximum resident set size (KB) = 1509436 +0:The total amount of wall time = 168.452768 +0:The maximum resident set size (KB) = 1509360 Test 040 control_2threads_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8_lndp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_p8_lndp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8_lndp +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_p8_lndp Checking test 041 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1962,14 +1965,14 @@ Checking test 041 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -0:The total amount of wall time = 337.202653 -0:The maximum resident set size (KB) = 1424256 +0:The total amount of wall time = 335.772059 +0:The maximum resident set size (KB) = 1424308 Test 041 control_p8_lndp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8_rrtmgp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_p8_rrtmgp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8_rrtmgp +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_p8_rrtmgp Checking test 042 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2016,14 +2019,14 @@ Checking test 042 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 256.025478 -0:The maximum resident set size (KB) = 1480648 +0:The total amount of wall time = 255.994429 +0:The maximum resident set size (KB) = 1480592 Test 042 control_p8_rrtmgp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8_mynn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_p8_mynn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8_mynn +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_p8_mynn Checking test 043 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2070,14 +2073,14 @@ Checking test 043 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 185.545363 -0:The maximum resident set size (KB) = 1428408 +0:The total amount of wall time = 186.534079 +0:The maximum resident set size (KB) = 1428480 Test 043 control_p8_mynn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/merra2_thompson -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/merra2_thompson +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/merra2_thompson +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/merra2_thompson Checking test 044 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2124,14 +2127,14 @@ Checking test 044 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 204.690595 -0:The maximum resident set size (KB) = 1429988 +0:The total amount of wall time = 208.958326 +0:The maximum resident set size (KB) = 1430008 Test 044 merra2_thompson PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/regional_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/regional_control Checking test 045 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2142,28 +2145,28 @@ Checking test 045 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 343.603222 -0:The maximum resident set size (KB) = 605060 +0:The total amount of wall time = 345.642325 +0:The maximum resident set size (KB) = 605152 Test 045 regional_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/regional_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/regional_restart Checking test 046 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 178.538046 -0:The maximum resident set size (KB) = 594408 +0:The total amount of wall time = 170.038317 +0:The maximum resident set size (KB) = 594460 Test 046 regional_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/regional_control_qr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/regional_control_qr Checking test 047 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2174,28 +2177,28 @@ Checking test 047 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 346.923378 -0:The maximum resident set size (KB) = 605096 +0:The total amount of wall time = 333.388828 +0:The maximum resident set size (KB) = 605484 Test 047 regional_control_qr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/regional_restart_qr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/regional_restart_qr Checking test 048 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 176.171623 -0:The maximum resident set size (KB) = 594352 +0:The total amount of wall time = 177.098753 +0:The maximum resident set size (KB) = 594464 Test 048 regional_restart_qr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/regional_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/regional_decomp Checking test 049 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2206,14 +2209,14 @@ Checking test 049 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 359.487914 -0:The maximum resident set size (KB) = 598864 +0:The total amount of wall time = 361.697557 +0:The maximum resident set size (KB) = 598952 Test 049 regional_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/regional_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/regional_2threads Checking test 050 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2224,14 +2227,14 @@ Checking test 050 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 213.610658 -0:The maximum resident set size (KB) = 611888 +0:The total amount of wall time = 201.805311 +0:The maximum resident set size (KB) = 611848 Test 050 regional_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_noquilt -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/regional_noquilt +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_noquilt +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/regional_noquilt Checking test 051 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2239,28 +2242,28 @@ Checking test 051 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -0:The total amount of wall time = 369.085155 -0:The maximum resident set size (KB) = 599504 +0:The total amount of wall time = 366.032994 +0:The maximum resident set size (KB) = 599620 Test 051 regional_noquilt PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_netcdf_parallel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/regional_netcdf_parallel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_netcdf_parallel +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/regional_netcdf_parallel Checking test 052 regional_netcdf_parallel results .... Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK + Comparing dynf006.nc .........OK Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf006.nc ............ALT CHECK......OK -0:The total amount of wall time = 325.509123 -0:The maximum resident set size (KB) = 597000 +0:The total amount of wall time = 336.299149 +0:The maximum resident set size (KB) = 597040 Test 052 regional_netcdf_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/regional_2dwrtdecomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/regional_2dwrtdecomp Checking test 053 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2271,14 +2274,14 @@ Checking test 053 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 346.086194 -0:The maximum resident set size (KB) = 605088 +0:The total amount of wall time = 341.949653 +0:The maximum resident set size (KB) = 605104 Test 053 regional_2dwrtdecomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/fv3_regional_wofs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/regional_wofs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/fv3_regional_wofs +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/regional_wofs Checking test 054 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2289,14 +2292,14 @@ Checking test 054 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 437.602462 -0:The maximum resident set size (KB) = 276188 +0:The total amount of wall time = 429.770328 +0:The maximum resident set size (KB) = 276244 Test 054 regional_wofs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rap_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/rap_control Checking test 055 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2343,14 +2346,14 @@ Checking test 055 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 481.614392 -0:The maximum resident set size (KB) = 823904 +0:The total amount of wall time = 481.388137 +0:The maximum resident set size (KB) = 823732 Test 055 rap_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_spp_sppt_shum_skeb -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/regional_spp_sppt_shum_skeb +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_spp_sppt_shum_skeb +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/regional_spp_sppt_shum_skeb Checking test 056 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2361,14 +2364,14 @@ Checking test 056 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 261.943940 -0:The maximum resident set size (KB) = 953608 +0:The total amount of wall time = 263.043487 +0:The maximum resident set size (KB) = 953768 Test 056 regional_spp_sppt_shum_skeb PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rap_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/rap_decomp Checking test 057 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2415,14 +2418,14 @@ Checking test 057 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 503.703374 -0:The maximum resident set size (KB) = 822692 +0:The total amount of wall time = 502.438275 +0:The maximum resident set size (KB) = 822816 Test 057 rap_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rap_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/rap_2threads Checking test 058 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2469,14 +2472,14 @@ Checking test 058 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 462.323234 -0:The maximum resident set size (KB) = 895540 +0:The total amount of wall time = 461.885804 +0:The maximum resident set size (KB) = 893368 Test 058 rap_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rap_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/rap_restart Checking test 059 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2515,14 +2518,14 @@ Checking test 059 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 244.873261 +0:The total amount of wall time = 239.586476 0:The maximum resident set size (KB) = 571668 Test 059 rap_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rap_sfcdiff +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/rap_sfcdiff Checking test 060 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2569,14 +2572,14 @@ Checking test 060 rap_sfcdiff results .... Comparing 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.212165 -0:The maximum resident set size (KB) = 823632 +0:The total amount of wall time = 482.146032 +0:The maximum resident set size (KB) = 823728 Test 060 rap_sfcdiff PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rap_sfcdiff_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/rap_sfcdiff_decomp Checking test 061 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2623,14 +2626,14 @@ Checking test 061 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 508.142870 -0:The maximum resident set size (KB) = 822596 +0:The total amount of wall time = 506.292764 +0:The maximum resident set size (KB) = 822632 Test 061 rap_sfcdiff_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rap_sfcdiff_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/rap_sfcdiff_restart Checking test 062 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2669,14 +2672,14 @@ Checking test 062 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 356.779505 -0:The maximum resident set size (KB) = 571672 +0:The total amount of wall time = 349.012911 +0:The maximum resident set size (KB) = 571504 Test 062 rap_sfcdiff_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hrrr_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/hrrr_control Checking test 063 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2723,14 +2726,14 @@ Checking test 063 hrrr_control results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 451.936788 -0:The maximum resident set size (KB) = 820876 +0:The total amount of wall time = 439.112110 +0:The maximum resident set size (KB) = 821032 Test 063 hrrr_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hrrr_control_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/hrrr_control_decomp Checking test 064 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2777,14 +2780,14 @@ Checking test 064 hrrr_control_decomp results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 466.824717 -0:The maximum resident set size (KB) = 820612 +0:The total amount of wall time = 458.897027 +0:The maximum resident set size (KB) = 820648 Test 064 hrrr_control_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hrrr_control_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/hrrr_control_2threads Checking test 065 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2831,28 +2834,28 @@ Checking test 065 hrrr_control_2threads results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 500.394242 -0:The maximum resident set size (KB) = 890476 +0:The total amount of wall time = 505.005405 +0:The maximum resident set size (KB) = 895264 Test 065 hrrr_control_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hrrr_control_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/hrrr_control_restart Checking test 066 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 335.459898 -0:The maximum resident set size (KB) = 567700 +0:The total amount of wall time = 326.894931 +0:The maximum resident set size (KB) = 567848 Test 066 hrrr_control_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_v1beta -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rrfs_v1beta +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_v1beta +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/rrfs_v1beta Checking test 067 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2899,14 +2902,14 @@ Checking test 067 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 480.958742 -0:The maximum resident set size (KB) = 819696 +0:The total amount of wall time = 477.413004 +0:The maximum resident set size (KB) = 819776 Test 067 rrfs_v1beta PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_v1nssl -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rrfs_v1nssl +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_v1nssl +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/rrfs_v1nssl Checking test 068 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2921,14 +2924,14 @@ Checking test 068 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 588.168385 -0:The maximum resident set size (KB) = 508696 +0:The total amount of wall time = 583.781992 +0:The maximum resident set size (KB) = 508716 Test 068 rrfs_v1nssl PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rrfs_v1nssl_nohailnoccn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/rrfs_v1nssl_nohailnoccn Checking test 069 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2943,14 +2946,14 @@ Checking test 069 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 559.822019 -0:The maximum resident set size (KB) = 502952 +0:The total amount of wall time = 573.938243 +0:The maximum resident set size (KB) = 503064 Test 069 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/rrfs_smoke_conus13km_hrrr_warm Checking test 070 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2959,14 +2962,14 @@ Checking test 070 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 153.433492 -0:The maximum resident set size (KB) = 670996 +0:The total amount of wall time = 153.058645 +0:The maximum resident set size (KB) = 671012 Test 070 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 071 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2975,14 +2978,14 @@ Checking test 071 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 93.673821 -0:The maximum resident set size (KB) = 692960 +0:The total amount of wall time = 92.841450 +0:The maximum resident set size (KB) = 693152 Test 071 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rrfs_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/rrfs_conus13km_hrrr_warm Checking test 072 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2991,14 +2994,14 @@ Checking test 072 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 137.259061 -0:The maximum resident set size (KB) = 667288 +0:The total amount of wall time = 134.567435 +0:The maximum resident set size (KB) = 667340 Test 072 rrfs_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/rrfs_smoke_conus13km_radar_tten_warm Checking test 073 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3007,26 +3010,26 @@ Checking test 073 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 152.146323 -0:The maximum resident set size (KB) = 677492 +0:The total amount of wall time = 153.955745 +0:The maximum resident set size (KB) = 677456 Test 073 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 074 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 71.848995 -0:The maximum resident set size (KB) = 640380 +0:The total amount of wall time = 71.138542 +0:The maximum resident set size (KB) = 640004 Test 074 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_csawmg -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_csawmg +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_csawmg +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_csawmg Checking test 075 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3037,14 +3040,14 @@ Checking test 075 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 399.153662 -0:The maximum resident set size (KB) = 528024 +0:The total amount of wall time = 401.356225 +0:The maximum resident set size (KB) = 528040 Test 075 control_csawmg PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_csawmgt -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_csawmgt +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_csawmgt +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_csawmgt Checking test 076 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3055,14 +3058,14 @@ Checking test 076 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 393.571350 -0:The maximum resident set size (KB) = 528864 +0:The total amount of wall time = 395.514056 +0:The maximum resident set size (KB) = 528628 Test 076 control_csawmgt PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_ras -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_ras +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_ras +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_ras Checking test 077 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3073,26 +3076,26 @@ Checking test 077 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 206.027748 -0:The maximum resident set size (KB) = 491172 +0:The total amount of wall time = 205.241132 +0:The maximum resident set size (KB) = 491364 Test 077 control_ras PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_wam -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_wam +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_wam +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_wam Checking test 078 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -0:The total amount of wall time = 129.915771 -0:The maximum resident set size (KB) = 206720 +0:The total amount of wall time = 130.518810 +0:The maximum resident set size (KB) = 206916 Test 078 control_wam PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8_faster -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_p8_faster +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8_faster +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_p8_faster Checking test 079 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3139,14 +3142,14 @@ Checking test 079 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 171.041008 -0:The maximum resident set size (KB) = 1423832 +0:The total amount of wall time = 174.666287 +0:The maximum resident set size (KB) = 1423852 Test 079 control_p8_faster PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control_faster -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/regional_control_faster +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control_faster +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/regional_control_faster Checking test 080 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3157,56 +3160,56 @@ Checking test 080 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 320.044249 -0:The maximum resident set size (KB) = 604904 +0:The total amount of wall time = 322.902674 +0:The maximum resident set size (KB) = 604824 Test 080 regional_control_faster PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 081 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 876.976384 -0:The maximum resident set size (KB) = 704312 +0:The total amount of wall time = 875.572962 +0:The maximum resident set size (KB) = 704200 Test 081 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 082 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 500.511114 -0:The maximum resident set size (KB) = 723836 +0:The total amount of wall time = 498.051118 +0:The maximum resident set size (KB) = 723884 Test 082 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rrfs_conus13km_hrrr_warm_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/rrfs_conus13km_hrrr_warm_debug Checking test 083 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 783.249919 -0:The maximum resident set size (KB) = 697548 +0:The total amount of wall time = 779.071135 +0:The maximum resident set size (KB) = 697412 Test 083 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_CubedSphereGrid_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_CubedSphereGrid_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_CubedSphereGrid_debug +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_CubedSphereGrid_debug Checking test 084 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3233,348 +3236,348 @@ Checking test 084 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -0:The total amount of wall time = 160.584418 -0:The maximum resident set size (KB) = 618020 +0:The total amount of wall time = 158.448991 +0:The maximum resident set size (KB) = 617992 Test 084 control_CubedSphereGrid_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_wrtGauss_netcdf_parallel_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_wrtGauss_netcdf_parallel_debug Checking test 085 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 157.271955 -0:The maximum resident set size (KB) = 615660 +0:The total amount of wall time = 158.589976 +0:The maximum resident set size (KB) = 615404 Test 085 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_stochy_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_stochy_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_stochy_debug +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_stochy_debug Checking test 086 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 174.521472 -0:The maximum resident set size (KB) = 621116 +0:The total amount of wall time = 177.088405 +0:The maximum resident set size (KB) = 621288 Test 086 control_stochy_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_lndp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_lndp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_lndp_debug +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_lndp_debug Checking test 087 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 157.276354 -0:The maximum resident set size (KB) = 620584 +0:The total amount of wall time = 158.957678 +0:The maximum resident set size (KB) = 620520 Test 087 control_lndp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_csawmg_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_csawmg_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_csawmg_debug +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_csawmg_debug Checking test 088 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 248.369859 -0:The maximum resident set size (KB) = 666872 +0:The total amount of wall time = 251.093338 +0:The maximum resident set size (KB) = 666812 Test 088 control_csawmg_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_csawmgt_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_csawmgt_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_csawmgt_debug +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_csawmgt_debug Checking test 089 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 244.411680 -0:The maximum resident set size (KB) = 667800 +0:The total amount of wall time = 245.051313 +0:The maximum resident set size (KB) = 667768 Test 089 control_csawmgt_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_ras_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_ras_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_ras_debug +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_ras_debug Checking test 090 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 158.812406 +0:The total amount of wall time = 159.607279 0:The maximum resident set size (KB) = 630068 Test 090 control_ras_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_diag_debug +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_diag_debug Checking test 091 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 159.084354 -0:The maximum resident set size (KB) = 675440 +0:The total amount of wall time = 159.665450 +0:The maximum resident set size (KB) = 675400 Test 091 control_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_debug_p8 +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_debug_p8 Checking test 092 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 174.682814 -0:The maximum resident set size (KB) = 1443456 +0:The total amount of wall time = 174.988360 +0:The maximum resident set size (KB) = 1443348 Test 092 control_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/regional_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_debug +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/regional_debug Checking test 093 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 1033.525203 -0:The maximum resident set size (KB) = 626424 +0:The total amount of wall time = 1038.498037 +0:The maximum resident set size (KB) = 626332 Test 093 regional_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rap_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_debug +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/rap_control_debug Checking test 094 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 286.025062 -0:The maximum resident set size (KB) = 987052 +0:The total amount of wall time = 287.123421 +0:The maximum resident set size (KB) = 987152 Test 094 rap_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hrrr_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control_debug +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/hrrr_control_debug Checking test 095 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 279.986715 -0:The maximum resident set size (KB) = 983260 +0:The total amount of wall time = 279.733209 +0:The maximum resident set size (KB) = 983152 Test 095 hrrr_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rap_unified_drag_suite_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_debug +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/rap_unified_drag_suite_debug Checking test 096 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 286.425862 +0:The total amount of wall time = 288.257439 0:The maximum resident set size (KB) = 987060 Test 096 rap_unified_drag_suite_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rap_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_diag_debug +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/rap_diag_debug Checking test 097 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 297.463093 -0:The maximum resident set size (KB) = 1070312 +0:The total amount of wall time = 301.412596 +0:The maximum resident set size (KB) = 1070188 Test 097 rap_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rap_cires_ugwp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_cires_ugwp_debug +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/rap_cires_ugwp_debug Checking test 098 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 292.622886 -0:The maximum resident set size (KB) = 986260 +0:The total amount of wall time = 295.232134 +0:The maximum resident set size (KB) = 986284 Test 098 rap_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rap_unified_ugwp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_cires_ugwp_debug +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/rap_unified_ugwp_debug Checking test 099 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 292.282315 -0:The maximum resident set size (KB) = 987268 +0:The total amount of wall time = 293.213571 +0:The maximum resident set size (KB) = 987176 Test 099 rap_unified_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_lndp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rap_lndp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_lndp_debug +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/rap_lndp_debug Checking test 100 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 288.947041 +0:The total amount of wall time = 291.760258 0:The maximum resident set size (KB) = 987828 Test 100 rap_lndp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_progcld_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rap_progcld_thompson_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_progcld_thompson_debug +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/rap_progcld_thompson_debug Checking test 101 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 286.892291 -0:The maximum resident set size (KB) = 987112 +0:The total amount of wall time = 287.179547 +0:The maximum resident set size (KB) = 987136 Test 101 rap_progcld_thompson_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_noah_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rap_noah_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_noah_debug +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/rap_noah_debug Checking test 102 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 281.234122 -0:The maximum resident set size (KB) = 985180 +0:The total amount of wall time = 281.109720 +0:The maximum resident set size (KB) = 985120 Test 102 rap_noah_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_sfcdiff_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rap_sfcdiff_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_sfcdiff_debug +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/rap_sfcdiff_debug Checking test 103 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 287.418756 -0:The maximum resident set size (KB) = 986952 +0:The total amount of wall time = 288.969646 +0:The maximum resident set size (KB) = 987020 Test 103 rap_sfcdiff_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/rap_noah_sfcdiff_cires_ugwp_debug Checking test 104 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 469.999853 -0:The maximum resident set size (KB) = 985804 +0:The total amount of wall time = 474.807096 +0:The maximum resident set size (KB) = 985824 Test 104 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_v1beta_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rrfs_v1beta_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_v1beta_debug +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/rrfs_v1beta_debug Checking test 105 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 282.840863 -0:The maximum resident set size (KB) = 983004 +0:The total amount of wall time = 282.270172 +0:The maximum resident set size (KB) = 983024 Test 105 rrfs_v1beta_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_clm_lake_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rap_clm_lake_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_clm_lake_debug +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/rap_clm_lake_debug Checking test 106 rap_clm_lake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 352.130988 -0:The maximum resident set size (KB) = 989996 +0:The total amount of wall time = 353.501509 +0:The maximum resident set size (KB) = 989936 Test 106 rap_clm_lake_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_flake_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rap_flake_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_flake_debug +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/rap_flake_debug Checking test 107 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 287.902870 -0:The maximum resident set size (KB) = 987348 +0:The total amount of wall time = 286.822153 +0:The maximum resident set size (KB) = 987376 Test 107 rap_flake_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_wam_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_wam_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_wam_debug +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_wam_debug Checking test 108 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 290.175655 -0:The maximum resident set size (KB) = 235700 +0:The total amount of wall time = 290.342670 +0:The maximum resident set size (KB) = 235692 Test 108 control_wam_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 109 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3585,14 +3588,14 @@ Checking test 109 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 246.296774 -0:The maximum resident set size (KB) = 855112 +0:The total amount of wall time = 246.857563 +0:The maximum resident set size (KB) = 855236 Test 109 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rap_control_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/rap_control_dyn32_phy32 Checking test 110 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3639,14 +3642,14 @@ Checking test 110 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 395.741265 -0:The maximum resident set size (KB) = 708008 +0:The total amount of wall time = 405.119616 +0:The maximum resident set size (KB) = 708192 Test 110 rap_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hrrr_control_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/hrrr_control_dyn32_phy32 Checking test 111 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3693,14 +3696,14 @@ Checking test 111 hrrr_control_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 202.195920 -0:The maximum resident set size (KB) = 707968 +0:The total amount of wall time = 202.420966 +0:The maximum resident set size (KB) = 707924 Test 111 hrrr_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rap_2threads_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/rap_2threads_dyn32_phy32 Checking test 112 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3747,14 +3750,14 @@ Checking test 112 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 384.915491 -0:The maximum resident set size (KB) = 759788 +0:The total amount of wall time = 388.463474 +0:The maximum resident set size (KB) = 760008 Test 112 rap_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hrrr_control_2threads_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/hrrr_control_2threads_dyn32_phy32 Checking test 113 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3801,14 +3804,14 @@ Checking test 113 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 274.564757 -0:The maximum resident set size (KB) = 753348 +0:The total amount of wall time = 276.978389 +0:The maximum resident set size (KB) = 753372 Test 113 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hrrr_control_decomp_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/hrrr_control_decomp_dyn32_phy32 Checking test 114 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3855,14 +3858,14 @@ Checking test 114 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 212.351834 -0:The maximum resident set size (KB) = 705864 +0:The total amount of wall time = 210.700304 +0:The maximum resident set size (KB) = 706056 Test 114 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rap_restart_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/rap_restart_dyn32_phy32 Checking test 115 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3901,28 +3904,28 @@ Checking test 115 rap_restart_dyn32_phy32 results .... Comparing 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.465616 -0:The maximum resident set size (KB) = 545340 +0:The total amount of wall time = 295.294540 +0:The maximum resident set size (KB) = 545168 Test 115 rap_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hrrr_control_restart_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/hrrr_control_restart_dyn32_phy32 Checking test 116 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 103.509032 -0:The maximum resident set size (KB) = 536636 +0:The total amount of wall time = 104.556298 +0:The maximum resident set size (KB) = 536784 Test 116 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rap_control_dyn64_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_dyn64_phy32 +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/rap_control_dyn64_phy32 Checking test 117 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3969,81 +3972,81 @@ Checking test 117 rap_control_dyn64_phy32 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 = 273.628032 -0:The maximum resident set size (KB) = 730556 +0:The total amount of wall time = 274.281142 +0:The maximum resident set size (KB) = 730672 Test 117 rap_control_dyn64_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rap_control_debug_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/rap_control_debug_dyn32_phy32 Checking test 118 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 282.128325 -0:The maximum resident set size (KB) = 872220 +0:The total amount of wall time = 281.440805 +0:The maximum resident set size (KB) = 872388 Test 118 rap_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hrrr_control_debug_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/hrrr_control_debug_dyn32_phy32 Checking test 119 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 275.179346 -0:The maximum resident set size (KB) = 870928 +0:The total amount of wall time = 276.821068 +0:The maximum resident set size (KB) = 871132 Test 119 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/rap_control_dyn64_phy32_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_debug_dyn64_phy32 +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/rap_control_dyn64_phy32_debug Checking test 120 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 285.197823 -0:The maximum resident set size (KB) = 893076 +0:The total amount of wall time = 289.174459 +0:The maximum resident set size (KB) = 892980 Test 120 rap_control_dyn64_phy32_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hafs_regional_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_atm +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/hafs_regional_atm Checking test 121 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -0:The total amount of wall time = 259.493244 -0:The maximum resident set size (KB) = 742816 +0:The total amount of wall time = 263.980198 +0:The maximum resident set size (KB) = 742996 Test 121 hafs_regional_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hafs_regional_atm_thompson_gfdlsf +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/hafs_regional_atm_thompson_gfdlsf Checking test 122 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -0:The total amount of wall time = 293.170057 -0:The maximum resident set size (KB) = 1098432 +0:The total amount of wall time = 295.128699 +0:The maximum resident set size (KB) = 1099588 Test 122 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_atm_ocn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hafs_regional_atm_ocn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_atm_ocn +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/hafs_regional_atm_ocn Checking test 123 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4052,14 +4055,14 @@ Checking test 123 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 454.458371 -0:The maximum resident set size (KB) = 743464 +0:The total amount of wall time = 454.529732 +0:The maximum resident set size (KB) = 743180 Test 123 hafs_regional_atm_ocn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_atm_wav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hafs_regional_atm_wav +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_atm_wav +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/hafs_regional_atm_wav Checking test 124 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4068,14 +4071,14 @@ Checking test 124 hafs_regional_atm_wav 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 = 1045.810077 -0:The maximum resident set size (KB) = 772600 +0:The total amount of wall time = 1032.811267 +0:The maximum resident set size (KB) = 772712 Test 124 hafs_regional_atm_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_atm_ocn_wav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hafs_regional_atm_ocn_wav +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_atm_ocn_wav +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/hafs_regional_atm_ocn_wav Checking test 125 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4086,28 +4089,28 @@ Checking test 125 hafs_regional_atm_ocn_wav 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 = 1111.222502 -0:The maximum resident set size (KB) = 793424 +0:The total amount of wall time = 1127.529933 +0:The maximum resident set size (KB) = 793360 Test 125 hafs_regional_atm_ocn_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hafs_regional_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_1nest_atm +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/hafs_regional_1nest_atm Checking test 126 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 378.622629 -0:The maximum resident set size (KB) = 301120 +0:The total amount of wall time = 375.573684 +0:The maximum resident set size (KB) = 301196 Test 126 hafs_regional_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hafs_regional_telescopic_2nests_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/hafs_regional_telescopic_2nests_atm Checking test 127 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4116,28 +4119,28 @@ Checking test 127 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -0:The total amount of wall time = 416.035723 -0:The maximum resident set size (KB) = 320820 +0:The total amount of wall time = 426.862349 +0:The maximum resident set size (KB) = 321100 Test 127 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_global_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hafs_global_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_global_1nest_atm +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/hafs_global_1nest_atm Checking test 128 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 171.550175 -0:The maximum resident set size (KB) = 214460 +0:The total amount of wall time = 168.318264 +0:The maximum resident set size (KB) = 214588 Test 128 hafs_global_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_global_multiple_4nests_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hafs_global_multiple_4nests_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_global_multiple_4nests_atm +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/hafs_global_multiple_4nests_atm Checking test 129 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4155,14 +4158,14 @@ Checking test 129 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -0:The total amount of wall time = 479.916174 -0:The maximum resident set size (KB) = 303304 +0:The total amount of wall time = 483.171911 +0:The maximum resident set size (KB) = 303716 Test 129 hafs_global_multiple_4nests_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hafs_regional_specified_moving_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/hafs_regional_specified_moving_1nest_atm Checking test 130 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4171,28 +4174,28 @@ Checking test 130 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -0:The total amount of wall time = 241.769804 -0:The maximum resident set size (KB) = 319100 +0:The total amount of wall time = 248.776075 +0:The maximum resident set size (KB) = 318236 Test 130 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hafs_regional_storm_following_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/hafs_regional_storm_following_1nest_atm Checking test 131 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 229.445505 -0:The maximum resident set size (KB) = 318776 +0:The total amount of wall time = 228.727724 +0:The maximum resident set size (KB) = 318460 Test 131 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/hafs_regional_storm_following_1nest_atm_ocn Checking test 132 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4201,42 +4204,42 @@ Checking test 132 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -0:The total amount of wall time = 281.890180 -0:The maximum resident set size (KB) = 375404 +0:The total amount of wall time = 281.832654 +0:The maximum resident set size (KB) = 375684 Test 132 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_global_storm_following_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hafs_global_storm_following_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_global_storm_following_1nest_atm +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/hafs_global_storm_following_1nest_atm Checking test 133 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 66.496798 -0:The maximum resident set size (KB) = 233716 +0:The total amount of wall time = 66.405989 +0:The maximum resident set size (KB) = 233984 Test 133 hafs_global_storm_following_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 134 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 764.056021 -0:The maximum resident set size (KB) = 401668 +0:The total amount of wall time = 766.323484 +0:The maximum resident set size (KB) = 401980 Test 134 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4247,14 +4250,14 @@ Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -0:The total amount of wall time = 726.646921 -0:The maximum resident set size (KB) = 427572 +0:The total amount of wall time = 785.188862 +0:The maximum resident set size (KB) = 427108 Test 135 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_docn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hafs_regional_docn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_docn +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/hafs_regional_docn Checking test 136 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4262,14 +4265,14 @@ Checking test 136 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 390.016329 -0:The maximum resident set size (KB) = 756560 +0:The total amount of wall time = 389.740980 +0:The maximum resident set size (KB) = 757052 Test 136 hafs_regional_docn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_docn_oisst -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hafs_regional_docn_oisst +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_docn_oisst +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/hafs_regional_docn_oisst Checking test 137 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4277,131 +4280,131 @@ Checking test 137 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 383.875071 -0:The maximum resident set size (KB) = 736276 +0:The total amount of wall time = 393.032359 +0:The maximum resident set size (KB) = 736720 Test 137 hafs_regional_docn_oisst PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_datm_cdeps -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/hafs_regional_datm_cdeps +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_datm_cdeps +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/hafs_regional_datm_cdeps Checking test 138 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -0:The total amount of wall time = 1278.174986 -0:The maximum resident set size (KB) = 887836 +0:The total amount of wall time = 1280.134882 +0:The maximum resident set size (KB) = 887900 Test 138 hafs_regional_datm_cdeps PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/datm_cdeps_control_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/datm_cdeps_control_cfsr Checking test 139 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 167.988598 -0:The maximum resident set size (KB) = 727976 +0:The total amount of wall time = 162.618229 +0:The maximum resident set size (KB) = 716704 Test 139 datm_cdeps_control_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/datm_cdeps_restart_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/datm_cdeps_restart_cfsr Checking test 140 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 101.299942 -0:The maximum resident set size (KB) = 704812 +0:The total amount of wall time = 100.180167 +0:The maximum resident set size (KB) = 704868 Test 140 datm_cdeps_restart_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_control_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/datm_cdeps_control_gefs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_control_gefs +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/datm_cdeps_control_gefs Checking test 141 datm_cdeps_control_gefs 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.804191 -0:The maximum resident set size (KB) = 607488 +0:The total amount of wall time = 159.515968 +0:The maximum resident set size (KB) = 607524 Test 141 datm_cdeps_control_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_iau_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/datm_cdeps_iau_gefs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_iau_gefs +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/datm_cdeps_iau_gefs Checking test 142 datm_cdeps_iau_gefs 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 = 163.732550 -0:The maximum resident set size (KB) = 607436 +0:The total amount of wall time = 164.655843 +0:The maximum resident set size (KB) = 607496 Test 142 datm_cdeps_iau_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_stochy_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/datm_cdeps_stochy_gefs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_stochy_gefs +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/datm_cdeps_stochy_gefs Checking test 143 datm_cdeps_stochy_gefs 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 = 164.583837 -0:The maximum resident set size (KB) = 607492 +0:The total amount of wall time = 159.958544 +0:The maximum resident set size (KB) = 607508 Test 143 datm_cdeps_stochy_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_ciceC_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/datm_cdeps_ciceC_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_ciceC_cfsr +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/datm_cdeps_ciceC_cfsr Checking test 144 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 167.462734 -0:The maximum resident set size (KB) = 716676 +0:The total amount of wall time = 168.454026 +0:The maximum resident set size (KB) = 728116 Test 144 datm_cdeps_ciceC_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_bulk_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/datm_cdeps_bulk_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_bulk_cfsr +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/datm_cdeps_bulk_cfsr Checking test 145 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 168.237363 -0:The maximum resident set size (KB) = 716704 +0:The total amount of wall time = 168.747238 +0:The maximum resident set size (KB) = 716680 Test 145 datm_cdeps_bulk_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_bulk_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/datm_cdeps_bulk_gefs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_bulk_gefs +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/datm_cdeps_bulk_gefs Checking test 146 datm_cdeps_bulk_gefs 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 = 160.403618 -0:The maximum resident set size (KB) = 607456 +0:The total amount of wall time = 159.578798 +0:The maximum resident set size (KB) = 607508 Test 146 datm_cdeps_bulk_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_mx025_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/datm_cdeps_mx025_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_mx025_cfsr +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/datm_cdeps_mx025_cfsr Checking test 147 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4410,14 +4413,14 @@ Checking test 147 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 427.807135 -0:The maximum resident set size (KB) = 514356 +0:The total amount of wall time = 423.802040 +0:The maximum resident set size (KB) = 514360 Test 147 datm_cdeps_mx025_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_mx025_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/datm_cdeps_mx025_gefs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_mx025_gefs +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/datm_cdeps_mx025_gefs Checking test 148 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4426,77 +4429,77 @@ Checking test 148 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 415.046214 +0:The total amount of wall time = 400.275749 0:The maximum resident set size (KB) = 494796 Test 148 datm_cdeps_mx025_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/datm_cdeps_multiple_files_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/datm_cdeps_multiple_files_cfsr Checking test 149 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 166.806932 -0:The maximum resident set size (KB) = 727832 +0:The total amount of wall time = 167.966505 +0:The maximum resident set size (KB) = 727788 Test 149 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/datm_cdeps_3072x1536_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/datm_cdeps_3072x1536_cfsr Checking test 150 datm_cdeps_3072x1536_cfsr 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 = 266.848176 -0:The maximum resident set size (KB) = 1940268 +0:The total amount of wall time = 239.900791 +0:The maximum resident set size (KB) = 1940308 Test 150 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_gfs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/datm_cdeps_gfs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_gfs +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/datm_cdeps_gfs Checking test 151 datm_cdeps_gfs 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 = 256.226723 -0:The maximum resident set size (KB) = 1940260 +0:The total amount of wall time = 256.809793 +0:The maximum resident set size (KB) = 1942044 Test 151 datm_cdeps_gfs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_debug_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/datm_cdeps_debug_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_debug_cfsr +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/datm_cdeps_debug_cfsr Checking test 152 datm_cdeps_debug_cfsr 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 = 369.686146 -0:The maximum resident set size (KB) = 700692 +0:The total amount of wall time = 370.845338 +0:The maximum resident set size (KB) = 700648 Test 152 datm_cdeps_debug_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_control_cfsr_faster -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/datm_cdeps_control_cfsr_faster +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_control_cfsr_faster +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/datm_cdeps_control_cfsr_faster Checking test 153 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 167.310780 -0:The maximum resident set size (KB) = 727848 +0:The total amount of wall time = 167.915262 +0:The maximum resident set size (KB) = 727856 Test 153 datm_cdeps_control_cfsr_faster PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/datm_cdeps_lnd_gswp3 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_lnd_gswp3 +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/datm_cdeps_lnd_gswp3 Checking test 154 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4505,14 +4508,14 @@ Checking test 154 datm_cdeps_lnd_gswp3 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 = 10.845983 -0:The maximum resident set size (KB) = 210100 +0:The total amount of wall time = 10.852502 +0:The maximum resident set size (KB) = 208244 Test 154 datm_cdeps_lnd_gswp3 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/datm_cdeps_lnd_gswp3_rst +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_lnd_gswp3 +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/datm_cdeps_lnd_gswp3_rst Checking test 155 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4521,14 +4524,14 @@ Checking test 155 datm_cdeps_lnd_gswp3_rst 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 = 15.741011 -0:The maximum resident set size (KB) = 216400 +0:The total amount of wall time = 15.551730 +0:The maximum resident set size (KB) = 208260 Test 155 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8_atmlnd_sbs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_p8_atmlnd_sbs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8_atmlnd_sbs +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_p8_atmlnd_sbs Checking test 156 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4613,14 +4616,14 @@ Checking test 156 control_p8_atmlnd_sbs 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 = 234.260114 -0:The maximum resident set size (KB) = 1463200 +0:The total amount of wall time = 234.048548 +0:The maximum resident set size (KB) = 1463224 Test 156 control_p8_atmlnd_sbs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/atmwav_control_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/atmwav_control_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/atmwav_control_noaero_p8 +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/atmwav_control_noaero_p8 Checking test 157 atmwav_control_noaero_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4663,14 +4666,14 @@ Checking test 157 atmwav_control_noaero_p8 results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK -0:The total amount of wall time = 100.975854 -0:The maximum resident set size (KB) = 1434544 +0:The total amount of wall time = 100.345901 +0:The maximum resident set size (KB) = 1434432 Test 157 atmwav_control_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/control_atmwav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/control_atmwav +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_atmwav +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_atmwav Checking test 158 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4714,14 +4717,14 @@ Checking test 158 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -0:The total amount of wall time = 99.786197 -0:The maximum resident set size (KB) = 475444 +0:The total amount of wall time = 100.422917 +0:The maximum resident set size (KB) = 475388 Test 158 control_atmwav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/atmaero_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/atmaero_control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/atmaero_control_p8 +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/atmaero_control_p8 Checking test 159 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4765,14 +4768,14 @@ Checking test 159 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 252.227823 -0:The maximum resident set size (KB) = 2703964 +0:The total amount of wall time = 250.318591 +0:The maximum resident set size (KB) = 2703880 Test 159 atmaero_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/atmaero_control_p8_rad -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/atmaero_control_p8_rad +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/atmaero_control_p8_rad +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/atmaero_control_p8_rad Checking test 160 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4816,14 +4819,14 @@ Checking test 160 atmaero_control_p8_rad results .... Comparing 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.601197 -0:The maximum resident set size (KB) = 2758792 +0:The total amount of wall time = 306.152107 +0:The maximum resident set size (KB) = 2758724 Test 160 atmaero_control_p8_rad PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/atmaero_control_p8_rad_micro -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/atmaero_control_p8_rad_micro +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/atmaero_control_p8_rad_micro +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/atmaero_control_p8_rad_micro Checking test 161 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4867,14 +4870,14 @@ Checking test 161 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 299.300384 -0:The maximum resident set size (KB) = 2765644 +0:The total amount of wall time = 309.499101 +0:The maximum resident set size (KB) = 2765556 Test 161 atmaero_control_p8_rad_micro PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_atmaq -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/regional_atmaq +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_atmaq +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/regional_atmaq Checking test 162 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4890,14 +4893,14 @@ Checking test 162 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -0:The total amount of wall time = 745.669904 -0:The maximum resident set size (KB) = 999632 +0:The total amount of wall time = 749.162521 +0:The maximum resident set size (KB) = 999696 Test 162 regional_atmaq PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_atmaq_faster -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_10010/regional_atmaq_faster +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_atmaq_faster +working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/regional_atmaq_faster Checking test 163 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4913,11 +4916,14 @@ Checking test 163 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -0:The total amount of wall time = 696.999379 -0:The maximum resident set size (KB) = 999404 +0:The total amount of wall time = 693.298591 +0:The maximum resident set size (KB) = 999492 Test 163 regional_atmaq_faster PASS -REGRESSION TEST SUCCESSFUL -Tue Apr 25 10:35:04 MDT 2023 -Elapsed time: 01h:29m:12s. Have a nice day! +FAILED TESTS: +Test compile_008 failed in run_compile failed + +REGRESSION TEST FAILED +Wed Apr 26 16:01:19 MDT 2023 +Elapsed time: 01h:19m:40s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 8a083e6d318..3fd36a9030d 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,21 +1,21 @@ -Tue Apr 25 17:34:36 UTC 2023 +Thu Apr 27 17:00:54 UTC 2023 Start Regression test -Compile 001 elapsed time 189 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 002 elapsed time 202 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 342 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 101 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 199 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 434 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 359 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 349 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 278 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 240 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 155 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 012 elapsed time 124 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/control_c48 +Compile 001 elapsed time 194 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 002 elapsed time 204 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 341 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 120 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 192 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 420 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 341 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 340 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 268 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 233 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 144 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 012 elapsed time 113 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/control_c48 Checking test 001 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -54,14 +54,14 @@ Checking test 001 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 685.156530 -0: The maximum resident set size (KB) = 705740 +0: The total amount of wall time = 685.241649 +0: The maximum resident set size (KB) = 706860 Test 001 control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/control_stochy +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/control_stochy Checking test 002 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -72,14 +72,14 @@ Checking test 002 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 658.160391 - 0: The maximum resident set size (KB) = 484236 + 0: The total amount of wall time = 654.257670 + 0: The maximum resident set size (KB) = 482884 Test 002 control_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/control_ras +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/control_ras +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/control_ras Checking test 003 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -90,14 +90,14 @@ Checking test 003 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 809.562433 - 0: The maximum resident set size (KB) = 490012 + 0: The total amount of wall time = 842.374216 + 0: The maximum resident set size (KB) = 484956 Test 003 control_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/control_p8 Checking test 004 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -144,19 +144,32 @@ Checking test 004 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 894.918791 - 0: The maximum resident set size (KB) = 1240588 + 0: The total amount of wall time = 913.106489 + 0: The maximum resident set size (KB) = 1235536 Test 004 control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/control_flake -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/control_flake +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/control_flake +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/control_flake Checking test 005 control_flake results .... - Comparing sfcf000.nc ............ALT CHECK......ERROR + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + + 0: The total amount of wall time = 1559.628276 + 0: The maximum resident set size (KB) = 524912 + +Test 005 control_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rap_control + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/rap_control Checking test 006 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -203,14 +216,14 @@ Checking test 006 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1452.843644 - 0: The maximum resident set size (KB) = 832504 + 0: The total amount of wall time = 1472.879577 + 0: The maximum resident set size (KB) = 821652 Test 006 rap_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rap_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/rap_decomp Checking test 007 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -257,14 +270,14 @@ Checking test 007 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1452.393206 - 0: The maximum resident set size (KB) = 828192 + 0: The total amount of wall time = 1468.326287 + 0: The maximum resident set size (KB) = 827424 Test 007 rap_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rap_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/rap_2threads Checking test 008 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -311,14 +324,14 @@ Checking test 008 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1344.649956 - 0: The maximum resident set size (KB) = 898784 + 0: The total amount of wall time = 1347.581107 + 0: The maximum resident set size (KB) = 896740 Test 008 rap_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rap_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/rap_restart Checking test 009 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -357,14 +370,14 @@ Checking test 009 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 728.053853 - 0: The maximum resident set size (KB) = 535284 + 0: The total amount of wall time = 731.101898 + 0: The maximum resident set size (KB) = 535576 Test 009 rap_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rap_sfcdiff +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/rap_sfcdiff Checking test 010 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -411,14 +424,14 @@ Checking test 010 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1456.389081 - 0: The maximum resident set size (KB) = 828880 + 0: The total amount of wall time = 1463.067160 + 0: The maximum resident set size (KB) = 830228 Test 010 rap_sfcdiff PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rap_sfcdiff_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/rap_sfcdiff_decomp Checking test 011 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -465,14 +478,14 @@ Checking test 011 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1467.282201 - 0: The maximum resident set size (KB) = 828888 + 0: The total amount of wall time = 1469.364495 + 0: The maximum resident set size (KB) = 825796 Test 011 rap_sfcdiff_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rap_sfcdiff_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/rap_sfcdiff_restart Checking test 012 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -511,14 +524,14 @@ Checking test 012 rap_sfcdiff_restart results .... Comparing 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.510378 - 0: The maximum resident set size (KB) = 554944 + 0: The total amount of wall time = 1071.455939 + 0: The maximum resident set size (KB) = 550704 Test 012 rap_sfcdiff_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/hrrr_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/hrrr_control Checking test 013 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -565,14 +578,14 @@ Checking test 013 hrrr_control results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1454.785342 - 0: The maximum resident set size (KB) = 828124 + 0: The total amount of wall time = 1443.337118 + 0: The maximum resident set size (KB) = 825764 Test 013 hrrr_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/hrrr_control_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/hrrr_control_2threads Checking test 014 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -619,14 +632,14 @@ Checking test 014 hrrr_control_2threads results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1503.975894 - 0: The maximum resident set size (KB) = 894520 + 0: The total amount of wall time = 1523.491681 + 0: The maximum resident set size (KB) = 890496 Test 014 hrrr_control_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/hrrr_control_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/hrrr_control_decomp Checking test 015 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -673,28 +686,28 @@ Checking test 015 hrrr_control_decomp results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1432.846183 - 0: The maximum resident set size (KB) = 824296 + 0: The total amount of wall time = 1423.997940 + 0: The maximum resident set size (KB) = 830248 Test 015 hrrr_control_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/hrrr_control_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/hrrr_control_restart Checking test 016 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1062.431919 - 0: The maximum resident set size (KB) = 548812 + 0: The total amount of wall time = 1061.544794 + 0: The maximum resident set size (KB) = 546884 Test 016 hrrr_control_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rrfs_v1beta +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/rrfs_v1beta Checking test 017 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -741,14 +754,14 @@ Checking test 017 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1463.107031 - 0: The maximum resident set size (KB) = 821480 + 0: The total amount of wall time = 1482.767900 + 0: The maximum resident set size (KB) = 826480 Test 017 rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/rrfs_smoke_conus13km_hrrr_warm Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -757,14 +770,14 @@ Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 783.849939 - 0: The maximum resident set size (KB) = 671872 + 0: The total amount of wall time = 766.607946 + 0: The maximum resident set size (KB) = 672016 Test 018 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 019 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -773,14 +786,14 @@ Checking test 019 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 1076.271708 - 0: The maximum resident set size (KB) = 669860 + 0: The total amount of wall time = 1059.814141 + 0: The maximum resident set size (KB) = 670148 Test 019 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rrfs_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/rrfs_conus13km_hrrr_warm Checking test 020 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -789,14 +802,14 @@ Checking test 020 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 757.091492 - 0: The maximum resident set size (KB) = 648220 + 0: The total amount of wall time = 768.513007 + 0: The maximum resident set size (KB) = 647844 Test 020 rrfs_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/rrfs_smoke_conus13km_radar_tten_warm Checking test 021 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -805,262 +818,262 @@ Checking test 021 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 798.274666 - 0: The maximum resident set size (KB) = 675204 + 0: The total amount of wall time = 786.054357 + 0: The maximum resident set size (KB) = 673524 Test 021 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 022 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 418.052523 - 0: The maximum resident set size (KB) = 634972 + 0: The total amount of wall time = 389.984383 + 0: The maximum resident set size (KB) = 636284 Test 022 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/control_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/control_diag_debug Checking test 023 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 128.753604 - 0: The maximum resident set size (KB) = 528288 + 0: The total amount of wall time = 122.279558 + 0: The maximum resident set size (KB) = 528312 Test 023 control_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/regional_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/regional_debug Checking test 024 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 656.602924 - 0: The maximum resident set size (KB) = 591856 + 0: The total amount of wall time = 715.201663 + 0: The maximum resident set size (KB) = 582720 Test 024 regional_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rap_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/rap_control_debug Checking test 025 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 178.666019 - 0: The maximum resident set size (KB) = 842860 + 0: The total amount of wall time = 172.135304 + 0: The maximum resident set size (KB) = 838888 Test 025 rap_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/hrrr_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/hrrr_control_debug Checking test 026 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 167.093889 - 0: The maximum resident set size (KB) = 841524 + 0: The total amount of wall time = 167.372466 + 0: The maximum resident set size (KB) = 833728 Test 026 hrrr_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rap_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/rap_diag_debug Checking test 027 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 214.947296 - 0: The maximum resident set size (KB) = 918936 + 0: The total amount of wall time = 205.578747 + 0: The maximum resident set size (KB) = 919712 Test 027 rap_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/rap_noah_sfcdiff_cires_ugwp_debug Checking test 028 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.289831 - 0: The maximum resident set size (KB) = 833428 + 0: The total amount of wall time = 273.136288 + 0: The maximum resident set size (KB) = 835288 Test 028 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rap_progcld_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/rap_progcld_thompson_debug Checking test 029 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 172.739108 - 0: The maximum resident set size (KB) = 836188 + 0: The total amount of wall time = 176.320829 + 0: The maximum resident set size (KB) = 836652 Test 029 rap_progcld_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rrfs_v1beta_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/rrfs_v1beta_debug Checking test 030 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 177.106344 - 0: The maximum resident set size (KB) = 836944 + 0: The total amount of wall time = 168.671732 + 0: The maximum resident set size (KB) = 835468 Test 030 rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/control_ras_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/control_ras_debug Checking test 031 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 105.786286 - 0: The maximum resident set size (KB) = 481264 + 0: The total amount of wall time = 100.164913 + 0: The maximum resident set size (KB) = 482320 Test 031 control_ras_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/control_stochy_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/control_stochy_debug Checking test 032 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 121.770821 - 0: The maximum resident set size (KB) = 469640 + 0: The total amount of wall time = 116.958420 + 0: The maximum resident set size (KB) = 471684 Test 032 control_stochy_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/control_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/control_debug_p8 Checking test 033 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 121.138125 - 0: The maximum resident set size (KB) = 1225048 + 0: The total amount of wall time = 117.009122 + 0: The maximum resident set size (KB) = 1228768 Test 033 control_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 034 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 615.177272 - 0: The maximum resident set size (KB) = 687344 + 0: The total amount of wall time = 609.801017 + 0: The maximum resident set size (KB) = 683360 Test 034 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 035 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 759.146448 - 0: The maximum resident set size (KB) = 681880 + 0: The total amount of wall time = 739.701547 + 0: The maximum resident set size (KB) = 682916 Test 035 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rrfs_conus13km_hrrr_warm_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/rrfs_conus13km_hrrr_warm_debugs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/rrfs_conus13km_hrrr_warm_debug Checking test 036 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 567.952831 - 0: The maximum resident set size (KB) = 662196 + 0: The total amount of wall time = 616.776778 + 0: The maximum resident set size (KB) = 660556 Test 036 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rap_flake_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rap_flake_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/rap_flake_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/rap_flake_debug Checking test 037 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 178.155110 - 0: The maximum resident set size (KB) = 842000 + 0: The total amount of wall time = 174.316431 + 0: The maximum resident set size (KB) = 845336 Test 037 rap_flake_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rap_clm_lake_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rap_clm_lake_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/rap_clm_lake_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/rap_clm_lake_debug Checking test 038 rap_clm_lake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 198.667015 - 0: The maximum resident set size (KB) = 845664 + 0: The total amount of wall time = 191.371796 + 0: The maximum resident set size (KB) = 840864 Test 038 rap_clm_lake_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/control_wam_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/control_wam_debug Checking test 039 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 187.096267 - 0: The maximum resident set size (KB) = 194848 + 0: The total amount of wall time = 183.801550 + 0: The maximum resident set size (KB) = 192456 Test 039 control_wam_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rap_control_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/rap_control_dyn32_phy32 Checking test 040 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1107,14 +1120,14 @@ Checking test 040 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1487.118979 - 0: The maximum resident set size (KB) = 686908 + 0: The total amount of wall time = 1516.524630 + 0: The maximum resident set size (KB) = 683276 Test 040 rap_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/hrrr_control_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/hrrr_control_dyn32_phy32 Checking test 041 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1161,14 +1174,14 @@ Checking test 041 hrrr_control_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 740.503240 - 0: The maximum resident set size (KB) = 680628 + 0: The total amount of wall time = 745.804522 + 0: The maximum resident set size (KB) = 681980 Test 041 hrrr_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rap_2threads_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/rap_2threads_dyn32_phy32 Checking test 042 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1215,14 +1228,14 @@ Checking test 042 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1344.285233 - 0: The maximum resident set size (KB) = 735344 + 0: The total amount of wall time = 1381.127406 + 0: The maximum resident set size (KB) = 729204 Test 042 rap_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/hrrr_control_2threads_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/hrrr_control_2threads_dyn32_phy32 Checking test 043 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1269,14 +1282,14 @@ Checking test 043 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 776.035914 - 0: The maximum resident set size (KB) = 728100 + 0: The total amount of wall time = 769.419236 + 0: The maximum resident set size (KB) = 726192 Test 043 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/hrrr_control_decomp_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/hrrr_control_decomp_dyn32_phy32 Checking test 044 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1323,14 +1336,14 @@ Checking test 044 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 729.827151 - 0: The maximum resident set size (KB) = 691380 + 0: The total amount of wall time = 726.648140 + 0: The maximum resident set size (KB) = 679144 Test 044 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rap_restart_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/rap_restart_dyn32_phy32 Checking test 045 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1369,28 +1382,28 @@ Checking test 045 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1101.583583 - 0: The maximum resident set size (KB) = 512732 + 0: The total amount of wall time = 1079.518590 + 0: The maximum resident set size (KB) = 514548 Test 045 rap_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/hrrr_control_restart_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/hrrr_control_restart_dyn32_phy32 Checking test 046 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 358.215006 - 0: The maximum resident set size (KB) = 509752 + 0: The total amount of wall time = 375.026771 + 0: The maximum resident set size (KB) = 509000 Test 046 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rap_control_dyn64_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/rap_control_dyn64_phy32 Checking test 047 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1437,56 +1450,56 @@ Checking test 047 rap_control_dyn64_phy32 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 = 1075.006151 - 0: The maximum resident set size (KB) = 708312 + 0: The total amount of wall time = 1070.237993 + 0: The maximum resident set size (KB) = 705220 Test 047 rap_control_dyn64_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rap_control_debug_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/rap_control_debug_dyn32_phy32 Checking test 048 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 173.531699 - 0: The maximum resident set size (KB) = 695664 + 0: The total amount of wall time = 171.733157 + 0: The maximum resident set size (KB) = 701952 Test 048 rap_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/hrrr_control_debug_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/hrrr_control_debug_dyn32_phy32 Checking test 049 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 171.532601 - 0: The maximum resident set size (KB) = 703072 + 0: The total amount of wall time = 168.263030 + 0: The maximum resident set size (KB) = 691920 Test 049 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/rap_control_dyn64_phy32_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/rap_control_debug_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/rap_control_dyn64_phy32_debug Checking test 050 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 206.398304 - 0: The maximum resident set size (KB) = 716296 + 0: The total amount of wall time = 205.292152 + 0: The maximum resident set size (KB) = 714512 Test 050 rap_control_dyn64_phy32_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/cpld_control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/cpld_control_p8 Checking test 051 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1551,14 +1564,14 @@ Checking test 051 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1679.804702 - 0: The maximum resident set size (KB) = 1433244 + 0: The total amount of wall time = 1699.118609 + 0: The maximum resident set size (KB) = 1427464 Test 051 cpld_control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/cpld_control_nowave_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/cpld_control_c96_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/cpld_control_nowave_noaero_p8 Checking test 052 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1620,14 +1633,14 @@ Checking test 052 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 1218.244104 - 0: The maximum resident set size (KB) = 1331088 + 0: The total amount of wall time = 1243.748250 + 0: The maximum resident set size (KB) = 1331488 Test 052 cpld_control_nowave_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/cpld_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/cpld_debug_p8 Checking test 053 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1680,53 +1693,25 @@ Checking test 053 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 850.146856 - 0: The maximum resident set size (KB) = 1437136 + 0: The total amount of wall time = 893.235664 + 0: The maximum resident set size (KB) = 1437724 Test 053 cpld_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7002/datm_cdeps_control_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/datm_cdeps_control_cfsr Checking test 054 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 179.260979 - 0: The maximum resident set size (KB) = 669436 + 0: The total amount of wall time = 177.437237 + 0: The maximum resident set size (KB) = 665232 Test 054 datm_cdeps_control_cfsr PASS -FAILED TESTS: -Test control_flake 005 failed in run_test failed - -REGRESSION TEST FAILED -Tue Apr 25 18:41:19 UTC 2023 -Elapsed time: 01h:06m:44s. Have a nice day! -Tue Apr 25 18:53:32 UTC 2023 -Start Regression test - -Compile 001 elapsed time 209 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/GNU/control_flake -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_64771/control_flake -Checking test 001 control_flake results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 1171.856518 - 0: The maximum resident set size (KB) = 511916 - -Test 001 control_flake PASS - REGRESSION TEST WAS SUCCESSFUL -Tue Apr 25 19:24:09 UTC 2023 -Elapsed time: 00h:30m:38s. Have a nice day! +Thu Apr 27 17:57:41 UTC 2023 +Elapsed time: 00h:56m:49s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index c174013c8a8..37fb374f036 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,43 +1,43 @@ -Tue Apr 25 22:13:17 UTC 2023 +Thu Apr 27 16:56:51 UTC 2023 Start Regression test -Compile 001 elapsed time 644 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 645 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 639 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 262 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 211 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 583 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 568 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 792 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 596 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 010 elapsed time 542 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 534 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 481 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 616 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 227 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 015 elapsed time 168 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 506 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 506 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 176 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 169 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 568 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 217 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 674 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 589 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 649 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 648 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 602 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 236 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 209 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 566 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 557 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 726 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 588 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 010 elapsed time 559 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 524 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 477 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 614 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 217 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 015 elapsed time 162 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 490 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 500 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 166 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 172 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 552 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 021 elapsed time 191 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 666 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 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 024 elapsed time 180 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 106 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 181 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 61 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 524 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 566 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 600 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 527 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 503 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 033 elapsed time 175 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 034 elapsed time 583 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8_mixedmode -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/cpld_control_p8_mixedmode +Compile 025 elapsed time 107 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 182 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 52 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 519 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 532 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 537 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 516 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 489 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 033 elapsed time 169 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 034 elapsed time 574 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8_mixedmode +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -102,14 +102,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 315.183618 - 0: The maximum resident set size (KB) = 3137576 + 0: The total amount of wall time = 308.142402 + 0: The maximum resident set size (KB) = 3149136 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_gfsv17 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/cpld_control_gfsv17 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_gfsv17 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -173,14 +173,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 229.451630 - 0: The maximum resident set size (KB) = 1704984 + 0: The total amount of wall time = 226.133902 + 0: The maximum resident set size (KB) = 1713072 Test 002 cpld_control_gfsv17 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/cpld_control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -245,14 +245,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 345.592919 - 0: The maximum resident set size (KB) = 3178448 + 0: The total amount of wall time = 340.184221 + 0: The maximum resident set size (KB) = 3166400 Test 003 cpld_control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/cpld_restart_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -305,14 +305,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 198.057921 - 0: The maximum resident set size (KB) = 3038128 + 0: The total amount of wall time = 196.135020 + 0: The maximum resident set size (KB) = 3016080 Test 004 cpld_restart_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/cpld_control_qr_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -377,14 +377,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 354.255660 - 0: The maximum resident set size (KB) = 3171588 + 0: The total amount of wall time = 338.892507 + 0: The maximum resident set size (KB) = 3177856 Test 005 cpld_control_qr_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/cpld_restart_qr_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -437,14 +437,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 201.415772 - 0: The maximum resident set size (KB) = 3048104 + 0: The total amount of wall time = 198.150915 + 0: The maximum resident set size (KB) = 3046400 Test 006 cpld_restart_qr_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/cpld_2threads_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -497,14 +497,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 370.257514 - 0: The maximum resident set size (KB) = 3505532 + 0: The total amount of wall time = 351.053877 + 0: The maximum resident set size (KB) = 3504608 Test 007 cpld_2threads_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/cpld_decomp_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -557,14 +557,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 350.298672 - 0: The maximum resident set size (KB) = 3141668 + 0: The total amount of wall time = 341.157831 + 0: The maximum resident set size (KB) = 3151732 Test 008 cpld_decomp_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/cpld_mpi_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -617,14 +617,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 288.319734 - 0: The maximum resident set size (KB) = 2998240 + 0: The total amount of wall time = 278.453654 + 0: The maximum resident set size (KB) = 3010752 Test 009 cpld_mpi_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_ciceC_p8 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/cpld_control_ciceC_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_ciceC_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -689,14 +689,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 348.116770 - 0: The maximum resident set size (KB) = 3154672 + 0: The total amount of wall time = 339.033026 + 0: The maximum resident set size (KB) = 3172580 Test 010 cpld_control_ciceC_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/cpld_control_c192_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/cpld_control_c192_p8 Checking test 011 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -749,14 +749,14 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 594.039399 - 0: The maximum resident set size (KB) = 3253488 + 0: The total amount of wall time = 590.560389 + 0: The maximum resident set size (KB) = 3206164 Test 011 cpld_control_c192_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/cpld_restart_c192_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/cpld_restart_c192_p8 Checking test 012 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -809,14 +809,14 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 383.620048 - 0: The maximum resident set size (KB) = 3142300 + 0: The total amount of wall time = 389.032225 + 0: The maximum resident set size (KB) = 3154724 Test 012 cpld_restart_c192_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/cpld_bmark_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/cpld_bmark_p8 Checking test 013 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -864,14 +864,14 @@ Checking test 013 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 735.294895 - 0: The maximum resident set size (KB) = 4009620 + 0: The total amount of wall time = 738.644972 + 0: The maximum resident set size (KB) = 4021628 Test 013 cpld_bmark_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/cpld_restart_bmark_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/cpld_restart_bmark_p8 Checking test 014 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -919,14 +919,14 @@ Checking test 014 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 458.308375 - 0: The maximum resident set size (KB) = 4010128 + 0: The total amount of wall time = 450.787756 + 0: The maximum resident set size (KB) = 3963112 Test 014 cpld_restart_bmark_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/cpld_control_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/cpld_control_noaero_p8 Checking test 015 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -990,14 +990,14 @@ Checking test 015 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 269.068385 - 0: The maximum resident set size (KB) = 1709312 + 0: The total amount of wall time = 263.616077 + 0: The maximum resident set size (KB) = 1697584 Test 015 cpld_control_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/cpld_control_nowave_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_c96_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/cpld_control_nowave_noaero_p8 Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1059,14 +1059,14 @@ Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 265.190367 - 0: The maximum resident set size (KB) = 1736904 + 0: The total amount of wall time = 260.204099 + 0: The maximum resident set size (KB) = 1756080 Test 016 cpld_control_nowave_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/cpld_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/cpld_debug_p8 Checking test 017 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1119,14 +1119,14 @@ Checking test 017 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 519.740757 - 0: The maximum resident set size (KB) = 3235040 + 0: The total amount of wall time = 521.460631 + 0: The maximum resident set size (KB) = 3234000 Test 017 cpld_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_debug_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/cpld_debug_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_debug_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/cpld_debug_noaero_p8 Checking test 018 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1178,14 +1178,14 @@ Checking test 018 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 368.088314 - 0: The maximum resident set size (KB) = 1728088 + 0: The total amount of wall time = 359.838958 + 0: The maximum resident set size (KB) = 1731344 Test 018 cpld_debug_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_noaero_p8_agrid -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/cpld_control_noaero_p8_agrid +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_noaero_p8_agrid +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/cpld_control_noaero_p8_agrid Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1247,14 +1247,14 @@ Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 275.996213 - 0: The maximum resident set size (KB) = 1749016 + 0: The total amount of wall time = 269.665323 + 0: The maximum resident set size (KB) = 1753436 Test 019 cpld_control_noaero_p8_agrid PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_c48 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/cpld_control_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_c48 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/cpld_control_c48 Checking test 020 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1304,14 +1304,14 @@ Checking test 020 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 587.375773 - 0: The maximum resident set size (KB) = 2800592 + 0: The total amount of wall time = 578.183460 + 0: The maximum resident set size (KB) = 2797108 Test 020 cpld_control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/cpld_warmstart_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_warmstart_c48 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/cpld_warmstart_c48 Checking test 021 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1361,14 +1361,14 @@ Checking test 021 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 154.960683 - 0: The maximum resident set size (KB) = 2795980 + 0: The total amount of wall time = 153.505637 + 0: The maximum resident set size (KB) = 2798672 Test 021 cpld_warmstart_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/cpld_restart_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_warmstart_c48 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/cpld_restart_c48 Checking test 022 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1418,14 +1418,14 @@ Checking test 022 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 80.520531 - 0: The maximum resident set size (KB) = 2243272 + 0: The total amount of wall time = 80.882374 + 0: The maximum resident set size (KB) = 2233264 Test 022 cpld_restart_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8_faster -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/cpld_control_p8_faster +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8_faster +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/cpld_control_p8_faster Checking test 023 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1490,14 +1490,14 @@ Checking test 023 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 324.037872 - 0: The maximum resident set size (KB) = 3169136 + 0: The total amount of wall time = 321.640738 + 0: The maximum resident set size (KB) = 3181684 Test 023 cpld_control_p8_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_flake -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_flake +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_flake +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_flake Checking test 024 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1508,14 +1508,14 @@ Checking test 024 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 189.314313 - 0: The maximum resident set size (KB) = 684680 + 0: The total amount of wall time = 187.828876 + 0: The maximum resident set size (KB) = 670844 Test 024 control_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_CubedSphereGrid -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_CubedSphereGrid +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_CubedSphereGrid +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_CubedSphereGrid Checking test 025 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1542,28 +1542,28 @@ Checking test 025 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 131.640550 - 0: The maximum resident set size (KB) = 626472 + 0: The total amount of wall time = 131.491690 + 0: The maximum resident set size (KB) = 628592 Test 025 control_CubedSphereGrid PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_CubedSphereGrid_parallel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_CubedSphereGrid_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_CubedSphereGrid_parallel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_CubedSphereGrid_parallel Checking test 026 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK - 0: The total amount of wall time = 129.864225 - 0: The maximum resident set size (KB) = 628036 + 0: The total amount of wall time = 126.645694 + 0: The maximum resident set size (KB) = 633108 Test 026 control_CubedSphereGrid_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_latlon -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_latlon +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_latlon +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_latlon Checking test 027 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1574,14 +1574,14 @@ Checking test 027 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.450335 - 0: The maximum resident set size (KB) = 626432 + 0: The total amount of wall time = 132.557993 + 0: The maximum resident set size (KB) = 622468 Test 027 control_latlon PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_wrtGauss_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_wrtGauss_netcdf_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_wrtGauss_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_wrtGauss_netcdf_parallel Checking test 028 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1592,14 +1592,14 @@ Checking test 028 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 137.940196 - 0: The maximum resident set size (KB) = 626312 + 0: The total amount of wall time = 136.401804 + 0: The maximum resident set size (KB) = 629924 Test 028 control_wrtGauss_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_c48 Checking test 029 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1638,14 +1638,14 @@ Checking test 029 control_c48 results .... Comparing 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.168598 -0: The maximum resident set size (KB) = 808216 +0: The total amount of wall time = 370.356632 +0: The maximum resident set size (KB) = 816756 Test 029 control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_c192 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_c192 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_c192 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_c192 Checking test 030 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1656,14 +1656,14 @@ Checking test 030 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 526.120028 - 0: The maximum resident set size (KB) = 764116 + 0: The total amount of wall time = 529.722498 + 0: The maximum resident set size (KB) = 765652 Test 030 control_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_c384 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_c384 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_c384 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_c384 Checking test 031 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1674,14 +1674,14 @@ Checking test 031 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 524.038564 - 0: The maximum resident set size (KB) = 1263656 + 0: The total amount of wall time = 524.398675 + 0: The maximum resident set size (KB) = 1270008 Test 031 control_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_c384gdas -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_c384gdas +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_c384gdas +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_c384gdas Checking test 032 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1724,14 +1724,14 @@ Checking test 032 control_c384gdas 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.624122 - 0: The maximum resident set size (KB) = 1374068 + 0: The total amount of wall time = 463.854399 + 0: The maximum resident set size (KB) = 1375392 Test 032 control_c384gdas PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_stochy +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_stochy Checking test 033 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1742,28 +1742,28 @@ Checking test 033 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 91.590453 - 0: The maximum resident set size (KB) = 635544 + 0: The total amount of wall time = 87.472034 + 0: The maximum resident set size (KB) = 625472 Test 033 control_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_stochy_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_stochy_restart Checking test 034 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 49.168516 - 0: The maximum resident set size (KB) = 480800 + 0: The total amount of wall time = 48.120207 + 0: The maximum resident set size (KB) = 482948 Test 034 control_stochy_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_lndp -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_lndp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_lndp +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_lndp Checking test 035 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1774,14 +1774,14 @@ Checking test 035 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 83.658803 - 0: The maximum resident set size (KB) = 631112 + 0: The total amount of wall time = 82.069554 + 0: The maximum resident set size (KB) = 630728 Test 035 control_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_iovr4 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_iovr4 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_iovr4 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_iovr4 Checking test 036 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1796,14 +1796,14 @@ Checking test 036 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 140.226148 - 0: The maximum resident set size (KB) = 626396 + 0: The total amount of wall time = 135.085915 + 0: The maximum resident set size (KB) = 629580 Test 036 control_iovr4 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_iovr5 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_iovr5 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_iovr5 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_iovr5 Checking test 037 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1818,14 +1818,14 @@ Checking test 037 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.225965 - 0: The maximum resident set size (KB) = 626276 + 0: The total amount of wall time = 135.521899 + 0: The maximum resident set size (KB) = 624804 Test 037 control_iovr5 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_p8 Checking test 038 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1872,14 +1872,14 @@ Checking test 038 control_p8 results .... Comparing 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.837047 - 0: The maximum resident set size (KB) = 1591312 + 0: The total amount of wall time = 167.805701 + 0: The maximum resident set size (KB) = 1595632 Test 038 control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_restart_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_restart_p8 Checking test 039 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1918,14 +1918,14 @@ Checking test 039 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 90.183683 - 0: The maximum resident set size (KB) = 865516 + 0: The total amount of wall time = 88.931168 + 0: The maximum resident set size (KB) = 858096 Test 039 control_restart_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_qr_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_qr_p8 Checking test 040 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1972,14 +1972,14 @@ Checking test 040 control_qr_p8 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.863620 - 0: The maximum resident set size (KB) = 1600688 + 0: The total amount of wall time = 170.149032 + 0: The maximum resident set size (KB) = 1596252 Test 040 control_qr_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_restart_qr_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_restart_qr_p8 Checking test 041 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2018,14 +2018,14 @@ Checking test 041 control_restart_qr_p8 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.514471 - 0: The maximum resident set size (KB) = 862568 + 0: The total amount of wall time = 90.192800 + 0: The maximum resident set size (KB) = 864536 Test 041 control_restart_qr_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_decomp_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_decomp_p8 Checking test 042 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2068,14 +2068,14 @@ Checking test 042 control_decomp_p8 results .... Comparing 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.426503 - 0: The maximum resident set size (KB) = 1582132 + 0: The total amount of wall time = 174.462951 + 0: The maximum resident set size (KB) = 1594364 Test 042 control_decomp_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_2threads_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_2threads_p8 Checking test 043 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2118,14 +2118,14 @@ Checking test 043 control_2threads_p8 results .... Comparing 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.135755 - 0: The maximum resident set size (KB) = 1679788 + 0: The total amount of wall time = 158.839100 + 0: The maximum resident set size (KB) = 1685600 Test 043 control_2threads_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8_lndp -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_p8_lndp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8_lndp +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_p8_lndp Checking test 044 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2144,14 +2144,14 @@ Checking test 044 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 318.228252 - 0: The maximum resident set size (KB) = 1599704 + 0: The total amount of wall time = 312.983733 + 0: The maximum resident set size (KB) = 1607992 Test 044 control_p8_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_p8_rrtmgp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_p8_rrtmgp Checking test 045 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2198,14 +2198,14 @@ Checking test 045 control_p8_rrtmgp results .... Comparing 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.704093 - 0: The maximum resident set size (KB) = 1668524 + 0: The total amount of wall time = 226.539005 + 0: The maximum resident set size (KB) = 1666540 Test 045 control_p8_rrtmgp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8_mynn -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_p8_mynn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8_mynn +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_p8_mynn Checking test 046 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2252,14 +2252,14 @@ Checking test 046 control_p8_mynn results .... Comparing 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.800060 - 0: The maximum resident set size (KB) = 1579352 + 0: The total amount of wall time = 171.884771 + 0: The maximum resident set size (KB) = 1601416 Test 046 control_p8_mynn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/merra2_thompson -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/merra2_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/merra2_thompson +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/merra2_thompson Checking test 047 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2306,14 +2306,14 @@ Checking test 047 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 191.359710 - 0: The maximum resident set size (KB) = 1605316 + 0: The total amount of wall time = 191.174002 + 0: The maximum resident set size (KB) = 1600004 Test 047 merra2_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/regional_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/regional_control Checking test 048 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2324,28 +2324,28 @@ Checking test 048 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 299.052499 - 0: The maximum resident set size (KB) = 865112 + 0: The total amount of wall time = 301.252938 + 0: The maximum resident set size (KB) = 870316 Test 048 regional_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/regional_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/regional_restart Checking test 049 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 154.386061 - 0: The maximum resident set size (KB) = 861340 + 0: The total amount of wall time = 156.081482 + 0: The maximum resident set size (KB) = 862896 Test 049 regional_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/regional_control_qr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/regional_control_qr Checking test 050 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2356,28 +2356,28 @@ Checking test 050 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 298.932127 - 0: The maximum resident set size (KB) = 867804 + 0: The total amount of wall time = 299.381867 + 0: The maximum resident set size (KB) = 871876 Test 050 regional_control_qr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/regional_restart_qr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/regional_restart_qr Checking test 051 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 157.222442 - 0: The maximum resident set size (KB) = 859172 + 0: The total amount of wall time = 155.425517 + 0: The maximum resident set size (KB) = 866848 Test 051 regional_restart_qr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/regional_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/regional_decomp Checking test 052 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2388,14 +2388,14 @@ Checking test 052 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 316.292250 - 0: The maximum resident set size (KB) = 863720 + 0: The total amount of wall time = 315.038046 + 0: The maximum resident set size (KB) = 860556 Test 052 regional_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/regional_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/regional_2threads Checking test 053 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2406,14 +2406,14 @@ Checking test 053 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 181.841676 - 0: The maximum resident set size (KB) = 841532 + 0: The total amount of wall time = 183.093037 + 0: The maximum resident set size (KB) = 847688 Test 053 regional_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_noquilt -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/regional_noquilt +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_noquilt +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/regional_noquilt Checking test 054 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2421,28 +2421,28 @@ Checking test 054 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 327.831040 - 0: The maximum resident set size (KB) = 859448 + 0: The total amount of wall time = 323.846416 + 0: The maximum resident set size (KB) = 859432 Test 054 regional_noquilt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/regional_netcdf_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/regional_netcdf_parallel Checking test 055 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 294.442566 - 0: The maximum resident set size (KB) = 864764 + 0: The total amount of wall time = 294.093163 + 0: The maximum resident set size (KB) = 865124 Test 055 regional_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/regional_2dwrtdecomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/regional_2dwrtdecomp Checking test 056 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2453,14 +2453,14 @@ Checking test 056 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 300.282823 - 0: The maximum resident set size (KB) = 871140 + 0: The total amount of wall time = 296.220293 + 0: The maximum resident set size (KB) = 869588 Test 056 regional_2dwrtdecomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/fv3_regional_wofs -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/regional_wofs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/fv3_regional_wofs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/regional_wofs Checking test 057 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2471,14 +2471,14 @@ Checking test 057 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 377.751497 - 0: The maximum resident set size (KB) = 627712 + 0: The total amount of wall time = 378.327432 + 0: The maximum resident set size (KB) = 624132 Test 057 regional_wofs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rap_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/rap_control Checking test 058 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2525,14 +2525,14 @@ Checking test 058 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 462.708787 - 0: The maximum resident set size (KB) = 1052276 + 0: The total amount of wall time = 461.282795 + 0: The maximum resident set size (KB) = 1051668 Test 058 rap_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_spp_sppt_shum_skeb -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/regional_spp_sppt_shum_skeb +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_spp_sppt_shum_skeb +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/regional_spp_sppt_shum_skeb Checking test 059 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2543,14 +2543,14 @@ Checking test 059 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 235.447277 - 0: The maximum resident set size (KB) = 1180456 + 0: The total amount of wall time = 235.175058 + 0: The maximum resident set size (KB) = 1161752 Test 059 regional_spp_sppt_shum_skeb PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rap_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/rap_decomp Checking test 060 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2597,14 +2597,14 @@ Checking test 060 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 481.188620 - 0: The maximum resident set size (KB) = 1003160 + 0: The total amount of wall time = 478.438441 + 0: The maximum resident set size (KB) = 994988 Test 060 rap_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rap_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/rap_2threads Checking test 061 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2651,14 +2651,14 @@ Checking test 061 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 434.336228 - 0: The maximum resident set size (KB) = 1126260 + 0: The total amount of wall time = 436.768415 + 0: The maximum resident set size (KB) = 1130492 Test 061 rap_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rap_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/rap_restart Checking test 062 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2697,14 +2697,14 @@ Checking test 062 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 236.071406 - 0: The maximum resident set size (KB) = 965340 + 0: The total amount of wall time = 232.941889 + 0: The maximum resident set size (KB) = 956712 Test 062 rap_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rap_sfcdiff +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/rap_sfcdiff Checking test 063 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2751,14 +2751,14 @@ Checking test 063 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 462.363223 - 0: The maximum resident set size (KB) = 1054892 + 0: The total amount of wall time = 459.204530 + 0: The maximum resident set size (KB) = 1049536 Test 063 rap_sfcdiff PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rap_sfcdiff_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/rap_sfcdiff_decomp Checking test 064 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2805,14 +2805,14 @@ Checking test 064 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 484.210346 - 0: The maximum resident set size (KB) = 987092 + 0: The total amount of wall time = 483.320112 + 0: The maximum resident set size (KB) = 988396 Test 064 rap_sfcdiff_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rap_sfcdiff_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/rap_sfcdiff_restart Checking test 065 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2851,14 +2851,14 @@ Checking test 065 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 341.491706 - 0: The maximum resident set size (KB) = 984580 + 0: The total amount of wall time = 341.862173 + 0: The maximum resident set size (KB) = 992072 Test 065 rap_sfcdiff_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hrrr_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/hrrr_control Checking test 066 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2905,14 +2905,14 @@ Checking test 066 hrrr_control results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 432.130202 - 0: The maximum resident set size (KB) = 1051188 + 0: The total amount of wall time = 428.555831 + 0: The maximum resident set size (KB) = 1049588 Test 066 hrrr_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hrrr_control_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/hrrr_control_decomp Checking test 067 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2959,14 +2959,14 @@ Checking test 067 hrrr_control_decomp results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 448.726603 - 0: The maximum resident set size (KB) = 992580 + 0: The total amount of wall time = 449.549665 + 0: The maximum resident set size (KB) = 1003128 Test 067 hrrr_control_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hrrr_control_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/hrrr_control_2threads Checking test 068 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3013,28 +3013,28 @@ Checking test 068 hrrr_control_2threads results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 399.886318 - 0: The maximum resident set size (KB) = 1075320 + 0: The total amount of wall time = 395.003870 + 0: The maximum resident set size (KB) = 1074320 Test 068 hrrr_control_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hrrr_control_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/hrrr_control_restart Checking test 069 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 318.569423 - 0: The maximum resident set size (KB) = 983352 + 0: The total amount of wall time = 318.418511 + 0: The maximum resident set size (KB) = 978076 Test 069 hrrr_control_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rrfs_v1beta +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/rrfs_v1beta Checking test 070 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3081,14 +3081,14 @@ Checking test 070 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 460.259390 - 0: The maximum resident set size (KB) = 1055648 + 0: The total amount of wall time = 457.271635 + 0: The maximum resident set size (KB) = 1049564 Test 070 rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_v1nssl -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rrfs_v1nssl +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_v1nssl +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/rrfs_v1nssl Checking test 071 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3103,14 +3103,14 @@ Checking test 071 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 538.762571 - 0: The maximum resident set size (KB) = 693484 + 0: The total amount of wall time = 534.754323 + 0: The maximum resident set size (KB) = 693220 Test 071 rrfs_v1nssl PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rrfs_v1nssl_nohailnoccn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/rrfs_v1nssl_nohailnoccn Checking test 072 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3125,14 +3125,14 @@ Checking test 072 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 524.564368 - 0: The maximum resident set size (KB) = 752904 + 0: The total amount of wall time = 522.164940 + 0: The maximum resident set size (KB) = 753380 Test 072 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/rrfs_smoke_conus13km_hrrr_warm Checking test 073 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3141,14 +3141,14 @@ Checking test 073 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 149.825040 - 0: The maximum resident set size (KB) = 1024276 + 0: The total amount of wall time = 146.383566 + 0: The maximum resident set size (KB) = 1031884 Test 073 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 074 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3157,14 +3157,14 @@ Checking test 074 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 92.187926 - 0: The maximum resident set size (KB) = 936676 + 0: The total amount of wall time = 89.649717 + 0: The maximum resident set size (KB) = 939804 Test 074 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rrfs_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/rrfs_conus13km_hrrr_warm Checking test 075 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3173,14 +3173,14 @@ Checking test 075 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 131.780477 - 0: The maximum resident set size (KB) = 990572 + 0: The total amount of wall time = 129.133756 + 0: The maximum resident set size (KB) = 985920 Test 075 rrfs_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/rrfs_smoke_conus13km_radar_tten_warm Checking test 076 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3189,26 +3189,26 @@ Checking test 076 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 149.429404 - 0: The maximum resident set size (KB) = 1039356 + 0: The total amount of wall time = 148.284884 + 0: The maximum resident set size (KB) = 1031920 Test 076 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 077 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 71.416792 - 0: The maximum resident set size (KB) = 969692 + 0: The total amount of wall time = 68.651301 + 0: The maximum resident set size (KB) = 975352 Test 077 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_csawmg -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_csawmg +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_csawmg +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_csawmg Checking test 078 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3219,14 +3219,14 @@ Checking test 078 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 344.586889 - 0: The maximum resident set size (KB) = 723780 + 0: The total amount of wall time = 343.822132 + 0: The maximum resident set size (KB) = 727388 Test 078 control_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_csawmgt -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_csawmgt +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_csawmgt +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_csawmgt Checking test 079 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3237,14 +3237,14 @@ Checking test 079 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 340.288775 - 0: The maximum resident set size (KB) = 727876 + 0: The total amount of wall time = 338.015554 + 0: The maximum resident set size (KB) = 722216 Test 079 control_csawmgt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_ras -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_ras +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_ras +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_ras Checking test 080 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3255,26 +3255,26 @@ Checking test 080 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 184.841316 - 0: The maximum resident set size (KB) = 724532 + 0: The total amount of wall time = 180.672388 + 0: The maximum resident set size (KB) = 721792 Test 080 control_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_wam -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_wam +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_wam +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_wam Checking test 081 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 113.241081 - 0: The maximum resident set size (KB) = 642320 + 0: The total amount of wall time = 111.400937 + 0: The maximum resident set size (KB) = 634872 Test 081 control_wam PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8_faster -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_p8_faster +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8_faster +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_p8_faster Checking test 082 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3321,14 +3321,14 @@ Checking test 082 control_p8_faster results .... Comparing 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.680591 - 0: The maximum resident set size (KB) = 1594544 + 0: The total amount of wall time = 153.411779 + 0: The maximum resident set size (KB) = 1599048 Test 082 control_p8_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control_faster -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/regional_control_faster +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control_faster +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/regional_control_faster Checking test 083 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3339,56 +3339,56 @@ Checking test 083 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 275.730386 - 0: The maximum resident set size (KB) = 866444 + 0: The total amount of wall time = 271.766696 + 0: The maximum resident set size (KB) = 870824 Test 083 regional_control_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 084 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 840.078425 - 0: The maximum resident set size (KB) = 1055204 + 0: The total amount of wall time = 834.233277 + 0: The maximum resident set size (KB) = 1063044 Test 084 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 085 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 473.099800 - 0: The maximum resident set size (KB) = 975324 + 0: The total amount of wall time = 461.214486 + 0: The maximum resident set size (KB) = 969992 Test 085 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rrfs_conus13km_hrrr_warm_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/rrfs_conus13km_hrrr_warm_debug Checking test 086 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 751.351361 - 0: The maximum resident set size (KB) = 1014392 + 0: The total amount of wall time = 739.570174 + 0: The maximum resident set size (KB) = 1011592 Test 086 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_CubedSphereGrid_debug -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_CubedSphereGrid_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_CubedSphereGrid_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_CubedSphereGrid_debug Checking test 087 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3415,348 +3415,348 @@ Checking test 087 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 147.745344 - 0: The maximum resident set size (KB) = 791108 + 0: The total amount of wall time = 143.005119 + 0: The maximum resident set size (KB) = 794140 Test 087 control_CubedSphereGrid_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_wrtGauss_netcdf_parallel_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_wrtGauss_netcdf_parallel_debug Checking test 088 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK - Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 147.383087 - 0: The maximum resident set size (KB) = 787604 + 0: The total amount of wall time = 142.358156 + 0: The maximum resident set size (KB) = 791800 Test 088 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_stochy_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_stochy_debug Checking test 089 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 166.129663 - 0: The maximum resident set size (KB) = 796512 + 0: The total amount of wall time = 165.583603 + 0: The maximum resident set size (KB) = 771264 Test 089 control_stochy_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_lndp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_lndp_debug Checking test 090 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 146.156263 - 0: The maximum resident set size (KB) = 793284 + 0: The total amount of wall time = 148.112982 + 0: The maximum resident set size (KB) = 796128 Test 090 control_lndp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_csawmg_debug -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_csawmg_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_csawmg_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_csawmg_debug Checking test 091 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 228.587433 - 0: The maximum resident set size (KB) = 840588 + 0: The total amount of wall time = 225.893402 + 0: The maximum resident set size (KB) = 834460 Test 091 control_csawmg_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_csawmgt_debug -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_csawmgt_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_csawmgt_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_csawmgt_debug Checking test 092 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 223.122845 - 0: The maximum resident set size (KB) = 834840 + 0: The total amount of wall time = 224.590420 + 0: The maximum resident set size (KB) = 835468 Test 092 control_csawmgt_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_ras_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_ras_debug Checking test 093 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 149.239354 - 0: The maximum resident set size (KB) = 800920 + 0: The total amount of wall time = 147.792773 + 0: The maximum resident set size (KB) = 807440 Test 093 control_ras_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_diag_debug Checking test 094 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 157.313716 - 0: The maximum resident set size (KB) = 852944 + 0: The total amount of wall time = 153.807481 + 0: The maximum resident set size (KB) = 846072 Test 094 control_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_debug_p8 Checking test 095 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 167.045297 - 0: The maximum resident set size (KB) = 1618560 + 0: The total amount of wall time = 164.020919 + 0: The maximum resident set size (KB) = 1619632 Test 095 control_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/regional_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/regional_debug Checking test 096 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 996.761045 - 0: The maximum resident set size (KB) = 879080 + 0: The total amount of wall time = 978.949354 + 0: The maximum resident set size (KB) = 882588 Test 096 regional_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rap_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/rap_control_debug Checking test 097 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.482534 - 0: The maximum resident set size (KB) = 1163116 + 0: The total amount of wall time = 269.732809 + 0: The maximum resident set size (KB) = 1166040 Test 097 rap_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hrrr_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/hrrr_control_debug Checking test 098 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 267.028086 - 0: The maximum resident set size (KB) = 1163324 + 0: The total amount of wall time = 264.156382 + 0: The maximum resident set size (KB) = 1163360 Test 098 hrrr_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rap_unified_drag_suite_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/rap_unified_drag_suite_debug Checking test 099 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.637171 - 0: The maximum resident set size (KB) = 1166908 + 0: The total amount of wall time = 272.572328 + 0: The maximum resident set size (KB) = 1163176 Test 099 rap_unified_drag_suite_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rap_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/rap_diag_debug Checking test 100 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 289.463384 - 0: The maximum resident set size (KB) = 1246024 + 0: The total amount of wall time = 282.042490 + 0: The maximum resident set size (KB) = 1251076 Test 100 rap_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rap_cires_ugwp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/rap_cires_ugwp_debug Checking test 101 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.308504 - 0: The maximum resident set size (KB) = 1163600 + 0: The total amount of wall time = 280.206560 + 0: The maximum resident set size (KB) = 1166132 Test 101 rap_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rap_unified_ugwp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/rap_unified_ugwp_debug Checking test 102 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.916348 - 0: The maximum resident set size (KB) = 1164888 + 0: The total amount of wall time = 276.865823 + 0: The maximum resident set size (KB) = 1169420 Test 102 rap_unified_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rap_lndp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/rap_lndp_debug Checking test 103 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.631823 - 0: The maximum resident set size (KB) = 1170544 + 0: The total amount of wall time = 278.542881 + 0: The maximum resident set size (KB) = 1170016 Test 103 rap_lndp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rap_progcld_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/rap_progcld_thompson_debug Checking test 104 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.828171 - 0: The maximum resident set size (KB) = 1163752 + 0: The total amount of wall time = 274.745273 + 0: The maximum resident set size (KB) = 1169516 Test 104 rap_progcld_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_noah_debug -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rap_noah_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_noah_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/rap_noah_debug Checking test 105 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.208216 - 0: The maximum resident set size (KB) = 1167268 + 0: The total amount of wall time = 265.958914 + 0: The maximum resident set size (KB) = 1165612 Test 105 rap_noah_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_sfcdiff_debug -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rap_sfcdiff_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_sfcdiff_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/rap_sfcdiff_debug Checking test 106 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 272.646402 - 0: The maximum resident set size (KB) = 1166996 + 0: The total amount of wall time = 273.884707 + 0: The maximum resident set size (KB) = 1170168 Test 106 rap_sfcdiff_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/rap_noah_sfcdiff_cires_ugwp_debug Checking test 107 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 447.682267 - 0: The maximum resident set size (KB) = 1164088 + 0: The total amount of wall time = 446.857310 + 0: The maximum resident set size (KB) = 1164196 Test 107 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rrfs_v1beta_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/rrfs_v1beta_debug Checking test 108 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.611679 - 0: The maximum resident set size (KB) = 1155376 + 0: The total amount of wall time = 263.237778 + 0: The maximum resident set size (KB) = 1163272 Test 108 rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_clm_lake_debug -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rap_clm_lake_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_clm_lake_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/rap_clm_lake_debug Checking test 109 rap_clm_lake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 334.996405 - 0: The maximum resident set size (KB) = 1171012 + 0: The total amount of wall time = 349.717435 + 0: The maximum resident set size (KB) = 1168172 Test 109 rap_clm_lake_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_flake_debug -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rap_flake_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_flake_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/rap_flake_debug Checking test 110 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.630306 - 0: The maximum resident set size (KB) = 1164480 + 0: The total amount of wall time = 270.432962 + 0: The maximum resident set size (KB) = 1171072 Test 110 rap_flake_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_wam_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_wam_debug Checking test 111 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 279.416584 - 0: The maximum resident set size (KB) = 519984 + 0: The total amount of wall time = 275.476298 + 0: The maximum resident set size (KB) = 525092 Test 111 control_wam_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 112 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3767,14 +3767,14 @@ Checking test 112 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 223.885694 - 0: The maximum resident set size (KB) = 1064456 + 0: The total amount of wall time = 220.281437 + 0: The maximum resident set size (KB) = 1074924 Test 112 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rap_control_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/rap_control_dyn32_phy32 Checking test 113 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3821,14 +3821,14 @@ Checking test 113 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 386.579380 - 0: The maximum resident set size (KB) = 992264 + 0: The total amount of wall time = 384.173882 + 0: The maximum resident set size (KB) = 993500 Test 113 rap_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hrrr_control_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/hrrr_control_dyn32_phy32 Checking test 114 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3875,14 +3875,14 @@ Checking test 114 hrrr_control_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 193.240896 - 0: The maximum resident set size (KB) = 950040 + 0: The total amount of wall time = 190.659970 + 0: The maximum resident set size (KB) = 955388 Test 114 hrrr_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rap_2threads_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/rap_2threads_dyn32_phy32 Checking test 115 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3929,14 +3929,14 @@ Checking test 115 rap_2threads_dyn32_phy32 results .... Comparing 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.312069 - 0: The maximum resident set size (KB) = 1018388 + 0: The total amount of wall time = 368.418809 + 0: The maximum resident set size (KB) = 1023244 Test 115 rap_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hrrr_control_2threads_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/hrrr_control_2threads_dyn32_phy32 Checking test 116 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3983,14 +3983,14 @@ Checking test 116 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 176.885596 - 0: The maximum resident set size (KB) = 921740 + 0: The total amount of wall time = 176.317956 + 0: The maximum resident set size (KB) = 926988 Test 116 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hrrr_control_decomp_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/hrrr_control_decomp_dyn32_phy32 Checking test 117 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4037,14 +4037,14 @@ Checking test 117 hrrr_control_decomp_dyn32_phy32 results .... Comparing 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.785846 - 0: The maximum resident set size (KB) = 889692 + 0: The total amount of wall time = 201.561609 + 0: The maximum resident set size (KB) = 868896 Test 117 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rap_restart_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/rap_restart_dyn32_phy32 Checking test 118 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4083,28 +4083,28 @@ Checking test 118 rap_restart_dyn32_phy32 results .... Comparing 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.311360 - 0: The maximum resident set size (KB) = 945132 + 0: The total amount of wall time = 285.965376 + 0: The maximum resident set size (KB) = 945188 Test 118 rap_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hrrr_control_restart_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/hrrr_control_restart_dyn32_phy32 Checking test 119 hrrr_control_restart_dyn32_phy32 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.088442 - 0: The maximum resident set size (KB) = 853832 + 0: The total amount of wall time = 98.820633 + 0: The maximum resident set size (KB) = 858408 Test 119 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rap_control_dyn64_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/rap_control_dyn64_phy32 Checking test 120 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4151,81 +4151,81 @@ Checking test 120 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 249.277923 - 0: The maximum resident set size (KB) = 933172 + 0: The total amount of wall time = 247.770904 + 0: The maximum resident set size (KB) = 963268 Test 120 rap_control_dyn64_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rap_control_debug_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/rap_control_debug_dyn32_phy32 Checking test 121 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.077134 - 0: The maximum resident set size (KB) = 1063140 + 0: The total amount of wall time = 263.833941 + 0: The maximum resident set size (KB) = 1052172 Test 121 rap_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hrrr_control_debug_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/hrrr_control_debug_dyn32_phy32 Checking test 122 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 264.013748 - 0: The maximum resident set size (KB) = 1052988 + 0: The total amount of wall time = 260.226682 + 0: The maximum resident set size (KB) = 1052872 Test 122 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/rap_control_dyn64_phy32_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_debug_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/rap_control_dyn64_phy32_debug Checking test 123 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.228853 - 0: The maximum resident set size (KB) = 1092776 + 0: The total amount of wall time = 277.182411 + 0: The maximum resident set size (KB) = 1096260 Test 123 rap_control_dyn64_phy32_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_atm -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hafs_regional_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_atm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/hafs_regional_atm Checking test 124 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 239.581316 - 0: The maximum resident set size (KB) = 1044108 + 0: The total amount of wall time = 240.153445 + 0: The maximum resident set size (KB) = 1046928 Test 124 hafs_regional_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hafs_regional_atm_thompson_gfdlsf +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/hafs_regional_atm_thompson_gfdlsf Checking test 125 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 353.702716 - 0: The maximum resident set size (KB) = 1400416 + 0: The total amount of wall time = 319.103109 + 0: The maximum resident set size (KB) = 1414632 Test 125 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hafs_regional_atm_ocn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/hafs_regional_atm_ocn Checking test 126 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4234,14 +4234,14 @@ Checking test 126 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 386.047452 - 0: The maximum resident set size (KB) = 1211768 + 0: The total amount of wall time = 383.318589 + 0: The maximum resident set size (KB) = 1218088 Test 126 hafs_regional_atm_ocn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_atm_wav -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hafs_regional_atm_wav +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_atm_wav +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/hafs_regional_atm_wav Checking test 127 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4250,14 +4250,14 @@ Checking test 127 hafs_regional_atm_wav 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 = 742.583049 - 0: The maximum resident set size (KB) = 1247344 + 0: The total amount of wall time = 767.953534 + 0: The maximum resident set size (KB) = 1251048 Test 127 hafs_regional_atm_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hafs_regional_atm_ocn_wav +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/hafs_regional_atm_ocn_wav Checking test 128 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4268,28 +4268,28 @@ Checking test 128 hafs_regional_atm_ocn_wav 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.225602 - 0: The maximum resident set size (KB) = 1264956 + 0: The total amount of wall time = 849.319918 + 0: The maximum resident set size (KB) = 1269360 Test 128 hafs_regional_atm_ocn_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hafs_regional_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/hafs_regional_1nest_atm Checking test 129 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 322.933548 - 0: The maximum resident set size (KB) = 499412 + 0: The total amount of wall time = 320.514139 + 0: The maximum resident set size (KB) = 505848 Test 129 hafs_regional_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hafs_regional_telescopic_2nests_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/hafs_regional_telescopic_2nests_atm Checking test 130 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4298,28 +4298,28 @@ Checking test 130 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 368.772058 - 0: The maximum resident set size (KB) = 511080 + 0: The total amount of wall time = 365.934639 + 0: The maximum resident set size (KB) = 506168 Test 130 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_global_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hafs_global_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_global_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/hafs_global_1nest_atm Checking test 131 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 147.881652 - 0: The maximum resident set size (KB) = 348084 + 0: The total amount of wall time = 150.607092 + 0: The maximum resident set size (KB) = 349492 Test 131 hafs_global_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_global_multiple_4nests_atm -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hafs_global_multiple_4nests_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_global_multiple_4nests_atm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/hafs_global_multiple_4nests_atm Checking test 132 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4337,14 +4337,14 @@ Checking test 132 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 415.990435 - 0: The maximum resident set size (KB) = 448332 + 0: The total amount of wall time = 419.706054 + 0: The maximum resident set size (KB) = 452168 Test 132 hafs_global_multiple_4nests_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hafs_regional_specified_moving_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/hafs_regional_specified_moving_1nest_atm Checking test 133 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4353,28 +4353,28 @@ Checking test 133 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 206.222910 - 0: The maximum resident set size (KB) = 514636 + 0: The total amount of wall time = 204.763168 + 0: The maximum resident set size (KB) = 520320 Test 133 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hafs_regional_storm_following_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/hafs_regional_storm_following_1nest_atm Checking test 134 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 193.692543 - 0: The maximum resident set size (KB) = 519644 + 0: The total amount of wall time = 191.252593 + 0: The maximum resident set size (KB) = 516612 Test 134 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/hafs_regional_storm_following_1nest_atm_ocn Checking test 135 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4383,42 +4383,42 @@ Checking test 135 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 224.827045 - 0: The maximum resident set size (KB) = 563056 + 0: The total amount of wall time = 223.621762 + 0: The maximum resident set size (KB) = 565976 Test 135 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_global_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hafs_global_storm_following_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_global_storm_following_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/hafs_global_storm_following_1nest_atm Checking test 136 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 59.129524 - 0: The maximum resident set size (KB) = 371752 + 0: The total amount of wall time = 58.989247 + 0: The maximum resident set size (KB) = 369632 Test 136 hafs_global_storm_following_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 137 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 716.877806 - 0: The maximum resident set size (KB) = 580056 + 0: The total amount of wall time = 711.585250 + 0: The maximum resident set size (KB) = 581264 Test 137 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 138 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4429,14 +4429,14 @@ Checking test 138 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 481.579140 - 0: The maximum resident set size (KB) = 624228 + 0: The total amount of wall time = 479.981059 + 0: The maximum resident set size (KB) = 620892 Test 138 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_docn -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hafs_regional_docn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_docn +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/hafs_regional_docn Checking test 139 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4444,14 +4444,14 @@ Checking test 139 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 356.774765 - 0: The maximum resident set size (KB) = 1230480 + 0: The total amount of wall time = 362.993232 + 0: The maximum resident set size (KB) = 1217764 Test 139 hafs_regional_docn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_docn_oisst -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hafs_regional_docn_oisst +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_docn_oisst +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/hafs_regional_docn_oisst Checking test 140 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4459,131 +4459,131 @@ Checking test 140 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 360.739062 - 0: The maximum resident set size (KB) = 1213380 + 0: The total amount of wall time = 358.506762 + 0: The maximum resident set size (KB) = 1215200 Test 140 hafs_regional_docn_oisst PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_datm_cdeps -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/hafs_regional_datm_cdeps +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_datm_cdeps +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/hafs_regional_datm_cdeps Checking test 141 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 956.806767 - 0: The maximum resident set size (KB) = 1032756 + 0: The total amount of wall time = 960.324501 + 0: The maximum resident set size (KB) = 1035544 Test 141 hafs_regional_datm_cdeps PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/datm_cdeps_control_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/datm_cdeps_control_cfsr Checking test 142 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 157.450695 - 0: The maximum resident set size (KB) = 1060548 + 0: The total amount of wall time = 156.341270 + 0: The maximum resident set size (KB) = 1060004 Test 142 datm_cdeps_control_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/datm_cdeps_restart_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/datm_cdeps_restart_cfsr Checking test 143 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 91.114685 - 0: The maximum resident set size (KB) = 1012928 + 0: The total amount of wall time = 90.448713 + 0: The maximum resident set size (KB) = 1013764 Test 143 datm_cdeps_restart_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/datm_cdeps_control_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/datm_cdeps_control_gefs Checking test 144 datm_cdeps_control_gefs 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 = 152.826055 - 0: The maximum resident set size (KB) = 955336 + 0: The total amount of wall time = 150.977587 + 0: The maximum resident set size (KB) = 961836 Test 144 datm_cdeps_control_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_iau_gefs -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/datm_cdeps_iau_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_iau_gefs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/datm_cdeps_iau_gefs Checking test 145 datm_cdeps_iau_gefs 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.662893 - 0: The maximum resident set size (KB) = 967912 + 0: The total amount of wall time = 152.072139 + 0: The maximum resident set size (KB) = 963480 Test 145 datm_cdeps_iau_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_stochy_gefs -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/datm_cdeps_stochy_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_stochy_gefs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/datm_cdeps_stochy_gefs Checking test 146 datm_cdeps_stochy_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 151.189126 - 0: The maximum resident set size (KB) = 968504 + 0: The total amount of wall time = 150.596504 + 0: The maximum resident set size (KB) = 961464 Test 146 datm_cdeps_stochy_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_ciceC_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/datm_cdeps_ciceC_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_ciceC_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/datm_cdeps_ciceC_cfsr Checking test 147 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.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.977896 - 0: The maximum resident set size (KB) = 1057728 + 0: The total amount of wall time = 150.350492 + 0: The maximum resident set size (KB) = 1052932 Test 147 datm_cdeps_ciceC_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/datm_cdeps_bulk_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/datm_cdeps_bulk_cfsr Checking test 148 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.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.728915 - 0: The maximum resident set size (KB) = 1051604 + 0: The total amount of wall time = 153.778569 + 0: The maximum resident set size (KB) = 1075612 Test 148 datm_cdeps_bulk_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/datm_cdeps_bulk_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/datm_cdeps_bulk_gefs Checking test 149 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.705574 - 0: The maximum resident set size (KB) = 956164 + 0: The total amount of wall time = 150.646382 + 0: The maximum resident set size (KB) = 965236 Test 149 datm_cdeps_bulk_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/datm_cdeps_mx025_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/datm_cdeps_mx025_cfsr Checking test 150 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4592,14 +4592,14 @@ Checking test 150 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 416.348860 - 0: The maximum resident set size (KB) = 880104 + 0: The total amount of wall time = 451.133344 + 0: The maximum resident set size (KB) = 873932 Test 150 datm_cdeps_mx025_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/datm_cdeps_mx025_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/datm_cdeps_mx025_gefs Checking test 151 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4608,77 +4608,77 @@ Checking test 151 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 408.041583 - 0: The maximum resident set size (KB) = 922612 + 0: The total amount of wall time = 426.841047 + 0: The maximum resident set size (KB) = 928404 Test 151 datm_cdeps_mx025_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/datm_cdeps_multiple_files_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/datm_cdeps_multiple_files_cfsr Checking test 152 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 158.920295 - 0: The maximum resident set size (KB) = 1057988 + 0: The total amount of wall time = 155.308283 + 0: The maximum resident set size (KB) = 1061060 Test 152 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/datm_cdeps_3072x1536_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/datm_cdeps_3072x1536_cfsr Checking test 153 datm_cdeps_3072x1536_cfsr 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 = 221.072229 - 0: The maximum resident set size (KB) = 2367840 + 0: The total amount of wall time = 218.490704 + 0: The maximum resident set size (KB) = 2359904 Test 153 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_gfs -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/datm_cdeps_gfs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_gfs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/datm_cdeps_gfs Checking test 154 datm_cdeps_gfs 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 = 220.659313 - 0: The maximum resident set size (KB) = 2362488 + 0: The total amount of wall time = 234.964133 + 0: The maximum resident set size (KB) = 2360320 Test 154 datm_cdeps_gfs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/datm_cdeps_debug_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/datm_cdeps_debug_cfsr Checking test 155 datm_cdeps_debug_cfsr 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 = 359.627955 - 0: The maximum resident set size (KB) = 978520 + 0: The total amount of wall time = 357.127331 + 0: The maximum resident set size (KB) = 999512 Test 155 datm_cdeps_debug_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_control_cfsr_faster -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/datm_cdeps_control_cfsr_faster +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_control_cfsr_faster +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/datm_cdeps_control_cfsr_faster Checking test 156 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 153.739606 - 0: The maximum resident set size (KB) = 1060044 + 0: The total amount of wall time = 157.838924 + 0: The maximum resident set size (KB) = 1049172 Test 156 datm_cdeps_control_cfsr_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/datm_cdeps_lnd_gswp3 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_lnd_gswp3 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/datm_cdeps_lnd_gswp3 Checking test 157 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4687,14 +4687,14 @@ Checking test 157 datm_cdeps_lnd_gswp3 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.377264 - 0: The maximum resident set size (KB) = 263692 + 0: The total amount of wall time = 6.985491 + 0: The maximum resident set size (KB) = 265284 Test 157 datm_cdeps_lnd_gswp3 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/datm_cdeps_lnd_gswp3_rst +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_lnd_gswp3 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/datm_cdeps_lnd_gswp3_rst Checking test 158 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4703,14 +4703,14 @@ Checking test 158 datm_cdeps_lnd_gswp3_rst 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.163117 - 0: The maximum resident set size (KB) = 254532 + 0: The total amount of wall time = 14.617004 + 0: The maximum resident set size (KB) = 263852 Test 158 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8_atmlnd_sbs -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_p8_atmlnd_sbs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8_atmlnd_sbs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_p8_atmlnd_sbs Checking test 159 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4795,14 +4795,14 @@ Checking test 159 control_p8_atmlnd_sbs 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 = 209.003053 - 0: The maximum resident set size (KB) = 1604188 + 0: The total amount of wall time = 208.837490 + 0: The maximum resident set size (KB) = 1604560 Test 159 control_p8_atmlnd_sbs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/atmwav_control_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/atmwav_control_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/atmwav_control_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/atmwav_control_noaero_p8 Checking test 160 atmwav_control_noaero_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4845,14 +4845,14 @@ Checking test 160 atmwav_control_noaero_p8 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 = 98.677716 - 0: The maximum resident set size (KB) = 1627084 + 0: The total amount of wall time = 95.872049 + 0: The maximum resident set size (KB) = 1589412 Test 160 atmwav_control_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/control_atmwav -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/control_atmwav +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_atmwav +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_atmwav Checking test 161 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4896,14 +4896,14 @@ Checking test 161 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 88.452743 - 0: The maximum resident set size (KB) = 658800 + 0: The total amount of wall time = 89.881383 + 0: The maximum resident set size (KB) = 658100 Test 161 control_atmwav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/atmaero_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/atmaero_control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/atmaero_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/atmaero_control_p8 Checking test 162 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4947,14 +4947,14 @@ Checking test 162 atmaero_control_p8 results .... Comparing 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.341280 - 0: The maximum resident set size (KB) = 2958492 + 0: The total amount of wall time = 231.100784 + 0: The maximum resident set size (KB) = 2970900 Test 162 atmaero_control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/atmaero_control_p8_rad -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/atmaero_control_p8_rad +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/atmaero_control_p8_rad +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/atmaero_control_p8_rad Checking test 163 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4998,14 +4998,14 @@ Checking test 163 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 290.300735 - 0: The maximum resident set size (KB) = 3032992 + 0: The total amount of wall time = 286.048058 + 0: The maximum resident set size (KB) = 3033092 Test 163 atmaero_control_p8_rad PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/atmaero_control_p8_rad_micro -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/atmaero_control_p8_rad_micro +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/atmaero_control_p8_rad_micro +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/atmaero_control_p8_rad_micro Checking test 164 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5049,14 +5049,14 @@ Checking test 164 atmaero_control_p8_rad_micro results .... Comparing 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.012058 - 0: The maximum resident set size (KB) = 3047288 + 0: The total amount of wall time = 290.996734 + 0: The maximum resident set size (KB) = 3049764 Test 164 atmaero_control_p8_rad_micro PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_atmaq -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/regional_atmaq +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_atmaq +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/regional_atmaq Checking test 165 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5072,14 +5072,14 @@ Checking test 165 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 648.282718 - 0: The maximum resident set size (KB) = 1471896 + 0: The total amount of wall time = 645.263230 + 0: The maximum resident set size (KB) = 1459756 Test 165 regional_atmaq PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_atmaq_debug -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/regional_atmaq_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_atmaq_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/regional_atmaq_debug Checking test 166 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5093,14 +5093,14 @@ Checking test 166 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1190.509924 - 0: The maximum resident set size (KB) = 1390732 + 0: The total amount of wall time = 1180.504440 + 0: The maximum resident set size (KB) = 1363984 Test 166 regional_atmaq_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_atmaq_faster -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_267113/regional_atmaq_faster +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_atmaq_faster +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/regional_atmaq_faster Checking test 167 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5116,12 +5116,12 @@ Checking test 167 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 568.949091 - 0: The maximum resident set size (KB) = 1392832 + 0: The total amount of wall time = 564.180973 + 0: The maximum resident set size (KB) = 1467220 Test 167 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Wed Apr 26 01:59:43 UTC 2023 -Elapsed time: 03h:46m:26s. Have a nice day! +Thu Apr 27 18:08:33 UTC 2023 +Elapsed time: 01h:11m:42s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index 795f312ed51..82191d0efcd 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,46 +1,44 @@ -Tue Apr 25 22:16:41 UTC 2023 +Thu Apr 27 02:02:22 UTC 2023 Start Regression test -Compile 001 elapsed time 2075 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 002 elapsed time 2003 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 003 elapsed time 1941 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 004 elapsed time 475 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 328 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 1839 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 007 elapsed time 1953 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 008 elapsed time 3515 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 009 elapsed time 1815 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 010 elapsed time 1765 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 011 elapsed time 1765 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 012 elapsed time 1589 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 013 elapsed time 2355 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 014 elapsed time 389 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 015 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 016 elapsed time 1722 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 017 elapsed time 1813 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 018 elapsed time 613 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 520 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 2472 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 021 elapsed time 282 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 2387 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 023 elapsed time 1645 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 024 elapsed time 455 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 025 elapsed time 202 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 607 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 027 elapsed time 499 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 028 elapsed time 2028 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 029 elapsed time 1777 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 030 elapsed time 1730 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 031 elapsed time 1862 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 032 elapsed time 1679 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 033 elapsed time 306 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 034 elapsed time 2000 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Test 001 cpld_control_p8_mixedmode FAIL - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_gfsv17 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/cpld_control_gfsv17 -Checking test 002 cpld_control_gfsv17 results .... +Compile 001 elapsed time 2027 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 002 elapsed time 2129 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 003 elapsed time 1903 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 004 elapsed time 400 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 325 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 1689 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 007 elapsed time 1782 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 008 elapsed time 3481 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 009 elapsed time 1853 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 010 elapsed time 1758 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 011 elapsed time 1772 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 012 elapsed time 1591 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 013 elapsed time 2209 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 014 elapsed time 439 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 015 elapsed time 273 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 1684 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 017 elapsed time 1740 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 018 elapsed time 350 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 304 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 1825 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 021 elapsed time 326 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 2455 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 023 elapsed time 1805 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 024 elapsed time 330 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 025 elapsed time 220 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 400 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 027 elapsed time 187 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 028 elapsed time 2046 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 029 elapsed time 2044 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 030 elapsed time 1932 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 031 elapsed time 1709 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 032 elapsed time 1688 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 033 elapsed time 352 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 034 elapsed time 2103 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8_mixedmode +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/cpld_control_p8_mixedmode +Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -65,6 +63,7 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -103,15 +102,15 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 541.779936 - 0: The maximum resident set size (KB) = 1613340 + 0: The total amount of wall time = 744.601549 + 0: The maximum resident set size (KB) = 1751352 -Test 002 cpld_control_gfsv17 PASS +Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/cpld_control_p8 -Checking test 003 cpld_control_p8 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_gfsv17 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/cpld_control_gfsv17 +Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -136,7 +135,6 @@ Checking test 003 cpld_control_p8 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -175,15 +173,27 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 834.536963 - 0: The maximum resident set size (KB) = 1795604 + 0: The total amount of wall time = 590.272444 + 0: The maximum resident set size (KB) = 1625268 -Test 003 cpld_control_p8 PASS +Test 002 cpld_control_gfsv17 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/cpld_restart_p8 -Checking test 004 cpld_restart_p8 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/cpld_control_p8 +Checking test 003 cpld_control_p8 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 @@ -235,19 +245,15 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 797.912968 - 0: The maximum resident set size (KB) = 1491488 + 0: The total amount of wall time = 734.810600 + 0: The maximum resident set size (KB) = 1796236 -Test 004 cpld_restart_p8 PASS - -Test 005 cpld_control_qr_p8 FAIL - -Test 007 cpld_2threads_p8 FAIL +Test 003 cpld_control_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/cpld_decomp_p8 -Checking test 008 cpld_decomp_p8 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/cpld_restart_p8 +Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -299,19 +305,15 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1769.613946 - 0: The maximum resident set size (KB) = 1771260 - -Test 008 cpld_decomp_p8 PASS Tries: 2 - -Test 009 cpld_mpi_p8 FAIL + 0: The total amount of wall time = 964.641413 + 0: The maximum resident set size (KB) = 1480216 -Test 010 cpld_control_ciceC_p8 FAIL +Test 004 cpld_restart_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_noaero_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/cpld_control_noaero_p8 -Checking test 011 cpld_control_noaero_p8 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/cpld_control_qr_p8 +Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -336,6 +338,127 @@ Checking test 011 cpld_control_noaero_p8 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 1381.338365 + 0: The maximum resident set size (KB) = 1775380 + +Test 005 cpld_control_qr_p8 PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/cpld_restart_qr_p8 +Checking test 006 cpld_restart_qr_p8 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 824.167874 + 0: The maximum resident set size (KB) = 1518908 + +Test 006 cpld_restart_qr_p8 PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/cpld_2threads_p8 +Checking test 007 cpld_2threads_p8 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -374,15 +497,135 @@ Checking test 011 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 789.693138 - 0: The maximum resident set size (KB) = 1634816 + 0: The total amount of wall time = 891.314101 + 0: The maximum resident set size (KB) = 2002392 -Test 011 cpld_control_noaero_p8 PASS +Test 007 cpld_2threads_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/cpld_control_nowave_noaero_p8 -Checking test 012 cpld_control_nowave_noaero_p8 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/cpld_decomp_p8 +Checking test 008 cpld_decomp_p8 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 1003.523302 + 0: The maximum resident set size (KB) = 1762036 + +Test 008 cpld_decomp_p8 PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/cpld_mpi_p8 +Checking test 009 cpld_mpi_p8 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 1094.575489 + 0: The maximum resident set size (KB) = 1733000 + +Test 009 cpld_mpi_p8 PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_ciceC_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/cpld_control_ciceC_p8 +Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -407,6 +650,7 @@ Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -442,15 +686,157 @@ Checking test 012 cpld_control_nowave_noaero_p8 results .... 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 = 555.211943 - 0: The maximum resident set size (KB) = 1677776 + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 1360.586035 + 0: The maximum resident set size (KB) = 1775744 + +Test 010 cpld_control_ciceC_p8 PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_noaero_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/cpld_control_noaero_p8 +Checking test 011 cpld_control_noaero_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 485.586068 + 0: The maximum resident set size (KB) = 1618828 + +Test 011 cpld_control_noaero_p8 PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_c96_noaero_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/cpld_control_nowave_noaero_p8 +Checking test 012 cpld_control_nowave_noaero_p8 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 = 587.329454 + 0: The maximum resident set size (KB) = 1676124 Test 012 cpld_control_nowave_noaero_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_debug_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/cpld_debug_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_debug_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/cpld_debug_p8 Checking test 013 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -503,14 +889,14 @@ Checking test 013 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 705.338038 - 0: The maximum resident set size (KB) = 1816628 + 0: The total amount of wall time = 812.554449 + 0: The maximum resident set size (KB) = 1815012 Test 013 cpld_debug_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_debug_noaero_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/cpld_debug_noaero_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_debug_noaero_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/cpld_debug_noaero_p8 Checking test 014 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -562,14 +948,14 @@ Checking test 014 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1139.657658 - 0: The maximum resident set size (KB) = 1650220 + 0: The total amount of wall time = 530.122480 + 0: The maximum resident set size (KB) = 1645800 Test 014 cpld_debug_noaero_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/cpld_control_noaero_p8_agrid +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_noaero_p8_agrid +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/cpld_control_noaero_p8_agrid Checking test 015 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -631,14 +1017,14 @@ Checking test 015 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 1669.781823 - 0: The maximum resident set size (KB) = 1686996 + 0: The total amount of wall time = 777.306015 + 0: The maximum resident set size (KB) = 1687272 Test 015 cpld_control_noaero_p8_agrid PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_c48 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/cpld_control_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_c48 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/cpld_control_c48 Checking test 016 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -688,14 +1074,14 @@ Checking test 016 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 806.841778 - 0: The maximum resident set size (KB) = 2771108 + 0: The total amount of wall time = 818.264892 + 0: The maximum resident set size (KB) = 2780164 Test 016 cpld_control_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_warmstart_c48 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/cpld_warmstart_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_warmstart_c48 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/cpld_warmstart_c48 Checking test 017 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -745,14 +1131,14 @@ Checking test 017 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 460.772598 - 0: The maximum resident set size (KB) = 2775968 + 0: The total amount of wall time = 243.008802 + 0: The maximum resident set size (KB) = 2779072 Test 017 cpld_warmstart_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_warmstart_c48 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/cpld_restart_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_warmstart_c48 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/cpld_restart_c48 Checking test 018 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -802,14 +1188,14 @@ Checking test 018 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 228.536557 - 0: The maximum resident set size (KB) = 2196492 + 0: The total amount of wall time = 129.352033 + 0: The maximum resident set size (KB) = 2200684 Test 018 cpld_restart_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8_faster -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/cpld_control_p8_faster +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8_faster +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/cpld_control_p8_faster Checking test 019 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -874,14 +1260,14 @@ Checking test 019 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 606.991522 - 0: The maximum resident set size (KB) = 1771036 + 0: The total amount of wall time = 1447.421774 + 0: The maximum resident set size (KB) = 1790472 -Test 019 cpld_control_p8_faster PASS Tries: 2 +Test 019 cpld_control_p8_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_flake -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_flake +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_flake +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_flake Checking test 020 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -892,14 +1278,14 @@ Checking test 020 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 508.912055 - 0: The maximum resident set size (KB) = 620532 + 0: The total amount of wall time = 454.696811 + 0: The maximum resident set size (KB) = 620404 Test 020 control_flake PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_CubedSphereGrid -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_CubedSphereGrid +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_CubedSphereGrid +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_CubedSphereGrid Checking test 021 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -926,28 +1312,28 @@ Checking test 021 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 1051.291487 - 0: The maximum resident set size (KB) = 573628 + 0: The total amount of wall time = 270.131174 + 0: The maximum resident set size (KB) = 570668 Test 021 control_CubedSphereGrid PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_CubedSphereGrid_parallel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_CubedSphereGrid_parallel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_CubedSphereGrid_parallel +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_CubedSphereGrid_parallel Checking test 022 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc ............ALT CHECK......OK - 0: The total amount of wall time = 185.824620 - 0: The maximum resident set size (KB) = 568332 + 0: The total amount of wall time = 283.207531 + 0: The maximum resident set size (KB) = 575540 Test 022 control_CubedSphereGrid_parallel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_latlon -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_latlon +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_latlon +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_latlon Checking test 023 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -958,14 +1344,14 @@ Checking test 023 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 299.515628 - 0: The maximum resident set size (KB) = 573160 + 0: The total amount of wall time = 287.967908 + 0: The maximum resident set size (KB) = 572992 Test 023 control_latlon PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_wrtGauss_netcdf_parallel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_wrtGauss_netcdf_parallel Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -976,14 +1362,14 @@ Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 194.425994 - 0: The maximum resident set size (KB) = 570604 + 0: The total amount of wall time = 299.119901 + 0: The maximum resident set size (KB) = 570532 Test 024 control_wrtGauss_netcdf_parallel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_c48 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_c48 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_c48 Checking test 025 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1022,14 +1408,14 @@ Checking test 025 control_c48 results .... Comparing 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.822612 -0: The maximum resident set size (KB) = 798756 +0: The total amount of wall time = 612.199086 +0: The maximum resident set size (KB) = 798844 Test 025 control_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_c192 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_c192 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_c192 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_c192 Checking test 026 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1040,14 +1426,14 @@ Checking test 026 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 1113.792880 - 0: The maximum resident set size (KB) = 694072 + 0: The total amount of wall time = 1378.796461 + 0: The maximum resident set size (KB) = 698744 Test 026 control_c192 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_c384 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_c384 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_c384 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_c384 Checking test 027 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1058,16 +1444,16 @@ Checking test 027 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1515.419402 - 0: The maximum resident set size (KB) = 1076688 + 0: The total amount of wall time = 1750.277538 + 0: The maximum resident set size (KB) = 1076768 -Test 027 control_c384 PASS +Test 027 control_c384 PASS Tries: 2 Test 028 control_c384gdas FAIL -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_stochy -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_stochy +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_stochy +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_stochy Checking test 029 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1078,28 +1464,28 @@ Checking test 029 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 245.063296 - 0: The maximum resident set size (KB) = 578296 + 0: The total amount of wall time = 192.921002 + 0: The maximum resident set size (KB) = 575368 Test 029 control_stochy PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_stochy -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_stochy_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_stochy +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_stochy_restart Checking test 030 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 133.125810 - 0: The maximum resident set size (KB) = 390188 + 0: The total amount of wall time = 283.614541 + 0: The maximum resident set size (KB) = 395844 Test 030 control_stochy_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_lndp -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_lndp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_lndp +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_lndp Checking test 031 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1110,14 +1496,14 @@ Checking test 031 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 205.580808 - 0: The maximum resident set size (KB) = 576512 + 0: The total amount of wall time = 215.210144 + 0: The maximum resident set size (KB) = 580532 Test 031 control_lndp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_iovr4 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_iovr4 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_iovr4 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_iovr4 Checking test 032 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1132,14 +1518,14 @@ Checking test 032 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 239.223917 - 0: The maximum resident set size (KB) = 573032 + 0: The total amount of wall time = 305.270714 + 0: The maximum resident set size (KB) = 572020 Test 032 control_iovr4 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_iovr5 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_iovr5 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_iovr5 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_iovr5 Checking test 033 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1154,14 +1540,14 @@ Checking test 033 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 339.643847 - 0: The maximum resident set size (KB) = 570596 + 0: The total amount of wall time = 289.224259 + 0: The maximum resident set size (KB) = 570544 Test 033 control_iovr5 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_p8 Checking test 034 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1208,14 +1594,14 @@ Checking test 034 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 317.048375 - 0: The maximum resident set size (KB) = 1532832 + 0: The total amount of wall time = 642.496554 + 0: The maximum resident set size (KB) = 1543536 Test 034 control_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_restart_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_restart_p8 Checking test 035 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1254,14 +1640,14 @@ Checking test 035 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 151.038303 - 0: The maximum resident set size (KB) = 774840 + 0: The total amount of wall time = 345.428782 + 0: The maximum resident set size (KB) = 781300 Test 035 control_restart_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_qr_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_qr_p8 Checking test 036 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1308,14 +1694,14 @@ Checking test 036 control_qr_p8 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 = 365.105543 - 0: The maximum resident set size (KB) = 1550432 + 0: The total amount of wall time = 596.125665 + 0: The maximum resident set size (KB) = 1550892 Test 036 control_qr_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_restart_qr_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_restart_qr_p8 Checking test 037 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1354,14 +1740,14 @@ Checking test 037 control_restart_qr_p8 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 = 177.473479 - 0: The maximum resident set size (KB) = 788036 + 0: The total amount of wall time = 217.454728 + 0: The maximum resident set size (KB) = 779112 Test 037 control_restart_qr_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_decomp_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_decomp_p8 Checking test 038 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1404,14 +1790,14 @@ Checking test 038 control_decomp_p8 results .... Comparing 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.895162 - 0: The maximum resident set size (KB) = 1534016 + 0: The total amount of wall time = 600.935508 + 0: The maximum resident set size (KB) = 1529252 Test 038 control_decomp_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_2threads_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_2threads_p8 Checking test 039 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1454,14 +1840,14 @@ Checking test 039 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 290.672870 - 0: The maximum resident set size (KB) = 1628468 + 0: The total amount of wall time = 569.045347 + 0: The maximum resident set size (KB) = 1629504 Test 039 control_2threads_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8_lndp -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_p8_lndp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8_lndp +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_p8_lndp Checking test 040 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1480,14 +1866,14 @@ Checking test 040 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 667.754468 - 0: The maximum resident set size (KB) = 1552944 + 0: The total amount of wall time = 1107.052690 + 0: The maximum resident set size (KB) = 1521284 Test 040 control_p8_lndp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8_rrtmgp -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_p8_rrtmgp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8_rrtmgp +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_p8_rrtmgp Checking test 041 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1534,14 +1920,14 @@ Checking test 041 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 432.736041 - 0: The maximum resident set size (KB) = 1615992 + 0: The total amount of wall time = 641.183753 + 0: The maximum resident set size (KB) = 1607316 Test 041 control_p8_rrtmgp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8_mynn -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_p8_mynn +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8_mynn +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_p8_mynn Checking test 042 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1588,14 +1974,14 @@ Checking test 042 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 603.243833 - 0: The maximum resident set size (KB) = 1550964 + 0: The total amount of wall time = 593.549681 + 0: The maximum resident set size (KB) = 1555244 Test 042 control_p8_mynn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/merra2_thompson -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/merra2_thompson +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/merra2_thompson +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/merra2_thompson Checking test 043 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1642,14 +2028,14 @@ Checking test 043 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 583.475521 - 0: The maximum resident set size (KB) = 1552508 + 0: The total amount of wall time = 648.670417 + 0: The maximum resident set size (KB) = 1543484 Test 043 merra2_thompson PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/regional_control +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/regional_control Checking test 044 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1660,28 +2046,28 @@ Checking test 044 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 743.416191 - 0: The maximum resident set size (KB) = 783808 + 0: The total amount of wall time = 543.448913 + 0: The maximum resident set size (KB) = 782900 Test 044 regional_control PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/regional_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/regional_restart Checking test 045 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 334.114614 - 0: The maximum resident set size (KB) = 777284 + 0: The total amount of wall time = 300.948750 + 0: The maximum resident set size (KB) = 779920 Test 045 regional_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/regional_control_qr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/regional_control_qr Checking test 046 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1692,28 +2078,28 @@ Checking test 046 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 800.304081 - 0: The maximum resident set size (KB) = 785300 + 0: The total amount of wall time = 666.315723 + 0: The maximum resident set size (KB) = 786836 Test 046 regional_control_qr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/regional_restart_qr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/regional_restart_qr Checking test 047 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 284.118304 - 0: The maximum resident set size (KB) = 779844 + 0: The total amount of wall time = 304.146506 + 0: The maximum resident set size (KB) = 780796 Test 047 regional_restart_qr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/regional_decomp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/regional_decomp Checking test 048 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1724,14 +2110,14 @@ Checking test 048 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 662.241079 - 0: The maximum resident set size (KB) = 778476 + 0: The total amount of wall time = 832.235485 + 0: The maximum resident set size (KB) = 779480 -Test 048 regional_decomp PASS +Test 048 regional_decomp PASS Tries: 2 -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/regional_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/regional_2threads Checking test 049 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1742,46 +2128,30 @@ Checking test 049 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 770.049625 - 0: The maximum resident set size (KB) = 770296 + 0: The total amount of wall time = 699.937320 + 0: The maximum resident set size (KB) = 769148 Test 049 regional_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/regional_netcdf_parallel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_netcdf_parallel +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/regional_netcdf_parallel Checking test 050 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 633.726172 - 0: The maximum resident set size (KB) = 783832 + 0: The total amount of wall time = 631.569690 + 0: The maximum resident set size (KB) = 780468 Test 050 regional_netcdf_parallel PASS +Test 051 regional_2dwrtdecomp FAIL -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/regional_2dwrtdecomp -Checking test 051 regional_2dwrtdecomp results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 655.020623 - 0: The maximum resident set size (KB) = 784496 - -Test 051 regional_2dwrtdecomp PASS - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rap_control +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/rap_control Checking test 052 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1828,14 +2198,14 @@ Checking test 052 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 927.954727 - 0: The maximum resident set size (KB) = 950912 + 0: The total amount of wall time = 1351.872265 + 0: The maximum resident set size (KB) = 949944 Test 052 rap_control PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/regional_spp_sppt_shum_skeb +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_spp_sppt_shum_skeb +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/regional_spp_sppt_shum_skeb Checking test 053 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -1846,14 +2216,14 @@ Checking test 053 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 559.897301 - 0: The maximum resident set size (KB) = 1087496 + 0: The total amount of wall time = 782.807108 + 0: The maximum resident set size (KB) = 1094576 Test 053 regional_spp_sppt_shum_skeb PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rap_decomp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/rap_decomp Checking test 054 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1900,14 +2270,14 @@ Checking test 054 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1062.252039 - 0: The maximum resident set size (KB) = 944804 + 0: The total amount of wall time = 1439.128406 + 0: The maximum resident set size (KB) = 949464 Test 054 rap_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rap_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/rap_2threads Checking test 055 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1954,14 +2324,14 @@ Checking test 055 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1315.873939 - 0: The maximum resident set size (KB) = 1023132 + 0: The total amount of wall time = 1161.301669 + 0: The maximum resident set size (KB) = 1022324 Test 055 rap_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rap_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/rap_restart Checking test 056 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2000,14 +2370,14 @@ Checking test 056 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 493.076552 - 0: The maximum resident set size (KB) = 834624 + 0: The total amount of wall time = 394.694189 + 0: The maximum resident set size (KB) = 834172 Test 056 rap_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rap_sfcdiff +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/rap_sfcdiff Checking test 057 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2054,14 +2424,14 @@ Checking test 057 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 754.096573 - 0: The maximum resident set size (KB) = 951844 + 0: The total amount of wall time = 1218.231684 + 0: The maximum resident set size (KB) = 951920 Test 057 rap_sfcdiff PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rap_sfcdiff_decomp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/rap_sfcdiff_decomp Checking test 058 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2108,14 +2478,14 @@ Checking test 058 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1027.122034 - 0: The maximum resident set size (KB) = 945336 + 0: The total amount of wall time = 1141.165197 + 0: The maximum resident set size (KB) = 951836 Test 058 rap_sfcdiff_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rap_sfcdiff_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/rap_sfcdiff_restart Checking test 059 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2154,14 +2524,14 @@ Checking test 059 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1174.902766 - 0: The maximum resident set size (KB) = 840276 + 0: The total amount of wall time = 590.684262 + 0: The maximum resident set size (KB) = 841456 Test 059 rap_sfcdiff_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/hrrr_control +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/hrrr_control Checking test 060 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2208,14 +2578,14 @@ Checking test 060 hrrr_control results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1115.205188 - 0: The maximum resident set size (KB) = 948552 + 0: The total amount of wall time = 1179.729471 + 0: The maximum resident set size (KB) = 943368 Test 060 hrrr_control PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/hrrr_control_decomp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/hrrr_control_decomp Checking test 061 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2262,14 +2632,14 @@ Checking test 061 hrrr_control_decomp results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 731.885231 - 0: The maximum resident set size (KB) = 946944 + 0: The total amount of wall time = 1178.402459 + 0: The maximum resident set size (KB) = 947276 Test 061 hrrr_control_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/hrrr_control_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/hrrr_control_2threads Checking test 062 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2316,28 +2686,28 @@ Checking test 062 hrrr_control_2threads results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 872.215900 - 0: The maximum resident set size (KB) = 1012884 + 0: The total amount of wall time = 1360.599319 + 0: The maximum resident set size (KB) = 1015220 Test 062 hrrr_control_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/hrrr_control_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/hrrr_control_restart Checking test 063 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 873.892104 - 0: The maximum resident set size (KB) = 837476 + 0: The total amount of wall time = 555.174720 + 0: The maximum resident set size (KB) = 838844 Test 063 hrrr_control_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_v1beta -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rrfs_v1beta +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_v1beta +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/rrfs_v1beta Checking test 064 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2384,14 +2754,14 @@ Checking test 064 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 811.786545 - 0: The maximum resident set size (KB) = 940888 + 0: The total amount of wall time = 1178.760121 + 0: The maximum resident set size (KB) = 953572 Test 064 rrfs_v1beta PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_v1nssl -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rrfs_v1nssl +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_v1nssl +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/rrfs_v1nssl Checking test 065 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2406,14 +2776,14 @@ Checking test 065 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1124.703002 - 0: The maximum resident set size (KB) = 633160 + 0: The total amount of wall time = 1312.369843 + 0: The maximum resident set size (KB) = 627820 Test 065 rrfs_v1nssl PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rrfs_v1nssl_nohailnoccn +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/rrfs_v1nssl_nohailnoccn Checking test 066 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2428,14 +2798,14 @@ Checking test 066 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 856.249778 - 0: The maximum resident set size (KB) = 636720 + 0: The total amount of wall time = 1316.134311 + 0: The maximum resident set size (KB) = 634664 Test 066 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/rrfs_smoke_conus13km_hrrr_warm Checking test 067 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2444,14 +2814,14 @@ Checking test 067 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 338.718479 - 0: The maximum resident set size (KB) = 906680 + 0: The total amount of wall time = 285.017348 + 0: The maximum resident set size (KB) = 901212 Test 067 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 068 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2460,14 +2830,14 @@ Checking test 068 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 174.563965 - 0: The maximum resident set size (KB) = 863676 + 0: The total amount of wall time = 345.495062 + 0: The maximum resident set size (KB) = 857148 Test 068 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rrfs_conus13km_hrrr_warm +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/rrfs_conus13km_hrrr_warm Checking test 069 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2476,14 +2846,14 @@ Checking test 069 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 223.039398 - 0: The maximum resident set size (KB) = 882192 + 0: The total amount of wall time = 452.517854 + 0: The maximum resident set size (KB) = 878952 Test 069 rrfs_conus13km_hrrr_warm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/rrfs_smoke_conus13km_radar_tten_warm Checking test 070 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2492,26 +2862,26 @@ Checking test 070 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 338.899824 - 0: The maximum resident set size (KB) = 898532 + 0: The total amount of wall time = 499.418447 + 0: The maximum resident set size (KB) = 915188 Test 070 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 071 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 420.204096 - 0: The maximum resident set size (KB) = 856272 + 0: The total amount of wall time = 136.264697 + 0: The maximum resident set size (KB) = 856240 Test 071 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_csawmg -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_csawmg +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_csawmg +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_csawmg Checking test 072 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2522,14 +2892,14 @@ Checking test 072 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 498.683014 - 0: The maximum resident set size (KB) = 665156 + 0: The total amount of wall time = 850.087102 + 0: The maximum resident set size (KB) = 672464 Test 072 control_csawmg PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_csawmgt -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_csawmgt +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_csawmgt +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_csawmgt Checking test 073 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2540,14 +2910,14 @@ Checking test 073 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 684.661957 - 0: The maximum resident set size (KB) = 663468 + 0: The total amount of wall time = 866.172060 + 0: The maximum resident set size (KB) = 665716 Test 073 control_csawmgt PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_ras -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_ras +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_ras +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_ras Checking test 074 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2558,26 +2928,26 @@ Checking test 074 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 473.327202 - 0: The maximum resident set size (KB) = 637404 + 0: The total amount of wall time = 604.507140 + 0: The maximum resident set size (KB) = 639396 Test 074 control_ras PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_wam -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_wam +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_wam +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_wam Checking test 075 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 230.773736 - 0: The maximum resident set size (KB) = 483800 + 0: The total amount of wall time = 291.629515 + 0: The maximum resident set size (KB) = 480216 Test 075 control_wam PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8_faster -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_p8_faster +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8_faster +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_p8_faster Checking test 076 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2624,14 +2994,14 @@ Checking test 076 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 352.158028 - 0: The maximum resident set size (KB) = 1535324 + 0: The total amount of wall time = 505.534998 + 0: The maximum resident set size (KB) = 1544704 Test 076 control_p8_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control_faster -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/regional_control_faster +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control_faster +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/regional_control_faster Checking test 077 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2642,56 +3012,56 @@ Checking test 077 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 715.145646 - 0: The maximum resident set size (KB) = 782824 + 0: The total amount of wall time = 760.902484 + 0: The maximum resident set size (KB) = 787056 -Test 077 regional_control_faster PASS +Test 077 regional_control_faster PASS Tries: 2 -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 078 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 1088.102505 - 0: The maximum resident set size (KB) = 936372 + 0: The total amount of wall time = 1175.883578 + 0: The maximum resident set size (KB) = 933116 Test 078 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 079 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 806.174740 - 0: The maximum resident set size (KB) = 894316 + 0: The total amount of wall time = 786.595413 + 0: The maximum resident set size (KB) = 898712 Test 079 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rrfs_conus13km_hrrr_warm_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/rrfs_conus13km_hrrr_warm_debug Checking test 080 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 1105.868362 - 0: The maximum resident set size (KB) = 908840 + 0: The total amount of wall time = 1039.959176 + 0: The maximum resident set size (KB) = 912268 Test 080 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_CubedSphereGrid_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_CubedSphereGrid_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_CubedSphereGrid_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_CubedSphereGrid_debug Checking test 081 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2718,348 +3088,348 @@ Checking test 081 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 211.440533 - 0: The maximum resident set size (KB) = 731260 + 0: The total amount of wall time = 291.101561 + 0: The maximum resident set size (KB) = 737440 Test 081 control_CubedSphereGrid_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_wrtGauss_netcdf_parallel_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_wrtGauss_netcdf_parallel_debug Checking test 082 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 191.665066 - 0: The maximum resident set size (KB) = 735088 + 0: The total amount of wall time = 218.332062 + 0: The maximum resident set size (KB) = 735332 Test 082 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_stochy_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_stochy_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_stochy_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_stochy_debug Checking test 083 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 245.820533 - 0: The maximum resident set size (KB) = 739840 + 0: The total amount of wall time = 251.851410 + 0: The maximum resident set size (KB) = 739580 Test 083 control_stochy_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_lndp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_lndp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_lndp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_lndp_debug Checking test 084 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 197.293387 - 0: The maximum resident set size (KB) = 740876 + 0: The total amount of wall time = 218.255137 + 0: The maximum resident set size (KB) = 738584 Test 084 control_lndp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_csawmg_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_csawmg_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_csawmg_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_csawmg_debug Checking test 085 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 476.377811 - 0: The maximum resident set size (KB) = 781916 + 0: The total amount of wall time = 341.185010 + 0: The maximum resident set size (KB) = 784628 Test 085 control_csawmg_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_csawmgt_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_csawmgt_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_csawmgt_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_csawmgt_debug Checking test 086 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 458.143188 - 0: The maximum resident set size (KB) = 779216 + 0: The total amount of wall time = 327.478366 + 0: The maximum resident set size (KB) = 786588 Test 086 control_csawmgt_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_ras_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_ras_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_ras_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_ras_debug Checking test 087 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 211.425546 - 0: The maximum resident set size (KB) = 748160 + 0: The total amount of wall time = 222.125851 + 0: The maximum resident set size (KB) = 749352 Test 087 control_ras_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_diag_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_diag_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_diag_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_diag_debug Checking test 088 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 572.286548 - 0: The maximum resident set size (KB) = 795444 + 0: The total amount of wall time = 258.278740 + 0: The maximum resident set size (KB) = 798800 Test 088 control_diag_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_debug_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_debug_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_debug_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_debug_p8 Checking test 089 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 258.441354 - 0: The maximum resident set size (KB) = 1560508 + 0: The total amount of wall time = 267.195027 + 0: The maximum resident set size (KB) = 1555564 Test 089 control_debug_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/regional_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/regional_debug Checking test 090 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1567.362872 - 0: The maximum resident set size (KB) = 824032 + 0: The total amount of wall time = 1514.024230 + 0: The maximum resident set size (KB) = 800496 Test 090 regional_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rap_control_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/rap_control_debug Checking test 091 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 501.201443 - 0: The maximum resident set size (KB) = 1118216 + 0: The total amount of wall time = 382.882718 + 0: The maximum resident set size (KB) = 1109048 Test 091 rap_control_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/hrrr_control_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/hrrr_control_debug Checking test 092 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 420.829692 - 0: The maximum resident set size (KB) = 1106716 + 0: The total amount of wall time = 383.926061 + 0: The maximum resident set size (KB) = 1107864 Test 092 hrrr_control_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rap_unified_drag_suite_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/rap_unified_drag_suite_debug Checking test 093 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 511.779501 - 0: The maximum resident set size (KB) = 1115360 + 0: The total amount of wall time = 406.584114 + 0: The maximum resident set size (KB) = 1110612 Test 093 rap_unified_drag_suite_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_diag_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rap_diag_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_diag_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/rap_diag_debug Checking test 094 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 686.319565 - 0: The maximum resident set size (KB) = 1194864 + 0: The total amount of wall time = 516.943840 + 0: The maximum resident set size (KB) = 1193052 Test 094 rap_diag_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rap_cires_ugwp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/rap_cires_ugwp_debug Checking test 095 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 488.270366 - 0: The maximum resident set size (KB) = 1112932 + 0: The total amount of wall time = 417.335488 + 0: The maximum resident set size (KB) = 1109976 Test 095 rap_cires_ugwp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rap_unified_ugwp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/rap_unified_ugwp_debug Checking test 096 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 456.761668 - 0: The maximum resident set size (KB) = 1115652 + 0: The total amount of wall time = 430.557398 + 0: The maximum resident set size (KB) = 1113992 Test 096 rap_unified_ugwp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_lndp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rap_lndp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_lndp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/rap_lndp_debug Checking test 097 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 544.037966 - 0: The maximum resident set size (KB) = 1108332 + 0: The total amount of wall time = 417.668156 + 0: The maximum resident set size (KB) = 1107976 Test 097 rap_lndp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_progcld_thompson_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rap_progcld_thompson_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_progcld_thompson_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/rap_progcld_thompson_debug Checking test 098 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 397.107005 - 0: The maximum resident set size (KB) = 1116324 + 0: The total amount of wall time = 396.198029 + 0: The maximum resident set size (KB) = 1115172 Test 098 rap_progcld_thompson_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_noah_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rap_noah_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_noah_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/rap_noah_debug Checking test 099 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 603.725137 - 0: The maximum resident set size (KB) = 1117412 + 0: The total amount of wall time = 473.045254 + 0: The maximum resident set size (KB) = 1111076 Test 099 rap_noah_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_sfcdiff_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rap_sfcdiff_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_sfcdiff_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/rap_sfcdiff_debug Checking test 100 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 386.484029 - 0: The maximum resident set size (KB) = 1113224 + 0: The total amount of wall time = 389.558324 + 0: The maximum resident set size (KB) = 1113544 Test 100 rap_sfcdiff_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/rap_noah_sfcdiff_cires_ugwp_debug Checking test 101 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 632.745466 - 0: The maximum resident set size (KB) = 1111456 + 0: The total amount of wall time = 621.292532 + 0: The maximum resident set size (KB) = 1109612 Test 101 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_v1beta_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rrfs_v1beta_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_v1beta_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/rrfs_v1beta_debug Checking test 102 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 415.418733 - 0: The maximum resident set size (KB) = 1109844 + 0: The total amount of wall time = 402.382217 + 0: The maximum resident set size (KB) = 1111656 Test 102 rrfs_v1beta_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_clm_lake_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rap_clm_lake_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_clm_lake_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/rap_clm_lake_debug Checking test 103 rap_clm_lake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 565.034853 - 0: The maximum resident set size (KB) = 1116300 + 0: The total amount of wall time = 494.352632 + 0: The maximum resident set size (KB) = 1115292 Test 103 rap_clm_lake_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_flake_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rap_flake_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_flake_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/rap_flake_debug Checking test 104 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 407.386360 - 0: The maximum resident set size (KB) = 1110880 + 0: The total amount of wall time = 390.967211 + 0: The maximum resident set size (KB) = 1107896 Test 104 rap_flake_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_wam_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_wam_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_wam_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_wam_debug Checking test 105 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 376.883167 - 0: The maximum resident set size (KB) = 436428 + 0: The total amount of wall time = 426.626571 + 0: The maximum resident set size (KB) = 437892 Test 105 control_wam_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3070,14 +3440,14 @@ Checking test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 465.685516 - 0: The maximum resident set size (KB) = 994832 + 0: The total amount of wall time = 836.913925 + 0: The maximum resident set size (KB) = 984232 Test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rap_control_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/rap_control_dyn32_phy32 Checking test 107 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3124,14 +3494,14 @@ Checking test 107 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 751.227276 - 0: The maximum resident set size (KB) = 845068 + 0: The total amount of wall time = 925.639316 + 0: The maximum resident set size (KB) = 844216 Test 107 rap_control_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/hrrr_control_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/hrrr_control_dyn32_phy32 Checking test 108 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3178,14 +3548,14 @@ Checking test 108 hrrr_control_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 345.516802 - 0: The maximum resident set size (KB) = 834272 + 0: The total amount of wall time = 591.836744 + 0: The maximum resident set size (KB) = 831200 Test 108 hrrr_control_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rap_2threads_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/rap_2threads_dyn32_phy32 Checking test 109 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3232,14 +3602,14 @@ Checking test 109 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 651.540258 - 0: The maximum resident set size (KB) = 894192 + 0: The total amount of wall time = 928.995751 + 0: The maximum resident set size (KB) = 882640 Test 109 rap_2threads_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/hrrr_control_2threads_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/hrrr_control_2threads_dyn32_phy32 Checking test 110 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3286,14 +3656,14 @@ Checking test 110 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 259.621154 - 0: The maximum resident set size (KB) = 871248 + 0: The total amount of wall time = 703.545145 + 0: The maximum resident set size (KB) = 869824 Test 110 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/hrrr_control_decomp_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/hrrr_control_decomp_dyn32_phy32 Checking test 111 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3340,14 +3710,14 @@ Checking test 111 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 374.670985 - 0: The maximum resident set size (KB) = 830288 + 0: The total amount of wall time = 659.174573 + 0: The maximum resident set size (KB) = 818328 Test 111 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rap_restart_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/rap_restart_dyn32_phy32 Checking test 112 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3386,28 +3756,28 @@ Checking test 112 rap_restart_dyn32_phy32 results .... Comparing 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.300853 - 0: The maximum resident set size (KB) = 810520 + 0: The total amount of wall time = 556.661271 + 0: The maximum resident set size (KB) = 805736 Test 112 rap_restart_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/hrrr_control_restart_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/hrrr_control_restart_dyn32_phy32 Checking test 113 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 198.052056 - 0: The maximum resident set size (KB) = 764000 + 0: The total amount of wall time = 248.359845 + 0: The maximum resident set size (KB) = 756244 Test 113 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_dyn64_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rap_control_dyn64_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_dyn64_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/rap_control_dyn64_phy32 Checking test 114 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3454,71 +3824,81 @@ Checking test 114 rap_control_dyn64_phy32 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 = 356.289718 - 0: The maximum resident set size (KB) = 872172 + 0: The total amount of wall time = 706.671936 + 0: The maximum resident set size (KB) = 868616 Test 114 rap_control_dyn64_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rap_control_debug_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/rap_control_debug_dyn32_phy32 Checking test 115 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 362.162825 - 0: The maximum resident set size (KB) = 999604 + 0: The total amount of wall time = 412.343064 + 0: The maximum resident set size (KB) = 999064 Test 115 rap_control_debug_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/hrrr_control_debug_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/hrrr_control_debug_dyn32_phy32 Checking test 116 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 355.784321 - 0: The maximum resident set size (KB) = 992012 + 0: The total amount of wall time = 383.960219 + 0: The maximum resident set size (KB) = 992032 Test 116 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/rap_control_dyn64_phy32_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/rap_control_dyn64_phy32_debug Checking test 117 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 408.706419 - 0: The maximum resident set size (KB) = 1032368 + 0: The total amount of wall time = 432.385401 + 0: The maximum resident set size (KB) = 1028836 Test 117 rap_control_dyn64_phy32_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_atm -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/hafs_regional_atm +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_atm +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/hafs_regional_atm Checking test 118 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 628.381032 - 0: The maximum resident set size (KB) = 1222092 + 0: The total amount of wall time = 627.482141 + 0: The maximum resident set size (KB) = 1213280 Test 118 hafs_regional_atm PASS -Test 119 hafs_regional_atm_thompson_gfdlsf FAIL + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/hafs_regional_atm_thompson_gfdlsf +Checking test 119 hafs_regional_atm_thompson_gfdlsf results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + + 0: The total amount of wall time = 940.804290 + 0: The maximum resident set size (KB) = 1590776 + +Test 119 hafs_regional_atm_thompson_gfdlsf PASS Tries: 2 -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_atm_ocn -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/hafs_regional_atm_ocn +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_atm_ocn +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/hafs_regional_atm_ocn Checking test 120 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3527,14 +3907,14 @@ Checking test 120 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 1349.865207 - 0: The maximum resident set size (KB) = 1302916 + 0: The total amount of wall time = 1156.078290 + 0: The maximum resident set size (KB) = 1300544 Test 120 hafs_regional_atm_ocn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_atm_wav -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/hafs_regional_atm_wav +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_atm_wav +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/hafs_regional_atm_wav Checking test 121 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3543,14 +3923,14 @@ Checking test 121 hafs_regional_atm_wav 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 = 1299.885636 - 0: The maximum resident set size (KB) = 1328924 + 0: The total amount of wall time = 1466.873360 + 0: The maximum resident set size (KB) = 1320212 Test 121 hafs_regional_atm_wav PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/hafs_regional_atm_ocn_wav +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_atm_ocn_wav +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/hafs_regional_atm_ocn_wav Checking test 122 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3561,14 +3941,14 @@ Checking test 122 hafs_regional_atm_ocn_wav 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 = 1461.245429 - 0: The maximum resident set size (KB) = 1340308 + 0: The total amount of wall time = 1604.557193 + 0: The maximum resident set size (KB) = 1345324 Test 122 hafs_regional_atm_ocn_wav PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_docn -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/hafs_regional_docn +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_docn +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/hafs_regional_docn Checking test 123 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3576,14 +3956,14 @@ Checking test 123 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 1022.530639 - 0: The maximum resident set size (KB) = 1282940 + 0: The total amount of wall time = 943.844884 + 0: The maximum resident set size (KB) = 1308344 Test 123 hafs_regional_docn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_docn_oisst -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/hafs_regional_docn_oisst +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_docn_oisst +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/hafs_regional_docn_oisst Checking test 124 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3591,118 +3971,118 @@ Checking test 124 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 1286.962939 - 0: The maximum resident set size (KB) = 1258744 + 0: The total amount of wall time = 974.570500 + 0: The maximum resident set size (KB) = 1226588 Test 124 hafs_regional_docn_oisst PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/datm_cdeps_control_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/datm_cdeps_control_cfsr Checking test 125 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 297.278984 - 0: The maximum resident set size (KB) = 964696 + 0: The total amount of wall time = 474.076312 + 0: The maximum resident set size (KB) = 961588 Test 125 datm_cdeps_control_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/datm_cdeps_restart_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/datm_cdeps_restart_cfsr Checking test 126 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 214.970358 - 0: The maximum resident set size (KB) = 935300 + 0: The total amount of wall time = 225.540079 + 0: The maximum resident set size (KB) = 965868 Test 126 datm_cdeps_restart_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_control_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/datm_cdeps_control_gefs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_control_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/datm_cdeps_control_gefs Checking test 127 datm_cdeps_control_gefs 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 = 317.010783 - 0: The maximum resident set size (KB) = 864672 + 0: The total amount of wall time = 466.288965 + 0: The maximum resident set size (KB) = 865772 Test 127 datm_cdeps_control_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_iau_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/datm_cdeps_iau_gefs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_iau_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/datm_cdeps_iau_gefs Checking test 128 datm_cdeps_iau_gefs 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 = 332.964386 - 0: The maximum resident set size (KB) = 865804 + 0: The total amount of wall time = 391.089729 + 0: The maximum resident set size (KB) = 869128 Test 128 datm_cdeps_iau_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_stochy_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/datm_cdeps_stochy_gefs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_stochy_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/datm_cdeps_stochy_gefs Checking test 129 datm_cdeps_stochy_gefs 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 = 266.961245 - 0: The maximum resident set size (KB) = 854048 + 0: The total amount of wall time = 339.274845 + 0: The maximum resident set size (KB) = 868312 Test 129 datm_cdeps_stochy_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/datm_cdeps_ciceC_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_ciceC_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/datm_cdeps_ciceC_cfsr Checking test 130 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 259.351408 - 0: The maximum resident set size (KB) = 972804 + 0: The total amount of wall time = 373.025781 + 0: The maximum resident set size (KB) = 964756 Test 130 datm_cdeps_ciceC_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/datm_cdeps_bulk_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_bulk_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/datm_cdeps_bulk_cfsr Checking test 131 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 257.312705 - 0: The maximum resident set size (KB) = 972324 + 0: The total amount of wall time = 333.085346 + 0: The maximum resident set size (KB) = 965676 Test 131 datm_cdeps_bulk_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/datm_cdeps_bulk_gefs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_bulk_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/datm_cdeps_bulk_gefs Checking test 132 datm_cdeps_bulk_gefs 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 = 272.629434 - 0: The maximum resident set size (KB) = 858792 + 0: The total amount of wall time = 385.207946 + 0: The maximum resident set size (KB) = 862808 Test 132 datm_cdeps_bulk_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/datm_cdeps_mx025_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_mx025_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/datm_cdeps_mx025_cfsr Checking test 133 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -3711,14 +4091,14 @@ Checking test 133 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 906.761663 - 0: The maximum resident set size (KB) = 764436 + 0: The total amount of wall time = 1171.400192 + 0: The maximum resident set size (KB) = 764056 Test 133 datm_cdeps_mx025_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/datm_cdeps_mx025_gefs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_mx025_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/datm_cdeps_mx025_gefs Checking test 134 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -3727,77 +4107,77 @@ Checking test 134 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 1642.498904 - 0: The maximum resident set size (KB) = 736096 + 0: The total amount of wall time = 991.221119 + 0: The maximum resident set size (KB) = 735672 Test 134 datm_cdeps_mx025_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/datm_cdeps_multiple_files_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/datm_cdeps_multiple_files_cfsr Checking test 135 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 233.145695 - 0: The maximum resident set size (KB) = 976760 + 0: The total amount of wall time = 384.008683 + 0: The maximum resident set size (KB) = 963652 Test 135 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/datm_cdeps_3072x1536_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/datm_cdeps_3072x1536_cfsr Checking test 136 datm_cdeps_3072x1536_cfsr 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 = 423.026792 - 0: The maximum resident set size (KB) = 2257768 + 0: The total amount of wall time = 457.806257 + 0: The maximum resident set size (KB) = 2248292 Test 136 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_gfs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/datm_cdeps_gfs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_gfs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/datm_cdeps_gfs Checking test 137 datm_cdeps_gfs 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 = 948.507121 - 0: The maximum resident set size (KB) = 2255288 + 0: The total amount of wall time = 564.658329 + 0: The maximum resident set size (KB) = 2252896 Test 137 datm_cdeps_gfs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_debug_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/datm_cdeps_debug_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_debug_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/datm_cdeps_debug_cfsr Checking test 138 datm_cdeps_debug_cfsr 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 = 458.967552 - 0: The maximum resident set size (KB) = 917940 + 0: The total amount of wall time = 515.047428 + 0: The maximum resident set size (KB) = 935192 Test 138 datm_cdeps_debug_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_control_cfsr_faster -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/datm_cdeps_control_cfsr_faster +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_control_cfsr_faster +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/datm_cdeps_control_cfsr_faster Checking test 139 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 225.698271 - 0: The maximum resident set size (KB) = 956876 + 0: The total amount of wall time = 441.358635 + 0: The maximum resident set size (KB) = 981884 Test 139 datm_cdeps_control_cfsr_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/datm_cdeps_lnd_gswp3 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/datm_cdeps_lnd_gswp3 Checking test 140 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -3806,14 +4186,14 @@ Checking test 140 datm_cdeps_lnd_gswp3 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 = 19.378989 - 0: The maximum resident set size (KB) = 242748 + 0: The total amount of wall time = 112.633757 + 0: The maximum resident set size (KB) = 240108 Test 140 datm_cdeps_lnd_gswp3 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/datm_cdeps_lnd_gswp3_rst +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/datm_cdeps_lnd_gswp3_rst Checking test 141 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -3822,14 +4202,14 @@ Checking test 141 datm_cdeps_lnd_gswp3_rst 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 = 40.813832 - 0: The maximum resident set size (KB) = 239924 + 0: The total amount of wall time = 35.822034 + 0: The maximum resident set size (KB) = 245068 Test 141 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8_atmlnd_sbs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_p8_atmlnd_sbs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8_atmlnd_sbs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_p8_atmlnd_sbs Checking test 142 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3914,14 +4294,14 @@ Checking test 142 control_p8_atmlnd_sbs 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 = 481.370458 - 0: The maximum resident set size (KB) = 1584992 + 0: The total amount of wall time = 701.130015 + 0: The maximum resident set size (KB) = 1585812 Test 142 control_p8_atmlnd_sbs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/atmwav_control_noaero_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/atmwav_control_noaero_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/atmwav_control_noaero_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/atmwav_control_noaero_p8 Checking test 143 atmwav_control_noaero_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -3964,14 +4344,14 @@ Checking test 143 atmwav_control_noaero_p8 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 = 227.608003 - 0: The maximum resident set size (KB) = 1546600 + 0: The total amount of wall time = 244.989350 + 0: The maximum resident set size (KB) = 1558504 Test 143 atmwav_control_noaero_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_atmwav -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/control_atmwav +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_atmwav +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_atmwav Checking test 144 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4015,14 +4395,14 @@ Checking test 144 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 204.312186 - 0: The maximum resident set size (KB) = 601428 + 0: The total amount of wall time = 250.079744 + 0: The maximum resident set size (KB) = 602764 Test 144 control_atmwav PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/atmaero_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/atmaero_control_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/atmaero_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/atmaero_control_p8 Checking test 145 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4066,14 +4446,14 @@ Checking test 145 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 620.033504 - 0: The maximum resident set size (KB) = 1649140 + 0: The total amount of wall time = 562.687092 + 0: The maximum resident set size (KB) = 1641716 Test 145 atmaero_control_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/atmaero_control_p8_rad -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/atmaero_control_p8_rad +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/atmaero_control_p8_rad +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/atmaero_control_p8_rad Checking test 146 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4117,14 +4497,14 @@ Checking test 146 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 563.589076 - 0: The maximum resident set size (KB) = 1680404 + 0: The total amount of wall time = 627.483883 + 0: The maximum resident set size (KB) = 1665072 Test 146 atmaero_control_p8_rad PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_79320/atmaero_control_p8_rad_micro +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/atmaero_control_p8_rad_micro +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/atmaero_control_p8_rad_micro Checking test 147 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4168,478 +4548,91 @@ Checking test 147 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 600.489491 - 0: The maximum resident set size (KB) = 1690404 + 0: The total amount of wall time = 638.009433 + 0: The maximum resident set size (KB) = 1685808 Test 147 atmaero_control_p8_rad_micro PASS FAILED TESTS: -Test cpld_control_p8_mixedmode 001 failed in run_test failed -Test cpld_control_qr_p8 005 failed in run_test failed -Test cpld_2threads_p8 007 failed in run_test failed -Test cpld_mpi_p8 009 failed in run_test failed -Test cpld_control_ciceC_p8 010 failed in run_test failed Test control_c384gdas 028 failed in run_test failed -Test hafs_regional_atm_thompson_gfdlsf 119 failed in run_test failed +Test regional_2dwrtdecomp 051 failed in run_test failed REGRESSION TEST FAILED -Wed Apr 26 05:18:46 UTC 2023 -Elapsed time: 07h:02m:06s. Have a nice day! +Thu Apr 27 06:31:54 UTC 2023 +Elapsed time: 04h:29m:42s. Have a nice day! +Thu Apr 27 12:32:31 UTC 2023 +Start Regression test -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8_mixedmode -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_67779/cpld_control_p8_mixedmode -Checking test 001 cpld_control_p8_mixedmode results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK +Compile 001 elapsed time 1927 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 - 0: The total amount of wall time = 477.988262 - 0: The maximum resident set size (KB) = 1750920 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_c384gdas +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295917/control_c384gdas +Checking test 001 control_c384gdas results .... + Comparing sfcf000.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf006.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF06 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF06 .........OK + Comparing RESTART/20210322.060000.coupler.res .........OK + Comparing RESTART/20210322.060000.fv_core.res.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK -Test 001 cpld_control_p8_mixedmode PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_67779/cpld_control_qr_p8 -Checking test 002 cpld_control_qr_p8 results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 508.021551 - 0: The maximum resident set size (KB) = 1803772 - -Test 002 cpld_control_qr_p8 PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_67779/cpld_restart_qr_p8 -Checking test 003 cpld_restart_qr_p8 results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 319.322146 - 0: The maximum resident set size (KB) = 1524420 - -Test 003 cpld_restart_qr_p8 PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_67779/cpld_2threads_p8 -Checking test 004 cpld_2threads_p8 results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 547.724249 - 0: The maximum resident set size (KB) = 1984824 + 0: The total amount of wall time = 1119.878464 + 0: The maximum resident set size (KB) = 1194584 -Test 004 cpld_2threads_p8 PASS +Test 001 control_c384gdas PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_67779/cpld_mpi_p8 -Checking test 005 cpld_mpi_p8 results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 441.034900 - 0: The maximum resident set size (KB) = 1735992 - -Test 005 cpld_mpi_p8 PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_ciceC_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_67779/cpld_control_ciceC_p8 -Checking test 006 cpld_control_ciceC_p8 results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 490.429934 - 0: The maximum resident set size (KB) = 1792980 - -Test 006 cpld_control_ciceC_p8 PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/control_c384gdas -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_67779/control_c384gdas -Checking test 007 control_c384gdas results .... - Comparing sfcf000.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf006.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF06 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF06 .........OK - Comparing RESTART/20210322.060000.coupler.res .........OK - Comparing RESTART/20210322.060000.fv_core.res.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 883.665298 - 0: The maximum resident set size (KB) = 1200448 - -Test 007 control_c384gdas PASS - +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295917/regional_2dwrtdecomp +Checking test 002 regional_2dwrtdecomp results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_67779/hafs_regional_atm_thompson_gfdlsf -Checking test 008 hafs_regional_atm_thompson_gfdlsf results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK + 0: The total amount of wall time = 676.126310 + 0: The maximum resident set size (KB) = 785984 - 0: The total amount of wall time = 464.964168 - 0: The maximum resident set size (KB) = 1579828 +Test 002 regional_2dwrtdecomp PASS -Test 008 hafs_regional_atm_thompson_gfdlsf PASS +REGRESSION TEST WAS SUCCESSFUL +Thu Apr 27 13:35:26 UTC 2023 +Elapsed time: 01h:03m:36s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index d728fc03160..526e5d6edd2 100755 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,43 +1,43 @@ -Tue Apr 25 09:03:16 CDT 2023 +Wed Apr 26 21:02:59 CDT 2023 Start Regression test -Compile 001 elapsed time 690 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 825 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 664 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 267 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 256 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 631 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 686 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 917 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 633 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 604 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 011 elapsed time 627 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 574 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 672 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 329 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 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 016 elapsed time 577 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 537 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 187 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 203 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 736 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 021 elapsed time 207 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 818 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 664 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 024 elapsed time 226 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 136 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 196 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 54 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 560 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 612 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 621 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 613 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 541 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 033 elapsed time 180 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 034 elapsed time 611 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8_mixedmode -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/cpld_control_p8_mixedmode +Compile 001 elapsed time 807 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 807 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 740 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 276 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 259 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 669 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 692 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 883 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 681 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 010 elapsed time 638 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 593 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 545 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 776 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 235 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 015 elapsed time 183 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 595 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 571 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 180 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 171 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 635 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 021 elapsed time 212 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 771 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 677 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 024 elapsed time 193 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 127 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 197 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 50 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 610 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 601 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 635 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 582 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 634 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 033 elapsed time 189 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 034 elapsed time 624 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8_mixedmode +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -102,14 +102,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 323.106602 - 0: The maximum resident set size (KB) = 3142984 + 0: The total amount of wall time = 318.659551 + 0: The maximum resident set size (KB) = 3146356 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_gfsv17 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/cpld_control_gfsv17 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_gfsv17 +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -173,14 +173,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 248.382726 - 0: The maximum resident set size (KB) = 1724444 + 0: The total amount of wall time = 227.325993 + 0: The maximum resident set size (KB) = 1730932 Test 002 cpld_control_gfsv17 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/cpld_control_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -245,14 +245,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 370.301697 - 0: The maximum resident set size (KB) = 3184380 + 0: The total amount of wall time = 343.129429 + 0: The maximum resident set size (KB) = 3168172 Test 003 cpld_control_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/cpld_restart_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -305,14 +305,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 205.956281 - 0: The maximum resident set size (KB) = 3056268 + 0: The total amount of wall time = 203.248879 + 0: The maximum resident set size (KB) = 3046192 Test 004 cpld_restart_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/cpld_control_qr_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -377,14 +377,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 356.262273 - 0: The maximum resident set size (KB) = 3193832 + 0: The total amount of wall time = 345.752485 + 0: The maximum resident set size (KB) = 3190312 Test 005 cpld_control_qr_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/cpld_restart_qr_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -437,14 +437,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 211.512241 - 0: The maximum resident set size (KB) = 3069244 + 0: The total amount of wall time = 223.761818 + 0: The maximum resident set size (KB) = 3064708 Test 006 cpld_restart_qr_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/cpld_2threads_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -497,14 +497,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 425.616415 - 0: The maximum resident set size (KB) = 3516532 + 0: The total amount of wall time = 400.500832 + 0: The maximum resident set size (KB) = 3515480 Test 007 cpld_2threads_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/cpld_decomp_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -557,14 +557,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 362.812632 - 0: The maximum resident set size (KB) = 3176332 + 0: The total amount of wall time = 344.450036 + 0: The maximum resident set size (KB) = 3168016 Test 008 cpld_decomp_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/cpld_mpi_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -617,14 +617,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 319.893227 - 0: The maximum resident set size (KB) = 3021696 + 0: The total amount of wall time = 286.666430 + 0: The maximum resident set size (KB) = 3027672 Test 009 cpld_mpi_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_ciceC_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/cpld_control_ciceC_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_ciceC_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -689,14 +689,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 377.198489 - 0: The maximum resident set size (KB) = 3183676 + 0: The total amount of wall time = 342.094540 + 0: The maximum resident set size (KB) = 3177532 Test 010 cpld_control_ciceC_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/cpld_control_c192_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_c192_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/cpld_control_c192_p8 Checking test 011 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -749,14 +749,14 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 703.311087 - 0: The maximum resident set size (KB) = 3262328 + 0: The total amount of wall time = 636.761816 + 0: The maximum resident set size (KB) = 3263016 -Test 011 cpld_control_c192_p8 PASS Tries: 2 +Test 011 cpld_control_c192_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/cpld_restart_c192_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_c192_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/cpld_restart_c192_p8 Checking test 012 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -809,14 +809,14 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 445.538689 - 0: The maximum resident set size (KB) = 3165388 + 0: The total amount of wall time = 433.421942 + 0: The maximum resident set size (KB) = 3162316 Test 012 cpld_restart_c192_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_bmark_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/cpld_bmark_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_bmark_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/cpld_bmark_p8 Checking test 013 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -864,14 +864,14 @@ Checking test 013 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 881.800429 - 0: The maximum resident set size (KB) = 4047640 + 0: The total amount of wall time = 883.512282 + 0: The maximum resident set size (KB) = 4045320 Test 013 cpld_bmark_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_bmark_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/cpld_restart_bmark_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_bmark_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/cpld_restart_bmark_p8 Checking test 014 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -919,14 +919,14 @@ Checking test 014 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 552.186043 - 0: The maximum resident set size (KB) = 3975660 + 0: The total amount of wall time = 536.395637 + 0: The maximum resident set size (KB) = 3952280 Test 014 cpld_restart_bmark_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_noaero_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/cpld_control_noaero_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_noaero_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/cpld_control_noaero_p8 Checking test 015 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -990,14 +990,14 @@ Checking test 015 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 274.572888 - 0: The maximum resident set size (KB) = 1728336 + 0: The total amount of wall time = 258.559579 + 0: The maximum resident set size (KB) = 1723660 Test 015 cpld_control_noaero_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c96_noaero_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/cpld_control_nowave_noaero_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_c96_noaero_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/cpld_control_nowave_noaero_p8 Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1059,14 +1059,14 @@ Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 278.409426 - 0: The maximum resident set size (KB) = 1766920 + 0: The total amount of wall time = 264.332574 + 0: The maximum resident set size (KB) = 1771172 Test 016 cpld_control_nowave_noaero_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_debug_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/cpld_debug_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_debug_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/cpld_debug_p8 Checking test 017 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1119,14 +1119,14 @@ Checking test 017 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 551.928659 - 0: The maximum resident set size (KB) = 3237912 + 0: The total amount of wall time = 536.435744 + 0: The maximum resident set size (KB) = 3239528 Test 017 cpld_debug_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_debug_noaero_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/cpld_debug_noaero_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_debug_noaero_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/cpld_debug_noaero_p8 Checking test 018 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1178,14 +1178,14 @@ Checking test 018 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 392.698915 - 0: The maximum resident set size (KB) = 1732088 + 0: The total amount of wall time = 379.684431 + 0: The maximum resident set size (KB) = 1739196 Test 018 cpld_debug_noaero_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_noaero_p8_agrid -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/cpld_control_noaero_p8_agrid +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_noaero_p8_agrid +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/cpld_control_noaero_p8_agrid Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1247,14 +1247,14 @@ Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 294.424506 - 0: The maximum resident set size (KB) = 1761888 + 0: The total amount of wall time = 265.786269 + 0: The maximum resident set size (KB) = 1764028 Test 019 cpld_control_noaero_p8_agrid PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_c48 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/cpld_control_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/cpld_control_c48 Checking test 020 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1304,14 +1304,14 @@ Checking test 020 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 520.686374 - 0: The maximum resident set size (KB) = 2818420 + 0: The total amount of wall time = 497.572646 + 0: The maximum resident set size (KB) = 2813464 Test 020 cpld_control_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_warmstart_c48 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/cpld_warmstart_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_warmstart_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/cpld_warmstart_c48 Checking test 021 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1361,14 +1361,14 @@ Checking test 021 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 141.700542 - 0: The maximum resident set size (KB) = 2804892 + 0: The total amount of wall time = 137.939893 + 0: The maximum resident set size (KB) = 2808348 Test 021 cpld_warmstart_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_warmstart_c48 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/cpld_restart_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_warmstart_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/cpld_restart_c48 Checking test 022 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1418,14 +1418,14 @@ Checking test 022 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 76.173240 - 0: The maximum resident set size (KB) = 2236916 + 0: The total amount of wall time = 74.083108 + 0: The maximum resident set size (KB) = 2249776 Test 022 cpld_restart_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/cpld_control_p8_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/cpld_control_p8_faster +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/cpld_control_p8_faster Checking test 023 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1490,15 +1490,33 @@ Checking test 023 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 322.426920 - 0: The maximum resident set size (KB) = 3180548 + 0: The total amount of wall time = 325.837243 + 0: The maximum resident set size (KB) = 3187776 Test 023 cpld_control_p8_faster PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_CubedSphereGrid -Checking test 024 control_CubedSphereGrid results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_flake +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_flake +Checking test 024 control_flake results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + + 0: The total amount of wall time = 193.296957 + 0: The maximum resident set size (KB) = 675668 + +Test 024 control_flake PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_CubedSphereGrid +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_CubedSphereGrid +Checking test 025 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1524,29 +1542,29 @@ Checking test 024 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 148.170701 - 0: The maximum resident set size (KB) = 578596 + 0: The total amount of wall time = 133.425367 + 0: The maximum resident set size (KB) = 629624 -Test 024 control_CubedSphereGrid PASS +Test 025 control_CubedSphereGrid PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid_parallel -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_CubedSphereGrid_parallel -Checking test 025 control_CubedSphereGrid_parallel results .... - Comparing sfcf000.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_CubedSphereGrid_parallel +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_CubedSphereGrid_parallel +Checking test 026 control_CubedSphereGrid_parallel results .... + Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 145.901836 - 0: The maximum resident set size (KB) = 633116 + 0: The total amount of wall time = 127.766467 + 0: The maximum resident set size (KB) = 634540 -Test 025 control_CubedSphereGrid_parallel PASS +Test 026 control_CubedSphereGrid_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_latlon -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_latlon -Checking test 026 control_latlon results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_latlon +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_latlon +Checking test 027 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1556,33 +1574,33 @@ Checking test 026 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 149.741590 - 0: The maximum resident set size (KB) = 630904 + 0: The total amount of wall time = 133.133630 + 0: The maximum resident set size (KB) = 630512 -Test 026 control_latlon PASS +Test 027 control_latlon PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wrtGauss_netcdf_parallel -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_wrtGauss_netcdf_parallel -Checking test 027 control_wrtGauss_netcdf_parallel results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_wrtGauss_netcdf_parallel +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_wrtGauss_netcdf_parallel +Checking test 028 control_wrtGauss_netcdf_parallel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 156.957944 - 0: The maximum resident set size (KB) = 630060 + 0: The total amount of wall time = 135.249509 + 0: The maximum resident set size (KB) = 631240 -Test 027 control_wrtGauss_netcdf_parallel PASS +Test 028 control_wrtGauss_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c48 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_c48 -Checking test 028 control_c48 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_c48 +Checking test 029 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1620,15 +1638,15 @@ Checking test 028 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 349.245605 -0: The maximum resident set size (KB) = 823148 +0: The total amount of wall time = 344.257080 +0: The maximum resident set size (KB) = 817952 -Test 028 control_c48 PASS +Test 029 control_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c192 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_c192 -Checking test 029 control_c192 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_c192 +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_c192 +Checking test 030 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1638,15 +1656,15 @@ Checking test 029 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 533.755254 - 0: The maximum resident set size (KB) = 766260 + 0: The total amount of wall time = 522.367355 + 0: The maximum resident set size (KB) = 764524 -Test 029 control_c192 PASS +Test 030 control_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c384 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_c384 -Checking test 030 control_c384 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_c384 +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_c384 +Checking test 031 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1656,15 +1674,15 @@ Checking test 030 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 604.947170 - 0: The maximum resident set size (KB) = 1231324 + 0: The total amount of wall time = 578.376756 + 0: The maximum resident set size (KB) = 1229768 -Test 030 control_c384 PASS +Test 031 control_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_c384gdas -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_c384gdas -Checking test 031 control_c384gdas results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_c384gdas +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_c384gdas +Checking test 032 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -1706,15 +1724,15 @@ Checking test 031 control_c384gdas 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 = 536.156230 - 0: The maximum resident set size (KB) = 1340928 + 0: The total amount of wall time = 508.079939 + 0: The maximum resident set size (KB) = 1338904 -Test 031 control_c384gdas PASS +Test 032 control_c384gdas PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_stochy -Checking test 032 control_stochy results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_stochy +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_stochy +Checking test 033 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1724,29 +1742,29 @@ Checking test 032 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 89.450052 - 0: The maximum resident set size (KB) = 634980 + 0: The total amount of wall time = 86.688443 + 0: The maximum resident set size (KB) = 638504 -Test 032 control_stochy PASS +Test 033 control_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_stochy_restart -Checking test 033 control_stochy_restart results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_stochy +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_stochy_restart +Checking test 034 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 48.982157 - 0: The maximum resident set size (KB) = 485884 + 0: The total amount of wall time = 48.170207 + 0: The maximum resident set size (KB) = 484804 -Test 033 control_stochy_restart PASS +Test 034 control_stochy_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_lndp -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_lndp -Checking test 034 control_lndp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_lndp +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_lndp +Checking test 035 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1756,15 +1774,15 @@ Checking test 034 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 83.290984 - 0: The maximum resident set size (KB) = 636244 + 0: The total amount of wall time = 83.240499 + 0: The maximum resident set size (KB) = 633740 -Test 034 control_lndp PASS +Test 035 control_lndp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_iovr4 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_iovr4 -Checking test 035 control_iovr4 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_iovr4 +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_iovr4 +Checking test 036 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1778,15 +1796,15 @@ Checking test 035 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.500700 - 0: The maximum resident set size (KB) = 630820 + 0: The total amount of wall time = 134.622845 + 0: The maximum resident set size (KB) = 632052 -Test 035 control_iovr4 PASS +Test 036 control_iovr4 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_iovr5 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_iovr5 -Checking test 036 control_iovr5 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_iovr5 +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_iovr5 +Checking test 037 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1800,15 +1818,15 @@ Checking test 036 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.919604 - 0: The maximum resident set size (KB) = 633568 + 0: The total amount of wall time = 141.062539 + 0: The maximum resident set size (KB) = 629336 -Test 036 control_iovr5 PASS +Test 037 control_iovr5 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_p8 -Checking test 037 control_p8 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_p8 +Checking test 038 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1854,15 +1872,15 @@ Checking test 037 control_p8 results .... Comparing 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.551815 - 0: The maximum resident set size (KB) = 1598108 + 0: The total amount of wall time = 166.629268 + 0: The maximum resident set size (KB) = 1604752 -Test 037 control_p8 PASS +Test 038 control_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_restart_p8 -Checking test 038 control_restart_p8 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_restart_p8 +Checking test 039 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1900,15 +1918,15 @@ Checking test 038 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 91.276745 - 0: The maximum resident set size (KB) = 873404 + 0: The total amount of wall time = 87.148182 + 0: The maximum resident set size (KB) = 877816 -Test 038 control_restart_p8 PASS +Test 039 control_restart_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_qr_p8 -Checking test 039 control_qr_p8 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_qr_p8 +Checking test 040 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1954,15 +1972,15 @@ Checking test 039 control_qr_p8 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.542917 - 0: The maximum resident set size (KB) = 1594148 + 0: The total amount of wall time = 167.705600 + 0: The maximum resident set size (KB) = 1600308 -Test 039 control_qr_p8 PASS +Test 040 control_qr_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_restart_qr_p8 -Checking test 040 control_restart_qr_p8 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_restart_qr_p8 +Checking test 041 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2000,15 +2018,15 @@ Checking test 040 control_restart_qr_p8 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.370183 - 0: The maximum resident set size (KB) = 869808 + 0: The total amount of wall time = 90.675650 + 0: The maximum resident set size (KB) = 863660 -Test 040 control_restart_qr_p8 PASS +Test 041 control_restart_qr_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_decomp_p8 -Checking test 041 control_decomp_p8 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_decomp_p8 +Checking test 042 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2050,15 +2068,15 @@ Checking test 041 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 177.732256 - 0: The maximum resident set size (KB) = 1582512 + 0: The total amount of wall time = 173.582226 + 0: The maximum resident set size (KB) = 1585316 -Test 041 control_decomp_p8 PASS +Test 042 control_decomp_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_2threads_p8 -Checking test 042 control_2threads_p8 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_2threads_p8 +Checking test 043 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2100,15 +2118,15 @@ Checking test 042 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 179.549417 - 0: The maximum resident set size (KB) = 1683524 + 0: The total amount of wall time = 174.893808 + 0: The maximum resident set size (KB) = 1688552 -Test 042 control_2threads_p8 PASS +Test 043 control_2threads_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_lndp -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_p8_lndp -Checking test 043 control_p8_lndp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8_lndp +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_p8_lndp +Checking test 044 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2126,15 +2144,15 @@ Checking test 043 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 314.640049 - 0: The maximum resident set size (KB) = 1609664 + 0: The total amount of wall time = 310.423751 + 0: The maximum resident set size (KB) = 1611328 -Test 043 control_p8_lndp PASS +Test 044 control_p8_lndp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_rrtmgp -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_p8_rrtmgp -Checking test 044 control_p8_rrtmgp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8_rrtmgp +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_p8_rrtmgp +Checking test 045 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2180,15 +2198,15 @@ Checking test 044 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 231.649370 - 0: The maximum resident set size (KB) = 1621212 + 0: The total amount of wall time = 226.319621 + 0: The maximum resident set size (KB) = 1678700 -Test 044 control_p8_rrtmgp PASS +Test 045 control_p8_rrtmgp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_mynn -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_p8_mynn -Checking test 045 control_p8_mynn results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8_mynn +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_p8_mynn +Checking test 046 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2234,15 +2252,15 @@ Checking test 045 control_p8_mynn results .... Comparing 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.484499 - 0: The maximum resident set size (KB) = 1550612 + 0: The total amount of wall time = 169.288471 + 0: The maximum resident set size (KB) = 1609652 -Test 045 control_p8_mynn PASS +Test 046 control_p8_mynn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/merra2_thompson -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/merra2_thompson -Checking test 046 merra2_thompson results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/merra2_thompson +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/merra2_thompson +Checking test 047 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2288,15 +2306,15 @@ Checking test 046 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 192.275886 - 0: The maximum resident set size (KB) = 1608124 + 0: The total amount of wall time = 188.902634 + 0: The maximum resident set size (KB) = 1607208 -Test 046 merra2_thompson PASS +Test 047 merra2_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/regional_control -Checking test 047 regional_control results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/regional_control +Checking test 048 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2306,29 +2324,29 @@ Checking test 047 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 296.690439 - 0: The maximum resident set size (KB) = 872180 + 0: The total amount of wall time = 293.296077 + 0: The maximum resident set size (KB) = 870528 -Test 047 regional_control PASS +Test 048 regional_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/regional_restart -Checking test 048 regional_restart results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/regional_restart +Checking test 049 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 151.850426 - 0: The maximum resident set size (KB) = 838788 + 0: The total amount of wall time = 151.890360 + 0: The maximum resident set size (KB) = 863104 -Test 048 regional_restart PASS +Test 049 regional_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/regional_control_qr -Checking test 049 regional_control_qr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/regional_control_qr +Checking test 050 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2338,29 +2356,29 @@ Checking test 049 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 296.961465 - 0: The maximum resident set size (KB) = 871188 + 0: The total amount of wall time = 292.624485 + 0: The maximum resident set size (KB) = 868596 -Test 049 regional_control_qr PASS +Test 050 regional_control_qr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/regional_restart_qr -Checking test 050 regional_restart_qr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/regional_restart_qr +Checking test 051 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 152.661163 - 0: The maximum resident set size (KB) = 859432 + 0: The total amount of wall time = 150.514276 + 0: The maximum resident set size (KB) = 866972 -Test 050 regional_restart_qr PASS +Test 051 regional_restart_qr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/regional_decomp -Checking test 051 regional_decomp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/regional_decomp +Checking test 052 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2370,15 +2388,15 @@ Checking test 051 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 315.103740 - 0: The maximum resident set size (KB) = 860236 + 0: The total amount of wall time = 311.332744 + 0: The maximum resident set size (KB) = 866216 -Test 051 regional_decomp PASS +Test 052 regional_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/regional_2threads -Checking test 052 regional_2threads results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/regional_2threads +Checking test 053 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2388,44 +2406,44 @@ Checking test 052 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 206.498476 - 0: The maximum resident set size (KB) = 847364 + 0: The total amount of wall time = 203.737511 + 0: The maximum resident set size (KB) = 847668 -Test 052 regional_2threads PASS +Test 053 regional_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_noquilt -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/regional_noquilt -Checking test 053 regional_noquilt results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_noquilt +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/regional_noquilt +Checking test 054 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 319.845043 - 0: The maximum resident set size (KB) = 833288 + 0: The total amount of wall time = 317.266444 + 0: The maximum resident set size (KB) = 860016 -Test 053 regional_noquilt PASS +Test 054 regional_noquilt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_netcdf_parallel -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/regional_netcdf_parallel -Checking test 054 regional_netcdf_parallel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_netcdf_parallel +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/regional_netcdf_parallel +Checking test 055 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing phyf006.nc .........OK - 0: The total amount of wall time = 294.973074 - 0: The maximum resident set size (KB) = 866664 + 0: The total amount of wall time = 292.402898 + 0: The maximum resident set size (KB) = 866192 -Test 054 regional_netcdf_parallel PASS +Test 055 regional_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/regional_2dwrtdecomp -Checking test 055 regional_2dwrtdecomp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/regional_2dwrtdecomp +Checking test 056 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2435,15 +2453,15 @@ Checking test 055 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 297.018233 - 0: The maximum resident set size (KB) = 874572 + 0: The total amount of wall time = 296.079754 + 0: The maximum resident set size (KB) = 868936 -Test 055 regional_2dwrtdecomp PASS +Test 056 regional_2dwrtdecomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/fv3_regional_wofs -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/regional_wofs -Checking test 056 regional_wofs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/fv3_regional_wofs +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/regional_wofs +Checking test 057 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2453,15 +2471,15 @@ Checking test 056 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 379.614371 - 0: The maximum resident set size (KB) = 575228 + 0: The total amount of wall time = 371.096060 + 0: The maximum resident set size (KB) = 629560 -Test 056 regional_wofs PASS +Test 057 regional_wofs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rap_control -Checking test 057 rap_control results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/rap_control +Checking test 058 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2507,15 +2525,15 @@ Checking test 057 rap_control results .... Comparing 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.605490 - 0: The maximum resident set size (KB) = 1068664 + 0: The total amount of wall time = 460.632650 + 0: The maximum resident set size (KB) = 1059000 -Test 057 rap_control PASS +Test 058 rap_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_spp_sppt_shum_skeb -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/regional_spp_sppt_shum_skeb -Checking test 058 regional_spp_sppt_shum_skeb results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_spp_sppt_shum_skeb +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/regional_spp_sppt_shum_skeb +Checking test 059 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -2525,15 +2543,15 @@ Checking test 058 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 289.349721 - 0: The maximum resident set size (KB) = 1182808 + 0: The total amount of wall time = 276.436749 + 0: The maximum resident set size (KB) = 1195704 -Test 058 regional_spp_sppt_shum_skeb PASS +Test 059 regional_spp_sppt_shum_skeb PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rap_decomp -Checking test 059 rap_decomp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/rap_decomp +Checking test 060 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2579,15 +2597,15 @@ Checking test 059 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 499.494772 - 0: The maximum resident set size (KB) = 1003760 + 0: The total amount of wall time = 477.725204 + 0: The maximum resident set size (KB) = 1009288 -Test 059 rap_decomp PASS +Test 060 rap_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rap_2threads -Checking test 060 rap_2threads results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/rap_2threads +Checking test 061 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2633,15 +2651,15 @@ Checking test 060 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 485.046221 - 0: The maximum resident set size (KB) = 1140412 + 0: The total amount of wall time = 469.288170 + 0: The maximum resident set size (KB) = 1140824 -Test 060 rap_2threads PASS +Test 061 rap_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rap_restart -Checking test 061 rap_restart results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/rap_restart +Checking test 062 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2679,15 +2697,15 @@ Checking test 061 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 234.011072 - 0: The maximum resident set size (KB) = 965748 + 0: The total amount of wall time = 234.166297 + 0: The maximum resident set size (KB) = 967796 -Test 061 rap_restart PASS +Test 062 rap_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rap_sfcdiff -Checking test 062 rap_sfcdiff results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_sfcdiff +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/rap_sfcdiff +Checking test 063 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2733,15 +2751,15 @@ Checking test 062 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 462.665207 - 0: The maximum resident set size (KB) = 1047872 + 0: The total amount of wall time = 457.496985 + 0: The maximum resident set size (KB) = 1018868 -Test 062 rap_sfcdiff PASS +Test 063 rap_sfcdiff PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rap_sfcdiff_decomp -Checking test 063 rap_sfcdiff_decomp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_sfcdiff +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/rap_sfcdiff_decomp +Checking test 064 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2787,15 +2805,15 @@ Checking test 063 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 510.398029 - 0: The maximum resident set size (KB) = 1005344 + 0: The total amount of wall time = 479.294052 + 0: The maximum resident set size (KB) = 1002556 -Test 063 rap_sfcdiff_decomp PASS +Test 064 rap_sfcdiff_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rap_sfcdiff_restart -Checking test 064 rap_sfcdiff_restart results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_sfcdiff +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/rap_sfcdiff_restart +Checking test 065 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2833,15 +2851,15 @@ Checking test 064 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 342.191397 - 0: The maximum resident set size (KB) = 986528 + 0: The total amount of wall time = 339.996015 + 0: The maximum resident set size (KB) = 988700 -Test 064 rap_sfcdiff_restart PASS +Test 065 rap_sfcdiff_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hrrr_control -Checking test 065 hrrr_control results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/hrrr_control +Checking test 066 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2854,48 +2872,48 @@ Checking test 065 hrrr_control results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 460.724498 - 0: The maximum resident set size (KB) = 1061812 - -Test 065 hrrr_control PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hrrr_control_decomp -Checking test 066 hrrr_control_decomp results .... + 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.144974 + 0: The maximum resident set size (KB) = 1056696 + +Test 066 hrrr_control PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/hrrr_control_decomp +Checking test 067 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2908,48 +2926,48 @@ Checking test 066 hrrr_control_decomp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 464.284108 - 0: The maximum resident set size (KB) = 1002688 - -Test 066 hrrr_control_decomp PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hrrr_control_2threads -Checking test 067 hrrr_control_2threads results .... + 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 = 446.138085 + 0: The maximum resident set size (KB) = 1000308 + +Test 067 hrrr_control_decomp PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/hrrr_control_2threads +Checking test 068 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2962,94 +2980,62 @@ Checking test 067 hrrr_control_2threads results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 455.889068 - 0: The maximum resident set size (KB) = 1138292 - -Test 067 hrrr_control_2threads PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hrrr_control_restart -Checking test 068 hrrr_control_restart results .... + 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 = 359.431383 + 0: The maximum resident set size (KB) = 1080332 + +Test 068 hrrr_control_2threads PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/hrrr_control_restart +Checking test 069 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 332.436845 - 0: The maximum resident set size (KB) = 983116 + 0: The total amount of wall time = 318.893463 + 0: The maximum resident set size (KB) = 987804 -Test 068 hrrr_control_restart PASS +Test 069 hrrr_control_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1beta -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rrfs_v1beta -Checking test 069 rrfs_v1beta results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_v1beta +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/rrfs_v1beta +Checking test 070 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3095,15 +3081,15 @@ Checking test 069 rrfs_v1beta results .... Comparing 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.915325 - 0: The maximum resident set size (KB) = 1065308 + 0: The total amount of wall time = 452.835897 + 0: The maximum resident set size (KB) = 1059440 -Test 069 rrfs_v1beta PASS +Test 070 rrfs_v1beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1nssl -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rrfs_v1nssl -Checking test 070 rrfs_v1nssl results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_v1nssl +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/rrfs_v1nssl +Checking test 071 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3117,15 +3103,15 @@ Checking test 070 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 563.364641 - 0: The maximum resident set size (KB) = 698944 + 0: The total amount of wall time = 537.529721 + 0: The maximum resident set size (KB) = 692228 -Test 070 rrfs_v1nssl PASS +Test 071 rrfs_v1nssl PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rrfs_v1nssl_nohailnoccn -Checking test 071 rrfs_v1nssl_nohailnoccn results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/rrfs_v1nssl_nohailnoccn +Checking test 072 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3139,15 +3125,15 @@ Checking test 071 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 551.735761 - 0: The maximum resident set size (KB) = 761752 + 0: The total amount of wall time = 525.928202 + 0: The maximum resident set size (KB) = 760476 -Test 071 rrfs_v1nssl_nohailnoccn PASS +Test 072 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rrfs_smoke_conus13km_hrrr_warm -Checking test 072 rrfs_smoke_conus13km_hrrr_warm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/rrfs_smoke_conus13km_hrrr_warm +Checking test 073 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -3155,15 +3141,15 @@ Checking test 072 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 160.446491 - 0: The maximum resident set size (KB) = 1039692 + 0: The total amount of wall time = 146.693202 + 0: The maximum resident set size (KB) = 1038876 -Test 072 rrfs_smoke_conus13km_hrrr_warm PASS +Test 073 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rrfs_smoke_conus13km_hrrr_warm_2threads -Checking test 073 rrfs_smoke_conus13km_hrrr_warm_2threads results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/rrfs_smoke_conus13km_hrrr_warm_2threads +Checking test 074 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -3171,15 +3157,15 @@ Checking test 073 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 101.509351 - 0: The maximum resident set size (KB) = 944808 + 0: The total amount of wall time = 96.267785 + 0: The maximum resident set size (KB) = 949972 -Test 073 rrfs_smoke_conus13km_hrrr_warm_2threads PASS +Test 074 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rrfs_conus13km_hrrr_warm -Checking test 074 rrfs_conus13km_hrrr_warm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_conus13km_hrrr_warm +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/rrfs_conus13km_hrrr_warm +Checking test 075 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -3187,15 +3173,15 @@ Checking test 074 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 143.209510 - 0: The maximum resident set size (KB) = 888420 + 0: The total amount of wall time = 129.160614 + 0: The maximum resident set size (KB) = 994932 -Test 074 rrfs_conus13km_hrrr_warm PASS +Test 075 rrfs_conus13km_hrrr_warm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rrfs_smoke_conus13km_radar_tten_warm -Checking test 075 rrfs_smoke_conus13km_radar_tten_warm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/rrfs_smoke_conus13km_radar_tten_warm +Checking test 076 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -3203,27 +3189,27 @@ Checking test 075 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 152.935807 - 0: The maximum resident set size (KB) = 1003804 + 0: The total amount of wall time = 146.591184 + 0: The maximum resident set size (KB) = 1044408 -Test 075 rrfs_smoke_conus13km_radar_tten_warm PASS +Test 076 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rrfs_conus13km_hrrr_warm_restart_mismatch -Checking test 076 rrfs_conus13km_hrrr_warm_restart_mismatch results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/rrfs_conus13km_hrrr_warm_restart_mismatch +Checking test 077 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 69.407238 - 0: The maximum resident set size (KB) = 937700 + 0: The total amount of wall time = 69.989295 + 0: The maximum resident set size (KB) = 938312 -Test 076 rrfs_conus13km_hrrr_warm_restart_mismatch PASS +Test 077 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmg -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_csawmg -Checking test 077 control_csawmg results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_csawmg +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_csawmg +Checking test 078 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3233,15 +3219,15 @@ Checking test 077 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 345.365789 - 0: The maximum resident set size (KB) = 728128 + 0: The total amount of wall time = 342.249257 + 0: The maximum resident set size (KB) = 731792 -Test 077 control_csawmg PASS +Test 078 control_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmgt -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_csawmgt -Checking test 078 control_csawmgt results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_csawmgt +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_csawmgt +Checking test 079 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3251,15 +3237,15 @@ Checking test 078 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 341.750828 - 0: The maximum resident set size (KB) = 724340 + 0: The total amount of wall time = 345.097381 + 0: The maximum resident set size (KB) = 726768 -Test 078 control_csawmgt PASS +Test 079 control_csawmgt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_ras -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_ras -Checking test 079 control_ras results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_ras +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_ras +Checking test 080 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3269,27 +3255,27 @@ Checking test 079 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 183.649354 - 0: The maximum resident set size (KB) = 716536 + 0: The total amount of wall time = 180.619037 + 0: The maximum resident set size (KB) = 732816 -Test 079 control_ras PASS +Test 080 control_ras PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wam -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_wam -Checking test 080 control_wam results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_wam +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_wam +Checking test 081 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 114.544416 - 0: The maximum resident set size (KB) = 646944 + 0: The total amount of wall time = 111.363796 + 0: The maximum resident set size (KB) = 647324 -Test 080 control_wam PASS +Test 081 control_wam PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_p8_faster -Checking test 081 control_p8_faster results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_p8_faster +Checking test 082 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -3335,15 +3321,15 @@ Checking test 081 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 151.498623 - 0: The maximum resident set size (KB) = 1603504 + 0: The total amount of wall time = 153.033266 + 0: The maximum resident set size (KB) = 1606164 -Test 081 control_p8_faster PASS +Test 082 control_p8_faster PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_control_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/regional_control_faster -Checking test 082 regional_control_faster results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/regional_control_faster +Checking test 083 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -3353,57 +3339,57 @@ Checking test 082 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 268.798068 - 0: The maximum resident set size (KB) = 875568 + 0: The total amount of wall time = 270.164412 + 0: The maximum resident set size (KB) = 873996 -Test 082 regional_control_faster PASS +Test 083 regional_control_faster PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rrfs_smoke_conus13km_hrrr_warm_debug -Checking test 083 rrfs_smoke_conus13km_hrrr_warm_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/rrfs_smoke_conus13km_hrrr_warm_debug +Checking test 084 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 838.517845 - 0: The maximum resident set size (KB) = 1061404 + 0: The total amount of wall time = 852.939615 + 0: The maximum resident set size (KB) = 1059160 -Test 083 rrfs_smoke_conus13km_hrrr_warm_debug PASS +Test 084 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rrfs_smoke_conus13km_hrrr_warm_debug_2threads -Checking test 084 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +Checking test 085 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 480.614712 - 0: The maximum resident set size (KB) = 977152 + 0: The total amount of wall time = 475.417563 + 0: The maximum resident set size (KB) = 931008 -Test 084 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS +Test 085 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rrfs_conus13km_hrrr_warm_debug -Checking test 085 rrfs_conus13km_hrrr_warm_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/rrfs_conus13km_hrrr_warm_debug +Checking test 086 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 761.187304 - 0: The maximum resident set size (KB) = 969892 + 0: The total amount of wall time = 737.615541 + 0: The maximum resident set size (KB) = 1016300 -Test 085 rrfs_conus13km_hrrr_warm_debug PASS +Test 086 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_CubedSphereGrid_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_CubedSphereGrid_debug -Checking test 086 control_CubedSphereGrid_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_CubedSphereGrid_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_CubedSphereGrid_debug +Checking test 087 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3429,335 +3415,349 @@ Checking test 086 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 157.947123 - 0: The maximum resident set size (KB) = 752676 + 0: The total amount of wall time = 146.098299 + 0: The maximum resident set size (KB) = 792964 -Test 086 control_CubedSphereGrid_debug PASS +Test 087 control_CubedSphereGrid_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_wrtGauss_netcdf_parallel_debug -Checking test 087 control_wrtGauss_netcdf_parallel_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_wrtGauss_netcdf_parallel_debug +Checking test 088 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc .........OK + Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 152.440084 - 0: The maximum resident set size (KB) = 792668 + 0: The total amount of wall time = 148.335894 + 0: The maximum resident set size (KB) = 795736 -Test 087 control_wrtGauss_netcdf_parallel_debug PASS +Test 088 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_stochy_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_stochy_debug -Checking test 088 control_stochy_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_stochy_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_stochy_debug +Checking test 089 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 170.502161 - 0: The maximum resident set size (KB) = 792268 + 0: The total amount of wall time = 170.360848 + 0: The maximum resident set size (KB) = 796336 -Test 088 control_stochy_debug PASS +Test 089 control_stochy_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_lndp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_lndp_debug -Checking test 089 control_lndp_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_lndp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_lndp_debug +Checking test 090 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 154.166166 - 0: The maximum resident set size (KB) = 793720 + 0: The total amount of wall time = 150.770744 + 0: The maximum resident set size (KB) = 796384 -Test 089 control_lndp_debug PASS +Test 090 control_lndp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmg_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_csawmg_debug -Checking test 090 control_csawmg_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_csawmg_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_csawmg_debug +Checking test 091 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 225.114471 - 0: The maximum resident set size (KB) = 844876 + 0: The total amount of wall time = 251.111572 + 0: The maximum resident set size (KB) = 845160 -Test 090 control_csawmg_debug PASS +Test 091 control_csawmg_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_csawmgt_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_csawmgt_debug -Checking test 091 control_csawmgt_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_csawmgt_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_csawmgt_debug +Checking test 092 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 235.824733 - 0: The maximum resident set size (KB) = 845956 + 0: The total amount of wall time = 228.410079 + 0: The maximum resident set size (KB) = 840464 -Test 091 control_csawmgt_debug PASS +Test 092 control_csawmgt_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_ras_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_ras_debug -Checking test 092 control_ras_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_ras_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_ras_debug +Checking test 093 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 152.362287 - 0: The maximum resident set size (KB) = 797524 + 0: The total amount of wall time = 153.084493 + 0: The maximum resident set size (KB) = 803784 -Test 092 control_ras_debug PASS +Test 093 control_ras_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_diag_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_diag_debug -Checking test 093 control_diag_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_diag_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_diag_debug +Checking test 094 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 157.906755 - 0: The maximum resident set size (KB) = 851812 + 0: The total amount of wall time = 157.867752 + 0: The maximum resident set size (KB) = 850444 -Test 093 control_diag_debug PASS +Test 094 control_diag_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_debug_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_debug_p8 -Checking test 094 control_debug_p8 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_debug_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_debug_p8 +Checking test 095 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 190.383688 - 0: The maximum resident set size (KB) = 1623428 + 0: The total amount of wall time = 171.148317 + 0: The maximum resident set size (KB) = 1621468 -Test 094 control_debug_p8 PASS +Test 095 control_debug_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/regional_debug -Checking test 095 regional_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/regional_debug +Checking test 096 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1022.742049 - 0: The maximum resident set size (KB) = 887824 - -Test 095 regional_debug PASS + 0: The total amount of wall time = 1013.066695 + 0: The maximum resident set size (KB) = 887336 +Test 096 regional_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rap_control_debug -Checking test 096 rap_control_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 272.642879 - 0: The maximum resident set size (KB) = 1170836 - -Test 096 rap_control_debug PASS - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hrrr_control_debug -Checking test 097 hrrr_control_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/rap_control_debug +Checking test 097 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 267.970165 - 0: The maximum resident set size (KB) = 1173164 + 0: The total amount of wall time = 288.043010 + 0: The maximum resident set size (KB) = 1136144 -Test 097 hrrr_control_debug PASS +Test 097 rap_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rap_unified_drag_suite_debug -Checking test 098 rap_unified_drag_suite_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/hrrr_control_debug +Checking test 098 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.975636 - 0: The maximum resident set size (KB) = 1175140 + 0: The total amount of wall time = 271.906630 + 0: The maximum resident set size (KB) = 1163508 -Test 098 rap_unified_drag_suite_debug PASS +Test 098 hrrr_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_diag_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rap_diag_debug -Checking test 099 rap_diag_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/rap_unified_drag_suite_debug +Checking test 099 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 295.833705 - 0: The maximum resident set size (KB) = 1260056 + 0: The total amount of wall time = 274.839684 + 0: The maximum resident set size (KB) = 1173560 -Test 099 rap_diag_debug PASS +Test 099 rap_unified_drag_suite_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rap_cires_ugwp_debug -Checking test 100 rap_cires_ugwp_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_diag_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/rap_diag_debug +Checking test 100 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.861960 - 0: The maximum resident set size (KB) = 1173196 + 0: The total amount of wall time = 291.328304 + 0: The maximum resident set size (KB) = 1253260 -Test 100 rap_cires_ugwp_debug PASS +Test 100 rap_diag_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rap_unified_ugwp_debug -Checking test 101 rap_unified_ugwp_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_cires_ugwp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/rap_cires_ugwp_debug +Checking test 101 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 287.140099 - 0: The maximum resident set size (KB) = 1172844 + 0: The total amount of wall time = 280.267893 + 0: The maximum resident set size (KB) = 1135320 -Test 101 rap_unified_ugwp_debug PASS +Test 101 rap_cires_ugwp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_lndp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rap_lndp_debug -Checking test 102 rap_lndp_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_cires_ugwp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/rap_unified_ugwp_debug +Checking test 102 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 299.775164 - 0: The maximum resident set size (KB) = 1170796 + 0: The total amount of wall time = 279.132898 + 0: The maximum resident set size (KB) = 1181516 -Test 102 rap_lndp_debug PASS +Test 102 rap_unified_ugwp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_flake_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rap_flake_debug -Checking test 103 rap_flake_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_lndp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/rap_lndp_debug +Checking test 103 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 278.462184 - 0: The maximum resident set size (KB) = 1172236 + 0: The total amount of wall time = 272.516279 + 0: The maximum resident set size (KB) = 1174592 -Test 103 rap_flake_debug PASS +Test 103 rap_lndp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_progcld_thompson_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rap_progcld_thompson_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_progcld_thompson_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/rap_progcld_thompson_debug Checking test 104 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.910478 - 0: The maximum resident set size (KB) = 1169060 + 0: The total amount of wall time = 277.937542 + 0: The maximum resident set size (KB) = 1167868 Test 104 rap_progcld_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_noah_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rap_noah_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_noah_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/rap_noah_debug Checking test 105 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.583400 - 0: The maximum resident set size (KB) = 1177188 + 0: The total amount of wall time = 271.120136 + 0: The maximum resident set size (KB) = 1166108 Test 105 rap_noah_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_sfcdiff_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rap_sfcdiff_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_sfcdiff_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/rap_sfcdiff_debug Checking test 106 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 278.262049 - 0: The maximum resident set size (KB) = 1173512 + 0: The total amount of wall time = 273.300052 + 0: The maximum resident set size (KB) = 1169396 Test 106 rap_sfcdiff_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/rap_noah_sfcdiff_cires_ugwp_debug Checking test 107 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 463.974215 - 0: The maximum resident set size (KB) = 1170280 + 0: The total amount of wall time = 463.653141 + 0: The maximum resident set size (KB) = 1166676 Test 107 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rrfs_v1beta_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rrfs_v1beta_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_v1beta_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/rrfs_v1beta_debug Checking test 108 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.962891 - 0: The maximum resident set size (KB) = 1140912 + 0: The total amount of wall time = 271.516219 + 0: The maximum resident set size (KB) = 1164636 Test 108 rrfs_v1beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_wam_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_wam_debug -Checking test 109 control_wam_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_clm_lake_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/rap_clm_lake_debug +Checking test 109 rap_clm_lake_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 357.920736 + 0: The maximum resident set size (KB) = 1174056 + +Test 109 rap_clm_lake_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_flake_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/rap_flake_debug +Checking test 110 rap_flake_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 278.729948 + 0: The maximum resident set size (KB) = 1170348 + +Test 110 rap_flake_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_wam_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_wam_debug +Checking test 111 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 310.902856 - 0: The maximum resident set size (KB) = 522836 + 0: The total amount of wall time = 290.104195 + 0: The maximum resident set size (KB) = 529576 -Test 109 control_wam_debug PASS +Test 111 control_wam_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/regional_spp_sppt_shum_skeb_dyn32_phy32 -Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 112 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -3767,15 +3767,15 @@ Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 300.192800 - 0: The maximum resident set size (KB) = 1094528 + 0: The total amount of wall time = 252.177763 + 0: The maximum resident set size (KB) = 1081756 -Test 110 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS +Test 112 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rap_control_dyn32_phy32 -Checking test 111 rap_control_dyn32_phy32 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/rap_control_dyn32_phy32 +Checking test 113 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3821,15 +3821,15 @@ Checking test 111 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 409.977149 - 0: The maximum resident set size (KB) = 1001512 + 0: The total amount of wall time = 380.522400 + 0: The maximum resident set size (KB) = 992484 -Test 111 rap_control_dyn32_phy32 PASS +Test 113 rap_control_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hrrr_control_dyn32_phy32 -Checking test 112 hrrr_control_dyn32_phy32 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/hrrr_control_dyn32_phy32 +Checking test 114 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3842,48 +3842,48 @@ Checking test 112 hrrr_control_dyn32_phy32 results .... 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 = 199.697349 - 0: The maximum resident set size (KB) = 904376 - -Test 112 hrrr_control_dyn32_phy32 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rap_2threads_dyn32_phy32 -Checking test 113 rap_2threads_dyn32_phy32 results .... + 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 = 190.595317 + 0: The maximum resident set size (KB) = 954536 + +Test 114 hrrr_control_dyn32_phy32 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/rap_2threads_dyn32_phy32 +Checking test 115 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3929,15 +3929,15 @@ Checking test 113 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 430.549800 - 0: The maximum resident set size (KB) = 1023092 + 0: The total amount of wall time = 399.243986 + 0: The maximum resident set size (KB) = 976860 -Test 113 rap_2threads_dyn32_phy32 PASS +Test 115 rap_2threads_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hrrr_control_2threads_dyn32_phy32 -Checking test 114 hrrr_control_2threads_dyn32_phy32 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/hrrr_control_2threads_dyn32_phy32 +Checking test 116 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3950,48 +3950,48 @@ Checking test 114 hrrr_control_2threads_dyn32_phy32 results .... 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 = 205.844018 - 0: The maximum resident set size (KB) = 1004944 - -Test 114 hrrr_control_2threads_dyn32_phy32 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hrrr_control_decomp_dyn32_phy32 -Checking test 115 hrrr_control_decomp_dyn32_phy32 results .... + 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 = 162.685855 + 0: The maximum resident set size (KB) = 894768 + +Test 116 hrrr_control_2threads_dyn32_phy32 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/hrrr_control_decomp_dyn32_phy32 +Checking test 117 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4004,48 +4004,48 @@ Checking test 115 hrrr_control_decomp_dyn32_phy32 results .... 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 = 210.840531 - 0: The maximum resident set size (KB) = 905488 - -Test 115 hrrr_control_decomp_dyn32_phy32 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rap_restart_dyn32_phy32 -Checking test 116 rap_restart_dyn32_phy32 results .... + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 201.545103 + 0: The maximum resident set size (KB) = 915408 + +Test 117 hrrr_control_decomp_dyn32_phy32 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/rap_restart_dyn32_phy32 +Checking test 118 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -4083,61 +4083,29 @@ Checking test 116 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 283.640350 - 0: The maximum resident set size (KB) = 942716 + 0: The total amount of wall time = 282.885315 + 0: The maximum resident set size (KB) = 951624 -Test 116 rap_restart_dyn32_phy32 PASS +Test 118 rap_restart_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hrrr_control_restart_dyn32_phy32 -Checking test 117 hrrr_control_restart_dyn32_phy32 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/hrrr_control_restart_dyn32_phy32 +Checking test 119 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........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 = 102.336733 - 0: The maximum resident set size (KB) = 868344 + 0: The total amount of wall time = 99.751516 + 0: The maximum resident set size (KB) = 861328 -Test 117 hrrr_control_restart_dyn32_phy32 PASS +Test 119 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_dyn64_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rap_control_dyn64_phy32 -Checking test 118 rap_control_dyn64_phy32 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_dyn64_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/rap_control_dyn64_phy32 +Checking test 120 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4183,82 +4151,82 @@ Checking test 118 rap_control_dyn64_phy32 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 = 276.146607 - 0: The maximum resident set size (KB) = 972832 + 0: The total amount of wall time = 249.946333 + 0: The maximum resident set size (KB) = 966952 -Test 118 rap_control_dyn64_phy32 PASS +Test 120 rap_control_dyn64_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rap_control_debug_dyn32_phy32 -Checking test 119 rap_control_debug_dyn32_phy32 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_debug_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/rap_control_debug_dyn32_phy32 +Checking test 121 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.967615 - 0: The maximum resident set size (KB) = 1060872 + 0: The total amount of wall time = 281.746859 + 0: The maximum resident set size (KB) = 1051904 -Test 119 rap_control_debug_dyn32_phy32 PASS +Test 121 rap_control_debug_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hrrr_control_debug_dyn32_phy32 -Checking test 120 hrrr_control_debug_dyn32_phy32 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/hrrr_control_debug_dyn32_phy32 +Checking test 122 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 268.454857 - 0: The maximum resident set size (KB) = 1057460 + 0: The total amount of wall time = 268.654816 + 0: The maximum resident set size (KB) = 1063912 -Test 120 hrrr_control_debug_dyn32_phy32 PASS +Test 122 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/rap_control_debug_dyn64_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/rap_control_dyn64_phy32_debug -Checking test 121 rap_control_dyn64_phy32_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_debug_dyn64_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/rap_control_dyn64_phy32_debug +Checking test 123 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 285.853197 - 0: The maximum resident set size (KB) = 1092604 + 0: The total amount of wall time = 277.408220 + 0: The maximum resident set size (KB) = 1104344 -Test 121 rap_control_dyn64_phy32_debug PASS +Test 123 rap_control_dyn64_phy32_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hafs_regional_atm -Checking test 122 hafs_regional_atm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/hafs_regional_atm +Checking test 124 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 312.887134 - 0: The maximum resident set size (KB) = 1053460 + 0: The total amount of wall time = 271.588935 + 0: The maximum resident set size (KB) = 1012680 -Test 122 hafs_regional_atm PASS +Test 124 hafs_regional_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hafs_regional_atm_thompson_gfdlsf -Checking test 123 hafs_regional_atm_thompson_gfdlsf results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/hafs_regional_atm_thompson_gfdlsf +Checking test 125 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 467.225919 - 0: The maximum resident set size (KB) = 1424704 + 0: The total amount of wall time = 392.360520 + 0: The maximum resident set size (KB) = 1356432 -Test 123 hafs_regional_atm_thompson_gfdlsf PASS +Test 125 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_ocn -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hafs_regional_atm_ocn -Checking test 124 hafs_regional_atm_ocn results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_atm_ocn +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/hafs_regional_atm_ocn +Checking test 126 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4266,15 +4234,15 @@ Checking test 124 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 417.792851 - 0: The maximum resident set size (KB) = 1230944 + 0: The total amount of wall time = 377.122036 + 0: The maximum resident set size (KB) = 1226964 -Test 124 hafs_regional_atm_ocn PASS +Test 126 hafs_regional_atm_ocn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_wav -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hafs_regional_atm_wav -Checking test 125 hafs_regional_atm_wav results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_atm_wav +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/hafs_regional_atm_wav +Checking test 127 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing 20190829.060000.out_grd.ww3 .........OK @@ -4282,15 +4250,15 @@ Checking test 125 hafs_regional_atm_wav 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 = 800.225245 - 0: The maximum resident set size (KB) = 1260232 + 0: The total amount of wall time = 726.150968 + 0: The maximum resident set size (KB) = 1258888 -Test 125 hafs_regional_atm_wav PASS +Test 127 hafs_regional_atm_wav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_atm_ocn_wav -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hafs_regional_atm_ocn_wav -Checking test 126 hafs_regional_atm_ocn_wav results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_atm_ocn_wav +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/hafs_regional_atm_ocn_wav +Checking test 128 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4300,29 +4268,29 @@ Checking test 126 hafs_regional_atm_ocn_wav 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 = 835.929364 - 0: The maximum resident set size (KB) = 1279908 + 0: The total amount of wall time = 835.159281 + 0: The maximum resident set size (KB) = 1277600 -Test 126 hafs_regional_atm_ocn_wav PASS +Test 128 hafs_regional_atm_ocn_wav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hafs_regional_1nest_atm -Checking test 127 hafs_regional_1nest_atm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/hafs_regional_1nest_atm +Checking test 129 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 381.244364 - 0: The maximum resident set size (KB) = 505840 + 0: The total amount of wall time = 361.515664 + 0: The maximum resident set size (KB) = 504652 -Test 127 hafs_regional_1nest_atm PASS +Test 129 hafs_regional_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hafs_regional_telescopic_2nests_atm -Checking test 128 hafs_regional_telescopic_2nests_atm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/hafs_regional_telescopic_2nests_atm +Checking test 130 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4330,29 +4298,29 @@ Checking test 128 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 414.924558 - 0: The maximum resident set size (KB) = 462512 + 0: The total amount of wall time = 415.821605 + 0: The maximum resident set size (KB) = 482208 -Test 128 hafs_regional_telescopic_2nests_atm PASS +Test 130 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hafs_global_1nest_atm -Checking test 129 hafs_global_1nest_atm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_global_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/hafs_global_1nest_atm +Checking test 131 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 177.796777 - 0: The maximum resident set size (KB) = 353644 + 0: The total amount of wall time = 174.971790 + 0: The maximum resident set size (KB) = 303976 -Test 129 hafs_global_1nest_atm PASS +Test 131 hafs_global_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_multiple_4nests_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hafs_global_multiple_4nests_atm -Checking test 130 hafs_global_multiple_4nests_atm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_global_multiple_4nests_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/hafs_global_multiple_4nests_atm +Checking test 132 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4369,15 +4337,15 @@ Checking test 130 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 458.244974 - 0: The maximum resident set size (KB) = 424220 + 0: The total amount of wall time = 458.439277 + 0: The maximum resident set size (KB) = 426964 -Test 130 hafs_global_multiple_4nests_atm PASS +Test 132 hafs_global_multiple_4nests_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hafs_regional_specified_moving_1nest_atm -Checking test 131 hafs_regional_specified_moving_1nest_atm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/hafs_regional_specified_moving_1nest_atm +Checking test 133 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4385,29 +4353,29 @@ Checking test 131 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 228.732503 - 0: The maximum resident set size (KB) = 523224 + 0: The total amount of wall time = 231.971504 + 0: The maximum resident set size (KB) = 524236 -Test 131 hafs_regional_specified_moving_1nest_atm PASS +Test 133 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hafs_regional_storm_following_1nest_atm -Checking test 132 hafs_regional_storm_following_1nest_atm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/hafs_regional_storm_following_1nest_atm +Checking test 134 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 217.123713 - 0: The maximum resident set size (KB) = 524396 + 0: The total amount of wall time = 220.259679 + 0: The maximum resident set size (KB) = 526660 -Test 132 hafs_regional_storm_following_1nest_atm PASS +Test 134 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hafs_regional_storm_following_1nest_atm_ocn -Checking test 133 hafs_regional_storm_following_1nest_atm_ocn results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/hafs_regional_storm_following_1nest_atm_ocn +Checking test 135 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4415,43 +4383,43 @@ Checking test 133 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 286.415148 - 0: The maximum resident set size (KB) = 567684 + 0: The total amount of wall time = 285.191864 + 0: The maximum resident set size (KB) = 521636 -Test 133 hafs_regional_storm_following_1nest_atm_ocn PASS +Test 135 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_global_storm_following_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hafs_global_storm_following_1nest_atm -Checking test 134 hafs_global_storm_following_1nest_atm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_global_storm_following_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/hafs_global_storm_following_1nest_atm +Checking test 136 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 68.068170 - 0: The maximum resident set size (KB) = 372676 + 0: The total amount of wall time = 68.422998 + 0: The maximum resident set size (KB) = 369448 -Test 134 hafs_global_storm_following_1nest_atm PASS +Test 136 hafs_global_storm_following_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hafs_regional_storm_following_1nest_atm_ocn_debug -Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/hafs_regional_storm_following_1nest_atm_ocn_debug +Checking test 137 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 767.205881 - 0: The maximum resident set size (KB) = 586256 + 0: The total amount of wall time = 743.811654 + 0: The maximum resident set size (KB) = 536692 -Test 135 hafs_regional_storm_following_1nest_atm_ocn_debug PASS +Test 137 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hafs_regional_storm_following_1nest_atm_ocn_wav -Checking test 136 hafs_regional_storm_following_1nest_atm_ocn_wav results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 138 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4461,162 +4429,162 @@ Checking test 136 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 535.659874 - 0: The maximum resident set size (KB) = 620276 + 0: The total amount of wall time = 537.495301 + 0: The maximum resident set size (KB) = 589780 -Test 136 hafs_regional_storm_following_1nest_atm_ocn_wav PASS +Test 138 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_docn -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hafs_regional_docn -Checking test 137 hafs_regional_docn results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_docn +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/hafs_regional_docn +Checking test 139 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 361.940368 - 0: The maximum resident set size (KB) = 1234596 + 0: The total amount of wall time = 363.241594 + 0: The maximum resident set size (KB) = 1244148 -Test 137 hafs_regional_docn PASS +Test 139 hafs_regional_docn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_docn_oisst -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hafs_regional_docn_oisst -Checking test 138 hafs_regional_docn_oisst results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_docn_oisst +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/hafs_regional_docn_oisst +Checking test 140 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 359.957137 - 0: The maximum resident set size (KB) = 1228128 + 0: The total amount of wall time = 360.868074 + 0: The maximum resident set size (KB) = 1222052 -Test 138 hafs_regional_docn_oisst PASS +Test 140 hafs_regional_docn_oisst PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/hafs_regional_datm_cdeps -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/hafs_regional_datm_cdeps -Checking test 139 hafs_regional_datm_cdeps results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_datm_cdeps +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/hafs_regional_datm_cdeps +Checking test 141 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 935.386400 - 0: The maximum resident set size (KB) = 1038440 + 0: The total amount of wall time = 930.960620 + 0: The maximum resident set size (KB) = 1041076 -Test 139 hafs_regional_datm_cdeps PASS +Test 141 hafs_regional_datm_cdeps PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/datm_cdeps_control_cfsr -Checking test 140 datm_cdeps_control_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/datm_cdeps_control_cfsr +Checking test 142 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.301524 - 0: The maximum resident set size (KB) = 1069068 + 0: The total amount of wall time = 148.457890 + 0: The maximum resident set size (KB) = 1047996 -Test 140 datm_cdeps_control_cfsr PASS +Test 142 datm_cdeps_control_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/datm_cdeps_restart_cfsr -Checking test 141 datm_cdeps_restart_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/datm_cdeps_restart_cfsr +Checking test 143 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.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.795551 - 0: The maximum resident set size (KB) = 1027020 + 0: The total amount of wall time = 92.066213 + 0: The maximum resident set size (KB) = 1010876 -Test 141 datm_cdeps_restart_cfsr PASS +Test 143 datm_cdeps_restart_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/datm_cdeps_control_gefs -Checking test 142 datm_cdeps_control_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_control_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/datm_cdeps_control_gefs +Checking test 144 datm_cdeps_control_gefs 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.340231 - 0: The maximum resident set size (KB) = 967048 + 0: The total amount of wall time = 140.829929 + 0: The maximum resident set size (KB) = 969160 -Test 142 datm_cdeps_control_gefs PASS +Test 144 datm_cdeps_control_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_iau_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/datm_cdeps_iau_gefs -Checking test 143 datm_cdeps_iau_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_iau_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/datm_cdeps_iau_gefs +Checking test 145 datm_cdeps_iau_gefs 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.731199 - 0: The maximum resident set size (KB) = 960924 + 0: The total amount of wall time = 146.035659 + 0: The maximum resident set size (KB) = 967256 -Test 143 datm_cdeps_iau_gefs PASS +Test 145 datm_cdeps_iau_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_stochy_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/datm_cdeps_stochy_gefs -Checking test 144 datm_cdeps_stochy_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_stochy_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/datm_cdeps_stochy_gefs +Checking test 146 datm_cdeps_stochy_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.690260 - 0: The maximum resident set size (KB) = 970292 + 0: The total amount of wall time = 150.268282 + 0: The maximum resident set size (KB) = 954664 -Test 144 datm_cdeps_stochy_gefs PASS +Test 146 datm_cdeps_stochy_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_ciceC_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/datm_cdeps_ciceC_cfsr -Checking test 145 datm_cdeps_ciceC_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_ciceC_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/datm_cdeps_ciceC_cfsr +Checking test 147 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.904658 - 0: The maximum resident set size (KB) = 1065564 + 0: The total amount of wall time = 143.645725 + 0: The maximum resident set size (KB) = 1069520 -Test 145 datm_cdeps_ciceC_cfsr PASS +Test 147 datm_cdeps_ciceC_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_bulk_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/datm_cdeps_bulk_cfsr -Checking test 146 datm_cdeps_bulk_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_bulk_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/datm_cdeps_bulk_cfsr +Checking test 148 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 144.742426 - 0: The maximum resident set size (KB) = 1077088 + 0: The total amount of wall time = 148.787066 + 0: The maximum resident set size (KB) = 1052492 -Test 146 datm_cdeps_bulk_cfsr PASS +Test 148 datm_cdeps_bulk_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_bulk_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/datm_cdeps_bulk_gefs -Checking test 147 datm_cdeps_bulk_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_bulk_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/datm_cdeps_bulk_gefs +Checking test 149 datm_cdeps_bulk_gefs 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.280203 - 0: The maximum resident set size (KB) = 964556 + 0: The total amount of wall time = 141.630846 + 0: The maximum resident set size (KB) = 984592 -Test 147 datm_cdeps_bulk_gefs PASS +Test 149 datm_cdeps_bulk_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_mx025_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/datm_cdeps_mx025_cfsr -Checking test 148 datm_cdeps_mx025_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_mx025_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/datm_cdeps_mx025_cfsr +Checking test 150 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4624,15 +4592,15 @@ Checking test 148 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 432.216900 - 0: The maximum resident set size (KB) = 883584 + 0: The total amount of wall time = 440.628941 + 0: The maximum resident set size (KB) = 878228 -Test 148 datm_cdeps_mx025_cfsr PASS +Test 150 datm_cdeps_mx025_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_mx025_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/datm_cdeps_mx025_gefs -Checking test 149 datm_cdeps_mx025_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_mx025_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/datm_cdeps_mx025_gefs +Checking test 151 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4640,78 +4608,78 @@ Checking test 149 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 452.654056 - 0: The maximum resident set size (KB) = 929892 + 0: The total amount of wall time = 431.519253 + 0: The maximum resident set size (KB) = 928924 -Test 149 datm_cdeps_mx025_gefs PASS +Test 151 datm_cdeps_mx025_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/datm_cdeps_multiple_files_cfsr -Checking test 150 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/datm_cdeps_multiple_files_cfsr +Checking test 152 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 143.535851 - 0: The maximum resident set size (KB) = 1074024 + 0: The total amount of wall time = 145.081202 + 0: The maximum resident set size (KB) = 1068100 -Test 150 datm_cdeps_multiple_files_cfsr PASS +Test 152 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/datm_cdeps_3072x1536_cfsr -Checking test 151 datm_cdeps_3072x1536_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/datm_cdeps_3072x1536_cfsr +Checking test 153 datm_cdeps_3072x1536_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 200.885737 - 0: The maximum resident set size (KB) = 2357588 + 0: The total amount of wall time = 193.706361 + 0: The maximum resident set size (KB) = 2371044 -Test 151 datm_cdeps_3072x1536_cfsr PASS +Test 153 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_gfs -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/datm_cdeps_gfs -Checking test 152 datm_cdeps_gfs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_gfs +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/datm_cdeps_gfs +Checking test 154 datm_cdeps_gfs 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 = 200.305562 - 0: The maximum resident set size (KB) = 2352240 + 0: The total amount of wall time = 195.199536 + 0: The maximum resident set size (KB) = 2366516 -Test 152 datm_cdeps_gfs PASS +Test 154 datm_cdeps_gfs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_debug_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/datm_cdeps_debug_cfsr -Checking test 153 datm_cdeps_debug_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_debug_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/datm_cdeps_debug_cfsr +Checking test 155 datm_cdeps_debug_cfsr 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 = 358.782533 - 0: The maximum resident set size (KB) = 995112 + 0: The total amount of wall time = 361.986436 + 0: The maximum resident set size (KB) = 984052 -Test 153 datm_cdeps_debug_cfsr PASS +Test 155 datm_cdeps_debug_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_control_cfsr_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/datm_cdeps_control_cfsr_faster -Checking test 154 datm_cdeps_control_cfsr_faster results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_control_cfsr_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/datm_cdeps_control_cfsr_faster +Checking test 156 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.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.496396 - 0: The maximum resident set size (KB) = 1028396 + 0: The total amount of wall time = 151.273008 + 0: The maximum resident set size (KB) = 1052460 -Test 154 datm_cdeps_control_cfsr_faster PASS +Test 156 datm_cdeps_control_cfsr_faster PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_lnd_gswp3 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/datm_cdeps_lnd_gswp3 -Checking test 155 datm_cdeps_lnd_gswp3 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_lnd_gswp3 +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/datm_cdeps_lnd_gswp3 +Checking test 157 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4719,15 +4687,15 @@ Checking test 155 datm_cdeps_lnd_gswp3 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.421626 - 0: The maximum resident set size (KB) = 260444 + 0: The total amount of wall time = 8.241493 + 0: The maximum resident set size (KB) = 263976 -Test 155 datm_cdeps_lnd_gswp3 PASS +Test 157 datm_cdeps_lnd_gswp3 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/datm_cdeps_lnd_gswp3 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/datm_cdeps_lnd_gswp3_rst -Checking test 156 datm_cdeps_lnd_gswp3_rst results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_lnd_gswp3 +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/datm_cdeps_lnd_gswp3_rst +Checking test 158 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4735,15 +4703,15 @@ Checking test 156 datm_cdeps_lnd_gswp3_rst 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.881271 - 0: The maximum resident set size (KB) = 273100 + 0: The total amount of wall time = 24.169818 + 0: The maximum resident set size (KB) = 259232 -Test 156 datm_cdeps_lnd_gswp3_rst PASS +Test 158 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_p8_atmlnd_sbs -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_p8_atmlnd_sbs -Checking test 157 control_p8_atmlnd_sbs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8_atmlnd_sbs +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_p8_atmlnd_sbs +Checking test 159 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -4827,15 +4795,15 @@ Checking test 157 control_p8_atmlnd_sbs 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 = 208.973431 - 0: The maximum resident set size (KB) = 1615744 + 0: The total amount of wall time = 210.457047 + 0: The maximum resident set size (KB) = 1606380 -Test 157 control_p8_atmlnd_sbs PASS +Test 159 control_p8_atmlnd_sbs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/atmwav_control_noaero_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/atmwav_control_noaero_p8 -Checking test 158 atmwav_control_noaero_p8 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/atmwav_control_noaero_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/atmwav_control_noaero_p8 +Checking test 160 atmwav_control_noaero_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -4877,15 +4845,15 @@ Checking test 158 atmwav_control_noaero_p8 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 = 95.535265 - 0: The maximum resident set size (KB) = 1637160 + 0: The total amount of wall time = 97.265316 + 0: The maximum resident set size (KB) = 1638368 -Test 158 atmwav_control_noaero_p8 PASS +Test 160 atmwav_control_noaero_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/control_atmwav -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/control_atmwav -Checking test 159 control_atmwav results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_atmwav +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_atmwav +Checking test 161 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -4928,15 +4896,15 @@ Checking test 159 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 88.006758 - 0: The maximum resident set size (KB) = 662596 + 0: The total amount of wall time = 89.159640 + 0: The maximum resident set size (KB) = 608548 -Test 159 control_atmwav PASS +Test 161 control_atmwav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/atmaero_control_p8 -Checking test 160 atmaero_control_p8 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/atmaero_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/atmaero_control_p8 +Checking test 162 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4979,15 +4947,15 @@ Checking test 160 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 231.506948 - 0: The maximum resident set size (KB) = 2901316 + 0: The total amount of wall time = 231.196465 + 0: The maximum resident set size (KB) = 2982904 -Test 160 atmaero_control_p8 PASS +Test 162 atmaero_control_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8_rad -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/atmaero_control_p8_rad -Checking test 161 atmaero_control_p8_rad results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/atmaero_control_p8_rad +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/atmaero_control_p8_rad +Checking test 163 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5030,15 +4998,15 @@ Checking test 161 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 280.125635 - 0: The maximum resident set size (KB) = 3052032 + 0: The total amount of wall time = 283.833649 + 0: The maximum resident set size (KB) = 3048376 -Test 161 atmaero_control_p8_rad PASS +Test 163 atmaero_control_p8_rad PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/atmaero_control_p8_rad_micro -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/atmaero_control_p8_rad_micro -Checking test 162 atmaero_control_p8_rad_micro results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/atmaero_control_p8_rad_micro +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/atmaero_control_p8_rad_micro +Checking test 164 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5081,15 +5049,15 @@ Checking test 162 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 286.367837 - 0: The maximum resident set size (KB) = 3049360 + 0: The total amount of wall time = 286.523156 + 0: The maximum resident set size (KB) = 3062008 -Test 162 atmaero_control_p8_rad_micro PASS +Test 164 atmaero_control_p8_rad_micro PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/regional_atmaq -Checking test 163 regional_atmaq results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_atmaq +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/regional_atmaq +Checking test 165 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -5104,15 +5072,15 @@ Checking test 163 regional_atmaq 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.820746 - 0: The maximum resident set size (KB) = 1479892 + 0: The total amount of wall time = 635.522240 + 0: The maximum resident set size (KB) = 1482204 -Test 163 regional_atmaq PASS +Test 165 regional_atmaq PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/regional_atmaq_debug -Checking test 164 regional_atmaq_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_atmaq_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/regional_atmaq_debug +Checking test 166 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -5125,15 +5093,15 @@ Checking test 164 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1240.038893 - 0: The maximum resident set size (KB) = 1398692 + 0: The total amount of wall time = 1243.448372 + 0: The maximum resident set size (KB) = 1403592 -Test 164 regional_atmaq_debug PASS +Test 166 regional_atmaq_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230418/INTEL/regional_atmaq_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1702/stmp/jongkim/FV3_RT/rt_137759/regional_atmaq_faster -Checking test 165 regional_atmaq_faster results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_atmaq_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/regional_atmaq_faster +Checking test 167 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -5148,12 +5116,12 @@ Checking test 165 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 545.173445 - 0: The maximum resident set size (KB) = 1481952 + 0: The total amount of wall time = 555.725625 + 0: The maximum resident set size (KB) = 1303056 -Test 165 regional_atmaq_faster PASS +Test 167 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Tue Apr 25 10:19:11 CDT 2023 -Elapsed time: 01h:15m:56s. Have a nice day! +Wed Apr 26 22:20:05 CDT 2023 +Elapsed time: 01h:17m:07s. Have a nice day! diff --git a/tests/RegressionTests_wcoss2.intel.log b/tests/RegressionTests_wcoss2.intel.log index 5cff1d5aceb..4a1af64937b 100644 --- a/tests/RegressionTests_wcoss2.intel.log +++ b/tests/RegressionTests_wcoss2.intel.log @@ -1,34 +1,34 @@ -Tue Apr 25 01:34:50 UTC 2023 +Thu Apr 27 14:14:03 UTC 2023 Start Regression test -Compile 001 elapsed time 813 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 1766 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 632 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 533 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 005 elapsed time 1901 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 982 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 1045 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 008 elapsed time 1163 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 493 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 1046 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 696 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 826 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 013 elapsed time 310 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 772 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 015 elapsed time 632 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 225 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 017 elapsed time 680 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 987 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 019 elapsed time 423 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 1122 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 1149 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 022 elapsed time 826 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 497 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 024 elapsed time 457 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 025 elapsed time 970 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8_mixedmode -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/cpld_control_p8_mixedmode +Compile 001 elapsed time 1378 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1371 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 1024 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 742 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 005 elapsed time 749 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 1856 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 1349 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 008 elapsed time 1918 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 1086 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 922 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 2270 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 1196 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 013 elapsed time 579 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 014 elapsed time 822 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 701 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 588 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 017 elapsed time 1303 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 895 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 019 elapsed time 502 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 723 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 830 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 022 elapsed time 780 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 676 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 024 elapsed time 573 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 025 elapsed time 621 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8_mixedmode +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -93,14 +93,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 340.001886 -The maximum resident set size (KB) = 2953484 +The total amount of wall time = 335.815073 +The maximum resident set size (KB) = 2961416 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/cpld_control_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/cpld_control_p8 Checking test 002 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -165,14 +165,14 @@ Checking test 002 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 391.877435 -The maximum resident set size (KB) = 2983508 +The total amount of wall time = 388.569137 +The maximum resident set size (KB) = 2982908 Test 002 cpld_control_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/cpld_restart_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/cpld_restart_p8 Checking test 003 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -225,14 +225,14 @@ Checking test 003 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 235.956127 -The maximum resident set size (KB) = 2873452 +The total amount of wall time = 239.740946 +The maximum resident set size (KB) = 2873168 Test 003 cpld_restart_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/cpld_control_qr_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/cpld_control_qr_p8 Checking test 004 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -297,14 +297,14 @@ Checking test 004 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 393.197844 -The maximum resident set size (KB) = 2994132 +The total amount of wall time = 390.248558 +The maximum resident set size (KB) = 2996424 Test 004 cpld_control_qr_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/cpld_restart_qr_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/cpld_restart_qr_p8 Checking test 005 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -357,14 +357,14 @@ Checking test 005 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 235.985489 -The maximum resident set size (KB) = 2884632 +The total amount of wall time = 242.225425 +The maximum resident set size (KB) = 2884844 Test 005 cpld_restart_qr_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/cpld_2threads_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/cpld_2threads_p8 Checking test 006 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -417,14 +417,14 @@ Checking test 006 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 372.954929 -The maximum resident set size (KB) = 3286324 +The total amount of wall time = 370.625686 +The maximum resident set size (KB) = 3289676 Test 006 cpld_2threads_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/cpld_decomp_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/cpld_decomp_p8 Checking test 007 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -477,14 +477,14 @@ Checking test 007 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 386.889054 -The maximum resident set size (KB) = 2982984 +The total amount of wall time = 386.023322 +The maximum resident set size (KB) = 2982316 Test 007 cpld_decomp_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/cpld_mpi_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/cpld_mpi_p8 Checking test 008 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -537,14 +537,14 @@ Checking test 008 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 318.863659 -The maximum resident set size (KB) = 2922880 +The total amount of wall time = 320.069462 +The maximum resident set size (KB) = 2918360 Test 008 cpld_mpi_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_ciceC_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/cpld_control_ciceC_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_ciceC_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/cpld_control_ciceC_p8 Checking test 009 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -609,14 +609,14 @@ Checking test 009 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 390.747703 -The maximum resident set size (KB) = 2987300 +The total amount of wall time = 388.577199 +The maximum resident set size (KB) = 2983420 Test 009 cpld_control_ciceC_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_bmark_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/cpld_bmark_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_bmark_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/cpld_bmark_p8 Checking test 010 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -664,14 +664,14 @@ Checking test 010 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 945.765071 -The maximum resident set size (KB) = 3922176 +The total amount of wall time = 955.262160 +The maximum resident set size (KB) = 3924400 Test 010 cpld_bmark_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_bmark_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/cpld_restart_bmark_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_bmark_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/cpld_restart_bmark_p8 Checking test 011 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -719,14 +719,14 @@ Checking test 011 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 671.830979 -The maximum resident set size (KB) = 3896688 +The total amount of wall time = 652.364654 +The maximum resident set size (KB) = 3895992 Test 011 cpld_restart_bmark_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/cpld_control_noaero_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/cpld_control_noaero_p8 Checking test 012 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -790,14 +790,14 @@ Checking test 012 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 284.112706 -The maximum resident set size (KB) = 1575508 +The total amount of wall time = 286.363872 +The maximum resident set size (KB) = 1575532 Test 012 cpld_control_noaero_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/cpld_control_nowave_noaero_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_c96_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/cpld_control_nowave_noaero_p8 Checking test 013 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -859,14 +859,14 @@ Checking test 013 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 302.515510 -The maximum resident set size (KB) = 1628184 +The total amount of wall time = 300.690399 +The maximum resident set size (KB) = 1624492 Test 013 cpld_control_nowave_noaero_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/cpld_control_noaero_p8_agrid +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_noaero_p8_agrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/cpld_control_noaero_p8_agrid Checking test 014 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -928,14 +928,14 @@ Checking test 014 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 308.277910 -The maximum resident set size (KB) = 1623840 +The total amount of wall time = 309.837318 +The maximum resident set size (KB) = 1627088 Test 014 cpld_control_noaero_p8_agrid PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/cpld_control_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/cpld_control_c48 Checking test 015 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -985,14 +985,14 @@ Checking test 015 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 440.804071 -The maximum resident set size (KB) = 2640584 +The total amount of wall time = 439.803041 +The maximum resident set size (KB) = 2639128 Test 015 cpld_control_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/cpld_warmstart_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/cpld_warmstart_c48 Checking test 016 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1042,14 +1042,14 @@ Checking test 016 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 125.741119 -The maximum resident set size (KB) = 2656936 +The total amount of wall time = 130.108512 +The maximum resident set size (KB) = 2660036 Test 016 cpld_warmstart_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/cpld_restart_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/cpld_restart_c48 Checking test 017 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1099,14 +1099,14 @@ Checking test 017 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 71.214394 -The maximum resident set size (KB) = 2071140 +The total amount of wall time = 73.062633 +The maximum resident set size (KB) = 2077128 Test 017 cpld_restart_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/cpld_control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/cpld_control_p8_faster +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/cpld_control_p8_faster Checking test 018 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1171,14 +1171,14 @@ Checking test 018 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 384.508364 -The maximum resident set size (KB) = 2985052 +The total amount of wall time = 385.626592 +The maximum resident set size (KB) = 2984584 Test 018 cpld_control_p8_faster PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_flake -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_flake +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_flake +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_flake Checking test 019 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1189,14 +1189,14 @@ Checking test 019 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 215.676452 -The maximum resident set size (KB) = 568584 +The total amount of wall time = 213.859511 +The maximum resident set size (KB) = 567424 Test 019 control_flake PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_CubedSphereGrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_CubedSphereGrid +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_CubedSphereGrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_CubedSphereGrid Checking test 020 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1223,14 +1223,14 @@ Checking test 020 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 130.713541 -The maximum resident set size (KB) = 520448 +The total amount of wall time = 130.151950 +The maximum resident set size (KB) = 518192 Test 020 control_CubedSphereGrid PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_latlon -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_latlon +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_latlon +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_latlon Checking test 021 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1241,14 +1241,14 @@ Checking test 021 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 133.657363 -The maximum resident set size (KB) = 519504 +The total amount of wall time = 132.534718 +The maximum resident set size (KB) = 518304 Test 021 control_latlon PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_wrtGauss_netcdf_parallel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_wrtGauss_netcdf_parallel Checking test 022 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1259,14 +1259,14 @@ Checking test 022 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.388301 -The maximum resident set size (KB) = 517448 +The total amount of wall time = 134.977936 +The maximum resident set size (KB) = 520892 Test 022 control_wrtGauss_netcdf_parallel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_c48 Checking test 023 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1305,14 +1305,14 @@ Checking test 023 control_c48 results .... 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.192590 -The maximum resident set size (KB) = 680900 +The total amount of wall time = 327.422663 +The maximum resident set size (KB) = 679784 Test 023 control_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_c192 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_c192 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_c192 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_c192 Checking test 024 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1323,14 +1323,14 @@ Checking test 024 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 528.809717 -The maximum resident set size (KB) = 621520 +The total amount of wall time = 531.238768 +The maximum resident set size (KB) = 620252 Test 024 control_c192 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_c384 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_c384 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_c384 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_c384 Checking test 025 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1341,14 +1341,14 @@ Checking test 025 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 566.547287 -The maximum resident set size (KB) = 935640 +The total amount of wall time = 566.502818 +The maximum resident set size (KB) = 929256 Test 025 control_c384 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_c384gdas -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_c384gdas +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_c384gdas +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_c384gdas Checking test 026 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1391,14 +1391,14 @@ Checking test 026 control_c384gdas 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 = 495.644387 -The maximum resident set size (KB) = 1064724 +The total amount of wall time = 500.068579 +The maximum resident set size (KB) = 1069524 Test 026 control_c384gdas PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_stochy +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_stochy Checking test 027 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1409,28 +1409,28 @@ Checking test 027 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 90.294792 -The maximum resident set size (KB) = 525916 +The total amount of wall time = 91.505887 +The maximum resident set size (KB) = 522240 Test 027 control_stochy PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_stochy_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_stochy_restart Checking test 028 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 50.322031 -The maximum resident set size (KB) = 296000 +The total amount of wall time = 50.251195 +The maximum resident set size (KB) = 294512 Test 028 control_stochy_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_lndp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_lndp Checking test 029 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1441,14 +1441,14 @@ Checking test 029 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 83.224283 -The maximum resident set size (KB) = 522204 +The total amount of wall time = 84.537827 +The maximum resident set size (KB) = 523984 Test 029 control_lndp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_iovr4 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_iovr4 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_iovr4 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_iovr4 Checking test 030 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1463,14 +1463,14 @@ Checking test 030 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 136.468942 -The maximum resident set size (KB) = 520820 +The total amount of wall time = 136.066746 +The maximum resident set size (KB) = 518120 Test 030 control_iovr4 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_iovr5 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_iovr5 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_iovr5 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_iovr5 Checking test 031 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1485,14 +1485,14 @@ Checking test 031 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.818032 -The maximum resident set size (KB) = 522432 +The total amount of wall time = 136.478866 +The maximum resident set size (KB) = 522128 Test 031 control_iovr5 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_p8 Checking test 032 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1539,14 +1539,14 @@ Checking test 032 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 180.231538 -The maximum resident set size (KB) = 1488380 +The total amount of wall time = 181.507733 +The maximum resident set size (KB) = 1492996 Test 032 control_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_restart_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_restart_p8 Checking test 033 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1585,14 +1585,14 @@ Checking test 033 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 105.972900 -The maximum resident set size (KB) = 659764 +The total amount of wall time = 106.155458 +The maximum resident set size (KB) = 660656 Test 033 control_restart_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_qr_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_qr_p8 Checking test 034 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1639,14 +1639,14 @@ Checking test 034 control_qr_p8 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 = 179.075772 -The maximum resident set size (KB) = 1494784 +The total amount of wall time = 178.596229 +The maximum resident set size (KB) = 1504380 Test 034 control_qr_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_restart_qr_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_restart_qr_p8 Checking test 035 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1685,14 +1685,14 @@ Checking test 035 control_restart_qr_p8 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 = 105.970015 -The maximum resident set size (KB) = 668788 +The total amount of wall time = 103.541841 +The maximum resident set size (KB) = 667340 Test 035 control_restart_qr_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_decomp_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_decomp_p8 Checking test 036 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1735,14 +1735,14 @@ Checking test 036 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 182.475428 -The maximum resident set size (KB) = 1489336 +The total amount of wall time = 181.859846 +The maximum resident set size (KB) = 1488104 Test 036 control_decomp_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_2threads_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_2threads_p8 Checking test 037 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1785,14 +1785,14 @@ Checking test 037 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 157.310533 -The maximum resident set size (KB) = 1575452 +The total amount of wall time = 157.487654 +The maximum resident set size (KB) = 1578000 Test 037 control_2threads_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_p8_lndp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_p8_lndp Checking test 038 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1811,14 +1811,14 @@ Checking test 038 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 321.669075 -The maximum resident set size (KB) = 1487980 +The total amount of wall time = 322.337358 +The maximum resident set size (KB) = 1492720 Test 038 control_p8_lndp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8_rrtmgp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_p8_rrtmgp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8_rrtmgp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_p8_rrtmgp Checking test 039 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1865,14 +1865,14 @@ Checking test 039 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 236.029674 -The maximum resident set size (KB) = 1550064 +The total amount of wall time = 235.835464 +The maximum resident set size (KB) = 1553648 Test 039 control_p8_rrtmgp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8_mynn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_p8_mynn +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8_mynn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_p8_mynn Checking test 040 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1919,14 +1919,14 @@ Checking test 040 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 181.534677 -The maximum resident set size (KB) = 1486308 +The total amount of wall time = 181.636600 +The maximum resident set size (KB) = 1487880 Test 040 control_p8_mynn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/merra2_thompson -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/merra2_thompson +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/merra2_thompson +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/merra2_thompson Checking test 041 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1973,14 +1973,14 @@ Checking test 041 merra2_thompson results .... 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.300003 -The maximum resident set size (KB) = 1497852 +The total amount of wall time = 206.786285 +The maximum resident set size (KB) = 1497576 Test 041 merra2_thompson PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/regional_control +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/regional_control Checking test 042 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1991,28 +1991,28 @@ Checking test 042 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 292.945252 -The maximum resident set size (KB) = 660052 +The total amount of wall time = 294.547691 +The maximum resident set size (KB) = 659200 Test 042 regional_control PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/regional_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/regional_restart Checking test 043 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 164.919689 -The maximum resident set size (KB) = 654936 +The total amount of wall time = 169.566599 +The maximum resident set size (KB) = 657108 Test 043 regional_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/regional_control_qr +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/regional_control_qr Checking test 044 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2023,28 +2023,28 @@ Checking test 044 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 293.707452 -The maximum resident set size (KB) = 659648 +The total amount of wall time = 295.106076 +The maximum resident set size (KB) = 659176 Test 044 regional_control_qr PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/regional_restart_qr +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/regional_restart_qr Checking test 045 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 161.915663 -The maximum resident set size (KB) = 660728 +The total amount of wall time = 168.623725 +The maximum resident set size (KB) = 655168 Test 045 regional_restart_qr PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/regional_decomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/regional_decomp Checking test 046 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2055,14 +2055,14 @@ Checking test 046 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 310.196459 -The maximum resident set size (KB) = 658016 +The total amount of wall time = 308.711097 +The maximum resident set size (KB) = 658696 Test 046 regional_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/regional_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/regional_2threads Checking test 047 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2073,14 +2073,14 @@ Checking test 047 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 181.326331 -The maximum resident set size (KB) = 697080 +The total amount of wall time = 182.206879 +The maximum resident set size (KB) = 704300 Test 047 regional_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_noquilt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/regional_noquilt +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_noquilt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/regional_noquilt Checking test 048 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2088,28 +2088,28 @@ Checking test 048 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 317.633157 -The maximum resident set size (KB) = 651488 +The total amount of wall time = 310.900457 +The maximum resident set size (KB) = 650636 Test 048 regional_noquilt PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/regional_netcdf_parallel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/regional_netcdf_parallel Checking test 049 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK -The total amount of wall time = 286.236683 -The maximum resident set size (KB) = 654196 +The total amount of wall time = 288.258145 +The maximum resident set size (KB) = 655180 Test 049 regional_netcdf_parallel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/regional_2dwrtdecomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/regional_2dwrtdecomp Checking test 050 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2120,14 +2120,14 @@ Checking test 050 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 290.824230 -The maximum resident set size (KB) = 655852 +The total amount of wall time = 296.437668 +The maximum resident set size (KB) = 658704 Test 050 regional_2dwrtdecomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/fv3_regional_wofs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/regional_wofs +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/fv3_regional_wofs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/regional_wofs Checking test 051 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2138,14 +2138,14 @@ Checking test 051 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 370.850743 -The maximum resident set size (KB) = 346728 +The total amount of wall time = 368.265415 +The maximum resident set size (KB) = 345820 Test 051 regional_wofs PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rap_control +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/rap_control Checking test 052 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2192,14 +2192,14 @@ Checking test 052 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 426.408955 -The maximum resident set size (KB) = 897632 +The total amount of wall time = 421.966073 +The maximum resident set size (KB) = 896768 Test 052 rap_control PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/regional_spp_sppt_shum_skeb +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_spp_sppt_shum_skeb +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/regional_spp_sppt_shum_skeb Checking test 053 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2210,14 +2210,14 @@ Checking test 053 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 246.958778 -The maximum resident set size (KB) = 983776 +The total amount of wall time = 248.859687 +The maximum resident set size (KB) = 988124 Test 053 regional_spp_sppt_shum_skeb PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rap_decomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/rap_decomp Checking test 054 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2264,14 +2264,14 @@ Checking test 054 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 435.465914 -The maximum resident set size (KB) = 898648 +The total amount of wall time = 435.597581 +The maximum resident set size (KB) = 895116 Test 054 rap_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rap_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/rap_2threads Checking test 055 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2318,14 +2318,14 @@ Checking test 055 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 387.026344 -The maximum resident set size (KB) = 973852 +The total amount of wall time = 389.171014 +The maximum resident set size (KB) = 970168 Test 055 rap_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rap_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/rap_restart Checking test 056 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2364,14 +2364,14 @@ Checking test 056 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 214.220548 -The maximum resident set size (KB) = 648204 +The total amount of wall time = 213.425389 +The maximum resident set size (KB) = 649276 Test 056 rap_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rap_sfcdiff +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/rap_sfcdiff Checking test 057 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2418,14 +2418,14 @@ Checking test 057 rap_sfcdiff results .... 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.484752 -The maximum resident set size (KB) = 893364 +The total amount of wall time = 425.006117 +The maximum resident set size (KB) = 898292 Test 057 rap_sfcdiff PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rap_sfcdiff_decomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/rap_sfcdiff_decomp Checking test 058 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2472,14 +2472,14 @@ Checking test 058 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 439.361313 -The maximum resident set size (KB) = 898140 +The total amount of wall time = 440.406939 +The maximum resident set size (KB) = 902944 Test 058 rap_sfcdiff_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rap_sfcdiff_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/rap_sfcdiff_restart Checking test 059 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2518,14 +2518,14 @@ Checking test 059 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 311.059053 -The maximum resident set size (KB) = 647844 +The total amount of wall time = 313.138270 +The maximum resident set size (KB) = 643680 Test 059 rap_sfcdiff_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/hrrr_control +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/hrrr_control Checking test 060 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2572,14 +2572,14 @@ Checking test 060 hrrr_control 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 = 391.966938 -The maximum resident set size (KB) = 892764 +The total amount of wall time = 394.088290 +The maximum resident set size (KB) = 892676 Test 060 hrrr_control PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/hrrr_control_decomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/hrrr_control_decomp Checking test 061 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2626,14 +2626,14 @@ Checking test 061 hrrr_control_decomp 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 = 406.295730 -The maximum resident set size (KB) = 891460 +The total amount of wall time = 408.675864 +The maximum resident set size (KB) = 894184 Test 061 hrrr_control_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/hrrr_control_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/hrrr_control_2threads Checking test 062 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2680,28 +2680,28 @@ Checking test 062 hrrr_control_2threads 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 = 352.018282 -The maximum resident set size (KB) = 959628 +The total amount of wall time = 354.863756 +The maximum resident set size (KB) = 968180 Test 062 hrrr_control_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/hrrr_control_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/hrrr_control_restart Checking test 063 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 287.085873 -The maximum resident set size (KB) = 645640 +The total amount of wall time = 289.111180 +The maximum resident set size (KB) = 643256 Test 063 hrrr_control_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_v1beta -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rrfs_v1beta +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_v1beta +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/rrfs_v1beta Checking test 064 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2748,14 +2748,14 @@ Checking test 064 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 422.205324 -The maximum resident set size (KB) = 895836 +The total amount of wall time = 419.686873 +The maximum resident set size (KB) = 896000 Test 064 rrfs_v1beta PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_v1nssl -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rrfs_v1nssl +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_v1nssl +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/rrfs_v1nssl Checking test 065 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2770,14 +2770,14 @@ Checking test 065 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 482.519029 -The maximum resident set size (KB) = 585844 +The total amount of wall time = 484.551383 +The maximum resident set size (KB) = 584376 Test 065 rrfs_v1nssl PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rrfs_v1nssl_nohailnoccn +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/rrfs_v1nssl_nohailnoccn Checking test 066 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2792,14 +2792,14 @@ Checking test 066 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 473.651330 -The maximum resident set size (KB) = 574552 +The total amount of wall time = 472.358169 +The maximum resident set size (KB) = 574004 Test 066 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/rrfs_smoke_conus13km_hrrr_warm Checking test 067 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2808,14 +2808,14 @@ Checking test 067 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 145.634869 -The maximum resident set size (KB) = 801492 +The total amount of wall time = 152.342528 +The maximum resident set size (KB) = 802748 Test 067 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 068 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2824,14 +2824,14 @@ Checking test 068 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 103.969064 -The maximum resident set size (KB) = 803560 +The total amount of wall time = 109.496288 +The maximum resident set size (KB) = 801416 Test 068 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rrfs_conus13km_hrrr_warm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/rrfs_conus13km_hrrr_warm Checking test 069 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2840,14 +2840,14 @@ Checking test 069 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 140.189998 -The maximum resident set size (KB) = 795300 +The total amount of wall time = 140.843359 +The maximum resident set size (KB) = 796192 Test 069 rrfs_conus13km_hrrr_warm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/rrfs_smoke_conus13km_radar_tten_warm Checking test 070 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2856,26 +2856,26 @@ Checking test 070 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 155.268933 -The maximum resident set size (KB) = 807192 +The total amount of wall time = 152.272439 +The maximum resident set size (KB) = 806052 Test 070 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 071 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 68.620298 -The maximum resident set size (KB) = 771980 +The total amount of wall time = 71.863929 +The maximum resident set size (KB) = 771296 Test 071 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_csawmg -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_csawmg +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_csawmg +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_csawmg Checking test 072 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2886,14 +2886,14 @@ Checking test 072 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 352.731147 -The maximum resident set size (KB) = 585948 +The total amount of wall time = 350.015750 +The maximum resident set size (KB) = 587020 Test 072 control_csawmg PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_csawmgt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_csawmgt +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_csawmgt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_csawmgt Checking test 073 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2904,14 +2904,14 @@ Checking test 073 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 347.335254 -The maximum resident set size (KB) = 585900 +The total amount of wall time = 348.083190 +The maximum resident set size (KB) = 588060 Test 073 control_csawmgt PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_ras -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_ras +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_ras +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_ras Checking test 074 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2922,26 +2922,26 @@ Checking test 074 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 189.592706 -The maximum resident set size (KB) = 552880 +The total amount of wall time = 182.357534 +The maximum resident set size (KB) = 553564 Test 074 control_ras PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_wam -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_wam +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_wam +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_wam Checking test 075 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 118.717535 -The maximum resident set size (KB) = 275452 +The total amount of wall time = 120.156422 +The maximum resident set size (KB) = 274936 Test 075 control_wam PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_p8_faster +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_p8_faster Checking test 076 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2988,14 +2988,14 @@ Checking test 076 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 178.549647 -The maximum resident set size (KB) = 1487340 +The total amount of wall time = 178.014419 +The maximum resident set size (KB) = 1489304 Test 076 control_p8_faster PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_control_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/regional_control_faster +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/regional_control_faster Checking test 077 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3006,56 +3006,56 @@ Checking test 077 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 286.845675 -The maximum resident set size (KB) = 659584 +The total amount of wall time = 286.032968 +The maximum resident set size (KB) = 658164 Test 077 regional_control_faster PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 078 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 918.267553 -The maximum resident set size (KB) = 834056 +The total amount of wall time = 914.430310 +The maximum resident set size (KB) = 827860 Test 078 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 079 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 527.116577 -The maximum resident set size (KB) = 831224 +The total amount of wall time = 529.083583 +The maximum resident set size (KB) = 832428 Test 079 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rrfs_conus13km_hrrr_warm_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/rrfs_conus13km_hrrr_warm_debug Checking test 080 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 815.262939 -The maximum resident set size (KB) = 822580 +The total amount of wall time = 818.181939 +The maximum resident set size (KB) = 825608 Test 080 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_CubedSphereGrid_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_CubedSphereGrid_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_CubedSphereGrid_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_CubedSphereGrid_debug Checking test 081 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3082,348 +3082,348 @@ Checking test 081 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 159.833838 -The maximum resident set size (KB) = 680304 +The total amount of wall time = 163.747398 +The maximum resident set size (KB) = 684288 Test 081 control_CubedSphereGrid_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_wrtGauss_netcdf_parallel_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_wrtGauss_netcdf_parallel_debug Checking test 082 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 159.720755 -The maximum resident set size (KB) = 683876 +The total amount of wall time = 163.009542 +The maximum resident set size (KB) = 678684 Test 082 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_stochy_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_stochy_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_stochy_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_stochy_debug Checking test 083 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 180.842088 -The maximum resident set size (KB) = 687104 +The total amount of wall time = 182.412116 +The maximum resident set size (KB) = 686992 Test 083 control_stochy_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_lndp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_lndp_debug Checking test 084 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 162.417269 -The maximum resident set size (KB) = 686040 +The total amount of wall time = 168.908164 +The maximum resident set size (KB) = 683940 Test 084 control_lndp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_csawmg_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_csawmg_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_csawmg_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_csawmg_debug Checking test 085 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 255.902153 -The maximum resident set size (KB) = 727928 +The total amount of wall time = 256.377883 +The maximum resident set size (KB) = 723828 Test 085 control_csawmg_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_csawmgt_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_csawmgt_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_csawmgt_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_csawmgt_debug Checking test 086 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 252.671875 -The maximum resident set size (KB) = 723872 +The total amount of wall time = 250.760793 +The maximum resident set size (KB) = 721464 Test 086 control_csawmgt_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_ras_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_ras_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_ras_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_ras_debug Checking test 087 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 163.427095 -The maximum resident set size (KB) = 694096 +The total amount of wall time = 163.175079 +The maximum resident set size (KB) = 693560 Test 087 control_ras_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_diag_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_diag_debug Checking test 088 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 164.735275 -The maximum resident set size (KB) = 740324 +The total amount of wall time = 166.404239 +The maximum resident set size (KB) = 736836 Test 088 control_diag_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_debug_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_debug_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_debug_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_debug_p8 Checking test 089 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 186.244542 -The maximum resident set size (KB) = 1510392 +The total amount of wall time = 186.386346 +The maximum resident set size (KB) = 1506452 Test 089 control_debug_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/regional_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/regional_debug Checking test 090 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1047.339132 -The maximum resident set size (KB) = 681656 +The total amount of wall time = 1046.733627 +The maximum resident set size (KB) = 680372 Test 090 regional_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rap_control_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/rap_control_debug Checking test 091 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 308.379621 -The maximum resident set size (KB) = 1055756 +The total amount of wall time = 299.833123 +The maximum resident set size (KB) = 1055204 Test 091 rap_control_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/hrrr_control_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/hrrr_control_debug Checking test 092 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 291.861001 -The maximum resident set size (KB) = 1050644 +The total amount of wall time = 300.951735 +The maximum resident set size (KB) = 1053816 Test 092 hrrr_control_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rap_unified_drag_suite_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/rap_unified_drag_suite_debug Checking test 093 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 299.846912 -The maximum resident set size (KB) = 1055600 +The total amount of wall time = 306.115210 +The maximum resident set size (KB) = 1050496 Test 093 rap_unified_drag_suite_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rap_diag_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/rap_diag_debug Checking test 094 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 311.695973 -The maximum resident set size (KB) = 1140584 +The total amount of wall time = 315.381335 +The maximum resident set size (KB) = 1139816 Test 094 rap_diag_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rap_cires_ugwp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/rap_cires_ugwp_debug Checking test 095 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 309.185274 -The maximum resident set size (KB) = 1058516 +The total amount of wall time = 312.490534 +The maximum resident set size (KB) = 1054096 Test 095 rap_cires_ugwp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rap_unified_ugwp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/rap_unified_ugwp_debug Checking test 096 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 306.960885 -The maximum resident set size (KB) = 1059620 +The total amount of wall time = 306.838034 +The maximum resident set size (KB) = 1051160 Test 096 rap_unified_ugwp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rap_lndp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/rap_lndp_debug Checking test 097 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 303.343090 -The maximum resident set size (KB) = 1056380 +The total amount of wall time = 303.831720 +The maximum resident set size (KB) = 1058436 Test 097 rap_lndp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_progcld_thompson_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rap_progcld_thompson_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_progcld_thompson_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/rap_progcld_thompson_debug Checking test 098 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 301.167759 -The maximum resident set size (KB) = 1056728 +The total amount of wall time = 303.154322 +The maximum resident set size (KB) = 1053132 Test 098 rap_progcld_thompson_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_noah_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rap_noah_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_noah_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/rap_noah_debug Checking test 099 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 294.755934 -The maximum resident set size (KB) = 1051408 +The total amount of wall time = 295.791750 +The maximum resident set size (KB) = 1049852 Test 099 rap_noah_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_sfcdiff_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rap_sfcdiff_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_sfcdiff_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/rap_sfcdiff_debug Checking test 100 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.759388 -The maximum resident set size (KB) = 1060788 +The total amount of wall time = 301.445868 +The maximum resident set size (KB) = 1058688 Test 100 rap_sfcdiff_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/rap_noah_sfcdiff_cires_ugwp_debug Checking test 101 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 495.085353 -The maximum resident set size (KB) = 1058112 +The total amount of wall time = 490.166831 +The maximum resident set size (KB) = 1051996 Test 101 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rrfs_v1beta_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rrfs_v1beta_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_v1beta_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/rrfs_v1beta_debug Checking test 102 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.325036 -The maximum resident set size (KB) = 1049944 +The total amount of wall time = 294.493004 +The maximum resident set size (KB) = 1056208 Test 102 rrfs_v1beta_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_clm_lake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rap_clm_lake_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_clm_lake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/rap_clm_lake_debug Checking test 103 rap_clm_lake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 379.757465 -The maximum resident set size (KB) = 1057800 +The total amount of wall time = 356.488428 +The maximum resident set size (KB) = 1057016 Test 103 rap_clm_lake_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_flake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rap_flake_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_flake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/rap_flake_debug Checking test 104 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.856289 -The maximum resident set size (KB) = 1059060 +The total amount of wall time = 300.020540 +The maximum resident set size (KB) = 1058812 Test 104 rap_flake_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_wam_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_wam_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_wam_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_wam_debug Checking test 105 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 295.989475 -The maximum resident set size (KB) = 306264 +The total amount of wall time = 296.651886 +The maximum resident set size (KB) = 304964 Test 105 control_wam_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3434,14 +3434,14 @@ Checking test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 235.339661 -The maximum resident set size (KB) = 904664 +The total amount of wall time = 235.904780 +The maximum resident set size (KB) = 900208 Test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rap_control_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/rap_control_dyn32_phy32 Checking test 107 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3488,14 +3488,14 @@ Checking test 107 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 356.195688 -The maximum resident set size (KB) = 777196 +The total amount of wall time = 354.694129 +The maximum resident set size (KB) = 777008 Test 107 rap_control_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/hrrr_control_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/hrrr_control_dyn32_phy32 Checking test 108 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3542,14 +3542,14 @@ Checking test 108 hrrr_control_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 181.081766 -The maximum resident set size (KB) = 781356 +The total amount of wall time = 179.363622 +The maximum resident set size (KB) = 773324 Test 108 hrrr_control_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rap_2threads_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/rap_2threads_dyn32_phy32 Checking test 109 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3596,14 +3596,14 @@ Checking test 109 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 332.278035 -The maximum resident set size (KB) = 836116 +The total amount of wall time = 329.050626 +The maximum resident set size (KB) = 829860 Test 109 rap_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/hrrr_control_2threads_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/hrrr_control_2threads_dyn32_phy32 Checking test 110 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3650,14 +3650,14 @@ Checking test 110 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 163.037889 -The maximum resident set size (KB) = 822404 +The total amount of wall time = 161.329784 +The maximum resident set size (KB) = 827308 Test 110 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/hrrr_control_decomp_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/hrrr_control_decomp_dyn32_phy32 Checking test 111 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3704,14 +3704,14 @@ Checking test 111 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 188.921828 -The maximum resident set size (KB) = 775188 +The total amount of wall time = 186.945290 +The maximum resident set size (KB) = 777400 Test 111 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rap_restart_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/rap_restart_dyn32_phy32 Checking test 112 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3750,28 +3750,28 @@ Checking test 112 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 270.255535 -The maximum resident set size (KB) = 619432 +The total amount of wall time = 272.410221 +The maximum resident set size (KB) = 613160 Test 112 rap_restart_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/hrrr_control_restart_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/hrrr_control_restart_dyn32_phy32 Checking test 113 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 94.862429 -The maximum resident set size (KB) = 604820 +The total amount of wall time = 92.792628 +The maximum resident set size (KB) = 609528 Test 113 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rap_control_dyn64_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/rap_control_dyn64_phy32 Checking test 114 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3818,81 +3818,81 @@ Checking test 114 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -The total amount of wall time = 236.226549 -The maximum resident set size (KB) = 793204 +The total amount of wall time = 235.379916 +The maximum resident set size (KB) = 797360 Test 114 rap_control_dyn64_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rap_control_debug_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/rap_control_debug_dyn32_phy32 Checking test 115 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 295.116520 -The maximum resident set size (KB) = 940488 +The total amount of wall time = 290.985872 +The maximum resident set size (KB) = 943988 Test 115 rap_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/hrrr_control_debug_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/hrrr_control_debug_dyn32_phy32 Checking test 116 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 288.227537 -The maximum resident set size (KB) = 939648 +The total amount of wall time = 284.850751 +The maximum resident set size (KB) = 937416 Test 116 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/rap_control_dyn64_phy32_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/rap_control_dyn64_phy32_debug Checking test 117 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.757859 -The maximum resident set size (KB) = 957784 +The total amount of wall time = 299.675343 +The maximum resident set size (KB) = 958244 Test 117 rap_control_dyn64_phy32_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/hafs_regional_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/hafs_regional_atm Checking test 118 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 276.613477 -The maximum resident set size (KB) = 824016 +The total amount of wall time = 273.447611 +The maximum resident set size (KB) = 824772 Test 118 hafs_regional_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/hafs_regional_atm_thompson_gfdlsf +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/hafs_regional_atm_thompson_gfdlsf Checking test 119 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 330.753986 -The maximum resident set size (KB) = 1183320 +The total amount of wall time = 326.078328 +The maximum resident set size (KB) = 1179204 Test 119 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/hafs_regional_atm_ocn +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/hafs_regional_atm_ocn Checking test 120 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3901,14 +3901,14 @@ Checking test 120 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 399.785582 -The maximum resident set size (KB) = 860852 +The total amount of wall time = 401.940132 +The maximum resident set size (KB) = 861716 Test 120 hafs_regional_atm_ocn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_atm_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/hafs_regional_atm_wav +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_atm_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/hafs_regional_atm_wav Checking test 121 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3917,14 +3917,14 @@ Checking test 121 hafs_regional_atm_wav 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 = 712.474343 -The maximum resident set size (KB) = 896568 +The total amount of wall time = 727.370269 +The maximum resident set size (KB) = 891612 Test 121 hafs_regional_atm_wav PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/hafs_regional_atm_ocn_wav +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/hafs_regional_atm_ocn_wav Checking test 122 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3935,28 +3935,28 @@ Checking test 122 hafs_regional_atm_ocn_wav 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 = 902.081405 -The maximum resident set size (KB) = 919484 +The total amount of wall time = 905.808449 +The maximum resident set size (KB) = 918284 Test 122 hafs_regional_atm_ocn_wav PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/hafs_regional_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/hafs_regional_1nest_atm Checking test 123 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 335.720823 -The maximum resident set size (KB) = 396212 +The total amount of wall time = 337.461796 +The maximum resident set size (KB) = 406176 Test 123 hafs_regional_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/hafs_regional_telescopic_2nests_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/hafs_regional_telescopic_2nests_atm Checking test 124 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3965,28 +3965,28 @@ Checking test 124 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 404.645006 -The maximum resident set size (KB) = 403824 +The total amount of wall time = 405.436308 +The maximum resident set size (KB) = 404552 Test 124 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_global_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/hafs_global_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_global_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/hafs_global_1nest_atm Checking test 125 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 174.475008 -The maximum resident set size (KB) = 270900 +The total amount of wall time = 172.623670 +The maximum resident set size (KB) = 261360 Test 125 hafs_global_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_global_multiple_4nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/hafs_global_multiple_4nests_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_global_multiple_4nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/hafs_global_multiple_4nests_atm Checking test 126 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4004,14 +4004,14 @@ Checking test 126 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -The total amount of wall time = 490.421231 -The maximum resident set size (KB) = 347856 +The total amount of wall time = 488.613777 +The maximum resident set size (KB) = 346188 Test 126 hafs_global_multiple_4nests_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/hafs_regional_specified_moving_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/hafs_regional_specified_moving_1nest_atm Checking test 127 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4020,28 +4020,28 @@ Checking test 127 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 220.197761 -The maximum resident set size (KB) = 411776 +The total amount of wall time = 219.088177 +The maximum resident set size (KB) = 415964 Test 127 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/hafs_regional_storm_following_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/hafs_regional_storm_following_1nest_atm Checking test 128 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 206.943437 -The maximum resident set size (KB) = 413628 +The total amount of wall time = 208.516957 +The maximum resident set size (KB) = 407564 Test 128 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/hafs_regional_storm_following_1nest_atm_ocn Checking test 129 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4050,42 +4050,42 @@ Checking test 129 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 260.872560 -The maximum resident set size (KB) = 471132 +The total amount of wall time = 253.490453 +The maximum resident set size (KB) = 473448 Test 129 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/hafs_global_storm_following_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_global_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/hafs_global_storm_following_1nest_atm Checking test 130 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 86.952880 -The maximum resident set size (KB) = 281604 +The total amount of wall time = 86.226297 +The maximum resident set size (KB) = 283560 Test 130 hafs_global_storm_following_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 131 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 806.226257 -The maximum resident set size (KB) = 497256 +The total amount of wall time = 810.608647 +The maximum resident set size (KB) = 490864 Test 131 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 132 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4096,14 +4096,14 @@ Checking test 132 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 506.702596 -The maximum resident set size (KB) = 528772 +The total amount of wall time = 504.424728 +The maximum resident set size (KB) = 528148 Test 132 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/control_p8_atmlnd_sbs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/control_p8_atmlnd_sbs +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8_atmlnd_sbs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_p8_atmlnd_sbs Checking test 133 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4188,14 +4188,14 @@ Checking test 133 control_p8_atmlnd_sbs 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 = 239.379563 -The maximum resident set size (KB) = 1547396 +The total amount of wall time = 240.803486 +The maximum resident set size (KB) = 1544896 Test 133 control_p8_atmlnd_sbs PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/atmaero_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/atmaero_control_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/atmaero_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/atmaero_control_p8 Checking test 134 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4239,14 +4239,14 @@ Checking test 134 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 251.143116 -The maximum resident set size (KB) = 2815120 +The total amount of wall time = 245.304346 +The maximum resident set size (KB) = 2818032 Test 134 atmaero_control_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/atmaero_control_p8_rad -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/atmaero_control_p8_rad +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/atmaero_control_p8_rad +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/atmaero_control_p8_rad Checking test 135 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4290,14 +4290,14 @@ Checking test 135 atmaero_control_p8_rad results .... 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.061763 -The maximum resident set size (KB) = 2878984 +The total amount of wall time = 284.239823 +The maximum resident set size (KB) = 2877328 Test 135 atmaero_control_p8_rad PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/atmaero_control_p8_rad_micro +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/atmaero_control_p8_rad_micro +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/atmaero_control_p8_rad_micro Checking test 136 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4341,14 +4341,14 @@ Checking test 136 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 290.907880 -The maximum resident set size (KB) = 2885808 +The total amount of wall time = 290.347402 +The maximum resident set size (KB) = 2886536 Test 136 atmaero_control_p8_rad_micro PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_atmaq -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/regional_atmaq +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_atmaq +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/regional_atmaq Checking test 137 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4364,14 +4364,14 @@ Checking test 137 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 697.203483 -The maximum resident set size (KB) = 1261036 +The total amount of wall time = 690.632341 +The maximum resident set size (KB) = 1259440 Test 137 regional_atmaq PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_atmaq_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/regional_atmaq_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_atmaq_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/regional_atmaq_debug Checking test 138 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4385,14 +4385,14 @@ Checking test 138 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1312.111708 -The maximum resident set size (KB) = 1292148 +The total amount of wall time = 1297.867914 +The maximum resident set size (KB) = 1292708 Test 138 regional_atmaq_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230424/INTEL/regional_atmaq_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_45909/regional_atmaq_faster +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_atmaq_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/regional_atmaq_faster Checking test 139 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4408,12 +4408,12 @@ Checking test 139 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 645.223778 -The maximum resident set size (KB) = 1261108 +The total amount of wall time = 643.121688 +The maximum resident set size (KB) = 1264696 Test 139 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Tue Apr 25 02:45:34 UTC 2023 -Elapsed time: 01h:10m:45s. Have a nice day! +Thu Apr 27 15:30:02 UTC 2023 +Elapsed time: 01h:15m:59s. Have a nice day! diff --git a/tests/rt.conf b/tests/rt.conf index 8316a06c495..b9f32373c82 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -41,7 +41,7 @@ RUN | cpld_control_c48 RUN | cpld_warmstart_c48 | | fv3 | RUN | cpld_restart_c48 | | | cpld_warmstart_c48 -COMPILE | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON | | fv3 | +COMPILE | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON | - cheyenne.intel | fv3 | RUN | cpld_control_p8_faster | - cheyenne.intel | fv3 | ################################################################################################################################################################################### diff --git a/tests/rt.sh b/tests/rt.sh index df6885638e4..afea519810d 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -446,7 +446,7 @@ if [[ $TESTS_FILE =~ '35d' ]] || [[ $TESTS_FILE =~ 'weekly' ]]; then fi -BL_DATE=20230424 +BL_DATE=20230426 RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-${BL_DATE}/${RT_COMPILER^^}} From 334332647dbcadcf142d953aa53881e02484c78d Mon Sep 17 00:00:00 2001 From: Jili-Dong <126518707+Jili-Dong@users.noreply.github.com> Date: Tue, 2 May 2023 09:23:29 -0400 Subject: [PATCH 26/30] update FV3 to better handle data source for regional model LBC processing and combined with #1730 WW3 update (#1715) * update FV3 to better handle data source for regional model LBC processing * update WW3: PR#1730 --- FV3 | 2 +- WW3 | 2 +- tests/RegressionTests_acorn.intel.log | 1360 ++++++++++----------- tests/RegressionTests_cheyenne.gnu.log | 472 +++---- tests/RegressionTests_cheyenne.intel.log | 1425 +++++++++++----------- tests/RegressionTests_hera.gnu.log | 464 +++---- tests/RegressionTests_hera.intel.log | 1408 ++++++++++----------- tests/RegressionTests_jet.intel.log | 1395 +++++++++++---------- tests/RegressionTests_orion.intel.log | 1424 ++++++++++----------- tests/RegressionTests_wcoss2.intel.log | 1170 +++++++++--------- tests/rt.sh | 2 +- tests/rt_utils.sh | 2 +- 12 files changed, 4574 insertions(+), 4552 deletions(-) diff --git a/FV3 b/FV3 index e0d95b11393..832803b1611 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit e0d95b11393585e8b88f00664030a27964645b98 +Subproject commit 832803b1611faa135309674ee5e4c3a072b55523 diff --git a/WW3 b/WW3 index e026bcc3c74..7c932242fd1 160000 --- a/WW3 +++ b/WW3 @@ -1 +1 @@ -Subproject commit e026bcc3c748580c0e0e22d6b9394356a37d6ef8 +Subproject commit 7c932242fd120b189cb17f48799e3cd00260621c diff --git a/tests/RegressionTests_acorn.intel.log b/tests/RegressionTests_acorn.intel.log index 7a5d1b42f5e..3c44703ea82 100644 --- a/tests/RegressionTests_acorn.intel.log +++ b/tests/RegressionTests_acorn.intel.log @@ -1,41 +1,41 @@ -Thu Apr 27 14:13:50 UTC 2023 +Mon May 1 17:04:30 UTC 2023 Start Regression test -Compile 001 elapsed time 574 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 1113 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 544 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 509 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 005 elapsed time 1322 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 871 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 811 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 008 elapsed time 2033 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 1222 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 483 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 454 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 1167 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 837 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 014 elapsed time 243 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 473 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 1495 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 611 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 373 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 644 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 020 elapsed time 442 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 021 elapsed time 644 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 022 elapsed time 600 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 023 elapsed time 558 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 024 elapsed time 466 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 266 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 026 elapsed time 912 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 027 elapsed time 585 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 972 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 904 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 473 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 165 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 032 elapsed time 555 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8_mixedmode -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/cpld_control_p8_mixedmode +Compile 001 elapsed time 567 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 570 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 537 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 1194 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 005 elapsed time 1051 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 1384 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 566 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 008 elapsed time 1094 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 492 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 1630 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 1088 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 1061 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 512 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 014 elapsed time 210 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 862 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 758 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 462 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 250 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 749 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 020 elapsed time 1169 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 021 elapsed time 684 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 022 elapsed time 502 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 023 elapsed time 916 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 024 elapsed time 733 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 115 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 026 elapsed time 481 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 027 elapsed time 831 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 487 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 972 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 501 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 434 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 032 elapsed time 610 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8_mixedmode +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -100,14 +100,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 334.970583 -The maximum resident set size (KB) = 2946900 +The total amount of wall time = 325.272633 +The maximum resident set size (KB) = 2949900 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_gfsv17 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/cpld_control_gfsv17 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_gfsv17 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -171,14 +171,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 257.948058 -The maximum resident set size (KB) = 1585616 +The total amount of wall time = 250.235532 +The maximum resident set size (KB) = 1580056 Test 002 cpld_control_gfsv17 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/cpld_control_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -243,14 +243,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 384.332978 -The maximum resident set size (KB) = 2979260 +The total amount of wall time = 375.900222 +The maximum resident set size (KB) = 2980332 Test 003 cpld_control_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/cpld_restart_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -303,14 +303,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 230.364475 -The maximum resident set size (KB) = 2864448 +The total amount of wall time = 222.106707 +The maximum resident set size (KB) = 2869536 Test 004 cpld_restart_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/cpld_control_qr_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -375,14 +375,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 386.711042 -The maximum resident set size (KB) = 2989144 +The total amount of wall time = 375.947827 +The maximum resident set size (KB) = 2991608 Test 005 cpld_control_qr_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/cpld_restart_qr_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -435,14 +435,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 230.204309 -The maximum resident set size (KB) = 2884676 +The total amount of wall time = 225.791405 +The maximum resident set size (KB) = 2877700 Test 006 cpld_restart_qr_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/cpld_2threads_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -495,14 +495,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 366.182083 -The maximum resident set size (KB) = 3285460 +The total amount of wall time = 356.446869 +The maximum resident set size (KB) = 3290728 Test 007 cpld_2threads_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/cpld_decomp_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -555,14 +555,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 378.646031 -The maximum resident set size (KB) = 2977732 +The total amount of wall time = 371.130248 +The maximum resident set size (KB) = 2976432 Test 008 cpld_decomp_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/cpld_mpi_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -615,14 +615,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 316.649093 -The maximum resident set size (KB) = 2906772 +The total amount of wall time = 308.477624 +The maximum resident set size (KB) = 2905284 Test 009 cpld_mpi_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_ciceC_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/cpld_control_ciceC_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_ciceC_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -687,14 +687,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 384.075029 -The maximum resident set size (KB) = 2979236 +The total amount of wall time = 376.677595 +The maximum resident set size (KB) = 2979836 Test 010 cpld_control_ciceC_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/cpld_control_noaero_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/cpld_control_noaero_p8 Checking test 011 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -758,14 +758,14 @@ Checking test 011 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 282.441869 -The maximum resident set size (KB) = 1574864 +The total amount of wall time = 274.604047 +The maximum resident set size (KB) = 1573004 Test 011 cpld_control_noaero_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/cpld_control_nowave_noaero_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_c96_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/cpld_control_nowave_noaero_p8 Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -827,14 +827,14 @@ Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 300.398391 -The maximum resident set size (KB) = 1626124 +The total amount of wall time = 291.224556 +The maximum resident set size (KB) = 1624988 Test 012 cpld_control_nowave_noaero_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/cpld_control_noaero_p8_agrid +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_noaero_p8_agrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/cpld_control_noaero_p8_agrid Checking test 013 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -896,14 +896,14 @@ Checking test 013 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 307.498730 -The maximum resident set size (KB) = 1619172 +The total amount of wall time = 297.479310 +The maximum resident set size (KB) = 1627084 Test 013 cpld_control_noaero_p8_agrid PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/cpld_control_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/cpld_control_c48 Checking test 014 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -953,14 +953,14 @@ Checking test 014 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 433.585655 -The maximum resident set size (KB) = 2635624 +The total amount of wall time = 429.752742 +The maximum resident set size (KB) = 2634700 Test 014 cpld_control_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/cpld_warmstart_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/cpld_warmstart_c48 Checking test 015 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1010,14 +1010,14 @@ Checking test 015 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 122.256311 -The maximum resident set size (KB) = 2651192 +The total amount of wall time = 116.670775 +The maximum resident set size (KB) = 2652488 Test 015 cpld_warmstart_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/cpld_restart_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/cpld_restart_c48 Checking test 016 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1067,14 +1067,14 @@ Checking test 016 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 67.322926 -The maximum resident set size (KB) = 2065892 +The total amount of wall time = 60.413449 +The maximum resident set size (KB) = 2062188 Test 016 cpld_restart_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/cpld_control_p8_faster +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/cpld_control_p8_faster Checking test 017 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1139,14 +1139,14 @@ Checking test 017 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 376.132145 -The maximum resident set size (KB) = 2985756 +The total amount of wall time = 367.308467 +The maximum resident set size (KB) = 2977956 Test 017 cpld_control_p8_faster PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_flake -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_flake +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_flake +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_flake Checking test 018 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1157,14 +1157,14 @@ Checking test 018 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 214.004516 -The maximum resident set size (KB) = 562340 +The total amount of wall time = 214.982902 +The maximum resident set size (KB) = 564736 Test 018 control_flake PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_CubedSphereGrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_CubedSphereGrid +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_CubedSphereGrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_CubedSphereGrid Checking test 019 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1191,14 +1191,14 @@ Checking test 019 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 128.529015 -The maximum resident set size (KB) = 513360 +The total amount of wall time = 129.370803 +The maximum resident set size (KB) = 511364 Test 019 control_CubedSphereGrid PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_latlon -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_latlon +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_latlon +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_latlon Checking test 020 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1209,14 +1209,14 @@ Checking test 020 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 131.436175 -The maximum resident set size (KB) = 517404 +The total amount of wall time = 132.340724 +The maximum resident set size (KB) = 515188 Test 020 control_latlon PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_wrtGauss_netcdf_parallel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_wrtGauss_netcdf_parallel Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1227,14 +1227,14 @@ Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 134.824789 -The maximum resident set size (KB) = 512652 +The total amount of wall time = 134.916905 +The maximum resident set size (KB) = 514044 Test 021 control_wrtGauss_netcdf_parallel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_c48 Checking test 022 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1273,14 +1273,14 @@ Checking test 022 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 329.127175 -The maximum resident set size (KB) = 675396 +The total amount of wall time = 326.650299 +The maximum resident set size (KB) = 675224 Test 022 control_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_c192 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_c192 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_c192 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_c192 Checking test 023 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1291,14 +1291,14 @@ Checking test 023 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 528.563552 -The maximum resident set size (KB) = 615544 +The total amount of wall time = 526.872665 +The maximum resident set size (KB) = 614296 Test 023 control_c192 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_c384 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_c384 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_c384 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_c384 Checking test 024 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1309,14 +1309,14 @@ Checking test 024 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 567.252767 -The maximum resident set size (KB) = 917376 +The total amount of wall time = 568.028149 +The maximum resident set size (KB) = 927868 Test 024 control_c384 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_c384gdas -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_c384gdas +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_c384gdas +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_c384gdas Checking test 025 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1359,14 +1359,14 @@ Checking test 025 control_c384gdas 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 = 509.747385 -The maximum resident set size (KB) = 1060532 +The total amount of wall time = 492.314801 +The maximum resident set size (KB) = 1056788 Test 025 control_c384gdas PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_stochy +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_stochy Checking test 026 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1377,28 +1377,28 @@ Checking test 026 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 90.438187 -The maximum resident set size (KB) = 517032 +The total amount of wall time = 90.438865 +The maximum resident set size (KB) = 517412 Test 026 control_stochy PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_stochy_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_stochy_restart Checking test 027 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 48.933130 -The maximum resident set size (KB) = 288256 +The total amount of wall time = 49.451826 +The maximum resident set size (KB) = 286504 Test 027 control_stochy_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_lndp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_lndp Checking test 028 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1409,14 +1409,14 @@ Checking test 028 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 83.069142 -The maximum resident set size (KB) = 516144 +The total amount of wall time = 83.949699 +The maximum resident set size (KB) = 516356 Test 028 control_lndp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_iovr4 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_iovr4 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_iovr4 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_iovr4 Checking test 029 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1431,14 +1431,14 @@ Checking test 029 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 136.299052 -The maximum resident set size (KB) = 515432 +The total amount of wall time = 137.661732 +The maximum resident set size (KB) = 514980 Test 029 control_iovr4 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_iovr5 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_iovr5 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_iovr5 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_iovr5 Checking test 030 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1453,14 +1453,14 @@ Checking test 030 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.385311 -The maximum resident set size (KB) = 515160 +The total amount of wall time = 136.131766 +The maximum resident set size (KB) = 512400 Test 030 control_iovr5 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_p8 Checking test 031 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1507,14 +1507,14 @@ Checking test 031 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 178.419774 -The maximum resident set size (KB) = 1481816 +The total amount of wall time = 173.494086 +The maximum resident set size (KB) = 1478704 Test 031 control_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_restart_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_restart_p8 Checking test 032 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1553,14 +1553,14 @@ Checking test 032 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 98.242831 -The maximum resident set size (KB) = 651960 +The total amount of wall time = 92.906758 +The maximum resident set size (KB) = 651496 Test 032 control_restart_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_qr_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_qr_p8 Checking test 033 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1607,14 +1607,14 @@ Checking test 033 control_qr_p8 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 = 174.792100 -The maximum resident set size (KB) = 1492740 +The total amount of wall time = 170.985621 +The maximum resident set size (KB) = 1497864 Test 033 control_qr_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_restart_qr_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_restart_qr_p8 Checking test 034 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1653,14 +1653,14 @@ Checking test 034 control_restart_qr_p8 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 = 97.422629 -The maximum resident set size (KB) = 667520 +The total amount of wall time = 94.241753 +The maximum resident set size (KB) = 662268 Test 034 control_restart_qr_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_decomp_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_decomp_p8 Checking test 035 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1703,14 +1703,14 @@ Checking test 035 control_decomp_p8 results .... 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.913369 -The maximum resident set size (KB) = 1472360 +The total amount of wall time = 175.262406 +The maximum resident set size (KB) = 1477800 Test 035 control_decomp_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_2threads_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_2threads_p8 Checking test 036 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1753,14 +1753,14 @@ Checking test 036 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 154.523797 -The maximum resident set size (KB) = 1568236 +The total amount of wall time = 149.683558 +The maximum resident set size (KB) = 1568992 Test 036 control_2threads_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_p8_lndp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_p8_lndp Checking test 037 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1779,14 +1779,14 @@ Checking test 037 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 319.887606 -The maximum resident set size (KB) = 1482496 +The total amount of wall time = 315.152395 +The maximum resident set size (KB) = 1488308 Test 037 control_p8_lndp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8_rrtmgp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_p8_rrtmgp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_rrtmgp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_p8_rrtmgp Checking test 038 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1833,14 +1833,14 @@ Checking test 038 control_p8_rrtmgp results .... 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.134772 -The maximum resident set size (KB) = 1546004 +The total amount of wall time = 227.929059 +The maximum resident set size (KB) = 1543968 Test 038 control_p8_rrtmgp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8_mynn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_p8_mynn +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_mynn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_p8_mynn Checking test 039 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1887,14 +1887,14 @@ Checking test 039 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 178.641219 -The maximum resident set size (KB) = 1481592 +The total amount of wall time = 173.616327 +The maximum resident set size (KB) = 1495740 Test 039 control_p8_mynn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/merra2_thompson -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/merra2_thompson +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/merra2_thompson +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/merra2_thompson Checking test 040 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1941,14 +1941,14 @@ Checking test 040 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 202.528037 -The maximum resident set size (KB) = 1494480 +The total amount of wall time = 196.394972 +The maximum resident set size (KB) = 1490524 Test 040 merra2_thompson PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/regional_control +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/regional_control Checking test 041 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1959,28 +1959,28 @@ Checking test 041 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 287.947455 -The maximum resident set size (KB) = 653264 +The total amount of wall time = 285.679025 +The maximum resident set size (KB) = 652988 Test 041 regional_control PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/regional_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/regional_restart Checking test 042 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 156.251526 -The maximum resident set size (KB) = 646760 +The total amount of wall time = 154.712537 +The maximum resident set size (KB) = 650076 Test 042 regional_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/regional_control_qr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/regional_control_qr Checking test 043 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1991,28 +1991,28 @@ Checking test 043 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 287.908621 -The maximum resident set size (KB) = 651324 +The total amount of wall time = 282.458946 +The maximum resident set size (KB) = 653220 Test 043 regional_control_qr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/regional_restart_qr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/regional_restart_qr Checking test 044 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 154.938382 -The maximum resident set size (KB) = 646700 +The total amount of wall time = 152.905684 +The maximum resident set size (KB) = 649156 Test 044 regional_restart_qr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/regional_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/regional_decomp Checking test 045 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2023,14 +2023,14 @@ Checking test 045 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 306.441800 -The maximum resident set size (KB) = 649284 +The total amount of wall time = 297.537005 +The maximum resident set size (KB) = 652640 Test 045 regional_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/regional_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/regional_2threads Checking test 046 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2041,14 +2041,14 @@ Checking test 046 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 174.718856 -The maximum resident set size (KB) = 690332 +The total amount of wall time = 169.591838 +The maximum resident set size (KB) = 694820 Test 046 regional_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_noquilt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/regional_noquilt +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_noquilt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/regional_noquilt Checking test 047 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2056,14 +2056,14 @@ Checking test 047 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 310.853407 -The maximum resident set size (KB) = 644752 +The total amount of wall time = 307.821495 +The maximum resident set size (KB) = 647148 Test 047 regional_noquilt PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/regional_2dwrtdecomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/regional_2dwrtdecomp Checking test 048 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2074,14 +2074,14 @@ Checking test 048 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 286.594324 -The maximum resident set size (KB) = 652056 +The total amount of wall time = 284.483562 +The maximum resident set size (KB) = 651952 Test 048 regional_2dwrtdecomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/fv3_regional_wofs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/regional_wofs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/fv3_regional_wofs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/regional_wofs Checking test 049 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2092,14 +2092,14 @@ Checking test 049 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 360.899315 -The maximum resident set size (KB) = 339756 +The total amount of wall time = 363.264135 +The maximum resident set size (KB) = 339492 Test 049 regional_wofs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_ifi_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/regional_ifi_control +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_ifi_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/regional_ifi_control Checking test 050 regional_ifi_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2110,14 +2110,14 @@ Checking test 050 regional_ifi_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 320.241930 -The maximum resident set size (KB) = 651480 +The total amount of wall time = 316.308570 +The maximum resident set size (KB) = 655124 Test 050 regional_ifi_control PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_ifi_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/regional_ifi_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_ifi_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/regional_ifi_decomp Checking test 051 regional_ifi_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2128,14 +2128,14 @@ Checking test 051 regional_ifi_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 337.234935 -The maximum resident set size (KB) = 653088 +The total amount of wall time = 334.657433 +The maximum resident set size (KB) = 658716 Test 051 regional_ifi_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_ifi_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/regional_ifi_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_ifi_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/regional_ifi_2threads Checking test 052 regional_ifi_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2146,14 +2146,14 @@ Checking test 052 regional_ifi_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 197.689396 -The maximum resident set size (KB) = 695844 +The total amount of wall time = 189.775698 +The maximum resident set size (KB) = 694528 Test 052 regional_ifi_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/rap_control +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/rap_control Checking test 053 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2200,14 +2200,14 @@ Checking test 053 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 418.394679 -The maximum resident set size (KB) = 889772 +The total amount of wall time = 418.017920 +The maximum resident set size (KB) = 888048 Test 053 rap_control PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/regional_spp_sppt_shum_skeb +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_spp_sppt_shum_skeb +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/regional_spp_sppt_shum_skeb Checking test 054 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2218,14 +2218,14 @@ Checking test 054 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 243.971254 -The maximum resident set size (KB) = 984660 +The total amount of wall time = 237.895899 +The maximum resident set size (KB) = 984980 Test 054 regional_spp_sppt_shum_skeb PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/rap_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/rap_decomp Checking test 055 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2272,14 +2272,14 @@ Checking test 055 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 432.729580 -The maximum resident set size (KB) = 887544 +The total amount of wall time = 431.998651 +The maximum resident set size (KB) = 885472 Test 055 rap_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/rap_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/rap_2threads Checking test 056 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2326,14 +2326,14 @@ Checking test 056 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 386.643076 -The maximum resident set size (KB) = 958932 +The total amount of wall time = 386.154061 +The maximum resident set size (KB) = 962148 Test 056 rap_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/rap_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/rap_restart Checking test 057 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2372,14 +2372,14 @@ Checking test 057 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 213.096256 -The maximum resident set size (KB) = 640028 +The total amount of wall time = 212.024605 +The maximum resident set size (KB) = 639892 Test 057 rap_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/rap_sfcdiff +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/rap_sfcdiff Checking test 058 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2426,14 +2426,14 @@ Checking test 058 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 419.838999 -The maximum resident set size (KB) = 888940 +The total amount of wall time = 422.984069 +The maximum resident set size (KB) = 886456 Test 058 rap_sfcdiff PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/rap_sfcdiff_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/rap_sfcdiff_decomp Checking test 059 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2480,14 +2480,14 @@ Checking test 059 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 438.460462 -The maximum resident set size (KB) = 889316 +The total amount of wall time = 438.924684 +The maximum resident set size (KB) = 890052 Test 059 rap_sfcdiff_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/rap_sfcdiff_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/rap_sfcdiff_restart Checking test 060 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2526,14 +2526,14 @@ Checking test 060 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 310.200203 -The maximum resident set size (KB) = 641136 +The total amount of wall time = 309.927361 +The maximum resident set size (KB) = 642764 Test 060 rap_sfcdiff_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/hrrr_control +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/hrrr_control Checking test 061 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2580,14 +2580,14 @@ Checking test 061 hrrr_control 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 = 389.327867 -The maximum resident set size (KB) = 885980 +The total amount of wall time = 390.072507 +The maximum resident set size (KB) = 885752 Test 061 hrrr_control PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/hrrr_control_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/hrrr_control_decomp Checking test 062 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2634,14 +2634,14 @@ Checking test 062 hrrr_control_decomp 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 = 403.774750 -The maximum resident set size (KB) = 886448 +The total amount of wall time = 404.599282 +The maximum resident set size (KB) = 886852 Test 062 hrrr_control_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/hrrr_control_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/hrrr_control_2threads Checking test 063 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2688,28 +2688,28 @@ Checking test 063 hrrr_control_2threads 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 = 349.911539 -The maximum resident set size (KB) = 954420 +The total amount of wall time = 349.175174 +The maximum resident set size (KB) = 964736 Test 063 hrrr_control_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/hrrr_control_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/hrrr_control_restart Checking test 064 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 285.998352 -The maximum resident set size (KB) = 637064 +The total amount of wall time = 286.412206 +The maximum resident set size (KB) = 637336 Test 064 hrrr_control_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_v1beta -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/rrfs_v1beta +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_v1beta +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/rrfs_v1beta Checking test 065 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2756,14 +2756,14 @@ Checking test 065 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 415.990616 -The maximum resident set size (KB) = 888188 +The total amount of wall time = 420.351228 +The maximum resident set size (KB) = 883532 Test 065 rrfs_v1beta PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_v1nssl -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/rrfs_v1nssl +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_v1nssl +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/rrfs_v1nssl Checking test 066 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2778,14 +2778,14 @@ Checking test 066 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 483.743142 -The maximum resident set size (KB) = 572144 +The total amount of wall time = 480.577166 +The maximum resident set size (KB) = 575880 Test 066 rrfs_v1nssl PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/rrfs_v1nssl_nohailnoccn +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/rrfs_v1nssl_nohailnoccn Checking test 067 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2800,14 +2800,14 @@ Checking test 067 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 470.211167 -The maximum resident set size (KB) = 564832 +The total amount of wall time = 470.536794 +The maximum resident set size (KB) = 566580 Test 067 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/rrfs_smoke_conus13km_hrrr_warm Checking test 068 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2816,14 +2816,14 @@ Checking test 068 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 144.347866 -The maximum resident set size (KB) = 804188 +The total amount of wall time = 139.839826 +The maximum resident set size (KB) = 801928 Test 068 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 069 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2832,14 +2832,14 @@ Checking test 069 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 101.460548 -The maximum resident set size (KB) = 800408 +The total amount of wall time = 94.053729 +The maximum resident set size (KB) = 799200 Test 069 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/rrfs_conus13km_hrrr_warm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/rrfs_conus13km_hrrr_warm Checking test 070 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2848,14 +2848,14 @@ Checking test 070 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 130.796197 -The maximum resident set size (KB) = 794004 +The total amount of wall time = 126.949683 +The maximum resident set size (KB) = 789120 Test 070 rrfs_conus13km_hrrr_warm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/rrfs_smoke_conus13km_radar_tten_warm Checking test 071 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2864,26 +2864,26 @@ Checking test 071 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 145.737464 -The maximum resident set size (KB) = 798132 +The total amount of wall time = 138.646505 +The maximum resident set size (KB) = 802700 Test 071 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 072 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 67.750017 -The maximum resident set size (KB) = 760692 +The total amount of wall time = 65.618948 +The maximum resident set size (KB) = 762296 Test 072 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_csawmg -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_csawmg +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_csawmg +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_csawmg Checking test 073 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2894,14 +2894,14 @@ Checking test 073 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 351.611311 -The maximum resident set size (KB) = 582596 +The total amount of wall time = 340.196200 +The maximum resident set size (KB) = 585320 Test 073 control_csawmg PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_csawmgt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_csawmgt +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_csawmgt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_csawmgt Checking test 074 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2912,14 +2912,14 @@ Checking test 074 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 345.673247 -The maximum resident set size (KB) = 585888 +The total amount of wall time = 337.747369 +The maximum resident set size (KB) = 582448 Test 074 control_csawmgt PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_ras -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_ras +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_ras +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_ras Checking test 075 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2930,26 +2930,26 @@ Checking test 075 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 181.205608 -The maximum resident set size (KB) = 549252 +The total amount of wall time = 181.082513 +The maximum resident set size (KB) = 548780 Test 075 control_ras PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_wam -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_wam +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_wam +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_wam Checking test 076 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 118.009489 -The maximum resident set size (KB) = 271512 +The total amount of wall time = 117.703380 +The maximum resident set size (KB) = 270668 Test 076 control_wam PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_p8_faster +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_p8_faster Checking test 077 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2996,14 +2996,14 @@ Checking test 077 control_p8_faster results .... 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.693131 -The maximum resident set size (KB) = 1481736 +The total amount of wall time = 167.635136 +The maximum resident set size (KB) = 1486016 Test 077 control_p8_faster PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/regional_control_faster +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/regional_control_faster Checking test 078 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3014,56 +3014,56 @@ Checking test 078 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 278.786369 -The maximum resident set size (KB) = 650968 +The total amount of wall time = 276.690058 +The maximum resident set size (KB) = 648292 Test 078 regional_control_faster PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 079 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 894.620346 -The maximum resident set size (KB) = 823324 +The total amount of wall time = 890.182530 +The maximum resident set size (KB) = 824100 Test 079 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 080 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 515.170800 -The maximum resident set size (KB) = 834056 +The total amount of wall time = 508.404461 +The maximum resident set size (KB) = 832544 Test 080 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/rrfs_conus13km_hrrr_warm_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/rrfs_conus13km_hrrr_warm_debug Checking test 081 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 806.583103 -The maximum resident set size (KB) = 819448 +The total amount of wall time = 796.712025 +The maximum resident set size (KB) = 821576 Test 081 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_CubedSphereGrid_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_CubedSphereGrid_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_CubedSphereGrid_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_CubedSphereGrid_debug Checking test 082 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3090,348 +3090,348 @@ Checking test 082 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 155.872613 -The maximum resident set size (KB) = 677912 +The total amount of wall time = 158.718825 +The maximum resident set size (KB) = 675628 Test 082 control_CubedSphereGrid_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_wrtGauss_netcdf_parallel_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_wrtGauss_netcdf_parallel_debug Checking test 083 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 155.715084 -The maximum resident set size (KB) = 677372 +The total amount of wall time = 157.705122 +The maximum resident set size (KB) = 674352 Test 083 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_stochy_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_stochy_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_stochy_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_stochy_debug Checking test 084 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 176.845606 -The maximum resident set size (KB) = 678932 +The total amount of wall time = 179.031940 +The maximum resident set size (KB) = 679560 Test 084 control_stochy_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_lndp_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_lndp_debug Checking test 085 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 158.548498 -The maximum resident set size (KB) = 684656 +The total amount of wall time = 160.718254 +The maximum resident set size (KB) = 683124 Test 085 control_lndp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_csawmg_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_csawmg_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_csawmg_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_csawmg_debug Checking test 086 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 252.090842 -The maximum resident set size (KB) = 717656 +The total amount of wall time = 248.637733 +The maximum resident set size (KB) = 716276 Test 086 control_csawmg_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_csawmgt_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_csawmgt_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_csawmgt_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_csawmgt_debug Checking test 087 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 248.247893 -The maximum resident set size (KB) = 715808 +The total amount of wall time = 246.680307 +The maximum resident set size (KB) = 719740 Test 087 control_csawmgt_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_ras_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_ras_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_ras_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_ras_debug Checking test 088 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 160.987102 -The maximum resident set size (KB) = 688868 +The total amount of wall time = 161.907610 +The maximum resident set size (KB) = 692696 Test 088 control_ras_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_diag_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_diag_debug Checking test 089 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 161.595317 -The maximum resident set size (KB) = 737036 +The total amount of wall time = 162.929271 +The maximum resident set size (KB) = 734508 Test 089 control_diag_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_debug_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_debug_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_debug_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_debug_p8 Checking test 090 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 184.118549 -The maximum resident set size (KB) = 1507360 +The total amount of wall time = 179.837256 +The maximum resident set size (KB) = 1506496 Test 090 control_debug_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/regional_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/regional_debug Checking test 091 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1042.761338 -The maximum resident set size (KB) = 673756 +The total amount of wall time = 1038.721433 +The maximum resident set size (KB) = 672884 Test 091 regional_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/rap_control_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/rap_control_debug Checking test 092 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 294.622732 -The maximum resident set size (KB) = 1048464 +The total amount of wall time = 295.863946 +The maximum resident set size (KB) = 1054036 Test 092 rap_control_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/hrrr_control_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/hrrr_control_debug Checking test 093 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 288.771519 -The maximum resident set size (KB) = 1046468 +The total amount of wall time = 288.400611 +The maximum resident set size (KB) = 1046908 Test 093 hrrr_control_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/rap_unified_drag_suite_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/rap_unified_drag_suite_debug Checking test 094 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 296.572349 -The maximum resident set size (KB) = 1053192 +The total amount of wall time = 296.320015 +The maximum resident set size (KB) = 1054848 Test 094 rap_unified_drag_suite_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/rap_diag_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/rap_diag_debug Checking test 095 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 306.268152 -The maximum resident set size (KB) = 1133496 +The total amount of wall time = 309.202255 +The maximum resident set size (KB) = 1136916 Test 095 rap_diag_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/rap_cires_ugwp_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/rap_cires_ugwp_debug Checking test 096 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 302.692940 -The maximum resident set size (KB) = 1054296 +The total amount of wall time = 302.801303 +The maximum resident set size (KB) = 1053288 Test 096 rap_cires_ugwp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/rap_unified_ugwp_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/rap_unified_ugwp_debug Checking test 097 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 302.845805 -The maximum resident set size (KB) = 1052204 +The total amount of wall time = 302.801000 +The maximum resident set size (KB) = 1055728 Test 097 rap_unified_ugwp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/rap_lndp_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/rap_lndp_debug Checking test 098 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.153473 -The maximum resident set size (KB) = 1054188 +The total amount of wall time = 299.257122 +The maximum resident set size (KB) = 1055508 Test 098 rap_lndp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_progcld_thompson_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/rap_progcld_thompson_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_progcld_thompson_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/rap_progcld_thompson_debug Checking test 099 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 295.918970 -The maximum resident set size (KB) = 1048672 +The total amount of wall time = 295.693784 +The maximum resident set size (KB) = 1049776 Test 099 rap_progcld_thompson_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_noah_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/rap_noah_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_noah_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/rap_noah_debug Checking test 100 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 289.397223 -The maximum resident set size (KB) = 1051012 +The total amount of wall time = 289.570703 +The maximum resident set size (KB) = 1048612 Test 100 rap_noah_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_sfcdiff_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/rap_sfcdiff_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_sfcdiff_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/rap_sfcdiff_debug Checking test 101 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 295.509391 -The maximum resident set size (KB) = 1052192 +The total amount of wall time = 296.099525 +The maximum resident set size (KB) = 1053252 Test 101 rap_sfcdiff_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/rap_noah_sfcdiff_cires_ugwp_debug Checking test 102 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 484.142871 -The maximum resident set size (KB) = 1048332 +The total amount of wall time = 485.038705 +The maximum resident set size (KB) = 1051956 Test 102 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_v1beta_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/rrfs_v1beta_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_v1beta_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/rrfs_v1beta_debug Checking test 103 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 290.168735 -The maximum resident set size (KB) = 1049472 +The total amount of wall time = 291.058230 +The maximum resident set size (KB) = 1049960 Test 103 rrfs_v1beta_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_clm_lake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/rap_clm_lake_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_clm_lake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/rap_clm_lake_debug Checking test 104 rap_clm_lake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 351.686991 -The maximum resident set size (KB) = 1052736 +The total amount of wall time = 353.519854 +The maximum resident set size (KB) = 1054928 Test 104 rap_clm_lake_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_flake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/rap_flake_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_flake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/rap_flake_debug Checking test 105 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 295.372184 -The maximum resident set size (KB) = 1056196 +The total amount of wall time = 296.055529 +The maximum resident set size (KB) = 1051804 Test 105 rap_flake_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_wam_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_wam_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_wam_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_wam_debug Checking test 106 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 294.395504 -The maximum resident set size (KB) = 301400 +The total amount of wall time = 302.163406 +The maximum resident set size (KB) = 302748 Test 106 control_wam_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3442,14 +3442,14 @@ Checking test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 232.283366 -The maximum resident set size (KB) = 894932 +The total amount of wall time = 225.856078 +The maximum resident set size (KB) = 896036 Test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/rap_control_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/rap_control_dyn32_phy32 Checking test 108 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3496,14 +3496,14 @@ Checking test 108 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 353.273913 -The maximum resident set size (KB) = 773940 +The total amount of wall time = 351.827605 +The maximum resident set size (KB) = 778196 Test 108 rap_control_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/hrrr_control_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/hrrr_control_dyn32_phy32 Checking test 109 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3550,14 +3550,14 @@ Checking test 109 hrrr_control_dyn32_phy32 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.106032 -The maximum resident set size (KB) = 779564 +The total amount of wall time = 177.744073 +The maximum resident set size (KB) = 779440 Test 109 hrrr_control_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/rap_2threads_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/rap_2threads_dyn32_phy32 Checking test 110 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3604,14 +3604,14 @@ Checking test 110 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 331.293114 -The maximum resident set size (KB) = 830820 +The total amount of wall time = 328.836490 +The maximum resident set size (KB) = 830520 Test 110 rap_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/hrrr_control_2threads_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/hrrr_control_2threads_dyn32_phy32 Checking test 111 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3658,14 +3658,14 @@ Checking test 111 hrrr_control_2threads_dyn32_phy32 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.384930 -The maximum resident set size (KB) = 817460 +The total amount of wall time = 159.619005 +The maximum resident set size (KB) = 824928 Test 111 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/hrrr_control_decomp_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/hrrr_control_decomp_dyn32_phy32 Checking test 112 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3712,14 +3712,14 @@ Checking test 112 hrrr_control_decomp_dyn32_phy32 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.680764 -The maximum resident set size (KB) = 772628 +The total amount of wall time = 185.644477 +The maximum resident set size (KB) = 772696 Test 112 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/rap_restart_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/rap_restart_dyn32_phy32 Checking test 113 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3758,28 +3758,28 @@ Checking test 113 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 257.895787 -The maximum resident set size (KB) = 612428 +The total amount of wall time = 257.845628 +The maximum resident set size (KB) = 610700 Test 113 rap_restart_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/hrrr_control_restart_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/hrrr_control_restart_dyn32_phy32 Checking test 114 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 92.716330 -The maximum resident set size (KB) = 602664 +The total amount of wall time = 93.105621 +The maximum resident set size (KB) = 607056 Test 114 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/rap_control_dyn64_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/rap_control_dyn64_phy32 Checking test 115 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3826,81 +3826,81 @@ Checking test 115 rap_control_dyn64_phy32 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 = 235.304475 -The maximum resident set size (KB) = 790920 +The total amount of wall time = 233.837850 +The maximum resident set size (KB) = 794020 Test 115 rap_control_dyn64_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/rap_control_debug_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/rap_control_debug_dyn32_phy32 Checking test 116 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 292.881320 -The maximum resident set size (KB) = 934924 +The total amount of wall time = 288.086354 +The maximum resident set size (KB) = 938712 Test 116 rap_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/hrrr_control_debug_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/hrrr_control_debug_dyn32_phy32 Checking test 117 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 286.707705 -The maximum resident set size (KB) = 934528 +The total amount of wall time = 282.332187 +The maximum resident set size (KB) = 941348 Test 117 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/rap_control_dyn64_phy32_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/rap_control_dyn64_phy32_debug Checking test 118 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 291.892308 -The maximum resident set size (KB) = 951820 +The total amount of wall time = 291.760110 +The maximum resident set size (KB) = 951340 Test 118 rap_control_dyn64_phy32_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/hafs_regional_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/hafs_regional_atm Checking test 119 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 270.285468 -The maximum resident set size (KB) = 824656 +The total amount of wall time = 262.810574 +The maximum resident set size (KB) = 821540 Test 119 hafs_regional_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/hafs_regional_atm_thompson_gfdlsf +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/hafs_regional_atm_thompson_gfdlsf Checking test 120 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 310.472976 -The maximum resident set size (KB) = 1175580 +The total amount of wall time = 304.502994 +The maximum resident set size (KB) = 1175672 Test 120 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/hafs_regional_atm_ocn +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/hafs_regional_atm_ocn Checking test 121 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3909,14 +3909,14 @@ Checking test 121 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 387.460727 -The maximum resident set size (KB) = 857972 +The total amount of wall time = 382.137560 +The maximum resident set size (KB) = 858192 Test 121 hafs_regional_atm_ocn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_atm_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/hafs_regional_atm_wav +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/hafs_regional_atm_wav Checking test 122 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3925,14 +3925,14 @@ Checking test 122 hafs_regional_atm_wav 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 = 704.619816 -The maximum resident set size (KB) = 886876 +The total amount of wall time = 704.314106 +The maximum resident set size (KB) = 888840 Test 122 hafs_regional_atm_wav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/hafs_regional_atm_ocn_wav +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/hafs_regional_atm_ocn_wav Checking test 123 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3943,28 +3943,28 @@ Checking test 123 hafs_regional_atm_ocn_wav 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 = 896.019169 -The maximum resident set size (KB) = 909700 +The total amount of wall time = 885.930664 +The maximum resident set size (KB) = 910796 Test 123 hafs_regional_atm_ocn_wav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/hafs_regional_1nest_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/hafs_regional_1nest_atm Checking test 124 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 332.386169 -The maximum resident set size (KB) = 392672 +The total amount of wall time = 331.193524 +The maximum resident set size (KB) = 393272 Test 124 hafs_regional_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/hafs_regional_telescopic_2nests_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/hafs_regional_telescopic_2nests_atm Checking test 125 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3973,28 +3973,28 @@ Checking test 125 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 403.876175 -The maximum resident set size (KB) = 399400 +The total amount of wall time = 402.015081 +The maximum resident set size (KB) = 397704 Test 125 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_global_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/hafs_global_1nest_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_global_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/hafs_global_1nest_atm Checking test 126 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 171.272327 -The maximum resident set size (KB) = 259540 +The total amount of wall time = 171.624571 +The maximum resident set size (KB) = 260140 Test 126 hafs_global_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_global_multiple_4nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/hafs_global_multiple_4nests_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_global_multiple_4nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/hafs_global_multiple_4nests_atm Checking test 127 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4012,14 +4012,14 @@ Checking test 127 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -The total amount of wall time = 493.063413 -The maximum resident set size (KB) = 343980 +The total amount of wall time = 484.156766 +The maximum resident set size (KB) = 345640 Test 127 hafs_global_multiple_4nests_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/hafs_regional_specified_moving_1nest_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/hafs_regional_specified_moving_1nest_atm Checking test 128 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4028,28 +4028,28 @@ Checking test 128 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 218.826950 -The maximum resident set size (KB) = 402780 +The total amount of wall time = 217.556964 +The maximum resident set size (KB) = 403716 Test 128 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/hafs_regional_storm_following_1nest_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/hafs_regional_storm_following_1nest_atm Checking test 129 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 207.200774 -The maximum resident set size (KB) = 403424 +The total amount of wall time = 204.484994 +The maximum resident set size (KB) = 404352 Test 129 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/hafs_regional_storm_following_1nest_atm_ocn Checking test 130 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4058,42 +4058,42 @@ Checking test 130 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 252.331954 -The maximum resident set size (KB) = 467112 +The total amount of wall time = 251.021702 +The maximum resident set size (KB) = 466668 Test 130 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/hafs_global_storm_following_1nest_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_global_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/hafs_global_storm_following_1nest_atm Checking test 131 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 84.637092 -The maximum resident set size (KB) = 279856 +The total amount of wall time = 84.750920 +The maximum resident set size (KB) = 278080 Test 131 hafs_global_storm_following_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 132 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 802.192767 -The maximum resident set size (KB) = 490192 +The total amount of wall time = 800.749050 +The maximum resident set size (KB) = 488632 Test 132 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 133 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4104,14 +4104,14 @@ Checking test 133 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 504.365961 -The maximum resident set size (KB) = 518084 +The total amount of wall time = 496.808132 +The maximum resident set size (KB) = 517964 Test 133 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_docn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/hafs_regional_docn +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_docn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/hafs_regional_docn Checking test 134 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4119,14 +4119,14 @@ Checking test 134 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 369.455942 -The maximum resident set size (KB) = 857376 +The total amount of wall time = 365.004457 +The maximum resident set size (KB) = 862228 Test 134 hafs_regional_docn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_docn_oisst -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/hafs_regional_docn_oisst +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_docn_oisst +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/hafs_regional_docn_oisst Checking test 135 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4134,131 +4134,131 @@ Checking test 135 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 371.529379 -The maximum resident set size (KB) = 847556 +The total amount of wall time = 368.377942 +The maximum resident set size (KB) = 845168 Test 135 hafs_regional_docn_oisst PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_datm_cdeps -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/hafs_regional_datm_cdeps +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_datm_cdeps +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/hafs_regional_datm_cdeps Checking test 136 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -The total amount of wall time = 945.232676 -The maximum resident set size (KB) = 867344 +The total amount of wall time = 945.112466 +The maximum resident set size (KB) = 833368 Test 136 hafs_regional_datm_cdeps PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/datm_cdeps_control_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_control_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/datm_cdeps_control_cfsr Checking test 137 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.185751 -The maximum resident set size (KB) = 735156 +The total amount of wall time = 141.408448 +The maximum resident set size (KB) = 732744 Test 137 datm_cdeps_control_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/datm_cdeps_restart_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_control_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/datm_cdeps_restart_cfsr Checking test 138 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 86.326617 -The maximum resident set size (KB) = 728304 +The total amount of wall time = 87.535866 +The maximum resident set size (KB) = 728700 Test 138 datm_cdeps_restart_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_control_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/datm_cdeps_control_gefs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_control_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/datm_cdeps_control_gefs Checking test 139 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 133.002344 -The maximum resident set size (KB) = 613452 +The total amount of wall time = 133.092413 +The maximum resident set size (KB) = 611904 Test 139 datm_cdeps_control_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_iau_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/datm_cdeps_iau_gefs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_iau_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/datm_cdeps_iau_gefs Checking test 140 datm_cdeps_iau_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 136.147979 -The maximum resident set size (KB) = 611580 +The total amount of wall time = 136.807420 +The maximum resident set size (KB) = 612868 Test 140 datm_cdeps_iau_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_stochy_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/datm_cdeps_stochy_gefs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_stochy_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/datm_cdeps_stochy_gefs Checking test 141 datm_cdeps_stochy_gefs 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.029234 -The maximum resident set size (KB) = 615608 +The total amount of wall time = 138.420147 +The maximum resident set size (KB) = 613040 Test 141 datm_cdeps_stochy_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/datm_cdeps_ciceC_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_ciceC_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/datm_cdeps_ciceC_cfsr Checking test 142 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 140.847989 -The maximum resident set size (KB) = 731940 +The total amount of wall time = 141.991211 +The maximum resident set size (KB) = 732656 Test 142 datm_cdeps_ciceC_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/datm_cdeps_bulk_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_bulk_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/datm_cdeps_bulk_cfsr Checking test 143 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.632354 -The maximum resident set size (KB) = 734072 +The total amount of wall time = 141.387968 +The maximum resident set size (KB) = 732784 Test 143 datm_cdeps_bulk_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/datm_cdeps_bulk_gefs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_bulk_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/datm_cdeps_bulk_gefs Checking test 144 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 132.687503 -The maximum resident set size (KB) = 617800 +The total amount of wall time = 133.826094 +The maximum resident set size (KB) = 611304 Test 144 datm_cdeps_bulk_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/datm_cdeps_mx025_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_mx025_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/datm_cdeps_mx025_cfsr Checking test 145 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4267,14 +4267,14 @@ Checking test 145 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 426.166067 -The maximum resident set size (KB) = 570408 +The total amount of wall time = 438.014570 +The maximum resident set size (KB) = 570568 Test 145 datm_cdeps_mx025_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/datm_cdeps_mx025_gefs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_mx025_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/datm_cdeps_mx025_gefs Checking test 146 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4283,64 +4283,64 @@ Checking test 146 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 428.497890 -The maximum resident set size (KB) = 549728 +The total amount of wall time = 433.830652 +The maximum resident set size (KB) = 547612 Test 146 datm_cdeps_mx025_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/datm_cdeps_multiple_files_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_control_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/datm_cdeps_multiple_files_cfsr Checking test 147 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.063763 -The maximum resident set size (KB) = 733376 +The total amount of wall time = 141.008497 +The maximum resident set size (KB) = 734912 Test 147 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/datm_cdeps_3072x1536_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/datm_cdeps_3072x1536_cfsr Checking test 148 datm_cdeps_3072x1536_cfsr 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 = 255.984519 -The maximum resident set size (KB) = 1980016 +The total amount of wall time = 255.012876 +The maximum resident set size (KB) = 1983308 Test 148 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_gfs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/datm_cdeps_gfs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_gfs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/datm_cdeps_gfs Checking test 149 datm_cdeps_gfs 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 = 256.118505 -The maximum resident set size (KB) = 1981492 +The total amount of wall time = 255.322950 +The maximum resident set size (KB) = 1980548 Test 149 datm_cdeps_gfs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_control_cfsr_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/datm_cdeps_control_cfsr_faster +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_control_cfsr_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/datm_cdeps_control_cfsr_faster Checking test 150 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 140.920383 -The maximum resident set size (KB) = 737108 +The total amount of wall time = 141.496815 +The maximum resident set size (KB) = 734044 Test 150 datm_cdeps_control_cfsr_faster PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/datm_cdeps_lnd_gswp3 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/datm_cdeps_lnd_gswp3 Checking test 151 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4349,14 +4349,14 @@ Checking test 151 datm_cdeps_lnd_gswp3 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 = 21.595168 -The maximum resident set size (KB) = 226352 +The total amount of wall time = 22.181086 +The maximum resident set size (KB) = 231772 Test 151 datm_cdeps_lnd_gswp3 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/datm_cdeps_lnd_gswp3_rst +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/datm_cdeps_lnd_gswp3_rst Checking test 152 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4365,14 +4365,14 @@ Checking test 152 datm_cdeps_lnd_gswp3_rst 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.186602 -The maximum resident set size (KB) = 236352 +The total amount of wall time = 27.727895 +The maximum resident set size (KB) = 225300 Test 152 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8_atmlnd_sbs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_p8_atmlnd_sbs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_atmlnd_sbs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_p8_atmlnd_sbs Checking test 153 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4457,14 +4457,14 @@ Checking test 153 control_p8_atmlnd_sbs 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 = 234.720193 -The maximum resident set size (KB) = 1545924 +The total amount of wall time = 228.479897 +The maximum resident set size (KB) = 1540716 Test 153 control_p8_atmlnd_sbs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/atmwav_control_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/atmwav_control_noaero_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/atmwav_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/atmwav_control_noaero_p8 Checking test 154 atmwav_control_noaero_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4507,14 +4507,14 @@ Checking test 154 atmwav_control_noaero_p8 results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK -The total amount of wall time = 111.029240 -The maximum resident set size (KB) = 1524852 +The total amount of wall time = 103.801231 +The maximum resident set size (KB) = 1528844 Test 154 atmwav_control_noaero_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_atmwav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/control_atmwav +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_atmwav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_atmwav Checking test 155 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4558,14 +4558,14 @@ Checking test 155 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -The total amount of wall time = 91.363175 -The maximum resident set size (KB) = 545288 +The total amount of wall time = 91.383546 +The maximum resident set size (KB) = 544576 Test 155 control_atmwav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/atmaero_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/atmaero_control_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/atmaero_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/atmaero_control_p8 Checking test 156 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4609,14 +4609,14 @@ Checking test 156 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 243.887943 -The maximum resident set size (KB) = 2814904 +The total amount of wall time = 241.337020 +The maximum resident set size (KB) = 2812496 Test 156 atmaero_control_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/atmaero_control_p8_rad -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/atmaero_control_p8_rad +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/atmaero_control_p8_rad +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/atmaero_control_p8_rad Checking test 157 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4660,14 +4660,14 @@ Checking test 157 atmaero_control_p8_rad results .... 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.828094 -The maximum resident set size (KB) = 2877924 +The total amount of wall time = 282.903929 +The maximum resident set size (KB) = 2875452 Test 157 atmaero_control_p8_rad PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/atmaero_control_p8_rad_micro +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/atmaero_control_p8_rad_micro +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/atmaero_control_p8_rad_micro Checking test 158 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4711,14 +4711,14 @@ Checking test 158 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 288.696433 -The maximum resident set size (KB) = 2884168 +The total amount of wall time = 288.643887 +The maximum resident set size (KB) = 2884452 Test 158 atmaero_control_p8_rad_micro PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_atmaq -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/regional_atmaq +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_atmaq +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/regional_atmaq Checking test 159 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4734,14 +4734,14 @@ Checking test 159 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 681.523528 -The maximum resident set size (KB) = 1253552 +The total amount of wall time = 709.563544 +The maximum resident set size (KB) = 1253408 Test 159 regional_atmaq PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_atmaq_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/regional_atmaq_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_atmaq_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/regional_atmaq_debug Checking test 160 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4755,14 +4755,14 @@ Checking test 160 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1304.769061 -The maximum resident set size (KB) = 1287284 +The total amount of wall time = 1323.844431 +The maximum resident set size (KB) = 1285348 Test 160 regional_atmaq_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_atmaq_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_77111/regional_atmaq_faster +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_atmaq_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/regional_atmaq_faster Checking test 161 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4778,12 +4778,12 @@ Checking test 161 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 632.188589 -The maximum resident set size (KB) = 1253612 +The total amount of wall time = 662.327052 +The maximum resident set size (KB) = 1259388 Test 161 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Thu Apr 27 15:49:36 UTC 2023 -Elapsed time: 01h:35m:47s. Have a nice day! +Mon May 1 18:38:45 UTC 2023 +Elapsed time: 01h:34m:16s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index 6e98f08f18b..ce53ae293be 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,21 +1,21 @@ -Wed Apr 26 14:42:07 MDT 2023 +Sun Apr 30 16:08:41 MDT 2023 Start Regression test -Compile 001 elapsed time 404 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 002 elapsed time 412 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 912 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 196 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 398 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 1156 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 909 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 920 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 682 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 591 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 359 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 012 elapsed time 301 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/control_c48 -working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/control_c48 +Compile 001 elapsed time 394 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 002 elapsed time 408 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 899 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 188 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 391 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 1144 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 899 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 909 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 618 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 575 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 347 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 012 elapsed time 294 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/control_c48 +working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/control_c48 Checking test 001 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -54,14 +54,14 @@ Checking test 001 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 821.666932 -0:The maximum resident set size (KB) = 680320 +0:The total amount of wall time = 822.756575 +0:The maximum resident set size (KB) = 680332 Test 001 control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/control_stochy -working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/control_stochy +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/control_stochy +working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/control_stochy Checking test 002 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -72,14 +72,14 @@ Checking test 002 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 178.411834 -0:The maximum resident set size (KB) = 443860 +0:The total amount of wall time = 177.969568 +0:The maximum resident set size (KB) = 443988 Test 002 control_stochy PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/control_ras -working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/control_ras +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/control_ras +working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/control_ras Checking test 003 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -90,14 +90,14 @@ Checking test 003 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 293.673589 -0:The maximum resident set size (KB) = 452504 +0:The total amount of wall time = 296.433046 +0:The maximum resident set size (KB) = 452272 Test 003 control_ras PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/control_p8 -working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/control_p8 +working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/control_p8 Checking test 004 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -144,14 +144,14 @@ Checking test 004 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 311.698072 -0:The maximum resident set size (KB) = 1225312 +0:The total amount of wall time = 311.000807 +0:The maximum resident set size (KB) = 1225328 Test 004 control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/control_flake -working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/control_flake +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/control_flake +working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/control_flake Checking test 005 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -162,14 +162,14 @@ Checking test 005 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 352.735421 -0:The maximum resident set size (KB) = 490472 +0:The total amount of wall time = 355.331565 +0:The maximum resident set size (KB) = 490328 Test 005 control_flake PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/rap_control -working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/rap_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rap_control +working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/rap_control Checking test 006 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -216,14 +216,14 @@ Checking test 006 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 718.154238 -0:The maximum resident set size (KB) = 792848 +0:The total amount of wall time = 716.686632 +0:The maximum resident set size (KB) = 792840 Test 006 rap_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/rap_control -working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/rap_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rap_control +working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/rap_decomp Checking test 007 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -270,14 +270,14 @@ Checking test 007 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 724.565444 -0:The maximum resident set size (KB) = 792132 +0:The total amount of wall time = 719.810290 +0:The maximum resident set size (KB) = 791824 Test 007 rap_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/rap_control -working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/rap_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rap_control +working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/rap_2threads Checking test 008 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -324,14 +324,14 @@ Checking test 008 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 657.826195 -0:The maximum resident set size (KB) = 866516 +0:The total amount of wall time = 655.314632 +0:The maximum resident set size (KB) = 866204 Test 008 rap_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/rap_control -working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/rap_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rap_control +working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/rap_restart Checking test 009 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -370,14 +370,14 @@ Checking test 009 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 355.380939 -0:The maximum resident set size (KB) = 539156 +0:The total amount of wall time = 354.999201 +0:The maximum resident set size (KB) = 539116 Test 009 rap_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/rap_sfcdiff +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rap_sfcdiff +working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/rap_sfcdiff Checking test 010 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -424,14 +424,14 @@ Checking test 010 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 721.081241 -0:The maximum resident set size (KB) = 792712 +0:The total amount of wall time = 717.552137 +0:The maximum resident set size (KB) = 792156 Test 010 rap_sfcdiff PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/rap_sfcdiff_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rap_sfcdiff +working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/rap_sfcdiff_decomp Checking test 011 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -478,14 +478,14 @@ Checking test 011 rap_sfcdiff_decomp results .... Comparing 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.362003 -0:The maximum resident set size (KB) = 791692 +0:The total amount of wall time = 726.060983 +0:The maximum resident set size (KB) = 791572 Test 011 rap_sfcdiff_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/rap_sfcdiff_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rap_sfcdiff +working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/rap_sfcdiff_restart Checking test 012 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -524,14 +524,14 @@ Checking test 012 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 529.599977 -0:The maximum resident set size (KB) = 544760 +0:The total amount of wall time = 527.683611 +0:The maximum resident set size (KB) = 544732 Test 012 rap_sfcdiff_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/hrrr_control -working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/hrrr_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/hrrr_control +working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/hrrr_control Checking test 013 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -578,14 +578,14 @@ Checking test 013 hrrr_control results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 690.112776 -0:The maximum resident set size (KB) = 789588 +0:The total amount of wall time = 687.592576 +0:The maximum resident set size (KB) = 789516 Test 013 hrrr_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/hrrr_control -working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/hrrr_control_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/hrrr_control +working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/hrrr_control_2threads Checking test 014 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -632,14 +632,14 @@ Checking test 014 hrrr_control_2threads results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 705.610823 -0:The maximum resident set size (KB) = 855476 +0:The total amount of wall time = 712.421139 +0:The maximum resident set size (KB) = 855440 Test 014 hrrr_control_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/hrrr_control -working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/hrrr_control_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/hrrr_control +working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/hrrr_control_decomp Checking test 015 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -686,28 +686,28 @@ Checking test 015 hrrr_control_decomp results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 684.701051 -0:The maximum resident set size (KB) = 788532 +0:The total amount of wall time = 685.175224 +0:The maximum resident set size (KB) = 788520 Test 015 hrrr_control_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/hrrr_control -working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/hrrr_control_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/hrrr_control +working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/hrrr_control_restart Checking test 016 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 506.648333 -0:The maximum resident set size (KB) = 539828 +0:The total amount of wall time = 507.785973 +0:The maximum resident set size (KB) = 539784 Test 016 hrrr_control_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/rrfs_v1beta -working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/rrfs_v1beta +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rrfs_v1beta +working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/rrfs_v1beta Checking test 017 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -754,14 +754,14 @@ Checking test 017 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 708.286504 -0:The maximum resident set size (KB) = 789600 +0:The total amount of wall time = 706.025483 +0:The maximum resident set size (KB) = 789420 Test 017 rrfs_v1beta PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/rrfs_smoke_conus13km_hrrr_warm Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -770,14 +770,14 @@ Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 233.216925 -0:The maximum resident set size (KB) = 639468 +0:The total amount of wall time = 239.703057 +0:The maximum resident set size (KB) = 639392 Test 018 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 019 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -786,14 +786,14 @@ Checking test 019 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 148.125660 -0:The maximum resident set size (KB) = 664108 +0:The total amount of wall time = 151.384968 +0:The maximum resident set size (KB) = 663464 Test 019 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/rrfs_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/rrfs_conus13km_hrrr_warm Checking test 020 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -802,14 +802,14 @@ Checking test 020 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 214.318308 -0:The maximum resident set size (KB) = 618540 +0:The total amount of wall time = 219.079250 +0:The maximum resident set size (KB) = 618460 Test 020 rrfs_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/rrfs_smoke_conus13km_radar_tten_warm Checking test 021 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -818,262 +818,262 @@ Checking test 021 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 234.235852 -0:The maximum resident set size (KB) = 642216 +0:The total amount of wall time = 241.169555 +0:The maximum resident set size (KB) = 642396 Test 021 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 022 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 111.576956 -0:The maximum resident set size (KB) = 599652 +0:The total amount of wall time = 114.508686 +0:The maximum resident set size (KB) = 599488 Test 022 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/control_diag_debug -working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/control_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/control_diag_debug +working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/control_diag_debug Checking test 023 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 82.834558 -0:The maximum resident set size (KB) = 492040 +0:The total amount of wall time = 82.037139 +0:The maximum resident set size (KB) = 491748 Test 023 control_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/regional_debug -working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/regional_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/regional_debug +working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/regional_debug Checking test 024 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 478.314801 -0:The maximum resident set size (KB) = 567144 +0:The total amount of wall time = 475.894206 +0:The maximum resident set size (KB) = 567036 Test 024 regional_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/rap_control_debug -working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/rap_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rap_control_debug +working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/rap_control_debug Checking test 025 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 146.405702 -0:The maximum resident set size (KB) = 806232 +0:The total amount of wall time = 144.542921 +0:The maximum resident set size (KB) = 806152 Test 025 rap_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/hrrr_control_debug -working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/hrrr_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/hrrr_control_debug +working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/hrrr_control_debug Checking test 026 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 143.636606 -0:The maximum resident set size (KB) = 801528 +0:The total amount of wall time = 142.904757 +0:The maximum resident set size (KB) = 801492 Test 026 hrrr_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/rap_diag_debug -working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/rap_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rap_diag_debug +working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/rap_diag_debug Checking test 027 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 152.613155 -0:The maximum resident set size (KB) = 888568 +0:The total amount of wall time = 151.599870 +0:The maximum resident set size (KB) = 888516 Test 027 rap_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/rap_noah_sfcdiff_cires_ugwp_debug Checking test 028 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 233.862331 +0:The total amount of wall time = 233.335893 0:The maximum resident set size (KB) = 804436 Test 028 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/rap_progcld_thompson_debug -working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/rap_progcld_thompson_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rap_progcld_thompson_debug +working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/rap_progcld_thompson_debug Checking test 029 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 146.597785 -0:The maximum resident set size (KB) = 806292 +0:The total amount of wall time = 144.823278 +0:The maximum resident set size (KB) = 806204 Test 029 rap_progcld_thompson_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/rrfs_v1beta_debug -working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/rrfs_v1beta_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rrfs_v1beta_debug +working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/rrfs_v1beta_debug Checking test 030 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 145.799157 -0:The maximum resident set size (KB) = 801272 +0:The total amount of wall time = 143.725794 +0:The maximum resident set size (KB) = 801196 Test 030 rrfs_v1beta_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/control_ras_debug -working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/control_ras_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/control_ras_debug +working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/control_ras_debug Checking test 031 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 82.351778 -0:The maximum resident set size (KB) = 446032 +0:The total amount of wall time = 79.907065 +0:The maximum resident set size (KB) = 446068 Test 031 control_ras_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/control_stochy_debug -working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/control_stochy_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/control_stochy_debug +working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/control_stochy_debug Checking test 032 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 88.284932 -0:The maximum resident set size (KB) = 438748 +0:The total amount of wall time = 88.290852 +0:The maximum resident set size (KB) = 438972 Test 032 control_stochy_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/control_debug_p8 -working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/control_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/control_debug_p8 +working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/control_debug_p8 Checking test 033 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 91.510262 -0:The maximum resident set size (KB) = 1223236 +0:The total amount of wall time = 93.431986 +0:The maximum resident set size (KB) = 1223292 Test 033 control_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 034 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 440.463281 -0:The maximum resident set size (KB) = 644916 +0:The total amount of wall time = 443.467854 +0:The maximum resident set size (KB) = 644912 Test 034 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 035 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 260.156145 -0:The maximum resident set size (KB) = 664064 +0:The total amount of wall time = 262.422886 +0:The maximum resident set size (KB) = 669212 Test 035 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/rrfs_conus13km_hrrr_warm_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rrfs_conus13km_hrrr_warm_debugs +working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/rrfs_conus13km_hrrr_warm_debug Checking test 036 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 395.704054 -0:The maximum resident set size (KB) = 623392 +0:The total amount of wall time = 401.983533 +0:The maximum resident set size (KB) = 623312 Test 036 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/rap_flake_debug -working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/rap_flake_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rap_flake_debug +working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/rap_flake_debug Checking test 037 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 144.893731 -0:The maximum resident set size (KB) = 806560 +0:The total amount of wall time = 144.947628 +0:The maximum resident set size (KB) = 805768 Test 037 rap_flake_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/rap_clm_lake_debug -working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/rap_clm_lake_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rap_clm_lake_debug +working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/rap_clm_lake_debug Checking test 038 rap_clm_lake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 165.188366 -0:The maximum resident set size (KB) = 807768 +0:The total amount of wall time = 164.250657 +0:The maximum resident set size (KB) = 807600 Test 038 rap_clm_lake_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/control_wam_debug -working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/control_wam_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/control_wam_debug +working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/control_wam_debug Checking test 039 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 139.716351 -0:The maximum resident set size (KB) = 182260 +0:The total amount of wall time = 141.095240 +0:The maximum resident set size (KB) = 182308 Test 039 control_wam_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/rap_control_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/rap_control_dyn32_phy32 Checking test 040 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1120,14 +1120,14 @@ Checking test 040 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 704.650669 -0:The maximum resident set size (KB) = 672688 +0:The total amount of wall time = 707.119854 +0:The maximum resident set size (KB) = 672636 Test 040 rap_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/hrrr_control_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/hrrr_control_dyn32_phy32 Checking test 041 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1174,14 +1174,14 @@ Checking test 041 hrrr_control_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 352.972868 -0:The maximum resident set size (KB) = 671184 +0:The total amount of wall time = 353.677907 +0:The maximum resident set size (KB) = 671072 Test 041 hrrr_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/rap_2threads_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/rap_2threads_dyn32_phy32 Checking test 042 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1228,14 +1228,14 @@ Checking test 042 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 643.766850 -0:The maximum resident set size (KB) = 720704 +0:The total amount of wall time = 646.856162 +0:The maximum resident set size (KB) = 720436 Test 042 rap_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/hrrr_control_2threads_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/hrrr_control_2threads_dyn32_phy32 Checking test 043 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1282,14 +1282,14 @@ Checking test 043 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 403.558423 -0:The maximum resident set size (KB) = 711708 +0:The total amount of wall time = 406.443759 +0:The maximum resident set size (KB) = 711776 Test 043 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/hrrr_control_decomp_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/hrrr_control_decomp_dyn32_phy32 Checking test 044 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1336,14 +1336,14 @@ Checking test 044 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 351.473007 -0:The maximum resident set size (KB) = 670052 +0:The total amount of wall time = 354.799957 +0:The maximum resident set size (KB) = 670004 Test 044 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/rap_restart_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/rap_restart_dyn32_phy32 Checking test 045 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1382,28 +1382,28 @@ Checking test 045 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 522.806007 -0:The maximum resident set size (KB) = 511808 +0:The total amount of wall time = 522.012821 +0:The maximum resident set size (KB) = 511844 Test 045 rap_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/hrrr_control_restart_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/hrrr_control_restart_dyn32_phy32 Checking test 046 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 178.948606 -0:The maximum resident set size (KB) = 506132 +0:The total amount of wall time = 178.997299 +0:The maximum resident set size (KB) = 505940 Test 046 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/rap_control_dyn64_phy32 -working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/rap_control_dyn64_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rap_control_dyn64_phy32 +working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/rap_control_dyn64_phy32 Checking test 047 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1450,42 +1450,56 @@ Checking test 047 rap_control_dyn64_phy32 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 = 414.334016 -0:The maximum resident set size (KB) = 692924 +0:The total amount of wall time = 413.815185 +0:The maximum resident set size (KB) = 692860 Test 047 rap_control_dyn64_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/rap_control_debug_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/rap_control_debug_dyn32_phy32 Checking test 048 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 146.952694 -0:The maximum resident set size (KB) = 686876 +0:The total amount of wall time = 143.084801 +0:The maximum resident set size (KB) = 687992 Test 048 rap_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/rap_control_dyn64_phy32_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/hrrr_control_debug_dyn32_phy32 +Checking test 049 hrrr_control_debug_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +0:The total amount of wall time = 139.799080 +0:The maximum resident set size (KB) = 684124 + +Test 049 hrrr_control_debug_dyn32_phy32 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rap_control_debug_dyn64_phy32 +working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/rap_control_dyn64_phy32_debug Checking test 050 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 147.059296 -0:The maximum resident set size (KB) = 708532 +0:The total amount of wall time = 148.133584 +0:The maximum resident set size (KB) = 708004 Test 050 rap_control_dyn64_phy32_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/cpld_control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/cpld_control_p8 +working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/cpld_control_p8 Checking test 051 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1550,14 +1564,14 @@ Checking test 051 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 490.322111 -0:The maximum resident set size (KB) = 3161856 +0:The total amount of wall time = 503.679954 +0:The maximum resident set size (KB) = 3160512 Test 051 cpld_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/cpld_control_nowave_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/cpld_control_c96_noaero_p8 +working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/cpld_control_nowave_noaero_p8 Checking test 052 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1619,14 +1633,14 @@ Checking test 052 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 248.974062 -0:The maximum resident set size (KB) = 1240924 +0:The total amount of wall time = 245.874277 +0:The maximum resident set size (KB) = 1242072 Test 052 cpld_control_nowave_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/cpld_debug_p8 -working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/cpld_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/cpld_debug_p8 +working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/cpld_debug_p8 Checking test 053 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1679,27 +1693,25 @@ Checking test 053 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 202.205864 -0:The maximum resident set size (KB) = 3173084 +0:The total amount of wall time = 198.954448 +0:The maximum resident set size (KB) = 3172796 Test 053 cpld_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/GNU/datm_cdeps_control_cfsr -working dir = /glade/scratch/jongkim/rt-1720-gnu/jongkim/FV3_RT/rt_26696/datm_cdeps_control_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/datm_cdeps_control_cfsr +working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/datm_cdeps_control_cfsr Checking test 054 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 179.176757 -0:The maximum resident set size (KB) = 673688 +0:The total amount of wall time = 179.374371 +0:The maximum resident set size (KB) = 669600 Test 054 datm_cdeps_control_cfsr PASS -FAILED TESTS: -Test hrrr_control_debug_dyn32_phy32 049 failed in run_test failed -REGRESSION TEST FAILED -Wed Apr 26 15:15:10 MDT 2023 -Elapsed time: 00h:33m:03s. Have a nice day! +REGRESSION TEST WAS SUCCESSFUL +Sun Apr 30 16:40:49 MDT 2023 +Elapsed time: 00h:32m:08s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index c7c39ad9509..e5720e721fd 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,46 +1,42 @@ -Wed Apr 26 14:41:40 MDT 2023 +Sun Apr 30 13:09:12 MDT 2023 Start Regression test -Test 008 compile FAIL - -Test 008 compile FAIL - -Compile 001 elapsed time 1529 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 1557 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 1436 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 485 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 416 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 1149 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 1132 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 1160 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 010 elapsed time 1076 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 984 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 877 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 1358 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 433 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 015 elapsed time 270 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 935 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 909 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 293 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 295 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 1246 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 021 elapsed time 358 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 1659 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 1164 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 024 elapsed time 431 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 196 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 431 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 103 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 1019 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 1063 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 1142 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 963 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 962 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 033 elapsed time 305 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 034 elapsed time 1120 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8_mixedmode -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/cpld_control_p8_mixedmode +Compile 001 elapsed time 1488 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1441 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 1443 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 452 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 415 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 1156 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 1172 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 1192 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 009 elapsed time 1059 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 998 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 860 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 1352 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 422 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 014 elapsed time 275 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 918 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 921 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 283 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 291 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 1248 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 020 elapsed time 345 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 021 elapsed time 1640 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 022 elapsed time 1196 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 023 elapsed time 426 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 024 elapsed time 200 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 025 elapsed time 428 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 026 elapsed time 109 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 027 elapsed time 1019 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 1072 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 1072 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 965 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 936 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 298 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 1125 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8_mixedmode +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -105,14 +101,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 321.672887 -0:The maximum resident set size (KB) = 2699020 +0:The total amount of wall time = 321.417855 +0:The maximum resident set size (KB) = 2698948 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_gfsv17 -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/cpld_control_gfsv17 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_gfsv17 +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -176,14 +172,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 280.958015 -0:The maximum resident set size (KB) = 1437764 +0:The total amount of wall time = 279.908048 +0:The maximum resident set size (KB) = 1437568 Test 002 cpld_control_gfsv17 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/cpld_control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -248,14 +244,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 323.563944 -0:The maximum resident set size (KB) = 2715308 +0:The total amount of wall time = 324.120533 +0:The maximum resident set size (KB) = 2715524 Test 003 cpld_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/cpld_restart_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -308,14 +304,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 183.949542 -0:The maximum resident set size (KB) = 2576764 +0:The total amount of wall time = 181.451702 +0:The maximum resident set size (KB) = 2576732 Test 004 cpld_restart_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/cpld_control_qr_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -380,14 +376,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 325.726496 -0:The maximum resident set size (KB) = 2719812 +0:The total amount of wall time = 324.985533 +0:The maximum resident set size (KB) = 2719976 Test 005 cpld_control_qr_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/cpld_restart_qr_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -440,14 +436,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 195.095804 -0:The maximum resident set size (KB) = 2593160 +0:The total amount of wall time = 193.655709 +0:The maximum resident set size (KB) = 2593188 Test 006 cpld_restart_qr_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/cpld_2threads_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -500,14 +496,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 253.983628 -0:The maximum resident set size (KB) = 3178452 +0:The total amount of wall time = 251.251454 +0:The maximum resident set size (KB) = 3178680 Test 007 cpld_2threads_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/cpld_decomp_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -560,14 +556,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 322.776657 -0:The maximum resident set size (KB) = 2720660 +0:The total amount of wall time = 322.368835 +0:The maximum resident set size (KB) = 2720864 Test 008 cpld_decomp_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/cpld_mpi_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -620,14 +616,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 275.594945 -0:The maximum resident set size (KB) = 2681524 +0:The total amount of wall time = 276.260223 +0:The maximum resident set size (KB) = 2681504 Test 009 cpld_mpi_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_ciceC_p8 -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/cpld_control_ciceC_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_ciceC_p8 +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -692,14 +688,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 323.964411 -0:The maximum resident set size (KB) = 2715344 +0:The total amount of wall time = 319.363706 +0:The maximum resident set size (KB) = 2715436 Test 010 cpld_control_ciceC_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/cpld_control_c192_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_c192_p8 +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/cpld_control_c192_p8 Checking test 011 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -752,14 +748,14 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -0:The total amount of wall time = 628.140020 -0:The maximum resident set size (KB) = 3352724 +0:The total amount of wall time = 630.138890 +0:The maximum resident set size (KB) = 3352340 Test 011 cpld_control_c192_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/cpld_restart_c192_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_c192_p8 +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/cpld_restart_c192_p8 Checking test 012 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -812,14 +808,14 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -0:The total amount of wall time = 384.302422 -0:The maximum resident set size (KB) = 3276380 +0:The total amount of wall time = 386.534798 +0:The maximum resident set size (KB) = 3276984 Test 012 cpld_restart_c192_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_noaero_p8 -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/cpld_control_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_noaero_p8 +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/cpld_control_noaero_p8 Checking test 013 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -883,14 +879,14 @@ Checking test 013 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 294.151897 -0:The maximum resident set size (KB) = 1435816 +0:The total amount of wall time = 294.155339 +0:The maximum resident set size (KB) = 1435712 Test 013 cpld_control_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/cpld_control_nowave_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_c96_noaero_p8 +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/cpld_control_nowave_noaero_p8 Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -952,14 +948,14 @@ Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 195.731487 -0:The maximum resident set size (KB) = 1453536 +0:The total amount of wall time = 193.772417 +0:The maximum resident set size (KB) = 1453340 Test 014 cpld_control_nowave_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_debug_p8 -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/cpld_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_debug_p8 +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/cpld_debug_p8 Checking test 015 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1012,14 +1008,14 @@ Checking test 015 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 351.153945 -0:The maximum resident set size (KB) = 2780136 +0:The total amount of wall time = 350.969540 +0:The maximum resident set size (KB) = 2780392 Test 015 cpld_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_debug_noaero_p8 -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/cpld_debug_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_debug_noaero_p8 +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/cpld_debug_noaero_p8 Checking test 016 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1071,14 +1067,14 @@ Checking test 016 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 302.615718 -0:The maximum resident set size (KB) = 1454456 +0:The total amount of wall time = 300.752955 +0:The maximum resident set size (KB) = 1454504 Test 016 cpld_debug_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_noaero_p8_agrid -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/cpld_control_noaero_p8_agrid +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_noaero_p8_agrid +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/cpld_control_noaero_p8_agrid Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1140,14 +1136,14 @@ Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 247.537902 -0:The maximum resident set size (KB) = 1457068 +0:The total amount of wall time = 254.169065 +0:The maximum resident set size (KB) = 1457096 Test 017 cpld_control_noaero_p8_agrid PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_c48 -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/cpld_control_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_c48 +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/cpld_control_c48 Checking test 018 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1197,14 +1193,14 @@ Checking test 018 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 606.168265 -0:The maximum resident set size (KB) = 2586980 +0:The total amount of wall time = 609.045412 +0:The maximum resident set size (KB) = 2586844 Test 018 cpld_control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/cpld_warmstart_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_warmstart_c48 +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/cpld_warmstart_c48 Checking test 019 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1254,14 +1250,14 @@ Checking test 019 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -0:The total amount of wall time = 161.660271 -0:The maximum resident set size (KB) = 2602716 +0:The total amount of wall time = 164.134446 +0:The maximum resident set size (KB) = 2602592 Test 019 cpld_warmstart_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/cpld_restart_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_warmstart_c48 +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/cpld_restart_c48 Checking test 020 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1311,14 +1307,14 @@ Checking test 020 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -0:The total amount of wall time = 84.113766 -0:The maximum resident set size (KB) = 2019748 +0:The total amount of wall time = 84.629131 +0:The maximum resident set size (KB) = 2019740 Test 020 cpld_restart_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_flake -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_flake +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_flake +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_flake Checking test 021 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1329,14 +1325,14 @@ Checking test 021 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 219.288733 -0:The maximum resident set size (KB) = 501536 +0:The total amount of wall time = 220.014284 +0:The maximum resident set size (KB) = 501460 Test 021 control_flake PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_CubedSphereGrid -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_CubedSphereGrid +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_CubedSphereGrid +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_CubedSphereGrid Checking test 022 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1363,28 +1359,28 @@ Checking test 022 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -0:The total amount of wall time = 142.719364 -0:The maximum resident set size (KB) = 454740 +0:The total amount of wall time = 142.625760 +0:The maximum resident set size (KB) = 454684 Test 022 control_CubedSphereGrid PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_CubedSphereGrid_parallel -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_CubedSphereGrid_parallel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_CubedSphereGrid_parallel +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_CubedSphereGrid_parallel Checking test 023 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK -0:The total amount of wall time = 140.641405 -0:The maximum resident set size (KB) = 454632 +0:The total amount of wall time = 139.754338 +0:The maximum resident set size (KB) = 454564 Test 023 control_CubedSphereGrid_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_latlon -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_latlon +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_latlon +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_latlon Checking test 024 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1395,14 +1391,14 @@ Checking test 024 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 147.817864 -0:The maximum resident set size (KB) = 454580 +0:The total amount of wall time = 147.811179 +0:The maximum resident set size (KB) = 454616 Test 024 control_latlon PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_wrtGauss_netcdf_parallel -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_wrtGauss_netcdf_parallel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_wrtGauss_netcdf_parallel +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_wrtGauss_netcdf_parallel Checking test 025 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1413,14 +1409,14 @@ Checking test 025 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 150.544199 -0:The maximum resident set size (KB) = 454472 +0:The total amount of wall time = 149.863443 +0:The maximum resident set size (KB) = 454616 Test 025 control_wrtGauss_netcdf_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_c48 -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_c48 +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_c48 Checking test 026 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1459,14 +1455,14 @@ Checking test 026 control_c48 results .... Comparing 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.421936 -0:The maximum resident set size (KB) = 634292 +0:The total amount of wall time = 443.631005 +0:The maximum resident set size (KB) = 634244 Test 026 control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_c192 -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_c192 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_c192 +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_c192 Checking test 027 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1477,14 +1473,14 @@ Checking test 027 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 595.327913 -0:The maximum resident set size (KB) = 560284 +0:The total amount of wall time = 595.641342 +0:The maximum resident set size (KB) = 560152 Test 027 control_c192 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_c384 -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_c384 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_c384 +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_c384 Checking test 028 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1495,14 +1491,14 @@ Checking test 028 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 593.675796 -0:The maximum resident set size (KB) = 903184 +0:The total amount of wall time = 584.720240 +0:The maximum resident set size (KB) = 899576 Test 028 control_c384 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_c384gdas -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_c384gdas +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_c384gdas +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_c384gdas Checking test 029 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1545,14 +1541,14 @@ Checking test 029 control_c384gdas results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 520.435298 -0:The maximum resident set size (KB) = 1028460 +0:The total amount of wall time = 518.863181 +0:The maximum resident set size (KB) = 1028424 Test 029 control_c384gdas PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_stochy -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_stochy +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_stochy +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_stochy Checking test 030 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1563,28 +1559,28 @@ Checking test 030 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 98.877239 -0:The maximum resident set size (KB) = 459604 +0:The total amount of wall time = 98.409036 +0:The maximum resident set size (KB) = 459384 Test 030 control_stochy PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_stochy -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_stochy_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_stochy +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_stochy_restart Checking test 031 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 54.408631 -0:The maximum resident set size (KB) = 228000 +0:The total amount of wall time = 53.193153 +0:The maximum resident set size (KB) = 227848 Test 031 control_stochy_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_lndp -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_lndp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_lndp +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_lndp Checking test 032 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1595,14 +1591,14 @@ Checking test 032 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 90.732675 -0:The maximum resident set size (KB) = 459216 +0:The total amount of wall time = 90.505696 +0:The maximum resident set size (KB) = 459108 Test 032 control_lndp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_iovr4 -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_iovr4 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_iovr4 +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_iovr4 Checking test 033 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1617,14 +1613,14 @@ Checking test 033 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 150.531650 -0:The maximum resident set size (KB) = 454672 +0:The total amount of wall time = 149.166368 +0:The maximum resident set size (KB) = 454632 Test 033 control_iovr4 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_iovr5 -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_iovr5 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_iovr5 +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_iovr5 Checking test 034 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1639,14 +1635,14 @@ Checking test 034 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 150.897408 -0:The maximum resident set size (KB) = 454544 +0:The total amount of wall time = 148.410158 +0:The maximum resident set size (KB) = 454640 Test 034 control_iovr5 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_p8 Checking test 035 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1693,14 +1689,14 @@ Checking test 035 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 177.540012 -0:The maximum resident set size (KB) = 1424012 +0:The total amount of wall time = 182.351476 +0:The maximum resident set size (KB) = 1423960 Test 035 control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_restart_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_restart_p8 Checking test 036 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1739,14 +1735,14 @@ Checking test 036 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 97.333872 -0:The maximum resident set size (KB) = 582184 +0:The total amount of wall time = 96.817779 +0:The maximum resident set size (KB) = 582120 Test 036 control_restart_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_qr_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_qr_p8 Checking test 037 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1793,14 +1789,14 @@ Checking test 037 control_qr_p8 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 = 183.019694 -0:The maximum resident set size (KB) = 1427728 +0:The total amount of wall time = 181.943324 +0:The maximum resident set size (KB) = 1427720 Test 037 control_qr_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_restart_qr_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_restart_qr_p8 Checking test 038 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1839,14 +1835,14 @@ Checking test 038 control_restart_qr_p8 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 = 99.079184 -0:The maximum resident set size (KB) = 597240 +0:The total amount of wall time = 99.006892 +0:The maximum resident set size (KB) = 597228 Test 038 control_restart_qr_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_decomp_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_decomp_p8 Checking test 039 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1889,14 +1885,14 @@ Checking test 039 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 183.987236 -0:The maximum resident set size (KB) = 1417756 +0:The total amount of wall time = 187.651092 +0:The maximum resident set size (KB) = 1417760 Test 039 control_decomp_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_2threads_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_2threads_p8 Checking test 040 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1939,14 +1935,14 @@ Checking test 040 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 168.452768 -0:The maximum resident set size (KB) = 1509360 +0:The total amount of wall time = 171.066275 +0:The maximum resident set size (KB) = 1509352 Test 040 control_2threads_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8_lndp -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_p8_lndp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_lndp +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_p8_lndp Checking test 041 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1965,14 +1961,14 @@ Checking test 041 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -0:The total amount of wall time = 335.772059 -0:The maximum resident set size (KB) = 1424308 +0:The total amount of wall time = 335.099613 +0:The maximum resident set size (KB) = 1424280 Test 041 control_p8_lndp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8_rrtmgp -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_p8_rrtmgp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_rrtmgp +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_p8_rrtmgp Checking test 042 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2019,14 +2015,14 @@ Checking test 042 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 255.994429 -0:The maximum resident set size (KB) = 1480592 +0:The total amount of wall time = 253.501759 +0:The maximum resident set size (KB) = 1480580 Test 042 control_p8_rrtmgp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8_mynn -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_p8_mynn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_mynn +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_p8_mynn Checking test 043 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2073,14 +2069,14 @@ Checking test 043 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 186.534079 -0:The maximum resident set size (KB) = 1428480 +0:The total amount of wall time = 185.968592 +0:The maximum resident set size (KB) = 1428476 Test 043 control_p8_mynn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/merra2_thompson -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/merra2_thompson +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/merra2_thompson +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/merra2_thompson Checking test 044 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2127,14 +2123,14 @@ Checking test 044 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 208.958326 -0:The maximum resident set size (KB) = 1430008 +0:The total amount of wall time = 201.337734 +0:The maximum resident set size (KB) = 1429968 Test 044 merra2_thompson PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/regional_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/regional_control Checking test 045 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2145,28 +2141,28 @@ Checking test 045 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 345.642325 -0:The maximum resident set size (KB) = 605152 +0:The total amount of wall time = 343.128764 +0:The maximum resident set size (KB) = 605096 Test 045 regional_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/regional_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/regional_restart Checking test 046 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 170.038317 -0:The maximum resident set size (KB) = 594460 +0:The total amount of wall time = 175.404435 +0:The maximum resident set size (KB) = 594344 Test 046 regional_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/regional_control_qr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/regional_control_qr Checking test 047 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2177,28 +2173,28 @@ Checking test 047 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 333.388828 -0:The maximum resident set size (KB) = 605484 +0:The total amount of wall time = 351.799293 +0:The maximum resident set size (KB) = 605048 Test 047 regional_control_qr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/regional_restart_qr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/regional_restart_qr Checking test 048 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 177.098753 -0:The maximum resident set size (KB) = 594464 +0:The total amount of wall time = 175.998113 +0:The maximum resident set size (KB) = 594376 Test 048 regional_restart_qr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/regional_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/regional_decomp Checking test 049 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2209,14 +2205,14 @@ Checking test 049 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 361.697557 -0:The maximum resident set size (KB) = 598952 +0:The total amount of wall time = 360.143182 +0:The maximum resident set size (KB) = 598956 Test 049 regional_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/regional_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/regional_2threads Checking test 050 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2227,14 +2223,14 @@ Checking test 050 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 201.805311 -0:The maximum resident set size (KB) = 611848 +0:The total amount of wall time = 205.137851 +0:The maximum resident set size (KB) = 611948 Test 050 regional_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_noquilt -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/regional_noquilt +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_noquilt +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/regional_noquilt Checking test 051 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2242,28 +2238,28 @@ Checking test 051 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -0:The total amount of wall time = 366.032994 -0:The maximum resident set size (KB) = 599620 +0:The total amount of wall time = 363.828998 +0:The maximum resident set size (KB) = 599556 Test 051 regional_noquilt PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_netcdf_parallel -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/regional_netcdf_parallel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_netcdf_parallel +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/regional_netcdf_parallel Checking test 052 regional_netcdf_parallel results .... - Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK - Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf000.nc .........OK Comparing phyf006.nc ............ALT CHECK......OK -0:The total amount of wall time = 336.299149 -0:The maximum resident set size (KB) = 597040 +0:The total amount of wall time = 337.787958 +0:The maximum resident set size (KB) = 597008 Test 052 regional_netcdf_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/regional_2dwrtdecomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/regional_2dwrtdecomp Checking test 053 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2274,14 +2270,14 @@ Checking test 053 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 341.949653 -0:The maximum resident set size (KB) = 605104 +0:The total amount of wall time = 342.422941 +0:The maximum resident set size (KB) = 605124 Test 053 regional_2dwrtdecomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/fv3_regional_wofs -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/regional_wofs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/fv3_regional_wofs +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/regional_wofs Checking test 054 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2292,14 +2288,14 @@ Checking test 054 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 429.770328 -0:The maximum resident set size (KB) = 276244 +0:The total amount of wall time = 427.185685 +0:The maximum resident set size (KB) = 276184 Test 054 regional_wofs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/rap_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/rap_control Checking test 055 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2346,14 +2342,14 @@ Checking test 055 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 481.388137 -0:The maximum resident set size (KB) = 823732 +0:The total amount of wall time = 480.008557 +0:The maximum resident set size (KB) = 823804 Test 055 rap_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_spp_sppt_shum_skeb -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/regional_spp_sppt_shum_skeb +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_spp_sppt_shum_skeb +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/regional_spp_sppt_shum_skeb Checking test 056 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2364,14 +2360,14 @@ Checking test 056 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 263.043487 -0:The maximum resident set size (KB) = 953768 +0:The total amount of wall time = 261.816748 +0:The maximum resident set size (KB) = 953804 Test 056 regional_spp_sppt_shum_skeb PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/rap_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/rap_decomp Checking test 057 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2418,14 +2414,14 @@ Checking test 057 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 502.438275 -0:The maximum resident set size (KB) = 822816 +0:The total amount of wall time = 502.503060 +0:The maximum resident set size (KB) = 822664 Test 057 rap_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/rap_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/rap_2threads Checking test 058 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2472,14 +2468,14 @@ Checking test 058 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 461.885804 -0:The maximum resident set size (KB) = 893368 +0:The total amount of wall time = 460.906610 +0:The maximum resident set size (KB) = 893980 Test 058 rap_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/rap_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/rap_restart Checking test 059 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2518,14 +2514,14 @@ Checking test 059 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 239.586476 -0:The maximum resident set size (KB) = 571668 +0:The total amount of wall time = 241.852534 +0:The maximum resident set size (KB) = 571760 Test 059 rap_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/rap_sfcdiff +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_sfcdiff +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/rap_sfcdiff Checking test 060 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2572,14 +2568,14 @@ Checking test 060 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 482.146032 -0:The maximum resident set size (KB) = 823728 +0:The total amount of wall time = 483.611611 +0:The maximum resident set size (KB) = 823740 Test 060 rap_sfcdiff PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/rap_sfcdiff_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_sfcdiff +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/rap_sfcdiff_decomp Checking test 061 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2626,14 +2622,14 @@ Checking test 061 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 506.292764 -0:The maximum resident set size (KB) = 822632 +0:The total amount of wall time = 506.732022 +0:The maximum resident set size (KB) = 822644 Test 061 rap_sfcdiff_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/rap_sfcdiff_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_sfcdiff +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/rap_sfcdiff_restart Checking test 062 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2672,14 +2668,14 @@ Checking test 062 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 349.012911 -0:The maximum resident set size (KB) = 571504 +0:The total amount of wall time = 355.084801 +0:The maximum resident set size (KB) = 571508 Test 062 rap_sfcdiff_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/hrrr_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/hrrr_control Checking test 063 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2726,14 +2722,14 @@ Checking test 063 hrrr_control results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 439.112110 +0:The total amount of wall time = 444.383712 0:The maximum resident set size (KB) = 821032 Test 063 hrrr_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/hrrr_control_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/hrrr_control_decomp Checking test 064 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2780,14 +2776,14 @@ Checking test 064 hrrr_control_decomp results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 458.897027 -0:The maximum resident set size (KB) = 820648 +0:The total amount of wall time = 463.828450 +0:The maximum resident set size (KB) = 820700 Test 064 hrrr_control_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/hrrr_control_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/hrrr_control_2threads Checking test 065 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2834,28 +2830,28 @@ Checking test 065 hrrr_control_2threads results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 505.005405 -0:The maximum resident set size (KB) = 895264 +0:The total amount of wall time = 499.533415 +0:The maximum resident set size (KB) = 890696 Test 065 hrrr_control_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/hrrr_control_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/hrrr_control_restart Checking test 066 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 326.894931 -0:The maximum resident set size (KB) = 567848 +0:The total amount of wall time = 336.711146 +0:The maximum resident set size (KB) = 567684 Test 066 hrrr_control_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_v1beta -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/rrfs_v1beta +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_v1beta +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/rrfs_v1beta Checking test 067 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2902,14 +2898,14 @@ Checking test 067 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 477.413004 -0:The maximum resident set size (KB) = 819776 +0:The total amount of wall time = 475.924918 +0:The maximum resident set size (KB) = 819692 Test 067 rrfs_v1beta PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_v1nssl -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/rrfs_v1nssl +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_v1nssl +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/rrfs_v1nssl Checking test 068 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2924,14 +2920,14 @@ Checking test 068 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 583.781992 -0:The maximum resident set size (KB) = 508716 +0:The total amount of wall time = 585.055382 +0:The maximum resident set size (KB) = 508784 Test 068 rrfs_v1nssl PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/rrfs_v1nssl_nohailnoccn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/rrfs_v1nssl_nohailnoccn Checking test 069 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2946,14 +2942,14 @@ Checking test 069 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 573.938243 -0:The maximum resident set size (KB) = 503064 +0:The total amount of wall time = 567.218659 +0:The maximum resident set size (KB) = 502992 Test 069 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/rrfs_smoke_conus13km_hrrr_warm Checking test 070 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2962,14 +2958,14 @@ Checking test 070 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 153.058645 -0:The maximum resident set size (KB) = 671012 +0:The total amount of wall time = 156.313614 +0:The maximum resident set size (KB) = 671084 Test 070 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 071 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2978,14 +2974,14 @@ Checking test 071 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 92.841450 -0:The maximum resident set size (KB) = 693152 +0:The total amount of wall time = 94.487423 +0:The maximum resident set size (KB) = 693072 Test 071 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/rrfs_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/rrfs_conus13km_hrrr_warm Checking test 072 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2994,14 +2990,14 @@ Checking test 072 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 134.567435 -0:The maximum resident set size (KB) = 667340 +0:The total amount of wall time = 142.410549 +0:The maximum resident set size (KB) = 667492 Test 072 rrfs_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/rrfs_smoke_conus13km_radar_tten_warm Checking test 073 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3010,26 +3006,19 @@ Checking test 073 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 153.955745 -0:The maximum resident set size (KB) = 677456 +0:The total amount of wall time = 157.480605 +0:The maximum resident set size (KB) = 677608 Test 073 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 074 rrfs_conus13km_hrrr_warm_restart_mismatch results .... - Comparing sfcf002.nc .........OK - Comparing atmf002.nc .........OK - -0:The total amount of wall time = 71.138542 -0:The maximum resident set size (KB) = 640004 + Comparing sfcf002.nc ............ALT CHECK......ERROR -Test 074 rrfs_conus13km_hrrr_warm_restart_mismatch PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_csawmg -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_csawmg +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_csawmg +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_csawmg Checking test 075 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3040,14 +3029,14 @@ Checking test 075 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 401.356225 -0:The maximum resident set size (KB) = 528040 +0:The total amount of wall time = 399.623097 +0:The maximum resident set size (KB) = 528100 Test 075 control_csawmg PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_csawmgt -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_csawmgt +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_csawmgt +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_csawmgt Checking test 076 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3058,14 +3047,14 @@ Checking test 076 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 395.514056 -0:The maximum resident set size (KB) = 528628 +0:The total amount of wall time = 395.909644 +0:The maximum resident set size (KB) = 528652 Test 076 control_csawmgt PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_ras -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_ras +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_ras +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_ras Checking test 077 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3076,26 +3065,26 @@ Checking test 077 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 205.241132 -0:The maximum resident set size (KB) = 491364 +0:The total amount of wall time = 206.039054 +0:The maximum resident set size (KB) = 491372 Test 077 control_ras PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_wam -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_wam +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_wam +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_wam Checking test 078 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -0:The total amount of wall time = 130.518810 -0:The maximum resident set size (KB) = 206916 +0:The total amount of wall time = 123.602508 +0:The maximum resident set size (KB) = 206904 Test 078 control_wam PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8_faster -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_p8_faster +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_faster +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_p8_faster Checking test 079 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3142,14 +3131,14 @@ Checking test 079 control_p8_faster results .... Comparing 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.666287 -0:The maximum resident set size (KB) = 1423852 +0:The total amount of wall time = 171.713701 +0:The maximum resident set size (KB) = 1423772 Test 079 control_p8_faster PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control_faster -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/regional_control_faster +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control_faster +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/regional_control_faster Checking test 080 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3160,56 +3149,56 @@ Checking test 080 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 322.902674 -0:The maximum resident set size (KB) = 604824 +0:The total amount of wall time = 323.349192 +0:The maximum resident set size (KB) = 604828 Test 080 regional_control_faster PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 081 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 875.572962 -0:The maximum resident set size (KB) = 704200 +0:The total amount of wall time = 874.495972 +0:The maximum resident set size (KB) = 704264 Test 081 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 082 rrfs_smoke_conus13km_hrrr_warm_debug_2threads 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.051118 -0:The maximum resident set size (KB) = 723884 +0:The total amount of wall time = 497.846035 +0:The maximum resident set size (KB) = 724004 Test 082 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/rrfs_conus13km_hrrr_warm_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/rrfs_conus13km_hrrr_warm_debug Checking test 083 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 779.071135 -0:The maximum resident set size (KB) = 697412 +0:The total amount of wall time = 783.763026 +0:The maximum resident set size (KB) = 697548 Test 083 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_CubedSphereGrid_debug -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_CubedSphereGrid_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_CubedSphereGrid_debug +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_CubedSphereGrid_debug Checking test 084 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3236,348 +3225,348 @@ Checking test 084 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -0:The total amount of wall time = 158.448991 -0:The maximum resident set size (KB) = 617992 +0:The total amount of wall time = 155.528655 +0:The maximum resident set size (KB) = 617820 Test 084 control_CubedSphereGrid_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_wrtGauss_netcdf_parallel_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_wrtGauss_netcdf_parallel_debug Checking test 085 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 158.589976 -0:The maximum resident set size (KB) = 615404 +0:The total amount of wall time = 155.532626 +0:The maximum resident set size (KB) = 615324 Test 085 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_stochy_debug -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_stochy_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_stochy_debug +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_stochy_debug Checking test 086 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 177.088405 -0:The maximum resident set size (KB) = 621288 +0:The total amount of wall time = 175.214791 +0:The maximum resident set size (KB) = 620924 Test 086 control_stochy_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_lndp_debug -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_lndp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_lndp_debug +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_lndp_debug Checking test 087 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 158.957678 -0:The maximum resident set size (KB) = 620520 +0:The total amount of wall time = 157.160539 +0:The maximum resident set size (KB) = 620416 Test 087 control_lndp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_csawmg_debug -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_csawmg_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_csawmg_debug +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_csawmg_debug Checking test 088 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 251.093338 -0:The maximum resident set size (KB) = 666812 +0:The total amount of wall time = 248.427749 +0:The maximum resident set size (KB) = 666780 Test 088 control_csawmg_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_csawmgt_debug -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_csawmgt_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_csawmgt_debug +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_csawmgt_debug Checking test 089 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 245.051313 -0:The maximum resident set size (KB) = 667768 +0:The total amount of wall time = 245.667297 +0:The maximum resident set size (KB) = 667704 Test 089 control_csawmgt_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_ras_debug -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_ras_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_ras_debug +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_ras_debug Checking test 090 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 159.607279 -0:The maximum resident set size (KB) = 630068 +0:The total amount of wall time = 159.564107 +0:The maximum resident set size (KB) = 630092 Test 090 control_ras_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_diag_debug -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_diag_debug +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_diag_debug Checking test 091 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 159.665450 -0:The maximum resident set size (KB) = 675400 +0:The total amount of wall time = 158.750342 +0:The maximum resident set size (KB) = 675196 Test 091 control_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_debug_p8 -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_debug_p8 +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_debug_p8 Checking test 092 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 174.988360 -0:The maximum resident set size (KB) = 1443348 +0:The total amount of wall time = 175.575823 +0:The maximum resident set size (KB) = 1443300 Test 092 control_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_debug -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/regional_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_debug +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/regional_debug Checking test 093 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 1038.498037 -0:The maximum resident set size (KB) = 626332 +0:The total amount of wall time = 1036.330712 +0:The maximum resident set size (KB) = 626296 Test 093 regional_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_debug -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/rap_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_debug +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/rap_control_debug Checking test 094 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 287.123421 -0:The maximum resident set size (KB) = 987152 +0:The total amount of wall time = 286.544850 +0:The maximum resident set size (KB) = 987052 Test 094 rap_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control_debug -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/hrrr_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_debug +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/hrrr_control_debug Checking test 095 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 279.733209 -0:The maximum resident set size (KB) = 983152 +0:The total amount of wall time = 279.807239 +0:The maximum resident set size (KB) = 983108 Test 095 hrrr_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_debug -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/rap_unified_drag_suite_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_debug +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/rap_unified_drag_suite_debug Checking test 096 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 288.257439 -0:The maximum resident set size (KB) = 987060 +0:The total amount of wall time = 287.469203 +0:The maximum resident set size (KB) = 987032 Test 096 rap_unified_drag_suite_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_diag_debug -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/rap_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_diag_debug +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/rap_diag_debug Checking test 097 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 301.412596 -0:The maximum resident set size (KB) = 1070188 +0:The total amount of wall time = 297.576245 +0:The maximum resident set size (KB) = 1070340 Test 097 rap_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/rap_cires_ugwp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_cires_ugwp_debug +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/rap_cires_ugwp_debug Checking test 098 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 295.232134 -0:The maximum resident set size (KB) = 986284 +0:The total amount of wall time = 292.525355 +0:The maximum resident set size (KB) = 986136 Test 098 rap_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/rap_unified_ugwp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_cires_ugwp_debug +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/rap_unified_ugwp_debug Checking test 099 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 293.213571 -0:The maximum resident set size (KB) = 987176 +0:The total amount of wall time = 292.495829 +0:The maximum resident set size (KB) = 987180 Test 099 rap_unified_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_lndp_debug -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/rap_lndp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_lndp_debug +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/rap_lndp_debug Checking test 100 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 291.760258 -0:The maximum resident set size (KB) = 987828 +0:The total amount of wall time = 289.063919 +0:The maximum resident set size (KB) = 987824 Test 100 rap_lndp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_progcld_thompson_debug -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/rap_progcld_thompson_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_progcld_thompson_debug +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/rap_progcld_thompson_debug Checking test 101 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 287.179547 -0:The maximum resident set size (KB) = 987136 +0:The total amount of wall time = 286.852958 +0:The maximum resident set size (KB) = 986960 Test 101 rap_progcld_thompson_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_noah_debug -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/rap_noah_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_noah_debug +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/rap_noah_debug Checking test 102 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 281.109720 -0:The maximum resident set size (KB) = 985120 +0:The total amount of wall time = 281.654812 +0:The maximum resident set size (KB) = 984860 Test 102 rap_noah_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_sfcdiff_debug -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/rap_sfcdiff_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_sfcdiff_debug +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/rap_sfcdiff_debug Checking test 103 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 288.969646 -0:The maximum resident set size (KB) = 987020 +0:The total amount of wall time = 287.093114 +0:The maximum resident set size (KB) = 986856 Test 103 rap_sfcdiff_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/rap_noah_sfcdiff_cires_ugwp_debug Checking test 104 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 474.807096 -0:The maximum resident set size (KB) = 985824 +0:The total amount of wall time = 472.560148 +0:The maximum resident set size (KB) = 985780 Test 104 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_v1beta_debug -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/rrfs_v1beta_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_v1beta_debug +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/rrfs_v1beta_debug Checking test 105 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 282.270172 +0:The total amount of wall time = 284.354064 0:The maximum resident set size (KB) = 983024 Test 105 rrfs_v1beta_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_clm_lake_debug -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/rap_clm_lake_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_clm_lake_debug +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/rap_clm_lake_debug Checking test 106 rap_clm_lake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 353.501509 -0:The maximum resident set size (KB) = 989936 +0:The total amount of wall time = 350.385568 +0:The maximum resident set size (KB) = 989940 Test 106 rap_clm_lake_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_flake_debug -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/rap_flake_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_flake_debug +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/rap_flake_debug Checking test 107 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 286.822153 -0:The maximum resident set size (KB) = 987376 +0:The total amount of wall time = 287.264902 +0:The maximum resident set size (KB) = 987448 Test 107 rap_flake_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_wam_debug -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_wam_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_wam_debug +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_wam_debug Checking test 108 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 290.342670 -0:The maximum resident set size (KB) = 235692 +0:The total amount of wall time = 294.787230 +0:The maximum resident set size (KB) = 235744 Test 108 control_wam_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 109 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3588,14 +3577,14 @@ Checking test 109 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 246.857563 -0:The maximum resident set size (KB) = 855236 +0:The total amount of wall time = 245.648933 +0:The maximum resident set size (KB) = 855416 Test 109 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/rap_control_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/rap_control_dyn32_phy32 Checking test 110 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3642,14 +3631,14 @@ Checking test 110 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 405.119616 -0:The maximum resident set size (KB) = 708192 +0:The total amount of wall time = 399.019519 +0:The maximum resident set size (KB) = 708228 Test 110 rap_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/hrrr_control_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/hrrr_control_dyn32_phy32 Checking test 111 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3696,14 +3685,14 @@ Checking test 111 hrrr_control_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 202.420966 -0:The maximum resident set size (KB) = 707924 +0:The total amount of wall time = 200.379255 +0:The maximum resident set size (KB) = 708004 Test 111 hrrr_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/rap_2threads_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/rap_2threads_dyn32_phy32 Checking test 112 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3750,14 +3739,14 @@ Checking test 112 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 388.463474 -0:The maximum resident set size (KB) = 760008 +0:The total amount of wall time = 386.461614 +0:The maximum resident set size (KB) = 759936 Test 112 rap_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/hrrr_control_2threads_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/hrrr_control_2threads_dyn32_phy32 Checking test 113 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3804,14 +3793,14 @@ Checking test 113 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 276.978389 -0:The maximum resident set size (KB) = 753372 +0:The total amount of wall time = 273.962865 +0:The maximum resident set size (KB) = 753240 Test 113 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/hrrr_control_decomp_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/hrrr_control_decomp_dyn32_phy32 Checking test 114 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3858,14 +3847,14 @@ Checking test 114 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 210.700304 -0:The maximum resident set size (KB) = 706056 +0:The total amount of wall time = 214.054548 +0:The maximum resident set size (KB) = 705932 Test 114 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/rap_restart_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/rap_restart_dyn32_phy32 Checking test 115 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3904,28 +3893,28 @@ Checking test 115 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 295.294540 -0:The maximum resident set size (KB) = 545168 +0:The total amount of wall time = 296.891445 +0:The maximum resident set size (KB) = 545284 Test 115 rap_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/hrrr_control_restart_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/hrrr_control_restart_dyn32_phy32 Checking test 116 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 104.556298 -0:The maximum resident set size (KB) = 536784 +0:The total amount of wall time = 103.153294 +0:The maximum resident set size (KB) = 536720 Test 116 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_dyn64_phy32 -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/rap_control_dyn64_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_dyn64_phy32 +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/rap_control_dyn64_phy32 Checking test 117 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3972,81 +3961,81 @@ Checking test 117 rap_control_dyn64_phy32 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 = 274.281142 -0:The maximum resident set size (KB) = 730672 +0:The total amount of wall time = 272.254993 +0:The maximum resident set size (KB) = 730732 Test 117 rap_control_dyn64_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/rap_control_debug_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/rap_control_debug_dyn32_phy32 Checking test 118 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 281.440805 -0:The maximum resident set size (KB) = 872388 +0:The total amount of wall time = 281.495019 +0:The maximum resident set size (KB) = 872284 Test 118 rap_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/hrrr_control_debug_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/hrrr_control_debug_dyn32_phy32 Checking test 119 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 276.821068 -0:The maximum resident set size (KB) = 871132 +0:The total amount of wall time = 275.302387 +0:The maximum resident set size (KB) = 871000 Test 119 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/rap_control_dyn64_phy32_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_debug_dyn64_phy32 +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/rap_control_dyn64_phy32_debug Checking test 120 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 289.174459 -0:The maximum resident set size (KB) = 892980 +0:The total amount of wall time = 288.354232 +0:The maximum resident set size (KB) = 892948 Test 120 rap_control_dyn64_phy32_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_atm -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/hafs_regional_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/hafs_regional_atm Checking test 121 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -0:The total amount of wall time = 263.980198 -0:The maximum resident set size (KB) = 742996 +0:The total amount of wall time = 258.410788 +0:The maximum resident set size (KB) = 743224 Test 121 hafs_regional_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/hafs_regional_atm_thompson_gfdlsf +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/hafs_regional_atm_thompson_gfdlsf Checking test 122 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -0:The total amount of wall time = 295.128699 -0:The maximum resident set size (KB) = 1099588 +0:The total amount of wall time = 293.673615 +0:The maximum resident set size (KB) = 1098628 Test 122 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_atm_ocn -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/hafs_regional_atm_ocn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm_ocn +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/hafs_regional_atm_ocn Checking test 123 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4055,14 +4044,14 @@ Checking test 123 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 454.529732 -0:The maximum resident set size (KB) = 743180 +0:The total amount of wall time = 454.456908 +0:The maximum resident set size (KB) = 743148 Test 123 hafs_regional_atm_ocn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_atm_wav -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/hafs_regional_atm_wav +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm_wav +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/hafs_regional_atm_wav Checking test 124 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4071,14 +4060,14 @@ Checking test 124 hafs_regional_atm_wav 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 = 1032.811267 -0:The maximum resident set size (KB) = 772712 +0:The total amount of wall time = 1053.170236 +0:The maximum resident set size (KB) = 773044 Test 124 hafs_regional_atm_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_atm_ocn_wav -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/hafs_regional_atm_ocn_wav +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm_ocn_wav +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/hafs_regional_atm_ocn_wav Checking test 125 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4089,28 +4078,28 @@ Checking test 125 hafs_regional_atm_ocn_wav 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 = 1127.529933 -0:The maximum resident set size (KB) = 793360 +0:The total amount of wall time = 1113.133268 +0:The maximum resident set size (KB) = 793060 Test 125 hafs_regional_atm_ocn_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_1nest_atm -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/hafs_regional_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_1nest_atm +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/hafs_regional_1nest_atm Checking test 126 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 375.573684 -0:The maximum resident set size (KB) = 301196 +0:The total amount of wall time = 365.607502 +0:The maximum resident set size (KB) = 301112 Test 126 hafs_regional_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/hafs_regional_telescopic_2nests_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/hafs_regional_telescopic_2nests_atm Checking test 127 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4119,28 +4108,28 @@ Checking test 127 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -0:The total amount of wall time = 426.862349 -0:The maximum resident set size (KB) = 321100 +0:The total amount of wall time = 425.989139 +0:The maximum resident set size (KB) = 321096 Test 127 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_global_1nest_atm -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/hafs_global_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_global_1nest_atm +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/hafs_global_1nest_atm Checking test 128 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 168.318264 -0:The maximum resident set size (KB) = 214588 +0:The total amount of wall time = 171.191424 +0:The maximum resident set size (KB) = 214616 Test 128 hafs_global_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_global_multiple_4nests_atm -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/hafs_global_multiple_4nests_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_global_multiple_4nests_atm +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/hafs_global_multiple_4nests_atm Checking test 129 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4158,14 +4147,14 @@ Checking test 129 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -0:The total amount of wall time = 483.171911 -0:The maximum resident set size (KB) = 303716 +0:The total amount of wall time = 480.668610 +0:The maximum resident set size (KB) = 303684 Test 129 hafs_global_multiple_4nests_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/hafs_regional_specified_moving_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/hafs_regional_specified_moving_1nest_atm Checking test 130 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4174,28 +4163,28 @@ Checking test 130 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -0:The total amount of wall time = 248.776075 -0:The maximum resident set size (KB) = 318236 +0:The total amount of wall time = 239.938451 +0:The maximum resident set size (KB) = 319240 Test 130 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/hafs_regional_storm_following_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/hafs_regional_storm_following_1nest_atm Checking test 131 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 228.727724 -0:The maximum resident set size (KB) = 318460 +0:The total amount of wall time = 227.619369 +0:The maximum resident set size (KB) = 318948 Test 131 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/hafs_regional_storm_following_1nest_atm_ocn Checking test 132 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4204,42 +4193,42 @@ Checking test 132 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -0:The total amount of wall time = 281.832654 -0:The maximum resident set size (KB) = 375684 +0:The total amount of wall time = 281.891182 +0:The maximum resident set size (KB) = 375320 Test 132 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_global_storm_following_1nest_atm -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/hafs_global_storm_following_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_global_storm_following_1nest_atm +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/hafs_global_storm_following_1nest_atm Checking test 133 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 66.405989 -0:The maximum resident set size (KB) = 233984 +0:The total amount of wall time = 66.446998 +0:The maximum resident set size (KB) = 233960 Test 133 hafs_global_storm_following_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 134 hafs_regional_storm_following_1nest_atm_ocn_debug results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK -0:The total amount of wall time = 766.323484 -0:The maximum resident set size (KB) = 401980 +0:The total amount of wall time = 763.550379 +0:The maximum resident set size (KB) = 401956 Test 134 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4250,14 +4239,14 @@ Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -0:The total amount of wall time = 785.188862 -0:The maximum resident set size (KB) = 427108 +0:The total amount of wall time = 721.856209 +0:The maximum resident set size (KB) = 428968 Test 135 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_docn -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/hafs_regional_docn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_docn +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/hafs_regional_docn Checking test 136 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4265,14 +4254,14 @@ Checking test 136 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 389.740980 -0:The maximum resident set size (KB) = 757052 +0:The total amount of wall time = 389.414687 +0:The maximum resident set size (KB) = 756816 Test 136 hafs_regional_docn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_docn_oisst -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/hafs_regional_docn_oisst +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_docn_oisst +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/hafs_regional_docn_oisst Checking test 137 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4280,131 +4269,131 @@ Checking test 137 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 393.032359 -0:The maximum resident set size (KB) = 736720 +0:The total amount of wall time = 391.445828 +0:The maximum resident set size (KB) = 736264 Test 137 hafs_regional_docn_oisst PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_datm_cdeps -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/hafs_regional_datm_cdeps +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_datm_cdeps +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/hafs_regional_datm_cdeps Checking test 138 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -0:The total amount of wall time = 1280.134882 -0:The maximum resident set size (KB) = 887900 +0:The total amount of wall time = 1285.697991 +0:The maximum resident set size (KB) = 887960 Test 138 hafs_regional_datm_cdeps PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/datm_cdeps_control_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/datm_cdeps_control_cfsr Checking test 139 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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.618229 -0:The maximum resident set size (KB) = 716704 +0:The total amount of wall time = 161.252337 +0:The maximum resident set size (KB) = 716692 Test 139 datm_cdeps_control_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/datm_cdeps_restart_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/datm_cdeps_restart_cfsr Checking test 140 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 100.180167 -0:The maximum resident set size (KB) = 704868 +0:The total amount of wall time = 100.776304 +0:The maximum resident set size (KB) = 704856 Test 140 datm_cdeps_restart_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_control_gefs -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/datm_cdeps_control_gefs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_control_gefs +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/datm_cdeps_control_gefs Checking test 141 datm_cdeps_control_gefs 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 = 159.515968 -0:The maximum resident set size (KB) = 607524 +0:The total amount of wall time = 160.543504 +0:The maximum resident set size (KB) = 607456 Test 141 datm_cdeps_control_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_iau_gefs -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/datm_cdeps_iau_gefs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_iau_gefs +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/datm_cdeps_iau_gefs Checking test 142 datm_cdeps_iau_gefs 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 = 164.655843 -0:The maximum resident set size (KB) = 607496 +0:The total amount of wall time = 163.904742 +0:The maximum resident set size (KB) = 607476 Test 142 datm_cdeps_iau_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_stochy_gefs -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/datm_cdeps_stochy_gefs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_stochy_gefs +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/datm_cdeps_stochy_gefs Checking test 143 datm_cdeps_stochy_gefs 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 = 159.958544 -0:The maximum resident set size (KB) = 607508 +0:The total amount of wall time = 164.616527 +0:The maximum resident set size (KB) = 607512 Test 143 datm_cdeps_stochy_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_ciceC_cfsr -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/datm_cdeps_ciceC_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_ciceC_cfsr +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/datm_cdeps_ciceC_cfsr Checking test 144 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 168.454026 -0:The maximum resident set size (KB) = 728116 +0:The total amount of wall time = 167.860170 +0:The maximum resident set size (KB) = 728140 Test 144 datm_cdeps_ciceC_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_bulk_cfsr -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/datm_cdeps_bulk_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_bulk_cfsr +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/datm_cdeps_bulk_cfsr Checking test 145 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 168.747238 -0:The maximum resident set size (KB) = 716680 +0:The total amount of wall time = 168.810807 +0:The maximum resident set size (KB) = 716688 Test 145 datm_cdeps_bulk_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_bulk_gefs -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/datm_cdeps_bulk_gefs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_bulk_gefs +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/datm_cdeps_bulk_gefs Checking test 146 datm_cdeps_bulk_gefs 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 = 159.578798 -0:The maximum resident set size (KB) = 607508 +0:The total amount of wall time = 159.505684 +0:The maximum resident set size (KB) = 607468 Test 146 datm_cdeps_bulk_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_mx025_cfsr -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/datm_cdeps_mx025_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_mx025_cfsr +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/datm_cdeps_mx025_cfsr Checking test 147 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4413,14 +4402,14 @@ Checking test 147 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 423.802040 -0:The maximum resident set size (KB) = 514360 +0:The total amount of wall time = 423.023532 +0:The maximum resident set size (KB) = 514380 Test 147 datm_cdeps_mx025_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_mx025_gefs -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/datm_cdeps_mx025_gefs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_mx025_gefs +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/datm_cdeps_mx025_gefs Checking test 148 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4429,77 +4418,77 @@ Checking test 148 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 400.275749 -0:The maximum resident set size (KB) = 494796 +0:The total amount of wall time = 415.883147 +0:The maximum resident set size (KB) = 494816 Test 148 datm_cdeps_mx025_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/datm_cdeps_multiple_files_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/datm_cdeps_multiple_files_cfsr Checking test 149 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 167.966505 -0:The maximum resident set size (KB) = 727788 +0:The total amount of wall time = 167.031150 +0:The maximum resident set size (KB) = 727672 Test 149 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/datm_cdeps_3072x1536_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/datm_cdeps_3072x1536_cfsr Checking test 150 datm_cdeps_3072x1536_cfsr 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 = 239.900791 -0:The maximum resident set size (KB) = 1940308 +0:The total amount of wall time = 266.458123 +0:The maximum resident set size (KB) = 1942048 Test 150 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_gfs -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/datm_cdeps_gfs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_gfs +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/datm_cdeps_gfs Checking test 151 datm_cdeps_gfs 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 = 256.809793 -0:The maximum resident set size (KB) = 1942044 +0:The total amount of wall time = 267.387189 +0:The maximum resident set size (KB) = 1942040 Test 151 datm_cdeps_gfs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_debug_cfsr -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/datm_cdeps_debug_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_debug_cfsr +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/datm_cdeps_debug_cfsr Checking test 152 datm_cdeps_debug_cfsr 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 = 370.845338 -0:The maximum resident set size (KB) = 700648 +0:The total amount of wall time = 368.856946 +0:The maximum resident set size (KB) = 700600 Test 152 datm_cdeps_debug_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_control_cfsr_faster -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/datm_cdeps_control_cfsr_faster +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_control_cfsr_faster +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/datm_cdeps_control_cfsr_faster Checking test 153 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 167.915262 -0:The maximum resident set size (KB) = 727856 +0:The total amount of wall time = 167.746460 +0:The maximum resident set size (KB) = 716724 Test 153 datm_cdeps_control_cfsr_faster PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/datm_cdeps_lnd_gswp3 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_lnd_gswp3 +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/datm_cdeps_lnd_gswp3 Checking test 154 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4508,14 +4497,14 @@ Checking test 154 datm_cdeps_lnd_gswp3 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 = 10.852502 -0:The maximum resident set size (KB) = 208244 +0:The total amount of wall time = 10.751994 +0:The maximum resident set size (KB) = 208252 Test 154 datm_cdeps_lnd_gswp3 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/datm_cdeps_lnd_gswp3_rst +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_lnd_gswp3 +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/datm_cdeps_lnd_gswp3_rst Checking test 155 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4524,14 +4513,14 @@ Checking test 155 datm_cdeps_lnd_gswp3_rst 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 = 15.551730 -0:The maximum resident set size (KB) = 208260 +0:The total amount of wall time = 15.840502 +0:The maximum resident set size (KB) = 208212 Test 155 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8_atmlnd_sbs -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_p8_atmlnd_sbs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_atmlnd_sbs +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_p8_atmlnd_sbs Checking test 156 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4616,14 +4605,14 @@ Checking test 156 control_p8_atmlnd_sbs 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 = 234.048548 -0:The maximum resident set size (KB) = 1463224 +0:The total amount of wall time = 232.528273 +0:The maximum resident set size (KB) = 1463204 Test 156 control_p8_atmlnd_sbs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/atmwav_control_noaero_p8 -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/atmwav_control_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/atmwav_control_noaero_p8 +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/atmwav_control_noaero_p8 Checking test 157 atmwav_control_noaero_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4666,14 +4655,14 @@ Checking test 157 atmwav_control_noaero_p8 results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK -0:The total amount of wall time = 100.345901 -0:The maximum resident set size (KB) = 1434432 +0:The total amount of wall time = 100.908419 +0:The maximum resident set size (KB) = 1434576 Test 157 atmwav_control_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/control_atmwav -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/control_atmwav +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_atmwav +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_atmwav Checking test 158 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4717,14 +4706,14 @@ Checking test 158 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -0:The total amount of wall time = 100.422917 -0:The maximum resident set size (KB) = 475388 +0:The total amount of wall time = 100.640303 +0:The maximum resident set size (KB) = 475360 Test 158 control_atmwav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/atmaero_control_p8 -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/atmaero_control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/atmaero_control_p8 +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/atmaero_control_p8 Checking test 159 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4768,14 +4757,14 @@ Checking test 159 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 250.318591 -0:The maximum resident set size (KB) = 2703880 +0:The total amount of wall time = 252.053716 +0:The maximum resident set size (KB) = 2703968 Test 159 atmaero_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/atmaero_control_p8_rad -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/atmaero_control_p8_rad +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/atmaero_control_p8_rad +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/atmaero_control_p8_rad Checking test 160 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4819,14 +4808,14 @@ Checking test 160 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 306.152107 -0:The maximum resident set size (KB) = 2758724 +0:The total amount of wall time = 304.185803 +0:The maximum resident set size (KB) = 2758836 Test 160 atmaero_control_p8_rad PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/atmaero_control_p8_rad_micro -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/atmaero_control_p8_rad_micro +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/atmaero_control_p8_rad_micro +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/atmaero_control_p8_rad_micro Checking test 161 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4870,14 +4859,14 @@ Checking test 161 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 309.499101 -0:The maximum resident set size (KB) = 2765556 +0:The total amount of wall time = 301.293732 +0:The maximum resident set size (KB) = 2765640 Test 161 atmaero_control_p8_rad_micro PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_atmaq -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/regional_atmaq +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_atmaq +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/regional_atmaq Checking test 162 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4893,14 +4882,14 @@ Checking test 162 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -0:The total amount of wall time = 749.162521 -0:The maximum resident set size (KB) = 999696 +0:The total amount of wall time = 745.297047 +0:The maximum resident set size (KB) = 999656 Test 162 regional_atmaq PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_atmaq_faster -working dir = /glade/scratch/jongkim/rt-1720-intel/jongkim/FV3_RT/rt_21075/regional_atmaq_faster +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_atmaq_faster +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/regional_atmaq_faster Checking test 163 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4916,14 +4905,50 @@ Checking test 163 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -0:The total amount of wall time = 693.298591 -0:The maximum resident set size (KB) = 999492 +0:The total amount of wall time = 693.508165 +0:The maximum resident set size (KB) = 999416 Test 163 regional_atmaq_faster PASS FAILED TESTS: -Test compile_008 failed in run_compile failed +Test rrfs_conus13km_hrrr_warm_restart_mismatch 074 failed in run_test failed REGRESSION TEST FAILED -Wed Apr 26 16:01:19 MDT 2023 -Elapsed time: 01h:19m:40s. Have a nice day! +Sun Apr 30 14:28:02 MDT 2023 +Elapsed time: 01h:18m:50s. Have a nice day! +Sun Apr 30 16:08:18 MDT 2023 +Start Regression test + +Compile 001 elapsed time 1049 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_24933/rrfs_conus13km_hrrr_warm +Checking test 001 rrfs_conus13km_hrrr_warm 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 + +0:The total amount of wall time = 140.263096 +0:The maximum resident set size (KB) = 667452 + +Test 001 rrfs_conus13km_hrrr_warm PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_24933/rrfs_conus13km_hrrr_warm_restart_mismatch +Checking test 002 rrfs_conus13km_hrrr_warm_restart_mismatch results .... + Comparing sfcf002.nc .........OK + Comparing atmf002.nc .........OK + +0:The total amount of wall time = 72.623009 +0:The maximum resident set size (KB) = 640268 + +Test 002 rrfs_conus13km_hrrr_warm_restart_mismatch PASS + + +REGRESSION TEST WAS SUCCESSFUL +Sun Apr 30 16:34:28 MDT 2023 +Elapsed time: 00h:26m:10s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 3fd36a9030d..96c1bb7ba4f 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,21 +1,21 @@ -Thu Apr 27 17:00:54 UTC 2023 +Sun Apr 30 22:22:59 UTC 2023 Start Regression test -Compile 001 elapsed time 194 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 002 elapsed time 204 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 341 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 120 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 192 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 420 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 341 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 340 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 268 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 233 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 144 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 012 elapsed time 113 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/control_c48 +Compile 001 elapsed time 189 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 002 elapsed time 199 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 333 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 102 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 193 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 418 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 342 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 339 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 266 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 238 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 145 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 012 elapsed time 112 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/control_c48 Checking test 001 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -54,14 +54,14 @@ Checking test 001 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 685.241649 -0: The maximum resident set size (KB) = 706860 +0: The total amount of wall time = 689.816084 +0: The maximum resident set size (KB) = 705036 Test 001 control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/control_stochy +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/control_stochy Checking test 002 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -72,14 +72,14 @@ Checking test 002 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 654.257670 - 0: The maximum resident set size (KB) = 482884 + 0: The total amount of wall time = 661.572556 + 0: The maximum resident set size (KB) = 480536 Test 002 control_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/control_ras -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/control_ras +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/control_ras +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/control_ras Checking test 003 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -90,14 +90,14 @@ Checking test 003 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 842.374216 - 0: The maximum resident set size (KB) = 484956 + 0: The total amount of wall time = 839.565690 + 0: The maximum resident set size (KB) = 486508 Test 003 control_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/control_p8 Checking test 004 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -144,14 +144,14 @@ Checking test 004 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 913.106489 - 0: The maximum resident set size (KB) = 1235536 + 0: The total amount of wall time = 900.889145 + 0: The maximum resident set size (KB) = 1240688 Test 004 control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/control_flake -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/control_flake +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/control_flake +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/control_flake Checking test 005 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -162,14 +162,14 @@ Checking test 005 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 1559.628276 - 0: The maximum resident set size (KB) = 524912 + 0: The total amount of wall time = 1537.182282 + 0: The maximum resident set size (KB) = 521984 Test 005 control_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/rap_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/rap_control Checking test 006 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -216,14 +216,14 @@ Checking test 006 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1472.879577 - 0: The maximum resident set size (KB) = 821652 + 0: The total amount of wall time = 1488.372449 + 0: The maximum resident set size (KB) = 827148 Test 006 rap_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/rap_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/rap_decomp Checking test 007 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -270,14 +270,14 @@ Checking test 007 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1468.326287 - 0: The maximum resident set size (KB) = 827424 + 0: The total amount of wall time = 1430.764861 + 0: The maximum resident set size (KB) = 832244 Test 007 rap_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/rap_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/rap_2threads Checking test 008 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -324,14 +324,14 @@ Checking test 008 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1347.581107 - 0: The maximum resident set size (KB) = 896740 + 0: The total amount of wall time = 1340.825302 + 0: The maximum resident set size (KB) = 900936 Test 008 rap_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/rap_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/rap_restart Checking test 009 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -370,14 +370,14 @@ Checking test 009 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 731.101898 - 0: The maximum resident set size (KB) = 535576 + 0: The total amount of wall time = 714.745097 + 0: The maximum resident set size (KB) = 544988 Test 009 rap_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/rap_sfcdiff +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/rap_sfcdiff Checking test 010 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -424,14 +424,14 @@ Checking test 010 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1463.067160 - 0: The maximum resident set size (KB) = 830228 + 0: The total amount of wall time = 1463.881595 + 0: The maximum resident set size (KB) = 827504 Test 010 rap_sfcdiff PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/rap_sfcdiff_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/rap_sfcdiff_decomp Checking test 011 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -478,14 +478,14 @@ Checking test 011 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1469.364495 - 0: The maximum resident set size (KB) = 825796 + 0: The total amount of wall time = 1486.206499 + 0: The maximum resident set size (KB) = 826252 Test 011 rap_sfcdiff_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/rap_sfcdiff_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/rap_sfcdiff_restart Checking test 012 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -524,14 +524,14 @@ Checking test 012 rap_sfcdiff_restart results .... Comparing 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.455939 - 0: The maximum resident set size (KB) = 550704 + 0: The total amount of wall time = 1080.669798 + 0: The maximum resident set size (KB) = 555076 Test 012 rap_sfcdiff_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/hrrr_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/hrrr_control Checking test 013 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -578,14 +578,14 @@ Checking test 013 hrrr_control results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1443.337118 - 0: The maximum resident set size (KB) = 825764 + 0: The total amount of wall time = 1459.616064 + 0: The maximum resident set size (KB) = 823676 Test 013 hrrr_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/hrrr_control_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/hrrr_control_2threads Checking test 014 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -632,14 +632,14 @@ Checking test 014 hrrr_control_2threads results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1523.491681 - 0: The maximum resident set size (KB) = 890496 + 0: The total amount of wall time = 1510.983171 + 0: The maximum resident set size (KB) = 890960 Test 014 hrrr_control_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/hrrr_control_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/hrrr_control_decomp Checking test 015 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -686,28 +686,28 @@ Checking test 015 hrrr_control_decomp results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1423.997940 - 0: The maximum resident set size (KB) = 830248 + 0: The total amount of wall time = 1437.808125 + 0: The maximum resident set size (KB) = 825160 Test 015 hrrr_control_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/hrrr_control_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/hrrr_control_restart Checking test 016 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1061.544794 - 0: The maximum resident set size (KB) = 546884 + 0: The total amount of wall time = 1026.933050 + 0: The maximum resident set size (KB) = 549748 Test 016 hrrr_control_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/rrfs_v1beta +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/rrfs_v1beta Checking test 017 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -754,14 +754,14 @@ Checking test 017 rrfs_v1beta results .... Comparing 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.767900 - 0: The maximum resident set size (KB) = 826480 + 0: The total amount of wall time = 1505.579023 + 0: The maximum resident set size (KB) = 823172 Test 017 rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/rrfs_smoke_conus13km_hrrr_warm Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -770,14 +770,14 @@ Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 766.607946 - 0: The maximum resident set size (KB) = 672016 + 0: The total amount of wall time = 833.363666 + 0: The maximum resident set size (KB) = 674136 Test 018 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 019 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -786,14 +786,14 @@ Checking test 019 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 1059.814141 - 0: The maximum resident set size (KB) = 670148 + 0: The total amount of wall time = 1079.085649 + 0: The maximum resident set size (KB) = 668140 Test 019 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/rrfs_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/rrfs_conus13km_hrrr_warm Checking test 020 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -802,14 +802,14 @@ Checking test 020 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 768.513007 - 0: The maximum resident set size (KB) = 647844 + 0: The total amount of wall time = 788.029145 + 0: The maximum resident set size (KB) = 647852 Test 020 rrfs_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/rrfs_smoke_conus13km_radar_tten_warm Checking test 021 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -818,262 +818,262 @@ Checking test 021 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 786.054357 - 0: The maximum resident set size (KB) = 673524 + 0: The total amount of wall time = 820.703579 + 0: The maximum resident set size (KB) = 675108 Test 021 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 022 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 389.984383 - 0: The maximum resident set size (KB) = 636284 + 0: The total amount of wall time = 394.311709 + 0: The maximum resident set size (KB) = 636016 Test 022 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/control_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/control_diag_debug Checking test 023 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 122.279558 - 0: The maximum resident set size (KB) = 528312 + 0: The total amount of wall time = 123.234329 + 0: The maximum resident set size (KB) = 534180 Test 023 control_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/regional_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/regional_debug Checking test 024 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 715.201663 - 0: The maximum resident set size (KB) = 582720 + 0: The total amount of wall time = 731.831598 + 0: The maximum resident set size (KB) = 591832 Test 024 regional_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/rap_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/rap_control_debug Checking test 025 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 172.135304 - 0: The maximum resident set size (KB) = 838888 + 0: The total amount of wall time = 172.586100 + 0: The maximum resident set size (KB) = 845184 Test 025 rap_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/hrrr_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/hrrr_control_debug Checking test 026 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 167.372466 - 0: The maximum resident set size (KB) = 833728 + 0: The total amount of wall time = 166.183265 + 0: The maximum resident set size (KB) = 834392 Test 026 hrrr_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/rap_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/rap_diag_debug Checking test 027 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 205.578747 - 0: The maximum resident set size (KB) = 919712 + 0: The total amount of wall time = 210.727235 + 0: The maximum resident set size (KB) = 919348 Test 027 rap_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/rap_noah_sfcdiff_cires_ugwp_debug Checking test 028 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.136288 - 0: The maximum resident set size (KB) = 835288 + 0: The total amount of wall time = 269.687128 + 0: The maximum resident set size (KB) = 834208 Test 028 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/rap_progcld_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/rap_progcld_thompson_debug Checking test 029 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 176.320829 - 0: The maximum resident set size (KB) = 836652 + 0: The total amount of wall time = 174.063633 + 0: The maximum resident set size (KB) = 842924 Test 029 rap_progcld_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/rrfs_v1beta_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/rrfs_v1beta_debug Checking test 030 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 168.671732 - 0: The maximum resident set size (KB) = 835468 + 0: The total amount of wall time = 170.617527 + 0: The maximum resident set size (KB) = 833768 Test 030 rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/control_ras_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/control_ras_debug Checking test 031 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 100.164913 - 0: The maximum resident set size (KB) = 482320 + 0: The total amount of wall time = 102.123148 + 0: The maximum resident set size (KB) = 481864 Test 031 control_ras_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/control_stochy_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/control_stochy_debug Checking test 032 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 116.958420 - 0: The maximum resident set size (KB) = 471684 + 0: The total amount of wall time = 116.161577 + 0: The maximum resident set size (KB) = 479484 Test 032 control_stochy_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/control_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/control_debug_p8 Checking test 033 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 117.009122 - 0: The maximum resident set size (KB) = 1228768 + 0: The total amount of wall time = 114.977993 + 0: The maximum resident set size (KB) = 1232816 Test 033 control_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 034 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 609.801017 - 0: The maximum resident set size (KB) = 683360 + 0: The total amount of wall time = 634.253660 + 0: The maximum resident set size (KB) = 686272 Test 034 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 035 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 739.701547 - 0: The maximum resident set size (KB) = 682916 + 0: The total amount of wall time = 705.912461 + 0: The maximum resident set size (KB) = 685500 Test 035 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/rrfs_conus13km_hrrr_warm_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rrfs_conus13km_hrrr_warm_debugs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/rrfs_conus13km_hrrr_warm_debug Checking test 036 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 616.776778 - 0: The maximum resident set size (KB) = 660556 + 0: The total amount of wall time = 581.070571 + 0: The maximum resident set size (KB) = 658852 Test 036 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/rap_flake_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/rap_flake_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rap_flake_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/rap_flake_debug Checking test 037 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 174.316431 - 0: The maximum resident set size (KB) = 845336 + 0: The total amount of wall time = 175.202058 + 0: The maximum resident set size (KB) = 838744 Test 037 rap_flake_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/rap_clm_lake_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/rap_clm_lake_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rap_clm_lake_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/rap_clm_lake_debug Checking test 038 rap_clm_lake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 191.371796 - 0: The maximum resident set size (KB) = 840864 + 0: The total amount of wall time = 190.653243 + 0: The maximum resident set size (KB) = 838376 Test 038 rap_clm_lake_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/control_wam_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/control_wam_debug Checking test 039 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 183.801550 - 0: The maximum resident set size (KB) = 192456 + 0: The total amount of wall time = 179.411816 + 0: The maximum resident set size (KB) = 192252 Test 039 control_wam_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/rap_control_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/rap_control_dyn32_phy32 Checking test 040 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1120,14 +1120,14 @@ Checking test 040 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1516.524630 - 0: The maximum resident set size (KB) = 683276 + 0: The total amount of wall time = 1489.501061 + 0: The maximum resident set size (KB) = 683648 Test 040 rap_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/hrrr_control_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/hrrr_control_dyn32_phy32 Checking test 041 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1174,14 +1174,14 @@ Checking test 041 hrrr_control_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 745.804522 - 0: The maximum resident set size (KB) = 681980 + 0: The total amount of wall time = 721.549332 + 0: The maximum resident set size (KB) = 677996 Test 041 hrrr_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/rap_2threads_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/rap_2threads_dyn32_phy32 Checking test 042 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1228,14 +1228,14 @@ Checking test 042 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1381.127406 - 0: The maximum resident set size (KB) = 729204 + 0: The total amount of wall time = 1379.610616 + 0: The maximum resident set size (KB) = 728056 Test 042 rap_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/hrrr_control_2threads_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/hrrr_control_2threads_dyn32_phy32 Checking test 043 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1282,14 +1282,14 @@ Checking test 043 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 769.419236 - 0: The maximum resident set size (KB) = 726192 + 0: The total amount of wall time = 750.635022 + 0: The maximum resident set size (KB) = 725368 Test 043 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/hrrr_control_decomp_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/hrrr_control_decomp_dyn32_phy32 Checking test 044 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1336,14 +1336,14 @@ Checking test 044 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 726.648140 - 0: The maximum resident set size (KB) = 679144 + 0: The total amount of wall time = 711.349101 + 0: The maximum resident set size (KB) = 679808 Test 044 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/rap_restart_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/rap_restart_dyn32_phy32 Checking test 045 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1382,28 +1382,28 @@ Checking test 045 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1079.518590 - 0: The maximum resident set size (KB) = 514548 + 0: The total amount of wall time = 1079.546248 + 0: The maximum resident set size (KB) = 503004 Test 045 rap_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/hrrr_control_restart_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/hrrr_control_restart_dyn32_phy32 Checking test 046 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 375.026771 - 0: The maximum resident set size (KB) = 509000 + 0: The total amount of wall time = 362.057455 + 0: The maximum resident set size (KB) = 508200 Test 046 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/rap_control_dyn64_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/rap_control_dyn64_phy32 Checking test 047 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1450,56 +1450,56 @@ Checking test 047 rap_control_dyn64_phy32 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 = 1070.237993 - 0: The maximum resident set size (KB) = 705220 + 0: The total amount of wall time = 1054.806448 + 0: The maximum resident set size (KB) = 704348 Test 047 rap_control_dyn64_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/rap_control_debug_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/rap_control_debug_dyn32_phy32 Checking test 048 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 171.733157 - 0: The maximum resident set size (KB) = 701952 + 0: The total amount of wall time = 170.481312 + 0: The maximum resident set size (KB) = 700496 Test 048 rap_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/hrrr_control_debug_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/hrrr_control_debug_dyn32_phy32 Checking test 049 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 168.263030 - 0: The maximum resident set size (KB) = 691920 + 0: The total amount of wall time = 163.874128 + 0: The maximum resident set size (KB) = 692064 Test 049 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/rap_control_dyn64_phy32_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rap_control_debug_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/rap_control_dyn64_phy32_debug Checking test 050 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 205.292152 - 0: The maximum resident set size (KB) = 714512 + 0: The total amount of wall time = 199.446859 + 0: The maximum resident set size (KB) = 718460 Test 050 rap_control_dyn64_phy32_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/cpld_control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/cpld_control_p8 Checking test 051 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1564,14 +1564,14 @@ Checking test 051 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1699.118609 - 0: The maximum resident set size (KB) = 1427464 + 0: The total amount of wall time = 1678.689840 + 0: The maximum resident set size (KB) = 1427492 Test 051 cpld_control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/cpld_control_nowave_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/cpld_control_c96_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/cpld_control_nowave_noaero_p8 Checking test 052 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1633,14 +1633,14 @@ Checking test 052 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 1243.748250 - 0: The maximum resident set size (KB) = 1331488 + 0: The total amount of wall time = 1211.642978 + 0: The maximum resident set size (KB) = 1329604 Test 052 cpld_control_nowave_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/cpld_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/cpld_debug_p8 Checking test 053 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1693,25 +1693,25 @@ Checking test 053 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 893.235664 - 0: The maximum resident set size (KB) = 1437724 + 0: The total amount of wall time = 1199.613956 + 0: The maximum resident set size (KB) = 1437840 Test 053 cpld_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/GNU/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12600/datm_cdeps_control_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/datm_cdeps_control_cfsr Checking test 054 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 177.437237 - 0: The maximum resident set size (KB) = 665232 + 0: The total amount of wall time = 168.697269 + 0: The maximum resident set size (KB) = 658784 Test 054 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Thu Apr 27 17:57:41 UTC 2023 -Elapsed time: 00h:56m:49s. Have a nice day! +Sun Apr 30 23:19:48 UTC 2023 +Elapsed time: 00h:56m:50s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 37fb374f036..e5b368115e2 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,43 +1,43 @@ -Thu Apr 27 16:56:51 UTC 2023 +Sun Apr 30 22:22:44 UTC 2023 Start Regression test -Compile 001 elapsed time 649 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 648 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 602 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 236 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 209 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 566 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 557 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 726 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 588 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 010 elapsed time 559 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 524 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 477 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 614 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 639 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 639 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 603 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 228 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 204 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 563 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 553 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 729 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 578 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 010 elapsed time 532 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 515 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 476 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 638 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile 014 elapsed time 217 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 015 elapsed time 162 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 490 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 500 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 160 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 504 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 493 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile 018 elapsed time 166 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 172 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 552 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 021 elapsed time 191 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 666 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 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 024 elapsed time 180 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 107 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 182 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 52 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 519 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 532 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 537 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 516 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 489 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 033 elapsed time 169 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 034 elapsed time 574 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8_mixedmode -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/cpld_control_p8_mixedmode +Compile 019 elapsed time 166 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 554 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 021 elapsed time 186 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 661 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 557 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 024 elapsed time 177 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 104 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 176 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 51 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 527 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 537 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 542 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 525 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 497 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 033 elapsed time 173 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 034 elapsed time 564 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8_mixedmode +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -102,14 +102,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 308.142402 - 0: The maximum resident set size (KB) = 3149136 + 0: The total amount of wall time = 308.037318 + 0: The maximum resident set size (KB) = 3133176 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_gfsv17 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/cpld_control_gfsv17 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_gfsv17 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -173,14 +173,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 226.133902 - 0: The maximum resident set size (KB) = 1713072 + 0: The total amount of wall time = 223.984964 + 0: The maximum resident set size (KB) = 1710796 Test 002 cpld_control_gfsv17 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/cpld_control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -245,14 +245,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 340.184221 - 0: The maximum resident set size (KB) = 3166400 + 0: The total amount of wall time = 339.705779 + 0: The maximum resident set size (KB) = 3155724 Test 003 cpld_control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/cpld_restart_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -305,14 +305,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 196.135020 - 0: The maximum resident set size (KB) = 3016080 + 0: The total amount of wall time = 193.007653 + 0: The maximum resident set size (KB) = 3044964 Test 004 cpld_restart_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/cpld_control_qr_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -377,14 +377,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 338.892507 - 0: The maximum resident set size (KB) = 3177856 + 0: The total amount of wall time = 342.343960 + 0: The maximum resident set size (KB) = 3166428 Test 005 cpld_control_qr_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/cpld_restart_qr_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -437,14 +437,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 198.150915 - 0: The maximum resident set size (KB) = 3046400 + 0: The total amount of wall time = 196.562895 + 0: The maximum resident set size (KB) = 3049604 Test 006 cpld_restart_qr_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/cpld_2threads_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -497,14 +497,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 351.053877 - 0: The maximum resident set size (KB) = 3504608 + 0: The total amount of wall time = 349.052770 + 0: The maximum resident set size (KB) = 3501756 Test 007 cpld_2threads_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/cpld_decomp_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -557,14 +557,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 341.157831 - 0: The maximum resident set size (KB) = 3151732 + 0: The total amount of wall time = 344.106498 + 0: The maximum resident set size (KB) = 3162156 Test 008 cpld_decomp_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/cpld_mpi_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -617,14 +617,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 278.453654 - 0: The maximum resident set size (KB) = 3010752 + 0: The total amount of wall time = 282.008323 + 0: The maximum resident set size (KB) = 3001688 Test 009 cpld_mpi_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_ciceC_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/cpld_control_ciceC_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_ciceC_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -689,14 +689,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 339.033026 - 0: The maximum resident set size (KB) = 3172580 + 0: The total amount of wall time = 340.650104 + 0: The maximum resident set size (KB) = 3165088 Test 010 cpld_control_ciceC_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/cpld_control_c192_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/cpld_control_c192_p8 Checking test 011 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -749,14 +749,14 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 590.560389 - 0: The maximum resident set size (KB) = 3206164 + 0: The total amount of wall time = 587.524736 + 0: The maximum resident set size (KB) = 3247608 Test 011 cpld_control_c192_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/cpld_restart_c192_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/cpld_restart_c192_p8 Checking test 012 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -809,14 +809,14 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 389.032225 - 0: The maximum resident set size (KB) = 3154724 + 0: The total amount of wall time = 380.042794 + 0: The maximum resident set size (KB) = 3137040 Test 012 cpld_restart_c192_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/cpld_bmark_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/cpld_bmark_p8 Checking test 013 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -864,14 +864,14 @@ Checking test 013 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 738.644972 - 0: The maximum resident set size (KB) = 4021628 + 0: The total amount of wall time = 719.918086 + 0: The maximum resident set size (KB) = 4013364 Test 013 cpld_bmark_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/cpld_restart_bmark_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/cpld_restart_bmark_p8 Checking test 014 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -919,14 +919,14 @@ Checking test 014 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 450.787756 - 0: The maximum resident set size (KB) = 3963112 + 0: The total amount of wall time = 457.025605 + 0: The maximum resident set size (KB) = 3964160 Test 014 cpld_restart_bmark_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/cpld_control_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/cpld_control_noaero_p8 Checking test 015 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -990,14 +990,14 @@ Checking test 015 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 263.616077 - 0: The maximum resident set size (KB) = 1697584 + 0: The total amount of wall time = 263.301955 + 0: The maximum resident set size (KB) = 1711340 Test 015 cpld_control_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/cpld_control_nowave_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_c96_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/cpld_control_nowave_noaero_p8 Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1059,14 +1059,14 @@ Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 260.204099 - 0: The maximum resident set size (KB) = 1756080 + 0: The total amount of wall time = 266.139039 + 0: The maximum resident set size (KB) = 1757116 Test 016 cpld_control_nowave_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/cpld_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/cpld_debug_p8 Checking test 017 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1119,14 +1119,14 @@ Checking test 017 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 521.460631 - 0: The maximum resident set size (KB) = 3234000 + 0: The total amount of wall time = 518.356595 + 0: The maximum resident set size (KB) = 3231676 Test 017 cpld_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_debug_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/cpld_debug_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_debug_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/cpld_debug_noaero_p8 Checking test 018 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1178,14 +1178,14 @@ Checking test 018 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 359.838958 - 0: The maximum resident set size (KB) = 1731344 + 0: The total amount of wall time = 359.605858 + 0: The maximum resident set size (KB) = 1715252 Test 018 cpld_debug_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_noaero_p8_agrid -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/cpld_control_noaero_p8_agrid +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_noaero_p8_agrid +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/cpld_control_noaero_p8_agrid Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1247,14 +1247,14 @@ Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 269.665323 - 0: The maximum resident set size (KB) = 1753436 + 0: The total amount of wall time = 269.660861 + 0: The maximum resident set size (KB) = 1759392 Test 019 cpld_control_noaero_p8_agrid PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_c48 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/cpld_control_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_c48 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/cpld_control_c48 Checking test 020 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1304,14 +1304,14 @@ Checking test 020 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 578.183460 - 0: The maximum resident set size (KB) = 2797108 + 0: The total amount of wall time = 575.310316 + 0: The maximum resident set size (KB) = 2804336 Test 020 cpld_control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/cpld_warmstart_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_warmstart_c48 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/cpld_warmstart_c48 Checking test 021 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1361,14 +1361,14 @@ Checking test 021 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 153.505637 - 0: The maximum resident set size (KB) = 2798672 + 0: The total amount of wall time = 154.006779 + 0: The maximum resident set size (KB) = 2795240 Test 021 cpld_warmstart_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/cpld_restart_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_warmstart_c48 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/cpld_restart_c48 Checking test 022 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1418,14 +1418,14 @@ Checking test 022 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 80.882374 - 0: The maximum resident set size (KB) = 2233264 + 0: The total amount of wall time = 80.239796 + 0: The maximum resident set size (KB) = 2236056 Test 022 cpld_restart_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8_faster -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/cpld_control_p8_faster +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8_faster +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/cpld_control_p8_faster Checking test 023 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1490,14 +1490,14 @@ Checking test 023 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 321.640738 - 0: The maximum resident set size (KB) = 3181684 + 0: The total amount of wall time = 321.093921 + 0: The maximum resident set size (KB) = 3168196 Test 023 cpld_control_p8_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_flake -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_flake +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_flake +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_flake Checking test 024 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1508,14 +1508,14 @@ Checking test 024 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 187.828876 - 0: The maximum resident set size (KB) = 670844 + 0: The total amount of wall time = 186.983764 + 0: The maximum resident set size (KB) = 673964 Test 024 control_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_CubedSphereGrid -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_CubedSphereGrid +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_CubedSphereGrid +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_CubedSphereGrid Checking test 025 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1542,28 +1542,28 @@ Checking test 025 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 131.491690 - 0: The maximum resident set size (KB) = 628592 + 0: The total amount of wall time = 130.473781 + 0: The maximum resident set size (KB) = 625600 Test 025 control_CubedSphereGrid PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_CubedSphereGrid_parallel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_CubedSphereGrid_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_CubedSphereGrid_parallel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_CubedSphereGrid_parallel Checking test 026 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK - 0: The total amount of wall time = 126.645694 - 0: The maximum resident set size (KB) = 633108 + 0: The total amount of wall time = 129.090548 + 0: The maximum resident set size (KB) = 626076 Test 026 control_CubedSphereGrid_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_latlon -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_latlon +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_latlon +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_latlon Checking test 027 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1574,14 +1574,14 @@ Checking test 027 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 132.557993 - 0: The maximum resident set size (KB) = 622468 + 0: The total amount of wall time = 134.391560 + 0: The maximum resident set size (KB) = 630640 Test 027 control_latlon PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_wrtGauss_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_wrtGauss_netcdf_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_wrtGauss_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_wrtGauss_netcdf_parallel Checking test 028 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1592,14 +1592,14 @@ Checking test 028 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.401804 - 0: The maximum resident set size (KB) = 629924 + 0: The total amount of wall time = 137.863545 + 0: The maximum resident set size (KB) = 626216 Test 028 control_wrtGauss_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_c48 Checking test 029 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1638,14 +1638,14 @@ Checking test 029 control_c48 results .... Comparing 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.356632 -0: The maximum resident set size (KB) = 816756 +0: The total amount of wall time = 368.163254 +0: The maximum resident set size (KB) = 820188 Test 029 control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_c192 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_c192 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_c192 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_c192 Checking test 030 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1656,14 +1656,14 @@ Checking test 030 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 529.722498 - 0: The maximum resident set size (KB) = 765652 + 0: The total amount of wall time = 525.108447 + 0: The maximum resident set size (KB) = 767048 Test 030 control_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_c384 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_c384 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_c384 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_c384 Checking test 031 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1674,14 +1674,14 @@ Checking test 031 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 524.398675 - 0: The maximum resident set size (KB) = 1270008 + 0: The total amount of wall time = 525.776634 + 0: The maximum resident set size (KB) = 1259928 Test 031 control_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_c384gdas -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_c384gdas +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_c384gdas +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_c384gdas Checking test 032 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1724,14 +1724,14 @@ Checking test 032 control_c384gdas 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 = 463.854399 - 0: The maximum resident set size (KB) = 1375392 + 0: The total amount of wall time = 457.490198 + 0: The maximum resident set size (KB) = 1376156 Test 032 control_c384gdas PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_stochy +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_stochy Checking test 033 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1742,28 +1742,28 @@ Checking test 033 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 87.472034 - 0: The maximum resident set size (KB) = 625472 + 0: The total amount of wall time = 87.398998 + 0: The maximum resident set size (KB) = 629212 Test 033 control_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_stochy_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_stochy_restart Checking test 034 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 48.120207 - 0: The maximum resident set size (KB) = 482948 + 0: The total amount of wall time = 47.624915 + 0: The maximum resident set size (KB) = 476792 Test 034 control_stochy_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_lndp -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_lndp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_lndp +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_lndp Checking test 035 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1774,14 +1774,14 @@ Checking test 035 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 82.069554 - 0: The maximum resident set size (KB) = 630728 + 0: The total amount of wall time = 81.649046 + 0: The maximum resident set size (KB) = 632460 Test 035 control_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_iovr4 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_iovr4 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_iovr4 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_iovr4 Checking test 036 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1796,14 +1796,14 @@ Checking test 036 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.085915 - 0: The maximum resident set size (KB) = 629580 + 0: The total amount of wall time = 136.363661 + 0: The maximum resident set size (KB) = 630424 Test 036 control_iovr4 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_iovr5 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_iovr5 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_iovr5 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_iovr5 Checking test 037 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1818,14 +1818,14 @@ Checking test 037 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.521899 - 0: The maximum resident set size (KB) = 624804 + 0: The total amount of wall time = 135.524194 + 0: The maximum resident set size (KB) = 628864 Test 037 control_iovr5 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_p8 Checking test 038 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1872,14 +1872,14 @@ Checking test 038 control_p8 results .... Comparing 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.805701 - 0: The maximum resident set size (KB) = 1595632 + 0: The total amount of wall time = 168.140849 + 0: The maximum resident set size (KB) = 1594612 Test 038 control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_restart_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_restart_p8 Checking test 039 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1918,14 +1918,14 @@ Checking test 039 control_restart_p8 results .... Comparing 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.931168 - 0: The maximum resident set size (KB) = 858096 + 0: The total amount of wall time = 87.870407 + 0: The maximum resident set size (KB) = 868916 Test 039 control_restart_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_qr_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_qr_p8 Checking test 040 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1972,14 +1972,14 @@ Checking test 040 control_qr_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 170.149032 - 0: The maximum resident set size (KB) = 1596252 + 0: The total amount of wall time = 169.091489 + 0: The maximum resident set size (KB) = 1585444 Test 040 control_qr_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_restart_qr_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_restart_qr_p8 Checking test 041 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2018,14 +2018,14 @@ Checking test 041 control_restart_qr_p8 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.192800 - 0: The maximum resident set size (KB) = 864536 + 0: The total amount of wall time = 89.094875 + 0: The maximum resident set size (KB) = 870136 Test 041 control_restart_qr_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_decomp_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_decomp_p8 Checking test 042 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2068,14 +2068,14 @@ Checking test 042 control_decomp_p8 results .... Comparing 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.462951 - 0: The maximum resident set size (KB) = 1594364 + 0: The total amount of wall time = 174.424495 + 0: The maximum resident set size (KB) = 1581692 Test 042 control_decomp_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_2threads_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_2threads_p8 Checking test 043 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2118,14 +2118,14 @@ Checking test 043 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 158.839100 - 0: The maximum resident set size (KB) = 1685600 + 0: The total amount of wall time = 157.070480 + 0: The maximum resident set size (KB) = 1680368 Test 043 control_2threads_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8_lndp -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_p8_lndp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_lndp +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_p8_lndp Checking test 044 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2144,14 +2144,14 @@ Checking test 044 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 312.983733 - 0: The maximum resident set size (KB) = 1607992 + 0: The total amount of wall time = 311.395010 + 0: The maximum resident set size (KB) = 1598288 Test 044 control_p8_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_p8_rrtmgp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_p8_rrtmgp Checking test 045 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2198,14 +2198,14 @@ Checking test 045 control_p8_rrtmgp results .... Comparing 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.539005 - 0: The maximum resident set size (KB) = 1666540 + 0: The total amount of wall time = 225.504179 + 0: The maximum resident set size (KB) = 1661952 Test 045 control_p8_rrtmgp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8_mynn -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_p8_mynn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_mynn +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_p8_mynn Checking test 046 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2252,14 +2252,14 @@ Checking test 046 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 171.884771 - 0: The maximum resident set size (KB) = 1601416 + 0: The total amount of wall time = 170.308807 + 0: The maximum resident set size (KB) = 1599080 Test 046 control_p8_mynn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/merra2_thompson -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/merra2_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/merra2_thompson +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/merra2_thompson Checking test 047 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2306,14 +2306,14 @@ Checking test 047 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 191.174002 - 0: The maximum resident set size (KB) = 1600004 + 0: The total amount of wall time = 189.608697 + 0: The maximum resident set size (KB) = 1603580 Test 047 merra2_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/regional_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/regional_control Checking test 048 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2324,28 +2324,28 @@ Checking test 048 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 301.252938 - 0: The maximum resident set size (KB) = 870316 + 0: The total amount of wall time = 297.845501 + 0: The maximum resident set size (KB) = 877268 Test 048 regional_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/regional_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/regional_restart Checking test 049 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 156.081482 - 0: The maximum resident set size (KB) = 862896 + 0: The total amount of wall time = 150.736143 + 0: The maximum resident set size (KB) = 864788 Test 049 regional_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/regional_control_qr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/regional_control_qr Checking test 050 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2356,28 +2356,28 @@ Checking test 050 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 299.381867 - 0: The maximum resident set size (KB) = 871876 + 0: The total amount of wall time = 297.030414 + 0: The maximum resident set size (KB) = 868452 Test 050 regional_control_qr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/regional_restart_qr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/regional_restart_qr Checking test 051 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 155.425517 - 0: The maximum resident set size (KB) = 866848 + 0: The total amount of wall time = 153.594662 + 0: The maximum resident set size (KB) = 864008 Test 051 regional_restart_qr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/regional_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/regional_decomp Checking test 052 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2388,14 +2388,14 @@ Checking test 052 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 315.038046 - 0: The maximum resident set size (KB) = 860556 + 0: The total amount of wall time = 313.020379 + 0: The maximum resident set size (KB) = 864064 Test 052 regional_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/regional_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/regional_2threads Checking test 053 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2406,14 +2406,14 @@ Checking test 053 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 183.093037 - 0: The maximum resident set size (KB) = 847688 + 0: The total amount of wall time = 178.971432 + 0: The maximum resident set size (KB) = 851824 Test 053 regional_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_noquilt -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/regional_noquilt +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_noquilt +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/regional_noquilt Checking test 054 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2421,28 +2421,28 @@ Checking test 054 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 323.846416 - 0: The maximum resident set size (KB) = 859432 + 0: The total amount of wall time = 317.347592 + 0: The maximum resident set size (KB) = 854080 Test 054 regional_noquilt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/regional_netcdf_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/regional_netcdf_parallel Checking test 055 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 294.093163 - 0: The maximum resident set size (KB) = 865124 + 0: The total amount of wall time = 293.594383 + 0: The maximum resident set size (KB) = 863224 Test 055 regional_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/regional_2dwrtdecomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/regional_2dwrtdecomp Checking test 056 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2453,14 +2453,14 @@ Checking test 056 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 296.220293 - 0: The maximum resident set size (KB) = 869588 + 0: The total amount of wall time = 297.681333 + 0: The maximum resident set size (KB) = 871340 Test 056 regional_2dwrtdecomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/fv3_regional_wofs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/regional_wofs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/fv3_regional_wofs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/regional_wofs Checking test 057 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2471,14 +2471,14 @@ Checking test 057 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 378.327432 - 0: The maximum resident set size (KB) = 624132 + 0: The total amount of wall time = 375.751173 + 0: The maximum resident set size (KB) = 629664 Test 057 regional_wofs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/rap_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/rap_control Checking test 058 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2525,14 +2525,14 @@ Checking test 058 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 461.282795 - 0: The maximum resident set size (KB) = 1051668 + 0: The total amount of wall time = 459.356796 + 0: The maximum resident set size (KB) = 1053404 Test 058 rap_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_spp_sppt_shum_skeb -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/regional_spp_sppt_shum_skeb +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_spp_sppt_shum_skeb +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/regional_spp_sppt_shum_skeb Checking test 059 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2543,14 +2543,14 @@ Checking test 059 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 235.175058 - 0: The maximum resident set size (KB) = 1161752 + 0: The total amount of wall time = 235.088648 + 0: The maximum resident set size (KB) = 1177240 Test 059 regional_spp_sppt_shum_skeb PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/rap_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/rap_decomp Checking test 060 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2597,14 +2597,14 @@ Checking test 060 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 478.438441 - 0: The maximum resident set size (KB) = 994988 + 0: The total amount of wall time = 478.477328 + 0: The maximum resident set size (KB) = 991872 Test 060 rap_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/rap_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/rap_2threads Checking test 061 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2651,14 +2651,14 @@ Checking test 061 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 436.768415 - 0: The maximum resident set size (KB) = 1130492 + 0: The total amount of wall time = 434.977338 + 0: The maximum resident set size (KB) = 1144116 Test 061 rap_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/rap_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/rap_restart Checking test 062 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2697,14 +2697,14 @@ Checking test 062 rap_restart results .... Comparing 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.941889 - 0: The maximum resident set size (KB) = 956712 + 0: The total amount of wall time = 231.939788 + 0: The maximum resident set size (KB) = 968796 Test 062 rap_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/rap_sfcdiff +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/rap_sfcdiff Checking test 063 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2751,14 +2751,14 @@ Checking test 063 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 459.204530 - 0: The maximum resident set size (KB) = 1049536 + 0: The total amount of wall time = 458.359875 + 0: The maximum resident set size (KB) = 1045212 Test 063 rap_sfcdiff PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/rap_sfcdiff_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/rap_sfcdiff_decomp Checking test 064 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2805,14 +2805,14 @@ Checking test 064 rap_sfcdiff_decomp results .... Comparing 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.320112 - 0: The maximum resident set size (KB) = 988396 + 0: The total amount of wall time = 480.275915 + 0: The maximum resident set size (KB) = 990276 Test 064 rap_sfcdiff_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/rap_sfcdiff_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/rap_sfcdiff_restart Checking test 065 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2851,14 +2851,14 @@ Checking test 065 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 341.862173 - 0: The maximum resident set size (KB) = 992072 + 0: The total amount of wall time = 340.928208 + 0: The maximum resident set size (KB) = 977048 Test 065 rap_sfcdiff_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/hrrr_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/hrrr_control Checking test 066 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2905,14 +2905,14 @@ Checking test 066 hrrr_control results .... Comparing 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.555831 - 0: The maximum resident set size (KB) = 1049588 + 0: The total amount of wall time = 427.896195 + 0: The maximum resident set size (KB) = 1044936 Test 066 hrrr_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/hrrr_control_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/hrrr_control_decomp Checking test 067 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2959,14 +2959,14 @@ Checking test 067 hrrr_control_decomp results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 449.549665 - 0: The maximum resident set size (KB) = 1003128 + 0: The total amount of wall time = 447.102499 + 0: The maximum resident set size (KB) = 988868 Test 067 hrrr_control_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/hrrr_control_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/hrrr_control_2threads Checking test 068 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3013,28 +3013,28 @@ Checking test 068 hrrr_control_2threads results .... Comparing 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.003870 - 0: The maximum resident set size (KB) = 1074320 + 0: The total amount of wall time = 394.968750 + 0: The maximum resident set size (KB) = 1075224 Test 068 hrrr_control_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/hrrr_control_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/hrrr_control_restart Checking test 069 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 318.418511 - 0: The maximum resident set size (KB) = 978076 + 0: The total amount of wall time = 318.175464 + 0: The maximum resident set size (KB) = 983268 Test 069 hrrr_control_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/rrfs_v1beta +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/rrfs_v1beta Checking test 070 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3081,14 +3081,14 @@ Checking test 070 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 457.271635 - 0: The maximum resident set size (KB) = 1049564 + 0: The total amount of wall time = 455.109914 + 0: The maximum resident set size (KB) = 1047904 Test 070 rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_v1nssl -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/rrfs_v1nssl +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_v1nssl +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/rrfs_v1nssl Checking test 071 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3103,14 +3103,14 @@ Checking test 071 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 534.754323 - 0: The maximum resident set size (KB) = 693220 + 0: The total amount of wall time = 534.327424 + 0: The maximum resident set size (KB) = 691480 Test 071 rrfs_v1nssl PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/rrfs_v1nssl_nohailnoccn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/rrfs_v1nssl_nohailnoccn Checking test 072 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3125,14 +3125,14 @@ Checking test 072 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 522.164940 - 0: The maximum resident set size (KB) = 753380 + 0: The total amount of wall time = 522.405379 + 0: The maximum resident set size (KB) = 759004 Test 072 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/rrfs_smoke_conus13km_hrrr_warm Checking test 073 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3141,14 +3141,14 @@ Checking test 073 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 146.383566 - 0: The maximum resident set size (KB) = 1031884 + 0: The total amount of wall time = 148.743049 + 0: The maximum resident set size (KB) = 1027036 Test 073 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 074 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3157,14 +3157,14 @@ Checking test 074 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 89.649717 - 0: The maximum resident set size (KB) = 939804 + 0: The total amount of wall time = 90.237175 + 0: The maximum resident set size (KB) = 940496 Test 074 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/rrfs_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/rrfs_conus13km_hrrr_warm Checking test 075 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3173,14 +3173,14 @@ Checking test 075 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 129.133756 - 0: The maximum resident set size (KB) = 985920 + 0: The total amount of wall time = 133.053547 + 0: The maximum resident set size (KB) = 987676 Test 075 rrfs_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/rrfs_smoke_conus13km_radar_tten_warm Checking test 076 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3189,26 +3189,26 @@ Checking test 076 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 148.284884 - 0: The maximum resident set size (KB) = 1031920 + 0: The total amount of wall time = 151.247507 + 0: The maximum resident set size (KB) = 1032880 Test 076 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 077 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 68.651301 - 0: The maximum resident set size (KB) = 975352 + 0: The total amount of wall time = 69.927073 + 0: The maximum resident set size (KB) = 972420 Test 077 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_csawmg -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_csawmg +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_csawmg +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_csawmg Checking test 078 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3219,14 +3219,14 @@ Checking test 078 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 343.822132 - 0: The maximum resident set size (KB) = 727388 + 0: The total amount of wall time = 345.147782 + 0: The maximum resident set size (KB) = 725096 Test 078 control_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_csawmgt -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_csawmgt +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_csawmgt +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_csawmgt Checking test 079 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3237,14 +3237,14 @@ Checking test 079 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 338.015554 - 0: The maximum resident set size (KB) = 722216 + 0: The total amount of wall time = 338.746690 + 0: The maximum resident set size (KB) = 728852 Test 079 control_csawmgt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_ras -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_ras +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_ras +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_ras Checking test 080 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3255,26 +3255,26 @@ Checking test 080 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 180.672388 - 0: The maximum resident set size (KB) = 721792 + 0: The total amount of wall time = 179.206505 + 0: The maximum resident set size (KB) = 721576 Test 080 control_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_wam -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_wam +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_wam +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_wam Checking test 081 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 111.400937 - 0: The maximum resident set size (KB) = 634872 + 0: The total amount of wall time = 111.248770 + 0: The maximum resident set size (KB) = 634660 Test 081 control_wam PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8_faster -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_p8_faster +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_faster +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_p8_faster Checking test 082 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3321,14 +3321,14 @@ Checking test 082 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 153.411779 - 0: The maximum resident set size (KB) = 1599048 + 0: The total amount of wall time = 152.637613 + 0: The maximum resident set size (KB) = 1593088 Test 082 control_p8_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control_faster -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/regional_control_faster +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control_faster +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/regional_control_faster Checking test 083 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3339,56 +3339,56 @@ Checking test 083 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 271.766696 - 0: The maximum resident set size (KB) = 870824 + 0: The total amount of wall time = 275.110466 + 0: The maximum resident set size (KB) = 866276 Test 083 regional_control_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 084 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 834.233277 - 0: The maximum resident set size (KB) = 1063044 + 0: The total amount of wall time = 839.741545 + 0: The maximum resident set size (KB) = 1054784 Test 084 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 085 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 461.214486 - 0: The maximum resident set size (KB) = 969992 + 0: The total amount of wall time = 467.105911 + 0: The maximum resident set size (KB) = 973368 Test 085 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/rrfs_conus13km_hrrr_warm_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/rrfs_conus13km_hrrr_warm_debug Checking test 086 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 739.570174 - 0: The maximum resident set size (KB) = 1011592 + 0: The total amount of wall time = 738.904955 + 0: The maximum resident set size (KB) = 1015768 Test 086 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_CubedSphereGrid_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_CubedSphereGrid_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_CubedSphereGrid_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_CubedSphereGrid_debug Checking test 087 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3415,348 +3415,348 @@ Checking test 087 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 143.005119 - 0: The maximum resident set size (KB) = 794140 + 0: The total amount of wall time = 142.050290 + 0: The maximum resident set size (KB) = 787284 Test 087 control_CubedSphereGrid_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_wrtGauss_netcdf_parallel_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_wrtGauss_netcdf_parallel_debug Checking test 088 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 142.358156 - 0: The maximum resident set size (KB) = 791800 + 0: The total amount of wall time = 146.148586 + 0: The maximum resident set size (KB) = 794892 Test 088 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_stochy_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_stochy_debug Checking test 089 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 165.583603 - 0: The maximum resident set size (KB) = 771264 + 0: The total amount of wall time = 169.789522 + 0: The maximum resident set size (KB) = 797640 Test 089 control_stochy_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_lndp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_lndp_debug Checking test 090 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 148.112982 - 0: The maximum resident set size (KB) = 796128 + 0: The total amount of wall time = 147.456254 + 0: The maximum resident set size (KB) = 794940 Test 090 control_lndp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_csawmg_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_csawmg_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_csawmg_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_csawmg_debug Checking test 091 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 225.893402 - 0: The maximum resident set size (KB) = 834460 + 0: The total amount of wall time = 223.790607 + 0: The maximum resident set size (KB) = 840024 Test 091 control_csawmg_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_csawmgt_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_csawmgt_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_csawmgt_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_csawmgt_debug Checking test 092 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 224.590420 - 0: The maximum resident set size (KB) = 835468 + 0: The total amount of wall time = 220.360968 + 0: The maximum resident set size (KB) = 835312 Test 092 control_csawmgt_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_ras_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_ras_debug Checking test 093 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 147.792773 - 0: The maximum resident set size (KB) = 807440 + 0: The total amount of wall time = 150.350569 + 0: The maximum resident set size (KB) = 800712 Test 093 control_ras_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_diag_debug Checking test 094 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 153.807481 - 0: The maximum resident set size (KB) = 846072 + 0: The total amount of wall time = 150.272363 + 0: The maximum resident set size (KB) = 843464 Test 094 control_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_debug_p8 Checking test 095 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 164.020919 - 0: The maximum resident set size (KB) = 1619632 + 0: The total amount of wall time = 163.553824 + 0: The maximum resident set size (KB) = 1613920 Test 095 control_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/regional_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/regional_debug Checking test 096 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 978.949354 - 0: The maximum resident set size (KB) = 882588 + 0: The total amount of wall time = 971.736219 + 0: The maximum resident set size (KB) = 884552 Test 096 regional_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/rap_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/rap_control_debug Checking test 097 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 269.732809 - 0: The maximum resident set size (KB) = 1166040 + 0: The total amount of wall time = 272.018778 + 0: The maximum resident set size (KB) = 1166972 Test 097 rap_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/hrrr_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/hrrr_control_debug Checking test 098 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 264.156382 - 0: The maximum resident set size (KB) = 1163360 + 0: The total amount of wall time = 265.799714 + 0: The maximum resident set size (KB) = 1162100 Test 098 hrrr_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/rap_unified_drag_suite_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/rap_unified_drag_suite_debug Checking test 099 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 272.572328 - 0: The maximum resident set size (KB) = 1163176 + 0: The total amount of wall time = 268.204185 + 0: The maximum resident set size (KB) = 1166704 Test 099 rap_unified_drag_suite_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/rap_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/rap_diag_debug Checking test 100 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 282.042490 - 0: The maximum resident set size (KB) = 1251076 + 0: The total amount of wall time = 285.502572 + 0: The maximum resident set size (KB) = 1248340 Test 100 rap_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/rap_cires_ugwp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/rap_cires_ugwp_debug Checking test 101 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.206560 - 0: The maximum resident set size (KB) = 1166132 + 0: The total amount of wall time = 275.677516 + 0: The maximum resident set size (KB) = 1165692 Test 101 rap_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/rap_unified_ugwp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/rap_unified_ugwp_debug Checking test 102 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.865823 - 0: The maximum resident set size (KB) = 1169420 + 0: The total amount of wall time = 275.060948 + 0: The maximum resident set size (KB) = 1168176 Test 102 rap_unified_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/rap_lndp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/rap_lndp_debug Checking test 103 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 278.542881 - 0: The maximum resident set size (KB) = 1170016 + 0: The total amount of wall time = 271.357641 + 0: The maximum resident set size (KB) = 1165824 Test 103 rap_lndp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/rap_progcld_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/rap_progcld_thompson_debug Checking test 104 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.745273 - 0: The maximum resident set size (KB) = 1169516 + 0: The total amount of wall time = 272.261793 + 0: The maximum resident set size (KB) = 1168424 Test 104 rap_progcld_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_noah_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/rap_noah_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_noah_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/rap_noah_debug Checking test 105 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 265.958914 - 0: The maximum resident set size (KB) = 1165612 + 0: The total amount of wall time = 266.270051 + 0: The maximum resident set size (KB) = 1165640 Test 105 rap_noah_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_sfcdiff_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/rap_sfcdiff_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_sfcdiff_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/rap_sfcdiff_debug Checking test 106 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.884707 - 0: The maximum resident set size (KB) = 1170168 + 0: The total amount of wall time = 271.287005 + 0: The maximum resident set size (KB) = 1162120 Test 106 rap_sfcdiff_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/rap_noah_sfcdiff_cires_ugwp_debug Checking test 107 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 446.857310 - 0: The maximum resident set size (KB) = 1164196 + 0: The total amount of wall time = 451.960513 + 0: The maximum resident set size (KB) = 1162620 Test 107 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/rrfs_v1beta_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/rrfs_v1beta_debug Checking test 108 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 263.237778 - 0: The maximum resident set size (KB) = 1163272 + 0: The total amount of wall time = 263.464636 + 0: The maximum resident set size (KB) = 1159092 Test 108 rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_clm_lake_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/rap_clm_lake_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_clm_lake_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/rap_clm_lake_debug Checking test 109 rap_clm_lake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 349.717435 - 0: The maximum resident set size (KB) = 1168172 + 0: The total amount of wall time = 332.274813 + 0: The maximum resident set size (KB) = 1170748 Test 109 rap_clm_lake_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_flake_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/rap_flake_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_flake_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/rap_flake_debug Checking test 110 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 270.432962 - 0: The maximum resident set size (KB) = 1171072 + 0: The total amount of wall time = 274.250419 + 0: The maximum resident set size (KB) = 1165564 Test 110 rap_flake_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_wam_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_wam_debug Checking test 111 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 275.476298 - 0: The maximum resident set size (KB) = 525092 + 0: The total amount of wall time = 272.422287 + 0: The maximum resident set size (KB) = 538196 Test 111 control_wam_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 112 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3767,14 +3767,14 @@ Checking test 112 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 220.281437 - 0: The maximum resident set size (KB) = 1074924 + 0: The total amount of wall time = 217.012157 + 0: The maximum resident set size (KB) = 1068416 Test 112 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/rap_control_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/rap_control_dyn32_phy32 Checking test 113 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3821,14 +3821,14 @@ Checking test 113 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 384.173882 - 0: The maximum resident set size (KB) = 993500 + 0: The total amount of wall time = 381.442848 + 0: The maximum resident set size (KB) = 995784 Test 113 rap_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/hrrr_control_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/hrrr_control_dyn32_phy32 Checking test 114 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3875,14 +3875,14 @@ Checking test 114 hrrr_control_dyn32_phy32 results .... Comparing 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.659970 - 0: The maximum resident set size (KB) = 955388 + 0: The total amount of wall time = 188.999364 + 0: The maximum resident set size (KB) = 949352 Test 114 hrrr_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/rap_2threads_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/rap_2threads_dyn32_phy32 Checking test 115 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3929,14 +3929,14 @@ Checking test 115 rap_2threads_dyn32_phy32 results .... Comparing 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.418809 - 0: The maximum resident set size (KB) = 1023244 + 0: The total amount of wall time = 364.766247 + 0: The maximum resident set size (KB) = 1011236 Test 115 rap_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/hrrr_control_2threads_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/hrrr_control_2threads_dyn32_phy32 Checking test 116 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3983,14 +3983,14 @@ Checking test 116 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 176.317956 - 0: The maximum resident set size (KB) = 926988 + 0: The total amount of wall time = 174.154637 + 0: The maximum resident set size (KB) = 926088 Test 116 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/hrrr_control_decomp_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/hrrr_control_decomp_dyn32_phy32 Checking test 117 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4037,14 +4037,14 @@ Checking test 117 hrrr_control_decomp_dyn32_phy32 results .... Comparing 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.561609 - 0: The maximum resident set size (KB) = 868896 + 0: The total amount of wall time = 198.411039 + 0: The maximum resident set size (KB) = 892788 Test 117 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/rap_restart_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/rap_restart_dyn32_phy32 Checking test 118 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4083,28 +4083,28 @@ Checking test 118 rap_restart_dyn32_phy32 results .... Comparing 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.965376 - 0: The maximum resident set size (KB) = 945188 + 0: The total amount of wall time = 283.811986 + 0: The maximum resident set size (KB) = 942424 Test 118 rap_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/hrrr_control_restart_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/hrrr_control_restart_dyn32_phy32 Checking test 119 hrrr_control_restart_dyn32_phy32 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.820633 - 0: The maximum resident set size (KB) = 858408 + 0: The total amount of wall time = 98.229494 + 0: The maximum resident set size (KB) = 854824 Test 119 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/rap_control_dyn64_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/rap_control_dyn64_phy32 Checking test 120 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4151,81 +4151,81 @@ Checking test 120 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 247.770904 - 0: The maximum resident set size (KB) = 963268 + 0: The total amount of wall time = 244.716856 + 0: The maximum resident set size (KB) = 961772 Test 120 rap_control_dyn64_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/rap_control_debug_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/rap_control_debug_dyn32_phy32 Checking test 121 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 263.833941 - 0: The maximum resident set size (KB) = 1052172 + 0: The total amount of wall time = 268.031686 + 0: The maximum resident set size (KB) = 1053668 Test 121 rap_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/hrrr_control_debug_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/hrrr_control_debug_dyn32_phy32 Checking test 122 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 260.226682 - 0: The maximum resident set size (KB) = 1052872 + 0: The total amount of wall time = 261.061005 + 0: The maximum resident set size (KB) = 1050468 Test 122 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/rap_control_dyn64_phy32_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_debug_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/rap_control_dyn64_phy32_debug Checking test 123 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.182411 - 0: The maximum resident set size (KB) = 1096260 + 0: The total amount of wall time = 266.823794 + 0: The maximum resident set size (KB) = 1098892 Test 123 rap_control_dyn64_phy32_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_atm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/hafs_regional_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/hafs_regional_atm Checking test 124 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 240.153445 - 0: The maximum resident set size (KB) = 1046928 + 0: The total amount of wall time = 240.469457 + 0: The maximum resident set size (KB) = 1042548 Test 124 hafs_regional_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/hafs_regional_atm_thompson_gfdlsf +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/hafs_regional_atm_thompson_gfdlsf Checking test 125 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 319.103109 - 0: The maximum resident set size (KB) = 1414632 + 0: The total amount of wall time = 301.682006 + 0: The maximum resident set size (KB) = 1406344 Test 125 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/hafs_regional_atm_ocn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/hafs_regional_atm_ocn Checking test 126 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4234,14 +4234,14 @@ Checking test 126 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 383.318589 - 0: The maximum resident set size (KB) = 1218088 + 0: The total amount of wall time = 380.019023 + 0: The maximum resident set size (KB) = 1213552 Test 126 hafs_regional_atm_ocn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_atm_wav -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/hafs_regional_atm_wav +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm_wav +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/hafs_regional_atm_wav Checking test 127 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4250,14 +4250,14 @@ Checking test 127 hafs_regional_atm_wav results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 767.953534 - 0: The maximum resident set size (KB) = 1251048 + 0: The total amount of wall time = 745.623815 + 0: The maximum resident set size (KB) = 1240208 Test 127 hafs_regional_atm_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/hafs_regional_atm_ocn_wav +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/hafs_regional_atm_ocn_wav Checking test 128 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4268,28 +4268,28 @@ Checking test 128 hafs_regional_atm_ocn_wav 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 = 849.319918 - 0: The maximum resident set size (KB) = 1269360 + 0: The total amount of wall time = 836.811340 + 0: The maximum resident set size (KB) = 1269664 Test 128 hafs_regional_atm_ocn_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/hafs_regional_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/hafs_regional_1nest_atm Checking test 129 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 320.514139 - 0: The maximum resident set size (KB) = 505848 + 0: The total amount of wall time = 316.796803 + 0: The maximum resident set size (KB) = 503336 Test 129 hafs_regional_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/hafs_regional_telescopic_2nests_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/hafs_regional_telescopic_2nests_atm Checking test 130 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4298,28 +4298,28 @@ Checking test 130 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 365.934639 - 0: The maximum resident set size (KB) = 506168 + 0: The total amount of wall time = 362.434313 + 0: The maximum resident set size (KB) = 510576 Test 130 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_global_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/hafs_global_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_global_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/hafs_global_1nest_atm Checking test 131 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 150.607092 - 0: The maximum resident set size (KB) = 349492 + 0: The total amount of wall time = 145.797522 + 0: The maximum resident set size (KB) = 348264 Test 131 hafs_global_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_global_multiple_4nests_atm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/hafs_global_multiple_4nests_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_global_multiple_4nests_atm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/hafs_global_multiple_4nests_atm Checking test 132 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4337,14 +4337,14 @@ Checking test 132 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 419.706054 - 0: The maximum resident set size (KB) = 452168 + 0: The total amount of wall time = 414.194562 + 0: The maximum resident set size (KB) = 453784 Test 132 hafs_global_multiple_4nests_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/hafs_regional_specified_moving_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/hafs_regional_specified_moving_1nest_atm Checking test 133 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4353,28 +4353,28 @@ Checking test 133 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 204.763168 - 0: The maximum resident set size (KB) = 520320 + 0: The total amount of wall time = 201.618074 + 0: The maximum resident set size (KB) = 516700 Test 133 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/hafs_regional_storm_following_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/hafs_regional_storm_following_1nest_atm Checking test 134 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 191.252593 - 0: The maximum resident set size (KB) = 516612 + 0: The total amount of wall time = 190.224550 + 0: The maximum resident set size (KB) = 521452 Test 134 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/hafs_regional_storm_following_1nest_atm_ocn Checking test 135 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4383,42 +4383,42 @@ Checking test 135 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 223.621762 - 0: The maximum resident set size (KB) = 565976 + 0: The total amount of wall time = 220.562860 + 0: The maximum resident set size (KB) = 567604 Test 135 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_global_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/hafs_global_storm_following_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_global_storm_following_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/hafs_global_storm_following_1nest_atm Checking test 136 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 58.989247 - 0: The maximum resident set size (KB) = 369632 + 0: The total amount of wall time = 57.565483 + 0: The maximum resident set size (KB) = 370036 Test 136 hafs_global_storm_following_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 137 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 711.585250 - 0: The maximum resident set size (KB) = 581264 + 0: The total amount of wall time = 715.485951 + 0: The maximum resident set size (KB) = 586092 Test 137 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 138 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4429,14 +4429,14 @@ Checking test 138 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 479.981059 - 0: The maximum resident set size (KB) = 620892 + 0: The total amount of wall time = 482.666386 + 0: The maximum resident set size (KB) = 623272 Test 138 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_docn -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/hafs_regional_docn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_docn +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/hafs_regional_docn Checking test 139 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4444,14 +4444,14 @@ Checking test 139 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 362.993232 - 0: The maximum resident set size (KB) = 1217764 + 0: The total amount of wall time = 356.332029 + 0: The maximum resident set size (KB) = 1228712 Test 139 hafs_regional_docn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_docn_oisst -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/hafs_regional_docn_oisst +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_docn_oisst +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/hafs_regional_docn_oisst Checking test 140 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4459,131 +4459,131 @@ Checking test 140 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 358.506762 - 0: The maximum resident set size (KB) = 1215200 + 0: The total amount of wall time = 360.831335 + 0: The maximum resident set size (KB) = 1219240 Test 140 hafs_regional_docn_oisst PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_datm_cdeps -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/hafs_regional_datm_cdeps +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_datm_cdeps +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/hafs_regional_datm_cdeps Checking test 141 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 960.324501 - 0: The maximum resident set size (KB) = 1035544 + 0: The total amount of wall time = 965.350081 + 0: The maximum resident set size (KB) = 1039020 Test 141 hafs_regional_datm_cdeps PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/datm_cdeps_control_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/datm_cdeps_control_cfsr Checking test 142 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 156.341270 - 0: The maximum resident set size (KB) = 1060004 + 0: The total amount of wall time = 157.535428 + 0: The maximum resident set size (KB) = 1076492 Test 142 datm_cdeps_control_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/datm_cdeps_restart_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/datm_cdeps_restart_cfsr Checking test 143 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 90.448713 - 0: The maximum resident set size (KB) = 1013764 + 0: The total amount of wall time = 91.854141 + 0: The maximum resident set size (KB) = 1008044 Test 143 datm_cdeps_restart_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/datm_cdeps_control_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/datm_cdeps_control_gefs Checking test 144 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.977587 - 0: The maximum resident set size (KB) = 961836 + 0: The total amount of wall time = 148.074950 + 0: The maximum resident set size (KB) = 963988 Test 144 datm_cdeps_control_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_iau_gefs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/datm_cdeps_iau_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_iau_gefs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/datm_cdeps_iau_gefs Checking test 145 datm_cdeps_iau_gefs 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 = 152.072139 - 0: The maximum resident set size (KB) = 963480 + 0: The total amount of wall time = 153.575478 + 0: The maximum resident set size (KB) = 963596 Test 145 datm_cdeps_iau_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_stochy_gefs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/datm_cdeps_stochy_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_stochy_gefs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/datm_cdeps_stochy_gefs Checking test 146 datm_cdeps_stochy_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.596504 - 0: The maximum resident set size (KB) = 961464 + 0: The total amount of wall time = 152.250968 + 0: The maximum resident set size (KB) = 962304 Test 146 datm_cdeps_stochy_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_ciceC_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/datm_cdeps_ciceC_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_ciceC_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/datm_cdeps_ciceC_cfsr Checking test 147 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.350492 - 0: The maximum resident set size (KB) = 1052932 + 0: The total amount of wall time = 156.411116 + 0: The maximum resident set size (KB) = 1052260 Test 147 datm_cdeps_ciceC_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/datm_cdeps_bulk_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/datm_cdeps_bulk_cfsr Checking test 148 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 153.778569 - 0: The maximum resident set size (KB) = 1075612 + 0: The total amount of wall time = 152.255246 + 0: The maximum resident set size (KB) = 1051100 Test 148 datm_cdeps_bulk_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/datm_cdeps_bulk_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/datm_cdeps_bulk_gefs Checking test 149 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.646382 - 0: The maximum resident set size (KB) = 965236 + 0: The total amount of wall time = 148.651584 + 0: The maximum resident set size (KB) = 961872 Test 149 datm_cdeps_bulk_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/datm_cdeps_mx025_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/datm_cdeps_mx025_cfsr Checking test 150 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4592,14 +4592,14 @@ Checking test 150 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 451.133344 - 0: The maximum resident set size (KB) = 873932 + 0: The total amount of wall time = 427.073508 + 0: The maximum resident set size (KB) = 881828 Test 150 datm_cdeps_mx025_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/datm_cdeps_mx025_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/datm_cdeps_mx025_gefs Checking test 151 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4608,77 +4608,77 @@ Checking test 151 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 426.841047 - 0: The maximum resident set size (KB) = 928404 + 0: The total amount of wall time = 405.677294 + 0: The maximum resident set size (KB) = 934044 Test 151 datm_cdeps_mx025_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/datm_cdeps_multiple_files_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/datm_cdeps_multiple_files_cfsr Checking test 152 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 155.308283 - 0: The maximum resident set size (KB) = 1061060 + 0: The total amount of wall time = 152.982800 + 0: The maximum resident set size (KB) = 1066864 Test 152 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/datm_cdeps_3072x1536_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/datm_cdeps_3072x1536_cfsr Checking test 153 datm_cdeps_3072x1536_cfsr 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.490704 - 0: The maximum resident set size (KB) = 2359904 + 0: The total amount of wall time = 218.101311 + 0: The maximum resident set size (KB) = 2308864 Test 153 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_gfs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/datm_cdeps_gfs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_gfs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/datm_cdeps_gfs Checking test 154 datm_cdeps_gfs 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 = 234.964133 - 0: The maximum resident set size (KB) = 2360320 + 0: The total amount of wall time = 219.371810 + 0: The maximum resident set size (KB) = 2352532 Test 154 datm_cdeps_gfs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/datm_cdeps_debug_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/datm_cdeps_debug_cfsr Checking test 155 datm_cdeps_debug_cfsr results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 357.127331 - 0: The maximum resident set size (KB) = 999512 + 0: The total amount of wall time = 354.157758 + 0: The maximum resident set size (KB) = 982788 Test 155 datm_cdeps_debug_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_control_cfsr_faster -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/datm_cdeps_control_cfsr_faster +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_control_cfsr_faster +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/datm_cdeps_control_cfsr_faster Checking test 156 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.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 = 157.838924 - 0: The maximum resident set size (KB) = 1049172 + 0: The total amount of wall time = 154.028520 + 0: The maximum resident set size (KB) = 1070468 Test 156 datm_cdeps_control_cfsr_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/datm_cdeps_lnd_gswp3 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_lnd_gswp3 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/datm_cdeps_lnd_gswp3 Checking test 157 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4687,14 +4687,14 @@ Checking test 157 datm_cdeps_lnd_gswp3 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 = 6.985491 - 0: The maximum resident set size (KB) = 265284 + 0: The total amount of wall time = 6.813945 + 0: The maximum resident set size (KB) = 254860 Test 157 datm_cdeps_lnd_gswp3 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/datm_cdeps_lnd_gswp3_rst +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_lnd_gswp3 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/datm_cdeps_lnd_gswp3_rst Checking test 158 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4703,14 +4703,14 @@ Checking test 158 datm_cdeps_lnd_gswp3_rst 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 = 14.617004 - 0: The maximum resident set size (KB) = 263852 + 0: The total amount of wall time = 12.073604 + 0: The maximum resident set size (KB) = 265252 Test 158 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8_atmlnd_sbs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_p8_atmlnd_sbs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_atmlnd_sbs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_p8_atmlnd_sbs Checking test 159 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4795,14 +4795,14 @@ Checking test 159 control_p8_atmlnd_sbs 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 = 208.837490 - 0: The maximum resident set size (KB) = 1604560 + 0: The total amount of wall time = 205.422638 + 0: The maximum resident set size (KB) = 1602904 Test 159 control_p8_atmlnd_sbs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/atmwav_control_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/atmwav_control_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/atmwav_control_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/atmwav_control_noaero_p8 Checking test 160 atmwav_control_noaero_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4845,14 +4845,14 @@ Checking test 160 atmwav_control_noaero_p8 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 = 95.872049 - 0: The maximum resident set size (KB) = 1589412 + 0: The total amount of wall time = 95.624317 + 0: The maximum resident set size (KB) = 1637176 Test 160 atmwav_control_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_atmwav -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/control_atmwav +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_atmwav +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_atmwav Checking test 161 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4896,14 +4896,14 @@ Checking test 161 control_atmwav 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.881383 - 0: The maximum resident set size (KB) = 658100 + 0: The total amount of wall time = 87.592680 + 0: The maximum resident set size (KB) = 659492 Test 161 control_atmwav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/atmaero_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/atmaero_control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/atmaero_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/atmaero_control_p8 Checking test 162 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4947,14 +4947,14 @@ Checking test 162 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 231.100784 - 0: The maximum resident set size (KB) = 2970900 + 0: The total amount of wall time = 229.271516 + 0: The maximum resident set size (KB) = 2969608 Test 162 atmaero_control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/atmaero_control_p8_rad -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/atmaero_control_p8_rad +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/atmaero_control_p8_rad +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/atmaero_control_p8_rad Checking test 163 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4998,14 +4998,14 @@ Checking test 163 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 286.048058 - 0: The maximum resident set size (KB) = 3033092 + 0: The total amount of wall time = 280.954399 + 0: The maximum resident set size (KB) = 3040196 Test 163 atmaero_control_p8_rad PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/atmaero_control_p8_rad_micro -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/atmaero_control_p8_rad_micro +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/atmaero_control_p8_rad_micro +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/atmaero_control_p8_rad_micro Checking test 164 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5049,14 +5049,14 @@ Checking test 164 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 290.996734 - 0: The maximum resident set size (KB) = 3049764 + 0: The total amount of wall time = 284.758217 + 0: The maximum resident set size (KB) = 3047264 Test 164 atmaero_control_p8_rad_micro PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_atmaq -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/regional_atmaq +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_atmaq +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/regional_atmaq Checking test 165 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5072,14 +5072,14 @@ Checking test 165 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 645.263230 - 0: The maximum resident set size (KB) = 1459756 + 0: The total amount of wall time = 640.133007 + 0: The maximum resident set size (KB) = 1449160 Test 165 regional_atmaq PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_atmaq_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/regional_atmaq_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_atmaq_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/regional_atmaq_debug Checking test 166 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5093,14 +5093,14 @@ Checking test 166 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1180.504440 - 0: The maximum resident set size (KB) = 1363984 + 0: The total amount of wall time = 1210.319070 + 0: The maximum resident set size (KB) = 1376256 Test 166 regional_atmaq_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_atmaq_faster -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4926/regional_atmaq_faster +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_atmaq_faster +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/regional_atmaq_faster Checking test 167 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5116,12 +5116,12 @@ Checking test 167 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 564.180973 - 0: The maximum resident set size (KB) = 1467220 + 0: The total amount of wall time = 557.898338 + 0: The maximum resident set size (KB) = 1463060 Test 167 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Thu Apr 27 18:08:33 UTC 2023 -Elapsed time: 01h:11m:42s. Have a nice day! +Sun Apr 30 23:34:41 UTC 2023 +Elapsed time: 01h:11m:58s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index 82191d0efcd..2211e248afb 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,43 +1,43 @@ -Thu Apr 27 02:02:22 UTC 2023 +Sun Apr 30 23:16:23 UTC 2023 Start Regression test -Compile 001 elapsed time 2027 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 002 elapsed time 2129 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 003 elapsed time 1903 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 004 elapsed time 400 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 325 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 1689 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 007 elapsed time 1782 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 008 elapsed time 3481 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 009 elapsed time 1853 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 010 elapsed time 1758 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 011 elapsed time 1772 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 012 elapsed time 1591 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 013 elapsed time 2209 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 014 elapsed time 439 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 015 elapsed time 273 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 1684 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 017 elapsed time 1740 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 018 elapsed time 350 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 304 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 1825 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 021 elapsed time 326 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 2455 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 023 elapsed time 1805 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 024 elapsed time 330 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 025 elapsed time 220 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 400 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 027 elapsed time 187 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 028 elapsed time 2046 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 029 elapsed time 2044 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 030 elapsed time 1932 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 031 elapsed time 1709 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 032 elapsed time 1688 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 033 elapsed time 352 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 034 elapsed time 2103 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8_mixedmode -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/cpld_control_p8_mixedmode +Compile 001 elapsed time 1958 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 002 elapsed time 2044 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 003 elapsed time 1854 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 004 elapsed time 309 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 281 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 1675 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 007 elapsed time 1673 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 008 elapsed time 3341 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 009 elapsed time 1799 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 010 elapsed time 1738 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 011 elapsed time 1679 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 012 elapsed time 1547 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 013 elapsed time 2153 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 014 elapsed time 320 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 015 elapsed time 221 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 1555 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 017 elapsed time 1654 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 018 elapsed time 233 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 241 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 1715 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 021 elapsed time 274 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 2198 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 023 elapsed time 1657 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 024 elapsed time 287 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 025 elapsed time 162 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 291 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 027 elapsed time 105 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 028 elapsed time 1696 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 029 elapsed time 1685 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 030 elapsed time 1643 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 031 elapsed time 1594 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 032 elapsed time 1563 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 033 elapsed time 212 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 034 elapsed time 2057 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8_mixedmode +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -102,14 +102,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 744.601549 - 0: The maximum resident set size (KB) = 1751352 + 0: The total amount of wall time = 433.658122 + 0: The maximum resident set size (KB) = 1732092 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_gfsv17 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/cpld_control_gfsv17 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_gfsv17 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -173,14 +173,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 590.272444 - 0: The maximum resident set size (KB) = 1625268 + 0: The total amount of wall time = 312.473670 + 0: The maximum resident set size (KB) = 1642332 Test 002 cpld_control_gfsv17 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/cpld_control_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -245,14 +245,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 734.810600 - 0: The maximum resident set size (KB) = 1796236 + 0: The total amount of wall time = 492.032176 + 0: The maximum resident set size (KB) = 1794572 Test 003 cpld_control_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/cpld_restart_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -305,14 +305,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 964.641413 - 0: The maximum resident set size (KB) = 1480216 + 0: The total amount of wall time = 287.891952 + 0: The maximum resident set size (KB) = 1490432 Test 004 cpld_restart_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/cpld_control_qr_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -377,14 +377,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1381.338365 - 0: The maximum resident set size (KB) = 1775380 + 0: The total amount of wall time = 504.023257 + 0: The maximum resident set size (KB) = 1787376 Test 005 cpld_control_qr_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/cpld_restart_qr_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -437,14 +437,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 824.167874 - 0: The maximum resident set size (KB) = 1518908 + 0: The total amount of wall time = 293.339690 + 0: The maximum resident set size (KB) = 1503564 Test 006 cpld_restart_qr_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/cpld_2threads_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -497,14 +497,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 891.314101 - 0: The maximum resident set size (KB) = 2002392 + 0: The total amount of wall time = 529.456511 + 0: The maximum resident set size (KB) = 2008992 Test 007 cpld_2threads_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/cpld_decomp_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -557,14 +557,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1003.523302 - 0: The maximum resident set size (KB) = 1762036 + 0: The total amount of wall time = 504.665956 + 0: The maximum resident set size (KB) = 1786908 Test 008 cpld_decomp_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/cpld_mpi_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -617,14 +617,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1094.575489 - 0: The maximum resident set size (KB) = 1733000 + 0: The total amount of wall time = 424.574423 + 0: The maximum resident set size (KB) = 1746796 Test 009 cpld_mpi_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_ciceC_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/cpld_control_ciceC_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_ciceC_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -689,14 +689,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1360.586035 - 0: The maximum resident set size (KB) = 1775744 + 0: The total amount of wall time = 483.825910 + 0: The maximum resident set size (KB) = 1796224 Test 010 cpld_control_ciceC_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_noaero_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/cpld_control_noaero_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_noaero_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/cpld_control_noaero_p8 Checking test 011 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -760,14 +760,14 @@ Checking test 011 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 485.586068 - 0: The maximum resident set size (KB) = 1618828 + 0: The total amount of wall time = 364.847907 + 0: The maximum resident set size (KB) = 1619932 Test 011 cpld_control_noaero_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/cpld_control_nowave_noaero_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_c96_noaero_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/cpld_control_nowave_noaero_p8 Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -829,14 +829,14 @@ Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 587.329454 - 0: The maximum resident set size (KB) = 1676124 + 0: The total amount of wall time = 370.722856 + 0: The maximum resident set size (KB) = 1677636 Test 012 cpld_control_nowave_noaero_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_debug_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/cpld_debug_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_debug_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/cpld_debug_p8 Checking test 013 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -889,14 +889,14 @@ Checking test 013 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 812.554449 - 0: The maximum resident set size (KB) = 1815012 + 0: The total amount of wall time = 703.009668 + 0: The maximum resident set size (KB) = 1812748 Test 013 cpld_debug_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_debug_noaero_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/cpld_debug_noaero_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_debug_noaero_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/cpld_debug_noaero_p8 Checking test 014 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -948,14 +948,14 @@ Checking test 014 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 530.122480 - 0: The maximum resident set size (KB) = 1645800 + 0: The total amount of wall time = 482.818484 + 0: The maximum resident set size (KB) = 1645776 Test 014 cpld_debug_noaero_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/cpld_control_noaero_p8_agrid +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_noaero_p8_agrid +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/cpld_control_noaero_p8_agrid Checking test 015 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1017,14 +1017,14 @@ Checking test 015 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 777.306015 - 0: The maximum resident set size (KB) = 1687272 + 0: The total amount of wall time = 396.199801 + 0: The maximum resident set size (KB) = 1691492 Test 015 cpld_control_noaero_p8_agrid PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_c48 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/cpld_control_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_c48 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/cpld_control_c48 Checking test 016 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1074,14 +1074,14 @@ Checking test 016 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 818.264892 - 0: The maximum resident set size (KB) = 2780164 + 0: The total amount of wall time = 817.017496 + 0: The maximum resident set size (KB) = 2765076 Test 016 cpld_control_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_warmstart_c48 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/cpld_warmstart_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_warmstart_c48 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/cpld_warmstart_c48 Checking test 017 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1131,14 +1131,14 @@ Checking test 017 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 243.008802 - 0: The maximum resident set size (KB) = 2779072 + 0: The total amount of wall time = 223.994882 + 0: The maximum resident set size (KB) = 2775520 Test 017 cpld_warmstart_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_warmstart_c48 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/cpld_restart_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_warmstart_c48 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/cpld_restart_c48 Checking test 018 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1188,14 +1188,14 @@ Checking test 018 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 129.352033 - 0: The maximum resident set size (KB) = 2200684 + 0: The total amount of wall time = 121.451411 + 0: The maximum resident set size (KB) = 2205996 Test 018 cpld_restart_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8_faster -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/cpld_control_p8_faster +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8_faster +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/cpld_control_p8_faster Checking test 019 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1260,14 +1260,14 @@ Checking test 019 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1447.421774 - 0: The maximum resident set size (KB) = 1790472 + 0: The total amount of wall time = 503.946357 + 0: The maximum resident set size (KB) = 1786004 Test 019 cpld_control_p8_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_flake -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_flake +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_flake +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_flake Checking test 020 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1278,14 +1278,14 @@ Checking test 020 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 454.696811 - 0: The maximum resident set size (KB) = 620404 + 0: The total amount of wall time = 313.922539 + 0: The maximum resident set size (KB) = 621080 Test 020 control_flake PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_CubedSphereGrid -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_CubedSphereGrid +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_CubedSphereGrid +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_CubedSphereGrid Checking test 021 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1312,28 +1312,28 @@ Checking test 021 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 270.131174 - 0: The maximum resident set size (KB) = 570668 + 0: The total amount of wall time = 265.098227 + 0: The maximum resident set size (KB) = 571936 Test 021 control_CubedSphereGrid PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_CubedSphereGrid_parallel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_CubedSphereGrid_parallel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_CubedSphereGrid_parallel +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_CubedSphereGrid_parallel Checking test 022 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK + Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK - 0: The total amount of wall time = 283.207531 - 0: The maximum resident set size (KB) = 575540 + 0: The total amount of wall time = 217.710310 + 0: The maximum resident set size (KB) = 570600 Test 022 control_CubedSphereGrid_parallel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_latlon -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_latlon +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_latlon +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_latlon Checking test 023 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1344,14 +1344,14 @@ Checking test 023 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 287.967908 - 0: The maximum resident set size (KB) = 572992 + 0: The total amount of wall time = 233.655180 + 0: The maximum resident set size (KB) = 573352 Test 023 control_latlon PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_wrtGauss_netcdf_parallel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_wrtGauss_netcdf_parallel Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1362,14 +1362,14 @@ Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 299.119901 - 0: The maximum resident set size (KB) = 570532 + 0: The total amount of wall time = 221.519769 + 0: The maximum resident set size (KB) = 571560 Test 024 control_wrtGauss_netcdf_parallel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_c48 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_c48 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_c48 Checking test 025 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1408,14 +1408,14 @@ Checking test 025 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 612.199086 -0: The maximum resident set size (KB) = 798844 +0: The total amount of wall time = 604.942441 +0: The maximum resident set size (KB) = 789648 Test 025 control_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_c192 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_c192 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_c192 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_c192 Checking test 026 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1426,14 +1426,14 @@ Checking test 026 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 1378.796461 - 0: The maximum resident set size (KB) = 698744 + 0: The total amount of wall time = 825.662352 + 0: The maximum resident set size (KB) = 691160 Test 026 control_c192 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_c384 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_c384 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_c384 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_c384 Checking test 027 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1444,16 +1444,64 @@ Checking test 027 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1750.277538 - 0: The maximum resident set size (KB) = 1076768 + 0: The total amount of wall time = 1087.569457 + 0: The maximum resident set size (KB) = 1065448 + +Test 027 control_c384 PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_c384gdas +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_c384gdas +Checking test 028 control_c384gdas results .... + Comparing sfcf000.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf006.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF06 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF06 .........OK + Comparing RESTART/20210322.060000.coupler.res .........OK + Comparing RESTART/20210322.060000.fv_core.res.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK -Test 027 control_c384 PASS Tries: 2 + 0: The total amount of wall time = 964.568535 + 0: The maximum resident set size (KB) = 1197880 -Test 028 control_c384gdas FAIL +Test 028 control_c384gdas PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_stochy -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_stochy +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_stochy +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_stochy Checking test 029 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1464,28 +1512,28 @@ Checking test 029 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 192.921002 - 0: The maximum resident set size (KB) = 575368 + 0: The total amount of wall time = 151.051659 + 0: The maximum resident set size (KB) = 577016 Test 029 control_stochy PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_stochy -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_stochy_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_stochy +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_stochy_restart Checking test 030 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 283.614541 - 0: The maximum resident set size (KB) = 395844 + 0: The total amount of wall time = 73.879798 + 0: The maximum resident set size (KB) = 394808 Test 030 control_stochy_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_lndp -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_lndp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_lndp +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_lndp Checking test 031 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1496,14 +1544,14 @@ Checking test 031 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 215.210144 - 0: The maximum resident set size (KB) = 580532 + 0: The total amount of wall time = 147.292727 + 0: The maximum resident set size (KB) = 575732 Test 031 control_lndp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_iovr4 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_iovr4 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_iovr4 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_iovr4 Checking test 032 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1518,14 +1566,14 @@ Checking test 032 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 305.270714 - 0: The maximum resident set size (KB) = 572020 + 0: The total amount of wall time = 217.669080 + 0: The maximum resident set size (KB) = 571184 Test 032 control_iovr4 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_iovr5 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_iovr5 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_iovr5 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_iovr5 Checking test 033 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1540,14 +1588,14 @@ Checking test 033 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 289.224259 - 0: The maximum resident set size (KB) = 570544 + 0: The total amount of wall time = 230.692887 + 0: The maximum resident set size (KB) = 576040 Test 033 control_iovr5 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_p8 Checking test 034 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1594,14 +1642,14 @@ Checking test 034 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 642.496554 - 0: The maximum resident set size (KB) = 1543536 + 0: The total amount of wall time = 258.349760 + 0: The maximum resident set size (KB) = 1547500 Test 034 control_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_restart_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_restart_p8 Checking test 035 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1640,14 +1688,14 @@ Checking test 035 control_restart_p8 results .... Comparing 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.428782 - 0: The maximum resident set size (KB) = 781300 + 0: The total amount of wall time = 136.866486 + 0: The maximum resident set size (KB) = 782120 Test 035 control_restart_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_qr_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_qr_p8 Checking test 036 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1694,14 +1742,14 @@ Checking test 036 control_qr_p8 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 = 596.125665 - 0: The maximum resident set size (KB) = 1550892 + 0: The total amount of wall time = 237.282705 + 0: The maximum resident set size (KB) = 1544652 Test 036 control_qr_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_restart_qr_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_restart_qr_p8 Checking test 037 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1740,14 +1788,14 @@ Checking test 037 control_restart_qr_p8 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 = 217.454728 - 0: The maximum resident set size (KB) = 779112 + 0: The total amount of wall time = 136.684525 + 0: The maximum resident set size (KB) = 786388 Test 037 control_restart_qr_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_decomp_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_decomp_p8 Checking test 038 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1790,14 +1838,14 @@ Checking test 038 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 600.935508 - 0: The maximum resident set size (KB) = 1529252 + 0: The total amount of wall time = 247.010192 + 0: The maximum resident set size (KB) = 1534360 Test 038 control_decomp_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_2threads_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_2threads_p8 Checking test 039 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1840,14 +1888,14 @@ Checking test 039 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 569.045347 - 0: The maximum resident set size (KB) = 1629504 + 0: The total amount of wall time = 237.154243 + 0: The maximum resident set size (KB) = 1631072 Test 039 control_2threads_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8_lndp -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_p8_lndp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_lndp +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_p8_lndp Checking test 040 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1866,14 +1914,14 @@ Checking test 040 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 1107.052690 - 0: The maximum resident set size (KB) = 1521284 + 0: The total amount of wall time = 476.342330 + 0: The maximum resident set size (KB) = 1549412 Test 040 control_p8_lndp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8_rrtmgp -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_p8_rrtmgp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_rrtmgp +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_p8_rrtmgp Checking test 041 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1920,14 +1968,14 @@ Checking test 041 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 641.183753 - 0: The maximum resident set size (KB) = 1607316 + 0: The total amount of wall time = 328.750109 + 0: The maximum resident set size (KB) = 1619620 Test 041 control_p8_rrtmgp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8_mynn -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_p8_mynn +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_mynn +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_p8_mynn Checking test 042 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1974,14 +2022,14 @@ Checking test 042 control_p8_mynn results .... Comparing 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.549681 - 0: The maximum resident set size (KB) = 1555244 + 0: The total amount of wall time = 256.327174 + 0: The maximum resident set size (KB) = 1552720 Test 042 control_p8_mynn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/merra2_thompson -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/merra2_thompson +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/merra2_thompson +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/merra2_thompson Checking test 043 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2028,14 +2076,14 @@ Checking test 043 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 648.670417 - 0: The maximum resident set size (KB) = 1543484 + 0: The total amount of wall time = 283.852297 + 0: The maximum resident set size (KB) = 1542464 Test 043 merra2_thompson PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/regional_control +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/regional_control Checking test 044 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2046,28 +2094,28 @@ Checking test 044 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 543.448913 - 0: The maximum resident set size (KB) = 782900 + 0: The total amount of wall time = 459.879211 + 0: The maximum resident set size (KB) = 788492 Test 044 regional_control PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/regional_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/regional_restart Checking test 045 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 300.948750 - 0: The maximum resident set size (KB) = 779920 + 0: The total amount of wall time = 244.934220 + 0: The maximum resident set size (KB) = 782800 Test 045 regional_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/regional_control_qr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/regional_control_qr Checking test 046 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2078,28 +2126,28 @@ Checking test 046 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 666.315723 - 0: The maximum resident set size (KB) = 786836 + 0: The total amount of wall time = 469.655090 + 0: The maximum resident set size (KB) = 785844 Test 046 regional_control_qr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/regional_restart_qr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/regional_restart_qr Checking test 047 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 304.146506 - 0: The maximum resident set size (KB) = 780796 + 0: The total amount of wall time = 243.639273 + 0: The maximum resident set size (KB) = 780556 Test 047 regional_restart_qr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/regional_decomp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/regional_decomp Checking test 048 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2110,14 +2158,14 @@ Checking test 048 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 832.235485 - 0: The maximum resident set size (KB) = 779480 + 0: The total amount of wall time = 460.032722 + 0: The maximum resident set size (KB) = 785952 -Test 048 regional_decomp PASS Tries: 2 +Test 048 regional_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/regional_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/regional_2threads Checking test 049 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2128,30 +2176,46 @@ Checking test 049 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 699.937320 - 0: The maximum resident set size (KB) = 769148 + 0: The total amount of wall time = 290.912716 + 0: The maximum resident set size (KB) = 774648 Test 049 regional_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/regional_netcdf_parallel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_netcdf_parallel +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/regional_netcdf_parallel Checking test 050 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing phyf006.nc .........OK - 0: The total amount of wall time = 631.569690 - 0: The maximum resident set size (KB) = 780468 + 0: The total amount of wall time = 439.021193 + 0: The maximum resident set size (KB) = 785048 Test 050 regional_netcdf_parallel PASS -Test 051 regional_2dwrtdecomp FAIL +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/regional_2dwrtdecomp +Checking test 051 regional_2dwrtdecomp results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK + + 0: The total amount of wall time = 430.994213 + 0: The maximum resident set size (KB) = 788676 + +Test 051 regional_2dwrtdecomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/rap_control + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/rap_control Checking test 052 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2198,14 +2262,14 @@ Checking test 052 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1351.872265 - 0: The maximum resident set size (KB) = 949944 + 0: The total amount of wall time = 662.464723 + 0: The maximum resident set size (KB) = 953220 Test 052 rap_control PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/regional_spp_sppt_shum_skeb +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_spp_sppt_shum_skeb +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/regional_spp_sppt_shum_skeb Checking test 053 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2216,14 +2280,14 @@ Checking test 053 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 782.807108 - 0: The maximum resident set size (KB) = 1094576 + 0: The total amount of wall time = 357.092998 + 0: The maximum resident set size (KB) = 1098000 Test 053 regional_spp_sppt_shum_skeb PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/rap_decomp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/rap_decomp Checking test 054 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2270,14 +2334,14 @@ Checking test 054 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1439.128406 - 0: The maximum resident set size (KB) = 949464 + 0: The total amount of wall time = 709.936638 + 0: The maximum resident set size (KB) = 947004 Test 054 rap_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/rap_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/rap_2threads Checking test 055 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2324,14 +2388,14 @@ Checking test 055 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1161.301669 - 0: The maximum resident set size (KB) = 1022324 + 0: The total amount of wall time = 643.866154 + 0: The maximum resident set size (KB) = 1028168 Test 055 rap_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/rap_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/rap_restart Checking test 056 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2370,14 +2434,14 @@ Checking test 056 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 394.694189 - 0: The maximum resident set size (KB) = 834172 + 0: The total amount of wall time = 349.331085 + 0: The maximum resident set size (KB) = 826180 Test 056 rap_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/rap_sfcdiff +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/rap_sfcdiff Checking test 057 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2424,14 +2488,14 @@ Checking test 057 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1218.231684 - 0: The maximum resident set size (KB) = 951920 + 0: The total amount of wall time = 700.519046 + 0: The maximum resident set size (KB) = 954208 Test 057 rap_sfcdiff PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/rap_sfcdiff_decomp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/rap_sfcdiff_decomp Checking test 058 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2478,14 +2542,14 @@ Checking test 058 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1141.165197 - 0: The maximum resident set size (KB) = 951836 + 0: The total amount of wall time = 725.956581 + 0: The maximum resident set size (KB) = 947772 Test 058 rap_sfcdiff_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/rap_sfcdiff_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/rap_sfcdiff_restart Checking test 059 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2524,14 +2588,14 @@ Checking test 059 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 590.684262 - 0: The maximum resident set size (KB) = 841456 + 0: The total amount of wall time = 471.367129 + 0: The maximum resident set size (KB) = 834068 Test 059 rap_sfcdiff_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/hrrr_control +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/hrrr_control Checking test 060 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2578,14 +2642,14 @@ Checking test 060 hrrr_control results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1179.729471 - 0: The maximum resident set size (KB) = 943368 + 0: The total amount of wall time = 645.666481 + 0: The maximum resident set size (KB) = 955676 Test 060 hrrr_control PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/hrrr_control_decomp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/hrrr_control_decomp Checking test 061 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2632,14 +2696,14 @@ Checking test 061 hrrr_control_decomp results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1178.402459 - 0: The maximum resident set size (KB) = 947276 + 0: The total amount of wall time = 687.507432 + 0: The maximum resident set size (KB) = 944568 Test 061 hrrr_control_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/hrrr_control_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/hrrr_control_2threads Checking test 062 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2686,28 +2750,28 @@ Checking test 062 hrrr_control_2threads results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1360.599319 - 0: The maximum resident set size (KB) = 1015220 + 0: The total amount of wall time = 624.844757 + 0: The maximum resident set size (KB) = 1010004 Test 062 hrrr_control_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/hrrr_control_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/hrrr_control_restart Checking test 063 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 555.174720 - 0: The maximum resident set size (KB) = 838844 + 0: The total amount of wall time = 426.558381 + 0: The maximum resident set size (KB) = 837040 Test 063 hrrr_control_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_v1beta -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/rrfs_v1beta +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_v1beta +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/rrfs_v1beta Checking test 064 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2754,14 +2818,14 @@ Checking test 064 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1178.760121 - 0: The maximum resident set size (KB) = 953572 + 0: The total amount of wall time = 700.726735 + 0: The maximum resident set size (KB) = 951084 Test 064 rrfs_v1beta PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_v1nssl -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/rrfs_v1nssl +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_v1nssl +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/rrfs_v1nssl Checking test 065 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2776,14 +2840,14 @@ Checking test 065 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1312.369843 - 0: The maximum resident set size (KB) = 627820 + 0: The total amount of wall time = 811.948972 + 0: The maximum resident set size (KB) = 634916 Test 065 rrfs_v1nssl PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/rrfs_v1nssl_nohailnoccn +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/rrfs_v1nssl_nohailnoccn Checking test 066 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2798,14 +2862,14 @@ Checking test 066 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1316.134311 - 0: The maximum resident set size (KB) = 634664 + 0: The total amount of wall time = 789.179810 + 0: The maximum resident set size (KB) = 637924 Test 066 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/rrfs_smoke_conus13km_hrrr_warm Checking test 067 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2814,14 +2878,14 @@ Checking test 067 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 285.017348 - 0: The maximum resident set size (KB) = 901212 + 0: The total amount of wall time = 257.539594 + 0: The maximum resident set size (KB) = 905260 Test 067 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 068 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2830,14 +2894,14 @@ Checking test 068 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 345.495062 - 0: The maximum resident set size (KB) = 857148 + 0: The total amount of wall time = 178.565872 + 0: The maximum resident set size (KB) = 863324 Test 068 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/rrfs_conus13km_hrrr_warm +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/rrfs_conus13km_hrrr_warm Checking test 069 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2846,14 +2910,14 @@ Checking test 069 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 452.517854 - 0: The maximum resident set size (KB) = 878952 + 0: The total amount of wall time = 231.074799 + 0: The maximum resident set size (KB) = 878428 Test 069 rrfs_conus13km_hrrr_warm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/rrfs_smoke_conus13km_radar_tten_warm Checking test 070 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2862,26 +2926,26 @@ Checking test 070 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 499.418447 - 0: The maximum resident set size (KB) = 915188 + 0: The total amount of wall time = 239.719951 + 0: The maximum resident set size (KB) = 896176 Test 070 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 071 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 136.264697 - 0: The maximum resident set size (KB) = 856240 + 0: The total amount of wall time = 117.397314 + 0: The maximum resident set size (KB) = 849588 Test 071 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_csawmg -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_csawmg +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_csawmg +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_csawmg Checking test 072 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2892,14 +2956,14 @@ Checking test 072 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 850.087102 - 0: The maximum resident set size (KB) = 672464 + 0: The total amount of wall time = 532.392483 + 0: The maximum resident set size (KB) = 673392 Test 072 control_csawmg PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_csawmgt -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_csawmgt +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_csawmgt +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_csawmgt Checking test 073 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2910,14 +2974,14 @@ Checking test 073 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 866.172060 - 0: The maximum resident set size (KB) = 665716 + 0: The total amount of wall time = 525.051615 + 0: The maximum resident set size (KB) = 661928 Test 073 control_csawmgt PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_ras -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_ras +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_ras +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_ras Checking test 074 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2928,26 +2992,26 @@ Checking test 074 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 604.507140 - 0: The maximum resident set size (KB) = 639396 + 0: The total amount of wall time = 308.631405 + 0: The maximum resident set size (KB) = 634260 Test 074 control_ras PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_wam -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_wam +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_wam +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_wam Checking test 075 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 291.629515 - 0: The maximum resident set size (KB) = 480216 + 0: The total amount of wall time = 169.274900 + 0: The maximum resident set size (KB) = 479356 Test 075 control_wam PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8_faster -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_p8_faster +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_faster +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_p8_faster Checking test 076 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2994,14 +3058,14 @@ Checking test 076 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 505.534998 - 0: The maximum resident set size (KB) = 1544704 + 0: The total amount of wall time = 232.615659 + 0: The maximum resident set size (KB) = 1547660 Test 076 control_p8_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control_faster -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/regional_control_faster +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control_faster +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/regional_control_faster Checking test 077 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3012,56 +3076,56 @@ Checking test 077 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 760.902484 - 0: The maximum resident set size (KB) = 787056 + 0: The total amount of wall time = 413.537589 + 0: The maximum resident set size (KB) = 784112 -Test 077 regional_control_faster PASS Tries: 2 +Test 077 regional_control_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 078 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 1175.883578 - 0: The maximum resident set size (KB) = 933116 + 0: The total amount of wall time = 1109.403744 + 0: The maximum resident set size (KB) = 935624 Test 078 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 079 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 786.595413 - 0: The maximum resident set size (KB) = 898712 + 0: The total amount of wall time = 664.635352 + 0: The maximum resident set size (KB) = 891036 Test 079 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/rrfs_conus13km_hrrr_warm_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/rrfs_conus13km_hrrr_warm_debug Checking test 080 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 1039.959176 - 0: The maximum resident set size (KB) = 912268 + 0: The total amount of wall time = 975.277921 + 0: The maximum resident set size (KB) = 910608 Test 080 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_CubedSphereGrid_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_CubedSphereGrid_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_CubedSphereGrid_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_CubedSphereGrid_debug Checking test 081 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3088,348 +3152,348 @@ Checking test 081 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 291.101561 - 0: The maximum resident set size (KB) = 737440 + 0: The total amount of wall time = 209.457379 + 0: The maximum resident set size (KB) = 730424 Test 081 control_CubedSphereGrid_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_wrtGauss_netcdf_parallel_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_wrtGauss_netcdf_parallel_debug Checking test 082 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 218.332062 - 0: The maximum resident set size (KB) = 735332 + 0: The total amount of wall time = 200.437363 + 0: The maximum resident set size (KB) = 739384 Test 082 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_stochy_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_stochy_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_stochy_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_stochy_debug Checking test 083 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 251.851410 - 0: The maximum resident set size (KB) = 739580 + 0: The total amount of wall time = 227.802722 + 0: The maximum resident set size (KB) = 740720 Test 083 control_stochy_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_lndp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_lndp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_lndp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_lndp_debug Checking test 084 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 218.255137 - 0: The maximum resident set size (KB) = 738584 + 0: The total amount of wall time = 201.745708 + 0: The maximum resident set size (KB) = 735284 Test 084 control_lndp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_csawmg_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_csawmg_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_csawmg_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_csawmg_debug Checking test 085 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 341.185010 - 0: The maximum resident set size (KB) = 784628 + 0: The total amount of wall time = 308.187411 + 0: The maximum resident set size (KB) = 787096 Test 085 control_csawmg_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_csawmgt_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_csawmgt_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_csawmgt_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_csawmgt_debug Checking test 086 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 327.478366 - 0: The maximum resident set size (KB) = 786588 + 0: The total amount of wall time = 312.414049 + 0: The maximum resident set size (KB) = 784460 Test 086 control_csawmgt_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_ras_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_ras_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_ras_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_ras_debug Checking test 087 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 222.125851 - 0: The maximum resident set size (KB) = 749352 + 0: The total amount of wall time = 216.202113 + 0: The maximum resident set size (KB) = 746692 Test 087 control_ras_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_diag_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_diag_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_diag_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_diag_debug Checking test 088 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 258.278740 - 0: The maximum resident set size (KB) = 798800 + 0: The total amount of wall time = 221.821530 + 0: The maximum resident set size (KB) = 793340 Test 088 control_diag_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_debug_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_debug_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_debug_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_debug_p8 Checking test 089 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 267.195027 - 0: The maximum resident set size (KB) = 1555564 + 0: The total amount of wall time = 221.276339 + 0: The maximum resident set size (KB) = 1551100 Test 089 control_debug_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/regional_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/regional_debug Checking test 090 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1514.024230 - 0: The maximum resident set size (KB) = 800496 + 0: The total amount of wall time = 1288.552729 + 0: The maximum resident set size (KB) = 803872 Test 090 regional_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/rap_control_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/rap_control_debug Checking test 091 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 382.882718 - 0: The maximum resident set size (KB) = 1109048 + 0: The total amount of wall time = 366.293930 + 0: The maximum resident set size (KB) = 1113452 Test 091 rap_control_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/hrrr_control_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/hrrr_control_debug Checking test 092 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 383.926061 - 0: The maximum resident set size (KB) = 1107864 + 0: The total amount of wall time = 342.345390 + 0: The maximum resident set size (KB) = 1112200 Test 092 hrrr_control_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/rap_unified_drag_suite_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/rap_unified_drag_suite_debug Checking test 093 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 406.584114 - 0: The maximum resident set size (KB) = 1110612 + 0: The total amount of wall time = 357.027959 + 0: The maximum resident set size (KB) = 1105504 Test 093 rap_unified_drag_suite_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_diag_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/rap_diag_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_diag_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/rap_diag_debug Checking test 094 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 516.943840 - 0: The maximum resident set size (KB) = 1193052 + 0: The total amount of wall time = 378.025044 + 0: The maximum resident set size (KB) = 1193224 Test 094 rap_diag_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/rap_cires_ugwp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/rap_cires_ugwp_debug Checking test 095 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 417.335488 - 0: The maximum resident set size (KB) = 1109976 + 0: The total amount of wall time = 374.673621 + 0: The maximum resident set size (KB) = 1105788 Test 095 rap_cires_ugwp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/rap_unified_ugwp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/rap_unified_ugwp_debug Checking test 096 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 430.557398 - 0: The maximum resident set size (KB) = 1113992 + 0: The total amount of wall time = 364.449448 + 0: The maximum resident set size (KB) = 1104880 Test 096 rap_unified_ugwp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_lndp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/rap_lndp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_lndp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/rap_lndp_debug Checking test 097 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 417.668156 - 0: The maximum resident set size (KB) = 1107976 + 0: The total amount of wall time = 358.446608 + 0: The maximum resident set size (KB) = 1106064 Test 097 rap_lndp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_progcld_thompson_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/rap_progcld_thompson_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_progcld_thompson_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/rap_progcld_thompson_debug Checking test 098 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 396.198029 - 0: The maximum resident set size (KB) = 1115172 + 0: The total amount of wall time = 356.533009 + 0: The maximum resident set size (KB) = 1108216 Test 098 rap_progcld_thompson_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_noah_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/rap_noah_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_noah_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/rap_noah_debug Checking test 099 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 473.045254 - 0: The maximum resident set size (KB) = 1111076 + 0: The total amount of wall time = 349.057666 + 0: The maximum resident set size (KB) = 1106804 Test 099 rap_noah_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_sfcdiff_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/rap_sfcdiff_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_sfcdiff_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/rap_sfcdiff_debug Checking test 100 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 389.558324 - 0: The maximum resident set size (KB) = 1113544 + 0: The total amount of wall time = 354.153228 + 0: The maximum resident set size (KB) = 1116628 Test 100 rap_sfcdiff_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/rap_noah_sfcdiff_cires_ugwp_debug Checking test 101 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 621.292532 - 0: The maximum resident set size (KB) = 1109612 + 0: The total amount of wall time = 587.554779 + 0: The maximum resident set size (KB) = 1109044 Test 101 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_v1beta_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/rrfs_v1beta_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_v1beta_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/rrfs_v1beta_debug Checking test 102 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 402.382217 - 0: The maximum resident set size (KB) = 1111656 + 0: The total amount of wall time = 348.294228 + 0: The maximum resident set size (KB) = 1107916 Test 102 rrfs_v1beta_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_clm_lake_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/rap_clm_lake_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_clm_lake_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/rap_clm_lake_debug Checking test 103 rap_clm_lake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 494.352632 - 0: The maximum resident set size (KB) = 1115292 + 0: The total amount of wall time = 435.991621 + 0: The maximum resident set size (KB) = 1110796 Test 103 rap_clm_lake_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_flake_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/rap_flake_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_flake_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/rap_flake_debug Checking test 104 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 390.967211 - 0: The maximum resident set size (KB) = 1107896 + 0: The total amount of wall time = 364.863750 + 0: The maximum resident set size (KB) = 1107652 Test 104 rap_flake_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_wam_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_wam_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_wam_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_wam_debug Checking test 105 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 426.626571 - 0: The maximum resident set size (KB) = 437892 + 0: The total amount of wall time = 362.373473 + 0: The maximum resident set size (KB) = 435092 Test 105 control_wam_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3440,14 +3504,14 @@ Checking test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 836.913925 - 0: The maximum resident set size (KB) = 984232 + 0: The total amount of wall time = 345.095550 + 0: The maximum resident set size (KB) = 986128 Test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/rap_control_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/rap_control_dyn32_phy32 Checking test 107 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3494,14 +3558,14 @@ Checking test 107 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 925.639316 - 0: The maximum resident set size (KB) = 844216 + 0: The total amount of wall time = 540.854021 + 0: The maximum resident set size (KB) = 844960 Test 107 rap_control_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/hrrr_control_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/hrrr_control_dyn32_phy32 Checking test 108 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3548,14 +3612,14 @@ Checking test 108 hrrr_control_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 591.836744 - 0: The maximum resident set size (KB) = 831200 + 0: The total amount of wall time = 267.477712 + 0: The maximum resident set size (KB) = 826560 Test 108 hrrr_control_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/rap_2threads_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/rap_2threads_dyn32_phy32 Checking test 109 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3602,14 +3666,14 @@ Checking test 109 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 928.995751 - 0: The maximum resident set size (KB) = 882640 + 0: The total amount of wall time = 533.405927 + 0: The maximum resident set size (KB) = 879232 Test 109 rap_2threads_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/hrrr_control_2threads_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/hrrr_control_2threads_dyn32_phy32 Checking test 110 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3656,14 +3720,14 @@ Checking test 110 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 703.545145 - 0: The maximum resident set size (KB) = 869824 + 0: The total amount of wall time = 259.777073 + 0: The maximum resident set size (KB) = 865172 Test 110 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/hrrr_control_decomp_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/hrrr_control_decomp_dyn32_phy32 Checking test 111 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3710,14 +3774,14 @@ Checking test 111 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 659.174573 - 0: The maximum resident set size (KB) = 818328 + 0: The total amount of wall time = 290.037453 + 0: The maximum resident set size (KB) = 822200 Test 111 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/rap_restart_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/rap_restart_dyn32_phy32 Checking test 112 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3756,28 +3820,28 @@ Checking test 112 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 556.661271 - 0: The maximum resident set size (KB) = 805736 + 0: The total amount of wall time = 374.560314 + 0: The maximum resident set size (KB) = 810036 Test 112 rap_restart_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/hrrr_control_restart_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/hrrr_control_restart_dyn32_phy32 Checking test 113 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 248.359845 - 0: The maximum resident set size (KB) = 756244 + 0: The total amount of wall time = 140.081012 + 0: The maximum resident set size (KB) = 764388 Test 113 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_dyn64_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/rap_control_dyn64_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_dyn64_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/rap_control_dyn64_phy32 Checking test 114 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3824,81 +3888,81 @@ Checking test 114 rap_control_dyn64_phy32 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 = 706.671936 - 0: The maximum resident set size (KB) = 868616 + 0: The total amount of wall time = 336.281729 + 0: The maximum resident set size (KB) = 867340 Test 114 rap_control_dyn64_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/rap_control_debug_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/rap_control_debug_dyn32_phy32 Checking test 115 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 412.343064 - 0: The maximum resident set size (KB) = 999064 + 0: The total amount of wall time = 352.831862 + 0: The maximum resident set size (KB) = 1005268 Test 115 rap_control_debug_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/hrrr_control_debug_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/hrrr_control_debug_dyn32_phy32 Checking test 116 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 383.960219 - 0: The maximum resident set size (KB) = 992032 + 0: The total amount of wall time = 356.286737 + 0: The maximum resident set size (KB) = 993148 Test 116 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/rap_control_dyn64_phy32_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/rap_control_dyn64_phy32_debug Checking test 117 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 432.385401 - 0: The maximum resident set size (KB) = 1028836 + 0: The total amount of wall time = 356.675201 + 0: The maximum resident set size (KB) = 1027888 Test 117 rap_control_dyn64_phy32_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_atm -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/hafs_regional_atm +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/hafs_regional_atm Checking test 118 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 627.482141 - 0: The maximum resident set size (KB) = 1213280 + 0: The total amount of wall time = 382.199689 + 0: The maximum resident set size (KB) = 1229784 Test 118 hafs_regional_atm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/hafs_regional_atm_thompson_gfdlsf +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/hafs_regional_atm_thompson_gfdlsf Checking test 119 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 940.804290 - 0: The maximum resident set size (KB) = 1590776 + 0: The total amount of wall time = 519.481687 + 0: The maximum resident set size (KB) = 1515832 -Test 119 hafs_regional_atm_thompson_gfdlsf PASS Tries: 2 +Test 119 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_atm_ocn -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/hafs_regional_atm_ocn +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm_ocn +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/hafs_regional_atm_ocn Checking test 120 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3907,14 +3971,14 @@ Checking test 120 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 1156.078290 - 0: The maximum resident set size (KB) = 1300544 + 0: The total amount of wall time = 534.296634 + 0: The maximum resident set size (KB) = 1263188 Test 120 hafs_regional_atm_ocn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_atm_wav -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/hafs_regional_atm_wav +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm_wav +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/hafs_regional_atm_wav Checking test 121 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3923,14 +3987,14 @@ Checking test 121 hafs_regional_atm_wav 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 = 1466.873360 - 0: The maximum resident set size (KB) = 1320212 + 0: The total amount of wall time = 884.029113 + 0: The maximum resident set size (KB) = 1323824 Test 121 hafs_regional_atm_wav PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/hafs_regional_atm_ocn_wav +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm_ocn_wav +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/hafs_regional_atm_ocn_wav Checking test 122 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3941,14 +4005,14 @@ Checking test 122 hafs_regional_atm_ocn_wav 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 = 1604.557193 - 0: The maximum resident set size (KB) = 1345324 + 0: The total amount of wall time = 1079.092724 + 0: The maximum resident set size (KB) = 1342728 Test 122 hafs_regional_atm_ocn_wav PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_docn -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/hafs_regional_docn +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_docn +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/hafs_regional_docn Checking test 123 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3956,14 +4020,14 @@ Checking test 123 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 943.844884 - 0: The maximum resident set size (KB) = 1308344 + 0: The total amount of wall time = 515.797101 + 0: The maximum resident set size (KB) = 1303448 Test 123 hafs_regional_docn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_docn_oisst -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/hafs_regional_docn_oisst +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_docn_oisst +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/hafs_regional_docn_oisst Checking test 124 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3971,118 +4035,118 @@ Checking test 124 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 974.570500 - 0: The maximum resident set size (KB) = 1226588 + 0: The total amount of wall time = 520.852498 + 0: The maximum resident set size (KB) = 1298820 Test 124 hafs_regional_docn_oisst PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/datm_cdeps_control_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/datm_cdeps_control_cfsr Checking test 125 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 474.076312 - 0: The maximum resident set size (KB) = 961588 + 0: The total amount of wall time = 236.253837 + 0: The maximum resident set size (KB) = 963768 Test 125 datm_cdeps_control_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/datm_cdeps_restart_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/datm_cdeps_restart_cfsr Checking test 126 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 225.540079 - 0: The maximum resident set size (KB) = 965868 + 0: The total amount of wall time = 148.998982 + 0: The maximum resident set size (KB) = 932580 Test 126 datm_cdeps_restart_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_control_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/datm_cdeps_control_gefs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_control_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/datm_cdeps_control_gefs Checking test 127 datm_cdeps_control_gefs 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 = 466.288965 - 0: The maximum resident set size (KB) = 865772 + 0: The total amount of wall time = 241.304196 + 0: The maximum resident set size (KB) = 863444 Test 127 datm_cdeps_control_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_iau_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/datm_cdeps_iau_gefs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_iau_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/datm_cdeps_iau_gefs Checking test 128 datm_cdeps_iau_gefs 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 = 391.089729 - 0: The maximum resident set size (KB) = 869128 + 0: The total amount of wall time = 246.827401 + 0: The maximum resident set size (KB) = 869724 Test 128 datm_cdeps_iau_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_stochy_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/datm_cdeps_stochy_gefs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_stochy_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/datm_cdeps_stochy_gefs Checking test 129 datm_cdeps_stochy_gefs 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 = 339.274845 - 0: The maximum resident set size (KB) = 868312 + 0: The total amount of wall time = 240.289819 + 0: The maximum resident set size (KB) = 860108 Test 129 datm_cdeps_stochy_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/datm_cdeps_ciceC_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_ciceC_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/datm_cdeps_ciceC_cfsr Checking test 130 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 373.025781 - 0: The maximum resident set size (KB) = 964756 + 0: The total amount of wall time = 240.528467 + 0: The maximum resident set size (KB) = 959496 Test 130 datm_cdeps_ciceC_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/datm_cdeps_bulk_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_bulk_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/datm_cdeps_bulk_cfsr Checking test 131 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 333.085346 - 0: The maximum resident set size (KB) = 965676 + 0: The total amount of wall time = 221.091261 + 0: The maximum resident set size (KB) = 965716 Test 131 datm_cdeps_bulk_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/datm_cdeps_bulk_gefs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_bulk_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/datm_cdeps_bulk_gefs Checking test 132 datm_cdeps_bulk_gefs 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 = 385.207946 - 0: The maximum resident set size (KB) = 862808 + 0: The total amount of wall time = 240.822424 + 0: The maximum resident set size (KB) = 863716 Test 132 datm_cdeps_bulk_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/datm_cdeps_mx025_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_mx025_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/datm_cdeps_mx025_cfsr Checking test 133 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4091,14 +4155,14 @@ Checking test 133 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 1171.400192 - 0: The maximum resident set size (KB) = 764056 + 0: The total amount of wall time = 663.905521 + 0: The maximum resident set size (KB) = 764396 Test 133 datm_cdeps_mx025_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/datm_cdeps_mx025_gefs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_mx025_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/datm_cdeps_mx025_gefs Checking test 134 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4107,77 +4171,77 @@ Checking test 134 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 991.221119 - 0: The maximum resident set size (KB) = 735672 + 0: The total amount of wall time = 615.073142 + 0: The maximum resident set size (KB) = 733832 Test 134 datm_cdeps_mx025_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/datm_cdeps_multiple_files_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/datm_cdeps_multiple_files_cfsr Checking test 135 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 384.008683 - 0: The maximum resident set size (KB) = 963652 + 0: The total amount of wall time = 233.766560 + 0: The maximum resident set size (KB) = 969440 Test 135 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/datm_cdeps_3072x1536_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/datm_cdeps_3072x1536_cfsr Checking test 136 datm_cdeps_3072x1536_cfsr 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 = 457.806257 - 0: The maximum resident set size (KB) = 2248292 + 0: The total amount of wall time = 353.230192 + 0: The maximum resident set size (KB) = 2258808 Test 136 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_gfs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/datm_cdeps_gfs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_gfs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/datm_cdeps_gfs Checking test 137 datm_cdeps_gfs 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 = 564.658329 - 0: The maximum resident set size (KB) = 2252896 + 0: The total amount of wall time = 357.008430 + 0: The maximum resident set size (KB) = 2246080 Test 137 datm_cdeps_gfs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_debug_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/datm_cdeps_debug_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_debug_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/datm_cdeps_debug_cfsr Checking test 138 datm_cdeps_debug_cfsr 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 = 515.047428 - 0: The maximum resident set size (KB) = 935192 + 0: The total amount of wall time = 478.173055 + 0: The maximum resident set size (KB) = 932876 Test 138 datm_cdeps_debug_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_control_cfsr_faster -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/datm_cdeps_control_cfsr_faster +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_control_cfsr_faster +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/datm_cdeps_control_cfsr_faster Checking test 139 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.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 = 441.358635 - 0: The maximum resident set size (KB) = 981884 + 0: The total amount of wall time = 235.472652 + 0: The maximum resident set size (KB) = 961324 Test 139 datm_cdeps_control_cfsr_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/datm_cdeps_lnd_gswp3 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/datm_cdeps_lnd_gswp3 Checking test 140 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4186,14 +4250,14 @@ Checking test 140 datm_cdeps_lnd_gswp3 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 = 112.633757 - 0: The maximum resident set size (KB) = 240108 + 0: The total amount of wall time = 19.029263 + 0: The maximum resident set size (KB) = 241204 Test 140 datm_cdeps_lnd_gswp3 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/datm_cdeps_lnd_gswp3_rst +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/datm_cdeps_lnd_gswp3_rst Checking test 141 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4202,14 +4266,14 @@ Checking test 141 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 35.822034 - 0: The maximum resident set size (KB) = 245068 + 0: The total amount of wall time = 23.320219 + 0: The maximum resident set size (KB) = 239024 Test 141 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8_atmlnd_sbs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_p8_atmlnd_sbs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_atmlnd_sbs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_p8_atmlnd_sbs Checking test 142 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4294,14 +4358,14 @@ Checking test 142 control_p8_atmlnd_sbs 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 = 701.130015 - 0: The maximum resident set size (KB) = 1585812 + 0: The total amount of wall time = 297.046004 + 0: The maximum resident set size (KB) = 1601656 Test 142 control_p8_atmlnd_sbs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/atmwav_control_noaero_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/atmwav_control_noaero_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/atmwav_control_noaero_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/atmwav_control_noaero_p8 Checking test 143 atmwav_control_noaero_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4344,14 +4408,14 @@ Checking test 143 atmwav_control_noaero_p8 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 = 244.989350 - 0: The maximum resident set size (KB) = 1558504 + 0: The total amount of wall time = 130.491167 + 0: The maximum resident set size (KB) = 1561324 Test 143 atmwav_control_noaero_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_atmwav -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/control_atmwav +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_atmwav +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_atmwav Checking test 144 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4395,14 +4459,14 @@ Checking test 144 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 250.079744 - 0: The maximum resident set size (KB) = 602764 + 0: The total amount of wall time = 125.013014 + 0: The maximum resident set size (KB) = 594868 Test 144 control_atmwav PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/atmaero_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/atmaero_control_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/atmaero_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/atmaero_control_p8 Checking test 145 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4446,14 +4510,14 @@ Checking test 145 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 562.687092 - 0: The maximum resident set size (KB) = 1641716 + 0: The total amount of wall time = 332.119572 + 0: The maximum resident set size (KB) = 1631720 Test 145 atmaero_control_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/atmaero_control_p8_rad -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/atmaero_control_p8_rad +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/atmaero_control_p8_rad +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/atmaero_control_p8_rad Checking test 146 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4497,14 +4561,14 @@ Checking test 146 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 627.483883 - 0: The maximum resident set size (KB) = 1665072 + 0: The total amount of wall time = 387.515454 + 0: The maximum resident set size (KB) = 1663252 Test 146 atmaero_control_p8_rad PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295380/atmaero_control_p8_rad_micro +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/atmaero_control_p8_rad_micro +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/atmaero_control_p8_rad_micro Checking test 147 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4548,91 +4612,12 @@ Checking test 147 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 638.009433 - 0: The maximum resident set size (KB) = 1685808 + 0: The total amount of wall time = 408.187459 + 0: The maximum resident set size (KB) = 1684284 Test 147 atmaero_control_p8_rad_micro PASS -FAILED TESTS: -Test control_c384gdas 028 failed in run_test failed -Test regional_2dwrtdecomp 051 failed in run_test failed - -REGRESSION TEST FAILED -Thu Apr 27 06:31:54 UTC 2023 -Elapsed time: 04h:29m:42s. Have a nice day! -Thu Apr 27 12:32:31 UTC 2023 -Start Regression test - -Compile 001 elapsed time 1927 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/control_c384gdas -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295917/control_c384gdas -Checking test 001 control_c384gdas results .... - Comparing sfcf000.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf006.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF06 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF06 .........OK - Comparing RESTART/20210322.060000.coupler.res .........OK - Comparing RESTART/20210322.060000.fv_core.res.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 1119.878464 - 0: The maximum resident set size (KB) = 1194584 - -Test 001 control_c384gdas PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_295917/regional_2dwrtdecomp -Checking test 002 regional_2dwrtdecomp results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 676.126310 - 0: The maximum resident set size (KB) = 785984 - -Test 002 regional_2dwrtdecomp PASS - REGRESSION TEST WAS SUCCESSFUL -Thu Apr 27 13:35:26 UTC 2023 -Elapsed time: 01h:03m:36s. Have a nice day! +Mon May 1 02:15:35 UTC 2023 +Elapsed time: 02h:59m:13s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index 526e5d6edd2..db82b2094f8 100755 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,43 +1,43 @@ -Wed Apr 26 21:02:59 CDT 2023 +Sun Apr 30 17:31:54 CDT 2023 Start Regression test -Compile 001 elapsed time 807 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 807 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 740 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 276 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 259 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 669 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 692 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 883 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 681 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 010 elapsed time 638 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 593 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 545 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 776 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 235 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 015 elapsed time 183 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 595 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 571 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 180 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 171 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 635 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 021 elapsed time 212 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 771 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 677 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 024 elapsed time 193 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 127 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 197 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 50 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 610 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 601 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 635 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 582 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 634 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 033 elapsed time 189 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 034 elapsed time 624 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8_mixedmode -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/cpld_control_p8_mixedmode +Compile 001 elapsed time 804 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 804 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 686 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 286 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 264 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 659 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 702 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 864 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 684 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 010 elapsed time 614 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 610 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 610 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 678 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 229 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 015 elapsed time 194 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 569 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 572 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 174 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 173 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 600 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 021 elapsed time 209 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 776 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 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 024 elapsed time 214 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 123 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 190 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 51 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 591 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 600 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 624 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 615 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 589 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 033 elapsed time 186 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 034 elapsed time 644 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8_mixedmode +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -102,14 +102,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 318.659551 - 0: The maximum resident set size (KB) = 3146356 + 0: The total amount of wall time = 302.836815 + 0: The maximum resident set size (KB) = 3144152 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_gfsv17 -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/cpld_control_gfsv17 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_gfsv17 +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -173,14 +173,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 227.325993 - 0: The maximum resident set size (KB) = 1730932 + 0: The total amount of wall time = 223.834382 + 0: The maximum resident set size (KB) = 1726620 Test 002 cpld_control_gfsv17 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/cpld_control_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -245,14 +245,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 343.129429 - 0: The maximum resident set size (KB) = 3168172 + 0: The total amount of wall time = 338.940647 + 0: The maximum resident set size (KB) = 3186120 Test 003 cpld_control_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/cpld_restart_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -305,14 +305,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 203.248879 - 0: The maximum resident set size (KB) = 3046192 + 0: The total amount of wall time = 204.199820 + 0: The maximum resident set size (KB) = 3051068 Test 004 cpld_restart_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/cpld_control_qr_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -377,14 +377,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 345.752485 - 0: The maximum resident set size (KB) = 3190312 + 0: The total amount of wall time = 342.650864 + 0: The maximum resident set size (KB) = 3192808 Test 005 cpld_control_qr_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/cpld_restart_qr_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -437,14 +437,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 223.761818 - 0: The maximum resident set size (KB) = 3064708 + 0: The total amount of wall time = 209.910891 + 0: The maximum resident set size (KB) = 3065364 Test 006 cpld_restart_qr_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/cpld_2threads_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -497,14 +497,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 400.500832 - 0: The maximum resident set size (KB) = 3515480 + 0: The total amount of wall time = 399.151931 + 0: The maximum resident set size (KB) = 3519944 Test 007 cpld_2threads_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/cpld_decomp_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -557,14 +557,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 344.450036 - 0: The maximum resident set size (KB) = 3168016 + 0: The total amount of wall time = 344.757272 + 0: The maximum resident set size (KB) = 3174776 Test 008 cpld_decomp_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/cpld_mpi_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -617,14 +617,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 286.666430 - 0: The maximum resident set size (KB) = 3027672 + 0: The total amount of wall time = 285.341684 + 0: The maximum resident set size (KB) = 3030352 Test 009 cpld_mpi_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_ciceC_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/cpld_control_ciceC_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_ciceC_p8 +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -689,14 +689,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 342.094540 - 0: The maximum resident set size (KB) = 3177532 + 0: The total amount of wall time = 341.986827 + 0: The maximum resident set size (KB) = 3184540 Test 010 cpld_control_ciceC_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/cpld_control_c192_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_c192_p8 +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/cpld_control_c192_p8 Checking test 011 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -749,14 +749,14 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 636.761816 - 0: The maximum resident set size (KB) = 3263016 + 0: The total amount of wall time = 643.660998 + 0: The maximum resident set size (KB) = 3225552 Test 011 cpld_control_c192_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/cpld_restart_c192_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_c192_p8 +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/cpld_restart_c192_p8 Checking test 012 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -809,14 +809,14 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 433.421942 - 0: The maximum resident set size (KB) = 3162316 + 0: The total amount of wall time = 436.579765 + 0: The maximum resident set size (KB) = 3140964 Test 012 cpld_restart_c192_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_bmark_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/cpld_bmark_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_bmark_p8 +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/cpld_bmark_p8 Checking test 013 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -864,14 +864,14 @@ Checking test 013 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 883.512282 - 0: The maximum resident set size (KB) = 4045320 + 0: The total amount of wall time = 870.507059 + 0: The maximum resident set size (KB) = 4072696 Test 013 cpld_bmark_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_bmark_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/cpld_restart_bmark_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_bmark_p8 +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/cpld_restart_bmark_p8 Checking test 014 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -919,14 +919,14 @@ Checking test 014 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 536.395637 - 0: The maximum resident set size (KB) = 3952280 + 0: The total amount of wall time = 536.005169 + 0: The maximum resident set size (KB) = 3922156 Test 014 cpld_restart_bmark_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_noaero_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/cpld_control_noaero_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_noaero_p8 +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/cpld_control_noaero_p8 Checking test 015 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -990,14 +990,14 @@ Checking test 015 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 258.559579 - 0: The maximum resident set size (KB) = 1723660 + 0: The total amount of wall time = 254.226348 + 0: The maximum resident set size (KB) = 1719824 Test 015 cpld_control_noaero_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_c96_noaero_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/cpld_control_nowave_noaero_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_c96_noaero_p8 +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/cpld_control_nowave_noaero_p8 Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1059,14 +1059,14 @@ Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 264.332574 - 0: The maximum resident set size (KB) = 1771172 + 0: The total amount of wall time = 258.699091 + 0: The maximum resident set size (KB) = 1770892 Test 016 cpld_control_nowave_noaero_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_debug_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/cpld_debug_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_debug_p8 +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/cpld_debug_p8 Checking test 017 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1119,14 +1119,14 @@ Checking test 017 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 536.435744 - 0: The maximum resident set size (KB) = 3239528 + 0: The total amount of wall time = 535.705424 + 0: The maximum resident set size (KB) = 3243668 Test 017 cpld_debug_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_debug_noaero_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/cpld_debug_noaero_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_debug_noaero_p8 +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/cpld_debug_noaero_p8 Checking test 018 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1178,14 +1178,14 @@ Checking test 018 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 379.684431 - 0: The maximum resident set size (KB) = 1739196 + 0: The total amount of wall time = 381.575361 + 0: The maximum resident set size (KB) = 1753172 Test 018 cpld_debug_noaero_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_noaero_p8_agrid -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/cpld_control_noaero_p8_agrid +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_noaero_p8_agrid +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/cpld_control_noaero_p8_agrid Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1247,14 +1247,14 @@ Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 265.786269 - 0: The maximum resident set size (KB) = 1764028 + 0: The total amount of wall time = 274.977772 + 0: The maximum resident set size (KB) = 1719956 Test 019 cpld_control_noaero_p8_agrid PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_c48 -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/cpld_control_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_c48 +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/cpld_control_c48 Checking test 020 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1304,14 +1304,14 @@ Checking test 020 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 497.572646 - 0: The maximum resident set size (KB) = 2813464 + 0: The total amount of wall time = 497.260347 + 0: The maximum resident set size (KB) = 2808724 Test 020 cpld_control_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_warmstart_c48 -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/cpld_warmstart_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_warmstart_c48 +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/cpld_warmstart_c48 Checking test 021 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1361,14 +1361,14 @@ Checking test 021 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 137.939893 - 0: The maximum resident set size (KB) = 2808348 + 0: The total amount of wall time = 135.507576 + 0: The maximum resident set size (KB) = 2808432 Test 021 cpld_warmstart_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_warmstart_c48 -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/cpld_restart_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_warmstart_c48 +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/cpld_restart_c48 Checking test 022 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1418,14 +1418,14 @@ Checking test 022 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 74.083108 - 0: The maximum resident set size (KB) = 2249776 + 0: The total amount of wall time = 75.504654 + 0: The maximum resident set size (KB) = 2233272 Test 022 cpld_restart_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/cpld_control_p8_faster +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8_faster +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/cpld_control_p8_faster Checking test 023 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1490,14 +1490,14 @@ Checking test 023 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 325.837243 - 0: The maximum resident set size (KB) = 3187776 + 0: The total amount of wall time = 320.543693 + 0: The maximum resident set size (KB) = 3178188 Test 023 cpld_control_p8_faster PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_flake -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_flake +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_flake +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_flake Checking test 024 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1508,14 +1508,14 @@ Checking test 024 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 193.296957 - 0: The maximum resident set size (KB) = 675668 + 0: The total amount of wall time = 193.486824 + 0: The maximum resident set size (KB) = 677472 Test 024 control_flake PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_CubedSphereGrid -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_CubedSphereGrid +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_CubedSphereGrid +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_CubedSphereGrid Checking test 025 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1542,28 +1542,28 @@ Checking test 025 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 133.425367 - 0: The maximum resident set size (KB) = 629624 + 0: The total amount of wall time = 132.210195 + 0: The maximum resident set size (KB) = 631028 Test 025 control_CubedSphereGrid PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_CubedSphereGrid_parallel -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_CubedSphereGrid_parallel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_CubedSphereGrid_parallel +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_CubedSphereGrid_parallel Checking test 026 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 127.766467 - 0: The maximum resident set size (KB) = 634540 + 0: The total amount of wall time = 128.186591 + 0: The maximum resident set size (KB) = 635732 Test 026 control_CubedSphereGrid_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_latlon -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_latlon +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_latlon +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_latlon Checking test 027 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1574,32 +1574,32 @@ Checking test 027 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 133.133630 - 0: The maximum resident set size (KB) = 630512 + 0: The total amount of wall time = 132.729449 + 0: The maximum resident set size (KB) = 632192 Test 027 control_latlon PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_wrtGauss_netcdf_parallel -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_wrtGauss_netcdf_parallel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_wrtGauss_netcdf_parallel +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_wrtGauss_netcdf_parallel Checking test 028 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc .........OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.249509 - 0: The maximum resident set size (KB) = 631240 + 0: The total amount of wall time = 135.899365 + 0: The maximum resident set size (KB) = 632636 Test 028 control_wrtGauss_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_c48 -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_c48 +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_c48 Checking test 029 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1638,14 +1638,14 @@ Checking test 029 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 344.257080 -0: The maximum resident set size (KB) = 817952 +0: The total amount of wall time = 344.217705 +0: The maximum resident set size (KB) = 821740 Test 029 control_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_c192 -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_c192 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_c192 +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_c192 Checking test 030 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1656,14 +1656,14 @@ Checking test 030 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 522.367355 - 0: The maximum resident set size (KB) = 764524 + 0: The total amount of wall time = 533.398425 + 0: The maximum resident set size (KB) = 769368 Test 030 control_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_c384 -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_c384 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_c384 +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_c384 Checking test 031 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1674,14 +1674,14 @@ Checking test 031 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 578.376756 - 0: The maximum resident set size (KB) = 1229768 + 0: The total amount of wall time = 579.973652 + 0: The maximum resident set size (KB) = 1231716 Test 031 control_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_c384gdas -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_c384gdas +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_c384gdas +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_c384gdas Checking test 032 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1724,14 +1724,14 @@ Checking test 032 control_c384gdas 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 = 508.079939 - 0: The maximum resident set size (KB) = 1338904 + 0: The total amount of wall time = 512.851629 + 0: The maximum resident set size (KB) = 1340340 Test 032 control_c384gdas PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_stochy -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_stochy +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_stochy +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_stochy Checking test 033 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1742,28 +1742,28 @@ Checking test 033 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 86.688443 - 0: The maximum resident set size (KB) = 638504 + 0: The total amount of wall time = 88.627311 + 0: The maximum resident set size (KB) = 633056 Test 033 control_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_stochy -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_stochy_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_stochy +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_stochy_restart Checking test 034 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 48.170207 - 0: The maximum resident set size (KB) = 484804 + 0: The total amount of wall time = 47.766737 + 0: The maximum resident set size (KB) = 490308 Test 034 control_stochy_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_lndp -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_lndp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_lndp +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_lndp Checking test 035 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1774,14 +1774,14 @@ Checking test 035 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 83.240499 - 0: The maximum resident set size (KB) = 633740 + 0: The total amount of wall time = 81.393395 + 0: The maximum resident set size (KB) = 634008 Test 035 control_lndp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_iovr4 -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_iovr4 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_iovr4 +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_iovr4 Checking test 036 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1796,14 +1796,14 @@ Checking test 036 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.622845 - 0: The maximum resident set size (KB) = 632052 + 0: The total amount of wall time = 134.729208 + 0: The maximum resident set size (KB) = 631844 Test 036 control_iovr4 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_iovr5 -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_iovr5 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_iovr5 +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_iovr5 Checking test 037 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1818,14 +1818,14 @@ Checking test 037 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 141.062539 - 0: The maximum resident set size (KB) = 629336 + 0: The total amount of wall time = 134.656075 + 0: The maximum resident set size (KB) = 633220 Test 037 control_iovr5 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_p8 Checking test 038 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1872,14 +1872,14 @@ Checking test 038 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 166.629268 - 0: The maximum resident set size (KB) = 1604752 + 0: The total amount of wall time = 169.177328 + 0: The maximum resident set size (KB) = 1600452 Test 038 control_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_restart_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_restart_p8 Checking test 039 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1918,14 +1918,14 @@ Checking test 039 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 87.148182 - 0: The maximum resident set size (KB) = 877816 + 0: The total amount of wall time = 90.024075 + 0: The maximum resident set size (KB) = 876888 Test 039 control_restart_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_qr_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_qr_p8 Checking test 040 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1972,14 +1972,14 @@ Checking test 040 control_qr_p8 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.705600 - 0: The maximum resident set size (KB) = 1600308 + 0: The total amount of wall time = 170.921414 + 0: The maximum resident set size (KB) = 1602736 Test 040 control_qr_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_restart_qr_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_restart_qr_p8 Checking test 041 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2018,14 +2018,14 @@ Checking test 041 control_restart_qr_p8 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.675650 - 0: The maximum resident set size (KB) = 863660 + 0: The total amount of wall time = 92.565020 + 0: The maximum resident set size (KB) = 867616 Test 041 control_restart_qr_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_decomp_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_decomp_p8 Checking test 042 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2068,14 +2068,14 @@ Checking test 042 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 173.582226 - 0: The maximum resident set size (KB) = 1585316 + 0: The total amount of wall time = 176.065057 + 0: The maximum resident set size (KB) = 1594696 Test 042 control_decomp_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_2threads_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_2threads_p8 Checking test 043 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2118,14 +2118,14 @@ Checking test 043 control_2threads_p8 results .... Comparing 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.893808 - 0: The maximum resident set size (KB) = 1688552 + 0: The total amount of wall time = 179.760980 + 0: The maximum resident set size (KB) = 1689316 Test 043 control_2threads_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8_lndp -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_p8_lndp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_lndp +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_p8_lndp Checking test 044 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2144,14 +2144,14 @@ Checking test 044 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 310.423751 - 0: The maximum resident set size (KB) = 1611328 + 0: The total amount of wall time = 313.530211 + 0: The maximum resident set size (KB) = 1610292 Test 044 control_p8_lndp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8_rrtmgp -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_p8_rrtmgp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_rrtmgp +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_p8_rrtmgp Checking test 045 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2198,14 +2198,14 @@ Checking test 045 control_p8_rrtmgp results .... Comparing 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.319621 - 0: The maximum resident set size (KB) = 1678700 + 0: The total amount of wall time = 230.253873 + 0: The maximum resident set size (KB) = 1679376 Test 045 control_p8_rrtmgp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8_mynn -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_p8_mynn +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_mynn +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_p8_mynn Checking test 046 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2252,14 +2252,14 @@ Checking test 046 control_p8_mynn results .... Comparing 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.288471 - 0: The maximum resident set size (KB) = 1609652 + 0: The total amount of wall time = 172.923628 + 0: The maximum resident set size (KB) = 1604468 Test 046 control_p8_mynn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/merra2_thompson -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/merra2_thompson +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/merra2_thompson +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/merra2_thompson Checking test 047 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2306,14 +2306,14 @@ Checking test 047 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 188.902634 - 0: The maximum resident set size (KB) = 1607208 + 0: The total amount of wall time = 191.027516 + 0: The maximum resident set size (KB) = 1616640 Test 047 merra2_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/regional_control +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/regional_control Checking test 048 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2324,28 +2324,28 @@ Checking test 048 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 293.296077 - 0: The maximum resident set size (KB) = 870528 + 0: The total amount of wall time = 298.419040 + 0: The maximum resident set size (KB) = 870916 Test 048 regional_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/regional_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/regional_restart Checking test 049 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 151.890360 - 0: The maximum resident set size (KB) = 863104 + 0: The total amount of wall time = 153.381527 + 0: The maximum resident set size (KB) = 860612 Test 049 regional_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/regional_control_qr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/regional_control_qr Checking test 050 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2356,28 +2356,28 @@ Checking test 050 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 292.624485 - 0: The maximum resident set size (KB) = 868596 + 0: The total amount of wall time = 297.524854 + 0: The maximum resident set size (KB) = 871764 Test 050 regional_control_qr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/regional_restart_qr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/regional_restart_qr Checking test 051 regional_restart_qr 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.514276 - 0: The maximum resident set size (KB) = 866972 + 0: The total amount of wall time = 151.042307 + 0: The maximum resident set size (KB) = 865132 Test 051 regional_restart_qr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/regional_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/regional_decomp Checking test 052 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2388,14 +2388,14 @@ Checking test 052 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 311.332744 - 0: The maximum resident set size (KB) = 866216 + 0: The total amount of wall time = 315.854452 + 0: The maximum resident set size (KB) = 866796 Test 052 regional_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/regional_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/regional_2threads Checking test 053 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2406,14 +2406,14 @@ Checking test 053 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 203.737511 - 0: The maximum resident set size (KB) = 847668 + 0: The total amount of wall time = 207.327820 + 0: The maximum resident set size (KB) = 853444 Test 053 regional_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_noquilt -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/regional_noquilt +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_noquilt +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/regional_noquilt Checking test 054 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2421,28 +2421,28 @@ Checking test 054 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 317.266444 - 0: The maximum resident set size (KB) = 860016 + 0: The total amount of wall time = 319.818168 + 0: The maximum resident set size (KB) = 864704 Test 054 regional_noquilt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_netcdf_parallel -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/regional_netcdf_parallel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_netcdf_parallel +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/regional_netcdf_parallel Checking test 055 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 292.402898 - 0: The maximum resident set size (KB) = 866192 + 0: The total amount of wall time = 295.731527 + 0: The maximum resident set size (KB) = 862528 Test 055 regional_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/regional_2dwrtdecomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/regional_2dwrtdecomp Checking test 056 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2453,14 +2453,14 @@ Checking test 056 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 296.079754 - 0: The maximum resident set size (KB) = 868936 + 0: The total amount of wall time = 300.254941 + 0: The maximum resident set size (KB) = 868920 Test 056 regional_2dwrtdecomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/fv3_regional_wofs -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/regional_wofs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/fv3_regional_wofs +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/regional_wofs Checking test 057 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2471,14 +2471,14 @@ Checking test 057 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 371.096060 - 0: The maximum resident set size (KB) = 629560 + 0: The total amount of wall time = 374.820654 + 0: The maximum resident set size (KB) = 633724 Test 057 regional_wofs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/rap_control +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/rap_control Checking test 058 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2525,14 +2525,14 @@ Checking test 058 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 460.632650 - 0: The maximum resident set size (KB) = 1059000 + 0: The total amount of wall time = 459.690014 + 0: The maximum resident set size (KB) = 1061100 Test 058 rap_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_spp_sppt_shum_skeb -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/regional_spp_sppt_shum_skeb +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_spp_sppt_shum_skeb +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/regional_spp_sppt_shum_skeb Checking test 059 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2543,14 +2543,14 @@ Checking test 059 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 276.436749 - 0: The maximum resident set size (KB) = 1195704 + 0: The total amount of wall time = 267.660633 + 0: The maximum resident set size (KB) = 1187324 Test 059 regional_spp_sppt_shum_skeb PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/rap_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/rap_decomp Checking test 060 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2597,14 +2597,14 @@ Checking test 060 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 477.725204 - 0: The maximum resident set size (KB) = 1009288 + 0: The total amount of wall time = 477.481098 + 0: The maximum resident set size (KB) = 1000580 Test 060 rap_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/rap_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/rap_2threads Checking test 061 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2651,14 +2651,14 @@ Checking test 061 rap_2threads results .... Comparing 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.288170 - 0: The maximum resident set size (KB) = 1140824 + 0: The total amount of wall time = 471.095969 + 0: The maximum resident set size (KB) = 1138152 Test 061 rap_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/rap_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/rap_restart Checking test 062 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2697,14 +2697,14 @@ Checking test 062 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 234.166297 - 0: The maximum resident set size (KB) = 967796 + 0: The total amount of wall time = 234.779378 + 0: The maximum resident set size (KB) = 973180 Test 062 rap_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_sfcdiff -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/rap_sfcdiff +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_sfcdiff +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/rap_sfcdiff Checking test 063 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2751,14 +2751,14 @@ Checking test 063 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 457.496985 - 0: The maximum resident set size (KB) = 1018868 + 0: The total amount of wall time = 456.377784 + 0: The maximum resident set size (KB) = 1058860 Test 063 rap_sfcdiff PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_sfcdiff -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/rap_sfcdiff_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_sfcdiff +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/rap_sfcdiff_decomp Checking test 064 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2805,14 +2805,14 @@ Checking test 064 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 479.294052 - 0: The maximum resident set size (KB) = 1002556 + 0: The total amount of wall time = 479.422342 + 0: The maximum resident set size (KB) = 992952 Test 064 rap_sfcdiff_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_sfcdiff -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/rap_sfcdiff_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_sfcdiff +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/rap_sfcdiff_restart Checking test 065 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2851,14 +2851,14 @@ Checking test 065 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 339.996015 - 0: The maximum resident set size (KB) = 988700 + 0: The total amount of wall time = 341.456831 + 0: The maximum resident set size (KB) = 988068 Test 065 rap_sfcdiff_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/hrrr_control +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/hrrr_control Checking test 066 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2905,14 +2905,14 @@ Checking test 066 hrrr_control results .... Comparing 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.144974 - 0: The maximum resident set size (KB) = 1056696 + 0: The total amount of wall time = 426.659774 + 0: The maximum resident set size (KB) = 1055440 Test 066 hrrr_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/hrrr_control_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/hrrr_control_decomp Checking test 067 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2959,14 +2959,14 @@ Checking test 067 hrrr_control_decomp results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 446.138085 - 0: The maximum resident set size (KB) = 1000308 + 0: The total amount of wall time = 444.829164 + 0: The maximum resident set size (KB) = 1005056 Test 067 hrrr_control_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/hrrr_control_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/hrrr_control_2threads Checking test 068 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3013,28 +3013,28 @@ Checking test 068 hrrr_control_2threads results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 359.431383 - 0: The maximum resident set size (KB) = 1080332 + 0: The total amount of wall time = 359.749073 + 0: The maximum resident set size (KB) = 1076008 Test 068 hrrr_control_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/hrrr_control_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/hrrr_control_restart Checking test 069 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 318.893463 - 0: The maximum resident set size (KB) = 987804 + 0: The total amount of wall time = 318.767700 + 0: The maximum resident set size (KB) = 986772 Test 069 hrrr_control_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_v1beta -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/rrfs_v1beta +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_v1beta +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/rrfs_v1beta Checking test 070 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3081,14 +3081,14 @@ Checking test 070 rrfs_v1beta results .... Comparing 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.835897 - 0: The maximum resident set size (KB) = 1059440 + 0: The total amount of wall time = 452.590498 + 0: The maximum resident set size (KB) = 1051752 Test 070 rrfs_v1beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_v1nssl -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/rrfs_v1nssl +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_v1nssl +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/rrfs_v1nssl Checking test 071 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3103,14 +3103,14 @@ Checking test 071 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 537.529721 - 0: The maximum resident set size (KB) = 692228 + 0: The total amount of wall time = 540.659039 + 0: The maximum resident set size (KB) = 699008 Test 071 rrfs_v1nssl PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/rrfs_v1nssl_nohailnoccn +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/rrfs_v1nssl_nohailnoccn Checking test 072 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3125,14 +3125,14 @@ Checking test 072 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 525.928202 - 0: The maximum resident set size (KB) = 760476 + 0: The total amount of wall time = 523.449298 + 0: The maximum resident set size (KB) = 762144 Test 072 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/rrfs_smoke_conus13km_hrrr_warm Checking test 073 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3141,14 +3141,14 @@ Checking test 073 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 146.693202 - 0: The maximum resident set size (KB) = 1038876 + 0: The total amount of wall time = 151.393367 + 0: The maximum resident set size (KB) = 1033060 Test 073 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 074 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3157,14 +3157,14 @@ Checking test 074 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 96.267785 - 0: The maximum resident set size (KB) = 949972 + 0: The total amount of wall time = 100.669672 + 0: The maximum resident set size (KB) = 944032 Test 074 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_conus13km_hrrr_warm -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/rrfs_conus13km_hrrr_warm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_conus13km_hrrr_warm +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/rrfs_conus13km_hrrr_warm Checking test 075 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3173,14 +3173,14 @@ Checking test 075 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 129.160614 - 0: The maximum resident set size (KB) = 994932 + 0: The total amount of wall time = 133.130973 + 0: The maximum resident set size (KB) = 992580 Test 075 rrfs_conus13km_hrrr_warm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/rrfs_smoke_conus13km_radar_tten_warm Checking test 076 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3189,26 +3189,26 @@ Checking test 076 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 146.591184 - 0: The maximum resident set size (KB) = 1044408 + 0: The total amount of wall time = 150.310049 + 0: The maximum resident set size (KB) = 1034036 Test 076 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 077 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 69.989295 - 0: The maximum resident set size (KB) = 938312 + 0: The total amount of wall time = 71.357689 + 0: The maximum resident set size (KB) = 976392 Test 077 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_csawmg -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_csawmg +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_csawmg +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_csawmg Checking test 078 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3219,14 +3219,14 @@ Checking test 078 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 342.249257 - 0: The maximum resident set size (KB) = 731792 + 0: The total amount of wall time = 342.800629 + 0: The maximum resident set size (KB) = 726124 Test 078 control_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_csawmgt -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_csawmgt +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_csawmgt +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_csawmgt Checking test 079 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3237,14 +3237,14 @@ Checking test 079 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 345.097381 - 0: The maximum resident set size (KB) = 726768 + 0: The total amount of wall time = 340.990149 + 0: The maximum resident set size (KB) = 668568 Test 079 control_csawmgt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_ras -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_ras +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_ras +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_ras Checking test 080 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3255,26 +3255,26 @@ Checking test 080 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 180.619037 - 0: The maximum resident set size (KB) = 732816 + 0: The total amount of wall time = 181.925814 + 0: The maximum resident set size (KB) = 725832 Test 080 control_ras PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_wam -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_wam +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_wam +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_wam Checking test 081 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 111.363796 - 0: The maximum resident set size (KB) = 647324 + 0: The total amount of wall time = 113.541276 + 0: The maximum resident set size (KB) = 646948 Test 081 control_wam PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_p8_faster +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_faster +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_p8_faster Checking test 082 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3321,14 +3321,14 @@ Checking test 082 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 153.033266 - 0: The maximum resident set size (KB) = 1606164 + 0: The total amount of wall time = 156.982598 + 0: The maximum resident set size (KB) = 1611624 Test 082 control_p8_faster PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/regional_control_faster +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control_faster +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/regional_control_faster Checking test 083 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3339,56 +3339,56 @@ Checking test 083 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 270.164412 - 0: The maximum resident set size (KB) = 873996 + 0: The total amount of wall time = 270.303563 + 0: The maximum resident set size (KB) = 870368 Test 083 regional_control_faster PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 084 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 852.939615 - 0: The maximum resident set size (KB) = 1059160 + 0: The total amount of wall time = 828.948592 + 0: The maximum resident set size (KB) = 1062080 Test 084 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 085 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 475.417563 - 0: The maximum resident set size (KB) = 931008 + 0: The total amount of wall time = 488.551737 + 0: The maximum resident set size (KB) = 940956 Test 085 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/rrfs_conus13km_hrrr_warm_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/rrfs_conus13km_hrrr_warm_debug Checking test 086 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 737.615541 - 0: The maximum resident set size (KB) = 1016300 + 0: The total amount of wall time = 744.935815 + 0: The maximum resident set size (KB) = 1020680 Test 086 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_CubedSphereGrid_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_CubedSphereGrid_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_CubedSphereGrid_debug +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_CubedSphereGrid_debug Checking test 087 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3415,348 +3415,348 @@ Checking test 087 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 146.098299 - 0: The maximum resident set size (KB) = 792964 + 0: The total amount of wall time = 159.172162 + 0: The maximum resident set size (KB) = 792404 Test 087 control_CubedSphereGrid_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_wrtGauss_netcdf_parallel_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_wrtGauss_netcdf_parallel_debug Checking test 088 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 148.335894 - 0: The maximum resident set size (KB) = 795736 + 0: The total amount of wall time = 152.662867 + 0: The maximum resident set size (KB) = 794868 Test 088 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_stochy_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_stochy_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_stochy_debug +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_stochy_debug Checking test 089 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 170.360848 - 0: The maximum resident set size (KB) = 796336 + 0: The total amount of wall time = 175.606113 + 0: The maximum resident set size (KB) = 803872 Test 089 control_stochy_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_lndp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_lndp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_lndp_debug +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_lndp_debug Checking test 090 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 150.770744 - 0: The maximum resident set size (KB) = 796384 + 0: The total amount of wall time = 156.312281 + 0: The maximum resident set size (KB) = 796472 Test 090 control_lndp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_csawmg_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_csawmg_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_csawmg_debug +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_csawmg_debug Checking test 091 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 251.111572 - 0: The maximum resident set size (KB) = 845160 + 0: The total amount of wall time = 234.668154 + 0: The maximum resident set size (KB) = 843792 Test 091 control_csawmg_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_csawmgt_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_csawmgt_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_csawmgt_debug +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_csawmgt_debug Checking test 092 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 228.410079 - 0: The maximum resident set size (KB) = 840464 + 0: The total amount of wall time = 233.530583 + 0: The maximum resident set size (KB) = 839836 Test 092 control_csawmgt_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_ras_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_ras_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_ras_debug +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_ras_debug Checking test 093 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 153.084493 - 0: The maximum resident set size (KB) = 803784 + 0: The total amount of wall time = 155.969851 + 0: The maximum resident set size (KB) = 805600 Test 093 control_ras_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_diag_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_diag_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_diag_debug +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_diag_debug Checking test 094 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 157.867752 - 0: The maximum resident set size (KB) = 850444 + 0: The total amount of wall time = 158.160821 + 0: The maximum resident set size (KB) = 851396 Test 094 control_diag_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_debug_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_debug_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_debug_p8 +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_debug_p8 Checking test 095 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 171.148317 - 0: The maximum resident set size (KB) = 1621468 + 0: The total amount of wall time = 170.400891 + 0: The maximum resident set size (KB) = 1619572 Test 095 control_debug_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/regional_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_debug +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/regional_debug Checking test 096 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1013.066695 - 0: The maximum resident set size (KB) = 887336 + 0: The total amount of wall time = 994.108378 + 0: The maximum resident set size (KB) = 881984 Test 096 regional_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/rap_control_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_debug +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/rap_control_debug Checking test 097 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 288.043010 - 0: The maximum resident set size (KB) = 1136144 + 0: The total amount of wall time = 270.327887 + 0: The maximum resident set size (KB) = 1174828 Test 097 rap_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/hrrr_control_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_debug +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/hrrr_control_debug Checking test 098 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.906630 - 0: The maximum resident set size (KB) = 1163508 + 0: The total amount of wall time = 267.394102 + 0: The maximum resident set size (KB) = 1167968 Test 098 hrrr_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/rap_unified_drag_suite_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_debug +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/rap_unified_drag_suite_debug Checking test 099 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.839684 - 0: The maximum resident set size (KB) = 1173560 + 0: The total amount of wall time = 279.939476 + 0: The maximum resident set size (KB) = 1172044 Test 099 rap_unified_drag_suite_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_diag_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/rap_diag_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_diag_debug +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/rap_diag_debug Checking test 100 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 291.328304 - 0: The maximum resident set size (KB) = 1253260 + 0: The total amount of wall time = 291.456410 + 0: The maximum resident set size (KB) = 1258616 Test 100 rap_diag_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/rap_cires_ugwp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_cires_ugwp_debug +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/rap_cires_ugwp_debug Checking test 101 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.267893 - 0: The maximum resident set size (KB) = 1135320 + 0: The total amount of wall time = 289.870758 + 0: The maximum resident set size (KB) = 1165736 Test 101 rap_cires_ugwp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/rap_unified_ugwp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_cires_ugwp_debug +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/rap_unified_ugwp_debug Checking test 102 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.132898 - 0: The maximum resident set size (KB) = 1181516 + 0: The total amount of wall time = 287.136721 + 0: The maximum resident set size (KB) = 1174088 Test 102 rap_unified_ugwp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_lndp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/rap_lndp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_lndp_debug +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/rap_lndp_debug Checking test 103 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 272.516279 - 0: The maximum resident set size (KB) = 1174592 + 0: The total amount of wall time = 280.952072 + 0: The maximum resident set size (KB) = 1173152 Test 103 rap_lndp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_progcld_thompson_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/rap_progcld_thompson_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_progcld_thompson_debug +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/rap_progcld_thompson_debug Checking test 104 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.937542 - 0: The maximum resident set size (KB) = 1167868 + 0: The total amount of wall time = 280.780864 + 0: The maximum resident set size (KB) = 1174008 Test 104 rap_progcld_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_noah_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/rap_noah_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_noah_debug +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/rap_noah_debug Checking test 105 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.120136 - 0: The maximum resident set size (KB) = 1166108 + 0: The total amount of wall time = 278.086257 + 0: The maximum resident set size (KB) = 1116552 Test 105 rap_noah_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_sfcdiff_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/rap_sfcdiff_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_sfcdiff_debug +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/rap_sfcdiff_debug Checking test 106 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.300052 - 0: The maximum resident set size (KB) = 1169396 + 0: The total amount of wall time = 273.702758 + 0: The maximum resident set size (KB) = 1171616 Test 106 rap_sfcdiff_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/rap_noah_sfcdiff_cires_ugwp_debug Checking test 107 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 463.653141 - 0: The maximum resident set size (KB) = 1166676 + 0: The total amount of wall time = 457.348216 + 0: The maximum resident set size (KB) = 1170932 Test 107 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_v1beta_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/rrfs_v1beta_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_v1beta_debug +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/rrfs_v1beta_debug Checking test 108 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.516219 - 0: The maximum resident set size (KB) = 1164636 + 0: The total amount of wall time = 277.699872 + 0: The maximum resident set size (KB) = 1131980 Test 108 rrfs_v1beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_clm_lake_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/rap_clm_lake_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_clm_lake_debug +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/rap_clm_lake_debug Checking test 109 rap_clm_lake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 357.920736 - 0: The maximum resident set size (KB) = 1174056 + 0: The total amount of wall time = 358.289251 + 0: The maximum resident set size (KB) = 1171120 Test 109 rap_clm_lake_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_flake_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/rap_flake_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_flake_debug +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/rap_flake_debug Checking test 110 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 278.729948 - 0: The maximum resident set size (KB) = 1170348 + 0: The total amount of wall time = 275.559848 + 0: The maximum resident set size (KB) = 1154468 Test 110 rap_flake_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_wam_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_wam_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_wam_debug +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_wam_debug Checking test 111 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 290.104195 - 0: The maximum resident set size (KB) = 529576 + 0: The total amount of wall time = 277.223999 + 0: The maximum resident set size (KB) = 528948 Test 111 control_wam_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 112 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3767,14 +3767,14 @@ Checking test 112 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 252.177763 - 0: The maximum resident set size (KB) = 1081756 + 0: The total amount of wall time = 250.087620 + 0: The maximum resident set size (KB) = 1077348 Test 112 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/rap_control_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/rap_control_dyn32_phy32 Checking test 113 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3821,14 +3821,14 @@ Checking test 113 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 380.522400 - 0: The maximum resident set size (KB) = 992484 + 0: The total amount of wall time = 380.369294 + 0: The maximum resident set size (KB) = 997284 Test 113 rap_control_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/hrrr_control_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/hrrr_control_dyn32_phy32 Checking test 114 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3875,14 +3875,14 @@ Checking test 114 hrrr_control_dyn32_phy32 results .... Comparing 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.595317 - 0: The maximum resident set size (KB) = 954536 + 0: The total amount of wall time = 191.793022 + 0: The maximum resident set size (KB) = 965448 Test 114 hrrr_control_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/rap_2threads_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/rap_2threads_dyn32_phy32 Checking test 115 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3929,14 +3929,14 @@ Checking test 115 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 399.243986 - 0: The maximum resident set size (KB) = 976860 + 0: The total amount of wall time = 399.640319 + 0: The maximum resident set size (KB) = 1023920 Test 115 rap_2threads_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/hrrr_control_2threads_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/hrrr_control_2threads_dyn32_phy32 Checking test 116 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3983,14 +3983,14 @@ Checking test 116 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 162.685855 - 0: The maximum resident set size (KB) = 894768 + 0: The total amount of wall time = 166.529536 + 0: The maximum resident set size (KB) = 896876 Test 116 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/hrrr_control_decomp_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/hrrr_control_decomp_dyn32_phy32 Checking test 117 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4037,14 +4037,14 @@ Checking test 117 hrrr_control_decomp_dyn32_phy32 results .... Comparing 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.545103 - 0: The maximum resident set size (KB) = 915408 + 0: The total amount of wall time = 201.170880 + 0: The maximum resident set size (KB) = 893416 Test 117 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/rap_restart_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/rap_restart_dyn32_phy32 Checking test 118 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4083,28 +4083,28 @@ Checking test 118 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 282.885315 - 0: The maximum resident set size (KB) = 951624 + 0: The total amount of wall time = 282.949380 + 0: The maximum resident set size (KB) = 952764 Test 118 rap_restart_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/hrrr_control_restart_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/hrrr_control_restart_dyn32_phy32 Checking test 119 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 99.751516 - 0: The maximum resident set size (KB) = 861328 + 0: The total amount of wall time = 97.725755 + 0: The maximum resident set size (KB) = 868960 Test 119 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_dyn64_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/rap_control_dyn64_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_dyn64_phy32 +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/rap_control_dyn64_phy32 Checking test 120 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4151,81 +4151,81 @@ Checking test 120 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 249.946333 - 0: The maximum resident set size (KB) = 966952 + 0: The total amount of wall time = 242.473281 + 0: The maximum resident set size (KB) = 974756 Test 120 rap_control_dyn64_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_debug_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/rap_control_debug_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_debug_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/rap_control_debug_dyn32_phy32 Checking test 121 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.746859 - 0: The maximum resident set size (KB) = 1051904 + 0: The total amount of wall time = 273.206742 + 0: The maximum resident set size (KB) = 1064684 Test 121 rap_control_debug_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/hrrr_control_debug_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/hrrr_control_debug_dyn32_phy32 Checking test 122 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 268.654816 - 0: The maximum resident set size (KB) = 1063912 + 0: The total amount of wall time = 274.967972 + 0: The maximum resident set size (KB) = 1057584 Test 122 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_debug_dyn64_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/rap_control_dyn64_phy32_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_debug_dyn64_phy32 +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/rap_control_dyn64_phy32_debug Checking test 123 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.408220 - 0: The maximum resident set size (KB) = 1104344 + 0: The total amount of wall time = 271.456213 + 0: The maximum resident set size (KB) = 1109540 Test 123 rap_control_dyn64_phy32_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/hafs_regional_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/hafs_regional_atm Checking test 124 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 271.588935 - 0: The maximum resident set size (KB) = 1012680 + 0: The total amount of wall time = 265.872422 + 0: The maximum resident set size (KB) = 1050540 Test 124 hafs_regional_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/hafs_regional_atm_thompson_gfdlsf +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/hafs_regional_atm_thompson_gfdlsf Checking test 125 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 392.360520 - 0: The maximum resident set size (KB) = 1356432 + 0: The total amount of wall time = 385.651733 + 0: The maximum resident set size (KB) = 1368176 Test 125 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_atm_ocn -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/hafs_regional_atm_ocn +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm_ocn +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/hafs_regional_atm_ocn Checking test 126 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4234,14 +4234,14 @@ Checking test 126 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 377.122036 - 0: The maximum resident set size (KB) = 1226964 + 0: The total amount of wall time = 374.202647 + 0: The maximum resident set size (KB) = 1226832 Test 126 hafs_regional_atm_ocn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_atm_wav -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/hafs_regional_atm_wav +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm_wav +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/hafs_regional_atm_wav Checking test 127 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4250,14 +4250,14 @@ Checking test 127 hafs_regional_atm_wav 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 = 726.150968 - 0: The maximum resident set size (KB) = 1258888 + 0: The total amount of wall time = 725.210052 + 0: The maximum resident set size (KB) = 1264352 Test 127 hafs_regional_atm_wav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_atm_ocn_wav -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/hafs_regional_atm_ocn_wav +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm_ocn_wav +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/hafs_regional_atm_ocn_wav Checking test 128 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4268,28 +4268,28 @@ Checking test 128 hafs_regional_atm_ocn_wav 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 = 835.159281 - 0: The maximum resident set size (KB) = 1277600 + 0: The total amount of wall time = 815.904826 + 0: The maximum resident set size (KB) = 1279600 Test 128 hafs_regional_atm_ocn_wav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/hafs_regional_1nest_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/hafs_regional_1nest_atm Checking test 129 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 361.515664 - 0: The maximum resident set size (KB) = 504652 + 0: The total amount of wall time = 361.457467 + 0: The maximum resident set size (KB) = 504804 Test 129 hafs_regional_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/hafs_regional_telescopic_2nests_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/hafs_regional_telescopic_2nests_atm Checking test 130 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4298,28 +4298,28 @@ Checking test 130 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 415.821605 - 0: The maximum resident set size (KB) = 482208 + 0: The total amount of wall time = 410.777913 + 0: The maximum resident set size (KB) = 512704 Test 130 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_global_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/hafs_global_1nest_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_global_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/hafs_global_1nest_atm Checking test 131 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 174.971790 - 0: The maximum resident set size (KB) = 303976 + 0: The total amount of wall time = 173.322800 + 0: The maximum resident set size (KB) = 328004 Test 131 hafs_global_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_global_multiple_4nests_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/hafs_global_multiple_4nests_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_global_multiple_4nests_atm +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/hafs_global_multiple_4nests_atm Checking test 132 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4337,14 +4337,14 @@ Checking test 132 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 458.439277 - 0: The maximum resident set size (KB) = 426964 + 0: The total amount of wall time = 461.568870 + 0: The maximum resident set size (KB) = 427884 Test 132 hafs_global_multiple_4nests_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/hafs_regional_specified_moving_1nest_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/hafs_regional_specified_moving_1nest_atm Checking test 133 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4353,28 +4353,28 @@ Checking test 133 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 231.971504 - 0: The maximum resident set size (KB) = 524236 + 0: The total amount of wall time = 227.147727 + 0: The maximum resident set size (KB) = 523104 Test 133 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/hafs_regional_storm_following_1nest_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/hafs_regional_storm_following_1nest_atm Checking test 134 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 220.259679 - 0: The maximum resident set size (KB) = 526660 + 0: The total amount of wall time = 216.219587 + 0: The maximum resident set size (KB) = 521088 Test 134 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/hafs_regional_storm_following_1nest_atm_ocn Checking test 135 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4383,42 +4383,42 @@ Checking test 135 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 285.191864 - 0: The maximum resident set size (KB) = 521636 + 0: The total amount of wall time = 289.430014 + 0: The maximum resident set size (KB) = 569780 Test 135 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_global_storm_following_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/hafs_global_storm_following_1nest_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_global_storm_following_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/hafs_global_storm_following_1nest_atm Checking test 136 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 68.422998 - 0: The maximum resident set size (KB) = 369448 + 0: The total amount of wall time = 67.915255 + 0: The maximum resident set size (KB) = 374180 Test 136 hafs_global_storm_following_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 137 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 743.811654 - 0: The maximum resident set size (KB) = 536692 + 0: The total amount of wall time = 742.409701 + 0: The maximum resident set size (KB) = 593432 Test 137 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 138 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4429,14 +4429,14 @@ Checking test 138 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 537.495301 - 0: The maximum resident set size (KB) = 589780 + 0: The total amount of wall time = 536.941220 + 0: The maximum resident set size (KB) = 629788 Test 138 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_docn -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/hafs_regional_docn +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_docn +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/hafs_regional_docn Checking test 139 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4444,14 +4444,14 @@ Checking test 139 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 363.241594 - 0: The maximum resident set size (KB) = 1244148 + 0: The total amount of wall time = 365.939423 + 0: The maximum resident set size (KB) = 1243612 Test 139 hafs_regional_docn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_docn_oisst -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/hafs_regional_docn_oisst +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_docn_oisst +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/hafs_regional_docn_oisst Checking test 140 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4459,131 +4459,131 @@ Checking test 140 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 360.868074 - 0: The maximum resident set size (KB) = 1222052 + 0: The total amount of wall time = 357.902838 + 0: The maximum resident set size (KB) = 1225612 Test 140 hafs_regional_docn_oisst PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_datm_cdeps -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/hafs_regional_datm_cdeps +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_datm_cdeps +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/hafs_regional_datm_cdeps Checking test 141 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 930.960620 - 0: The maximum resident set size (KB) = 1041076 + 0: The total amount of wall time = 941.296838 + 0: The maximum resident set size (KB) = 1039196 Test 141 hafs_regional_datm_cdeps PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/datm_cdeps_control_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/datm_cdeps_control_cfsr Checking test 142 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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.457890 - 0: The maximum resident set size (KB) = 1047996 + 0: The total amount of wall time = 144.628457 + 0: The maximum resident set size (KB) = 1057004 Test 142 datm_cdeps_control_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/datm_cdeps_restart_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/datm_cdeps_restart_cfsr Checking test 143 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 92.066213 - 0: The maximum resident set size (KB) = 1010876 + 0: The total amount of wall time = 90.686174 + 0: The maximum resident set size (KB) = 1037548 Test 143 datm_cdeps_restart_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_control_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/datm_cdeps_control_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_control_gefs +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/datm_cdeps_control_gefs Checking test 144 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 140.829929 - 0: The maximum resident set size (KB) = 969160 + 0: The total amount of wall time = 144.849701 + 0: The maximum resident set size (KB) = 966332 Test 144 datm_cdeps_control_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_iau_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/datm_cdeps_iau_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_iau_gefs +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/datm_cdeps_iau_gefs Checking test 145 datm_cdeps_iau_gefs 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.035659 - 0: The maximum resident set size (KB) = 967256 + 0: The total amount of wall time = 142.719642 + 0: The maximum resident set size (KB) = 970312 Test 145 datm_cdeps_iau_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_stochy_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/datm_cdeps_stochy_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_stochy_gefs +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/datm_cdeps_stochy_gefs Checking test 146 datm_cdeps_stochy_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.268282 - 0: The maximum resident set size (KB) = 954664 + 0: The total amount of wall time = 144.880909 + 0: The maximum resident set size (KB) = 964872 Test 146 datm_cdeps_stochy_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_ciceC_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/datm_cdeps_ciceC_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_ciceC_cfsr +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/datm_cdeps_ciceC_cfsr Checking test 147 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 143.645725 - 0: The maximum resident set size (KB) = 1069520 + 0: The total amount of wall time = 144.658293 + 0: The maximum resident set size (KB) = 1081656 Test 147 datm_cdeps_ciceC_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_bulk_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/datm_cdeps_bulk_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_bulk_cfsr +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/datm_cdeps_bulk_cfsr Checking test 148 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.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.787066 - 0: The maximum resident set size (KB) = 1052492 + 0: The total amount of wall time = 149.999200 + 0: The maximum resident set size (KB) = 1032388 Test 148 datm_cdeps_bulk_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_bulk_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/datm_cdeps_bulk_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_bulk_gefs +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/datm_cdeps_bulk_gefs Checking test 149 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 141.630846 - 0: The maximum resident set size (KB) = 984592 + 0: The total amount of wall time = 140.080360 + 0: The maximum resident set size (KB) = 956940 Test 149 datm_cdeps_bulk_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_mx025_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/datm_cdeps_mx025_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_mx025_cfsr +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/datm_cdeps_mx025_cfsr Checking test 150 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4592,14 +4592,14 @@ Checking test 150 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 440.628941 - 0: The maximum resident set size (KB) = 878228 + 0: The total amount of wall time = 440.180170 + 0: The maximum resident set size (KB) = 876272 Test 150 datm_cdeps_mx025_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_mx025_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/datm_cdeps_mx025_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_mx025_gefs +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/datm_cdeps_mx025_gefs Checking test 151 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4608,77 +4608,77 @@ Checking test 151 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 431.519253 - 0: The maximum resident set size (KB) = 928924 + 0: The total amount of wall time = 439.350480 + 0: The maximum resident set size (KB) = 929284 Test 151 datm_cdeps_mx025_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/datm_cdeps_multiple_files_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/datm_cdeps_multiple_files_cfsr Checking test 152 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 145.081202 - 0: The maximum resident set size (KB) = 1068100 + 0: The total amount of wall time = 143.966493 + 0: The maximum resident set size (KB) = 1051620 Test 152 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/datm_cdeps_3072x1536_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/datm_cdeps_3072x1536_cfsr Checking test 153 datm_cdeps_3072x1536_cfsr 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 = 193.706361 - 0: The maximum resident set size (KB) = 2371044 + 0: The total amount of wall time = 193.425446 + 0: The maximum resident set size (KB) = 2361400 Test 153 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_gfs -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/datm_cdeps_gfs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_gfs +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/datm_cdeps_gfs Checking test 154 datm_cdeps_gfs 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 = 195.199536 - 0: The maximum resident set size (KB) = 2366516 + 0: The total amount of wall time = 198.601281 + 0: The maximum resident set size (KB) = 2363000 Test 154 datm_cdeps_gfs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_debug_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/datm_cdeps_debug_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_debug_cfsr +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/datm_cdeps_debug_cfsr Checking test 155 datm_cdeps_debug_cfsr 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 = 361.986436 - 0: The maximum resident set size (KB) = 984052 + 0: The total amount of wall time = 365.796116 + 0: The maximum resident set size (KB) = 1001096 Test 155 datm_cdeps_debug_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_control_cfsr_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/datm_cdeps_control_cfsr_faster +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_control_cfsr_faster +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/datm_cdeps_control_cfsr_faster Checking test 156 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.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.273008 - 0: The maximum resident set size (KB) = 1052460 + 0: The total amount of wall time = 147.038543 + 0: The maximum resident set size (KB) = 1075984 Test 156 datm_cdeps_control_cfsr_faster PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_lnd_gswp3 -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/datm_cdeps_lnd_gswp3 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_lnd_gswp3 +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/datm_cdeps_lnd_gswp3 Checking test 157 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4687,14 +4687,14 @@ Checking test 157 datm_cdeps_lnd_gswp3 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 = 8.241493 - 0: The maximum resident set size (KB) = 263976 + 0: The total amount of wall time = 7.686906 + 0: The maximum resident set size (KB) = 228376 Test 157 datm_cdeps_lnd_gswp3 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/datm_cdeps_lnd_gswp3 -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/datm_cdeps_lnd_gswp3_rst +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_lnd_gswp3 +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/datm_cdeps_lnd_gswp3_rst Checking test 158 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4703,14 +4703,14 @@ Checking test 158 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 24.169818 - 0: The maximum resident set size (KB) = 259232 + 0: The total amount of wall time = 14.448834 + 0: The maximum resident set size (KB) = 263976 Test 158 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8_atmlnd_sbs -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_p8_atmlnd_sbs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_atmlnd_sbs +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_p8_atmlnd_sbs Checking test 159 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4795,14 +4795,14 @@ Checking test 159 control_p8_atmlnd_sbs 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 = 210.457047 - 0: The maximum resident set size (KB) = 1606380 + 0: The total amount of wall time = 204.610688 + 0: The maximum resident set size (KB) = 1559904 Test 159 control_p8_atmlnd_sbs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/atmwav_control_noaero_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/atmwav_control_noaero_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/atmwav_control_noaero_p8 +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/atmwav_control_noaero_p8 Checking test 160 atmwav_control_noaero_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4845,14 +4845,14 @@ Checking test 160 atmwav_control_noaero_p8 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 = 97.265316 - 0: The maximum resident set size (KB) = 1638368 + 0: The total amount of wall time = 93.841349 + 0: The maximum resident set size (KB) = 1638660 Test 160 atmwav_control_noaero_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/control_atmwav -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/control_atmwav +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_atmwav +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_atmwav Checking test 161 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4896,14 +4896,14 @@ Checking test 161 control_atmwav 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.159640 - 0: The maximum resident set size (KB) = 608548 + 0: The total amount of wall time = 87.905772 + 0: The maximum resident set size (KB) = 662384 Test 161 control_atmwav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/atmaero_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/atmaero_control_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/atmaero_control_p8 +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/atmaero_control_p8 Checking test 162 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4947,14 +4947,14 @@ Checking test 162 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 231.196465 - 0: The maximum resident set size (KB) = 2982904 + 0: The total amount of wall time = 232.164734 + 0: The maximum resident set size (KB) = 2919740 -Test 162 atmaero_control_p8 PASS +Test 162 atmaero_control_p8 PASS Tries: 2 -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/atmaero_control_p8_rad -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/atmaero_control_p8_rad +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/atmaero_control_p8_rad +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/atmaero_control_p8_rad Checking test 163 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4998,14 +4998,14 @@ Checking test 163 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 283.833649 - 0: The maximum resident set size (KB) = 3048376 + 0: The total amount of wall time = 278.713901 + 0: The maximum resident set size (KB) = 3046472 Test 163 atmaero_control_p8_rad PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/atmaero_control_p8_rad_micro -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/atmaero_control_p8_rad_micro +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/atmaero_control_p8_rad_micro +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/atmaero_control_p8_rad_micro Checking test 164 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5049,14 +5049,14 @@ Checking test 164 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 286.523156 - 0: The maximum resident set size (KB) = 3062008 + 0: The total amount of wall time = 284.840943 + 0: The maximum resident set size (KB) = 3062224 Test 164 atmaero_control_p8_rad_micro PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_atmaq -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/regional_atmaq +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_atmaq +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/regional_atmaq Checking test 165 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5072,14 +5072,14 @@ Checking test 165 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 635.522240 - 0: The maximum resident set size (KB) = 1482204 + 0: The total amount of wall time = 617.439469 + 0: The maximum resident set size (KB) = 1484424 Test 165 regional_atmaq PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_atmaq_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/regional_atmaq_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_atmaq_debug +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/regional_atmaq_debug Checking test 166 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5093,14 +5093,14 @@ Checking test 166 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1243.448372 - 0: The maximum resident set size (KB) = 1403592 + 0: The total amount of wall time = 1214.821164 + 0: The maximum resident set size (KB) = 1409868 Test 166 regional_atmaq_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_atmaq_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1720/stmp/jongkim/FV3_RT/rt_378289/regional_atmaq_faster +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_atmaq_faster +working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/regional_atmaq_faster Checking test 167 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5116,12 +5116,12 @@ Checking test 167 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 555.725625 - 0: The maximum resident set size (KB) = 1303056 + 0: The total amount of wall time = 547.778005 + 0: The maximum resident set size (KB) = 1298512 Test 167 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Wed Apr 26 22:20:05 CDT 2023 -Elapsed time: 01h:17m:07s. Have a nice day! +Sun Apr 30 18:47:34 CDT 2023 +Elapsed time: 01h:15m:41s. Have a nice day! diff --git a/tests/RegressionTests_wcoss2.intel.log b/tests/RegressionTests_wcoss2.intel.log index 4a1af64937b..c0da339c0c7 100644 --- a/tests/RegressionTests_wcoss2.intel.log +++ b/tests/RegressionTests_wcoss2.intel.log @@ -1,34 +1,34 @@ -Thu Apr 27 14:14:03 UTC 2023 +Mon May 1 16:08:52 UTC 2023 Start Regression test -Compile 001 elapsed time 1378 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 1371 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 1024 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 742 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 005 elapsed time 749 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 1856 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 1349 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 008 elapsed time 1918 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 1086 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 922 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 2270 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 1196 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 013 elapsed time 579 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 822 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 015 elapsed time 701 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 588 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 017 elapsed time 1303 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 895 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 019 elapsed time 502 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 723 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 830 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 022 elapsed time 780 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 676 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 024 elapsed time 573 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 025 elapsed time 621 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8_mixedmode -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/cpld_control_p8_mixedmode +Compile 001 elapsed time 625 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 626 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 1145 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 1174 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 005 elapsed time 1173 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 720 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 562 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 008 elapsed time 1876 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 996 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 460 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 1267 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 762 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 013 elapsed time 1092 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 014 elapsed time 534 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 735 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 974 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 017 elapsed time 308 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 598 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 019 elapsed time 1058 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 895 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 782 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 022 elapsed time 1081 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 606 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 024 elapsed time 497 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 025 elapsed time 787 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8_mixedmode +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -93,14 +93,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 335.815073 -The maximum resident set size (KB) = 2961416 +The total amount of wall time = 344.077926 +The maximum resident set size (KB) = 2954256 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/cpld_control_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/cpld_control_p8 Checking test 002 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -165,14 +165,14 @@ Checking test 002 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 388.569137 -The maximum resident set size (KB) = 2982908 +The total amount of wall time = 390.158668 +The maximum resident set size (KB) = 2985720 Test 002 cpld_control_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/cpld_restart_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/cpld_restart_p8 Checking test 003 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -225,14 +225,14 @@ Checking test 003 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 239.740946 -The maximum resident set size (KB) = 2873168 +The total amount of wall time = 238.465114 +The maximum resident set size (KB) = 2875016 Test 003 cpld_restart_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/cpld_control_qr_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/cpld_control_qr_p8 Checking test 004 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -297,14 +297,14 @@ Checking test 004 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 390.248558 -The maximum resident set size (KB) = 2996424 +The total amount of wall time = 394.537995 +The maximum resident set size (KB) = 3000788 Test 004 cpld_control_qr_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/cpld_restart_qr_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/cpld_restart_qr_p8 Checking test 005 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -357,14 +357,14 @@ Checking test 005 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 242.225425 -The maximum resident set size (KB) = 2884844 +The total amount of wall time = 237.670015 +The maximum resident set size (KB) = 2891364 Test 005 cpld_restart_qr_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/cpld_2threads_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/cpld_2threads_p8 Checking test 006 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -417,14 +417,14 @@ Checking test 006 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 370.625686 -The maximum resident set size (KB) = 3289676 +The total amount of wall time = 373.275613 +The maximum resident set size (KB) = 3290048 Test 006 cpld_2threads_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/cpld_decomp_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/cpld_decomp_p8 Checking test 007 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -477,14 +477,14 @@ Checking test 007 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 386.023322 -The maximum resident set size (KB) = 2982316 +The total amount of wall time = 385.621059 +The maximum resident set size (KB) = 2983140 Test 007 cpld_decomp_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/cpld_mpi_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/cpld_mpi_p8 Checking test 008 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -537,14 +537,14 @@ Checking test 008 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 320.069462 -The maximum resident set size (KB) = 2918360 +The total amount of wall time = 327.294867 +The maximum resident set size (KB) = 2913620 Test 008 cpld_mpi_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_ciceC_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/cpld_control_ciceC_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_ciceC_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/cpld_control_ciceC_p8 Checking test 009 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -609,14 +609,14 @@ Checking test 009 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 388.577199 -The maximum resident set size (KB) = 2983420 +The total amount of wall time = 392.329465 +The maximum resident set size (KB) = 2986448 Test 009 cpld_control_ciceC_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_bmark_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/cpld_bmark_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_bmark_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/cpld_bmark_p8 Checking test 010 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -664,14 +664,14 @@ Checking test 010 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 955.262160 -The maximum resident set size (KB) = 3924400 +The total amount of wall time = 959.771544 +The maximum resident set size (KB) = 3920584 Test 010 cpld_bmark_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_bmark_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/cpld_restart_bmark_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_bmark_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/cpld_restart_bmark_p8 Checking test 011 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -719,14 +719,14 @@ Checking test 011 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 652.364654 -The maximum resident set size (KB) = 3895992 +The total amount of wall time = 662.053421 +The maximum resident set size (KB) = 3898428 Test 011 cpld_restart_bmark_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/cpld_control_noaero_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/cpld_control_noaero_p8 Checking test 012 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -790,14 +790,14 @@ Checking test 012 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 286.363872 -The maximum resident set size (KB) = 1575532 +The total amount of wall time = 286.633321 +The maximum resident set size (KB) = 1568260 Test 012 cpld_control_noaero_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/cpld_control_nowave_noaero_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_c96_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/cpld_control_nowave_noaero_p8 Checking test 013 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -859,14 +859,14 @@ Checking test 013 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 300.690399 -The maximum resident set size (KB) = 1624492 +The total amount of wall time = 306.747489 +The maximum resident set size (KB) = 1628436 Test 013 cpld_control_nowave_noaero_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/cpld_control_noaero_p8_agrid +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_noaero_p8_agrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/cpld_control_noaero_p8_agrid Checking test 014 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -928,14 +928,14 @@ Checking test 014 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 309.837318 -The maximum resident set size (KB) = 1627088 +The total amount of wall time = 314.046787 +The maximum resident set size (KB) = 1633036 Test 014 cpld_control_noaero_p8_agrid PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/cpld_control_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/cpld_control_c48 Checking test 015 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -985,14 +985,14 @@ Checking test 015 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 439.803041 -The maximum resident set size (KB) = 2639128 +The total amount of wall time = 438.425360 +The maximum resident set size (KB) = 2644684 Test 015 cpld_control_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/cpld_warmstart_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/cpld_warmstart_c48 Checking test 016 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1042,14 +1042,14 @@ Checking test 016 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 130.108512 -The maximum resident set size (KB) = 2660036 +The total amount of wall time = 133.628836 +The maximum resident set size (KB) = 2658604 Test 016 cpld_warmstart_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/cpld_restart_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/cpld_restart_c48 Checking test 017 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1099,14 +1099,14 @@ Checking test 017 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 73.062633 -The maximum resident set size (KB) = 2077128 +The total amount of wall time = 70.563770 +The maximum resident set size (KB) = 2075248 Test 017 cpld_restart_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/cpld_control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/cpld_control_p8_faster +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/cpld_control_p8_faster Checking test 018 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1171,14 +1171,14 @@ Checking test 018 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 385.626592 -The maximum resident set size (KB) = 2984584 +The total amount of wall time = 386.819251 +The maximum resident set size (KB) = 2980460 Test 018 cpld_control_p8_faster PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_flake -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_flake +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_flake +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_flake Checking test 019 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1189,14 +1189,14 @@ Checking test 019 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 213.859511 -The maximum resident set size (KB) = 567424 +The total amount of wall time = 216.008959 +The maximum resident set size (KB) = 566932 Test 019 control_flake PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_CubedSphereGrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_CubedSphereGrid +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_CubedSphereGrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_CubedSphereGrid Checking test 020 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1223,14 +1223,14 @@ Checking test 020 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 130.151950 -The maximum resident set size (KB) = 518192 +The total amount of wall time = 131.724510 +The maximum resident set size (KB) = 519768 Test 020 control_CubedSphereGrid PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_latlon -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_latlon +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_latlon +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_latlon Checking test 021 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1241,14 +1241,14 @@ Checking test 021 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 132.534718 -The maximum resident set size (KB) = 518304 +The total amount of wall time = 135.382709 +The maximum resident set size (KB) = 523248 Test 021 control_latlon PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_wrtGauss_netcdf_parallel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_wrtGauss_netcdf_parallel Checking test 022 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1259,14 +1259,14 @@ Checking test 022 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 134.977936 -The maximum resident set size (KB) = 520892 +The total amount of wall time = 140.641949 +The maximum resident set size (KB) = 518788 Test 022 control_wrtGauss_netcdf_parallel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_c48 Checking test 023 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1305,14 +1305,14 @@ Checking test 023 control_c48 results .... 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.422663 -The maximum resident set size (KB) = 679784 +The total amount of wall time = 327.517252 +The maximum resident set size (KB) = 680560 Test 023 control_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_c192 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_c192 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_c192 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_c192 Checking test 024 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1323,14 +1323,14 @@ Checking test 024 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 531.238768 -The maximum resident set size (KB) = 620252 +The total amount of wall time = 532.414530 +The maximum resident set size (KB) = 621376 Test 024 control_c192 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_c384 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_c384 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_c384 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_c384 Checking test 025 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1341,14 +1341,14 @@ Checking test 025 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 566.502818 -The maximum resident set size (KB) = 929256 +The total amount of wall time = 573.002651 +The maximum resident set size (KB) = 932488 Test 025 control_c384 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_c384gdas -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_c384gdas +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_c384gdas +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_c384gdas Checking test 026 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1391,14 +1391,14 @@ Checking test 026 control_c384gdas 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 = 500.068579 -The maximum resident set size (KB) = 1069524 +The total amount of wall time = 504.049559 +The maximum resident set size (KB) = 1064104 Test 026 control_c384gdas PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_stochy +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_stochy Checking test 027 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1409,28 +1409,28 @@ Checking test 027 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 91.505887 -The maximum resident set size (KB) = 522240 +The total amount of wall time = 99.234317 +The maximum resident set size (KB) = 523164 Test 027 control_stochy PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_stochy_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_stochy_restart Checking test 028 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 50.251195 -The maximum resident set size (KB) = 294512 +The total amount of wall time = 51.920468 +The maximum resident set size (KB) = 294280 Test 028 control_stochy_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_lndp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_lndp Checking test 029 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1441,14 +1441,14 @@ Checking test 029 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 84.537827 -The maximum resident set size (KB) = 523984 +The total amount of wall time = 84.520844 +The maximum resident set size (KB) = 520668 Test 029 control_lndp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_iovr4 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_iovr4 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_iovr4 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_iovr4 Checking test 030 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1463,14 +1463,14 @@ Checking test 030 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 136.066746 -The maximum resident set size (KB) = 518120 +The total amount of wall time = 139.760784 +The maximum resident set size (KB) = 520032 Test 030 control_iovr4 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_iovr5 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_iovr5 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_iovr5 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_iovr5 Checking test 031 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1485,14 +1485,14 @@ Checking test 031 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 136.478866 -The maximum resident set size (KB) = 522128 +The total amount of wall time = 140.952414 +The maximum resident set size (KB) = 519268 Test 031 control_iovr5 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_p8 Checking test 032 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1539,14 +1539,14 @@ Checking test 032 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 181.507733 -The maximum resident set size (KB) = 1492996 +The total amount of wall time = 186.378875 +The maximum resident set size (KB) = 1489372 Test 032 control_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_restart_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_restart_p8 Checking test 033 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1585,14 +1585,14 @@ Checking test 033 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 106.155458 -The maximum resident set size (KB) = 660656 +The total amount of wall time = 108.649878 +The maximum resident set size (KB) = 659684 Test 033 control_restart_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_qr_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_qr_p8 Checking test 034 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1639,14 +1639,14 @@ Checking test 034 control_qr_p8 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 = 178.596229 -The maximum resident set size (KB) = 1504380 +The total amount of wall time = 185.838127 +The maximum resident set size (KB) = 1497500 Test 034 control_qr_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_restart_qr_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_restart_qr_p8 Checking test 035 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1685,14 +1685,14 @@ Checking test 035 control_restart_qr_p8 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 = 103.541841 -The maximum resident set size (KB) = 667340 +The total amount of wall time = 105.463179 +The maximum resident set size (KB) = 674312 Test 035 control_restart_qr_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_decomp_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_decomp_p8 Checking test 036 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1735,14 +1735,14 @@ Checking test 036 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 181.859846 -The maximum resident set size (KB) = 1488104 +The total amount of wall time = 186.793331 +The maximum resident set size (KB) = 1488720 Test 036 control_decomp_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_2threads_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_2threads_p8 Checking test 037 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1785,14 +1785,14 @@ Checking test 037 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 157.487654 -The maximum resident set size (KB) = 1578000 +The total amount of wall time = 162.409665 +The maximum resident set size (KB) = 1577208 Test 037 control_2threads_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_p8_lndp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_p8_lndp Checking test 038 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1811,14 +1811,14 @@ Checking test 038 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 322.337358 -The maximum resident set size (KB) = 1492720 +The total amount of wall time = 328.072294 +The maximum resident set size (KB) = 1488256 Test 038 control_p8_lndp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8_rrtmgp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_p8_rrtmgp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_rrtmgp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_p8_rrtmgp Checking test 039 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1865,14 +1865,14 @@ Checking test 039 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 235.835464 -The maximum resident set size (KB) = 1553648 +The total amount of wall time = 238.782638 +The maximum resident set size (KB) = 1545960 Test 039 control_p8_rrtmgp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8_mynn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_p8_mynn +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_mynn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_p8_mynn Checking test 040 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1919,14 +1919,14 @@ Checking test 040 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 181.636600 -The maximum resident set size (KB) = 1487880 +The total amount of wall time = 186.247089 +The maximum resident set size (KB) = 1495316 Test 040 control_p8_mynn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/merra2_thompson -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/merra2_thompson +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/merra2_thompson +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/merra2_thompson Checking test 041 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1973,14 +1973,14 @@ Checking test 041 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 206.786285 -The maximum resident set size (KB) = 1497576 +The total amount of wall time = 209.426006 +The maximum resident set size (KB) = 1496144 Test 041 merra2_thompson PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/regional_control +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/regional_control Checking test 042 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1991,28 +1991,28 @@ Checking test 042 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 294.547691 -The maximum resident set size (KB) = 659200 +The total amount of wall time = 298.406816 +The maximum resident set size (KB) = 655440 Test 042 regional_control PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/regional_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/regional_restart Checking test 043 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 169.566599 -The maximum resident set size (KB) = 657108 +The total amount of wall time = 162.789995 +The maximum resident set size (KB) = 653368 Test 043 regional_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/regional_control_qr +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/regional_control_qr Checking test 044 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2023,28 +2023,28 @@ Checking test 044 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 295.106076 -The maximum resident set size (KB) = 659176 +The total amount of wall time = 292.705654 +The maximum resident set size (KB) = 655256 Test 044 regional_control_qr PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/regional_restart_qr +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/regional_restart_qr Checking test 045 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 168.623725 -The maximum resident set size (KB) = 655168 +The total amount of wall time = 161.432368 +The maximum resident set size (KB) = 654820 Test 045 regional_restart_qr PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/regional_decomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/regional_decomp Checking test 046 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2055,14 +2055,14 @@ Checking test 046 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 308.711097 -The maximum resident set size (KB) = 658696 +The total amount of wall time = 313.683288 +The maximum resident set size (KB) = 659800 Test 046 regional_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/regional_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/regional_2threads Checking test 047 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2073,14 +2073,14 @@ Checking test 047 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 182.206879 -The maximum resident set size (KB) = 704300 +The total amount of wall time = 184.416543 +The maximum resident set size (KB) = 703760 Test 047 regional_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_noquilt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/regional_noquilt +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_noquilt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/regional_noquilt Checking test 048 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2088,28 +2088,28 @@ Checking test 048 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 310.900457 -The maximum resident set size (KB) = 650636 +The total amount of wall time = 321.323950 +The maximum resident set size (KB) = 652404 Test 048 regional_noquilt PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/regional_netcdf_parallel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/regional_netcdf_parallel Checking test 049 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK -The total amount of wall time = 288.258145 -The maximum resident set size (KB) = 655180 +The total amount of wall time = 290.643676 +The maximum resident set size (KB) = 652268 Test 049 regional_netcdf_parallel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/regional_2dwrtdecomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/regional_2dwrtdecomp Checking test 050 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2120,14 +2120,14 @@ Checking test 050 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 296.437668 -The maximum resident set size (KB) = 658704 +The total amount of wall time = 297.853112 +The maximum resident set size (KB) = 655500 Test 050 regional_2dwrtdecomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/fv3_regional_wofs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/regional_wofs +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/fv3_regional_wofs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/regional_wofs Checking test 051 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2138,14 +2138,14 @@ Checking test 051 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 368.265415 -The maximum resident set size (KB) = 345820 +The total amount of wall time = 366.491730 +The maximum resident set size (KB) = 345752 Test 051 regional_wofs PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/rap_control +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/rap_control Checking test 052 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2192,14 +2192,14 @@ Checking test 052 rap_control results .... 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.966073 -The maximum resident set size (KB) = 896768 +The total amount of wall time = 419.245525 +The maximum resident set size (KB) = 893160 Test 052 rap_control PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/regional_spp_sppt_shum_skeb +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_spp_sppt_shum_skeb +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/regional_spp_sppt_shum_skeb Checking test 053 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2210,14 +2210,14 @@ Checking test 053 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 248.859687 -The maximum resident set size (KB) = 988124 +The total amount of wall time = 256.463477 +The maximum resident set size (KB) = 988992 Test 053 regional_spp_sppt_shum_skeb PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/rap_decomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/rap_decomp Checking test 054 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2264,14 +2264,14 @@ Checking test 054 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 435.597581 -The maximum resident set size (KB) = 895116 +The total amount of wall time = 435.142056 +The maximum resident set size (KB) = 892888 Test 054 rap_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/rap_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/rap_2threads Checking test 055 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2318,14 +2318,14 @@ Checking test 055 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 389.171014 -The maximum resident set size (KB) = 970168 +The total amount of wall time = 394.632840 +The maximum resident set size (KB) = 971028 Test 055 rap_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/rap_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/rap_restart Checking test 056 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2364,14 +2364,14 @@ Checking test 056 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 213.425389 -The maximum resident set size (KB) = 649276 +The total amount of wall time = 214.881317 +The maximum resident set size (KB) = 649688 Test 056 rap_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/rap_sfcdiff +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/rap_sfcdiff Checking test 057 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2418,14 +2418,14 @@ Checking test 057 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 425.006117 -The maximum resident set size (KB) = 898292 +The total amount of wall time = 432.454106 +The maximum resident set size (KB) = 896848 Test 057 rap_sfcdiff PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/rap_sfcdiff_decomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/rap_sfcdiff_decomp Checking test 058 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2472,14 +2472,14 @@ Checking test 058 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 440.406939 -The maximum resident set size (KB) = 902944 +The total amount of wall time = 447.626517 +The maximum resident set size (KB) = 899208 Test 058 rap_sfcdiff_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/rap_sfcdiff_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/rap_sfcdiff_restart Checking test 059 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2518,14 +2518,14 @@ Checking test 059 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 313.138270 -The maximum resident set size (KB) = 643680 +The total amount of wall time = 311.579613 +The maximum resident set size (KB) = 648452 Test 059 rap_sfcdiff_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/hrrr_control +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/hrrr_control Checking test 060 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2572,14 +2572,14 @@ Checking test 060 hrrr_control 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 = 394.088290 -The maximum resident set size (KB) = 892676 +The total amount of wall time = 405.646827 +The maximum resident set size (KB) = 888688 Test 060 hrrr_control PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/hrrr_control_decomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/hrrr_control_decomp Checking test 061 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2626,14 +2626,14 @@ Checking test 061 hrrr_control_decomp 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 = 408.675864 -The maximum resident set size (KB) = 894184 +The total amount of wall time = 404.925169 +The maximum resident set size (KB) = 893584 Test 061 hrrr_control_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/hrrr_control_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/hrrr_control_2threads Checking test 062 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2680,28 +2680,28 @@ Checking test 062 hrrr_control_2threads 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 = 354.863756 -The maximum resident set size (KB) = 968180 +The total amount of wall time = 353.224663 +The maximum resident set size (KB) = 966472 Test 062 hrrr_control_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/hrrr_control_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/hrrr_control_restart Checking test 063 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 289.111180 -The maximum resident set size (KB) = 643256 +The total amount of wall time = 287.729902 +The maximum resident set size (KB) = 643556 Test 063 hrrr_control_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_v1beta -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/rrfs_v1beta +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_v1beta +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/rrfs_v1beta Checking test 064 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2748,14 +2748,14 @@ Checking test 064 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 419.686873 -The maximum resident set size (KB) = 896000 +The total amount of wall time = 418.322317 +The maximum resident set size (KB) = 891560 Test 064 rrfs_v1beta PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_v1nssl -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/rrfs_v1nssl +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_v1nssl +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/rrfs_v1nssl Checking test 065 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2770,14 +2770,14 @@ Checking test 065 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 484.551383 -The maximum resident set size (KB) = 584376 +The total amount of wall time = 484.700602 +The maximum resident set size (KB) = 585464 Test 065 rrfs_v1nssl PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/rrfs_v1nssl_nohailnoccn +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/rrfs_v1nssl_nohailnoccn Checking test 066 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2792,14 +2792,14 @@ Checking test 066 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 472.358169 -The maximum resident set size (KB) = 574004 +The total amount of wall time = 471.333214 +The maximum resident set size (KB) = 574144 Test 066 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/rrfs_smoke_conus13km_hrrr_warm Checking test 067 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2808,14 +2808,14 @@ Checking test 067 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 152.342528 -The maximum resident set size (KB) = 802748 +The total amount of wall time = 150.354583 +The maximum resident set size (KB) = 805088 Test 067 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 068 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2824,14 +2824,14 @@ Checking test 068 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 109.496288 -The maximum resident set size (KB) = 801416 +The total amount of wall time = 107.063176 +The maximum resident set size (KB) = 809752 Test 068 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/rrfs_conus13km_hrrr_warm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/rrfs_conus13km_hrrr_warm Checking test 069 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2840,14 +2840,14 @@ Checking test 069 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 140.843359 -The maximum resident set size (KB) = 796192 +The total amount of wall time = 138.390032 +The maximum resident set size (KB) = 802148 Test 069 rrfs_conus13km_hrrr_warm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/rrfs_smoke_conus13km_radar_tten_warm Checking test 070 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2856,26 +2856,26 @@ Checking test 070 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 152.272439 -The maximum resident set size (KB) = 806052 +The total amount of wall time = 154.986546 +The maximum resident set size (KB) = 808592 Test 070 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 071 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 71.863929 -The maximum resident set size (KB) = 771296 +The total amount of wall time = 73.638154 +The maximum resident set size (KB) = 770072 Test 071 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_csawmg -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_csawmg +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_csawmg +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_csawmg Checking test 072 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2886,14 +2886,14 @@ Checking test 072 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 350.015750 -The maximum resident set size (KB) = 587020 +The total amount of wall time = 351.254351 +The maximum resident set size (KB) = 587136 Test 072 control_csawmg PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_csawmgt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_csawmgt +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_csawmgt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_csawmgt Checking test 073 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2904,14 +2904,14 @@ Checking test 073 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 348.083190 -The maximum resident set size (KB) = 588060 +The total amount of wall time = 350.237222 +The maximum resident set size (KB) = 587900 Test 073 control_csawmgt PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_ras -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_ras +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_ras +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_ras Checking test 074 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2922,26 +2922,26 @@ Checking test 074 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 182.357534 -The maximum resident set size (KB) = 553564 +The total amount of wall time = 184.222807 +The maximum resident set size (KB) = 551984 Test 074 control_ras PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_wam -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_wam +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_wam +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_wam Checking test 075 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 120.156422 -The maximum resident set size (KB) = 274936 +The total amount of wall time = 119.232503 +The maximum resident set size (KB) = 274908 Test 075 control_wam PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_p8_faster +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_p8_faster Checking test 076 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2988,14 +2988,14 @@ Checking test 076 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 178.014419 -The maximum resident set size (KB) = 1489304 +The total amount of wall time = 180.929364 +The maximum resident set size (KB) = 1492208 Test 076 control_p8_faster PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_control_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/regional_control_faster +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/regional_control_faster Checking test 077 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3006,56 +3006,56 @@ Checking test 077 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 286.032968 -The maximum resident set size (KB) = 658164 +The total amount of wall time = 286.598672 +The maximum resident set size (KB) = 659020 Test 077 regional_control_faster PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 078 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 914.430310 -The maximum resident set size (KB) = 827860 +The total amount of wall time = 919.716564 +The maximum resident set size (KB) = 835468 Test 078 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 079 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 529.083583 -The maximum resident set size (KB) = 832428 +The total amount of wall time = 530.414785 +The maximum resident set size (KB) = 836736 Test 079 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/rrfs_conus13km_hrrr_warm_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/rrfs_conus13km_hrrr_warm_debug Checking test 080 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 818.181939 -The maximum resident set size (KB) = 825608 +The total amount of wall time = 820.363688 +The maximum resident set size (KB) = 827612 Test 080 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_CubedSphereGrid_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_CubedSphereGrid_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_CubedSphereGrid_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_CubedSphereGrid_debug Checking test 081 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3082,348 +3082,348 @@ Checking test 081 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 163.747398 -The maximum resident set size (KB) = 684288 +The total amount of wall time = 159.581471 +The maximum resident set size (KB) = 683036 Test 081 control_CubedSphereGrid_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_wrtGauss_netcdf_parallel_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_wrtGauss_netcdf_parallel_debug Checking test 082 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 163.009542 -The maximum resident set size (KB) = 678684 +The total amount of wall time = 159.643157 +The maximum resident set size (KB) = 680780 Test 082 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_stochy_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_stochy_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_stochy_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_stochy_debug Checking test 083 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 182.412116 -The maximum resident set size (KB) = 686992 +The total amount of wall time = 180.075217 +The maximum resident set size (KB) = 684472 Test 083 control_stochy_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_lndp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_lndp_debug Checking test 084 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 168.908164 -The maximum resident set size (KB) = 683940 +The total amount of wall time = 161.581963 +The maximum resident set size (KB) = 686076 Test 084 control_lndp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_csawmg_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_csawmg_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_csawmg_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_csawmg_debug Checking test 085 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 256.377883 -The maximum resident set size (KB) = 723828 +The total amount of wall time = 260.545819 +The maximum resident set size (KB) = 721468 Test 085 control_csawmg_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_csawmgt_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_csawmgt_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_csawmgt_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_csawmgt_debug Checking test 086 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 250.760793 -The maximum resident set size (KB) = 721464 +The total amount of wall time = 257.605685 +The maximum resident set size (KB) = 721784 Test 086 control_csawmgt_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_ras_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_ras_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_ras_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_ras_debug Checking test 087 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 163.175079 -The maximum resident set size (KB) = 693560 +The total amount of wall time = 162.995966 +The maximum resident set size (KB) = 694928 Test 087 control_ras_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_diag_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_diag_debug Checking test 088 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 166.404239 -The maximum resident set size (KB) = 736836 +The total amount of wall time = 164.203449 +The maximum resident set size (KB) = 738412 Test 088 control_diag_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_debug_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_debug_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_debug_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_debug_p8 Checking test 089 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 186.386346 -The maximum resident set size (KB) = 1506452 +The total amount of wall time = 190.960919 +The maximum resident set size (KB) = 1512216 Test 089 control_debug_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/regional_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/regional_debug Checking test 090 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1046.733627 -The maximum resident set size (KB) = 680372 +The total amount of wall time = 1047.976562 +The maximum resident set size (KB) = 677852 Test 090 regional_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/rap_control_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/rap_control_debug Checking test 091 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 299.833123 -The maximum resident set size (KB) = 1055204 +The total amount of wall time = 300.421429 +The maximum resident set size (KB) = 1053300 Test 091 rap_control_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/hrrr_control_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/hrrr_control_debug Checking test 092 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.951735 -The maximum resident set size (KB) = 1053816 +The total amount of wall time = 293.895097 +The maximum resident set size (KB) = 1051660 Test 092 hrrr_control_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/rap_unified_drag_suite_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/rap_unified_drag_suite_debug Checking test 093 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 306.115210 -The maximum resident set size (KB) = 1050496 +The total amount of wall time = 299.538753 +The maximum resident set size (KB) = 1059264 Test 093 rap_unified_drag_suite_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/rap_diag_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/rap_diag_debug Checking test 094 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 315.381335 -The maximum resident set size (KB) = 1139816 +The total amount of wall time = 310.558154 +The maximum resident set size (KB) = 1137036 Test 094 rap_diag_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/rap_cires_ugwp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/rap_cires_ugwp_debug Checking test 095 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 312.490534 -The maximum resident set size (KB) = 1054096 +The total amount of wall time = 305.462494 +The maximum resident set size (KB) = 1055728 Test 095 rap_cires_ugwp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/rap_unified_ugwp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/rap_unified_ugwp_debug Checking test 096 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 306.838034 -The maximum resident set size (KB) = 1051160 +The total amount of wall time = 306.541713 +The maximum resident set size (KB) = 1055560 Test 096 rap_unified_ugwp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/rap_lndp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/rap_lndp_debug Checking test 097 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 303.831720 -The maximum resident set size (KB) = 1058436 +The total amount of wall time = 302.800479 +The maximum resident set size (KB) = 1053900 Test 097 rap_lndp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_progcld_thompson_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/rap_progcld_thompson_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_progcld_thompson_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/rap_progcld_thompson_debug Checking test 098 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 303.154322 -The maximum resident set size (KB) = 1053132 +The total amount of wall time = 302.313915 +The maximum resident set size (KB) = 1057268 Test 098 rap_progcld_thompson_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_noah_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/rap_noah_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_noah_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/rap_noah_debug Checking test 099 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 295.791750 -The maximum resident set size (KB) = 1049852 +The total amount of wall time = 293.036272 +The maximum resident set size (KB) = 1055172 Test 099 rap_noah_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_sfcdiff_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/rap_sfcdiff_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_sfcdiff_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/rap_sfcdiff_debug Checking test 100 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 301.445868 -The maximum resident set size (KB) = 1058688 +The total amount of wall time = 301.647423 +The maximum resident set size (KB) = 1055528 Test 100 rap_sfcdiff_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/rap_noah_sfcdiff_cires_ugwp_debug Checking test 101 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 490.166831 -The maximum resident set size (KB) = 1051996 +The total amount of wall time = 492.510729 +The maximum resident set size (KB) = 1057532 Test 101 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rrfs_v1beta_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/rrfs_v1beta_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_v1beta_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/rrfs_v1beta_debug Checking test 102 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 294.493004 -The maximum resident set size (KB) = 1056208 +The total amount of wall time = 296.226377 +The maximum resident set size (KB) = 1051268 Test 102 rrfs_v1beta_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_clm_lake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/rap_clm_lake_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_clm_lake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/rap_clm_lake_debug Checking test 103 rap_clm_lake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 356.488428 -The maximum resident set size (KB) = 1057016 +The total amount of wall time = 357.113617 +The maximum resident set size (KB) = 1057484 Test 103 rap_clm_lake_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_flake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/rap_flake_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_flake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/rap_flake_debug Checking test 104 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.020540 -The maximum resident set size (KB) = 1058812 +The total amount of wall time = 303.214374 +The maximum resident set size (KB) = 1058124 Test 104 rap_flake_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_wam_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_wam_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_wam_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_wam_debug Checking test 105 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 296.651886 -The maximum resident set size (KB) = 304964 +The total amount of wall time = 295.515255 +The maximum resident set size (KB) = 300432 Test 105 control_wam_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3434,14 +3434,14 @@ Checking test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 235.904780 -The maximum resident set size (KB) = 900208 +The total amount of wall time = 236.704350 +The maximum resident set size (KB) = 897404 Test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/rap_control_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/rap_control_dyn32_phy32 Checking test 107 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3488,14 +3488,14 @@ Checking test 107 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 354.694129 -The maximum resident set size (KB) = 777008 +The total amount of wall time = 353.172830 +The maximum resident set size (KB) = 777796 Test 107 rap_control_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/hrrr_control_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/hrrr_control_dyn32_phy32 Checking test 108 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3542,14 +3542,14 @@ Checking test 108 hrrr_control_dyn32_phy32 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.363622 -The maximum resident set size (KB) = 773324 +The total amount of wall time = 180.294750 +The maximum resident set size (KB) = 778796 Test 108 hrrr_control_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/rap_2threads_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/rap_2threads_dyn32_phy32 Checking test 109 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3596,14 +3596,14 @@ Checking test 109 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 329.050626 -The maximum resident set size (KB) = 829860 +The total amount of wall time = 329.569655 +The maximum resident set size (KB) = 833044 Test 109 rap_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/hrrr_control_2threads_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/hrrr_control_2threads_dyn32_phy32 Checking test 110 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3650,14 +3650,14 @@ Checking test 110 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 161.329784 -The maximum resident set size (KB) = 827308 +The total amount of wall time = 162.275717 +The maximum resident set size (KB) = 825992 Test 110 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/hrrr_control_decomp_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/hrrr_control_decomp_dyn32_phy32 Checking test 111 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3704,14 +3704,14 @@ Checking test 111 hrrr_control_decomp_dyn32_phy32 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.945290 -The maximum resident set size (KB) = 777400 +The total amount of wall time = 187.773499 +The maximum resident set size (KB) = 776908 Test 111 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/rap_restart_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/rap_restart_dyn32_phy32 Checking test 112 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3750,28 +3750,28 @@ Checking test 112 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 272.410221 -The maximum resident set size (KB) = 613160 +The total amount of wall time = 262.188987 +The maximum resident set size (KB) = 616604 Test 112 rap_restart_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/hrrr_control_restart_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/hrrr_control_restart_dyn32_phy32 Checking test 113 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 92.792628 -The maximum resident set size (KB) = 609528 +The total amount of wall time = 93.798855 +The maximum resident set size (KB) = 611524 Test 113 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/rap_control_dyn64_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/rap_control_dyn64_phy32 Checking test 114 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3818,81 +3818,81 @@ Checking test 114 rap_control_dyn64_phy32 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 = 235.379916 -The maximum resident set size (KB) = 797360 +The total amount of wall time = 238.051919 +The maximum resident set size (KB) = 797436 Test 114 rap_control_dyn64_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/rap_control_debug_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/rap_control_debug_dyn32_phy32 Checking test 115 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 290.985872 -The maximum resident set size (KB) = 943988 +The total amount of wall time = 295.244393 +The maximum resident set size (KB) = 937996 Test 115 rap_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/hrrr_control_debug_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/hrrr_control_debug_dyn32_phy32 Checking test 116 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 284.850751 -The maximum resident set size (KB) = 937416 +The total amount of wall time = 287.304351 +The maximum resident set size (KB) = 936076 Test 116 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/rap_control_dyn64_phy32_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/rap_control_dyn64_phy32_debug Checking test 117 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 299.675343 -The maximum resident set size (KB) = 958244 +The total amount of wall time = 298.958597 +The maximum resident set size (KB) = 959512 Test 117 rap_control_dyn64_phy32_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/hafs_regional_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/hafs_regional_atm Checking test 118 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 273.447611 -The maximum resident set size (KB) = 824772 +The total amount of wall time = 277.273454 +The maximum resident set size (KB) = 823796 Test 118 hafs_regional_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/hafs_regional_atm_thompson_gfdlsf +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/hafs_regional_atm_thompson_gfdlsf Checking test 119 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 326.078328 -The maximum resident set size (KB) = 1179204 +The total amount of wall time = 336.885582 +The maximum resident set size (KB) = 1182080 Test 119 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/hafs_regional_atm_ocn +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/hafs_regional_atm_ocn Checking test 120 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3901,14 +3901,14 @@ Checking test 120 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 401.940132 -The maximum resident set size (KB) = 861716 +The total amount of wall time = 399.974166 +The maximum resident set size (KB) = 861208 Test 120 hafs_regional_atm_ocn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_atm_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/hafs_regional_atm_wav +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/hafs_regional_atm_wav Checking test 121 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3917,14 +3917,14 @@ Checking test 121 hafs_regional_atm_wav 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 = 727.370269 -The maximum resident set size (KB) = 891612 +The total amount of wall time = 708.649174 +The maximum resident set size (KB) = 890928 Test 121 hafs_regional_atm_wav PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/hafs_regional_atm_ocn_wav +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/hafs_regional_atm_ocn_wav Checking test 122 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3935,28 +3935,28 @@ Checking test 122 hafs_regional_atm_ocn_wav 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 = 905.808449 -The maximum resident set size (KB) = 918284 +The total amount of wall time = 904.107228 +The maximum resident set size (KB) = 919676 Test 122 hafs_regional_atm_ocn_wav PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/hafs_regional_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/hafs_regional_1nest_atm Checking test 123 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 337.461796 -The maximum resident set size (KB) = 406176 +The total amount of wall time = 337.184838 +The maximum resident set size (KB) = 397560 Test 123 hafs_regional_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/hafs_regional_telescopic_2nests_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/hafs_regional_telescopic_2nests_atm Checking test 124 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3965,28 +3965,28 @@ Checking test 124 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 405.436308 -The maximum resident set size (KB) = 404552 +The total amount of wall time = 409.846204 +The maximum resident set size (KB) = 403400 Test 124 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_global_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/hafs_global_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_global_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/hafs_global_1nest_atm Checking test 125 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 172.623670 -The maximum resident set size (KB) = 261360 +The total amount of wall time = 180.214734 +The maximum resident set size (KB) = 264184 Test 125 hafs_global_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_global_multiple_4nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/hafs_global_multiple_4nests_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_global_multiple_4nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/hafs_global_multiple_4nests_atm Checking test 126 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4004,14 +4004,14 @@ Checking test 126 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -The total amount of wall time = 488.613777 -The maximum resident set size (KB) = 346188 +The total amount of wall time = 493.758052 +The maximum resident set size (KB) = 348432 Test 126 hafs_global_multiple_4nests_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/hafs_regional_specified_moving_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/hafs_regional_specified_moving_1nest_atm Checking test 127 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4020,28 +4020,28 @@ Checking test 127 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 219.088177 -The maximum resident set size (KB) = 415964 +The total amount of wall time = 222.433583 +The maximum resident set size (KB) = 407376 Test 127 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/hafs_regional_storm_following_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/hafs_regional_storm_following_1nest_atm Checking test 128 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 208.516957 -The maximum resident set size (KB) = 407564 +The total amount of wall time = 215.856210 +The maximum resident set size (KB) = 411744 Test 128 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/hafs_regional_storm_following_1nest_atm_ocn Checking test 129 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4050,42 +4050,42 @@ Checking test 129 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 253.490453 -The maximum resident set size (KB) = 473448 +The total amount of wall time = 255.248494 +The maximum resident set size (KB) = 474448 Test 129 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/hafs_global_storm_following_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_global_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/hafs_global_storm_following_1nest_atm Checking test 130 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 86.226297 -The maximum resident set size (KB) = 283560 +The total amount of wall time = 86.104308 +The maximum resident set size (KB) = 292060 Test 130 hafs_global_storm_following_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 131 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 810.608647 -The maximum resident set size (KB) = 490864 +The total amount of wall time = 804.993640 +The maximum resident set size (KB) = 498244 Test 131 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 132 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4096,14 +4096,14 @@ Checking test 132 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 504.424728 -The maximum resident set size (KB) = 528148 +The total amount of wall time = 512.300445 +The maximum resident set size (KB) = 526368 Test 132 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/control_p8_atmlnd_sbs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/control_p8_atmlnd_sbs +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_atmlnd_sbs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_p8_atmlnd_sbs Checking test 133 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4188,14 +4188,14 @@ Checking test 133 control_p8_atmlnd_sbs 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 = 240.803486 -The maximum resident set size (KB) = 1544896 +The total amount of wall time = 241.627842 +The maximum resident set size (KB) = 1541940 Test 133 control_p8_atmlnd_sbs PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/atmaero_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/atmaero_control_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/atmaero_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/atmaero_control_p8 Checking test 134 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4239,14 +4239,14 @@ Checking test 134 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 245.304346 -The maximum resident set size (KB) = 2818032 +The total amount of wall time = 250.322331 +The maximum resident set size (KB) = 2816112 Test 134 atmaero_control_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/atmaero_control_p8_rad -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/atmaero_control_p8_rad +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/atmaero_control_p8_rad +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/atmaero_control_p8_rad Checking test 135 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4290,14 +4290,14 @@ Checking test 135 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 284.239823 -The maximum resident set size (KB) = 2877328 +The total amount of wall time = 284.958006 +The maximum resident set size (KB) = 2880900 Test 135 atmaero_control_p8_rad PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/atmaero_control_p8_rad_micro +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/atmaero_control_p8_rad_micro +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/atmaero_control_p8_rad_micro Checking test 136 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4341,14 +4341,14 @@ Checking test 136 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 290.347402 -The maximum resident set size (KB) = 2886536 +The total amount of wall time = 291.307613 +The maximum resident set size (KB) = 2888648 Test 136 atmaero_control_p8_rad_micro PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_atmaq -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/regional_atmaq +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_atmaq +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/regional_atmaq Checking test 137 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4364,14 +4364,14 @@ Checking test 137 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 690.632341 -The maximum resident set size (KB) = 1259440 +The total amount of wall time = 685.627858 +The maximum resident set size (KB) = 1254132 Test 137 regional_atmaq PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_atmaq_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/regional_atmaq_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_atmaq_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/regional_atmaq_debug Checking test 138 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4385,14 +4385,14 @@ Checking test 138 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1297.867914 -The maximum resident set size (KB) = 1292708 +The total amount of wall time = 1307.071089 +The maximum resident set size (KB) = 1291016 Test 138 regional_atmaq_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230426/INTEL/regional_atmaq_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_44124/regional_atmaq_faster +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_atmaq_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/regional_atmaq_faster Checking test 139 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4408,12 +4408,12 @@ Checking test 139 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 643.121688 -The maximum resident set size (KB) = 1264696 +The total amount of wall time = 638.780118 +The maximum resident set size (KB) = 1264212 Test 139 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Thu Apr 27 15:30:02 UTC 2023 -Elapsed time: 01h:15m:59s. Have a nice day! +Mon May 1 17:17:22 UTC 2023 +Elapsed time: 01h:08m:31s. Have a nice day! diff --git a/tests/rt.sh b/tests/rt.sh index afea519810d..44339541bea 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -446,7 +446,7 @@ if [[ $TESTS_FILE =~ '35d' ]] || [[ $TESTS_FILE =~ 'weekly' ]]; then fi -BL_DATE=20230426 +BL_DATE=20230430 RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-${BL_DATE}/${RT_COMPILER^^}} diff --git a/tests/rt_utils.sh b/tests/rt_utils.sh index 0b5e4e3ef08..f363cca7f3c 100755 --- a/tests/rt_utils.sh +++ b/tests/rt_utils.sh @@ -359,7 +359,7 @@ check_results() { printf ".......ALT CHECK.." >> ${REGRESSIONTEST_LOG} printf ".......ALT CHECK.." if [[ ${MACHINE_ID} =~ orion || ${MACHINE_ID} =~ hera || ${MACHINE_ID} =~ gaea || ${MACHINE_ID} =~ jet || ${MACHINE_ID} =~ cheyenne ]] ; then - nccmp -d -f -g -B --Attribute=checksum --warn=format ${RTPWD}/${CNTL_DIR}/${i} ${RUNDIR}/${i} > ${i}_nccmp.log 2>&1 && d=$? || d=$? + nccmp -d -f -g --Attribute=checksum --warn=format ${RTPWD}/${CNTL_DIR}/${i} ${RUNDIR}/${i} > ${i}_nccmp.log 2>&1 && d=$? || d=$? else ${PATHRT}/compare_ncfile.py ${RTPWD}/${CNTL_DIR}/$i ${RUNDIR}/$i > compare_ncfile.log 2>&1 && d=$? || d=$? fi From ee3589126df83b144303a02b162a8d95c89add81 Mon Sep 17 00:00:00 2001 From: zach1221 <99902696+zach1221@users.noreply.github.com> Date: Wed, 3 May 2023 15:18:49 -0400 Subject: [PATCH 27/30] Cloud Dependencies for Regression Testing (#1667) * Update default_vars.sh to add noaacloud * Update detect_machine.sh to add noaacloud * Update module-setup.sh to add noaacloud env variables * Add noaacloud and env variable to rt.sh * Update module-setup.sh * Create ufs_noaacloud.intel.lua * Create ufs_common_spack.lua * Create compile_slurm.IN_noaacloud * Create fv3_slurm.IN_noaacloud * Update rt_utils.sh * Adding Requesting if statement to default_vars adding -B option back to nccmp --- modulefiles/ufs_common_spack.lua | 57 ++ modulefiles/ufs_noaacloud.intel.lua | 28 + tests/RegressionTests_cheyenne.gnu.log | 352 +++---- tests/RegressionTests_cheyenne.intel.log | 1093 ++++++++++----------- tests/RegressionTests_hera.gnu.log | 354 +++---- tests/RegressionTests_hera.intel.log | 1074 ++++++++++---------- tests/RegressionTests_jet.intel.log | 1066 ++++++++++---------- tests/RegressionTests_orion.intel.log | 1088 ++++++++++---------- tests/RegressionTests_wcoss2.intel.log | 888 ++++++++--------- tests/default_vars.sh | 31 +- tests/detect_machine.sh | 13 +- tests/fv3_conf/compile_slurm.IN_noaacloud | 17 + tests/fv3_conf/fv3_slurm.IN_noaacloud | 45 + tests/module-setup.sh | 9 +- tests/rt.sh | 26 + tests/rt_utils.sh | 4 +- 16 files changed, 3173 insertions(+), 2972 deletions(-) create mode 100644 modulefiles/ufs_common_spack.lua create mode 100644 modulefiles/ufs_noaacloud.intel.lua create mode 100644 tests/fv3_conf/compile_slurm.IN_noaacloud create mode 100644 tests/fv3_conf/fv3_slurm.IN_noaacloud diff --git a/modulefiles/ufs_common_spack.lua b/modulefiles/ufs_common_spack.lua new file mode 100644 index 00000000000..76faa011ad5 --- /dev/null +++ b/modulefiles/ufs_common_spack.lua @@ -0,0 +1,57 @@ +help([[ +loads UFS Model common libraries +]]) + +jasper_ver=os.getenv("jasper_ver") or "2.0.32" +load(pathJoin("jasper", jasper_ver)) + +zlib_ver=os.getenv("zlib_ver") or "1.2.13" +load(pathJoin("zlib", zlib_ver)) + +libpng_ver=os.getenv("libpng_ver") or "1.6.37" +load(pathJoin("libpng", libpng_ver)) + +hdf5_ver=os.getenv("hdf5_ver") or "1.14.0" +load(pathJoin("hdf5", hdf5_ver)) + +netcdf_ver=os.getenv("netcdf_ver") or "4.9.0" +load(pathJoin("netcdf-c", netcdf_ver)) +load(pathJoin("netcdf-fortran", "4.6.0")) + +pio_ver=os.getenv("pio_ver") or "2.5.9" +load(pathJoin("parallelio", pio_ver)) + +esmf_ver=os.getenv("esmf_ver") or "8.3.0b09" +load(pathJoin("esmf", esmf_ver)) + +fms_ver=os.getenv("fms_ver") or "2022.04" +load(pathJoin("fms",fms_ver)) + +bacio_ver=os.getenv("bacio_ver") or "2.4.1" +load(pathJoin("bacio", bacio_ver)) + +crtm_ver=os.getenv("crtm_ver") or "2.4.0" +load(pathJoin("crtm", crtm_ver)) + +g2_ver=os.getenv("g2_ver") or "3.4.5" +load(pathJoin("g2", g2_ver)) + +g2tmpl_ver=os.getenv("g2tmpl_ver") or "1.10.2" +load(pathJoin("g2tmpl", g2tmpl_ver)) + +ip_ver=os.getenv("ip_ver") or "3.3.3" +load(pathJoin("ip", ip_ver)) + +sp_ver=os.getenv("sp_ver") or "2.3.3" +load(pathJoin("sp", sp_ver)) + +w3emc_ver=os.getenv("w3emc_ver") or "2.9.2" +load(pathJoin("w3emc", w3emc_ver)) + +gftl_shared_ver=os.getenv("gftl_shared_ver") or "v1.5.0" +load(pathJoin("gftl-shared", gftl_shared_ver)) + +mapl_ver=os.getenv("mapl_ver") or "2.22.0-esmf-8.3.0b09" +load(pathJoin("mapl", mapl_ver)) + +whatis("Description: UFS build environment common libraries") diff --git a/modulefiles/ufs_noaacloud.intel.lua b/modulefiles/ufs_noaacloud.intel.lua new file mode 100644 index 00000000000..f4023658fec --- /dev/null +++ b/modulefiles/ufs_noaacloud.intel.lua @@ -0,0 +1,28 @@ +help([[ +loads UFS Model prerequisites for NOAA Parallelworks/Intel +]]) + + +prepend_path("MODULEPATH", "/contrib/EPIC/spack-stack/spack-stack-1.3.0/envs/unified-dev/install/modulefiles/Core") + +stack_intel_ver=os.getenv("stack_intel_ver") or "2021.3.0" +load(pathJoin("stack-intel", stack_intel_ver)) + +stack_impi_ver=os.getenv("stack_impi_ver") or "2021.3.0" +load(pathJoin("stack-intel-oneapi-mpi", stack_impi_ver)) + +cmake_ver=os.getenv("cmake_ver") or "3.23.1" +load(pathJoin("cmake", cmake_ver)) + +prepend_path("MODULEPATH", "/contrib/spack-stack/modulefiles/core") +stack_python_ver=os.getenv("stack_python_ver") or "3.9.12" +load(pathJoin("stack-python", stack_python_ver)) + +load("ufs_common_spack") + +setenv("CC", "mpiicc") +setenv("CXX", "mpiicpc") +setenv("FC", "mpiifort") +setenv("CMAKE_Platform", "noaacloud.intel") + +whatis("Description: UFS build environment") diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index ce53ae293be..770e75fc769 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,21 +1,21 @@ -Sun Apr 30 16:08:41 MDT 2023 +Wed May 3 06:38:26 MDT 2023 Start Regression test -Compile 001 elapsed time 394 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 002 elapsed time 408 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 899 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 188 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 391 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 1144 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 899 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 909 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 618 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 575 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 347 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 012 elapsed time 294 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 001 elapsed time 392 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 002 elapsed time 403 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 893 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 191 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 393 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 1152 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 893 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 907 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 660 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 572 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 345 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 012 elapsed time 293 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/control_c48 -working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/control_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/control_c48 Checking test 001 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -54,14 +54,14 @@ Checking test 001 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 822.756575 -0:The maximum resident set size (KB) = 680332 +0:The total amount of wall time = 820.869621 +0:The maximum resident set size (KB) = 680412 Test 001 control_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/control_stochy -working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/control_stochy +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/control_stochy Checking test 002 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -72,14 +72,14 @@ Checking test 002 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 177.969568 -0:The maximum resident set size (KB) = 443988 +0:The total amount of wall time = 178.306956 +0:The maximum resident set size (KB) = 443756 Test 002 control_stochy PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/control_ras -working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/control_ras +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/control_ras Checking test 003 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -90,14 +90,14 @@ Checking test 003 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 296.433046 -0:The maximum resident set size (KB) = 452272 +0:The total amount of wall time = 295.438958 +0:The maximum resident set size (KB) = 452460 Test 003 control_ras PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/control_p8 -working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/control_p8 Checking test 004 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -144,14 +144,14 @@ Checking test 004 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 311.000807 -0:The maximum resident set size (KB) = 1225328 +0:The total amount of wall time = 311.593404 +0:The maximum resident set size (KB) = 1225420 Test 004 control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/control_flake -working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/control_flake +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/control_flake Checking test 005 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -162,14 +162,14 @@ Checking test 005 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 355.331565 -0:The maximum resident set size (KB) = 490328 +0:The total amount of wall time = 352.462600 +0:The maximum resident set size (KB) = 490556 Test 005 control_flake PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rap_control -working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/rap_control Checking test 006 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -216,14 +216,14 @@ Checking test 006 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 716.686632 -0:The maximum resident set size (KB) = 792840 +0:The total amount of wall time = 713.293631 +0:The maximum resident set size (KB) = 792416 Test 006 rap_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rap_control -working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/rap_decomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/rap_decomp Checking test 007 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -270,14 +270,14 @@ Checking test 007 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 719.810290 -0:The maximum resident set size (KB) = 791824 +0:The total amount of wall time = 717.783376 +0:The maximum resident set size (KB) = 791652 Test 007 rap_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rap_control -working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/rap_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/rap_2threads Checking test 008 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -324,14 +324,14 @@ Checking test 008 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 655.314632 -0:The maximum resident set size (KB) = 866204 +0:The total amount of wall time = 655.097116 +0:The maximum resident set size (KB) = 866076 Test 008 rap_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rap_control -working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/rap_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/rap_restart Checking test 009 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -370,14 +370,14 @@ Checking test 009 rap_restart results .... Comparing 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.999201 -0:The maximum resident set size (KB) = 539116 +0:The total amount of wall time = 355.176169 +0:The maximum resident set size (KB) = 539348 Test 009 rap_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rap_sfcdiff -working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/rap_sfcdiff Checking test 010 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -424,14 +424,14 @@ Checking test 010 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 717.552137 -0:The maximum resident set size (KB) = 792156 +0:The total amount of wall time = 714.166811 +0:The maximum resident set size (KB) = 791828 Test 010 rap_sfcdiff PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rap_sfcdiff -working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/rap_sfcdiff_decomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/rap_sfcdiff_decomp Checking test 011 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -478,14 +478,14 @@ Checking test 011 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 726.060983 -0:The maximum resident set size (KB) = 791572 +0:The total amount of wall time = 728.621835 +0:The maximum resident set size (KB) = 791520 Test 011 rap_sfcdiff_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rap_sfcdiff -working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/rap_sfcdiff_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/rap_sfcdiff_restart Checking test 012 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -524,14 +524,14 @@ Checking test 012 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 527.683611 -0:The maximum resident set size (KB) = 544732 +0:The total amount of wall time = 527.312530 +0:The maximum resident set size (KB) = 544440 Test 012 rap_sfcdiff_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/hrrr_control -working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/hrrr_control Checking test 013 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -578,14 +578,14 @@ Checking test 013 hrrr_control results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 687.592576 -0:The maximum resident set size (KB) = 789516 +0:The total amount of wall time = 687.064334 +0:The maximum resident set size (KB) = 789116 Test 013 hrrr_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/hrrr_control -working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/hrrr_control_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/hrrr_control_2threads Checking test 014 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -632,14 +632,14 @@ Checking test 014 hrrr_control_2threads results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 712.421139 -0:The maximum resident set size (KB) = 855440 +0:The total amount of wall time = 711.455564 +0:The maximum resident set size (KB) = 855872 Test 014 hrrr_control_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/hrrr_control -working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/hrrr_control_decomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/hrrr_control_decomp Checking test 015 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -686,28 +686,28 @@ Checking test 015 hrrr_control_decomp results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 685.175224 +0:The total amount of wall time = 684.096801 0:The maximum resident set size (KB) = 788520 Test 015 hrrr_control_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/hrrr_control -working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/hrrr_control_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/hrrr_control_restart Checking test 016 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 507.785973 -0:The maximum resident set size (KB) = 539784 +0:The total amount of wall time = 507.590797 +0:The maximum resident set size (KB) = 540712 Test 016 hrrr_control_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rrfs_v1beta -working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/rrfs_v1beta +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/rrfs_v1beta Checking test 017 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -754,14 +754,14 @@ Checking test 017 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 706.025483 -0:The maximum resident set size (KB) = 789420 +0:The total amount of wall time = 703.661167 +0:The maximum resident set size (KB) = 789120 Test 017 rrfs_v1beta PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/rrfs_smoke_conus13km_hrrr_warm Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -770,14 +770,14 @@ Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 239.703057 -0:The maximum resident set size (KB) = 639392 +0:The total amount of wall time = 241.296317 +0:The maximum resident set size (KB) = 639716 Test 018 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/rrfs_smoke_conus13km_hrrr_warm_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 019 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -786,14 +786,14 @@ Checking test 019 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 151.384968 -0:The maximum resident set size (KB) = 663464 +0:The total amount of wall time = 150.132646 +0:The maximum resident set size (KB) = 658644 Test 019 rrfs_smoke_conus13km_hrrr_warm_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/rrfs_conus13km_hrrr_warm Checking test 020 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -802,14 +802,14 @@ Checking test 020 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 219.079250 -0:The maximum resident set size (KB) = 618460 +0:The total amount of wall time = 219.592776 +0:The maximum resident set size (KB) = 618492 Test 020 rrfs_conus13km_hrrr_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/rrfs_smoke_conus13km_radar_tten_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/rrfs_smoke_conus13km_radar_tten_warm Checking test 021 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -818,262 +818,262 @@ Checking test 021 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 241.169555 -0:The maximum resident set size (KB) = 642396 +0:The total amount of wall time = 241.115967 +0:The maximum resident set size (KB) = 642424 Test 021 rrfs_smoke_conus13km_radar_tten_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 022 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 114.508686 -0:The maximum resident set size (KB) = 599488 +0:The total amount of wall time = 115.189301 +0:The maximum resident set size (KB) = 599548 Test 022 rrfs_conus13km_hrrr_warm_restart_mismatch PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/control_diag_debug -working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/control_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/control_diag_debug Checking test 023 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 82.037139 -0:The maximum resident set size (KB) = 491748 +0:The total amount of wall time = 82.887098 +0:The maximum resident set size (KB) = 492328 Test 023 control_diag_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/regional_debug -working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/regional_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/regional_debug Checking test 024 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 475.894206 -0:The maximum resident set size (KB) = 567036 +0:The total amount of wall time = 479.197258 +0:The maximum resident set size (KB) = 567276 Test 024 regional_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rap_control_debug -working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/rap_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/rap_control_debug Checking test 025 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 144.542921 -0:The maximum resident set size (KB) = 806152 +0:The total amount of wall time = 145.808487 +0:The maximum resident set size (KB) = 806348 Test 025 rap_control_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/hrrr_control_debug -working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/hrrr_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/hrrr_control_debug Checking test 026 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 142.904757 -0:The maximum resident set size (KB) = 801492 +0:The total amount of wall time = 142.355707 +0:The maximum resident set size (KB) = 801752 Test 026 hrrr_control_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rap_diag_debug -working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/rap_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/rap_diag_debug Checking test 027 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 151.599870 -0:The maximum resident set size (KB) = 888516 +0:The total amount of wall time = 152.500871 +0:The maximum resident set size (KB) = 888444 Test 027 rap_diag_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/rap_noah_sfcdiff_cires_ugwp_debug Checking test 028 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 233.335893 -0:The maximum resident set size (KB) = 804436 +0:The total amount of wall time = 235.755445 +0:The maximum resident set size (KB) = 804640 Test 028 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rap_progcld_thompson_debug -working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/rap_progcld_thompson_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/rap_progcld_thompson_debug Checking test 029 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 144.823278 -0:The maximum resident set size (KB) = 806204 +0:The total amount of wall time = 145.613157 +0:The maximum resident set size (KB) = 806436 Test 029 rap_progcld_thompson_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rrfs_v1beta_debug -working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/rrfs_v1beta_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/rrfs_v1beta_debug Checking test 030 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 143.725794 -0:The maximum resident set size (KB) = 801196 +0:The total amount of wall time = 144.637822 +0:The maximum resident set size (KB) = 801500 Test 030 rrfs_v1beta_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/control_ras_debug -working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/control_ras_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/control_ras_debug Checking test 031 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 79.907065 -0:The maximum resident set size (KB) = 446068 +0:The total amount of wall time = 80.677289 +0:The maximum resident set size (KB) = 446600 Test 031 control_ras_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/control_stochy_debug -working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/control_stochy_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/control_stochy_debug Checking test 032 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 88.290852 -0:The maximum resident set size (KB) = 438972 +0:The total amount of wall time = 88.833096 +0:The maximum resident set size (KB) = 438756 Test 032 control_stochy_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/control_debug_p8 -working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/control_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/control_debug_p8 Checking test 033 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 93.431986 -0:The maximum resident set size (KB) = 1223292 +0:The total amount of wall time = 90.195615 +0:The maximum resident set size (KB) = 1221780 Test 033 control_debug_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 034 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 443.467854 -0:The maximum resident set size (KB) = 644912 +0:The total amount of wall time = 445.286480 +0:The maximum resident set size (KB) = 645076 Test 034 rrfs_smoke_conus13km_hrrr_warm_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 035 rrfs_smoke_conus13km_hrrr_warm_debug_2threads 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.422886 -0:The maximum resident set size (KB) = 669212 +0:The total amount of wall time = 259.943757 +0:The maximum resident set size (KB) = 669700 Test 035 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/rrfs_conus13km_hrrr_warm_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/rrfs_conus13km_hrrr_warm_debug Checking test 036 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 401.983533 -0:The maximum resident set size (KB) = 623312 +0:The total amount of wall time = 403.395632 +0:The maximum resident set size (KB) = 623524 Test 036 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rap_flake_debug -working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/rap_flake_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/rap_flake_debug Checking test 037 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 144.947628 -0:The maximum resident set size (KB) = 805768 +0:The total amount of wall time = 145.959215 +0:The maximum resident set size (KB) = 806408 Test 037 rap_flake_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rap_clm_lake_debug -working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/rap_clm_lake_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/rap_clm_lake_debug Checking test 038 rap_clm_lake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 164.250657 -0:The maximum resident set size (KB) = 807600 +0:The total amount of wall time = 165.514853 +0:The maximum resident set size (KB) = 807972 Test 038 rap_clm_lake_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/control_wam_debug -working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/control_wam_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/control_wam_debug Checking test 039 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 141.095240 -0:The maximum resident set size (KB) = 182308 +0:The total amount of wall time = 141.188803 +0:The maximum resident set size (KB) = 182940 Test 039 control_wam_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/rap_control_dyn32_phy32 Checking test 040 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1120,14 +1120,14 @@ Checking test 040 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 707.119854 -0:The maximum resident set size (KB) = 672636 +0:The total amount of wall time = 704.105507 +0:The maximum resident set size (KB) = 672772 Test 040 rap_control_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/hrrr_control_dyn32_phy32 Checking test 041 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1174,14 +1174,14 @@ Checking test 041 hrrr_control_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 353.677907 -0:The maximum resident set size (KB) = 671072 +0:The total amount of wall time = 352.432233 +0:The maximum resident set size (KB) = 671184 Test 041 hrrr_control_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/rap_2threads_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/rap_2threads_dyn32_phy32 Checking test 042 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1228,14 +1228,14 @@ Checking test 042 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 646.856162 -0:The maximum resident set size (KB) = 720436 +0:The total amount of wall time = 643.562556 +0:The maximum resident set size (KB) = 720120 Test 042 rap_2threads_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/hrrr_control_2threads_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/hrrr_control_2threads_dyn32_phy32 Checking test 043 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1282,14 +1282,14 @@ Checking test 043 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 406.443759 -0:The maximum resident set size (KB) = 711776 +0:The total amount of wall time = 404.550411 +0:The maximum resident set size (KB) = 712372 Test 043 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/hrrr_control_decomp_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/hrrr_control_decomp_dyn32_phy32 Checking test 044 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1336,14 +1336,14 @@ Checking test 044 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 354.799957 -0:The maximum resident set size (KB) = 670004 +0:The total amount of wall time = 351.716948 +0:The maximum resident set size (KB) = 670008 Test 044 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/rap_restart_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/rap_restart_dyn32_phy32 Checking test 045 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1382,28 +1382,28 @@ Checking test 045 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 522.012821 -0:The maximum resident set size (KB) = 511844 +0:The total amount of wall time = 518.141727 +0:The maximum resident set size (KB) = 511820 Test 045 rap_restart_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/hrrr_control_restart_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/hrrr_control_restart_dyn32_phy32 Checking test 046 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 178.997299 -0:The maximum resident set size (KB) = 505940 +0:The total amount of wall time = 178.271201 +0:The maximum resident set size (KB) = 506536 Test 046 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rap_control_dyn64_phy32 -working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/rap_control_dyn64_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/rap_control_dyn64_phy32 Checking test 047 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1450,56 +1450,56 @@ Checking test 047 rap_control_dyn64_phy32 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 = 413.815185 -0:The maximum resident set size (KB) = 692860 +0:The total amount of wall time = 414.717880 +0:The maximum resident set size (KB) = 693908 Test 047 rap_control_dyn64_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/rap_control_debug_dyn32_phy32 Checking test 048 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 143.084801 -0:The maximum resident set size (KB) = 687992 +0:The total amount of wall time = 145.080857 +0:The maximum resident set size (KB) = 687172 Test 048 rap_control_debug_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/hrrr_control_debug_dyn32_phy32 Checking test 049 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 139.799080 -0:The maximum resident set size (KB) = 684124 +0:The total amount of wall time = 141.840703 +0:The maximum resident set size (KB) = 684304 Test 049 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/rap_control_dyn64_phy32_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/rap_control_dyn64_phy32_debug Checking test 050 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 148.133584 -0:The maximum resident set size (KB) = 708004 +0:The total amount of wall time = 148.545184 +0:The maximum resident set size (KB) = 708144 Test 050 rap_control_dyn64_phy32_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/cpld_control_p8 -working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/cpld_control_p8 Checking test 051 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1564,14 +1564,14 @@ Checking test 051 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 503.679954 -0:The maximum resident set size (KB) = 3160512 +0:The total amount of wall time = 490.508335 +0:The maximum resident set size (KB) = 3159084 Test 051 cpld_control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/cpld_control_nowave_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/cpld_control_nowave_noaero_p8 Checking test 052 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1633,14 +1633,14 @@ Checking test 052 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 245.874277 -0:The maximum resident set size (KB) = 1242072 +0:The total amount of wall time = 248.528909 +0:The maximum resident set size (KB) = 1240676 Test 052 cpld_control_nowave_noaero_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/cpld_debug_p8 -working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/cpld_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/cpld_debug_p8 Checking test 053 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1693,25 +1693,25 @@ Checking test 053 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 198.954448 -0:The maximum resident set size (KB) = 3172796 +0:The total amount of wall time = 199.541595 +0:The maximum resident set size (KB) = 3174324 Test 053 cpld_debug_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/datm_cdeps_control_cfsr -working dir = /glade/scratch/jongkim/pr-1715-gnu/jongkim/FV3_RT/rt_6607/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/datm_cdeps_control_cfsr Checking test 054 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 179.374371 -0:The maximum resident set size (KB) = 669600 +0:The total amount of wall time = 179.126687 +0:The maximum resident set size (KB) = 670484 Test 054 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Sun Apr 30 16:40:49 MDT 2023 -Elapsed time: 00h:32m:08s. Have a nice day! +Wed May 3 07:19:24 MDT 2023 +Elapsed time: 00h:40m:59s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index e5720e721fd..c5b1fb657ec 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,42 +1,42 @@ -Sun Apr 30 13:09:12 MDT 2023 +Wed May 3 06:23:30 MDT 2023 Start Regression test -Compile 001 elapsed time 1488 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 1441 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 1443 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 452 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 415 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 1156 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 1172 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 1192 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 009 elapsed time 1059 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 998 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 860 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 1352 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 422 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 014 elapsed time 275 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 918 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 921 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 283 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 291 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 1248 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 020 elapsed time 345 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 021 elapsed time 1640 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 022 elapsed time 1196 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 023 elapsed time 426 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 024 elapsed time 200 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 025 elapsed time 428 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 026 elapsed time 109 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 027 elapsed time 1019 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 1072 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 1072 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 965 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 936 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 298 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 1125 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 1575 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1460 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 1405 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 451 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 392 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 1136 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 1130 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 1150 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 009 elapsed time 1052 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 996 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 858 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 1354 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 430 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 014 elapsed time 268 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 925 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 908 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 294 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 293 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 1244 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 020 elapsed time 346 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 021 elapsed time 1650 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 022 elapsed time 1192 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 023 elapsed time 429 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 024 elapsed time 201 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 025 elapsed time 430 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 026 elapsed time 102 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 027 elapsed time 1007 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 1075 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 1064 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 964 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 954 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 311 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 1120 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8_mixedmode -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/cpld_control_p8_mixedmode +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -101,14 +101,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 321.417855 -0:The maximum resident set size (KB) = 2698948 +0:The total amount of wall time = 318.062104 +0:The maximum resident set size (KB) = 2698876 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_gfsv17 -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/cpld_control_gfsv17 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -172,14 +172,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 279.908048 -0:The maximum resident set size (KB) = 1437568 +0:The total amount of wall time = 282.223772 +0:The maximum resident set size (KB) = 1437692 Test 002 cpld_control_gfsv17 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -244,14 +244,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 324.120533 -0:The maximum resident set size (KB) = 2715524 +0:The total amount of wall time = 321.333581 +0:The maximum resident set size (KB) = 2715512 Test 003 cpld_control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/cpld_restart_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -304,14 +304,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 181.451702 -0:The maximum resident set size (KB) = 2576732 +0:The total amount of wall time = 184.611528 +0:The maximum resident set size (KB) = 2576588 Test 004 cpld_restart_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/cpld_control_qr_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -376,14 +376,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 324.985533 -0:The maximum resident set size (KB) = 2719976 +0:The total amount of wall time = 317.177070 +0:The maximum resident set size (KB) = 2719848 Test 005 cpld_control_qr_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/cpld_restart_qr_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -436,14 +436,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 193.655709 -0:The maximum resident set size (KB) = 2593188 +0:The total amount of wall time = 199.931065 +0:The maximum resident set size (KB) = 2593184 Test 006 cpld_restart_qr_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/cpld_2threads_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -496,14 +496,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 251.251454 -0:The maximum resident set size (KB) = 3178680 +0:The total amount of wall time = 249.759548 +0:The maximum resident set size (KB) = 3178044 Test 007 cpld_2threads_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/cpld_decomp_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -556,14 +556,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 322.368835 -0:The maximum resident set size (KB) = 2720864 +0:The total amount of wall time = 321.454560 +0:The maximum resident set size (KB) = 2720624 Test 008 cpld_decomp_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/cpld_mpi_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -616,14 +616,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 276.260223 -0:The maximum resident set size (KB) = 2681504 +0:The total amount of wall time = 277.060261 +0:The maximum resident set size (KB) = 2681864 Test 009 cpld_mpi_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_ciceC_p8 -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/cpld_control_ciceC_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -688,14 +688,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 319.363706 -0:The maximum resident set size (KB) = 2715436 +0:The total amount of wall time = 323.072456 +0:The maximum resident set size (KB) = 2715364 Test 010 cpld_control_ciceC_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/cpld_control_c192_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/cpld_control_c192_p8 Checking test 011 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -748,14 +748,14 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -0:The total amount of wall time = 630.138890 -0:The maximum resident set size (KB) = 3352340 +0:The total amount of wall time = 621.594245 +0:The maximum resident set size (KB) = 3351108 Test 011 cpld_control_c192_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/cpld_restart_c192_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/cpld_restart_c192_p8 Checking test 012 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -808,14 +808,14 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -0:The total amount of wall time = 386.534798 -0:The maximum resident set size (KB) = 3276984 +0:The total amount of wall time = 383.934210 +0:The maximum resident set size (KB) = 3277400 Test 012 cpld_restart_c192_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_noaero_p8 -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/cpld_control_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/cpld_control_noaero_p8 Checking test 013 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -879,14 +879,14 @@ Checking test 013 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 294.155339 -0:The maximum resident set size (KB) = 1435712 +0:The total amount of wall time = 283.947923 +0:The maximum resident set size (KB) = 1435624 Test 013 cpld_control_noaero_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/cpld_control_nowave_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/cpld_control_nowave_noaero_p8 Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -948,14 +948,14 @@ Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 193.772417 -0:The maximum resident set size (KB) = 1453340 +0:The total amount of wall time = 194.134305 +0:The maximum resident set size (KB) = 1453476 Test 014 cpld_control_nowave_noaero_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_debug_p8 -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/cpld_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/cpld_debug_p8 Checking test 015 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1008,14 +1008,14 @@ Checking test 015 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 350.969540 -0:The maximum resident set size (KB) = 2780392 +0:The total amount of wall time = 350.574034 +0:The maximum resident set size (KB) = 2780064 Test 015 cpld_debug_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_debug_noaero_p8 -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/cpld_debug_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/cpld_debug_noaero_p8 Checking test 016 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1067,14 +1067,14 @@ Checking test 016 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 300.752955 -0:The maximum resident set size (KB) = 1454504 +0:The total amount of wall time = 301.381015 +0:The maximum resident set size (KB) = 1454276 Test 016 cpld_debug_noaero_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_noaero_p8_agrid -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/cpld_control_noaero_p8_agrid +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/cpld_control_noaero_p8_agrid Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1136,14 +1136,14 @@ Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 254.169065 -0:The maximum resident set size (KB) = 1457096 +0:The total amount of wall time = 255.991397 +0:The maximum resident set size (KB) = 1457028 Test 017 cpld_control_noaero_p8_agrid PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_c48 -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/cpld_control_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/cpld_control_c48 Checking test 018 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1193,14 +1193,14 @@ Checking test 018 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 609.045412 -0:The maximum resident set size (KB) = 2586844 +0:The total amount of wall time = 602.856049 +0:The maximum resident set size (KB) = 2587000 Test 018 cpld_control_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/cpld_warmstart_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/cpld_warmstart_c48 Checking test 019 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1250,14 +1250,14 @@ Checking test 019 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -0:The total amount of wall time = 164.134446 -0:The maximum resident set size (KB) = 2602592 +0:The total amount of wall time = 161.345366 +0:The maximum resident set size (KB) = 2602400 Test 019 cpld_warmstart_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/cpld_restart_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/cpld_restart_c48 Checking test 020 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1307,14 +1307,14 @@ Checking test 020 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -0:The total amount of wall time = 84.629131 -0:The maximum resident set size (KB) = 2019740 +0:The total amount of wall time = 85.096472 +0:The maximum resident set size (KB) = 2020108 Test 020 cpld_restart_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_flake -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_flake +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_flake Checking test 021 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1325,14 +1325,14 @@ Checking test 021 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 220.014284 -0:The maximum resident set size (KB) = 501460 +0:The total amount of wall time = 218.718805 +0:The maximum resident set size (KB) = 501312 Test 021 control_flake PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_CubedSphereGrid -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_CubedSphereGrid +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_CubedSphereGrid Checking test 022 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1359,28 +1359,28 @@ Checking test 022 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -0:The total amount of wall time = 142.625760 -0:The maximum resident set size (KB) = 454684 +0:The total amount of wall time = 145.199026 +0:The maximum resident set size (KB) = 454408 Test 022 control_CubedSphereGrid PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_CubedSphereGrid_parallel -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_CubedSphereGrid_parallel +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_CubedSphereGrid_parallel Checking test 023 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK -0:The total amount of wall time = 139.754338 -0:The maximum resident set size (KB) = 454564 +0:The total amount of wall time = 139.874057 +0:The maximum resident set size (KB) = 454488 Test 023 control_CubedSphereGrid_parallel PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_latlon -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_latlon +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_latlon Checking test 024 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1391,32 +1391,32 @@ Checking test 024 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 147.811179 -0:The maximum resident set size (KB) = 454616 +0:The total amount of wall time = 146.740900 +0:The maximum resident set size (KB) = 454528 Test 024 control_latlon PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_wrtGauss_netcdf_parallel -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_wrtGauss_netcdf_parallel +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_wrtGauss_netcdf_parallel Checking test 025 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 149.863443 -0:The maximum resident set size (KB) = 454616 +0:The total amount of wall time = 149.061763 +0:The maximum resident set size (KB) = 454592 Test 025 control_wrtGauss_netcdf_parallel PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_c48 -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_c48 Checking test 026 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1455,14 +1455,14 @@ Checking test 026 control_c48 results .... Comparing 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.631005 +0:The total amount of wall time = 443.399769 0:The maximum resident set size (KB) = 634244 Test 026 control_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_c192 -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_c192 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_c192 Checking test 027 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1473,14 +1473,14 @@ Checking test 027 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 595.641342 -0:The maximum resident set size (KB) = 560152 +0:The total amount of wall time = 594.556939 +0:The maximum resident set size (KB) = 560212 Test 027 control_c192 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_c384 -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_c384 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_c384 Checking test 028 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1491,14 +1491,14 @@ Checking test 028 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 584.720240 -0:The maximum resident set size (KB) = 899576 +0:The total amount of wall time = 586.106711 +0:The maximum resident set size (KB) = 901300 Test 028 control_c384 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_c384gdas -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_c384gdas +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_c384gdas Checking test 029 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1541,14 +1541,14 @@ Checking test 029 control_c384gdas 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 = 518.863181 -0:The maximum resident set size (KB) = 1028424 +0:The total amount of wall time = 515.805472 +0:The maximum resident set size (KB) = 1027840 Test 029 control_c384gdas PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_stochy -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_stochy +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_stochy Checking test 030 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1559,28 +1559,28 @@ Checking test 030 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 98.409036 -0:The maximum resident set size (KB) = 459384 +0:The total amount of wall time = 98.319953 +0:The maximum resident set size (KB) = 459500 Test 030 control_stochy PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_stochy -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_stochy_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_stochy_restart Checking test 031 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 53.193153 -0:The maximum resident set size (KB) = 227848 +0:The total amount of wall time = 52.660365 +0:The maximum resident set size (KB) = 227584 Test 031 control_stochy_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_lndp -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_lndp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_lndp Checking test 032 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1591,14 +1591,14 @@ Checking test 032 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 90.505696 -0:The maximum resident set size (KB) = 459108 +0:The total amount of wall time = 90.697806 +0:The maximum resident set size (KB) = 458912 Test 032 control_lndp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_iovr4 -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_iovr4 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_iovr4 Checking test 033 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1613,14 +1613,14 @@ Checking test 033 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 149.166368 -0:The maximum resident set size (KB) = 454632 +0:The total amount of wall time = 147.936017 +0:The maximum resident set size (KB) = 454508 Test 033 control_iovr4 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_iovr5 -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_iovr5 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_iovr5 Checking test 034 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1635,14 +1635,14 @@ Checking test 034 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 148.410158 -0:The maximum resident set size (KB) = 454640 +0:The total amount of wall time = 148.505524 +0:The maximum resident set size (KB) = 454524 Test 034 control_iovr5 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_p8 Checking test 035 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1689,14 +1689,14 @@ Checking test 035 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 182.351476 -0:The maximum resident set size (KB) = 1423960 +0:The total amount of wall time = 181.325693 +0:The maximum resident set size (KB) = 1423952 Test 035 control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_restart_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_restart_p8 Checking test 036 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1735,14 +1735,14 @@ Checking test 036 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 96.817779 -0:The maximum resident set size (KB) = 582120 +0:The total amount of wall time = 97.947163 +0:The maximum resident set size (KB) = 582100 Test 036 control_restart_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_qr_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_qr_p8 Checking test 037 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1789,14 +1789,14 @@ Checking test 037 control_qr_p8 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 = 181.943324 -0:The maximum resident set size (KB) = 1427720 +0:The total amount of wall time = 181.550839 +0:The maximum resident set size (KB) = 1427576 Test 037 control_qr_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_restart_qr_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_restart_qr_p8 Checking test 038 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1835,14 +1835,14 @@ Checking test 038 control_restart_qr_p8 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 = 99.006892 -0:The maximum resident set size (KB) = 597228 +0:The total amount of wall time = 98.161832 +0:The maximum resident set size (KB) = 597148 Test 038 control_restart_qr_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_decomp_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_decomp_p8 Checking test 039 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1885,14 +1885,14 @@ Checking test 039 control_decomp_p8 results .... Comparing 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.651092 -0:The maximum resident set size (KB) = 1417760 +0:The total amount of wall time = 187.365531 +0:The maximum resident set size (KB) = 1417728 Test 039 control_decomp_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_2threads_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_2threads_p8 Checking test 040 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1935,14 +1935,14 @@ Checking test 040 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 171.066275 -0:The maximum resident set size (KB) = 1509352 +0:The total amount of wall time = 169.284023 +0:The maximum resident set size (KB) = 1509448 Test 040 control_2threads_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_lndp -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_p8_lndp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_p8_lndp Checking test 041 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1961,14 +1961,14 @@ Checking test 041 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -0:The total amount of wall time = 335.099613 -0:The maximum resident set size (KB) = 1424280 +0:The total amount of wall time = 334.962613 +0:The maximum resident set size (KB) = 1424244 Test 041 control_p8_lndp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_rrtmgp -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_p8_rrtmgp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_p8_rrtmgp Checking test 042 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2015,14 +2015,14 @@ Checking test 042 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 253.501759 -0:The maximum resident set size (KB) = 1480580 +0:The total amount of wall time = 253.612242 +0:The maximum resident set size (KB) = 1480612 Test 042 control_p8_rrtmgp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_mynn -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_p8_mynn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_p8_mynn Checking test 043 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2069,14 +2069,14 @@ Checking test 043 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 185.968592 -0:The maximum resident set size (KB) = 1428476 +0:The total amount of wall time = 183.694030 +0:The maximum resident set size (KB) = 1428396 Test 043 control_p8_mynn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/merra2_thompson -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/merra2_thompson +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/merra2_thompson Checking test 044 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2123,14 +2123,14 @@ Checking test 044 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 201.337734 -0:The maximum resident set size (KB) = 1429968 +0:The total amount of wall time = 212.476187 +0:The maximum resident set size (KB) = 1429940 Test 044 merra2_thompson PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/regional_control Checking test 045 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2141,28 +2141,28 @@ Checking test 045 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 343.128764 -0:The maximum resident set size (KB) = 605096 +0:The total amount of wall time = 349.021838 +0:The maximum resident set size (KB) = 605044 Test 045 regional_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/regional_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/regional_restart Checking test 046 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 175.404435 -0:The maximum resident set size (KB) = 594344 +0:The total amount of wall time = 174.876664 +0:The maximum resident set size (KB) = 594340 Test 046 regional_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/regional_control_qr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/regional_control_qr Checking test 047 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2173,28 +2173,28 @@ Checking test 047 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 351.799293 -0:The maximum resident set size (KB) = 605048 +0:The total amount of wall time = 341.537137 +0:The maximum resident set size (KB) = 605064 Test 047 regional_control_qr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/regional_restart_qr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/regional_restart_qr Checking test 048 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 175.998113 -0:The maximum resident set size (KB) = 594376 +0:The total amount of wall time = 177.499283 +0:The maximum resident set size (KB) = 594276 Test 048 regional_restart_qr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/regional_decomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/regional_decomp Checking test 049 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2205,14 +2205,14 @@ Checking test 049 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 360.143182 -0:The maximum resident set size (KB) = 598956 +0:The total amount of wall time = 360.765176 +0:The maximum resident set size (KB) = 598904 Test 049 regional_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/regional_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/regional_2threads Checking test 050 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2223,14 +2223,14 @@ Checking test 050 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 205.137851 -0:The maximum resident set size (KB) = 611948 +0:The total amount of wall time = 204.714869 +0:The maximum resident set size (KB) = 611936 Test 050 regional_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_noquilt -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/regional_noquilt +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/regional_noquilt Checking test 051 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2238,28 +2238,28 @@ Checking test 051 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -0:The total amount of wall time = 363.828998 -0:The maximum resident set size (KB) = 599556 +0:The total amount of wall time = 367.429801 +0:The maximum resident set size (KB) = 599392 Test 051 regional_noquilt PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_netcdf_parallel -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/regional_netcdf_parallel +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/regional_netcdf_parallel Checking test 052 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing phyf006.nc .........OK -0:The total amount of wall time = 337.787958 -0:The maximum resident set size (KB) = 597008 +0:The total amount of wall time = 340.178128 +0:The maximum resident set size (KB) = 596940 Test 052 regional_netcdf_parallel PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/regional_2dwrtdecomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/regional_2dwrtdecomp Checking test 053 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2270,14 +2270,14 @@ Checking test 053 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 342.422941 -0:The maximum resident set size (KB) = 605124 +0:The total amount of wall time = 348.626698 +0:The maximum resident set size (KB) = 605004 Test 053 regional_2dwrtdecomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/fv3_regional_wofs -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/regional_wofs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/regional_wofs Checking test 054 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2288,14 +2288,14 @@ Checking test 054 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 427.185685 -0:The maximum resident set size (KB) = 276184 +0:The total amount of wall time = 426.678752 +0:The maximum resident set size (KB) = 276132 Test 054 regional_wofs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/rap_control Checking test 055 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2342,14 +2342,14 @@ Checking test 055 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 480.008557 -0:The maximum resident set size (KB) = 823804 +0:The total amount of wall time = 482.611693 +0:The maximum resident set size (KB) = 823740 Test 055 rap_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_spp_sppt_shum_skeb -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/regional_spp_sppt_shum_skeb +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/regional_spp_sppt_shum_skeb Checking test 056 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2360,14 +2360,14 @@ Checking test 056 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 261.816748 -0:The maximum resident set size (KB) = 953804 +0:The total amount of wall time = 261.589188 +0:The maximum resident set size (KB) = 953692 Test 056 regional_spp_sppt_shum_skeb PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/rap_decomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/rap_decomp Checking test 057 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2414,14 +2414,14 @@ Checking test 057 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 502.503060 -0:The maximum resident set size (KB) = 822664 +0:The total amount of wall time = 500.618209 +0:The maximum resident set size (KB) = 822576 Test 057 rap_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/rap_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/rap_2threads Checking test 058 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2468,14 +2468,14 @@ Checking test 058 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 460.906610 -0:The maximum resident set size (KB) = 893980 +0:The total amount of wall time = 462.136467 +0:The maximum resident set size (KB) = 894132 Test 058 rap_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/rap_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/rap_restart Checking test 059 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2514,14 +2514,14 @@ Checking test 059 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 241.852534 -0:The maximum resident set size (KB) = 571760 +0:The total amount of wall time = 244.587913 +0:The maximum resident set size (KB) = 571648 Test 059 rap_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_sfcdiff -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/rap_sfcdiff Checking test 060 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2568,14 +2568,14 @@ Checking test 060 rap_sfcdiff results .... Comparing 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.611611 -0:The maximum resident set size (KB) = 823740 +0:The total amount of wall time = 479.340620 +0:The maximum resident set size (KB) = 823644 Test 060 rap_sfcdiff PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_sfcdiff -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/rap_sfcdiff_decomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/rap_sfcdiff_decomp Checking test 061 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2622,14 +2622,14 @@ Checking test 061 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 506.732022 -0:The maximum resident set size (KB) = 822644 +0:The total amount of wall time = 502.880276 +0:The maximum resident set size (KB) = 822620 Test 061 rap_sfcdiff_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_sfcdiff -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/rap_sfcdiff_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/rap_sfcdiff_restart Checking test 062 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2668,14 +2668,14 @@ Checking test 062 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 355.084801 -0:The maximum resident set size (KB) = 571508 +0:The total amount of wall time = 356.385959 +0:The maximum resident set size (KB) = 571452 Test 062 rap_sfcdiff_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/hrrr_control Checking test 063 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2722,14 +2722,14 @@ Checking test 063 hrrr_control results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 444.383712 -0:The maximum resident set size (KB) = 821032 +0:The total amount of wall time = 443.880679 +0:The maximum resident set size (KB) = 820968 Test 063 hrrr_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/hrrr_control_decomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/hrrr_control_decomp Checking test 064 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2776,14 +2776,14 @@ Checking test 064 hrrr_control_decomp results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 463.828450 -0:The maximum resident set size (KB) = 820700 +0:The total amount of wall time = 464.894191 +0:The maximum resident set size (KB) = 820628 Test 064 hrrr_control_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/hrrr_control_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/hrrr_control_2threads Checking test 065 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2830,28 +2830,28 @@ Checking test 065 hrrr_control_2threads results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 499.533415 -0:The maximum resident set size (KB) = 890696 +0:The total amount of wall time = 502.903774 +0:The maximum resident set size (KB) = 895272 Test 065 hrrr_control_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/hrrr_control_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/hrrr_control_restart Checking test 066 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 336.711146 -0:The maximum resident set size (KB) = 567684 +0:The total amount of wall time = 329.315373 +0:The maximum resident set size (KB) = 567664 Test 066 hrrr_control_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_v1beta -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/rrfs_v1beta +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/rrfs_v1beta Checking test 067 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2898,14 +2898,14 @@ Checking test 067 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 475.924918 -0:The maximum resident set size (KB) = 819692 +0:The total amount of wall time = 476.090375 +0:The maximum resident set size (KB) = 819788 Test 067 rrfs_v1beta PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_v1nssl -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/rrfs_v1nssl +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/rrfs_v1nssl Checking test 068 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2920,14 +2920,14 @@ Checking test 068 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 585.055382 -0:The maximum resident set size (KB) = 508784 +0:The total amount of wall time = 585.862763 +0:The maximum resident set size (KB) = 508592 Test 068 rrfs_v1nssl PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/rrfs_v1nssl_nohailnoccn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/rrfs_v1nssl_nohailnoccn Checking test 069 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2942,14 +2942,14 @@ Checking test 069 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 567.218659 -0:The maximum resident set size (KB) = 502992 +0:The total amount of wall time = 563.884627 +0:The maximum resident set size (KB) = 502920 Test 069 rrfs_v1nssl_nohailnoccn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/rrfs_smoke_conus13km_hrrr_warm Checking test 070 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2958,14 +2958,14 @@ Checking test 070 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 156.313614 -0:The maximum resident set size (KB) = 671084 +0:The total amount of wall time = 156.627322 +0:The maximum resident set size (KB) = 671032 Test 070 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/rrfs_smoke_conus13km_hrrr_warm_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 071 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2974,14 +2974,14 @@ Checking test 071 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 94.487423 -0:The maximum resident set size (KB) = 693072 +0:The total amount of wall time = 94.445720 +0:The maximum resident set size (KB) = 692964 Test 071 rrfs_smoke_conus13km_hrrr_warm_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/rrfs_conus13km_hrrr_warm Checking test 072 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2990,14 +2990,14 @@ Checking test 072 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 142.410549 -0:The maximum resident set size (KB) = 667492 +0:The total amount of wall time = 139.954477 +0:The maximum resident set size (KB) = 667324 Test 072 rrfs_conus13km_hrrr_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/rrfs_smoke_conus13km_radar_tten_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/rrfs_smoke_conus13km_radar_tten_warm Checking test 073 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3006,19 +3006,26 @@ Checking test 073 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 157.480605 -0:The maximum resident set size (KB) = 677608 +0:The total amount of wall time = 157.473753 +0:The maximum resident set size (KB) = 677512 Test 073 rrfs_smoke_conus13km_radar_tten_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 074 rrfs_conus13km_hrrr_warm_restart_mismatch results .... - Comparing sfcf002.nc ............ALT CHECK......ERROR + Comparing sfcf002.nc .........OK + Comparing atmf002.nc .........OK + +0:The total amount of wall time = 72.543387 +0:The maximum resident set size (KB) = 640324 + +Test 074 rrfs_conus13km_hrrr_warm_restart_mismatch PASS + baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_csawmg -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_csawmg +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_csawmg Checking test 075 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3029,14 +3036,14 @@ Checking test 075 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 399.623097 -0:The maximum resident set size (KB) = 528100 +0:The total amount of wall time = 398.629603 +0:The maximum resident set size (KB) = 528056 Test 075 control_csawmg PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_csawmgt -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_csawmgt +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_csawmgt Checking test 076 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3047,14 +3054,14 @@ Checking test 076 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 395.909644 -0:The maximum resident set size (KB) = 528652 +0:The total amount of wall time = 395.241962 +0:The maximum resident set size (KB) = 528624 Test 076 control_csawmgt PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_ras -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_ras +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_ras Checking test 077 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3065,26 +3072,26 @@ Checking test 077 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 206.039054 -0:The maximum resident set size (KB) = 491372 +0:The total amount of wall time = 206.785366 +0:The maximum resident set size (KB) = 491264 Test 077 control_ras PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_wam -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_wam +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_wam Checking test 078 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -0:The total amount of wall time = 123.602508 -0:The maximum resident set size (KB) = 206904 +0:The total amount of wall time = 129.021795 +0:The maximum resident set size (KB) = 206680 Test 078 control_wam PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_faster -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_p8_faster +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_p8_faster Checking test 079 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3131,14 +3138,14 @@ Checking test 079 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 171.713701 -0:The maximum resident set size (KB) = 1423772 +0:The total amount of wall time = 171.876503 +0:The maximum resident set size (KB) = 1423768 Test 079 control_p8_faster PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control_faster -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/regional_control_faster +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/regional_control_faster Checking test 080 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3149,56 +3156,56 @@ Checking test 080 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 323.349192 -0:The maximum resident set size (KB) = 604828 +0:The total amount of wall time = 327.878691 +0:The maximum resident set size (KB) = 604812 Test 080 regional_control_faster PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 081 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 874.495972 -0:The maximum resident set size (KB) = 704264 +0:The total amount of wall time = 875.751418 +0:The maximum resident set size (KB) = 704308 Test 081 rrfs_smoke_conus13km_hrrr_warm_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 082 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 497.846035 -0:The maximum resident set size (KB) = 724004 +0:The total amount of wall time = 497.172360 +0:The maximum resident set size (KB) = 723160 Test 082 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/rrfs_conus13km_hrrr_warm_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/rrfs_conus13km_hrrr_warm_debug Checking test 083 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 783.763026 -0:The maximum resident set size (KB) = 697548 +0:The total amount of wall time = 784.283196 +0:The maximum resident set size (KB) = 697604 Test 083 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_CubedSphereGrid_debug -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_CubedSphereGrid_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_CubedSphereGrid_debug Checking test 084 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3225,348 +3232,348 @@ Checking test 084 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -0:The total amount of wall time = 155.528655 -0:The maximum resident set size (KB) = 617820 +0:The total amount of wall time = 155.065492 +0:The maximum resident set size (KB) = 617920 Test 084 control_CubedSphereGrid_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_wrtGauss_netcdf_parallel_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_wrtGauss_netcdf_parallel_debug Checking test 085 control_wrtGauss_netcdf_parallel_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 155.532626 -0:The maximum resident set size (KB) = 615324 +0:The total amount of wall time = 155.538004 +0:The maximum resident set size (KB) = 615384 Test 085 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_stochy_debug -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_stochy_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_stochy_debug Checking test 086 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 175.214791 -0:The maximum resident set size (KB) = 620924 +0:The total amount of wall time = 174.718512 +0:The maximum resident set size (KB) = 620980 Test 086 control_stochy_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_lndp_debug -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_lndp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_lndp_debug Checking test 087 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 157.160539 -0:The maximum resident set size (KB) = 620416 +0:The total amount of wall time = 156.614018 +0:The maximum resident set size (KB) = 620436 Test 087 control_lndp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_csawmg_debug -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_csawmg_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_csawmg_debug Checking test 088 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 248.427749 -0:The maximum resident set size (KB) = 666780 +0:The total amount of wall time = 250.787824 +0:The maximum resident set size (KB) = 666788 Test 088 control_csawmg_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_csawmgt_debug -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_csawmgt_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_csawmgt_debug Checking test 089 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 245.667297 -0:The maximum resident set size (KB) = 667704 +0:The total amount of wall time = 243.591680 +0:The maximum resident set size (KB) = 667656 Test 089 control_csawmgt_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_ras_debug -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_ras_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_ras_debug Checking test 090 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 159.564107 -0:The maximum resident set size (KB) = 630092 +0:The total amount of wall time = 158.645619 +0:The maximum resident set size (KB) = 629924 Test 090 control_ras_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_diag_debug -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_diag_debug Checking test 091 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 158.750342 -0:The maximum resident set size (KB) = 675196 +0:The total amount of wall time = 158.998762 +0:The maximum resident set size (KB) = 675212 Test 091 control_diag_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_debug_p8 -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_debug_p8 Checking test 092 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 175.575823 -0:The maximum resident set size (KB) = 1443300 +0:The total amount of wall time = 174.927082 +0:The maximum resident set size (KB) = 1443340 Test 092 control_debug_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_debug -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/regional_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/regional_debug Checking test 093 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 1036.330712 -0:The maximum resident set size (KB) = 626296 +0:The total amount of wall time = 1034.967312 +0:The maximum resident set size (KB) = 626376 Test 093 regional_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_debug -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/rap_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/rap_control_debug Checking test 094 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 286.544850 -0:The maximum resident set size (KB) = 987052 +0:The total amount of wall time = 286.334955 +0:The maximum resident set size (KB) = 987080 Test 094 rap_control_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_debug -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/hrrr_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/hrrr_control_debug Checking test 095 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 279.807239 -0:The maximum resident set size (KB) = 983108 +0:The total amount of wall time = 283.270546 +0:The maximum resident set size (KB) = 982980 Test 095 hrrr_control_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_debug -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/rap_unified_drag_suite_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/rap_unified_drag_suite_debug Checking test 096 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 287.469203 -0:The maximum resident set size (KB) = 987032 +0:The total amount of wall time = 286.347713 +0:The maximum resident set size (KB) = 987084 Test 096 rap_unified_drag_suite_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_diag_debug -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/rap_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/rap_diag_debug Checking test 097 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 297.576245 -0:The maximum resident set size (KB) = 1070340 +0:The total amount of wall time = 296.735726 +0:The maximum resident set size (KB) = 1070256 Test 097 rap_diag_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/rap_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/rap_cires_ugwp_debug Checking test 098 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 292.525355 -0:The maximum resident set size (KB) = 986136 +0:The total amount of wall time = 292.089774 +0:The maximum resident set size (KB) = 986144 Test 098 rap_cires_ugwp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/rap_unified_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/rap_unified_ugwp_debug Checking test 099 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 292.495829 -0:The maximum resident set size (KB) = 987180 +0:The total amount of wall time = 292.637909 +0:The maximum resident set size (KB) = 987208 Test 099 rap_unified_ugwp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_lndp_debug -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/rap_lndp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/rap_lndp_debug Checking test 100 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 289.063919 -0:The maximum resident set size (KB) = 987824 +0:The total amount of wall time = 289.511639 +0:The maximum resident set size (KB) = 987796 Test 100 rap_lndp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_progcld_thompson_debug -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/rap_progcld_thompson_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/rap_progcld_thompson_debug Checking test 101 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 286.852958 -0:The maximum resident set size (KB) = 986960 +0:The total amount of wall time = 287.205492 +0:The maximum resident set size (KB) = 986936 Test 101 rap_progcld_thompson_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_noah_debug -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/rap_noah_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/rap_noah_debug Checking test 102 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 281.654812 -0:The maximum resident set size (KB) = 984860 +0:The total amount of wall time = 281.012306 +0:The maximum resident set size (KB) = 984924 Test 102 rap_noah_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_sfcdiff_debug -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/rap_sfcdiff_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/rap_sfcdiff_debug Checking test 103 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 287.093114 -0:The maximum resident set size (KB) = 986856 +0:The total amount of wall time = 286.506482 +0:The maximum resident set size (KB) = 986960 Test 103 rap_sfcdiff_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/rap_noah_sfcdiff_cires_ugwp_debug Checking test 104 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 472.560148 -0:The maximum resident set size (KB) = 985780 +0:The total amount of wall time = 470.796110 +0:The maximum resident set size (KB) = 985800 Test 104 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_v1beta_debug -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/rrfs_v1beta_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/rrfs_v1beta_debug Checking test 105 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 284.354064 -0:The maximum resident set size (KB) = 983024 +0:The total amount of wall time = 282.102343 +0:The maximum resident set size (KB) = 982804 Test 105 rrfs_v1beta_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_clm_lake_debug -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/rap_clm_lake_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/rap_clm_lake_debug Checking test 106 rap_clm_lake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 350.385568 -0:The maximum resident set size (KB) = 989940 +0:The total amount of wall time = 349.875229 +0:The maximum resident set size (KB) = 989796 Test 106 rap_clm_lake_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_flake_debug -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/rap_flake_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/rap_flake_debug Checking test 107 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 287.264902 -0:The maximum resident set size (KB) = 987448 +0:The total amount of wall time = 285.370537 +0:The maximum resident set size (KB) = 987100 Test 107 rap_flake_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_wam_debug -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_wam_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_wam_debug Checking test 108 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 294.787230 -0:The maximum resident set size (KB) = 235744 +0:The total amount of wall time = 289.429833 +0:The maximum resident set size (KB) = 235624 Test 108 control_wam_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 109 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3577,14 +3584,14 @@ Checking test 109 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 245.648933 -0:The maximum resident set size (KB) = 855416 +0:The total amount of wall time = 246.578954 +0:The maximum resident set size (KB) = 855136 Test 109 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/rap_control_dyn32_phy32 Checking test 110 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3631,14 +3638,14 @@ Checking test 110 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 399.019519 -0:The maximum resident set size (KB) = 708228 +0:The total amount of wall time = 400.109912 +0:The maximum resident set size (KB) = 708020 Test 110 rap_control_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/hrrr_control_dyn32_phy32 Checking test 111 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3685,14 +3692,14 @@ Checking test 111 hrrr_control_dyn32_phy32 results .... Comparing 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.379255 -0:The maximum resident set size (KB) = 708004 +0:The total amount of wall time = 199.338004 +0:The maximum resident set size (KB) = 707904 Test 111 hrrr_control_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/rap_2threads_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/rap_2threads_dyn32_phy32 Checking test 112 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3739,14 +3746,14 @@ Checking test 112 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 386.461614 -0:The maximum resident set size (KB) = 759936 +0:The total amount of wall time = 387.270117 +0:The maximum resident set size (KB) = 757156 Test 112 rap_2threads_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/hrrr_control_2threads_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/hrrr_control_2threads_dyn32_phy32 Checking test 113 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3793,14 +3800,14 @@ Checking test 113 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 273.962865 -0:The maximum resident set size (KB) = 753240 +0:The total amount of wall time = 276.772563 +0:The maximum resident set size (KB) = 753248 Test 113 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/hrrr_control_decomp_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/hrrr_control_decomp_dyn32_phy32 Checking test 114 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3847,14 +3854,14 @@ Checking test 114 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 214.054548 -0:The maximum resident set size (KB) = 705932 +0:The total amount of wall time = 214.986688 +0:The maximum resident set size (KB) = 705824 Test 114 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/rap_restart_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/rap_restart_dyn32_phy32 Checking test 115 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3893,28 +3900,28 @@ Checking test 115 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 296.891445 -0:The maximum resident set size (KB) = 545284 +0:The total amount of wall time = 296.102092 +0:The maximum resident set size (KB) = 545684 Test 115 rap_restart_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/hrrr_control_restart_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/hrrr_control_restart_dyn32_phy32 Checking test 116 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 103.153294 -0:The maximum resident set size (KB) = 536720 +0:The total amount of wall time = 103.336648 +0:The maximum resident set size (KB) = 536644 Test 116 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_dyn64_phy32 -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/rap_control_dyn64_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/rap_control_dyn64_phy32 Checking test 117 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3961,81 +3968,81 @@ Checking test 117 rap_control_dyn64_phy32 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 = 272.254993 -0:The maximum resident set size (KB) = 730732 +0:The total amount of wall time = 272.530635 +0:The maximum resident set size (KB) = 730592 Test 117 rap_control_dyn64_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/rap_control_debug_dyn32_phy32 Checking test 118 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 281.495019 -0:The maximum resident set size (KB) = 872284 +0:The total amount of wall time = 281.756508 +0:The maximum resident set size (KB) = 872304 Test 118 rap_control_debug_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/hrrr_control_debug_dyn32_phy32 Checking test 119 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 275.302387 -0:The maximum resident set size (KB) = 871000 +0:The total amount of wall time = 275.552685 +0:The maximum resident set size (KB) = 871156 Test 119 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/rap_control_dyn64_phy32_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/rap_control_dyn64_phy32_debug Checking test 120 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 288.354232 -0:The maximum resident set size (KB) = 892948 +0:The total amount of wall time = 286.075594 +0:The maximum resident set size (KB) = 893064 Test 120 rap_control_dyn64_phy32_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/hafs_regional_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/hafs_regional_atm Checking test 121 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -0:The total amount of wall time = 258.410788 -0:The maximum resident set size (KB) = 743224 +0:The total amount of wall time = 258.554771 +0:The maximum resident set size (KB) = 742824 Test 121 hafs_regional_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/hafs_regional_atm_thompson_gfdlsf +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/hafs_regional_atm_thompson_gfdlsf Checking test 122 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -0:The total amount of wall time = 293.673615 -0:The maximum resident set size (KB) = 1098628 +0:The total amount of wall time = 292.328546 +0:The maximum resident set size (KB) = 1099068 Test 122 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm_ocn -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/hafs_regional_atm_ocn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/hafs_regional_atm_ocn Checking test 123 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4044,14 +4051,14 @@ Checking test 123 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 454.456908 -0:The maximum resident set size (KB) = 743148 +0:The total amount of wall time = 453.848591 +0:The maximum resident set size (KB) = 743408 Test 123 hafs_regional_atm_ocn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm_wav -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/hafs_regional_atm_wav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/hafs_regional_atm_wav Checking test 124 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4060,14 +4067,14 @@ Checking test 124 hafs_regional_atm_wav 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 = 1053.170236 -0:The maximum resident set size (KB) = 773044 +0:The total amount of wall time = 1081.968270 +0:The maximum resident set size (KB) = 772624 Test 124 hafs_regional_atm_wav PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm_ocn_wav -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/hafs_regional_atm_ocn_wav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/hafs_regional_atm_ocn_wav Checking test 125 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4078,28 +4085,28 @@ Checking test 125 hafs_regional_atm_ocn_wav 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 = 1113.133268 -0:The maximum resident set size (KB) = 793060 +0:The total amount of wall time = 1131.116205 +0:The maximum resident set size (KB) = 791996 Test 125 hafs_regional_atm_ocn_wav PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_1nest_atm -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/hafs_regional_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/hafs_regional_1nest_atm Checking test 126 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 365.607502 -0:The maximum resident set size (KB) = 301112 +0:The total amount of wall time = 373.814677 +0:The maximum resident set size (KB) = 300900 Test 126 hafs_regional_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/hafs_regional_telescopic_2nests_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/hafs_regional_telescopic_2nests_atm Checking test 127 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4108,28 +4115,28 @@ Checking test 127 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -0:The total amount of wall time = 425.989139 -0:The maximum resident set size (KB) = 321096 +0:The total amount of wall time = 426.322673 +0:The maximum resident set size (KB) = 320908 Test 127 hafs_regional_telescopic_2nests_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_global_1nest_atm -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/hafs_global_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/hafs_global_1nest_atm Checking test 128 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 171.191424 -0:The maximum resident set size (KB) = 214616 +0:The total amount of wall time = 170.990078 +0:The maximum resident set size (KB) = 214460 Test 128 hafs_global_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_global_multiple_4nests_atm -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/hafs_global_multiple_4nests_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/hafs_global_multiple_4nests_atm Checking test 129 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4147,14 +4154,14 @@ Checking test 129 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -0:The total amount of wall time = 480.668610 -0:The maximum resident set size (KB) = 303684 +0:The total amount of wall time = 482.235375 +0:The maximum resident set size (KB) = 303588 Test 129 hafs_global_multiple_4nests_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/hafs_regional_specified_moving_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/hafs_regional_specified_moving_1nest_atm Checking test 130 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4163,28 +4170,28 @@ Checking test 130 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -0:The total amount of wall time = 239.938451 -0:The maximum resident set size (KB) = 319240 +0:The total amount of wall time = 241.203101 +0:The maximum resident set size (KB) = 318784 Test 130 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/hafs_regional_storm_following_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/hafs_regional_storm_following_1nest_atm Checking test 131 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 227.619369 -0:The maximum resident set size (KB) = 318948 +0:The total amount of wall time = 227.932425 +0:The maximum resident set size (KB) = 318964 Test 131 hafs_regional_storm_following_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/hafs_regional_storm_following_1nest_atm_ocn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/hafs_regional_storm_following_1nest_atm_ocn Checking test 132 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4193,42 +4200,42 @@ Checking test 132 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -0:The total amount of wall time = 281.891182 -0:The maximum resident set size (KB) = 375320 +0:The total amount of wall time = 280.372710 +0:The maximum resident set size (KB) = 375240 Test 132 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_global_storm_following_1nest_atm -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/hafs_global_storm_following_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/hafs_global_storm_following_1nest_atm Checking test 133 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 66.446998 -0:The maximum resident set size (KB) = 233960 +0:The total amount of wall time = 66.426730 +0:The maximum resident set size (KB) = 234628 -Test 133 hafs_global_storm_following_1nest_atm PASS +Test 133 hafs_global_storm_following_1nest_atm PASS Tries: 2 baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 134 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 763.550379 -0:The maximum resident set size (KB) = 401956 +0:The total amount of wall time = 763.447116 +0:The maximum resident set size (KB) = 401724 Test 134 hafs_regional_storm_following_1nest_atm_ocn_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4239,14 +4246,14 @@ Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -0:The total amount of wall time = 721.856209 -0:The maximum resident set size (KB) = 428968 +0:The total amount of wall time = 777.911676 +0:The maximum resident set size (KB) = 428020 -Test 135 hafs_regional_storm_following_1nest_atm_ocn_wav PASS +Test 135 hafs_regional_storm_following_1nest_atm_ocn_wav PASS Tries: 2 baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_docn -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/hafs_regional_docn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/hafs_regional_docn Checking test 136 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4254,14 +4261,14 @@ Checking test 136 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 389.414687 -0:The maximum resident set size (KB) = 756816 +0:The total amount of wall time = 391.232694 +0:The maximum resident set size (KB) = 756796 Test 136 hafs_regional_docn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_docn_oisst -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/hafs_regional_docn_oisst +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/hafs_regional_docn_oisst Checking test 137 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4269,131 +4276,131 @@ Checking test 137 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 391.445828 -0:The maximum resident set size (KB) = 736264 +0:The total amount of wall time = 390.458612 +0:The maximum resident set size (KB) = 736724 Test 137 hafs_regional_docn_oisst PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_datm_cdeps -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/hafs_regional_datm_cdeps +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/hafs_regional_datm_cdeps Checking test 138 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -0:The total amount of wall time = 1285.697991 -0:The maximum resident set size (KB) = 887960 +0:The total amount of wall time = 1288.271311 +0:The maximum resident set size (KB) = 887872 Test 138 hafs_regional_datm_cdeps PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/datm_cdeps_control_cfsr Checking test 139 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 161.252337 -0:The maximum resident set size (KB) = 716692 +0:The total amount of wall time = 167.069253 +0:The maximum resident set size (KB) = 716664 Test 139 datm_cdeps_control_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/datm_cdeps_restart_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/datm_cdeps_restart_cfsr Checking test 140 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 100.776304 -0:The maximum resident set size (KB) = 704856 +0:The total amount of wall time = 99.938564 +0:The maximum resident set size (KB) = 704844 Test 140 datm_cdeps_restart_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_control_gefs -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/datm_cdeps_control_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/datm_cdeps_control_gefs Checking test 141 datm_cdeps_control_gefs 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 = 160.543504 -0:The maximum resident set size (KB) = 607456 +0:The total amount of wall time = 156.354849 +0:The maximum resident set size (KB) = 607444 Test 141 datm_cdeps_control_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_iau_gefs -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/datm_cdeps_iau_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/datm_cdeps_iau_gefs Checking test 142 datm_cdeps_iau_gefs 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 = 163.904742 +0:The total amount of wall time = 164.294857 0:The maximum resident set size (KB) = 607476 Test 142 datm_cdeps_iau_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_stochy_gefs -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/datm_cdeps_stochy_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/datm_cdeps_stochy_gefs Checking test 143 datm_cdeps_stochy_gefs 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 = 164.616527 -0:The maximum resident set size (KB) = 607512 +0:The total amount of wall time = 163.088325 +0:The maximum resident set size (KB) = 607440 Test 143 datm_cdeps_stochy_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_ciceC_cfsr -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/datm_cdeps_ciceC_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/datm_cdeps_ciceC_cfsr Checking test 144 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 167.860170 -0:The maximum resident set size (KB) = 728140 +0:The total amount of wall time = 167.787924 +0:The maximum resident set size (KB) = 727792 Test 144 datm_cdeps_ciceC_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_bulk_cfsr -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/datm_cdeps_bulk_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/datm_cdeps_bulk_cfsr Checking test 145 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 168.810807 -0:The maximum resident set size (KB) = 716688 +0:The total amount of wall time = 167.514861 +0:The maximum resident set size (KB) = 716716 Test 145 datm_cdeps_bulk_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_bulk_gefs -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/datm_cdeps_bulk_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/datm_cdeps_bulk_gefs Checking test 146 datm_cdeps_bulk_gefs 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 = 159.505684 -0:The maximum resident set size (KB) = 607468 +0:The total amount of wall time = 162.774106 +0:The maximum resident set size (KB) = 607464 Test 146 datm_cdeps_bulk_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_mx025_cfsr -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/datm_cdeps_mx025_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/datm_cdeps_mx025_cfsr Checking test 147 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4402,14 +4409,14 @@ Checking test 147 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 423.023532 -0:The maximum resident set size (KB) = 514380 +0:The total amount of wall time = 421.919988 +0:The maximum resident set size (KB) = 514296 Test 147 datm_cdeps_mx025_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_mx025_gefs -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/datm_cdeps_mx025_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/datm_cdeps_mx025_gefs Checking test 148 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4418,77 +4425,77 @@ Checking test 148 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 415.883147 +0:The total amount of wall time = 748.848306 0:The maximum resident set size (KB) = 494816 Test 148 datm_cdeps_mx025_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/datm_cdeps_multiple_files_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/datm_cdeps_multiple_files_cfsr Checking test 149 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 167.031150 -0:The maximum resident set size (KB) = 727672 +0:The total amount of wall time = 166.990608 +0:The maximum resident set size (KB) = 716692 Test 149 datm_cdeps_multiple_files_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/datm_cdeps_3072x1536_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/datm_cdeps_3072x1536_cfsr Checking test 150 datm_cdeps_3072x1536_cfsr 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 = 266.458123 -0:The maximum resident set size (KB) = 1942048 +0:The total amount of wall time = 256.796251 +0:The maximum resident set size (KB) = 1940352 Test 150 datm_cdeps_3072x1536_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_gfs -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/datm_cdeps_gfs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/datm_cdeps_gfs Checking test 151 datm_cdeps_gfs 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 = 267.387189 -0:The maximum resident set size (KB) = 1942040 +0:The total amount of wall time = 266.340100 +0:The maximum resident set size (KB) = 1941080 Test 151 datm_cdeps_gfs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_debug_cfsr -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/datm_cdeps_debug_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/datm_cdeps_debug_cfsr Checking test 152 datm_cdeps_debug_cfsr results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -0:The total amount of wall time = 368.856946 -0:The maximum resident set size (KB) = 700600 +0:The total amount of wall time = 369.634710 +0:The maximum resident set size (KB) = 700736 Test 152 datm_cdeps_debug_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_control_cfsr_faster -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/datm_cdeps_control_cfsr_faster +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/datm_cdeps_control_cfsr_faster Checking test 153 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 167.746460 -0:The maximum resident set size (KB) = 716724 +0:The total amount of wall time = 168.270659 +0:The maximum resident set size (KB) = 716776 Test 153 datm_cdeps_control_cfsr_faster PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/datm_cdeps_lnd_gswp3 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/datm_cdeps_lnd_gswp3 Checking test 154 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4497,14 +4504,14 @@ Checking test 154 datm_cdeps_lnd_gswp3 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 = 10.751994 -0:The maximum resident set size (KB) = 208252 +0:The total amount of wall time = 10.471315 +0:The maximum resident set size (KB) = 210104 Test 154 datm_cdeps_lnd_gswp3 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/datm_cdeps_lnd_gswp3_rst +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/datm_cdeps_lnd_gswp3_rst Checking test 155 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4513,14 +4520,14 @@ Checking test 155 datm_cdeps_lnd_gswp3_rst 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 = 15.840502 -0:The maximum resident set size (KB) = 208212 +0:The total amount of wall time = 15.872628 +0:The maximum resident set size (KB) = 216416 Test 155 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_atmlnd_sbs -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_p8_atmlnd_sbs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_p8_atmlnd_sbs Checking test 156 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4605,14 +4612,14 @@ Checking test 156 control_p8_atmlnd_sbs 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 = 232.528273 -0:The maximum resident set size (KB) = 1463204 +0:The total amount of wall time = 224.993545 +0:The maximum resident set size (KB) = 1463244 Test 156 control_p8_atmlnd_sbs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/atmwav_control_noaero_p8 -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/atmwav_control_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/atmwav_control_noaero_p8 Checking test 157 atmwav_control_noaero_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4655,14 +4662,14 @@ Checking test 157 atmwav_control_noaero_p8 results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK -0:The total amount of wall time = 100.908419 -0:The maximum resident set size (KB) = 1434576 +0:The total amount of wall time = 100.537294 +0:The maximum resident set size (KB) = 1434620 Test 157 atmwav_control_noaero_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_atmwav -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/control_atmwav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_atmwav Checking test 158 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4706,14 +4713,14 @@ Checking test 158 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -0:The total amount of wall time = 100.640303 +0:The total amount of wall time = 99.686855 0:The maximum resident set size (KB) = 475360 Test 158 control_atmwav PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/atmaero_control_p8 -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/atmaero_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/atmaero_control_p8 Checking test 159 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4757,14 +4764,14 @@ Checking test 159 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 252.053716 -0:The maximum resident set size (KB) = 2703968 +0:The total amount of wall time = 251.374553 +0:The maximum resident set size (KB) = 2703988 Test 159 atmaero_control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/atmaero_control_p8_rad -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/atmaero_control_p8_rad +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/atmaero_control_p8_rad Checking test 160 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4808,14 +4815,14 @@ Checking test 160 atmaero_control_p8_rad results .... Comparing 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.185803 +0:The total amount of wall time = 306.150263 0:The maximum resident set size (KB) = 2758836 Test 160 atmaero_control_p8_rad PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/atmaero_control_p8_rad_micro -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/atmaero_control_p8_rad_micro +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/atmaero_control_p8_rad_micro Checking test 161 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4859,14 +4866,14 @@ Checking test 161 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 301.293732 -0:The maximum resident set size (KB) = 2765640 +0:The total amount of wall time = 305.739836 +0:The maximum resident set size (KB) = 2765668 Test 161 atmaero_control_p8_rad_micro PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_atmaq -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/regional_atmaq +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/regional_atmaq Checking test 162 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4882,14 +4889,14 @@ Checking test 162 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -0:The total amount of wall time = 745.297047 -0:The maximum resident set size (KB) = 999656 +0:The total amount of wall time = 749.188956 +0:The maximum resident set size (KB) = 999524 Test 162 regional_atmaq PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_atmaq_faster -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_50802/regional_atmaq_faster +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/regional_atmaq_faster Checking test 163 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4905,50 +4912,12 @@ Checking test 163 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -0:The total amount of wall time = 693.508165 -0:The maximum resident set size (KB) = 999416 +0:The total amount of wall time = 695.481777 +0:The maximum resident set size (KB) = 999708 Test 163 regional_atmaq_faster PASS -FAILED TESTS: -Test rrfs_conus13km_hrrr_warm_restart_mismatch 074 failed in run_test failed - -REGRESSION TEST FAILED -Sun Apr 30 14:28:02 MDT 2023 -Elapsed time: 01h:18m:50s. Have a nice day! -Sun Apr 30 16:08:18 MDT 2023 -Start Regression test - -Compile 001 elapsed time 1049 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_24933/rrfs_conus13km_hrrr_warm -Checking test 001 rrfs_conus13km_hrrr_warm 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 - -0:The total amount of wall time = 140.263096 -0:The maximum resident set size (KB) = 667452 - -Test 001 rrfs_conus13km_hrrr_warm PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /glade/scratch/jongkim/pr-1715-intel/jongkim/FV3_RT/rt_24933/rrfs_conus13km_hrrr_warm_restart_mismatch -Checking test 002 rrfs_conus13km_hrrr_warm_restart_mismatch results .... - Comparing sfcf002.nc .........OK - Comparing atmf002.nc .........OK - -0:The total amount of wall time = 72.623009 -0:The maximum resident set size (KB) = 640268 - -Test 002 rrfs_conus13km_hrrr_warm_restart_mismatch PASS - REGRESSION TEST WAS SUCCESSFUL -Sun Apr 30 16:34:28 MDT 2023 -Elapsed time: 00h:26m:10s. Have a nice day! +Wed May 3 08:00:14 MDT 2023 +Elapsed time: 01h:36m:44s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 96c1bb7ba4f..cbbfc9c3280 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,21 +1,21 @@ -Sun Apr 30 22:22:59 UTC 2023 +Wed May 3 12:17:31 UTC 2023 Start Regression test -Compile 001 elapsed time 189 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 002 elapsed time 199 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 190 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 002 elapsed time 193 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile 003 elapsed time 333 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 102 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 193 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 418 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 342 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 339 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 266 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 238 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 145 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 012 elapsed time 112 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 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 005 elapsed time 190 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 412 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 333 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 335 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 261 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 233 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 144 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 012 elapsed time 111 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/control_c48 Checking test 001 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -54,14 +54,14 @@ Checking test 001 control_c48 results .... Comparing 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.816084 -0: The maximum resident set size (KB) = 705036 +0: The total amount of wall time = 688.482897 +0: The maximum resident set size (KB) = 707288 Test 001 control_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/control_stochy Checking test 002 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -72,14 +72,14 @@ Checking test 002 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 661.572556 - 0: The maximum resident set size (KB) = 480536 + 0: The total amount of wall time = 660.985407 + 0: The maximum resident set size (KB) = 482796 Test 002 control_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/control_ras -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/control_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/control_ras Checking test 003 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -90,14 +90,14 @@ Checking test 003 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 839.565690 - 0: The maximum resident set size (KB) = 486508 + 0: The total amount of wall time = 831.055424 + 0: The maximum resident set size (KB) = 486888 Test 003 control_ras PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/control_p8 Checking test 004 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -144,14 +144,14 @@ Checking test 004 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 900.889145 - 0: The maximum resident set size (KB) = 1240688 + 0: The total amount of wall time = 893.979720 + 0: The maximum resident set size (KB) = 1238152 Test 004 control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/control_flake -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/control_flake +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/control_flake Checking test 005 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -162,14 +162,14 @@ Checking test 005 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 1537.182282 - 0: The maximum resident set size (KB) = 521984 + 0: The total amount of wall time = 1517.911881 + 0: The maximum resident set size (KB) = 529752 Test 005 control_flake PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/rap_control Checking test 006 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -216,14 +216,14 @@ Checking test 006 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1488.372449 - 0: The maximum resident set size (KB) = 827148 + 0: The total amount of wall time = 1447.919170 + 0: The maximum resident set size (KB) = 832088 Test 006 rap_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/rap_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/rap_decomp Checking test 007 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -270,14 +270,14 @@ Checking test 007 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1430.764861 - 0: The maximum resident set size (KB) = 832244 + 0: The total amount of wall time = 1481.147286 + 0: The maximum resident set size (KB) = 829320 Test 007 rap_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/rap_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/rap_2threads Checking test 008 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -324,14 +324,14 @@ Checking test 008 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1340.825302 - 0: The maximum resident set size (KB) = 900936 + 0: The total amount of wall time = 1322.796703 + 0: The maximum resident set size (KB) = 893992 Test 008 rap_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/rap_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/rap_restart Checking test 009 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -370,14 +370,14 @@ Checking test 009 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 714.745097 - 0: The maximum resident set size (KB) = 544988 + 0: The total amount of wall time = 739.405449 + 0: The maximum resident set size (KB) = 547340 Test 009 rap_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/rap_sfcdiff Checking test 010 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -424,14 +424,14 @@ Checking test 010 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1463.881595 - 0: The maximum resident set size (KB) = 827504 + 0: The total amount of wall time = 1447.051493 + 0: The maximum resident set size (KB) = 827532 Test 010 rap_sfcdiff PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/rap_sfcdiff_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/rap_sfcdiff_decomp Checking test 011 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -478,14 +478,14 @@ Checking test 011 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1486.206499 - 0: The maximum resident set size (KB) = 826252 + 0: The total amount of wall time = 1463.056594 + 0: The maximum resident set size (KB) = 828192 Test 011 rap_sfcdiff_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/rap_sfcdiff_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/rap_sfcdiff_restart Checking test 012 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -524,14 +524,14 @@ Checking test 012 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1080.669798 - 0: The maximum resident set size (KB) = 555076 + 0: The total amount of wall time = 1102.613687 + 0: The maximum resident set size (KB) = 551428 Test 012 rap_sfcdiff_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/hrrr_control Checking test 013 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -578,14 +578,14 @@ Checking test 013 hrrr_control results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1459.616064 - 0: The maximum resident set size (KB) = 823676 + 0: The total amount of wall time = 1457.879838 + 0: The maximum resident set size (KB) = 826804 Test 013 hrrr_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/hrrr_control_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/hrrr_control_2threads Checking test 014 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -632,14 +632,14 @@ Checking test 014 hrrr_control_2threads results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1510.983171 - 0: The maximum resident set size (KB) = 890960 + 0: The total amount of wall time = 1515.883001 + 0: The maximum resident set size (KB) = 897876 Test 014 hrrr_control_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/hrrr_control_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/hrrr_control_decomp Checking test 015 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -686,28 +686,28 @@ Checking test 015 hrrr_control_decomp results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1437.808125 - 0: The maximum resident set size (KB) = 825160 + 0: The total amount of wall time = 1452.034537 + 0: The maximum resident set size (KB) = 822992 Test 015 hrrr_control_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/hrrr_control_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/hrrr_control_restart Checking test 016 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1026.933050 - 0: The maximum resident set size (KB) = 549748 + 0: The total amount of wall time = 1066.766152 + 0: The maximum resident set size (KB) = 546928 Test 016 hrrr_control_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/rrfs_v1beta Checking test 017 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -754,14 +754,14 @@ Checking test 017 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1505.579023 - 0: The maximum resident set size (KB) = 823172 + 0: The total amount of wall time = 1466.919686 + 0: The maximum resident set size (KB) = 822448 Test 017 rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/rrfs_smoke_conus13km_hrrr_warm Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -770,14 +770,14 @@ Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 833.363666 - 0: The maximum resident set size (KB) = 674136 + 0: The total amount of wall time = 811.409130 + 0: The maximum resident set size (KB) = 670460 Test 018 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/rrfs_smoke_conus13km_hrrr_warm_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 019 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -786,14 +786,14 @@ Checking test 019 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 1079.085649 - 0: The maximum resident set size (KB) = 668140 + 0: The total amount of wall time = 1111.640750 + 0: The maximum resident set size (KB) = 670028 Test 019 rrfs_smoke_conus13km_hrrr_warm_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/rrfs_conus13km_hrrr_warm Checking test 020 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -802,14 +802,14 @@ Checking test 020 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 788.029145 - 0: The maximum resident set size (KB) = 647852 + 0: The total amount of wall time = 782.246514 + 0: The maximum resident set size (KB) = 648016 Test 020 rrfs_conus13km_hrrr_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/rrfs_smoke_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/rrfs_smoke_conus13km_radar_tten_warm Checking test 021 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -818,262 +818,262 @@ Checking test 021 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 820.703579 - 0: The maximum resident set size (KB) = 675108 + 0: The total amount of wall time = 811.696104 + 0: The maximum resident set size (KB) = 676200 Test 021 rrfs_smoke_conus13km_radar_tten_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 022 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 394.311709 - 0: The maximum resident set size (KB) = 636016 + 0: The total amount of wall time = 404.652558 + 0: The maximum resident set size (KB) = 636748 Test 022 rrfs_conus13km_hrrr_warm_restart_mismatch PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/control_diag_debug Checking test 023 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 123.234329 - 0: The maximum resident set size (KB) = 534180 + 0: The total amount of wall time = 123.009659 + 0: The maximum resident set size (KB) = 527884 Test 023 control_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/regional_debug Checking test 024 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 731.831598 - 0: The maximum resident set size (KB) = 591832 + 0: The total amount of wall time = 545.765652 + 0: The maximum resident set size (KB) = 594252 Test 024 regional_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/rap_control_debug Checking test 025 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 172.586100 - 0: The maximum resident set size (KB) = 845184 + 0: The total amount of wall time = 173.151219 + 0: The maximum resident set size (KB) = 842868 Test 025 rap_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/hrrr_control_debug Checking test 026 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 166.183265 - 0: The maximum resident set size (KB) = 834392 + 0: The total amount of wall time = 169.709729 + 0: The maximum resident set size (KB) = 839244 Test 026 hrrr_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/rap_diag_debug Checking test 027 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 210.727235 - 0: The maximum resident set size (KB) = 919348 + 0: The total amount of wall time = 211.082518 + 0: The maximum resident set size (KB) = 920624 Test 027 rap_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/rap_noah_sfcdiff_cires_ugwp_debug Checking test 028 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 269.687128 - 0: The maximum resident set size (KB) = 834208 + 0: The total amount of wall time = 274.422962 + 0: The maximum resident set size (KB) = 834320 Test 028 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/rap_progcld_thompson_debug Checking test 029 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 174.063633 - 0: The maximum resident set size (KB) = 842924 + 0: The total amount of wall time = 176.268615 + 0: The maximum resident set size (KB) = 839160 Test 029 rap_progcld_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/rrfs_v1beta_debug Checking test 030 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 170.617527 - 0: The maximum resident set size (KB) = 833768 + 0: The total amount of wall time = 167.480004 + 0: The maximum resident set size (KB) = 842752 Test 030 rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/control_ras_debug Checking test 031 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 102.123148 - 0: The maximum resident set size (KB) = 481864 + 0: The total amount of wall time = 100.083300 + 0: The maximum resident set size (KB) = 479548 Test 031 control_ras_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/control_stochy_debug Checking test 032 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 116.161577 - 0: The maximum resident set size (KB) = 479484 + 0: The total amount of wall time = 118.871010 + 0: The maximum resident set size (KB) = 472716 Test 032 control_stochy_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/control_debug_p8 Checking test 033 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 114.977993 - 0: The maximum resident set size (KB) = 1232816 + 0: The total amount of wall time = 117.797480 + 0: The maximum resident set size (KB) = 1228152 Test 033 control_debug_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 034 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 634.253660 - 0: The maximum resident set size (KB) = 686272 + 0: The total amount of wall time = 628.513956 + 0: The maximum resident set size (KB) = 689072 Test 034 rrfs_smoke_conus13km_hrrr_warm_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 035 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 705.912461 - 0: The maximum resident set size (KB) = 685500 + 0: The total amount of wall time = 775.204318 + 0: The maximum resident set size (KB) = 686280 Test 035 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/rrfs_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/rrfs_conus13km_hrrr_warm_debug Checking test 036 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 581.070571 - 0: The maximum resident set size (KB) = 658852 + 0: The total amount of wall time = 582.720826 + 0: The maximum resident set size (KB) = 663628 Test 036 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rap_flake_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/rap_flake_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/rap_flake_debug Checking test 037 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 175.202058 - 0: The maximum resident set size (KB) = 838744 + 0: The total amount of wall time = 173.092776 + 0: The maximum resident set size (KB) = 841772 Test 037 rap_flake_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rap_clm_lake_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/rap_clm_lake_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/rap_clm_lake_debug Checking test 038 rap_clm_lake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 190.653243 - 0: The maximum resident set size (KB) = 838376 + 0: The total amount of wall time = 197.679307 + 0: The maximum resident set size (KB) = 842428 Test 038 rap_clm_lake_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/control_wam_debug Checking test 039 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 179.411816 - 0: The maximum resident set size (KB) = 192252 + 0: The total amount of wall time = 181.336815 + 0: The maximum resident set size (KB) = 194460 Test 039 control_wam_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/rap_control_dyn32_phy32 Checking test 040 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1120,14 +1120,14 @@ Checking test 040 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1489.501061 - 0: The maximum resident set size (KB) = 683648 + 0: The total amount of wall time = 1487.510584 + 0: The maximum resident set size (KB) = 687164 Test 040 rap_control_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/hrrr_control_dyn32_phy32 Checking test 041 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1174,14 +1174,14 @@ Checking test 041 hrrr_control_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 721.549332 - 0: The maximum resident set size (KB) = 677996 + 0: The total amount of wall time = 734.921167 + 0: The maximum resident set size (KB) = 684736 Test 041 hrrr_control_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/rap_2threads_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/rap_2threads_dyn32_phy32 Checking test 042 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1228,14 +1228,14 @@ Checking test 042 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1379.610616 - 0: The maximum resident set size (KB) = 728056 + 0: The total amount of wall time = 1323.603505 + 0: The maximum resident set size (KB) = 734388 Test 042 rap_2threads_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/hrrr_control_2threads_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/hrrr_control_2threads_dyn32_phy32 Checking test 043 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1282,14 +1282,14 @@ Checking test 043 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 750.635022 - 0: The maximum resident set size (KB) = 725368 + 0: The total amount of wall time = 767.171777 + 0: The maximum resident set size (KB) = 729748 Test 043 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/hrrr_control_decomp_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/hrrr_control_decomp_dyn32_phy32 Checking test 044 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1336,14 +1336,14 @@ Checking test 044 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 711.349101 - 0: The maximum resident set size (KB) = 679808 + 0: The total amount of wall time = 725.839427 + 0: The maximum resident set size (KB) = 688464 Test 044 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/rap_restart_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/rap_restart_dyn32_phy32 Checking test 045 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1382,28 +1382,28 @@ Checking test 045 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1079.546248 - 0: The maximum resident set size (KB) = 503004 + 0: The total amount of wall time = 1062.224580 + 0: The maximum resident set size (KB) = 506060 Test 045 rap_restart_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/hrrr_control_restart_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/hrrr_control_restart_dyn32_phy32 Checking test 046 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 362.057455 - 0: The maximum resident set size (KB) = 508200 + 0: The total amount of wall time = 367.108703 + 0: The maximum resident set size (KB) = 509712 Test 046 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/rap_control_dyn64_phy32 Checking test 047 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1450,56 +1450,56 @@ Checking test 047 rap_control_dyn64_phy32 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 = 1054.806448 - 0: The maximum resident set size (KB) = 704348 + 0: The total amount of wall time = 1078.457300 + 0: The maximum resident set size (KB) = 708404 Test 047 rap_control_dyn64_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/rap_control_debug_dyn32_phy32 Checking test 048 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 170.481312 - 0: The maximum resident set size (KB) = 700496 + 0: The total amount of wall time = 170.775570 + 0: The maximum resident set size (KB) = 694220 Test 048 rap_control_debug_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/hrrr_control_debug_dyn32_phy32 Checking test 049 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 163.874128 - 0: The maximum resident set size (KB) = 692064 + 0: The total amount of wall time = 167.858367 + 0: The maximum resident set size (KB) = 694412 Test 049 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/rap_control_dyn64_phy32_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/rap_control_dyn64_phy32_debug Checking test 050 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 199.446859 - 0: The maximum resident set size (KB) = 718460 + 0: The total amount of wall time = 200.773534 + 0: The maximum resident set size (KB) = 713308 Test 050 rap_control_dyn64_phy32_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/cpld_control_p8 Checking test 051 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1564,14 +1564,14 @@ Checking test 051 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1678.689840 - 0: The maximum resident set size (KB) = 1427492 + 0: The total amount of wall time = 1705.790576 + 0: The maximum resident set size (KB) = 1429012 -Test 051 cpld_control_p8 PASS +Test 051 cpld_control_p8 PASS Tries: 2 baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/cpld_control_nowave_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/cpld_control_nowave_noaero_p8 Checking test 052 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1633,14 +1633,14 @@ Checking test 052 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 1211.642978 - 0: The maximum resident set size (KB) = 1329604 + 0: The total amount of wall time = 1223.230524 + 0: The maximum resident set size (KB) = 1329020 Test 052 cpld_control_nowave_noaero_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/cpld_debug_p8 Checking test 053 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1693,25 +1693,25 @@ Checking test 053 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1199.613956 - 0: The maximum resident set size (KB) = 1437840 + 0: The total amount of wall time = 979.614616 + 0: The maximum resident set size (KB) = 1438488 Test 053 cpld_debug_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_8386/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/datm_cdeps_control_cfsr Checking test 054 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 168.697269 - 0: The maximum resident set size (KB) = 658784 + 0: The total amount of wall time = 176.404769 + 0: The maximum resident set size (KB) = 666732 Test 054 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Sun Apr 30 23:19:48 UTC 2023 -Elapsed time: 00h:56m:50s. Have a nice day! +Wed May 3 13:27:46 UTC 2023 +Elapsed time: 01h:10m:15s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index e5b368115e2..5edb955fcd0 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,43 +1,43 @@ -Sun Apr 30 22:22:44 UTC 2023 +Wed May 3 12:02:42 UTC 2023 Start Regression test -Compile 001 elapsed time 639 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 639 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 603 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 228 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 204 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 563 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 001 elapsed time 632 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 647 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 595 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 224 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 206 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 556 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 553 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 729 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 578 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 010 elapsed time 532 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 515 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 476 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 638 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 217 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 015 elapsed time 160 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 504 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 493 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 166 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 166 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 554 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 021 elapsed time 186 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 661 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 557 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 024 elapsed time 177 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 104 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 176 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 51 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 527 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 537 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 542 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 525 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 497 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 033 elapsed time 173 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 034 elapsed time 564 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 724 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 573 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 010 elapsed time 530 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 512 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 471 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 612 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 219 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 015 elapsed time 154 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 492 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 495 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 165 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 165 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 546 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 021 elapsed time 189 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 648 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 575 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 024 elapsed time 180 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 103 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 178 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 50 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 509 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 531 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 548 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 493 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 491 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 033 elapsed time 168 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 034 elapsed time 566 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8_mixedmode -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/cpld_control_p8_mixedmode +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -102,14 +102,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 308.037318 - 0: The maximum resident set size (KB) = 3133176 + 0: The total amount of wall time = 307.648474 + 0: The maximum resident set size (KB) = 3090808 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_gfsv17 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/cpld_control_gfsv17 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -173,14 +173,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 223.984964 - 0: The maximum resident set size (KB) = 1710796 + 0: The total amount of wall time = 224.971869 + 0: The maximum resident set size (KB) = 1712388 Test 002 cpld_control_gfsv17 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -245,14 +245,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 339.705779 - 0: The maximum resident set size (KB) = 3155724 + 0: The total amount of wall time = 343.731023 + 0: The maximum resident set size (KB) = 3182256 Test 003 cpld_control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/cpld_restart_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -305,14 +305,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 193.007653 - 0: The maximum resident set size (KB) = 3044964 + 0: The total amount of wall time = 193.773702 + 0: The maximum resident set size (KB) = 3045440 Test 004 cpld_restart_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/cpld_control_qr_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -377,14 +377,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 342.343960 - 0: The maximum resident set size (KB) = 3166428 + 0: The total amount of wall time = 341.822097 + 0: The maximum resident set size (KB) = 3178292 Test 005 cpld_control_qr_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/cpld_restart_qr_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -437,14 +437,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 196.562895 - 0: The maximum resident set size (KB) = 3049604 + 0: The total amount of wall time = 199.282259 + 0: The maximum resident set size (KB) = 3052536 Test 006 cpld_restart_qr_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/cpld_2threads_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -497,14 +497,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 349.052770 - 0: The maximum resident set size (KB) = 3501756 + 0: The total amount of wall time = 351.731761 + 0: The maximum resident set size (KB) = 3502684 Test 007 cpld_2threads_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/cpld_decomp_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -557,14 +557,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 344.106498 - 0: The maximum resident set size (KB) = 3162156 + 0: The total amount of wall time = 339.640543 + 0: The maximum resident set size (KB) = 3156984 Test 008 cpld_decomp_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/cpld_mpi_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -617,14 +617,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 282.008323 - 0: The maximum resident set size (KB) = 3001688 + 0: The total amount of wall time = 280.130958 + 0: The maximum resident set size (KB) = 3012656 Test 009 cpld_mpi_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_ciceC_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/cpld_control_ciceC_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -689,14 +689,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 340.650104 - 0: The maximum resident set size (KB) = 3165088 + 0: The total amount of wall time = 342.419678 + 0: The maximum resident set size (KB) = 3166256 Test 010 cpld_control_ciceC_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/cpld_control_c192_p8 Checking test 011 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -749,14 +749,14 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 587.524736 - 0: The maximum resident set size (KB) = 3247608 + 0: The total amount of wall time = 590.568412 + 0: The maximum resident set size (KB) = 3215376 Test 011 cpld_control_c192_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/cpld_restart_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/cpld_restart_c192_p8 Checking test 012 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -809,14 +809,14 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 380.042794 - 0: The maximum resident set size (KB) = 3137040 + 0: The total amount of wall time = 388.553001 + 0: The maximum resident set size (KB) = 3155020 Test 012 cpld_restart_c192_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/cpld_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/cpld_bmark_p8 Checking test 013 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -864,14 +864,14 @@ Checking test 013 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 719.918086 - 0: The maximum resident set size (KB) = 4013364 + 0: The total amount of wall time = 720.842416 + 0: The maximum resident set size (KB) = 4016624 Test 013 cpld_bmark_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/cpld_restart_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/cpld_restart_bmark_p8 Checking test 014 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -919,14 +919,14 @@ Checking test 014 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 457.025605 - 0: The maximum resident set size (KB) = 3964160 + 0: The total amount of wall time = 436.093589 + 0: The maximum resident set size (KB) = 3945700 Test 014 cpld_restart_bmark_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/cpld_control_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/cpld_control_noaero_p8 Checking test 015 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -990,14 +990,14 @@ Checking test 015 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 263.301955 - 0: The maximum resident set size (KB) = 1711340 + 0: The total amount of wall time = 265.041314 + 0: The maximum resident set size (KB) = 1683416 Test 015 cpld_control_noaero_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/cpld_control_nowave_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/cpld_control_nowave_noaero_p8 Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1059,14 +1059,14 @@ Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 266.139039 - 0: The maximum resident set size (KB) = 1757116 + 0: The total amount of wall time = 258.878952 + 0: The maximum resident set size (KB) = 1749584 Test 016 cpld_control_nowave_noaero_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/cpld_debug_p8 Checking test 017 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1119,14 +1119,14 @@ Checking test 017 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 518.356595 - 0: The maximum resident set size (KB) = 3231676 + 0: The total amount of wall time = 531.300691 + 0: The maximum resident set size (KB) = 3233532 Test 017 cpld_debug_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_debug_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/cpld_debug_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/cpld_debug_noaero_p8 Checking test 018 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1178,14 +1178,14 @@ Checking test 018 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 359.605858 - 0: The maximum resident set size (KB) = 1715252 + 0: The total amount of wall time = 362.687350 + 0: The maximum resident set size (KB) = 1698588 Test 018 cpld_debug_noaero_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_noaero_p8_agrid -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/cpld_control_noaero_p8_agrid +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/cpld_control_noaero_p8_agrid Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1247,14 +1247,14 @@ Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 269.660861 - 0: The maximum resident set size (KB) = 1759392 + 0: The total amount of wall time = 272.956283 + 0: The maximum resident set size (KB) = 1730028 Test 019 cpld_control_noaero_p8_agrid PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_c48 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/cpld_control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/cpld_control_c48 Checking test 020 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1304,14 +1304,14 @@ Checking test 020 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 575.310316 - 0: The maximum resident set size (KB) = 2804336 + 0: The total amount of wall time = 581.960546 + 0: The maximum resident set size (KB) = 2803192 Test 020 cpld_control_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/cpld_warmstart_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/cpld_warmstart_c48 Checking test 021 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1361,14 +1361,14 @@ Checking test 021 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 154.006779 - 0: The maximum resident set size (KB) = 2795240 + 0: The total amount of wall time = 153.862089 + 0: The maximum resident set size (KB) = 2806248 Test 021 cpld_warmstart_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/cpld_restart_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/cpld_restart_c48 Checking test 022 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1418,14 +1418,14 @@ Checking test 022 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 80.239796 - 0: The maximum resident set size (KB) = 2236056 + 0: The total amount of wall time = 80.298832 + 0: The maximum resident set size (KB) = 2238344 Test 022 cpld_restart_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8_faster -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/cpld_control_p8_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/cpld_control_p8_faster Checking test 023 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1490,14 +1490,14 @@ Checking test 023 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 321.093921 - 0: The maximum resident set size (KB) = 3168196 + 0: The total amount of wall time = 316.710807 + 0: The maximum resident set size (KB) = 3167920 Test 023 cpld_control_p8_faster PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_flake -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_flake +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_flake Checking test 024 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1508,14 +1508,14 @@ Checking test 024 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 186.983764 - 0: The maximum resident set size (KB) = 673964 + 0: The total amount of wall time = 187.535472 + 0: The maximum resident set size (KB) = 672524 Test 024 control_flake PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_CubedSphereGrid -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_CubedSphereGrid +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_CubedSphereGrid Checking test 025 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1542,28 +1542,28 @@ Checking test 025 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 130.473781 - 0: The maximum resident set size (KB) = 625600 + 0: The total amount of wall time = 131.972452 + 0: The maximum resident set size (KB) = 626708 Test 025 control_CubedSphereGrid PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_CubedSphereGrid_parallel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_CubedSphereGrid_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_CubedSphereGrid_parallel Checking test 026 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK - 0: The total amount of wall time = 129.090548 - 0: The maximum resident set size (KB) = 626076 + 0: The total amount of wall time = 129.075077 + 0: The maximum resident set size (KB) = 608728 Test 026 control_CubedSphereGrid_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_latlon -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_latlon +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_latlon Checking test 027 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1574,14 +1574,14 @@ Checking test 027 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.391560 - 0: The maximum resident set size (KB) = 630640 + 0: The total amount of wall time = 132.946683 + 0: The maximum resident set size (KB) = 630820 Test 027 control_latlon PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_wrtGauss_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_wrtGauss_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_wrtGauss_netcdf_parallel Checking test 028 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1592,14 +1592,14 @@ Checking test 028 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 137.863545 - 0: The maximum resident set size (KB) = 626216 + 0: The total amount of wall time = 137.161640 + 0: The maximum resident set size (KB) = 627376 Test 028 control_wrtGauss_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_c48 Checking test 029 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1638,14 +1638,14 @@ Checking test 029 control_c48 results .... Comparing 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.163254 -0: The maximum resident set size (KB) = 820188 +0: The total amount of wall time = 369.612335 +0: The maximum resident set size (KB) = 821028 Test 029 control_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_c192 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_c192 Checking test 030 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1656,14 +1656,14 @@ Checking test 030 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 525.108447 - 0: The maximum resident set size (KB) = 767048 + 0: The total amount of wall time = 523.936304 + 0: The maximum resident set size (KB) = 764356 Test 030 control_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_c384 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_c384 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_c384 Checking test 031 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1674,14 +1674,14 @@ Checking test 031 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 525.776634 - 0: The maximum resident set size (KB) = 1259928 + 0: The total amount of wall time = 525.892630 + 0: The maximum resident set size (KB) = 1269600 Test 031 control_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_c384gdas -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_c384gdas +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_c384gdas Checking test 032 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1724,14 +1724,14 @@ Checking test 032 control_c384gdas 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.490198 - 0: The maximum resident set size (KB) = 1376156 + 0: The total amount of wall time = 453.496920 + 0: The maximum resident set size (KB) = 1381788 Test 032 control_c384gdas PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_stochy Checking test 033 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1742,28 +1742,28 @@ Checking test 033 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 87.398998 - 0: The maximum resident set size (KB) = 629212 + 0: The total amount of wall time = 88.607474 + 0: The maximum resident set size (KB) = 625740 Test 033 control_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_stochy_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_stochy_restart Checking test 034 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 47.624915 - 0: The maximum resident set size (KB) = 476792 + 0: The total amount of wall time = 49.649535 + 0: The maximum resident set size (KB) = 489144 Test 034 control_stochy_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_lndp -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_lndp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_lndp Checking test 035 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1774,14 +1774,14 @@ Checking test 035 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 81.649046 - 0: The maximum resident set size (KB) = 632460 + 0: The total amount of wall time = 82.891114 + 0: The maximum resident set size (KB) = 605588 Test 035 control_lndp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_iovr4 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_iovr4 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_iovr4 Checking test 036 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1796,14 +1796,14 @@ Checking test 036 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.363661 - 0: The maximum resident set size (KB) = 630424 + 0: The total amount of wall time = 135.437956 + 0: The maximum resident set size (KB) = 628124 Test 036 control_iovr4 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_iovr5 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_iovr5 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_iovr5 Checking test 037 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1818,14 +1818,14 @@ Checking test 037 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.524194 - 0: The maximum resident set size (KB) = 628864 + 0: The total amount of wall time = 135.230363 + 0: The maximum resident set size (KB) = 627728 Test 037 control_iovr5 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_p8 Checking test 038 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1872,14 +1872,14 @@ Checking test 038 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 168.140849 - 0: The maximum resident set size (KB) = 1594612 + 0: The total amount of wall time = 168.514275 + 0: The maximum resident set size (KB) = 1603224 Test 038 control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_restart_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_restart_p8 Checking test 039 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1918,14 +1918,14 @@ Checking test 039 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 87.870407 - 0: The maximum resident set size (KB) = 868916 + 0: The total amount of wall time = 86.880783 + 0: The maximum resident set size (KB) = 871784 Test 039 control_restart_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_qr_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_qr_p8 Checking test 040 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1972,14 +1972,14 @@ Checking test 040 control_qr_p8 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.091489 - 0: The maximum resident set size (KB) = 1585444 + 0: The total amount of wall time = 166.789355 + 0: The maximum resident set size (KB) = 1601896 Test 040 control_qr_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_restart_qr_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_restart_qr_p8 Checking test 041 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2018,14 +2018,14 @@ Checking test 041 control_restart_qr_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 89.094875 - 0: The maximum resident set size (KB) = 870136 + 0: The total amount of wall time = 88.826111 + 0: The maximum resident set size (KB) = 864204 Test 041 control_restart_qr_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_decomp_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_decomp_p8 Checking test 042 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2068,14 +2068,14 @@ Checking test 042 control_decomp_p8 results .... Comparing 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.424495 - 0: The maximum resident set size (KB) = 1581692 + 0: The total amount of wall time = 176.635220 + 0: The maximum resident set size (KB) = 1580548 Test 042 control_decomp_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_2threads_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_2threads_p8 Checking test 043 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2118,14 +2118,14 @@ Checking test 043 control_2threads_p8 results .... Comparing 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.070480 - 0: The maximum resident set size (KB) = 1680368 + 0: The total amount of wall time = 156.098772 + 0: The maximum resident set size (KB) = 1689144 Test 043 control_2threads_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_lndp -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_p8_lndp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_p8_lndp Checking test 044 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2144,14 +2144,14 @@ Checking test 044 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 311.395010 - 0: The maximum resident set size (KB) = 1598288 + 0: The total amount of wall time = 317.307575 + 0: The maximum resident set size (KB) = 1598176 Test 044 control_p8_lndp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_p8_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_p8_rrtmgp Checking test 045 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2198,14 +2198,14 @@ Checking test 045 control_p8_rrtmgp results .... Comparing 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.504179 - 0: The maximum resident set size (KB) = 1661952 + 0: The total amount of wall time = 222.500048 + 0: The maximum resident set size (KB) = 1670716 Test 045 control_p8_rrtmgp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_mynn -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_p8_mynn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_p8_mynn Checking test 046 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2252,14 +2252,14 @@ Checking test 046 control_p8_mynn results .... Comparing 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.308807 - 0: The maximum resident set size (KB) = 1599080 + 0: The total amount of wall time = 170.795304 + 0: The maximum resident set size (KB) = 1598128 Test 046 control_p8_mynn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/merra2_thompson -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/merra2_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/merra2_thompson Checking test 047 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2306,14 +2306,14 @@ Checking test 047 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 189.608697 - 0: The maximum resident set size (KB) = 1603580 + 0: The total amount of wall time = 190.319169 + 0: The maximum resident set size (KB) = 1601324 Test 047 merra2_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/regional_control Checking test 048 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2324,28 +2324,28 @@ Checking test 048 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 297.845501 - 0: The maximum resident set size (KB) = 877268 + 0: The total amount of wall time = 301.159301 + 0: The maximum resident set size (KB) = 829312 Test 048 regional_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/regional_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/regional_restart Checking test 049 regional_restart 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.736143 - 0: The maximum resident set size (KB) = 864788 + 0: The total amount of wall time = 150.923082 + 0: The maximum resident set size (KB) = 857872 Test 049 regional_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/regional_control_qr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/regional_control_qr Checking test 050 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2356,28 +2356,28 @@ Checking test 050 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 297.030414 - 0: The maximum resident set size (KB) = 868452 + 0: The total amount of wall time = 297.408324 + 0: The maximum resident set size (KB) = 865852 Test 050 regional_control_qr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/regional_restart_qr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/regional_restart_qr Checking test 051 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 153.594662 - 0: The maximum resident set size (KB) = 864008 + 0: The total amount of wall time = 150.515022 + 0: The maximum resident set size (KB) = 859800 Test 051 regional_restart_qr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/regional_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/regional_decomp Checking test 052 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2388,14 +2388,14 @@ Checking test 052 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 313.020379 - 0: The maximum resident set size (KB) = 864064 + 0: The total amount of wall time = 313.083626 + 0: The maximum resident set size (KB) = 859864 Test 052 regional_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/regional_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/regional_2threads Checking test 053 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2406,14 +2406,14 @@ Checking test 053 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 178.971432 - 0: The maximum resident set size (KB) = 851824 + 0: The total amount of wall time = 181.680007 + 0: The maximum resident set size (KB) = 852000 Test 053 regional_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_noquilt -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/regional_noquilt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/regional_noquilt Checking test 054 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2421,28 +2421,28 @@ Checking test 054 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 317.347592 - 0: The maximum resident set size (KB) = 854080 + 0: The total amount of wall time = 321.393397 + 0: The maximum resident set size (KB) = 852924 Test 054 regional_noquilt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/regional_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/regional_netcdf_parallel Checking test 055 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 293.594383 - 0: The maximum resident set size (KB) = 863224 + 0: The total amount of wall time = 293.594767 + 0: The maximum resident set size (KB) = 860596 Test 055 regional_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/regional_2dwrtdecomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/regional_2dwrtdecomp Checking test 056 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2453,14 +2453,14 @@ Checking test 056 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 297.681333 - 0: The maximum resident set size (KB) = 871340 + 0: The total amount of wall time = 297.430988 + 0: The maximum resident set size (KB) = 862760 Test 056 regional_2dwrtdecomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/fv3_regional_wofs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/regional_wofs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/regional_wofs Checking test 057 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2471,14 +2471,14 @@ Checking test 057 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 375.751173 - 0: The maximum resident set size (KB) = 629664 + 0: The total amount of wall time = 376.245712 + 0: The maximum resident set size (KB) = 599132 Test 057 regional_wofs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/rap_control Checking test 058 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2525,14 +2525,14 @@ Checking test 058 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 459.356796 - 0: The maximum resident set size (KB) = 1053404 + 0: The total amount of wall time = 461.446163 + 0: The maximum resident set size (KB) = 1054488 Test 058 rap_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_spp_sppt_shum_skeb -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/regional_spp_sppt_shum_skeb +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/regional_spp_sppt_shum_skeb Checking test 059 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2543,14 +2543,14 @@ Checking test 059 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 235.088648 - 0: The maximum resident set size (KB) = 1177240 + 0: The total amount of wall time = 243.046144 + 0: The maximum resident set size (KB) = 1176532 Test 059 regional_spp_sppt_shum_skeb PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/rap_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/rap_decomp Checking test 060 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2597,14 +2597,14 @@ Checking test 060 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 478.477328 - 0: The maximum resident set size (KB) = 991872 + 0: The total amount of wall time = 479.788065 + 0: The maximum resident set size (KB) = 992208 Test 060 rap_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/rap_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/rap_2threads Checking test 061 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2651,14 +2651,14 @@ Checking test 061 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 434.977338 - 0: The maximum resident set size (KB) = 1144116 + 0: The total amount of wall time = 437.009635 + 0: The maximum resident set size (KB) = 1134424 Test 061 rap_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/rap_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/rap_restart Checking test 062 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2697,14 +2697,14 @@ Checking test 062 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 231.939788 - 0: The maximum resident set size (KB) = 968796 + 0: The total amount of wall time = 236.332303 + 0: The maximum resident set size (KB) = 973332 Test 062 rap_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/rap_sfcdiff Checking test 063 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2751,14 +2751,14 @@ Checking test 063 rap_sfcdiff results .... Comparing 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.359875 - 0: The maximum resident set size (KB) = 1045212 + 0: The total amount of wall time = 458.197843 + 0: The maximum resident set size (KB) = 1052340 Test 063 rap_sfcdiff PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/rap_sfcdiff_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/rap_sfcdiff_decomp Checking test 064 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2805,14 +2805,14 @@ Checking test 064 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 480.275915 - 0: The maximum resident set size (KB) = 990276 + 0: The total amount of wall time = 488.030804 + 0: The maximum resident set size (KB) = 993696 Test 064 rap_sfcdiff_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/rap_sfcdiff_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/rap_sfcdiff_restart Checking test 065 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2851,14 +2851,14 @@ Checking test 065 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 340.928208 - 0: The maximum resident set size (KB) = 977048 + 0: The total amount of wall time = 345.325046 + 0: The maximum resident set size (KB) = 983892 Test 065 rap_sfcdiff_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/hrrr_control Checking test 066 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2905,14 +2905,14 @@ Checking test 066 hrrr_control results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 427.896195 - 0: The maximum resident set size (KB) = 1044936 + 0: The total amount of wall time = 431.178818 + 0: The maximum resident set size (KB) = 1050776 Test 066 hrrr_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/hrrr_control_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/hrrr_control_decomp Checking test 067 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2959,14 +2959,14 @@ Checking test 067 hrrr_control_decomp results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 447.102499 - 0: The maximum resident set size (KB) = 988868 + 0: The total amount of wall time = 452.427454 + 0: The maximum resident set size (KB) = 999752 Test 067 hrrr_control_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/hrrr_control_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/hrrr_control_2threads Checking test 068 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3013,28 +3013,28 @@ Checking test 068 hrrr_control_2threads results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 394.968750 - 0: The maximum resident set size (KB) = 1075224 + 0: The total amount of wall time = 394.954580 + 0: The maximum resident set size (KB) = 1075020 Test 068 hrrr_control_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/hrrr_control_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/hrrr_control_restart Checking test 069 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 318.175464 - 0: The maximum resident set size (KB) = 983268 + 0: The total amount of wall time = 319.547376 + 0: The maximum resident set size (KB) = 977744 Test 069 hrrr_control_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/rrfs_v1beta Checking test 070 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3081,14 +3081,14 @@ Checking test 070 rrfs_v1beta results .... Comparing 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.109914 - 0: The maximum resident set size (KB) = 1047904 + 0: The total amount of wall time = 459.186844 + 0: The maximum resident set size (KB) = 1053468 Test 070 rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_v1nssl -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/rrfs_v1nssl +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/rrfs_v1nssl Checking test 071 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3103,14 +3103,14 @@ Checking test 071 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 534.327424 - 0: The maximum resident set size (KB) = 691480 + 0: The total amount of wall time = 535.281121 + 0: The maximum resident set size (KB) = 691124 Test 071 rrfs_v1nssl PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/rrfs_v1nssl_nohailnoccn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/rrfs_v1nssl_nohailnoccn Checking test 072 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3125,14 +3125,14 @@ Checking test 072 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 522.405379 - 0: The maximum resident set size (KB) = 759004 + 0: The total amount of wall time = 522.279539 + 0: The maximum resident set size (KB) = 753268 Test 072 rrfs_v1nssl_nohailnoccn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/rrfs_smoke_conus13km_hrrr_warm Checking test 073 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3141,14 +3141,14 @@ Checking test 073 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 148.743049 - 0: The maximum resident set size (KB) = 1027036 + 0: The total amount of wall time = 149.535568 + 0: The maximum resident set size (KB) = 994916 Test 073 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/rrfs_smoke_conus13km_hrrr_warm_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 074 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3157,14 +3157,14 @@ Checking test 074 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 90.237175 - 0: The maximum resident set size (KB) = 940496 + 0: The total amount of wall time = 91.394464 + 0: The maximum resident set size (KB) = 938056 Test 074 rrfs_smoke_conus13km_hrrr_warm_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/rrfs_conus13km_hrrr_warm Checking test 075 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3173,14 +3173,14 @@ Checking test 075 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 133.053547 - 0: The maximum resident set size (KB) = 987676 + 0: The total amount of wall time = 130.951290 + 0: The maximum resident set size (KB) = 984672 Test 075 rrfs_conus13km_hrrr_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/rrfs_smoke_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/rrfs_smoke_conus13km_radar_tten_warm Checking test 076 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3189,26 +3189,26 @@ Checking test 076 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 151.247507 - 0: The maximum resident set size (KB) = 1032880 + 0: The total amount of wall time = 148.845145 + 0: The maximum resident set size (KB) = 1036780 Test 076 rrfs_smoke_conus13km_radar_tten_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 077 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 69.927073 - 0: The maximum resident set size (KB) = 972420 + 0: The total amount of wall time = 70.393327 + 0: The maximum resident set size (KB) = 970004 Test 077 rrfs_conus13km_hrrr_warm_restart_mismatch PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_csawmg -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_csawmg +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_csawmg Checking test 078 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3219,14 +3219,14 @@ Checking test 078 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 345.147782 - 0: The maximum resident set size (KB) = 725096 + 0: The total amount of wall time = 341.307233 + 0: The maximum resident set size (KB) = 721192 Test 078 control_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_csawmgt -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_csawmgt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_csawmgt Checking test 079 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3237,14 +3237,14 @@ Checking test 079 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 338.746690 - 0: The maximum resident set size (KB) = 728852 + 0: The total amount of wall time = 338.533872 + 0: The maximum resident set size (KB) = 723560 Test 079 control_csawmgt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_ras -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_ras Checking test 080 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3255,26 +3255,26 @@ Checking test 080 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 179.206505 - 0: The maximum resident set size (KB) = 721576 + 0: The total amount of wall time = 182.268747 + 0: The maximum resident set size (KB) = 724824 Test 080 control_ras PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_wam -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_wam +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_wam Checking test 081 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 111.248770 - 0: The maximum resident set size (KB) = 634660 + 0: The total amount of wall time = 112.798220 + 0: The maximum resident set size (KB) = 646768 Test 081 control_wam PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_faster -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_p8_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_p8_faster Checking test 082 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3321,14 +3321,14 @@ Checking test 082 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 152.637613 - 0: The maximum resident set size (KB) = 1593088 + 0: The total amount of wall time = 152.874493 + 0: The maximum resident set size (KB) = 1598192 Test 082 control_p8_faster PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control_faster -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/regional_control_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/regional_control_faster Checking test 083 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3339,56 +3339,56 @@ Checking test 083 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 275.110466 - 0: The maximum resident set size (KB) = 866276 + 0: The total amount of wall time = 272.009295 + 0: The maximum resident set size (KB) = 869672 Test 083 regional_control_faster PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 084 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 839.741545 - 0: The maximum resident set size (KB) = 1054784 + 0: The total amount of wall time = 832.149933 + 0: The maximum resident set size (KB) = 1057260 Test 084 rrfs_smoke_conus13km_hrrr_warm_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 085 rrfs_smoke_conus13km_hrrr_warm_debug_2threads 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.105911 - 0: The maximum resident set size (KB) = 973368 + 0: The total amount of wall time = 478.236752 + 0: The maximum resident set size (KB) = 977148 Test 085 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/rrfs_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/rrfs_conus13km_hrrr_warm_debug Checking test 086 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 738.904955 - 0: The maximum resident set size (KB) = 1015768 + 0: The total amount of wall time = 737.868597 + 0: The maximum resident set size (KB) = 1008900 Test 086 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_CubedSphereGrid_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_CubedSphereGrid_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_CubedSphereGrid_debug Checking test 087 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3415,348 +3415,348 @@ Checking test 087 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 142.050290 - 0: The maximum resident set size (KB) = 787284 + 0: The total amount of wall time = 143.864729 + 0: The maximum resident set size (KB) = 785280 Test 087 control_CubedSphereGrid_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_wrtGauss_netcdf_parallel_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_wrtGauss_netcdf_parallel_debug Checking test 088 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 146.148586 - 0: The maximum resident set size (KB) = 794892 + 0: The total amount of wall time = 145.300921 + 0: The maximum resident set size (KB) = 793768 Test 088 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_stochy_debug Checking test 089 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 169.789522 - 0: The maximum resident set size (KB) = 797640 + 0: The total amount of wall time = 164.674166 + 0: The maximum resident set size (KB) = 793348 Test 089 control_stochy_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_lndp_debug Checking test 090 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 147.456254 - 0: The maximum resident set size (KB) = 794940 + 0: The total amount of wall time = 145.439686 + 0: The maximum resident set size (KB) = 787148 Test 090 control_lndp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_csawmg_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_csawmg_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_csawmg_debug Checking test 091 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 223.790607 - 0: The maximum resident set size (KB) = 840024 + 0: The total amount of wall time = 227.587786 + 0: The maximum resident set size (KB) = 836288 Test 091 control_csawmg_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_csawmgt_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_csawmgt_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_csawmgt_debug Checking test 092 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 220.360968 - 0: The maximum resident set size (KB) = 835312 + 0: The total amount of wall time = 219.168377 + 0: The maximum resident set size (KB) = 837328 Test 092 control_csawmgt_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_ras_debug Checking test 093 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 150.350569 - 0: The maximum resident set size (KB) = 800712 + 0: The total amount of wall time = 147.189512 + 0: The maximum resident set size (KB) = 804304 Test 093 control_ras_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_diag_debug Checking test 094 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 150.272363 - 0: The maximum resident set size (KB) = 843464 + 0: The total amount of wall time = 147.635381 + 0: The maximum resident set size (KB) = 843096 Test 094 control_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_debug_p8 Checking test 095 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 163.553824 - 0: The maximum resident set size (KB) = 1613920 + 0: The total amount of wall time = 162.794174 + 0: The maximum resident set size (KB) = 1614896 Test 095 control_debug_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/regional_debug Checking test 096 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 971.736219 - 0: The maximum resident set size (KB) = 884552 + 0: The total amount of wall time = 961.766461 + 0: The maximum resident set size (KB) = 872640 Test 096 regional_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/rap_control_debug Checking test 097 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 272.018778 - 0: The maximum resident set size (KB) = 1166972 + 0: The total amount of wall time = 272.478168 + 0: The maximum resident set size (KB) = 1168100 Test 097 rap_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/hrrr_control_debug Checking test 098 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 265.799714 - 0: The maximum resident set size (KB) = 1162100 + 0: The total amount of wall time = 268.477807 + 0: The maximum resident set size (KB) = 1163032 Test 098 hrrr_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/rap_unified_drag_suite_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/rap_unified_drag_suite_debug Checking test 099 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 268.204185 - 0: The maximum resident set size (KB) = 1166704 + 0: The total amount of wall time = 273.992002 + 0: The maximum resident set size (KB) = 1164820 Test 099 rap_unified_drag_suite_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/rap_diag_debug Checking test 100 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 285.502572 - 0: The maximum resident set size (KB) = 1248340 + 0: The total amount of wall time = 281.065165 + 0: The maximum resident set size (KB) = 1247932 Test 100 rap_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/rap_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/rap_cires_ugwp_debug Checking test 101 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.677516 - 0: The maximum resident set size (KB) = 1165692 + 0: The total amount of wall time = 276.423785 + 0: The maximum resident set size (KB) = 1160544 Test 101 rap_cires_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/rap_unified_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/rap_unified_ugwp_debug Checking test 102 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.060948 - 0: The maximum resident set size (KB) = 1168176 + 0: The total amount of wall time = 279.195559 + 0: The maximum resident set size (KB) = 1166704 Test 102 rap_unified_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/rap_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/rap_lndp_debug Checking test 103 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.357641 - 0: The maximum resident set size (KB) = 1165824 + 0: The total amount of wall time = 273.107549 + 0: The maximum resident set size (KB) = 1165616 Test 103 rap_lndp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/rap_progcld_thompson_debug Checking test 104 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 272.261793 - 0: The maximum resident set size (KB) = 1168424 + 0: The total amount of wall time = 270.369563 + 0: The maximum resident set size (KB) = 1170572 Test 104 rap_progcld_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_noah_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/rap_noah_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/rap_noah_debug Checking test 105 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 266.270051 - 0: The maximum resident set size (KB) = 1165640 + 0: The total amount of wall time = 267.572985 + 0: The maximum resident set size (KB) = 1161684 Test 105 rap_noah_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_sfcdiff_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/rap_sfcdiff_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/rap_sfcdiff_debug Checking test 106 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.287005 - 0: The maximum resident set size (KB) = 1162120 + 0: The total amount of wall time = 271.710490 + 0: The maximum resident set size (KB) = 1164616 Test 106 rap_sfcdiff_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/rap_noah_sfcdiff_cires_ugwp_debug Checking test 107 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 451.960513 - 0: The maximum resident set size (KB) = 1162620 + 0: The total amount of wall time = 445.662559 + 0: The maximum resident set size (KB) = 1146764 Test 107 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/rrfs_v1beta_debug Checking test 108 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 263.464636 - 0: The maximum resident set size (KB) = 1159092 + 0: The total amount of wall time = 270.850382 + 0: The maximum resident set size (KB) = 1158796 Test 108 rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_clm_lake_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/rap_clm_lake_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/rap_clm_lake_debug Checking test 109 rap_clm_lake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 332.274813 - 0: The maximum resident set size (KB) = 1170748 + 0: The total amount of wall time = 335.449062 + 0: The maximum resident set size (KB) = 1146976 Test 109 rap_clm_lake_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_flake_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/rap_flake_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/rap_flake_debug Checking test 110 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.250419 - 0: The maximum resident set size (KB) = 1165564 + 0: The total amount of wall time = 275.632175 + 0: The maximum resident set size (KB) = 1168564 Test 110 rap_flake_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_wam_debug Checking test 111 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 272.422287 - 0: The maximum resident set size (KB) = 538196 + 0: The total amount of wall time = 271.369969 + 0: The maximum resident set size (KB) = 515120 Test 111 control_wam_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 112 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3767,14 +3767,14 @@ Checking test 112 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 217.012157 - 0: The maximum resident set size (KB) = 1068416 + 0: The total amount of wall time = 217.604529 + 0: The maximum resident set size (KB) = 1039868 Test 112 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/rap_control_dyn32_phy32 Checking test 113 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3821,14 +3821,14 @@ Checking test 113 rap_control_dyn32_phy32 results .... Comparing 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.442848 - 0: The maximum resident set size (KB) = 995784 + 0: The total amount of wall time = 383.675439 + 0: The maximum resident set size (KB) = 1003144 Test 113 rap_control_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/hrrr_control_dyn32_phy32 Checking test 114 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3875,14 +3875,14 @@ Checking test 114 hrrr_control_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 188.999364 - 0: The maximum resident set size (KB) = 949352 + 0: The total amount of wall time = 191.690737 + 0: The maximum resident set size (KB) = 946560 Test 114 hrrr_control_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/rap_2threads_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/rap_2threads_dyn32_phy32 Checking test 115 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3929,14 +3929,14 @@ Checking test 115 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 364.766247 - 0: The maximum resident set size (KB) = 1011236 + 0: The total amount of wall time = 364.196544 + 0: The maximum resident set size (KB) = 1018824 Test 115 rap_2threads_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/hrrr_control_2threads_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/hrrr_control_2threads_dyn32_phy32 Checking test 116 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3983,14 +3983,14 @@ Checking test 116 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 174.154637 - 0: The maximum resident set size (KB) = 926088 + 0: The total amount of wall time = 176.113771 + 0: The maximum resident set size (KB) = 924184 Test 116 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/hrrr_control_decomp_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/hrrr_control_decomp_dyn32_phy32 Checking test 117 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4037,14 +4037,14 @@ Checking test 117 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 198.411039 - 0: The maximum resident set size (KB) = 892788 + 0: The total amount of wall time = 200.280653 + 0: The maximum resident set size (KB) = 893360 Test 117 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/rap_restart_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/rap_restart_dyn32_phy32 Checking test 118 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4083,28 +4083,28 @@ Checking test 118 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 283.811986 - 0: The maximum resident set size (KB) = 942424 + 0: The total amount of wall time = 282.409207 + 0: The maximum resident set size (KB) = 926556 Test 118 rap_restart_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/hrrr_control_restart_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/hrrr_control_restart_dyn32_phy32 Checking test 119 hrrr_control_restart_dyn32_phy32 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.229494 - 0: The maximum resident set size (KB) = 854824 + 0: The total amount of wall time = 102.513674 + 0: The maximum resident set size (KB) = 860344 Test 119 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/rap_control_dyn64_phy32 Checking test 120 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4151,81 +4151,81 @@ Checking test 120 rap_control_dyn64_phy32 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 = 244.716856 - 0: The maximum resident set size (KB) = 961772 + 0: The total amount of wall time = 246.904465 + 0: The maximum resident set size (KB) = 960892 Test 120 rap_control_dyn64_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/rap_control_debug_dyn32_phy32 Checking test 121 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 268.031686 - 0: The maximum resident set size (KB) = 1053668 + 0: The total amount of wall time = 261.821324 + 0: The maximum resident set size (KB) = 1054440 Test 121 rap_control_debug_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/hrrr_control_debug_dyn32_phy32 Checking test 122 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 261.061005 - 0: The maximum resident set size (KB) = 1050468 + 0: The total amount of wall time = 264.515157 + 0: The maximum resident set size (KB) = 1050884 Test 122 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/rap_control_dyn64_phy32_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/rap_control_dyn64_phy32_debug Checking test 123 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 266.823794 - 0: The maximum resident set size (KB) = 1098892 + 0: The total amount of wall time = 273.705454 + 0: The maximum resident set size (KB) = 1093232 Test 123 rap_control_dyn64_phy32_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/hafs_regional_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/hafs_regional_atm Checking test 124 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 240.469457 - 0: The maximum resident set size (KB) = 1042548 + 0: The total amount of wall time = 235.884294 + 0: The maximum resident set size (KB) = 1038716 Test 124 hafs_regional_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/hafs_regional_atm_thompson_gfdlsf +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/hafs_regional_atm_thompson_gfdlsf Checking test 125 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 301.682006 - 0: The maximum resident set size (KB) = 1406344 + 0: The total amount of wall time = 323.776287 + 0: The maximum resident set size (KB) = 1403272 Test 125 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/hafs_regional_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/hafs_regional_atm_ocn Checking test 126 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4234,14 +4234,14 @@ Checking test 126 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 380.019023 - 0: The maximum resident set size (KB) = 1213552 + 0: The total amount of wall time = 379.636878 + 0: The maximum resident set size (KB) = 1223424 Test 126 hafs_regional_atm_ocn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm_wav -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/hafs_regional_atm_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/hafs_regional_atm_wav Checking test 127 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4250,14 +4250,14 @@ Checking test 127 hafs_regional_atm_wav 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 = 745.623815 - 0: The maximum resident set size (KB) = 1240208 + 0: The total amount of wall time = 740.061884 + 0: The maximum resident set size (KB) = 1249812 Test 127 hafs_regional_atm_wav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/hafs_regional_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/hafs_regional_atm_ocn_wav Checking test 128 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4268,28 +4268,28 @@ Checking test 128 hafs_regional_atm_ocn_wav 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 = 836.811340 - 0: The maximum resident set size (KB) = 1269664 + 0: The total amount of wall time = 838.417342 + 0: The maximum resident set size (KB) = 1271212 Test 128 hafs_regional_atm_ocn_wav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/hafs_regional_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/hafs_regional_1nest_atm Checking test 129 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 316.796803 - 0: The maximum resident set size (KB) = 503336 + 0: The total amount of wall time = 316.135725 + 0: The maximum resident set size (KB) = 502348 Test 129 hafs_regional_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/hafs_regional_telescopic_2nests_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/hafs_regional_telescopic_2nests_atm Checking test 130 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4298,28 +4298,28 @@ Checking test 130 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 362.434313 - 0: The maximum resident set size (KB) = 510576 + 0: The total amount of wall time = 365.406886 + 0: The maximum resident set size (KB) = 486464 Test 130 hafs_regional_telescopic_2nests_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_global_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/hafs_global_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/hafs_global_1nest_atm Checking test 131 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 145.797522 - 0: The maximum resident set size (KB) = 348264 + 0: The total amount of wall time = 153.857349 + 0: The maximum resident set size (KB) = 347508 Test 131 hafs_global_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_global_multiple_4nests_atm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/hafs_global_multiple_4nests_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/hafs_global_multiple_4nests_atm Checking test 132 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4337,14 +4337,14 @@ Checking test 132 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 414.194562 - 0: The maximum resident set size (KB) = 453784 + 0: The total amount of wall time = 411.207520 + 0: The maximum resident set size (KB) = 450836 Test 132 hafs_global_multiple_4nests_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/hafs_regional_specified_moving_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/hafs_regional_specified_moving_1nest_atm Checking test 133 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4353,28 +4353,28 @@ Checking test 133 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 201.618074 - 0: The maximum resident set size (KB) = 516700 + 0: The total amount of wall time = 202.990582 + 0: The maximum resident set size (KB) = 519152 Test 133 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/hafs_regional_storm_following_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/hafs_regional_storm_following_1nest_atm Checking test 134 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 190.224550 - 0: The maximum resident set size (KB) = 521452 + 0: The total amount of wall time = 192.596759 + 0: The maximum resident set size (KB) = 518952 Test 134 hafs_regional_storm_following_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/hafs_regional_storm_following_1nest_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/hafs_regional_storm_following_1nest_atm_ocn Checking test 135 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4383,42 +4383,42 @@ Checking test 135 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 220.562860 - 0: The maximum resident set size (KB) = 567604 + 0: The total amount of wall time = 221.216783 + 0: The maximum resident set size (KB) = 559584 Test 135 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_global_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/hafs_global_storm_following_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/hafs_global_storm_following_1nest_atm Checking test 136 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 57.565483 - 0: The maximum resident set size (KB) = 370036 + 0: The total amount of wall time = 57.386100 + 0: The maximum resident set size (KB) = 366224 Test 136 hafs_global_storm_following_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 137 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 715.485951 - 0: The maximum resident set size (KB) = 586092 + 0: The total amount of wall time = 712.441910 + 0: The maximum resident set size (KB) = 582708 Test 137 hafs_regional_storm_following_1nest_atm_ocn_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 138 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4429,14 +4429,14 @@ Checking test 138 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 482.666386 - 0: The maximum resident set size (KB) = 623272 + 0: The total amount of wall time = 481.272017 + 0: The maximum resident set size (KB) = 619368 Test 138 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_docn -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/hafs_regional_docn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/hafs_regional_docn Checking test 139 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4444,14 +4444,14 @@ Checking test 139 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 356.332029 - 0: The maximum resident set size (KB) = 1228712 + 0: The total amount of wall time = 355.526439 + 0: The maximum resident set size (KB) = 1222268 Test 139 hafs_regional_docn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_docn_oisst -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/hafs_regional_docn_oisst +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/hafs_regional_docn_oisst Checking test 140 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4459,131 +4459,131 @@ Checking test 140 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 360.831335 - 0: The maximum resident set size (KB) = 1219240 + 0: The total amount of wall time = 361.853298 + 0: The maximum resident set size (KB) = 1211528 Test 140 hafs_regional_docn_oisst PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_datm_cdeps -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/hafs_regional_datm_cdeps +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/hafs_regional_datm_cdeps Checking test 141 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 965.350081 - 0: The maximum resident set size (KB) = 1039020 + 0: The total amount of wall time = 954.709863 + 0: The maximum resident set size (KB) = 1036544 Test 141 hafs_regional_datm_cdeps PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/datm_cdeps_control_cfsr Checking test 142 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 157.535428 - 0: The maximum resident set size (KB) = 1076492 + 0: The total amount of wall time = 153.893257 + 0: The maximum resident set size (KB) = 1081988 Test 142 datm_cdeps_control_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/datm_cdeps_restart_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/datm_cdeps_restart_cfsr Checking test 143 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 91.854141 - 0: The maximum resident set size (KB) = 1008044 + 0: The total amount of wall time = 91.855099 + 0: The maximum resident set size (KB) = 1012504 Test 143 datm_cdeps_restart_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/datm_cdeps_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/datm_cdeps_control_gefs Checking test 144 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.074950 - 0: The maximum resident set size (KB) = 963988 + 0: The total amount of wall time = 151.289350 + 0: The maximum resident set size (KB) = 970700 Test 144 datm_cdeps_control_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_iau_gefs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/datm_cdeps_iau_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/datm_cdeps_iau_gefs Checking test 145 datm_cdeps_iau_gefs 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.575478 - 0: The maximum resident set size (KB) = 963596 + 0: The total amount of wall time = 154.005783 + 0: The maximum resident set size (KB) = 959800 Test 145 datm_cdeps_iau_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_stochy_gefs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/datm_cdeps_stochy_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/datm_cdeps_stochy_gefs Checking test 146 datm_cdeps_stochy_gefs 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 = 152.250968 - 0: The maximum resident set size (KB) = 962304 + 0: The total amount of wall time = 152.345540 + 0: The maximum resident set size (KB) = 973360 Test 146 datm_cdeps_stochy_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_ciceC_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/datm_cdeps_ciceC_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/datm_cdeps_ciceC_cfsr Checking test 147 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 156.411116 - 0: The maximum resident set size (KB) = 1052260 + 0: The total amount of wall time = 156.703635 + 0: The maximum resident set size (KB) = 1062776 Test 147 datm_cdeps_ciceC_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/datm_cdeps_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/datm_cdeps_bulk_cfsr Checking test 148 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 152.255246 - 0: The maximum resident set size (KB) = 1051100 + 0: The total amount of wall time = 155.116105 + 0: The maximum resident set size (KB) = 1064372 Test 148 datm_cdeps_bulk_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/datm_cdeps_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/datm_cdeps_bulk_gefs Checking test 149 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.651584 - 0: The maximum resident set size (KB) = 961872 + 0: The total amount of wall time = 146.200451 + 0: The maximum resident set size (KB) = 961028 Test 149 datm_cdeps_bulk_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/datm_cdeps_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/datm_cdeps_mx025_cfsr Checking test 150 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4592,14 +4592,14 @@ Checking test 150 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 427.073508 - 0: The maximum resident set size (KB) = 881828 + 0: The total amount of wall time = 408.173498 + 0: The maximum resident set size (KB) = 886596 Test 150 datm_cdeps_mx025_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/datm_cdeps_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/datm_cdeps_mx025_gefs Checking test 151 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4608,77 +4608,77 @@ Checking test 151 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 405.677294 - 0: The maximum resident set size (KB) = 934044 + 0: The total amount of wall time = 401.865329 + 0: The maximum resident set size (KB) = 912668 Test 151 datm_cdeps_mx025_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/datm_cdeps_multiple_files_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/datm_cdeps_multiple_files_cfsr Checking test 152 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 152.982800 - 0: The maximum resident set size (KB) = 1066864 + 0: The total amount of wall time = 156.211145 + 0: The maximum resident set size (KB) = 1057000 Test 152 datm_cdeps_multiple_files_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/datm_cdeps_3072x1536_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/datm_cdeps_3072x1536_cfsr Checking test 153 datm_cdeps_3072x1536_cfsr 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.101311 - 0: The maximum resident set size (KB) = 2308864 + 0: The total amount of wall time = 222.246432 + 0: The maximum resident set size (KB) = 2368976 Test 153 datm_cdeps_3072x1536_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_gfs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/datm_cdeps_gfs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/datm_cdeps_gfs Checking test 154 datm_cdeps_gfs 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 = 219.371810 - 0: The maximum resident set size (KB) = 2352532 + 0: The total amount of wall time = 221.867738 + 0: The maximum resident set size (KB) = 2368408 Test 154 datm_cdeps_gfs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/datm_cdeps_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/datm_cdeps_debug_cfsr Checking test 155 datm_cdeps_debug_cfsr results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 354.157758 - 0: The maximum resident set size (KB) = 982788 + 0: The total amount of wall time = 357.729165 + 0: The maximum resident set size (KB) = 985568 Test 155 datm_cdeps_debug_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_control_cfsr_faster -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/datm_cdeps_control_cfsr_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/datm_cdeps_control_cfsr_faster Checking test 156 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 154.028520 - 0: The maximum resident set size (KB) = 1070468 + 0: The total amount of wall time = 153.587502 + 0: The maximum resident set size (KB) = 1061128 Test 156 datm_cdeps_control_cfsr_faster PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/datm_cdeps_lnd_gswp3 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/datm_cdeps_lnd_gswp3 Checking test 157 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4687,14 +4687,14 @@ Checking test 157 datm_cdeps_lnd_gswp3 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 = 6.813945 - 0: The maximum resident set size (KB) = 254860 + 0: The total amount of wall time = 6.420576 + 0: The maximum resident set size (KB) = 250188 Test 157 datm_cdeps_lnd_gswp3 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/datm_cdeps_lnd_gswp3_rst +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/datm_cdeps_lnd_gswp3_rst Checking test 158 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4703,14 +4703,14 @@ Checking test 158 datm_cdeps_lnd_gswp3_rst 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.073604 - 0: The maximum resident set size (KB) = 265252 + 0: The total amount of wall time = 12.240902 + 0: The maximum resident set size (KB) = 255108 Test 158 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_atmlnd_sbs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_p8_atmlnd_sbs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_p8_atmlnd_sbs Checking test 159 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4795,14 +4795,14 @@ Checking test 159 control_p8_atmlnd_sbs results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 205.422638 - 0: The maximum resident set size (KB) = 1602904 + 0: The total amount of wall time = 206.193781 + 0: The maximum resident set size (KB) = 1599948 Test 159 control_p8_atmlnd_sbs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/atmwav_control_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/atmwav_control_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/atmwav_control_noaero_p8 Checking test 160 atmwav_control_noaero_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4845,14 +4845,14 @@ Checking test 160 atmwav_control_noaero_p8 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 = 95.624317 - 0: The maximum resident set size (KB) = 1637176 + 0: The total amount of wall time = 94.178039 + 0: The maximum resident set size (KB) = 1631888 Test 160 atmwav_control_noaero_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_atmwav -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/control_atmwav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_atmwav Checking test 161 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4896,14 +4896,14 @@ Checking test 161 control_atmwav 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.592680 - 0: The maximum resident set size (KB) = 659492 + 0: The total amount of wall time = 87.867996 + 0: The maximum resident set size (KB) = 660232 Test 161 control_atmwav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/atmaero_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/atmaero_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/atmaero_control_p8 Checking test 162 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4947,14 +4947,14 @@ Checking test 162 atmaero_control_p8 results .... Comparing 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.271516 - 0: The maximum resident set size (KB) = 2969608 + 0: The total amount of wall time = 238.151730 + 0: The maximum resident set size (KB) = 2963816 Test 162 atmaero_control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/atmaero_control_p8_rad -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/atmaero_control_p8_rad +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/atmaero_control_p8_rad Checking test 163 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4998,14 +4998,14 @@ Checking test 163 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 280.954399 - 0: The maximum resident set size (KB) = 3040196 + 0: The total amount of wall time = 284.687484 + 0: The maximum resident set size (KB) = 2985340 Test 163 atmaero_control_p8_rad PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/atmaero_control_p8_rad_micro -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/atmaero_control_p8_rad_micro +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/atmaero_control_p8_rad_micro Checking test 164 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5049,14 +5049,14 @@ Checking test 164 atmaero_control_p8_rad_micro results .... Comparing 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.758217 - 0: The maximum resident set size (KB) = 3047264 + 0: The total amount of wall time = 282.330181 + 0: The maximum resident set size (KB) = 3046536 Test 164 atmaero_control_p8_rad_micro PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_atmaq -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/regional_atmaq +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/regional_atmaq Checking test 165 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5072,14 +5072,14 @@ Checking test 165 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 640.133007 - 0: The maximum resident set size (KB) = 1449160 + 0: The total amount of wall time = 650.633576 + 0: The maximum resident set size (KB) = 1455828 Test 165 regional_atmaq PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_atmaq_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/regional_atmaq_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/regional_atmaq_debug Checking test 166 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5093,14 +5093,14 @@ Checking test 166 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1210.319070 - 0: The maximum resident set size (KB) = 1376256 + 0: The total amount of wall time = 1188.944006 + 0: The maximum resident set size (KB) = 1385728 Test 166 regional_atmaq_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_atmaq_faster -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_2624/regional_atmaq_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/regional_atmaq_faster Checking test 167 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5116,12 +5116,12 @@ Checking test 167 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 557.898338 - 0: The maximum resident set size (KB) = 1463060 + 0: The total amount of wall time = 548.915994 + 0: The maximum resident set size (KB) = 1461324 Test 167 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Sun Apr 30 23:34:41 UTC 2023 -Elapsed time: 01h:11m:58s. Have a nice day! +Wed May 3 13:12:53 UTC 2023 +Elapsed time: 01h:10m:12s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index 2211e248afb..a4c3ba5db16 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,43 +1,43 @@ -Sun Apr 30 23:16:23 UTC 2023 +Wed May 3 12:23:31 UTC 2023 Start Regression test -Compile 001 elapsed time 1958 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 002 elapsed time 2044 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 003 elapsed time 1854 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 004 elapsed time 309 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 281 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 1675 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 007 elapsed time 1673 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 008 elapsed time 3341 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 009 elapsed time 1799 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 010 elapsed time 1738 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 011 elapsed time 1679 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 012 elapsed time 1547 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 013 elapsed time 2153 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 014 elapsed time 320 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 015 elapsed time 221 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 1555 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 017 elapsed time 1654 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 018 elapsed time 233 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 241 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 1715 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 021 elapsed time 274 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 2198 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 023 elapsed time 1657 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 024 elapsed time 287 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 025 elapsed time 162 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 291 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 027 elapsed time 105 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 028 elapsed time 1696 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 029 elapsed time 1685 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 030 elapsed time 1643 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 031 elapsed time 1594 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 032 elapsed time 1563 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 033 elapsed time 212 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 034 elapsed time 2057 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 001 elapsed time 1966 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 002 elapsed time 2020 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 003 elapsed time 1810 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 004 elapsed time 314 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 290 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 1672 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 007 elapsed time 1676 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 008 elapsed time 3347 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 009 elapsed time 1811 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 010 elapsed time 1743 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 011 elapsed time 1691 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 012 elapsed time 1551 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 013 elapsed time 2141 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 014 elapsed time 304 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 015 elapsed time 236 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 1570 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 017 elapsed time 1624 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 018 elapsed time 247 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 244 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 1717 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 021 elapsed time 277 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 2241 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 023 elapsed time 1682 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 024 elapsed time 273 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 025 elapsed time 151 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 283 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 027 elapsed time 104 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 028 elapsed time 1679 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 029 elapsed time 1649 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 030 elapsed time 1629 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 031 elapsed time 1593 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 032 elapsed time 1531 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 033 elapsed time 213 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 034 elapsed time 1980 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8_mixedmode -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/cpld_control_p8_mixedmode +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -102,14 +102,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 433.658122 - 0: The maximum resident set size (KB) = 1732092 + 0: The total amount of wall time = 444.546881 + 0: The maximum resident set size (KB) = 1761228 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_gfsv17 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/cpld_control_gfsv17 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -173,14 +173,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 312.473670 - 0: The maximum resident set size (KB) = 1642332 + 0: The total amount of wall time = 325.263340 + 0: The maximum resident set size (KB) = 1644416 Test 002 cpld_control_gfsv17 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/cpld_control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -245,14 +245,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 492.032176 - 0: The maximum resident set size (KB) = 1794572 + 0: The total amount of wall time = 488.820730 + 0: The maximum resident set size (KB) = 1796112 Test 003 cpld_control_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/cpld_restart_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -305,14 +305,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 287.891952 - 0: The maximum resident set size (KB) = 1490432 + 0: The total amount of wall time = 273.732936 + 0: The maximum resident set size (KB) = 1478748 Test 004 cpld_restart_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/cpld_control_qr_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -377,14 +377,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 504.023257 - 0: The maximum resident set size (KB) = 1787376 + 0: The total amount of wall time = 489.882089 + 0: The maximum resident set size (KB) = 1807824 Test 005 cpld_control_qr_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/cpld_restart_qr_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -437,14 +437,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 293.339690 - 0: The maximum resident set size (KB) = 1503564 + 0: The total amount of wall time = 290.371159 + 0: The maximum resident set size (KB) = 1493256 Test 006 cpld_restart_qr_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/cpld_2threads_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -497,14 +497,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 529.456511 - 0: The maximum resident set size (KB) = 2008992 + 0: The total amount of wall time = 532.340098 + 0: The maximum resident set size (KB) = 1972240 -Test 007 cpld_2threads_p8 PASS +Test 007 cpld_2threads_p8 PASS Tries: 2 baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/cpld_decomp_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -557,14 +557,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 504.665956 - 0: The maximum resident set size (KB) = 1786908 + 0: The total amount of wall time = 495.528290 + 0: The maximum resident set size (KB) = 1788608 Test 008 cpld_decomp_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/cpld_mpi_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -617,14 +617,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 424.574423 - 0: The maximum resident set size (KB) = 1746796 + 0: The total amount of wall time = 409.477774 + 0: The maximum resident set size (KB) = 1719728 Test 009 cpld_mpi_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_ciceC_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/cpld_control_ciceC_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -689,14 +689,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 483.825910 - 0: The maximum resident set size (KB) = 1796224 + 0: The total amount of wall time = 494.300033 + 0: The maximum resident set size (KB) = 1796328 Test 010 cpld_control_ciceC_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_noaero_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/cpld_control_noaero_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/cpld_control_noaero_p8 Checking test 011 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -760,14 +760,14 @@ Checking test 011 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 364.847907 - 0: The maximum resident set size (KB) = 1619932 + 0: The total amount of wall time = 358.780260 + 0: The maximum resident set size (KB) = 1621820 Test 011 cpld_control_noaero_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/cpld_control_nowave_noaero_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/cpld_control_nowave_noaero_p8 Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -829,14 +829,14 @@ Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 370.722856 - 0: The maximum resident set size (KB) = 1677636 + 0: The total amount of wall time = 366.703486 + 0: The maximum resident set size (KB) = 1674956 Test 012 cpld_control_nowave_noaero_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_debug_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/cpld_debug_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/cpld_debug_p8 Checking test 013 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -889,14 +889,14 @@ Checking test 013 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 703.009668 - 0: The maximum resident set size (KB) = 1812748 + 0: The total amount of wall time = 683.171519 + 0: The maximum resident set size (KB) = 1817412 Test 013 cpld_debug_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_debug_noaero_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/cpld_debug_noaero_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/cpld_debug_noaero_p8 Checking test 014 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -948,14 +948,14 @@ Checking test 014 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 482.818484 - 0: The maximum resident set size (KB) = 1645776 + 0: The total amount of wall time = 484.192291 + 0: The maximum resident set size (KB) = 1634340 Test 014 cpld_debug_noaero_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/cpld_control_noaero_p8_agrid +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/cpld_control_noaero_p8_agrid Checking test 015 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1017,14 +1017,14 @@ Checking test 015 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 396.199801 - 0: The maximum resident set size (KB) = 1691492 + 0: The total amount of wall time = 396.744896 + 0: The maximum resident set size (KB) = 1687584 Test 015 cpld_control_noaero_p8_agrid PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_c48 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/cpld_control_c48 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/cpld_control_c48 Checking test 016 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1074,14 +1074,14 @@ Checking test 016 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 817.017496 - 0: The maximum resident set size (KB) = 2765076 + 0: The total amount of wall time = 808.618625 + 0: The maximum resident set size (KB) = 2766496 Test 016 cpld_control_c48 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_warmstart_c48 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/cpld_warmstart_c48 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/cpld_warmstart_c48 Checking test 017 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1131,14 +1131,14 @@ Checking test 017 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 223.994882 - 0: The maximum resident set size (KB) = 2775520 + 0: The total amount of wall time = 221.276356 + 0: The maximum resident set size (KB) = 2773816 Test 017 cpld_warmstart_c48 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_warmstart_c48 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/cpld_restart_c48 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/cpld_restart_c48 Checking test 018 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1188,14 +1188,14 @@ Checking test 018 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 121.451411 - 0: The maximum resident set size (KB) = 2205996 + 0: The total amount of wall time = 117.429383 + 0: The maximum resident set size (KB) = 2203132 Test 018 cpld_restart_c48 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8_faster -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/cpld_control_p8_faster +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/cpld_control_p8_faster Checking test 019 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1260,14 +1260,14 @@ Checking test 019 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 503.946357 - 0: The maximum resident set size (KB) = 1786004 + 0: The total amount of wall time = 448.184283 + 0: The maximum resident set size (KB) = 1798568 Test 019 cpld_control_p8_faster PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_flake -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_flake +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_flake Checking test 020 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1278,14 +1278,14 @@ Checking test 020 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 313.922539 - 0: The maximum resident set size (KB) = 621080 + 0: The total amount of wall time = 269.273530 + 0: The maximum resident set size (KB) = 623136 Test 020 control_flake PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_CubedSphereGrid -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_CubedSphereGrid +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_CubedSphereGrid Checking test 021 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1312,28 +1312,28 @@ Checking test 021 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 265.098227 - 0: The maximum resident set size (KB) = 571936 + 0: The total amount of wall time = 185.945664 + 0: The maximum resident set size (KB) = 569008 Test 021 control_CubedSphereGrid PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_CubedSphereGrid_parallel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_CubedSphereGrid_parallel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_CubedSphereGrid_parallel Checking test 022 control_CubedSphereGrid_parallel 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 = 217.710310 - 0: The maximum resident set size (KB) = 570600 + 0: The total amount of wall time = 188.351489 + 0: The maximum resident set size (KB) = 575336 Test 022 control_CubedSphereGrid_parallel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_latlon -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_latlon +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_latlon Checking test 023 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1344,14 +1344,14 @@ Checking test 023 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 233.655180 - 0: The maximum resident set size (KB) = 573352 + 0: The total amount of wall time = 186.866430 + 0: The maximum resident set size (KB) = 568864 Test 023 control_latlon PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_wrtGauss_netcdf_parallel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_wrtGauss_netcdf_parallel Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1362,14 +1362,14 @@ Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 221.519769 - 0: The maximum resident set size (KB) = 571560 + 0: The total amount of wall time = 198.796004 + 0: The maximum resident set size (KB) = 569536 Test 024 control_wrtGauss_netcdf_parallel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_c48 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_c48 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_c48 Checking test 025 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1408,14 +1408,14 @@ Checking test 025 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 604.942441 -0: The maximum resident set size (KB) = 789648 +0: The total amount of wall time = 598.546384 +0: The maximum resident set size (KB) = 787808 Test 025 control_c48 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_c192 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_c192 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_c192 Checking test 026 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1426,14 +1426,14 @@ Checking test 026 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 825.662352 - 0: The maximum resident set size (KB) = 691160 + 0: The total amount of wall time = 743.108006 + 0: The maximum resident set size (KB) = 683752 Test 026 control_c192 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_c384 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_c384 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_c384 Checking test 027 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1444,64 +1444,16 @@ Checking test 027 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1087.569457 - 0: The maximum resident set size (KB) = 1065448 + 0: The total amount of wall time = 981.303811 + 0: The maximum resident set size (KB) = 1059240 Test 027 control_c384 PASS - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_c384gdas -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_c384gdas -Checking test 028 control_c384gdas results .... - Comparing sfcf000.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf006.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF06 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF06 .........OK - Comparing RESTART/20210322.060000.coupler.res .........OK - Comparing RESTART/20210322.060000.fv_core.res.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 964.568535 - 0: The maximum resident set size (KB) = 1197880 - -Test 028 control_c384gdas PASS +Test 028 control_c384gdas FAIL baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_stochy -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_stochy +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_stochy Checking test 029 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1512,28 +1464,28 @@ Checking test 029 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 151.051659 - 0: The maximum resident set size (KB) = 577016 + 0: The total amount of wall time = 128.232091 + 0: The maximum resident set size (KB) = 577088 Test 029 control_stochy PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_stochy -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_stochy_restart +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_stochy_restart Checking test 030 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 73.879798 - 0: The maximum resident set size (KB) = 394808 + 0: The total amount of wall time = 74.397593 + 0: The maximum resident set size (KB) = 392360 Test 030 control_stochy_restart PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_lndp -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_lndp +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_lndp Checking test 031 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1544,14 +1496,14 @@ Checking test 031 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 147.292727 - 0: The maximum resident set size (KB) = 575732 + 0: The total amount of wall time = 119.356135 + 0: The maximum resident set size (KB) = 577336 Test 031 control_lndp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_iovr4 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_iovr4 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_iovr4 Checking test 032 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1566,14 +1518,14 @@ Checking test 032 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 217.669080 - 0: The maximum resident set size (KB) = 571184 + 0: The total amount of wall time = 202.408790 + 0: The maximum resident set size (KB) = 569544 Test 032 control_iovr4 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_iovr5 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_iovr5 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_iovr5 Checking test 033 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1588,14 +1540,14 @@ Checking test 033 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 230.692887 - 0: The maximum resident set size (KB) = 576040 + 0: The total amount of wall time = 198.837360 + 0: The maximum resident set size (KB) = 571232 Test 033 control_iovr5 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_p8 Checking test 034 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1642,14 +1594,14 @@ Checking test 034 control_p8 results .... Comparing 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.349760 - 0: The maximum resident set size (KB) = 1547500 + 0: The total amount of wall time = 239.510180 + 0: The maximum resident set size (KB) = 1546176 Test 034 control_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_restart_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_restart_p8 Checking test 035 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1688,14 +1640,14 @@ Checking test 035 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 136.866486 - 0: The maximum resident set size (KB) = 782120 + 0: The total amount of wall time = 131.055012 + 0: The maximum resident set size (KB) = 771048 Test 035 control_restart_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_qr_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_qr_p8 Checking test 036 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1742,14 +1694,14 @@ Checking test 036 control_qr_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 237.282705 - 0: The maximum resident set size (KB) = 1544652 + 0: The total amount of wall time = 235.452956 + 0: The maximum resident set size (KB) = 1549448 Test 036 control_qr_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_restart_qr_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_restart_qr_p8 Checking test 037 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1788,14 +1740,14 @@ Checking test 037 control_restart_qr_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 136.684525 - 0: The maximum resident set size (KB) = 786388 + 0: The total amount of wall time = 129.460945 + 0: The maximum resident set size (KB) = 789200 Test 037 control_restart_qr_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_decomp_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_decomp_p8 Checking test 038 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1838,14 +1790,14 @@ Checking test 038 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 247.010192 - 0: The maximum resident set size (KB) = 1534360 + 0: The total amount of wall time = 242.864554 + 0: The maximum resident set size (KB) = 1533136 Test 038 control_decomp_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_2threads_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_2threads_p8 Checking test 039 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1888,14 +1840,14 @@ Checking test 039 control_2threads_p8 results .... Comparing 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.154243 - 0: The maximum resident set size (KB) = 1631072 + 0: The total amount of wall time = 219.912944 + 0: The maximum resident set size (KB) = 1629156 Test 039 control_2threads_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_lndp -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_p8_lndp +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_p8_lndp Checking test 040 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1914,14 +1866,14 @@ Checking test 040 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 476.342330 - 0: The maximum resident set size (KB) = 1549412 + 0: The total amount of wall time = 440.724190 + 0: The maximum resident set size (KB) = 1542792 Test 040 control_p8_lndp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_rrtmgp -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_p8_rrtmgp +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_p8_rrtmgp Checking test 041 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1968,14 +1920,14 @@ Checking test 041 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 328.750109 - 0: The maximum resident set size (KB) = 1619620 + 0: The total amount of wall time = 315.129951 + 0: The maximum resident set size (KB) = 1605276 Test 041 control_p8_rrtmgp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_mynn -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_p8_mynn +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_p8_mynn Checking test 042 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2022,14 +1974,14 @@ Checking test 042 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 256.327174 - 0: The maximum resident set size (KB) = 1552720 + 0: The total amount of wall time = 241.579829 + 0: The maximum resident set size (KB) = 1539956 Test 042 control_p8_mynn PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/merra2_thompson -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/merra2_thompson +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/merra2_thompson Checking test 043 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2076,14 +2028,14 @@ Checking test 043 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 283.852297 - 0: The maximum resident set size (KB) = 1542464 + 0: The total amount of wall time = 268.583637 + 0: The maximum resident set size (KB) = 1558000 Test 043 merra2_thompson PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/regional_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/regional_control Checking test 044 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2094,28 +2046,28 @@ Checking test 044 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 459.879211 - 0: The maximum resident set size (KB) = 788492 + 0: The total amount of wall time = 428.082056 + 0: The maximum resident set size (KB) = 791776 Test 044 regional_control PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/regional_restart +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/regional_restart Checking test 045 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 244.934220 - 0: The maximum resident set size (KB) = 782800 + 0: The total amount of wall time = 211.718446 + 0: The maximum resident set size (KB) = 780516 Test 045 regional_restart PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/regional_control_qr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/regional_control_qr Checking test 046 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2126,28 +2078,28 @@ Checking test 046 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 469.655090 - 0: The maximum resident set size (KB) = 785844 + 0: The total amount of wall time = 425.284731 + 0: The maximum resident set size (KB) = 786216 Test 046 regional_control_qr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/regional_restart_qr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/regional_restart_qr Checking test 047 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 243.639273 - 0: The maximum resident set size (KB) = 780556 + 0: The total amount of wall time = 214.209523 + 0: The maximum resident set size (KB) = 782696 Test 047 regional_restart_qr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/regional_decomp +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/regional_decomp Checking test 048 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2158,14 +2110,14 @@ Checking test 048 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 460.032722 - 0: The maximum resident set size (KB) = 785952 + 0: The total amount of wall time = 432.749726 + 0: The maximum resident set size (KB) = 782072 Test 048 regional_decomp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/regional_2threads +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/regional_2threads Checking test 049 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2176,28 +2128,28 @@ Checking test 049 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 290.912716 - 0: The maximum resident set size (KB) = 774648 + 0: The total amount of wall time = 250.149794 + 0: The maximum resident set size (KB) = 775796 Test 049 regional_2threads PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/regional_netcdf_parallel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/regional_netcdf_parallel Checking test 050 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 439.021193 - 0: The maximum resident set size (KB) = 785048 + 0: The total amount of wall time = 400.616796 + 0: The maximum resident set size (KB) = 782940 Test 050 regional_netcdf_parallel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/regional_2dwrtdecomp +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/regional_2dwrtdecomp Checking test 051 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2208,14 +2160,14 @@ Checking test 051 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 430.994213 - 0: The maximum resident set size (KB) = 788676 + 0: The total amount of wall time = 426.211235 + 0: The maximum resident set size (KB) = 784752 Test 051 regional_2dwrtdecomp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/rap_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/rap_control Checking test 052 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2262,14 +2214,14 @@ Checking test 052 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 662.464723 - 0: The maximum resident set size (KB) = 953220 + 0: The total amount of wall time = 617.859906 + 0: The maximum resident set size (KB) = 952000 Test 052 rap_control PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/regional_spp_sppt_shum_skeb +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/regional_spp_sppt_shum_skeb Checking test 053 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2280,14 +2232,14 @@ Checking test 053 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 357.092998 - 0: The maximum resident set size (KB) = 1098000 + 0: The total amount of wall time = 330.055692 + 0: The maximum resident set size (KB) = 1085836 Test 053 regional_spp_sppt_shum_skeb PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/rap_decomp +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/rap_decomp Checking test 054 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2334,14 +2286,14 @@ Checking test 054 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 709.936638 - 0: The maximum resident set size (KB) = 947004 + 0: The total amount of wall time = 649.190767 + 0: The maximum resident set size (KB) = 950828 Test 054 rap_decomp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/rap_2threads +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/rap_2threads Checking test 055 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2388,14 +2340,14 @@ Checking test 055 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 643.866154 - 0: The maximum resident set size (KB) = 1028168 + 0: The total amount of wall time = 589.741871 + 0: The maximum resident set size (KB) = 1020400 Test 055 rap_2threads PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/rap_restart +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/rap_restart Checking test 056 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2434,14 +2386,14 @@ Checking test 056 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 349.331085 - 0: The maximum resident set size (KB) = 826180 + 0: The total amount of wall time = 315.817733 + 0: The maximum resident set size (KB) = 838340 Test 056 rap_restart PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/rap_sfcdiff +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/rap_sfcdiff Checking test 057 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2488,14 +2440,14 @@ Checking test 057 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 700.519046 - 0: The maximum resident set size (KB) = 954208 + 0: The total amount of wall time = 621.231117 + 0: The maximum resident set size (KB) = 951920 Test 057 rap_sfcdiff PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/rap_sfcdiff_decomp +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/rap_sfcdiff_decomp Checking test 058 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2542,14 +2494,14 @@ Checking test 058 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 725.956581 - 0: The maximum resident set size (KB) = 947772 + 0: The total amount of wall time = 660.907211 + 0: The maximum resident set size (KB) = 952412 Test 058 rap_sfcdiff_decomp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/rap_sfcdiff_restart +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/rap_sfcdiff_restart Checking test 059 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2588,14 +2540,14 @@ Checking test 059 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 471.367129 - 0: The maximum resident set size (KB) = 834068 + 0: The total amount of wall time = 459.787144 + 0: The maximum resident set size (KB) = 840968 Test 059 rap_sfcdiff_restart PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/hrrr_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/hrrr_control Checking test 060 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2642,14 +2594,14 @@ Checking test 060 hrrr_control results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 645.666481 - 0: The maximum resident set size (KB) = 955676 + 0: The total amount of wall time = 580.070857 + 0: The maximum resident set size (KB) = 951672 Test 060 hrrr_control PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/hrrr_control_decomp +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/hrrr_control_decomp Checking test 061 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2696,14 +2648,14 @@ Checking test 061 hrrr_control_decomp results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 687.507432 - 0: The maximum resident set size (KB) = 944568 + 0: The total amount of wall time = 610.691010 + 0: The maximum resident set size (KB) = 944156 Test 061 hrrr_control_decomp PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/hrrr_control_2threads +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/hrrr_control_2threads Checking test 062 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2750,28 +2702,28 @@ Checking test 062 hrrr_control_2threads results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 624.844757 - 0: The maximum resident set size (KB) = 1010004 + 0: The total amount of wall time = 545.995140 + 0: The maximum resident set size (KB) = 1009608 Test 062 hrrr_control_2threads PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/hrrr_control_restart +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/hrrr_control_restart Checking test 063 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 426.558381 - 0: The maximum resident set size (KB) = 837040 + 0: The total amount of wall time = 433.926851 + 0: The maximum resident set size (KB) = 838516 Test 063 hrrr_control_restart PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_v1beta -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/rrfs_v1beta +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/rrfs_v1beta Checking test 064 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2818,14 +2770,14 @@ Checking test 064 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 700.726735 - 0: The maximum resident set size (KB) = 951084 + 0: The total amount of wall time = 624.555667 + 0: The maximum resident set size (KB) = 949716 Test 064 rrfs_v1beta PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_v1nssl -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/rrfs_v1nssl +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/rrfs_v1nssl Checking test 065 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2840,14 +2792,14 @@ Checking test 065 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 811.948972 - 0: The maximum resident set size (KB) = 634916 + 0: The total amount of wall time = 739.874154 + 0: The maximum resident set size (KB) = 633760 Test 065 rrfs_v1nssl PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/rrfs_v1nssl_nohailnoccn +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/rrfs_v1nssl_nohailnoccn Checking test 066 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2862,14 +2814,14 @@ Checking test 066 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 789.179810 - 0: The maximum resident set size (KB) = 637924 + 0: The total amount of wall time = 737.141712 + 0: The maximum resident set size (KB) = 634684 Test 066 rrfs_v1nssl_nohailnoccn PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/rrfs_smoke_conus13km_hrrr_warm Checking test 067 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2878,14 +2830,14 @@ Checking test 067 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 257.539594 - 0: The maximum resident set size (KB) = 905260 + 0: The total amount of wall time = 203.879215 + 0: The maximum resident set size (KB) = 896900 Test 067 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/rrfs_smoke_conus13km_hrrr_warm_2threads +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 068 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2894,14 +2846,14 @@ Checking test 068 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 178.565872 - 0: The maximum resident set size (KB) = 863324 + 0: The total amount of wall time = 135.069610 + 0: The maximum resident set size (KB) = 858784 Test 068 rrfs_smoke_conus13km_hrrr_warm_2threads PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/rrfs_conus13km_hrrr_warm +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/rrfs_conus13km_hrrr_warm Checking test 069 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2910,14 +2862,14 @@ Checking test 069 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 231.074799 - 0: The maximum resident set size (KB) = 878428 + 0: The total amount of wall time = 182.523467 + 0: The maximum resident set size (KB) = 877856 Test 069 rrfs_conus13km_hrrr_warm PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/rrfs_smoke_conus13km_radar_tten_warm +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/rrfs_smoke_conus13km_radar_tten_warm Checking test 070 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2926,26 +2878,26 @@ Checking test 070 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 239.719951 - 0: The maximum resident set size (KB) = 896176 + 0: The total amount of wall time = 210.062570 + 0: The maximum resident set size (KB) = 897628 Test 070 rrfs_smoke_conus13km_radar_tten_warm PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 071 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 117.397314 - 0: The maximum resident set size (KB) = 849588 + 0: The total amount of wall time = 105.941695 + 0: The maximum resident set size (KB) = 851216 Test 071 rrfs_conus13km_hrrr_warm_restart_mismatch PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_csawmg -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_csawmg +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_csawmg Checking test 072 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2956,14 +2908,14 @@ Checking test 072 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 532.392483 + 0: The total amount of wall time = 474.914375 0: The maximum resident set size (KB) = 673392 Test 072 control_csawmg PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_csawmgt -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_csawmgt +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_csawmgt Checking test 073 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2974,14 +2926,14 @@ Checking test 073 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 525.051615 - 0: The maximum resident set size (KB) = 661928 + 0: The total amount of wall time = 465.137220 + 0: The maximum resident set size (KB) = 668316 Test 073 control_csawmgt PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_ras -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_ras +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_ras Checking test 074 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2992,26 +2944,26 @@ Checking test 074 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 308.631405 - 0: The maximum resident set size (KB) = 634260 + 0: The total amount of wall time = 252.409083 + 0: The maximum resident set size (KB) = 640256 Test 074 control_ras PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_wam -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_wam +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_wam Checking test 075 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 169.274900 - 0: The maximum resident set size (KB) = 479356 + 0: The total amount of wall time = 154.218261 + 0: The maximum resident set size (KB) = 483024 Test 075 control_wam PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_faster -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_p8_faster +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_p8_faster Checking test 076 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3058,14 +3010,14 @@ Checking test 076 control_p8_faster results .... Comparing 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.615659 - 0: The maximum resident set size (KB) = 1547660 + 0: The total amount of wall time = 221.019204 + 0: The maximum resident set size (KB) = 1534684 Test 076 control_p8_faster PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control_faster -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/regional_control_faster +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/regional_control_faster Checking test 077 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3076,56 +3028,56 @@ Checking test 077 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 413.537589 - 0: The maximum resident set size (KB) = 784112 + 0: The total amount of wall time = 382.242565 + 0: The maximum resident set size (KB) = 788160 Test 077 regional_control_faster PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 078 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 1109.403744 - 0: The maximum resident set size (KB) = 935624 + 0: The total amount of wall time = 1095.245430 + 0: The maximum resident set size (KB) = 920904 Test 078 rrfs_smoke_conus13km_hrrr_warm_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 079 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 664.635352 - 0: The maximum resident set size (KB) = 891036 + 0: The total amount of wall time = 636.762141 + 0: The maximum resident set size (KB) = 889540 Test 079 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/rrfs_conus13km_hrrr_warm_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/rrfs_conus13km_hrrr_warm_debug Checking test 080 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 975.277921 - 0: The maximum resident set size (KB) = 910608 + 0: The total amount of wall time = 978.460504 + 0: The maximum resident set size (KB) = 909592 Test 080 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_CubedSphereGrid_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_CubedSphereGrid_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_CubedSphereGrid_debug Checking test 081 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3152,348 +3104,348 @@ Checking test 081 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 209.457379 - 0: The maximum resident set size (KB) = 730424 + 0: The total amount of wall time = 198.782239 + 0: The maximum resident set size (KB) = 732548 Test 081 control_CubedSphereGrid_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_wrtGauss_netcdf_parallel_debug Checking test 082 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 200.437363 - 0: The maximum resident set size (KB) = 739384 + 0: The total amount of wall time = 191.852030 + 0: The maximum resident set size (KB) = 732620 Test 082 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_stochy_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_stochy_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_stochy_debug Checking test 083 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 227.802722 - 0: The maximum resident set size (KB) = 740720 + 0: The total amount of wall time = 213.893776 + 0: The maximum resident set size (KB) = 736948 Test 083 control_stochy_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_lndp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_lndp_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_lndp_debug Checking test 084 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 201.745708 - 0: The maximum resident set size (KB) = 735284 + 0: The total amount of wall time = 193.414745 + 0: The maximum resident set size (KB) = 739040 Test 084 control_lndp_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_csawmg_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_csawmg_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_csawmg_debug Checking test 085 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 308.187411 - 0: The maximum resident set size (KB) = 787096 + 0: The total amount of wall time = 302.577768 + 0: The maximum resident set size (KB) = 783724 Test 085 control_csawmg_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_csawmgt_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_csawmgt_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_csawmgt_debug Checking test 086 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 312.414049 - 0: The maximum resident set size (KB) = 784460 + 0: The total amount of wall time = 296.028800 + 0: The maximum resident set size (KB) = 776996 Test 086 control_csawmgt_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_ras_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_ras_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_ras_debug Checking test 087 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 216.202113 - 0: The maximum resident set size (KB) = 746692 + 0: The total amount of wall time = 194.980485 + 0: The maximum resident set size (KB) = 742020 Test 087 control_ras_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_diag_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_diag_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_diag_debug Checking test 088 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 221.821530 - 0: The maximum resident set size (KB) = 793340 + 0: The total amount of wall time = 205.921504 + 0: The maximum resident set size (KB) = 784584 Test 088 control_diag_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_debug_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_debug_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_debug_p8 Checking test 089 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 221.276339 - 0: The maximum resident set size (KB) = 1551100 + 0: The total amount of wall time = 220.580859 + 0: The maximum resident set size (KB) = 1559764 Test 089 control_debug_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/regional_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/regional_debug Checking test 090 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1288.552729 - 0: The maximum resident set size (KB) = 803872 + 0: The total amount of wall time = 1284.267709 + 0: The maximum resident set size (KB) = 795984 Test 090 regional_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/rap_control_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/rap_control_debug Checking test 091 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 366.293930 - 0: The maximum resident set size (KB) = 1113452 + 0: The total amount of wall time = 350.467059 + 0: The maximum resident set size (KB) = 1111812 Test 091 rap_control_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/hrrr_control_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/hrrr_control_debug Checking test 092 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 342.345390 - 0: The maximum resident set size (KB) = 1112200 + 0: The total amount of wall time = 341.503922 + 0: The maximum resident set size (KB) = 1112236 Test 092 hrrr_control_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/rap_unified_drag_suite_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/rap_unified_drag_suite_debug Checking test 093 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 357.027959 - 0: The maximum resident set size (KB) = 1105504 + 0: The total amount of wall time = 348.795063 + 0: The maximum resident set size (KB) = 1114364 Test 093 rap_unified_drag_suite_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_diag_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/rap_diag_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/rap_diag_debug Checking test 094 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 378.025044 - 0: The maximum resident set size (KB) = 1193224 + 0: The total amount of wall time = 370.513851 + 0: The maximum resident set size (KB) = 1190048 Test 094 rap_diag_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/rap_cires_ugwp_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/rap_cires_ugwp_debug Checking test 095 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 374.673621 - 0: The maximum resident set size (KB) = 1105788 + 0: The total amount of wall time = 361.568296 + 0: The maximum resident set size (KB) = 1104140 Test 095 rap_cires_ugwp_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/rap_unified_ugwp_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/rap_unified_ugwp_debug Checking test 096 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 364.449448 - 0: The maximum resident set size (KB) = 1104880 + 0: The total amount of wall time = 359.417144 + 0: The maximum resident set size (KB) = 1116964 Test 096 rap_unified_ugwp_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_lndp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/rap_lndp_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/rap_lndp_debug Checking test 097 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 358.446608 - 0: The maximum resident set size (KB) = 1106064 + 0: The total amount of wall time = 356.663861 + 0: The maximum resident set size (KB) = 1105880 Test 097 rap_lndp_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_progcld_thompson_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/rap_progcld_thompson_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/rap_progcld_thompson_debug Checking test 098 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 356.533009 - 0: The maximum resident set size (KB) = 1108216 + 0: The total amount of wall time = 352.471651 + 0: The maximum resident set size (KB) = 1112332 Test 098 rap_progcld_thompson_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_noah_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/rap_noah_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/rap_noah_debug Checking test 099 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 349.057666 - 0: The maximum resident set size (KB) = 1106804 + 0: The total amount of wall time = 348.450009 + 0: The maximum resident set size (KB) = 1106492 Test 099 rap_noah_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_sfcdiff_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/rap_sfcdiff_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/rap_sfcdiff_debug Checking test 100 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 354.153228 - 0: The maximum resident set size (KB) = 1116628 + 0: The total amount of wall time = 350.739331 + 0: The maximum resident set size (KB) = 1107976 Test 100 rap_sfcdiff_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/rap_noah_sfcdiff_cires_ugwp_debug Checking test 101 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 587.554779 - 0: The maximum resident set size (KB) = 1109044 + 0: The total amount of wall time = 582.262471 + 0: The maximum resident set size (KB) = 1102000 Test 101 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_v1beta_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/rrfs_v1beta_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/rrfs_v1beta_debug Checking test 102 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 348.294228 - 0: The maximum resident set size (KB) = 1107916 + 0: The total amount of wall time = 343.352952 + 0: The maximum resident set size (KB) = 1101532 Test 102 rrfs_v1beta_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_clm_lake_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/rap_clm_lake_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/rap_clm_lake_debug Checking test 103 rap_clm_lake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 435.991621 - 0: The maximum resident set size (KB) = 1110796 + 0: The total amount of wall time = 429.114386 + 0: The maximum resident set size (KB) = 1115836 Test 103 rap_clm_lake_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_flake_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/rap_flake_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/rap_flake_debug Checking test 104 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 364.863750 - 0: The maximum resident set size (KB) = 1107652 + 0: The total amount of wall time = 361.127563 + 0: The maximum resident set size (KB) = 1110128 Test 104 rap_flake_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_wam_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_wam_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_wam_debug Checking test 105 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 362.373473 - 0: The maximum resident set size (KB) = 435092 + 0: The total amount of wall time = 354.597543 + 0: The maximum resident set size (KB) = 437020 Test 105 control_wam_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3504,14 +3456,14 @@ Checking test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 345.095550 - 0: The maximum resident set size (KB) = 986128 + 0: The total amount of wall time = 317.981607 + 0: The maximum resident set size (KB) = 980616 Test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/rap_control_dyn32_phy32 Checking test 107 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3558,14 +3510,14 @@ Checking test 107 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 540.854021 - 0: The maximum resident set size (KB) = 844960 + 0: The total amount of wall time = 516.824953 + 0: The maximum resident set size (KB) = 852700 Test 107 rap_control_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/hrrr_control_dyn32_phy32 Checking test 108 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3612,14 +3564,14 @@ Checking test 108 hrrr_control_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 267.477712 - 0: The maximum resident set size (KB) = 826560 + 0: The total amount of wall time = 263.013026 + 0: The maximum resident set size (KB) = 837348 Test 108 hrrr_control_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/rap_2threads_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/rap_2threads_dyn32_phy32 Checking test 109 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3666,14 +3618,14 @@ Checking test 109 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 533.405927 - 0: The maximum resident set size (KB) = 879232 + 0: The total amount of wall time = 494.819913 + 0: The maximum resident set size (KB) = 887632 Test 109 rap_2threads_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/hrrr_control_2threads_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/hrrr_control_2threads_dyn32_phy32 Checking test 110 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3720,14 +3672,14 @@ Checking test 110 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 259.777073 - 0: The maximum resident set size (KB) = 865172 + 0: The total amount of wall time = 241.341593 + 0: The maximum resident set size (KB) = 878856 Test 110 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/hrrr_control_decomp_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/hrrr_control_decomp_dyn32_phy32 Checking test 111 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3774,14 +3726,14 @@ Checking test 111 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 290.037453 - 0: The maximum resident set size (KB) = 822200 + 0: The total amount of wall time = 271.928015 + 0: The maximum resident set size (KB) = 828388 Test 111 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/rap_restart_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/rap_restart_dyn32_phy32 Checking test 112 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3820,28 +3772,28 @@ Checking test 112 rap_restart_dyn32_phy32 results .... Comparing 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.560314 - 0: The maximum resident set size (KB) = 810036 + 0: The total amount of wall time = 377.536025 + 0: The maximum resident set size (KB) = 804588 Test 112 rap_restart_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/hrrr_control_restart_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/hrrr_control_restart_dyn32_phy32 Checking test 113 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 140.081012 - 0: The maximum resident set size (KB) = 764388 + 0: The total amount of wall time = 135.532356 + 0: The maximum resident set size (KB) = 755616 Test 113 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_dyn64_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/rap_control_dyn64_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/rap_control_dyn64_phy32 Checking test 114 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3888,81 +3840,81 @@ Checking test 114 rap_control_dyn64_phy32 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 = 336.281729 - 0: The maximum resident set size (KB) = 867340 + 0: The total amount of wall time = 335.492895 + 0: The maximum resident set size (KB) = 872708 Test 114 rap_control_dyn64_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/rap_control_debug_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/rap_control_debug_dyn32_phy32 Checking test 115 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 352.831862 - 0: The maximum resident set size (KB) = 1005268 + 0: The total amount of wall time = 344.694557 + 0: The maximum resident set size (KB) = 999108 Test 115 rap_control_debug_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/hrrr_control_debug_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/hrrr_control_debug_dyn32_phy32 Checking test 116 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 356.286737 - 0: The maximum resident set size (KB) = 993148 + 0: The total amount of wall time = 335.745733 + 0: The maximum resident set size (KB) = 1000108 Test 116 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/rap_control_dyn64_phy32_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/rap_control_dyn64_phy32_debug Checking test 117 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 356.675201 - 0: The maximum resident set size (KB) = 1027888 + 0: The total amount of wall time = 355.464336 + 0: The maximum resident set size (KB) = 1030488 Test 117 rap_control_dyn64_phy32_debug PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/hafs_regional_atm +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/hafs_regional_atm Checking test 118 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 382.199689 - 0: The maximum resident set size (KB) = 1229784 + 0: The total amount of wall time = 354.872752 + 0: The maximum resident set size (KB) = 1218852 Test 118 hafs_regional_atm PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/hafs_regional_atm_thompson_gfdlsf Checking test 119 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 519.481687 - 0: The maximum resident set size (KB) = 1515832 + 0: The total amount of wall time = 436.578449 + 0: The maximum resident set size (KB) = 1584992 Test 119 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm_ocn -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/hafs_regional_atm_ocn +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/hafs_regional_atm_ocn Checking test 120 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3971,14 +3923,14 @@ Checking test 120 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 534.296634 - 0: The maximum resident set size (KB) = 1263188 + 0: The total amount of wall time = 534.671455 + 0: The maximum resident set size (KB) = 1295448 Test 120 hafs_regional_atm_ocn PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm_wav -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/hafs_regional_atm_wav +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/hafs_regional_atm_wav Checking test 121 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3987,14 +3939,14 @@ Checking test 121 hafs_regional_atm_wav results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 884.029113 - 0: The maximum resident set size (KB) = 1323824 + 0: The total amount of wall time = 942.736185 + 0: The maximum resident set size (KB) = 1322080 Test 121 hafs_regional_atm_wav PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/hafs_regional_atm_ocn_wav +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/hafs_regional_atm_ocn_wav Checking test 122 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4005,14 +3957,14 @@ Checking test 122 hafs_regional_atm_ocn_wav results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 1079.092724 - 0: The maximum resident set size (KB) = 1342728 + 0: The total amount of wall time = 1036.348543 + 0: The maximum resident set size (KB) = 1342588 -Test 122 hafs_regional_atm_ocn_wav PASS +Test 122 hafs_regional_atm_ocn_wav PASS Tries: 2 baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_docn -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/hafs_regional_docn +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/hafs_regional_docn Checking test 123 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4020,14 +3972,14 @@ Checking test 123 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 515.797101 - 0: The maximum resident set size (KB) = 1303448 + 0: The total amount of wall time = 500.679887 + 0: The maximum resident set size (KB) = 1305512 Test 123 hafs_regional_docn PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_docn_oisst -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/hafs_regional_docn_oisst +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/hafs_regional_docn_oisst Checking test 124 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4035,118 +3987,118 @@ Checking test 124 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 520.852498 - 0: The maximum resident set size (KB) = 1298820 + 0: The total amount of wall time = 501.415864 + 0: The maximum resident set size (KB) = 1294880 Test 124 hafs_regional_docn_oisst PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/datm_cdeps_control_cfsr Checking test 125 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 236.253837 - 0: The maximum resident set size (KB) = 963768 + 0: The total amount of wall time = 240.470648 + 0: The maximum resident set size (KB) = 968668 Test 125 datm_cdeps_control_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/datm_cdeps_restart_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/datm_cdeps_restart_cfsr Checking test 126 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.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.998982 - 0: The maximum resident set size (KB) = 932580 + 0: The total amount of wall time = 130.078509 + 0: The maximum resident set size (KB) = 949064 Test 126 datm_cdeps_restart_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_control_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/datm_cdeps_control_gefs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/datm_cdeps_control_gefs Checking test 127 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 241.304196 - 0: The maximum resident set size (KB) = 863444 + 0: The total amount of wall time = 231.956769 + 0: The maximum resident set size (KB) = 859520 Test 127 datm_cdeps_control_gefs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_iau_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/datm_cdeps_iau_gefs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/datm_cdeps_iau_gefs Checking test 128 datm_cdeps_iau_gefs 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 = 246.827401 - 0: The maximum resident set size (KB) = 869724 + 0: The total amount of wall time = 234.055694 + 0: The maximum resident set size (KB) = 858880 Test 128 datm_cdeps_iau_gefs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_stochy_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/datm_cdeps_stochy_gefs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/datm_cdeps_stochy_gefs Checking test 129 datm_cdeps_stochy_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 240.289819 - 0: The maximum resident set size (KB) = 860108 + 0: The total amount of wall time = 231.124768 + 0: The maximum resident set size (KB) = 868068 Test 129 datm_cdeps_stochy_gefs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/datm_cdeps_ciceC_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/datm_cdeps_ciceC_cfsr Checking test 130 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 240.528467 - 0: The maximum resident set size (KB) = 959496 + 0: The total amount of wall time = 229.099308 + 0: The maximum resident set size (KB) = 961516 Test 130 datm_cdeps_ciceC_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/datm_cdeps_bulk_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/datm_cdeps_bulk_cfsr Checking test 131 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 221.091261 - 0: The maximum resident set size (KB) = 965716 + 0: The total amount of wall time = 230.295576 + 0: The maximum resident set size (KB) = 966568 Test 131 datm_cdeps_bulk_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/datm_cdeps_bulk_gefs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/datm_cdeps_bulk_gefs Checking test 132 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 240.822424 - 0: The maximum resident set size (KB) = 863716 + 0: The total amount of wall time = 224.466458 + 0: The maximum resident set size (KB) = 857396 Test 132 datm_cdeps_bulk_gefs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/datm_cdeps_mx025_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/datm_cdeps_mx025_cfsr Checking test 133 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4155,14 +4107,14 @@ Checking test 133 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 663.905521 - 0: The maximum resident set size (KB) = 764396 + 0: The total amount of wall time = 624.861325 + 0: The maximum resident set size (KB) = 764544 Test 133 datm_cdeps_mx025_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/datm_cdeps_mx025_gefs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/datm_cdeps_mx025_gefs Checking test 134 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4171,77 +4123,77 @@ Checking test 134 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 615.073142 - 0: The maximum resident set size (KB) = 733832 + 0: The total amount of wall time = 617.400673 + 0: The maximum resident set size (KB) = 742900 Test 134 datm_cdeps_mx025_gefs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/datm_cdeps_multiple_files_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/datm_cdeps_multiple_files_cfsr Checking test 135 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 233.766560 - 0: The maximum resident set size (KB) = 969440 + 0: The total amount of wall time = 234.066664 + 0: The maximum resident set size (KB) = 954048 Test 135 datm_cdeps_multiple_files_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/datm_cdeps_3072x1536_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/datm_cdeps_3072x1536_cfsr Checking test 136 datm_cdeps_3072x1536_cfsr 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 = 353.230192 - 0: The maximum resident set size (KB) = 2258808 + 0: The total amount of wall time = 319.607465 + 0: The maximum resident set size (KB) = 2268188 Test 136 datm_cdeps_3072x1536_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_gfs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/datm_cdeps_gfs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/datm_cdeps_gfs Checking test 137 datm_cdeps_gfs 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 = 357.008430 - 0: The maximum resident set size (KB) = 2246080 + 0: The total amount of wall time = 338.366261 + 0: The maximum resident set size (KB) = 2255272 Test 137 datm_cdeps_gfs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_debug_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/datm_cdeps_debug_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/datm_cdeps_debug_cfsr Checking test 138 datm_cdeps_debug_cfsr 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 = 478.173055 - 0: The maximum resident set size (KB) = 932876 + 0: The total amount of wall time = 466.157964 + 0: The maximum resident set size (KB) = 907748 Test 138 datm_cdeps_debug_cfsr PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_control_cfsr_faster -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/datm_cdeps_control_cfsr_faster +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/datm_cdeps_control_cfsr_faster Checking test 139 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.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 = 235.472652 - 0: The maximum resident set size (KB) = 961324 + 0: The total amount of wall time = 217.227167 + 0: The maximum resident set size (KB) = 960644 Test 139 datm_cdeps_control_cfsr_faster PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/datm_cdeps_lnd_gswp3 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/datm_cdeps_lnd_gswp3 Checking test 140 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4250,14 +4202,14 @@ Checking test 140 datm_cdeps_lnd_gswp3 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 = 19.029263 - 0: The maximum resident set size (KB) = 241204 + 0: The total amount of wall time = 17.378304 + 0: The maximum resident set size (KB) = 241792 Test 140 datm_cdeps_lnd_gswp3 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/datm_cdeps_lnd_gswp3_rst +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/datm_cdeps_lnd_gswp3_rst Checking test 141 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4266,14 +4218,14 @@ Checking test 141 datm_cdeps_lnd_gswp3_rst 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 = 23.320219 - 0: The maximum resident set size (KB) = 239024 + 0: The total amount of wall time = 19.821556 + 0: The maximum resident set size (KB) = 240572 Test 141 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_atmlnd_sbs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_p8_atmlnd_sbs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_p8_atmlnd_sbs Checking test 142 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4358,14 +4310,14 @@ Checking test 142 control_p8_atmlnd_sbs 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 = 297.046004 - 0: The maximum resident set size (KB) = 1601656 + 0: The total amount of wall time = 293.761179 + 0: The maximum resident set size (KB) = 1596776 Test 142 control_p8_atmlnd_sbs PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/atmwav_control_noaero_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/atmwav_control_noaero_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/atmwav_control_noaero_p8 Checking test 143 atmwav_control_noaero_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4408,14 +4360,14 @@ Checking test 143 atmwav_control_noaero_p8 results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 130.491167 - 0: The maximum resident set size (KB) = 1561324 + 0: The total amount of wall time = 131.395508 + 0: The maximum resident set size (KB) = 1565540 Test 143 atmwav_control_noaero_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_atmwav -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/control_atmwav +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_atmwav Checking test 144 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4459,14 +4411,14 @@ Checking test 144 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 125.013014 - 0: The maximum resident set size (KB) = 594868 + 0: The total amount of wall time = 123.748846 + 0: The maximum resident set size (KB) = 598332 Test 144 control_atmwav PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/atmaero_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/atmaero_control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/atmaero_control_p8 Checking test 145 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4510,14 +4462,14 @@ Checking test 145 atmaero_control_p8 results .... Comparing 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.119572 - 0: The maximum resident set size (KB) = 1631720 + 0: The total amount of wall time = 312.952949 + 0: The maximum resident set size (KB) = 1638584 Test 145 atmaero_control_p8 PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/atmaero_control_p8_rad -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/atmaero_control_p8_rad +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/atmaero_control_p8_rad Checking test 146 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4561,14 +4513,14 @@ Checking test 146 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 387.515454 - 0: The maximum resident set size (KB) = 1663252 + 0: The total amount of wall time = 382.516810 + 0: The maximum resident set size (KB) = 1663760 Test 146 atmaero_control_p8_rad PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_241154/atmaero_control_p8_rad_micro +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/atmaero_control_p8_rad_micro Checking test 147 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4612,12 +4564,72 @@ Checking test 147 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 408.187459 - 0: The maximum resident set size (KB) = 1684284 + 0: The total amount of wall time = 389.306770 + 0: The maximum resident set size (KB) = 1667400 Test 147 atmaero_control_p8_rad_micro PASS +FAILED TESTS: +Test control_c384gdas 028 failed in run_test failed + +REGRESSION TEST FAILED +Wed May 3 15:27:20 UTC 2023 +Elapsed time: 03h:03m:50s. Have a nice day! +Wed May 3 16:08:06 UTC 2023 +Start Regression test + +Compile 001 elapsed time 1816 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_c384gdas +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_13527/control_c384gdas +Checking test 001 control_c384gdas results .... + Comparing sfcf000.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf006.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF06 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF06 .........OK + Comparing RESTART/20210322.060000.coupler.res .........OK + Comparing RESTART/20210322.060000.fv_core.res.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 841.328273 + 0: The maximum resident set size (KB) = 1194412 + +Test 001 control_c384gdas PASS + REGRESSION TEST WAS SUCCESSFUL -Mon May 1 02:15:35 UTC 2023 -Elapsed time: 02h:59m:13s. Have a nice day! +Wed May 3 17:06:47 UTC 2023 +Elapsed time: 00h:58m:42s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index db82b2094f8..3d513898556 100755 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,43 +1,43 @@ -Sun Apr 30 17:31:54 CDT 2023 +Wed May 3 07:34:26 CDT 2023 Start Regression test -Compile 001 elapsed time 804 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 804 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 686 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 286 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 264 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 659 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 702 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 864 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 684 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 010 elapsed time 614 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 610 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 610 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 678 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 229 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 015 elapsed time 194 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 569 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 572 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 174 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 173 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 600 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 021 elapsed time 209 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 776 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 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 024 elapsed time 214 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 123 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 190 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 51 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 591 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 600 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 624 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 615 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 589 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 033 elapsed time 186 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 034 elapsed time 644 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 792 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 792 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 715 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 273 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 231 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 700 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 658 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 844 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 700 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 010 elapsed time 616 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 612 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 609 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 673 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 231 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 015 elapsed time 202 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 626 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 546 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 211 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 211 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 611 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 021 elapsed time 198 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 804 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 695 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 024 elapsed time 217 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 127 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 196 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 53 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 602 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 611 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 612 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 594 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 546 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 033 elapsed time 174 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 034 elapsed time 663 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8_mixedmode -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/cpld_control_p8_mixedmode +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -102,14 +102,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 302.836815 - 0: The maximum resident set size (KB) = 3144152 + 0: The total amount of wall time = 307.691832 + 0: The maximum resident set size (KB) = 3153408 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_gfsv17 -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/cpld_control_gfsv17 +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -173,14 +173,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 223.834382 - 0: The maximum resident set size (KB) = 1726620 + 0: The total amount of wall time = 226.017431 + 0: The maximum resident set size (KB) = 1727196 Test 002 cpld_control_gfsv17 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/cpld_control_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -245,14 +245,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 338.940647 - 0: The maximum resident set size (KB) = 3186120 + 0: The total amount of wall time = 345.786066 + 0: The maximum resident set size (KB) = 3177360 Test 003 cpld_control_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/cpld_restart_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -305,14 +305,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 204.199820 - 0: The maximum resident set size (KB) = 3051068 + 0: The total amount of wall time = 202.406468 + 0: The maximum resident set size (KB) = 3050180 Test 004 cpld_restart_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/cpld_control_qr_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -377,14 +377,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 342.650864 - 0: The maximum resident set size (KB) = 3192808 + 0: The total amount of wall time = 342.995234 + 0: The maximum resident set size (KB) = 3192232 Test 005 cpld_control_qr_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/cpld_restart_qr_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -437,14 +437,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 209.910891 - 0: The maximum resident set size (KB) = 3065364 + 0: The total amount of wall time = 205.709155 + 0: The maximum resident set size (KB) = 3061680 Test 006 cpld_restart_qr_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/cpld_2threads_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -497,14 +497,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 399.151931 - 0: The maximum resident set size (KB) = 3519944 + 0: The total amount of wall time = 411.370032 + 0: The maximum resident set size (KB) = 3517272 Test 007 cpld_2threads_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/cpld_decomp_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -557,14 +557,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 344.757272 - 0: The maximum resident set size (KB) = 3174776 + 0: The total amount of wall time = 342.310087 + 0: The maximum resident set size (KB) = 3175612 Test 008 cpld_decomp_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/cpld_mpi_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -617,14 +617,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 285.341684 - 0: The maximum resident set size (KB) = 3030352 + 0: The total amount of wall time = 284.117197 + 0: The maximum resident set size (KB) = 3026840 Test 009 cpld_mpi_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_ciceC_p8 -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/cpld_control_ciceC_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -689,14 +689,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 341.986827 - 0: The maximum resident set size (KB) = 3184540 + 0: The total amount of wall time = 347.818941 + 0: The maximum resident set size (KB) = 3181480 Test 010 cpld_control_ciceC_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/cpld_control_c192_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/cpld_control_c192_p8 Checking test 011 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -749,14 +749,14 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 643.660998 - 0: The maximum resident set size (KB) = 3225552 + 0: The total amount of wall time = 636.532061 + 0: The maximum resident set size (KB) = 3252504 Test 011 cpld_control_c192_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/cpld_restart_c192_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/cpld_restart_c192_p8 Checking test 012 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -809,14 +809,14 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 436.579765 - 0: The maximum resident set size (KB) = 3140964 + 0: The total amount of wall time = 444.394532 + 0: The maximum resident set size (KB) = 3162048 Test 012 cpld_restart_c192_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_bmark_p8 -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/cpld_bmark_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/cpld_bmark_p8 Checking test 013 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -864,14 +864,14 @@ Checking test 013 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 870.507059 - 0: The maximum resident set size (KB) = 4072696 + 0: The total amount of wall time = 884.215054 + 0: The maximum resident set size (KB) = 4045644 Test 013 cpld_bmark_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_bmark_p8 -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/cpld_restart_bmark_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/cpld_restart_bmark_p8 Checking test 014 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -919,14 +919,14 @@ Checking test 014 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 536.005169 - 0: The maximum resident set size (KB) = 3922156 + 0: The total amount of wall time = 527.672043 + 0: The maximum resident set size (KB) = 3978556 Test 014 cpld_restart_bmark_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_noaero_p8 -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/cpld_control_noaero_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/cpld_control_noaero_p8 Checking test 015 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -990,14 +990,14 @@ Checking test 015 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 254.226348 - 0: The maximum resident set size (KB) = 1719824 + 0: The total amount of wall time = 256.066037 + 0: The maximum resident set size (KB) = 1721512 Test 015 cpld_control_noaero_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_c96_noaero_p8 -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/cpld_control_nowave_noaero_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/cpld_control_nowave_noaero_p8 Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1059,14 +1059,14 @@ Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 258.699091 - 0: The maximum resident set size (KB) = 1770892 + 0: The total amount of wall time = 261.917029 + 0: The maximum resident set size (KB) = 1771052 Test 016 cpld_control_nowave_noaero_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_debug_p8 -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/cpld_debug_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/cpld_debug_p8 Checking test 017 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1119,14 +1119,14 @@ Checking test 017 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 535.705424 - 0: The maximum resident set size (KB) = 3243668 + 0: The total amount of wall time = 553.609249 + 0: The maximum resident set size (KB) = 3244908 Test 017 cpld_debug_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_debug_noaero_p8 -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/cpld_debug_noaero_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/cpld_debug_noaero_p8 Checking test 018 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1178,14 +1178,14 @@ Checking test 018 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 381.575361 - 0: The maximum resident set size (KB) = 1753172 + 0: The total amount of wall time = 381.883669 + 0: The maximum resident set size (KB) = 1739324 Test 018 cpld_debug_noaero_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_noaero_p8_agrid -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/cpld_control_noaero_p8_agrid +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/cpld_control_noaero_p8_agrid Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1247,14 +1247,14 @@ Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 274.977772 - 0: The maximum resident set size (KB) = 1719956 + 0: The total amount of wall time = 270.185408 + 0: The maximum resident set size (KB) = 1769148 Test 019 cpld_control_noaero_p8_agrid PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_c48 -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/cpld_control_c48 +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/cpld_control_c48 Checking test 020 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1304,14 +1304,14 @@ Checking test 020 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 497.260347 - 0: The maximum resident set size (KB) = 2808724 + 0: The total amount of wall time = 498.765477 + 0: The maximum resident set size (KB) = 2801360 Test 020 cpld_control_c48 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_warmstart_c48 -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/cpld_warmstart_c48 +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/cpld_warmstart_c48 Checking test 021 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1361,14 +1361,14 @@ Checking test 021 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 135.507576 - 0: The maximum resident set size (KB) = 2808432 + 0: The total amount of wall time = 137.142063 + 0: The maximum resident set size (KB) = 2810760 Test 021 cpld_warmstart_c48 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_warmstart_c48 -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/cpld_restart_c48 +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/cpld_restart_c48 Checking test 022 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1418,14 +1418,14 @@ Checking test 022 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 75.504654 - 0: The maximum resident set size (KB) = 2233272 + 0: The total amount of wall time = 75.763378 + 0: The maximum resident set size (KB) = 2249136 Test 022 cpld_restart_c48 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8_faster -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/cpld_control_p8_faster +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/cpld_control_p8_faster Checking test 023 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1490,14 +1490,14 @@ Checking test 023 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 320.543693 - 0: The maximum resident set size (KB) = 3178188 + 0: The total amount of wall time = 323.401551 + 0: The maximum resident set size (KB) = 3184316 Test 023 cpld_control_p8_faster PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_flake -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_flake +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_flake Checking test 024 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1508,14 +1508,14 @@ Checking test 024 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 193.486824 - 0: The maximum resident set size (KB) = 677472 + 0: The total amount of wall time = 193.367106 + 0: The maximum resident set size (KB) = 681000 Test 024 control_flake PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_CubedSphereGrid -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_CubedSphereGrid +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_CubedSphereGrid Checking test 025 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1542,28 +1542,28 @@ Checking test 025 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 132.210195 - 0: The maximum resident set size (KB) = 631028 + 0: The total amount of wall time = 130.808745 + 0: The maximum resident set size (KB) = 630048 Test 025 control_CubedSphereGrid PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_CubedSphereGrid_parallel -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_CubedSphereGrid_parallel +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_CubedSphereGrid_parallel Checking test 026 control_CubedSphereGrid_parallel 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.186591 - 0: The maximum resident set size (KB) = 635732 + 0: The total amount of wall time = 127.544161 + 0: The maximum resident set size (KB) = 631400 Test 026 control_CubedSphereGrid_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_latlon -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_latlon +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_latlon Checking test 027 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1574,32 +1574,32 @@ Checking test 027 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 132.729449 - 0: The maximum resident set size (KB) = 632192 + 0: The total amount of wall time = 133.114963 + 0: The maximum resident set size (KB) = 632800 Test 027 control_latlon PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_wrtGauss_netcdf_parallel -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_wrtGauss_netcdf_parallel +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_wrtGauss_netcdf_parallel Checking test 028 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc .........OK + Comparing sfcf024.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 = 135.899365 - 0: The maximum resident set size (KB) = 632636 + 0: The total amount of wall time = 138.204804 + 0: The maximum resident set size (KB) = 634284 Test 028 control_wrtGauss_netcdf_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_c48 -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_c48 +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_c48 Checking test 029 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1638,14 +1638,14 @@ Checking test 029 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 344.217705 -0: The maximum resident set size (KB) = 821740 +0: The total amount of wall time = 346.074144 +0: The maximum resident set size (KB) = 823228 Test 029 control_c48 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_c192 -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_c192 +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_c192 Checking test 030 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1656,14 +1656,14 @@ Checking test 030 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 533.398425 - 0: The maximum resident set size (KB) = 769368 + 0: The total amount of wall time = 529.133649 + 0: The maximum resident set size (KB) = 774748 Test 030 control_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_c384 -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_c384 +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_c384 Checking test 031 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1674,14 +1674,14 @@ Checking test 031 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 579.973652 - 0: The maximum resident set size (KB) = 1231716 + 0: The total amount of wall time = 576.907635 + 0: The maximum resident set size (KB) = 1230928 Test 031 control_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_c384gdas -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_c384gdas +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_c384gdas Checking test 032 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1724,14 +1724,14 @@ Checking test 032 control_c384gdas 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 = 512.851629 - 0: The maximum resident set size (KB) = 1340340 + 0: The total amount of wall time = 511.015644 + 0: The maximum resident set size (KB) = 1339056 Test 032 control_c384gdas PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_stochy -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_stochy +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_stochy Checking test 033 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1742,28 +1742,28 @@ Checking test 033 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 88.627311 - 0: The maximum resident set size (KB) = 633056 + 0: The total amount of wall time = 87.744372 + 0: The maximum resident set size (KB) = 637348 Test 033 control_stochy PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_stochy -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_stochy_restart +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_stochy_restart Checking test 034 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 47.766737 - 0: The maximum resident set size (KB) = 490308 + 0: The total amount of wall time = 47.960771 + 0: The maximum resident set size (KB) = 486548 Test 034 control_stochy_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_lndp -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_lndp +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_lndp Checking test 035 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1774,14 +1774,14 @@ Checking test 035 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 81.393395 - 0: The maximum resident set size (KB) = 634008 + 0: The total amount of wall time = 81.338104 + 0: The maximum resident set size (KB) = 633132 Test 035 control_lndp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_iovr4 -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_iovr4 +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_iovr4 Checking test 036 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1796,14 +1796,14 @@ Checking test 036 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.729208 - 0: The maximum resident set size (KB) = 631844 + 0: The total amount of wall time = 134.725830 + 0: The maximum resident set size (KB) = 632444 Test 036 control_iovr4 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_iovr5 -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_iovr5 +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_iovr5 Checking test 037 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1818,14 +1818,14 @@ Checking test 037 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.656075 - 0: The maximum resident set size (KB) = 633220 + 0: The total amount of wall time = 135.685619 + 0: The maximum resident set size (KB) = 634072 Test 037 control_iovr5 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_p8 Checking test 038 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1872,14 +1872,14 @@ Checking test 038 control_p8 results .... Comparing 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.177328 - 0: The maximum resident set size (KB) = 1600452 + 0: The total amount of wall time = 167.028696 + 0: The maximum resident set size (KB) = 1605564 Test 038 control_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_restart_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_restart_p8 Checking test 039 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1918,14 +1918,14 @@ Checking test 039 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 90.024075 - 0: The maximum resident set size (KB) = 876888 + 0: The total amount of wall time = 88.002158 + 0: The maximum resident set size (KB) = 884792 Test 039 control_restart_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_qr_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_qr_p8 Checking test 040 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1972,14 +1972,14 @@ Checking test 040 control_qr_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 170.921414 - 0: The maximum resident set size (KB) = 1602736 + 0: The total amount of wall time = 167.269687 + 0: The maximum resident set size (KB) = 1617376 Test 040 control_qr_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_restart_qr_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_restart_qr_p8 Checking test 041 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2018,14 +2018,14 @@ Checking test 041 control_restart_qr_p8 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 = 92.565020 - 0: The maximum resident set size (KB) = 867616 + 0: The total amount of wall time = 90.220621 + 0: The maximum resident set size (KB) = 872932 Test 041 control_restart_qr_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_decomp_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_decomp_p8 Checking test 042 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2068,14 +2068,14 @@ Checking test 042 control_decomp_p8 results .... Comparing 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.065057 - 0: The maximum resident set size (KB) = 1594696 + 0: The total amount of wall time = 174.445486 + 0: The maximum resident set size (KB) = 1587836 Test 042 control_decomp_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_2threads_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_2threads_p8 Checking test 043 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2118,14 +2118,14 @@ Checking test 043 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 179.760980 - 0: The maximum resident set size (KB) = 1689316 + 0: The total amount of wall time = 176.137685 + 0: The maximum resident set size (KB) = 1696824 Test 043 control_2threads_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_lndp -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_p8_lndp +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_p8_lndp Checking test 044 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2144,14 +2144,14 @@ Checking test 044 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 313.530211 - 0: The maximum resident set size (KB) = 1610292 + 0: The total amount of wall time = 311.591426 + 0: The maximum resident set size (KB) = 1600508 Test 044 control_p8_lndp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_rrtmgp -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_p8_rrtmgp +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_p8_rrtmgp Checking test 045 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2198,14 +2198,14 @@ Checking test 045 control_p8_rrtmgp results .... Comparing 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.253873 - 0: The maximum resident set size (KB) = 1679376 + 0: The total amount of wall time = 226.844177 + 0: The maximum resident set size (KB) = 1679184 Test 045 control_p8_rrtmgp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_mynn -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_p8_mynn +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_p8_mynn Checking test 046 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2252,14 +2252,14 @@ Checking test 046 control_p8_mynn results .... Comparing 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.923628 - 0: The maximum resident set size (KB) = 1604468 + 0: The total amount of wall time = 170.661883 + 0: The maximum resident set size (KB) = 1609480 Test 046 control_p8_mynn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/merra2_thompson -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/merra2_thompson +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/merra2_thompson Checking test 047 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2306,14 +2306,14 @@ Checking test 047 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 191.027516 - 0: The maximum resident set size (KB) = 1616640 + 0: The total amount of wall time = 188.945876 + 0: The maximum resident set size (KB) = 1618088 Test 047 merra2_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/regional_control +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/regional_control Checking test 048 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2324,28 +2324,28 @@ Checking test 048 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 298.419040 - 0: The maximum resident set size (KB) = 870916 + 0: The total amount of wall time = 294.561270 + 0: The maximum resident set size (KB) = 868772 Test 048 regional_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/regional_restart +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/regional_restart Checking test 049 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 153.381527 - 0: The maximum resident set size (KB) = 860612 + 0: The total amount of wall time = 152.709925 + 0: The maximum resident set size (KB) = 831132 Test 049 regional_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/regional_control_qr +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/regional_control_qr Checking test 050 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2356,28 +2356,28 @@ Checking test 050 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 297.524854 - 0: The maximum resident set size (KB) = 871764 + 0: The total amount of wall time = 297.447452 + 0: The maximum resident set size (KB) = 835932 Test 050 regional_control_qr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/regional_restart_qr +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/regional_restart_qr Checking test 051 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 151.042307 - 0: The maximum resident set size (KB) = 865132 + 0: The total amount of wall time = 151.906564 + 0: The maximum resident set size (KB) = 862640 Test 051 regional_restart_qr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/regional_decomp +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/regional_decomp Checking test 052 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2388,14 +2388,14 @@ Checking test 052 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 315.854452 - 0: The maximum resident set size (KB) = 866796 + 0: The total amount of wall time = 312.885741 + 0: The maximum resident set size (KB) = 861008 Test 052 regional_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/regional_2threads +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/regional_2threads Checking test 053 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2406,14 +2406,14 @@ Checking test 053 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 207.327820 - 0: The maximum resident set size (KB) = 853444 + 0: The total amount of wall time = 206.896128 + 0: The maximum resident set size (KB) = 847416 Test 053 regional_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_noquilt -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/regional_noquilt +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/regional_noquilt Checking test 054 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2421,28 +2421,28 @@ Checking test 054 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 319.818168 - 0: The maximum resident set size (KB) = 864704 + 0: The total amount of wall time = 316.200582 + 0: The maximum resident set size (KB) = 870632 Test 054 regional_noquilt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_netcdf_parallel -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/regional_netcdf_parallel +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/regional_netcdf_parallel Checking test 055 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 295.731527 - 0: The maximum resident set size (KB) = 862528 + 0: The total amount of wall time = 291.258780 + 0: The maximum resident set size (KB) = 864384 Test 055 regional_netcdf_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/regional_2dwrtdecomp +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/regional_2dwrtdecomp Checking test 056 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2453,14 +2453,14 @@ Checking test 056 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 300.254941 - 0: The maximum resident set size (KB) = 868920 + 0: The total amount of wall time = 298.024154 + 0: The maximum resident set size (KB) = 868120 Test 056 regional_2dwrtdecomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/fv3_regional_wofs -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/regional_wofs +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/regional_wofs Checking test 057 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2471,14 +2471,14 @@ Checking test 057 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 374.820654 - 0: The maximum resident set size (KB) = 633724 + 0: The total amount of wall time = 374.669524 + 0: The maximum resident set size (KB) = 628336 Test 057 regional_wofs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/rap_control +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/rap_control Checking test 058 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2525,14 +2525,14 @@ Checking test 058 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 459.690014 - 0: The maximum resident set size (KB) = 1061100 + 0: The total amount of wall time = 457.196709 + 0: The maximum resident set size (KB) = 1062448 Test 058 rap_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_spp_sppt_shum_skeb -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/regional_spp_sppt_shum_skeb +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/regional_spp_sppt_shum_skeb Checking test 059 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2543,14 +2543,14 @@ Checking test 059 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 267.660633 - 0: The maximum resident set size (KB) = 1187324 + 0: The total amount of wall time = 265.392853 + 0: The maximum resident set size (KB) = 1180744 Test 059 regional_spp_sppt_shum_skeb PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/rap_decomp +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/rap_decomp Checking test 060 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2597,14 +2597,14 @@ Checking test 060 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 477.481098 - 0: The maximum resident set size (KB) = 1000580 + 0: The total amount of wall time = 479.020339 + 0: The maximum resident set size (KB) = 1003688 Test 060 rap_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/rap_2threads +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/rap_2threads Checking test 061 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2651,14 +2651,14 @@ Checking test 061 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 471.095969 - 0: The maximum resident set size (KB) = 1138152 + 0: The total amount of wall time = 469.199513 + 0: The maximum resident set size (KB) = 1139724 Test 061 rap_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/rap_restart +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/rap_restart Checking test 062 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2697,14 +2697,14 @@ Checking test 062 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 234.779378 - 0: The maximum resident set size (KB) = 973180 + 0: The total amount of wall time = 232.262486 + 0: The maximum resident set size (KB) = 975168 Test 062 rap_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_sfcdiff -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/rap_sfcdiff +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/rap_sfcdiff Checking test 063 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2751,14 +2751,14 @@ Checking test 063 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 456.377784 - 0: The maximum resident set size (KB) = 1058860 + 0: The total amount of wall time = 459.023354 + 0: The maximum resident set size (KB) = 1053916 Test 063 rap_sfcdiff PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_sfcdiff -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/rap_sfcdiff_decomp +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/rap_sfcdiff_decomp Checking test 064 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2805,14 +2805,14 @@ Checking test 064 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 479.422342 - 0: The maximum resident set size (KB) = 992952 + 0: The total amount of wall time = 482.580329 + 0: The maximum resident set size (KB) = 1010264 Test 064 rap_sfcdiff_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_sfcdiff -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/rap_sfcdiff_restart +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/rap_sfcdiff_restart Checking test 065 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2851,14 +2851,14 @@ Checking test 065 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 341.456831 - 0: The maximum resident set size (KB) = 988068 + 0: The total amount of wall time = 340.790363 + 0: The maximum resident set size (KB) = 963932 Test 065 rap_sfcdiff_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/hrrr_control +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/hrrr_control Checking test 066 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2905,14 +2905,14 @@ Checking test 066 hrrr_control results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 426.659774 - 0: The maximum resident set size (KB) = 1055440 + 0: The total amount of wall time = 426.847859 + 0: The maximum resident set size (KB) = 1060044 Test 066 hrrr_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/hrrr_control_decomp +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/hrrr_control_decomp Checking test 067 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2959,14 +2959,14 @@ Checking test 067 hrrr_control_decomp results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 444.829164 - 0: The maximum resident set size (KB) = 1005056 + 0: The total amount of wall time = 447.761807 + 0: The maximum resident set size (KB) = 1004252 Test 067 hrrr_control_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/hrrr_control_2threads +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/hrrr_control_2threads Checking test 068 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3013,28 +3013,28 @@ Checking test 068 hrrr_control_2threads results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 359.749073 - 0: The maximum resident set size (KB) = 1076008 + 0: The total amount of wall time = 360.169862 + 0: The maximum resident set size (KB) = 1077608 Test 068 hrrr_control_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/hrrr_control_restart +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/hrrr_control_restart Checking test 069 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 318.767700 - 0: The maximum resident set size (KB) = 986772 + 0: The total amount of wall time = 318.506086 + 0: The maximum resident set size (KB) = 987400 Test 069 hrrr_control_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_v1beta -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/rrfs_v1beta +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/rrfs_v1beta Checking test 070 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3081,14 +3081,14 @@ Checking test 070 rrfs_v1beta results .... Comparing 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.590498 - 0: The maximum resident set size (KB) = 1051752 + 0: The total amount of wall time = 454.691374 + 0: The maximum resident set size (KB) = 1053960 Test 070 rrfs_v1beta PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_v1nssl -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/rrfs_v1nssl +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/rrfs_v1nssl Checking test 071 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3103,14 +3103,14 @@ Checking test 071 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 540.659039 - 0: The maximum resident set size (KB) = 699008 + 0: The total amount of wall time = 539.935359 + 0: The maximum resident set size (KB) = 693804 Test 071 rrfs_v1nssl PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/rrfs_v1nssl_nohailnoccn +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/rrfs_v1nssl_nohailnoccn Checking test 072 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3125,14 +3125,14 @@ Checking test 072 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 523.449298 - 0: The maximum resident set size (KB) = 762144 + 0: The total amount of wall time = 526.895414 + 0: The maximum resident set size (KB) = 759220 Test 072 rrfs_v1nssl_nohailnoccn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/rrfs_smoke_conus13km_hrrr_warm +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/rrfs_smoke_conus13km_hrrr_warm Checking test 073 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3141,14 +3141,14 @@ Checking test 073 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 151.393367 - 0: The maximum resident set size (KB) = 1033060 + 0: The total amount of wall time = 150.067244 + 0: The maximum resident set size (KB) = 1037284 Test 073 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/rrfs_smoke_conus13km_hrrr_warm_2threads +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 074 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3157,14 +3157,14 @@ Checking test 074 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 100.669672 - 0: The maximum resident set size (KB) = 944032 + 0: The total amount of wall time = 98.617390 + 0: The maximum resident set size (KB) = 946228 Test 074 rrfs_smoke_conus13km_hrrr_warm_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_conus13km_hrrr_warm -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/rrfs_conus13km_hrrr_warm +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/rrfs_conus13km_hrrr_warm Checking test 075 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3173,14 +3173,14 @@ Checking test 075 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 133.130973 - 0: The maximum resident set size (KB) = 992580 + 0: The total amount of wall time = 133.577182 + 0: The maximum resident set size (KB) = 994472 Test 075 rrfs_conus13km_hrrr_warm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/rrfs_smoke_conus13km_radar_tten_warm +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/rrfs_smoke_conus13km_radar_tten_warm Checking test 076 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3189,26 +3189,26 @@ Checking test 076 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 150.310049 - 0: The maximum resident set size (KB) = 1034036 + 0: The total amount of wall time = 151.155395 + 0: The maximum resident set size (KB) = 1041056 Test 076 rrfs_smoke_conus13km_radar_tten_warm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 077 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 71.357689 - 0: The maximum resident set size (KB) = 976392 + 0: The total amount of wall time = 69.858110 + 0: The maximum resident set size (KB) = 978872 Test 077 rrfs_conus13km_hrrr_warm_restart_mismatch PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_csawmg -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_csawmg +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_csawmg Checking test 078 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3219,14 +3219,14 @@ Checking test 078 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 342.800629 - 0: The maximum resident set size (KB) = 726124 + 0: The total amount of wall time = 342.077042 + 0: The maximum resident set size (KB) = 728448 Test 078 control_csawmg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_csawmgt -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_csawmgt +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_csawmgt Checking test 079 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3237,14 +3237,14 @@ Checking test 079 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 340.990149 - 0: The maximum resident set size (KB) = 668568 + 0: The total amount of wall time = 338.186308 + 0: The maximum resident set size (KB) = 727104 Test 079 control_csawmgt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_ras -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_ras +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_ras Checking test 080 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3255,26 +3255,26 @@ Checking test 080 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 181.925814 - 0: The maximum resident set size (KB) = 725832 + 0: The total amount of wall time = 181.846534 + 0: The maximum resident set size (KB) = 728328 Test 080 control_ras PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_wam -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_wam +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_wam Checking test 081 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 113.541276 - 0: The maximum resident set size (KB) = 646948 + 0: The total amount of wall time = 112.738742 + 0: The maximum resident set size (KB) = 650696 Test 081 control_wam PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_faster -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_p8_faster +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_p8_faster Checking test 082 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3321,14 +3321,14 @@ Checking test 082 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 156.982598 - 0: The maximum resident set size (KB) = 1611624 + 0: The total amount of wall time = 152.940984 + 0: The maximum resident set size (KB) = 1604780 Test 082 control_p8_faster PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control_faster -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/regional_control_faster +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/regional_control_faster Checking test 083 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3339,56 +3339,56 @@ Checking test 083 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 270.303563 - 0: The maximum resident set size (KB) = 870368 + 0: The total amount of wall time = 273.116099 + 0: The maximum resident set size (KB) = 873724 Test 083 regional_control_faster PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 084 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 828.948592 - 0: The maximum resident set size (KB) = 1062080 + 0: The total amount of wall time = 825.321942 + 0: The maximum resident set size (KB) = 1064108 Test 084 rrfs_smoke_conus13km_hrrr_warm_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 085 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 488.551737 - 0: The maximum resident set size (KB) = 940956 + 0: The total amount of wall time = 492.342913 + 0: The maximum resident set size (KB) = 982972 Test 085 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/rrfs_conus13km_hrrr_warm_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/rrfs_conus13km_hrrr_warm_debug Checking test 086 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 744.935815 - 0: The maximum resident set size (KB) = 1020680 + 0: The total amount of wall time = 757.993202 + 0: The maximum resident set size (KB) = 1022524 Test 086 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_CubedSphereGrid_debug -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_CubedSphereGrid_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_CubedSphereGrid_debug Checking test 087 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3415,348 +3415,348 @@ Checking test 087 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 159.172162 - 0: The maximum resident set size (KB) = 792404 + 0: The total amount of wall time = 152.033336 + 0: The maximum resident set size (KB) = 793256 Test 087 control_CubedSphereGrid_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_wrtGauss_netcdf_parallel_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_wrtGauss_netcdf_parallel_debug Checking test 088 control_wrtGauss_netcdf_parallel_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc .........OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 152.662867 - 0: The maximum resident set size (KB) = 794868 + 0: The total amount of wall time = 150.866208 + 0: The maximum resident set size (KB) = 797140 Test 088 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_stochy_debug -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_stochy_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_stochy_debug Checking test 089 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 175.606113 - 0: The maximum resident set size (KB) = 803872 + 0: The total amount of wall time = 174.089099 + 0: The maximum resident set size (KB) = 798228 Test 089 control_stochy_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_lndp_debug -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_lndp_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_lndp_debug Checking test 090 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 156.312281 - 0: The maximum resident set size (KB) = 796472 + 0: The total amount of wall time = 151.612288 + 0: The maximum resident set size (KB) = 802288 Test 090 control_lndp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_csawmg_debug -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_csawmg_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_csawmg_debug Checking test 091 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 234.668154 - 0: The maximum resident set size (KB) = 843792 + 0: The total amount of wall time = 231.259220 + 0: The maximum resident set size (KB) = 845044 Test 091 control_csawmg_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_csawmgt_debug -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_csawmgt_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_csawmgt_debug Checking test 092 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 233.530583 - 0: The maximum resident set size (KB) = 839836 + 0: The total amount of wall time = 229.228074 + 0: The maximum resident set size (KB) = 845204 Test 092 control_csawmgt_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_ras_debug -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_ras_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_ras_debug Checking test 093 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 155.969851 - 0: The maximum resident set size (KB) = 805600 + 0: The total amount of wall time = 149.151060 + 0: The maximum resident set size (KB) = 803920 Test 093 control_ras_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_diag_debug -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_diag_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_diag_debug Checking test 094 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 158.160821 - 0: The maximum resident set size (KB) = 851396 + 0: The total amount of wall time = 151.660047 + 0: The maximum resident set size (KB) = 855524 Test 094 control_diag_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_debug_p8 -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_debug_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_debug_p8 Checking test 095 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 170.400891 - 0: The maximum resident set size (KB) = 1619572 + 0: The total amount of wall time = 170.626916 + 0: The maximum resident set size (KB) = 1619696 Test 095 control_debug_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_debug -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/regional_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/regional_debug Checking test 096 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 994.108378 - 0: The maximum resident set size (KB) = 881984 + 0: The total amount of wall time = 991.112235 + 0: The maximum resident set size (KB) = 888960 Test 096 regional_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_debug -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/rap_control_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/rap_control_debug Checking test 097 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 270.327887 - 0: The maximum resident set size (KB) = 1174828 + 0: The total amount of wall time = 277.972285 + 0: The maximum resident set size (KB) = 1178392 Test 097 rap_control_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_debug -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/hrrr_control_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/hrrr_control_debug Checking test 098 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 267.394102 - 0: The maximum resident set size (KB) = 1167968 + 0: The total amount of wall time = 271.033972 + 0: The maximum resident set size (KB) = 1176620 Test 098 hrrr_control_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_debug -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/rap_unified_drag_suite_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/rap_unified_drag_suite_debug Checking test 099 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.939476 - 0: The maximum resident set size (KB) = 1172044 + 0: The total amount of wall time = 283.445570 + 0: The maximum resident set size (KB) = 1149508 Test 099 rap_unified_drag_suite_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_diag_debug -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/rap_diag_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/rap_diag_debug Checking test 100 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 291.456410 - 0: The maximum resident set size (KB) = 1258616 + 0: The total amount of wall time = 287.125055 + 0: The maximum resident set size (KB) = 1260608 Test 100 rap_diag_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/rap_cires_ugwp_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/rap_cires_ugwp_debug Checking test 101 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 289.870758 - 0: The maximum resident set size (KB) = 1165736 + 0: The total amount of wall time = 277.322134 + 0: The maximum resident set size (KB) = 1174096 Test 101 rap_cires_ugwp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/rap_unified_ugwp_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/rap_unified_ugwp_debug Checking test 102 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 287.136721 - 0: The maximum resident set size (KB) = 1174088 + 0: The total amount of wall time = 289.345738 + 0: The maximum resident set size (KB) = 1182484 Test 102 rap_unified_ugwp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_lndp_debug -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/rap_lndp_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/rap_lndp_debug Checking test 103 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.952072 - 0: The maximum resident set size (KB) = 1173152 + 0: The total amount of wall time = 283.856771 + 0: The maximum resident set size (KB) = 1174460 Test 103 rap_lndp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_progcld_thompson_debug -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/rap_progcld_thompson_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/rap_progcld_thompson_debug Checking test 104 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.780864 - 0: The maximum resident set size (KB) = 1174008 + 0: The total amount of wall time = 279.784217 + 0: The maximum resident set size (KB) = 1171796 Test 104 rap_progcld_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_noah_debug -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/rap_noah_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/rap_noah_debug Checking test 105 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 278.086257 - 0: The maximum resident set size (KB) = 1116552 + 0: The total amount of wall time = 268.509498 + 0: The maximum resident set size (KB) = 1170780 Test 105 rap_noah_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_sfcdiff_debug -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/rap_sfcdiff_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/rap_sfcdiff_debug Checking test 106 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.702758 - 0: The maximum resident set size (KB) = 1171616 + 0: The total amount of wall time = 276.621502 + 0: The maximum resident set size (KB) = 1176612 Test 106 rap_sfcdiff_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/rap_noah_sfcdiff_cires_ugwp_debug Checking test 107 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 457.348216 - 0: The maximum resident set size (KB) = 1170932 + 0: The total amount of wall time = 453.308880 + 0: The maximum resident set size (KB) = 1173456 Test 107 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_v1beta_debug -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/rrfs_v1beta_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/rrfs_v1beta_debug Checking test 108 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.699872 - 0: The maximum resident set size (KB) = 1131980 + 0: The total amount of wall time = 272.083385 + 0: The maximum resident set size (KB) = 1172228 Test 108 rrfs_v1beta_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_clm_lake_debug -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/rap_clm_lake_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/rap_clm_lake_debug Checking test 109 rap_clm_lake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 358.289251 - 0: The maximum resident set size (KB) = 1171120 + 0: The total amount of wall time = 352.361631 + 0: The maximum resident set size (KB) = 1175324 Test 109 rap_clm_lake_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_flake_debug -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/rap_flake_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/rap_flake_debug Checking test 110 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.559848 - 0: The maximum resident set size (KB) = 1154468 + 0: The total amount of wall time = 268.427923 + 0: The maximum resident set size (KB) = 1174152 Test 110 rap_flake_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_wam_debug -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_wam_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_wam_debug Checking test 111 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 277.223999 - 0: The maximum resident set size (KB) = 528948 + 0: The total amount of wall time = 277.113615 + 0: The maximum resident set size (KB) = 538308 Test 111 control_wam_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 112 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3767,14 +3767,14 @@ Checking test 112 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 250.087620 - 0: The maximum resident set size (KB) = 1077348 + 0: The total amount of wall time = 250.487390 + 0: The maximum resident set size (KB) = 1088304 Test 112 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/rap_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/rap_control_dyn32_phy32 Checking test 113 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3821,14 +3821,14 @@ Checking test 113 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 380.369294 - 0: The maximum resident set size (KB) = 997284 + 0: The total amount of wall time = 383.851459 + 0: The maximum resident set size (KB) = 1002068 Test 113 rap_control_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/hrrr_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/hrrr_control_dyn32_phy32 Checking test 114 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3875,14 +3875,14 @@ Checking test 114 hrrr_control_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 191.793022 - 0: The maximum resident set size (KB) = 965448 + 0: The total amount of wall time = 189.310241 + 0: The maximum resident set size (KB) = 951072 Test 114 hrrr_control_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/rap_2threads_dyn32_phy32 +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/rap_2threads_dyn32_phy32 Checking test 115 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3929,14 +3929,14 @@ Checking test 115 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 399.640319 - 0: The maximum resident set size (KB) = 1023920 + 0: The total amount of wall time = 397.570543 + 0: The maximum resident set size (KB) = 1024504 Test 115 rap_2threads_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/hrrr_control_2threads_dyn32_phy32 +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/hrrr_control_2threads_dyn32_phy32 Checking test 116 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3983,14 +3983,14 @@ Checking test 116 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 166.529536 - 0: The maximum resident set size (KB) = 896876 + 0: The total amount of wall time = 162.060522 + 0: The maximum resident set size (KB) = 931976 Test 116 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/hrrr_control_decomp_dyn32_phy32 +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/hrrr_control_decomp_dyn32_phy32 Checking test 117 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4037,14 +4037,14 @@ Checking test 117 hrrr_control_decomp_dyn32_phy32 results .... Comparing 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.170880 - 0: The maximum resident set size (KB) = 893416 + 0: The total amount of wall time = 201.437020 + 0: The maximum resident set size (KB) = 908976 Test 117 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/rap_restart_dyn32_phy32 +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/rap_restart_dyn32_phy32 Checking test 118 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4083,28 +4083,28 @@ Checking test 118 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 282.949380 - 0: The maximum resident set size (KB) = 952764 + 0: The total amount of wall time = 282.535541 + 0: The maximum resident set size (KB) = 951928 Test 118 rap_restart_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/hrrr_control_restart_dyn32_phy32 +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/hrrr_control_restart_dyn32_phy32 Checking test 119 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 97.725755 - 0: The maximum resident set size (KB) = 868960 + 0: The total amount of wall time = 98.726692 + 0: The maximum resident set size (KB) = 869576 Test 119 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_dyn64_phy32 -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/rap_control_dyn64_phy32 +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/rap_control_dyn64_phy32 Checking test 120 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4151,81 +4151,81 @@ Checking test 120 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 242.473281 - 0: The maximum resident set size (KB) = 974756 + 0: The total amount of wall time = 242.885360 + 0: The maximum resident set size (KB) = 970928 Test 120 rap_control_dyn64_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_debug_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/rap_control_debug_dyn32_phy32 +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/rap_control_debug_dyn32_phy32 Checking test 121 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.206742 - 0: The maximum resident set size (KB) = 1064684 + 0: The total amount of wall time = 274.986617 + 0: The maximum resident set size (KB) = 1065184 Test 121 rap_control_debug_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/hrrr_control_debug_dyn32_phy32 +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/hrrr_control_debug_dyn32_phy32 Checking test 122 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.967972 - 0: The maximum resident set size (KB) = 1057584 + 0: The total amount of wall time = 272.519981 + 0: The maximum resident set size (KB) = 1055368 Test 122 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_debug_dyn64_phy32 -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/rap_control_dyn64_phy32_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/rap_control_dyn64_phy32_debug Checking test 123 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.456213 - 0: The maximum resident set size (KB) = 1109540 + 0: The total amount of wall time = 275.757189 + 0: The maximum resident set size (KB) = 1106724 Test 123 rap_control_dyn64_phy32_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/hafs_regional_atm +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/hafs_regional_atm Checking test 124 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 265.872422 - 0: The maximum resident set size (KB) = 1050540 + 0: The total amount of wall time = 266.732140 + 0: The maximum resident set size (KB) = 1055024 Test 124 hafs_regional_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/hafs_regional_atm_thompson_gfdlsf +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/hafs_regional_atm_thompson_gfdlsf Checking test 125 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 385.651733 - 0: The maximum resident set size (KB) = 1368176 + 0: The total amount of wall time = 395.504759 + 0: The maximum resident set size (KB) = 1419904 Test 125 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm_ocn -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/hafs_regional_atm_ocn +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/hafs_regional_atm_ocn Checking test 126 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4234,14 +4234,14 @@ Checking test 126 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 374.202647 - 0: The maximum resident set size (KB) = 1226832 + 0: The total amount of wall time = 377.906343 + 0: The maximum resident set size (KB) = 1228536 Test 126 hafs_regional_atm_ocn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm_wav -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/hafs_regional_atm_wav +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/hafs_regional_atm_wav Checking test 127 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4250,14 +4250,14 @@ Checking test 127 hafs_regional_atm_wav 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 = 725.210052 - 0: The maximum resident set size (KB) = 1264352 + 0: The total amount of wall time = 729.014911 + 0: The maximum resident set size (KB) = 1263452 Test 127 hafs_regional_atm_wav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm_ocn_wav -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/hafs_regional_atm_ocn_wav +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/hafs_regional_atm_ocn_wav Checking test 128 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4268,28 +4268,28 @@ Checking test 128 hafs_regional_atm_ocn_wav results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 815.904826 - 0: The maximum resident set size (KB) = 1279600 + 0: The total amount of wall time = 825.036960 + 0: The maximum resident set size (KB) = 1277760 Test 128 hafs_regional_atm_ocn_wav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/hafs_regional_1nest_atm +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/hafs_regional_1nest_atm Checking test 129 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 361.457467 - 0: The maximum resident set size (KB) = 504804 + 0: The total amount of wall time = 361.386813 + 0: The maximum resident set size (KB) = 505720 Test 129 hafs_regional_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/hafs_regional_telescopic_2nests_atm +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/hafs_regional_telescopic_2nests_atm Checking test 130 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4298,28 +4298,28 @@ Checking test 130 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 410.777913 - 0: The maximum resident set size (KB) = 512704 + 0: The total amount of wall time = 412.777704 + 0: The maximum resident set size (KB) = 518664 Test 130 hafs_regional_telescopic_2nests_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_global_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/hafs_global_1nest_atm +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/hafs_global_1nest_atm Checking test 131 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 173.322800 - 0: The maximum resident set size (KB) = 328004 + 0: The total amount of wall time = 174.908016 + 0: The maximum resident set size (KB) = 354644 Test 131 hafs_global_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_global_multiple_4nests_atm -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/hafs_global_multiple_4nests_atm +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/hafs_global_multiple_4nests_atm Checking test 132 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4337,14 +4337,14 @@ Checking test 132 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 461.568870 - 0: The maximum resident set size (KB) = 427884 + 0: The total amount of wall time = 462.604706 + 0: The maximum resident set size (KB) = 428044 Test 132 hafs_global_multiple_4nests_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/hafs_regional_specified_moving_1nest_atm +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/hafs_regional_specified_moving_1nest_atm Checking test 133 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4353,28 +4353,28 @@ Checking test 133 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 227.147727 - 0: The maximum resident set size (KB) = 523104 + 0: The total amount of wall time = 230.372413 + 0: The maximum resident set size (KB) = 523476 Test 133 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/hafs_regional_storm_following_1nest_atm +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/hafs_regional_storm_following_1nest_atm Checking test 134 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 216.219587 - 0: The maximum resident set size (KB) = 521088 + 0: The total amount of wall time = 218.993572 + 0: The maximum resident set size (KB) = 524276 Test 134 hafs_regional_storm_following_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/hafs_regional_storm_following_1nest_atm_ocn +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/hafs_regional_storm_following_1nest_atm_ocn Checking test 135 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4383,42 +4383,42 @@ Checking test 135 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 289.430014 - 0: The maximum resident set size (KB) = 569780 + 0: The total amount of wall time = 288.990864 + 0: The maximum resident set size (KB) = 569068 Test 135 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_global_storm_following_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/hafs_global_storm_following_1nest_atm +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/hafs_global_storm_following_1nest_atm Checking test 136 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 67.915255 - 0: The maximum resident set size (KB) = 374180 + 0: The total amount of wall time = 67.390177 + 0: The maximum resident set size (KB) = 371844 Test 136 hafs_global_storm_following_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 137 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 742.409701 - 0: The maximum resident set size (KB) = 593432 + 0: The total amount of wall time = 748.096910 + 0: The maximum resident set size (KB) = 587476 Test 137 hafs_regional_storm_following_1nest_atm_ocn_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 138 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4429,14 +4429,14 @@ Checking test 138 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 536.941220 - 0: The maximum resident set size (KB) = 629788 + 0: The total amount of wall time = 540.472584 + 0: The maximum resident set size (KB) = 620488 Test 138 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_docn -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/hafs_regional_docn +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/hafs_regional_docn Checking test 139 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4444,14 +4444,14 @@ Checking test 139 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 365.939423 - 0: The maximum resident set size (KB) = 1243612 + 0: The total amount of wall time = 359.932701 + 0: The maximum resident set size (KB) = 1235856 Test 139 hafs_regional_docn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_docn_oisst -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/hafs_regional_docn_oisst +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/hafs_regional_docn_oisst Checking test 140 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4459,131 +4459,131 @@ Checking test 140 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 357.902838 - 0: The maximum resident set size (KB) = 1225612 + 0: The total amount of wall time = 362.724306 + 0: The maximum resident set size (KB) = 1224192 Test 140 hafs_regional_docn_oisst PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_datm_cdeps -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/hafs_regional_datm_cdeps +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/hafs_regional_datm_cdeps Checking test 141 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 941.296838 - 0: The maximum resident set size (KB) = 1039196 + 0: The total amount of wall time = 933.482599 + 0: The maximum resident set size (KB) = 1046192 Test 141 hafs_regional_datm_cdeps PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/datm_cdeps_control_cfsr +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/datm_cdeps_control_cfsr Checking test 142 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 144.628457 - 0: The maximum resident set size (KB) = 1057004 + 0: The total amount of wall time = 146.453403 + 0: The maximum resident set size (KB) = 1063352 Test 142 datm_cdeps_control_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/datm_cdeps_restart_cfsr +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/datm_cdeps_restart_cfsr Checking test 143 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 90.686174 - 0: The maximum resident set size (KB) = 1037548 + 0: The total amount of wall time = 91.485648 + 0: The maximum resident set size (KB) = 1022364 Test 143 datm_cdeps_restart_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_control_gefs -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/datm_cdeps_control_gefs +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/datm_cdeps_control_gefs Checking test 144 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 144.849701 - 0: The maximum resident set size (KB) = 966332 + 0: The total amount of wall time = 141.755135 + 0: The maximum resident set size (KB) = 966716 Test 144 datm_cdeps_control_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_iau_gefs -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/datm_cdeps_iau_gefs +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/datm_cdeps_iau_gefs Checking test 145 datm_cdeps_iau_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 142.719642 - 0: The maximum resident set size (KB) = 970312 + 0: The total amount of wall time = 145.472430 + 0: The maximum resident set size (KB) = 975332 Test 145 datm_cdeps_iau_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_stochy_gefs -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/datm_cdeps_stochy_gefs +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/datm_cdeps_stochy_gefs Checking test 146 datm_cdeps_stochy_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 144.880909 - 0: The maximum resident set size (KB) = 964872 + 0: The total amount of wall time = 144.529233 + 0: The maximum resident set size (KB) = 964276 Test 146 datm_cdeps_stochy_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_ciceC_cfsr -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/datm_cdeps_ciceC_cfsr +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/datm_cdeps_ciceC_cfsr Checking test 147 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 144.658293 - 0: The maximum resident set size (KB) = 1081656 + 0: The total amount of wall time = 145.171754 + 0: The maximum resident set size (KB) = 1053968 Test 147 datm_cdeps_ciceC_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_bulk_cfsr -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/datm_cdeps_bulk_cfsr +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/datm_cdeps_bulk_cfsr Checking test 148 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.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.999200 - 0: The maximum resident set size (KB) = 1032388 + 0: The total amount of wall time = 146.674902 + 0: The maximum resident set size (KB) = 1075344 Test 148 datm_cdeps_bulk_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_bulk_gefs -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/datm_cdeps_bulk_gefs +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/datm_cdeps_bulk_gefs Checking test 149 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 140.080360 - 0: The maximum resident set size (KB) = 956940 + 0: The total amount of wall time = 140.207867 + 0: The maximum resident set size (KB) = 952208 Test 149 datm_cdeps_bulk_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_mx025_cfsr -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/datm_cdeps_mx025_cfsr +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/datm_cdeps_mx025_cfsr Checking test 150 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4592,14 +4592,14 @@ Checking test 150 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 440.180170 - 0: The maximum resident set size (KB) = 876272 + 0: The total amount of wall time = 447.327439 + 0: The maximum resident set size (KB) = 877824 Test 150 datm_cdeps_mx025_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_mx025_gefs -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/datm_cdeps_mx025_gefs +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/datm_cdeps_mx025_gefs Checking test 151 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4608,77 +4608,77 @@ Checking test 151 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 439.350480 - 0: The maximum resident set size (KB) = 929284 + 0: The total amount of wall time = 446.514385 + 0: The maximum resident set size (KB) = 932804 Test 151 datm_cdeps_mx025_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/datm_cdeps_multiple_files_cfsr +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/datm_cdeps_multiple_files_cfsr Checking test 152 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 143.966493 - 0: The maximum resident set size (KB) = 1051620 + 0: The total amount of wall time = 143.477066 + 0: The maximum resident set size (KB) = 1065732 Test 152 datm_cdeps_multiple_files_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/datm_cdeps_3072x1536_cfsr +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/datm_cdeps_3072x1536_cfsr Checking test 153 datm_cdeps_3072x1536_cfsr 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 = 193.425446 - 0: The maximum resident set size (KB) = 2361400 + 0: The total amount of wall time = 196.819786 + 0: The maximum resident set size (KB) = 2353236 Test 153 datm_cdeps_3072x1536_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_gfs -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/datm_cdeps_gfs +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/datm_cdeps_gfs Checking test 154 datm_cdeps_gfs 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 = 198.601281 - 0: The maximum resident set size (KB) = 2363000 + 0: The total amount of wall time = 199.943999 + 0: The maximum resident set size (KB) = 2309044 Test 154 datm_cdeps_gfs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_debug_cfsr -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/datm_cdeps_debug_cfsr +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/datm_cdeps_debug_cfsr Checking test 155 datm_cdeps_debug_cfsr 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 = 365.796116 - 0: The maximum resident set size (KB) = 1001096 + 0: The total amount of wall time = 350.681983 + 0: The maximum resident set size (KB) = 975932 Test 155 datm_cdeps_debug_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_control_cfsr_faster -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/datm_cdeps_control_cfsr_faster +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/datm_cdeps_control_cfsr_faster Checking test 156 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.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.038543 - 0: The maximum resident set size (KB) = 1075984 + 0: The total amount of wall time = 146.386919 + 0: The maximum resident set size (KB) = 1067056 Test 156 datm_cdeps_control_cfsr_faster PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_lnd_gswp3 -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/datm_cdeps_lnd_gswp3 +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/datm_cdeps_lnd_gswp3 Checking test 157 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4687,14 +4687,14 @@ Checking test 157 datm_cdeps_lnd_gswp3 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.686906 - 0: The maximum resident set size (KB) = 228376 + 0: The total amount of wall time = 8.456536 + 0: The maximum resident set size (KB) = 264932 Test 157 datm_cdeps_lnd_gswp3 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_lnd_gswp3 -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/datm_cdeps_lnd_gswp3_rst +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/datm_cdeps_lnd_gswp3_rst Checking test 158 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4703,14 +4703,14 @@ Checking test 158 datm_cdeps_lnd_gswp3_rst 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 = 14.448834 - 0: The maximum resident set size (KB) = 263976 + 0: The total amount of wall time = 13.005100 + 0: The maximum resident set size (KB) = 256308 Test 158 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_atmlnd_sbs -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_p8_atmlnd_sbs +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_p8_atmlnd_sbs Checking test 159 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4795,14 +4795,14 @@ Checking test 159 control_p8_atmlnd_sbs 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 = 204.610688 - 0: The maximum resident set size (KB) = 1559904 + 0: The total amount of wall time = 201.619003 + 0: The maximum resident set size (KB) = 1616464 Test 159 control_p8_atmlnd_sbs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/atmwav_control_noaero_p8 -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/atmwav_control_noaero_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/atmwav_control_noaero_p8 Checking test 160 atmwav_control_noaero_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4845,14 +4845,14 @@ Checking test 160 atmwav_control_noaero_p8 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.841349 - 0: The maximum resident set size (KB) = 1638660 + 0: The total amount of wall time = 92.782510 + 0: The maximum resident set size (KB) = 1640372 Test 160 atmwav_control_noaero_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_atmwav -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/control_atmwav +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_atmwav Checking test 161 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4896,14 +4896,14 @@ Checking test 161 control_atmwav 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.905772 - 0: The maximum resident set size (KB) = 662384 + 0: The total amount of wall time = 87.093573 + 0: The maximum resident set size (KB) = 668900 Test 161 control_atmwav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/atmaero_control_p8 -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/atmaero_control_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/atmaero_control_p8 Checking test 162 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4947,14 +4947,14 @@ Checking test 162 atmaero_control_p8 results .... Comparing 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.164734 - 0: The maximum resident set size (KB) = 2919740 + 0: The total amount of wall time = 225.907062 + 0: The maximum resident set size (KB) = 2981600 -Test 162 atmaero_control_p8 PASS Tries: 2 +Test 162 atmaero_control_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/atmaero_control_p8_rad -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/atmaero_control_p8_rad +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/atmaero_control_p8_rad Checking test 163 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4998,14 +4998,14 @@ Checking test 163 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 278.713901 - 0: The maximum resident set size (KB) = 3046472 + 0: The total amount of wall time = 281.633596 + 0: The maximum resident set size (KB) = 3044604 Test 163 atmaero_control_p8_rad PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/atmaero_control_p8_rad_micro -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/atmaero_control_p8_rad_micro +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/atmaero_control_p8_rad_micro Checking test 164 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5049,14 +5049,14 @@ Checking test 164 atmaero_control_p8_rad_micro results .... Comparing 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.840943 - 0: The maximum resident set size (KB) = 3062224 + 0: The total amount of wall time = 284.025781 + 0: The maximum resident set size (KB) = 3057200 Test 164 atmaero_control_p8_rad_micro PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_atmaq -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/regional_atmaq +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/regional_atmaq Checking test 165 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5072,14 +5072,14 @@ Checking test 165 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 617.439469 - 0: The maximum resident set size (KB) = 1484424 + 0: The total amount of wall time = 616.960995 + 0: The maximum resident set size (KB) = 1479984 Test 165 regional_atmaq PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_atmaq_debug -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/regional_atmaq_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/regional_atmaq_debug Checking test 166 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5093,14 +5093,14 @@ Checking test 166 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1214.821164 - 0: The maximum resident set size (KB) = 1409868 + 0: The total amount of wall time = 1240.117106 + 0: The maximum resident set size (KB) = 1403020 Test 166 regional_atmaq_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_atmaq_faster -working dir = /work/noaa/epic-ps/jongkim/pr-1715/stmp/jongkim/FV3_RT/rt_286327/regional_atmaq_faster +working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/regional_atmaq_faster Checking test 167 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5116,12 +5116,12 @@ Checking test 167 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 547.778005 - 0: The maximum resident set size (KB) = 1298512 + 0: The total amount of wall time = 540.968041 + 0: The maximum resident set size (KB) = 1477420 Test 167 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Sun Apr 30 18:47:34 CDT 2023 -Elapsed time: 01h:15m:41s. Have a nice day! +Wed May 3 08:46:49 CDT 2023 +Elapsed time: 01h:12m:23s. Have a nice day! diff --git a/tests/RegressionTests_wcoss2.intel.log b/tests/RegressionTests_wcoss2.intel.log index c0da339c0c7..225d81da3ef 100644 --- a/tests/RegressionTests_wcoss2.intel.log +++ b/tests/RegressionTests_wcoss2.intel.log @@ -1,34 +1,34 @@ -Mon May 1 16:08:52 UTC 2023 +Wed May 3 13:42:22 UTC 2023 Start Regression test -Compile 001 elapsed time 625 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 626 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 1145 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 1174 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 005 elapsed time 1173 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 720 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 562 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 008 elapsed time 1876 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 996 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 460 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 1267 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 762 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 013 elapsed time 1092 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 534 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 015 elapsed time 735 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 974 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 017 elapsed time 308 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 598 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 019 elapsed time 1058 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 895 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 782 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 022 elapsed time 1081 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 606 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 024 elapsed time 497 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 025 elapsed time 787 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 1234 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 641 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 635 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 1314 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 005 elapsed time 1094 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 1557 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 673 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 008 elapsed time 635 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 493 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 1806 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 954 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 344 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 013 elapsed time 368 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 014 elapsed time 1193 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 810 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 799 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 017 elapsed time 456 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 958 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 019 elapsed time 490 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 718 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 1106 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 022 elapsed time 729 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 796 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 024 elapsed time 643 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 025 elapsed time 1025 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8_mixedmode -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/cpld_control_p8_mixedmode +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -93,14 +93,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 344.077926 -The maximum resident set size (KB) = 2954256 +The total amount of wall time = 336.097687 +The maximum resident set size (KB) = 2953084 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/cpld_control_p8 Checking test 002 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -165,14 +165,14 @@ Checking test 002 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 390.158668 -The maximum resident set size (KB) = 2985720 +The total amount of wall time = 390.360939 +The maximum resident set size (KB) = 2985008 Test 002 cpld_control_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/cpld_restart_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/cpld_restart_p8 Checking test 003 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -225,14 +225,14 @@ Checking test 003 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 238.465114 -The maximum resident set size (KB) = 2875016 +The total amount of wall time = 236.665734 +The maximum resident set size (KB) = 2870936 Test 003 cpld_restart_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/cpld_control_qr_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/cpld_control_qr_p8 Checking test 004 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -297,14 +297,14 @@ Checking test 004 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 394.537995 -The maximum resident set size (KB) = 3000788 +The total amount of wall time = 395.236992 +The maximum resident set size (KB) = 2994756 Test 004 cpld_control_qr_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/cpld_restart_qr_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/cpld_restart_qr_p8 Checking test 005 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -357,14 +357,14 @@ Checking test 005 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 237.670015 -The maximum resident set size (KB) = 2891364 +The total amount of wall time = 236.931555 +The maximum resident set size (KB) = 2881188 Test 005 cpld_restart_qr_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/cpld_2threads_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/cpld_2threads_p8 Checking test 006 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -417,14 +417,14 @@ Checking test 006 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 373.275613 -The maximum resident set size (KB) = 3290048 +The total amount of wall time = 372.958501 +The maximum resident set size (KB) = 3287180 Test 006 cpld_2threads_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/cpld_decomp_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/cpld_decomp_p8 Checking test 007 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -477,14 +477,14 @@ Checking test 007 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 385.621059 -The maximum resident set size (KB) = 2983140 +The total amount of wall time = 384.970138 +The maximum resident set size (KB) = 2980172 Test 007 cpld_decomp_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/cpld_mpi_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/cpld_mpi_p8 Checking test 008 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -537,14 +537,14 @@ Checking test 008 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 327.294867 -The maximum resident set size (KB) = 2913620 +The total amount of wall time = 324.373548 +The maximum resident set size (KB) = 2910948 Test 008 cpld_mpi_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_ciceC_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/cpld_control_ciceC_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/cpld_control_ciceC_p8 Checking test 009 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -609,14 +609,14 @@ Checking test 009 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 392.329465 -The maximum resident set size (KB) = 2986448 +The total amount of wall time = 387.650989 +The maximum resident set size (KB) = 2983636 Test 009 cpld_control_ciceC_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_bmark_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/cpld_bmark_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/cpld_bmark_p8 Checking test 010 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -664,14 +664,14 @@ Checking test 010 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 959.771544 -The maximum resident set size (KB) = 3920584 +The total amount of wall time = 955.246493 +The maximum resident set size (KB) = 3922064 Test 010 cpld_bmark_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_bmark_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/cpld_restart_bmark_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/cpld_restart_bmark_p8 Checking test 011 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -719,14 +719,14 @@ Checking test 011 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 662.053421 -The maximum resident set size (KB) = 3898428 +The total amount of wall time = 683.238762 +The maximum resident set size (KB) = 3898120 Test 011 cpld_restart_bmark_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/cpld_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/cpld_control_noaero_p8 Checking test 012 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -790,14 +790,14 @@ Checking test 012 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 286.633321 -The maximum resident set size (KB) = 1568260 +The total amount of wall time = 286.132413 +The maximum resident set size (KB) = 1581444 Test 012 cpld_control_noaero_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/cpld_control_nowave_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/cpld_control_nowave_noaero_p8 Checking test 013 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -859,14 +859,14 @@ Checking test 013 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 306.747489 -The maximum resident set size (KB) = 1628436 +The total amount of wall time = 305.112356 +The maximum resident set size (KB) = 1634004 Test 013 cpld_control_nowave_noaero_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/cpld_control_noaero_p8_agrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/cpld_control_noaero_p8_agrid Checking test 014 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -928,14 +928,14 @@ Checking test 014 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 314.046787 -The maximum resident set size (KB) = 1633036 +The total amount of wall time = 310.876057 +The maximum resident set size (KB) = 1622864 Test 014 cpld_control_noaero_p8_agrid PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/cpld_control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/cpld_control_c48 Checking test 015 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -985,14 +985,14 @@ Checking test 015 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 438.425360 -The maximum resident set size (KB) = 2644684 +The total amount of wall time = 441.596645 +The maximum resident set size (KB) = 2642520 Test 015 cpld_control_c48 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/cpld_warmstart_c48 Checking test 016 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1042,14 +1042,14 @@ Checking test 016 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 133.628836 -The maximum resident set size (KB) = 2658604 +The total amount of wall time = 127.264648 +The maximum resident set size (KB) = 2658404 Test 016 cpld_warmstart_c48 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/cpld_restart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/cpld_restart_c48 Checking test 017 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1099,14 +1099,14 @@ Checking test 017 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 70.563770 -The maximum resident set size (KB) = 2075248 +The total amount of wall time = 70.990707 +The maximum resident set size (KB) = 2075296 Test 017 cpld_restart_c48 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/cpld_control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/cpld_control_p8_faster Checking test 018 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1171,14 +1171,14 @@ Checking test 018 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 386.819251 -The maximum resident set size (KB) = 2980460 +The total amount of wall time = 381.174474 +The maximum resident set size (KB) = 2982784 Test 018 cpld_control_p8_faster PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_flake -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_flake +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_flake Checking test 019 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1189,14 +1189,14 @@ Checking test 019 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 216.008959 -The maximum resident set size (KB) = 566932 +The total amount of wall time = 215.223041 +The maximum resident set size (KB) = 566996 Test 019 control_flake PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_CubedSphereGrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_CubedSphereGrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_CubedSphereGrid Checking test 020 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1223,14 +1223,14 @@ Checking test 020 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 131.724510 -The maximum resident set size (KB) = 519768 +The total amount of wall time = 130.644581 +The maximum resident set size (KB) = 520936 Test 020 control_CubedSphereGrid PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_latlon -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_latlon +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_latlon Checking test 021 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1241,14 +1241,14 @@ Checking test 021 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.382709 -The maximum resident set size (KB) = 523248 +The total amount of wall time = 134.237330 +The maximum resident set size (KB) = 521500 Test 021 control_latlon PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_wrtGauss_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_wrtGauss_netcdf_parallel Checking test 022 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1259,14 +1259,14 @@ Checking test 022 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 140.641949 -The maximum resident set size (KB) = 518788 +The total amount of wall time = 135.930000 +The maximum resident set size (KB) = 521512 Test 022 control_wrtGauss_netcdf_parallel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_c48 Checking test 023 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1305,14 +1305,14 @@ Checking test 023 control_c48 results .... 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.517252 -The maximum resident set size (KB) = 680560 +The total amount of wall time = 328.433645 +The maximum resident set size (KB) = 679480 Test 023 control_c48 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_c192 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_c192 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_c192 Checking test 024 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1323,14 +1323,14 @@ Checking test 024 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 532.414530 -The maximum resident set size (KB) = 621376 +The total amount of wall time = 532.119892 +The maximum resident set size (KB) = 622820 Test 024 control_c192 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_c384 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_c384 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_c384 Checking test 025 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1341,14 +1341,14 @@ Checking test 025 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 573.002651 -The maximum resident set size (KB) = 932488 +The total amount of wall time = 571.278496 +The maximum resident set size (KB) = 931128 Test 025 control_c384 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_c384gdas -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_c384gdas +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_c384gdas Checking test 026 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1391,14 +1391,14 @@ Checking test 026 control_c384gdas 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 = 504.049559 -The maximum resident set size (KB) = 1064104 +The total amount of wall time = 500.386520 +The maximum resident set size (KB) = 1067340 Test 026 control_c384gdas PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_stochy Checking test 027 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1409,28 +1409,28 @@ Checking test 027 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 99.234317 -The maximum resident set size (KB) = 523164 +The total amount of wall time = 90.563830 +The maximum resident set size (KB) = 525772 Test 027 control_stochy PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_stochy_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_stochy_restart Checking test 028 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 51.920468 -The maximum resident set size (KB) = 294280 +The total amount of wall time = 53.556547 +The maximum resident set size (KB) = 292328 Test 028 control_stochy_restart PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_lndp Checking test 029 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1441,14 +1441,14 @@ Checking test 029 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 84.520844 -The maximum resident set size (KB) = 520668 +The total amount of wall time = 84.500841 +The maximum resident set size (KB) = 521308 Test 029 control_lndp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_iovr4 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_iovr4 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_iovr4 Checking test 030 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1463,14 +1463,14 @@ Checking test 030 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 139.760784 -The maximum resident set size (KB) = 520032 +The total amount of wall time = 135.913574 +The maximum resident set size (KB) = 519400 Test 030 control_iovr4 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_iovr5 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_iovr5 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_iovr5 Checking test 031 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1485,14 +1485,14 @@ Checking test 031 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 140.952414 -The maximum resident set size (KB) = 519268 +The total amount of wall time = 136.721853 +The maximum resident set size (KB) = 518684 Test 031 control_iovr5 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_p8 Checking test 032 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1539,14 +1539,14 @@ Checking test 032 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 186.378875 -The maximum resident set size (KB) = 1489372 +The total amount of wall time = 183.329238 +The maximum resident set size (KB) = 1489648 Test 032 control_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_restart_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_restart_p8 Checking test 033 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1585,14 +1585,14 @@ Checking test 033 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 108.649878 -The maximum resident set size (KB) = 659684 +The total amount of wall time = 103.620588 +The maximum resident set size (KB) = 659252 Test 033 control_restart_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_qr_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_qr_p8 Checking test 034 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1639,14 +1639,14 @@ Checking test 034 control_qr_p8 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 = 185.838127 -The maximum resident set size (KB) = 1497500 +The total amount of wall time = 182.842279 +The maximum resident set size (KB) = 1500504 Test 034 control_qr_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_restart_qr_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_restart_qr_p8 Checking test 035 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1685,14 +1685,14 @@ Checking test 035 control_restart_qr_p8 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 = 105.463179 -The maximum resident set size (KB) = 674312 +The total amount of wall time = 106.356990 +The maximum resident set size (KB) = 674960 Test 035 control_restart_qr_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_decomp_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_decomp_p8 Checking test 036 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1735,14 +1735,14 @@ Checking test 036 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 186.793331 -The maximum resident set size (KB) = 1488720 +The total amount of wall time = 189.825777 +The maximum resident set size (KB) = 1484652 Test 036 control_decomp_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_2threads_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_2threads_p8 Checking test 037 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1785,14 +1785,14 @@ Checking test 037 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 162.409665 -The maximum resident set size (KB) = 1577208 +The total amount of wall time = 161.558481 +The maximum resident set size (KB) = 1572140 Test 037 control_2threads_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_p8_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_p8_lndp Checking test 038 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1811,14 +1811,14 @@ Checking test 038 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 328.072294 -The maximum resident set size (KB) = 1488256 +The total amount of wall time = 327.329460 +The maximum resident set size (KB) = 1495592 Test 038 control_p8_lndp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_rrtmgp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_p8_rrtmgp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_p8_rrtmgp Checking test 039 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1865,14 +1865,14 @@ Checking test 039 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 238.782638 -The maximum resident set size (KB) = 1545960 +The total amount of wall time = 239.585699 +The maximum resident set size (KB) = 1550092 Test 039 control_p8_rrtmgp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_mynn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_p8_mynn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_p8_mynn Checking test 040 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1919,14 +1919,14 @@ Checking test 040 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 186.247089 -The maximum resident set size (KB) = 1495316 +The total amount of wall time = 183.799657 +The maximum resident set size (KB) = 1487724 Test 040 control_p8_mynn PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/merra2_thompson -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/merra2_thompson +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/merra2_thompson Checking test 041 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1973,14 +1973,14 @@ Checking test 041 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 209.426006 -The maximum resident set size (KB) = 1496144 +The total amount of wall time = 211.641439 +The maximum resident set size (KB) = 1497032 Test 041 merra2_thompson PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/regional_control Checking test 042 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1991,28 +1991,28 @@ Checking test 042 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 298.406816 -The maximum resident set size (KB) = 655440 +The total amount of wall time = 296.733848 +The maximum resident set size (KB) = 658408 Test 042 regional_control PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/regional_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/regional_restart Checking test 043 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 162.789995 -The maximum resident set size (KB) = 653368 +The total amount of wall time = 167.921857 +The maximum resident set size (KB) = 655316 Test 043 regional_restart PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/regional_control_qr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/regional_control_qr Checking test 044 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2023,28 +2023,28 @@ Checking test 044 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 292.705654 -The maximum resident set size (KB) = 655256 +The total amount of wall time = 296.004888 +The maximum resident set size (KB) = 655080 Test 044 regional_control_qr PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/regional_restart_qr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/regional_restart_qr Checking test 045 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 161.432368 -The maximum resident set size (KB) = 654820 +The total amount of wall time = 164.697645 +The maximum resident set size (KB) = 655140 Test 045 regional_restart_qr PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/regional_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/regional_decomp Checking test 046 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2055,14 +2055,14 @@ Checking test 046 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 313.683288 -The maximum resident set size (KB) = 659800 +The total amount of wall time = 312.282293 +The maximum resident set size (KB) = 657544 Test 046 regional_decomp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/regional_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/regional_2threads Checking test 047 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2073,14 +2073,14 @@ Checking test 047 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 184.416543 -The maximum resident set size (KB) = 703760 +The total amount of wall time = 182.787169 +The maximum resident set size (KB) = 700424 Test 047 regional_2threads PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_noquilt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/regional_noquilt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/regional_noquilt Checking test 048 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2088,28 +2088,28 @@ Checking test 048 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 321.323950 -The maximum resident set size (KB) = 652404 +The total amount of wall time = 316.251434 +The maximum resident set size (KB) = 653352 Test 048 regional_noquilt PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/regional_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/regional_netcdf_parallel Checking test 049 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK -The total amount of wall time = 290.643676 -The maximum resident set size (KB) = 652268 +The total amount of wall time = 288.074052 +The maximum resident set size (KB) = 656656 Test 049 regional_netcdf_parallel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/regional_2dwrtdecomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/regional_2dwrtdecomp Checking test 050 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2120,14 +2120,14 @@ Checking test 050 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 297.853112 -The maximum resident set size (KB) = 655500 +The total amount of wall time = 293.408547 +The maximum resident set size (KB) = 655964 Test 050 regional_2dwrtdecomp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/fv3_regional_wofs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/regional_wofs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/regional_wofs Checking test 051 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2138,14 +2138,14 @@ Checking test 051 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 366.491730 -The maximum resident set size (KB) = 345752 +The total amount of wall time = 366.459978 +The maximum resident set size (KB) = 347428 Test 051 regional_wofs PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/rap_control Checking test 052 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2192,14 +2192,14 @@ Checking test 052 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 419.245525 -The maximum resident set size (KB) = 893160 +The total amount of wall time = 420.682625 +The maximum resident set size (KB) = 898192 Test 052 rap_control PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/regional_spp_sppt_shum_skeb +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/regional_spp_sppt_shum_skeb Checking test 053 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2210,14 +2210,14 @@ Checking test 053 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 256.463477 -The maximum resident set size (KB) = 988992 +The total amount of wall time = 251.361841 +The maximum resident set size (KB) = 985540 Test 053 regional_spp_sppt_shum_skeb PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/rap_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/rap_decomp Checking test 054 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2264,14 +2264,14 @@ Checking test 054 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 435.142056 -The maximum resident set size (KB) = 892888 +The total amount of wall time = 440.757111 +The maximum resident set size (KB) = 895880 Test 054 rap_decomp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/rap_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/rap_2threads Checking test 055 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2318,14 +2318,14 @@ Checking test 055 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 394.632840 -The maximum resident set size (KB) = 971028 +The total amount of wall time = 392.753180 +The maximum resident set size (KB) = 969720 Test 055 rap_2threads PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/rap_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/rap_restart Checking test 056 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2364,14 +2364,14 @@ Checking test 056 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 214.881317 -The maximum resident set size (KB) = 649688 +The total amount of wall time = 214.513937 +The maximum resident set size (KB) = 649048 Test 056 rap_restart PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/rap_sfcdiff Checking test 057 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2418,14 +2418,14 @@ Checking test 057 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 432.454106 -The maximum resident set size (KB) = 896848 +The total amount of wall time = 424.861105 +The maximum resident set size (KB) = 892580 Test 057 rap_sfcdiff PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/rap_sfcdiff_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/rap_sfcdiff_decomp Checking test 058 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2472,14 +2472,14 @@ Checking test 058 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 447.626517 -The maximum resident set size (KB) = 899208 +The total amount of wall time = 440.214834 +The maximum resident set size (KB) = 896964 Test 058 rap_sfcdiff_decomp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/rap_sfcdiff_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/rap_sfcdiff_restart Checking test 059 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2518,14 +2518,14 @@ Checking test 059 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 311.579613 -The maximum resident set size (KB) = 648452 +The total amount of wall time = 316.482419 +The maximum resident set size (KB) = 644300 Test 059 rap_sfcdiff_restart PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/hrrr_control Checking test 060 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2572,14 +2572,14 @@ Checking test 060 hrrr_control 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 = 405.646827 -The maximum resident set size (KB) = 888688 +The total amount of wall time = 394.068438 +The maximum resident set size (KB) = 892212 Test 060 hrrr_control PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/hrrr_control_decomp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/hrrr_control_decomp Checking test 061 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2626,14 +2626,14 @@ Checking test 061 hrrr_control_decomp 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 = 404.925169 -The maximum resident set size (KB) = 893584 +The total amount of wall time = 406.132521 +The maximum resident set size (KB) = 893688 Test 061 hrrr_control_decomp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/hrrr_control_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/hrrr_control_2threads Checking test 062 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2680,28 +2680,28 @@ Checking test 062 hrrr_control_2threads 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 = 353.224663 -The maximum resident set size (KB) = 966472 +The total amount of wall time = 352.502272 +The maximum resident set size (KB) = 968384 Test 062 hrrr_control_2threads PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/hrrr_control_restart +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/hrrr_control_restart Checking test 063 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 287.729902 -The maximum resident set size (KB) = 643556 +The total amount of wall time = 287.558597 +The maximum resident set size (KB) = 644968 Test 063 hrrr_control_restart PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_v1beta -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/rrfs_v1beta +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/rrfs_v1beta Checking test 064 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2748,14 +2748,14 @@ Checking test 064 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 418.322317 -The maximum resident set size (KB) = 891560 +The total amount of wall time = 418.690787 +The maximum resident set size (KB) = 895172 Test 064 rrfs_v1beta PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_v1nssl -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/rrfs_v1nssl +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/rrfs_v1nssl Checking test 065 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2770,14 +2770,14 @@ Checking test 065 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 484.700602 -The maximum resident set size (KB) = 585464 +The total amount of wall time = 482.922618 +The maximum resident set size (KB) = 586388 Test 065 rrfs_v1nssl PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/rrfs_v1nssl_nohailnoccn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/rrfs_v1nssl_nohailnoccn Checking test 066 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2792,14 +2792,14 @@ Checking test 066 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 471.333214 -The maximum resident set size (KB) = 574144 +The total amount of wall time = 471.508581 +The maximum resident set size (KB) = 575804 Test 066 rrfs_v1nssl_nohailnoccn PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/rrfs_smoke_conus13km_hrrr_warm Checking test 067 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2808,14 +2808,14 @@ Checking test 067 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 150.354583 -The maximum resident set size (KB) = 805088 +The total amount of wall time = 154.023400 +The maximum resident set size (KB) = 805252 Test 067 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/rrfs_smoke_conus13km_hrrr_warm_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 068 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2824,14 +2824,14 @@ Checking test 068 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 107.063176 -The maximum resident set size (KB) = 809752 +The total amount of wall time = 109.896708 +The maximum resident set size (KB) = 801860 Test 068 rrfs_smoke_conus13km_hrrr_warm_2threads PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/rrfs_conus13km_hrrr_warm Checking test 069 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2840,14 +2840,14 @@ Checking test 069 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 138.390032 -The maximum resident set size (KB) = 802148 +The total amount of wall time = 138.801110 +The maximum resident set size (KB) = 798156 Test 069 rrfs_conus13km_hrrr_warm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/rrfs_smoke_conus13km_radar_tten_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/rrfs_smoke_conus13km_radar_tten_warm Checking test 070 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2856,26 +2856,26 @@ Checking test 070 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 154.986546 -The maximum resident set size (KB) = 808592 +The total amount of wall time = 153.749228 +The maximum resident set size (KB) = 805820 Test 070 rrfs_smoke_conus13km_radar_tten_warm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 071 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 73.638154 -The maximum resident set size (KB) = 770072 +The total amount of wall time = 72.808815 +The maximum resident set size (KB) = 768556 Test 071 rrfs_conus13km_hrrr_warm_restart_mismatch PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_csawmg -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_csawmg +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_csawmg Checking test 072 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2886,14 +2886,14 @@ Checking test 072 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 351.254351 -The maximum resident set size (KB) = 587136 +The total amount of wall time = 352.663793 +The maximum resident set size (KB) = 587008 Test 072 control_csawmg PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_csawmgt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_csawmgt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_csawmgt Checking test 073 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2904,14 +2904,14 @@ Checking test 073 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 350.237222 -The maximum resident set size (KB) = 587900 +The total amount of wall time = 345.596964 +The maximum resident set size (KB) = 587972 Test 073 control_csawmgt PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_ras -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_ras +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_ras Checking test 074 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2922,26 +2922,26 @@ Checking test 074 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 184.222807 -The maximum resident set size (KB) = 551984 +The total amount of wall time = 184.133902 +The maximum resident set size (KB) = 553568 Test 074 control_ras PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_wam -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_wam +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_wam Checking test 075 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 119.232503 -The maximum resident set size (KB) = 274908 +The total amount of wall time = 118.369571 +The maximum resident set size (KB) = 432856 Test 075 control_wam PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_p8_faster Checking test 076 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2988,14 +2988,14 @@ Checking test 076 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 180.929364 -The maximum resident set size (KB) = 1492208 +The total amount of wall time = 176.834952 +The maximum resident set size (KB) = 1489340 Test 076 control_p8_faster PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/regional_control_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/regional_control_faster Checking test 077 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3006,56 +3006,56 @@ Checking test 077 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 286.598672 -The maximum resident set size (KB) = 659020 +The total amount of wall time = 281.262524 +The maximum resident set size (KB) = 655136 Test 077 regional_control_faster PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 078 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 919.716564 -The maximum resident set size (KB) = 835468 +The total amount of wall time = 920.790487 +The maximum resident set size (KB) = 832716 Test 078 rrfs_smoke_conus13km_hrrr_warm_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 079 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 530.414785 -The maximum resident set size (KB) = 836736 +The total amount of wall time = 528.158665 +The maximum resident set size (KB) = 830164 Test 079 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/rrfs_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/rrfs_conus13km_hrrr_warm_debug Checking test 080 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 820.363688 -The maximum resident set size (KB) = 827612 +The total amount of wall time = 822.856221 +The maximum resident set size (KB) = 825200 Test 080 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_CubedSphereGrid_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_CubedSphereGrid_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_CubedSphereGrid_debug Checking test 081 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3082,348 +3082,348 @@ Checking test 081 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 159.581471 -The maximum resident set size (KB) = 683036 +The total amount of wall time = 160.335037 +The maximum resident set size (KB) = 679584 Test 081 control_CubedSphereGrid_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_wrtGauss_netcdf_parallel_debug Checking test 082 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 159.643157 -The maximum resident set size (KB) = 680780 +The total amount of wall time = 158.493961 +The maximum resident set size (KB) = 678416 Test 082 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_stochy_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_stochy_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_stochy_debug Checking test 083 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 180.075217 -The maximum resident set size (KB) = 684472 +The total amount of wall time = 182.797835 +The maximum resident set size (KB) = 681792 Test 083 control_stochy_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_lndp_debug Checking test 084 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 161.581963 -The maximum resident set size (KB) = 686076 +The total amount of wall time = 162.531361 +The maximum resident set size (KB) = 691628 Test 084 control_lndp_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_csawmg_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_csawmg_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_csawmg_debug Checking test 085 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 260.545819 -The maximum resident set size (KB) = 721468 +The total amount of wall time = 257.214779 +The maximum resident set size (KB) = 727440 Test 085 control_csawmg_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_csawmgt_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_csawmgt_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_csawmgt_debug Checking test 086 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 257.605685 -The maximum resident set size (KB) = 721784 +The total amount of wall time = 251.912538 +The maximum resident set size (KB) = 719560 Test 086 control_csawmgt_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_ras_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_ras_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_ras_debug Checking test 087 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 162.995966 -The maximum resident set size (KB) = 694928 +The total amount of wall time = 164.909572 +The maximum resident set size (KB) = 693824 Test 087 control_ras_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_diag_debug Checking test 088 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 164.203449 -The maximum resident set size (KB) = 738412 +The total amount of wall time = 166.439592 +The maximum resident set size (KB) = 738500 Test 088 control_diag_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_debug_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_debug_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_debug_p8 Checking test 089 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 190.960919 -The maximum resident set size (KB) = 1512216 +The total amount of wall time = 189.519409 +The maximum resident set size (KB) = 1501388 Test 089 control_debug_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/regional_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/regional_debug Checking test 090 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1047.976562 -The maximum resident set size (KB) = 677852 +The total amount of wall time = 1062.564283 +The maximum resident set size (KB) = 677220 Test 090 regional_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/rap_control_debug Checking test 091 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.421429 -The maximum resident set size (KB) = 1053300 +The total amount of wall time = 302.391458 +The maximum resident set size (KB) = 1053856 Test 091 rap_control_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/hrrr_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/hrrr_control_debug Checking test 092 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 293.895097 -The maximum resident set size (KB) = 1051660 +The total amount of wall time = 293.089546 +The maximum resident set size (KB) = 1050148 Test 092 hrrr_control_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/rap_unified_drag_suite_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/rap_unified_drag_suite_debug Checking test 093 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 299.538753 -The maximum resident set size (KB) = 1059264 +The total amount of wall time = 301.255381 +The maximum resident set size (KB) = 1056320 Test 093 rap_unified_drag_suite_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/rap_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/rap_diag_debug Checking test 094 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 310.558154 -The maximum resident set size (KB) = 1137036 +The total amount of wall time = 309.699438 +The maximum resident set size (KB) = 1137232 Test 094 rap_diag_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/rap_cires_ugwp_debug Checking test 095 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 305.462494 -The maximum resident set size (KB) = 1055728 +The total amount of wall time = 310.232979 +The maximum resident set size (KB) = 1058796 Test 095 rap_cires_ugwp_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/rap_unified_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/rap_unified_ugwp_debug Checking test 096 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 306.541713 -The maximum resident set size (KB) = 1055560 +The total amount of wall time = 307.318815 +The maximum resident set size (KB) = 1056256 Test 096 rap_unified_ugwp_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/rap_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/rap_lndp_debug Checking test 097 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 302.800479 -The maximum resident set size (KB) = 1053900 +The total amount of wall time = 302.696091 +The maximum resident set size (KB) = 1052872 Test 097 rap_lndp_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_progcld_thompson_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/rap_progcld_thompson_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/rap_progcld_thompson_debug Checking test 098 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 302.313915 -The maximum resident set size (KB) = 1057268 +The total amount of wall time = 300.414940 +The maximum resident set size (KB) = 1052492 Test 098 rap_progcld_thompson_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_noah_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/rap_noah_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/rap_noah_debug Checking test 099 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 293.036272 -The maximum resident set size (KB) = 1055172 +The total amount of wall time = 296.359560 +The maximum resident set size (KB) = 1057140 Test 099 rap_noah_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_sfcdiff_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/rap_sfcdiff_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/rap_sfcdiff_debug Checking test 100 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 301.647423 -The maximum resident set size (KB) = 1055528 +The total amount of wall time = 298.768931 +The maximum resident set size (KB) = 1057784 Test 100 rap_sfcdiff_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/rap_noah_sfcdiff_cires_ugwp_debug Checking test 101 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 492.510729 -The maximum resident set size (KB) = 1057532 +The total amount of wall time = 492.386883 +The maximum resident set size (KB) = 1057316 Test 101 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_v1beta_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/rrfs_v1beta_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/rrfs_v1beta_debug Checking test 102 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 296.226377 -The maximum resident set size (KB) = 1051268 +The total amount of wall time = 295.727584 +The maximum resident set size (KB) = 1051648 Test 102 rrfs_v1beta_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_clm_lake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/rap_clm_lake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/rap_clm_lake_debug Checking test 103 rap_clm_lake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 357.113617 -The maximum resident set size (KB) = 1057484 +The total amount of wall time = 358.706021 +The maximum resident set size (KB) = 1057860 Test 103 rap_clm_lake_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_flake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/rap_flake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/rap_flake_debug Checking test 104 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 303.214374 -The maximum resident set size (KB) = 1058124 +The total amount of wall time = 303.390759 +The maximum resident set size (KB) = 1056884 Test 104 rap_flake_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_wam_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_wam_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_wam_debug Checking test 105 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 295.515255 -The maximum resident set size (KB) = 300432 +The total amount of wall time = 295.688799 +The maximum resident set size (KB) = 301288 Test 105 control_wam_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3434,14 +3434,14 @@ Checking test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 236.704350 -The maximum resident set size (KB) = 897404 +The total amount of wall time = 235.156350 +The maximum resident set size (KB) = 897672 Test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/rap_control_dyn32_phy32 Checking test 107 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3488,14 +3488,14 @@ Checking test 107 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 353.172830 -The maximum resident set size (KB) = 777796 +The total amount of wall time = 362.666380 +The maximum resident set size (KB) = 780960 Test 107 rap_control_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/hrrr_control_dyn32_phy32 Checking test 108 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3542,14 +3542,14 @@ Checking test 108 hrrr_control_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 180.294750 -The maximum resident set size (KB) = 778796 +The total amount of wall time = 179.199375 +The maximum resident set size (KB) = 772292 Test 108 hrrr_control_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/rap_2threads_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/rap_2threads_dyn32_phy32 Checking test 109 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3596,14 +3596,14 @@ Checking test 109 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 329.569655 -The maximum resident set size (KB) = 833044 +The total amount of wall time = 330.353589 +The maximum resident set size (KB) = 835012 Test 109 rap_2threads_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/hrrr_control_2threads_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/hrrr_control_2threads_dyn32_phy32 Checking test 110 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3650,14 +3650,14 @@ Checking test 110 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 162.275717 -The maximum resident set size (KB) = 825992 +The total amount of wall time = 161.051744 +The maximum resident set size (KB) = 824288 Test 110 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/hrrr_control_decomp_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/hrrr_control_decomp_dyn32_phy32 Checking test 111 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3704,14 +3704,14 @@ Checking test 111 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 187.773499 -The maximum resident set size (KB) = 776908 +The total amount of wall time = 187.898564 +The maximum resident set size (KB) = 776976 Test 111 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/rap_restart_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/rap_restart_dyn32_phy32 Checking test 112 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3750,28 +3750,28 @@ Checking test 112 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 262.188987 -The maximum resident set size (KB) = 616604 +The total amount of wall time = 260.639075 +The maximum resident set size (KB) = 615560 Test 112 rap_restart_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/hrrr_control_restart_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/hrrr_control_restart_dyn32_phy32 Checking test 113 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 93.798855 -The maximum resident set size (KB) = 611524 +The total amount of wall time = 96.041956 +The maximum resident set size (KB) = 606060 Test 113 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/rap_control_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/rap_control_dyn64_phy32 Checking test 114 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3818,81 +3818,81 @@ Checking test 114 rap_control_dyn64_phy32 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 = 238.051919 -The maximum resident set size (KB) = 797436 +The total amount of wall time = 236.233572 +The maximum resident set size (KB) = 797688 Test 114 rap_control_dyn64_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/rap_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/rap_control_debug_dyn32_phy32 Checking test 115 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 295.244393 -The maximum resident set size (KB) = 937996 +The total amount of wall time = 292.411817 +The maximum resident set size (KB) = 937112 Test 115 rap_control_debug_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/hrrr_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/hrrr_control_debug_dyn32_phy32 Checking test 116 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 287.304351 -The maximum resident set size (KB) = 936076 +The total amount of wall time = 291.243915 +The maximum resident set size (KB) = 935352 Test 116 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/rap_control_dyn64_phy32_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/rap_control_dyn64_phy32_debug Checking test 117 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.958597 -The maximum resident set size (KB) = 959512 +The total amount of wall time = 296.078635 +The maximum resident set size (KB) = 958228 Test 117 rap_control_dyn64_phy32_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/hafs_regional_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/hafs_regional_atm Checking test 118 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 277.273454 -The maximum resident set size (KB) = 823796 +The total amount of wall time = 282.044065 +The maximum resident set size (KB) = 822072 Test 118 hafs_regional_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/hafs_regional_atm_thompson_gfdlsf Checking test 119 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 336.885582 -The maximum resident set size (KB) = 1182080 +The total amount of wall time = 340.640872 +The maximum resident set size (KB) = 1184376 Test 119 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/hafs_regional_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/hafs_regional_atm_ocn Checking test 120 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3901,14 +3901,14 @@ Checking test 120 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 399.974166 -The maximum resident set size (KB) = 861208 +The total amount of wall time = 395.748144 +The maximum resident set size (KB) = 864456 Test 120 hafs_regional_atm_ocn PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/hafs_regional_atm_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/hafs_regional_atm_wav Checking test 121 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3917,14 +3917,14 @@ Checking test 121 hafs_regional_atm_wav 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 = 708.649174 -The maximum resident set size (KB) = 890928 +The total amount of wall time = 709.078681 +The maximum resident set size (KB) = 892996 Test 121 hafs_regional_atm_wav PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/hafs_regional_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/hafs_regional_atm_ocn_wav Checking test 122 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3935,28 +3935,28 @@ Checking test 122 hafs_regional_atm_ocn_wav 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 = 904.107228 -The maximum resident set size (KB) = 919676 +The total amount of wall time = 903.148061 +The maximum resident set size (KB) = 915896 Test 122 hafs_regional_atm_ocn_wav PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/hafs_regional_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/hafs_regional_1nest_atm Checking test 123 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 337.184838 -The maximum resident set size (KB) = 397560 +The total amount of wall time = 341.665365 +The maximum resident set size (KB) = 396028 Test 123 hafs_regional_1nest_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/hafs_regional_telescopic_2nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/hafs_regional_telescopic_2nests_atm Checking test 124 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3965,28 +3965,28 @@ Checking test 124 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 409.846204 -The maximum resident set size (KB) = 403400 +The total amount of wall time = 413.937773 +The maximum resident set size (KB) = 401144 Test 124 hafs_regional_telescopic_2nests_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_global_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/hafs_global_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/hafs_global_1nest_atm Checking test 125 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 180.214734 -The maximum resident set size (KB) = 264184 +The total amount of wall time = 185.232258 +The maximum resident set size (KB) = 264016 Test 125 hafs_global_1nest_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_global_multiple_4nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/hafs_global_multiple_4nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/hafs_global_multiple_4nests_atm Checking test 126 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4004,14 +4004,14 @@ Checking test 126 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -The total amount of wall time = 493.758052 -The maximum resident set size (KB) = 348432 +The total amount of wall time = 489.595597 +The maximum resident set size (KB) = 347928 Test 126 hafs_global_multiple_4nests_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/hafs_regional_specified_moving_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/hafs_regional_specified_moving_1nest_atm Checking test 127 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4020,28 +4020,28 @@ Checking test 127 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 222.433583 -The maximum resident set size (KB) = 407376 +The total amount of wall time = 225.862445 +The maximum resident set size (KB) = 407984 Test 127 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/hafs_regional_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/hafs_regional_storm_following_1nest_atm Checking test 128 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 215.856210 -The maximum resident set size (KB) = 411744 +The total amount of wall time = 208.596398 +The maximum resident set size (KB) = 406860 Test 128 hafs_regional_storm_following_1nest_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/hafs_regional_storm_following_1nest_atm_ocn Checking test 129 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4050,42 +4050,42 @@ Checking test 129 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 255.248494 -The maximum resident set size (KB) = 474448 +The total amount of wall time = 260.129276 +The maximum resident set size (KB) = 471112 Test 129 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/hafs_global_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/hafs_global_storm_following_1nest_atm Checking test 130 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 86.104308 -The maximum resident set size (KB) = 292060 +The total amount of wall time = 93.575550 +The maximum resident set size (KB) = 290496 Test 130 hafs_global_storm_following_1nest_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 131 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 804.993640 -The maximum resident set size (KB) = 498244 +The total amount of wall time = 803.206126 +The maximum resident set size (KB) = 498780 Test 131 hafs_regional_storm_following_1nest_atm_ocn_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 132 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4096,14 +4096,14 @@ Checking test 132 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 512.300445 -The maximum resident set size (KB) = 526368 +The total amount of wall time = 508.151736 +The maximum resident set size (KB) = 531060 Test 132 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_atmlnd_sbs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/control_p8_atmlnd_sbs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_p8_atmlnd_sbs Checking test 133 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4188,14 +4188,14 @@ Checking test 133 control_p8_atmlnd_sbs 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 = 241.627842 +The total amount of wall time = 244.688297 The maximum resident set size (KB) = 1541940 Test 133 control_p8_atmlnd_sbs PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/atmaero_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/atmaero_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/atmaero_control_p8 Checking test 134 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4239,14 +4239,14 @@ Checking test 134 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 250.322331 -The maximum resident set size (KB) = 2816112 +The total amount of wall time = 249.247389 +The maximum resident set size (KB) = 2814404 Test 134 atmaero_control_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/atmaero_control_p8_rad -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/atmaero_control_p8_rad +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/atmaero_control_p8_rad Checking test 135 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4290,14 +4290,14 @@ Checking test 135 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 284.958006 -The maximum resident set size (KB) = 2880900 +The total amount of wall time = 288.203019 +The maximum resident set size (KB) = 2880132 Test 135 atmaero_control_p8_rad PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/atmaero_control_p8_rad_micro +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/atmaero_control_p8_rad_micro Checking test 136 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4341,14 +4341,14 @@ Checking test 136 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 291.307613 -The maximum resident set size (KB) = 2888648 +The total amount of wall time = 292.192461 +The maximum resident set size (KB) = 2887416 Test 136 atmaero_control_p8_rad_micro PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_atmaq -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/regional_atmaq +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/regional_atmaq Checking test 137 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4364,14 +4364,14 @@ Checking test 137 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 685.627858 -The maximum resident set size (KB) = 1254132 +The total amount of wall time = 689.563797 +The maximum resident set size (KB) = 1266032 Test 137 regional_atmaq PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_atmaq_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/regional_atmaq_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/regional_atmaq_debug Checking test 138 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4385,14 +4385,14 @@ Checking test 138 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1307.071089 -The maximum resident set size (KB) = 1291016 +The total amount of wall time = 1314.166581 +The maximum resident set size (KB) = 1291500 Test 138 regional_atmaq_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_atmaq_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66164/regional_atmaq_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/regional_atmaq_faster Checking test 139 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4408,12 +4408,12 @@ Checking test 139 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 638.780118 -The maximum resident set size (KB) = 1264212 +The total amount of wall time = 667.101759 +The maximum resident set size (KB) = 1263924 Test 139 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Mon May 1 17:17:22 UTC 2023 -Elapsed time: 01h:08m:31s. Have a nice day! +Wed May 3 14:47:00 UTC 2023 +Elapsed time: 01h:04m:39s. Have a nice day! diff --git a/tests/default_vars.sh b/tests/default_vars.sh index 435415ab689..ed7b2b59202 100755 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -258,6 +258,34 @@ elif [[ $MACHINE_ID = stampede.* ]]; then TPN_cpl_atmw_gdas=12; INPES_cpl_atmw_gdas=6; JNPES_cpl_atmw_gdas=8 THRD_cpl_atmw_gdas=4; WPG_cpl_atmw_gdas=24; APB_cpl_atmw_gdas="0 311"; WPB_cpl_atmw_gdas="312 559" +elif [[ ${MACHINE_ID} = noaacloud.* ]] ; then + + if [[ $PW_CSP == aws ]]; then + TPN=36 + elif [[ $PW_CSP == azure ]]; then + TPN=44 + elif [[ $PW_CSP == google ]]; then + TPN=30 + fi + + INPES_dflt=3 ; JNPES_dflt=8 + INPES_thrd=3 ; JNPES_thrd=4 + + INPES_c384=8 ; JNPES_c384=6 ; THRD_c384=2 + INPES_c768=8 ; JNPES_c768=16 ; THRD_c768=2 + + THRD_cpl_dflt=1 + INPES_cpl_dflt=3; JNPES_cpl_dflt=8; WPG_cpl_dflt=6 + OCN_tasks_cpl_dflt=20 + ICE_tasks_cpl_dflt=10 + WAV_tasks_cpl_dflt=20 + + THRD_cpl_thrd=2 + INPES_cpl_thrd=3; JNPES_cpl_thrd=4; WPG_cpl_thrd=6 + OCN_tasks_cpl_thrd=20 + ICE_tasks_cpl_thrd=10 + WAV_tasks_cpl_thrd=12 + elif [[ $MACHINE_ID = expanse.* ]]; then echo "Unknown MACHINE_ID ${MACHINE_ID}. Please update tasks configurations in default_vars.sh" @@ -269,7 +297,8 @@ elif [[ $MACHINE_ID = expanse.* ]]; then TPN_cpl_atmw_gdas=12; INPES_cpl_atmw_gdas=6; JNPES_cpl_atmw_gdas=8 THRD_cpl_atmw_gdas=2; WPG_cpl_atmw_gdas=24; APB_cpl_atmw_gdas="0 311"; WPB_cpl_atmw_gdas="312 559" - + + else echo "Unknown MACHINE_ID ${MACHINE_ID}" diff --git a/tests/detect_machine.sh b/tests/detect_machine.sh index 2e1eb624e1b..5d22dd339be 100755 --- a/tests/detect_machine.sh +++ b/tests/detect_machine.sh @@ -99,10 +99,21 @@ case $(hostname -f) in login2.stampede2.tacc.utexas.edu) MACHINE_ID=stampede ;; ### stampede2 login3.stampede2.tacc.utexas.edu) MACHINE_ID=stampede ;; ### stampede3 login4.stampede2.tacc.utexas.edu) MACHINE_ID=stampede ;; ### stampede4 - + + login01.expanse.sdsc.edu) MACHINE_ID=expanse ;; ### expanse1 login02.expanse.sdsc.edu) MACHINE_ID=expanse ;; ### expanse2 + +esac + +case $(echo $PW_CSP) in + + aws) MACHINE_ID=aws ;; ### parallelworks aws + google) MACHINE_ID=gcp ;; ### parallelworks gcp + azure) MACHINE_ID=azure ;; ### parallelworks azure + esac +[[ ${MACHINE_ID} =~ "aws" || ${MACHINE_ID} =~ "gcp" || ${MACHINE_ID} =~ "azure" ]] && MACHINE_ID=noaacloud # Overwrite auto-detect with RT_MACHINE if set MACHINE_ID=${RT_MACHINE:-${MACHINE_ID}} diff --git a/tests/fv3_conf/compile_slurm.IN_noaacloud b/tests/fv3_conf/compile_slurm.IN_noaacloud new file mode 100644 index 00000000000..b9c4ca41462 --- /dev/null +++ b/tests/fv3_conf/compile_slurm.IN_noaacloud @@ -0,0 +1,17 @@ +#!/bin/sh +#SBATCH -e err +#SBATCH -o out +#SBATCH --qos=batch +#SBATCH --nodes=1 +#SBATCH --ntasks-per-node=@[TPN] +#SBATCH --job-name="@[JBNME]" + +set -eux + +echo -n " $( date +%s )," > job_timestamp.txt +echo "Compile started: " `date` + +@[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_NR] + +echo "Compile ended: " `date` +echo -n " $( date +%s )," >> job_timestamp.txt diff --git a/tests/fv3_conf/fv3_slurm.IN_noaacloud b/tests/fv3_conf/fv3_slurm.IN_noaacloud new file mode 100644 index 00000000000..519e29b96a5 --- /dev/null +++ b/tests/fv3_conf/fv3_slurm.IN_noaacloud @@ -0,0 +1,45 @@ +#!/bin/sh +#SBATCH -e err +#SBATCH -o out +#SBATCH --qos=batch +### #SBATCH --ntasks=@[TASKS] +#SBATCH --nodes=@[NODES] +#SBATCH --ntasks-per-node=@[TPN] +#SBATCH --job-name="@[JBNME]" +#SBATCH --exclusive + +set -eux +echo -n " $( date +%s )," > job_timestamp.txt + +set +x +MACHINE_ID=noaacloud +module use $( pwd -P ) +module use /contrib/EPIC/spack-stack/spack-stack-1.3.0/envs/unified-dev/install/modulefiles/Core +module load stack-intel/2021.3.0 stack-intel-oneapi-mpi/2021.3.0 +module load ufs-weather-model-env/unified-dev +module list + +set -x + +ulimit -s unlimited +ulimit -l unlimited + +echo "Model started: " `date` + +#export MPI_TYPE_DEPTH=20 +export OMP_STACKSIZE=512M +export KMP_AFFINITY=scatter +export OMP_NUM_THREADS=1 +#export ESMF_RUNTIME_COMPLIANCECHECK=OFF:depth=4 +#export PSM_RANKS_PER_CONTEXT=4 +#export PSM_SHAREDCONTEXTS=1 +#export ESMF_RUNTIME_PROFILE=ON +#export ESMF_RUNTIME_PROFILE_OUTPUT="SUMMARY" + +# Avoid job errors because of filesystem synchronization delays +sync && sleep 1 + +srun --mpi=pmi2 --label -n @[TASKS] ./fv3.exe + +echo "Model ended: " `date` +echo -n " $( date +%s )," >> job_timestamp.txt diff --git a/tests/module-setup.sh b/tests/module-setup.sh index 48a6c91c113..468140f666b 100755 --- a/tests/module-setup.sh +++ b/tests/module-setup.sh @@ -43,7 +43,14 @@ elif [[ $MACHINE_ID = cheyenne* ]] ; then source /glade/u/apps/ch/modulefiles/default/localinit/localinit.sh fi module purge - + +elif [[ $MACHINE_ID = noaacloud* ]] ; then + # We are on NOAA Cloud + if ( ! eval module help > /dev/null 2>&1 ) ; then + source /apps/lmod/8.5.2/init/bash + fi + module purge + elif [[ $MACHINE_ID = stampede* ]] ; then # We are on TACC Stampede if ( ! eval module help > /dev/null 2>&1 ) ; then diff --git a/tests/rt.sh b/tests/rt.sh index 44339541bea..19751476fb4 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -358,7 +358,29 @@ elif [[ $MACHINE_ID = expanse.* ]]; then PTMP=$dprefix SCHEDULER=slurm cp fv3_conf/fv3_slurm.IN_expanse fv3_conf/fv3_slurm.IN + + elif [[ $MACHINE_ID = noaacloud.* ]]; then + + module use /apps/modules/modulefiles + module load rocoto/1.3.3 + + ROCOTORUN=$(which rocotorun) + ROCOTOSTAT=$(which rocotostat) + ROCOTOCOMPLETE=$(which rocotocomplete) + ROCOTO_SCHEDULER=slurm + QUEUE=batch + COMPILE_QUEUE=batch + PARTITION= + dprefix=/lustre/ + DISKNM=/contrib/ufs-weather-model/RT + STMP=$dprefix/stmp4 + PTMP=$dprefix/stmp2 + SCHEDULER=slurm + cp fv3_conf/fv3_slurm.IN_noaacloud fv3_conf/fv3_slurm.IN + cp fv3_conf/compile_slurm.IN_noaacloud fv3_conf/compile_slurm.IN + + else die "Unknown machine ID, please edit detect_machine.sh file" fi @@ -510,6 +532,10 @@ if [[ $ROCOTO == true ]]; then QUEUE=s4 COMPILE_QUEUE=s4 ROCOTO_SCHEDULER=slurm + elif [[ $MACHINE_ID = noaacloud.* ]]; then + QUEUE=batch + COMPILE_QUEUE=batch + ROCOTO_SCHEDULER=slurm elif [[ $MACHINE_ID = jet.* ]]; then QUEUE=batch COMPILE_QUEUE=batch diff --git a/tests/rt_utils.sh b/tests/rt_utils.sh index f363cca7f3c..4387fb610f3 100755 --- a/tests/rt_utils.sh +++ b/tests/rt_utils.sh @@ -355,11 +355,11 @@ check_results() { fi if [[ $d -eq 1 && ${i##*.} == 'nc' ]] ; then - if [[ ${MACHINE_ID} =~ orion || ${MACHINE_ID} =~ hera || ${MACHINE_ID} =~ wcoss2 || ${MACHINE_ID} =~ acorn || ${MACHINE_ID} =~ cheyenne || ${MACHINE_ID} =~ gaea || ${MACHINE_ID} =~ jet || ${MACHINE_ID} =~ s4 ]] ; then + if [[ ${MACHINE_ID} =~ orion || ${MACHINE_ID} =~ hera || ${MACHINE_ID} =~ wcoss2 || ${MACHINE_ID} =~ acorn || ${MACHINE_ID} =~ cheyenne || ${MACHINE_ID} =~ gaea || ${MACHINE_ID} =~ jet || ${MACHINE_ID} =~ s4 || ${MACHINE_ID} =~ noaacloud ]] ; then printf ".......ALT CHECK.." >> ${REGRESSIONTEST_LOG} printf ".......ALT CHECK.." if [[ ${MACHINE_ID} =~ orion || ${MACHINE_ID} =~ hera || ${MACHINE_ID} =~ gaea || ${MACHINE_ID} =~ jet || ${MACHINE_ID} =~ cheyenne ]] ; then - nccmp -d -f -g --Attribute=checksum --warn=format ${RTPWD}/${CNTL_DIR}/${i} ${RUNDIR}/${i} > ${i}_nccmp.log 2>&1 && d=$? || d=$? + nccmp -d -f -g -B --Attribute=checksum --warn=format ${RTPWD}/${CNTL_DIR}/${i} ${RUNDIR}/${i} > ${i}_nccmp.log 2>&1 && d=$? || d=$? else ${PATHRT}/compare_ncfile.py ${RTPWD}/${CNTL_DIR}/$i ${RUNDIR}/$i > compare_ncfile.log 2>&1 && d=$? || d=$? fi From eda0b072fa553b6311a9dfceff28427bbbfe5db4 Mon Sep 17 00:00:00 2001 From: Qingfu Liu Date: Tue, 9 May 2023 15:31:04 -0400 Subject: [PATCH 28/30] PBL, Convection and Microphysics Update for HR2 (#1731) * This PR is created due to the ccpp-physics update for HR2 * PBL, Convection and Microphysics Update for HR2 --- FV3 | 2 +- tests/RegressionTests_acorn.intel.log | 1375 ++++++++++----------- tests/RegressionTests_cheyenne.gnu.log | 462 +++---- tests/RegressionTests_cheyenne.intel.log | 1388 ++++++++++----------- tests/RegressionTests_hera.gnu.log | 610 +++++----- tests/RegressionTests_hera.intel.log | 1412 ++++++++++----------- tests/RegressionTests_jet.intel.log | 1360 ++++++++++----------- tests/RegressionTests_orion.intel.log | 1422 +++++++++++----------- tests/RegressionTests_wcoss2.intel.log | 1185 +++++++++--------- tests/rt.conf | 2 +- tests/rt.sh | 2 +- tests/rt_utils.sh | 15 +- 12 files changed, 4597 insertions(+), 4638 deletions(-) diff --git a/FV3 b/FV3 index 832803b1611..160b422dc1d 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 832803b1611faa135309674ee5e4c3a072b55523 +Subproject commit 160b422dc1d294623cc8ebfabfbe7d28d7c65c62 diff --git a/tests/RegressionTests_acorn.intel.log b/tests/RegressionTests_acorn.intel.log index 3c44703ea82..eac601784ef 100644 --- a/tests/RegressionTests_acorn.intel.log +++ b/tests/RegressionTests_acorn.intel.log @@ -1,41 +1,41 @@ -Mon May 1 17:04:30 UTC 2023 +Tue May 9 13:48:34 UTC 2023 Start Regression test -Compile 001 elapsed time 567 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 570 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 537 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 1194 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 005 elapsed time 1051 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 1384 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 566 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 008 elapsed time 1094 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 492 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 1630 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 1088 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 1061 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 512 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 014 elapsed time 210 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 862 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 758 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 462 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 250 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 749 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 020 elapsed time 1169 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 021 elapsed time 684 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 022 elapsed time 502 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 023 elapsed time 916 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 024 elapsed time 733 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 115 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 026 elapsed time 481 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 027 elapsed time 831 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 487 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 972 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 501 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 434 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 032 elapsed time 610 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8_mixedmode -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/cpld_control_p8_mixedmode +Compile 001 elapsed time 1117 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 698 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 543 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 501 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 005 elapsed time 1201 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 711 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 688 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 008 elapsed time 1560 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 1007 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 1556 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 1133 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 1171 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 481 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 014 elapsed time 576 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 703 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 475 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 524 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 371 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 719 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 020 elapsed time 674 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 021 elapsed time 710 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 022 elapsed time 503 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 023 elapsed time 320 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 024 elapsed time 166 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 803 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 026 elapsed time 941 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 027 elapsed time 520 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 771 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 629 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 782 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 313 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 032 elapsed time 698 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8_mixedmode +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -100,14 +100,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 325.272633 -The maximum resident set size (KB) = 2949900 +The total amount of wall time = 336.363959 +The maximum resident set size (KB) = 2946824 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_gfsv17 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/cpld_control_gfsv17 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_gfsv17 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -171,14 +171,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 250.235532 -The maximum resident set size (KB) = 1580056 +The total amount of wall time = 256.744435 +The maximum resident set size (KB) = 1575372 Test 002 cpld_control_gfsv17 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/cpld_control_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -243,14 +243,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 375.900222 -The maximum resident set size (KB) = 2980332 +The total amount of wall time = 386.625964 +The maximum resident set size (KB) = 2984092 Test 003 cpld_control_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/cpld_restart_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -303,14 +303,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 222.106707 -The maximum resident set size (KB) = 2869536 +The total amount of wall time = 231.545030 +The maximum resident set size (KB) = 2866808 Test 004 cpld_restart_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/cpld_control_qr_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -375,14 +375,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 375.947827 -The maximum resident set size (KB) = 2991608 +The total amount of wall time = 387.994257 +The maximum resident set size (KB) = 2989600 Test 005 cpld_control_qr_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/cpld_restart_qr_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -435,14 +435,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 225.791405 -The maximum resident set size (KB) = 2877700 +The total amount of wall time = 234.214218 +The maximum resident set size (KB) = 2880012 Test 006 cpld_restart_qr_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/cpld_2threads_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -495,14 +495,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 356.446869 -The maximum resident set size (KB) = 3290728 +The total amount of wall time = 369.229710 +The maximum resident set size (KB) = 3282976 Test 007 cpld_2threads_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/cpld_decomp_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -555,14 +555,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 371.130248 -The maximum resident set size (KB) = 2976432 +The total amount of wall time = 380.117371 +The maximum resident set size (KB) = 2977252 Test 008 cpld_decomp_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/cpld_mpi_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -615,14 +615,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 308.477624 -The maximum resident set size (KB) = 2905284 +The total amount of wall time = 316.600731 +The maximum resident set size (KB) = 2906004 Test 009 cpld_mpi_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_ciceC_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/cpld_control_ciceC_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_ciceC_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -687,14 +687,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 376.677595 -The maximum resident set size (KB) = 2979836 +The total amount of wall time = 387.088747 +The maximum resident set size (KB) = 2983916 Test 010 cpld_control_ciceC_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/cpld_control_noaero_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/cpld_control_noaero_p8 Checking test 011 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -758,14 +758,14 @@ Checking test 011 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 274.604047 -The maximum resident set size (KB) = 1573004 +The total amount of wall time = 288.043237 +The maximum resident set size (KB) = 1571324 Test 011 cpld_control_noaero_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/cpld_control_nowave_noaero_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_c96_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/cpld_control_nowave_noaero_p8 Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -827,14 +827,14 @@ Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 291.224556 -The maximum resident set size (KB) = 1624988 +The total amount of wall time = 302.775396 +The maximum resident set size (KB) = 1619192 Test 012 cpld_control_nowave_noaero_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/cpld_control_noaero_p8_agrid +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_noaero_p8_agrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/cpld_control_noaero_p8_agrid Checking test 013 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -896,14 +896,14 @@ Checking test 013 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 297.479310 -The maximum resident set size (KB) = 1627084 +The total amount of wall time = 311.242252 +The maximum resident set size (KB) = 1624168 Test 013 cpld_control_noaero_p8_agrid PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/cpld_control_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/cpld_control_c48 Checking test 014 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -953,14 +953,14 @@ Checking test 014 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 429.752742 -The maximum resident set size (KB) = 2634700 +The total amount of wall time = 440.579996 +The maximum resident set size (KB) = 2627996 Test 014 cpld_control_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/cpld_warmstart_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/cpld_warmstart_c48 Checking test 015 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1010,14 +1010,14 @@ Checking test 015 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 116.670775 -The maximum resident set size (KB) = 2652488 +The total amount of wall time = 124.387910 +The maximum resident set size (KB) = 2648620 Test 015 cpld_warmstart_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/cpld_restart_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/cpld_restart_c48 Checking test 016 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1067,14 +1067,14 @@ Checking test 016 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 60.413449 -The maximum resident set size (KB) = 2062188 +The total amount of wall time = 67.231318 +The maximum resident set size (KB) = 2063356 Test 016 cpld_restart_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/cpld_control_p8_faster +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/cpld_control_p8_faster Checking test 017 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1139,14 +1139,14 @@ Checking test 017 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 367.308467 -The maximum resident set size (KB) = 2977956 +The total amount of wall time = 378.806501 +The maximum resident set size (KB) = 2980508 Test 017 cpld_control_p8_faster PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_flake -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_flake +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_flake +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_flake Checking test 018 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1157,14 +1157,14 @@ Checking test 018 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 214.982902 -The maximum resident set size (KB) = 564736 +The total amount of wall time = 212.680390 +The maximum resident set size (KB) = 560972 Test 018 control_flake PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_CubedSphereGrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_CubedSphereGrid +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_CubedSphereGrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_CubedSphereGrid Checking test 019 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1191,14 +1191,14 @@ Checking test 019 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 129.370803 -The maximum resident set size (KB) = 511364 +The total amount of wall time = 129.442093 +The maximum resident set size (KB) = 510480 Test 019 control_CubedSphereGrid PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_latlon -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_latlon +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_latlon +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_latlon Checking test 020 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1209,14 +1209,14 @@ Checking test 020 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 132.340724 -The maximum resident set size (KB) = 515188 +The total amount of wall time = 132.313437 +The maximum resident set size (KB) = 514292 Test 020 control_latlon PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_wrtGauss_netcdf_parallel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_wrtGauss_netcdf_parallel Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1227,14 +1227,14 @@ Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 134.916905 -The maximum resident set size (KB) = 514044 +The total amount of wall time = 134.587190 +The maximum resident set size (KB) = 516324 Test 021 control_wrtGauss_netcdf_parallel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_c48 Checking test 022 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1273,14 +1273,14 @@ Checking test 022 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 326.650299 -The maximum resident set size (KB) = 675224 +The total amount of wall time = 330.158061 +The maximum resident set size (KB) = 674744 Test 022 control_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_c192 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_c192 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c192 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_c192 Checking test 023 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1291,14 +1291,14 @@ Checking test 023 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 526.872665 -The maximum resident set size (KB) = 614296 +The total amount of wall time = 528.827409 +The maximum resident set size (KB) = 613968 Test 023 control_c192 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_c384 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_c384 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c384 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_c384 Checking test 024 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1309,14 +1309,14 @@ Checking test 024 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 568.028149 -The maximum resident set size (KB) = 927868 +The total amount of wall time = 567.740010 +The maximum resident set size (KB) = 922308 Test 024 control_c384 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_c384gdas -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_c384gdas +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c384gdas +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_c384gdas Checking test 025 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1359,14 +1359,14 @@ Checking test 025 control_c384gdas 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 = 492.314801 -The maximum resident set size (KB) = 1056788 +The total amount of wall time = 501.063852 +The maximum resident set size (KB) = 1057488 Test 025 control_c384gdas PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_stochy +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_stochy Checking test 026 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1377,28 +1377,28 @@ Checking test 026 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 90.438865 -The maximum resident set size (KB) = 517412 +The total amount of wall time = 89.548602 +The maximum resident set size (KB) = 520556 Test 026 control_stochy PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_stochy_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_stochy_restart Checking test 027 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 49.451826 -The maximum resident set size (KB) = 286504 +The total amount of wall time = 49.805313 +The maximum resident set size (KB) = 286884 Test 027 control_stochy_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_lndp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_lndp Checking test 028 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1409,14 +1409,14 @@ Checking test 028 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 83.949699 -The maximum resident set size (KB) = 516356 +The total amount of wall time = 83.261682 +The maximum resident set size (KB) = 514508 Test 028 control_lndp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_iovr4 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_iovr4 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_iovr4 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_iovr4 Checking test 029 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1431,14 +1431,14 @@ Checking test 029 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 137.661732 -The maximum resident set size (KB) = 514980 +The total amount of wall time = 135.443496 +The maximum resident set size (KB) = 515316 Test 029 control_iovr4 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_iovr5 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_iovr5 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_iovr5 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_iovr5 Checking test 030 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1453,14 +1453,14 @@ Checking test 030 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 136.131766 -The maximum resident set size (KB) = 512400 +The total amount of wall time = 135.131040 +The maximum resident set size (KB) = 517488 Test 030 control_iovr5 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_p8 Checking test 031 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1507,14 +1507,14 @@ Checking test 031 control_p8 results .... 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.494086 -The maximum resident set size (KB) = 1478704 +The total amount of wall time = 178.586291 +The maximum resident set size (KB) = 1486440 Test 031 control_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_restart_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_restart_p8 Checking test 032 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1553,14 +1553,14 @@ Checking test 032 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 92.906758 -The maximum resident set size (KB) = 651496 +The total amount of wall time = 102.039083 +The maximum resident set size (KB) = 652712 Test 032 control_restart_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_qr_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_qr_p8 Checking test 033 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1607,14 +1607,14 @@ Checking test 033 control_qr_p8 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 = 170.985621 -The maximum resident set size (KB) = 1497864 +The total amount of wall time = 177.069032 +The maximum resident set size (KB) = 1496520 Test 033 control_qr_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_restart_qr_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_restart_qr_p8 Checking test 034 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1653,14 +1653,14 @@ Checking test 034 control_restart_qr_p8 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 = 94.241753 -The maximum resident set size (KB) = 662268 +The total amount of wall time = 99.997949 +The maximum resident set size (KB) = 661824 Test 034 control_restart_qr_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_decomp_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_decomp_p8 Checking test 035 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1703,14 +1703,14 @@ Checking test 035 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 175.262406 -The maximum resident set size (KB) = 1477800 +The total amount of wall time = 181.600221 +The maximum resident set size (KB) = 1476356 Test 035 control_decomp_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_2threads_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_2threads_p8 Checking test 036 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1753,14 +1753,14 @@ Checking test 036 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 149.683558 -The maximum resident set size (KB) = 1568992 +The total amount of wall time = 155.072124 +The maximum resident set size (KB) = 1562436 Test 036 control_2threads_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_p8_lndp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_p8_lndp Checking test 037 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1779,14 +1779,14 @@ Checking test 037 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 315.152395 -The maximum resident set size (KB) = 1488308 +The total amount of wall time = 320.952524 +The maximum resident set size (KB) = 1482664 Test 037 control_p8_lndp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_rrtmgp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_p8_rrtmgp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_rrtmgp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_p8_rrtmgp Checking test 038 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1833,14 +1833,14 @@ Checking test 038 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 227.929059 -The maximum resident set size (KB) = 1543968 +The total amount of wall time = 233.481542 +The maximum resident set size (KB) = 1549580 Test 038 control_p8_rrtmgp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_mynn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_p8_mynn +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_mynn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_p8_mynn Checking test 039 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1887,14 +1887,14 @@ Checking test 039 control_p8_mynn results .... 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.616327 -The maximum resident set size (KB) = 1495740 +The total amount of wall time = 180.056537 +The maximum resident set size (KB) = 1482184 Test 039 control_p8_mynn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/merra2_thompson -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/merra2_thompson +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/merra2_thompson +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/merra2_thompson Checking test 040 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1941,14 +1941,14 @@ Checking test 040 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 196.394972 -The maximum resident set size (KB) = 1490524 +The total amount of wall time = 204.150063 +The maximum resident set size (KB) = 1495252 Test 040 merra2_thompson PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/regional_control +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/regional_control Checking test 041 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1959,28 +1959,28 @@ Checking test 041 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 285.679025 -The maximum resident set size (KB) = 652988 +The total amount of wall time = 286.768961 +The maximum resident set size (KB) = 652256 Test 041 regional_control PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/regional_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/regional_restart Checking test 042 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 154.712537 -The maximum resident set size (KB) = 650076 +The total amount of wall time = 157.757532 +The maximum resident set size (KB) = 646500 Test 042 regional_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/regional_control_qr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/regional_control_qr Checking test 043 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1991,28 +1991,28 @@ Checking test 043 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 282.458946 -The maximum resident set size (KB) = 653220 +The total amount of wall time = 288.660681 +The maximum resident set size (KB) = 651596 Test 043 regional_control_qr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/regional_restart_qr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/regional_restart_qr Checking test 044 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 152.905684 -The maximum resident set size (KB) = 649156 +The total amount of wall time = 157.125493 +The maximum resident set size (KB) = 647372 Test 044 regional_restart_qr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/regional_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/regional_decomp Checking test 045 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2023,14 +2023,14 @@ Checking test 045 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 297.537005 -The maximum resident set size (KB) = 652640 +The total amount of wall time = 302.719313 +The maximum resident set size (KB) = 653444 Test 045 regional_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/regional_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/regional_2threads Checking test 046 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2041,14 +2041,14 @@ Checking test 046 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 169.591838 -The maximum resident set size (KB) = 694820 +The total amount of wall time = 177.098448 +The maximum resident set size (KB) = 690084 Test 046 regional_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_noquilt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/regional_noquilt +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_noquilt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/regional_noquilt Checking test 047 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2056,14 +2056,14 @@ Checking test 047 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 307.821495 -The maximum resident set size (KB) = 647148 +The total amount of wall time = 312.288321 +The maximum resident set size (KB) = 641836 Test 047 regional_noquilt PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/regional_2dwrtdecomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/regional_2dwrtdecomp Checking test 048 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2074,14 +2074,14 @@ Checking test 048 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 284.483562 -The maximum resident set size (KB) = 651952 +The total amount of wall time = 291.297269 +The maximum resident set size (KB) = 648664 Test 048 regional_2dwrtdecomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/fv3_regional_wofs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/regional_wofs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/fv3_regional_wofs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/regional_wofs Checking test 049 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2092,14 +2092,14 @@ Checking test 049 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 363.264135 -The maximum resident set size (KB) = 339492 +The total amount of wall time = 363.681402 +The maximum resident set size (KB) = 339880 Test 049 regional_wofs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_ifi_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/regional_ifi_control +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_ifi_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/regional_ifi_control Checking test 050 regional_ifi_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2110,14 +2110,14 @@ Checking test 050 regional_ifi_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 316.308570 -The maximum resident set size (KB) = 655124 +The total amount of wall time = 319.829398 +The maximum resident set size (KB) = 652716 Test 050 regional_ifi_control PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_ifi_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/regional_ifi_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_ifi_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/regional_ifi_decomp Checking test 051 regional_ifi_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2128,14 +2128,14 @@ Checking test 051 regional_ifi_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 334.657433 -The maximum resident set size (KB) = 658716 +The total amount of wall time = 337.637772 +The maximum resident set size (KB) = 651640 Test 051 regional_ifi_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_ifi_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/regional_ifi_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_ifi_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/regional_ifi_2threads Checking test 052 regional_ifi_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2146,14 +2146,14 @@ Checking test 052 regional_ifi_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 189.775698 -The maximum resident set size (KB) = 694528 +The total amount of wall time = 197.923256 +The maximum resident set size (KB) = 694224 Test 052 regional_ifi_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/rap_control +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rap_control Checking test 053 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2200,14 +2200,14 @@ Checking test 053 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 418.017920 -The maximum resident set size (KB) = 888048 +The total amount of wall time = 420.529683 +The maximum resident set size (KB) = 890820 Test 053 rap_control PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/regional_spp_sppt_shum_skeb +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_spp_sppt_shum_skeb +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/regional_spp_sppt_shum_skeb Checking test 054 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2218,14 +2218,14 @@ Checking test 054 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 237.895899 -The maximum resident set size (KB) = 984980 +The total amount of wall time = 246.595334 +The maximum resident set size (KB) = 984960 Test 054 regional_spp_sppt_shum_skeb PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/rap_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rap_decomp Checking test 055 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2272,14 +2272,14 @@ Checking test 055 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 431.998651 -The maximum resident set size (KB) = 885472 +The total amount of wall time = 433.623522 +The maximum resident set size (KB) = 889564 Test 055 rap_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/rap_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rap_2threads Checking test 056 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2326,14 +2326,14 @@ Checking test 056 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 386.154061 -The maximum resident set size (KB) = 962148 +The total amount of wall time = 389.187607 +The maximum resident set size (KB) = 965076 Test 056 rap_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/rap_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rap_restart Checking test 057 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2372,14 +2372,14 @@ Checking test 057 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 212.024605 -The maximum resident set size (KB) = 639892 +The total amount of wall time = 212.797248 +The maximum resident set size (KB) = 643128 Test 057 rap_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/rap_sfcdiff +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rap_sfcdiff Checking test 058 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2426,14 +2426,14 @@ Checking test 058 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 422.984069 -The maximum resident set size (KB) = 886456 +The total amount of wall time = 421.937458 +The maximum resident set size (KB) = 891224 Test 058 rap_sfcdiff PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/rap_sfcdiff_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rap_sfcdiff_decomp Checking test 059 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2480,14 +2480,14 @@ Checking test 059 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 438.924684 -The maximum resident set size (KB) = 890052 +The total amount of wall time = 438.488075 +The maximum resident set size (KB) = 889616 Test 059 rap_sfcdiff_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/rap_sfcdiff_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rap_sfcdiff_restart Checking test 060 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2526,14 +2526,14 @@ Checking test 060 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 309.927361 -The maximum resident set size (KB) = 642764 +The total amount of wall time = 309.652010 +The maximum resident set size (KB) = 638856 Test 060 rap_sfcdiff_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/hrrr_control +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hrrr_control Checking test 061 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2580,14 +2580,14 @@ Checking test 061 hrrr_control 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 = 390.072507 -The maximum resident set size (KB) = 885752 +The total amount of wall time = 390.537386 +The maximum resident set size (KB) = 885484 Test 061 hrrr_control PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/hrrr_control_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hrrr_control_decomp Checking test 062 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2634,14 +2634,14 @@ Checking test 062 hrrr_control_decomp 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 = 404.599282 -The maximum resident set size (KB) = 886852 +The total amount of wall time = 403.625872 +The maximum resident set size (KB) = 885312 Test 062 hrrr_control_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/hrrr_control_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hrrr_control_2threads Checking test 063 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2688,28 +2688,28 @@ Checking test 063 hrrr_control_2threads 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 = 349.175174 -The maximum resident set size (KB) = 964736 +The total amount of wall time = 350.187083 +The maximum resident set size (KB) = 963176 Test 063 hrrr_control_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/hrrr_control_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hrrr_control_restart Checking test 064 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 286.412206 -The maximum resident set size (KB) = 637336 +The total amount of wall time = 286.567256 +The maximum resident set size (KB) = 637920 Test 064 hrrr_control_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_v1beta -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/rrfs_v1beta +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1beta +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rrfs_v1beta Checking test 065 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2756,14 +2756,14 @@ Checking test 065 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 420.351228 -The maximum resident set size (KB) = 883532 +The total amount of wall time = 420.781959 +The maximum resident set size (KB) = 887468 Test 065 rrfs_v1beta PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_v1nssl -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/rrfs_v1nssl +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1nssl +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rrfs_v1nssl Checking test 066 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2778,14 +2778,14 @@ Checking test 066 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 480.577166 -The maximum resident set size (KB) = 575880 +The total amount of wall time = 483.049540 +The maximum resident set size (KB) = 580772 Test 066 rrfs_v1nssl PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/rrfs_v1nssl_nohailnoccn +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rrfs_v1nssl_nohailnoccn Checking test 067 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2800,14 +2800,14 @@ Checking test 067 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 470.536794 -The maximum resident set size (KB) = 566580 +The total amount of wall time = 469.470987 +The maximum resident set size (KB) = 567484 Test 067 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rrfs_smoke_conus13km_hrrr_warm Checking test 068 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2816,14 +2816,14 @@ Checking test 068 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 139.839826 -The maximum resident set size (KB) = 801928 +The total amount of wall time = 149.357899 +The maximum resident set size (KB) = 797204 Test 068 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 069 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2832,14 +2832,14 @@ Checking test 069 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 94.053729 -The maximum resident set size (KB) = 799200 +The total amount of wall time = 104.267413 +The maximum resident set size (KB) = 798048 Test 069 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/rrfs_conus13km_hrrr_warm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rrfs_conus13km_hrrr_warm Checking test 070 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2848,14 +2848,14 @@ Checking test 070 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 126.949683 -The maximum resident set size (KB) = 789120 +The total amount of wall time = 135.253002 +The maximum resident set size (KB) = 789912 Test 070 rrfs_conus13km_hrrr_warm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rrfs_smoke_conus13km_radar_tten_warm Checking test 071 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2864,26 +2864,26 @@ Checking test 071 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 138.646505 -The maximum resident set size (KB) = 802700 +The total amount of wall time = 150.721902 +The maximum resident set size (KB) = 798076 Test 071 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 072 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 65.618948 -The maximum resident set size (KB) = 762296 +The total amount of wall time = 69.356727 +The maximum resident set size (KB) = 762976 Test 072 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_csawmg -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_csawmg +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmg +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_csawmg Checking test 073 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2894,14 +2894,14 @@ Checking test 073 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 340.196200 -The maximum resident set size (KB) = 585320 +The total amount of wall time = 346.903408 +The maximum resident set size (KB) = 582132 Test 073 control_csawmg PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_csawmgt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_csawmgt +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmgt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_csawmgt Checking test 074 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2912,14 +2912,14 @@ Checking test 074 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 337.747369 -The maximum resident set size (KB) = 582448 +The total amount of wall time = 343.889755 +The maximum resident set size (KB) = 584616 Test 074 control_csawmgt PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_ras -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_ras +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_ras +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_ras Checking test 075 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2930,26 +2930,26 @@ Checking test 075 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 181.082513 -The maximum resident set size (KB) = 548780 +The total amount of wall time = 180.969138 +The maximum resident set size (KB) = 549940 Test 075 control_ras PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_wam -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_wam +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wam +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_wam Checking test 076 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 117.703380 -The maximum resident set size (KB) = 270668 +The total amount of wall time = 117.727981 +The maximum resident set size (KB) = 271620 Test 076 control_wam PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_p8_faster +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_p8_faster Checking test 077 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2996,14 +2996,14 @@ Checking test 077 control_p8_faster results .... 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.635136 -The maximum resident set size (KB) = 1486016 +The total amount of wall time = 176.470930 +The maximum resident set size (KB) = 1485504 Test 077 control_p8_faster PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/regional_control_faster +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/regional_control_faster Checking test 078 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3014,56 +3014,56 @@ Checking test 078 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 276.690058 -The maximum resident set size (KB) = 648292 +The total amount of wall time = 285.157731 +The maximum resident set size (KB) = 651384 Test 078 regional_control_faster PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 079 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 890.182530 -The maximum resident set size (KB) = 824100 +The total amount of wall time = 911.396994 +The maximum resident set size (KB) = 824496 Test 079 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 080 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 508.404461 -The maximum resident set size (KB) = 832544 +The total amount of wall time = 522.835240 +The maximum resident set size (KB) = 828620 Test 080 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/rrfs_conus13km_hrrr_warm_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rrfs_conus13km_hrrr_warm_debug Checking test 081 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 796.712025 -The maximum resident set size (KB) = 821576 +The total amount of wall time = 807.153458 +The maximum resident set size (KB) = 821048 Test 081 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_CubedSphereGrid_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_CubedSphereGrid_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_CubedSphereGrid_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_CubedSphereGrid_debug Checking test 082 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3090,348 +3090,348 @@ Checking test 082 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 158.718825 -The maximum resident set size (KB) = 675628 +The total amount of wall time = 157.586723 +The maximum resident set size (KB) = 680688 Test 082 control_CubedSphereGrid_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_wrtGauss_netcdf_parallel_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_wrtGauss_netcdf_parallel_debug Checking test 083 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 157.705122 -The maximum resident set size (KB) = 674352 +The total amount of wall time = 156.668771 +The maximum resident set size (KB) = 684644 Test 083 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_stochy_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_stochy_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_stochy_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_stochy_debug Checking test 084 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 179.031940 -The maximum resident set size (KB) = 679560 +The total amount of wall time = 177.068927 +The maximum resident set size (KB) = 684384 Test 084 control_stochy_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_lndp_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_lndp_debug Checking test 085 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 160.718254 -The maximum resident set size (KB) = 683124 +The total amount of wall time = 159.465969 +The maximum resident set size (KB) = 683312 Test 085 control_lndp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_csawmg_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_csawmg_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmg_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_csawmg_debug Checking test 086 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 248.637733 -The maximum resident set size (KB) = 716276 +The total amount of wall time = 251.764378 +The maximum resident set size (KB) = 719940 Test 086 control_csawmg_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_csawmgt_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_csawmgt_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmgt_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_csawmgt_debug Checking test 087 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 246.680307 -The maximum resident set size (KB) = 719740 +The total amount of wall time = 249.361541 +The maximum resident set size (KB) = 720840 Test 087 control_csawmgt_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_ras_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_ras_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_ras_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_ras_debug Checking test 088 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 161.907610 -The maximum resident set size (KB) = 692696 +The total amount of wall time = 161.030484 +The maximum resident set size (KB) = 692700 Test 088 control_ras_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_diag_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_diag_debug Checking test 089 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 162.929271 -The maximum resident set size (KB) = 734508 +The total amount of wall time = 161.443811 +The maximum resident set size (KB) = 736976 Test 089 control_diag_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_debug_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_debug_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_debug_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_debug_p8 Checking test 090 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 179.837256 -The maximum resident set size (KB) = 1506496 +The total amount of wall time = 185.903939 +The maximum resident set size (KB) = 1497888 Test 090 control_debug_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/regional_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/regional_debug Checking test 091 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1038.721433 -The maximum resident set size (KB) = 672884 +The total amount of wall time = 1039.888379 +The maximum resident set size (KB) = 673284 Test 091 regional_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/rap_control_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rap_control_debug Checking test 092 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 295.863946 -The maximum resident set size (KB) = 1054036 +The total amount of wall time = 296.282402 +The maximum resident set size (KB) = 1049644 Test 092 rap_control_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/hrrr_control_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hrrr_control_debug Checking test 093 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 288.400611 -The maximum resident set size (KB) = 1046908 +The total amount of wall time = 288.761857 +The maximum resident set size (KB) = 1045756 Test 093 hrrr_control_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/rap_unified_drag_suite_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rap_unified_drag_suite_debug Checking test 094 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 296.320015 -The maximum resident set size (KB) = 1054848 +The total amount of wall time = 296.703058 +The maximum resident set size (KB) = 1054660 Test 094 rap_unified_drag_suite_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/rap_diag_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rap_diag_debug Checking test 095 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 309.202255 -The maximum resident set size (KB) = 1136916 +The total amount of wall time = 306.403952 +The maximum resident set size (KB) = 1135448 Test 095 rap_diag_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/rap_cires_ugwp_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rap_cires_ugwp_debug Checking test 096 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 302.801303 -The maximum resident set size (KB) = 1053288 +The total amount of wall time = 301.522266 +The maximum resident set size (KB) = 1053976 Test 096 rap_cires_ugwp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/rap_unified_ugwp_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rap_unified_ugwp_debug Checking test 097 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 302.801000 -The maximum resident set size (KB) = 1055728 +The total amount of wall time = 302.877103 +The maximum resident set size (KB) = 1054988 Test 097 rap_unified_ugwp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/rap_lndp_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rap_lndp_debug Checking test 098 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 299.257122 -The maximum resident set size (KB) = 1055508 +The total amount of wall time = 298.263580 +The maximum resident set size (KB) = 1054040 Test 098 rap_lndp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_progcld_thompson_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/rap_progcld_thompson_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_progcld_thompson_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rap_progcld_thompson_debug Checking test 099 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 295.693784 -The maximum resident set size (KB) = 1049776 +The total amount of wall time = 295.992735 +The maximum resident set size (KB) = 1055396 Test 099 rap_progcld_thompson_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_noah_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/rap_noah_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_noah_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rap_noah_debug Checking test 100 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 289.570703 -The maximum resident set size (KB) = 1048612 +The total amount of wall time = 288.879077 +The maximum resident set size (KB) = 1051356 Test 100 rap_noah_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_sfcdiff_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/rap_sfcdiff_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rap_sfcdiff_debug Checking test 101 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 296.099525 -The maximum resident set size (KB) = 1053252 +The total amount of wall time = 295.769756 +The maximum resident set size (KB) = 1056012 Test 101 rap_sfcdiff_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rap_noah_sfcdiff_cires_ugwp_debug Checking test 102 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 485.038705 -The maximum resident set size (KB) = 1051956 +The total amount of wall time = 485.248172 +The maximum resident set size (KB) = 1053808 Test 102 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_v1beta_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/rrfs_v1beta_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1beta_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rrfs_v1beta_debug Checking test 103 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 291.058230 -The maximum resident set size (KB) = 1049960 +The total amount of wall time = 291.168689 +The maximum resident set size (KB) = 1051216 Test 103 rrfs_v1beta_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_clm_lake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/rap_clm_lake_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_clm_lake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rap_clm_lake_debug Checking test 104 rap_clm_lake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 353.519854 -The maximum resident set size (KB) = 1054928 +The total amount of wall time = 375.496163 +The maximum resident set size (KB) = 1054136 Test 104 rap_clm_lake_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_flake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/rap_flake_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_flake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rap_flake_debug Checking test 105 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 296.055529 -The maximum resident set size (KB) = 1051804 +The total amount of wall time = 296.191398 +The maximum resident set size (KB) = 1053512 Test 105 rap_flake_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_wam_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_wam_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wam_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_wam_debug Checking test 106 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 302.163406 -The maximum resident set size (KB) = 302748 +The total amount of wall time = 298.306328 +The maximum resident set size (KB) = 300136 Test 106 control_wam_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3442,14 +3442,14 @@ Checking test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 225.856078 -The maximum resident set size (KB) = 896036 +The total amount of wall time = 232.241044 +The maximum resident set size (KB) = 893180 Test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/rap_control_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rap_control_dyn32_phy32 Checking test 108 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3496,14 +3496,14 @@ Checking test 108 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 351.827605 -The maximum resident set size (KB) = 778196 +The total amount of wall time = 353.166121 +The maximum resident set size (KB) = 778836 Test 108 rap_control_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/hrrr_control_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hrrr_control_dyn32_phy32 Checking test 109 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3550,14 +3550,14 @@ Checking test 109 hrrr_control_dyn32_phy32 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.744073 -The maximum resident set size (KB) = 779440 +The total amount of wall time = 179.665397 +The maximum resident set size (KB) = 775532 Test 109 hrrr_control_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/rap_2threads_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rap_2threads_dyn32_phy32 Checking test 110 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3604,14 +3604,14 @@ Checking test 110 rap_2threads_dyn32_phy32 results .... 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.836490 -The maximum resident set size (KB) = 830520 +The total amount of wall time = 329.569917 +The maximum resident set size (KB) = 830220 Test 110 rap_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/hrrr_control_2threads_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hrrr_control_2threads_dyn32_phy32 Checking test 111 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3658,14 +3658,14 @@ Checking test 111 hrrr_control_2threads_dyn32_phy32 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.619005 -The maximum resident set size (KB) = 824928 +The total amount of wall time = 160.017313 +The maximum resident set size (KB) = 824276 Test 111 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/hrrr_control_decomp_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hrrr_control_decomp_dyn32_phy32 Checking test 112 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3712,14 +3712,14 @@ Checking test 112 hrrr_control_decomp_dyn32_phy32 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.644477 -The maximum resident set size (KB) = 772696 +The total amount of wall time = 186.593899 +The maximum resident set size (KB) = 774056 Test 112 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/rap_restart_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rap_restart_dyn32_phy32 Checking test 113 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3758,28 +3758,28 @@ Checking test 113 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 257.845628 -The maximum resident set size (KB) = 610700 +The total amount of wall time = 258.426638 +The maximum resident set size (KB) = 613916 Test 113 rap_restart_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/hrrr_control_restart_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hrrr_control_restart_dyn32_phy32 Checking test 114 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 93.105621 -The maximum resident set size (KB) = 607056 +The total amount of wall time = 92.268874 +The maximum resident set size (KB) = 608780 Test 114 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/rap_control_dyn64_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rap_control_dyn64_phy32 Checking test 115 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3826,81 +3826,81 @@ Checking test 115 rap_control_dyn64_phy32 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 = 233.837850 -The maximum resident set size (KB) = 794020 +The total amount of wall time = 234.769471 +The maximum resident set size (KB) = 793068 Test 115 rap_control_dyn64_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/rap_control_debug_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rap_control_debug_dyn32_phy32 Checking test 116 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 288.086354 -The maximum resident set size (KB) = 938712 +The total amount of wall time = 290.250645 +The maximum resident set size (KB) = 937720 Test 116 rap_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/hrrr_control_debug_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hrrr_control_debug_dyn32_phy32 Checking test 117 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 282.332187 -The maximum resident set size (KB) = 941348 +The total amount of wall time = 283.265837 +The maximum resident set size (KB) = 938596 Test 117 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/rap_control_dyn64_phy32_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rap_control_dyn64_phy32_debug Checking test 118 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 291.760110 -The maximum resident set size (KB) = 951340 +The total amount of wall time = 292.568086 +The maximum resident set size (KB) = 951188 Test 118 rap_control_dyn64_phy32_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/hafs_regional_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hafs_regional_atm Checking test 119 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 262.810574 -The maximum resident set size (KB) = 821540 +The total amount of wall time = 270.575055 +The maximum resident set size (KB) = 819092 Test 119 hafs_regional_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/hafs_regional_atm_thompson_gfdlsf +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hafs_regional_atm_thompson_gfdlsf Checking test 120 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 304.502994 -The maximum resident set size (KB) = 1175672 +The total amount of wall time = 310.019167 +The maximum resident set size (KB) = 1171428 Test 120 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/hafs_regional_atm_ocn +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hafs_regional_atm_ocn Checking test 121 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3909,14 +3909,14 @@ Checking test 121 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 382.137560 -The maximum resident set size (KB) = 858192 +The total amount of wall time = 387.848541 +The maximum resident set size (KB) = 857772 Test 121 hafs_regional_atm_ocn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/hafs_regional_atm_wav +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hafs_regional_atm_wav Checking test 122 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3925,14 +3925,14 @@ Checking test 122 hafs_regional_atm_wav 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 = 704.314106 -The maximum resident set size (KB) = 888840 +The total amount of wall time = 708.254334 +The maximum resident set size (KB) = 887828 Test 122 hafs_regional_atm_wav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/hafs_regional_atm_ocn_wav +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hafs_regional_atm_ocn_wav Checking test 123 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3943,28 +3943,28 @@ Checking test 123 hafs_regional_atm_ocn_wav 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 = 885.930664 -The maximum resident set size (KB) = 910796 +The total amount of wall time = 899.934683 +The maximum resident set size (KB) = 913080 Test 123 hafs_regional_atm_ocn_wav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/hafs_regional_1nest_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hafs_regional_1nest_atm Checking test 124 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 331.193524 -The maximum resident set size (KB) = 393272 +The total amount of wall time = 331.253605 +The maximum resident set size (KB) = 391104 Test 124 hafs_regional_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/hafs_regional_telescopic_2nests_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hafs_regional_telescopic_2nests_atm Checking test 125 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3973,28 +3973,28 @@ Checking test 125 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 402.015081 -The maximum resident set size (KB) = 397704 +The total amount of wall time = 400.888883 +The maximum resident set size (KB) = 398688 Test 125 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_global_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/hafs_global_1nest_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_global_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hafs_global_1nest_atm Checking test 126 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 171.624571 -The maximum resident set size (KB) = 260140 +The total amount of wall time = 171.530611 +The maximum resident set size (KB) = 260584 Test 126 hafs_global_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_global_multiple_4nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/hafs_global_multiple_4nests_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_global_multiple_4nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hafs_global_multiple_4nests_atm Checking test 127 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4012,14 +4012,14 @@ Checking test 127 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -The total amount of wall time = 484.156766 -The maximum resident set size (KB) = 345640 +The total amount of wall time = 489.402314 +The maximum resident set size (KB) = 342596 Test 127 hafs_global_multiple_4nests_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/hafs_regional_specified_moving_1nest_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hafs_regional_specified_moving_1nest_atm Checking test 128 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4028,28 +4028,28 @@ Checking test 128 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 217.556964 -The maximum resident set size (KB) = 403716 +The total amount of wall time = 217.997175 +The maximum resident set size (KB) = 404772 Test 128 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/hafs_regional_storm_following_1nest_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hafs_regional_storm_following_1nest_atm Checking test 129 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 204.484994 -The maximum resident set size (KB) = 404352 +The total amount of wall time = 206.140001 +The maximum resident set size (KB) = 407460 Test 129 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hafs_regional_storm_following_1nest_atm_ocn Checking test 130 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4058,42 +4058,42 @@ Checking test 130 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 251.021702 -The maximum resident set size (KB) = 466668 +The total amount of wall time = 251.283608 +The maximum resident set size (KB) = 467736 Test 130 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/hafs_global_storm_following_1nest_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_global_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hafs_global_storm_following_1nest_atm Checking test 131 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 84.750920 -The maximum resident set size (KB) = 278080 +The total amount of wall time = 84.501360 +The maximum resident set size (KB) = 277208 Test 131 hafs_global_storm_following_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 132 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 800.749050 -The maximum resident set size (KB) = 488632 +The total amount of wall time = 803.380641 +The maximum resident set size (KB) = 488060 Test 132 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 133 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4104,14 +4104,14 @@ Checking test 133 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 496.808132 -The maximum resident set size (KB) = 517964 +The total amount of wall time = 499.621703 +The maximum resident set size (KB) = 522020 Test 133 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_docn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/hafs_regional_docn +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_docn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hafs_regional_docn Checking test 134 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4119,14 +4119,14 @@ Checking test 134 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 365.004457 -The maximum resident set size (KB) = 862228 +The total amount of wall time = 368.968063 +The maximum resident set size (KB) = 861620 Test 134 hafs_regional_docn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_docn_oisst -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/hafs_regional_docn_oisst +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_docn_oisst +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hafs_regional_docn_oisst Checking test 135 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4134,131 +4134,131 @@ Checking test 135 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 368.377942 -The maximum resident set size (KB) = 845168 +The total amount of wall time = 373.084886 +The maximum resident set size (KB) = 852044 Test 135 hafs_regional_docn_oisst PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_datm_cdeps -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/hafs_regional_datm_cdeps +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_datm_cdeps +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hafs_regional_datm_cdeps Checking test 136 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -The total amount of wall time = 945.112466 -The maximum resident set size (KB) = 833368 +The total amount of wall time = 943.300758 +The maximum resident set size (KB) = 834100 Test 136 hafs_regional_datm_cdeps PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/datm_cdeps_control_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/datm_cdeps_control_cfsr Checking test 137 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.408448 -The maximum resident set size (KB) = 732744 +The total amount of wall time = 140.077664 +The maximum resident set size (KB) = 734016 Test 137 datm_cdeps_control_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/datm_cdeps_restart_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/datm_cdeps_restart_cfsr Checking test 138 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 87.535866 -The maximum resident set size (KB) = 728700 +The total amount of wall time = 85.501202 +The maximum resident set size (KB) = 727844 Test 138 datm_cdeps_restart_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_control_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/datm_cdeps_control_gefs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/datm_cdeps_control_gefs Checking test 139 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 133.092413 -The maximum resident set size (KB) = 611904 +The total amount of wall time = 134.969062 +The maximum resident set size (KB) = 613912 Test 139 datm_cdeps_control_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_iau_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/datm_cdeps_iau_gefs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_iau_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/datm_cdeps_iau_gefs Checking test 140 datm_cdeps_iau_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 136.807420 -The maximum resident set size (KB) = 612868 +The total amount of wall time = 136.103046 +The maximum resident set size (KB) = 614860 Test 140 datm_cdeps_iau_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_stochy_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/datm_cdeps_stochy_gefs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_stochy_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/datm_cdeps_stochy_gefs Checking test 141 datm_cdeps_stochy_gefs 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.420147 -The maximum resident set size (KB) = 613040 +The total amount of wall time = 137.541242 +The maximum resident set size (KB) = 615512 Test 141 datm_cdeps_stochy_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/datm_cdeps_ciceC_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_ciceC_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/datm_cdeps_ciceC_cfsr Checking test 142 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.991211 -The maximum resident set size (KB) = 732656 +The total amount of wall time = 140.756770 +The maximum resident set size (KB) = 733292 Test 142 datm_cdeps_ciceC_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/datm_cdeps_bulk_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_bulk_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/datm_cdeps_bulk_cfsr Checking test 143 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.387968 -The maximum resident set size (KB) = 732784 +The total amount of wall time = 141.232509 +The maximum resident set size (KB) = 731380 Test 143 datm_cdeps_bulk_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/datm_cdeps_bulk_gefs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_bulk_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/datm_cdeps_bulk_gefs Checking test 144 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 133.826094 -The maximum resident set size (KB) = 611304 +The total amount of wall time = 133.415352 +The maximum resident set size (KB) = 611032 Test 144 datm_cdeps_bulk_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/datm_cdeps_mx025_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_mx025_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/datm_cdeps_mx025_cfsr Checking test 145 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4267,14 +4267,14 @@ Checking test 145 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 438.014570 -The maximum resident set size (KB) = 570568 +The total amount of wall time = 429.509832 +The maximum resident set size (KB) = 569868 Test 145 datm_cdeps_mx025_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/datm_cdeps_mx025_gefs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_mx025_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/datm_cdeps_mx025_gefs Checking test 146 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4283,64 +4283,64 @@ Checking test 146 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 433.830652 -The maximum resident set size (KB) = 547612 +The total amount of wall time = 430.724925 +The maximum resident set size (KB) = 547828 Test 146 datm_cdeps_mx025_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/datm_cdeps_multiple_files_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/datm_cdeps_multiple_files_cfsr Checking test 147 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.008497 -The maximum resident set size (KB) = 734912 +The total amount of wall time = 141.076767 +The maximum resident set size (KB) = 732764 Test 147 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/datm_cdeps_3072x1536_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/datm_cdeps_3072x1536_cfsr Checking test 148 datm_cdeps_3072x1536_cfsr 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 = 255.012876 -The maximum resident set size (KB) = 1983308 +The total amount of wall time = 257.300795 +The maximum resident set size (KB) = 1980580 Test 148 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_gfs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/datm_cdeps_gfs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_gfs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/datm_cdeps_gfs Checking test 149 datm_cdeps_gfs 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 = 255.322950 -The maximum resident set size (KB) = 1980548 +The total amount of wall time = 257.374949 +The maximum resident set size (KB) = 1981816 Test 149 datm_cdeps_gfs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_control_cfsr_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/datm_cdeps_control_cfsr_faster +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_cfsr_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/datm_cdeps_control_cfsr_faster Checking test 150 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.496815 -The maximum resident set size (KB) = 734044 +The total amount of wall time = 141.014891 +The maximum resident set size (KB) = 736604 Test 150 datm_cdeps_control_cfsr_faster PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/datm_cdeps_lnd_gswp3 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/datm_cdeps_lnd_gswp3 Checking test 151 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4349,14 +4349,14 @@ Checking test 151 datm_cdeps_lnd_gswp3 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.181086 -The maximum resident set size (KB) = 231772 +The total amount of wall time = 21.967855 +The maximum resident set size (KB) = 226740 Test 151 datm_cdeps_lnd_gswp3 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/datm_cdeps_lnd_gswp3_rst +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/datm_cdeps_lnd_gswp3_rst Checking test 152 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4365,14 +4365,14 @@ Checking test 152 datm_cdeps_lnd_gswp3_rst 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.727895 -The maximum resident set size (KB) = 225300 +The total amount of wall time = 27.074508 +The maximum resident set size (KB) = 230032 Test 152 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_atmlnd_sbs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_p8_atmlnd_sbs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_atmlnd_sbs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_p8_atmlnd_sbs Checking test 153 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4457,14 +4457,14 @@ Checking test 153 control_p8_atmlnd_sbs 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 = 228.479897 -The maximum resident set size (KB) = 1540716 +The total amount of wall time = 233.778318 +The maximum resident set size (KB) = 1538084 Test 153 control_p8_atmlnd_sbs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/atmwav_control_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/atmwav_control_noaero_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/atmwav_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/atmwav_control_noaero_p8 Checking test 154 atmwav_control_noaero_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4507,14 +4507,14 @@ Checking test 154 atmwav_control_noaero_p8 results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK -The total amount of wall time = 103.801231 -The maximum resident set size (KB) = 1528844 +The total amount of wall time = 107.758489 +The maximum resident set size (KB) = 1529048 Test 154 atmwav_control_noaero_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_atmwav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/control_atmwav +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_atmwav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_atmwav Checking test 155 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4558,14 +4558,14 @@ Checking test 155 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -The total amount of wall time = 91.383546 -The maximum resident set size (KB) = 544576 +The total amount of wall time = 91.300620 +The maximum resident set size (KB) = 540416 Test 155 control_atmwav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/atmaero_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/atmaero_control_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/atmaero_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/atmaero_control_p8 Checking test 156 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4609,14 +4609,14 @@ Checking test 156 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 241.337020 -The maximum resident set size (KB) = 2812496 +The total amount of wall time = 244.781569 +The maximum resident set size (KB) = 2815684 Test 156 atmaero_control_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/atmaero_control_p8_rad -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/atmaero_control_p8_rad +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/atmaero_control_p8_rad +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/atmaero_control_p8_rad Checking test 157 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4660,14 +4660,14 @@ Checking test 157 atmaero_control_p8_rad results .... 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.903929 -The maximum resident set size (KB) = 2875452 +The total amount of wall time = 284.941388 +The maximum resident set size (KB) = 2876476 Test 157 atmaero_control_p8_rad PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/atmaero_control_p8_rad_micro +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/atmaero_control_p8_rad_micro +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/atmaero_control_p8_rad_micro Checking test 158 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4711,14 +4711,14 @@ Checking test 158 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 288.643887 -The maximum resident set size (KB) = 2884452 +The total amount of wall time = 288.119953 +The maximum resident set size (KB) = 2885652 Test 158 atmaero_control_p8_rad_micro PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_atmaq -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/regional_atmaq +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_atmaq +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/regional_atmaq Checking test 159 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4734,14 +4734,14 @@ Checking test 159 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 709.563544 -The maximum resident set size (KB) = 1253408 +The total amount of wall time = 684.497360 +The maximum resident set size (KB) = 1257648 Test 159 regional_atmaq PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_atmaq_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/regional_atmaq_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_atmaq_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/regional_atmaq_debug Checking test 160 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4755,35 +4755,12 @@ Checking test 160 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1323.844431 -The maximum resident set size (KB) = 1285348 +The total amount of wall time = 1298.969894 +The maximum resident set size (KB) = 1282084 Test 160 regional_atmaq_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_atmaq_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182917/regional_atmaq_faster -Checking test 161 regional_atmaq_faster results .... - Comparing sfcf000.nc .........OK - Comparing sfcf003.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf003.nc .........OK - Comparing atmf006.nc .........OK - Comparing RESTART/20190801.180000.coupler.res .........OK - Comparing RESTART/20190801.180000.fv_core.res.nc .........OK - Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.phy_data.nc .........OK - Comparing RESTART/20190801.180000.sfc_data.nc .........OK - -The total amount of wall time = 662.327052 -The maximum resident set size (KB) = 1259388 - -Test 161 regional_atmaq_faster PASS - - REGRESSION TEST WAS SUCCESSFUL -Mon May 1 18:38:45 UTC 2023 -Elapsed time: 01h:34m:16s. Have a nice day! +Tue May 9 15:25:58 UTC 2023 +Elapsed time: 01h:37m:25s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index 770e75fc769..654508dfb60 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,21 +1,21 @@ -Wed May 3 06:38:26 MDT 2023 +Fri May 5 04:04:33 MDT 2023 Start Regression test -Compile 001 elapsed time 392 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 002 elapsed time 403 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 893 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 191 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 393 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 1152 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 893 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 907 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 660 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 572 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 345 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 012 elapsed time 293 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/control_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/control_c48 +Compile 001 elapsed time 394 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 002 elapsed time 405 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 914 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 188 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 394 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 1148 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 897 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 914 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 619 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 587 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 336 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 012 elapsed time 295 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/control_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/control_c48 Checking test 001 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -54,14 +54,14 @@ Checking test 001 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 820.869621 -0:The maximum resident set size (KB) = 680412 +0:The total amount of wall time = 815.480234 +0:The maximum resident set size (KB) = 680420 Test 001 control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/control_stochy +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/control_stochy +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/control_stochy Checking test 002 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -72,14 +72,14 @@ Checking test 002 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 178.306956 -0:The maximum resident set size (KB) = 443756 +0:The total amount of wall time = 177.402887 +0:The maximum resident set size (KB) = 443712 Test 002 control_stochy PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/control_ras -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/control_ras +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/control_ras +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/control_ras Checking test 003 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -90,14 +90,14 @@ Checking test 003 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 295.438958 -0:The maximum resident set size (KB) = 452460 +0:The total amount of wall time = 292.422375 +0:The maximum resident set size (KB) = 452412 Test 003 control_ras PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/control_p8 Checking test 004 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -144,14 +144,14 @@ Checking test 004 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 311.593404 -0:The maximum resident set size (KB) = 1225420 +0:The total amount of wall time = 310.277991 +0:The maximum resident set size (KB) = 1225396 Test 004 control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/control_flake -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/control_flake +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/control_flake +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/control_flake Checking test 005 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -162,14 +162,14 @@ Checking test 005 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 352.462600 -0:The maximum resident set size (KB) = 490556 +0:The total amount of wall time = 356.342994 +0:The maximum resident set size (KB) = 490524 Test 005 control_flake PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/rap_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rap_control Checking test 006 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -216,14 +216,14 @@ Checking test 006 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 713.293631 -0:The maximum resident set size (KB) = 792416 +0:The total amount of wall time = 712.142443 +0:The maximum resident set size (KB) = 792380 Test 006 rap_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/rap_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rap_decomp Checking test 007 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -270,14 +270,14 @@ Checking test 007 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 717.783376 -0:The maximum resident set size (KB) = 791652 +0:The total amount of wall time = 716.643434 +0:The maximum resident set size (KB) = 791704 Test 007 rap_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/rap_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rap_2threads Checking test 008 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -324,14 +324,14 @@ Checking test 008 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 655.097116 -0:The maximum resident set size (KB) = 866076 +0:The total amount of wall time = 654.604419 +0:The maximum resident set size (KB) = 865968 Test 008 rap_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/rap_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rap_restart Checking test 009 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -370,14 +370,14 @@ Checking test 009 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 355.176169 -0:The maximum resident set size (KB) = 539348 +0:The total amount of wall time = 353.254777 +0:The maximum resident set size (KB) = 539344 Test 009 rap_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/rap_sfcdiff +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rap_sfcdiff Checking test 010 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -424,14 +424,14 @@ Checking test 010 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 714.166811 -0:The maximum resident set size (KB) = 791828 +0:The total amount of wall time = 712.612280 +0:The maximum resident set size (KB) = 791688 Test 010 rap_sfcdiff PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/rap_sfcdiff_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rap_sfcdiff_decomp Checking test 011 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -478,14 +478,14 @@ Checking test 011 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 728.621835 -0:The maximum resident set size (KB) = 791520 +0:The total amount of wall time = 722.607342 +0:The maximum resident set size (KB) = 791524 Test 011 rap_sfcdiff_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/rap_sfcdiff_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rap_sfcdiff_restart Checking test 012 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -524,14 +524,14 @@ Checking test 012 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 527.312530 -0:The maximum resident set size (KB) = 544440 +0:The total amount of wall time = 523.487983 +0:The maximum resident set size (KB) = 544668 Test 012 rap_sfcdiff_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/hrrr_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/hrrr_control Checking test 013 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -578,14 +578,14 @@ Checking test 013 hrrr_control results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 687.064334 -0:The maximum resident set size (KB) = 789116 +0:The total amount of wall time = 685.441953 +0:The maximum resident set size (KB) = 789064 Test 013 hrrr_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/hrrr_control_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/hrrr_control_2threads Checking test 014 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -632,14 +632,14 @@ Checking test 014 hrrr_control_2threads results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 711.455564 -0:The maximum resident set size (KB) = 855872 +0:The total amount of wall time = 706.043873 +0:The maximum resident set size (KB) = 855888 Test 014 hrrr_control_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/hrrr_control_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/hrrr_control_decomp Checking test 015 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -686,28 +686,28 @@ Checking test 015 hrrr_control_decomp results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 684.096801 -0:The maximum resident set size (KB) = 788520 +0:The total amount of wall time = 682.241630 +0:The maximum resident set size (KB) = 788552 Test 015 hrrr_control_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/hrrr_control_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/hrrr_control_restart Checking test 016 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 507.590797 -0:The maximum resident set size (KB) = 540712 +0:The total amount of wall time = 506.150669 +0:The maximum resident set size (KB) = 539912 Test 016 hrrr_control_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rrfs_v1beta -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/rrfs_v1beta +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rrfs_v1beta +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rrfs_v1beta Checking test 017 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -754,14 +754,14 @@ Checking test 017 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 703.661167 -0:The maximum resident set size (KB) = 789120 +0:The total amount of wall time = 703.906877 +0:The maximum resident set size (KB) = 789108 Test 017 rrfs_v1beta PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rrfs_smoke_conus13km_hrrr_warm Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -770,14 +770,14 @@ Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 241.296317 -0:The maximum resident set size (KB) = 639716 +0:The total amount of wall time = 239.470312 +0:The maximum resident set size (KB) = 639764 Test 018 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 019 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -786,14 +786,14 @@ Checking test 019 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 150.132646 -0:The maximum resident set size (KB) = 658644 +0:The total amount of wall time = 150.141650 +0:The maximum resident set size (KB) = 658528 Test 019 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/rrfs_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rrfs_conus13km_hrrr_warm Checking test 020 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -802,14 +802,14 @@ Checking test 020 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 219.592776 -0:The maximum resident set size (KB) = 618492 +0:The total amount of wall time = 219.792470 +0:The maximum resident set size (KB) = 618852 Test 020 rrfs_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rrfs_smoke_conus13km_radar_tten_warm Checking test 021 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -818,262 +818,262 @@ Checking test 021 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 241.115967 +0:The total amount of wall time = 241.487717 0:The maximum resident set size (KB) = 642424 Test 021 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 022 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 115.189301 -0:The maximum resident set size (KB) = 599548 +0:The total amount of wall time = 115.306913 +0:The maximum resident set size (KB) = 599588 Test 022 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/control_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/control_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/control_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/control_diag_debug Checking test 023 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 82.887098 -0:The maximum resident set size (KB) = 492328 +0:The total amount of wall time = 81.884814 +0:The maximum resident set size (KB) = 492036 Test 023 control_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/regional_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/regional_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/regional_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/regional_debug Checking test 024 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 479.197258 -0:The maximum resident set size (KB) = 567276 +0:The total amount of wall time = 479.193602 +0:The maximum resident set size (KB) = 567300 Test 024 regional_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/rap_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rap_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rap_control_debug Checking test 025 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 145.808487 -0:The maximum resident set size (KB) = 806348 +0:The total amount of wall time = 145.048157 +0:The maximum resident set size (KB) = 806312 Test 025 rap_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/hrrr_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/hrrr_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/hrrr_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/hrrr_control_debug Checking test 026 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 142.355707 -0:The maximum resident set size (KB) = 801752 +0:The total amount of wall time = 142.255144 +0:The maximum resident set size (KB) = 801756 Test 026 hrrr_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rap_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/rap_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rap_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rap_diag_debug Checking test 027 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 152.500871 -0:The maximum resident set size (KB) = 888444 +0:The total amount of wall time = 152.680367 +0:The maximum resident set size (KB) = 888496 Test 027 rap_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rap_noah_sfcdiff_cires_ugwp_debug Checking test 028 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 235.755445 -0:The maximum resident set size (KB) = 804640 +0:The total amount of wall time = 234.710988 +0:The maximum resident set size (KB) = 804596 Test 028 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rap_progcld_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/rap_progcld_thompson_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rap_progcld_thompson_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rap_progcld_thompson_debug Checking test 029 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 145.613157 -0:The maximum resident set size (KB) = 806436 +0:The total amount of wall time = 145.669938 +0:The maximum resident set size (KB) = 806512 Test 029 rap_progcld_thompson_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rrfs_v1beta_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/rrfs_v1beta_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rrfs_v1beta_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rrfs_v1beta_debug Checking test 030 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 144.637822 -0:The maximum resident set size (KB) = 801500 +0:The total amount of wall time = 145.646493 +0:The maximum resident set size (KB) = 801440 Test 030 rrfs_v1beta_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/control_ras_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/control_ras_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/control_ras_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/control_ras_debug Checking test 031 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 80.677289 -0:The maximum resident set size (KB) = 446600 +0:The total amount of wall time = 81.149052 +0:The maximum resident set size (KB) = 446740 Test 031 control_ras_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/control_stochy_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/control_stochy_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/control_stochy_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/control_stochy_debug Checking test 032 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 88.833096 -0:The maximum resident set size (KB) = 438756 +0:The total amount of wall time = 88.535128 +0:The maximum resident set size (KB) = 438820 Test 032 control_stochy_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/control_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/control_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/control_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/control_debug_p8 Checking test 033 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 90.195615 -0:The maximum resident set size (KB) = 1221780 +0:The total amount of wall time = 90.356838 +0:The maximum resident set size (KB) = 1221880 Test 033 control_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 034 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 445.286480 -0:The maximum resident set size (KB) = 645076 +0:The total amount of wall time = 445.690545 +0:The maximum resident set size (KB) = 644980 Test 034 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 035 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 259.943757 -0:The maximum resident set size (KB) = 669700 +0:The total amount of wall time = 259.824078 +0:The maximum resident set size (KB) = 664096 Test 035 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/rrfs_conus13km_hrrr_warm_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rrfs_conus13km_hrrr_warm_debugs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rrfs_conus13km_hrrr_warm_debug Checking test 036 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 403.395632 -0:The maximum resident set size (KB) = 623524 +0:The total amount of wall time = 402.880230 +0:The maximum resident set size (KB) = 623520 Test 036 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rap_flake_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/rap_flake_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rap_flake_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rap_flake_debug Checking test 037 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 145.959215 -0:The maximum resident set size (KB) = 806408 +0:The total amount of wall time = 145.280735 +0:The maximum resident set size (KB) = 806316 Test 037 rap_flake_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rap_clm_lake_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/rap_clm_lake_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rap_clm_lake_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rap_clm_lake_debug Checking test 038 rap_clm_lake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 165.514853 -0:The maximum resident set size (KB) = 807972 +0:The total amount of wall time = 164.819596 +0:The maximum resident set size (KB) = 807840 Test 038 rap_clm_lake_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/control_wam_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/control_wam_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/control_wam_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/control_wam_debug Checking test 039 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 141.188803 -0:The maximum resident set size (KB) = 182940 +0:The total amount of wall time = 140.143132 +0:The maximum resident set size (KB) = 182888 Test 039 control_wam_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/rap_control_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rap_control_dyn32_phy32 Checking test 040 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1120,14 +1120,14 @@ Checking test 040 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 704.105507 -0:The maximum resident set size (KB) = 672772 +0:The total amount of wall time = 699.489469 +0:The maximum resident set size (KB) = 672628 Test 040 rap_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/hrrr_control_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/hrrr_control_dyn32_phy32 Checking test 041 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1174,14 +1174,14 @@ Checking test 041 hrrr_control_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 352.432233 -0:The maximum resident set size (KB) = 671184 +0:The total amount of wall time = 352.641227 +0:The maximum resident set size (KB) = 671112 Test 041 hrrr_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/rap_2threads_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rap_2threads_dyn32_phy32 Checking test 042 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1228,14 +1228,14 @@ Checking test 042 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 643.562556 -0:The maximum resident set size (KB) = 720120 +0:The total amount of wall time = 643.040342 +0:The maximum resident set size (KB) = 720036 Test 042 rap_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/hrrr_control_2threads_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/hrrr_control_2threads_dyn32_phy32 Checking test 043 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1282,14 +1282,14 @@ Checking test 043 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 404.550411 -0:The maximum resident set size (KB) = 712372 +0:The total amount of wall time = 403.092652 +0:The maximum resident set size (KB) = 712460 Test 043 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/hrrr_control_decomp_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/hrrr_control_decomp_dyn32_phy32 Checking test 044 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1336,14 +1336,14 @@ Checking test 044 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 351.716948 -0:The maximum resident set size (KB) = 670008 +0:The total amount of wall time = 351.172256 +0:The maximum resident set size (KB) = 670068 Test 044 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/rap_restart_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rap_restart_dyn32_phy32 Checking test 045 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1382,28 +1382,28 @@ Checking test 045 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 518.141727 -0:The maximum resident set size (KB) = 511820 +0:The total amount of wall time = 520.157001 +0:The maximum resident set size (KB) = 511708 Test 045 rap_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/hrrr_control_restart_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/hrrr_control_restart_dyn32_phy32 Checking test 046 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 178.271201 -0:The maximum resident set size (KB) = 506536 +0:The total amount of wall time = 178.758570 +0:The maximum resident set size (KB) = 505972 Test 046 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rap_control_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/rap_control_dyn64_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rap_control_dyn64_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rap_control_dyn64_phy32 Checking test 047 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1450,56 +1450,56 @@ Checking test 047 rap_control_dyn64_phy32 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 = 414.717880 -0:The maximum resident set size (KB) = 693908 +0:The total amount of wall time = 413.889092 +0:The maximum resident set size (KB) = 693804 Test 047 rap_control_dyn64_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/rap_control_debug_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rap_control_debug_dyn32_phy32 Checking test 048 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 145.080857 -0:The maximum resident set size (KB) = 687172 +0:The total amount of wall time = 144.185860 +0:The maximum resident set size (KB) = 687056 Test 048 rap_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/hrrr_control_debug_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/hrrr_control_debug_dyn32_phy32 Checking test 049 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 141.840703 -0:The maximum resident set size (KB) = 684304 +0:The total amount of wall time = 141.476420 +0:The maximum resident set size (KB) = 684228 Test 049 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/rap_control_dyn64_phy32_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rap_control_debug_dyn64_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rap_control_dyn64_phy32_debug Checking test 050 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 148.545184 -0:The maximum resident set size (KB) = 708144 +0:The total amount of wall time = 148.643835 +0:The maximum resident set size (KB) = 708028 Test 050 rap_control_dyn64_phy32_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/cpld_control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/cpld_control_p8 Checking test 051 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1564,14 +1564,14 @@ Checking test 051 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 490.508335 -0:The maximum resident set size (KB) = 3159084 +0:The total amount of wall time = 499.255766 +0:The maximum resident set size (KB) = 3161428 Test 051 cpld_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/cpld_control_nowave_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/cpld_control_c96_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/cpld_control_nowave_noaero_p8 Checking test 052 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1633,14 +1633,14 @@ Checking test 052 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 248.528909 -0:The maximum resident set size (KB) = 1240676 +0:The total amount of wall time = 239.383698 +0:The maximum resident set size (KB) = 1240728 Test 052 cpld_control_nowave_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/cpld_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/cpld_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/cpld_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/cpld_debug_p8 Checking test 053 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1693,25 +1693,25 @@ Checking test 053 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 199.541595 -0:The maximum resident set size (KB) = 3174324 +0:The total amount of wall time = 202.179415 +0:The maximum resident set size (KB) = 3175064 Test 053 cpld_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/GNU/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47072/datm_cdeps_control_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/datm_cdeps_control_cfsr Checking test 054 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 179.126687 -0:The maximum resident set size (KB) = 670484 +0:The total amount of wall time = 178.657507 +0:The maximum resident set size (KB) = 676024 Test 054 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Wed May 3 07:19:24 MDT 2023 -Elapsed time: 00h:40m:59s. Have a nice day! +Fri May 5 04:40:47 MDT 2023 +Elapsed time: 00h:36m:14s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index c5b1fb657ec..24f21fc368e 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,42 +1,42 @@ -Wed May 3 06:23:30 MDT 2023 +Sat May 6 07:46:17 MDT 2023 Start Regression test -Compile 001 elapsed time 1575 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 1460 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 1405 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 451 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 392 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 1136 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 1130 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 1150 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 009 elapsed time 1052 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 996 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 858 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 1354 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 430 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 014 elapsed time 268 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 925 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 908 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 1587 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1518 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 1428 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 457 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 405 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 1140 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 1143 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 1167 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 009 elapsed time 1074 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 1016 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 863 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 1352 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 443 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 014 elapsed time 265 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 920 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 915 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile 017 elapsed time 294 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 293 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 1244 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 020 elapsed time 346 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 297 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 1228 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 020 elapsed time 356 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug Compile 021 elapsed time 1650 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 022 elapsed time 1192 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 023 elapsed time 429 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 024 elapsed time 201 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 025 elapsed time 430 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 026 elapsed time 102 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 027 elapsed time 1007 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 1075 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 1064 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 964 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 954 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 311 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 1120 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8_mixedmode -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/cpld_control_p8_mixedmode +Compile 022 elapsed time 1204 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 023 elapsed time 427 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 024 elapsed time 197 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 025 elapsed time 428 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 026 elapsed time 104 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 027 elapsed time 1003 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 1071 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 1059 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 976 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 948 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 310 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 1102 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8_mixedmode +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -101,14 +101,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 318.062104 -0:The maximum resident set size (KB) = 2698876 +0:The total amount of wall time = 319.544609 +0:The maximum resident set size (KB) = 2698760 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_gfsv17 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/cpld_control_gfsv17 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_gfsv17 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -172,14 +172,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 282.223772 -0:The maximum resident set size (KB) = 1437692 +0:The total amount of wall time = 282.033907 +0:The maximum resident set size (KB) = 1437756 Test 002 cpld_control_gfsv17 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/cpld_control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -244,14 +244,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 321.333581 -0:The maximum resident set size (KB) = 2715512 +0:The total amount of wall time = 323.529452 +0:The maximum resident set size (KB) = 2715428 Test 003 cpld_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/cpld_restart_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -304,14 +304,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 184.611528 -0:The maximum resident set size (KB) = 2576588 +0:The total amount of wall time = 186.860231 +0:The maximum resident set size (KB) = 2576764 Test 004 cpld_restart_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/cpld_control_qr_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -376,14 +376,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 317.177070 -0:The maximum resident set size (KB) = 2719848 +0:The total amount of wall time = 329.694969 +0:The maximum resident set size (KB) = 2719992 Test 005 cpld_control_qr_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/cpld_restart_qr_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -436,14 +436,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 199.931065 -0:The maximum resident set size (KB) = 2593184 +0:The total amount of wall time = 200.761474 +0:The maximum resident set size (KB) = 2593872 Test 006 cpld_restart_qr_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/cpld_2threads_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -496,14 +496,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 249.759548 -0:The maximum resident set size (KB) = 3178044 +0:The total amount of wall time = 249.551018 +0:The maximum resident set size (KB) = 3178456 Test 007 cpld_2threads_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/cpld_decomp_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -556,14 +556,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 321.454560 -0:The maximum resident set size (KB) = 2720624 +0:The total amount of wall time = 322.275955 +0:The maximum resident set size (KB) = 2720620 Test 008 cpld_decomp_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/cpld_mpi_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -616,14 +616,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 277.060261 -0:The maximum resident set size (KB) = 2681864 +0:The total amount of wall time = 280.595475 +0:The maximum resident set size (KB) = 2681440 Test 009 cpld_mpi_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_ciceC_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/cpld_control_ciceC_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_ciceC_p8 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -688,14 +688,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 323.072456 -0:The maximum resident set size (KB) = 2715364 +0:The total amount of wall time = 325.778808 +0:The maximum resident set size (KB) = 2715260 Test 010 cpld_control_ciceC_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/cpld_control_c192_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_c192_p8 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_control_c192_p8 Checking test 011 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -748,14 +748,14 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -0:The total amount of wall time = 621.594245 -0:The maximum resident set size (KB) = 3351108 +0:The total amount of wall time = 627.058141 +0:The maximum resident set size (KB) = 3351720 Test 011 cpld_control_c192_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/cpld_restart_c192_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_c192_p8 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_restart_c192_p8 Checking test 012 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -808,14 +808,14 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -0:The total amount of wall time = 383.934210 -0:The maximum resident set size (KB) = 3277400 +0:The total amount of wall time = 381.779742 +0:The maximum resident set size (KB) = 3276152 Test 012 cpld_restart_c192_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/cpld_control_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_noaero_p8 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_control_noaero_p8 Checking test 013 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -879,14 +879,14 @@ Checking test 013 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 283.947923 -0:The maximum resident set size (KB) = 1435624 +0:The total amount of wall time = 295.577147 +0:The maximum resident set size (KB) = 1435776 Test 013 cpld_control_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/cpld_control_nowave_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_c96_noaero_p8 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_control_nowave_noaero_p8 Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -948,14 +948,14 @@ Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 194.134305 -0:The maximum resident set size (KB) = 1453476 +0:The total amount of wall time = 198.337851 +0:The maximum resident set size (KB) = 1453396 Test 014 cpld_control_nowave_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/cpld_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_debug_p8 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_debug_p8 Checking test 015 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1008,14 +1008,14 @@ Checking test 015 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 350.574034 -0:The maximum resident set size (KB) = 2780064 +0:The total amount of wall time = 349.597925 +0:The maximum resident set size (KB) = 2780652 Test 015 cpld_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_debug_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/cpld_debug_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_debug_noaero_p8 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_debug_noaero_p8 Checking test 016 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1067,14 +1067,14 @@ Checking test 016 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 301.381015 -0:The maximum resident set size (KB) = 1454276 +0:The total amount of wall time = 302.597149 +0:The maximum resident set size (KB) = 1454940 Test 016 cpld_debug_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_noaero_p8_agrid -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/cpld_control_noaero_p8_agrid +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_noaero_p8_agrid +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_control_noaero_p8_agrid Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1136,14 +1136,14 @@ Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 255.991397 -0:The maximum resident set size (KB) = 1457028 +0:The total amount of wall time = 251.790780 +0:The maximum resident set size (KB) = 1457044 Test 017 cpld_control_noaero_p8_agrid PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/cpld_control_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_c48 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_control_c48 Checking test 018 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1193,14 +1193,14 @@ Checking test 018 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 602.856049 -0:The maximum resident set size (KB) = 2587000 +0:The total amount of wall time = 609.571758 +0:The maximum resident set size (KB) = 2586800 Test 018 cpld_control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/cpld_warmstart_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_warmstart_c48 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_warmstart_c48 Checking test 019 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1250,14 +1250,14 @@ Checking test 019 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -0:The total amount of wall time = 161.345366 -0:The maximum resident set size (KB) = 2602400 +0:The total amount of wall time = 162.965347 +0:The maximum resident set size (KB) = 2602612 Test 019 cpld_warmstart_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/cpld_restart_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_warmstart_c48 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_restart_c48 Checking test 020 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1307,14 +1307,14 @@ Checking test 020 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -0:The total amount of wall time = 85.096472 -0:The maximum resident set size (KB) = 2020108 +0:The total amount of wall time = 85.380411 +0:The maximum resident set size (KB) = 2019952 Test 020 cpld_restart_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_flake -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_flake +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_flake +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_flake Checking test 021 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1325,14 +1325,14 @@ Checking test 021 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 218.718805 -0:The maximum resident set size (KB) = 501312 +0:The total amount of wall time = 217.647145 +0:The maximum resident set size (KB) = 501448 Test 021 control_flake PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_CubedSphereGrid -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_CubedSphereGrid +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_CubedSphereGrid +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_CubedSphereGrid Checking test 022 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1359,28 +1359,28 @@ Checking test 022 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -0:The total amount of wall time = 145.199026 -0:The maximum resident set size (KB) = 454408 +0:The total amount of wall time = 142.366063 +0:The maximum resident set size (KB) = 454624 Test 022 control_CubedSphereGrid PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_CubedSphereGrid_parallel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_CubedSphereGrid_parallel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_CubedSphereGrid_parallel +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_CubedSphereGrid_parallel Checking test 023 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK -0:The total amount of wall time = 139.874057 -0:The maximum resident set size (KB) = 454488 +0:The total amount of wall time = 139.906136 +0:The maximum resident set size (KB) = 454520 Test 023 control_CubedSphereGrid_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_latlon -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_latlon +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_latlon +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_latlon Checking test 024 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1391,32 +1391,32 @@ Checking test 024 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 146.740900 -0:The maximum resident set size (KB) = 454528 +0:The total amount of wall time = 146.709422 +0:The maximum resident set size (KB) = 454584 Test 024 control_latlon PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_wrtGauss_netcdf_parallel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_wrtGauss_netcdf_parallel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wrtGauss_netcdf_parallel +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_wrtGauss_netcdf_parallel Checking test 025 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 149.061763 -0:The maximum resident set size (KB) = 454592 +0:The total amount of wall time = 149.238871 +0:The maximum resident set size (KB) = 454604 Test 025 control_wrtGauss_netcdf_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c48 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_c48 Checking test 026 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1455,14 +1455,14 @@ Checking test 026 control_c48 results .... Comparing 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.399769 -0:The maximum resident set size (KB) = 634244 +0:The total amount of wall time = 441.114330 +0:The maximum resident set size (KB) = 634276 Test 026 control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_c192 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_c192 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c192 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_c192 Checking test 027 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1473,14 +1473,14 @@ Checking test 027 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 594.556939 -0:The maximum resident set size (KB) = 560212 +0:The total amount of wall time = 592.672442 +0:The maximum resident set size (KB) = 560248 Test 027 control_c192 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_c384 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_c384 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c384 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_c384 Checking test 028 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1491,14 +1491,14 @@ Checking test 028 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 586.106711 -0:The maximum resident set size (KB) = 901300 +0:The total amount of wall time = 592.928324 +0:The maximum resident set size (KB) = 900432 Test 028 control_c384 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_c384gdas -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_c384gdas +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c384gdas +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_c384gdas Checking test 029 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1541,14 +1541,14 @@ Checking test 029 control_c384gdas 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 = 515.805472 -0:The maximum resident set size (KB) = 1027840 +0:The total amount of wall time = 516.649977 +0:The maximum resident set size (KB) = 1028888 Test 029 control_c384gdas PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_stochy +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_stochy +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_stochy Checking test 030 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1559,28 +1559,28 @@ Checking test 030 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 98.319953 -0:The maximum resident set size (KB) = 459500 +0:The total amount of wall time = 98.282045 +0:The maximum resident set size (KB) = 459416 Test 030 control_stochy PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_stochy_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_stochy +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_stochy_restart Checking test 031 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 52.660365 -0:The maximum resident set size (KB) = 227584 +0:The total amount of wall time = 53.448086 +0:The maximum resident set size (KB) = 227948 Test 031 control_stochy_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_lndp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_lndp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_lndp +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_lndp Checking test 032 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1591,14 +1591,14 @@ Checking test 032 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 90.697806 -0:The maximum resident set size (KB) = 458912 +0:The total amount of wall time = 90.827000 +0:The maximum resident set size (KB) = 459200 Test 032 control_lndp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_iovr4 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_iovr4 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_iovr4 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_iovr4 Checking test 033 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1613,14 +1613,14 @@ Checking test 033 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 147.936017 -0:The maximum resident set size (KB) = 454508 +0:The total amount of wall time = 144.991596 +0:The maximum resident set size (KB) = 454532 Test 033 control_iovr4 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_iovr5 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_iovr5 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_iovr5 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_iovr5 Checking test 034 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1635,14 +1635,14 @@ Checking test 034 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 148.505524 -0:The maximum resident set size (KB) = 454524 +0:The total amount of wall time = 150.452526 +0:The maximum resident set size (KB) = 454496 Test 034 control_iovr5 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_p8 Checking test 035 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1689,14 +1689,14 @@ Checking test 035 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 181.325693 -0:The maximum resident set size (KB) = 1423952 +0:The total amount of wall time = 182.205472 +0:The maximum resident set size (KB) = 1423928 Test 035 control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_restart_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_restart_p8 Checking test 036 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1735,14 +1735,14 @@ Checking test 036 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 97.947163 -0:The maximum resident set size (KB) = 582100 +0:The total amount of wall time = 96.626032 +0:The maximum resident set size (KB) = 582132 Test 036 control_restart_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_qr_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_qr_p8 Checking test 037 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1789,14 +1789,14 @@ Checking test 037 control_qr_p8 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 = 181.550839 -0:The maximum resident set size (KB) = 1427576 +0:The total amount of wall time = 184.088698 +0:The maximum resident set size (KB) = 1427616 Test 037 control_qr_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_restart_qr_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_restart_qr_p8 Checking test 038 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1835,14 +1835,14 @@ Checking test 038 control_restart_qr_p8 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 = 98.161832 -0:The maximum resident set size (KB) = 597148 +0:The total amount of wall time = 99.706604 +0:The maximum resident set size (KB) = 597216 Test 038 control_restart_qr_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_decomp_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_decomp_p8 Checking test 039 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1885,14 +1885,14 @@ Checking test 039 control_decomp_p8 results .... Comparing 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.365531 +0:The total amount of wall time = 190.475383 0:The maximum resident set size (KB) = 1417728 Test 039 control_decomp_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_2threads_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_2threads_p8 Checking test 040 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1935,14 +1935,14 @@ Checking test 040 control_2threads_p8 results .... Comparing 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.284023 -0:The maximum resident set size (KB) = 1509448 +0:The total amount of wall time = 170.161166 +0:The maximum resident set size (KB) = 1509260 Test 040 control_2threads_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_lndp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_p8_lndp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_lndp +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_p8_lndp Checking test 041 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1961,14 +1961,14 @@ Checking test 041 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -0:The total amount of wall time = 334.962613 -0:The maximum resident set size (KB) = 1424244 +0:The total amount of wall time = 335.855857 +0:The maximum resident set size (KB) = 1424216 Test 041 control_p8_lndp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_rrtmgp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_p8_rrtmgp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_rrtmgp +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_p8_rrtmgp Checking test 042 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2015,14 +2015,14 @@ Checking test 042 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 253.612242 -0:The maximum resident set size (KB) = 1480612 +0:The total amount of wall time = 254.926464 +0:The maximum resident set size (KB) = 1480576 Test 042 control_p8_rrtmgp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_mynn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_p8_mynn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_mynn +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_p8_mynn Checking test 043 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2069,14 +2069,14 @@ Checking test 043 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 183.694030 -0:The maximum resident set size (KB) = 1428396 +0:The total amount of wall time = 185.673954 +0:The maximum resident set size (KB) = 1428428 Test 043 control_p8_mynn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/merra2_thompson -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/merra2_thompson +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/merra2_thompson +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/merra2_thompson Checking test 044 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2123,14 +2123,14 @@ Checking test 044 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 212.476187 -0:The maximum resident set size (KB) = 1429940 +0:The total amount of wall time = 207.735299 +0:The maximum resident set size (KB) = 1429944 Test 044 merra2_thompson PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/regional_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/regional_control Checking test 045 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2141,28 +2141,28 @@ Checking test 045 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 349.021838 -0:The maximum resident set size (KB) = 605044 +0:The total amount of wall time = 342.263461 +0:The maximum resident set size (KB) = 605068 Test 045 regional_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/regional_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/regional_restart Checking test 046 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 174.876664 -0:The maximum resident set size (KB) = 594340 +0:The total amount of wall time = 176.774690 +0:The maximum resident set size (KB) = 594372 Test 046 regional_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/regional_control_qr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/regional_control_qr Checking test 047 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2173,28 +2173,28 @@ Checking test 047 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 341.537137 -0:The maximum resident set size (KB) = 605064 +0:The total amount of wall time = 343.043390 +0:The maximum resident set size (KB) = 605020 Test 047 regional_control_qr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/regional_restart_qr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/regional_restart_qr Checking test 048 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 177.499283 -0:The maximum resident set size (KB) = 594276 +0:The total amount of wall time = 175.499656 +0:The maximum resident set size (KB) = 594360 Test 048 regional_restart_qr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/regional_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/regional_decomp Checking test 049 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2205,14 +2205,14 @@ Checking test 049 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 360.765176 -0:The maximum resident set size (KB) = 598904 +0:The total amount of wall time = 363.507975 +0:The maximum resident set size (KB) = 598972 Test 049 regional_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/regional_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/regional_2threads Checking test 050 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2223,14 +2223,14 @@ Checking test 050 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 204.714869 -0:The maximum resident set size (KB) = 611936 +0:The total amount of wall time = 202.640040 +0:The maximum resident set size (KB) = 611844 Test 050 regional_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_noquilt -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/regional_noquilt +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_noquilt +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/regional_noquilt Checking test 051 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2238,28 +2238,28 @@ Checking test 051 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -0:The total amount of wall time = 367.429801 -0:The maximum resident set size (KB) = 599392 +0:The total amount of wall time = 364.602808 +0:The maximum resident set size (KB) = 599564 Test 051 regional_noquilt PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_netcdf_parallel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/regional_netcdf_parallel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_netcdf_parallel +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/regional_netcdf_parallel Checking test 052 regional_netcdf_parallel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf006.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK + Comparing phyf006.nc ............ALT CHECK......OK -0:The total amount of wall time = 340.178128 -0:The maximum resident set size (KB) = 596940 +0:The total amount of wall time = 341.209017 +0:The maximum resident set size (KB) = 597016 Test 052 regional_netcdf_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/regional_2dwrtdecomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/regional_2dwrtdecomp Checking test 053 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2270,14 +2270,14 @@ Checking test 053 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 348.626698 -0:The maximum resident set size (KB) = 605004 +0:The total amount of wall time = 341.811660 +0:The maximum resident set size (KB) = 605080 Test 053 regional_2dwrtdecomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/fv3_regional_wofs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/regional_wofs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/fv3_regional_wofs +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/regional_wofs Checking test 054 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2288,14 +2288,14 @@ Checking test 054 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 426.678752 -0:The maximum resident set size (KB) = 276132 +0:The total amount of wall time = 428.573325 +0:The maximum resident set size (KB) = 276128 Test 054 regional_wofs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/rap_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_control Checking test 055 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2342,14 +2342,14 @@ Checking test 055 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 482.611693 -0:The maximum resident set size (KB) = 823740 +0:The total amount of wall time = 475.908364 +0:The maximum resident set size (KB) = 823820 Test 055 rap_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_spp_sppt_shum_skeb -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/regional_spp_sppt_shum_skeb +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_spp_sppt_shum_skeb +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/regional_spp_sppt_shum_skeb Checking test 056 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2360,14 +2360,14 @@ Checking test 056 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 261.589188 -0:The maximum resident set size (KB) = 953692 +0:The total amount of wall time = 261.915424 +0:The maximum resident set size (KB) = 953640 Test 056 regional_spp_sppt_shum_skeb PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/rap_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_decomp Checking test 057 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2414,14 +2414,14 @@ Checking test 057 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 500.618209 -0:The maximum resident set size (KB) = 822576 +0:The total amount of wall time = 505.879688 +0:The maximum resident set size (KB) = 822812 Test 057 rap_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/rap_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_2threads Checking test 058 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2468,14 +2468,14 @@ Checking test 058 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 462.136467 -0:The maximum resident set size (KB) = 894132 +0:The total amount of wall time = 461.028591 +0:The maximum resident set size (KB) = 894188 Test 058 rap_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/rap_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_restart Checking test 059 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2514,14 +2514,14 @@ Checking test 059 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 244.587913 -0:The maximum resident set size (KB) = 571648 +0:The total amount of wall time = 243.402879 +0:The maximum resident set size (KB) = 571812 Test 059 rap_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/rap_sfcdiff +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_sfcdiff Checking test 060 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2568,14 +2568,14 @@ Checking test 060 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 479.340620 -0:The maximum resident set size (KB) = 823644 +0:The total amount of wall time = 483.628090 +0:The maximum resident set size (KB) = 823752 Test 060 rap_sfcdiff PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/rap_sfcdiff_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_sfcdiff_decomp Checking test 061 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2622,14 +2622,14 @@ Checking test 061 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 502.880276 -0:The maximum resident set size (KB) = 822620 +0:The total amount of wall time = 504.956544 +0:The maximum resident set size (KB) = 822720 Test 061 rap_sfcdiff_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/rap_sfcdiff_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_sfcdiff_restart Checking test 062 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2668,14 +2668,14 @@ Checking test 062 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 356.385959 -0:The maximum resident set size (KB) = 571452 +0:The total amount of wall time = 355.157372 +0:The maximum resident set size (KB) = 571384 Test 062 rap_sfcdiff_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/hrrr_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hrrr_control Checking test 063 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2722,14 +2722,14 @@ Checking test 063 hrrr_control results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 443.880679 -0:The maximum resident set size (KB) = 820968 +0:The total amount of wall time = 445.184360 +0:The maximum resident set size (KB) = 820916 Test 063 hrrr_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/hrrr_control_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hrrr_control_decomp Checking test 064 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2776,14 +2776,14 @@ Checking test 064 hrrr_control_decomp results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 464.894191 -0:The maximum resident set size (KB) = 820628 +0:The total amount of wall time = 469.636942 +0:The maximum resident set size (KB) = 820688 Test 064 hrrr_control_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/hrrr_control_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hrrr_control_2threads Checking test 065 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2830,28 +2830,28 @@ Checking test 065 hrrr_control_2threads results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 502.903774 -0:The maximum resident set size (KB) = 895272 +0:The total amount of wall time = 505.516341 +0:The maximum resident set size (KB) = 890720 Test 065 hrrr_control_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/hrrr_control_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hrrr_control_restart Checking test 066 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 329.315373 -0:The maximum resident set size (KB) = 567664 +0:The total amount of wall time = 329.995620 +0:The maximum resident set size (KB) = 567936 Test 066 hrrr_control_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_v1beta -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/rrfs_v1beta +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1beta +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rrfs_v1beta Checking test 067 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2898,14 +2898,14 @@ Checking test 067 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 476.090375 -0:The maximum resident set size (KB) = 819788 +0:The total amount of wall time = 468.357238 +0:The maximum resident set size (KB) = 819760 Test 067 rrfs_v1beta PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_v1nssl -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/rrfs_v1nssl +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1nssl +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rrfs_v1nssl Checking test 068 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2920,14 +2920,14 @@ Checking test 068 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 585.862763 -0:The maximum resident set size (KB) = 508592 +0:The total amount of wall time = 585.515821 +0:The maximum resident set size (KB) = 508904 Test 068 rrfs_v1nssl PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/rrfs_v1nssl_nohailnoccn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rrfs_v1nssl_nohailnoccn Checking test 069 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2942,14 +2942,14 @@ Checking test 069 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 563.884627 -0:The maximum resident set size (KB) = 502920 +0:The total amount of wall time = 564.249771 +0:The maximum resident set size (KB) = 503104 Test 069 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rrfs_smoke_conus13km_hrrr_warm Checking test 070 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2958,14 +2958,14 @@ Checking test 070 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 156.627322 -0:The maximum resident set size (KB) = 671032 +0:The total amount of wall time = 155.984607 +0:The maximum resident set size (KB) = 671108 Test 070 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 071 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2974,14 +2974,14 @@ Checking test 071 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 94.445720 -0:The maximum resident set size (KB) = 692964 +0:The total amount of wall time = 96.973312 +0:The maximum resident set size (KB) = 693016 Test 071 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/rrfs_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rrfs_conus13km_hrrr_warm Checking test 072 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2990,14 +2990,14 @@ Checking test 072 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 139.954477 -0:The maximum resident set size (KB) = 667324 +0:The total amount of wall time = 139.530450 +0:The maximum resident set size (KB) = 667476 Test 072 rrfs_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rrfs_smoke_conus13km_radar_tten_warm Checking test 073 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3006,26 +3006,26 @@ Checking test 073 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 157.473753 -0:The maximum resident set size (KB) = 677512 +0:The total amount of wall time = 158.134007 +0:The maximum resident set size (KB) = 677612 Test 073 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 074 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 72.543387 -0:The maximum resident set size (KB) = 640324 +0:The total amount of wall time = 72.897798 +0:The maximum resident set size (KB) = 640308 Test 074 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_csawmg -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_csawmg +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmg +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_csawmg Checking test 075 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3036,14 +3036,14 @@ Checking test 075 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 398.629603 -0:The maximum resident set size (KB) = 528056 +0:The total amount of wall time = 398.731365 +0:The maximum resident set size (KB) = 528140 Test 075 control_csawmg PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_csawmgt -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_csawmgt +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmgt +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_csawmgt Checking test 076 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3054,14 +3054,14 @@ Checking test 076 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 395.241962 -0:The maximum resident set size (KB) = 528624 +0:The total amount of wall time = 395.482771 +0:The maximum resident set size (KB) = 528656 Test 076 control_csawmgt PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_ras -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_ras +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_ras +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_ras Checking test 077 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3072,26 +3072,26 @@ Checking test 077 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 206.785366 -0:The maximum resident set size (KB) = 491264 +0:The total amount of wall time = 209.833440 +0:The maximum resident set size (KB) = 491380 Test 077 control_ras PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_wam -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_wam +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wam +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_wam Checking test 078 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -0:The total amount of wall time = 129.021795 -0:The maximum resident set size (KB) = 206680 +0:The total amount of wall time = 129.995007 +0:The maximum resident set size (KB) = 207020 Test 078 control_wam PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_faster -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_p8_faster +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_faster +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_p8_faster Checking test 079 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3138,14 +3138,14 @@ Checking test 079 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 171.876503 -0:The maximum resident set size (KB) = 1423768 +0:The total amount of wall time = 174.071888 +0:The maximum resident set size (KB) = 1423728 Test 079 control_p8_faster PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control_faster -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/regional_control_faster +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control_faster +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/regional_control_faster Checking test 080 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3156,56 +3156,56 @@ Checking test 080 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 327.878691 -0:The maximum resident set size (KB) = 604812 +0:The total amount of wall time = 320.383787 +0:The maximum resident set size (KB) = 604840 Test 080 regional_control_faster PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 081 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 875.751418 -0:The maximum resident set size (KB) = 704308 +0:The total amount of wall time = 875.773072 +0:The maximum resident set size (KB) = 704324 Test 081 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 082 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 497.172360 -0:The maximum resident set size (KB) = 723160 +0:The total amount of wall time = 500.158979 +0:The maximum resident set size (KB) = 723212 Test 082 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/rrfs_conus13km_hrrr_warm_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rrfs_conus13km_hrrr_warm_debug Checking test 083 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 784.283196 -0:The maximum resident set size (KB) = 697604 +0:The total amount of wall time = 786.866811 +0:The maximum resident set size (KB) = 697580 Test 083 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_CubedSphereGrid_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_CubedSphereGrid_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_CubedSphereGrid_debug +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_CubedSphereGrid_debug Checking test 084 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3232,348 +3232,348 @@ Checking test 084 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -0:The total amount of wall time = 155.065492 -0:The maximum resident set size (KB) = 617920 +0:The total amount of wall time = 155.809745 +0:The maximum resident set size (KB) = 617944 Test 084 control_CubedSphereGrid_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_wrtGauss_netcdf_parallel_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_wrtGauss_netcdf_parallel_debug Checking test 085 control_wrtGauss_netcdf_parallel_debug results .... - Comparing sfcf000.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK - Comparing atmf001.nc ............ALT CHECK......OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 155.538004 -0:The maximum resident set size (KB) = 615384 +0:The total amount of wall time = 156.046099 +0:The maximum resident set size (KB) = 615432 Test 085 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_stochy_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_stochy_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_stochy_debug +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_stochy_debug Checking test 086 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 174.718512 -0:The maximum resident set size (KB) = 620980 +0:The total amount of wall time = 174.717880 +0:The maximum resident set size (KB) = 620872 Test 086 control_stochy_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_lndp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_lndp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_lndp_debug +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_lndp_debug Checking test 087 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 156.614018 -0:The maximum resident set size (KB) = 620436 +0:The total amount of wall time = 158.344963 +0:The maximum resident set size (KB) = 620424 Test 087 control_lndp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_csawmg_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_csawmg_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmg_debug +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_csawmg_debug Checking test 088 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 250.787824 -0:The maximum resident set size (KB) = 666788 +0:The total amount of wall time = 248.577603 +0:The maximum resident set size (KB) = 666760 Test 088 control_csawmg_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_csawmgt_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_csawmgt_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmgt_debug +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_csawmgt_debug Checking test 089 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 243.591680 -0:The maximum resident set size (KB) = 667656 +0:The total amount of wall time = 245.727035 +0:The maximum resident set size (KB) = 667684 Test 089 control_csawmgt_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_ras_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_ras_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_ras_debug +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_ras_debug Checking test 090 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 158.645619 -0:The maximum resident set size (KB) = 629924 +0:The total amount of wall time = 159.757762 +0:The maximum resident set size (KB) = 630012 Test 090 control_ras_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_diag_debug +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_diag_debug Checking test 091 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 158.998762 -0:The maximum resident set size (KB) = 675212 +0:The total amount of wall time = 158.915743 +0:The maximum resident set size (KB) = 675352 Test 091 control_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_debug_p8 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_debug_p8 Checking test 092 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 174.927082 -0:The maximum resident set size (KB) = 1443340 +0:The total amount of wall time = 174.495032 +0:The maximum resident set size (KB) = 1443264 Test 092 control_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/regional_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_debug +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/regional_debug Checking test 093 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 1034.967312 -0:The maximum resident set size (KB) = 626376 +0:The total amount of wall time = 1037.010690 +0:The maximum resident set size (KB) = 626404 Test 093 regional_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/rap_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_control_debug Checking test 094 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 286.334955 -0:The maximum resident set size (KB) = 987080 +0:The total amount of wall time = 286.272780 +0:The maximum resident set size (KB) = 987188 Test 094 rap_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/hrrr_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_debug +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hrrr_control_debug Checking test 095 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 283.270546 -0:The maximum resident set size (KB) = 982980 +0:The total amount of wall time = 280.144032 +0:The maximum resident set size (KB) = 983132 Test 095 hrrr_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/rap_unified_drag_suite_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_unified_drag_suite_debug Checking test 096 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 286.347713 -0:The maximum resident set size (KB) = 987084 +0:The total amount of wall time = 285.819120 +0:The maximum resident set size (KB) = 987260 Test 096 rap_unified_drag_suite_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/rap_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_diag_debug +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_diag_debug Checking test 097 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 296.735726 -0:The maximum resident set size (KB) = 1070256 +0:The total amount of wall time = 297.122933 +0:The maximum resident set size (KB) = 1070236 Test 097 rap_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/rap_cires_ugwp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_cires_ugwp_debug +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_cires_ugwp_debug Checking test 098 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 292.089774 -0:The maximum resident set size (KB) = 986144 +0:The total amount of wall time = 293.036173 +0:The maximum resident set size (KB) = 986272 Test 098 rap_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/rap_unified_ugwp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_cires_ugwp_debug +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_unified_ugwp_debug Checking test 099 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 292.637909 -0:The maximum resident set size (KB) = 987208 +0:The total amount of wall time = 293.586870 +0:The maximum resident set size (KB) = 987096 Test 099 rap_unified_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_lndp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/rap_lndp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_lndp_debug +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_lndp_debug Checking test 100 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 289.511639 -0:The maximum resident set size (KB) = 987796 +0:The total amount of wall time = 289.113313 +0:The maximum resident set size (KB) = 987892 Test 100 rap_lndp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_progcld_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/rap_progcld_thompson_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_progcld_thompson_debug +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_progcld_thompson_debug Checking test 101 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 287.205492 -0:The maximum resident set size (KB) = 986936 +0:The total amount of wall time = 287.257467 +0:The maximum resident set size (KB) = 986992 Test 101 rap_progcld_thompson_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_noah_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/rap_noah_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_noah_debug +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_noah_debug Checking test 102 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 281.012306 -0:The maximum resident set size (KB) = 984924 +0:The total amount of wall time = 279.856384 +0:The maximum resident set size (KB) = 984956 Test 102 rap_noah_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_sfcdiff_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/rap_sfcdiff_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff_debug +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_sfcdiff_debug Checking test 103 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 286.506482 -0:The maximum resident set size (KB) = 986960 +0:The total amount of wall time = 286.541229 +0:The maximum resident set size (KB) = 986996 Test 103 rap_sfcdiff_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_noah_sfcdiff_cires_ugwp_debug Checking test 104 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 470.796110 -0:The maximum resident set size (KB) = 985800 +0:The total amount of wall time = 472.497753 +0:The maximum resident set size (KB) = 985732 Test 104 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_v1beta_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/rrfs_v1beta_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1beta_debug +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rrfs_v1beta_debug Checking test 105 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 282.102343 -0:The maximum resident set size (KB) = 982804 +0:The total amount of wall time = 281.870448 +0:The maximum resident set size (KB) = 982844 Test 105 rrfs_v1beta_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_clm_lake_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/rap_clm_lake_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_clm_lake_debug +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_clm_lake_debug Checking test 106 rap_clm_lake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 349.875229 -0:The maximum resident set size (KB) = 989796 +0:The total amount of wall time = 350.769501 +0:The maximum resident set size (KB) = 989964 Test 106 rap_clm_lake_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_flake_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/rap_flake_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_flake_debug +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_flake_debug Checking test 107 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 285.370537 -0:The maximum resident set size (KB) = 987100 +0:The total amount of wall time = 286.142000 +0:The maximum resident set size (KB) = 987216 Test 107 rap_flake_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_wam_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_wam_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wam_debug +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_wam_debug Checking test 108 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 289.429833 -0:The maximum resident set size (KB) = 235624 +0:The total amount of wall time = 289.164381 +0:The maximum resident set size (KB) = 235724 Test 108 control_wam_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 109 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3584,14 +3584,14 @@ Checking test 109 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 246.578954 -0:The maximum resident set size (KB) = 855136 +0:The total amount of wall time = 248.765865 +0:The maximum resident set size (KB) = 855404 Test 109 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/rap_control_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_control_dyn32_phy32 Checking test 110 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3638,14 +3638,14 @@ Checking test 110 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 400.109912 -0:The maximum resident set size (KB) = 708020 +0:The total amount of wall time = 400.789003 +0:The maximum resident set size (KB) = 708264 Test 110 rap_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/hrrr_control_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hrrr_control_dyn32_phy32 Checking test 111 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3692,14 +3692,14 @@ Checking test 111 hrrr_control_dyn32_phy32 results .... Comparing 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.338004 -0:The maximum resident set size (KB) = 707904 +0:The total amount of wall time = 202.224699 +0:The maximum resident set size (KB) = 707924 Test 111 hrrr_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/rap_2threads_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_2threads_dyn32_phy32 Checking test 112 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3746,14 +3746,14 @@ Checking test 112 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 387.270117 -0:The maximum resident set size (KB) = 757156 +0:The total amount of wall time = 381.970502 +0:The maximum resident set size (KB) = 756588 Test 112 rap_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/hrrr_control_2threads_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hrrr_control_2threads_dyn32_phy32 Checking test 113 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3800,14 +3800,14 @@ Checking test 113 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 276.772563 -0:The maximum resident set size (KB) = 753248 +0:The total amount of wall time = 277.308917 +0:The maximum resident set size (KB) = 752108 Test 113 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/hrrr_control_decomp_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hrrr_control_decomp_dyn32_phy32 Checking test 114 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3854,14 +3854,14 @@ Checking test 114 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 214.986688 -0:The maximum resident set size (KB) = 705824 +0:The total amount of wall time = 215.848961 +0:The maximum resident set size (KB) = 705964 Test 114 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/rap_restart_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_restart_dyn32_phy32 Checking test 115 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3900,28 +3900,28 @@ Checking test 115 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 296.102092 -0:The maximum resident set size (KB) = 545684 +0:The total amount of wall time = 291.572354 +0:The maximum resident set size (KB) = 545144 Test 115 rap_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/hrrr_control_restart_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hrrr_control_restart_dyn32_phy32 Checking test 116 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 103.336648 -0:The maximum resident set size (KB) = 536644 +0:The total amount of wall time = 105.757994 +0:The maximum resident set size (KB) = 536696 Test 116 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/rap_control_dyn64_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn64_phy32 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_control_dyn64_phy32 Checking test 117 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3968,81 +3968,81 @@ Checking test 117 rap_control_dyn64_phy32 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 = 272.530635 -0:The maximum resident set size (KB) = 730592 +0:The total amount of wall time = 273.595358 +0:The maximum resident set size (KB) = 730656 Test 117 rap_control_dyn64_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/rap_control_debug_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_control_debug_dyn32_phy32 Checking test 118 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 281.756508 -0:The maximum resident set size (KB) = 872304 +0:The total amount of wall time = 280.434840 +0:The maximum resident set size (KB) = 872352 Test 118 rap_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/hrrr_control_debug_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hrrr_control_debug_dyn32_phy32 Checking test 119 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 275.552685 -0:The maximum resident set size (KB) = 871156 +0:The total amount of wall time = 275.619384 +0:The maximum resident set size (KB) = 871072 Test 119 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/rap_control_dyn64_phy32_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug_dyn64_phy32 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_control_dyn64_phy32_debug Checking test 120 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 286.075594 -0:The maximum resident set size (KB) = 893064 +0:The total amount of wall time = 287.399337 +0:The maximum resident set size (KB) = 893004 Test 120 rap_control_dyn64_phy32_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/hafs_regional_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hafs_regional_atm Checking test 121 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -0:The total amount of wall time = 258.554771 -0:The maximum resident set size (KB) = 742824 +0:The total amount of wall time = 259.521982 +0:The maximum resident set size (KB) = 743088 Test 121 hafs_regional_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/hafs_regional_atm_thompson_gfdlsf +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hafs_regional_atm_thompson_gfdlsf Checking test 122 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -0:The total amount of wall time = 292.328546 -0:The maximum resident set size (KB) = 1099068 +0:The total amount of wall time = 343.523925 +0:The maximum resident set size (KB) = 1101216 Test 122 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm_ocn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/hafs_regional_atm_ocn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_ocn +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hafs_regional_atm_ocn Checking test 123 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4051,14 +4051,14 @@ Checking test 123 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 453.848591 -0:The maximum resident set size (KB) = 743408 +0:The total amount of wall time = 455.199375 +0:The maximum resident set size (KB) = 743224 Test 123 hafs_regional_atm_ocn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm_wav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/hafs_regional_atm_wav +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_wav +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hafs_regional_atm_wav Checking test 124 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4067,14 +4067,14 @@ Checking test 124 hafs_regional_atm_wav 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 = 1081.968270 -0:The maximum resident set size (KB) = 772624 +0:The total amount of wall time = 1074.359986 +0:The maximum resident set size (KB) = 772520 Test 124 hafs_regional_atm_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm_ocn_wav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/hafs_regional_atm_ocn_wav +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_ocn_wav +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hafs_regional_atm_ocn_wav Checking test 125 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4085,28 +4085,28 @@ Checking test 125 hafs_regional_atm_ocn_wav 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 = 1131.116205 -0:The maximum resident set size (KB) = 791996 +0:The total amount of wall time = 1093.796132 +0:The maximum resident set size (KB) = 793076 Test 125 hafs_regional_atm_ocn_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/hafs_regional_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_1nest_atm +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hafs_regional_1nest_atm Checking test 126 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 373.814677 -0:The maximum resident set size (KB) = 300900 +0:The total amount of wall time = 376.707190 +0:The maximum resident set size (KB) = 301340 Test 126 hafs_regional_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/hafs_regional_telescopic_2nests_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hafs_regional_telescopic_2nests_atm Checking test 127 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4115,28 +4115,28 @@ Checking test 127 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -0:The total amount of wall time = 426.322673 -0:The maximum resident set size (KB) = 320908 +0:The total amount of wall time = 426.005482 +0:The maximum resident set size (KB) = 320976 Test 127 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_global_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/hafs_global_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_global_1nest_atm +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hafs_global_1nest_atm Checking test 128 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 170.990078 -0:The maximum resident set size (KB) = 214460 +0:The total amount of wall time = 173.446271 +0:The maximum resident set size (KB) = 214684 Test 128 hafs_global_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_global_multiple_4nests_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/hafs_global_multiple_4nests_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_global_multiple_4nests_atm +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hafs_global_multiple_4nests_atm Checking test 129 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4154,14 +4154,14 @@ Checking test 129 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -0:The total amount of wall time = 482.235375 -0:The maximum resident set size (KB) = 303588 +0:The total amount of wall time = 484.860707 +0:The maximum resident set size (KB) = 303488 Test 129 hafs_global_multiple_4nests_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/hafs_regional_specified_moving_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hafs_regional_specified_moving_1nest_atm Checking test 130 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4170,28 +4170,28 @@ Checking test 130 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -0:The total amount of wall time = 241.203101 -0:The maximum resident set size (KB) = 318784 +0:The total amount of wall time = 241.934138 +0:The maximum resident set size (KB) = 318996 Test 130 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/hafs_regional_storm_following_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hafs_regional_storm_following_1nest_atm Checking test 131 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 227.932425 -0:The maximum resident set size (KB) = 318964 +0:The total amount of wall time = 230.972152 +0:The maximum resident set size (KB) = 319144 Test 131 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hafs_regional_storm_following_1nest_atm_ocn Checking test 132 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4200,42 +4200,42 @@ Checking test 132 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -0:The total amount of wall time = 280.372710 -0:The maximum resident set size (KB) = 375240 +0:The total amount of wall time = 277.549806 +0:The maximum resident set size (KB) = 375332 Test 132 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_global_storm_following_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/hafs_global_storm_following_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_global_storm_following_1nest_atm +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hafs_global_storm_following_1nest_atm Checking test 133 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 66.426730 -0:The maximum resident set size (KB) = 234628 +0:The total amount of wall time = 70.505526 +0:The maximum resident set size (KB) = 233916 -Test 133 hafs_global_storm_following_1nest_atm PASS Tries: 2 +Test 133 hafs_global_storm_following_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 134 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 763.447116 -0:The maximum resident set size (KB) = 401724 +0:The total amount of wall time = 767.145788 +0:The maximum resident set size (KB) = 402076 Test 134 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4246,14 +4246,14 @@ Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -0:The total amount of wall time = 777.911676 -0:The maximum resident set size (KB) = 428020 +0:The total amount of wall time = 786.860062 +0:The maximum resident set size (KB) = 427636 -Test 135 hafs_regional_storm_following_1nest_atm_ocn_wav PASS Tries: 2 +Test 135 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_docn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/hafs_regional_docn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_docn +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hafs_regional_docn Checking test 136 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4261,14 +4261,14 @@ Checking test 136 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 391.232694 -0:The maximum resident set size (KB) = 756796 +0:The total amount of wall time = 390.635766 +0:The maximum resident set size (KB) = 756580 Test 136 hafs_regional_docn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_docn_oisst -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/hafs_regional_docn_oisst +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_docn_oisst +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hafs_regional_docn_oisst Checking test 137 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4276,131 +4276,131 @@ Checking test 137 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 390.458612 -0:The maximum resident set size (KB) = 736724 +0:The total amount of wall time = 481.252227 +0:The maximum resident set size (KB) = 736616 Test 137 hafs_regional_docn_oisst PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_datm_cdeps -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/hafs_regional_datm_cdeps +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_datm_cdeps +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hafs_regional_datm_cdeps Checking test 138 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -0:The total amount of wall time = 1288.271311 -0:The maximum resident set size (KB) = 887872 +0:The total amount of wall time = 1285.869506 +0:The maximum resident set size (KB) = 887928 Test 138 hafs_regional_datm_cdeps PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/datm_cdeps_control_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/datm_cdeps_control_cfsr Checking test 139 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 167.069253 -0:The maximum resident set size (KB) = 716664 +0:The total amount of wall time = 167.762009 +0:The maximum resident set size (KB) = 716676 Test 139 datm_cdeps_control_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/datm_cdeps_restart_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/datm_cdeps_restart_cfsr Checking test 140 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 99.938564 -0:The maximum resident set size (KB) = 704844 +0:The total amount of wall time = 100.779304 +0:The maximum resident set size (KB) = 704832 Test 140 datm_cdeps_restart_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_control_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/datm_cdeps_control_gefs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_gefs +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/datm_cdeps_control_gefs Checking test 141 datm_cdeps_control_gefs 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.354849 -0:The maximum resident set size (KB) = 607444 +0:The total amount of wall time = 161.001626 +0:The maximum resident set size (KB) = 607504 Test 141 datm_cdeps_control_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_iau_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/datm_cdeps_iau_gefs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_iau_gefs +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/datm_cdeps_iau_gefs Checking test 142 datm_cdeps_iau_gefs 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 = 164.294857 -0:The maximum resident set size (KB) = 607476 +0:The total amount of wall time = 160.841932 +0:The maximum resident set size (KB) = 607508 Test 142 datm_cdeps_iau_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_stochy_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/datm_cdeps_stochy_gefs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_stochy_gefs +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/datm_cdeps_stochy_gefs Checking test 143 datm_cdeps_stochy_gefs 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 = 163.088325 -0:The maximum resident set size (KB) = 607440 +0:The total amount of wall time = 160.108923 +0:The maximum resident set size (KB) = 607504 Test 143 datm_cdeps_stochy_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_ciceC_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/datm_cdeps_ciceC_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_ciceC_cfsr +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/datm_cdeps_ciceC_cfsr Checking test 144 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 167.787924 -0:The maximum resident set size (KB) = 727792 +0:The total amount of wall time = 169.530537 +0:The maximum resident set size (KB) = 716676 Test 144 datm_cdeps_ciceC_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_bulk_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/datm_cdeps_bulk_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_bulk_cfsr +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/datm_cdeps_bulk_cfsr Checking test 145 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 167.514861 -0:The maximum resident set size (KB) = 716716 +0:The total amount of wall time = 167.823598 +0:The maximum resident set size (KB) = 716676 Test 145 datm_cdeps_bulk_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_bulk_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/datm_cdeps_bulk_gefs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_bulk_gefs +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/datm_cdeps_bulk_gefs Checking test 146 datm_cdeps_bulk_gefs 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 = 162.774106 -0:The maximum resident set size (KB) = 607464 +0:The total amount of wall time = 159.889454 +0:The maximum resident set size (KB) = 607512 Test 146 datm_cdeps_bulk_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_mx025_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/datm_cdeps_mx025_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_mx025_cfsr +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/datm_cdeps_mx025_cfsr Checking test 147 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4409,14 +4409,14 @@ Checking test 147 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 421.919988 -0:The maximum resident set size (KB) = 514296 +0:The total amount of wall time = 429.997398 +0:The maximum resident set size (KB) = 514704 Test 147 datm_cdeps_mx025_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_mx025_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/datm_cdeps_mx025_gefs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_mx025_gefs +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/datm_cdeps_mx025_gefs Checking test 148 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4425,77 +4425,77 @@ Checking test 148 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 748.848306 -0:The maximum resident set size (KB) = 494816 +0:The total amount of wall time = 421.745325 +0:The maximum resident set size (KB) = 494900 Test 148 datm_cdeps_mx025_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/datm_cdeps_multiple_files_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/datm_cdeps_multiple_files_cfsr Checking test 149 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 166.990608 -0:The maximum resident set size (KB) = 716692 +0:The total amount of wall time = 167.930718 +0:The maximum resident set size (KB) = 716740 Test 149 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/datm_cdeps_3072x1536_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/datm_cdeps_3072x1536_cfsr Checking test 150 datm_cdeps_3072x1536_cfsr 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 = 256.796251 -0:The maximum resident set size (KB) = 1940352 +0:The total amount of wall time = 268.648702 +0:The maximum resident set size (KB) = 1941404 Test 150 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_gfs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/datm_cdeps_gfs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_gfs +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/datm_cdeps_gfs Checking test 151 datm_cdeps_gfs 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 = 266.340100 -0:The maximum resident set size (KB) = 1941080 +0:The total amount of wall time = 269.067076 +0:The maximum resident set size (KB) = 1939416 Test 151 datm_cdeps_gfs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_debug_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/datm_cdeps_debug_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_debug_cfsr +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/datm_cdeps_debug_cfsr Checking test 152 datm_cdeps_debug_cfsr 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 = 369.634710 -0:The maximum resident set size (KB) = 700736 +0:The total amount of wall time = 368.953988 +0:The maximum resident set size (KB) = 700612 Test 152 datm_cdeps_debug_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_control_cfsr_faster -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/datm_cdeps_control_cfsr_faster +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_cfsr_faster +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/datm_cdeps_control_cfsr_faster Checking test 153 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.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 = 168.270659 -0:The maximum resident set size (KB) = 716776 +0:The total amount of wall time = 163.543653 +0:The maximum resident set size (KB) = 716736 Test 153 datm_cdeps_control_cfsr_faster PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/datm_cdeps_lnd_gswp3 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_lnd_gswp3 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/datm_cdeps_lnd_gswp3 Checking test 154 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4504,14 +4504,14 @@ Checking test 154 datm_cdeps_lnd_gswp3 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 = 10.471315 -0:The maximum resident set size (KB) = 210104 +0:The total amount of wall time = 10.719925 +0:The maximum resident set size (KB) = 208240 Test 154 datm_cdeps_lnd_gswp3 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/datm_cdeps_lnd_gswp3_rst +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_lnd_gswp3 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/datm_cdeps_lnd_gswp3_rst Checking test 155 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4520,14 +4520,14 @@ Checking test 155 datm_cdeps_lnd_gswp3_rst 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 = 15.872628 -0:The maximum resident set size (KB) = 216416 +0:The total amount of wall time = 16.301166 +0:The maximum resident set size (KB) = 216368 Test 155 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_atmlnd_sbs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_p8_atmlnd_sbs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_atmlnd_sbs +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_p8_atmlnd_sbs Checking test 156 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4612,14 +4612,14 @@ Checking test 156 control_p8_atmlnd_sbs 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 = 224.993545 -0:The maximum resident set size (KB) = 1463244 +0:The total amount of wall time = 234.579635 +0:The maximum resident set size (KB) = 1463216 Test 156 control_p8_atmlnd_sbs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/atmwav_control_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/atmwav_control_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/atmwav_control_noaero_p8 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/atmwav_control_noaero_p8 Checking test 157 atmwav_control_noaero_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4662,14 +4662,14 @@ Checking test 157 atmwav_control_noaero_p8 results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK -0:The total amount of wall time = 100.537294 -0:The maximum resident set size (KB) = 1434620 +0:The total amount of wall time = 98.686716 +0:The maximum resident set size (KB) = 1434600 Test 157 atmwav_control_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/control_atmwav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/control_atmwav +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_atmwav +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_atmwav Checking test 158 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4713,14 +4713,14 @@ Checking test 158 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -0:The total amount of wall time = 99.686855 -0:The maximum resident set size (KB) = 475360 +0:The total amount of wall time = 101.144680 +0:The maximum resident set size (KB) = 475312 Test 158 control_atmwav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/atmaero_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/atmaero_control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/atmaero_control_p8 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/atmaero_control_p8 Checking test 159 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4764,14 +4764,14 @@ Checking test 159 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 251.374553 -0:The maximum resident set size (KB) = 2703988 +0:The total amount of wall time = 249.525744 +0:The maximum resident set size (KB) = 2703984 Test 159 atmaero_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/atmaero_control_p8_rad -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/atmaero_control_p8_rad +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/atmaero_control_p8_rad +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/atmaero_control_p8_rad Checking test 160 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4815,14 +4815,14 @@ Checking test 160 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 306.150263 -0:The maximum resident set size (KB) = 2758836 +0:The total amount of wall time = 302.020892 +0:The maximum resident set size (KB) = 2758880 Test 160 atmaero_control_p8_rad PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/atmaero_control_p8_rad_micro -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/atmaero_control_p8_rad_micro +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/atmaero_control_p8_rad_micro +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/atmaero_control_p8_rad_micro Checking test 161 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4866,14 +4866,14 @@ Checking test 161 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 305.739836 -0:The maximum resident set size (KB) = 2765668 +0:The total amount of wall time = 309.003540 +0:The maximum resident set size (KB) = 2765588 Test 161 atmaero_control_p8_rad_micro PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_atmaq -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/regional_atmaq +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_atmaq +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/regional_atmaq Checking test 162 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4889,14 +4889,14 @@ Checking test 162 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -0:The total amount of wall time = 749.188956 -0:The maximum resident set size (KB) = 999524 +0:The total amount of wall time = 760.029388 +0:The maximum resident set size (KB) = 999616 Test 162 regional_atmaq PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_atmaq_faster -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_52652/regional_atmaq_faster +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_atmaq_faster +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/regional_atmaq_faster Checking test 163 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4912,12 +4912,12 @@ Checking test 163 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -0:The total amount of wall time = 695.481777 -0:The maximum resident set size (KB) = 999708 +0:The total amount of wall time = 706.397204 +0:The maximum resident set size (KB) = 999612 Test 163 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Wed May 3 08:00:14 MDT 2023 -Elapsed time: 01h:36m:44s. Have a nice day! +Sat May 6 10:06:49 MDT 2023 +Elapsed time: 02h:20m:33s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index cbbfc9c3280..38b4fa0a0d0 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,21 +1,21 @@ -Wed May 3 12:17:31 UTC 2023 +Sun May 7 00:16:40 UTC 2023 Start Regression test -Compile 001 elapsed time 190 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 002 elapsed time 193 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 333 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 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 005 elapsed time 190 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 412 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 333 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 335 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 261 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 233 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 144 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 012 elapsed time 111 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/control_c48 +Compile 001 elapsed time 196 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 002 elapsed time 197 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 350 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 104 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 195 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 422 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 342 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 343 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 269 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 235 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 149 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 012 elapsed time 119 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/control_c48 Checking test 001 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -54,14 +54,14 @@ Checking test 001 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 688.482897 -0: The maximum resident set size (KB) = 707288 +0: The total amount of wall time = 691.612942 +0: The maximum resident set size (KB) = 703168 Test 001 control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/control_stochy +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/control_stochy Checking test 002 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -72,14 +72,14 @@ Checking test 002 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 660.985407 - 0: The maximum resident set size (KB) = 482796 + 0: The total amount of wall time = 649.314735 + 0: The maximum resident set size (KB) = 479776 Test 002 control_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/control_ras +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/control_ras +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/control_ras Checking test 003 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -90,14 +90,14 @@ Checking test 003 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 831.055424 - 0: The maximum resident set size (KB) = 486888 + 0: The total amount of wall time = 838.810404 + 0: The maximum resident set size (KB) = 490264 Test 003 control_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/control_p8 Checking test 004 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -144,14 +144,14 @@ Checking test 004 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 893.979720 - 0: The maximum resident set size (KB) = 1238152 + 0: The total amount of wall time = 887.666838 + 0: The maximum resident set size (KB) = 1235744 Test 004 control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/control_flake -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/control_flake +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/control_flake +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/control_flake Checking test 005 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -162,14 +162,14 @@ Checking test 005 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 1517.911881 - 0: The maximum resident set size (KB) = 529752 + 0: The total amount of wall time = 1504.008840 + 0: The maximum resident set size (KB) = 526192 Test 005 control_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/rap_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rap_control Checking test 006 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -216,14 +216,14 @@ Checking test 006 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1447.919170 - 0: The maximum resident set size (KB) = 832088 + 0: The total amount of wall time = 1476.299944 + 0: The maximum resident set size (KB) = 824916 Test 006 rap_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/rap_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rap_decomp Checking test 007 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -270,14 +270,14 @@ Checking test 007 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1481.147286 - 0: The maximum resident set size (KB) = 829320 + 0: The total amount of wall time = 1418.991380 + 0: The maximum resident set size (KB) = 827144 Test 007 rap_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/rap_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rap_2threads Checking test 008 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -324,14 +324,14 @@ Checking test 008 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1322.796703 - 0: The maximum resident set size (KB) = 893992 + 0: The total amount of wall time = 1324.485925 + 0: The maximum resident set size (KB) = 900040 Test 008 rap_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/rap_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rap_restart Checking test 009 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -370,14 +370,14 @@ Checking test 009 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 739.405449 - 0: The maximum resident set size (KB) = 547340 + 0: The total amount of wall time = 738.060577 + 0: The maximum resident set size (KB) = 546344 Test 009 rap_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/rap_sfcdiff +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rap_sfcdiff Checking test 010 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -424,14 +424,14 @@ Checking test 010 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1447.051493 - 0: The maximum resident set size (KB) = 827532 + 0: The total amount of wall time = 1470.399186 + 0: The maximum resident set size (KB) = 828900 Test 010 rap_sfcdiff PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/rap_sfcdiff_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rap_sfcdiff_decomp Checking test 011 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -478,14 +478,14 @@ Checking test 011 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1463.056594 - 0: The maximum resident set size (KB) = 828192 + 0: The total amount of wall time = 1446.364734 + 0: The maximum resident set size (KB) = 829240 Test 011 rap_sfcdiff_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/rap_sfcdiff_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rap_sfcdiff_restart Checking test 012 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -524,14 +524,14 @@ Checking test 012 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1102.613687 - 0: The maximum resident set size (KB) = 551428 + 0: The total amount of wall time = 1088.572288 + 0: The maximum resident set size (KB) = 550756 Test 012 rap_sfcdiff_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/hrrr_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/hrrr_control Checking test 013 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -578,14 +578,14 @@ Checking test 013 hrrr_control results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1457.879838 - 0: The maximum resident set size (KB) = 826804 + 0: The total amount of wall time = 1439.758372 + 0: The maximum resident set size (KB) = 828828 Test 013 hrrr_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/hrrr_control_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/hrrr_control_2threads Checking test 014 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -632,14 +632,14 @@ Checking test 014 hrrr_control_2threads results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1515.883001 - 0: The maximum resident set size (KB) = 897876 + 0: The total amount of wall time = 1479.540867 + 0: The maximum resident set size (KB) = 889064 Test 014 hrrr_control_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/hrrr_control_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/hrrr_control_decomp Checking test 015 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -686,28 +686,28 @@ Checking test 015 hrrr_control_decomp results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1452.034537 - 0: The maximum resident set size (KB) = 822992 + 0: The total amount of wall time = 1403.091147 + 0: The maximum resident set size (KB) = 827968 Test 015 hrrr_control_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/hrrr_control_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/hrrr_control_restart Checking test 016 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1066.766152 - 0: The maximum resident set size (KB) = 546928 + 0: The total amount of wall time = 1051.038281 + 0: The maximum resident set size (KB) = 546284 Test 016 hrrr_control_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/rrfs_v1beta +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rrfs_v1beta Checking test 017 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -754,14 +754,14 @@ Checking test 017 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1466.919686 - 0: The maximum resident set size (KB) = 822448 + 0: The total amount of wall time = 1457.722590 + 0: The maximum resident set size (KB) = 822156 Test 017 rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rrfs_smoke_conus13km_hrrr_warm Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -770,14 +770,14 @@ Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 811.409130 - 0: The maximum resident set size (KB) = 670460 + 0: The total amount of wall time = 812.446337 + 0: The maximum resident set size (KB) = 671196 Test 018 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 019 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -786,14 +786,14 @@ Checking test 019 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 1111.640750 - 0: The maximum resident set size (KB) = 670028 + 0: The total amount of wall time = 1043.920675 + 0: The maximum resident set size (KB) = 670984 Test 019 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/rrfs_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rrfs_conus13km_hrrr_warm Checking test 020 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -802,14 +802,14 @@ Checking test 020 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 782.246514 - 0: The maximum resident set size (KB) = 648016 + 0: The total amount of wall time = 794.784429 + 0: The maximum resident set size (KB) = 647152 Test 020 rrfs_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rrfs_smoke_conus13km_radar_tten_warm Checking test 021 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -818,262 +818,262 @@ Checking test 021 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 811.696104 - 0: The maximum resident set size (KB) = 676200 + 0: The total amount of wall time = 803.436551 + 0: The maximum resident set size (KB) = 668200 Test 021 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 022 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 404.652558 - 0: The maximum resident set size (KB) = 636748 + 0: The total amount of wall time = 403.273780 + 0: The maximum resident set size (KB) = 635728 Test 022 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/control_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/control_diag_debug Checking test 023 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 123.009659 - 0: The maximum resident set size (KB) = 527884 + 0: The total amount of wall time = 123.723268 + 0: The maximum resident set size (KB) = 533840 Test 023 control_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/regional_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/regional_debug Checking test 024 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 545.765652 - 0: The maximum resident set size (KB) = 594252 + 0: The total amount of wall time = 677.735811 + 0: The maximum resident set size (KB) = 594692 Test 024 regional_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/rap_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rap_control_debug Checking test 025 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 173.151219 - 0: The maximum resident set size (KB) = 842868 + 0: The total amount of wall time = 173.069544 + 0: The maximum resident set size (KB) = 848212 Test 025 rap_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/hrrr_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/hrrr_control_debug Checking test 026 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 169.709729 - 0: The maximum resident set size (KB) = 839244 + 0: The total amount of wall time = 169.229655 + 0: The maximum resident set size (KB) = 836172 Test 026 hrrr_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/rap_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rap_diag_debug Checking test 027 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 211.082518 - 0: The maximum resident set size (KB) = 920624 + 0: The total amount of wall time = 207.267207 + 0: The maximum resident set size (KB) = 922652 Test 027 rap_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rap_noah_sfcdiff_cires_ugwp_debug Checking test 028 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.422962 - 0: The maximum resident set size (KB) = 834320 + 0: The total amount of wall time = 275.617750 + 0: The maximum resident set size (KB) = 841744 Test 028 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/rap_progcld_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rap_progcld_thompson_debug Checking test 029 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 176.268615 - 0: The maximum resident set size (KB) = 839160 + 0: The total amount of wall time = 174.951614 + 0: The maximum resident set size (KB) = 844796 Test 029 rap_progcld_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/rrfs_v1beta_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rrfs_v1beta_debug Checking test 030 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 167.480004 - 0: The maximum resident set size (KB) = 842752 + 0: The total amount of wall time = 174.182619 + 0: The maximum resident set size (KB) = 847468 Test 030 rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/control_ras_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/control_ras_debug Checking test 031 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 100.083300 - 0: The maximum resident set size (KB) = 479548 + 0: The total amount of wall time = 102.098352 + 0: The maximum resident set size (KB) = 485576 Test 031 control_ras_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/control_stochy_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/control_stochy_debug Checking test 032 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 118.871010 - 0: The maximum resident set size (KB) = 472716 + 0: The total amount of wall time = 116.409955 + 0: The maximum resident set size (KB) = 478296 Test 032 control_stochy_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/control_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/control_debug_p8 Checking test 033 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 117.797480 - 0: The maximum resident set size (KB) = 1228152 + 0: The total amount of wall time = 116.384765 + 0: The maximum resident set size (KB) = 1229456 Test 033 control_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 034 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 628.513956 - 0: The maximum resident set size (KB) = 689072 + 0: The total amount of wall time = 630.934137 + 0: The maximum resident set size (KB) = 688544 Test 034 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 035 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 775.204318 - 0: The maximum resident set size (KB) = 686280 + 0: The total amount of wall time = 738.145071 + 0: The maximum resident set size (KB) = 684368 Test 035 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/rrfs_conus13km_hrrr_warm_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rrfs_conus13km_hrrr_warm_debugs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rrfs_conus13km_hrrr_warm_debug Checking test 036 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 582.720826 - 0: The maximum resident set size (KB) = 663628 + 0: The total amount of wall time = 585.768557 + 0: The maximum resident set size (KB) = 657144 Test 036 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rap_flake_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/rap_flake_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rap_flake_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rap_flake_debug Checking test 037 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 173.092776 - 0: The maximum resident set size (KB) = 841772 + 0: The total amount of wall time = 172.401634 + 0: The maximum resident set size (KB) = 852008 Test 037 rap_flake_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rap_clm_lake_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/rap_clm_lake_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rap_clm_lake_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rap_clm_lake_debug Checking test 038 rap_clm_lake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 197.679307 - 0: The maximum resident set size (KB) = 842428 + 0: The total amount of wall time = 195.179758 + 0: The maximum resident set size (KB) = 844748 Test 038 rap_clm_lake_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/control_wam_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/control_wam_debug Checking test 039 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 181.336815 - 0: The maximum resident set size (KB) = 194460 + 0: The total amount of wall time = 181.538708 + 0: The maximum resident set size (KB) = 193268 Test 039 control_wam_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/rap_control_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rap_control_dyn32_phy32 Checking test 040 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1120,14 +1120,14 @@ Checking test 040 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1487.510584 - 0: The maximum resident set size (KB) = 687164 + 0: The total amount of wall time = 1483.985617 + 0: The maximum resident set size (KB) = 680048 Test 040 rap_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/hrrr_control_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/hrrr_control_dyn32_phy32 Checking test 041 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1174,14 +1174,14 @@ Checking test 041 hrrr_control_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 734.921167 - 0: The maximum resident set size (KB) = 684736 + 0: The total amount of wall time = 733.203645 + 0: The maximum resident set size (KB) = 677748 Test 041 hrrr_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/rap_2threads_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rap_2threads_dyn32_phy32 Checking test 042 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1228,14 +1228,14 @@ Checking test 042 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1323.603505 - 0: The maximum resident set size (KB) = 734388 + 0: The total amount of wall time = 1348.846945 + 0: The maximum resident set size (KB) = 733752 Test 042 rap_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/hrrr_control_2threads_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/hrrr_control_2threads_dyn32_phy32 Checking test 043 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1282,14 +1282,14 @@ Checking test 043 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 767.171777 - 0: The maximum resident set size (KB) = 729748 + 0: The total amount of wall time = 766.729496 + 0: The maximum resident set size (KB) = 722460 Test 043 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/hrrr_control_decomp_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/hrrr_control_decomp_dyn32_phy32 Checking test 044 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1336,14 +1336,14 @@ Checking test 044 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 725.839427 - 0: The maximum resident set size (KB) = 688464 + 0: The total amount of wall time = 723.153026 + 0: The maximum resident set size (KB) = 687240 Test 044 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/rap_restart_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rap_restart_dyn32_phy32 Checking test 045 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1382,28 +1382,28 @@ Checking test 045 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1062.224580 - 0: The maximum resident set size (KB) = 506060 + 0: The total amount of wall time = 1090.360071 + 0: The maximum resident set size (KB) = 511740 Test 045 rap_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/hrrr_control_restart_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/hrrr_control_restart_dyn32_phy32 Checking test 046 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 367.108703 - 0: The maximum resident set size (KB) = 509712 + 0: The total amount of wall time = 359.523102 + 0: The maximum resident set size (KB) = 506808 Test 046 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/rap_control_dyn64_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rap_control_dyn64_phy32 Checking test 047 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1450,128 +1450,58 @@ Checking test 047 rap_control_dyn64_phy32 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 = 1078.457300 - 0: The maximum resident set size (KB) = 708404 + 0: The total amount of wall time = 1071.730803 + 0: The maximum resident set size (KB) = 707532 Test 047 rap_control_dyn64_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/rap_control_debug_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rap_control_debug_dyn32_phy32 Checking test 048 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 170.775570 - 0: The maximum resident set size (KB) = 694220 + 0: The total amount of wall time = 173.504776 + 0: The maximum resident set size (KB) = 698472 Test 048 rap_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/hrrr_control_debug_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/hrrr_control_debug_dyn32_phy32 Checking test 049 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 167.858367 - 0: The maximum resident set size (KB) = 694412 + 0: The total amount of wall time = 170.336581 + 0: The maximum resident set size (KB) = 692736 Test 049 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/rap_control_dyn64_phy32_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rap_control_debug_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rap_control_dyn64_phy32_debug Checking test 050 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 200.773534 - 0: The maximum resident set size (KB) = 713308 + 0: The total amount of wall time = 204.567054 + 0: The maximum resident set size (KB) = 714436 Test 050 rap_control_dyn64_phy32_debug PASS +Test 051 cpld_control_p8 FAIL -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/cpld_control_p8 -Checking test 051 cpld_control_p8 results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 1705.790576 - 0: The maximum resident set size (KB) = 1429012 -Test 051 cpld_control_p8 PASS Tries: 2 - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/cpld_control_nowave_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/cpld_control_c96_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/cpld_control_nowave_noaero_p8 Checking test 052 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1633,14 +1563,14 @@ Checking test 052 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 1223.230524 - 0: The maximum resident set size (KB) = 1329020 + 0: The total amount of wall time = 1225.420847 + 0: The maximum resident set size (KB) = 1334116 Test 052 cpld_control_nowave_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/cpld_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/cpld_debug_p8 Checking test 053 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1693,25 +1623,107 @@ Checking test 053 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 979.614616 - 0: The maximum resident set size (KB) = 1438488 + 0: The total amount of wall time = 945.235437 + 0: The maximum resident set size (KB) = 1437376 Test 053 cpld_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/GNU/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23785/datm_cdeps_control_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/datm_cdeps_control_cfsr Checking test 054 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 176.404769 - 0: The maximum resident set size (KB) = 666732 + 0: The total amount of wall time = 176.318780 + 0: The maximum resident set size (KB) = 662900 Test 054 datm_cdeps_control_cfsr PASS +FAILED TESTS: +Test cpld_control_p8 051 failed in run_test failed + +REGRESSION TEST FAILED +Sun May 7 07:16:26 UTC 2023 +Elapsed time: 06h:59m:47s. Have a nice day! +Sun May 7 12:08:26 UTC 2023 +Start Regression test + +Compile 001 elapsed time 271 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12317/cpld_control_p8 +Checking test 001 cpld_control_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 1759.336840 + 0: The maximum resident set size (KB) = 1429516 + +Test 001 cpld_control_p8 PASS Tries: 2 + REGRESSION TEST WAS SUCCESSFUL -Wed May 3 13:27:46 UTC 2023 -Elapsed time: 01h:10m:15s. Have a nice day! +Sun May 7 14:31:34 UTC 2023 +Elapsed time: 02h:23m:08s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 5edb955fcd0..90fb6d61e3f 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,43 +1,43 @@ -Wed May 3 12:02:42 UTC 2023 +Sat May 6 22:27:18 UTC 2023 Start Regression test -Compile 001 elapsed time 632 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 647 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 595 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 224 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 001 elapsed time 645 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 645 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 600 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 231 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON Compile 005 elapsed time 206 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 556 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 553 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 562 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 557 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON Compile 008 elapsed time 724 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 573 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 010 elapsed time 530 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 512 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 471 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 612 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 219 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 015 elapsed time 154 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 492 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 495 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 165 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 165 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 546 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 021 elapsed time 189 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 648 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 575 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 024 elapsed time 180 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 103 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 178 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 50 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 509 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 531 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 548 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 493 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 491 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 033 elapsed time 168 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 034 elapsed time 566 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8_mixedmode -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/cpld_control_p8_mixedmode +Compile 009 elapsed time 578 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 010 elapsed time 532 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 513 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 470 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 630 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 226 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 015 elapsed time 169 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 496 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 499 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 171 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 172 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 602 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 247 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 675 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 582 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 024 elapsed time 178 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 106 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 184 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 64 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 524 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 568 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 533 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 505 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 500 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 033 elapsed time 176 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 034 elapsed time 575 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8_mixedmode +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -102,14 +102,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 307.648474 - 0: The maximum resident set size (KB) = 3090808 + 0: The total amount of wall time = 316.030188 + 0: The maximum resident set size (KB) = 3134584 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_gfsv17 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/cpld_control_gfsv17 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_gfsv17 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -173,14 +173,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 224.971869 - 0: The maximum resident set size (KB) = 1712388 + 0: The total amount of wall time = 229.299897 + 0: The maximum resident set size (KB) = 1710748 Test 002 cpld_control_gfsv17 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/cpld_control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -245,14 +245,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 343.731023 - 0: The maximum resident set size (KB) = 3182256 + 0: The total amount of wall time = 344.720942 + 0: The maximum resident set size (KB) = 3160168 Test 003 cpld_control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/cpld_restart_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -305,14 +305,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 193.773702 - 0: The maximum resident set size (KB) = 3045440 + 0: The total amount of wall time = 196.781868 + 0: The maximum resident set size (KB) = 3036612 Test 004 cpld_restart_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/cpld_control_qr_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -377,14 +377,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 341.822097 - 0: The maximum resident set size (KB) = 3178292 + 0: The total amount of wall time = 363.796427 + 0: The maximum resident set size (KB) = 3173820 Test 005 cpld_control_qr_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/cpld_restart_qr_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -437,14 +437,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 199.282259 - 0: The maximum resident set size (KB) = 3052536 + 0: The total amount of wall time = 204.261175 + 0: The maximum resident set size (KB) = 3066668 Test 006 cpld_restart_qr_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/cpld_2threads_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -497,14 +497,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 351.731761 - 0: The maximum resident set size (KB) = 3502684 + 0: The total amount of wall time = 359.033644 + 0: The maximum resident set size (KB) = 3504096 Test 007 cpld_2threads_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/cpld_decomp_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -557,14 +557,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 339.640543 - 0: The maximum resident set size (KB) = 3156984 + 0: The total amount of wall time = 347.600009 + 0: The maximum resident set size (KB) = 3151644 Test 008 cpld_decomp_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/cpld_mpi_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -617,14 +617,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 280.130958 - 0: The maximum resident set size (KB) = 3012656 + 0: The total amount of wall time = 282.874009 + 0: The maximum resident set size (KB) = 3006024 Test 009 cpld_mpi_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_ciceC_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/cpld_control_ciceC_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_ciceC_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -689,14 +689,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 342.419678 - 0: The maximum resident set size (KB) = 3166256 + 0: The total amount of wall time = 350.433740 + 0: The maximum resident set size (KB) = 3146124 Test 010 cpld_control_ciceC_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/cpld_control_c192_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/cpld_control_c192_p8 Checking test 011 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -749,14 +749,14 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 590.568412 - 0: The maximum resident set size (KB) = 3215376 + 0: The total amount of wall time = 583.959711 + 0: The maximum resident set size (KB) = 3239904 Test 011 cpld_control_c192_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/cpld_restart_c192_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/cpld_restart_c192_p8 Checking test 012 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -809,14 +809,14 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 388.553001 - 0: The maximum resident set size (KB) = 3155020 + 0: The total amount of wall time = 387.630995 + 0: The maximum resident set size (KB) = 3163220 Test 012 cpld_restart_c192_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/cpld_bmark_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/cpld_bmark_p8 Checking test 013 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -864,14 +864,14 @@ Checking test 013 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 720.842416 - 0: The maximum resident set size (KB) = 4016624 + 0: The total amount of wall time = 736.936664 + 0: The maximum resident set size (KB) = 3975864 Test 013 cpld_bmark_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/cpld_restart_bmark_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/cpld_restart_bmark_p8 Checking test 014 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -919,14 +919,14 @@ Checking test 014 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 436.093589 - 0: The maximum resident set size (KB) = 3945700 + 0: The total amount of wall time = 464.445764 + 0: The maximum resident set size (KB) = 3957864 Test 014 cpld_restart_bmark_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/cpld_control_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/cpld_control_noaero_p8 Checking test 015 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -990,14 +990,14 @@ Checking test 015 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 265.041314 - 0: The maximum resident set size (KB) = 1683416 + 0: The total amount of wall time = 266.714782 + 0: The maximum resident set size (KB) = 1702236 Test 015 cpld_control_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/cpld_control_nowave_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_c96_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/cpld_control_nowave_noaero_p8 Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1059,14 +1059,14 @@ Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 258.878952 - 0: The maximum resident set size (KB) = 1749584 + 0: The total amount of wall time = 263.451496 + 0: The maximum resident set size (KB) = 1751580 Test 016 cpld_control_nowave_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/cpld_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/cpld_debug_p8 Checking test 017 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1119,14 +1119,14 @@ Checking test 017 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 531.300691 - 0: The maximum resident set size (KB) = 3233532 + 0: The total amount of wall time = 524.506699 + 0: The maximum resident set size (KB) = 3210916 Test 017 cpld_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_debug_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/cpld_debug_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_debug_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/cpld_debug_noaero_p8 Checking test 018 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1178,14 +1178,14 @@ Checking test 018 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 362.687350 - 0: The maximum resident set size (KB) = 1698588 + 0: The total amount of wall time = 357.523239 + 0: The maximum resident set size (KB) = 1714572 Test 018 cpld_debug_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_noaero_p8_agrid -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/cpld_control_noaero_p8_agrid +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_noaero_p8_agrid +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/cpld_control_noaero_p8_agrid Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1247,14 +1247,14 @@ Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 272.956283 - 0: The maximum resident set size (KB) = 1730028 + 0: The total amount of wall time = 274.078376 + 0: The maximum resident set size (KB) = 1745448 Test 019 cpld_control_noaero_p8_agrid PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/cpld_control_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_c48 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/cpld_control_c48 Checking test 020 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1304,14 +1304,14 @@ Checking test 020 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 581.960546 - 0: The maximum resident set size (KB) = 2803192 + 0: The total amount of wall time = 588.326597 + 0: The maximum resident set size (KB) = 2806248 Test 020 cpld_control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/cpld_warmstart_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_warmstart_c48 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/cpld_warmstart_c48 Checking test 021 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1361,14 +1361,14 @@ Checking test 021 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 153.862089 - 0: The maximum resident set size (KB) = 2806248 + 0: The total amount of wall time = 156.844167 + 0: The maximum resident set size (KB) = 2788828 Test 021 cpld_warmstart_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/cpld_restart_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_warmstart_c48 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/cpld_restart_c48 Checking test 022 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1418,14 +1418,14 @@ Checking test 022 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 80.298832 - 0: The maximum resident set size (KB) = 2238344 + 0: The total amount of wall time = 82.168910 + 0: The maximum resident set size (KB) = 2231568 Test 022 cpld_restart_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/cpld_control_p8_faster +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8_faster +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/cpld_control_p8_faster Checking test 023 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1490,14 +1490,14 @@ Checking test 023 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 316.710807 - 0: The maximum resident set size (KB) = 3167920 + 0: The total amount of wall time = 321.571268 + 0: The maximum resident set size (KB) = 3153472 Test 023 cpld_control_p8_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_flake -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_flake +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_flake +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_flake Checking test 024 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1508,14 +1508,14 @@ Checking test 024 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 187.535472 - 0: The maximum resident set size (KB) = 672524 + 0: The total amount of wall time = 189.114373 + 0: The maximum resident set size (KB) = 675364 Test 024 control_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_CubedSphereGrid -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_CubedSphereGrid +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_CubedSphereGrid +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_CubedSphereGrid Checking test 025 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1542,28 +1542,28 @@ Checking test 025 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 131.972452 - 0: The maximum resident set size (KB) = 626708 + 0: The total amount of wall time = 131.918610 + 0: The maximum resident set size (KB) = 628388 Test 025 control_CubedSphereGrid PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_CubedSphereGrid_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_CubedSphereGrid_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_CubedSphereGrid_parallel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_CubedSphereGrid_parallel Checking test 026 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK - 0: The total amount of wall time = 129.075077 - 0: The maximum resident set size (KB) = 608728 + 0: The total amount of wall time = 128.380662 + 0: The maximum resident set size (KB) = 632556 Test 026 control_CubedSphereGrid_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_latlon -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_latlon +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_latlon +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_latlon Checking test 027 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1574,14 +1574,14 @@ Checking test 027 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 132.946683 - 0: The maximum resident set size (KB) = 630820 + 0: The total amount of wall time = 134.376694 + 0: The maximum resident set size (KB) = 621536 Test 027 control_latlon PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_wrtGauss_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_wrtGauss_netcdf_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wrtGauss_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_wrtGauss_netcdf_parallel Checking test 028 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1592,14 +1592,14 @@ Checking test 028 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 137.161640 - 0: The maximum resident set size (KB) = 627376 + 0: The total amount of wall time = 139.499111 + 0: The maximum resident set size (KB) = 607696 Test 028 control_wrtGauss_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_c48 Checking test 029 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1638,14 +1638,14 @@ Checking test 029 control_c48 results .... Comparing 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.612335 -0: The maximum resident set size (KB) = 821028 +0: The total amount of wall time = 366.514430 +0: The maximum resident set size (KB) = 822892 Test 029 control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_c192 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c192 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_c192 Checking test 030 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1656,14 +1656,14 @@ Checking test 030 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 523.936304 - 0: The maximum resident set size (KB) = 764356 + 0: The total amount of wall time = 527.992750 + 0: The maximum resident set size (KB) = 766924 Test 030 control_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_c384 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c384 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_c384 Checking test 031 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1674,14 +1674,14 @@ Checking test 031 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 525.892630 - 0: The maximum resident set size (KB) = 1269600 + 0: The total amount of wall time = 519.102356 + 0: The maximum resident set size (KB) = 1257568 Test 031 control_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_c384gdas -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_c384gdas +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c384gdas +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_c384gdas Checking test 032 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1724,14 +1724,14 @@ Checking test 032 control_c384gdas 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 = 453.496920 - 0: The maximum resident set size (KB) = 1381788 + 0: The total amount of wall time = 457.274603 + 0: The maximum resident set size (KB) = 1376056 Test 032 control_c384gdas PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_stochy +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_stochy Checking test 033 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1742,28 +1742,28 @@ Checking test 033 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 88.607474 - 0: The maximum resident set size (KB) = 625740 + 0: The total amount of wall time = 87.619846 + 0: The maximum resident set size (KB) = 630748 Test 033 control_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_stochy_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_stochy_restart Checking test 034 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 49.649535 - 0: The maximum resident set size (KB) = 489144 + 0: The total amount of wall time = 48.757237 + 0: The maximum resident set size (KB) = 491044 Test 034 control_stochy_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_lndp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_lndp +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_lndp Checking test 035 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1774,14 +1774,14 @@ Checking test 035 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 82.891114 - 0: The maximum resident set size (KB) = 605588 + 0: The total amount of wall time = 81.436482 + 0: The maximum resident set size (KB) = 619440 Test 035 control_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_iovr4 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_iovr4 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_iovr4 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_iovr4 Checking test 036 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1796,14 +1796,14 @@ Checking test 036 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.437956 - 0: The maximum resident set size (KB) = 628124 + 0: The total amount of wall time = 136.366704 + 0: The maximum resident set size (KB) = 627192 Test 036 control_iovr4 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_iovr5 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_iovr5 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_iovr5 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_iovr5 Checking test 037 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1818,14 +1818,14 @@ Checking test 037 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.230363 - 0: The maximum resident set size (KB) = 627728 + 0: The total amount of wall time = 136.807453 + 0: The maximum resident set size (KB) = 630608 Test 037 control_iovr5 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_p8 Checking test 038 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1872,14 +1872,14 @@ Checking test 038 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 168.514275 - 0: The maximum resident set size (KB) = 1603224 + 0: The total amount of wall time = 169.861049 + 0: The maximum resident set size (KB) = 1589680 Test 038 control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_restart_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_restart_p8 Checking test 039 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1918,14 +1918,14 @@ Checking test 039 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 86.880783 - 0: The maximum resident set size (KB) = 871784 + 0: The total amount of wall time = 87.227506 + 0: The maximum resident set size (KB) = 862372 Test 039 control_restart_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_qr_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_qr_p8 Checking test 040 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1972,14 +1972,14 @@ Checking test 040 control_qr_p8 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 = 166.789355 - 0: The maximum resident set size (KB) = 1601896 + 0: The total amount of wall time = 171.376711 + 0: The maximum resident set size (KB) = 1593612 Test 040 control_qr_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_restart_qr_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_restart_qr_p8 Checking test 041 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2018,14 +2018,14 @@ Checking test 041 control_restart_qr_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 88.826111 - 0: The maximum resident set size (KB) = 864204 + 0: The total amount of wall time = 90.472501 + 0: The maximum resident set size (KB) = 859124 Test 041 control_restart_qr_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_decomp_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_decomp_p8 Checking test 042 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2068,14 +2068,14 @@ Checking test 042 control_decomp_p8 results .... Comparing 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.635220 - 0: The maximum resident set size (KB) = 1580548 + 0: The total amount of wall time = 177.751023 + 0: The maximum resident set size (KB) = 1569164 Test 042 control_decomp_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_2threads_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_2threads_p8 Checking test 043 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2118,14 +2118,14 @@ Checking test 043 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 156.098772 - 0: The maximum resident set size (KB) = 1689144 + 0: The total amount of wall time = 161.494115 + 0: The maximum resident set size (KB) = 1658144 Test 043 control_2threads_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_p8_lndp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_lndp +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_p8_lndp Checking test 044 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2144,14 +2144,14 @@ Checking test 044 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 317.307575 - 0: The maximum resident set size (KB) = 1598176 + 0: The total amount of wall time = 316.334324 + 0: The maximum resident set size (KB) = 1592908 Test 044 control_p8_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_p8_rrtmgp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_p8_rrtmgp Checking test 045 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2198,14 +2198,14 @@ Checking test 045 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 222.500048 - 0: The maximum resident set size (KB) = 1670716 + 0: The total amount of wall time = 227.549991 + 0: The maximum resident set size (KB) = 1658784 Test 045 control_p8_rrtmgp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_mynn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_p8_mynn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_mynn +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_p8_mynn Checking test 046 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2252,14 +2252,14 @@ Checking test 046 control_p8_mynn results .... Comparing 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.795304 - 0: The maximum resident set size (KB) = 1598128 + 0: The total amount of wall time = 172.591899 + 0: The maximum resident set size (KB) = 1597172 Test 046 control_p8_mynn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/merra2_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/merra2_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/merra2_thompson +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/merra2_thompson Checking test 047 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2306,14 +2306,14 @@ Checking test 047 merra2_thompson results .... Comparing 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.319169 - 0: The maximum resident set size (KB) = 1601324 + 0: The total amount of wall time = 193.997270 + 0: The maximum resident set size (KB) = 1601328 Test 047 merra2_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/regional_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/regional_control Checking test 048 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2324,28 +2324,28 @@ Checking test 048 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 301.159301 - 0: The maximum resident set size (KB) = 829312 + 0: The total amount of wall time = 298.298418 + 0: The maximum resident set size (KB) = 864704 Test 048 regional_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/regional_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/regional_restart Checking test 049 regional_restart 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.923082 - 0: The maximum resident set size (KB) = 857872 + 0: The total amount of wall time = 150.673233 + 0: The maximum resident set size (KB) = 859896 Test 049 regional_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/regional_control_qr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/regional_control_qr Checking test 050 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2356,28 +2356,28 @@ Checking test 050 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 297.408324 - 0: The maximum resident set size (KB) = 865852 + 0: The total amount of wall time = 298.548434 + 0: The maximum resident set size (KB) = 868092 Test 050 regional_control_qr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/regional_restart_qr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/regional_restart_qr Checking test 051 regional_restart_qr 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.515022 - 0: The maximum resident set size (KB) = 859800 + 0: The total amount of wall time = 151.565996 + 0: The maximum resident set size (KB) = 857592 Test 051 regional_restart_qr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/regional_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/regional_decomp Checking test 052 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2388,14 +2388,14 @@ Checking test 052 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 313.083626 - 0: The maximum resident set size (KB) = 859864 + 0: The total amount of wall time = 312.842080 + 0: The maximum resident set size (KB) = 856248 Test 052 regional_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/regional_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/regional_2threads Checking test 053 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2406,14 +2406,14 @@ Checking test 053 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 181.680007 - 0: The maximum resident set size (KB) = 852000 + 0: The total amount of wall time = 178.871543 + 0: The maximum resident set size (KB) = 846636 Test 053 regional_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_noquilt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/regional_noquilt +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_noquilt +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/regional_noquilt Checking test 054 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2421,28 +2421,28 @@ Checking test 054 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 321.393397 - 0: The maximum resident set size (KB) = 852924 + 0: The total amount of wall time = 319.013248 + 0: The maximum resident set size (KB) = 852916 Test 054 regional_noquilt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/regional_netcdf_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/regional_netcdf_parallel Checking test 055 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 293.594767 - 0: The maximum resident set size (KB) = 860596 + 0: The total amount of wall time = 294.682215 + 0: The maximum resident set size (KB) = 865484 Test 055 regional_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/regional_2dwrtdecomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/regional_2dwrtdecomp Checking test 056 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2453,14 +2453,14 @@ Checking test 056 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 297.430988 - 0: The maximum resident set size (KB) = 862760 + 0: The total amount of wall time = 299.267721 + 0: The maximum resident set size (KB) = 863724 Test 056 regional_2dwrtdecomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/fv3_regional_wofs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/regional_wofs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/fv3_regional_wofs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/regional_wofs Checking test 057 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2471,14 +2471,14 @@ Checking test 057 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 376.245712 - 0: The maximum resident set size (KB) = 599132 + 0: The total amount of wall time = 375.204879 + 0: The maximum resident set size (KB) = 628896 Test 057 regional_wofs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/rap_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rap_control Checking test 058 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2525,14 +2525,14 @@ Checking test 058 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 461.446163 - 0: The maximum resident set size (KB) = 1054488 + 0: The total amount of wall time = 459.901336 + 0: The maximum resident set size (KB) = 1058020 Test 058 rap_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_spp_sppt_shum_skeb -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/regional_spp_sppt_shum_skeb +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_spp_sppt_shum_skeb +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/regional_spp_sppt_shum_skeb Checking test 059 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2543,14 +2543,14 @@ Checking test 059 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 243.046144 - 0: The maximum resident set size (KB) = 1176532 + 0: The total amount of wall time = 236.409291 + 0: The maximum resident set size (KB) = 1176844 Test 059 regional_spp_sppt_shum_skeb PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/rap_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rap_decomp Checking test 060 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2597,14 +2597,14 @@ Checking test 060 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 479.788065 - 0: The maximum resident set size (KB) = 992208 + 0: The total amount of wall time = 480.693671 + 0: The maximum resident set size (KB) = 997864 Test 060 rap_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/rap_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rap_2threads Checking test 061 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2651,14 +2651,14 @@ Checking test 061 rap_2threads results .... Comparing 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.009635 - 0: The maximum resident set size (KB) = 1134424 + 0: The total amount of wall time = 434.737426 + 0: The maximum resident set size (KB) = 1138280 Test 061 rap_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/rap_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rap_restart Checking test 062 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2697,14 +2697,14 @@ Checking test 062 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 236.332303 - 0: The maximum resident set size (KB) = 973332 + 0: The total amount of wall time = 232.553469 + 0: The maximum resident set size (KB) = 963572 Test 062 rap_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/rap_sfcdiff +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rap_sfcdiff Checking test 063 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2751,14 +2751,14 @@ Checking test 063 rap_sfcdiff results .... Comparing 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.197843 - 0: The maximum resident set size (KB) = 1052340 + 0: The total amount of wall time = 459.365325 + 0: The maximum resident set size (KB) = 1059128 Test 063 rap_sfcdiff PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/rap_sfcdiff_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rap_sfcdiff_decomp Checking test 064 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2805,14 +2805,14 @@ Checking test 064 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 488.030804 - 0: The maximum resident set size (KB) = 993696 + 0: The total amount of wall time = 485.636585 + 0: The maximum resident set size (KB) = 967740 Test 064 rap_sfcdiff_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/rap_sfcdiff_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rap_sfcdiff_restart Checking test 065 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2851,14 +2851,14 @@ Checking test 065 rap_sfcdiff_restart results .... Comparing 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.325046 - 0: The maximum resident set size (KB) = 983892 + 0: The total amount of wall time = 344.468160 + 0: The maximum resident set size (KB) = 984276 Test 065 rap_sfcdiff_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/hrrr_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hrrr_control Checking test 066 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2905,14 +2905,14 @@ Checking test 066 hrrr_control results .... Comparing 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.178818 - 0: The maximum resident set size (KB) = 1050776 + 0: The total amount of wall time = 430.284503 + 0: The maximum resident set size (KB) = 1048308 Test 066 hrrr_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/hrrr_control_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hrrr_control_decomp Checking test 067 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2959,14 +2959,14 @@ Checking test 067 hrrr_control_decomp results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 452.427454 - 0: The maximum resident set size (KB) = 999752 + 0: The total amount of wall time = 446.816368 + 0: The maximum resident set size (KB) = 994000 Test 067 hrrr_control_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/hrrr_control_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hrrr_control_2threads Checking test 068 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3013,28 +3013,28 @@ Checking test 068 hrrr_control_2threads results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 394.954580 - 0: The maximum resident set size (KB) = 1075020 + 0: The total amount of wall time = 396.814767 + 0: The maximum resident set size (KB) = 1069532 Test 068 hrrr_control_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/hrrr_control_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hrrr_control_restart Checking test 069 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 319.547376 - 0: The maximum resident set size (KB) = 977744 + 0: The total amount of wall time = 318.785043 + 0: The maximum resident set size (KB) = 972980 Test 069 hrrr_control_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/rrfs_v1beta +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rrfs_v1beta Checking test 070 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3081,14 +3081,14 @@ Checking test 070 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 459.186844 - 0: The maximum resident set size (KB) = 1053468 + 0: The total amount of wall time = 460.236135 + 0: The maximum resident set size (KB) = 1051204 Test 070 rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_v1nssl -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/rrfs_v1nssl +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1nssl +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rrfs_v1nssl Checking test 071 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3103,14 +3103,14 @@ Checking test 071 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 535.281121 - 0: The maximum resident set size (KB) = 691124 + 0: The total amount of wall time = 541.354527 + 0: The maximum resident set size (KB) = 687248 Test 071 rrfs_v1nssl PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/rrfs_v1nssl_nohailnoccn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rrfs_v1nssl_nohailnoccn Checking test 072 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3125,14 +3125,14 @@ Checking test 072 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 522.279539 - 0: The maximum resident set size (KB) = 753268 + 0: The total amount of wall time = 525.662132 + 0: The maximum resident set size (KB) = 749976 Test 072 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rrfs_smoke_conus13km_hrrr_warm Checking test 073 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3141,14 +3141,14 @@ Checking test 073 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 149.535568 - 0: The maximum resident set size (KB) = 994916 + 0: The total amount of wall time = 151.071250 + 0: The maximum resident set size (KB) = 1023100 Test 073 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 074 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3157,14 +3157,14 @@ Checking test 074 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 91.394464 - 0: The maximum resident set size (KB) = 938056 + 0: The total amount of wall time = 90.746776 + 0: The maximum resident set size (KB) = 940984 Test 074 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/rrfs_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rrfs_conus13km_hrrr_warm Checking test 075 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3173,14 +3173,14 @@ Checking test 075 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 130.951290 - 0: The maximum resident set size (KB) = 984672 + 0: The total amount of wall time = 134.099306 + 0: The maximum resident set size (KB) = 984424 Test 075 rrfs_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rrfs_smoke_conus13km_radar_tten_warm Checking test 076 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3189,26 +3189,26 @@ Checking test 076 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 148.845145 - 0: The maximum resident set size (KB) = 1036780 + 0: The total amount of wall time = 150.957414 + 0: The maximum resident set size (KB) = 1029524 Test 076 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 077 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 70.393327 - 0: The maximum resident set size (KB) = 970004 + 0: The total amount of wall time = 73.418916 + 0: The maximum resident set size (KB) = 977244 Test 077 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_csawmg -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_csawmg +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmg +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_csawmg Checking test 078 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3219,14 +3219,14 @@ Checking test 078 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 341.307233 - 0: The maximum resident set size (KB) = 721192 + 0: The total amount of wall time = 347.002165 + 0: The maximum resident set size (KB) = 723644 Test 078 control_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_csawmgt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_csawmgt +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmgt +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_csawmgt Checking test 079 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3237,14 +3237,14 @@ Checking test 079 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 338.533872 - 0: The maximum resident set size (KB) = 723560 + 0: The total amount of wall time = 343.072232 + 0: The maximum resident set size (KB) = 720404 Test 079 control_csawmgt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_ras +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_ras +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_ras Checking test 080 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3255,26 +3255,26 @@ Checking test 080 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 182.268747 - 0: The maximum resident set size (KB) = 724824 + 0: The total amount of wall time = 183.356188 + 0: The maximum resident set size (KB) = 720228 Test 080 control_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_wam -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_wam +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wam +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_wam Checking test 081 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 112.798220 - 0: The maximum resident set size (KB) = 646768 + 0: The total amount of wall time = 114.212275 + 0: The maximum resident set size (KB) = 642732 Test 081 control_wam PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_p8_faster +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_faster +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_p8_faster Checking test 082 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3321,14 +3321,14 @@ Checking test 082 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 152.874493 - 0: The maximum resident set size (KB) = 1598192 + 0: The total amount of wall time = 156.236405 + 0: The maximum resident set size (KB) = 1597528 Test 082 control_p8_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/regional_control_faster +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control_faster +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/regional_control_faster Checking test 083 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3339,56 +3339,56 @@ Checking test 083 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 272.009295 - 0: The maximum resident set size (KB) = 869672 + 0: The total amount of wall time = 273.206661 + 0: The maximum resident set size (KB) = 866544 Test 083 regional_control_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 084 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 832.149933 - 0: The maximum resident set size (KB) = 1057260 + 0: The total amount of wall time = 843.816497 + 0: The maximum resident set size (KB) = 1028356 Test 084 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 085 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 478.236752 - 0: The maximum resident set size (KB) = 977148 + 0: The total amount of wall time = 459.206651 + 0: The maximum resident set size (KB) = 973068 Test 085 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/rrfs_conus13km_hrrr_warm_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rrfs_conus13km_hrrr_warm_debug Checking test 086 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 737.868597 - 0: The maximum resident set size (KB) = 1008900 + 0: The total amount of wall time = 743.716435 + 0: The maximum resident set size (KB) = 1009980 Test 086 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_CubedSphereGrid_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_CubedSphereGrid_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_CubedSphereGrid_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_CubedSphereGrid_debug Checking test 087 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3415,348 +3415,348 @@ Checking test 087 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 143.864729 - 0: The maximum resident set size (KB) = 785280 + 0: The total amount of wall time = 145.501912 + 0: The maximum resident set size (KB) = 786020 Test 087 control_CubedSphereGrid_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_wrtGauss_netcdf_parallel_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_wrtGauss_netcdf_parallel_debug Checking test 088 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 145.300921 - 0: The maximum resident set size (KB) = 793768 + 0: The total amount of wall time = 146.861774 + 0: The maximum resident set size (KB) = 789404 Test 088 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_stochy_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_stochy_debug Checking test 089 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 164.674166 - 0: The maximum resident set size (KB) = 793348 + 0: The total amount of wall time = 165.279633 + 0: The maximum resident set size (KB) = 795728 Test 089 control_stochy_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_lndp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_lndp_debug Checking test 090 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 145.439686 - 0: The maximum resident set size (KB) = 787148 + 0: The total amount of wall time = 147.255077 + 0: The maximum resident set size (KB) = 795936 Test 090 control_lndp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_csawmg_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_csawmg_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmg_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_csawmg_debug Checking test 091 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 227.587786 - 0: The maximum resident set size (KB) = 836288 + 0: The total amount of wall time = 225.334740 + 0: The maximum resident set size (KB) = 842656 Test 091 control_csawmg_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_csawmgt_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_csawmgt_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmgt_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_csawmgt_debug Checking test 092 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 219.168377 - 0: The maximum resident set size (KB) = 837328 + 0: The total amount of wall time = 225.065102 + 0: The maximum resident set size (KB) = 836344 Test 092 control_csawmgt_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_ras_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_ras_debug Checking test 093 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 147.189512 - 0: The maximum resident set size (KB) = 804304 + 0: The total amount of wall time = 149.592536 + 0: The maximum resident set size (KB) = 801956 Test 093 control_ras_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_diag_debug Checking test 094 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 147.635381 - 0: The maximum resident set size (KB) = 843096 + 0: The total amount of wall time = 153.143316 + 0: The maximum resident set size (KB) = 847492 Test 094 control_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_debug_p8 Checking test 095 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 162.794174 - 0: The maximum resident set size (KB) = 1614896 + 0: The total amount of wall time = 164.215539 + 0: The maximum resident set size (KB) = 1616336 Test 095 control_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/regional_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/regional_debug Checking test 096 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 961.766461 - 0: The maximum resident set size (KB) = 872640 + 0: The total amount of wall time = 971.646024 + 0: The maximum resident set size (KB) = 882352 Test 096 regional_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/rap_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rap_control_debug Checking test 097 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 272.478168 - 0: The maximum resident set size (KB) = 1168100 + 0: The total amount of wall time = 269.233461 + 0: The maximum resident set size (KB) = 1161664 Test 097 rap_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/hrrr_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hrrr_control_debug Checking test 098 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 268.477807 - 0: The maximum resident set size (KB) = 1163032 + 0: The total amount of wall time = 258.735726 + 0: The maximum resident set size (KB) = 1169020 Test 098 hrrr_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/rap_unified_drag_suite_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rap_unified_drag_suite_debug Checking test 099 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.992002 - 0: The maximum resident set size (KB) = 1164820 + 0: The total amount of wall time = 276.190457 + 0: The maximum resident set size (KB) = 1166172 Test 099 rap_unified_drag_suite_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/rap_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rap_diag_debug Checking test 100 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.065165 - 0: The maximum resident set size (KB) = 1247932 + 0: The total amount of wall time = 284.684578 + 0: The maximum resident set size (KB) = 1254856 Test 100 rap_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/rap_cires_ugwp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rap_cires_ugwp_debug Checking test 101 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.423785 - 0: The maximum resident set size (KB) = 1160544 + 0: The total amount of wall time = 275.340341 + 0: The maximum resident set size (KB) = 1170132 Test 101 rap_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/rap_unified_ugwp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rap_unified_ugwp_debug Checking test 102 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.195559 - 0: The maximum resident set size (KB) = 1166704 + 0: The total amount of wall time = 276.609439 + 0: The maximum resident set size (KB) = 1166984 Test 102 rap_unified_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/rap_lndp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rap_lndp_debug Checking test 103 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.107549 - 0: The maximum resident set size (KB) = 1165616 + 0: The total amount of wall time = 271.418390 + 0: The maximum resident set size (KB) = 1171932 Test 103 rap_lndp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/rap_progcld_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rap_progcld_thompson_debug Checking test 104 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 270.369563 - 0: The maximum resident set size (KB) = 1170572 + 0: The total amount of wall time = 266.486419 + 0: The maximum resident set size (KB) = 1170236 Test 104 rap_progcld_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_noah_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/rap_noah_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_noah_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rap_noah_debug Checking test 105 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 267.572985 - 0: The maximum resident set size (KB) = 1161684 + 0: The total amount of wall time = 266.806004 + 0: The maximum resident set size (KB) = 1163896 Test 105 rap_noah_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_sfcdiff_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/rap_sfcdiff_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rap_sfcdiff_debug Checking test 106 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.710490 - 0: The maximum resident set size (KB) = 1164616 + 0: The total amount of wall time = 275.152949 + 0: The maximum resident set size (KB) = 1167752 Test 106 rap_sfcdiff_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rap_noah_sfcdiff_cires_ugwp_debug Checking test 107 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 445.662559 - 0: The maximum resident set size (KB) = 1146764 + 0: The total amount of wall time = 446.801909 + 0: The maximum resident set size (KB) = 1164384 Test 107 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/rrfs_v1beta_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rrfs_v1beta_debug Checking test 108 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 270.850382 - 0: The maximum resident set size (KB) = 1158796 + 0: The total amount of wall time = 271.700757 + 0: The maximum resident set size (KB) = 1157240 Test 108 rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_clm_lake_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/rap_clm_lake_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_clm_lake_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rap_clm_lake_debug Checking test 109 rap_clm_lake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 335.449062 - 0: The maximum resident set size (KB) = 1146976 + 0: The total amount of wall time = 329.099858 + 0: The maximum resident set size (KB) = 1168656 Test 109 rap_clm_lake_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_flake_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/rap_flake_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_flake_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rap_flake_debug Checking test 110 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.632175 - 0: The maximum resident set size (KB) = 1168564 + 0: The total amount of wall time = 273.349411 + 0: The maximum resident set size (KB) = 1165956 Test 110 rap_flake_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_wam_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_wam_debug Checking test 111 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 271.369969 - 0: The maximum resident set size (KB) = 515120 + 0: The total amount of wall time = 274.652738 + 0: The maximum resident set size (KB) = 517376 Test 111 control_wam_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 112 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3767,14 +3767,14 @@ Checking test 112 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 217.604529 - 0: The maximum resident set size (KB) = 1039868 + 0: The total amount of wall time = 218.819864 + 0: The maximum resident set size (KB) = 1067320 Test 112 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/rap_control_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rap_control_dyn32_phy32 Checking test 113 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3821,14 +3821,14 @@ Checking test 113 rap_control_dyn32_phy32 results .... Comparing 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.675439 - 0: The maximum resident set size (KB) = 1003144 + 0: The total amount of wall time = 383.398944 + 0: The maximum resident set size (KB) = 1000548 Test 113 rap_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/hrrr_control_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hrrr_control_dyn32_phy32 Checking test 114 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3875,14 +3875,14 @@ Checking test 114 hrrr_control_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 191.690737 - 0: The maximum resident set size (KB) = 946560 + 0: The total amount of wall time = 190.729947 + 0: The maximum resident set size (KB) = 954360 Test 114 hrrr_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/rap_2threads_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rap_2threads_dyn32_phy32 Checking test 115 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3929,14 +3929,14 @@ Checking test 115 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 364.196544 - 0: The maximum resident set size (KB) = 1018824 + 0: The total amount of wall time = 364.805529 + 0: The maximum resident set size (KB) = 1017212 Test 115 rap_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/hrrr_control_2threads_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hrrr_control_2threads_dyn32_phy32 Checking test 116 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3983,14 +3983,14 @@ Checking test 116 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 176.113771 - 0: The maximum resident set size (KB) = 924184 + 0: The total amount of wall time = 178.711789 + 0: The maximum resident set size (KB) = 924708 Test 116 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/hrrr_control_decomp_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hrrr_control_decomp_dyn32_phy32 Checking test 117 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4037,14 +4037,14 @@ Checking test 117 hrrr_control_decomp_dyn32_phy32 results .... Comparing 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.280653 - 0: The maximum resident set size (KB) = 893360 + 0: The total amount of wall time = 202.546427 + 0: The maximum resident set size (KB) = 890920 Test 117 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/rap_restart_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rap_restart_dyn32_phy32 Checking test 118 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4083,28 +4083,28 @@ Checking test 118 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 282.409207 - 0: The maximum resident set size (KB) = 926556 + 0: The total amount of wall time = 285.105642 + 0: The maximum resident set size (KB) = 945252 Test 118 rap_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/hrrr_control_restart_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hrrr_control_restart_dyn32_phy32 Checking test 119 hrrr_control_restart_dyn32_phy32 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.513674 - 0: The maximum resident set size (KB) = 860344 + 0: The total amount of wall time = 99.984244 + 0: The maximum resident set size (KB) = 859356 Test 119 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/rap_control_dyn64_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rap_control_dyn64_phy32 Checking test 120 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4151,81 +4151,81 @@ Checking test 120 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 246.904465 - 0: The maximum resident set size (KB) = 960892 + 0: The total amount of wall time = 247.280544 + 0: The maximum resident set size (KB) = 956992 Test 120 rap_control_dyn64_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/rap_control_debug_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rap_control_debug_dyn32_phy32 Checking test 121 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 261.821324 - 0: The maximum resident set size (KB) = 1054440 + 0: The total amount of wall time = 268.225733 + 0: The maximum resident set size (KB) = 1057100 Test 121 rap_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/hrrr_control_debug_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hrrr_control_debug_dyn32_phy32 Checking test 122 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 264.515157 - 0: The maximum resident set size (KB) = 1050884 + 0: The total amount of wall time = 257.838533 + 0: The maximum resident set size (KB) = 1051200 Test 122 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/rap_control_dyn64_phy32_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rap_control_dyn64_phy32_debug Checking test 123 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.705454 - 0: The maximum resident set size (KB) = 1093232 + 0: The total amount of wall time = 273.172790 + 0: The maximum resident set size (KB) = 1062104 Test 123 rap_control_dyn64_phy32_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/hafs_regional_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hafs_regional_atm Checking test 124 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 235.884294 - 0: The maximum resident set size (KB) = 1038716 + 0: The total amount of wall time = 234.895265 + 0: The maximum resident set size (KB) = 1051256 Test 124 hafs_regional_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/hafs_regional_atm_thompson_gfdlsf +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hafs_regional_atm_thompson_gfdlsf Checking test 125 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 323.776287 - 0: The maximum resident set size (KB) = 1403272 + 0: The total amount of wall time = 320.191891 + 0: The maximum resident set size (KB) = 1415096 Test 125 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/hafs_regional_atm_ocn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hafs_regional_atm_ocn Checking test 126 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4234,14 +4234,14 @@ Checking test 126 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 379.636878 - 0: The maximum resident set size (KB) = 1223424 + 0: The total amount of wall time = 377.785986 + 0: The maximum resident set size (KB) = 1227920 Test 126 hafs_regional_atm_ocn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/hafs_regional_atm_wav +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_wav +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hafs_regional_atm_wav Checking test 127 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4250,14 +4250,14 @@ Checking test 127 hafs_regional_atm_wav 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 = 740.061884 - 0: The maximum resident set size (KB) = 1249812 + 0: The total amount of wall time = 746.663158 + 0: The maximum resident set size (KB) = 1221788 Test 127 hafs_regional_atm_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/hafs_regional_atm_ocn_wav +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hafs_regional_atm_ocn_wav Checking test 128 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4268,28 +4268,28 @@ Checking test 128 hafs_regional_atm_ocn_wav 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 = 838.417342 - 0: The maximum resident set size (KB) = 1271212 + 0: The total amount of wall time = 845.179442 + 0: The maximum resident set size (KB) = 1273348 Test 128 hafs_regional_atm_ocn_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/hafs_regional_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hafs_regional_1nest_atm Checking test 129 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 316.135725 - 0: The maximum resident set size (KB) = 502348 + 0: The total amount of wall time = 318.391777 + 0: The maximum resident set size (KB) = 502604 Test 129 hafs_regional_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/hafs_regional_telescopic_2nests_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hafs_regional_telescopic_2nests_atm Checking test 130 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4298,28 +4298,28 @@ Checking test 130 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 365.406886 - 0: The maximum resident set size (KB) = 486464 + 0: The total amount of wall time = 365.642637 + 0: The maximum resident set size (KB) = 509916 Test 130 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_global_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/hafs_global_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_global_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hafs_global_1nest_atm Checking test 131 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 153.857349 - 0: The maximum resident set size (KB) = 347508 + 0: The total amount of wall time = 145.568114 + 0: The maximum resident set size (KB) = 348880 Test 131 hafs_global_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_global_multiple_4nests_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/hafs_global_multiple_4nests_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_global_multiple_4nests_atm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hafs_global_multiple_4nests_atm Checking test 132 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4337,14 +4337,14 @@ Checking test 132 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 411.207520 - 0: The maximum resident set size (KB) = 450836 + 0: The total amount of wall time = 415.228383 + 0: The maximum resident set size (KB) = 450384 Test 132 hafs_global_multiple_4nests_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/hafs_regional_specified_moving_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hafs_regional_specified_moving_1nest_atm Checking test 133 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4353,28 +4353,28 @@ Checking test 133 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 202.990582 - 0: The maximum resident set size (KB) = 519152 + 0: The total amount of wall time = 202.100103 + 0: The maximum resident set size (KB) = 520872 Test 133 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/hafs_regional_storm_following_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hafs_regional_storm_following_1nest_atm Checking test 134 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 192.596759 - 0: The maximum resident set size (KB) = 518952 + 0: The total amount of wall time = 192.933637 + 0: The maximum resident set size (KB) = 518288 Test 134 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hafs_regional_storm_following_1nest_atm_ocn Checking test 135 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4383,42 +4383,42 @@ Checking test 135 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 221.216783 - 0: The maximum resident set size (KB) = 559584 + 0: The total amount of wall time = 224.171361 + 0: The maximum resident set size (KB) = 561276 Test 135 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_global_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/hafs_global_storm_following_1nest_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_global_storm_following_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hafs_global_storm_following_1nest_atm Checking test 136 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 57.386100 - 0: The maximum resident set size (KB) = 366224 + 0: The total amount of wall time = 58.088904 + 0: The maximum resident set size (KB) = 370812 Test 136 hafs_global_storm_following_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 137 hafs_regional_storm_following_1nest_atm_ocn_debug 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.441910 - 0: The maximum resident set size (KB) = 582708 + 0: The total amount of wall time = 710.846789 + 0: The maximum resident set size (KB) = 581456 Test 137 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 138 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4429,14 +4429,14 @@ Checking test 138 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 481.272017 - 0: The maximum resident set size (KB) = 619368 + 0: The total amount of wall time = 480.993614 + 0: The maximum resident set size (KB) = 617900 Test 138 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_docn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/hafs_regional_docn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_docn +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hafs_regional_docn Checking test 139 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4444,14 +4444,14 @@ Checking test 139 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 355.526439 - 0: The maximum resident set size (KB) = 1222268 + 0: The total amount of wall time = 357.807955 + 0: The maximum resident set size (KB) = 1235016 Test 139 hafs_regional_docn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_docn_oisst -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/hafs_regional_docn_oisst +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_docn_oisst +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hafs_regional_docn_oisst Checking test 140 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4459,131 +4459,131 @@ Checking test 140 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 361.853298 - 0: The maximum resident set size (KB) = 1211528 + 0: The total amount of wall time = 358.568212 + 0: The maximum resident set size (KB) = 1217064 Test 140 hafs_regional_docn_oisst PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_datm_cdeps -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/hafs_regional_datm_cdeps +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_datm_cdeps +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hafs_regional_datm_cdeps Checking test 141 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 954.709863 - 0: The maximum resident set size (KB) = 1036544 + 0: The total amount of wall time = 951.852748 + 0: The maximum resident set size (KB) = 1036716 Test 141 hafs_regional_datm_cdeps PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/datm_cdeps_control_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/datm_cdeps_control_cfsr Checking test 142 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 153.893257 - 0: The maximum resident set size (KB) = 1081988 + 0: The total amount of wall time = 157.197818 + 0: The maximum resident set size (KB) = 1059736 Test 142 datm_cdeps_control_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/datm_cdeps_restart_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/datm_cdeps_restart_cfsr Checking test 143 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 91.855099 - 0: The maximum resident set size (KB) = 1012504 + 0: The total amount of wall time = 95.211874 + 0: The maximum resident set size (KB) = 1007512 Test 143 datm_cdeps_restart_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/datm_cdeps_control_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/datm_cdeps_control_gefs Checking test 144 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 151.289350 - 0: The maximum resident set size (KB) = 970700 + 0: The total amount of wall time = 153.008663 + 0: The maximum resident set size (KB) = 964348 Test 144 datm_cdeps_control_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_iau_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/datm_cdeps_iau_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_iau_gefs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/datm_cdeps_iau_gefs Checking test 145 datm_cdeps_iau_gefs 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 = 154.005783 - 0: The maximum resident set size (KB) = 959800 + 0: The total amount of wall time = 153.685467 + 0: The maximum resident set size (KB) = 961332 Test 145 datm_cdeps_iau_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_stochy_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/datm_cdeps_stochy_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_stochy_gefs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/datm_cdeps_stochy_gefs Checking test 146 datm_cdeps_stochy_gefs 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 = 152.345540 - 0: The maximum resident set size (KB) = 973360 + 0: The total amount of wall time = 152.669300 + 0: The maximum resident set size (KB) = 964044 Test 146 datm_cdeps_stochy_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_ciceC_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/datm_cdeps_ciceC_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_ciceC_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/datm_cdeps_ciceC_cfsr Checking test 147 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 156.703635 - 0: The maximum resident set size (KB) = 1062776 + 0: The total amount of wall time = 158.258610 + 0: The maximum resident set size (KB) = 1055764 Test 147 datm_cdeps_ciceC_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/datm_cdeps_bulk_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/datm_cdeps_bulk_cfsr Checking test 148 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 155.116105 - 0: The maximum resident set size (KB) = 1064372 + 0: The total amount of wall time = 157.883028 + 0: The maximum resident set size (KB) = 1056736 Test 148 datm_cdeps_bulk_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/datm_cdeps_bulk_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/datm_cdeps_bulk_gefs Checking test 149 datm_cdeps_bulk_gefs 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.200451 - 0: The maximum resident set size (KB) = 961028 + 0: The total amount of wall time = 151.564626 + 0: The maximum resident set size (KB) = 965012 Test 149 datm_cdeps_bulk_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/datm_cdeps_mx025_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/datm_cdeps_mx025_cfsr Checking test 150 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4592,14 +4592,14 @@ Checking test 150 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 408.173498 - 0: The maximum resident set size (KB) = 886596 + 0: The total amount of wall time = 416.095646 + 0: The maximum resident set size (KB) = 871376 Test 150 datm_cdeps_mx025_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/datm_cdeps_mx025_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/datm_cdeps_mx025_gefs Checking test 151 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4608,77 +4608,77 @@ Checking test 151 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 401.865329 - 0: The maximum resident set size (KB) = 912668 + 0: The total amount of wall time = 411.162821 + 0: The maximum resident set size (KB) = 933668 Test 151 datm_cdeps_mx025_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/datm_cdeps_multiple_files_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/datm_cdeps_multiple_files_cfsr Checking test 152 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 156.211145 - 0: The maximum resident set size (KB) = 1057000 + 0: The total amount of wall time = 157.334330 + 0: The maximum resident set size (KB) = 1059956 Test 152 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/datm_cdeps_3072x1536_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/datm_cdeps_3072x1536_cfsr Checking test 153 datm_cdeps_3072x1536_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 222.246432 - 0: The maximum resident set size (KB) = 2368976 + 0: The total amount of wall time = 217.989566 + 0: The maximum resident set size (KB) = 2370168 Test 153 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_gfs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/datm_cdeps_gfs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_gfs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/datm_cdeps_gfs Checking test 154 datm_cdeps_gfs results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 221.867738 - 0: The maximum resident set size (KB) = 2368408 + 0: The total amount of wall time = 229.116823 + 0: The maximum resident set size (KB) = 2355920 Test 154 datm_cdeps_gfs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/datm_cdeps_debug_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/datm_cdeps_debug_cfsr Checking test 155 datm_cdeps_debug_cfsr results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 357.729165 - 0: The maximum resident set size (KB) = 985568 + 0: The total amount of wall time = 357.368363 + 0: The maximum resident set size (KB) = 977352 Test 155 datm_cdeps_debug_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_control_cfsr_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/datm_cdeps_control_cfsr_faster +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_cfsr_faster +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/datm_cdeps_control_cfsr_faster Checking test 156 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 153.587502 - 0: The maximum resident set size (KB) = 1061128 + 0: The total amount of wall time = 157.696734 + 0: The maximum resident set size (KB) = 1057400 Test 156 datm_cdeps_control_cfsr_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/datm_cdeps_lnd_gswp3 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_lnd_gswp3 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/datm_cdeps_lnd_gswp3 Checking test 157 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4687,14 +4687,14 @@ Checking test 157 datm_cdeps_lnd_gswp3 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 = 6.420576 - 0: The maximum resident set size (KB) = 250188 + 0: The total amount of wall time = 7.660018 + 0: The maximum resident set size (KB) = 260412 Test 157 datm_cdeps_lnd_gswp3 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/datm_cdeps_lnd_gswp3_rst +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_lnd_gswp3 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/datm_cdeps_lnd_gswp3_rst Checking test 158 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4703,14 +4703,14 @@ Checking test 158 datm_cdeps_lnd_gswp3_rst 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.240902 - 0: The maximum resident set size (KB) = 255108 + 0: The total amount of wall time = 13.128830 + 0: The maximum resident set size (KB) = 258232 Test 158 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_atmlnd_sbs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_p8_atmlnd_sbs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_atmlnd_sbs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_p8_atmlnd_sbs Checking test 159 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4795,14 +4795,14 @@ Checking test 159 control_p8_atmlnd_sbs 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 = 206.193781 - 0: The maximum resident set size (KB) = 1599948 + 0: The total amount of wall time = 203.707979 + 0: The maximum resident set size (KB) = 1595292 Test 159 control_p8_atmlnd_sbs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/atmwav_control_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/atmwav_control_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/atmwav_control_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/atmwav_control_noaero_p8 Checking test 160 atmwav_control_noaero_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4845,14 +4845,14 @@ Checking test 160 atmwav_control_noaero_p8 results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 94.178039 - 0: The maximum resident set size (KB) = 1631888 + 0: The total amount of wall time = 94.450471 + 0: The maximum resident set size (KB) = 1628312 Test 160 atmwav_control_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_atmwav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/control_atmwav +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_atmwav +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_atmwav Checking test 161 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4896,14 +4896,14 @@ Checking test 161 control_atmwav 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.867996 - 0: The maximum resident set size (KB) = 660232 + 0: The total amount of wall time = 89.053826 + 0: The maximum resident set size (KB) = 658392 Test 161 control_atmwav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/atmaero_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/atmaero_control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/atmaero_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/atmaero_control_p8 Checking test 162 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4947,14 +4947,14 @@ Checking test 162 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 238.151730 - 0: The maximum resident set size (KB) = 2963816 + 0: The total amount of wall time = 229.922653 + 0: The maximum resident set size (KB) = 2977600 Test 162 atmaero_control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/atmaero_control_p8_rad -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/atmaero_control_p8_rad +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/atmaero_control_p8_rad +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/atmaero_control_p8_rad Checking test 163 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4998,14 +4998,14 @@ Checking test 163 atmaero_control_p8_rad results .... Comparing 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.687484 - 0: The maximum resident set size (KB) = 2985340 + 0: The total amount of wall time = 293.423564 + 0: The maximum resident set size (KB) = 3035352 Test 163 atmaero_control_p8_rad PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/atmaero_control_p8_rad_micro -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/atmaero_control_p8_rad_micro +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/atmaero_control_p8_rad_micro +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/atmaero_control_p8_rad_micro Checking test 164 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5049,14 +5049,14 @@ Checking test 164 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 282.330181 - 0: The maximum resident set size (KB) = 3046536 + 0: The total amount of wall time = 291.242830 + 0: The maximum resident set size (KB) = 3046684 Test 164 atmaero_control_p8_rad_micro PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_atmaq -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/regional_atmaq +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_atmaq +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/regional_atmaq Checking test 165 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5072,14 +5072,14 @@ Checking test 165 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 650.633576 - 0: The maximum resident set size (KB) = 1455828 + 0: The total amount of wall time = 649.171066 + 0: The maximum resident set size (KB) = 1451496 Test 165 regional_atmaq PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_atmaq_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/regional_atmaq_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_atmaq_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/regional_atmaq_debug Checking test 166 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5093,14 +5093,14 @@ Checking test 166 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1188.944006 - 0: The maximum resident set size (KB) = 1385728 + 0: The total amount of wall time = 1201.947439 + 0: The maximum resident set size (KB) = 1374860 Test 166 regional_atmaq_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_atmaq_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_7721/regional_atmaq_faster +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_atmaq_faster +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/regional_atmaq_faster Checking test 167 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5116,12 +5116,12 @@ Checking test 167 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 548.915994 - 0: The maximum resident set size (KB) = 1461324 + 0: The total amount of wall time = 567.633953 + 0: The maximum resident set size (KB) = 1456756 Test 167 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Wed May 3 13:12:53 UTC 2023 -Elapsed time: 01h:10m:12s. Have a nice day! +Sun May 7 07:18:09 UTC 2023 +Elapsed time: 08h:50m:51s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index a4c3ba5db16..867e84b6061 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,43 +1,43 @@ -Wed May 3 12:23:31 UTC 2023 +Fri May 5 19:03:44 UTC 2023 Start Regression test -Compile 001 elapsed time 1966 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 002 elapsed time 2020 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 003 elapsed time 1810 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 004 elapsed time 314 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 290 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 1672 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 007 elapsed time 1676 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 008 elapsed time 3347 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 009 elapsed time 1811 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 010 elapsed time 1743 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 011 elapsed time 1691 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 012 elapsed time 1551 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 013 elapsed time 2141 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 014 elapsed time 304 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 015 elapsed time 236 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 1570 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 017 elapsed time 1624 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 018 elapsed time 247 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 244 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 1717 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 021 elapsed time 277 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 2241 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 023 elapsed time 1682 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 024 elapsed time 273 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 025 elapsed time 151 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 283 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 027 elapsed time 104 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 028 elapsed time 1679 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 029 elapsed time 1649 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 030 elapsed time 1629 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 001 elapsed time 1942 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 002 elapsed time 2049 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 003 elapsed time 1877 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 004 elapsed time 313 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 288 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 1707 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 007 elapsed time 1758 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 008 elapsed time 3352 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 009 elapsed time 1840 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 010 elapsed time 1751 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 011 elapsed time 1701 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 012 elapsed time 1542 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 013 elapsed time 2150 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 014 elapsed time 306 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 015 elapsed time 203 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 1582 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 017 elapsed time 1615 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 018 elapsed time 251 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 281 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 1713 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 021 elapsed time 248 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 2238 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 023 elapsed time 1702 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 024 elapsed time 286 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 025 elapsed time 149 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 267 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 027 elapsed time 81 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 028 elapsed time 1681 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 029 elapsed time 1673 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 030 elapsed time 1644 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON Compile 031 elapsed time 1593 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 032 elapsed time 1531 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 033 elapsed time 213 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 034 elapsed time 1980 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 032 elapsed time 1553 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 033 elapsed time 217 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 034 elapsed time 2034 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8_mixedmode -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/cpld_control_p8_mixedmode +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8_mixedmode +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -102,14 +102,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 444.546881 - 0: The maximum resident set size (KB) = 1761228 + 0: The total amount of wall time = 456.506094 + 0: The maximum resident set size (KB) = 1741260 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_gfsv17 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/cpld_control_gfsv17 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_gfsv17 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -173,14 +173,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 325.263340 - 0: The maximum resident set size (KB) = 1644416 + 0: The total amount of wall time = 313.957534 + 0: The maximum resident set size (KB) = 1641600 Test 002 cpld_control_gfsv17 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/cpld_control_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -245,14 +245,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 488.820730 - 0: The maximum resident set size (KB) = 1796112 + 0: The total amount of wall time = 460.913635 + 0: The maximum resident set size (KB) = 1802564 Test 003 cpld_control_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/cpld_restart_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -305,14 +305,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 273.732936 - 0: The maximum resident set size (KB) = 1478748 + 0: The total amount of wall time = 274.416982 + 0: The maximum resident set size (KB) = 1482348 Test 004 cpld_restart_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/cpld_control_qr_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -377,14 +377,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 489.882089 - 0: The maximum resident set size (KB) = 1807824 + 0: The total amount of wall time = 472.350530 + 0: The maximum resident set size (KB) = 1788456 Test 005 cpld_control_qr_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/cpld_restart_qr_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -437,14 +437,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 290.371159 - 0: The maximum resident set size (KB) = 1493256 + 0: The total amount of wall time = 283.341672 + 0: The maximum resident set size (KB) = 1505968 Test 006 cpld_restart_qr_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/cpld_2threads_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -497,14 +497,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 532.340098 - 0: The maximum resident set size (KB) = 1972240 + 0: The total amount of wall time = 482.317559 + 0: The maximum resident set size (KB) = 1991852 -Test 007 cpld_2threads_p8 PASS Tries: 2 +Test 007 cpld_2threads_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/cpld_decomp_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -557,14 +557,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 495.528290 - 0: The maximum resident set size (KB) = 1788608 + 0: The total amount of wall time = 463.551854 + 0: The maximum resident set size (KB) = 1759360 Test 008 cpld_decomp_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/cpld_mpi_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -617,14 +617,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 409.477774 - 0: The maximum resident set size (KB) = 1719728 + 0: The total amount of wall time = 393.221188 + 0: The maximum resident set size (KB) = 1721512 Test 009 cpld_mpi_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_ciceC_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/cpld_control_ciceC_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_ciceC_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -689,14 +689,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 494.300033 - 0: The maximum resident set size (KB) = 1796328 + 0: The total amount of wall time = 462.649180 + 0: The maximum resident set size (KB) = 1766824 Test 010 cpld_control_ciceC_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_noaero_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/cpld_control_noaero_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_noaero_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/cpld_control_noaero_p8 Checking test 011 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -760,14 +760,14 @@ Checking test 011 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 358.780260 - 0: The maximum resident set size (KB) = 1621820 + 0: The total amount of wall time = 382.759394 + 0: The maximum resident set size (KB) = 1618992 Test 011 cpld_control_noaero_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/cpld_control_nowave_noaero_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_c96_noaero_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/cpld_control_nowave_noaero_p8 Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -829,14 +829,14 @@ Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 366.703486 - 0: The maximum resident set size (KB) = 1674956 + 0: The total amount of wall time = 393.506939 + 0: The maximum resident set size (KB) = 1672668 Test 012 cpld_control_nowave_noaero_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_debug_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/cpld_debug_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_debug_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/cpld_debug_p8 Checking test 013 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -889,14 +889,14 @@ Checking test 013 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 683.171519 - 0: The maximum resident set size (KB) = 1817412 + 0: The total amount of wall time = 678.276501 + 0: The maximum resident set size (KB) = 1834784 Test 013 cpld_debug_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_debug_noaero_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/cpld_debug_noaero_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_debug_noaero_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/cpld_debug_noaero_p8 Checking test 014 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -948,14 +948,14 @@ Checking test 014 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 484.192291 - 0: The maximum resident set size (KB) = 1634340 + 0: The total amount of wall time = 471.936474 + 0: The maximum resident set size (KB) = 1651300 Test 014 cpld_debug_noaero_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/cpld_control_noaero_p8_agrid +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_noaero_p8_agrid +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/cpld_control_noaero_p8_agrid Checking test 015 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1017,14 +1017,14 @@ Checking test 015 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 396.744896 - 0: The maximum resident set size (KB) = 1687584 + 0: The total amount of wall time = 372.090163 + 0: The maximum resident set size (KB) = 1676432 Test 015 cpld_control_noaero_p8_agrid PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_c48 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/cpld_control_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_c48 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/cpld_control_c48 Checking test 016 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1074,14 +1074,14 @@ Checking test 016 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 808.618625 - 0: The maximum resident set size (KB) = 2766496 + 0: The total amount of wall time = 809.775799 + 0: The maximum resident set size (KB) = 2768872 Test 016 cpld_control_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_warmstart_c48 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/cpld_warmstart_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_warmstart_c48 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/cpld_warmstart_c48 Checking test 017 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1131,14 +1131,14 @@ Checking test 017 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 221.276356 - 0: The maximum resident set size (KB) = 2773816 + 0: The total amount of wall time = 214.065719 + 0: The maximum resident set size (KB) = 2772904 Test 017 cpld_warmstart_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_warmstart_c48 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/cpld_restart_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_warmstart_c48 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/cpld_restart_c48 Checking test 018 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1188,14 +1188,14 @@ Checking test 018 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 117.429383 - 0: The maximum resident set size (KB) = 2203132 + 0: The total amount of wall time = 111.850337 + 0: The maximum resident set size (KB) = 2212920 Test 018 cpld_restart_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8_faster -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/cpld_control_p8_faster +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8_faster +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/cpld_control_p8_faster Checking test 019 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1260,14 +1260,14 @@ Checking test 019 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 448.184283 - 0: The maximum resident set size (KB) = 1798568 + 0: The total amount of wall time = 435.936189 + 0: The maximum resident set size (KB) = 1771464 Test 019 cpld_control_p8_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_flake -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_flake +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_flake +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_flake Checking test 020 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1278,14 +1278,14 @@ Checking test 020 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 269.273530 - 0: The maximum resident set size (KB) = 623136 + 0: The total amount of wall time = 262.794645 + 0: The maximum resident set size (KB) = 621368 Test 020 control_flake PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_CubedSphereGrid -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_CubedSphereGrid +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_CubedSphereGrid +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_CubedSphereGrid Checking test 021 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1312,28 +1312,28 @@ Checking test 021 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 185.945664 - 0: The maximum resident set size (KB) = 569008 + 0: The total amount of wall time = 183.325936 + 0: The maximum resident set size (KB) = 572088 Test 021 control_CubedSphereGrid PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_CubedSphereGrid_parallel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_CubedSphereGrid_parallel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_CubedSphereGrid_parallel +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_CubedSphereGrid_parallel Checking test 022 control_CubedSphereGrid_parallel 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 = 188.351489 - 0: The maximum resident set size (KB) = 575336 + 0: The total amount of wall time = 181.001583 + 0: The maximum resident set size (KB) = 569440 Test 022 control_CubedSphereGrid_parallel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_latlon -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_latlon +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_latlon +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_latlon Checking test 023 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1344,14 +1344,14 @@ Checking test 023 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 186.866430 - 0: The maximum resident set size (KB) = 568864 + 0: The total amount of wall time = 185.445730 + 0: The maximum resident set size (KB) = 569700 Test 023 control_latlon PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_wrtGauss_netcdf_parallel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_wrtGauss_netcdf_parallel Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1362,14 +1362,14 @@ Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 198.796004 - 0: The maximum resident set size (KB) = 569536 + 0: The total amount of wall time = 192.067737 + 0: The maximum resident set size (KB) = 574104 Test 024 control_wrtGauss_netcdf_parallel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_c48 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c48 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_c48 Checking test 025 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1408,14 +1408,14 @@ Checking test 025 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 598.546384 -0: The maximum resident set size (KB) = 787808 +0: The total amount of wall time = 600.300134 +0: The maximum resident set size (KB) = 797164 Test 025 control_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_c192 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_c192 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c192 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_c192 Checking test 026 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1426,14 +1426,14 @@ Checking test 026 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 743.108006 - 0: The maximum resident set size (KB) = 683752 + 0: The total amount of wall time = 729.495494 + 0: The maximum resident set size (KB) = 689280 Test 026 control_c192 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_c384 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_c384 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c384 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_c384 Checking test 027 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1444,16 +1444,64 @@ Checking test 027 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 981.303811 - 0: The maximum resident set size (KB) = 1059240 + 0: The total amount of wall time = 953.364552 + 0: The maximum resident set size (KB) = 1056632 Test 027 control_c384 PASS -Test 028 control_c384gdas FAIL +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c384gdas +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_c384gdas +Checking test 028 control_c384gdas results .... + Comparing sfcf000.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf006.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF06 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF06 .........OK + Comparing RESTART/20210322.060000.coupler.res .........OK + Comparing RESTART/20210322.060000.fv_core.res.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 806.882990 + 0: The maximum resident set size (KB) = 1195812 + +Test 028 control_c384gdas PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_stochy -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_stochy + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_stochy +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_stochy Checking test 029 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1464,28 +1512,28 @@ Checking test 029 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 128.232091 - 0: The maximum resident set size (KB) = 577088 + 0: The total amount of wall time = 124.996708 + 0: The maximum resident set size (KB) = 577528 Test 029 control_stochy PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_stochy -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_stochy_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_stochy +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_stochy_restart Checking test 030 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 74.397593 - 0: The maximum resident set size (KB) = 392360 + 0: The total amount of wall time = 67.167234 + 0: The maximum resident set size (KB) = 395624 Test 030 control_stochy_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_lndp -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_lndp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_lndp +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_lndp Checking test 031 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1496,14 +1544,14 @@ Checking test 031 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 119.356135 - 0: The maximum resident set size (KB) = 577336 + 0: The total amount of wall time = 116.783949 + 0: The maximum resident set size (KB) = 576644 Test 031 control_lndp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_iovr4 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_iovr4 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_iovr4 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_iovr4 Checking test 032 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1518,14 +1566,14 @@ Checking test 032 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 202.408790 - 0: The maximum resident set size (KB) = 569544 + 0: The total amount of wall time = 191.858341 + 0: The maximum resident set size (KB) = 574056 Test 032 control_iovr4 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_iovr5 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_iovr5 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_iovr5 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_iovr5 Checking test 033 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1540,14 +1588,14 @@ Checking test 033 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 198.837360 - 0: The maximum resident set size (KB) = 571232 + 0: The total amount of wall time = 193.486048 + 0: The maximum resident set size (KB) = 568776 Test 033 control_iovr5 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_p8 Checking test 034 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1594,14 +1642,14 @@ Checking test 034 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 239.510180 - 0: The maximum resident set size (KB) = 1546176 + 0: The total amount of wall time = 232.333284 + 0: The maximum resident set size (KB) = 1535172 Test 034 control_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_restart_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_restart_p8 Checking test 035 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1640,14 +1688,14 @@ Checking test 035 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 131.055012 - 0: The maximum resident set size (KB) = 771048 + 0: The total amount of wall time = 125.936812 + 0: The maximum resident set size (KB) = 775480 Test 035 control_restart_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_qr_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_qr_p8 Checking test 036 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1694,14 +1742,14 @@ Checking test 036 control_qr_p8 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 = 235.452956 - 0: The maximum resident set size (KB) = 1549448 + 0: The total amount of wall time = 227.698323 + 0: The maximum resident set size (KB) = 1553428 Test 036 control_qr_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_restart_qr_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_restart_qr_p8 Checking test 037 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1740,14 +1788,14 @@ Checking test 037 control_restart_qr_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 129.460945 - 0: The maximum resident set size (KB) = 789200 + 0: The total amount of wall time = 128.248671 + 0: The maximum resident set size (KB) = 786000 Test 037 control_restart_qr_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_decomp_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_decomp_p8 Checking test 038 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1790,14 +1838,14 @@ Checking test 038 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 242.864554 - 0: The maximum resident set size (KB) = 1533136 + 0: The total amount of wall time = 242.843766 + 0: The maximum resident set size (KB) = 1520276 Test 038 control_decomp_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_2threads_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_2threads_p8 Checking test 039 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1840,14 +1888,14 @@ Checking test 039 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 219.912944 - 0: The maximum resident set size (KB) = 1629156 + 0: The total amount of wall time = 220.709903 + 0: The maximum resident set size (KB) = 1618580 Test 039 control_2threads_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_lndp -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_p8_lndp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_lndp +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_p8_lndp Checking test 040 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1866,14 +1914,14 @@ Checking test 040 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 440.724190 - 0: The maximum resident set size (KB) = 1542792 + 0: The total amount of wall time = 433.201606 + 0: The maximum resident set size (KB) = 1538092 Test 040 control_p8_lndp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_rrtmgp -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_p8_rrtmgp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_rrtmgp +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_p8_rrtmgp Checking test 041 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1920,14 +1968,14 @@ Checking test 041 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 315.129951 - 0: The maximum resident set size (KB) = 1605276 + 0: The total amount of wall time = 312.953683 + 0: The maximum resident set size (KB) = 1603052 Test 041 control_p8_rrtmgp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_mynn -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_p8_mynn +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_mynn +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_p8_mynn Checking test 042 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1974,14 +2022,14 @@ Checking test 042 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 241.579829 - 0: The maximum resident set size (KB) = 1539956 + 0: The total amount of wall time = 239.441628 + 0: The maximum resident set size (KB) = 1547556 Test 042 control_p8_mynn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/merra2_thompson -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/merra2_thompson +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/merra2_thompson +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/merra2_thompson Checking test 043 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2028,14 +2076,14 @@ Checking test 043 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 268.583637 - 0: The maximum resident set size (KB) = 1558000 + 0: The total amount of wall time = 263.249363 + 0: The maximum resident set size (KB) = 1553672 Test 043 merra2_thompson PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/regional_control +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/regional_control Checking test 044 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2046,28 +2094,28 @@ Checking test 044 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 428.082056 - 0: The maximum resident set size (KB) = 791776 + 0: The total amount of wall time = 413.360810 + 0: The maximum resident set size (KB) = 788412 Test 044 regional_control PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/regional_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/regional_restart Checking test 045 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 211.718446 - 0: The maximum resident set size (KB) = 780516 + 0: The total amount of wall time = 209.555979 + 0: The maximum resident set size (KB) = 779272 Test 045 regional_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/regional_control_qr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/regional_control_qr Checking test 046 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2078,28 +2126,28 @@ Checking test 046 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 425.284731 - 0: The maximum resident set size (KB) = 786216 + 0: The total amount of wall time = 416.605911 + 0: The maximum resident set size (KB) = 785212 Test 046 regional_control_qr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/regional_restart_qr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/regional_restart_qr Checking test 047 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 214.209523 - 0: The maximum resident set size (KB) = 782696 + 0: The total amount of wall time = 208.411704 + 0: The maximum resident set size (KB) = 777100 Test 047 regional_restart_qr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/regional_decomp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/regional_decomp Checking test 048 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2110,14 +2158,14 @@ Checking test 048 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 432.749726 - 0: The maximum resident set size (KB) = 782072 + 0: The total amount of wall time = 427.909093 + 0: The maximum resident set size (KB) = 785824 Test 048 regional_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/regional_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/regional_2threads Checking test 049 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2128,28 +2176,28 @@ Checking test 049 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 250.149794 - 0: The maximum resident set size (KB) = 775796 + 0: The total amount of wall time = 249.469019 + 0: The maximum resident set size (KB) = 772600 Test 049 regional_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_netcdf_parallel -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/regional_netcdf_parallel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_netcdf_parallel +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/regional_netcdf_parallel Checking test 050 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf006.nc ............ALT CHECK......OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK - 0: The total amount of wall time = 400.616796 - 0: The maximum resident set size (KB) = 782940 + 0: The total amount of wall time = 404.865096 + 0: The maximum resident set size (KB) = 782088 Test 050 regional_netcdf_parallel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/regional_2dwrtdecomp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/regional_2dwrtdecomp Checking test 051 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2160,14 +2208,14 @@ Checking test 051 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 426.211235 - 0: The maximum resident set size (KB) = 784752 + 0: The total amount of wall time = 414.605749 + 0: The maximum resident set size (KB) = 787940 Test 051 regional_2dwrtdecomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/rap_control +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rap_control Checking test 052 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2214,14 +2262,14 @@ Checking test 052 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 617.859906 - 0: The maximum resident set size (KB) = 952000 + 0: The total amount of wall time = 610.288167 + 0: The maximum resident set size (KB) = 942148 Test 052 rap_control PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/regional_spp_sppt_shum_skeb +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_spp_sppt_shum_skeb +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/regional_spp_sppt_shum_skeb Checking test 053 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2232,14 +2280,14 @@ Checking test 053 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 330.055692 - 0: The maximum resident set size (KB) = 1085836 + 0: The total amount of wall time = 324.336886 + 0: The maximum resident set size (KB) = 1091312 Test 053 regional_spp_sppt_shum_skeb PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/rap_decomp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rap_decomp Checking test 054 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2286,14 +2334,14 @@ Checking test 054 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 649.190767 - 0: The maximum resident set size (KB) = 950828 + 0: The total amount of wall time = 644.454018 + 0: The maximum resident set size (KB) = 951332 Test 054 rap_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/rap_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rap_2threads Checking test 055 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2340,14 +2388,14 @@ Checking test 055 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 589.741871 - 0: The maximum resident set size (KB) = 1020400 + 0: The total amount of wall time = 586.540054 + 0: The maximum resident set size (KB) = 1019756 Test 055 rap_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/rap_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rap_restart Checking test 056 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2386,14 +2434,14 @@ Checking test 056 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 315.817733 - 0: The maximum resident set size (KB) = 838340 + 0: The total amount of wall time = 306.966396 + 0: The maximum resident set size (KB) = 837916 Test 056 rap_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/rap_sfcdiff +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rap_sfcdiff Checking test 057 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2440,14 +2488,14 @@ Checking test 057 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 621.231117 - 0: The maximum resident set size (KB) = 951920 + 0: The total amount of wall time = 629.828883 + 0: The maximum resident set size (KB) = 952908 Test 057 rap_sfcdiff PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/rap_sfcdiff_decomp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rap_sfcdiff_decomp Checking test 058 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2494,14 +2542,14 @@ Checking test 058 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 660.907211 - 0: The maximum resident set size (KB) = 952412 + 0: The total amount of wall time = 663.902491 + 0: The maximum resident set size (KB) = 935340 Test 058 rap_sfcdiff_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/rap_sfcdiff_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rap_sfcdiff_restart Checking test 059 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2540,14 +2588,14 @@ Checking test 059 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 459.787144 - 0: The maximum resident set size (KB) = 840968 + 0: The total amount of wall time = 450.380583 + 0: The maximum resident set size (KB) = 840504 Test 059 rap_sfcdiff_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/hrrr_control +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/hrrr_control Checking test 060 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2594,14 +2642,14 @@ Checking test 060 hrrr_control results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 580.070857 - 0: The maximum resident set size (KB) = 951672 + 0: The total amount of wall time = 575.856688 + 0: The maximum resident set size (KB) = 948880 Test 060 hrrr_control PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/hrrr_control_decomp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/hrrr_control_decomp Checking test 061 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2648,14 +2696,14 @@ Checking test 061 hrrr_control_decomp results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 610.691010 - 0: The maximum resident set size (KB) = 944156 + 0: The total amount of wall time = 597.698194 + 0: The maximum resident set size (KB) = 947104 Test 061 hrrr_control_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/hrrr_control_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/hrrr_control_2threads Checking test 062 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2702,28 +2750,28 @@ Checking test 062 hrrr_control_2threads results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 545.995140 - 0: The maximum resident set size (KB) = 1009608 + 0: The total amount of wall time = 529.676992 + 0: The maximum resident set size (KB) = 1014204 Test 062 hrrr_control_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/hrrr_control_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/hrrr_control_restart Checking test 063 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 433.926851 - 0: The maximum resident set size (KB) = 838516 + 0: The total amount of wall time = 419.873279 + 0: The maximum resident set size (KB) = 835348 Test 063 hrrr_control_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_v1beta -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/rrfs_v1beta +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1beta +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rrfs_v1beta Checking test 064 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2770,14 +2818,14 @@ Checking test 064 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 624.555667 - 0: The maximum resident set size (KB) = 949716 + 0: The total amount of wall time = 616.627808 + 0: The maximum resident set size (KB) = 941236 Test 064 rrfs_v1beta PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_v1nssl -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/rrfs_v1nssl +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1nssl +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rrfs_v1nssl Checking test 065 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2792,14 +2840,14 @@ Checking test 065 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 739.874154 - 0: The maximum resident set size (KB) = 633760 + 0: The total amount of wall time = 731.701665 + 0: The maximum resident set size (KB) = 640248 Test 065 rrfs_v1nssl PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/rrfs_v1nssl_nohailnoccn +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rrfs_v1nssl_nohailnoccn Checking test 066 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2814,14 +2862,14 @@ Checking test 066 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 737.141712 - 0: The maximum resident set size (KB) = 634684 + 0: The total amount of wall time = 724.724002 + 0: The maximum resident set size (KB) = 625836 Test 066 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rrfs_smoke_conus13km_hrrr_warm Checking test 067 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2830,14 +2878,14 @@ Checking test 067 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 203.879215 - 0: The maximum resident set size (KB) = 896900 + 0: The total amount of wall time = 213.398197 + 0: The maximum resident set size (KB) = 899744 Test 067 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 068 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2846,14 +2894,14 @@ Checking test 068 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 135.069610 - 0: The maximum resident set size (KB) = 858784 + 0: The total amount of wall time = 138.430038 + 0: The maximum resident set size (KB) = 855772 Test 068 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/rrfs_conus13km_hrrr_warm +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rrfs_conus13km_hrrr_warm Checking test 069 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2862,14 +2910,14 @@ Checking test 069 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 182.523467 - 0: The maximum resident set size (KB) = 877856 + 0: The total amount of wall time = 181.042822 + 0: The maximum resident set size (KB) = 870856 Test 069 rrfs_conus13km_hrrr_warm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rrfs_smoke_conus13km_radar_tten_warm Checking test 070 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2878,26 +2926,26 @@ Checking test 070 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 210.062570 - 0: The maximum resident set size (KB) = 897628 + 0: The total amount of wall time = 215.534797 + 0: The maximum resident set size (KB) = 908076 Test 070 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 071 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 105.941695 - 0: The maximum resident set size (KB) = 851216 + 0: The total amount of wall time = 104.518373 + 0: The maximum resident set size (KB) = 858292 Test 071 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_csawmg -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_csawmg +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmg +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_csawmg Checking test 072 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2908,14 +2956,14 @@ Checking test 072 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 474.914375 - 0: The maximum resident set size (KB) = 673392 + 0: The total amount of wall time = 467.070903 + 0: The maximum resident set size (KB) = 668676 Test 072 control_csawmg PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_csawmgt -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_csawmgt +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmgt +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_csawmgt Checking test 073 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2926,14 +2974,14 @@ Checking test 073 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 465.137220 - 0: The maximum resident set size (KB) = 668316 + 0: The total amount of wall time = 460.767667 + 0: The maximum resident set size (KB) = 662396 Test 073 control_csawmgt PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_ras -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_ras +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_ras +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_ras Checking test 074 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2944,26 +2992,26 @@ Checking test 074 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 252.409083 - 0: The maximum resident set size (KB) = 640256 + 0: The total amount of wall time = 253.575558 + 0: The maximum resident set size (KB) = 636076 Test 074 control_ras PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_wam -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_wam +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wam +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_wam Checking test 075 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 154.218261 - 0: The maximum resident set size (KB) = 483024 + 0: The total amount of wall time = 151.348297 + 0: The maximum resident set size (KB) = 485644 Test 075 control_wam PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_faster -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_p8_faster +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_faster +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_p8_faster Checking test 076 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3010,14 +3058,14 @@ Checking test 076 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 221.019204 - 0: The maximum resident set size (KB) = 1534684 + 0: The total amount of wall time = 210.848508 + 0: The maximum resident set size (KB) = 1533292 Test 076 control_p8_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control_faster -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/regional_control_faster +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control_faster +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/regional_control_faster Checking test 077 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3028,56 +3076,56 @@ Checking test 077 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 382.242565 - 0: The maximum resident set size (KB) = 788160 + 0: The total amount of wall time = 376.500598 + 0: The maximum resident set size (KB) = 782416 Test 077 regional_control_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 078 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 1095.245430 - 0: The maximum resident set size (KB) = 920904 + 0: The total amount of wall time = 1094.435311 + 0: The maximum resident set size (KB) = 926044 Test 078 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 079 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 636.762141 - 0: The maximum resident set size (KB) = 889540 + 0: The total amount of wall time = 646.322837 + 0: The maximum resident set size (KB) = 901468 Test 079 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/rrfs_conus13km_hrrr_warm_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rrfs_conus13km_hrrr_warm_debug Checking test 080 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 978.460504 - 0: The maximum resident set size (KB) = 909592 + 0: The total amount of wall time = 970.520617 + 0: The maximum resident set size (KB) = 911488 Test 080 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_CubedSphereGrid_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_CubedSphereGrid_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_CubedSphereGrid_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_CubedSphereGrid_debug Checking test 081 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3104,348 +3152,348 @@ Checking test 081 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 198.782239 - 0: The maximum resident set size (KB) = 732548 + 0: The total amount of wall time = 188.845445 + 0: The maximum resident set size (KB) = 740128 Test 081 control_CubedSphereGrid_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_wrtGauss_netcdf_parallel_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_wrtGauss_netcdf_parallel_debug Checking test 082 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK + Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 191.852030 - 0: The maximum resident set size (KB) = 732620 + 0: The total amount of wall time = 190.609655 + 0: The maximum resident set size (KB) = 734212 Test 082 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_stochy_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_stochy_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_stochy_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_stochy_debug Checking test 083 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 213.893776 - 0: The maximum resident set size (KB) = 736948 + 0: The total amount of wall time = 220.909971 + 0: The maximum resident set size (KB) = 737848 Test 083 control_stochy_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_lndp_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_lndp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_lndp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_lndp_debug Checking test 084 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 193.414745 - 0: The maximum resident set size (KB) = 739040 + 0: The total amount of wall time = 194.280409 + 0: The maximum resident set size (KB) = 738424 Test 084 control_lndp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_csawmg_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_csawmg_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmg_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_csawmg_debug Checking test 085 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 302.577768 - 0: The maximum resident set size (KB) = 783724 + 0: The total amount of wall time = 298.656157 + 0: The maximum resident set size (KB) = 784196 Test 085 control_csawmg_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_csawmgt_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_csawmgt_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmgt_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_csawmgt_debug Checking test 086 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 296.028800 - 0: The maximum resident set size (KB) = 776996 + 0: The total amount of wall time = 293.448162 + 0: The maximum resident set size (KB) = 784136 Test 086 control_csawmgt_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_ras_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_ras_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_ras_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_ras_debug Checking test 087 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 194.980485 - 0: The maximum resident set size (KB) = 742020 + 0: The total amount of wall time = 194.307540 + 0: The maximum resident set size (KB) = 747840 Test 087 control_ras_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_diag_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_diag_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_diag_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_diag_debug Checking test 088 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 205.921504 - 0: The maximum resident set size (KB) = 784584 + 0: The total amount of wall time = 198.662418 + 0: The maximum resident set size (KB) = 796572 Test 088 control_diag_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_debug_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_debug_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_debug_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_debug_p8 Checking test 089 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 220.580859 - 0: The maximum resident set size (KB) = 1559764 + 0: The total amount of wall time = 216.242562 + 0: The maximum resident set size (KB) = 1563108 Test 089 control_debug_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/regional_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/regional_debug Checking test 090 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1284.267709 - 0: The maximum resident set size (KB) = 795984 + 0: The total amount of wall time = 1283.124413 + 0: The maximum resident set size (KB) = 803428 Test 090 regional_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/rap_control_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rap_control_debug Checking test 091 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 350.467059 - 0: The maximum resident set size (KB) = 1111812 + 0: The total amount of wall time = 351.688578 + 0: The maximum resident set size (KB) = 1107312 Test 091 rap_control_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/hrrr_control_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/hrrr_control_debug Checking test 092 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 341.503922 - 0: The maximum resident set size (KB) = 1112236 + 0: The total amount of wall time = 337.048780 + 0: The maximum resident set size (KB) = 1115648 Test 092 hrrr_control_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/rap_unified_drag_suite_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rap_unified_drag_suite_debug Checking test 093 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 348.795063 - 0: The maximum resident set size (KB) = 1114364 + 0: The total amount of wall time = 348.034688 + 0: The maximum resident set size (KB) = 1118700 Test 093 rap_unified_drag_suite_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_diag_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/rap_diag_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_diag_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rap_diag_debug Checking test 094 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 370.513851 - 0: The maximum resident set size (KB) = 1190048 + 0: The total amount of wall time = 367.564277 + 0: The maximum resident set size (KB) = 1188504 Test 094 rap_diag_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/rap_cires_ugwp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rap_cires_ugwp_debug Checking test 095 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 361.568296 - 0: The maximum resident set size (KB) = 1104140 + 0: The total amount of wall time = 358.310261 + 0: The maximum resident set size (KB) = 1108016 Test 095 rap_cires_ugwp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/rap_unified_ugwp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rap_unified_ugwp_debug Checking test 096 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 359.417144 - 0: The maximum resident set size (KB) = 1116964 + 0: The total amount of wall time = 355.508233 + 0: The maximum resident set size (KB) = 1118208 Test 096 rap_unified_ugwp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_lndp_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/rap_lndp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_lndp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rap_lndp_debug Checking test 097 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 356.663861 - 0: The maximum resident set size (KB) = 1105880 + 0: The total amount of wall time = 353.643465 + 0: The maximum resident set size (KB) = 1118112 Test 097 rap_lndp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_progcld_thompson_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/rap_progcld_thompson_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_progcld_thompson_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rap_progcld_thompson_debug Checking test 098 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 352.471651 - 0: The maximum resident set size (KB) = 1112332 + 0: The total amount of wall time = 353.535793 + 0: The maximum resident set size (KB) = 1112304 Test 098 rap_progcld_thompson_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_noah_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/rap_noah_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_noah_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rap_noah_debug Checking test 099 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 348.450009 - 0: The maximum resident set size (KB) = 1106492 + 0: The total amount of wall time = 346.075932 + 0: The maximum resident set size (KB) = 1107892 Test 099 rap_noah_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_sfcdiff_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/rap_sfcdiff_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rap_sfcdiff_debug Checking test 100 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 350.739331 - 0: The maximum resident set size (KB) = 1107976 + 0: The total amount of wall time = 349.787850 + 0: The maximum resident set size (KB) = 1112908 Test 100 rap_sfcdiff_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rap_noah_sfcdiff_cires_ugwp_debug Checking test 101 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 582.262471 - 0: The maximum resident set size (KB) = 1102000 + 0: The total amount of wall time = 574.978417 + 0: The maximum resident set size (KB) = 1110800 Test 101 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_v1beta_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/rrfs_v1beta_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1beta_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rrfs_v1beta_debug Checking test 102 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 343.352952 - 0: The maximum resident set size (KB) = 1101532 + 0: The total amount of wall time = 345.180218 + 0: The maximum resident set size (KB) = 1112588 Test 102 rrfs_v1beta_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_clm_lake_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/rap_clm_lake_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_clm_lake_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rap_clm_lake_debug Checking test 103 rap_clm_lake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 429.114386 - 0: The maximum resident set size (KB) = 1115836 + 0: The total amount of wall time = 430.576959 + 0: The maximum resident set size (KB) = 1108728 Test 103 rap_clm_lake_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_flake_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/rap_flake_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_flake_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rap_flake_debug Checking test 104 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 361.127563 - 0: The maximum resident set size (KB) = 1110128 + 0: The total amount of wall time = 349.949057 + 0: The maximum resident set size (KB) = 1114896 Test 104 rap_flake_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_wam_debug -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_wam_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wam_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_wam_debug Checking test 105 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 354.597543 - 0: The maximum resident set size (KB) = 437020 + 0: The total amount of wall time = 357.278859 + 0: The maximum resident set size (KB) = 431760 Test 105 control_wam_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3456,14 +3504,14 @@ Checking test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 317.981607 - 0: The maximum resident set size (KB) = 980616 + 0: The total amount of wall time = 303.593187 + 0: The maximum resident set size (KB) = 982856 Test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/rap_control_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rap_control_dyn32_phy32 Checking test 107 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3510,14 +3558,14 @@ Checking test 107 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 516.824953 - 0: The maximum resident set size (KB) = 852700 + 0: The total amount of wall time = 521.934805 + 0: The maximum resident set size (KB) = 842400 Test 107 rap_control_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/hrrr_control_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/hrrr_control_dyn32_phy32 Checking test 108 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3564,14 +3612,14 @@ Checking test 108 hrrr_control_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 263.013026 - 0: The maximum resident set size (KB) = 837348 + 0: The total amount of wall time = 253.376551 + 0: The maximum resident set size (KB) = 837404 Test 108 hrrr_control_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/rap_2threads_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rap_2threads_dyn32_phy32 Checking test 109 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3618,14 +3666,14 @@ Checking test 109 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 494.819913 - 0: The maximum resident set size (KB) = 887632 + 0: The total amount of wall time = 507.916355 + 0: The maximum resident set size (KB) = 887188 Test 109 rap_2threads_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/hrrr_control_2threads_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/hrrr_control_2threads_dyn32_phy32 Checking test 110 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3672,14 +3720,14 @@ Checking test 110 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 241.341593 - 0: The maximum resident set size (KB) = 878856 + 0: The total amount of wall time = 235.524657 + 0: The maximum resident set size (KB) = 875692 Test 110 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/hrrr_control_decomp_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/hrrr_control_decomp_dyn32_phy32 Checking test 111 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3726,14 +3774,14 @@ Checking test 111 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 271.928015 - 0: The maximum resident set size (KB) = 828388 + 0: The total amount of wall time = 266.245197 + 0: The maximum resident set size (KB) = 830620 Test 111 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/rap_restart_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rap_restart_dyn32_phy32 Checking test 112 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3772,28 +3820,28 @@ Checking test 112 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 377.536025 - 0: The maximum resident set size (KB) = 804588 + 0: The total amount of wall time = 369.406964 + 0: The maximum resident set size (KB) = 802484 Test 112 rap_restart_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/hrrr_control_restart_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/hrrr_control_restart_dyn32_phy32 Checking test 113 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 135.532356 - 0: The maximum resident set size (KB) = 755616 + 0: The total amount of wall time = 131.231682 + 0: The maximum resident set size (KB) = 765968 Test 113 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_dyn64_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/rap_control_dyn64_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn64_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rap_control_dyn64_phy32 Checking test 114 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3840,81 +3888,81 @@ Checking test 114 rap_control_dyn64_phy32 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 = 335.492895 - 0: The maximum resident set size (KB) = 872708 + 0: The total amount of wall time = 326.945626 + 0: The maximum resident set size (KB) = 860840 Test 114 rap_control_dyn64_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/rap_control_debug_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rap_control_debug_dyn32_phy32 Checking test 115 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 344.694557 - 0: The maximum resident set size (KB) = 999108 + 0: The total amount of wall time = 343.497872 + 0: The maximum resident set size (KB) = 1002776 Test 115 rap_control_debug_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/hrrr_control_debug_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/hrrr_control_debug_dyn32_phy32 Checking test 116 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 335.745733 - 0: The maximum resident set size (KB) = 1000108 + 0: The total amount of wall time = 336.339484 + 0: The maximum resident set size (KB) = 996172 Test 116 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/rap_control_dyn64_phy32_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rap_control_dyn64_phy32_debug Checking test 117 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 355.464336 - 0: The maximum resident set size (KB) = 1030488 + 0: The total amount of wall time = 349.995564 + 0: The maximum resident set size (KB) = 1033404 Test 117 rap_control_dyn64_phy32_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/hafs_regional_atm +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/hafs_regional_atm Checking test 118 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 354.872752 - 0: The maximum resident set size (KB) = 1218852 + 0: The total amount of wall time = 347.296756 + 0: The maximum resident set size (KB) = 1215948 Test 118 hafs_regional_atm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/hafs_regional_atm_thompson_gfdlsf +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/hafs_regional_atm_thompson_gfdlsf Checking test 119 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 436.578449 - 0: The maximum resident set size (KB) = 1584992 + 0: The total amount of wall time = 421.390908 + 0: The maximum resident set size (KB) = 1501860 Test 119 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm_ocn -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/hafs_regional_atm_ocn +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_ocn +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/hafs_regional_atm_ocn Checking test 120 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3923,14 +3971,14 @@ Checking test 120 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 534.671455 - 0: The maximum resident set size (KB) = 1295448 + 0: The total amount of wall time = 520.581187 + 0: The maximum resident set size (KB) = 1295728 Test 120 hafs_regional_atm_ocn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm_wav -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/hafs_regional_atm_wav +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_wav +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/hafs_regional_atm_wav Checking test 121 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3939,14 +3987,14 @@ Checking test 121 hafs_regional_atm_wav 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 = 942.736185 - 0: The maximum resident set size (KB) = 1322080 + 0: The total amount of wall time = 938.823522 + 0: The maximum resident set size (KB) = 1329032 Test 121 hafs_regional_atm_wav PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/hafs_regional_atm_ocn_wav +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_ocn_wav +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/hafs_regional_atm_ocn_wav Checking test 122 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3957,14 +4005,14 @@ Checking test 122 hafs_regional_atm_ocn_wav 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 = 1036.348543 - 0: The maximum resident set size (KB) = 1342588 + 0: The total amount of wall time = 1051.824401 + 0: The maximum resident set size (KB) = 1344376 -Test 122 hafs_regional_atm_ocn_wav PASS Tries: 2 +Test 122 hafs_regional_atm_ocn_wav PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_docn -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/hafs_regional_docn +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_docn +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/hafs_regional_docn Checking test 123 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3972,14 +4020,14 @@ Checking test 123 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 500.679887 - 0: The maximum resident set size (KB) = 1305512 + 0: The total amount of wall time = 495.646533 + 0: The maximum resident set size (KB) = 1304332 Test 123 hafs_regional_docn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_docn_oisst -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/hafs_regional_docn_oisst +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_docn_oisst +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/hafs_regional_docn_oisst Checking test 124 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3987,118 +4035,118 @@ Checking test 124 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 501.415864 - 0: The maximum resident set size (KB) = 1294880 + 0: The total amount of wall time = 498.988962 + 0: The maximum resident set size (KB) = 1294684 Test 124 hafs_regional_docn_oisst PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/datm_cdeps_control_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/datm_cdeps_control_cfsr Checking test 125 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 240.470648 - 0: The maximum resident set size (KB) = 968668 + 0: The total amount of wall time = 212.663901 + 0: The maximum resident set size (KB) = 958292 Test 125 datm_cdeps_control_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/datm_cdeps_restart_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/datm_cdeps_restart_cfsr Checking test 126 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 130.078509 - 0: The maximum resident set size (KB) = 949064 + 0: The total amount of wall time = 127.258548 + 0: The maximum resident set size (KB) = 934296 Test 126 datm_cdeps_restart_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_control_gefs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/datm_cdeps_control_gefs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/datm_cdeps_control_gefs Checking test 127 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 231.956769 - 0: The maximum resident set size (KB) = 859520 + 0: The total amount of wall time = 206.392628 + 0: The maximum resident set size (KB) = 858296 Test 127 datm_cdeps_control_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_iau_gefs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/datm_cdeps_iau_gefs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_iau_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/datm_cdeps_iau_gefs Checking test 128 datm_cdeps_iau_gefs 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 = 234.055694 - 0: The maximum resident set size (KB) = 858880 + 0: The total amount of wall time = 208.407964 + 0: The maximum resident set size (KB) = 858852 Test 128 datm_cdeps_iau_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_stochy_gefs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/datm_cdeps_stochy_gefs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_stochy_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/datm_cdeps_stochy_gefs Checking test 129 datm_cdeps_stochy_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 231.124768 - 0: The maximum resident set size (KB) = 868068 + 0: The total amount of wall time = 209.977541 + 0: The maximum resident set size (KB) = 857884 Test 129 datm_cdeps_stochy_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/datm_cdeps_ciceC_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_ciceC_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/datm_cdeps_ciceC_cfsr Checking test 130 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 229.099308 - 0: The maximum resident set size (KB) = 961516 + 0: The total amount of wall time = 212.994436 + 0: The maximum resident set size (KB) = 966324 Test 130 datm_cdeps_ciceC_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/datm_cdeps_bulk_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_bulk_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/datm_cdeps_bulk_cfsr Checking test 131 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 230.295576 - 0: The maximum resident set size (KB) = 966568 + 0: The total amount of wall time = 212.812762 + 0: The maximum resident set size (KB) = 972908 Test 131 datm_cdeps_bulk_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/datm_cdeps_bulk_gefs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_bulk_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/datm_cdeps_bulk_gefs Checking test 132 datm_cdeps_bulk_gefs 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 = 224.466458 - 0: The maximum resident set size (KB) = 857396 + 0: The total amount of wall time = 206.959867 + 0: The maximum resident set size (KB) = 863416 Test 132 datm_cdeps_bulk_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/datm_cdeps_mx025_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_mx025_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/datm_cdeps_mx025_cfsr Checking test 133 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4107,14 +4155,14 @@ Checking test 133 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 624.861325 - 0: The maximum resident set size (KB) = 764544 + 0: The total amount of wall time = 565.061457 + 0: The maximum resident set size (KB) = 759928 Test 133 datm_cdeps_mx025_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/datm_cdeps_mx025_gefs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_mx025_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/datm_cdeps_mx025_gefs Checking test 134 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4123,77 +4171,77 @@ Checking test 134 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 617.400673 - 0: The maximum resident set size (KB) = 742900 + 0: The total amount of wall time = 560.479713 + 0: The maximum resident set size (KB) = 733920 Test 134 datm_cdeps_mx025_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/datm_cdeps_multiple_files_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/datm_cdeps_multiple_files_cfsr Checking test 135 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 234.066664 - 0: The maximum resident set size (KB) = 954048 + 0: The total amount of wall time = 210.775143 + 0: The maximum resident set size (KB) = 975596 Test 135 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/datm_cdeps_3072x1536_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/datm_cdeps_3072x1536_cfsr Checking test 136 datm_cdeps_3072x1536_cfsr 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 = 319.607465 - 0: The maximum resident set size (KB) = 2268188 + 0: The total amount of wall time = 285.275057 + 0: The maximum resident set size (KB) = 2257540 Test 136 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_gfs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/datm_cdeps_gfs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_gfs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/datm_cdeps_gfs Checking test 137 datm_cdeps_gfs 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 = 338.366261 - 0: The maximum resident set size (KB) = 2255272 + 0: The total amount of wall time = 286.896573 + 0: The maximum resident set size (KB) = 2251288 Test 137 datm_cdeps_gfs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_debug_cfsr -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/datm_cdeps_debug_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_debug_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/datm_cdeps_debug_cfsr Checking test 138 datm_cdeps_debug_cfsr 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 = 466.157964 - 0: The maximum resident set size (KB) = 907748 + 0: The total amount of wall time = 465.978073 + 0: The maximum resident set size (KB) = 910692 Test 138 datm_cdeps_debug_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_control_cfsr_faster -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/datm_cdeps_control_cfsr_faster +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_cfsr_faster +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/datm_cdeps_control_cfsr_faster Checking test 139 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.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 = 217.227167 - 0: The maximum resident set size (KB) = 960644 + 0: The total amount of wall time = 215.326588 + 0: The maximum resident set size (KB) = 964060 Test 139 datm_cdeps_control_cfsr_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/datm_cdeps_lnd_gswp3 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/datm_cdeps_lnd_gswp3 Checking test 140 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4202,14 +4250,14 @@ Checking test 140 datm_cdeps_lnd_gswp3 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 = 17.378304 - 0: The maximum resident set size (KB) = 241792 + 0: The total amount of wall time = 13.941528 + 0: The maximum resident set size (KB) = 246064 Test 140 datm_cdeps_lnd_gswp3 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/datm_cdeps_lnd_gswp3_rst +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/datm_cdeps_lnd_gswp3_rst Checking test 141 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4218,14 +4266,14 @@ Checking test 141 datm_cdeps_lnd_gswp3_rst 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 = 19.821556 - 0: The maximum resident set size (KB) = 240572 + 0: The total amount of wall time = 19.761578 + 0: The maximum resident set size (KB) = 243624 Test 141 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_atmlnd_sbs -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_p8_atmlnd_sbs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_atmlnd_sbs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_p8_atmlnd_sbs Checking test 142 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4310,14 +4358,14 @@ Checking test 142 control_p8_atmlnd_sbs 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 = 293.761179 - 0: The maximum resident set size (KB) = 1596776 + 0: The total amount of wall time = 290.219215 + 0: The maximum resident set size (KB) = 1584776 Test 142 control_p8_atmlnd_sbs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/atmwav_control_noaero_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/atmwav_control_noaero_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/atmwav_control_noaero_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/atmwav_control_noaero_p8 Checking test 143 atmwav_control_noaero_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4360,14 +4408,14 @@ Checking test 143 atmwav_control_noaero_p8 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 = 131.395508 - 0: The maximum resident set size (KB) = 1565540 + 0: The total amount of wall time = 130.869141 + 0: The maximum resident set size (KB) = 1556860 Test 143 atmwav_control_noaero_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_atmwav -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/control_atmwav +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_atmwav +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_atmwav Checking test 144 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4411,14 +4459,14 @@ Checking test 144 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 123.748846 - 0: The maximum resident set size (KB) = 598332 + 0: The total amount of wall time = 120.965962 + 0: The maximum resident set size (KB) = 598244 Test 144 control_atmwav PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/atmaero_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/atmaero_control_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/atmaero_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/atmaero_control_p8 Checking test 145 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4462,14 +4510,14 @@ Checking test 145 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 312.952949 - 0: The maximum resident set size (KB) = 1638584 + 0: The total amount of wall time = 310.451822 + 0: The maximum resident set size (KB) = 1636900 Test 145 atmaero_control_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/atmaero_control_p8_rad -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/atmaero_control_p8_rad +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/atmaero_control_p8_rad +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/atmaero_control_p8_rad Checking test 146 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4513,14 +4561,14 @@ Checking test 146 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 382.516810 - 0: The maximum resident set size (KB) = 1663760 + 0: The total amount of wall time = 374.059363 + 0: The maximum resident set size (KB) = 1682180 Test 146 atmaero_control_p8_rad PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_199935/atmaero_control_p8_rad_micro +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/atmaero_control_p8_rad_micro +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/atmaero_control_p8_rad_micro Checking test 147 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4564,72 +4612,12 @@ Checking test 147 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 389.306770 - 0: The maximum resident set size (KB) = 1667400 + 0: The total amount of wall time = 381.022397 + 0: The maximum resident set size (KB) = 1684424 Test 147 atmaero_control_p8_rad_micro PASS -FAILED TESTS: -Test control_c384gdas 028 failed in run_test failed - -REGRESSION TEST FAILED -Wed May 3 15:27:20 UTC 2023 -Elapsed time: 03h:03m:50s. Have a nice day! -Wed May 3 16:08:06 UTC 2023 -Start Regression test - -Compile 001 elapsed time 1816 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230430/INTEL/control_c384gdas -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_13527/control_c384gdas -Checking test 001 control_c384gdas results .... - Comparing sfcf000.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf006.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF06 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF06 .........OK - Comparing RESTART/20210322.060000.coupler.res .........OK - Comparing RESTART/20210322.060000.fv_core.res.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 841.328273 - 0: The maximum resident set size (KB) = 1194412 - -Test 001 control_c384gdas PASS - REGRESSION TEST WAS SUCCESSFUL -Wed May 3 17:06:47 UTC 2023 -Elapsed time: 00h:58m:42s. Have a nice day! +Fri May 5 22:02:09 UTC 2023 +Elapsed time: 02h:58m:26s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index 3d513898556..eb808b39172 100755 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,43 +1,43 @@ -Wed May 3 07:34:26 CDT 2023 +Fri May 5 07:52:08 CDT 2023 Start Regression test -Compile 001 elapsed time 792 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 792 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 715 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 273 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 001 elapsed time 727 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 784 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 737 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 252 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON Compile 005 elapsed time 231 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 700 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 658 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 844 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 700 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 010 elapsed time 616 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 612 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 609 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 673 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 231 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 015 elapsed time 202 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 626 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 546 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 211 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 211 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 611 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 021 elapsed time 198 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 804 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 695 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 024 elapsed time 217 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 127 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 196 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 53 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 602 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 611 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 612 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 594 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 546 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 033 elapsed time 174 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 034 elapsed time 663 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8_mixedmode -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/cpld_control_p8_mixedmode +Compile 006 elapsed time 672 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 678 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 848 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 697 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 010 elapsed time 659 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 591 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 579 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 744 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 234 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 015 elapsed time 222 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 610 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 576 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 228 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 230 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 655 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 021 elapsed time 213 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 768 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 642 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 024 elapsed time 202 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 124 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 207 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 52 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 615 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 644 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 620 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 552 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 582 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 033 elapsed time 224 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 034 elapsed time 673 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8_mixedmode +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -102,14 +102,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 307.691832 - 0: The maximum resident set size (KB) = 3153408 + 0: The total amount of wall time = 307.548649 + 0: The maximum resident set size (KB) = 3139896 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_gfsv17 -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/cpld_control_gfsv17 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_gfsv17 +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -173,14 +173,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 226.017431 - 0: The maximum resident set size (KB) = 1727196 + 0: The total amount of wall time = 232.241227 + 0: The maximum resident set size (KB) = 1720856 Test 002 cpld_control_gfsv17 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/cpld_control_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -245,14 +245,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 345.786066 - 0: The maximum resident set size (KB) = 3177360 + 0: The total amount of wall time = 357.914099 + 0: The maximum resident set size (KB) = 3177288 Test 003 cpld_control_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/cpld_restart_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -305,14 +305,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 202.406468 - 0: The maximum resident set size (KB) = 3050180 + 0: The total amount of wall time = 202.296976 + 0: The maximum resident set size (KB) = 3047632 Test 004 cpld_restart_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/cpld_control_qr_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -377,14 +377,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 342.995234 - 0: The maximum resident set size (KB) = 3192232 + 0: The total amount of wall time = 360.179599 + 0: The maximum resident set size (KB) = 3188064 Test 005 cpld_control_qr_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/cpld_restart_qr_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -437,14 +437,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 205.709155 - 0: The maximum resident set size (KB) = 3061680 + 0: The total amount of wall time = 208.385827 + 0: The maximum resident set size (KB) = 3058176 Test 006 cpld_restart_qr_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/cpld_2threads_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -497,14 +497,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 411.370032 - 0: The maximum resident set size (KB) = 3517272 + 0: The total amount of wall time = 409.268482 + 0: The maximum resident set size (KB) = 3520716 Test 007 cpld_2threads_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/cpld_decomp_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -557,14 +557,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 342.310087 - 0: The maximum resident set size (KB) = 3175612 + 0: The total amount of wall time = 355.210028 + 0: The maximum resident set size (KB) = 3173276 Test 008 cpld_decomp_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/cpld_mpi_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -617,14 +617,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 284.117197 - 0: The maximum resident set size (KB) = 3026840 + 0: The total amount of wall time = 300.078595 + 0: The maximum resident set size (KB) = 3014876 Test 009 cpld_mpi_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_ciceC_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/cpld_control_ciceC_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_ciceC_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -689,14 +689,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 347.818941 - 0: The maximum resident set size (KB) = 3181480 + 0: The total amount of wall time = 356.780353 + 0: The maximum resident set size (KB) = 3188632 Test 010 cpld_control_ciceC_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/cpld_control_c192_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_c192_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/cpld_control_c192_p8 Checking test 011 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -749,14 +749,14 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 636.532061 - 0: The maximum resident set size (KB) = 3252504 + 0: The total amount of wall time = 647.009273 + 0: The maximum resident set size (KB) = 3263292 Test 011 cpld_control_c192_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/cpld_restart_c192_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_c192_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/cpld_restart_c192_p8 Checking test 012 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -809,14 +809,14 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 444.394532 - 0: The maximum resident set size (KB) = 3162048 + 0: The total amount of wall time = 468.804715 + 0: The maximum resident set size (KB) = 3158964 Test 012 cpld_restart_c192_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_bmark_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/cpld_bmark_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_bmark_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/cpld_bmark_p8 Checking test 013 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -864,14 +864,14 @@ Checking test 013 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 884.215054 - 0: The maximum resident set size (KB) = 4045644 + 0: The total amount of wall time = 873.910371 + 0: The maximum resident set size (KB) = 4028124 Test 013 cpld_bmark_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_bmark_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/cpld_restart_bmark_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_bmark_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/cpld_restart_bmark_p8 Checking test 014 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -919,14 +919,14 @@ Checking test 014 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 527.672043 - 0: The maximum resident set size (KB) = 3978556 + 0: The total amount of wall time = 558.280717 + 0: The maximum resident set size (KB) = 3977876 Test 014 cpld_restart_bmark_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_noaero_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/cpld_control_noaero_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_noaero_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/cpld_control_noaero_p8 Checking test 015 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -990,14 +990,14 @@ Checking test 015 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 256.066037 - 0: The maximum resident set size (KB) = 1721512 + 0: The total amount of wall time = 257.305183 + 0: The maximum resident set size (KB) = 1720788 Test 015 cpld_control_noaero_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_c96_noaero_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/cpld_control_nowave_noaero_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_c96_noaero_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/cpld_control_nowave_noaero_p8 Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1059,14 +1059,14 @@ Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 261.917029 - 0: The maximum resident set size (KB) = 1771052 + 0: The total amount of wall time = 260.432685 + 0: The maximum resident set size (KB) = 1760224 Test 016 cpld_control_nowave_noaero_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_debug_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/cpld_debug_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_debug_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/cpld_debug_p8 Checking test 017 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1119,14 +1119,14 @@ Checking test 017 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 553.609249 - 0: The maximum resident set size (KB) = 3244908 + 0: The total amount of wall time = 555.601098 + 0: The maximum resident set size (KB) = 3240692 Test 017 cpld_debug_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_debug_noaero_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/cpld_debug_noaero_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_debug_noaero_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/cpld_debug_noaero_p8 Checking test 018 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1178,14 +1178,14 @@ Checking test 018 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 381.883669 - 0: The maximum resident set size (KB) = 1739324 + 0: The total amount of wall time = 377.061931 + 0: The maximum resident set size (KB) = 1744384 Test 018 cpld_debug_noaero_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_noaero_p8_agrid -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/cpld_control_noaero_p8_agrid +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_noaero_p8_agrid +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/cpld_control_noaero_p8_agrid Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1247,14 +1247,14 @@ Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 270.185408 - 0: The maximum resident set size (KB) = 1769148 + 0: The total amount of wall time = 270.702443 + 0: The maximum resident set size (KB) = 1759696 Test 019 cpld_control_noaero_p8_agrid PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_c48 -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/cpld_control_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/cpld_control_c48 Checking test 020 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1304,14 +1304,14 @@ Checking test 020 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 498.765477 - 0: The maximum resident set size (KB) = 2801360 + 0: The total amount of wall time = 506.490802 + 0: The maximum resident set size (KB) = 2812488 Test 020 cpld_control_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_warmstart_c48 -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/cpld_warmstart_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_warmstart_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/cpld_warmstart_c48 Checking test 021 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1361,14 +1361,14 @@ Checking test 021 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 137.142063 - 0: The maximum resident set size (KB) = 2810760 + 0: The total amount of wall time = 139.360241 + 0: The maximum resident set size (KB) = 2809168 Test 021 cpld_warmstart_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_warmstart_c48 -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/cpld_restart_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_warmstart_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/cpld_restart_c48 Checking test 022 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1418,14 +1418,14 @@ Checking test 022 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 75.763378 - 0: The maximum resident set size (KB) = 2249136 + 0: The total amount of wall time = 76.010560 + 0: The maximum resident set size (KB) = 2250096 Test 022 cpld_restart_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8_faster -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/cpld_control_p8_faster +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/cpld_control_p8_faster Checking test 023 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1490,14 +1490,14 @@ Checking test 023 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 323.401551 - 0: The maximum resident set size (KB) = 3184316 + 0: The total amount of wall time = 327.169150 + 0: The maximum resident set size (KB) = 3184968 Test 023 cpld_control_p8_faster PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_flake -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_flake +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_flake +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_flake Checking test 024 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1508,14 +1508,14 @@ Checking test 024 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 193.367106 - 0: The maximum resident set size (KB) = 681000 + 0: The total amount of wall time = 197.381963 + 0: The maximum resident set size (KB) = 682792 Test 024 control_flake PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_CubedSphereGrid -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_CubedSphereGrid +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_CubedSphereGrid +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_CubedSphereGrid Checking test 025 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1542,28 +1542,28 @@ Checking test 025 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 130.808745 - 0: The maximum resident set size (KB) = 630048 + 0: The total amount of wall time = 132.555403 + 0: The maximum resident set size (KB) = 638180 Test 025 control_CubedSphereGrid PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_CubedSphereGrid_parallel -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_CubedSphereGrid_parallel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_CubedSphereGrid_parallel +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_CubedSphereGrid_parallel Checking test 026 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc .........OK + Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 127.544161 - 0: The maximum resident set size (KB) = 631400 + 0: The total amount of wall time = 129.343668 + 0: The maximum resident set size (KB) = 628436 Test 026 control_CubedSphereGrid_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_latlon -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_latlon +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_latlon +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_latlon Checking test 027 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1574,32 +1574,32 @@ Checking test 027 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 133.114963 - 0: The maximum resident set size (KB) = 632800 + 0: The total amount of wall time = 134.839770 + 0: The maximum resident set size (KB) = 632208 Test 027 control_latlon PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_wrtGauss_netcdf_parallel -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_wrtGauss_netcdf_parallel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wrtGauss_netcdf_parallel +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_wrtGauss_netcdf_parallel Checking test 028 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 138.204804 - 0: The maximum resident set size (KB) = 634284 + 0: The total amount of wall time = 137.458043 + 0: The maximum resident set size (KB) = 628664 Test 028 control_wrtGauss_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_c48 -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_c48 Checking test 029 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1638,14 +1638,14 @@ Checking test 029 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 346.074144 -0: The maximum resident set size (KB) = 823228 +0: The total amount of wall time = 344.387035 +0: The maximum resident set size (KB) = 826364 Test 029 control_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_c192 -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_c192 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c192 +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_c192 Checking test 030 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1656,14 +1656,14 @@ Checking test 030 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 529.133649 - 0: The maximum resident set size (KB) = 774748 + 0: The total amount of wall time = 527.800311 + 0: The maximum resident set size (KB) = 765032 Test 030 control_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_c384 -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_c384 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c384 +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_c384 Checking test 031 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1674,14 +1674,14 @@ Checking test 031 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 576.907635 - 0: The maximum resident set size (KB) = 1230928 + 0: The total amount of wall time = 631.923186 + 0: The maximum resident set size (KB) = 1235784 Test 031 control_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_c384gdas -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_c384gdas +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c384gdas +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_c384gdas Checking test 032 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1724,14 +1724,14 @@ Checking test 032 control_c384gdas 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 = 511.015644 - 0: The maximum resident set size (KB) = 1339056 + 0: The total amount of wall time = 563.613496 + 0: The maximum resident set size (KB) = 1344236 Test 032 control_c384gdas PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_stochy -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_stochy +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_stochy +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_stochy Checking test 033 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1742,28 +1742,28 @@ Checking test 033 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 87.744372 - 0: The maximum resident set size (KB) = 637348 + 0: The total amount of wall time = 89.376188 + 0: The maximum resident set size (KB) = 633812 Test 033 control_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_stochy -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_stochy_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_stochy +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_stochy_restart Checking test 034 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 47.960771 - 0: The maximum resident set size (KB) = 486548 + 0: The total amount of wall time = 48.065242 + 0: The maximum resident set size (KB) = 481184 Test 034 control_stochy_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_lndp -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_lndp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_lndp +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_lndp Checking test 035 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1774,14 +1774,14 @@ Checking test 035 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 81.338104 - 0: The maximum resident set size (KB) = 633132 + 0: The total amount of wall time = 81.396312 + 0: The maximum resident set size (KB) = 633560 Test 035 control_lndp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_iovr4 -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_iovr4 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_iovr4 +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_iovr4 Checking test 036 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1796,14 +1796,14 @@ Checking test 036 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.725830 - 0: The maximum resident set size (KB) = 632444 + 0: The total amount of wall time = 136.397578 + 0: The maximum resident set size (KB) = 631192 Test 036 control_iovr4 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_iovr5 -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_iovr5 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_iovr5 +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_iovr5 Checking test 037 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1818,14 +1818,14 @@ Checking test 037 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.685619 - 0: The maximum resident set size (KB) = 634072 + 0: The total amount of wall time = 135.675043 + 0: The maximum resident set size (KB) = 634052 Test 037 control_iovr5 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_p8 Checking test 038 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1872,14 +1872,14 @@ Checking test 038 control_p8 results .... Comparing 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.028696 - 0: The maximum resident set size (KB) = 1605564 + 0: The total amount of wall time = 173.210018 + 0: The maximum resident set size (KB) = 1599508 Test 038 control_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_restart_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_restart_p8 Checking test 039 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1918,14 +1918,14 @@ Checking test 039 control_restart_p8 results .... Comparing 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.002158 - 0: The maximum resident set size (KB) = 884792 + 0: The total amount of wall time = 88.870671 + 0: The maximum resident set size (KB) = 882340 Test 039 control_restart_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_qr_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_qr_p8 Checking test 040 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1972,14 +1972,14 @@ Checking test 040 control_qr_p8 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.269687 - 0: The maximum resident set size (KB) = 1617376 + 0: The total amount of wall time = 173.289049 + 0: The maximum resident set size (KB) = 1608020 Test 040 control_qr_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_restart_qr_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_restart_qr_p8 Checking test 041 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2018,14 +2018,14 @@ Checking test 041 control_restart_qr_p8 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.220621 - 0: The maximum resident set size (KB) = 872932 + 0: The total amount of wall time = 91.708427 + 0: The maximum resident set size (KB) = 874988 Test 041 control_restart_qr_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_decomp_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_decomp_p8 Checking test 042 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2068,14 +2068,14 @@ Checking test 042 control_decomp_p8 results .... Comparing 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.445486 - 0: The maximum resident set size (KB) = 1587836 + 0: The total amount of wall time = 178.654045 + 0: The maximum resident set size (KB) = 1597396 Test 042 control_decomp_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_2threads_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_2threads_p8 Checking test 043 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2118,14 +2118,14 @@ Checking test 043 control_2threads_p8 results .... Comparing 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.137685 - 0: The maximum resident set size (KB) = 1696824 + 0: The total amount of wall time = 180.308877 + 0: The maximum resident set size (KB) = 1701376 Test 043 control_2threads_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_lndp -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_p8_lndp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_lndp +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_p8_lndp Checking test 044 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2144,14 +2144,14 @@ Checking test 044 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 311.591426 - 0: The maximum resident set size (KB) = 1600508 + 0: The total amount of wall time = 311.614121 + 0: The maximum resident set size (KB) = 1613840 Test 044 control_p8_lndp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_rrtmgp -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_p8_rrtmgp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_rrtmgp +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_p8_rrtmgp Checking test 045 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2198,14 +2198,14 @@ Checking test 045 control_p8_rrtmgp results .... Comparing 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.844177 - 0: The maximum resident set size (KB) = 1679184 + 0: The total amount of wall time = 228.532895 + 0: The maximum resident set size (KB) = 1679000 Test 045 control_p8_rrtmgp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_mynn -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_p8_mynn +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_mynn +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_p8_mynn Checking test 046 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2252,14 +2252,14 @@ Checking test 046 control_p8_mynn results .... Comparing 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.661883 - 0: The maximum resident set size (KB) = 1609480 + 0: The total amount of wall time = 172.067298 + 0: The maximum resident set size (KB) = 1608360 Test 046 control_p8_mynn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/merra2_thompson -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/merra2_thompson +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/merra2_thompson +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/merra2_thompson Checking test 047 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2306,14 +2306,14 @@ Checking test 047 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 188.945876 - 0: The maximum resident set size (KB) = 1618088 + 0: The total amount of wall time = 190.554459 + 0: The maximum resident set size (KB) = 1615092 Test 047 merra2_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/regional_control +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/regional_control Checking test 048 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2324,28 +2324,28 @@ Checking test 048 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 294.561270 - 0: The maximum resident set size (KB) = 868772 + 0: The total amount of wall time = 298.280553 + 0: The maximum resident set size (KB) = 872800 Test 048 regional_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/regional_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/regional_restart Checking test 049 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 152.709925 - 0: The maximum resident set size (KB) = 831132 + 0: The total amount of wall time = 152.991268 + 0: The maximum resident set size (KB) = 864688 Test 049 regional_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/regional_control_qr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/regional_control_qr Checking test 050 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2356,28 +2356,28 @@ Checking test 050 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 297.447452 - 0: The maximum resident set size (KB) = 835932 + 0: The total amount of wall time = 299.385670 + 0: The maximum resident set size (KB) = 871728 Test 050 regional_control_qr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/regional_restart_qr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/regional_restart_qr Checking test 051 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 151.906564 - 0: The maximum resident set size (KB) = 862640 + 0: The total amount of wall time = 152.305174 + 0: The maximum resident set size (KB) = 863752 Test 051 regional_restart_qr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/regional_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/regional_decomp Checking test 052 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2388,14 +2388,14 @@ Checking test 052 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 312.885741 - 0: The maximum resident set size (KB) = 861008 + 0: The total amount of wall time = 315.880143 + 0: The maximum resident set size (KB) = 864372 Test 052 regional_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/regional_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/regional_2threads Checking test 053 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2406,14 +2406,14 @@ Checking test 053 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 206.896128 - 0: The maximum resident set size (KB) = 847416 + 0: The total amount of wall time = 207.590165 + 0: The maximum resident set size (KB) = 851968 Test 053 regional_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_noquilt -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/regional_noquilt +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_noquilt +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/regional_noquilt Checking test 054 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2421,28 +2421,28 @@ Checking test 054 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 316.200582 - 0: The maximum resident set size (KB) = 870632 + 0: The total amount of wall time = 317.554266 + 0: The maximum resident set size (KB) = 861256 Test 054 regional_noquilt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_netcdf_parallel -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/regional_netcdf_parallel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_netcdf_parallel +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/regional_netcdf_parallel Checking test 055 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK + Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 291.258780 - 0: The maximum resident set size (KB) = 864384 + 0: The total amount of wall time = 295.690273 + 0: The maximum resident set size (KB) = 864824 Test 055 regional_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/regional_2dwrtdecomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/regional_2dwrtdecomp Checking test 056 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2453,14 +2453,14 @@ Checking test 056 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 298.024154 - 0: The maximum resident set size (KB) = 868120 + 0: The total amount of wall time = 295.887629 + 0: The maximum resident set size (KB) = 871872 Test 056 regional_2dwrtdecomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/fv3_regional_wofs -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/regional_wofs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/fv3_regional_wofs +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/regional_wofs Checking test 057 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2471,14 +2471,14 @@ Checking test 057 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 374.669524 - 0: The maximum resident set size (KB) = 628336 + 0: The total amount of wall time = 374.714638 + 0: The maximum resident set size (KB) = 630480 Test 057 regional_wofs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/rap_control +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rap_control Checking test 058 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2525,14 +2525,14 @@ Checking test 058 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 457.196709 - 0: The maximum resident set size (KB) = 1062448 + 0: The total amount of wall time = 459.895601 + 0: The maximum resident set size (KB) = 1061504 Test 058 rap_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_spp_sppt_shum_skeb -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/regional_spp_sppt_shum_skeb +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_spp_sppt_shum_skeb +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/regional_spp_sppt_shum_skeb Checking test 059 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2543,14 +2543,14 @@ Checking test 059 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 265.392853 - 0: The maximum resident set size (KB) = 1180744 + 0: The total amount of wall time = 269.806506 + 0: The maximum resident set size (KB) = 1195036 Test 059 regional_spp_sppt_shum_skeb PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/rap_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rap_decomp Checking test 060 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2597,14 +2597,14 @@ Checking test 060 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 479.020339 - 0: The maximum resident set size (KB) = 1003688 + 0: The total amount of wall time = 486.889317 + 0: The maximum resident set size (KB) = 1001408 Test 060 rap_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/rap_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rap_2threads Checking test 061 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2651,14 +2651,14 @@ Checking test 061 rap_2threads results .... Comparing 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.199513 - 0: The maximum resident set size (KB) = 1139724 + 0: The total amount of wall time = 470.925786 + 0: The maximum resident set size (KB) = 1140860 Test 061 rap_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/rap_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rap_restart Checking test 062 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2697,14 +2697,14 @@ Checking test 062 rap_restart results .... Comparing 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.262486 - 0: The maximum resident set size (KB) = 975168 + 0: The total amount of wall time = 232.984834 + 0: The maximum resident set size (KB) = 964600 Test 062 rap_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_sfcdiff -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/rap_sfcdiff +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rap_sfcdiff Checking test 063 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2751,14 +2751,14 @@ Checking test 063 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 459.023354 - 0: The maximum resident set size (KB) = 1053916 + 0: The total amount of wall time = 459.907947 + 0: The maximum resident set size (KB) = 1056936 Test 063 rap_sfcdiff PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_sfcdiff -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/rap_sfcdiff_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rap_sfcdiff_decomp Checking test 064 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2805,14 +2805,14 @@ Checking test 064 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 482.580329 - 0: The maximum resident set size (KB) = 1010264 + 0: The total amount of wall time = 484.870987 + 0: The maximum resident set size (KB) = 1001776 Test 064 rap_sfcdiff_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_sfcdiff -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/rap_sfcdiff_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rap_sfcdiff_restart Checking test 065 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2851,14 +2851,14 @@ Checking test 065 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 340.790363 - 0: The maximum resident set size (KB) = 963932 + 0: The total amount of wall time = 341.602714 + 0: The maximum resident set size (KB) = 985628 Test 065 rap_sfcdiff_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/hrrr_control +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hrrr_control Checking test 066 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2905,14 +2905,14 @@ Checking test 066 hrrr_control results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 426.847859 - 0: The maximum resident set size (KB) = 1060044 + 0: The total amount of wall time = 427.895376 + 0: The maximum resident set size (KB) = 1061528 Test 066 hrrr_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/hrrr_control_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hrrr_control_decomp Checking test 067 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2959,14 +2959,14 @@ Checking test 067 hrrr_control_decomp results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 447.761807 - 0: The maximum resident set size (KB) = 1004252 + 0: The total amount of wall time = 451.023666 + 0: The maximum resident set size (KB) = 1000320 Test 067 hrrr_control_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/hrrr_control_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hrrr_control_2threads Checking test 068 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3013,28 +3013,28 @@ Checking test 068 hrrr_control_2threads results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 360.169862 - 0: The maximum resident set size (KB) = 1077608 + 0: The total amount of wall time = 363.360954 + 0: The maximum resident set size (KB) = 1081184 Test 068 hrrr_control_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/hrrr_control_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hrrr_control_restart Checking test 069 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 318.506086 - 0: The maximum resident set size (KB) = 987400 + 0: The total amount of wall time = 317.470174 + 0: The maximum resident set size (KB) = 986840 Test 069 hrrr_control_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_v1beta -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/rrfs_v1beta +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1beta +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rrfs_v1beta Checking test 070 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3081,14 +3081,14 @@ Checking test 070 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 454.691374 - 0: The maximum resident set size (KB) = 1053960 + 0: The total amount of wall time = 459.890847 + 0: The maximum resident set size (KB) = 1052904 Test 070 rrfs_v1beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_v1nssl -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/rrfs_v1nssl +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1nssl +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rrfs_v1nssl Checking test 071 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3103,14 +3103,14 @@ Checking test 071 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 539.935359 - 0: The maximum resident set size (KB) = 693804 + 0: The total amount of wall time = 539.516662 + 0: The maximum resident set size (KB) = 692356 Test 071 rrfs_v1nssl PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/rrfs_v1nssl_nohailnoccn +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rrfs_v1nssl_nohailnoccn Checking test 072 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3125,14 +3125,14 @@ Checking test 072 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 526.895414 - 0: The maximum resident set size (KB) = 759220 + 0: The total amount of wall time = 524.216888 + 0: The maximum resident set size (KB) = 756668 Test 072 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rrfs_smoke_conus13km_hrrr_warm Checking test 073 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3141,14 +3141,14 @@ Checking test 073 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 150.067244 - 0: The maximum resident set size (KB) = 1037284 + 0: The total amount of wall time = 153.538731 + 0: The maximum resident set size (KB) = 1038772 Test 073 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 074 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3157,14 +3157,14 @@ Checking test 074 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 98.617390 - 0: The maximum resident set size (KB) = 946228 + 0: The total amount of wall time = 100.793474 + 0: The maximum resident set size (KB) = 942900 Test 074 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_conus13km_hrrr_warm -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/rrfs_conus13km_hrrr_warm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_conus13km_hrrr_warm +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rrfs_conus13km_hrrr_warm Checking test 075 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3173,14 +3173,14 @@ Checking test 075 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 133.577182 - 0: The maximum resident set size (KB) = 994472 + 0: The total amount of wall time = 134.821108 + 0: The maximum resident set size (KB) = 990864 Test 075 rrfs_conus13km_hrrr_warm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rrfs_smoke_conus13km_radar_tten_warm Checking test 076 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3189,26 +3189,26 @@ Checking test 076 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 151.155395 - 0: The maximum resident set size (KB) = 1041056 + 0: The total amount of wall time = 153.938614 + 0: The maximum resident set size (KB) = 1035368 Test 076 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 077 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 69.858110 - 0: The maximum resident set size (KB) = 978872 + 0: The total amount of wall time = 70.428764 + 0: The maximum resident set size (KB) = 976392 Test 077 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_csawmg -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_csawmg +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmg +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_csawmg Checking test 078 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3219,14 +3219,14 @@ Checking test 078 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 342.077042 - 0: The maximum resident set size (KB) = 728448 + 0: The total amount of wall time = 340.238892 + 0: The maximum resident set size (KB) = 725100 Test 078 control_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_csawmgt -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_csawmgt +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmgt +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_csawmgt Checking test 079 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3237,14 +3237,14 @@ Checking test 079 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 338.186308 - 0: The maximum resident set size (KB) = 727104 + 0: The total amount of wall time = 336.681337 + 0: The maximum resident set size (KB) = 728808 Test 079 control_csawmgt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_ras -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_ras +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_ras +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_ras Checking test 080 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3255,26 +3255,26 @@ Checking test 080 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 181.846534 - 0: The maximum resident set size (KB) = 728328 + 0: The total amount of wall time = 180.969201 + 0: The maximum resident set size (KB) = 723840 Test 080 control_ras PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_wam -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_wam +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wam +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_wam Checking test 081 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 112.738742 - 0: The maximum resident set size (KB) = 650696 + 0: The total amount of wall time = 112.684297 + 0: The maximum resident set size (KB) = 648476 Test 081 control_wam PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_faster -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_p8_faster +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_p8_faster Checking test 082 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3321,14 +3321,14 @@ Checking test 082 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 152.940984 - 0: The maximum resident set size (KB) = 1604780 + 0: The total amount of wall time = 154.228930 + 0: The maximum resident set size (KB) = 1606244 Test 082 control_p8_faster PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control_faster -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/regional_control_faster +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/regional_control_faster Checking test 083 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3339,56 +3339,56 @@ Checking test 083 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 273.116099 - 0: The maximum resident set size (KB) = 873724 + 0: The total amount of wall time = 269.397706 + 0: The maximum resident set size (KB) = 875092 Test 083 regional_control_faster PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 084 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 825.321942 - 0: The maximum resident set size (KB) = 1064108 + 0: The total amount of wall time = 861.862194 + 0: The maximum resident set size (KB) = 1060576 Test 084 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 085 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 492.342913 - 0: The maximum resident set size (KB) = 982972 + 0: The total amount of wall time = 482.121075 + 0: The maximum resident set size (KB) = 973464 Test 085 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/rrfs_conus13km_hrrr_warm_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rrfs_conus13km_hrrr_warm_debug Checking test 086 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 757.993202 - 0: The maximum resident set size (KB) = 1022524 + 0: The total amount of wall time = 755.813607 + 0: The maximum resident set size (KB) = 1021672 Test 086 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_CubedSphereGrid_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_CubedSphereGrid_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_CubedSphereGrid_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_CubedSphereGrid_debug Checking test 087 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3415,348 +3415,348 @@ Checking test 087 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 152.033336 - 0: The maximum resident set size (KB) = 793256 + 0: The total amount of wall time = 151.546177 + 0: The maximum resident set size (KB) = 788608 Test 087 control_CubedSphereGrid_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_wrtGauss_netcdf_parallel_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_wrtGauss_netcdf_parallel_debug Checking test 088 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 150.866208 - 0: The maximum resident set size (KB) = 797140 + 0: The total amount of wall time = 150.571962 + 0: The maximum resident set size (KB) = 789040 Test 088 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_stochy_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_stochy_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_stochy_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_stochy_debug Checking test 089 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 174.089099 - 0: The maximum resident set size (KB) = 798228 + 0: The total amount of wall time = 169.984955 + 0: The maximum resident set size (KB) = 802700 Test 089 control_stochy_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_lndp_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_lndp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_lndp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_lndp_debug Checking test 090 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 151.612288 - 0: The maximum resident set size (KB) = 802288 + 0: The total amount of wall time = 149.047219 + 0: The maximum resident set size (KB) = 797284 Test 090 control_lndp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_csawmg_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_csawmg_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmg_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_csawmg_debug Checking test 091 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 231.259220 - 0: The maximum resident set size (KB) = 845044 + 0: The total amount of wall time = 232.427728 + 0: The maximum resident set size (KB) = 841196 Test 091 control_csawmg_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_csawmgt_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_csawmgt_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmgt_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_csawmgt_debug Checking test 092 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 229.228074 - 0: The maximum resident set size (KB) = 845204 + 0: The total amount of wall time = 228.848874 + 0: The maximum resident set size (KB) = 841652 Test 092 control_csawmgt_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_ras_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_ras_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_ras_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_ras_debug Checking test 093 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 149.151060 - 0: The maximum resident set size (KB) = 803920 + 0: The total amount of wall time = 154.826275 + 0: The maximum resident set size (KB) = 801220 Test 093 control_ras_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_diag_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_diag_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_diag_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_diag_debug Checking test 094 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 151.660047 - 0: The maximum resident set size (KB) = 855524 + 0: The total amount of wall time = 156.382737 + 0: The maximum resident set size (KB) = 852888 Test 094 control_diag_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_debug_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_debug_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_debug_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_debug_p8 Checking test 095 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 170.626916 - 0: The maximum resident set size (KB) = 1619696 + 0: The total amount of wall time = 169.103079 + 0: The maximum resident set size (KB) = 1622220 Test 095 control_debug_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/regional_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/regional_debug Checking test 096 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 991.112235 - 0: The maximum resident set size (KB) = 888960 + 0: The total amount of wall time = 990.838393 + 0: The maximum resident set size (KB) = 881360 Test 096 regional_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/rap_control_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rap_control_debug Checking test 097 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.972285 - 0: The maximum resident set size (KB) = 1178392 + 0: The total amount of wall time = 271.305433 + 0: The maximum resident set size (KB) = 1178580 Test 097 rap_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/hrrr_control_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hrrr_control_debug Checking test 098 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.033972 - 0: The maximum resident set size (KB) = 1176620 + 0: The total amount of wall time = 272.143827 + 0: The maximum resident set size (KB) = 1167300 Test 098 hrrr_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/rap_unified_drag_suite_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rap_unified_drag_suite_debug Checking test 099 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 283.445570 - 0: The maximum resident set size (KB) = 1149508 + 0: The total amount of wall time = 296.229206 + 0: The maximum resident set size (KB) = 1173984 Test 099 rap_unified_drag_suite_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_diag_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/rap_diag_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_diag_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rap_diag_debug Checking test 100 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 287.125055 - 0: The maximum resident set size (KB) = 1260608 + 0: The total amount of wall time = 296.974158 + 0: The maximum resident set size (KB) = 1258732 Test 100 rap_diag_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/rap_cires_ugwp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_cires_ugwp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rap_cires_ugwp_debug Checking test 101 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.322134 - 0: The maximum resident set size (KB) = 1174096 + 0: The total amount of wall time = 285.329736 + 0: The maximum resident set size (KB) = 1170752 Test 101 rap_cires_ugwp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/rap_unified_ugwp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_cires_ugwp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rap_unified_ugwp_debug Checking test 102 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 289.345738 - 0: The maximum resident set size (KB) = 1182484 + 0: The total amount of wall time = 284.056311 + 0: The maximum resident set size (KB) = 1172572 Test 102 rap_unified_ugwp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_lndp_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/rap_lndp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_lndp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rap_lndp_debug Checking test 103 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 283.856771 - 0: The maximum resident set size (KB) = 1174460 + 0: The total amount of wall time = 280.325403 + 0: The maximum resident set size (KB) = 1171596 Test 103 rap_lndp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_progcld_thompson_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/rap_progcld_thompson_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_progcld_thompson_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rap_progcld_thompson_debug Checking test 104 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.784217 - 0: The maximum resident set size (KB) = 1171796 + 0: The total amount of wall time = 280.948007 + 0: The maximum resident set size (KB) = 1173772 Test 104 rap_progcld_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_noah_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/rap_noah_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_noah_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rap_noah_debug Checking test 105 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 268.509498 - 0: The maximum resident set size (KB) = 1170780 + 0: The total amount of wall time = 275.197805 + 0: The maximum resident set size (KB) = 1167008 Test 105 rap_noah_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_sfcdiff_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/rap_sfcdiff_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rap_sfcdiff_debug Checking test 106 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.621502 - 0: The maximum resident set size (KB) = 1176612 + 0: The total amount of wall time = 282.406909 + 0: The maximum resident set size (KB) = 1171700 Test 106 rap_sfcdiff_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rap_noah_sfcdiff_cires_ugwp_debug Checking test 107 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 453.308880 - 0: The maximum resident set size (KB) = 1173456 + 0: The total amount of wall time = 470.800425 + 0: The maximum resident set size (KB) = 1167152 Test 107 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_v1beta_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/rrfs_v1beta_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1beta_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rrfs_v1beta_debug Checking test 108 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 272.083385 - 0: The maximum resident set size (KB) = 1172228 + 0: The total amount of wall time = 275.637038 + 0: The maximum resident set size (KB) = 1169412 Test 108 rrfs_v1beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_clm_lake_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/rap_clm_lake_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_clm_lake_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rap_clm_lake_debug Checking test 109 rap_clm_lake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 352.361631 - 0: The maximum resident set size (KB) = 1175324 + 0: The total amount of wall time = 351.315082 + 0: The maximum resident set size (KB) = 1170124 Test 109 rap_clm_lake_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_flake_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/rap_flake_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_flake_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rap_flake_debug Checking test 110 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 268.427923 - 0: The maximum resident set size (KB) = 1174152 + 0: The total amount of wall time = 279.378905 + 0: The maximum resident set size (KB) = 1171508 Test 110 rap_flake_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_wam_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_wam_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wam_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_wam_debug Checking test 111 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 277.113615 - 0: The maximum resident set size (KB) = 538308 + 0: The total amount of wall time = 282.596882 + 0: The maximum resident set size (KB) = 533312 Test 111 control_wam_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 112 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3767,14 +3767,14 @@ Checking test 112 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 250.487390 - 0: The maximum resident set size (KB) = 1088304 + 0: The total amount of wall time = 274.528373 + 0: The maximum resident set size (KB) = 1081404 Test 112 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/rap_control_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rap_control_dyn32_phy32 Checking test 113 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3821,14 +3821,14 @@ Checking test 113 rap_control_dyn32_phy32 results .... Comparing 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.851459 - 0: The maximum resident set size (KB) = 1002068 + 0: The total amount of wall time = 388.347261 + 0: The maximum resident set size (KB) = 998352 Test 113 rap_control_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/hrrr_control_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hrrr_control_dyn32_phy32 Checking test 114 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3875,14 +3875,14 @@ Checking test 114 hrrr_control_dyn32_phy32 results .... Comparing 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.310241 - 0: The maximum resident set size (KB) = 951072 + 0: The total amount of wall time = 205.713580 + 0: The maximum resident set size (KB) = 961340 Test 114 hrrr_control_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/rap_2threads_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rap_2threads_dyn32_phy32 Checking test 115 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3929,14 +3929,14 @@ Checking test 115 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 397.570543 - 0: The maximum resident set size (KB) = 1024504 + 0: The total amount of wall time = 402.556923 + 0: The maximum resident set size (KB) = 1020248 Test 115 rap_2threads_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/hrrr_control_2threads_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hrrr_control_2threads_dyn32_phy32 Checking test 116 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3983,14 +3983,14 @@ Checking test 116 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 162.060522 - 0: The maximum resident set size (KB) = 931976 + 0: The total amount of wall time = 180.204011 + 0: The maximum resident set size (KB) = 933068 Test 116 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/hrrr_control_decomp_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hrrr_control_decomp_dyn32_phy32 Checking test 117 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4037,14 +4037,14 @@ Checking test 117 hrrr_control_decomp_dyn32_phy32 results .... Comparing 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.437020 - 0: The maximum resident set size (KB) = 908976 + 0: The total amount of wall time = 220.935373 + 0: The maximum resident set size (KB) = 910912 Test 117 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/rap_restart_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rap_restart_dyn32_phy32 Checking test 118 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4083,28 +4083,28 @@ Checking test 118 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 282.535541 - 0: The maximum resident set size (KB) = 951928 + 0: The total amount of wall time = 282.232777 + 0: The maximum resident set size (KB) = 944588 Test 118 rap_restart_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/hrrr_control_restart_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hrrr_control_restart_dyn32_phy32 Checking test 119 hrrr_control_restart_dyn32_phy32 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.726692 - 0: The maximum resident set size (KB) = 869576 + 0: The total amount of wall time = 99.475187 + 0: The maximum resident set size (KB) = 867708 Test 119 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_dyn64_phy32 -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/rap_control_dyn64_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn64_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rap_control_dyn64_phy32 Checking test 120 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4151,81 +4151,81 @@ Checking test 120 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 242.885360 - 0: The maximum resident set size (KB) = 970928 + 0: The total amount of wall time = 252.735257 + 0: The maximum resident set size (KB) = 967712 Test 120 rap_control_dyn64_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_debug_dyn32_phy32 -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/rap_control_debug_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rap_control_debug_dyn32_phy32 Checking test 121 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.986617 - 0: The maximum resident set size (KB) = 1065184 + 0: The total amount of wall time = 276.909213 + 0: The maximum resident set size (KB) = 1058588 Test 121 rap_control_debug_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/hrrr_control_debug_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hrrr_control_debug_dyn32_phy32 Checking test 122 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 272.519981 - 0: The maximum resident set size (KB) = 1055368 + 0: The total amount of wall time = 271.710847 + 0: The maximum resident set size (KB) = 1052336 Test 122 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_debug_dyn64_phy32 -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/rap_control_dyn64_phy32_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug_dyn64_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rap_control_dyn64_phy32_debug Checking test 123 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.757189 - 0: The maximum resident set size (KB) = 1106724 + 0: The total amount of wall time = 276.836778 + 0: The maximum resident set size (KB) = 1102768 Test 123 rap_control_dyn64_phy32_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/hafs_regional_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hafs_regional_atm Checking test 124 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 266.732140 - 0: The maximum resident set size (KB) = 1055024 + 0: The total amount of wall time = 266.202547 + 0: The maximum resident set size (KB) = 1055256 Test 124 hafs_regional_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/hafs_regional_atm_thompson_gfdlsf +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hafs_regional_atm_thompson_gfdlsf Checking test 125 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 395.504759 - 0: The maximum resident set size (KB) = 1419904 + 0: The total amount of wall time = 408.334220 + 0: The maximum resident set size (KB) = 1425220 Test 125 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm_ocn -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/hafs_regional_atm_ocn +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_ocn +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hafs_regional_atm_ocn Checking test 126 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4234,14 +4234,14 @@ Checking test 126 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 377.906343 - 0: The maximum resident set size (KB) = 1228536 + 0: The total amount of wall time = 386.297913 + 0: The maximum resident set size (KB) = 1230368 Test 126 hafs_regional_atm_ocn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm_wav -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/hafs_regional_atm_wav +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_wav +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hafs_regional_atm_wav Checking test 127 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4250,14 +4250,14 @@ Checking test 127 hafs_regional_atm_wav 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 = 729.014911 - 0: The maximum resident set size (KB) = 1263452 + 0: The total amount of wall time = 744.574718 + 0: The maximum resident set size (KB) = 1258544 Test 127 hafs_regional_atm_wav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm_ocn_wav -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/hafs_regional_atm_ocn_wav +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_ocn_wav +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hafs_regional_atm_ocn_wav Checking test 128 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4268,28 +4268,28 @@ Checking test 128 hafs_regional_atm_ocn_wav 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 = 825.036960 - 0: The maximum resident set size (KB) = 1277760 + 0: The total amount of wall time = 861.853464 + 0: The maximum resident set size (KB) = 1275480 Test 128 hafs_regional_atm_ocn_wav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_1nest_atm -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/hafs_regional_1nest_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hafs_regional_1nest_atm Checking test 129 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 361.386813 - 0: The maximum resident set size (KB) = 505720 + 0: The total amount of wall time = 361.681654 + 0: The maximum resident set size (KB) = 469024 Test 129 hafs_regional_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/hafs_regional_telescopic_2nests_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hafs_regional_telescopic_2nests_atm Checking test 130 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4298,28 +4298,28 @@ Checking test 130 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 412.777704 - 0: The maximum resident set size (KB) = 518664 + 0: The total amount of wall time = 411.880648 + 0: The maximum resident set size (KB) = 515116 Test 130 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_global_1nest_atm -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/hafs_global_1nest_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_global_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hafs_global_1nest_atm Checking test 131 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 174.908016 - 0: The maximum resident set size (KB) = 354644 + 0: The total amount of wall time = 174.005311 + 0: The maximum resident set size (KB) = 355988 Test 131 hafs_global_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_global_multiple_4nests_atm -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/hafs_global_multiple_4nests_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_global_multiple_4nests_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hafs_global_multiple_4nests_atm Checking test 132 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4337,14 +4337,14 @@ Checking test 132 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 462.604706 - 0: The maximum resident set size (KB) = 428044 + 0: The total amount of wall time = 463.524626 + 0: The maximum resident set size (KB) = 426944 Test 132 hafs_global_multiple_4nests_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/hafs_regional_specified_moving_1nest_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hafs_regional_specified_moving_1nest_atm Checking test 133 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4353,28 +4353,28 @@ Checking test 133 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 230.372413 - 0: The maximum resident set size (KB) = 523476 + 0: The total amount of wall time = 230.952308 + 0: The maximum resident set size (KB) = 524468 Test 133 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/hafs_regional_storm_following_1nest_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hafs_regional_storm_following_1nest_atm Checking test 134 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 218.993572 - 0: The maximum resident set size (KB) = 524276 + 0: The total amount of wall time = 217.489868 + 0: The maximum resident set size (KB) = 521412 Test 134 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hafs_regional_storm_following_1nest_atm_ocn Checking test 135 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4383,42 +4383,42 @@ Checking test 135 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 288.990864 - 0: The maximum resident set size (KB) = 569068 + 0: The total amount of wall time = 287.473977 + 0: The maximum resident set size (KB) = 573524 Test 135 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_global_storm_following_1nest_atm -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/hafs_global_storm_following_1nest_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_global_storm_following_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hafs_global_storm_following_1nest_atm Checking test 136 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 67.390177 - 0: The maximum resident set size (KB) = 371844 + 0: The total amount of wall time = 67.959181 + 0: The maximum resident set size (KB) = 375876 Test 136 hafs_global_storm_following_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 137 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 748.096910 - 0: The maximum resident set size (KB) = 587476 + 0: The total amount of wall time = 767.583989 + 0: The maximum resident set size (KB) = 591864 Test 137 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 138 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4429,14 +4429,14 @@ Checking test 138 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 540.472584 - 0: The maximum resident set size (KB) = 620488 + 0: The total amount of wall time = 563.877845 + 0: The maximum resident set size (KB) = 626444 Test 138 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_docn -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/hafs_regional_docn +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_docn +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hafs_regional_docn Checking test 139 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4444,14 +4444,14 @@ Checking test 139 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 359.932701 - 0: The maximum resident set size (KB) = 1235856 + 0: The total amount of wall time = 356.934013 + 0: The maximum resident set size (KB) = 1235900 Test 139 hafs_regional_docn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_docn_oisst -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/hafs_regional_docn_oisst +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_docn_oisst +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hafs_regional_docn_oisst Checking test 140 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4459,131 +4459,131 @@ Checking test 140 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 362.724306 - 0: The maximum resident set size (KB) = 1224192 + 0: The total amount of wall time = 363.225906 + 0: The maximum resident set size (KB) = 1225252 Test 140 hafs_regional_docn_oisst PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_datm_cdeps -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/hafs_regional_datm_cdeps +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_datm_cdeps +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hafs_regional_datm_cdeps Checking test 141 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 933.482599 - 0: The maximum resident set size (KB) = 1046192 + 0: The total amount of wall time = 951.555736 + 0: The maximum resident set size (KB) = 1040996 Test 141 hafs_regional_datm_cdeps PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/datm_cdeps_control_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/datm_cdeps_control_cfsr Checking test 142 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.453403 - 0: The maximum resident set size (KB) = 1063352 + 0: The total amount of wall time = 146.955534 + 0: The maximum resident set size (KB) = 1065512 Test 142 datm_cdeps_control_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/datm_cdeps_restart_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/datm_cdeps_restart_cfsr Checking test 143 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 91.485648 - 0: The maximum resident set size (KB) = 1022364 + 0: The total amount of wall time = 89.270381 + 0: The maximum resident set size (KB) = 1016460 Test 143 datm_cdeps_restart_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_control_gefs -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/datm_cdeps_control_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/datm_cdeps_control_gefs Checking test 144 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 141.755135 - 0: The maximum resident set size (KB) = 966716 + 0: The total amount of wall time = 141.664027 + 0: The maximum resident set size (KB) = 976100 Test 144 datm_cdeps_control_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_iau_gefs -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/datm_cdeps_iau_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_iau_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/datm_cdeps_iau_gefs Checking test 145 datm_cdeps_iau_gefs 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.472430 - 0: The maximum resident set size (KB) = 975332 + 0: The total amount of wall time = 142.715440 + 0: The maximum resident set size (KB) = 964232 Test 145 datm_cdeps_iau_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_stochy_gefs -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/datm_cdeps_stochy_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_stochy_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/datm_cdeps_stochy_gefs Checking test 146 datm_cdeps_stochy_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 144.529233 - 0: The maximum resident set size (KB) = 964276 + 0: The total amount of wall time = 146.150206 + 0: The maximum resident set size (KB) = 929328 Test 146 datm_cdeps_stochy_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_ciceC_cfsr -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/datm_cdeps_ciceC_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_ciceC_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/datm_cdeps_ciceC_cfsr Checking test 147 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 145.171754 - 0: The maximum resident set size (KB) = 1053968 + 0: The total amount of wall time = 149.396475 + 0: The maximum resident set size (KB) = 1070740 Test 147 datm_cdeps_ciceC_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_bulk_cfsr -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/datm_cdeps_bulk_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_bulk_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/datm_cdeps_bulk_cfsr Checking test 148 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.674902 - 0: The maximum resident set size (KB) = 1075344 + 0: The total amount of wall time = 149.802324 + 0: The maximum resident set size (KB) = 1054756 Test 148 datm_cdeps_bulk_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_bulk_gefs -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/datm_cdeps_bulk_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_bulk_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/datm_cdeps_bulk_gefs Checking test 149 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 140.207867 - 0: The maximum resident set size (KB) = 952208 + 0: The total amount of wall time = 144.692049 + 0: The maximum resident set size (KB) = 976860 Test 149 datm_cdeps_bulk_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_mx025_cfsr -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/datm_cdeps_mx025_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_mx025_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/datm_cdeps_mx025_cfsr Checking test 150 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4592,14 +4592,14 @@ Checking test 150 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 447.327439 - 0: The maximum resident set size (KB) = 877824 + 0: The total amount of wall time = 444.133428 + 0: The maximum resident set size (KB) = 870464 Test 150 datm_cdeps_mx025_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_mx025_gefs -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/datm_cdeps_mx025_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_mx025_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/datm_cdeps_mx025_gefs Checking test 151 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4608,77 +4608,77 @@ Checking test 151 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 446.514385 - 0: The maximum resident set size (KB) = 932804 + 0: The total amount of wall time = 454.602074 + 0: The maximum resident set size (KB) = 931384 Test 151 datm_cdeps_mx025_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/datm_cdeps_multiple_files_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/datm_cdeps_multiple_files_cfsr Checking test 152 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 143.477066 - 0: The maximum resident set size (KB) = 1065732 + 0: The total amount of wall time = 147.105293 + 0: The maximum resident set size (KB) = 1058260 Test 152 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/datm_cdeps_3072x1536_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/datm_cdeps_3072x1536_cfsr Checking test 153 datm_cdeps_3072x1536_cfsr 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 = 196.819786 - 0: The maximum resident set size (KB) = 2353236 + 0: The total amount of wall time = 195.791488 + 0: The maximum resident set size (KB) = 2366548 Test 153 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_gfs -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/datm_cdeps_gfs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_gfs +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/datm_cdeps_gfs Checking test 154 datm_cdeps_gfs 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 = 199.943999 - 0: The maximum resident set size (KB) = 2309044 + 0: The total amount of wall time = 199.955753 + 0: The maximum resident set size (KB) = 2297492 Test 154 datm_cdeps_gfs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_debug_cfsr -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/datm_cdeps_debug_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_debug_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/datm_cdeps_debug_cfsr Checking test 155 datm_cdeps_debug_cfsr 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 = 350.681983 - 0: The maximum resident set size (KB) = 975932 + 0: The total amount of wall time = 360.055743 + 0: The maximum resident set size (KB) = 995636 Test 155 datm_cdeps_debug_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_control_cfsr_faster -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/datm_cdeps_control_cfsr_faster +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_cfsr_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/datm_cdeps_control_cfsr_faster Checking test 156 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.386919 - 0: The maximum resident set size (KB) = 1067056 + 0: The total amount of wall time = 159.630534 + 0: The maximum resident set size (KB) = 1063276 Test 156 datm_cdeps_control_cfsr_faster PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_lnd_gswp3 -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/datm_cdeps_lnd_gswp3 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_lnd_gswp3 +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/datm_cdeps_lnd_gswp3 Checking test 157 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4687,14 +4687,14 @@ Checking test 157 datm_cdeps_lnd_gswp3 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 = 8.456536 - 0: The maximum resident set size (KB) = 264932 + 0: The total amount of wall time = 8.049735 + 0: The maximum resident set size (KB) = 268000 Test 157 datm_cdeps_lnd_gswp3 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/datm_cdeps_lnd_gswp3 -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/datm_cdeps_lnd_gswp3_rst +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_lnd_gswp3 +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/datm_cdeps_lnd_gswp3_rst Checking test 158 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4703,14 +4703,14 @@ Checking test 158 datm_cdeps_lnd_gswp3_rst 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.005100 - 0: The maximum resident set size (KB) = 256308 + 0: The total amount of wall time = 13.436463 + 0: The maximum resident set size (KB) = 248580 Test 158 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_atmlnd_sbs -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_p8_atmlnd_sbs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_atmlnd_sbs +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_p8_atmlnd_sbs Checking test 159 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4795,14 +4795,14 @@ Checking test 159 control_p8_atmlnd_sbs 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.619003 - 0: The maximum resident set size (KB) = 1616464 + 0: The total amount of wall time = 215.902223 + 0: The maximum resident set size (KB) = 1603756 Test 159 control_p8_atmlnd_sbs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/atmwav_control_noaero_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/atmwav_control_noaero_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/atmwav_control_noaero_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/atmwav_control_noaero_p8 Checking test 160 atmwav_control_noaero_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4845,14 +4845,14 @@ Checking test 160 atmwav_control_noaero_p8 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.782510 - 0: The maximum resident set size (KB) = 1640372 + 0: The total amount of wall time = 114.910781 + 0: The maximum resident set size (KB) = 1647360 Test 160 atmwav_control_noaero_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/control_atmwav -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/control_atmwav +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_atmwav +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_atmwav Checking test 161 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4896,14 +4896,14 @@ Checking test 161 control_atmwav 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.093573 - 0: The maximum resident set size (KB) = 668900 + 0: The total amount of wall time = 103.135697 + 0: The maximum resident set size (KB) = 663632 Test 161 control_atmwav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/atmaero_control_p8 -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/atmaero_control_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/atmaero_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/atmaero_control_p8 Checking test 162 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4947,14 +4947,14 @@ Checking test 162 atmaero_control_p8 results .... Comparing 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.907062 - 0: The maximum resident set size (KB) = 2981600 + 0: The total amount of wall time = 259.757023 + 0: The maximum resident set size (KB) = 2976196 Test 162 atmaero_control_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/atmaero_control_p8_rad -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/atmaero_control_p8_rad +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/atmaero_control_p8_rad +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/atmaero_control_p8_rad Checking test 163 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4998,14 +4998,14 @@ Checking test 163 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 281.633596 - 0: The maximum resident set size (KB) = 3044604 + 0: The total amount of wall time = 302.212441 + 0: The maximum resident set size (KB) = 3059968 Test 163 atmaero_control_p8_rad PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/atmaero_control_p8_rad_micro -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/atmaero_control_p8_rad_micro +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/atmaero_control_p8_rad_micro +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/atmaero_control_p8_rad_micro Checking test 164 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5049,14 +5049,14 @@ Checking test 164 atmaero_control_p8_rad_micro results .... Comparing 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.025781 - 0: The maximum resident set size (KB) = 3057200 + 0: The total amount of wall time = 310.272817 + 0: The maximum resident set size (KB) = 3059764 Test 164 atmaero_control_p8_rad_micro PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_atmaq -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/regional_atmaq +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_atmaq +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/regional_atmaq Checking test 165 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5072,14 +5072,14 @@ Checking test 165 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 616.960995 - 0: The maximum resident set size (KB) = 1479984 + 0: The total amount of wall time = 653.681345 + 0: The maximum resident set size (KB) = 1482260 Test 165 regional_atmaq PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_atmaq_debug -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/regional_atmaq_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_atmaq_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/regional_atmaq_debug Checking test 166 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5093,14 +5093,14 @@ Checking test 166 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1240.117106 - 0: The maximum resident set size (KB) = 1403020 + 0: The total amount of wall time = 1255.495440 + 0: The maximum resident set size (KB) = 1405172 Test 166 regional_atmaq_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_atmaq_faster -working dir = /work/noaa/epic-ps/zshrader/rt-1667/stmp/zshrader/FV3_RT/rt_154566/regional_atmaq_faster +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_atmaq_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/regional_atmaq_faster Checking test 167 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5116,12 +5116,12 @@ Checking test 167 regional_atmaq_faster 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.968041 - 0: The maximum resident set size (KB) = 1477420 + 0: The total amount of wall time = 601.114723 + 0: The maximum resident set size (KB) = 1477764 Test 167 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Wed May 3 08:46:49 CDT 2023 -Elapsed time: 01h:12m:23s. Have a nice day! +Fri May 5 09:06:51 CDT 2023 +Elapsed time: 01h:14m:44s. Have a nice day! diff --git a/tests/RegressionTests_wcoss2.intel.log b/tests/RegressionTests_wcoss2.intel.log index 225d81da3ef..b9f55a3bc53 100644 --- a/tests/RegressionTests_wcoss2.intel.log +++ b/tests/RegressionTests_wcoss2.intel.log @@ -1,34 +1,34 @@ -Wed May 3 13:42:22 UTC 2023 +Mon May 8 23:19:08 UTC 2023 Start Regression test -Compile 001 elapsed time 1234 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 641 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 635 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 1314 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 005 elapsed time 1094 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 1557 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 673 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 008 elapsed time 635 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 493 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 1806 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 954 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 344 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 013 elapsed time 368 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 1193 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 015 elapsed time 810 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 799 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 017 elapsed time 456 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 958 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 019 elapsed time 490 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 718 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 1106 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 022 elapsed time 729 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 796 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 024 elapsed time 643 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 025 elapsed time 1025 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8_mixedmode -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/cpld_control_p8_mixedmode +Compile 001 elapsed time 623 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1134 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 1674 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 537 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 005 elapsed time 536 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 765 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 1261 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 008 elapsed time 1062 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 1035 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 1052 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 951 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 1069 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 013 elapsed time 453 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 014 elapsed time 1196 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 496 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 493 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 017 elapsed time 790 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 709 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 019 elapsed time 710 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 649 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 779 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 022 elapsed time 559 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 924 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 024 elapsed time 445 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 025 elapsed time 750 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8_mixedmode +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -93,14 +93,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 336.097687 -The maximum resident set size (KB) = 2953084 +The total amount of wall time = 343.864803 +The maximum resident set size (KB) = 2953872 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/cpld_control_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/cpld_control_p8 Checking test 002 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -165,14 +165,14 @@ Checking test 002 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 390.360939 -The maximum resident set size (KB) = 2985008 +The total amount of wall time = 390.146929 +The maximum resident set size (KB) = 2986756 Test 002 cpld_control_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/cpld_restart_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/cpld_restart_p8 Checking test 003 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -225,14 +225,14 @@ Checking test 003 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 236.665734 -The maximum resident set size (KB) = 2870936 +The total amount of wall time = 238.615239 +The maximum resident set size (KB) = 2872064 Test 003 cpld_restart_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/cpld_control_qr_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/cpld_control_qr_p8 Checking test 004 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -297,14 +297,14 @@ Checking test 004 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 395.236992 -The maximum resident set size (KB) = 2994756 +The total amount of wall time = 397.760025 +The maximum resident set size (KB) = 2995624 Test 004 cpld_control_qr_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/cpld_restart_qr_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/cpld_restart_qr_p8 Checking test 005 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -357,14 +357,14 @@ Checking test 005 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 236.931555 -The maximum resident set size (KB) = 2881188 +The total amount of wall time = 239.848171 +The maximum resident set size (KB) = 2884552 Test 005 cpld_restart_qr_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/cpld_2threads_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/cpld_2threads_p8 Checking test 006 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -417,14 +417,14 @@ Checking test 006 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 372.958501 -The maximum resident set size (KB) = 3287180 +The total amount of wall time = 372.763329 +The maximum resident set size (KB) = 3287172 Test 006 cpld_2threads_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/cpld_decomp_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/cpld_decomp_p8 Checking test 007 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -477,14 +477,14 @@ Checking test 007 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 384.970138 -The maximum resident set size (KB) = 2980172 +The total amount of wall time = 386.482338 +The maximum resident set size (KB) = 2981820 Test 007 cpld_decomp_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/cpld_mpi_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/cpld_mpi_p8 Checking test 008 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -537,14 +537,14 @@ Checking test 008 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 324.373548 -The maximum resident set size (KB) = 2910948 +The total amount of wall time = 321.498746 +The maximum resident set size (KB) = 2910552 Test 008 cpld_mpi_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_ciceC_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/cpld_control_ciceC_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_ciceC_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/cpld_control_ciceC_p8 Checking test 009 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -609,14 +609,14 @@ Checking test 009 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 387.650989 -The maximum resident set size (KB) = 2983636 +The total amount of wall time = 392.591687 +The maximum resident set size (KB) = 2986704 Test 009 cpld_control_ciceC_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_bmark_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/cpld_bmark_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_bmark_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/cpld_bmark_p8 Checking test 010 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -664,14 +664,14 @@ Checking test 010 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 955.246493 -The maximum resident set size (KB) = 3922064 +The total amount of wall time = 967.594271 +The maximum resident set size (KB) = 3925048 Test 010 cpld_bmark_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_bmark_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/cpld_restart_bmark_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_bmark_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/cpld_restart_bmark_p8 Checking test 011 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -719,14 +719,14 @@ Checking test 011 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 683.238762 -The maximum resident set size (KB) = 3898120 +The total amount of wall time = 661.248536 +The maximum resident set size (KB) = 3896804 Test 011 cpld_restart_bmark_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/cpld_control_noaero_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/cpld_control_noaero_p8 Checking test 012 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -790,14 +790,14 @@ Checking test 012 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 286.132413 -The maximum resident set size (KB) = 1581444 +The total amount of wall time = 291.020896 +The maximum resident set size (KB) = 1568036 Test 012 cpld_control_noaero_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/cpld_control_nowave_noaero_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_c96_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/cpld_control_nowave_noaero_p8 Checking test 013 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -859,14 +859,14 @@ Checking test 013 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 305.112356 -The maximum resident set size (KB) = 1634004 +The total amount of wall time = 303.620718 +The maximum resident set size (KB) = 1623544 Test 013 cpld_control_nowave_noaero_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/cpld_control_noaero_p8_agrid +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_noaero_p8_agrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/cpld_control_noaero_p8_agrid Checking test 014 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -928,14 +928,14 @@ Checking test 014 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 310.876057 -The maximum resident set size (KB) = 1622864 +The total amount of wall time = 317.154399 +The maximum resident set size (KB) = 1629136 Test 014 cpld_control_noaero_p8_agrid PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/cpld_control_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/cpld_control_c48 Checking test 015 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -985,14 +985,14 @@ Checking test 015 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 441.596645 -The maximum resident set size (KB) = 2642520 +The total amount of wall time = 445.954087 +The maximum resident set size (KB) = 2644544 Test 015 cpld_control_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/cpld_warmstart_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/cpld_warmstart_c48 Checking test 016 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1042,14 +1042,14 @@ Checking test 016 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 127.264648 -The maximum resident set size (KB) = 2658404 +The total amount of wall time = 130.772757 +The maximum resident set size (KB) = 2655572 Test 016 cpld_warmstart_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/cpld_restart_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/cpld_restart_c48 Checking test 017 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1099,14 +1099,14 @@ Checking test 017 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 70.990707 -The maximum resident set size (KB) = 2075296 +The total amount of wall time = 73.123090 +The maximum resident set size (KB) = 2075904 Test 017 cpld_restart_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/cpld_control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/cpld_control_p8_faster +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/cpld_control_p8_faster Checking test 018 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1171,14 +1171,14 @@ Checking test 018 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 381.174474 -The maximum resident set size (KB) = 2982784 +The total amount of wall time = 383.251467 +The maximum resident set size (KB) = 2984280 Test 018 cpld_control_p8_faster PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_flake -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_flake +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_flake +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_flake Checking test 019 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1189,14 +1189,14 @@ Checking test 019 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 215.223041 -The maximum resident set size (KB) = 566996 +The total amount of wall time = 218.126691 +The maximum resident set size (KB) = 569676 Test 019 control_flake PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_CubedSphereGrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_CubedSphereGrid +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_CubedSphereGrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_CubedSphereGrid Checking test 020 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1223,14 +1223,14 @@ Checking test 020 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 130.644581 -The maximum resident set size (KB) = 520936 +The total amount of wall time = 132.231996 +The maximum resident set size (KB) = 519576 Test 020 control_CubedSphereGrid PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_latlon -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_latlon +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_latlon +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_latlon Checking test 021 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1241,14 +1241,14 @@ Checking test 021 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 134.237330 -The maximum resident set size (KB) = 521500 +The total amount of wall time = 136.106371 +The maximum resident set size (KB) = 519736 Test 021 control_latlon PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_wrtGauss_netcdf_parallel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_wrtGauss_netcdf_parallel Checking test 022 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1259,14 +1259,14 @@ Checking test 022 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.930000 -The maximum resident set size (KB) = 521512 +The total amount of wall time = 136.722213 +The maximum resident set size (KB) = 521348 Test 022 control_wrtGauss_netcdf_parallel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_c48 Checking test 023 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1305,14 +1305,14 @@ Checking test 023 control_c48 results .... 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.433645 -The maximum resident set size (KB) = 679480 +The total amount of wall time = 327.140923 +The maximum resident set size (KB) = 682428 Test 023 control_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_c192 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_c192 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c192 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_c192 Checking test 024 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1323,14 +1323,14 @@ Checking test 024 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 532.119892 -The maximum resident set size (KB) = 622820 +The total amount of wall time = 530.849784 +The maximum resident set size (KB) = 621068 Test 024 control_c192 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_c384 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_c384 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c384 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_c384 Checking test 025 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1341,14 +1341,14 @@ Checking test 025 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 571.278496 -The maximum resident set size (KB) = 931128 +The total amount of wall time = 569.984168 +The maximum resident set size (KB) = 931620 Test 025 control_c384 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_c384gdas -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_c384gdas +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c384gdas +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_c384gdas Checking test 026 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1391,14 +1391,14 @@ Checking test 026 control_c384gdas 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 = 500.386520 -The maximum resident set size (KB) = 1067340 +The total amount of wall time = 502.516761 +The maximum resident set size (KB) = 1063596 Test 026 control_c384gdas PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_stochy +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_stochy Checking test 027 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1409,28 +1409,28 @@ Checking test 027 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 90.563830 -The maximum resident set size (KB) = 525772 +The total amount of wall time = 91.462604 +The maximum resident set size (KB) = 526084 Test 027 control_stochy PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_stochy_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_stochy_restart Checking test 028 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 53.556547 -The maximum resident set size (KB) = 292328 +The total amount of wall time = 57.280421 +The maximum resident set size (KB) = 294440 Test 028 control_stochy_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_lndp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_lndp Checking test 029 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1441,14 +1441,14 @@ Checking test 029 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 84.500841 -The maximum resident set size (KB) = 521308 +The total amount of wall time = 85.208701 +The maximum resident set size (KB) = 524608 Test 029 control_lndp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_iovr4 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_iovr4 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_iovr4 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_iovr4 Checking test 030 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1463,14 +1463,14 @@ Checking test 030 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.913574 -The maximum resident set size (KB) = 519400 +The total amount of wall time = 138.760184 +The maximum resident set size (KB) = 521348 Test 030 control_iovr4 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_iovr5 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_iovr5 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_iovr5 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_iovr5 Checking test 031 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1485,14 +1485,14 @@ Checking test 031 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 136.721853 -The maximum resident set size (KB) = 518684 +The total amount of wall time = 137.679707 +The maximum resident set size (KB) = 519936 Test 031 control_iovr5 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_p8 Checking test 032 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1539,14 +1539,14 @@ Checking test 032 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 183.329238 -The maximum resident set size (KB) = 1489648 +The total amount of wall time = 186.523552 +The maximum resident set size (KB) = 1487616 Test 032 control_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_restart_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_restart_p8 Checking test 033 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1585,14 +1585,14 @@ Checking test 033 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 103.620588 -The maximum resident set size (KB) = 659252 +The total amount of wall time = 103.986888 +The maximum resident set size (KB) = 661276 Test 033 control_restart_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_qr_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_qr_p8 Checking test 034 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1639,14 +1639,14 @@ Checking test 034 control_qr_p8 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 = 182.842279 -The maximum resident set size (KB) = 1500504 +The total amount of wall time = 188.057445 +The maximum resident set size (KB) = 1500460 Test 034 control_qr_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_restart_qr_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_restart_qr_p8 Checking test 035 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1685,14 +1685,14 @@ Checking test 035 control_restart_qr_p8 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 = 106.356990 -The maximum resident set size (KB) = 674960 +The total amount of wall time = 105.539492 +The maximum resident set size (KB) = 672584 Test 035 control_restart_qr_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_decomp_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_decomp_p8 Checking test 036 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1735,14 +1735,14 @@ Checking test 036 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 189.825777 -The maximum resident set size (KB) = 1484652 +The total amount of wall time = 189.929111 +The maximum resident set size (KB) = 1483672 Test 036 control_decomp_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_2threads_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_2threads_p8 Checking test 037 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1785,14 +1785,14 @@ Checking test 037 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 161.558481 -The maximum resident set size (KB) = 1572140 +The total amount of wall time = 163.472832 +The maximum resident set size (KB) = 1576496 Test 037 control_2threads_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_p8_lndp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_p8_lndp Checking test 038 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1811,14 +1811,14 @@ Checking test 038 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 327.329460 -The maximum resident set size (KB) = 1495592 +The total amount of wall time = 325.541017 +The maximum resident set size (KB) = 1484864 Test 038 control_p8_lndp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_rrtmgp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_p8_rrtmgp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_rrtmgp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_p8_rrtmgp Checking test 039 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1865,14 +1865,14 @@ Checking test 039 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 239.585699 -The maximum resident set size (KB) = 1550092 +The total amount of wall time = 238.872188 +The maximum resident set size (KB) = 1553944 Test 039 control_p8_rrtmgp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_mynn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_p8_mynn +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_mynn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_p8_mynn Checking test 040 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1919,14 +1919,14 @@ Checking test 040 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 183.799657 -The maximum resident set size (KB) = 1487724 +The total amount of wall time = 184.321927 +The maximum resident set size (KB) = 1487100 Test 040 control_p8_mynn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/merra2_thompson -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/merra2_thompson +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/merra2_thompson +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/merra2_thompson Checking test 041 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1973,14 +1973,14 @@ Checking test 041 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 211.641439 -The maximum resident set size (KB) = 1497032 +The total amount of wall time = 207.764186 +The maximum resident set size (KB) = 1494004 Test 041 merra2_thompson PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/regional_control +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/regional_control Checking test 042 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1991,28 +1991,28 @@ Checking test 042 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 296.733848 -The maximum resident set size (KB) = 658408 +The total amount of wall time = 301.770632 +The maximum resident set size (KB) = 655356 Test 042 regional_control PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/regional_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/regional_restart Checking test 043 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 167.921857 -The maximum resident set size (KB) = 655316 +The total amount of wall time = 160.398966 +The maximum resident set size (KB) = 654072 Test 043 regional_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/regional_control_qr +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/regional_control_qr Checking test 044 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2023,28 +2023,28 @@ Checking test 044 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 296.004888 -The maximum resident set size (KB) = 655080 +The total amount of wall time = 298.933992 +The maximum resident set size (KB) = 658440 Test 044 regional_control_qr PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/regional_restart_qr +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/regional_restart_qr Checking test 045 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 164.697645 -The maximum resident set size (KB) = 655140 +The total amount of wall time = 162.110107 +The maximum resident set size (KB) = 655136 Test 045 regional_restart_qr PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/regional_decomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/regional_decomp Checking test 046 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2055,14 +2055,14 @@ Checking test 046 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 312.282293 -The maximum resident set size (KB) = 657544 +The total amount of wall time = 312.052297 +The maximum resident set size (KB) = 657244 Test 046 regional_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/regional_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/regional_2threads Checking test 047 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2073,14 +2073,14 @@ Checking test 047 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 182.787169 -The maximum resident set size (KB) = 700424 +The total amount of wall time = 192.504411 +The maximum resident set size (KB) = 703984 Test 047 regional_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_noquilt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/regional_noquilt +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_noquilt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/regional_noquilt Checking test 048 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2088,28 +2088,28 @@ Checking test 048 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 316.251434 -The maximum resident set size (KB) = 653352 +The total amount of wall time = 321.027519 +The maximum resident set size (KB) = 648476 Test 048 regional_noquilt PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/regional_netcdf_parallel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/regional_netcdf_parallel Checking test 049 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK -The total amount of wall time = 288.074052 -The maximum resident set size (KB) = 656656 +The total amount of wall time = 296.101275 +The maximum resident set size (KB) = 656716 Test 049 regional_netcdf_parallel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/regional_2dwrtdecomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/regional_2dwrtdecomp Checking test 050 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2120,14 +2120,14 @@ Checking test 050 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 293.408547 -The maximum resident set size (KB) = 655964 +The total amount of wall time = 295.058797 +The maximum resident set size (KB) = 660424 Test 050 regional_2dwrtdecomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/fv3_regional_wofs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/regional_wofs +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/fv3_regional_wofs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/regional_wofs Checking test 051 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2138,14 +2138,14 @@ Checking test 051 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 366.459978 -The maximum resident set size (KB) = 347428 +The total amount of wall time = 376.263792 +The maximum resident set size (KB) = 344112 Test 051 regional_wofs PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/rap_control +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rap_control Checking test 052 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2192,14 +2192,14 @@ Checking test 052 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 420.682625 -The maximum resident set size (KB) = 898192 +The total amount of wall time = 423.778369 +The maximum resident set size (KB) = 895888 Test 052 rap_control PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/regional_spp_sppt_shum_skeb +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_spp_sppt_shum_skeb +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/regional_spp_sppt_shum_skeb Checking test 053 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2210,14 +2210,14 @@ Checking test 053 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 251.361841 -The maximum resident set size (KB) = 985540 +The total amount of wall time = 246.648289 +The maximum resident set size (KB) = 991328 Test 053 regional_spp_sppt_shum_skeb PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/rap_decomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rap_decomp Checking test 054 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2264,14 +2264,14 @@ Checking test 054 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 440.757111 -The maximum resident set size (KB) = 895880 +The total amount of wall time = 434.934476 +The maximum resident set size (KB) = 898276 Test 054 rap_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/rap_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rap_2threads Checking test 055 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2318,14 +2318,14 @@ Checking test 055 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 392.753180 -The maximum resident set size (KB) = 969720 +The total amount of wall time = 389.411756 +The maximum resident set size (KB) = 976620 Test 055 rap_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/rap_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rap_restart Checking test 056 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2364,14 +2364,14 @@ Checking test 056 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 214.513937 -The maximum resident set size (KB) = 649048 +The total amount of wall time = 216.646515 +The maximum resident set size (KB) = 650656 Test 056 rap_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/rap_sfcdiff +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rap_sfcdiff Checking test 057 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2418,14 +2418,14 @@ Checking test 057 rap_sfcdiff results .... 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.861105 -The maximum resident set size (KB) = 892580 +The total amount of wall time = 424.608915 +The maximum resident set size (KB) = 893632 Test 057 rap_sfcdiff PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/rap_sfcdiff_decomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rap_sfcdiff_decomp Checking test 058 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2472,14 +2472,14 @@ Checking test 058 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 440.214834 -The maximum resident set size (KB) = 896964 +The total amount of wall time = 442.934827 +The maximum resident set size (KB) = 899888 Test 058 rap_sfcdiff_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/rap_sfcdiff_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rap_sfcdiff_restart Checking test 059 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2518,14 +2518,14 @@ Checking test 059 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 316.482419 -The maximum resident set size (KB) = 644300 +The total amount of wall time = 322.942428 +The maximum resident set size (KB) = 643672 Test 059 rap_sfcdiff_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/hrrr_control +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/hrrr_control Checking test 060 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2572,14 +2572,14 @@ Checking test 060 hrrr_control 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 = 394.068438 -The maximum resident set size (KB) = 892212 +The total amount of wall time = 392.620269 +The maximum resident set size (KB) = 892840 Test 060 hrrr_control PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/hrrr_control_decomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/hrrr_control_decomp Checking test 061 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2626,14 +2626,14 @@ Checking test 061 hrrr_control_decomp 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 = 406.132521 -The maximum resident set size (KB) = 893688 +The total amount of wall time = 406.906598 +The maximum resident set size (KB) = 893416 Test 061 hrrr_control_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/hrrr_control_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/hrrr_control_2threads Checking test 062 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2680,28 +2680,28 @@ Checking test 062 hrrr_control_2threads 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 = 352.502272 -The maximum resident set size (KB) = 968384 +The total amount of wall time = 352.392920 +The maximum resident set size (KB) = 961220 Test 062 hrrr_control_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/hrrr_control_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/hrrr_control_restart Checking test 063 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 287.558597 -The maximum resident set size (KB) = 644968 +The total amount of wall time = 289.593144 +The maximum resident set size (KB) = 645352 Test 063 hrrr_control_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_v1beta -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/rrfs_v1beta +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1beta +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rrfs_v1beta Checking test 064 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2748,14 +2748,14 @@ Checking test 064 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 418.690787 -The maximum resident set size (KB) = 895172 +The total amount of wall time = 420.017947 +The maximum resident set size (KB) = 896528 Test 064 rrfs_v1beta PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_v1nssl -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/rrfs_v1nssl +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1nssl +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rrfs_v1nssl Checking test 065 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2770,14 +2770,14 @@ Checking test 065 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 482.922618 -The maximum resident set size (KB) = 586388 +The total amount of wall time = 483.439529 +The maximum resident set size (KB) = 584008 Test 065 rrfs_v1nssl PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/rrfs_v1nssl_nohailnoccn +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rrfs_v1nssl_nohailnoccn Checking test 066 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2792,14 +2792,14 @@ Checking test 066 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 471.508581 -The maximum resident set size (KB) = 575804 +The total amount of wall time = 471.147966 +The maximum resident set size (KB) = 572940 Test 066 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rrfs_smoke_conus13km_hrrr_warm Checking test 067 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2808,14 +2808,14 @@ Checking test 067 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 154.023400 -The maximum resident set size (KB) = 805252 +The total amount of wall time = 154.344815 +The maximum resident set size (KB) = 807072 Test 067 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 068 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2824,14 +2824,14 @@ Checking test 068 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 109.896708 -The maximum resident set size (KB) = 801860 +The total amount of wall time = 113.362983 +The maximum resident set size (KB) = 804568 Test 068 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/rrfs_conus13km_hrrr_warm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rrfs_conus13km_hrrr_warm Checking test 069 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2840,14 +2840,14 @@ Checking test 069 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 138.801110 -The maximum resident set size (KB) = 798156 +The total amount of wall time = 142.390336 +The maximum resident set size (KB) = 799436 Test 069 rrfs_conus13km_hrrr_warm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rrfs_smoke_conus13km_radar_tten_warm Checking test 070 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2856,26 +2856,26 @@ Checking test 070 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 153.749228 -The maximum resident set size (KB) = 805820 +The total amount of wall time = 157.346356 +The maximum resident set size (KB) = 804076 Test 070 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 071 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 72.808815 -The maximum resident set size (KB) = 768556 +The total amount of wall time = 73.132399 +The maximum resident set size (KB) = 773692 Test 071 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_csawmg -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_csawmg +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmg +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_csawmg Checking test 072 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2886,14 +2886,14 @@ Checking test 072 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 352.663793 -The maximum resident set size (KB) = 587008 +The total amount of wall time = 352.846855 +The maximum resident set size (KB) = 589792 Test 072 control_csawmg PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_csawmgt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_csawmgt +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmgt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_csawmgt Checking test 073 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2904,14 +2904,14 @@ Checking test 073 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 345.596964 -The maximum resident set size (KB) = 587972 +The total amount of wall time = 348.207494 +The maximum resident set size (KB) = 586104 Test 073 control_csawmgt PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_ras -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_ras +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_ras +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_ras Checking test 074 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2922,26 +2922,26 @@ Checking test 074 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 184.133902 -The maximum resident set size (KB) = 553568 +The total amount of wall time = 184.105062 +The maximum resident set size (KB) = 551996 Test 074 control_ras PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_wam -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_wam +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wam +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_wam Checking test 075 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 118.369571 -The maximum resident set size (KB) = 432856 +The total amount of wall time = 118.869201 +The maximum resident set size (KB) = 353176 Test 075 control_wam PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_p8_faster +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_p8_faster Checking test 076 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2988,14 +2988,14 @@ Checking test 076 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 176.834952 -The maximum resident set size (KB) = 1489340 +The total amount of wall time = 177.191349 +The maximum resident set size (KB) = 1485980 Test 076 control_p8_faster PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_control_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/regional_control_faster +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/regional_control_faster Checking test 077 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3006,56 +3006,56 @@ Checking test 077 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 281.262524 -The maximum resident set size (KB) = 655136 +The total amount of wall time = 286.967719 +The maximum resident set size (KB) = 657024 Test 077 regional_control_faster PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 078 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 920.790487 -The maximum resident set size (KB) = 832716 +The total amount of wall time = 915.039664 +The maximum resident set size (KB) = 833360 Test 078 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 079 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 528.158665 -The maximum resident set size (KB) = 830164 +The total amount of wall time = 531.469910 +The maximum resident set size (KB) = 830712 Test 079 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/rrfs_conus13km_hrrr_warm_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rrfs_conus13km_hrrr_warm_debug Checking test 080 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 822.856221 -The maximum resident set size (KB) = 825200 +The total amount of wall time = 822.453615 +The maximum resident set size (KB) = 820684 Test 080 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_CubedSphereGrid_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_CubedSphereGrid_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_CubedSphereGrid_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_CubedSphereGrid_debug Checking test 081 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3082,348 +3082,348 @@ Checking test 081 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 160.335037 -The maximum resident set size (KB) = 679584 +The total amount of wall time = 161.740805 +The maximum resident set size (KB) = 679896 Test 081 control_CubedSphereGrid_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_wrtGauss_netcdf_parallel_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_wrtGauss_netcdf_parallel_debug Checking test 082 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 158.493961 -The maximum resident set size (KB) = 678416 +The total amount of wall time = 161.119718 +The maximum resident set size (KB) = 682036 Test 082 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_stochy_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_stochy_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_stochy_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_stochy_debug Checking test 083 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 182.797835 -The maximum resident set size (KB) = 681792 +The total amount of wall time = 180.069919 +The maximum resident set size (KB) = 684156 Test 083 control_stochy_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_lndp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_lndp_debug Checking test 084 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 162.531361 -The maximum resident set size (KB) = 691628 +The total amount of wall time = 166.723667 +The maximum resident set size (KB) = 684112 Test 084 control_lndp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_csawmg_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_csawmg_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmg_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_csawmg_debug Checking test 085 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 257.214779 -The maximum resident set size (KB) = 727440 +The total amount of wall time = 259.655226 +The maximum resident set size (KB) = 723636 Test 085 control_csawmg_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_csawmgt_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_csawmgt_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmgt_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_csawmgt_debug Checking test 086 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 251.912538 -The maximum resident set size (KB) = 719560 +The total amount of wall time = 255.550516 +The maximum resident set size (KB) = 723576 Test 086 control_csawmgt_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_ras_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_ras_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_ras_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_ras_debug Checking test 087 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 164.909572 -The maximum resident set size (KB) = 693824 +The total amount of wall time = 163.489807 +The maximum resident set size (KB) = 695028 Test 087 control_ras_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_diag_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_diag_debug Checking test 088 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 166.439592 -The maximum resident set size (KB) = 738500 +The total amount of wall time = 165.936110 +The maximum resident set size (KB) = 738644 Test 088 control_diag_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_debug_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_debug_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_debug_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_debug_p8 Checking test 089 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 189.519409 -The maximum resident set size (KB) = 1501388 +The total amount of wall time = 188.113277 +The maximum resident set size (KB) = 1508260 Test 089 control_debug_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/regional_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/regional_debug Checking test 090 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1062.564283 -The maximum resident set size (KB) = 677220 +The total amount of wall time = 1051.672229 +The maximum resident set size (KB) = 677576 Test 090 regional_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/rap_control_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rap_control_debug Checking test 091 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 302.391458 -The maximum resident set size (KB) = 1053856 +The total amount of wall time = 300.277453 +The maximum resident set size (KB) = 1056952 Test 091 rap_control_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/hrrr_control_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/hrrr_control_debug Checking test 092 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 293.089546 -The maximum resident set size (KB) = 1050148 +The total amount of wall time = 291.661237 +The maximum resident set size (KB) = 1049740 Test 092 hrrr_control_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/rap_unified_drag_suite_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rap_unified_drag_suite_debug Checking test 093 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 301.255381 -The maximum resident set size (KB) = 1056320 +The total amount of wall time = 301.250413 +The maximum resident set size (KB) = 1051760 Test 093 rap_unified_drag_suite_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/rap_diag_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rap_diag_debug Checking test 094 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 309.699438 -The maximum resident set size (KB) = 1137232 +The total amount of wall time = 312.331009 +The maximum resident set size (KB) = 1142656 Test 094 rap_diag_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/rap_cires_ugwp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rap_cires_ugwp_debug Checking test 095 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 310.232979 -The maximum resident set size (KB) = 1058796 +The total amount of wall time = 306.911304 +The maximum resident set size (KB) = 1057860 Test 095 rap_cires_ugwp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/rap_unified_ugwp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rap_unified_ugwp_debug Checking test 096 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 307.318815 -The maximum resident set size (KB) = 1056256 +The total amount of wall time = 307.361875 +The maximum resident set size (KB) = 1057708 Test 096 rap_unified_ugwp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/rap_lndp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rap_lndp_debug Checking test 097 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 302.696091 -The maximum resident set size (KB) = 1052872 +The total amount of wall time = 306.479569 +The maximum resident set size (KB) = 1054732 Test 097 rap_lndp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_progcld_thompson_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/rap_progcld_thompson_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_progcld_thompson_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rap_progcld_thompson_debug Checking test 098 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.414940 -The maximum resident set size (KB) = 1052492 +The total amount of wall time = 300.086381 +The maximum resident set size (KB) = 1055364 Test 098 rap_progcld_thompson_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_noah_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/rap_noah_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_noah_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rap_noah_debug Checking test 099 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 296.359560 -The maximum resident set size (KB) = 1057140 +The total amount of wall time = 295.438678 +The maximum resident set size (KB) = 1053344 Test 099 rap_noah_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_sfcdiff_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/rap_sfcdiff_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rap_sfcdiff_debug Checking test 100 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.768931 -The maximum resident set size (KB) = 1057784 +The total amount of wall time = 301.430663 +The maximum resident set size (KB) = 1055640 Test 100 rap_sfcdiff_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rap_noah_sfcdiff_cires_ugwp_debug Checking test 101 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 492.386883 -The maximum resident set size (KB) = 1057316 +The total amount of wall time = 492.027880 +The maximum resident set size (KB) = 1054144 Test 101 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rrfs_v1beta_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/rrfs_v1beta_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1beta_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rrfs_v1beta_debug Checking test 102 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 295.727584 -The maximum resident set size (KB) = 1051648 +The total amount of wall time = 296.800427 +The maximum resident set size (KB) = 1054064 Test 102 rrfs_v1beta_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_clm_lake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/rap_clm_lake_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_clm_lake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rap_clm_lake_debug Checking test 103 rap_clm_lake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 358.706021 -The maximum resident set size (KB) = 1057860 +The total amount of wall time = 358.171747 +The maximum resident set size (KB) = 1058236 Test 103 rap_clm_lake_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_flake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/rap_flake_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_flake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rap_flake_debug Checking test 104 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 303.390759 -The maximum resident set size (KB) = 1056884 +The total amount of wall time = 301.870088 +The maximum resident set size (KB) = 1055500 Test 104 rap_flake_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_wam_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_wam_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wam_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_wam_debug Checking test 105 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 295.688799 -The maximum resident set size (KB) = 301288 +The total amount of wall time = 298.135807 +The maximum resident set size (KB) = 303504 Test 105 control_wam_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3434,14 +3434,14 @@ Checking test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 235.156350 -The maximum resident set size (KB) = 897672 +The total amount of wall time = 241.012645 +The maximum resident set size (KB) = 893684 Test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/rap_control_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rap_control_dyn32_phy32 Checking test 107 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3488,14 +3488,14 @@ Checking test 107 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 362.666380 -The maximum resident set size (KB) = 780960 +The total amount of wall time = 354.841327 +The maximum resident set size (KB) = 777600 Test 107 rap_control_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/hrrr_control_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/hrrr_control_dyn32_phy32 Checking test 108 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3542,14 +3542,14 @@ Checking test 108 hrrr_control_dyn32_phy32 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.199375 -The maximum resident set size (KB) = 772292 +The total amount of wall time = 181.699875 +The maximum resident set size (KB) = 778440 Test 108 hrrr_control_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/rap_2threads_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rap_2threads_dyn32_phy32 Checking test 109 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3596,14 +3596,14 @@ Checking test 109 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 330.353589 -The maximum resident set size (KB) = 835012 +The total amount of wall time = 333.095353 +The maximum resident set size (KB) = 832272 Test 109 rap_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/hrrr_control_2threads_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/hrrr_control_2threads_dyn32_phy32 Checking test 110 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3650,14 +3650,14 @@ Checking test 110 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 161.051744 -The maximum resident set size (KB) = 824288 +The total amount of wall time = 163.362284 +The maximum resident set size (KB) = 827460 Test 110 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/hrrr_control_decomp_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/hrrr_control_decomp_dyn32_phy32 Checking test 111 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3704,14 +3704,14 @@ Checking test 111 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 187.898564 -The maximum resident set size (KB) = 776976 +The total amount of wall time = 187.941536 +The maximum resident set size (KB) = 775980 Test 111 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/rap_restart_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rap_restart_dyn32_phy32 Checking test 112 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3750,28 +3750,28 @@ Checking test 112 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 260.639075 -The maximum resident set size (KB) = 615560 +The total amount of wall time = 260.894289 +The maximum resident set size (KB) = 614088 Test 112 rap_restart_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/hrrr_control_restart_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/hrrr_control_restart_dyn32_phy32 Checking test 113 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 96.041956 -The maximum resident set size (KB) = 606060 +The total amount of wall time = 93.596011 +The maximum resident set size (KB) = 609908 Test 113 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/rap_control_dyn64_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rap_control_dyn64_phy32 Checking test 114 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3818,81 +3818,81 @@ Checking test 114 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -The total amount of wall time = 236.233572 -The maximum resident set size (KB) = 797688 +The total amount of wall time = 237.587747 +The maximum resident set size (KB) = 797556 Test 114 rap_control_dyn64_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/rap_control_debug_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rap_control_debug_dyn32_phy32 Checking test 115 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 292.411817 -The maximum resident set size (KB) = 937112 +The total amount of wall time = 297.982600 +The maximum resident set size (KB) = 936712 Test 115 rap_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/hrrr_control_debug_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/hrrr_control_debug_dyn32_phy32 Checking test 116 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 291.243915 -The maximum resident set size (KB) = 935352 +The total amount of wall time = 290.924716 +The maximum resident set size (KB) = 937424 Test 116 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/rap_control_dyn64_phy32_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rap_control_dyn64_phy32_debug Checking test 117 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 296.078635 -The maximum resident set size (KB) = 958228 +The total amount of wall time = 297.366841 +The maximum resident set size (KB) = 960740 Test 117 rap_control_dyn64_phy32_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/hafs_regional_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/hafs_regional_atm Checking test 118 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 282.044065 -The maximum resident set size (KB) = 822072 +The total amount of wall time = 275.277628 +The maximum resident set size (KB) = 826348 Test 118 hafs_regional_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/hafs_regional_atm_thompson_gfdlsf +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/hafs_regional_atm_thompson_gfdlsf Checking test 119 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 340.640872 -The maximum resident set size (KB) = 1184376 +The total amount of wall time = 327.528635 +The maximum resident set size (KB) = 1179940 Test 119 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/hafs_regional_atm_ocn +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/hafs_regional_atm_ocn Checking test 120 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3901,14 +3901,14 @@ Checking test 120 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 395.748144 -The maximum resident set size (KB) = 864456 +The total amount of wall time = 393.985610 +The maximum resident set size (KB) = 861380 Test 120 hafs_regional_atm_ocn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/hafs_regional_atm_wav +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/hafs_regional_atm_wav Checking test 121 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3917,14 +3917,14 @@ Checking test 121 hafs_regional_atm_wav results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 709.078681 -The maximum resident set size (KB) = 892996 +The total amount of wall time = 713.903441 +The maximum resident set size (KB) = 891964 Test 121 hafs_regional_atm_wav PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/hafs_regional_atm_ocn_wav +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/hafs_regional_atm_ocn_wav Checking test 122 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3935,28 +3935,28 @@ Checking test 122 hafs_regional_atm_ocn_wav 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 = 903.148061 -The maximum resident set size (KB) = 915896 +The total amount of wall time = 906.217369 +The maximum resident set size (KB) = 915476 Test 122 hafs_regional_atm_ocn_wav PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/hafs_regional_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/hafs_regional_1nest_atm Checking test 123 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 341.665365 -The maximum resident set size (KB) = 396028 +The total amount of wall time = 332.782126 +The maximum resident set size (KB) = 396208 Test 123 hafs_regional_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/hafs_regional_telescopic_2nests_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/hafs_regional_telescopic_2nests_atm Checking test 124 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3965,28 +3965,28 @@ Checking test 124 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 413.937773 -The maximum resident set size (KB) = 401144 +The total amount of wall time = 406.973801 +The maximum resident set size (KB) = 403488 Test 124 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_global_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/hafs_global_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_global_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/hafs_global_1nest_atm Checking test 125 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 185.232258 -The maximum resident set size (KB) = 264016 +The total amount of wall time = 174.362822 +The maximum resident set size (KB) = 293824 Test 125 hafs_global_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_global_multiple_4nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/hafs_global_multiple_4nests_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_global_multiple_4nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/hafs_global_multiple_4nests_atm Checking test 126 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4004,14 +4004,14 @@ Checking test 126 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -The total amount of wall time = 489.595597 -The maximum resident set size (KB) = 347928 +The total amount of wall time = 491.949312 +The maximum resident set size (KB) = 353176 Test 126 hafs_global_multiple_4nests_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/hafs_regional_specified_moving_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/hafs_regional_specified_moving_1nest_atm Checking test 127 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4020,28 +4020,28 @@ Checking test 127 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 225.862445 -The maximum resident set size (KB) = 407984 +The total amount of wall time = 221.325827 +The maximum resident set size (KB) = 415760 Test 127 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/hafs_regional_storm_following_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/hafs_regional_storm_following_1nest_atm Checking test 128 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 208.596398 -The maximum resident set size (KB) = 406860 +The total amount of wall time = 209.639637 +The maximum resident set size (KB) = 411744 Test 128 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/hafs_regional_storm_following_1nest_atm_ocn Checking test 129 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4050,42 +4050,42 @@ Checking test 129 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 260.129276 -The maximum resident set size (KB) = 471112 +The total amount of wall time = 255.367371 +The maximum resident set size (KB) = 477464 Test 129 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/hafs_global_storm_following_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_global_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/hafs_global_storm_following_1nest_atm Checking test 130 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 93.575550 -The maximum resident set size (KB) = 290496 +The total amount of wall time = 87.116885 +The maximum resident set size (KB) = 294048 Test 130 hafs_global_storm_following_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 131 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 803.206126 -The maximum resident set size (KB) = 498780 +The total amount of wall time = 800.566765 +The maximum resident set size (KB) = 495540 Test 131 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 132 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4096,14 +4096,14 @@ Checking test 132 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 508.151736 -The maximum resident set size (KB) = 531060 +The total amount of wall time = 506.485461 +The maximum resident set size (KB) = 529592 Test 132 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/control_p8_atmlnd_sbs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/control_p8_atmlnd_sbs +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_atmlnd_sbs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_p8_atmlnd_sbs Checking test 133 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4188,14 +4188,14 @@ Checking test 133 control_p8_atmlnd_sbs 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 = 244.688297 -The maximum resident set size (KB) = 1541940 +The total amount of wall time = 243.594305 +The maximum resident set size (KB) = 1550220 Test 133 control_p8_atmlnd_sbs PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/atmaero_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/atmaero_control_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/atmaero_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/atmaero_control_p8 Checking test 134 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4239,14 +4239,14 @@ Checking test 134 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 249.247389 -The maximum resident set size (KB) = 2814404 +The total amount of wall time = 250.219427 +The maximum resident set size (KB) = 2815536 Test 134 atmaero_control_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/atmaero_control_p8_rad -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/atmaero_control_p8_rad +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/atmaero_control_p8_rad +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/atmaero_control_p8_rad Checking test 135 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4290,14 +4290,14 @@ Checking test 135 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 288.203019 -The maximum resident set size (KB) = 2880132 +The total amount of wall time = 295.530872 +The maximum resident set size (KB) = 2877260 Test 135 atmaero_control_p8_rad PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/atmaero_control_p8_rad_micro +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/atmaero_control_p8_rad_micro +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/atmaero_control_p8_rad_micro Checking test 136 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4341,14 +4341,14 @@ Checking test 136 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 292.192461 -The maximum resident set size (KB) = 2887416 +The total amount of wall time = 302.120297 +The maximum resident set size (KB) = 2886428 Test 136 atmaero_control_p8_rad_micro PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_atmaq -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/regional_atmaq +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_atmaq +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/regional_atmaq Checking test 137 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4364,14 +4364,14 @@ Checking test 137 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 689.563797 -The maximum resident set size (KB) = 1266032 +The total amount of wall time = 712.159180 +The maximum resident set size (KB) = 1260008 Test 137 regional_atmaq PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_atmaq_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/regional_atmaq_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_atmaq_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/regional_atmaq_debug Checking test 138 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4385,35 +4385,12 @@ Checking test 138 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1314.166581 -The maximum resident set size (KB) = 1291500 +The total amount of wall time = 1304.633230 +The maximum resident set size (KB) = 1295680 Test 138 regional_atmaq_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230430/INTEL/regional_atmaq_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_157780/regional_atmaq_faster -Checking test 139 regional_atmaq_faster results .... - Comparing sfcf000.nc .........OK - Comparing sfcf003.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf003.nc .........OK - Comparing atmf006.nc .........OK - Comparing RESTART/20190801.180000.coupler.res .........OK - Comparing RESTART/20190801.180000.fv_core.res.nc .........OK - Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.phy_data.nc .........OK - Comparing RESTART/20190801.180000.sfc_data.nc .........OK - -The total amount of wall time = 667.101759 -The maximum resident set size (KB) = 1263924 - -Test 139 regional_atmaq_faster PASS - - REGRESSION TEST WAS SUCCESSFUL -Wed May 3 14:47:00 UTC 2023 -Elapsed time: 01h:04m:39s. Have a nice day! +Tue May 9 00:30:00 UTC 2023 +Elapsed time: 01h:10m:53s. Have a nice day! diff --git a/tests/rt.conf b/tests/rt.conf index b9f32373c82..bbe4bda0640 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -309,4 +309,4 @@ COMPILE | -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON RUN | regional_atmaq_debug | - jet.intel gaea.intel cheyenne.intel | fv3 | COMPILE | -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON | | fv3 | -RUN | regional_atmaq_faster | - jet.intel | fv3 | +RUN | regional_atmaq_faster | - jet.intel wcoss2.intel acorn.intel | fv3 | diff --git a/tests/rt.sh b/tests/rt.sh index 19751476fb4..9a4007bac19 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -468,7 +468,7 @@ if [[ $TESTS_FILE =~ '35d' ]] || [[ $TESTS_FILE =~ 'weekly' ]]; then fi -BL_DATE=20230430 +BL_DATE=20230504 RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-${BL_DATE}/${RT_COMPILER^^}} diff --git a/tests/rt_utils.sh b/tests/rt_utils.sh index 4387fb610f3..732f0a615bd 100755 --- a/tests/rt_utils.sh +++ b/tests/rt_utils.sh @@ -360,13 +360,18 @@ check_results() { printf ".......ALT CHECK.." if [[ ${MACHINE_ID} =~ orion || ${MACHINE_ID} =~ hera || ${MACHINE_ID} =~ gaea || ${MACHINE_ID} =~ jet || ${MACHINE_ID} =~ cheyenne ]] ; then nccmp -d -f -g -B --Attribute=checksum --warn=format ${RTPWD}/${CNTL_DIR}/${i} ${RUNDIR}/${i} > ${i}_nccmp.log 2>&1 && d=$? || d=$? + if [[ $d -ne 0 && $d -ne 1 ]]; then + echo "....ERROR" >> ${REGRESSIONTEST_LOG} + echo "....ERROR" + exit 1 + fi else ${PATHRT}/compare_ncfile.py ${RTPWD}/${CNTL_DIR}/$i ${RUNDIR}/$i > compare_ncfile.log 2>&1 && d=$? || d=$? - fi - if [[ $d -eq 1 ]]; then - echo "....ERROR" >> ${REGRESSIONTEST_LOG} - echo "....ERROR" - exit 1 + if [[ $d -eq 1 ]]; then + echo "....ERROR" >> ${REGRESSIONTEST_LOG} + echo "....ERROR" + exit 1 + fi fi fi fi From 1ac938cca0821c404525f46e68b614198855eec5 Mon Sep 17 00:00:00 2001 From: JONG KIM Date: Fri, 12 May 2023 16:17:05 -0400 Subject: [PATCH 29/30] Create new baseline to fix the issue with develop-20230504 and recover baseline on gaea (#1749) * New baseline, develop-20230510 created * gaea hpc stack update and gaea9 phase out --- modulefiles/ufs_gaea.intel.lua | 15 +- tests/RegressionTests_acorn.intel.log | 1352 +++--- tests/RegressionTests_cheyenne.gnu.log | 460 +- tests/RegressionTests_cheyenne.intel.log | 1372 +++--- tests/RegressionTests_gaea.intel.log | 2440 +++++----- tests/RegressionTests_hera.gnu.log | 604 ++- tests/RegressionTests_hera.intel.log | 5654 ++++++++++++++-------- tests/RegressionTests_jet.intel.log | 1254 ++--- tests/RegressionTests_orion.intel.log | 1414 +++--- tests/RegressionTests_wcoss2.intel.log | 1162 ++--- tests/detect_machine.sh | 2 - tests/fv3_conf/compile_slurm.IN_gaea | 1 + tests/rt.sh | 2 +- 13 files changed, 8566 insertions(+), 7166 deletions(-) diff --git a/modulefiles/ufs_gaea.intel.lua b/modulefiles/ufs_gaea.intel.lua index 245d9d064c9..4bdd81e71a5 100644 --- a/modulefiles/ufs_gaea.intel.lua +++ b/modulefiles/ufs_gaea.intel.lua @@ -1,22 +1,21 @@ help([[ This module loads libraries required for building and running UFS Weather Model - on the NOAA RDHPC machine Gaea using Intel-2022.1.2 + on the NOAA RDHPC machine Gaea using Intel-2022.0.2 ]]) whatis([===[Loads libraries needed for building the UFS Weather Model on Gaea ]===]) -load(pathJoin("cmake", os.getenv("cmake_ver") or "3.20.1")) +load_any(pathJoin("cmake", os.getenv("cmake_ver") or "3.20.1"),"cmake") -prepend_path("MODULEPATH","/lustre/f2/dev/role.epic/contrib/hpc-stack/intel-2021.3.0_noarch/modulefiles/stack") +prepend_path("MODULEPATH","/lustre/f2/dev/role.epic/contrib/hpc-stack/intel-2022.0.2/modulefiles/stack") load(pathJoin("hpc", os.getenv("hpc_ver") or "1.2.0")) -load(pathJoin("intel", os.getenv("intel_ver") or "2021.3.0")) -load(pathJoin("hpc-intel", os.getenv("hpc_intel_ver") or "2021.3.0")) + +load(pathJoin("intel-classic", os.getenv("intel_ver") or "2022.0.2")) +load_any(pathJoin("cray-mpich", os.getenv("cray_mpich_ver") or "7.7.11"),"cray-mpich") +load(pathJoin("hpc-intel", os.getenv("hpc_intel_ver") or "2022.0.2")) load(pathJoin("hpc-cray-mpich", os.getenv("hpc_cray_mpich_ver") or "7.7.11")) -load(pathJoin("gcc", os.getenv("gcc_ver") or "8.3.0")) load(pathJoin("libpng", os.getenv("libpng_ver") or "1.6.37")) --- needed for WW3 build -load(pathJoin("gcc", os.getenv("gcc_ver") or "8.3.0")) -- Needed at runtime: load("alps") diff --git a/tests/RegressionTests_acorn.intel.log b/tests/RegressionTests_acorn.intel.log index eac601784ef..da2ff48c819 100644 --- a/tests/RegressionTests_acorn.intel.log +++ b/tests/RegressionTests_acorn.intel.log @@ -1,41 +1,41 @@ -Tue May 9 13:48:34 UTC 2023 +Wed May 10 21:30:37 UTC 2023 Start Regression test -Compile 001 elapsed time 1117 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 698 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 543 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 501 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 005 elapsed time 1201 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 711 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 688 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 008 elapsed time 1560 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 1007 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 1556 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 1133 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 1171 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 481 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 014 elapsed time 576 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 703 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 475 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 524 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 371 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 719 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 020 elapsed time 674 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 021 elapsed time 710 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 022 elapsed time 503 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 023 elapsed time 320 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 024 elapsed time 166 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 803 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 026 elapsed time 941 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 027 elapsed time 520 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 771 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 629 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 782 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 313 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 032 elapsed time 698 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8_mixedmode -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/cpld_control_p8_mixedmode +Compile 001 elapsed time 582 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1129 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 556 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 542 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 005 elapsed time 518 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 670 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 1698 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 008 elapsed time 1048 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 1097 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 1178 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 1275 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 621 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 830 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 014 elapsed time 609 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 1148 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 501 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 657 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 398 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 530 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 020 elapsed time 478 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 021 elapsed time 982 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 022 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 023 elapsed time 495 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 024 elapsed time 286 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 142 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 026 elapsed time 546 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 027 elapsed time 562 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 739 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 912 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 654 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 243 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 032 elapsed time 668 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8_mixedmode +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -100,14 +100,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 336.363959 -The maximum resident set size (KB) = 2946824 +The total amount of wall time = 334.103195 +The maximum resident set size (KB) = 2945008 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_gfsv17 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/cpld_control_gfsv17 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_gfsv17 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -171,14 +171,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 256.744435 -The maximum resident set size (KB) = 1575372 +The total amount of wall time = 257.756531 +The maximum resident set size (KB) = 1581932 Test 002 cpld_control_gfsv17 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/cpld_control_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -243,14 +243,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 386.625964 -The maximum resident set size (KB) = 2984092 +The total amount of wall time = 386.272129 +The maximum resident set size (KB) = 2978096 Test 003 cpld_control_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/cpld_restart_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -303,14 +303,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 231.545030 -The maximum resident set size (KB) = 2866808 +The total amount of wall time = 230.236237 +The maximum resident set size (KB) = 2864688 Test 004 cpld_restart_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/cpld_control_qr_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -375,14 +375,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 387.994257 -The maximum resident set size (KB) = 2989600 +The total amount of wall time = 386.219452 +The maximum resident set size (KB) = 2990352 Test 005 cpld_control_qr_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/cpld_restart_qr_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -435,14 +435,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 234.214218 -The maximum resident set size (KB) = 2880012 +The total amount of wall time = 231.360922 +The maximum resident set size (KB) = 2877612 Test 006 cpld_restart_qr_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/cpld_2threads_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -495,14 +495,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 369.229710 -The maximum resident set size (KB) = 3282976 +The total amount of wall time = 368.900907 +The maximum resident set size (KB) = 3282964 Test 007 cpld_2threads_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/cpld_decomp_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -555,14 +555,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 380.117371 -The maximum resident set size (KB) = 2977252 +The total amount of wall time = 383.467588 +The maximum resident set size (KB) = 2980416 Test 008 cpld_decomp_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/cpld_mpi_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -615,14 +615,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 316.600731 -The maximum resident set size (KB) = 2906004 +The total amount of wall time = 319.358363 +The maximum resident set size (KB) = 2909052 Test 009 cpld_mpi_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_ciceC_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/cpld_control_ciceC_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_ciceC_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -687,14 +687,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 387.088747 -The maximum resident set size (KB) = 2983916 +The total amount of wall time = 386.794090 +The maximum resident set size (KB) = 2981120 Test 010 cpld_control_ciceC_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/cpld_control_noaero_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/cpld_control_noaero_p8 Checking test 011 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -758,14 +758,14 @@ Checking test 011 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 288.043237 -The maximum resident set size (KB) = 1571324 +The total amount of wall time = 286.471011 +The maximum resident set size (KB) = 1574268 Test 011 cpld_control_noaero_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/cpld_control_nowave_noaero_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_c96_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/cpld_control_nowave_noaero_p8 Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -827,14 +827,14 @@ Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 302.775396 -The maximum resident set size (KB) = 1619192 +The total amount of wall time = 303.769702 +The maximum resident set size (KB) = 1620092 Test 012 cpld_control_nowave_noaero_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/cpld_control_noaero_p8_agrid +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_noaero_p8_agrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/cpld_control_noaero_p8_agrid Checking test 013 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -896,14 +896,14 @@ Checking test 013 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 311.242252 -The maximum resident set size (KB) = 1624168 +The total amount of wall time = 310.657986 +The maximum resident set size (KB) = 1629460 Test 013 cpld_control_noaero_p8_agrid PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/cpld_control_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/cpld_control_c48 Checking test 014 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -953,14 +953,14 @@ Checking test 014 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 440.579996 -The maximum resident set size (KB) = 2627996 +The total amount of wall time = 440.933249 +The maximum resident set size (KB) = 2637520 Test 014 cpld_control_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/cpld_warmstart_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/cpld_warmstart_c48 Checking test 015 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1010,14 +1010,14 @@ Checking test 015 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 124.387910 -The maximum resident set size (KB) = 2648620 +The total amount of wall time = 122.418026 +The maximum resident set size (KB) = 2647960 Test 015 cpld_warmstart_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/cpld_restart_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/cpld_restart_c48 Checking test 016 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1067,14 +1067,14 @@ Checking test 016 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 67.231318 -The maximum resident set size (KB) = 2063356 +The total amount of wall time = 68.766799 +The maximum resident set size (KB) = 2061308 Test 016 cpld_restart_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/cpld_control_p8_faster +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/cpld_control_p8_faster Checking test 017 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1139,14 +1139,14 @@ Checking test 017 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 378.806501 -The maximum resident set size (KB) = 2980508 +The total amount of wall time = 377.393357 +The maximum resident set size (KB) = 2977812 Test 017 cpld_control_p8_faster PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_flake -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_flake +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_flake +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_flake Checking test 018 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1157,14 +1157,14 @@ Checking test 018 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 212.680390 -The maximum resident set size (KB) = 560972 +The total amount of wall time = 213.716313 +The maximum resident set size (KB) = 560864 Test 018 control_flake PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_CubedSphereGrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_CubedSphereGrid +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_CubedSphereGrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_CubedSphereGrid Checking test 019 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1191,14 +1191,14 @@ Checking test 019 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 129.442093 -The maximum resident set size (KB) = 510480 +The total amount of wall time = 128.910857 +The maximum resident set size (KB) = 512412 Test 019 control_CubedSphereGrid PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_latlon -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_latlon +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_latlon +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_latlon Checking test 020 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1209,14 +1209,14 @@ Checking test 020 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 132.313437 -The maximum resident set size (KB) = 514292 +The total amount of wall time = 131.760413 +The maximum resident set size (KB) = 512168 Test 020 control_latlon PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_wrtGauss_netcdf_parallel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_wrtGauss_netcdf_parallel Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1227,14 +1227,14 @@ Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 134.587190 -The maximum resident set size (KB) = 516324 +The total amount of wall time = 134.660908 +The maximum resident set size (KB) = 515264 Test 021 control_wrtGauss_netcdf_parallel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_c48 Checking test 022 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1273,14 +1273,14 @@ Checking test 022 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 330.158061 -The maximum resident set size (KB) = 674744 +The total amount of wall time = 331.628426 +The maximum resident set size (KB) = 671592 Test 022 control_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c192 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_c192 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_c192 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_c192 Checking test 023 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1291,14 +1291,14 @@ Checking test 023 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 528.827409 -The maximum resident set size (KB) = 613968 +The total amount of wall time = 528.431107 +The maximum resident set size (KB) = 614692 Test 023 control_c192 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c384 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_c384 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_c384 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_c384 Checking test 024 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1309,14 +1309,14 @@ Checking test 024 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 567.740010 -The maximum resident set size (KB) = 922308 +The total amount of wall time = 566.071849 +The maximum resident set size (KB) = 922524 Test 024 control_c384 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c384gdas -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_c384gdas +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_c384gdas +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_c384gdas Checking test 025 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1359,14 +1359,14 @@ Checking test 025 control_c384gdas 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 = 501.063852 -The maximum resident set size (KB) = 1057488 +The total amount of wall time = 497.576766 +The maximum resident set size (KB) = 1054948 Test 025 control_c384gdas PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_stochy +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_stochy Checking test 026 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1377,28 +1377,28 @@ Checking test 026 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 89.548602 -The maximum resident set size (KB) = 520556 +The total amount of wall time = 89.459411 +The maximum resident set size (KB) = 516152 Test 026 control_stochy PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_stochy_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_stochy_restart Checking test 027 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 49.805313 -The maximum resident set size (KB) = 286884 +The total amount of wall time = 49.246527 +The maximum resident set size (KB) = 287220 Test 027 control_stochy_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_lndp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_lndp Checking test 028 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1409,14 +1409,14 @@ Checking test 028 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 83.261682 -The maximum resident set size (KB) = 514508 +The total amount of wall time = 82.821673 +The maximum resident set size (KB) = 516600 Test 028 control_lndp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_iovr4 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_iovr4 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_iovr4 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_iovr4 Checking test 029 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1431,14 +1431,14 @@ Checking test 029 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.443496 -The maximum resident set size (KB) = 515316 +The total amount of wall time = 136.338454 +The maximum resident set size (KB) = 514432 Test 029 control_iovr4 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_iovr5 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_iovr5 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_iovr5 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_iovr5 Checking test 030 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1453,14 +1453,14 @@ Checking test 030 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.131040 -The maximum resident set size (KB) = 517488 +The total amount of wall time = 135.096758 +The maximum resident set size (KB) = 514692 Test 030 control_iovr5 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_p8 Checking test 031 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1507,14 +1507,14 @@ Checking test 031 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 178.586291 -The maximum resident set size (KB) = 1486440 +The total amount of wall time = 179.724838 +The maximum resident set size (KB) = 1481608 Test 031 control_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_restart_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_restart_p8 Checking test 032 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1553,14 +1553,14 @@ Checking test 032 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 102.039083 -The maximum resident set size (KB) = 652712 +The total amount of wall time = 100.999382 +The maximum resident set size (KB) = 650984 Test 032 control_restart_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_qr_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_qr_p8 Checking test 033 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1607,14 +1607,14 @@ Checking test 033 control_qr_p8 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 = 177.069032 -The maximum resident set size (KB) = 1496520 +The total amount of wall time = 178.318774 +The maximum resident set size (KB) = 1494052 Test 033 control_qr_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_restart_qr_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_restart_qr_p8 Checking test 034 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1653,14 +1653,14 @@ Checking test 034 control_restart_qr_p8 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 = 99.997949 -The maximum resident set size (KB) = 661824 +The total amount of wall time = 101.156076 +The maximum resident set size (KB) = 660412 Test 034 control_restart_qr_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_decomp_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_decomp_p8 Checking test 035 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1703,14 +1703,14 @@ Checking test 035 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 181.600221 -The maximum resident set size (KB) = 1476356 +The total amount of wall time = 181.362821 +The maximum resident set size (KB) = 1480112 Test 035 control_decomp_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_2threads_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_2threads_p8 Checking test 036 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1753,14 +1753,14 @@ Checking test 036 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 155.072124 -The maximum resident set size (KB) = 1562436 +The total amount of wall time = 156.589945 +The maximum resident set size (KB) = 1563816 Test 036 control_2threads_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_p8_lndp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_p8_lndp Checking test 037 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1779,14 +1779,14 @@ Checking test 037 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 320.952524 -The maximum resident set size (KB) = 1482664 +The total amount of wall time = 322.290349 +The maximum resident set size (KB) = 1481700 Test 037 control_p8_lndp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_rrtmgp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_p8_rrtmgp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8_rrtmgp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_p8_rrtmgp Checking test 038 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1833,14 +1833,14 @@ Checking test 038 control_p8_rrtmgp results .... 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.481542 -The maximum resident set size (KB) = 1549580 +The total amount of wall time = 234.621895 +The maximum resident set size (KB) = 1540284 Test 038 control_p8_rrtmgp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_mynn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_p8_mynn +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8_mynn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_p8_mynn Checking test 039 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1887,14 +1887,14 @@ Checking test 039 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 180.056537 -The maximum resident set size (KB) = 1482184 +The total amount of wall time = 178.783996 +The maximum resident set size (KB) = 1488052 Test 039 control_p8_mynn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/merra2_thompson -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/merra2_thompson +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/merra2_thompson +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/merra2_thompson Checking test 040 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1941,14 +1941,14 @@ Checking test 040 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 204.150063 -The maximum resident set size (KB) = 1495252 +The total amount of wall time = 203.382881 +The maximum resident set size (KB) = 1486428 Test 040 merra2_thompson PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/regional_control +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/regional_control Checking test 041 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1959,28 +1959,28 @@ Checking test 041 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 286.768961 -The maximum resident set size (KB) = 652256 +The total amount of wall time = 288.645241 +The maximum resident set size (KB) = 653152 Test 041 regional_control PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/regional_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/regional_restart Checking test 042 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 157.757532 -The maximum resident set size (KB) = 646500 +The total amount of wall time = 156.136315 +The maximum resident set size (KB) = 649116 Test 042 regional_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/regional_control_qr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/regional_control_qr Checking test 043 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1991,28 +1991,28 @@ Checking test 043 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 288.660681 -The maximum resident set size (KB) = 651596 +The total amount of wall time = 291.194065 +The maximum resident set size (KB) = 652800 Test 043 regional_control_qr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/regional_restart_qr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/regional_restart_qr Checking test 044 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 157.125493 -The maximum resident set size (KB) = 647372 +The total amount of wall time = 156.171478 +The maximum resident set size (KB) = 648748 Test 044 regional_restart_qr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/regional_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/regional_decomp Checking test 045 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2023,14 +2023,14 @@ Checking test 045 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 302.719313 -The maximum resident set size (KB) = 653444 +The total amount of wall time = 301.920895 +The maximum resident set size (KB) = 653664 Test 045 regional_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/regional_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/regional_2threads Checking test 046 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2041,14 +2041,14 @@ Checking test 046 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 177.098448 -The maximum resident set size (KB) = 690084 +The total amount of wall time = 176.051319 +The maximum resident set size (KB) = 696748 Test 046 regional_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_noquilt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/regional_noquilt +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_noquilt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/regional_noquilt Checking test 047 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2056,14 +2056,14 @@ Checking test 047 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 312.288321 -The maximum resident set size (KB) = 641836 +The total amount of wall time = 311.703664 +The maximum resident set size (KB) = 641896 Test 047 regional_noquilt PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/regional_2dwrtdecomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/regional_2dwrtdecomp Checking test 048 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2074,14 +2074,14 @@ Checking test 048 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 291.297269 -The maximum resident set size (KB) = 648664 +The total amount of wall time = 288.306608 +The maximum resident set size (KB) = 648464 Test 048 regional_2dwrtdecomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/fv3_regional_wofs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/regional_wofs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/fv3_regional_wofs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/regional_wofs Checking test 049 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2092,14 +2092,14 @@ Checking test 049 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 363.681402 -The maximum resident set size (KB) = 339880 +The total amount of wall time = 363.155741 +The maximum resident set size (KB) = 340464 Test 049 regional_wofs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_ifi_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/regional_ifi_control +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_ifi_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/regional_ifi_control Checking test 050 regional_ifi_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2110,14 +2110,14 @@ Checking test 050 regional_ifi_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 319.829398 -The maximum resident set size (KB) = 652716 +The total amount of wall time = 323.158240 +The maximum resident set size (KB) = 654820 Test 050 regional_ifi_control PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_ifi_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/regional_ifi_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_ifi_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/regional_ifi_decomp Checking test 051 regional_ifi_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2128,14 +2128,14 @@ Checking test 051 regional_ifi_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 337.637772 -The maximum resident set size (KB) = 651640 +The total amount of wall time = 339.183003 +The maximum resident set size (KB) = 652476 Test 051 regional_ifi_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_ifi_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/regional_ifi_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_ifi_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/regional_ifi_2threads Checking test 052 regional_ifi_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2146,14 +2146,14 @@ Checking test 052 regional_ifi_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 197.923256 -The maximum resident set size (KB) = 694224 +The total amount of wall time = 200.744122 +The maximum resident set size (KB) = 691308 Test 052 regional_ifi_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rap_control +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/rap_control Checking test 053 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2200,14 +2200,14 @@ Checking test 053 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 420.529683 -The maximum resident set size (KB) = 890820 +The total amount of wall time = 418.802981 +The maximum resident set size (KB) = 890888 Test 053 rap_control PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/regional_spp_sppt_shum_skeb +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_spp_sppt_shum_skeb +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/regional_spp_sppt_shum_skeb Checking test 054 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2218,14 +2218,14 @@ Checking test 054 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 246.595334 -The maximum resident set size (KB) = 984960 +The total amount of wall time = 244.403167 +The maximum resident set size (KB) = 982392 Test 054 regional_spp_sppt_shum_skeb PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rap_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/rap_decomp Checking test 055 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2272,14 +2272,14 @@ Checking test 055 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 433.623522 -The maximum resident set size (KB) = 889564 +The total amount of wall time = 433.835082 +The maximum resident set size (KB) = 890164 Test 055 rap_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rap_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/rap_2threads Checking test 056 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2326,14 +2326,14 @@ Checking test 056 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 389.187607 -The maximum resident set size (KB) = 965076 +The total amount of wall time = 388.062843 +The maximum resident set size (KB) = 969856 Test 056 rap_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rap_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/rap_restart Checking test 057 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2372,14 +2372,14 @@ Checking test 057 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 212.797248 -The maximum resident set size (KB) = 643128 +The total amount of wall time = 212.418995 +The maximum resident set size (KB) = 642708 Test 057 rap_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rap_sfcdiff +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/rap_sfcdiff Checking test 058 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2426,14 +2426,14 @@ Checking test 058 rap_sfcdiff results .... 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.937458 -The maximum resident set size (KB) = 891224 +The total amount of wall time = 420.762832 +The maximum resident set size (KB) = 891764 Test 058 rap_sfcdiff PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rap_sfcdiff_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/rap_sfcdiff_decomp Checking test 059 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2480,14 +2480,14 @@ Checking test 059 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 438.488075 -The maximum resident set size (KB) = 889616 +The total amount of wall time = 439.201691 +The maximum resident set size (KB) = 892268 Test 059 rap_sfcdiff_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rap_sfcdiff_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/rap_sfcdiff_restart Checking test 060 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2526,14 +2526,14 @@ Checking test 060 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 309.652010 -The maximum resident set size (KB) = 638856 +The total amount of wall time = 309.615882 +The maximum resident set size (KB) = 640328 Test 060 rap_sfcdiff_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hrrr_control +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/hrrr_control Checking test 061 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2580,14 +2580,14 @@ Checking test 061 hrrr_control 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 = 390.537386 -The maximum resident set size (KB) = 885484 +The total amount of wall time = 390.747112 +The maximum resident set size (KB) = 885060 Test 061 hrrr_control PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hrrr_control_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/hrrr_control_decomp Checking test 062 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2634,14 +2634,14 @@ Checking test 062 hrrr_control_decomp 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 = 403.625872 -The maximum resident set size (KB) = 885312 +The total amount of wall time = 404.189715 +The maximum resident set size (KB) = 885600 Test 062 hrrr_control_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hrrr_control_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/hrrr_control_2threads Checking test 063 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2688,28 +2688,28 @@ Checking test 063 hrrr_control_2threads 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 = 350.187083 -The maximum resident set size (KB) = 963176 +The total amount of wall time = 350.060031 +The maximum resident set size (KB) = 964560 Test 063 hrrr_control_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hrrr_control_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/hrrr_control_restart Checking test 064 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 286.567256 -The maximum resident set size (KB) = 637920 +The total amount of wall time = 287.215639 +The maximum resident set size (KB) = 637440 Test 064 hrrr_control_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1beta -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rrfs_v1beta +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_v1beta +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/rrfs_v1beta Checking test 065 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2756,14 +2756,14 @@ Checking test 065 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 420.781959 -The maximum resident set size (KB) = 887468 +The total amount of wall time = 417.765798 +The maximum resident set size (KB) = 887300 Test 065 rrfs_v1beta PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1nssl -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rrfs_v1nssl +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_v1nssl +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/rrfs_v1nssl Checking test 066 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2778,14 +2778,14 @@ Checking test 066 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 483.049540 -The maximum resident set size (KB) = 580772 +The total amount of wall time = 482.823085 +The maximum resident set size (KB) = 579420 Test 066 rrfs_v1nssl PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rrfs_v1nssl_nohailnoccn +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/rrfs_v1nssl_nohailnoccn Checking test 067 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2800,14 +2800,14 @@ Checking test 067 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 469.470987 -The maximum resident set size (KB) = 567484 +The total amount of wall time = 470.769631 +The maximum resident set size (KB) = 567144 Test 067 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/rrfs_smoke_conus13km_hrrr_warm Checking test 068 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2816,14 +2816,14 @@ Checking test 068 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 149.357899 -The maximum resident set size (KB) = 797204 +The total amount of wall time = 150.158252 +The maximum resident set size (KB) = 799248 Test 068 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 069 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2832,14 +2832,14 @@ Checking test 069 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 104.267413 -The maximum resident set size (KB) = 798048 +The total amount of wall time = 111.630569 +The maximum resident set size (KB) = 798928 Test 069 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rrfs_conus13km_hrrr_warm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/rrfs_conus13km_hrrr_warm Checking test 070 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2848,14 +2848,14 @@ Checking test 070 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 135.253002 -The maximum resident set size (KB) = 789912 +The total amount of wall time = 136.818241 +The maximum resident set size (KB) = 792260 Test 070 rrfs_conus13km_hrrr_warm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/rrfs_smoke_conus13km_radar_tten_warm Checking test 071 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2864,26 +2864,26 @@ Checking test 071 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 150.721902 -The maximum resident set size (KB) = 798076 +The total amount of wall time = 150.866709 +The maximum resident set size (KB) = 798704 Test 071 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 072 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 69.356727 -The maximum resident set size (KB) = 762976 +The total amount of wall time = 70.014616 +The maximum resident set size (KB) = 764104 Test 072 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmg -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_csawmg +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_csawmg +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_csawmg Checking test 073 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2894,14 +2894,14 @@ Checking test 073 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 346.903408 -The maximum resident set size (KB) = 582132 +The total amount of wall time = 349.784949 +The maximum resident set size (KB) = 583712 Test 073 control_csawmg PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmgt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_csawmgt +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_csawmgt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_csawmgt Checking test 074 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2912,14 +2912,14 @@ Checking test 074 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 343.889755 -The maximum resident set size (KB) = 584616 +The total amount of wall time = 343.617802 +The maximum resident set size (KB) = 582340 Test 074 control_csawmgt PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_ras -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_ras +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_ras +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_ras Checking test 075 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2930,26 +2930,26 @@ Checking test 075 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 180.969138 -The maximum resident set size (KB) = 549940 +The total amount of wall time = 181.909824 +The maximum resident set size (KB) = 550016 Test 075 control_ras PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wam -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_wam +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_wam +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_wam Checking test 076 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 117.727981 -The maximum resident set size (KB) = 271620 +The total amount of wall time = 116.944974 +The maximum resident set size (KB) = 269824 Test 076 control_wam PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_p8_faster +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_p8_faster Checking test 077 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2996,14 +2996,14 @@ Checking test 077 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 176.470930 -The maximum resident set size (KB) = 1485504 +The total amount of wall time = 176.540812 +The maximum resident set size (KB) = 1486044 Test 077 control_p8_faster PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/regional_control_faster +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/regional_control_faster Checking test 078 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3014,56 +3014,56 @@ Checking test 078 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 285.157731 -The maximum resident set size (KB) = 651384 +The total amount of wall time = 283.275868 +The maximum resident set size (KB) = 648672 Test 078 regional_control_faster PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 079 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 911.396994 -The maximum resident set size (KB) = 824496 +The total amount of wall time = 919.372519 +The maximum resident set size (KB) = 827296 Test 079 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 080 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 522.835240 -The maximum resident set size (KB) = 828620 +The total amount of wall time = 528.235701 +The maximum resident set size (KB) = 826128 Test 080 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rrfs_conus13km_hrrr_warm_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/rrfs_conus13km_hrrr_warm_debug Checking test 081 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 807.153458 -The maximum resident set size (KB) = 821048 +The total amount of wall time = 810.398353 +The maximum resident set size (KB) = 821160 Test 081 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_CubedSphereGrid_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_CubedSphereGrid_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_CubedSphereGrid_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_CubedSphereGrid_debug Checking test 082 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3090,348 +3090,348 @@ Checking test 082 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 157.586723 -The maximum resident set size (KB) = 680688 +The total amount of wall time = 156.733417 +The maximum resident set size (KB) = 676152 Test 082 control_CubedSphereGrid_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_wrtGauss_netcdf_parallel_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_wrtGauss_netcdf_parallel_debug Checking test 083 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 156.668771 -The maximum resident set size (KB) = 684644 +The total amount of wall time = 157.278332 +The maximum resident set size (KB) = 677428 Test 083 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_stochy_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_stochy_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_stochy_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_stochy_debug Checking test 084 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 177.068927 -The maximum resident set size (KB) = 684384 +The total amount of wall time = 179.348107 +The maximum resident set size (KB) = 679884 Test 084 control_stochy_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_lndp_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_lndp_debug Checking test 085 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 159.465969 -The maximum resident set size (KB) = 683312 +The total amount of wall time = 160.557271 +The maximum resident set size (KB) = 684004 Test 085 control_lndp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmg_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_csawmg_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_csawmg_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_csawmg_debug Checking test 086 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 251.764378 -The maximum resident set size (KB) = 719940 +The total amount of wall time = 254.627169 +The maximum resident set size (KB) = 717872 Test 086 control_csawmg_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmgt_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_csawmgt_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_csawmgt_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_csawmgt_debug Checking test 087 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 249.361541 -The maximum resident set size (KB) = 720840 +The total amount of wall time = 248.848628 +The maximum resident set size (KB) = 717220 Test 087 control_csawmgt_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_ras_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_ras_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_ras_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_ras_debug Checking test 088 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 161.030484 -The maximum resident set size (KB) = 692700 +The total amount of wall time = 161.076658 +The maximum resident set size (KB) = 692720 Test 088 control_ras_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_diag_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_diag_debug Checking test 089 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 161.443811 -The maximum resident set size (KB) = 736976 +The total amount of wall time = 161.223959 +The maximum resident set size (KB) = 736824 Test 089 control_diag_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_debug_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_debug_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_debug_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_debug_p8 Checking test 090 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 185.903939 -The maximum resident set size (KB) = 1497888 +The total amount of wall time = 183.137826 +The maximum resident set size (KB) = 1498168 Test 090 control_debug_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/regional_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/regional_debug Checking test 091 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1039.888379 -The maximum resident set size (KB) = 673284 +The total amount of wall time = 1040.599186 +The maximum resident set size (KB) = 675040 Test 091 regional_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rap_control_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/rap_control_debug Checking test 092 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 296.282402 -The maximum resident set size (KB) = 1049644 +The total amount of wall time = 296.455272 +The maximum resident set size (KB) = 1051912 Test 092 rap_control_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hrrr_control_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/hrrr_control_debug Checking test 093 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 288.761857 -The maximum resident set size (KB) = 1045756 +The total amount of wall time = 289.392892 +The maximum resident set size (KB) = 1046356 Test 093 hrrr_control_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rap_unified_drag_suite_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/rap_unified_drag_suite_debug Checking test 094 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 296.703058 -The maximum resident set size (KB) = 1054660 +The total amount of wall time = 295.439046 +The maximum resident set size (KB) = 1048172 Test 094 rap_unified_drag_suite_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rap_diag_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/rap_diag_debug Checking test 095 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 306.403952 -The maximum resident set size (KB) = 1135448 +The total amount of wall time = 306.872848 +The maximum resident set size (KB) = 1136068 Test 095 rap_diag_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rap_cires_ugwp_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/rap_cires_ugwp_debug Checking test 096 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 301.522266 -The maximum resident set size (KB) = 1053976 +The total amount of wall time = 302.943933 +The maximum resident set size (KB) = 1049760 Test 096 rap_cires_ugwp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rap_unified_ugwp_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/rap_unified_ugwp_debug Checking test 097 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 302.877103 -The maximum resident set size (KB) = 1054988 +The total amount of wall time = 301.908208 +The maximum resident set size (KB) = 1052332 Test 097 rap_unified_ugwp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rap_lndp_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/rap_lndp_debug Checking test 098 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.263580 -The maximum resident set size (KB) = 1054040 +The total amount of wall time = 300.094157 +The maximum resident set size (KB) = 1051064 Test 098 rap_lndp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_progcld_thompson_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rap_progcld_thompson_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_progcld_thompson_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/rap_progcld_thompson_debug Checking test 099 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 295.992735 -The maximum resident set size (KB) = 1055396 +The total amount of wall time = 296.952730 +The maximum resident set size (KB) = 1050240 Test 099 rap_progcld_thompson_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_noah_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rap_noah_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_noah_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/rap_noah_debug Checking test 100 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 288.879077 -The maximum resident set size (KB) = 1051356 +The total amount of wall time = 289.748558 +The maximum resident set size (KB) = 1046316 Test 100 rap_noah_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rap_sfcdiff_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_sfcdiff_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/rap_sfcdiff_debug Checking test 101 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 295.769756 -The maximum resident set size (KB) = 1056012 +The total amount of wall time = 296.799457 +The maximum resident set size (KB) = 1054772 Test 101 rap_sfcdiff_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/rap_noah_sfcdiff_cires_ugwp_debug Checking test 102 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 485.248172 -The maximum resident set size (KB) = 1053808 +The total amount of wall time = 486.985720 +The maximum resident set size (KB) = 1048760 Test 102 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1beta_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rrfs_v1beta_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_v1beta_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/rrfs_v1beta_debug Checking test 103 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 291.168689 -The maximum resident set size (KB) = 1051216 +The total amount of wall time = 291.698503 +The maximum resident set size (KB) = 1048004 Test 103 rrfs_v1beta_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_clm_lake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rap_clm_lake_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_clm_lake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/rap_clm_lake_debug Checking test 104 rap_clm_lake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 375.496163 -The maximum resident set size (KB) = 1054136 +The total amount of wall time = 375.148482 +The maximum resident set size (KB) = 1049728 Test 104 rap_clm_lake_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_flake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rap_flake_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_flake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/rap_flake_debug Checking test 105 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 296.191398 -The maximum resident set size (KB) = 1053512 +The total amount of wall time = 297.686556 +The maximum resident set size (KB) = 1054336 Test 105 rap_flake_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wam_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_wam_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_wam_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_wam_debug Checking test 106 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 298.306328 -The maximum resident set size (KB) = 300136 +The total amount of wall time = 298.972023 +The maximum resident set size (KB) = 301548 Test 106 control_wam_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3442,14 +3442,14 @@ Checking test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 232.241044 -The maximum resident set size (KB) = 893180 +The total amount of wall time = 231.819373 +The maximum resident set size (KB) = 903208 Test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rap_control_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/rap_control_dyn32_phy32 Checking test 108 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3496,14 +3496,14 @@ Checking test 108 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 353.166121 -The maximum resident set size (KB) = 778836 +The total amount of wall time = 354.372295 +The maximum resident set size (KB) = 774244 Test 108 rap_control_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hrrr_control_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/hrrr_control_dyn32_phy32 Checking test 109 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3550,14 +3550,14 @@ Checking test 109 hrrr_control_dyn32_phy32 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.665397 -The maximum resident set size (KB) = 775532 +The total amount of wall time = 178.973356 +The maximum resident set size (KB) = 773244 Test 109 hrrr_control_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rap_2threads_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/rap_2threads_dyn32_phy32 Checking test 110 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3604,14 +3604,14 @@ Checking test 110 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 329.569917 -The maximum resident set size (KB) = 830220 +The total amount of wall time = 328.581852 +The maximum resident set size (KB) = 830616 Test 110 rap_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hrrr_control_2threads_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/hrrr_control_2threads_dyn32_phy32 Checking test 111 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3658,14 +3658,14 @@ Checking test 111 hrrr_control_2threads_dyn32_phy32 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.017313 -The maximum resident set size (KB) = 824276 +The total amount of wall time = 160.807328 +The maximum resident set size (KB) = 823392 Test 111 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hrrr_control_decomp_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/hrrr_control_decomp_dyn32_phy32 Checking test 112 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3712,14 +3712,14 @@ Checking test 112 hrrr_control_decomp_dyn32_phy32 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.593899 -The maximum resident set size (KB) = 774056 +The total amount of wall time = 186.721171 +The maximum resident set size (KB) = 772328 Test 112 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rap_restart_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/rap_restart_dyn32_phy32 Checking test 113 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3758,28 +3758,28 @@ Checking test 113 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 258.426638 -The maximum resident set size (KB) = 613916 +The total amount of wall time = 258.898169 +The maximum resident set size (KB) = 613516 Test 113 rap_restart_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hrrr_control_restart_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/hrrr_control_restart_dyn32_phy32 Checking test 114 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 92.268874 -The maximum resident set size (KB) = 608780 +The total amount of wall time = 92.389860 +The maximum resident set size (KB) = 601424 Test 114 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rap_control_dyn64_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/rap_control_dyn64_phy32 Checking test 115 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3826,81 +3826,81 @@ Checking test 115 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -The total amount of wall time = 234.769471 -The maximum resident set size (KB) = 793068 +The total amount of wall time = 236.282431 +The maximum resident set size (KB) = 790828 Test 115 rap_control_dyn64_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rap_control_debug_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/rap_control_debug_dyn32_phy32 Checking test 116 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 290.250645 -The maximum resident set size (KB) = 937720 +The total amount of wall time = 291.048090 +The maximum resident set size (KB) = 939068 Test 116 rap_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hrrr_control_debug_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/hrrr_control_debug_dyn32_phy32 Checking test 117 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 283.265837 -The maximum resident set size (KB) = 938596 +The total amount of wall time = 285.725869 +The maximum resident set size (KB) = 937768 Test 117 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rap_control_dyn64_phy32_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/rap_control_dyn64_phy32_debug Checking test 118 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 292.568086 -The maximum resident set size (KB) = 951188 +The total amount of wall time = 294.750727 +The maximum resident set size (KB) = 952868 Test 118 rap_control_dyn64_phy32_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hafs_regional_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/hafs_regional_atm Checking test 119 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 270.575055 -The maximum resident set size (KB) = 819092 +The total amount of wall time = 269.297629 +The maximum resident set size (KB) = 817644 Test 119 hafs_regional_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hafs_regional_atm_thompson_gfdlsf +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/hafs_regional_atm_thompson_gfdlsf Checking test 120 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 310.019167 -The maximum resident set size (KB) = 1171428 +The total amount of wall time = 311.684660 +The maximum resident set size (KB) = 1181360 Test 120 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hafs_regional_atm_ocn +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/hafs_regional_atm_ocn Checking test 121 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3909,14 +3909,14 @@ Checking test 121 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 387.848541 -The maximum resident set size (KB) = 857772 +The total amount of wall time = 387.905846 +The maximum resident set size (KB) = 855928 Test 121 hafs_regional_atm_ocn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hafs_regional_atm_wav +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_atm_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/hafs_regional_atm_wav Checking test 122 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3925,14 +3925,14 @@ Checking test 122 hafs_regional_atm_wav 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 = 708.254334 -The maximum resident set size (KB) = 887828 +The total amount of wall time = 705.434466 +The maximum resident set size (KB) = 888796 Test 122 hafs_regional_atm_wav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hafs_regional_atm_ocn_wav +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/hafs_regional_atm_ocn_wav Checking test 123 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3943,28 +3943,28 @@ Checking test 123 hafs_regional_atm_ocn_wav 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 = 899.934683 -The maximum resident set size (KB) = 913080 +The total amount of wall time = 894.843739 +The maximum resident set size (KB) = 910560 Test 123 hafs_regional_atm_ocn_wav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hafs_regional_1nest_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/hafs_regional_1nest_atm Checking test 124 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 331.253605 -The maximum resident set size (KB) = 391104 +The total amount of wall time = 333.063207 +The maximum resident set size (KB) = 392660 Test 124 hafs_regional_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hafs_regional_telescopic_2nests_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/hafs_regional_telescopic_2nests_atm Checking test 125 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3973,28 +3973,28 @@ Checking test 125 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 400.888883 -The maximum resident set size (KB) = 398688 +The total amount of wall time = 404.021457 +The maximum resident set size (KB) = 397960 Test 125 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_global_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hafs_global_1nest_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_global_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/hafs_global_1nest_atm Checking test 126 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 171.530611 -The maximum resident set size (KB) = 260584 +The total amount of wall time = 172.637498 +The maximum resident set size (KB) = 259752 Test 126 hafs_global_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_global_multiple_4nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hafs_global_multiple_4nests_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_global_multiple_4nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/hafs_global_multiple_4nests_atm Checking test 127 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4012,14 +4012,14 @@ Checking test 127 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -The total amount of wall time = 489.402314 -The maximum resident set size (KB) = 342596 +The total amount of wall time = 492.771009 +The maximum resident set size (KB) = 346508 Test 127 hafs_global_multiple_4nests_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hafs_regional_specified_moving_1nest_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/hafs_regional_specified_moving_1nest_atm Checking test 128 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4028,28 +4028,28 @@ Checking test 128 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 217.997175 -The maximum resident set size (KB) = 404772 +The total amount of wall time = 219.095648 +The maximum resident set size (KB) = 408008 Test 128 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hafs_regional_storm_following_1nest_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/hafs_regional_storm_following_1nest_atm Checking test 129 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 206.140001 -The maximum resident set size (KB) = 407460 +The total amount of wall time = 206.473090 +The maximum resident set size (KB) = 399324 Test 129 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/hafs_regional_storm_following_1nest_atm_ocn Checking test 130 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4058,42 +4058,42 @@ Checking test 130 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 251.283608 -The maximum resident set size (KB) = 467736 +The total amount of wall time = 253.046747 +The maximum resident set size (KB) = 466096 Test 130 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hafs_global_storm_following_1nest_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_global_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/hafs_global_storm_following_1nest_atm Checking test 131 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 84.501360 -The maximum resident set size (KB) = 277208 +The total amount of wall time = 84.491427 +The maximum resident set size (KB) = 278032 Test 131 hafs_global_storm_following_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 132 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 803.380641 -The maximum resident set size (KB) = 488060 +The total amount of wall time = 802.971645 +The maximum resident set size (KB) = 487340 Test 132 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 133 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4104,14 +4104,14 @@ Checking test 133 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 499.621703 -The maximum resident set size (KB) = 522020 +The total amount of wall time = 499.512830 +The maximum resident set size (KB) = 520680 Test 133 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_docn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hafs_regional_docn +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_docn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/hafs_regional_docn Checking test 134 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4119,14 +4119,14 @@ Checking test 134 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 368.968063 -The maximum resident set size (KB) = 861620 +The total amount of wall time = 370.558038 +The maximum resident set size (KB) = 862732 Test 134 hafs_regional_docn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_docn_oisst -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hafs_regional_docn_oisst +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_docn_oisst +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/hafs_regional_docn_oisst Checking test 135 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4134,131 +4134,131 @@ Checking test 135 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 373.084886 -The maximum resident set size (KB) = 852044 +The total amount of wall time = 369.413073 +The maximum resident set size (KB) = 852296 Test 135 hafs_regional_docn_oisst PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_datm_cdeps -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hafs_regional_datm_cdeps +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_datm_cdeps +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/hafs_regional_datm_cdeps Checking test 136 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -The total amount of wall time = 943.300758 -The maximum resident set size (KB) = 834100 +The total amount of wall time = 945.067224 +The maximum resident set size (KB) = 835404 Test 136 hafs_regional_datm_cdeps PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/datm_cdeps_control_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_control_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/datm_cdeps_control_cfsr Checking test 137 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 140.077664 -The maximum resident set size (KB) = 734016 +The total amount of wall time = 140.960984 +The maximum resident set size (KB) = 733480 Test 137 datm_cdeps_control_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/datm_cdeps_restart_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_control_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/datm_cdeps_restart_cfsr Checking test 138 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 85.501202 -The maximum resident set size (KB) = 727844 +The total amount of wall time = 85.955236 +The maximum resident set size (KB) = 728356 Test 138 datm_cdeps_restart_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/datm_cdeps_control_gefs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_control_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/datm_cdeps_control_gefs Checking test 139 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 134.969062 -The maximum resident set size (KB) = 613912 +The total amount of wall time = 134.082328 +The maximum resident set size (KB) = 615008 Test 139 datm_cdeps_control_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_iau_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/datm_cdeps_iau_gefs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_iau_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/datm_cdeps_iau_gefs Checking test 140 datm_cdeps_iau_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 136.103046 -The maximum resident set size (KB) = 614860 +The total amount of wall time = 136.475450 +The maximum resident set size (KB) = 613368 Test 140 datm_cdeps_iau_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_stochy_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/datm_cdeps_stochy_gefs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_stochy_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/datm_cdeps_stochy_gefs Checking test 141 datm_cdeps_stochy_gefs 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.541242 -The maximum resident set size (KB) = 615512 +The total amount of wall time = 138.578475 +The maximum resident set size (KB) = 613696 Test 141 datm_cdeps_stochy_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/datm_cdeps_ciceC_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_ciceC_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/datm_cdeps_ciceC_cfsr Checking test 142 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 140.756770 -The maximum resident set size (KB) = 733292 +The total amount of wall time = 141.751450 +The maximum resident set size (KB) = 736460 Test 142 datm_cdeps_ciceC_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/datm_cdeps_bulk_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_bulk_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/datm_cdeps_bulk_cfsr Checking test 143 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.232509 -The maximum resident set size (KB) = 731380 +The total amount of wall time = 141.830580 +The maximum resident set size (KB) = 731944 Test 143 datm_cdeps_bulk_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/datm_cdeps_bulk_gefs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_bulk_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/datm_cdeps_bulk_gefs Checking test 144 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 133.415352 -The maximum resident set size (KB) = 611032 +The total amount of wall time = 134.267436 +The maximum resident set size (KB) = 613848 Test 144 datm_cdeps_bulk_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/datm_cdeps_mx025_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_mx025_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/datm_cdeps_mx025_cfsr Checking test 145 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4267,14 +4267,14 @@ Checking test 145 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 429.509832 -The maximum resident set size (KB) = 569868 +The total amount of wall time = 429.142775 +The maximum resident set size (KB) = 571704 Test 145 datm_cdeps_mx025_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/datm_cdeps_mx025_gefs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_mx025_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/datm_cdeps_mx025_gefs Checking test 146 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4283,64 +4283,64 @@ Checking test 146 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 430.724925 -The maximum resident set size (KB) = 547828 +The total amount of wall time = 428.688371 +The maximum resident set size (KB) = 549968 Test 146 datm_cdeps_mx025_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/datm_cdeps_multiple_files_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_control_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/datm_cdeps_multiple_files_cfsr Checking test 147 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.076767 -The maximum resident set size (KB) = 732764 +The total amount of wall time = 141.587128 +The maximum resident set size (KB) = 731796 Test 147 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/datm_cdeps_3072x1536_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/datm_cdeps_3072x1536_cfsr Checking test 148 datm_cdeps_3072x1536_cfsr 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 = 257.300795 -The maximum resident set size (KB) = 1980580 +The total amount of wall time = 256.776589 +The maximum resident set size (KB) = 1981328 Test 148 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_gfs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/datm_cdeps_gfs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_gfs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/datm_cdeps_gfs Checking test 149 datm_cdeps_gfs 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 = 257.374949 -The maximum resident set size (KB) = 1981816 +The total amount of wall time = 256.964727 +The maximum resident set size (KB) = 1978544 Test 149 datm_cdeps_gfs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_cfsr_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/datm_cdeps_control_cfsr_faster +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_control_cfsr_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/datm_cdeps_control_cfsr_faster Checking test 150 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.014891 -The maximum resident set size (KB) = 736604 +The total amount of wall time = 141.508246 +The maximum resident set size (KB) = 733600 Test 150 datm_cdeps_control_cfsr_faster PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/datm_cdeps_lnd_gswp3 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/datm_cdeps_lnd_gswp3 Checking test 151 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4349,14 +4349,14 @@ Checking test 151 datm_cdeps_lnd_gswp3 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 = 21.967855 -The maximum resident set size (KB) = 226740 +The total amount of wall time = 21.840443 +The maximum resident set size (KB) = 227780 Test 151 datm_cdeps_lnd_gswp3 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/datm_cdeps_lnd_gswp3_rst +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/datm_cdeps_lnd_gswp3_rst Checking test 152 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4365,14 +4365,14 @@ Checking test 152 datm_cdeps_lnd_gswp3_rst 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.074508 -The maximum resident set size (KB) = 230032 +The total amount of wall time = 27.316911 +The maximum resident set size (KB) = 228088 Test 152 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_atmlnd_sbs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_p8_atmlnd_sbs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8_atmlnd_sbs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_p8_atmlnd_sbs Checking test 153 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4457,14 +4457,14 @@ Checking test 153 control_p8_atmlnd_sbs results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 233.778318 -The maximum resident set size (KB) = 1538084 +The total amount of wall time = 234.753492 +The maximum resident set size (KB) = 1542656 Test 153 control_p8_atmlnd_sbs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/atmwav_control_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/atmwav_control_noaero_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/atmwav_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/atmwav_control_noaero_p8 Checking test 154 atmwav_control_noaero_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4507,14 +4507,14 @@ Checking test 154 atmwav_control_noaero_p8 results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK -The total amount of wall time = 107.758489 -The maximum resident set size (KB) = 1529048 +The total amount of wall time = 107.709651 +The maximum resident set size (KB) = 1525940 Test 154 atmwav_control_noaero_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_atmwav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_atmwav +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_atmwav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_atmwav Checking test 155 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4558,14 +4558,14 @@ Checking test 155 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -The total amount of wall time = 91.300620 -The maximum resident set size (KB) = 540416 +The total amount of wall time = 90.288014 +The maximum resident set size (KB) = 544216 Test 155 control_atmwav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/atmaero_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/atmaero_control_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/atmaero_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/atmaero_control_p8 Checking test 156 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4609,14 +4609,14 @@ Checking test 156 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 244.781569 -The maximum resident set size (KB) = 2815684 +The total amount of wall time = 244.896297 +The maximum resident set size (KB) = 2811928 Test 156 atmaero_control_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/atmaero_control_p8_rad -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/atmaero_control_p8_rad +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/atmaero_control_p8_rad +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/atmaero_control_p8_rad Checking test 157 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4660,14 +4660,14 @@ Checking test 157 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 284.941388 -The maximum resident set size (KB) = 2876476 +The total amount of wall time = 282.933698 +The maximum resident set size (KB) = 2874540 Test 157 atmaero_control_p8_rad PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/atmaero_control_p8_rad_micro +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/atmaero_control_p8_rad_micro +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/atmaero_control_p8_rad_micro Checking test 158 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4711,14 +4711,14 @@ Checking test 158 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 288.119953 -The maximum resident set size (KB) = 2885652 +The total amount of wall time = 287.940817 +The maximum resident set size (KB) = 2883628 Test 158 atmaero_control_p8_rad_micro PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_atmaq -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/regional_atmaq +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_atmaq +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/regional_atmaq Checking test 159 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4734,14 +4734,14 @@ Checking test 159 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 684.497360 -The maximum resident set size (KB) = 1257648 +The total amount of wall time = 675.610090 +The maximum resident set size (KB) = 1253632 Test 159 regional_atmaq PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_atmaq_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/regional_atmaq_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_atmaq_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/regional_atmaq_debug Checking test 160 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4755,12 +4755,12 @@ Checking test 160 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1298.969894 -The maximum resident set size (KB) = 1282084 +The total amount of wall time = 1297.982680 +The maximum resident set size (KB) = 1290764 Test 160 regional_atmaq_debug PASS REGRESSION TEST WAS SUCCESSFUL -Tue May 9 15:25:58 UTC 2023 -Elapsed time: 01h:37m:25s. Have a nice day! +Wed May 10 23:14:47 UTC 2023 +Elapsed time: 01h:44m:10s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index 654508dfb60..83d51bfa163 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,21 +1,21 @@ -Fri May 5 04:04:33 MDT 2023 +Wed May 10 14:38:31 MDT 2023 Start Regression test -Compile 001 elapsed time 394 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 002 elapsed time 405 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 914 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 188 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 394 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 1148 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 393 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 002 elapsed time 403 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 910 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 194 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 389 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 1141 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile 007 elapsed time 897 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 914 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 619 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 587 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 336 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 012 elapsed time 295 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/control_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/control_c48 +Compile 008 elapsed time 898 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 646 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 573 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 361 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 012 elapsed time 298 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/control_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/control_c48 Checking test 001 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -54,14 +54,14 @@ Checking test 001 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 815.480234 -0:The maximum resident set size (KB) = 680420 +0:The total amount of wall time = 816.173357 +0:The maximum resident set size (KB) = 680392 Test 001 control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/control_stochy +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/control_stochy +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/control_stochy Checking test 002 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -72,14 +72,14 @@ Checking test 002 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 177.402887 -0:The maximum resident set size (KB) = 443712 +0:The total amount of wall time = 174.545949 +0:The maximum resident set size (KB) = 443752 Test 002 control_stochy PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/control_ras -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/control_ras +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/control_ras +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/control_ras Checking test 003 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -90,14 +90,14 @@ Checking test 003 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 292.422375 -0:The maximum resident set size (KB) = 452412 +0:The total amount of wall time = 290.248431 +0:The maximum resident set size (KB) = 452336 Test 003 control_ras PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/control_p8 Checking test 004 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -144,14 +144,14 @@ Checking test 004 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 310.277991 +0:The total amount of wall time = 313.236163 0:The maximum resident set size (KB) = 1225396 Test 004 control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/control_flake -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/control_flake +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/control_flake +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/control_flake Checking test 005 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -162,14 +162,14 @@ Checking test 005 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 356.342994 -0:The maximum resident set size (KB) = 490524 +0:The total amount of wall time = 353.333449 +0:The maximum resident set size (KB) = 490584 Test 005 control_flake PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rap_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/rap_control Checking test 006 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -216,14 +216,14 @@ Checking test 006 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 712.142443 -0:The maximum resident set size (KB) = 792380 +0:The total amount of wall time = 716.938014 +0:The maximum resident set size (KB) = 792444 Test 006 rap_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rap_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/rap_decomp Checking test 007 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -270,14 +270,14 @@ Checking test 007 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 716.643434 -0:The maximum resident set size (KB) = 791704 +0:The total amount of wall time = 720.163774 +0:The maximum resident set size (KB) = 791752 Test 007 rap_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rap_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/rap_2threads Checking test 008 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -324,14 +324,14 @@ Checking test 008 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 654.604419 -0:The maximum resident set size (KB) = 865968 +0:The total amount of wall time = 655.437733 +0:The maximum resident set size (KB) = 866016 Test 008 rap_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rap_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/rap_restart Checking test 009 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -370,14 +370,14 @@ Checking test 009 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 353.254777 -0:The maximum resident set size (KB) = 539344 +0:The total amount of wall time = 362.621200 +0:The maximum resident set size (KB) = 539284 Test 009 rap_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rap_sfcdiff +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/rap_sfcdiff Checking test 010 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -424,14 +424,14 @@ Checking test 010 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 712.612280 -0:The maximum resident set size (KB) = 791688 +0:The total amount of wall time = 716.579434 +0:The maximum resident set size (KB) = 791856 Test 010 rap_sfcdiff PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rap_sfcdiff_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/rap_sfcdiff_decomp Checking test 011 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -478,14 +478,14 @@ Checking test 011 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 722.607342 -0:The maximum resident set size (KB) = 791524 +0:The total amount of wall time = 722.285387 +0:The maximum resident set size (KB) = 791636 Test 011 rap_sfcdiff_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rap_sfcdiff_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/rap_sfcdiff_restart Checking test 012 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -524,14 +524,14 @@ Checking test 012 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 523.487983 -0:The maximum resident set size (KB) = 544668 +0:The total amount of wall time = 529.759059 +0:The maximum resident set size (KB) = 544560 Test 012 rap_sfcdiff_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/hrrr_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/hrrr_control Checking test 013 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -578,14 +578,14 @@ Checking test 013 hrrr_control results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 685.441953 -0:The maximum resident set size (KB) = 789064 +0:The total amount of wall time = 690.622767 +0:The maximum resident set size (KB) = 789016 Test 013 hrrr_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/hrrr_control_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/hrrr_control_2threads Checking test 014 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -632,14 +632,14 @@ Checking test 014 hrrr_control_2threads results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 706.043873 -0:The maximum resident set size (KB) = 855888 +0:The total amount of wall time = 707.380172 +0:The maximum resident set size (KB) = 855756 Test 014 hrrr_control_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/hrrr_control_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/hrrr_control_decomp Checking test 015 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -686,28 +686,28 @@ Checking test 015 hrrr_control_decomp results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 682.241630 -0:The maximum resident set size (KB) = 788552 +0:The total amount of wall time = 686.679265 +0:The maximum resident set size (KB) = 788412 Test 015 hrrr_control_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/hrrr_control_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/hrrr_control_restart Checking test 016 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 506.150669 -0:The maximum resident set size (KB) = 539912 +0:The total amount of wall time = 505.563021 +0:The maximum resident set size (KB) = 539736 Test 016 hrrr_control_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rrfs_v1beta -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rrfs_v1beta +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/rrfs_v1beta +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/rrfs_v1beta Checking test 017 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -754,14 +754,14 @@ Checking test 017 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 703.906877 -0:The maximum resident set size (KB) = 789108 +0:The total amount of wall time = 706.598325 +0:The maximum resident set size (KB) = 789016 Test 017 rrfs_v1beta PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/rrfs_smoke_conus13km_hrrr_warm Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -770,14 +770,14 @@ Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 239.470312 -0:The maximum resident set size (KB) = 639764 +0:The total amount of wall time = 240.187378 +0:The maximum resident set size (KB) = 639704 Test 018 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 019 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -786,14 +786,14 @@ Checking test 019 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 150.141650 -0:The maximum resident set size (KB) = 658528 +0:The total amount of wall time = 152.278970 +0:The maximum resident set size (KB) = 658536 Test 019 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rrfs_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/rrfs_conus13km_hrrr_warm Checking test 020 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -802,14 +802,14 @@ Checking test 020 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 219.792470 -0:The maximum resident set size (KB) = 618852 +0:The total amount of wall time = 220.469538 +0:The maximum resident set size (KB) = 618500 Test 020 rrfs_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/rrfs_smoke_conus13km_radar_tten_warm Checking test 021 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -818,262 +818,262 @@ Checking test 021 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 241.487717 -0:The maximum resident set size (KB) = 642424 +0:The total amount of wall time = 240.458301 +0:The maximum resident set size (KB) = 642292 Test 021 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 022 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 115.306913 -0:The maximum resident set size (KB) = 599588 +0:The total amount of wall time = 116.141404 +0:The maximum resident set size (KB) = 599608 Test 022 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/control_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/control_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/control_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/control_diag_debug Checking test 023 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 81.884814 -0:The maximum resident set size (KB) = 492036 +0:The total amount of wall time = 83.093628 +0:The maximum resident set size (KB) = 492240 Test 023 control_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/regional_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/regional_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/regional_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/regional_debug Checking test 024 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 479.193602 -0:The maximum resident set size (KB) = 567300 +0:The total amount of wall time = 482.933546 +0:The maximum resident set size (KB) = 567328 Test 024 regional_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rap_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/rap_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/rap_control_debug Checking test 025 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 145.048157 -0:The maximum resident set size (KB) = 806312 +0:The total amount of wall time = 146.460152 +0:The maximum resident set size (KB) = 806468 Test 025 rap_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/hrrr_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/hrrr_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/hrrr_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/hrrr_control_debug Checking test 026 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 142.255144 -0:The maximum resident set size (KB) = 801756 +0:The total amount of wall time = 144.653325 +0:The maximum resident set size (KB) = 801696 Test 026 hrrr_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rap_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rap_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/rap_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/rap_diag_debug Checking test 027 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 152.680367 -0:The maximum resident set size (KB) = 888496 +0:The total amount of wall time = 152.812909 +0:The maximum resident set size (KB) = 888544 Test 027 rap_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/rap_noah_sfcdiff_cires_ugwp_debug Checking test 028 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 234.710988 -0:The maximum resident set size (KB) = 804596 +0:The total amount of wall time = 236.904023 +0:The maximum resident set size (KB) = 804688 Test 028 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rap_progcld_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rap_progcld_thompson_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/rap_progcld_thompson_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/rap_progcld_thompson_debug Checking test 029 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 145.669938 -0:The maximum resident set size (KB) = 806512 +0:The total amount of wall time = 146.826545 +0:The maximum resident set size (KB) = 806432 Test 029 rap_progcld_thompson_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rrfs_v1beta_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rrfs_v1beta_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/rrfs_v1beta_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/rrfs_v1beta_debug Checking test 030 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 145.646493 -0:The maximum resident set size (KB) = 801440 +0:The total amount of wall time = 146.737528 +0:The maximum resident set size (KB) = 801456 Test 030 rrfs_v1beta_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/control_ras_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/control_ras_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/control_ras_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/control_ras_debug Checking test 031 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 81.149052 -0:The maximum resident set size (KB) = 446740 +0:The total amount of wall time = 81.915803 +0:The maximum resident set size (KB) = 446416 Test 031 control_ras_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/control_stochy_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/control_stochy_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/control_stochy_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/control_stochy_debug Checking test 032 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 88.535128 -0:The maximum resident set size (KB) = 438820 +0:The total amount of wall time = 90.791783 +0:The maximum resident set size (KB) = 438816 Test 032 control_stochy_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/control_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/control_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/control_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/control_debug_p8 Checking test 033 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 90.356838 -0:The maximum resident set size (KB) = 1221880 +0:The total amount of wall time = 91.521170 +0:The maximum resident set size (KB) = 1221952 Test 033 control_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 034 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 445.690545 -0:The maximum resident set size (KB) = 644980 +0:The total amount of wall time = 446.935953 +0:The maximum resident set size (KB) = 645052 Test 034 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 035 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 259.824078 -0:The maximum resident set size (KB) = 664096 +0:The total amount of wall time = 262.876823 +0:The maximum resident set size (KB) = 664828 Test 035 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rrfs_conus13km_hrrr_warm_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/rrfs_conus13km_hrrr_warm_debugs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/rrfs_conus13km_hrrr_warm_debug Checking test 036 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 402.880230 -0:The maximum resident set size (KB) = 623520 +0:The total amount of wall time = 404.708376 +0:The maximum resident set size (KB) = 623484 Test 036 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rap_flake_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rap_flake_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/rap_flake_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/rap_flake_debug Checking test 037 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 145.280735 -0:The maximum resident set size (KB) = 806316 +0:The total amount of wall time = 145.715124 +0:The maximum resident set size (KB) = 806340 Test 037 rap_flake_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rap_clm_lake_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rap_clm_lake_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/rap_clm_lake_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/rap_clm_lake_debug Checking test 038 rap_clm_lake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 164.819596 -0:The maximum resident set size (KB) = 807840 +0:The total amount of wall time = 165.881073 +0:The maximum resident set size (KB) = 807876 Test 038 rap_clm_lake_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/control_wam_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/control_wam_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/control_wam_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/control_wam_debug Checking test 039 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 140.143132 -0:The maximum resident set size (KB) = 182888 +0:The total amount of wall time = 140.633006 +0:The maximum resident set size (KB) = 182924 Test 039 control_wam_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rap_control_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/rap_control_dyn32_phy32 Checking test 040 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1120,14 +1120,14 @@ Checking test 040 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 699.489469 -0:The maximum resident set size (KB) = 672628 +0:The total amount of wall time = 704.792937 +0:The maximum resident set size (KB) = 672712 Test 040 rap_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/hrrr_control_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/hrrr_control_dyn32_phy32 Checking test 041 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1174,14 +1174,14 @@ Checking test 041 hrrr_control_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 352.641227 -0:The maximum resident set size (KB) = 671112 +0:The total amount of wall time = 353.181108 +0:The maximum resident set size (KB) = 671224 Test 041 hrrr_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rap_2threads_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/rap_2threads_dyn32_phy32 Checking test 042 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1228,14 +1228,14 @@ Checking test 042 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 643.040342 -0:The maximum resident set size (KB) = 720036 +0:The total amount of wall time = 645.448112 +0:The maximum resident set size (KB) = 720196 Test 042 rap_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/hrrr_control_2threads_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/hrrr_control_2threads_dyn32_phy32 Checking test 043 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1282,14 +1282,14 @@ Checking test 043 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 403.092652 -0:The maximum resident set size (KB) = 712460 +0:The total amount of wall time = 405.203647 +0:The maximum resident set size (KB) = 711824 Test 043 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/hrrr_control_decomp_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/hrrr_control_decomp_dyn32_phy32 Checking test 044 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1336,14 +1336,14 @@ Checking test 044 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 351.172256 -0:The maximum resident set size (KB) = 670068 +0:The total amount of wall time = 351.742758 +0:The maximum resident set size (KB) = 670060 Test 044 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rap_restart_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/rap_restart_dyn32_phy32 Checking test 045 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1382,28 +1382,28 @@ Checking test 045 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 520.157001 -0:The maximum resident set size (KB) = 511708 +0:The total amount of wall time = 522.125874 +0:The maximum resident set size (KB) = 511664 Test 045 rap_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/hrrr_control_restart_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/hrrr_control_restart_dyn32_phy32 Checking test 046 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 178.758570 -0:The maximum resident set size (KB) = 505972 +0:The total amount of wall time = 179.262433 +0:The maximum resident set size (KB) = 506124 Test 046 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rap_control_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rap_control_dyn64_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/rap_control_dyn64_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/rap_control_dyn64_phy32 Checking test 047 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1450,56 +1450,56 @@ Checking test 047 rap_control_dyn64_phy32 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 = 413.889092 -0:The maximum resident set size (KB) = 693804 +0:The total amount of wall time = 418.249077 +0:The maximum resident set size (KB) = 694464 Test 047 rap_control_dyn64_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rap_control_debug_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/rap_control_debug_dyn32_phy32 Checking test 048 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 144.185860 -0:The maximum resident set size (KB) = 687056 +0:The total amount of wall time = 144.154337 +0:The maximum resident set size (KB) = 686988 Test 048 rap_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/hrrr_control_debug_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/hrrr_control_debug_dyn32_phy32 Checking test 049 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 141.476420 -0:The maximum resident set size (KB) = 684228 +0:The total amount of wall time = 142.008243 +0:The maximum resident set size (KB) = 684308 Test 049 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rap_control_dyn64_phy32_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/rap_control_debug_dyn64_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/rap_control_dyn64_phy32_debug Checking test 050 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 148.643835 -0:The maximum resident set size (KB) = 708028 +0:The total amount of wall time = 148.571448 +0:The maximum resident set size (KB) = 708020 Test 050 rap_control_dyn64_phy32_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/cpld_control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/cpld_control_p8 Checking test 051 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1564,14 +1564,14 @@ Checking test 051 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 499.255766 -0:The maximum resident set size (KB) = 3161428 +0:The total amount of wall time = 502.732791 +0:The maximum resident set size (KB) = 3159536 Test 051 cpld_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/cpld_control_nowave_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/cpld_control_c96_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/cpld_control_nowave_noaero_p8 Checking test 052 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1633,14 +1633,14 @@ Checking test 052 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 239.383698 -0:The maximum resident set size (KB) = 1240728 +0:The total amount of wall time = 254.546678 +0:The maximum resident set size (KB) = 1240984 Test 052 cpld_control_nowave_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/cpld_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/cpld_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/cpld_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/cpld_debug_p8 Checking test 053 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1693,25 +1693,25 @@ Checking test 053 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 202.179415 -0:The maximum resident set size (KB) = 3175064 +0:The total amount of wall time = 207.817904 +0:The maximum resident set size (KB) = 3174588 Test 053 cpld_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/datm_cdeps_control_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/datm_cdeps_control_cfsr Checking test 054 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 178.657507 -0:The maximum resident set size (KB) = 676024 +0:The total amount of wall time = 179.118060 +0:The maximum resident set size (KB) = 672492 Test 054 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Fri May 5 04:40:47 MDT 2023 -Elapsed time: 00h:36m:14s. Have a nice day! +Wed May 10 15:14:49 MDT 2023 +Elapsed time: 00h:36m:18s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 24f21fc368e..d9341b99edc 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,42 +1,42 @@ -Sat May 6 07:46:17 MDT 2023 +Wed May 10 14:23:36 MDT 2023 Start Regression test -Compile 001 elapsed time 1587 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 1518 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 1428 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 457 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 405 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 1140 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 1143 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 1167 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 009 elapsed time 1074 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 1016 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 863 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 1352 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 443 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 014 elapsed time 265 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 920 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 915 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 294 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 297 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 1228 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 020 elapsed time 356 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 021 elapsed time 1650 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 022 elapsed time 1204 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 023 elapsed time 427 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 024 elapsed time 197 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 025 elapsed time 428 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 026 elapsed time 104 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 027 elapsed time 1003 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 1071 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 1059 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 976 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 948 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 310 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 1102 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8_mixedmode -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_control_p8_mixedmode +Compile 001 elapsed time 1480 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1617 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 1435 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 463 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 393 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 1167 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 1135 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 1159 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 009 elapsed time 1065 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 1009 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 876 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 1351 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 433 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 014 elapsed time 285 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 914 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 925 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 297 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 294 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 1207 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 020 elapsed time 351 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 021 elapsed time 1651 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 022 elapsed time 1186 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 023 elapsed time 429 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 024 elapsed time 200 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 025 elapsed time 425 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 026 elapsed time 109 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 027 elapsed time 1027 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 1082 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 1121 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 951 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 931 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 312 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 1107 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8_mixedmode +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -101,14 +101,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 319.544609 -0:The maximum resident set size (KB) = 2698760 +0:The total amount of wall time = 312.944047 +0:The maximum resident set size (KB) = 2699052 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_gfsv17 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_control_gfsv17 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_gfsv17 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -172,14 +172,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 282.033907 -0:The maximum resident set size (KB) = 1437756 +0:The total amount of wall time = 285.959509 +0:The maximum resident set size (KB) = 1437648 Test 002 cpld_control_gfsv17 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -244,14 +244,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 323.529452 -0:The maximum resident set size (KB) = 2715428 +0:The total amount of wall time = 328.564420 +0:The maximum resident set size (KB) = 2715440 Test 003 cpld_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_restart_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -304,14 +304,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 186.860231 -0:The maximum resident set size (KB) = 2576764 +0:The total amount of wall time = 188.725796 +0:The maximum resident set size (KB) = 2576532 Test 004 cpld_restart_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_control_qr_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -376,14 +376,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 329.694969 -0:The maximum resident set size (KB) = 2719992 +0:The total amount of wall time = 329.349318 +0:The maximum resident set size (KB) = 2720096 Test 005 cpld_control_qr_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_restart_qr_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -436,14 +436,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 200.761474 -0:The maximum resident set size (KB) = 2593872 +0:The total amount of wall time = 202.174297 +0:The maximum resident set size (KB) = 2593208 Test 006 cpld_restart_qr_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_2threads_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -496,14 +496,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 249.551018 -0:The maximum resident set size (KB) = 3178456 +0:The total amount of wall time = 255.472628 +0:The maximum resident set size (KB) = 3177788 Test 007 cpld_2threads_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_decomp_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -556,14 +556,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 322.275955 -0:The maximum resident set size (KB) = 2720620 +0:The total amount of wall time = 326.269425 +0:The maximum resident set size (KB) = 2720200 Test 008 cpld_decomp_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_mpi_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -616,14 +616,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 280.595475 -0:The maximum resident set size (KB) = 2681440 +0:The total amount of wall time = 281.327107 +0:The maximum resident set size (KB) = 2681744 Test 009 cpld_mpi_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_ciceC_p8 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_control_ciceC_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_ciceC_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -688,14 +688,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 325.778808 +0:The total amount of wall time = 327.508008 0:The maximum resident set size (KB) = 2715260 Test 010 cpld_control_ciceC_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_control_c192_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_c192_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/cpld_control_c192_p8 Checking test 011 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -748,14 +748,14 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -0:The total amount of wall time = 627.058141 -0:The maximum resident set size (KB) = 3351720 +0:The total amount of wall time = 627.326236 +0:The maximum resident set size (KB) = 3351492 Test 011 cpld_control_c192_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_restart_c192_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_c192_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/cpld_restart_c192_p8 Checking test 012 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -808,14 +808,14 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -0:The total amount of wall time = 381.779742 -0:The maximum resident set size (KB) = 3276152 +0:The total amount of wall time = 459.679187 +0:The maximum resident set size (KB) = 3276068 Test 012 cpld_restart_c192_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_noaero_p8 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_control_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/cpld_control_noaero_p8 Checking test 013 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -879,14 +879,14 @@ Checking test 013 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 295.577147 -0:The maximum resident set size (KB) = 1435776 +0:The total amount of wall time = 296.542979 +0:The maximum resident set size (KB) = 1435860 Test 013 cpld_control_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_control_nowave_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_c96_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/cpld_control_nowave_noaero_p8 Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -948,14 +948,14 @@ Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 198.337851 -0:The maximum resident set size (KB) = 1453396 +0:The total amount of wall time = 199.884537 +0:The maximum resident set size (KB) = 1453312 Test 014 cpld_control_nowave_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_debug_p8 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/cpld_debug_p8 Checking test 015 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1008,14 +1008,14 @@ Checking test 015 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 349.597925 -0:The maximum resident set size (KB) = 2780652 +0:The total amount of wall time = 350.618824 +0:The maximum resident set size (KB) = 2779940 Test 015 cpld_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_debug_noaero_p8 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_debug_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_debug_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/cpld_debug_noaero_p8 Checking test 016 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1067,14 +1067,14 @@ Checking test 016 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 302.597149 -0:The maximum resident set size (KB) = 1454940 +0:The total amount of wall time = 303.878872 +0:The maximum resident set size (KB) = 1454392 Test 016 cpld_debug_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_noaero_p8_agrid -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_control_noaero_p8_agrid +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_noaero_p8_agrid +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/cpld_control_noaero_p8_agrid Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1136,14 +1136,14 @@ Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 251.790780 -0:The maximum resident set size (KB) = 1457044 +0:The total amount of wall time = 251.210292 +0:The maximum resident set size (KB) = 1457088 Test 017 cpld_control_noaero_p8_agrid PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_c48 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_control_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/cpld_control_c48 Checking test 018 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1193,14 +1193,14 @@ Checking test 018 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 609.571758 -0:The maximum resident set size (KB) = 2586800 +0:The total amount of wall time = 613.003892 +0:The maximum resident set size (KB) = 2586684 Test 018 cpld_control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_warmstart_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_warmstart_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/cpld_warmstart_c48 Checking test 019 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1250,14 +1250,14 @@ Checking test 019 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -0:The total amount of wall time = 162.965347 -0:The maximum resident set size (KB) = 2602612 +0:The total amount of wall time = 164.462458 +0:The maximum resident set size (KB) = 2602584 Test 019 cpld_warmstart_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_restart_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_warmstart_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/cpld_restart_c48 Checking test 020 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1307,14 +1307,14 @@ Checking test 020 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -0:The total amount of wall time = 85.380411 -0:The maximum resident set size (KB) = 2019952 +0:The total amount of wall time = 87.208269 +0:The maximum resident set size (KB) = 2020300 Test 020 cpld_restart_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_flake -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_flake +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_flake +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_flake Checking test 021 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1325,14 +1325,14 @@ Checking test 021 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 217.647145 -0:The maximum resident set size (KB) = 501448 +0:The total amount of wall time = 220.963387 +0:The maximum resident set size (KB) = 501436 Test 021 control_flake PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_CubedSphereGrid -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_CubedSphereGrid +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_CubedSphereGrid +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_CubedSphereGrid Checking test 022 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1359,28 +1359,28 @@ Checking test 022 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -0:The total amount of wall time = 142.366063 -0:The maximum resident set size (KB) = 454624 +0:The total amount of wall time = 142.901734 +0:The maximum resident set size (KB) = 454580 Test 022 control_CubedSphereGrid PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_CubedSphereGrid_parallel -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_CubedSphereGrid_parallel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_CubedSphereGrid_parallel +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_CubedSphereGrid_parallel Checking test 023 control_CubedSphereGrid_parallel results .... - Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK -0:The total amount of wall time = 139.906136 -0:The maximum resident set size (KB) = 454520 +0:The total amount of wall time = 140.116532 +0:The maximum resident set size (KB) = 454456 Test 023 control_CubedSphereGrid_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_latlon -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_latlon +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_latlon +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_latlon Checking test 024 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1391,17 +1391,17 @@ Checking test 024 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 146.709422 -0:The maximum resident set size (KB) = 454584 +0:The total amount of wall time = 143.240487 +0:The maximum resident set size (KB) = 454564 Test 024 control_latlon PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wrtGauss_netcdf_parallel -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_wrtGauss_netcdf_parallel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_wrtGauss_netcdf_parallel +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_wrtGauss_netcdf_parallel Checking test 025 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK + Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK @@ -1409,14 +1409,14 @@ Checking test 025 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 149.238871 -0:The maximum resident set size (KB) = 454604 +0:The total amount of wall time = 149.619799 +0:The maximum resident set size (KB) = 454616 Test 025 control_wrtGauss_netcdf_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c48 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_c48 Checking test 026 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1455,14 +1455,14 @@ Checking test 026 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 441.114330 -0:The maximum resident set size (KB) = 634276 +0:The total amount of wall time = 443.403883 +0:The maximum resident set size (KB) = 634928 Test 026 control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c192 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_c192 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_c192 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_c192 Checking test 027 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1473,14 +1473,14 @@ Checking test 027 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 592.672442 -0:The maximum resident set size (KB) = 560248 +0:The total amount of wall time = 599.955582 +0:The maximum resident set size (KB) = 560244 Test 027 control_c192 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c384 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_c384 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_c384 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_c384 Checking test 028 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1491,14 +1491,14 @@ Checking test 028 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 592.928324 -0:The maximum resident set size (KB) = 900432 +0:The total amount of wall time = 589.234666 +0:The maximum resident set size (KB) = 901284 Test 028 control_c384 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c384gdas -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_c384gdas +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_c384gdas +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_c384gdas Checking test 029 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1541,14 +1541,14 @@ Checking test 029 control_c384gdas 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 = 516.649977 -0:The maximum resident set size (KB) = 1028888 +0:The total amount of wall time = 520.113317 +0:The maximum resident set size (KB) = 1028556 Test 029 control_c384gdas PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_stochy -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_stochy +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_stochy +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_stochy Checking test 030 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1559,28 +1559,28 @@ Checking test 030 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 98.282045 -0:The maximum resident set size (KB) = 459416 +0:The total amount of wall time = 98.375990 +0:The maximum resident set size (KB) = 459424 Test 030 control_stochy PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_stochy -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_stochy_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_stochy +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_stochy_restart Checking test 031 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 53.448086 -0:The maximum resident set size (KB) = 227948 +0:The total amount of wall time = 53.657533 +0:The maximum resident set size (KB) = 227648 Test 031 control_stochy_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_lndp -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_lndp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_lndp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_lndp Checking test 032 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1591,14 +1591,14 @@ Checking test 032 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 90.827000 -0:The maximum resident set size (KB) = 459200 +0:The total amount of wall time = 90.905115 +0:The maximum resident set size (KB) = 459000 Test 032 control_lndp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_iovr4 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_iovr4 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_iovr4 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_iovr4 Checking test 033 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1613,14 +1613,14 @@ Checking test 033 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 144.991596 -0:The maximum resident set size (KB) = 454532 +0:The total amount of wall time = 148.862223 +0:The maximum resident set size (KB) = 454572 Test 033 control_iovr4 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_iovr5 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_iovr5 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_iovr5 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_iovr5 Checking test 034 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1635,14 +1635,14 @@ Checking test 034 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 150.452526 +0:The total amount of wall time = 145.466642 0:The maximum resident set size (KB) = 454496 Test 034 control_iovr5 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_p8 Checking test 035 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1689,14 +1689,14 @@ Checking test 035 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 182.205472 -0:The maximum resident set size (KB) = 1423928 +0:The total amount of wall time = 183.020402 +0:The maximum resident set size (KB) = 1423996 Test 035 control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_restart_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_restart_p8 Checking test 036 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1735,14 +1735,14 @@ Checking test 036 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 96.626032 -0:The maximum resident set size (KB) = 582132 +0:The total amount of wall time = 96.562414 +0:The maximum resident set size (KB) = 582152 Test 036 control_restart_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_qr_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_qr_p8 Checking test 037 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1789,14 +1789,14 @@ Checking test 037 control_qr_p8 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 = 184.088698 -0:The maximum resident set size (KB) = 1427616 +0:The total amount of wall time = 183.439181 +0:The maximum resident set size (KB) = 1427676 Test 037 control_qr_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_restart_qr_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_restart_qr_p8 Checking test 038 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1835,14 +1835,14 @@ Checking test 038 control_restart_qr_p8 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 = 99.706604 -0:The maximum resident set size (KB) = 597216 +0:The total amount of wall time = 100.323847 +0:The maximum resident set size (KB) = 597212 Test 038 control_restart_qr_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_decomp_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_decomp_p8 Checking test 039 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1885,14 +1885,14 @@ Checking test 039 control_decomp_p8 results .... Comparing 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.475383 -0:The maximum resident set size (KB) = 1417728 +0:The total amount of wall time = 190.361713 +0:The maximum resident set size (KB) = 1417740 Test 039 control_decomp_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_2threads_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_2threads_p8 Checking test 040 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1935,14 +1935,14 @@ Checking test 040 control_2threads_p8 results .... Comparing 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.161166 -0:The maximum resident set size (KB) = 1509260 +0:The total amount of wall time = 172.832857 +0:The maximum resident set size (KB) = 1508424 Test 040 control_2threads_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_lndp -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_p8_lndp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8_lndp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_p8_lndp Checking test 041 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1961,14 +1961,14 @@ Checking test 041 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -0:The total amount of wall time = 335.855857 -0:The maximum resident set size (KB) = 1424216 +0:The total amount of wall time = 336.705747 +0:The maximum resident set size (KB) = 1424304 Test 041 control_p8_lndp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_rrtmgp -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_p8_rrtmgp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8_rrtmgp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_p8_rrtmgp Checking test 042 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2015,14 +2015,14 @@ Checking test 042 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 254.926464 +0:The total amount of wall time = 255.252670 0:The maximum resident set size (KB) = 1480576 Test 042 control_p8_rrtmgp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_mynn -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_p8_mynn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8_mynn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_p8_mynn Checking test 043 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2069,14 +2069,14 @@ Checking test 043 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 185.673954 -0:The maximum resident set size (KB) = 1428428 +0:The total amount of wall time = 186.349154 +0:The maximum resident set size (KB) = 1428464 Test 043 control_p8_mynn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/merra2_thompson -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/merra2_thompson +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/merra2_thompson +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/merra2_thompson Checking test 044 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2123,14 +2123,14 @@ Checking test 044 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 207.735299 -0:The maximum resident set size (KB) = 1429944 +0:The total amount of wall time = 207.234497 +0:The maximum resident set size (KB) = 1430016 Test 044 merra2_thompson PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/regional_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/regional_control Checking test 045 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2141,28 +2141,28 @@ Checking test 045 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 342.263461 -0:The maximum resident set size (KB) = 605068 +0:The total amount of wall time = 345.045920 +0:The maximum resident set size (KB) = 605080 Test 045 regional_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/regional_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/regional_restart Checking test 046 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 176.774690 +0:The total amount of wall time = 178.797731 0:The maximum resident set size (KB) = 594372 Test 046 regional_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/regional_control_qr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/regional_control_qr Checking test 047 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2173,28 +2173,28 @@ Checking test 047 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 343.043390 -0:The maximum resident set size (KB) = 605020 +0:The total amount of wall time = 351.962331 +0:The maximum resident set size (KB) = 605076 Test 047 regional_control_qr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/regional_restart_qr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/regional_restart_qr Checking test 048 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 175.499656 -0:The maximum resident set size (KB) = 594360 +0:The total amount of wall time = 177.420938 +0:The maximum resident set size (KB) = 594424 Test 048 regional_restart_qr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/regional_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/regional_decomp Checking test 049 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2205,14 +2205,14 @@ Checking test 049 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 363.507975 -0:The maximum resident set size (KB) = 598972 +0:The total amount of wall time = 358.023198 +0:The maximum resident set size (KB) = 598960 Test 049 regional_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/regional_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/regional_2threads Checking test 050 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2223,14 +2223,14 @@ Checking test 050 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 202.640040 -0:The maximum resident set size (KB) = 611844 +0:The total amount of wall time = 213.544113 +0:The maximum resident set size (KB) = 611972 Test 050 regional_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_noquilt -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/regional_noquilt +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_noquilt +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/regional_noquilt Checking test 051 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2238,28 +2238,28 @@ Checking test 051 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -0:The total amount of wall time = 364.602808 -0:The maximum resident set size (KB) = 599564 +0:The total amount of wall time = 364.814236 +0:The maximum resident set size (KB) = 599468 Test 051 regional_noquilt PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_netcdf_parallel -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/regional_netcdf_parallel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_netcdf_parallel +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/regional_netcdf_parallel Checking test 052 regional_netcdf_parallel results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc .........OK + Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf006.nc ............ALT CHECK......OK -0:The total amount of wall time = 341.209017 -0:The maximum resident set size (KB) = 597016 +0:The total amount of wall time = 342.786007 +0:The maximum resident set size (KB) = 597000 Test 052 regional_netcdf_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/regional_2dwrtdecomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/regional_2dwrtdecomp Checking test 053 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2270,14 +2270,14 @@ Checking test 053 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 341.811660 +0:The total amount of wall time = 342.370220 0:The maximum resident set size (KB) = 605080 Test 053 regional_2dwrtdecomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/fv3_regional_wofs -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/regional_wofs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/fv3_regional_wofs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/regional_wofs Checking test 054 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2288,14 +2288,14 @@ Checking test 054 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 428.573325 -0:The maximum resident set size (KB) = 276128 +0:The total amount of wall time = 429.482795 +0:The maximum resident set size (KB) = 276260 Test 054 regional_wofs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/rap_control Checking test 055 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2342,14 +2342,14 @@ Checking test 055 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 475.908364 +0:The total amount of wall time = 481.894784 0:The maximum resident set size (KB) = 823820 Test 055 rap_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_spp_sppt_shum_skeb -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/regional_spp_sppt_shum_skeb +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_spp_sppt_shum_skeb +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/regional_spp_sppt_shum_skeb Checking test 056 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2360,14 +2360,14 @@ Checking test 056 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 261.915424 -0:The maximum resident set size (KB) = 953640 +0:The total amount of wall time = 263.947093 +0:The maximum resident set size (KB) = 953684 Test 056 regional_spp_sppt_shum_skeb PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/rap_decomp Checking test 057 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2414,14 +2414,14 @@ Checking test 057 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 505.879688 -0:The maximum resident set size (KB) = 822812 +0:The total amount of wall time = 503.655938 +0:The maximum resident set size (KB) = 822600 Test 057 rap_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/rap_2threads Checking test 058 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2468,14 +2468,14 @@ Checking test 058 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 461.028591 -0:The maximum resident set size (KB) = 894188 +0:The total amount of wall time = 462.567059 +0:The maximum resident set size (KB) = 893884 Test 058 rap_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/rap_restart Checking test 059 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2514,14 +2514,14 @@ Checking test 059 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 243.402879 -0:The maximum resident set size (KB) = 571812 +0:The total amount of wall time = 244.671107 +0:The maximum resident set size (KB) = 571800 Test 059 rap_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_sfcdiff +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/rap_sfcdiff Checking test 060 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2568,14 +2568,14 @@ Checking test 060 rap_sfcdiff results .... Comparing 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.628090 -0:The maximum resident set size (KB) = 823752 +0:The total amount of wall time = 480.724470 +0:The maximum resident set size (KB) = 823852 Test 060 rap_sfcdiff PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_sfcdiff_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/rap_sfcdiff_decomp Checking test 061 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2622,14 +2622,14 @@ Checking test 061 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 504.956544 -0:The maximum resident set size (KB) = 822720 +0:The total amount of wall time = 506.599205 +0:The maximum resident set size (KB) = 822444 Test 061 rap_sfcdiff_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_sfcdiff_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/rap_sfcdiff_restart Checking test 062 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2668,14 +2668,14 @@ Checking test 062 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 355.157372 -0:The maximum resident set size (KB) = 571384 +0:The total amount of wall time = 357.874009 +0:The maximum resident set size (KB) = 571460 Test 062 rap_sfcdiff_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hrrr_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/hrrr_control Checking test 063 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2722,14 +2722,14 @@ Checking test 063 hrrr_control results .... Comparing 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.184360 -0:The maximum resident set size (KB) = 820916 +0:The total amount of wall time = 447.761033 +0:The maximum resident set size (KB) = 820948 Test 063 hrrr_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hrrr_control_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/hrrr_control_decomp Checking test 064 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2776,14 +2776,14 @@ Checking test 064 hrrr_control_decomp results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 469.636942 -0:The maximum resident set size (KB) = 820688 +0:The total amount of wall time = 467.656428 +0:The maximum resident set size (KB) = 820616 Test 064 hrrr_control_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hrrr_control_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/hrrr_control_2threads Checking test 065 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2830,28 +2830,28 @@ Checking test 065 hrrr_control_2threads results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 505.516341 -0:The maximum resident set size (KB) = 890720 +0:The total amount of wall time = 508.492551 +0:The maximum resident set size (KB) = 890820 Test 065 hrrr_control_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hrrr_control_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/hrrr_control_restart Checking test 066 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 329.995620 -0:The maximum resident set size (KB) = 567936 +0:The total amount of wall time = 330.445149 +0:The maximum resident set size (KB) = 567692 Test 066 hrrr_control_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1beta -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rrfs_v1beta +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_v1beta +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/rrfs_v1beta Checking test 067 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2898,14 +2898,14 @@ Checking test 067 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 468.357238 -0:The maximum resident set size (KB) = 819760 +0:The total amount of wall time = 476.350122 +0:The maximum resident set size (KB) = 819908 Test 067 rrfs_v1beta PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1nssl -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rrfs_v1nssl +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_v1nssl +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/rrfs_v1nssl Checking test 068 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2920,14 +2920,14 @@ Checking test 068 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 585.515821 -0:The maximum resident set size (KB) = 508904 +0:The total amount of wall time = 585.146894 +0:The maximum resident set size (KB) = 508732 Test 068 rrfs_v1nssl PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rrfs_v1nssl_nohailnoccn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/rrfs_v1nssl_nohailnoccn Checking test 069 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2942,14 +2942,14 @@ Checking test 069 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 564.249771 -0:The maximum resident set size (KB) = 503104 +0:The total amount of wall time = 566.125986 +0:The maximum resident set size (KB) = 503032 Test 069 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/rrfs_smoke_conus13km_hrrr_warm Checking test 070 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2958,14 +2958,14 @@ Checking test 070 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 155.984607 -0:The maximum resident set size (KB) = 671108 +0:The total amount of wall time = 158.604640 +0:The maximum resident set size (KB) = 671096 Test 070 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 071 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2974,14 +2974,14 @@ Checking test 071 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 96.973312 -0:The maximum resident set size (KB) = 693016 +0:The total amount of wall time = 95.848192 +0:The maximum resident set size (KB) = 692984 Test 071 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rrfs_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/rrfs_conus13km_hrrr_warm Checking test 072 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2990,14 +2990,14 @@ Checking test 072 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 139.530450 -0:The maximum resident set size (KB) = 667476 +0:The total amount of wall time = 142.273808 +0:The maximum resident set size (KB) = 667448 Test 072 rrfs_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/rrfs_smoke_conus13km_radar_tten_warm Checking test 073 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3006,26 +3006,26 @@ Checking test 073 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 158.134007 -0:The maximum resident set size (KB) = 677612 +0:The total amount of wall time = 159.665462 +0:The maximum resident set size (KB) = 677556 Test 073 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 074 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 72.897798 -0:The maximum resident set size (KB) = 640308 +0:The total amount of wall time = 73.185399 +0:The maximum resident set size (KB) = 640440 Test 074 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmg -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_csawmg +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_csawmg +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_csawmg Checking test 075 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3036,14 +3036,14 @@ Checking test 075 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 398.731365 -0:The maximum resident set size (KB) = 528140 +0:The total amount of wall time = 402.075695 +0:The maximum resident set size (KB) = 528048 Test 075 control_csawmg PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmgt -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_csawmgt +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_csawmgt +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_csawmgt Checking test 076 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3054,14 +3054,14 @@ Checking test 076 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 395.482771 -0:The maximum resident set size (KB) = 528656 +0:The total amount of wall time = 395.774870 +0:The maximum resident set size (KB) = 529264 Test 076 control_csawmgt PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_ras -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_ras +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_ras +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_ras Checking test 077 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3072,26 +3072,26 @@ Checking test 077 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 209.833440 -0:The maximum resident set size (KB) = 491380 +0:The total amount of wall time = 208.259279 +0:The maximum resident set size (KB) = 491308 Test 077 control_ras PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wam -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_wam +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_wam +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_wam Checking test 078 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -0:The total amount of wall time = 129.995007 -0:The maximum resident set size (KB) = 207020 +0:The total amount of wall time = 130.294769 +0:The maximum resident set size (KB) = 206764 Test 078 control_wam PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_faster -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_p8_faster +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8_faster +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_p8_faster Checking test 079 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3138,14 +3138,14 @@ Checking test 079 control_p8_faster results .... Comparing 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.071888 -0:The maximum resident set size (KB) = 1423728 +0:The total amount of wall time = 172.189868 +0:The maximum resident set size (KB) = 1423800 Test 079 control_p8_faster PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control_faster -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/regional_control_faster +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control_faster +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/regional_control_faster Checking test 080 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3156,56 +3156,56 @@ Checking test 080 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 320.383787 -0:The maximum resident set size (KB) = 604840 +0:The total amount of wall time = 324.435607 +0:The maximum resident set size (KB) = 604848 Test 080 regional_control_faster PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 081 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 875.773072 -0:The maximum resident set size (KB) = 704324 +0:The total amount of wall time = 885.324588 +0:The maximum resident set size (KB) = 704260 Test 081 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 082 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 500.158979 -0:The maximum resident set size (KB) = 723212 +0:The total amount of wall time = 504.778243 +0:The maximum resident set size (KB) = 723260 Test 082 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rrfs_conus13km_hrrr_warm_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/rrfs_conus13km_hrrr_warm_debug Checking test 083 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 786.866811 -0:The maximum resident set size (KB) = 697580 +0:The total amount of wall time = 793.412373 +0:The maximum resident set size (KB) = 697516 Test 083 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_CubedSphereGrid_debug -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_CubedSphereGrid_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_CubedSphereGrid_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_CubedSphereGrid_debug Checking test 084 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3232,348 +3232,348 @@ Checking test 084 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -0:The total amount of wall time = 155.809745 -0:The maximum resident set size (KB) = 617944 +0:The total amount of wall time = 157.167537 +0:The maximum resident set size (KB) = 617904 Test 084 control_CubedSphereGrid_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_wrtGauss_netcdf_parallel_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_wrtGauss_netcdf_parallel_debug Checking test 085 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 156.046099 -0:The maximum resident set size (KB) = 615432 +0:The total amount of wall time = 157.696233 +0:The maximum resident set size (KB) = 615524 Test 085 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_stochy_debug -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_stochy_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_stochy_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_stochy_debug Checking test 086 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 174.717880 -0:The maximum resident set size (KB) = 620872 +0:The total amount of wall time = 177.553434 +0:The maximum resident set size (KB) = 621048 Test 086 control_stochy_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_lndp_debug -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_lndp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_lndp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_lndp_debug Checking test 087 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 158.344963 -0:The maximum resident set size (KB) = 620424 +0:The total amount of wall time = 158.858357 +0:The maximum resident set size (KB) = 620516 Test 087 control_lndp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmg_debug -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_csawmg_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_csawmg_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_csawmg_debug Checking test 088 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 248.577603 -0:The maximum resident set size (KB) = 666760 +0:The total amount of wall time = 247.078005 +0:The maximum resident set size (KB) = 666824 Test 088 control_csawmg_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmgt_debug -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_csawmgt_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_csawmgt_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_csawmgt_debug Checking test 089 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 245.727035 -0:The maximum resident set size (KB) = 667684 +0:The total amount of wall time = 245.893893 +0:The maximum resident set size (KB) = 667724 Test 089 control_csawmgt_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_ras_debug -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_ras_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_ras_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_ras_debug Checking test 090 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 159.757762 -0:The maximum resident set size (KB) = 630012 +0:The total amount of wall time = 160.475604 +0:The maximum resident set size (KB) = 629932 Test 090 control_ras_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_diag_debug -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_diag_debug Checking test 091 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 158.915743 -0:The maximum resident set size (KB) = 675352 +0:The total amount of wall time = 165.090754 +0:The maximum resident set size (KB) = 675252 Test 091 control_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_debug_p8 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_debug_p8 Checking test 092 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 174.495032 -0:The maximum resident set size (KB) = 1443264 +0:The total amount of wall time = 179.576106 +0:The maximum resident set size (KB) = 1443360 Test 092 control_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_debug -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/regional_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/regional_debug Checking test 093 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 1037.010690 -0:The maximum resident set size (KB) = 626404 +0:The total amount of wall time = 1041.208612 +0:The maximum resident set size (KB) = 626416 Test 093 regional_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/rap_control_debug Checking test 094 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 286.272780 -0:The maximum resident set size (KB) = 987188 +0:The total amount of wall time = 289.092677 +0:The maximum resident set size (KB) = 986908 Test 094 rap_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_debug -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hrrr_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/hrrr_control_debug Checking test 095 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 280.144032 -0:The maximum resident set size (KB) = 983132 +0:The total amount of wall time = 284.719646 +0:The maximum resident set size (KB) = 983100 Test 095 hrrr_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_unified_drag_suite_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/rap_unified_drag_suite_debug Checking test 096 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 285.819120 -0:The maximum resident set size (KB) = 987260 +0:The total amount of wall time = 288.096246 +0:The maximum resident set size (KB) = 987240 Test 096 rap_unified_drag_suite_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_diag_debug -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/rap_diag_debug Checking test 097 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 297.122933 -0:The maximum resident set size (KB) = 1070236 +0:The total amount of wall time = 299.656447 +0:The maximum resident set size (KB) = 1070392 Test 097 rap_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_cires_ugwp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/rap_cires_ugwp_debug Checking test 098 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 293.036173 -0:The maximum resident set size (KB) = 986272 +0:The total amount of wall time = 293.433110 +0:The maximum resident set size (KB) = 986220 Test 098 rap_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_unified_ugwp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/rap_unified_ugwp_debug Checking test 099 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 293.586870 -0:The maximum resident set size (KB) = 987096 +0:The total amount of wall time = 295.907395 +0:The maximum resident set size (KB) = 987308 Test 099 rap_unified_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_lndp_debug -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_lndp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_lndp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/rap_lndp_debug Checking test 100 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 289.113313 -0:The maximum resident set size (KB) = 987892 +0:The total amount of wall time = 293.063190 +0:The maximum resident set size (KB) = 987832 Test 100 rap_lndp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_progcld_thompson_debug -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_progcld_thompson_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_progcld_thompson_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/rap_progcld_thompson_debug Checking test 101 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 287.257467 -0:The maximum resident set size (KB) = 986992 +0:The total amount of wall time = 287.069375 +0:The maximum resident set size (KB) = 986816 Test 101 rap_progcld_thompson_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_noah_debug -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_noah_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_noah_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/rap_noah_debug Checking test 102 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 279.856384 -0:The maximum resident set size (KB) = 984956 +0:The total amount of wall time = 281.505648 +0:The maximum resident set size (KB) = 984924 Test 102 rap_noah_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff_debug -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_sfcdiff_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_sfcdiff_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/rap_sfcdiff_debug Checking test 103 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 286.541229 -0:The maximum resident set size (KB) = 986996 +0:The total amount of wall time = 289.899488 +0:The maximum resident set size (KB) = 986848 Test 103 rap_sfcdiff_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/rap_noah_sfcdiff_cires_ugwp_debug Checking test 104 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 472.497753 -0:The maximum resident set size (KB) = 985732 +0:The total amount of wall time = 472.585785 +0:The maximum resident set size (KB) = 985840 Test 104 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1beta_debug -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rrfs_v1beta_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_v1beta_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/rrfs_v1beta_debug Checking test 105 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 281.870448 -0:The maximum resident set size (KB) = 982844 +0:The total amount of wall time = 284.951884 +0:The maximum resident set size (KB) = 982952 Test 105 rrfs_v1beta_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_clm_lake_debug -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_clm_lake_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_clm_lake_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/rap_clm_lake_debug Checking test 106 rap_clm_lake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 350.769501 -0:The maximum resident set size (KB) = 989964 +0:The total amount of wall time = 356.095482 +0:The maximum resident set size (KB) = 989988 Test 106 rap_clm_lake_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_flake_debug -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_flake_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_flake_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/rap_flake_debug Checking test 107 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 286.142000 -0:The maximum resident set size (KB) = 987216 +0:The total amount of wall time = 286.983649 +0:The maximum resident set size (KB) = 987260 Test 107 rap_flake_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wam_debug -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_wam_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_wam_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_wam_debug Checking test 108 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 289.164381 -0:The maximum resident set size (KB) = 235724 +0:The total amount of wall time = 291.699489 +0:The maximum resident set size (KB) = 235680 Test 108 control_wam_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 109 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3584,14 +3584,14 @@ Checking test 109 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 248.765865 -0:The maximum resident set size (KB) = 855404 +0:The total amount of wall time = 247.764089 +0:The maximum resident set size (KB) = 855272 Test 109 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_control_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/rap_control_dyn32_phy32 Checking test 110 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3638,14 +3638,14 @@ Checking test 110 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 400.789003 -0:The maximum resident set size (KB) = 708264 +0:The total amount of wall time = 392.706276 +0:The maximum resident set size (KB) = 708104 Test 110 rap_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hrrr_control_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/hrrr_control_dyn32_phy32 Checking test 111 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3692,14 +3692,14 @@ Checking test 111 hrrr_control_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 202.224699 -0:The maximum resident set size (KB) = 707924 +0:The total amount of wall time = 202.198152 +0:The maximum resident set size (KB) = 707912 Test 111 hrrr_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_2threads_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/rap_2threads_dyn32_phy32 Checking test 112 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3746,14 +3746,14 @@ Checking test 112 rap_2threads_dyn32_phy32 results .... Comparing 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.970502 -0:The maximum resident set size (KB) = 756588 +0:The total amount of wall time = 390.245208 +0:The maximum resident set size (KB) = 756576 Test 112 rap_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hrrr_control_2threads_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/hrrr_control_2threads_dyn32_phy32 Checking test 113 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3800,14 +3800,14 @@ Checking test 113 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 277.308917 -0:The maximum resident set size (KB) = 752108 +0:The total amount of wall time = 277.151381 +0:The maximum resident set size (KB) = 753048 Test 113 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hrrr_control_decomp_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/hrrr_control_decomp_dyn32_phy32 Checking test 114 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3854,14 +3854,14 @@ Checking test 114 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 215.848961 -0:The maximum resident set size (KB) = 705964 +0:The total amount of wall time = 210.647510 +0:The maximum resident set size (KB) = 705932 Test 114 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_restart_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/rap_restart_dyn32_phy32 Checking test 115 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3900,28 +3900,28 @@ Checking test 115 rap_restart_dyn32_phy32 results .... Comparing 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.572354 -0:The maximum resident set size (KB) = 545144 +0:The total amount of wall time = 298.206645 +0:The maximum resident set size (KB) = 545192 Test 115 rap_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hrrr_control_restart_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/hrrr_control_restart_dyn32_phy32 Checking test 116 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 105.757994 -0:The maximum resident set size (KB) = 536696 +0:The total amount of wall time = 103.479212 +0:The maximum resident set size (KB) = 536516 Test 116 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn64_phy32 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_control_dyn64_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_dyn64_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/rap_control_dyn64_phy32 Checking test 117 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3968,81 +3968,81 @@ Checking test 117 rap_control_dyn64_phy32 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 = 273.595358 -0:The maximum resident set size (KB) = 730656 +0:The total amount of wall time = 264.235524 +0:The maximum resident set size (KB) = 730588 Test 117 rap_control_dyn64_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_control_debug_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/rap_control_debug_dyn32_phy32 Checking test 118 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 280.434840 -0:The maximum resident set size (KB) = 872352 +0:The total amount of wall time = 283.070670 +0:The maximum resident set size (KB) = 872280 Test 118 rap_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hrrr_control_debug_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/hrrr_control_debug_dyn32_phy32 Checking test 119 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 275.619384 -0:The maximum resident set size (KB) = 871072 +0:The total amount of wall time = 276.097307 +0:The maximum resident set size (KB) = 871068 Test 119 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_control_dyn64_phy32_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_debug_dyn64_phy32 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/rap_control_dyn64_phy32_debug Checking test 120 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 287.399337 -0:The maximum resident set size (KB) = 893004 +0:The total amount of wall time = 288.501406 +0:The maximum resident set size (KB) = 893008 Test 120 rap_control_dyn64_phy32_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hafs_regional_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/hafs_regional_atm Checking test 121 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -0:The total amount of wall time = 259.521982 -0:The maximum resident set size (KB) = 743088 +0:The total amount of wall time = 263.121936 +0:The maximum resident set size (KB) = 743428 Test 121 hafs_regional_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hafs_regional_atm_thompson_gfdlsf +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/hafs_regional_atm_thompson_gfdlsf Checking test 122 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -0:The total amount of wall time = 343.523925 -0:The maximum resident set size (KB) = 1101216 +0:The total amount of wall time = 293.465137 +0:The maximum resident set size (KB) = 1098976 Test 122 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_ocn -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hafs_regional_atm_ocn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_atm_ocn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/hafs_regional_atm_ocn Checking test 123 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4051,14 +4051,14 @@ Checking test 123 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 455.199375 -0:The maximum resident set size (KB) = 743224 +0:The total amount of wall time = 456.712835 +0:The maximum resident set size (KB) = 743260 Test 123 hafs_regional_atm_ocn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_wav -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hafs_regional_atm_wav +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_atm_wav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/hafs_regional_atm_wav Checking test 124 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4067,14 +4067,14 @@ Checking test 124 hafs_regional_atm_wav 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 = 1074.359986 -0:The maximum resident set size (KB) = 772520 +0:The total amount of wall time = 1024.582698 +0:The maximum resident set size (KB) = 772592 Test 124 hafs_regional_atm_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_ocn_wav -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hafs_regional_atm_ocn_wav +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_atm_ocn_wav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/hafs_regional_atm_ocn_wav Checking test 125 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4085,28 +4085,28 @@ Checking test 125 hafs_regional_atm_ocn_wav 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 = 1093.796132 -0:The maximum resident set size (KB) = 793076 +0:The total amount of wall time = 1171.347442 +0:The maximum resident set size (KB) = 793004 Test 125 hafs_regional_atm_ocn_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_1nest_atm -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hafs_regional_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/hafs_regional_1nest_atm Checking test 126 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 376.707190 -0:The maximum resident set size (KB) = 301340 +0:The total amount of wall time = 375.800269 +0:The maximum resident set size (KB) = 300712 Test 126 hafs_regional_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hafs_regional_telescopic_2nests_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/hafs_regional_telescopic_2nests_atm Checking test 127 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4115,28 +4115,28 @@ Checking test 127 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -0:The total amount of wall time = 426.005482 -0:The maximum resident set size (KB) = 320976 +0:The total amount of wall time = 427.572876 +0:The maximum resident set size (KB) = 320964 Test 127 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_global_1nest_atm -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hafs_global_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_global_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/hafs_global_1nest_atm Checking test 128 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 173.446271 -0:The maximum resident set size (KB) = 214684 +0:The total amount of wall time = 169.354412 +0:The maximum resident set size (KB) = 214508 Test 128 hafs_global_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_global_multiple_4nests_atm -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hafs_global_multiple_4nests_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_global_multiple_4nests_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/hafs_global_multiple_4nests_atm Checking test 129 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4154,14 +4154,14 @@ Checking test 129 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -0:The total amount of wall time = 484.860707 -0:The maximum resident set size (KB) = 303488 +0:The total amount of wall time = 483.138515 +0:The maximum resident set size (KB) = 302980 Test 129 hafs_global_multiple_4nests_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hafs_regional_specified_moving_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/hafs_regional_specified_moving_1nest_atm Checking test 130 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4170,28 +4170,28 @@ Checking test 130 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -0:The total amount of wall time = 241.934138 -0:The maximum resident set size (KB) = 318996 +0:The total amount of wall time = 241.711130 +0:The maximum resident set size (KB) = 319004 Test 130 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hafs_regional_storm_following_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/hafs_regional_storm_following_1nest_atm Checking test 131 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 230.972152 -0:The maximum resident set size (KB) = 319144 +0:The total amount of wall time = 230.803977 +0:The maximum resident set size (KB) = 318956 Test 131 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/hafs_regional_storm_following_1nest_atm_ocn Checking test 132 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4200,42 +4200,42 @@ Checking test 132 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -0:The total amount of wall time = 277.549806 -0:The maximum resident set size (KB) = 375332 +0:The total amount of wall time = 283.469921 +0:The maximum resident set size (KB) = 375780 Test 132 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_global_storm_following_1nest_atm -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hafs_global_storm_following_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_global_storm_following_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/hafs_global_storm_following_1nest_atm Checking test 133 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 70.505526 -0:The maximum resident set size (KB) = 233916 +0:The total amount of wall time = 68.277604 +0:The maximum resident set size (KB) = 233944 Test 133 hafs_global_storm_following_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 134 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 767.145788 -0:The maximum resident set size (KB) = 402076 +0:The total amount of wall time = 774.632734 +0:The maximum resident set size (KB) = 401900 Test 134 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4246,14 +4246,14 @@ Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -0:The total amount of wall time = 786.860062 -0:The maximum resident set size (KB) = 427636 +0:The total amount of wall time = 795.546650 +0:The maximum resident set size (KB) = 428280 Test 135 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_docn -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hafs_regional_docn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_docn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/hafs_regional_docn Checking test 136 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4261,14 +4261,14 @@ Checking test 136 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 390.635766 -0:The maximum resident set size (KB) = 756580 +0:The total amount of wall time = 391.939834 +0:The maximum resident set size (KB) = 756592 Test 136 hafs_regional_docn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_docn_oisst -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hafs_regional_docn_oisst +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_docn_oisst +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/hafs_regional_docn_oisst Checking test 137 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4276,131 +4276,131 @@ Checking test 137 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 481.252227 -0:The maximum resident set size (KB) = 736616 +0:The total amount of wall time = 462.149700 +0:The maximum resident set size (KB) = 736044 Test 137 hafs_regional_docn_oisst PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_datm_cdeps -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hafs_regional_datm_cdeps +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_datm_cdeps +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/hafs_regional_datm_cdeps Checking test 138 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -0:The total amount of wall time = 1285.869506 -0:The maximum resident set size (KB) = 887928 +0:The total amount of wall time = 1292.942104 +0:The maximum resident set size (KB) = 887908 Test 138 hafs_regional_datm_cdeps PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/datm_cdeps_control_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/datm_cdeps_control_cfsr Checking test 139 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 167.762009 -0:The maximum resident set size (KB) = 716676 +0:The total amount of wall time = 168.306054 +0:The maximum resident set size (KB) = 716712 Test 139 datm_cdeps_control_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/datm_cdeps_restart_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/datm_cdeps_restart_cfsr Checking test 140 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 100.779304 -0:The maximum resident set size (KB) = 704832 +0:The total amount of wall time = 97.326517 +0:The maximum resident set size (KB) = 704864 Test 140 datm_cdeps_restart_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_gefs -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/datm_cdeps_control_gefs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_control_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/datm_cdeps_control_gefs Checking test 141 datm_cdeps_control_gefs 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 = 161.001626 -0:The maximum resident set size (KB) = 607504 +0:The total amount of wall time = 160.931873 +0:The maximum resident set size (KB) = 607476 Test 141 datm_cdeps_control_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_iau_gefs -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/datm_cdeps_iau_gefs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_iau_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/datm_cdeps_iau_gefs Checking test 142 datm_cdeps_iau_gefs 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 = 160.841932 -0:The maximum resident set size (KB) = 607508 +0:The total amount of wall time = 160.129447 +0:The maximum resident set size (KB) = 607464 Test 142 datm_cdeps_iau_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_stochy_gefs -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/datm_cdeps_stochy_gefs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_stochy_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/datm_cdeps_stochy_gefs Checking test 143 datm_cdeps_stochy_gefs 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 = 160.108923 -0:The maximum resident set size (KB) = 607504 +0:The total amount of wall time = 165.648601 +0:The maximum resident set size (KB) = 607440 Test 143 datm_cdeps_stochy_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_ciceC_cfsr -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/datm_cdeps_ciceC_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_ciceC_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/datm_cdeps_ciceC_cfsr Checking test 144 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 169.530537 -0:The maximum resident set size (KB) = 716676 +0:The total amount of wall time = 169.085110 +0:The maximum resident set size (KB) = 716696 Test 144 datm_cdeps_ciceC_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_bulk_cfsr -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/datm_cdeps_bulk_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_bulk_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/datm_cdeps_bulk_cfsr Checking test 145 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 167.823598 -0:The maximum resident set size (KB) = 716676 +0:The total amount of wall time = 169.314225 +0:The maximum resident set size (KB) = 716696 Test 145 datm_cdeps_bulk_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_bulk_gefs -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/datm_cdeps_bulk_gefs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_bulk_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/datm_cdeps_bulk_gefs Checking test 146 datm_cdeps_bulk_gefs 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 = 159.889454 -0:The maximum resident set size (KB) = 607512 +0:The total amount of wall time = 161.169207 +0:The maximum resident set size (KB) = 607436 Test 146 datm_cdeps_bulk_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_mx025_cfsr -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/datm_cdeps_mx025_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_mx025_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/datm_cdeps_mx025_cfsr Checking test 147 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4409,14 +4409,14 @@ Checking test 147 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 429.997398 -0:The maximum resident set size (KB) = 514704 +0:The total amount of wall time = 821.293210 +0:The maximum resident set size (KB) = 514364 Test 147 datm_cdeps_mx025_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_mx025_gefs -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/datm_cdeps_mx025_gefs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_mx025_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/datm_cdeps_mx025_gefs Checking test 148 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4425,77 +4425,77 @@ Checking test 148 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 421.745325 -0:The maximum resident set size (KB) = 494900 +0:The total amount of wall time = 433.441407 +0:The maximum resident set size (KB) = 494764 Test 148 datm_cdeps_mx025_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/datm_cdeps_multiple_files_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/datm_cdeps_multiple_files_cfsr Checking test 149 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 167.930718 -0:The maximum resident set size (KB) = 716740 +0:The total amount of wall time = 166.660255 +0:The maximum resident set size (KB) = 716736 Test 149 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/datm_cdeps_3072x1536_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/datm_cdeps_3072x1536_cfsr Checking test 150 datm_cdeps_3072x1536_cfsr 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 = 268.648702 -0:The maximum resident set size (KB) = 1941404 +0:The total amount of wall time = 256.502415 +0:The maximum resident set size (KB) = 1910036 Test 150 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_gfs -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/datm_cdeps_gfs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_gfs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/datm_cdeps_gfs Checking test 151 datm_cdeps_gfs 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 = 269.067076 -0:The maximum resident set size (KB) = 1939416 +0:The total amount of wall time = 269.306711 +0:The maximum resident set size (KB) = 1941084 Test 151 datm_cdeps_gfs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_debug_cfsr -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/datm_cdeps_debug_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_debug_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/datm_cdeps_debug_cfsr Checking test 152 datm_cdeps_debug_cfsr results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -0:The total amount of wall time = 368.953988 -0:The maximum resident set size (KB) = 700612 +0:The total amount of wall time = 369.137286 +0:The maximum resident set size (KB) = 700716 Test 152 datm_cdeps_debug_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_cfsr_faster -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/datm_cdeps_control_cfsr_faster +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_control_cfsr_faster +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/datm_cdeps_control_cfsr_faster Checking test 153 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 163.543653 -0:The maximum resident set size (KB) = 716736 +0:The total amount of wall time = 162.266042 +0:The maximum resident set size (KB) = 716740 Test 153 datm_cdeps_control_cfsr_faster PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/datm_cdeps_lnd_gswp3 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_lnd_gswp3 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/datm_cdeps_lnd_gswp3 Checking test 154 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4504,14 +4504,14 @@ Checking test 154 datm_cdeps_lnd_gswp3 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 = 10.719925 -0:The maximum resident set size (KB) = 208240 +0:The total amount of wall time = 10.086677 +0:The maximum resident set size (KB) = 208292 Test 154 datm_cdeps_lnd_gswp3 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/datm_cdeps_lnd_gswp3_rst +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_lnd_gswp3 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/datm_cdeps_lnd_gswp3_rst Checking test 155 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4520,14 +4520,14 @@ Checking test 155 datm_cdeps_lnd_gswp3_rst 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 = 16.301166 -0:The maximum resident set size (KB) = 216368 +0:The total amount of wall time = 15.871247 +0:The maximum resident set size (KB) = 210140 Test 155 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_atmlnd_sbs -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_p8_atmlnd_sbs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8_atmlnd_sbs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_p8_atmlnd_sbs Checking test 156 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4612,14 +4612,14 @@ Checking test 156 control_p8_atmlnd_sbs 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 = 234.579635 -0:The maximum resident set size (KB) = 1463216 +0:The total amount of wall time = 235.555771 +0:The maximum resident set size (KB) = 1463224 Test 156 control_p8_atmlnd_sbs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/atmwav_control_noaero_p8 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/atmwav_control_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/atmwav_control_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/atmwav_control_noaero_p8 Checking test 157 atmwav_control_noaero_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4662,14 +4662,14 @@ Checking test 157 atmwav_control_noaero_p8 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 = 98.686716 -0:The maximum resident set size (KB) = 1434600 +0:The total amount of wall time = 101.536937 +0:The maximum resident set size (KB) = 1434500 Test 157 atmwav_control_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_atmwav -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_atmwav +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_atmwav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_atmwav Checking test 158 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4713,14 +4713,14 @@ Checking test 158 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -0:The total amount of wall time = 101.144680 -0:The maximum resident set size (KB) = 475312 +0:The total amount of wall time = 101.877108 +0:The maximum resident set size (KB) = 475292 Test 158 control_atmwav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/atmaero_control_p8 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/atmaero_control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/atmaero_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/atmaero_control_p8 Checking test 159 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4764,14 +4764,14 @@ Checking test 159 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 249.525744 -0:The maximum resident set size (KB) = 2703984 +0:The total amount of wall time = 253.573256 +0:The maximum resident set size (KB) = 2703992 Test 159 atmaero_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/atmaero_control_p8_rad -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/atmaero_control_p8_rad +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/atmaero_control_p8_rad +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/atmaero_control_p8_rad Checking test 160 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4815,14 +4815,14 @@ Checking test 160 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 302.020892 -0:The maximum resident set size (KB) = 2758880 +0:The total amount of wall time = 307.307900 +0:The maximum resident set size (KB) = 2758840 Test 160 atmaero_control_p8_rad PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/atmaero_control_p8_rad_micro -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/atmaero_control_p8_rad_micro +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/atmaero_control_p8_rad_micro +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/atmaero_control_p8_rad_micro Checking test 161 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4866,14 +4866,14 @@ Checking test 161 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 309.003540 -0:The maximum resident set size (KB) = 2765588 +0:The total amount of wall time = 308.775831 +0:The maximum resident set size (KB) = 2765556 Test 161 atmaero_control_p8_rad_micro PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_atmaq -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/regional_atmaq +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_atmaq +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/regional_atmaq Checking test 162 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4889,14 +4889,14 @@ Checking test 162 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -0:The total amount of wall time = 760.029388 -0:The maximum resident set size (KB) = 999616 +0:The total amount of wall time = 750.670771 +0:The maximum resident set size (KB) = 999724 Test 162 regional_atmaq PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_atmaq_faster -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/regional_atmaq_faster +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_atmaq_faster +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/regional_atmaq_faster Checking test 163 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4912,12 +4912,12 @@ Checking test 163 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -0:The total amount of wall time = 706.397204 -0:The maximum resident set size (KB) = 999612 +0:The total amount of wall time = 699.838306 +0:The maximum resident set size (KB) = 999488 Test 163 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Sat May 6 10:06:49 MDT 2023 -Elapsed time: 02h:20m:33s. Have a nice day! +Wed May 10 15:47:12 MDT 2023 +Elapsed time: 01h:23m:37s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index 8ca9fcee05a..18ecb65bd33 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,43 +1,43 @@ -Sun Apr 9 21:07:10 EDT 2023 +Thu 11 May 2023 03:27:43 PM EDT Start Regression test -Compile 001 elapsed time 937 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 872 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 829 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 350 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 296 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 785 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 746 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 1131 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 758 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 738 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 011 elapsed time 656 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 637 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 890 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 258 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 207 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 650 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 635 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 299 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 208 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 697 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 021 elapsed time 256 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 888 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 728 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 024 elapsed time 281 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 162 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 354 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 98 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 704 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 668 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 698 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 646 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 776 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 033 elapsed time 258 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 034 elapsed time 777 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8_mixedmode -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/cpld_control_p8_mixedmode +Compile 001 elapsed time 953 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 975 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 900 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 349 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 308 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 821 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 808 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 1049 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 842 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 010 elapsed time 768 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 757 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 731 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 927 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 327 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 015 elapsed time 272 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 742 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 810 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 255 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 274 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 812 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 021 elapsed time 295 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 1014 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 915 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 024 elapsed time 342 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 243 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 331 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 188 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 799 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 818 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 837 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 791 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 760 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 033 elapsed time 281 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 034 elapsed time 928 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8_mixedmode +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -102,14 +102,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 387.614474 - 0: The maximum resident set size (KB) = 1534188 + 0: The total amount of wall time = 321.154633 + 0: The maximum resident set size (KB) = 1549056 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_gfsv17 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/cpld_control_gfsv17 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_gfsv17 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -173,14 +173,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 285.429925 - 0: The maximum resident set size (KB) = 1443460 + 0: The total amount of wall time = 235.191425 + 0: The maximum resident set size (KB) = 1443400 Test 002 cpld_control_gfsv17 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/cpld_control_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -245,14 +245,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 407.693495 - 0: The maximum resident set size (KB) = 1566692 + 0: The total amount of wall time = 365.122502 + 0: The maximum resident set size (KB) = 1582296 Test 003 cpld_control_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/cpld_restart_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -305,14 +305,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 248.002024 - 0: The maximum resident set size (KB) = 1018328 + 0: The total amount of wall time = 209.942826 + 0: The maximum resident set size (KB) = 1021188 Test 004 cpld_restart_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/cpld_control_qr_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -377,14 +377,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 406.611085 - 0: The maximum resident set size (KB) = 1577640 + 0: The total amount of wall time = 371.549266 + 0: The maximum resident set size (KB) = 1593916 Test 005 cpld_control_qr_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/cpld_restart_qr_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -437,14 +437,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 247.338311 - 0: The maximum resident set size (KB) = 1031440 + 0: The total amount of wall time = 211.711733 + 0: The maximum resident set size (KB) = 1035248 Test 006 cpld_restart_qr_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/cpld_2threads_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -497,14 +497,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 418.517646 - 0: The maximum resident set size (KB) = 1758916 + 0: The total amount of wall time = 380.909110 + 0: The maximum resident set size (KB) = 1774940 Test 007 cpld_2threads_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/cpld_decomp_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -557,14 +557,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 404.237894 - 0: The maximum resident set size (KB) = 1561660 + 0: The total amount of wall time = 367.950629 + 0: The maximum resident set size (KB) = 1573100 Test 008 cpld_decomp_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/cpld_mpi_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -617,14 +617,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 350.542338 - 0: The maximum resident set size (KB) = 1527016 + 0: The total amount of wall time = 306.985943 + 0: The maximum resident set size (KB) = 1541436 Test 009 cpld_mpi_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_bmark_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/cpld_bmark_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_bmark_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/cpld_bmark_p8 Checking test 010 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -672,14 +672,14 @@ Checking test 010 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 893.650557 - 0: The maximum resident set size (KB) = 2503316 + 0: The total amount of wall time = 739.641408 + 0: The maximum resident set size (KB) = 2518216 -Test 010 cpld_bmark_p8 PASS +Test 010 cpld_bmark_p8 PASS Tries: 2 -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_bmark_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/cpld_restart_bmark_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_bmark_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/cpld_restart_bmark_p8 Checking test 011 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -727,14 +727,14 @@ Checking test 011 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 608.551522 - 0: The maximum resident set size (KB) = 2323640 + 0: The total amount of wall time = 448.125643 + 0: The maximum resident set size (KB) = 2333952 Test 011 cpld_restart_bmark_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_noaero_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/cpld_control_noaero_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_noaero_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/cpld_control_noaero_p8 Checking test 012 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -798,14 +798,14 @@ Checking test 012 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 310.545752 - 0: The maximum resident set size (KB) = 1441408 + 0: The total amount of wall time = 274.922653 + 0: The maximum resident set size (KB) = 1440468 Test 012 cpld_control_noaero_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_c96_noaero_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/cpld_control_nowave_noaero_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_c96_noaero_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/cpld_control_nowave_noaero_p8 Checking test 013 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -867,14 +867,14 @@ Checking test 013 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 313.962676 - 0: The maximum resident set size (KB) = 1474212 + 0: The total amount of wall time = 283.247583 + 0: The maximum resident set size (KB) = 1474220 Test 013 cpld_control_nowave_noaero_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_debug_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/cpld_debug_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_debug_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/cpld_debug_p8 Checking test 014 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -927,14 +927,14 @@ Checking test 014 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 582.658867 - 0: The maximum resident set size (KB) = 1592244 + 0: The total amount of wall time = 548.490799 + 0: The maximum resident set size (KB) = 1615856 Test 014 cpld_debug_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_debug_noaero_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/cpld_debug_noaero_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_debug_noaero_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/cpld_debug_noaero_p8 Checking test 015 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -986,14 +986,14 @@ Checking test 015 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 386.397364 - 0: The maximum resident set size (KB) = 1441572 + 0: The total amount of wall time = 379.514708 + 0: The maximum resident set size (KB) = 1441508 Test 015 cpld_debug_noaero_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_noaero_p8_agrid -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/cpld_control_noaero_p8_agrid +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_noaero_p8_agrid +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/cpld_control_noaero_p8_agrid Checking test 016 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1055,14 +1055,14 @@ Checking test 016 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 324.821043 - 0: The maximum resident set size (KB) = 1478412 + 0: The total amount of wall time = 292.197721 + 0: The maximum resident set size (KB) = 1476964 Test 016 cpld_control_noaero_p8_agrid PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_c48 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/cpld_control_c48 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_c48 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/cpld_control_c48 Checking test 017 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1112,14 +1112,14 @@ Checking test 017 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 607.115574 - 0: The maximum resident set size (KB) = 2575280 + 0: The total amount of wall time = 604.052583 + 0: The maximum resident set size (KB) = 2563472 Test 017 cpld_control_c48 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_warmstart_c48 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/cpld_warmstart_c48 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_warmstart_c48 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/cpld_warmstart_c48 Checking test 018 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1169,14 +1169,14 @@ Checking test 018 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 186.810125 - 0: The maximum resident set size (KB) = 2588520 + 0: The total amount of wall time = 159.675121 + 0: The maximum resident set size (KB) = 2576564 Test 018 cpld_warmstart_c48 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_warmstart_c48 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/cpld_restart_c48 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_warmstart_c48 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/cpld_restart_c48 Checking test 019 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1226,14 +1226,14 @@ Checking test 019 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 87.032061 - 0: The maximum resident set size (KB) = 2007496 + 0: The total amount of wall time = 83.848113 + 0: The maximum resident set size (KB) = 1990276 Test 019 cpld_restart_c48 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8_faster -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/cpld_control_p8_faster +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8_faster +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/cpld_control_p8_faster Checking test 020 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1298,15 +1298,33 @@ Checking test 020 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 397.423684 - 0: The maximum resident set size (KB) = 1567216 + 0: The total amount of wall time = 352.496896 + 0: The maximum resident set size (KB) = 1582004 Test 020 cpld_control_p8_faster PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_CubedSphereGrid -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_CubedSphereGrid -Checking test 021 control_CubedSphereGrid results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_flake +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_flake +Checking test 021 control_flake results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + + 0: The total amount of wall time = 208.862774 + 0: The maximum resident set size (KB) = 485444 + +Test 021 control_flake PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_CubedSphereGrid +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_CubedSphereGrid +Checking test 022 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1332,29 +1350,29 @@ Checking test 021 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 145.769862 - 0: The maximum resident set size (KB) = 437956 + 0: The total amount of wall time = 136.484075 + 0: The maximum resident set size (KB) = 438148 -Test 021 control_CubedSphereGrid PASS +Test 022 control_CubedSphereGrid PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_CubedSphereGrid_parallel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_CubedSphereGrid_parallel -Checking test 022 control_CubedSphereGrid_parallel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_CubedSphereGrid_parallel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_CubedSphereGrid_parallel +Checking test 023 control_CubedSphereGrid_parallel 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 = 144.154244 - 0: The maximum resident set size (KB) = 437772 + 0: The total amount of wall time = 164.470986 + 0: The maximum resident set size (KB) = 438480 -Test 022 control_CubedSphereGrid_parallel PASS +Test 023 control_CubedSphereGrid_parallel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_latlon -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_latlon -Checking test 023 control_latlon results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_latlon +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_latlon +Checking test 024 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1364,15 +1382,15 @@ Checking test 023 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 144.943397 - 0: The maximum resident set size (KB) = 437924 + 0: The total amount of wall time = 139.791346 + 0: The maximum resident set size (KB) = 438208 -Test 023 control_latlon PASS +Test 024 control_latlon PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_wrtGauss_netcdf_parallel -Checking test 024 control_wrtGauss_netcdf_parallel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_wrtGauss_netcdf_parallel +Checking test 025 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1382,15 +1400,15 @@ Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 153.901595 - 0: The maximum resident set size (KB) = 437884 + 0: The total amount of wall time = 176.154512 + 0: The maximum resident set size (KB) = 438220 -Test 024 control_wrtGauss_netcdf_parallel PASS +Test 025 control_wrtGauss_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_c48 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_c48 -Checking test 025 control_c48 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_c48 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_c48 +Checking test 026 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1428,15 +1446,15 @@ Checking test 025 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 421.266739 -0: The maximum resident set size (KB) = 636844 +0: The total amount of wall time = 418.421092 +0: The maximum resident set size (KB) = 638124 -Test 025 control_c48 PASS +Test 026 control_c48 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_c192 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_c192 -Checking test 026 control_c192 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_c192 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_c192 +Checking test 027 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1446,15 +1464,15 @@ Checking test 026 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 578.004508 - 0: The maximum resident set size (KB) = 544804 + 0: The total amount of wall time = 572.237585 + 0: The maximum resident set size (KB) = 545016 -Test 026 control_c192 PASS +Test 027 control_c192 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_c384 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_c384 -Checking test 027 control_c384 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_c384 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_c384 +Checking test 028 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1464,15 +1482,15 @@ Checking test 027 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1127.701420 - 0: The maximum resident set size (KB) = 822992 + 0: The total amount of wall time = 1085.277804 + 0: The maximum resident set size (KB) = 824172 -Test 027 control_c384 PASS +Test 028 control_c384 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_c384gdas -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_c384gdas -Checking test 028 control_c384gdas results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_c384gdas +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_c384gdas +Checking test 029 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -1514,15 +1532,15 @@ Checking test 028 control_c384gdas 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 = 939.692781 - 0: The maximum resident set size (KB) = 954808 + 0: The total amount of wall time = 900.730507 + 0: The maximum resident set size (KB) = 955512 -Test 028 control_c384gdas PASS +Test 029 control_c384gdas PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_stochy -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_stochy -Checking test 029 control_stochy results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_stochy +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_stochy +Checking test 030 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1532,29 +1550,29 @@ Checking test 029 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 97.795768 - 0: The maximum resident set size (KB) = 441420 + 0: The total amount of wall time = 92.800204 + 0: The maximum resident set size (KB) = 439652 -Test 029 control_stochy PASS +Test 030 control_stochy PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_stochy -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_stochy_restart -Checking test 030 control_stochy_restart results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_stochy +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_stochy_restart +Checking test 031 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 60.919271 - 0: The maximum resident set size (KB) = 195844 + 0: The total amount of wall time = 50.171268 + 0: The maximum resident set size (KB) = 195880 -Test 030 control_stochy_restart PASS +Test 031 control_stochy_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_lndp -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_lndp -Checking test 031 control_lndp results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_lndp +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_lndp +Checking test 032 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1564,15 +1582,15 @@ Checking test 031 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 93.460305 - 0: The maximum resident set size (KB) = 441036 + 0: The total amount of wall time = 85.610296 + 0: The maximum resident set size (KB) = 442892 -Test 031 control_lndp PASS +Test 032 control_lndp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_iovr4 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_iovr4 -Checking test 032 control_iovr4 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_iovr4 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_iovr4 +Checking test 033 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1586,15 +1604,15 @@ Checking test 032 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 145.754778 - 0: The maximum resident set size (KB) = 437852 + 0: The total amount of wall time = 141.919952 + 0: The maximum resident set size (KB) = 437960 -Test 032 control_iovr4 PASS +Test 033 control_iovr4 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_iovr5 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_iovr5 -Checking test 033 control_iovr5 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_iovr5 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_iovr5 +Checking test 034 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1608,15 +1626,15 @@ Checking test 033 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 148.373188 - 0: The maximum resident set size (KB) = 437916 + 0: The total amount of wall time = 141.625455 + 0: The maximum resident set size (KB) = 438040 -Test 033 control_iovr5 PASS +Test 034 control_iovr5 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_p8 -Checking test 034 control_p8 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_p8 +Checking test 035 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1662,15 +1680,15 @@ Checking test 034 control_p8 results .... Comparing 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.959784 - 0: The maximum resident set size (KB) = 1380104 + 0: The total amount of wall time = 175.805688 + 0: The maximum resident set size (KB) = 1380244 -Test 034 control_p8 PASS +Test 035 control_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_restart_p8 -Checking test 035 control_restart_p8 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_restart_p8 +Checking test 036 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1708,15 +1726,15 @@ Checking test 035 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 114.413771 - 0: The maximum resident set size (KB) = 556664 + 0: The total amount of wall time = 92.453186 + 0: The maximum resident set size (KB) = 547928 -Test 035 control_restart_p8 PASS +Test 036 control_restart_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_qr_p8 -Checking test 036 control_qr_p8 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_qr_p8 +Checking test 037 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1762,15 +1780,15 @@ Checking test 036 control_qr_p8 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 = 194.519535 - 0: The maximum resident set size (KB) = 1383264 + 0: The total amount of wall time = 176.519534 + 0: The maximum resident set size (KB) = 1383380 -Test 036 control_qr_p8 PASS +Test 037 control_qr_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_restart_qr_p8 -Checking test 037 control_restart_qr_p8 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_restart_qr_p8 +Checking test 038 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1808,15 +1826,15 @@ Checking test 037 control_restart_qr_p8 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 = 111.143377 - 0: The maximum resident set size (KB) = 581576 + 0: The total amount of wall time = 93.967197 + 0: The maximum resident set size (KB) = 568992 -Test 037 control_restart_qr_p8 PASS +Test 038 control_restart_qr_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_decomp_p8 -Checking test 038 control_decomp_p8 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_decomp_p8 +Checking test 039 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1858,15 +1876,15 @@ Checking test 038 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 192.806025 - 0: The maximum resident set size (KB) = 1373980 + 0: The total amount of wall time = 182.909077 + 0: The maximum resident set size (KB) = 1374320 -Test 038 control_decomp_p8 PASS +Test 039 control_decomp_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_2threads_p8 -Checking test 039 control_2threads_p8 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_2threads_p8 +Checking test 040 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1908,15 +1926,15 @@ Checking test 039 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 180.641269 - 0: The maximum resident set size (KB) = 1464120 + 0: The total amount of wall time = 172.448131 + 0: The maximum resident set size (KB) = 1465452 -Test 039 control_2threads_p8 PASS +Test 040 control_2threads_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_lndp -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_p8_lndp -Checking test 040 control_p8_lndp results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8_lndp +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_p8_lndp +Checking test 041 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1934,15 +1952,15 @@ Checking test 040 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 361.347210 - 0: The maximum resident set size (KB) = 1381220 + 0: The total amount of wall time = 324.941795 + 0: The maximum resident set size (KB) = 1381348 -Test 040 control_p8_lndp PASS +Test 041 control_p8_lndp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_rrtmgp -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_p8_rrtmgp -Checking test 041 control_p8_rrtmgp results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8_rrtmgp +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_p8_rrtmgp +Checking test 042 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1988,15 +2006,15 @@ Checking test 041 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 265.327983 - 0: The maximum resident set size (KB) = 1437540 + 0: The total amount of wall time = 241.825190 + 0: The maximum resident set size (KB) = 1437668 -Test 041 control_p8_rrtmgp PASS +Test 042 control_p8_rrtmgp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_mynn -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_p8_mynn -Checking test 042 control_p8_mynn results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8_mynn +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_p8_mynn +Checking test 043 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2042,15 +2060,15 @@ Checking test 042 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 191.877252 - 0: The maximum resident set size (KB) = 1384160 + 0: The total amount of wall time = 178.597941 + 0: The maximum resident set size (KB) = 1384404 -Test 042 control_p8_mynn PASS +Test 043 control_p8_mynn PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/merra2_thompson -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/merra2_thompson -Checking test 043 merra2_thompson results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/merra2_thompson +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/merra2_thompson +Checking test 044 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2096,15 +2114,15 @@ Checking test 043 merra2_thompson results .... Comparing 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.525689 - 0: The maximum resident set size (KB) = 1385616 + 0: The total amount of wall time = 199.345641 + 0: The maximum resident set size (KB) = 1385696 -Test 043 merra2_thompson PASS +Test 044 merra2_thompson PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/regional_control -Checking test 044 regional_control results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/regional_control +Checking test 045 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2114,29 +2132,29 @@ Checking test 044 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 345.097944 - 0: The maximum resident set size (KB) = 578644 + 0: The total amount of wall time = 329.397452 + 0: The maximum resident set size (KB) = 576800 -Test 044 regional_control PASS +Test 045 regional_control PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/regional_restart -Checking test 045 regional_restart results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/regional_restart +Checking test 046 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 194.474843 - 0: The maximum resident set size (KB) = 578788 + 0: The total amount of wall time = 174.593698 + 0: The maximum resident set size (KB) = 578676 -Test 045 regional_restart PASS +Test 046 regional_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/regional_control_qr -Checking test 046 regional_control_qr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/regional_control_qr +Checking test 047 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2146,29 +2164,29 @@ Checking test 046 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 352.734869 - 0: The maximum resident set size (KB) = 578776 + 0: The total amount of wall time = 327.327069 + 0: The maximum resident set size (KB) = 576980 -Test 046 regional_control_qr PASS +Test 047 regional_control_qr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/regional_restart_qr -Checking test 047 regional_restart_qr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/regional_restart_qr +Checking test 048 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 194.138563 - 0: The maximum resident set size (KB) = 579088 + 0: The total amount of wall time = 174.624520 + 0: The maximum resident set size (KB) = 578620 -Test 047 regional_restart_qr PASS +Test 048 regional_restart_qr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/regional_decomp -Checking test 048 regional_decomp results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/regional_decomp +Checking test 049 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2178,15 +2196,15 @@ Checking test 048 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 356.501926 - 0: The maximum resident set size (KB) = 580788 + 0: The total amount of wall time = 349.037832 + 0: The maximum resident set size (KB) = 580888 -Test 048 regional_decomp PASS +Test 049 regional_decomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/regional_2threads -Checking test 049 regional_2threads results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/regional_2threads +Checking test 050 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2196,44 +2214,44 @@ Checking test 049 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 218.054766 - 0: The maximum resident set size (KB) = 586260 + 0: The total amount of wall time = 195.950026 + 0: The maximum resident set size (KB) = 586496 -Test 049 regional_2threads PASS +Test 050 regional_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_noquilt -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/regional_noquilt -Checking test 050 regional_noquilt results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_noquilt +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/regional_noquilt +Checking test 051 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 369.810544 - 0: The maximum resident set size (KB) = 573172 + 0: The total amount of wall time = 352.370746 + 0: The maximum resident set size (KB) = 572700 -Test 050 regional_noquilt PASS +Test 051 regional_noquilt PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_netcdf_parallel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/regional_netcdf_parallel -Checking test 051 regional_netcdf_parallel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_netcdf_parallel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/regional_netcdf_parallel +Checking test 052 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 337.258126 - 0: The maximum resident set size (KB) = 578320 + 0: The total amount of wall time = 343.867159 + 0: The maximum resident set size (KB) = 578988 -Test 051 regional_netcdf_parallel PASS +Test 052 regional_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/regional_2dwrtdecomp -Checking test 052 regional_2dwrtdecomp results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/regional_2dwrtdecomp +Checking test 053 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2243,15 +2261,15 @@ Checking test 052 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 343.319845 - 0: The maximum resident set size (KB) = 578644 + 0: The total amount of wall time = 327.875783 + 0: The maximum resident set size (KB) = 576832 -Test 052 regional_2dwrtdecomp PASS +Test 053 regional_2dwrtdecomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/fv3_regional_wofs -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/regional_wofs -Checking test 053 regional_wofs results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/fv3_regional_wofs +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/regional_wofs +Checking test 054 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2261,15 +2279,15 @@ Checking test 053 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 430.611504 - 0: The maximum resident set size (KB) = 264000 + 0: The total amount of wall time = 413.475756 + 0: The maximum resident set size (KB) = 264084 -Test 053 regional_wofs PASS +Test 054 regional_wofs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rap_control -Checking test 054 rap_control results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/rap_control +Checking test 055 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2315,15 +2333,15 @@ Checking test 054 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 482.144041 - 0: The maximum resident set size (KB) = 807820 + 0: The total amount of wall time = 474.406209 + 0: The maximum resident set size (KB) = 806844 -Test 054 rap_control PASS +Test 055 rap_control PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_spp_sppt_shum_skeb -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/regional_spp_sppt_shum_skeb -Checking test 055 regional_spp_sppt_shum_skeb results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_spp_sppt_shum_skeb +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/regional_spp_sppt_shum_skeb +Checking test 056 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -2333,15 +2351,15 @@ Checking test 055 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 281.731456 - 0: The maximum resident set size (KB) = 908032 + 0: The total amount of wall time = 259.738400 + 0: The maximum resident set size (KB) = 903664 -Test 055 regional_spp_sppt_shum_skeb PASS +Test 056 regional_spp_sppt_shum_skeb PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rap_decomp -Checking test 056 rap_decomp results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/rap_decomp +Checking test 057 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2387,15 +2405,15 @@ Checking test 056 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 499.176020 - 0: The maximum resident set size (KB) = 806368 + 0: The total amount of wall time = 491.209027 + 0: The maximum resident set size (KB) = 806768 -Test 056 rap_decomp PASS +Test 057 rap_decomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rap_2threads -Checking test 057 rap_2threads results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/rap_2threads +Checking test 058 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2441,15 +2459,15 @@ Checking test 057 rap_2threads results .... Comparing 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.572062 - 0: The maximum resident set size (KB) = 878372 + 0: The total amount of wall time = 452.900387 + 0: The maximum resident set size (KB) = 875668 -Test 057 rap_2threads PASS +Test 058 rap_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rap_restart -Checking test 058 rap_restart results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/rap_restart +Checking test 059 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2487,15 +2505,15 @@ Checking test 058 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 243.646391 - 0: The maximum resident set size (KB) = 553168 + 0: The total amount of wall time = 236.860508 + 0: The maximum resident set size (KB) = 553500 -Test 058 rap_restart PASS +Test 059 rap_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rap_sfcdiff -Checking test 059 rap_sfcdiff results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_sfcdiff +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/rap_sfcdiff +Checking test 060 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2541,15 +2559,15 @@ Checking test 059 rap_sfcdiff results .... Comparing 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.549268 - 0: The maximum resident set size (KB) = 807900 + 0: The total amount of wall time = 473.380538 + 0: The maximum resident set size (KB) = 806672 -Test 059 rap_sfcdiff PASS +Test 060 rap_sfcdiff PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rap_sfcdiff_decomp -Checking test 060 rap_sfcdiff_decomp results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_sfcdiff +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/rap_sfcdiff_decomp +Checking test 061 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2595,15 +2613,15 @@ Checking test 060 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 510.389983 - 0: The maximum resident set size (KB) = 807364 + 0: The total amount of wall time = 493.452906 + 0: The maximum resident set size (KB) = 806784 -Test 060 rap_sfcdiff_decomp PASS +Test 061 rap_sfcdiff_decomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rap_sfcdiff_restart -Checking test 061 rap_sfcdiff_restart results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_sfcdiff +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/rap_sfcdiff_restart +Checking test 062 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2641,15 +2659,15 @@ Checking test 061 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 364.698615 - 0: The maximum resident set size (KB) = 552368 + 0: The total amount of wall time = 347.769028 + 0: The maximum resident set size (KB) = 552896 -Test 061 rap_sfcdiff_restart PASS +Test 062 rap_sfcdiff_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hrrr_control -Checking test 062 hrrr_control results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/hrrr_control +Checking test 063 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2662,48 +2680,48 @@ Checking test 062 hrrr_control results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 467.396448 - 0: The maximum resident set size (KB) = 805796 - -Test 062 hrrr_control PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hrrr_control_decomp -Checking test 063 hrrr_control_decomp results .... + 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 = 434.760229 + 0: The maximum resident set size (KB) = 804736 + +Test 063 hrrr_control PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/hrrr_control_decomp +Checking test 064 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2716,48 +2734,48 @@ Checking test 063 hrrr_control_decomp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 485.806783 - 0: The maximum resident set size (KB) = 805200 - -Test 063 hrrr_control_decomp PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hrrr_control_2threads -Checking test 064 hrrr_control_2threads results .... + 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 = 455.342368 + 0: The maximum resident set size (KB) = 805576 + +Test 064 hrrr_control_decomp PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/hrrr_control_2threads +Checking test 065 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2770,94 +2788,62 @@ Checking test 064 hrrr_control_2threads results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 441.992143 - 0: The maximum resident set size (KB) = 872952 - -Test 064 hrrr_control_2threads PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hrrr_control_restart -Checking test 065 hrrr_control_restart results .... + 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 = 409.133720 + 0: The maximum resident set size (KB) = 877680 + +Test 065 hrrr_control_2threads PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/hrrr_control_restart +Checking test 066 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 345.826280 - 0: The maximum resident set size (KB) = 547760 + 0: The total amount of wall time = 322.817269 + 0: The maximum resident set size (KB) = 550660 -Test 065 hrrr_control_restart PASS +Test 066 hrrr_control_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_v1beta -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rrfs_v1beta -Checking test 066 rrfs_v1beta results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_v1beta +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/rrfs_v1beta +Checking test 067 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2903,15 +2889,15 @@ Checking test 066 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 482.543272 - 0: The maximum resident set size (KB) = 804876 + 0: The total amount of wall time = 463.394181 + 0: The maximum resident set size (KB) = 805284 -Test 066 rrfs_v1beta PASS +Test 067 rrfs_v1beta PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_v1nssl -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rrfs_v1nssl -Checking test 067 rrfs_v1nssl results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_v1nssl +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/rrfs_v1nssl +Checking test 068 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2925,15 +2911,15 @@ Checking test 067 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 587.783735 - 0: The maximum resident set size (KB) = 493312 + 0: The total amount of wall time = 568.085090 + 0: The maximum resident set size (KB) = 493396 -Test 067 rrfs_v1nssl PASS +Test 068 rrfs_v1nssl PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rrfs_v1nssl_nohailnoccn -Checking test 068 rrfs_v1nssl_nohailnoccn results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/rrfs_v1nssl_nohailnoccn +Checking test 069 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2947,15 +2933,15 @@ Checking test 068 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 562.901826 - 0: The maximum resident set size (KB) = 486016 + 0: The total amount of wall time = 555.864460 + 0: The maximum resident set size (KB) = 486940 -Test 068 rrfs_v1nssl_nohailnoccn PASS +Test 069 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rrfs_smoke_conus13km_hrrr_warm -Checking test 069 rrfs_smoke_conus13km_hrrr_warm results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/rrfs_smoke_conus13km_hrrr_warm +Checking test 070 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2963,15 +2949,15 @@ Checking test 069 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 177.631407 - 0: The maximum resident set size (KB) = 658140 + 0: The total amount of wall time = 153.549074 + 0: The maximum resident set size (KB) = 632012 -Test 069 rrfs_smoke_conus13km_hrrr_warm PASS +Test 070 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rrfs_smoke_conus13km_hrrr_warm_2threads -Checking test 070 rrfs_smoke_conus13km_hrrr_warm_2threads results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/rrfs_smoke_conus13km_hrrr_warm_2threads +Checking test 071 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2979,15 +2965,15 @@ Checking test 070 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 126.862886 - 0: The maximum resident set size (KB) = 670828 + 0: The total amount of wall time = 94.719095 + 0: The maximum resident set size (KB) = 645540 -Test 070 rrfs_smoke_conus13km_hrrr_warm_2threads PASS +Test 071 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rrfs_conus13km_hrrr_warm -Checking test 071 rrfs_conus13km_hrrr_warm results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/rrfs_conus13km_hrrr_warm +Checking test 072 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2995,15 +2981,15 @@ Checking test 071 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 167.515710 - 0: The maximum resident set size (KB) = 634712 + 0: The total amount of wall time = 138.545136 + 0: The maximum resident set size (KB) = 649972 -Test 071 rrfs_conus13km_hrrr_warm PASS +Test 072 rrfs_conus13km_hrrr_warm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rrfs_smoke_conus13km_radar_tten_warm -Checking test 072 rrfs_smoke_conus13km_radar_tten_warm results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/rrfs_smoke_conus13km_radar_tten_warm +Checking test 073 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -3011,27 +2997,27 @@ Checking test 072 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 185.825674 - 0: The maximum resident set size (KB) = 661600 + 0: The total amount of wall time = 154.009465 + 0: The maximum resident set size (KB) = 635444 -Test 072 rrfs_smoke_conus13km_radar_tten_warm PASS +Test 073 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rrfs_conus13km_hrrr_warm_restart_mismatch -Checking test 073 rrfs_conus13km_hrrr_warm_restart_mismatch results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/rrfs_conus13km_hrrr_warm_restart_mismatch +Checking test 074 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 86.631848 - 0: The maximum resident set size (KB) = 615068 + 0: The total amount of wall time = 74.414404 + 0: The maximum resident set size (KB) = 621836 -Test 073 rrfs_conus13km_hrrr_warm_restart_mismatch PASS +Test 074 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_csawmgt -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_csawmgt -Checking test 074 control_csawmgt results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_csawmgt +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_csawmgt +Checking test 075 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3041,15 +3027,15 @@ Checking test 074 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 392.026117 - 0: The maximum resident set size (KB) = 502580 + 0: The total amount of wall time = 373.900827 + 0: The maximum resident set size (KB) = 503188 -Test 074 control_csawmgt PASS +Test 075 control_csawmgt PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_ras -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_ras -Checking test 075 control_ras results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_ras +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_ras +Checking test 076 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3059,27 +3045,27 @@ Checking test 075 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 203.071382 - 0: The maximum resident set size (KB) = 472788 + 0: The total amount of wall time = 198.229352 + 0: The maximum resident set size (KB) = 473472 -Test 075 control_ras PASS +Test 076 control_ras PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_wam -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_wam -Checking test 076 control_wam results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_wam +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_wam +Checking test 077 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 128.061276 - 0: The maximum resident set size (KB) = 188880 + 0: The total amount of wall time = 123.202512 + 0: The maximum resident set size (KB) = 189564 -Test 076 control_wam PASS +Test 077 control_wam PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_faster -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_p8_faster -Checking test 077 control_p8_faster results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8_faster +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_p8_faster +Checking test 078 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -3125,15 +3111,15 @@ Checking test 077 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 183.410881 - 0: The maximum resident set size (KB) = 1380108 + 0: The total amount of wall time = 165.354108 + 0: The maximum resident set size (KB) = 1380260 -Test 077 control_p8_faster PASS +Test 078 control_p8_faster PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control_faster -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/regional_control_faster -Checking test 078 regional_control_faster results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control_faster +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/regional_control_faster +Checking test 079 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -3143,57 +3129,57 @@ Checking test 078 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 315.715892 - 0: The maximum resident set size (KB) = 578428 + 0: The total amount of wall time = 307.335309 + 0: The maximum resident set size (KB) = 576848 -Test 078 regional_control_faster PASS +Test 079 regional_control_faster PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rrfs_smoke_conus13km_hrrr_warm_debug -Checking test 079 rrfs_smoke_conus13km_hrrr_warm_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/rrfs_smoke_conus13km_hrrr_warm_debug +Checking test 080 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 900.257815 - 0: The maximum resident set size (KB) = 688176 + 0: The total amount of wall time = 881.785552 + 0: The maximum resident set size (KB) = 686620 -Test 079 rrfs_smoke_conus13km_hrrr_warm_debug PASS +Test 080 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rrfs_smoke_conus13km_hrrr_warm_debug_2threads -Checking test 080 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +Checking test 081 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 525.871133 - 0: The maximum resident set size (KB) = 703548 + 0: The total amount of wall time = 505.724787 + 0: The maximum resident set size (KB) = 671228 -Test 080 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS +Test 081 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rrfs_conus13km_hrrr_warm_debug -Checking test 081 rrfs_conus13km_hrrr_warm_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/rrfs_conus13km_hrrr_warm_debug +Checking test 082 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 809.198304 - 0: The maximum resident set size (KB) = 665148 + 0: The total amount of wall time = 784.896036 + 0: The maximum resident set size (KB) = 680836 -Test 081 rrfs_conus13km_hrrr_warm_debug PASS +Test 082 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_CubedSphereGrid_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_CubedSphereGrid_debug -Checking test 082 control_CubedSphereGrid_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_CubedSphereGrid_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_CubedSphereGrid_debug +Checking test 083 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3219,335 +3205,349 @@ Checking test 082 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 158.189057 - 0: The maximum resident set size (KB) = 601904 + 0: The total amount of wall time = 151.982058 + 0: The maximum resident set size (KB) = 602348 -Test 082 control_CubedSphereGrid_debug PASS +Test 083 control_CubedSphereGrid_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_wrtGauss_netcdf_parallel_debug -Checking test 083 control_wrtGauss_netcdf_parallel_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_wrtGauss_netcdf_parallel_debug +Checking test 084 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 168.913482 - 0: The maximum resident set size (KB) = 599556 + 0: The total amount of wall time = 201.050269 + 0: The maximum resident set size (KB) = 602504 -Test 083 control_wrtGauss_netcdf_parallel_debug PASS +Test 084 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_stochy_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_stochy_debug -Checking test 084 control_stochy_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_stochy_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_stochy_debug +Checking test 085 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 177.252154 - 0: The maximum resident set size (KB) = 604560 + 0: The total amount of wall time = 172.677242 + 0: The maximum resident set size (KB) = 607332 -Test 084 control_stochy_debug PASS +Test 085 control_stochy_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_lndp_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_lndp_debug -Checking test 085 control_lndp_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_lndp_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_lndp_debug +Checking test 086 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 160.490785 - 0: The maximum resident set size (KB) = 603940 + 0: The total amount of wall time = 155.203755 + 0: The maximum resident set size (KB) = 605288 -Test 085 control_lndp_debug PASS +Test 086 control_lndp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_csawmg_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_csawmg_debug -Checking test 086 control_csawmg_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_csawmg_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_csawmg_debug +Checking test 087 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 257.884852 - 0: The maximum resident set size (KB) = 641344 + 0: The total amount of wall time = 245.016484 + 0: The maximum resident set size (KB) = 641888 -Test 086 control_csawmg_debug PASS +Test 087 control_csawmg_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_csawmgt_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_csawmgt_debug -Checking test 087 control_csawmgt_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_csawmgt_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_csawmgt_debug +Checking test 088 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 252.845458 - 0: The maximum resident set size (KB) = 640976 + 0: The total amount of wall time = 241.796528 + 0: The maximum resident set size (KB) = 641548 -Test 087 control_csawmgt_debug PASS +Test 088 control_csawmgt_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_ras_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_ras_debug -Checking test 088 control_ras_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_ras_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_ras_debug +Checking test 089 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 165.237697 - 0: The maximum resident set size (KB) = 613280 + 0: The total amount of wall time = 156.696209 + 0: The maximum resident set size (KB) = 613784 -Test 088 control_ras_debug PASS +Test 089 control_ras_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_diag_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_diag_debug -Checking test 089 control_diag_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_diag_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_diag_debug +Checking test 090 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 164.275507 - 0: The maximum resident set size (KB) = 659044 + 0: The total amount of wall time = 160.512958 + 0: The maximum resident set size (KB) = 658584 -Test 089 control_diag_debug PASS +Test 090 control_diag_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_debug_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_debug_p8 -Checking test 090 control_debug_p8 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_debug_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_debug_p8 +Checking test 091 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 191.633583 - 0: The maximum resident set size (KB) = 1382788 + 0: The total amount of wall time = 173.253402 + 0: The maximum resident set size (KB) = 1383456 -Test 090 control_debug_p8 PASS +Test 091 control_debug_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/regional_debug -Checking test 091 regional_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/regional_debug +Checking test 092 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1052.429750 - 0: The maximum resident set size (KB) = 605844 - -Test 091 regional_debug PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rap_control_debug -Checking test 092 rap_control_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 291.246339 - 0: The maximum resident set size (KB) = 970512 + 0: The total amount of wall time = 1034.754983 + 0: The maximum resident set size (KB) = 606248 -Test 092 rap_control_debug PASS +Test 092 regional_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hrrr_control_debug -Checking test 093 hrrr_control_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/rap_control_debug +Checking test 093 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 286.678901 - 0: The maximum resident set size (KB) = 968864 + 0: The total amount of wall time = 285.269760 + 0: The maximum resident set size (KB) = 970884 -Test 093 hrrr_control_debug PASS +Test 093 rap_control_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rap_unified_drag_suite_debug -Checking test 094 rap_unified_drag_suite_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/hrrr_control_debug +Checking test 094 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 298.667941 - 0: The maximum resident set size (KB) = 970492 + 0: The total amount of wall time = 277.040584 + 0: The maximum resident set size (KB) = 969288 -Test 094 rap_unified_drag_suite_debug PASS +Test 094 hrrr_control_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_diag_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rap_diag_debug -Checking test 095 rap_diag_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/rap_unified_drag_suite_debug +Checking test 095 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 304.782781 - 0: The maximum resident set size (KB) = 1054084 + 0: The total amount of wall time = 283.558740 + 0: The maximum resident set size (KB) = 970936 -Test 095 rap_diag_debug PASS +Test 095 rap_unified_drag_suite_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_cires_ugwp_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rap_cires_ugwp_debug -Checking test 096 rap_cires_ugwp_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_diag_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/rap_diag_debug +Checking test 096 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 305.788055 - 0: The maximum resident set size (KB) = 969784 + 0: The total amount of wall time = 297.675051 + 0: The maximum resident set size (KB) = 1054896 -Test 096 rap_cires_ugwp_debug PASS +Test 096 rap_diag_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_cires_ugwp_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rap_unified_ugwp_debug -Checking test 097 rap_unified_ugwp_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_cires_ugwp_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/rap_cires_ugwp_debug +Checking test 097 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 297.520373 - 0: The maximum resident set size (KB) = 971756 + 0: The total amount of wall time = 289.405049 + 0: The maximum resident set size (KB) = 970396 -Test 097 rap_unified_ugwp_debug PASS +Test 097 rap_cires_ugwp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_lndp_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rap_lndp_debug -Checking test 098 rap_lndp_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_cires_ugwp_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/rap_unified_ugwp_debug +Checking test 098 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 297.417669 - 0: The maximum resident set size (KB) = 971292 + 0: The total amount of wall time = 290.178975 + 0: The maximum resident set size (KB) = 972360 -Test 098 rap_lndp_debug PASS +Test 098 rap_unified_ugwp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_flake_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rap_flake_debug -Checking test 099 rap_flake_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_lndp_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/rap_lndp_debug +Checking test 099 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 294.676546 - 0: The maximum resident set size (KB) = 970532 + 0: The total amount of wall time = 285.794262 + 0: The maximum resident set size (KB) = 971688 -Test 099 rap_flake_debug PASS +Test 099 rap_lndp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_progcld_thompson_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rap_progcld_thompson_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_progcld_thompson_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/rap_progcld_thompson_debug Checking test 100 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 291.371042 - 0: The maximum resident set size (KB) = 970528 + 0: The total amount of wall time = 284.718837 + 0: The maximum resident set size (KB) = 970976 Test 100 rap_progcld_thompson_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_noah_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rap_noah_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_noah_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/rap_noah_debug Checking test 101 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 285.503960 - 0: The maximum resident set size (KB) = 969204 + 0: The total amount of wall time = 277.429345 + 0: The maximum resident set size (KB) = 969516 Test 101 rap_noah_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_sfcdiff_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rap_sfcdiff_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_sfcdiff_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/rap_sfcdiff_debug Checking test 102 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 292.583836 - 0: The maximum resident set size (KB) = 970436 + 0: The total amount of wall time = 284.517674 + 0: The maximum resident set size (KB) = 970792 Test 102 rap_sfcdiff_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/rap_noah_sfcdiff_cires_ugwp_debug Checking test 103 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 477.969334 - 0: The maximum resident set size (KB) = 968700 + 0: The total amount of wall time = 468.919963 + 0: The maximum resident set size (KB) = 969208 Test 103 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_v1beta_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rrfs_v1beta_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_v1beta_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/rrfs_v1beta_debug Checking test 104 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 286.386447 - 0: The maximum resident set size (KB) = 966392 + 0: The total amount of wall time = 280.224406 + 0: The maximum resident set size (KB) = 966872 Test 104 rrfs_v1beta_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_wam_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_wam_debug -Checking test 105 control_wam_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_clm_lake_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/rap_clm_lake_debug +Checking test 105 rap_clm_lake_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 356.859313 + 0: The maximum resident set size (KB) = 973844 + +Test 105 rap_clm_lake_debug PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_flake_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/rap_flake_debug +Checking test 106 rap_flake_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 282.882222 + 0: The maximum resident set size (KB) = 970964 + +Test 106 rap_flake_debug PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_wam_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_wam_debug +Checking test 107 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 290.888582 - 0: The maximum resident set size (KB) = 217672 + 0: The total amount of wall time = 287.114621 + 0: The maximum resident set size (KB) = 218004 -Test 105 control_wam_debug PASS +Test 107 control_wam_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/regional_spp_sppt_shum_skeb_dyn32_phy32 -Checking test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 108 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -3557,15 +3557,15 @@ Checking test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 260.094764 - 0: The maximum resident set size (KB) = 802984 + 0: The total amount of wall time = 248.518242 + 0: The maximum resident set size (KB) = 808112 -Test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS +Test 108 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_dyn32_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rap_control_dyn32_phy32 -Checking test 107 rap_control_dyn32_phy32 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/rap_control_dyn32_phy32 +Checking test 109 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3611,15 +3611,15 @@ Checking test 107 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 401.772542 - 0: The maximum resident set size (KB) = 691480 + 0: The total amount of wall time = 392.623352 + 0: The maximum resident set size (KB) = 691668 -Test 107 rap_control_dyn32_phy32 PASS +Test 109 rap_control_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hrrr_control_dyn32_phy32 -Checking test 108 hrrr_control_dyn32_phy32 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/hrrr_control_dyn32_phy32 +Checking test 110 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3632,48 +3632,48 @@ Checking test 108 hrrr_control_dyn32_phy32 results .... 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 = 215.984121 - 0: The maximum resident set size (KB) = 689892 - -Test 108 hrrr_control_dyn32_phy32 PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_dyn32_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rap_2threads_dyn32_phy32 -Checking test 109 rap_2threads_dyn32_phy32 results .... + 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 = 195.936218 + 0: The maximum resident set size (KB) = 690968 + +Test 110 hrrr_control_dyn32_phy32 PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/rap_2threads_dyn32_phy32 +Checking test 111 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3719,15 +3719,15 @@ Checking test 109 rap_2threads_dyn32_phy32 results .... Comparing 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.942805 - 0: The maximum resident set size (KB) = 743352 + 0: The total amount of wall time = 378.093898 + 0: The maximum resident set size (KB) = 744232 -Test 109 rap_2threads_dyn32_phy32 PASS +Test 111 rap_2threads_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hrrr_control_2threads_dyn32_phy32 -Checking test 110 hrrr_control_2threads_dyn32_phy32 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/hrrr_control_2threads_dyn32_phy32 +Checking test 112 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3740,48 +3740,48 @@ Checking test 110 hrrr_control_2threads_dyn32_phy32 results .... 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 = 204.552813 - 0: The maximum resident set size (KB) = 740800 - -Test 110 hrrr_control_2threads_dyn32_phy32 PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hrrr_control_decomp_dyn32_phy32 -Checking test 111 hrrr_control_decomp_dyn32_phy32 results .... + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 180.479848 + 0: The maximum resident set size (KB) = 739032 + +Test 112 hrrr_control_2threads_dyn32_phy32 PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/hrrr_control_decomp_dyn32_phy32 +Checking test 113 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3794,48 +3794,48 @@ Checking test 111 hrrr_control_decomp_dyn32_phy32 results .... 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 = 221.362664 - 0: The maximum resident set size (KB) = 688564 - -Test 111 hrrr_control_decomp_dyn32_phy32 PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_dyn32_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rap_restart_dyn32_phy32 -Checking test 112 rap_restart_dyn32_phy32 results .... + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 208.501604 + 0: The maximum resident set size (KB) = 691516 + +Test 113 hrrr_control_decomp_dyn32_phy32 PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/rap_restart_dyn32_phy32 +Checking test 114 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3873,61 +3873,29 @@ Checking test 112 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 309.093015 - 0: The maximum resident set size (KB) = 526372 + 0: The total amount of wall time = 289.502134 + 0: The maximum resident set size (KB) = 526936 -Test 112 rap_restart_dyn32_phy32 PASS +Test 114 rap_restart_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hrrr_control_restart_dyn32_phy32 -Checking test 113 hrrr_control_restart_dyn32_phy32 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/hrrr_control_restart_dyn32_phy32 +Checking test 115 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........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 = 115.675662 - 0: The maximum resident set size (KB) = 518620 + 0: The total amount of wall time = 99.897136 + 0: The maximum resident set size (KB) = 518464 -Test 113 hrrr_control_restart_dyn32_phy32 PASS +Test 115 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_dyn64_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rap_control_dyn64_phy32 -Checking test 114 rap_control_dyn64_phy32 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_dyn64_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/rap_control_dyn64_phy32 +Checking test 116 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3973,82 +3941,82 @@ Checking test 114 rap_control_dyn64_phy32 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 = 267.694316 - 0: The maximum resident set size (KB) = 709544 + 0: The total amount of wall time = 259.543671 + 0: The maximum resident set size (KB) = 714324 -Test 114 rap_control_dyn64_phy32 PASS +Test 116 rap_control_dyn64_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rap_control_debug_dyn32_phy32 -Checking test 115 rap_control_debug_dyn32_phy32 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/rap_control_debug_dyn32_phy32 +Checking test 117 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 286.587501 - 0: The maximum resident set size (KB) = 855412 + 0: The total amount of wall time = 279.799361 + 0: The maximum resident set size (KB) = 855992 -Test 115 rap_control_debug_dyn32_phy32 PASS +Test 117 rap_control_debug_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hrrr_control_debug_dyn32_phy32 -Checking test 116 hrrr_control_debug_dyn32_phy32 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/hrrr_control_debug_dyn32_phy32 +Checking test 118 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 284.086337 - 0: The maximum resident set size (KB) = 852924 + 0: The total amount of wall time = 273.633719 + 0: The maximum resident set size (KB) = 854380 -Test 116 hrrr_control_debug_dyn32_phy32 PASS +Test 118 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rap_control_dyn64_phy32_debug -Checking test 117 rap_control_dyn64_phy32_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/rap_control_dyn64_phy32_debug +Checking test 119 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 296.080028 - 0: The maximum resident set size (KB) = 876388 + 0: The total amount of wall time = 287.412254 + 0: The maximum resident set size (KB) = 876912 -Test 117 rap_control_dyn64_phy32_debug PASS +Test 119 rap_control_dyn64_phy32_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hafs_regional_atm -Checking test 118 hafs_regional_atm results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_atm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/hafs_regional_atm +Checking test 120 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 272.045454 - 0: The maximum resident set size (KB) = 688056 + 0: The total amount of wall time = 256.005150 + 0: The maximum resident set size (KB) = 687992 -Test 118 hafs_regional_atm PASS +Test 120 hafs_regional_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hafs_regional_atm_thompson_gfdlsf -Checking test 119 hafs_regional_atm_thompson_gfdlsf results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/hafs_regional_atm_thompson_gfdlsf +Checking test 121 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 309.115577 - 0: The maximum resident set size (KB) = 1039940 + 0: The total amount of wall time = 293.876406 + 0: The maximum resident set size (KB) = 1039560 -Test 119 hafs_regional_atm_thompson_gfdlsf PASS +Test 121 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_ocn -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hafs_regional_atm_ocn -Checking test 120 hafs_regional_atm_ocn results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_atm_ocn +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/hafs_regional_atm_ocn +Checking test 122 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4056,15 +4024,15 @@ Checking test 120 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 454.145969 - 0: The maximum resident set size (KB) = 715512 + 0: The total amount of wall time = 427.600281 + 0: The maximum resident set size (KB) = 718120 -Test 120 hafs_regional_atm_ocn PASS +Test 122 hafs_regional_atm_ocn PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_wav -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hafs_regional_atm_wav -Checking test 121 hafs_regional_atm_wav results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_atm_wav +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/hafs_regional_atm_wav +Checking test 123 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing 20190829.060000.out_grd.ww3 .........OK @@ -4072,15 +4040,15 @@ Checking test 121 hafs_regional_atm_wav 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 = 938.320059 - 0: The maximum resident set size (KB) = 749836 + 0: The total amount of wall time = 933.765348 + 0: The maximum resident set size (KB) = 752196 -Test 121 hafs_regional_atm_wav PASS +Test 123 hafs_regional_atm_wav PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_ocn_wav -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hafs_regional_atm_ocn_wav -Checking test 122 hafs_regional_atm_ocn_wav results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_atm_ocn_wav +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/hafs_regional_atm_ocn_wav +Checking test 124 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4090,29 +4058,29 @@ Checking test 122 hafs_regional_atm_ocn_wav 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 = 1036.953381 - 0: The maximum resident set size (KB) = 767412 + 0: The total amount of wall time = 1033.772242 + 0: The maximum resident set size (KB) = 767096 -Test 122 hafs_regional_atm_ocn_wav PASS +Test 124 hafs_regional_atm_ocn_wav PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_1nest_atm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hafs_regional_1nest_atm -Checking test 123 hafs_regional_1nest_atm results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_1nest_atm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/hafs_regional_1nest_atm +Checking test 125 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 378.447651 - 0: The maximum resident set size (KB) = 279304 + 0: The total amount of wall time = 364.674996 + 0: The maximum resident set size (KB) = 279540 -Test 123 hafs_regional_1nest_atm PASS +Test 125 hafs_regional_1nest_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hafs_regional_telescopic_2nests_atm -Checking test 124 hafs_regional_telescopic_2nests_atm results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/hafs_regional_telescopic_2nests_atm +Checking test 126 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4120,29 +4088,29 @@ Checking test 124 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 436.480617 - 0: The maximum resident set size (KB) = 286812 + 0: The total amount of wall time = 417.099044 + 0: The maximum resident set size (KB) = 288780 -Test 124 hafs_regional_telescopic_2nests_atm PASS +Test 126 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_global_1nest_atm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hafs_global_1nest_atm -Checking test 125 hafs_global_1nest_atm results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_global_1nest_atm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/hafs_global_1nest_atm +Checking test 127 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 170.622801 - 0: The maximum resident set size (KB) = 183944 + 0: The total amount of wall time = 170.310530 + 0: The maximum resident set size (KB) = 184848 -Test 125 hafs_global_1nest_atm PASS +Test 127 hafs_global_1nest_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_global_multiple_4nests_atm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hafs_global_multiple_4nests_atm -Checking test 126 hafs_global_multiple_4nests_atm results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_global_multiple_4nests_atm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/hafs_global_multiple_4nests_atm +Checking test 128 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4159,15 +4127,15 @@ Checking test 126 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 493.740556 - 0: The maximum resident set size (KB) = 232972 + 0: The total amount of wall time = 470.463080 + 0: The maximum resident set size (KB) = 232908 -Test 126 hafs_global_multiple_4nests_atm PASS +Test 128 hafs_global_multiple_4nests_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hafs_regional_specified_moving_1nest_atm -Checking test 127 hafs_regional_specified_moving_1nest_atm results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/hafs_regional_specified_moving_1nest_atm +Checking test 129 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4175,29 +4143,29 @@ Checking test 127 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 246.683176 - 0: The maximum resident set size (KB) = 294296 + 0: The total amount of wall time = 230.480747 + 0: The maximum resident set size (KB) = 295400 -Test 127 hafs_regional_specified_moving_1nest_atm PASS +Test 129 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hafs_regional_storm_following_1nest_atm -Checking test 128 hafs_regional_storm_following_1nest_atm results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/hafs_regional_storm_following_1nest_atm +Checking test 130 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 229.671114 - 0: The maximum resident set size (KB) = 294284 + 0: The total amount of wall time = 216.434333 + 0: The maximum resident set size (KB) = 296560 -Test 128 hafs_regional_storm_following_1nest_atm PASS +Test 130 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hafs_regional_storm_following_1nest_atm_ocn -Checking test 129 hafs_regional_storm_following_1nest_atm_ocn results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/hafs_regional_storm_following_1nest_atm_ocn +Checking test 131 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4205,43 +4173,43 @@ Checking test 129 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 271.960186 - 0: The maximum resident set size (KB) = 323928 + 0: The total amount of wall time = 256.083514 + 0: The maximum resident set size (KB) = 324152 -Test 129 hafs_regional_storm_following_1nest_atm_ocn PASS +Test 131 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hafs_global_storm_following_1nest_atm -Checking test 130 hafs_global_storm_following_1nest_atm results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_global_storm_following_1nest_atm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/hafs_global_storm_following_1nest_atm +Checking test 132 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 70.731540 - 0: The maximum resident set size (KB) = 203012 + 0: The total amount of wall time = 64.861003 + 0: The maximum resident set size (KB) = 203532 -Test 130 hafs_global_storm_following_1nest_atm PASS +Test 132 hafs_global_storm_following_1nest_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hafs_regional_storm_following_1nest_atm_ocn_debug -Checking test 131 hafs_regional_storm_following_1nest_atm_ocn_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/hafs_regional_storm_following_1nest_atm_ocn_debug +Checking test 133 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 774.454054 - 0: The maximum resident set size (KB) = 347768 + 0: The total amount of wall time = 758.554070 + 0: The maximum resident set size (KB) = 349648 -Test 131 hafs_regional_storm_following_1nest_atm_ocn_debug PASS +Test 133 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hafs_regional_storm_following_1nest_atm_ocn_wav -Checking test 132 hafs_regional_storm_following_1nest_atm_ocn_wav results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 134 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4251,162 +4219,162 @@ Checking test 132 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 716.211982 - 0: The maximum resident set size (KB) = 373860 + 0: The total amount of wall time = 695.648339 + 0: The maximum resident set size (KB) = 373900 -Test 132 hafs_regional_storm_following_1nest_atm_ocn_wav PASS +Test 134 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_docn -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hafs_regional_docn -Checking test 133 hafs_regional_docn results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_docn +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/hafs_regional_docn +Checking test 135 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 401.542411 - 0: The maximum resident set size (KB) = 724724 + 0: The total amount of wall time = 381.756807 + 0: The maximum resident set size (KB) = 724668 -Test 133 hafs_regional_docn PASS +Test 135 hafs_regional_docn PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_docn_oisst -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hafs_regional_docn_oisst -Checking test 134 hafs_regional_docn_oisst results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_docn_oisst +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/hafs_regional_docn_oisst +Checking test 136 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 403.339708 - 0: The maximum resident set size (KB) = 713280 + 0: The total amount of wall time = 381.559542 + 0: The maximum resident set size (KB) = 711248 -Test 134 hafs_regional_docn_oisst PASS +Test 136 hafs_regional_docn_oisst PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_datm_cdeps -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hafs_regional_datm_cdeps -Checking test 135 hafs_regional_datm_cdeps results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_datm_cdeps +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/hafs_regional_datm_cdeps +Checking test 137 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 1174.179061 - 0: The maximum resident set size (KB) = 809256 + 0: The total amount of wall time = 1164.987658 + 0: The maximum resident set size (KB) = 809132 -Test 135 hafs_regional_datm_cdeps PASS +Test 137 hafs_regional_datm_cdeps PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/datm_cdeps_control_cfsr -Checking test 136 datm_cdeps_control_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/datm_cdeps_control_cfsr +Checking test 138 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 169.248102 - 0: The maximum resident set size (KB) = 715860 + 0: The total amount of wall time = 165.201128 + 0: The maximum resident set size (KB) = 707424 -Test 136 datm_cdeps_control_cfsr PASS +Test 138 datm_cdeps_control_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/datm_cdeps_restart_cfsr -Checking test 137 datm_cdeps_restart_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/datm_cdeps_restart_cfsr +Checking test 139 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 96.726801 - 0: The maximum resident set size (KB) = 716028 + 0: The total amount of wall time = 94.508998 + 0: The maximum resident set size (KB) = 694784 -Test 137 datm_cdeps_restart_cfsr PASS +Test 139 datm_cdeps_restart_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_control_gefs -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/datm_cdeps_control_gefs -Checking test 138 datm_cdeps_control_gefs results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_control_gefs +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/datm_cdeps_control_gefs +Checking test 140 datm_cdeps_control_gefs 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 = 168.063096 - 0: The maximum resident set size (KB) = 597904 + 0: The total amount of wall time = 159.348899 + 0: The maximum resident set size (KB) = 591260 -Test 138 datm_cdeps_control_gefs PASS +Test 140 datm_cdeps_control_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_iau_gefs -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/datm_cdeps_iau_gefs -Checking test 139 datm_cdeps_iau_gefs results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_iau_gefs +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/datm_cdeps_iau_gefs +Checking test 141 datm_cdeps_iau_gefs 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 = 163.835880 - 0: The maximum resident set size (KB) = 598116 + 0: The total amount of wall time = 160.059556 + 0: The maximum resident set size (KB) = 598176 -Test 139 datm_cdeps_iau_gefs PASS +Test 141 datm_cdeps_iau_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_stochy_gefs -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/datm_cdeps_stochy_gefs -Checking test 140 datm_cdeps_stochy_gefs results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_stochy_gefs +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/datm_cdeps_stochy_gefs +Checking test 142 datm_cdeps_stochy_gefs 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 = 172.525836 - 0: The maximum resident set size (KB) = 599988 + 0: The total amount of wall time = 159.854692 + 0: The maximum resident set size (KB) = 587492 -Test 140 datm_cdeps_stochy_gefs PASS +Test 142 datm_cdeps_stochy_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/datm_cdeps_ciceC_cfsr -Checking test 141 datm_cdeps_ciceC_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_ciceC_cfsr +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/datm_cdeps_ciceC_cfsr +Checking test 143 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.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.027301 - 0: The maximum resident set size (KB) = 715924 + 0: The total amount of wall time = 162.008463 + 0: The maximum resident set size (KB) = 707532 -Test 141 datm_cdeps_ciceC_cfsr PASS +Test 143 datm_cdeps_ciceC_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_bulk_cfsr -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/datm_cdeps_bulk_cfsr -Checking test 142 datm_cdeps_bulk_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_bulk_cfsr +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/datm_cdeps_bulk_cfsr +Checking test 144 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 165.533744 - 0: The maximum resident set size (KB) = 715944 + 0: The total amount of wall time = 162.859855 + 0: The maximum resident set size (KB) = 707576 -Test 142 datm_cdeps_bulk_cfsr PASS +Test 144 datm_cdeps_bulk_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_bulk_gefs -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/datm_cdeps_bulk_gefs -Checking test 143 datm_cdeps_bulk_gefs results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_bulk_gefs +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/datm_cdeps_bulk_gefs +Checking test 145 datm_cdeps_bulk_gefs 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 = 161.838474 - 0: The maximum resident set size (KB) = 602136 + 0: The total amount of wall time = 156.171998 + 0: The maximum resident set size (KB) = 587260 -Test 143 datm_cdeps_bulk_gefs PASS +Test 145 datm_cdeps_bulk_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_mx025_cfsr -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/datm_cdeps_mx025_cfsr -Checking test 144 datm_cdeps_mx025_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_mx025_cfsr +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/datm_cdeps_mx025_cfsr +Checking test 146 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4414,15 +4382,15 @@ Checking test 144 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 438.805417 - 0: The maximum resident set size (KB) = 494400 + 0: The total amount of wall time = 393.048226 + 0: The maximum resident set size (KB) = 496976 -Test 144 datm_cdeps_mx025_cfsr PASS +Test 146 datm_cdeps_mx025_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_mx025_gefs -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/datm_cdeps_mx025_gefs -Checking test 145 datm_cdeps_mx025_gefs results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_mx025_gefs +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/datm_cdeps_mx025_gefs +Checking test 147 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4430,78 +4398,78 @@ Checking test 145 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 461.449192 - 0: The maximum resident set size (KB) = 476416 + 0: The total amount of wall time = 390.561867 + 0: The maximum resident set size (KB) = 476700 -Test 145 datm_cdeps_mx025_gefs PASS +Test 147 datm_cdeps_mx025_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/datm_cdeps_multiple_files_cfsr -Checking test 146 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/datm_cdeps_multiple_files_cfsr +Checking test 148 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 167.688870 - 0: The maximum resident set size (KB) = 715728 + 0: The total amount of wall time = 163.679194 + 0: The maximum resident set size (KB) = 707628 -Test 146 datm_cdeps_multiple_files_cfsr PASS +Test 148 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/datm_cdeps_3072x1536_cfsr -Checking test 147 datm_cdeps_3072x1536_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/datm_cdeps_3072x1536_cfsr +Checking test 149 datm_cdeps_3072x1536_cfsr 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 = 253.573878 - 0: The maximum resident set size (KB) = 1947992 + 0: The total amount of wall time = 252.714361 + 0: The maximum resident set size (KB) = 1948532 -Test 147 datm_cdeps_3072x1536_cfsr PASS +Test 149 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_gfs -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/datm_cdeps_gfs -Checking test 148 datm_cdeps_gfs results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_gfs +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/datm_cdeps_gfs +Checking test 150 datm_cdeps_gfs 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 = 256.506773 - 0: The maximum resident set size (KB) = 1947100 + 0: The total amount of wall time = 250.703212 + 0: The maximum resident set size (KB) = 1948368 -Test 148 datm_cdeps_gfs PASS +Test 150 datm_cdeps_gfs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_debug_cfsr -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/datm_cdeps_debug_cfsr -Checking test 149 datm_cdeps_debug_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_debug_cfsr +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/datm_cdeps_debug_cfsr +Checking test 151 datm_cdeps_debug_cfsr 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 = 370.276170 - 0: The maximum resident set size (KB) = 693024 + 0: The total amount of wall time = 368.547337 + 0: The maximum resident set size (KB) = 693680 -Test 149 datm_cdeps_debug_cfsr PASS +Test 151 datm_cdeps_debug_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_control_cfsr_faster -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/datm_cdeps_control_cfsr_faster -Checking test 150 datm_cdeps_control_cfsr_faster results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_control_cfsr_faster +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/datm_cdeps_control_cfsr_faster +Checking test 152 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 165.247244 - 0: The maximum resident set size (KB) = 715692 + 0: The total amount of wall time = 161.142346 + 0: The maximum resident set size (KB) = 707516 -Test 150 datm_cdeps_control_cfsr_faster PASS +Test 152 datm_cdeps_control_cfsr_faster PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/datm_cdeps_lnd_gswp3 -Checking test 151 datm_cdeps_lnd_gswp3 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/datm_cdeps_lnd_gswp3 +Checking test 153 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4509,15 +4477,15 @@ Checking test 151 datm_cdeps_lnd_gswp3 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 = 14.754692 - 0: The maximum resident set size (KB) = 153860 + 0: The total amount of wall time = 9.120041 + 0: The maximum resident set size (KB) = 154304 -Test 151 datm_cdeps_lnd_gswp3 PASS +Test 153 datm_cdeps_lnd_gswp3 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/datm_cdeps_lnd_gswp3_rst -Checking test 152 datm_cdeps_lnd_gswp3_rst results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/datm_cdeps_lnd_gswp3_rst +Checking test 154 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4525,15 +4493,15 @@ Checking test 152 datm_cdeps_lnd_gswp3_rst 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 = 26.352968 - 0: The maximum resident set size (KB) = 153920 + 0: The total amount of wall time = 16.129212 + 0: The maximum resident set size (KB) = 154196 -Test 152 datm_cdeps_lnd_gswp3_rst PASS +Test 154 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_atmlnd_sbs -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_p8_atmlnd_sbs -Checking test 153 control_p8_atmlnd_sbs results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8_atmlnd_sbs +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_p8_atmlnd_sbs +Checking test 155 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -4617,15 +4585,15 @@ Checking test 153 control_p8_atmlnd_sbs results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 240.033312 - 0: The maximum resident set size (KB) = 1413364 + 0: The total amount of wall time = 218.978033 + 0: The maximum resident set size (KB) = 1413856 -Test 153 control_p8_atmlnd_sbs PASS +Test 155 control_p8_atmlnd_sbs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/atmwav_control_noaero_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/atmwav_control_noaero_p8 -Checking test 154 atmwav_control_noaero_p8 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/atmwav_control_noaero_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/atmwav_control_noaero_p8 +Checking test 156 atmwav_control_noaero_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -4667,15 +4635,15 @@ Checking test 154 atmwav_control_noaero_p8 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 = 106.754442 - 0: The maximum resident set size (KB) = 1392024 + 0: The total amount of wall time = 95.712707 + 0: The maximum resident set size (KB) = 1392344 -Test 154 atmwav_control_noaero_p8 PASS +Test 156 atmwav_control_noaero_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_atmwav -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_atmwav -Checking test 155 control_atmwav results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_atmwav +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_atmwav +Checking test 157 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -4718,15 +4686,15 @@ Checking test 155 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 99.714327 - 0: The maximum resident set size (KB) = 451636 + 0: The total amount of wall time = 91.608572 + 0: The maximum resident set size (KB) = 452344 -Test 155 control_atmwav PASS +Test 157 control_atmwav PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/atmaero_control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/atmaero_control_p8 -Checking test 156 atmaero_control_p8 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/atmaero_control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/atmaero_control_p8 +Checking test 158 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4769,15 +4737,15 @@ Checking test 156 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 265.135700 - 0: The maximum resident set size (KB) = 1448264 + 0: The total amount of wall time = 240.444892 + 0: The maximum resident set size (KB) = 1461784 -Test 156 atmaero_control_p8 PASS +Test 158 atmaero_control_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/atmaero_control_p8_rad -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/atmaero_control_p8_rad -Checking test 157 atmaero_control_p8_rad results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/atmaero_control_p8_rad +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/atmaero_control_p8_rad +Checking test 159 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4820,15 +4788,15 @@ Checking test 157 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 306.513684 - 0: The maximum resident set size (KB) = 1469848 + 0: The total amount of wall time = 293.354011 + 0: The maximum resident set size (KB) = 1468676 -Test 157 atmaero_control_p8_rad PASS +Test 159 atmaero_control_p8_rad PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/atmaero_control_p8_rad_micro -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/atmaero_control_p8_rad_micro -Checking test 158 atmaero_control_p8_rad_micro results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/atmaero_control_p8_rad_micro +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/atmaero_control_p8_rad_micro +Checking test 160 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4871,15 +4839,15 @@ Checking test 158 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 307.804775 - 0: The maximum resident set size (KB) = 1473604 + 0: The total amount of wall time = 300.843240 + 0: The maximum resident set size (KB) = 1474320 -Test 158 atmaero_control_p8_rad_micro PASS +Test 160 atmaero_control_p8_rad_micro PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_atmaq -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/regional_atmaq -Checking test 159 regional_atmaq results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_atmaq +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/regional_atmaq +Checking test 161 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -4894,15 +4862,15 @@ Checking test 159 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 673.819586 - 0: The maximum resident set size (KB) = 971720 + 0: The total amount of wall time = 631.476573 + 0: The maximum resident set size (KB) = 951572 -Test 159 regional_atmaq PASS +Test 161 regional_atmaq PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_atmaq_faster -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/regional_atmaq_faster -Checking test 160 regional_atmaq_faster results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_atmaq_faster +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/regional_atmaq_faster +Checking test 162 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -4917,12 +4885,10 @@ Checking test 160 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 630.376389 - 0: The maximum resident set size (KB) = 962880 + 0: The total amount of wall time = 580.118022 + 0: The maximum resident set size (KB) = 951308 -Test 160 regional_atmaq_faster PASS +Test 162 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Mon Apr 10 04:15:46 EDT 2023 -Elapsed time: 07h:08m:57s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 38b4fa0a0d0..11f9a39f4bb 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,21 +1,21 @@ -Sun May 7 00:16:40 UTC 2023 +Thu May 11 13:02:15 UTC 2023 Start Regression test Compile 001 elapsed time 196 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 002 elapsed time 197 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 350 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 104 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 195 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 422 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 342 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 343 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 002 elapsed time 192 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 337 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 109 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 194 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 417 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 337 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 340 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug Compile 009 elapsed time 269 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 235 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 149 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 012 elapsed time 119 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 237 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 146 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 012 elapsed time 111 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/control_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/control_c48 Checking test 001 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -54,14 +54,14 @@ Checking test 001 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 691.612942 -0: The maximum resident set size (KB) = 703168 +0: The total amount of wall time = 684.870166 +0: The maximum resident set size (KB) = 706504 Test 001 control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/control_stochy +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/control_stochy Checking test 002 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -72,14 +72,14 @@ Checking test 002 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 649.314735 - 0: The maximum resident set size (KB) = 479776 + 0: The total amount of wall time = 650.501559 + 0: The maximum resident set size (KB) = 482796 Test 002 control_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/control_ras -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/control_ras +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/control_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/control_ras Checking test 003 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -90,14 +90,14 @@ Checking test 003 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 838.810404 - 0: The maximum resident set size (KB) = 490264 + 0: The total amount of wall time = 839.568707 + 0: The maximum resident set size (KB) = 486016 Test 003 control_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/control_p8 Checking test 004 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -144,14 +144,14 @@ Checking test 004 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 887.666838 - 0: The maximum resident set size (KB) = 1235744 + 0: The total amount of wall time = 925.254014 + 0: The maximum resident set size (KB) = 1235248 Test 004 control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/control_flake -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/control_flake +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/control_flake +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/control_flake Checking test 005 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -162,14 +162,14 @@ Checking test 005 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 1504.008840 - 0: The maximum resident set size (KB) = 526192 + 0: The total amount of wall time = 1533.973114 + 0: The maximum resident set size (KB) = 524788 Test 005 control_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rap_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/rap_control Checking test 006 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -216,14 +216,14 @@ Checking test 006 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1476.299944 - 0: The maximum resident set size (KB) = 824916 + 0: The total amount of wall time = 1443.536348 + 0: The maximum resident set size (KB) = 827660 Test 006 rap_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rap_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/rap_decomp Checking test 007 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -270,14 +270,14 @@ Checking test 007 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1418.991380 - 0: The maximum resident set size (KB) = 827144 + 0: The total amount of wall time = 1487.477511 + 0: The maximum resident set size (KB) = 824544 Test 007 rap_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rap_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/rap_2threads Checking test 008 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -324,14 +324,14 @@ Checking test 008 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1324.485925 - 0: The maximum resident set size (KB) = 900040 + 0: The total amount of wall time = 1305.363501 + 0: The maximum resident set size (KB) = 898072 Test 008 rap_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rap_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/rap_restart Checking test 009 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -370,14 +370,14 @@ Checking test 009 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 738.060577 - 0: The maximum resident set size (KB) = 546344 + 0: The total amount of wall time = 742.246777 + 0: The maximum resident set size (KB) = 548940 Test 009 rap_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rap_sfcdiff +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/rap_sfcdiff Checking test 010 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -424,14 +424,14 @@ Checking test 010 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1470.399186 - 0: The maximum resident set size (KB) = 828900 + 0: The total amount of wall time = 1468.805795 + 0: The maximum resident set size (KB) = 829028 Test 010 rap_sfcdiff PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rap_sfcdiff_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/rap_sfcdiff_decomp Checking test 011 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -478,14 +478,14 @@ Checking test 011 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1446.364734 - 0: The maximum resident set size (KB) = 829240 + 0: The total amount of wall time = 1421.344790 + 0: The maximum resident set size (KB) = 825144 Test 011 rap_sfcdiff_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rap_sfcdiff_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/rap_sfcdiff_restart Checking test 012 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -524,14 +524,14 @@ Checking test 012 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1088.572288 - 0: The maximum resident set size (KB) = 550756 + 0: The total amount of wall time = 1100.664144 + 0: The maximum resident set size (KB) = 551716 Test 012 rap_sfcdiff_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/hrrr_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/hrrr_control Checking test 013 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -578,14 +578,14 @@ Checking test 013 hrrr_control results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1439.758372 - 0: The maximum resident set size (KB) = 828828 + 0: The total amount of wall time = 1427.420443 + 0: The maximum resident set size (KB) = 832692 Test 013 hrrr_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/hrrr_control_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/hrrr_control_2threads Checking test 014 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -632,14 +632,14 @@ Checking test 014 hrrr_control_2threads results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1479.540867 - 0: The maximum resident set size (KB) = 889064 + 0: The total amount of wall time = 1508.262290 + 0: The maximum resident set size (KB) = 889100 Test 014 hrrr_control_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/hrrr_control_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/hrrr_control_decomp Checking test 015 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -686,28 +686,28 @@ Checking test 015 hrrr_control_decomp results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1403.091147 - 0: The maximum resident set size (KB) = 827968 + 0: The total amount of wall time = 1430.097926 + 0: The maximum resident set size (KB) = 824088 Test 015 hrrr_control_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/hrrr_control_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/hrrr_control_restart Checking test 016 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1051.038281 - 0: The maximum resident set size (KB) = 546284 + 0: The total amount of wall time = 1053.354498 + 0: The maximum resident set size (KB) = 537268 Test 016 hrrr_control_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rrfs_v1beta +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/rrfs_v1beta Checking test 017 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -754,14 +754,14 @@ Checking test 017 rrfs_v1beta results .... Comparing 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.722590 - 0: The maximum resident set size (KB) = 822156 + 0: The total amount of wall time = 1441.785918 + 0: The maximum resident set size (KB) = 826556 Test 017 rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/rrfs_smoke_conus13km_hrrr_warm Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -770,14 +770,14 @@ Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 812.446337 - 0: The maximum resident set size (KB) = 671196 + 0: The total amount of wall time = 804.261854 + 0: The maximum resident set size (KB) = 672556 Test 018 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 019 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -786,14 +786,14 @@ Checking test 019 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 1043.920675 - 0: The maximum resident set size (KB) = 670984 + 0: The total amount of wall time = 1079.738511 + 0: The maximum resident set size (KB) = 675480 Test 019 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rrfs_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/rrfs_conus13km_hrrr_warm Checking test 020 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -802,14 +802,14 @@ Checking test 020 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 794.784429 - 0: The maximum resident set size (KB) = 647152 + 0: The total amount of wall time = 750.803918 + 0: The maximum resident set size (KB) = 647780 Test 020 rrfs_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/rrfs_smoke_conus13km_radar_tten_warm Checking test 021 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -818,262 +818,262 @@ Checking test 021 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 803.436551 - 0: The maximum resident set size (KB) = 668200 + 0: The total amount of wall time = 786.125627 + 0: The maximum resident set size (KB) = 673916 Test 021 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 022 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 403.273780 - 0: The maximum resident set size (KB) = 635728 + 0: The total amount of wall time = 400.955493 + 0: The maximum resident set size (KB) = 636532 Test 022 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/control_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/control_diag_debug Checking test 023 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 123.723268 - 0: The maximum resident set size (KB) = 533840 + 0: The total amount of wall time = 122.252638 + 0: The maximum resident set size (KB) = 525584 Test 023 control_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/regional_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/regional_debug Checking test 024 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 677.735811 - 0: The maximum resident set size (KB) = 594692 + 0: The total amount of wall time = 689.147647 + 0: The maximum resident set size (KB) = 593104 Test 024 regional_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rap_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/rap_control_debug Checking test 025 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 173.069544 - 0: The maximum resident set size (KB) = 848212 + 0: The total amount of wall time = 176.714325 + 0: The maximum resident set size (KB) = 837712 Test 025 rap_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/hrrr_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/hrrr_control_debug Checking test 026 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 169.229655 - 0: The maximum resident set size (KB) = 836172 + 0: The total amount of wall time = 168.041220 + 0: The maximum resident set size (KB) = 834380 Test 026 hrrr_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rap_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/rap_diag_debug Checking test 027 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 207.267207 - 0: The maximum resident set size (KB) = 922652 + 0: The total amount of wall time = 209.630572 + 0: The maximum resident set size (KB) = 920052 Test 027 rap_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/rap_noah_sfcdiff_cires_ugwp_debug Checking test 028 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.617750 - 0: The maximum resident set size (KB) = 841744 + 0: The total amount of wall time = 275.276247 + 0: The maximum resident set size (KB) = 837960 Test 028 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rap_progcld_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/rap_progcld_thompson_debug Checking test 029 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 174.951614 - 0: The maximum resident set size (KB) = 844796 + 0: The total amount of wall time = 176.468047 + 0: The maximum resident set size (KB) = 841860 Test 029 rap_progcld_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rrfs_v1beta_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/rrfs_v1beta_debug Checking test 030 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 174.182619 - 0: The maximum resident set size (KB) = 847468 + 0: The total amount of wall time = 177.687052 + 0: The maximum resident set size (KB) = 836316 Test 030 rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/control_ras_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/control_ras_debug Checking test 031 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 102.098352 - 0: The maximum resident set size (KB) = 485576 + 0: The total amount of wall time = 102.568733 + 0: The maximum resident set size (KB) = 478668 Test 031 control_ras_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/control_stochy_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/control_stochy_debug Checking test 032 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 116.409955 - 0: The maximum resident set size (KB) = 478296 + 0: The total amount of wall time = 121.270170 + 0: The maximum resident set size (KB) = 475136 Test 032 control_stochy_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/control_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/control_debug_p8 Checking test 033 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 116.384765 - 0: The maximum resident set size (KB) = 1229456 + 0: The total amount of wall time = 121.461728 + 0: The maximum resident set size (KB) = 1230264 Test 033 control_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 034 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 630.934137 - 0: The maximum resident set size (KB) = 688544 + 0: The total amount of wall time = 621.299332 + 0: The maximum resident set size (KB) = 686060 Test 034 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 035 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 738.145071 - 0: The maximum resident set size (KB) = 684368 + 0: The total amount of wall time = 766.733199 + 0: The maximum resident set size (KB) = 686156 Test 035 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rrfs_conus13km_hrrr_warm_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/rrfs_conus13km_hrrr_warm_debugs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/rrfs_conus13km_hrrr_warm_debug Checking test 036 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 585.768557 - 0: The maximum resident set size (KB) = 657144 + 0: The total amount of wall time = 560.532712 + 0: The maximum resident set size (KB) = 665912 Test 036 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rap_flake_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rap_flake_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/rap_flake_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/rap_flake_debug Checking test 037 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 172.401634 - 0: The maximum resident set size (KB) = 852008 + 0: The total amount of wall time = 176.328228 + 0: The maximum resident set size (KB) = 844284 Test 037 rap_flake_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rap_clm_lake_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rap_clm_lake_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/rap_clm_lake_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/rap_clm_lake_debug Checking test 038 rap_clm_lake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 195.179758 - 0: The maximum resident set size (KB) = 844748 + 0: The total amount of wall time = 193.325971 + 0: The maximum resident set size (KB) = 839220 Test 038 rap_clm_lake_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/control_wam_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/control_wam_debug Checking test 039 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 181.538708 - 0: The maximum resident set size (KB) = 193268 + 0: The total amount of wall time = 185.348364 + 0: The maximum resident set size (KB) = 190996 Test 039 control_wam_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rap_control_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/rap_control_dyn32_phy32 Checking test 040 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1120,14 +1120,14 @@ Checking test 040 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1483.985617 - 0: The maximum resident set size (KB) = 680048 + 0: The total amount of wall time = 1454.327586 + 0: The maximum resident set size (KB) = 686252 Test 040 rap_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/hrrr_control_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/hrrr_control_dyn32_phy32 Checking test 041 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1174,14 +1174,14 @@ Checking test 041 hrrr_control_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 733.203645 - 0: The maximum resident set size (KB) = 677748 + 0: The total amount of wall time = 735.886324 + 0: The maximum resident set size (KB) = 681072 Test 041 hrrr_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rap_2threads_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/rap_2threads_dyn32_phy32 Checking test 042 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1228,14 +1228,14 @@ Checking test 042 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1348.846945 - 0: The maximum resident set size (KB) = 733752 + 0: The total amount of wall time = 1360.033599 + 0: The maximum resident set size (KB) = 735580 Test 042 rap_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/hrrr_control_2threads_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/hrrr_control_2threads_dyn32_phy32 Checking test 043 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1282,14 +1282,14 @@ Checking test 043 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 766.729496 - 0: The maximum resident set size (KB) = 722460 + 0: The total amount of wall time = 749.923967 + 0: The maximum resident set size (KB) = 730624 Test 043 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/hrrr_control_decomp_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/hrrr_control_decomp_dyn32_phy32 Checking test 044 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1336,14 +1336,14 @@ Checking test 044 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 723.153026 - 0: The maximum resident set size (KB) = 687240 + 0: The total amount of wall time = 730.501683 + 0: The maximum resident set size (KB) = 682316 Test 044 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rap_restart_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/rap_restart_dyn32_phy32 Checking test 045 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1382,28 +1382,28 @@ Checking test 045 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1090.360071 - 0: The maximum resident set size (KB) = 511740 + 0: The total amount of wall time = 1091.321115 + 0: The maximum resident set size (KB) = 518208 Test 045 rap_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/hrrr_control_restart_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/hrrr_control_restart_dyn32_phy32 Checking test 046 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 359.523102 - 0: The maximum resident set size (KB) = 506808 + 0: The total amount of wall time = 371.692801 + 0: The maximum resident set size (KB) = 509824 Test 046 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rap_control_dyn64_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/rap_control_dyn64_phy32 Checking test 047 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1450,58 +1450,128 @@ Checking test 047 rap_control_dyn64_phy32 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 = 1071.730803 - 0: The maximum resident set size (KB) = 707532 + 0: The total amount of wall time = 1090.851499 + 0: The maximum resident set size (KB) = 706864 Test 047 rap_control_dyn64_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rap_control_debug_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/rap_control_debug_dyn32_phy32 Checking test 048 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 173.504776 - 0: The maximum resident set size (KB) = 698472 + 0: The total amount of wall time = 173.474190 + 0: The maximum resident set size (KB) = 694936 Test 048 rap_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/hrrr_control_debug_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/hrrr_control_debug_dyn32_phy32 Checking test 049 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 170.336581 - 0: The maximum resident set size (KB) = 692736 + 0: The total amount of wall time = 170.211248 + 0: The maximum resident set size (KB) = 697548 Test 049 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rap_control_dyn64_phy32_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/rap_control_debug_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/rap_control_dyn64_phy32_debug Checking test 050 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 204.567054 - 0: The maximum resident set size (KB) = 714436 + 0: The total amount of wall time = 205.597260 + 0: The maximum resident set size (KB) = 723004 Test 050 rap_control_dyn64_phy32_debug PASS -Test 051 cpld_control_p8 FAIL +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/cpld_control_p8 +Checking test 051 cpld_control_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 1738.111621 + 0: The maximum resident set size (KB) = 1428136 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/cpld_control_nowave_noaero_p8 +Test 051 cpld_control_p8 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/cpld_control_c96_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/cpld_control_nowave_noaero_p8 Checking test 052 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1563,14 +1633,14 @@ Checking test 052 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 1225.420847 - 0: The maximum resident set size (KB) = 1334116 + 0: The total amount of wall time = 1225.473787 + 0: The maximum resident set size (KB) = 1330720 Test 052 cpld_control_nowave_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/cpld_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/cpld_debug_p8 Checking test 053 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1623,107 +1693,25 @@ Checking test 053 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 945.235437 - 0: The maximum resident set size (KB) = 1437376 + 0: The total amount of wall time = 814.932589 + 0: The maximum resident set size (KB) = 1441252 Test 053 cpld_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/datm_cdeps_control_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/datm_cdeps_control_cfsr Checking test 054 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 176.318780 - 0: The maximum resident set size (KB) = 662900 + 0: The total amount of wall time = 179.836645 + 0: The maximum resident set size (KB) = 659900 Test 054 datm_cdeps_control_cfsr PASS -FAILED TESTS: -Test cpld_control_p8 051 failed in run_test failed - -REGRESSION TEST FAILED -Sun May 7 07:16:26 UTC 2023 -Elapsed time: 06h:59m:47s. Have a nice day! -Sun May 7 12:08:26 UTC 2023 -Start Regression test - -Compile 001 elapsed time 271 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12317/cpld_control_p8 -Checking test 001 cpld_control_p8 results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 1759.336840 - 0: The maximum resident set size (KB) = 1429516 - -Test 001 cpld_control_p8 PASS Tries: 2 - REGRESSION TEST WAS SUCCESSFUL -Sun May 7 14:31:34 UTC 2023 -Elapsed time: 02h:23m:08s. Have a nice day! +Thu May 11 19:21:37 UTC 2023 +Elapsed time: 06h:19m:23s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 90fb6d61e3f..c973acda0e4 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,43 +1,43 @@ -Sat May 6 22:27:18 UTC 2023 +Thu May 11 12:48:16 UTC 2023 Start Regression test -Compile 001 elapsed time 645 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 645 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 600 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 231 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 206 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 562 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 557 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 724 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 578 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 010 elapsed time 532 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 513 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 470 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 630 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 226 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 015 elapsed time 169 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 496 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 499 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 171 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 172 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 602 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 247 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 675 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 582 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 024 elapsed time 178 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 106 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 184 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 64 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 524 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 568 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 533 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 505 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 500 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 033 elapsed time 176 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 034 elapsed time 575 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8_mixedmode -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/cpld_control_p8_mixedmode +Compile 001 elapsed time 634 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 646 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 603 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 238 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 211 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 559 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 560 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 736 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 575 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 010 elapsed time 534 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 503 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 481 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 617 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 225 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 015 elapsed time 161 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 491 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 500 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 164 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 167 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 570 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 021 elapsed time 196 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 669 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 590 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 024 elapsed time 187 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 107 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 176 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 50 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 528 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 552 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 551 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 525 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 498 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 033 elapsed time 171 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 034 elapsed time 573 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8_mixedmode +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -102,14 +102,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 316.030188 - 0: The maximum resident set size (KB) = 3134584 + 0: The total amount of wall time = 309.521039 + 0: The maximum resident set size (KB) = 3138912 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_gfsv17 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/cpld_control_gfsv17 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_gfsv17 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -173,14 +173,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 229.299897 - 0: The maximum resident set size (KB) = 1710748 + 0: The total amount of wall time = 225.750576 + 0: The maximum resident set size (KB) = 1723136 Test 002 cpld_control_gfsv17 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/cpld_control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -245,14 +245,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 344.720942 - 0: The maximum resident set size (KB) = 3160168 + 0: The total amount of wall time = 341.419667 + 0: The maximum resident set size (KB) = 3164920 Test 003 cpld_control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/cpld_restart_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -305,14 +305,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 196.781868 - 0: The maximum resident set size (KB) = 3036612 + 0: The total amount of wall time = 199.715554 + 0: The maximum resident set size (KB) = 3044588 Test 004 cpld_restart_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/cpld_control_qr_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -377,14 +377,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 363.796427 - 0: The maximum resident set size (KB) = 3173820 + 0: The total amount of wall time = 346.336978 + 0: The maximum resident set size (KB) = 3122744 Test 005 cpld_control_qr_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/cpld_restart_qr_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -437,14 +437,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 204.261175 - 0: The maximum resident set size (KB) = 3066668 + 0: The total amount of wall time = 202.152301 + 0: The maximum resident set size (KB) = 3054444 Test 006 cpld_restart_qr_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/cpld_2threads_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -497,14 +497,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 359.033644 - 0: The maximum resident set size (KB) = 3504096 + 0: The total amount of wall time = 349.219387 + 0: The maximum resident set size (KB) = 3497980 Test 007 cpld_2threads_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/cpld_decomp_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -557,14 +557,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 347.600009 - 0: The maximum resident set size (KB) = 3151644 + 0: The total amount of wall time = 341.434881 + 0: The maximum resident set size (KB) = 3144492 Test 008 cpld_decomp_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/cpld_mpi_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -617,14 +617,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 282.874009 - 0: The maximum resident set size (KB) = 3006024 + 0: The total amount of wall time = 282.215373 + 0: The maximum resident set size (KB) = 3002292 Test 009 cpld_mpi_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_ciceC_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/cpld_control_ciceC_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_ciceC_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -689,14 +689,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 350.433740 - 0: The maximum resident set size (KB) = 3146124 + 0: The total amount of wall time = 340.429672 + 0: The maximum resident set size (KB) = 3148216 Test 010 cpld_control_ciceC_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/cpld_control_c192_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/cpld_control_c192_p8 Checking test 011 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -749,14 +749,14 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 583.959711 - 0: The maximum resident set size (KB) = 3239904 + 0: The total amount of wall time = 598.468737 + 0: The maximum resident set size (KB) = 3240772 Test 011 cpld_control_c192_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/cpld_restart_c192_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/cpld_restart_c192_p8 Checking test 012 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -809,14 +809,14 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 387.630995 - 0: The maximum resident set size (KB) = 3163220 + 0: The total amount of wall time = 382.099377 + 0: The maximum resident set size (KB) = 3137560 Test 012 cpld_restart_c192_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/cpld_bmark_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/cpld_bmark_p8 Checking test 013 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -864,14 +864,14 @@ Checking test 013 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 736.936664 - 0: The maximum resident set size (KB) = 3975864 + 0: The total amount of wall time = 804.295467 + 0: The maximum resident set size (KB) = 4020352 Test 013 cpld_bmark_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/cpld_restart_bmark_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/cpld_restart_bmark_p8 Checking test 014 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -919,14 +919,14 @@ Checking test 014 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 464.445764 - 0: The maximum resident set size (KB) = 3957864 + 0: The total amount of wall time = 452.264457 + 0: The maximum resident set size (KB) = 3962820 Test 014 cpld_restart_bmark_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/cpld_control_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/cpld_control_noaero_p8 Checking test 015 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -990,14 +990,14 @@ Checking test 015 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 266.714782 - 0: The maximum resident set size (KB) = 1702236 + 0: The total amount of wall time = 265.538979 + 0: The maximum resident set size (KB) = 1712996 Test 015 cpld_control_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/cpld_control_nowave_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_c96_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/cpld_control_nowave_noaero_p8 Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1059,14 +1059,14 @@ Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 263.451496 - 0: The maximum resident set size (KB) = 1751580 + 0: The total amount of wall time = 261.304673 + 0: The maximum resident set size (KB) = 1757796 Test 016 cpld_control_nowave_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/cpld_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/cpld_debug_p8 Checking test 017 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1119,14 +1119,14 @@ Checking test 017 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 524.506699 - 0: The maximum resident set size (KB) = 3210916 + 0: The total amount of wall time = 518.307589 + 0: The maximum resident set size (KB) = 3226744 Test 017 cpld_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_debug_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/cpld_debug_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_debug_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/cpld_debug_noaero_p8 Checking test 018 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1178,14 +1178,14 @@ Checking test 018 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 357.523239 - 0: The maximum resident set size (KB) = 1714572 + 0: The total amount of wall time = 358.692848 + 0: The maximum resident set size (KB) = 1741628 Test 018 cpld_debug_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_noaero_p8_agrid -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/cpld_control_noaero_p8_agrid +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_noaero_p8_agrid +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/cpld_control_noaero_p8_agrid Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1247,14 +1247,14 @@ Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 274.078376 - 0: The maximum resident set size (KB) = 1745448 + 0: The total amount of wall time = 267.547426 + 0: The maximum resident set size (KB) = 1753120 Test 019 cpld_control_noaero_p8_agrid PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_c48 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/cpld_control_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/cpld_control_c48 Checking test 020 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1304,14 +1304,14 @@ Checking test 020 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 588.326597 - 0: The maximum resident set size (KB) = 2806248 + 0: The total amount of wall time = 584.102031 + 0: The maximum resident set size (KB) = 2803868 Test 020 cpld_control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/cpld_warmstart_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_warmstart_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/cpld_warmstart_c48 Checking test 021 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1361,14 +1361,14 @@ Checking test 021 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 156.844167 - 0: The maximum resident set size (KB) = 2788828 + 0: The total amount of wall time = 155.598223 + 0: The maximum resident set size (KB) = 2807936 Test 021 cpld_warmstart_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/cpld_restart_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_warmstart_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/cpld_restart_c48 Checking test 022 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1418,14 +1418,14 @@ Checking test 022 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 82.168910 - 0: The maximum resident set size (KB) = 2231568 + 0: The total amount of wall time = 81.895077 + 0: The maximum resident set size (KB) = 2244552 Test 022 cpld_restart_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8_faster -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/cpld_control_p8_faster +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/cpld_control_p8_faster Checking test 023 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1490,14 +1490,14 @@ Checking test 023 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 321.571268 - 0: The maximum resident set size (KB) = 3153472 + 0: The total amount of wall time = 328.632333 + 0: The maximum resident set size (KB) = 3162392 Test 023 cpld_control_p8_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_flake -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_flake +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_flake +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_flake Checking test 024 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1508,14 +1508,14 @@ Checking test 024 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 189.114373 - 0: The maximum resident set size (KB) = 675364 + 0: The total amount of wall time = 186.762183 + 0: The maximum resident set size (KB) = 677816 Test 024 control_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_CubedSphereGrid -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_CubedSphereGrid +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_CubedSphereGrid +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_CubedSphereGrid Checking test 025 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1542,28 +1542,28 @@ Checking test 025 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 131.918610 - 0: The maximum resident set size (KB) = 628388 + 0: The total amount of wall time = 130.451946 + 0: The maximum resident set size (KB) = 598768 Test 025 control_CubedSphereGrid PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_CubedSphereGrid_parallel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_CubedSphereGrid_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_CubedSphereGrid_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_CubedSphereGrid_parallel Checking test 026 control_CubedSphereGrid_parallel results .... - Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc .........OK + Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 128.380662 - 0: The maximum resident set size (KB) = 632556 + 0: The total amount of wall time = 127.426279 + 0: The maximum resident set size (KB) = 624304 Test 026 control_CubedSphereGrid_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_latlon -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_latlon +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_latlon +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_latlon Checking test 027 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1574,14 +1574,14 @@ Checking test 027 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.376694 - 0: The maximum resident set size (KB) = 621536 + 0: The total amount of wall time = 132.725882 + 0: The maximum resident set size (KB) = 625988 Test 027 control_latlon PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wrtGauss_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_wrtGauss_netcdf_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_wrtGauss_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_wrtGauss_netcdf_parallel Checking test 028 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1592,14 +1592,14 @@ Checking test 028 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 139.499111 - 0: The maximum resident set size (KB) = 607696 + 0: The total amount of wall time = 136.911104 + 0: The maximum resident set size (KB) = 623144 Test 028 control_wrtGauss_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_c48 Checking test 029 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1638,14 +1638,14 @@ Checking test 029 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 366.514430 -0: The maximum resident set size (KB) = 822892 +0: The total amount of wall time = 369.811784 +0: The maximum resident set size (KB) = 825016 Test 029 control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c192 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_c192 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_c192 Checking test 030 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1656,14 +1656,14 @@ Checking test 030 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 527.992750 - 0: The maximum resident set size (KB) = 766924 + 0: The total amount of wall time = 528.856857 + 0: The maximum resident set size (KB) = 762508 Test 030 control_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c384 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_c384 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_c384 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_c384 Checking test 031 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1674,14 +1674,14 @@ Checking test 031 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 519.102356 - 0: The maximum resident set size (KB) = 1257568 + 0: The total amount of wall time = 523.762877 + 0: The maximum resident set size (KB) = 1270216 Test 031 control_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c384gdas -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_c384gdas +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_c384gdas +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_c384gdas Checking test 032 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1724,14 +1724,14 @@ Checking test 032 control_c384gdas 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.274603 - 0: The maximum resident set size (KB) = 1376056 + 0: The total amount of wall time = 455.965386 + 0: The maximum resident set size (KB) = 1372656 Test 032 control_c384gdas PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_stochy +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_stochy Checking test 033 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1742,28 +1742,28 @@ Checking test 033 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 87.619846 - 0: The maximum resident set size (KB) = 630748 + 0: The total amount of wall time = 88.729894 + 0: The maximum resident set size (KB) = 628040 Test 033 control_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_stochy_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_stochy_restart Checking test 034 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 48.757237 - 0: The maximum resident set size (KB) = 491044 + 0: The total amount of wall time = 48.898794 + 0: The maximum resident set size (KB) = 484508 Test 034 control_stochy_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_lndp -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_lndp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_lndp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_lndp Checking test 035 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1774,14 +1774,14 @@ Checking test 035 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 81.436482 - 0: The maximum resident set size (KB) = 619440 + 0: The total amount of wall time = 81.972383 + 0: The maximum resident set size (KB) = 627484 Test 035 control_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_iovr4 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_iovr4 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_iovr4 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_iovr4 Checking test 036 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1796,14 +1796,14 @@ Checking test 036 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.366704 - 0: The maximum resident set size (KB) = 627192 + 0: The total amount of wall time = 137.050149 + 0: The maximum resident set size (KB) = 629556 Test 036 control_iovr4 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_iovr5 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_iovr5 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_iovr5 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_iovr5 Checking test 037 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1818,14 +1818,14 @@ Checking test 037 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.807453 - 0: The maximum resident set size (KB) = 630608 + 0: The total amount of wall time = 136.558261 + 0: The maximum resident set size (KB) = 627816 Test 037 control_iovr5 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_p8 Checking test 038 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1872,14 +1872,14 @@ Checking test 038 control_p8 results .... Comparing 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.861049 - 0: The maximum resident set size (KB) = 1589680 + 0: The total amount of wall time = 173.479439 + 0: The maximum resident set size (KB) = 1594508 Test 038 control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_restart_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_restart_p8 Checking test 039 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1918,14 +1918,14 @@ Checking test 039 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 87.227506 - 0: The maximum resident set size (KB) = 862372 + 0: The total amount of wall time = 88.137317 + 0: The maximum resident set size (KB) = 875832 Test 039 control_restart_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_qr_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_qr_p8 Checking test 040 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1972,14 +1972,14 @@ Checking test 040 control_qr_p8 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.376711 - 0: The maximum resident set size (KB) = 1593612 + 0: The total amount of wall time = 171.445268 + 0: The maximum resident set size (KB) = 1599012 Test 040 control_qr_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_restart_qr_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_restart_qr_p8 Checking test 041 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2018,14 +2018,14 @@ Checking test 041 control_restart_qr_p8 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.472501 - 0: The maximum resident set size (KB) = 859124 + 0: The total amount of wall time = 91.661888 + 0: The maximum resident set size (KB) = 860636 Test 041 control_restart_qr_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_decomp_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_decomp_p8 Checking test 042 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2068,14 +2068,14 @@ Checking test 042 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 177.751023 - 0: The maximum resident set size (KB) = 1569164 + 0: The total amount of wall time = 179.111692 + 0: The maximum resident set size (KB) = 1560064 Test 042 control_decomp_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_2threads_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_2threads_p8 Checking test 043 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2118,14 +2118,14 @@ Checking test 043 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 161.494115 - 0: The maximum resident set size (KB) = 1658144 + 0: The total amount of wall time = 158.536148 + 0: The maximum resident set size (KB) = 1686604 Test 043 control_2threads_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_lndp -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_p8_lndp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8_lndp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_p8_lndp Checking test 044 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2144,14 +2144,14 @@ Checking test 044 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 316.334324 - 0: The maximum resident set size (KB) = 1592908 + 0: The total amount of wall time = 314.932134 + 0: The maximum resident set size (KB) = 1597452 Test 044 control_p8_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_p8_rrtmgp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_p8_rrtmgp Checking test 045 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2198,14 +2198,14 @@ Checking test 045 control_p8_rrtmgp results .... Comparing 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.549991 - 0: The maximum resident set size (KB) = 1658784 + 0: The total amount of wall time = 228.601613 + 0: The maximum resident set size (KB) = 1676452 Test 045 control_p8_rrtmgp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_mynn -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_p8_mynn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8_mynn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_p8_mynn Checking test 046 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2252,14 +2252,14 @@ Checking test 046 control_p8_mynn results .... Comparing 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.591899 - 0: The maximum resident set size (KB) = 1597172 + 0: The total amount of wall time = 172.338853 + 0: The maximum resident set size (KB) = 1599952 Test 046 control_p8_mynn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/merra2_thompson -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/merra2_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/merra2_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/merra2_thompson Checking test 047 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2306,14 +2306,14 @@ Checking test 047 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 193.997270 - 0: The maximum resident set size (KB) = 1601328 + 0: The total amount of wall time = 194.365716 + 0: The maximum resident set size (KB) = 1602052 Test 047 merra2_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/regional_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/regional_control Checking test 048 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2324,28 +2324,28 @@ Checking test 048 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 298.298418 - 0: The maximum resident set size (KB) = 864704 + 0: The total amount of wall time = 297.794181 + 0: The maximum resident set size (KB) = 869788 Test 048 regional_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/regional_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/regional_restart Checking test 049 regional_restart 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.673233 - 0: The maximum resident set size (KB) = 859896 + 0: The total amount of wall time = 152.590298 + 0: The maximum resident set size (KB) = 866248 Test 049 regional_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/regional_control_qr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/regional_control_qr Checking test 050 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2356,28 +2356,28 @@ Checking test 050 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 298.548434 - 0: The maximum resident set size (KB) = 868092 + 0: The total amount of wall time = 298.349111 + 0: The maximum resident set size (KB) = 863208 Test 050 regional_control_qr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/regional_restart_qr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/regional_restart_qr Checking test 051 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 151.565996 - 0: The maximum resident set size (KB) = 857592 + 0: The total amount of wall time = 152.789557 + 0: The maximum resident set size (KB) = 868904 Test 051 regional_restart_qr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/regional_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/regional_decomp Checking test 052 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2388,14 +2388,14 @@ Checking test 052 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 312.842080 - 0: The maximum resident set size (KB) = 856248 + 0: The total amount of wall time = 316.926464 + 0: The maximum resident set size (KB) = 849908 Test 052 regional_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/regional_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/regional_2threads Checking test 053 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2406,14 +2406,14 @@ Checking test 053 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 178.871543 - 0: The maximum resident set size (KB) = 846636 + 0: The total amount of wall time = 181.595347 + 0: The maximum resident set size (KB) = 846304 Test 053 regional_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_noquilt -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/regional_noquilt +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_noquilt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/regional_noquilt Checking test 054 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2421,28 +2421,28 @@ Checking test 054 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 319.013248 - 0: The maximum resident set size (KB) = 852916 + 0: The total amount of wall time = 321.636831 + 0: The maximum resident set size (KB) = 847176 Test 054 regional_noquilt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/regional_netcdf_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/regional_netcdf_parallel Checking test 055 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 294.682215 - 0: The maximum resident set size (KB) = 865484 + 0: The total amount of wall time = 294.302093 + 0: The maximum resident set size (KB) = 860652 Test 055 regional_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/regional_2dwrtdecomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/regional_2dwrtdecomp Checking test 056 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2453,14 +2453,14 @@ Checking test 056 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 299.267721 - 0: The maximum resident set size (KB) = 863724 + 0: The total amount of wall time = 298.162868 + 0: The maximum resident set size (KB) = 865912 Test 056 regional_2dwrtdecomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/fv3_regional_wofs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/regional_wofs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/fv3_regional_wofs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/regional_wofs Checking test 057 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2471,141 +2471,693 @@ Checking test 057 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 375.204879 - 0: The maximum resident set size (KB) = 628896 + 0: The total amount of wall time = 374.986784 + 0: The maximum resident set size (KB) = 632272 Test 057 regional_wofs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rap_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_control Checking test 058 rap_control results .... + Comparing sfcf000.nc ............MISSING baseline + Comparing sfcf021.nc ............MISSING baseline + Comparing sfcf024.nc ............MISSING baseline + Comparing atmf000.nc ............MISSING baseline + Comparing atmf021.nc ............MISSING baseline + Comparing atmf024.nc ............MISSING baseline + Comparing GFSFLX.GrbF00 ............MISSING baseline + Comparing GFSFLX.GrbF21 ............MISSING baseline + Comparing GFSFLX.GrbF24 ............MISSING baseline + Comparing GFSPRS.GrbF00 ............MISSING baseline + Comparing GFSPRS.GrbF21 ............MISSING baseline + Comparing GFSPRS.GrbF24 ............MISSING baseline + Comparing RESTART/20210323.060000.coupler.res ............MISSING baseline + Comparing RESTART/20210323.060000.fv_core.res.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............MISSING baseline + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............MISSING baseline + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............MISSING baseline + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............MISSING baseline + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............MISSING baseline + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............MISSING baseline + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............MISSING baseline + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............MISSING baseline + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............MISSING baseline + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............MISSING baseline + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............MISSING baseline + Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............MISSING baseline + Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............MISSING baseline + + 0: The total amount of wall time = 460.870467 + 0: The maximum resident set size (KB) = 1048092 + +Test 058 rap_control FAIL Tries: 2 + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_spp_sppt_shum_skeb +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/regional_spp_sppt_shum_skeb +Checking test 059 regional_spp_sppt_shum_skeb results .... + Comparing dynf000.nc ............MISSING baseline + Comparing dynf001.nc ............MISSING baseline + Comparing phyf000.nc ............MISSING baseline + Comparing phyf001.nc ............MISSING baseline + Comparing PRSLEV.GrbF00 ............MISSING baseline + Comparing PRSLEV.GrbF01 ............MISSING baseline + Comparing NATLEV.GrbF00 ............MISSING baseline + Comparing NATLEV.GrbF01 ............MISSING baseline + + 0: The total amount of wall time = 231.765169 + 0: The maximum resident set size (KB) = 1181664 + +Test 059 regional_spp_sppt_shum_skeb FAIL Tries: 2 + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_decomp +Checking test 060 rap_decomp results .... + Comparing sfcf000.nc ............MISSING baseline + Comparing sfcf021.nc ............MISSING baseline + Comparing sfcf024.nc ............MISSING baseline + Comparing atmf000.nc ............MISSING baseline + Comparing atmf021.nc ............MISSING baseline + Comparing atmf024.nc ............MISSING baseline + Comparing GFSFLX.GrbF00 ............MISSING baseline + Comparing GFSFLX.GrbF21 ............MISSING baseline + Comparing GFSFLX.GrbF24 ............MISSING baseline + Comparing GFSPRS.GrbF00 ............MISSING baseline + Comparing GFSPRS.GrbF21 ............MISSING baseline + Comparing GFSPRS.GrbF24 ............MISSING baseline + Comparing RESTART/20210323.060000.coupler.res ............MISSING baseline + Comparing RESTART/20210323.060000.fv_core.res.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............MISSING baseline + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............MISSING baseline + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............MISSING baseline + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............MISSING baseline + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............MISSING baseline + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............MISSING baseline + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............MISSING baseline + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............MISSING baseline + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............MISSING baseline + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............MISSING baseline + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............MISSING baseline + Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............MISSING baseline + Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............MISSING baseline + + 0: The total amount of wall time = 481.737377 + 0: The maximum resident set size (KB) = 992032 + +Test 060 rap_decomp FAIL Tries: 2 + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_2threads +Checking test 061 rap_2threads results .... + Comparing sfcf000.nc ............MISSING baseline + Comparing sfcf021.nc ............MISSING baseline + Comparing sfcf024.nc ............MISSING baseline + Comparing atmf000.nc ............MISSING baseline + Comparing atmf021.nc ............MISSING baseline + Comparing atmf024.nc ............MISSING baseline + Comparing GFSFLX.GrbF00 ............MISSING baseline + Comparing GFSFLX.GrbF21 ............MISSING baseline + Comparing GFSFLX.GrbF24 ............MISSING baseline + Comparing GFSPRS.GrbF00 ............MISSING baseline + Comparing GFSPRS.GrbF21 ............MISSING baseline + Comparing GFSPRS.GrbF24 ............MISSING baseline + Comparing RESTART/20210323.060000.coupler.res ............MISSING baseline + Comparing RESTART/20210323.060000.fv_core.res.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............MISSING baseline + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............MISSING baseline + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............MISSING baseline + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............MISSING baseline + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............MISSING baseline + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............MISSING baseline + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............MISSING baseline + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............MISSING baseline + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............MISSING baseline + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............MISSING baseline + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............MISSING baseline + Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............MISSING baseline + Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............MISSING baseline + + 0: The total amount of wall time = 437.879086 + 0: The maximum resident set size (KB) = 1101756 + +Test 061 rap_2threads FAIL Tries: 2 + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_sfcdiff +Checking test 063 rap_sfcdiff results .... + Comparing sfcf000.nc ............MISSING baseline + Comparing sfcf009.nc ............MISSING baseline + Comparing sfcf012.nc ............MISSING baseline + Comparing atmf000.nc ............MISSING baseline + Comparing atmf009.nc ............MISSING baseline + Comparing atmf012.nc ............MISSING baseline + Comparing GFSFLX.GrbF00 ............MISSING baseline + Comparing GFSFLX.GrbF09 ............MISSING baseline + Comparing GFSFLX.GrbF12 ............MISSING baseline + Comparing GFSPRS.GrbF00 ............MISSING baseline + Comparing GFSPRS.GrbF09 ............MISSING baseline + Comparing GFSPRS.GrbF12 ............MISSING baseline + Comparing RESTART/20210323.060000.coupler.res ............MISSING baseline + Comparing RESTART/20210323.060000.fv_core.res.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............MISSING baseline + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............MISSING baseline + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............MISSING baseline + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............MISSING baseline + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............MISSING baseline + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............MISSING baseline + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............MISSING baseline + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............MISSING baseline + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............MISSING baseline + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............MISSING baseline + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............MISSING baseline + Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............MISSING baseline + Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............MISSING baseline + + 0: The total amount of wall time = 460.389691 + 0: The maximum resident set size (KB) = 1045744 + +Test 063 rap_sfcdiff FAIL Tries: 2 + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_sfcdiff_decomp +Checking test 064 rap_sfcdiff_decomp results .... + Comparing sfcf000.nc ............MISSING baseline + Comparing sfcf009.nc ............MISSING baseline + Comparing sfcf012.nc ............MISSING baseline + Comparing atmf000.nc ............MISSING baseline + Comparing atmf009.nc ............MISSING baseline + Comparing atmf012.nc ............MISSING baseline + Comparing GFSFLX.GrbF00 ............MISSING baseline + Comparing GFSFLX.GrbF09 ............MISSING baseline + Comparing GFSFLX.GrbF12 ............MISSING baseline + Comparing GFSPRS.GrbF00 ............MISSING baseline + Comparing GFSPRS.GrbF09 ............MISSING baseline + Comparing GFSPRS.GrbF12 ............MISSING baseline + Comparing RESTART/20210323.060000.coupler.res ............MISSING baseline + Comparing RESTART/20210323.060000.fv_core.res.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............MISSING baseline + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............MISSING baseline + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............MISSING baseline + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............MISSING baseline + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............MISSING baseline + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............MISSING baseline + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............MISSING baseline + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............MISSING baseline + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............MISSING baseline + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............MISSING baseline + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............MISSING baseline + Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............MISSING baseline + Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............MISSING baseline + + 0: The total amount of wall time = 485.026699 + 0: The maximum resident set size (KB) = 997320 + +Test 064 rap_sfcdiff_decomp FAIL Tries: 2 + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/hrrr_control +Checking test 066 hrrr_control results .... + Comparing sfcf000.nc ............MISSING baseline + Comparing sfcf009.nc ............MISSING baseline + Comparing sfcf012.nc ............MISSING baseline + Comparing atmf000.nc ............MISSING baseline + Comparing atmf009.nc ............MISSING baseline + Comparing atmf012.nc ............MISSING baseline + Comparing GFSFLX.GrbF00 ............MISSING baseline + Comparing GFSFLX.GrbF09 ............MISSING baseline + Comparing GFSFLX.GrbF12 ............MISSING baseline + Comparing GFSPRS.GrbF00 ............MISSING baseline + Comparing GFSPRS.GrbF09 ............MISSING baseline + Comparing GFSPRS.GrbF12 ............MISSING baseline + Comparing RESTART/20210322.120000.coupler.res ............MISSING baseline + Comparing RESTART/20210322.120000.fv_core.res.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............MISSING baseline + Comparing RESTART/20210322.120000.phy_data.tile1.nc ............MISSING baseline + Comparing RESTART/20210322.120000.phy_data.tile2.nc ............MISSING baseline + Comparing RESTART/20210322.120000.phy_data.tile3.nc ............MISSING baseline + Comparing RESTART/20210322.120000.phy_data.tile4.nc ............MISSING baseline + Comparing RESTART/20210322.120000.phy_data.tile5.nc ............MISSING baseline + Comparing RESTART/20210322.120000.phy_data.tile6.nc ............MISSING baseline + Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............MISSING baseline + Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............MISSING baseline + Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............MISSING baseline + Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............MISSING baseline + Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............MISSING baseline + Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............MISSING baseline + + 0: The total amount of wall time = 428.426870 + 0: The maximum resident set size (KB) = 1045188 + +Test 066 hrrr_control FAIL Tries: 2 + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/hrrr_control_decomp +Checking test 067 hrrr_control_decomp results .... + Comparing sfcf000.nc ............MISSING baseline + Comparing sfcf009.nc ............MISSING baseline + Comparing sfcf012.nc ............MISSING baseline + Comparing atmf000.nc ............MISSING baseline + Comparing atmf009.nc ............MISSING baseline + Comparing atmf012.nc ............MISSING baseline + Comparing GFSFLX.GrbF00 ............MISSING baseline + Comparing GFSFLX.GrbF09 ............MISSING baseline + Comparing GFSFLX.GrbF12 ............MISSING baseline + Comparing GFSPRS.GrbF00 ............MISSING baseline + Comparing GFSPRS.GrbF09 ............MISSING baseline + Comparing GFSPRS.GrbF12 ............MISSING baseline + Comparing RESTART/20210322.120000.coupler.res ............MISSING baseline + Comparing RESTART/20210322.120000.fv_core.res.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............MISSING baseline + Comparing RESTART/20210322.120000.phy_data.tile1.nc ............MISSING baseline + Comparing RESTART/20210322.120000.phy_data.tile2.nc ............MISSING baseline + Comparing RESTART/20210322.120000.phy_data.tile3.nc ............MISSING baseline + Comparing RESTART/20210322.120000.phy_data.tile4.nc ............MISSING baseline + Comparing RESTART/20210322.120000.phy_data.tile5.nc ............MISSING baseline + Comparing RESTART/20210322.120000.phy_data.tile6.nc ............MISSING baseline + Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............MISSING baseline + Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............MISSING baseline + Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............MISSING baseline + Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............MISSING baseline + Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............MISSING baseline + Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............MISSING baseline + + 0: The total amount of wall time = 448.792812 + 0: The maximum resident set size (KB) = 998780 + +Test 067 hrrr_control_decomp FAIL Tries: 2 + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/hrrr_control_2threads +Checking test 068 hrrr_control_2threads results .... + Comparing sfcf000.nc ............MISSING baseline + Comparing sfcf009.nc ............MISSING baseline + Comparing sfcf012.nc ............MISSING baseline + Comparing atmf000.nc ............MISSING baseline + Comparing atmf009.nc ............MISSING baseline + Comparing atmf012.nc ............MISSING baseline + Comparing GFSFLX.GrbF00 ............MISSING baseline + Comparing GFSFLX.GrbF09 ............MISSING baseline + Comparing GFSFLX.GrbF12 ............MISSING baseline + Comparing GFSPRS.GrbF00 ............MISSING baseline + Comparing GFSPRS.GrbF09 ............MISSING baseline + Comparing GFSPRS.GrbF12 ............MISSING baseline + Comparing RESTART/20210322.120000.coupler.res ............MISSING baseline + Comparing RESTART/20210322.120000.fv_core.res.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............MISSING baseline + Comparing RESTART/20210322.120000.phy_data.tile1.nc ............MISSING baseline + Comparing RESTART/20210322.120000.phy_data.tile2.nc ............MISSING baseline + Comparing RESTART/20210322.120000.phy_data.tile3.nc ............MISSING baseline + Comparing RESTART/20210322.120000.phy_data.tile4.nc ............MISSING baseline + Comparing RESTART/20210322.120000.phy_data.tile5.nc ............MISSING baseline + Comparing RESTART/20210322.120000.phy_data.tile6.nc ............MISSING baseline + Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............MISSING baseline + Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............MISSING baseline + Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............MISSING baseline + Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............MISSING baseline + Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............MISSING baseline + Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............MISSING baseline + + 0: The total amount of wall time = 395.896439 + 0: The maximum resident set size (KB) = 1076848 + +Test 068 hrrr_control_2threads FAIL Tries: 2 + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rrfs_v1beta +Checking test 070 rrfs_v1beta results .... + Comparing sfcf000.nc ............MISSING baseline + Comparing sfcf009.nc ............MISSING baseline + Comparing sfcf012.nc ............MISSING baseline + Comparing atmf000.nc ............MISSING baseline + Comparing atmf009.nc ............MISSING baseline + Comparing atmf012.nc ............MISSING baseline + Comparing GFSFLX.GrbF00 ............MISSING baseline + Comparing GFSFLX.GrbF09 ............MISSING baseline + Comparing GFSFLX.GrbF12 ............MISSING baseline + Comparing GFSPRS.GrbF00 ............MISSING baseline + Comparing GFSPRS.GrbF09 ............MISSING baseline + Comparing GFSPRS.GrbF12 ............MISSING baseline + Comparing RESTART/20210323.060000.coupler.res ............MISSING baseline + Comparing RESTART/20210323.060000.fv_core.res.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............MISSING baseline + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............MISSING baseline + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............MISSING baseline + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............MISSING baseline + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............MISSING baseline + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............MISSING baseline + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............MISSING baseline + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............MISSING baseline + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............MISSING baseline + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............MISSING baseline + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............MISSING baseline + Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............MISSING baseline + Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............MISSING baseline + + 0: The total amount of wall time = 457.112711 + 0: The maximum resident set size (KB) = 1049104 + +Test 070 rrfs_v1beta FAIL Tries: 2 + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_v1nssl +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rrfs_v1nssl +Checking test 071 rrfs_v1nssl results .... + Comparing sfcf000.nc ............MISSING baseline + Comparing sfcf009.nc ............MISSING baseline + Comparing sfcf012.nc ............MISSING baseline + Comparing atmf000.nc ............MISSING baseline + Comparing atmf009.nc ............MISSING baseline + Comparing atmf012.nc ............MISSING baseline + Comparing GFSFLX.GrbF00 ............MISSING baseline + Comparing GFSFLX.GrbF09 ............MISSING baseline + Comparing GFSFLX.GrbF12 ............MISSING baseline + Comparing GFSPRS.GrbF00 ............MISSING baseline + Comparing GFSPRS.GrbF09 ............MISSING baseline + Comparing GFSPRS.GrbF12 ............MISSING baseline + + 0: The total amount of wall time = 536.557757 + 0: The maximum resident set size (KB) = 665360 + +Test 071 rrfs_v1nssl FAIL Tries: 2 + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rrfs_v1nssl_nohailnoccn +Checking test 072 rrfs_v1nssl_nohailnoccn results .... + Comparing sfcf000.nc ............MISSING baseline + Comparing sfcf009.nc ............MISSING baseline + Comparing sfcf012.nc ............MISSING baseline + Comparing atmf000.nc ............MISSING baseline + Comparing atmf009.nc ............MISSING baseline + Comparing atmf012.nc ............MISSING baseline + Comparing GFSFLX.GrbF00 ............MISSING baseline + Comparing GFSFLX.GrbF09 ............MISSING baseline + Comparing GFSFLX.GrbF12 ............MISSING baseline + Comparing GFSPRS.GrbF00 ............MISSING baseline + Comparing GFSPRS.GrbF09 ............MISSING baseline + Comparing GFSPRS.GrbF12 ............MISSING baseline + + 0: The total amount of wall time = 522.726999 + 0: The maximum resident set size (KB) = 752812 + +Test 072 rrfs_v1nssl_nohailnoccn FAIL Tries: 2 + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rrfs_smoke_conus13km_hrrr_warm +Checking test 073 rrfs_smoke_conus13km_hrrr_warm results .... + Comparing sfcf000.nc ............MISSING baseline + Comparing sfcf001.nc ............MISSING baseline + Comparing sfcf002.nc ............MISSING baseline + Comparing atmf000.nc ............MISSING baseline + Comparing atmf001.nc ............MISSING baseline + Comparing atmf002.nc ............MISSING baseline + + 0: The total amount of wall time = 152.138144 + 0: The maximum resident set size (KB) = 1031220 + +Test 073 rrfs_smoke_conus13km_hrrr_warm FAIL Tries: 2 + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rrfs_smoke_conus13km_hrrr_warm_2threads +Checking test 074 rrfs_smoke_conus13km_hrrr_warm_2threads results .... + Comparing sfcf000.nc ............MISSING baseline + Comparing sfcf001.nc ............MISSING baseline + Comparing sfcf002.nc ............MISSING baseline + Comparing atmf000.nc ............MISSING baseline + Comparing atmf001.nc ............MISSING baseline + Comparing atmf002.nc ............MISSING baseline + + 0: The total amount of wall time = 92.747663 + 0: The maximum resident set size (KB) = 942036 + +Test 074 rrfs_smoke_conus13km_hrrr_warm_2threads FAIL Tries: 2 + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rrfs_conus13km_hrrr_warm +Checking test 075 rrfs_conus13km_hrrr_warm results .... + Comparing sfcf000.nc ............MISSING baseline + Comparing sfcf001.nc ............MISSING baseline + Comparing sfcf002.nc ............MISSING baseline + Comparing atmf000.nc ............MISSING baseline + Comparing atmf001.nc ............MISSING baseline + Comparing atmf002.nc ............MISSING baseline + + 0: The total amount of wall time = 133.503022 + 0: The maximum resident set size (KB) = 979936 + +Test 075 rrfs_conus13km_hrrr_warm FAIL Tries: 2 + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rrfs_smoke_conus13km_radar_tten_warm +Checking test 076 rrfs_smoke_conus13km_radar_tten_warm results .... + Comparing sfcf000.nc ............MISSING baseline + Comparing sfcf001.nc ............MISSING baseline + Comparing sfcf002.nc ............MISSING baseline + Comparing atmf000.nc ............MISSING baseline + Comparing atmf001.nc ............MISSING baseline + Comparing atmf002.nc ............MISSING baseline + + 0: The total amount of wall time = 152.491705 + 0: The maximum resident set size (KB) = 1030160 + +Test 076 rrfs_smoke_conus13km_radar_tten_warm FAIL Tries: 2 + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_csawmg +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_csawmg +Checking test 078 control_csawmg results .... Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 459.901336 - 0: The maximum resident set size (KB) = 1058020 + 0: The total amount of wall time = 345.949024 + 0: The maximum resident set size (KB) = 725720 -Test 058 rap_control PASS +Test 078 control_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_spp_sppt_shum_skeb -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/regional_spp_sppt_shum_skeb -Checking test 059 regional_spp_sppt_shum_skeb results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF01 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF01 .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_csawmgt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_csawmgt +Checking test 079 control_csawmgt results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 236.409291 - 0: The maximum resident set size (KB) = 1176844 + 0: The total amount of wall time = 342.203356 + 0: The maximum resident set size (KB) = 708328 -Test 059 regional_spp_sppt_shum_skeb PASS +Test 079 control_csawmgt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rap_decomp -Checking test 060 rap_decomp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_ras +Checking test 080 control_ras results .... Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 480.693671 - 0: The maximum resident set size (KB) = 997864 + 0: The total amount of wall time = 181.424626 + 0: The maximum resident set size (KB) = 714792 -Test 060 rap_decomp PASS +Test 080 control_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rap_2threads -Checking test 061 rap_2threads results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_wam +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_wam +Checking test 081 control_wam results .... + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK + + 0: The total amount of wall time = 111.942145 + 0: The maximum resident set size (KB) = 641360 + +Test 081 control_wam PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_p8_faster +Checking test 082 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2651,1113 +3203,1920 @@ Checking test 061 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 434.737426 - 0: The maximum resident set size (KB) = 1138280 + 0: The total amount of wall time = 156.092600 + 0: The maximum resident set size (KB) = 1590712 -Test 061 rap_2threads PASS +Test 082 control_p8_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rap_restart -Checking test 062 rap_restart results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/regional_control_faster +Checking test 083 regional_control_faster results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 232.553469 - 0: The maximum resident set size (KB) = 963572 + 0: The total amount of wall time = 272.551503 + 0: The maximum resident set size (KB) = 866296 -Test 062 rap_restart PASS +Test 083 regional_control_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rap_sfcdiff -Checking test 063 rap_sfcdiff results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rrfs_smoke_conus13km_hrrr_warm_debug +Checking test 084 rrfs_smoke_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc ............MISSING baseline + Comparing sfcf001.nc ............MISSING baseline + Comparing atmf000.nc ............MISSING baseline + Comparing atmf001.nc ............MISSING baseline - 0: The total amount of wall time = 459.365325 - 0: The maximum resident set size (KB) = 1059128 + 0: The total amount of wall time = 832.711387 + 0: The maximum resident set size (KB) = 1056876 -Test 063 rap_sfcdiff PASS +Test 084 rrfs_smoke_conus13km_hrrr_warm_debug FAIL Tries: 2 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rap_sfcdiff_decomp -Checking test 064 rap_sfcdiff_decomp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +Checking test 085 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... + Comparing sfcf000.nc ............MISSING baseline + Comparing sfcf001.nc ............MISSING baseline + Comparing atmf000.nc ............MISSING baseline + Comparing atmf001.nc ............MISSING baseline - 0: The total amount of wall time = 485.636585 - 0: The maximum resident set size (KB) = 967740 + 0: The total amount of wall time = 465.208216 + 0: The maximum resident set size (KB) = 967464 -Test 064 rap_sfcdiff_decomp PASS +Test 085 rrfs_smoke_conus13km_hrrr_warm_debug_2threads FAIL Tries: 2 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rap_sfcdiff_restart -Checking test 065 rap_sfcdiff_restart results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rrfs_conus13km_hrrr_warm_debug +Checking test 086 rrfs_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc ............MISSING baseline + Comparing sfcf001.nc ............MISSING baseline + Comparing atmf000.nc ............MISSING baseline + Comparing atmf001.nc ............MISSING baseline - 0: The total amount of wall time = 344.468160 - 0: The maximum resident set size (KB) = 984276 + 0: The total amount of wall time = 745.046241 + 0: The maximum resident set size (KB) = 1013404 -Test 065 rap_sfcdiff_restart PASS +Test 086 rrfs_conus13km_hrrr_warm_debug FAIL Tries: 2 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hrrr_control -Checking test 066 hrrr_control 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 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_CubedSphereGrid_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_CubedSphereGrid_debug +Checking test 087 control_CubedSphereGrid_debug results .... + Comparing sfcf000.tile1.nc ............MISSING baseline + Comparing sfcf000.tile2.nc ............MISSING baseline + Comparing sfcf000.tile3.nc ............MISSING baseline + Comparing sfcf000.tile4.nc ............MISSING baseline + Comparing sfcf000.tile5.nc ............MISSING baseline + Comparing sfcf000.tile6.nc ............MISSING baseline + Comparing sfcf001.tile1.nc ............MISSING baseline + Comparing sfcf001.tile2.nc ............MISSING baseline + Comparing sfcf001.tile3.nc ............MISSING baseline + Comparing sfcf001.tile4.nc ............MISSING baseline + Comparing sfcf001.tile5.nc ............MISSING baseline + Comparing sfcf001.tile6.nc ............MISSING baseline + Comparing atmf000.tile1.nc ............MISSING baseline + Comparing atmf000.tile2.nc ............MISSING baseline + Comparing atmf000.tile3.nc ............MISSING baseline + Comparing atmf000.tile4.nc ............MISSING baseline + Comparing atmf000.tile5.nc ............MISSING baseline + Comparing atmf000.tile6.nc ............MISSING baseline + Comparing atmf001.tile1.nc ............MISSING baseline + Comparing atmf001.tile2.nc ............MISSING baseline + Comparing atmf001.tile3.nc ............MISSING baseline + Comparing atmf001.tile4.nc ............MISSING baseline + Comparing atmf001.tile5.nc ............MISSING baseline + Comparing atmf001.tile6.nc ............MISSING baseline + + 0: The total amount of wall time = 150.078971 + 0: The maximum resident set size (KB) = 763448 + +Test 087 control_CubedSphereGrid_debug FAIL Tries: 2 + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_wrtGauss_netcdf_parallel_debug +Checking test 088 control_wrtGauss_netcdf_parallel_debug results .... + Comparing sfcf000.nc ............MISSING baseline + Comparing sfcf001.nc ............MISSING baseline + Comparing atmf000.nc ............MISSING baseline + Comparing atmf001.nc ............MISSING baseline - 0: The total amount of wall time = 430.284503 - 0: The maximum resident set size (KB) = 1048308 + 0: The total amount of wall time = 145.638031 + 0: The maximum resident set size (KB) = 786808 -Test 066 hrrr_control PASS +Test 088 control_wrtGauss_netcdf_parallel_debug FAIL Tries: 2 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hrrr_control_decomp -Checking test 067 hrrr_control_decomp 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 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_stochy_debug +Checking test 089 control_stochy_debug results .... + Comparing sfcf000.nc ............MISSING baseline + Comparing sfcf001.nc ............MISSING baseline + Comparing atmf000.nc ............MISSING baseline + Comparing atmf001.nc ............MISSING baseline - 0: The total amount of wall time = 446.816368 - 0: The maximum resident set size (KB) = 994000 + 0: The total amount of wall time = 165.102886 + 0: The maximum resident set size (KB) = 794524 -Test 067 hrrr_control_decomp PASS +Test 089 control_stochy_debug FAIL Tries: 2 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hrrr_control_2threads -Checking test 068 hrrr_control_2threads 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 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_lndp_debug +Checking test 090 control_lndp_debug results .... + Comparing sfcf000.nc ............MISSING baseline + Comparing sfcf001.nc ............MISSING baseline + Comparing atmf000.nc ............MISSING baseline + Comparing atmf001.nc ............MISSING baseline + + 0: The total amount of wall time = 146.621086 + 0: The maximum resident set size (KB) = 790080 + +Test 090 control_lndp_debug FAIL Tries: 2 + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_csawmg_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_csawmg_debug +Checking test 091 control_csawmg_debug results .... + Comparing sfcf000.nc ............MISSING baseline + Comparing sfcf001.nc ............MISSING baseline + Comparing atmf000.nc ............MISSING baseline + Comparing atmf001.nc ............MISSING baseline + + 0: The total amount of wall time = 223.535451 + 0: The maximum resident set size (KB) = 838036 + +Test 091 control_csawmg_debug FAIL Tries: 2 + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_csawmgt_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_csawmgt_debug +Checking test 092 control_csawmgt_debug results .... + Comparing sfcf000.nc ............MISSING baseline + Comparing sfcf001.nc ............MISSING baseline + Comparing atmf000.nc ............MISSING baseline + Comparing atmf001.nc ............MISSING baseline + + 0: The total amount of wall time = 224.238890 + 0: The maximum resident set size (KB) = 839484 + +Test 092 control_csawmgt_debug FAIL Tries: 2 + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_ras_debug +Checking test 093 control_ras_debug results .... + Comparing sfcf000.nc ............MISSING baseline + Comparing sfcf001.nc ............MISSING baseline + Comparing atmf000.nc ............MISSING baseline + Comparing atmf001.nc ............MISSING baseline + + 0: The total amount of wall time = 148.821949 + 0: The maximum resident set size (KB) = 797996 + +Test 093 control_ras_debug FAIL Tries: 2 + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_diag_debug +Checking test 094 control_diag_debug results .... + Comparing sfcf000.nc ............MISSING baseline + Comparing sfcf001.nc ............MISSING baseline + Comparing atmf000.nc ............MISSING baseline + Comparing atmf001.nc ............MISSING baseline + + 0: The total amount of wall time = 154.304266 + 0: The maximum resident set size (KB) = 846092 + +Test 094 control_diag_debug FAIL Tries: 2 + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_debug_p8 +Checking test 095 control_debug_p8 results .... + Comparing sfcf000.nc ............MISSING baseline + Comparing sfcf001.nc ............MISSING baseline + Comparing atmf000.nc ............MISSING baseline + Comparing atmf001.nc ............MISSING baseline + + 0: The total amount of wall time = 161.708863 + 0: The maximum resident set size (KB) = 1610228 + +Test 095 control_debug_p8 FAIL Tries: 2 + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/regional_debug +Checking test 096 regional_debug results .... + Comparing dynf000.nc ............MISSING baseline + Comparing dynf001.nc ............MISSING baseline + Comparing phyf000.nc ............MISSING baseline + Comparing phyf001.nc ............MISSING baseline + + 0: The total amount of wall time = 980.782012 + 0: The maximum resident set size (KB) = 876904 + +Test 096 regional_debug FAIL Tries: 2 + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_control_debug +Checking test 097 rap_control_debug results .... + Comparing sfcf000.nc ............MISSING baseline + Comparing sfcf001.nc ............MISSING baseline + Comparing atmf000.nc ............MISSING baseline + Comparing atmf001.nc ............MISSING baseline + + 0: The total amount of wall time = 273.890726 + 0: The maximum resident set size (KB) = 1163616 + +Test 097 rap_control_debug FAIL Tries: 2 + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/hrrr_control_debug +Checking test 098 hrrr_control_debug results .... + Comparing sfcf000.nc ............MISSING baseline + Comparing sfcf001.nc ............MISSING baseline + Comparing atmf000.nc ............MISSING baseline + Comparing atmf001.nc ............MISSING baseline + + 0: The total amount of wall time = 264.999828 + 0: The maximum resident set size (KB) = 1163356 + +Test 098 hrrr_control_debug FAIL Tries: 2 + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_unified_drag_suite_debug +Checking test 099 rap_unified_drag_suite_debug results .... + Comparing sfcf000.nc ............MISSING baseline + Comparing sfcf001.nc ............MISSING baseline + Comparing atmf000.nc ............MISSING baseline + Comparing atmf001.nc ............MISSING baseline + + 0: The total amount of wall time = 271.532738 + 0: The maximum resident set size (KB) = 1168140 + +Test 099 rap_unified_drag_suite_debug FAIL Tries: 2 + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_diag_debug +Checking test 100 rap_diag_debug results .... + Comparing sfcf000.nc ............MISSING baseline + Comparing sfcf001.nc ............MISSING baseline + Comparing atmf000.nc ............MISSING baseline + Comparing atmf001.nc ............MISSING baseline + + 0: The total amount of wall time = 287.003819 + 0: The maximum resident set size (KB) = 1254120 + +Test 100 rap_diag_debug FAIL Tries: 2 + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_cires_ugwp_debug +Checking test 101 rap_cires_ugwp_debug results .... + Comparing sfcf000.nc ............MISSING baseline + Comparing sfcf001.nc ............MISSING baseline + Comparing atmf000.nc ............MISSING baseline + Comparing atmf001.nc ............MISSING baseline + + 0: The total amount of wall time = 276.081259 + 0: The maximum resident set size (KB) = 1157092 + +Test 101 rap_cires_ugwp_debug FAIL Tries: 2 + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_unified_ugwp_debug +Checking test 102 rap_unified_ugwp_debug results .... + Comparing sfcf000.nc ............MISSING baseline + Comparing sfcf001.nc ............MISSING baseline + Comparing atmf000.nc ............MISSING baseline + Comparing atmf001.nc ............MISSING baseline + + 0: The total amount of wall time = 277.518716 + 0: The maximum resident set size (KB) = 1174452 + +Test 102 rap_unified_ugwp_debug FAIL Tries: 2 + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_lndp_debug +Checking test 103 rap_lndp_debug results .... + Comparing sfcf000.nc ............MISSING baseline + Comparing sfcf001.nc ............MISSING baseline + Comparing atmf000.nc ............MISSING baseline + Comparing atmf001.nc ............MISSING baseline + + 0: The total amount of wall time = 275.802324 + 0: The maximum resident set size (KB) = 1166704 + +Test 103 rap_lndp_debug FAIL Tries: 2 + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_progcld_thompson_debug +Checking test 104 rap_progcld_thompson_debug results .... + Comparing sfcf000.nc ............MISSING baseline + Comparing sfcf001.nc ............MISSING baseline + Comparing atmf000.nc ............MISSING baseline + Comparing atmf001.nc ............MISSING baseline + + 0: The total amount of wall time = 269.962379 + 0: The maximum resident set size (KB) = 1136576 + +Test 104 rap_progcld_thompson_debug FAIL Tries: 2 + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_noah_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_noah_debug +Checking test 105 rap_noah_debug results .... + Comparing sfcf000.nc ............MISSING baseline + Comparing sfcf001.nc ............MISSING baseline + Comparing atmf000.nc ............MISSING baseline + Comparing atmf001.nc ............MISSING baseline + + 0: The total amount of wall time = 265.084765 + 0: The maximum resident set size (KB) = 1164764 + +Test 105 rap_noah_debug FAIL Tries: 2 + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_sfcdiff_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_sfcdiff_debug +Checking test 106 rap_sfcdiff_debug results .... + Comparing sfcf000.nc ............MISSING baseline + Comparing sfcf001.nc ............MISSING baseline + Comparing atmf000.nc ............MISSING baseline + Comparing atmf001.nc ............MISSING baseline + + 0: The total amount of wall time = 271.177082 + 0: The maximum resident set size (KB) = 1157700 + +Test 106 rap_sfcdiff_debug FAIL Tries: 2 + - 0: The total amount of wall time = 396.814767 - 0: The maximum resident set size (KB) = 1069532 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 107 rap_noah_sfcdiff_cires_ugwp_debug results .... + Comparing sfcf000.nc ............MISSING baseline + Comparing sfcf001.nc ............MISSING baseline + Comparing atmf000.nc ............MISSING baseline + Comparing atmf001.nc ............MISSING baseline -Test 068 hrrr_control_2threads PASS + 0: The total amount of wall time = 456.268386 + 0: The maximum resident set size (KB) = 1168632 +Test 107 rap_noah_sfcdiff_cires_ugwp_debug FAIL Tries: 2 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hrrr_control_restart -Checking test 069 hrrr_control_restart results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 318.785043 - 0: The maximum resident set size (KB) = 972980 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rrfs_v1beta_debug +Checking test 108 rrfs_v1beta_debug results .... + Comparing sfcf000.nc ............MISSING baseline + Comparing sfcf001.nc ............MISSING baseline + Comparing atmf000.nc ............MISSING baseline + Comparing atmf001.nc ............MISSING baseline -Test 069 hrrr_control_restart PASS + 0: The total amount of wall time = 265.976428 + 0: The maximum resident set size (KB) = 1162316 +Test 108 rrfs_v1beta_debug FAIL Tries: 2 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rrfs_v1beta -Checking test 070 rrfs_v1beta results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 460.236135 - 0: The maximum resident set size (KB) = 1051204 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_clm_lake_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_clm_lake_debug +Checking test 109 rap_clm_lake_debug results .... + Comparing sfcf000.nc ............MISSING baseline + Comparing sfcf001.nc ............MISSING baseline + Comparing atmf000.nc ............MISSING baseline + Comparing atmf001.nc ............MISSING baseline -Test 070 rrfs_v1beta PASS + 0: The total amount of wall time = 326.041910 + 0: The maximum resident set size (KB) = 1171816 +Test 109 rap_clm_lake_debug FAIL Tries: 2 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1nssl -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rrfs_v1nssl -Checking test 071 rrfs_v1nssl results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 541.354527 - 0: The maximum resident set size (KB) = 687248 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_flake_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_flake_debug +Checking test 110 rap_flake_debug results .... + Comparing sfcf000.nc ............MISSING baseline + Comparing sfcf001.nc ............MISSING baseline + Comparing atmf000.nc ............MISSING baseline + Comparing atmf001.nc ............MISSING baseline -Test 071 rrfs_v1nssl PASS + 0: The total amount of wall time = 271.298331 + 0: The maximum resident set size (KB) = 1167068 +Test 110 rap_flake_debug FAIL Tries: 2 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rrfs_v1nssl_nohailnoccn -Checking test 072 rrfs_v1nssl_nohailnoccn results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 525.662132 - 0: The maximum resident set size (KB) = 749976 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_wam_debug +Checking test 111 control_wam_debug results .... + Comparing sfcf019.nc ............MISSING baseline + Comparing atmf019.nc ............MISSING baseline -Test 072 rrfs_v1nssl_nohailnoccn PASS + 0: The total amount of wall time = 268.602090 + 0: The maximum resident set size (KB) = 519324 +Test 111 control_wam_debug FAIL Tries: 2 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rrfs_smoke_conus13km_hrrr_warm -Checking test 073 rrfs_smoke_conus13km_hrrr_warm 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 - 0: The total amount of wall time = 151.071250 - 0: The maximum resident set size (KB) = 1023100 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 112 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... + Comparing dynf000.nc ............MISSING baseline + Comparing dynf001.nc ............MISSING baseline + Comparing phyf000.nc ............MISSING baseline + Comparing phyf001.nc ............MISSING baseline + Comparing PRSLEV.GrbF00 ............MISSING baseline + Comparing PRSLEV.GrbF01 ............MISSING baseline + Comparing NATLEV.GrbF00 ............MISSING baseline + Comparing NATLEV.GrbF01 ............MISSING baseline -Test 073 rrfs_smoke_conus13km_hrrr_warm PASS + 0: The total amount of wall time = 220.599977 + 0: The maximum resident set size (KB) = 1079000 +Test 112 regional_spp_sppt_shum_skeb_dyn32_phy32 FAIL Tries: 2 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rrfs_smoke_conus13km_hrrr_warm_2threads -Checking test 074 rrfs_smoke_conus13km_hrrr_warm_2threads 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 - 0: The total amount of wall time = 90.746776 - 0: The maximum resident set size (KB) = 940984 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_control_dyn32_phy32 +Checking test 113 rap_control_dyn32_phy32 results .... + Comparing sfcf000.nc ............MISSING baseline + Comparing sfcf009.nc ............MISSING baseline + Comparing sfcf012.nc ............MISSING baseline + Comparing atmf000.nc ............MISSING baseline + Comparing atmf009.nc ............MISSING baseline + Comparing atmf012.nc ............MISSING baseline + Comparing GFSFLX.GrbF00 ............MISSING baseline + Comparing GFSFLX.GrbF09 ............MISSING baseline + Comparing GFSFLX.GrbF12 ............MISSING baseline + Comparing GFSPRS.GrbF00 ............MISSING baseline + Comparing GFSPRS.GrbF09 ............MISSING baseline + Comparing GFSPRS.GrbF12 ............MISSING baseline + Comparing RESTART/20210323.060000.coupler.res ............MISSING baseline + Comparing RESTART/20210323.060000.fv_core.res.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............MISSING baseline + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............MISSING baseline + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............MISSING baseline + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............MISSING baseline + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............MISSING baseline + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............MISSING baseline + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............MISSING baseline + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............MISSING baseline + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............MISSING baseline + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............MISSING baseline + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............MISSING baseline + Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............MISSING baseline + Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............MISSING baseline + + 0: The total amount of wall time = 382.479354 + 0: The maximum resident set size (KB) = 994612 + +Test 113 rap_control_dyn32_phy32 FAIL Tries: 2 + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/hrrr_control_dyn32_phy32 +Checking test 114 hrrr_control_dyn32_phy32 results .... + Comparing sfcf000.nc ............MISSING baseline + Comparing sfcf009.nc ............MISSING baseline + Comparing sfcf012.nc ............MISSING baseline + Comparing atmf000.nc ............MISSING baseline + Comparing atmf009.nc ............MISSING baseline + Comparing atmf012.nc ............MISSING baseline + Comparing GFSFLX.GrbF00 ............MISSING baseline + Comparing GFSFLX.GrbF09 ............MISSING baseline + Comparing GFSFLX.GrbF12 ............MISSING baseline + Comparing GFSPRS.GrbF00 ............MISSING baseline + Comparing GFSPRS.GrbF09 ............MISSING baseline + Comparing GFSPRS.GrbF12 ............MISSING baseline + Comparing RESTART/20210322.120000.coupler.res ............MISSING baseline + Comparing RESTART/20210322.120000.fv_core.res.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............MISSING baseline + Comparing RESTART/20210322.120000.phy_data.tile1.nc ............MISSING baseline + Comparing RESTART/20210322.120000.phy_data.tile2.nc ............MISSING baseline + Comparing RESTART/20210322.120000.phy_data.tile3.nc ............MISSING baseline + Comparing RESTART/20210322.120000.phy_data.tile4.nc ............MISSING baseline + Comparing RESTART/20210322.120000.phy_data.tile5.nc ............MISSING baseline + Comparing RESTART/20210322.120000.phy_data.tile6.nc ............MISSING baseline + Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............MISSING baseline + Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............MISSING baseline + Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............MISSING baseline + Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............MISSING baseline + Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............MISSING baseline + Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............MISSING baseline + + 0: The total amount of wall time = 191.526185 + 0: The maximum resident set size (KB) = 950824 + +Test 114 hrrr_control_dyn32_phy32 FAIL Tries: 2 + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_2threads_dyn32_phy32 +Checking test 115 rap_2threads_dyn32_phy32 results .... + Comparing sfcf000.nc ............MISSING baseline + Comparing sfcf009.nc ............MISSING baseline + Comparing sfcf012.nc ............MISSING baseline + Comparing atmf000.nc ............MISSING baseline + Comparing atmf009.nc ............MISSING baseline + Comparing atmf012.nc ............MISSING baseline + Comparing GFSFLX.GrbF00 ............MISSING baseline + Comparing GFSFLX.GrbF09 ............MISSING baseline + Comparing GFSFLX.GrbF12 ............MISSING baseline + Comparing GFSPRS.GrbF00 ............MISSING baseline + Comparing GFSPRS.GrbF09 ............MISSING baseline + Comparing GFSPRS.GrbF12 ............MISSING baseline + Comparing RESTART/20210323.060000.coupler.res ............MISSING baseline + Comparing RESTART/20210323.060000.fv_core.res.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............MISSING baseline + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............MISSING baseline + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............MISSING baseline + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............MISSING baseline + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............MISSING baseline + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............MISSING baseline + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............MISSING baseline + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............MISSING baseline + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............MISSING baseline + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............MISSING baseline + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............MISSING baseline + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............MISSING baseline + Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............MISSING baseline + Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............MISSING baseline + + 0: The total amount of wall time = 372.641579 + 0: The maximum resident set size (KB) = 981160 + +Test 115 rap_2threads_dyn32_phy32 FAIL Tries: 2 + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/hrrr_control_2threads_dyn32_phy32 +Checking test 116 hrrr_control_2threads_dyn32_phy32 results .... + Comparing sfcf000.nc ............MISSING baseline + Comparing sfcf009.nc ............MISSING baseline + Comparing sfcf012.nc ............MISSING baseline + Comparing atmf000.nc ............MISSING baseline + Comparing atmf009.nc ............MISSING baseline + Comparing atmf012.nc ............MISSING baseline + Comparing GFSFLX.GrbF00 ............MISSING baseline + Comparing GFSFLX.GrbF09 ............MISSING baseline + Comparing GFSFLX.GrbF12 ............MISSING baseline + Comparing GFSPRS.GrbF00 ............MISSING baseline + Comparing GFSPRS.GrbF09 ............MISSING baseline + Comparing GFSPRS.GrbF12 ............MISSING baseline + Comparing RESTART/20210322.120000.coupler.res ............MISSING baseline + Comparing RESTART/20210322.120000.fv_core.res.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............MISSING baseline + Comparing RESTART/20210322.120000.phy_data.tile1.nc ............MISSING baseline + Comparing RESTART/20210322.120000.phy_data.tile2.nc ............MISSING baseline + Comparing RESTART/20210322.120000.phy_data.tile3.nc ............MISSING baseline + Comparing RESTART/20210322.120000.phy_data.tile4.nc ............MISSING baseline + Comparing RESTART/20210322.120000.phy_data.tile5.nc ............MISSING baseline + Comparing RESTART/20210322.120000.phy_data.tile6.nc ............MISSING baseline + Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............MISSING baseline + Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............MISSING baseline + Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............MISSING baseline + Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............MISSING baseline + Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............MISSING baseline + Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............MISSING baseline + + 0: The total amount of wall time = 175.595181 + 0: The maximum resident set size (KB) = 914264 + +Test 116 hrrr_control_2threads_dyn32_phy32 FAIL Tries: 2 + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/hrrr_control_decomp_dyn32_phy32 +Checking test 117 hrrr_control_decomp_dyn32_phy32 results .... + Comparing sfcf000.nc ............MISSING baseline + Comparing sfcf009.nc ............MISSING baseline + Comparing sfcf012.nc ............MISSING baseline + Comparing atmf000.nc ............MISSING baseline + Comparing atmf009.nc ............MISSING baseline + Comparing atmf012.nc ............MISSING baseline + Comparing GFSFLX.GrbF00 ............MISSING baseline + Comparing GFSFLX.GrbF09 ............MISSING baseline + Comparing GFSFLX.GrbF12 ............MISSING baseline + Comparing GFSPRS.GrbF00 ............MISSING baseline + Comparing GFSPRS.GrbF09 ............MISSING baseline + Comparing GFSPRS.GrbF12 ............MISSING baseline + Comparing RESTART/20210322.120000.coupler.res ............MISSING baseline + Comparing RESTART/20210322.120000.fv_core.res.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............MISSING baseline + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............MISSING baseline + Comparing RESTART/20210322.120000.phy_data.tile1.nc ............MISSING baseline + Comparing RESTART/20210322.120000.phy_data.tile2.nc ............MISSING baseline + Comparing RESTART/20210322.120000.phy_data.tile3.nc ............MISSING baseline + Comparing RESTART/20210322.120000.phy_data.tile4.nc ............MISSING baseline + Comparing RESTART/20210322.120000.phy_data.tile5.nc ............MISSING baseline + Comparing RESTART/20210322.120000.phy_data.tile6.nc ............MISSING baseline + Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............MISSING baseline + Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............MISSING baseline + Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............MISSING baseline + Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............MISSING baseline + Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............MISSING baseline + Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............MISSING baseline + + 0: The total amount of wall time = 200.452825 + 0: The maximum resident set size (KB) = 888824 + +Test 117 hrrr_control_decomp_dyn32_phy32 FAIL Tries: 2 + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_control_dyn64_phy32 +Checking test 120 rap_control_dyn64_phy32 results .... + Comparing sfcf000.nc ............MISSING baseline + Comparing sfcf009.nc ............MISSING baseline + Comparing sfcf012.nc ............MISSING baseline + Comparing atmf000.nc ............MISSING baseline + Comparing atmf009.nc ............MISSING baseline + Comparing atmf012.nc ............MISSING baseline + Comparing GFSFLX.GrbF00 ............MISSING baseline + Comparing GFSFLX.GrbF09 ............MISSING baseline + Comparing GFSFLX.GrbF12 ............MISSING baseline + Comparing GFSPRS.GrbF00 ............MISSING baseline + Comparing GFSPRS.GrbF09 ............MISSING baseline + Comparing GFSPRS.GrbF12 ............MISSING baseline + Comparing RESTART/20210322.180000.coupler.res ............MISSING baseline + Comparing RESTART/20210322.180000.fv_core.res.nc ............MISSING baseline + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc ............MISSING baseline + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc ............MISSING baseline + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc ............MISSING baseline + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc ............MISSING baseline + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc ............MISSING baseline + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc ............MISSING baseline + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc ............MISSING baseline + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc ............MISSING baseline + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc ............MISSING baseline + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc ............MISSING baseline + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc ............MISSING baseline + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc ............MISSING baseline + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc ............MISSING baseline + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc ............MISSING baseline + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc ............MISSING baseline + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc ............MISSING baseline + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc ............MISSING baseline + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc ............MISSING baseline + Comparing RESTART/20210322.180000.phy_data.tile1.nc ............MISSING baseline + Comparing RESTART/20210322.180000.phy_data.tile2.nc ............MISSING baseline + Comparing RESTART/20210322.180000.phy_data.tile3.nc ............MISSING baseline + Comparing RESTART/20210322.180000.phy_data.tile4.nc ............MISSING baseline + Comparing RESTART/20210322.180000.phy_data.tile5.nc ............MISSING baseline + Comparing RESTART/20210322.180000.phy_data.tile6.nc ............MISSING baseline + Comparing RESTART/20210322.180000.sfc_data.tile1.nc ............MISSING baseline + Comparing RESTART/20210322.180000.sfc_data.tile2.nc ............MISSING baseline + Comparing RESTART/20210322.180000.sfc_data.tile3.nc ............MISSING baseline + Comparing RESTART/20210322.180000.sfc_data.tile4.nc ............MISSING baseline + Comparing RESTART/20210322.180000.sfc_data.tile5.nc ............MISSING baseline + Comparing RESTART/20210322.180000.sfc_data.tile6.nc ............MISSING baseline + + 0: The total amount of wall time = 248.091960 + 0: The maximum resident set size (KB) = 966532 + +Test 120 rap_control_dyn64_phy32 FAIL Tries: 2 + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_control_debug_dyn32_phy32 +Checking test 121 rap_control_debug_dyn32_phy32 results .... + Comparing sfcf000.nc ............MISSING baseline + Comparing sfcf001.nc ............MISSING baseline + Comparing atmf000.nc ............MISSING baseline + Comparing atmf001.nc ............MISSING baseline -Test 074 rrfs_smoke_conus13km_hrrr_warm_2threads PASS + 0: The total amount of wall time = 261.310953 + 0: The maximum resident set size (KB) = 1058124 +Test 121 rap_control_debug_dyn32_phy32 FAIL Tries: 2 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rrfs_conus13km_hrrr_warm -Checking test 075 rrfs_conus13km_hrrr_warm 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 - 0: The total amount of wall time = 134.099306 - 0: The maximum resident set size (KB) = 984424 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/hrrr_control_debug_dyn32_phy32 +Checking test 122 hrrr_control_debug_dyn32_phy32 results .... + Comparing sfcf000.nc ............MISSING baseline + Comparing sfcf001.nc ............MISSING baseline + Comparing atmf000.nc ............MISSING baseline + Comparing atmf001.nc ............MISSING baseline -Test 075 rrfs_conus13km_hrrr_warm PASS + 0: The total amount of wall time = 260.285779 + 0: The maximum resident set size (KB) = 1050008 +Test 122 hrrr_control_debug_dyn32_phy32 FAIL Tries: 2 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rrfs_smoke_conus13km_radar_tten_warm -Checking test 076 rrfs_smoke_conus13km_radar_tten_warm 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 - 0: The total amount of wall time = 150.957414 - 0: The maximum resident set size (KB) = 1029524 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_debug_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_control_dyn64_phy32_debug +Checking test 123 rap_control_dyn64_phy32_debug results .... + Comparing sfcf000.nc ............MISSING baseline + Comparing sfcf001.nc ............MISSING baseline + Comparing atmf000.nc ............MISSING baseline + Comparing atmf001.nc ............MISSING baseline -Test 076 rrfs_smoke_conus13km_radar_tten_warm PASS + 0: The total amount of wall time = 274.942910 + 0: The maximum resident set size (KB) = 1102260 +Test 123 rap_control_dyn64_phy32_debug FAIL Tries: 2 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rrfs_conus13km_hrrr_warm_restart_mismatch -Checking test 077 rrfs_conus13km_hrrr_warm_restart_mismatch results .... - Comparing sfcf002.nc .........OK - Comparing atmf002.nc .........OK - 0: The total amount of wall time = 73.418916 - 0: The maximum resident set size (KB) = 977244 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/hafs_regional_atm +Checking test 124 hafs_regional_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing HURPRS.GrbF06 .........OK -Test 077 rrfs_conus13km_hrrr_warm_restart_mismatch PASS + 0: The total amount of wall time = 238.539041 + 0: The maximum resident set size (KB) = 1039188 +Test 124 hafs_regional_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmg -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_csawmg -Checking test 078 control_csawmg results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 347.002165 - 0: The maximum resident set size (KB) = 723644 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/hafs_regional_atm_thompson_gfdlsf +Checking test 125 hafs_regional_atm_thompson_gfdlsf results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK -Test 078 control_csawmg PASS + 0: The total amount of wall time = 316.269277 + 0: The maximum resident set size (KB) = 1407328 +Test 125 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmgt -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_csawmgt -Checking test 079 control_csawmgt results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 343.072232 - 0: The maximum resident set size (KB) = 720404 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/hafs_regional_atm_ocn +Checking test 126 hafs_regional_atm_ocn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing archv.2019_241_06.a .........OK + Comparing archs.2019_241_06.a .........OK + Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -Test 079 control_csawmgt PASS + 0: The total amount of wall time = 379.932095 + 0: The maximum resident set size (KB) = 1217656 +Test 126 hafs_regional_atm_ocn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_ras -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_ras -Checking test 080 control_ras results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 183.356188 - 0: The maximum resident set size (KB) = 720228 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_atm_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/hafs_regional_atm_wav +Checking test 127 hafs_regional_atm_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing 20190829.060000.out_grd.ww3 .........OK + Comparing 20190829.060000.out_pnt.ww3 .........OK + Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -Test 080 control_ras PASS + 0: The total amount of wall time = 739.194924 + 0: The maximum resident set size (KB) = 1260544 +Test 127 hafs_regional_atm_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wam -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_wam -Checking test 081 control_wam results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - 0: The total amount of wall time = 114.212275 - 0: The maximum resident set size (KB) = 642732 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/hafs_regional_atm_ocn_wav +Checking test 128 hafs_regional_atm_ocn_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing archv.2019_241_06.a .........OK + Comparing archs.2019_241_06.a .........OK + Comparing 20190829.060000.out_grd.ww3 .........OK + Comparing 20190829.060000.out_pnt.ww3 .........OK + Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + + 0: The total amount of wall time = 848.076246 + 0: The maximum resident set size (KB) = 1269716 + +Test 128 hafs_regional_atm_ocn_wav PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/hafs_regional_1nest_atm +Checking test 129 hafs_regional_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + + 0: The total amount of wall time = 317.024085 + 0: The maximum resident set size (KB) = 500264 + +Test 129 hafs_regional_1nest_atm PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/hafs_regional_telescopic_2nests_atm +Checking test 130 hafs_regional_telescopic_2nests_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing atm.nest03.f006.nc .........OK + Comparing sfc.nest03.f006.nc .........OK + + 0: The total amount of wall time = 361.377934 + 0: The maximum resident set size (KB) = 508168 + +Test 130 hafs_regional_telescopic_2nests_atm PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_global_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/hafs_global_1nest_atm +Checking test 131 hafs_global_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + + 0: The total amount of wall time = 146.263141 + 0: The maximum resident set size (KB) = 350424 + +Test 131 hafs_global_1nest_atm PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_global_multiple_4nests_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/hafs_global_multiple_4nests_atm +Checking test 132 hafs_global_multiple_4nests_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing atm.nest03.f006.nc .........OK + Comparing sfc.nest03.f006.nc .........OK + Comparing atm.nest04.f006.nc .........OK + Comparing sfc.nest04.f006.nc .........OK + Comparing atm.nest05.f006.nc .........OK + Comparing sfc.nest05.f006.nc .........OK + Comparing HURPRS.GrbF06 .........OK + Comparing HURPRS.GrbF06.nest02 .........OK + Comparing HURPRS.GrbF06.nest03 .........OK + Comparing HURPRS.GrbF06.nest04 .........OK + Comparing HURPRS.GrbF06.nest05 .........OK + + 0: The total amount of wall time = 409.451892 + 0: The maximum resident set size (KB) = 448784 + +Test 132 hafs_global_multiple_4nests_atm PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/hafs_regional_specified_moving_1nest_atm +Checking test 133 hafs_regional_specified_moving_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing HURPRS.GrbF06 .........OK + Comparing HURPRS.GrbF06.nest02 .........OK + + 0: The total amount of wall time = 201.797469 + 0: The maximum resident set size (KB) = 520556 + +Test 133 hafs_regional_specified_moving_1nest_atm PASS + -Test 081 control_wam PASS +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/hafs_regional_storm_following_1nest_atm +Checking test 134 hafs_regional_storm_following_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + 0: The total amount of wall time = 190.219556 + 0: The maximum resident set size (KB) = 523236 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_faster -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_p8_faster -Checking test 082 control_p8_faster results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK +Test 134 hafs_regional_storm_following_1nest_atm PASS - 0: The total amount of wall time = 156.236405 - 0: The maximum resident set size (KB) = 1597528 -Test 082 control_p8_faster PASS +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/hafs_regional_storm_following_1nest_atm_ocn +Checking test 135 hafs_regional_storm_following_1nest_atm_ocn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing archv.2020_238_18.a .........OK + Comparing archs.2020_238_18.a .........OK + 0: The total amount of wall time = 222.138055 + 0: The maximum resident set size (KB) = 562608 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control_faster -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/regional_control_faster -Checking test 083 regional_control_faster results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK +Test 135 hafs_regional_storm_following_1nest_atm_ocn PASS - 0: The total amount of wall time = 273.206661 - 0: The maximum resident set size (KB) = 866544 -Test 083 regional_control_faster PASS +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_global_storm_following_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/hafs_global_storm_following_1nest_atm +Checking test 136 hafs_global_storm_following_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + 0: The total amount of wall time = 60.109236 + 0: The maximum resident set size (KB) = 371304 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rrfs_smoke_conus13km_hrrr_warm_debug -Checking test 084 rrfs_smoke_conus13km_hrrr_warm_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK +Test 136 hafs_global_storm_following_1nest_atm PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/hafs_regional_storm_following_1nest_atm_ocn_debug +Checking test 137 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 843.816497 - 0: The maximum resident set size (KB) = 1028356 + 0: The total amount of wall time = 708.230226 + 0: The maximum resident set size (KB) = 583732 -Test 084 rrfs_smoke_conus13km_hrrr_warm_debug PASS +Test 137 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rrfs_smoke_conus13km_hrrr_warm_debug_2threads -Checking test 085 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 138 hafs_regional_storm_following_1nest_atm_ocn_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing archv.2020_238_18.a .........OK + Comparing archs.2020_238_18.a .........OK + Comparing 20200825.180000.out_grd.ww3 .........OK + Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 459.206651 - 0: The maximum resident set size (KB) = 973068 + 0: The total amount of wall time = 482.259172 + 0: The maximum resident set size (KB) = 620732 -Test 085 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS +Test 138 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rrfs_conus13km_hrrr_warm_debug -Checking test 086 rrfs_conus13km_hrrr_warm_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_docn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/hafs_regional_docn +Checking test 139 hafs_regional_docn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 743.716435 - 0: The maximum resident set size (KB) = 1009980 + 0: The total amount of wall time = 352.412101 + 0: The maximum resident set size (KB) = 1232524 -Test 086 rrfs_conus13km_hrrr_warm_debug PASS +Test 139 hafs_regional_docn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_CubedSphereGrid_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_CubedSphereGrid_debug -Checking test 087 control_CubedSphereGrid_debug results .... - Comparing sfcf000.tile1.nc .........OK - Comparing sfcf000.tile2.nc .........OK - Comparing sfcf000.tile3.nc .........OK - Comparing sfcf000.tile4.nc .........OK - Comparing sfcf000.tile5.nc .........OK - Comparing sfcf000.tile6.nc .........OK - Comparing sfcf001.tile1.nc .........OK - Comparing sfcf001.tile2.nc .........OK - Comparing sfcf001.tile3.nc .........OK - Comparing sfcf001.tile4.nc .........OK - Comparing sfcf001.tile5.nc .........OK - Comparing sfcf001.tile6.nc .........OK - Comparing atmf000.tile1.nc .........OK - Comparing atmf000.tile2.nc .........OK - Comparing atmf000.tile3.nc .........OK - Comparing atmf000.tile4.nc .........OK - Comparing atmf000.tile5.nc .........OK - Comparing atmf000.tile6.nc .........OK - Comparing atmf001.tile1.nc .........OK - Comparing atmf001.tile2.nc .........OK - Comparing atmf001.tile3.nc .........OK - Comparing atmf001.tile4.nc .........OK - Comparing atmf001.tile5.nc .........OK - Comparing atmf001.tile6.nc .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_docn_oisst +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/hafs_regional_docn_oisst +Checking test 140 hafs_regional_docn_oisst results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 145.501912 - 0: The maximum resident set size (KB) = 786020 + 0: The total amount of wall time = 357.689560 + 0: The maximum resident set size (KB) = 1215716 -Test 087 control_CubedSphereGrid_debug PASS +Test 140 hafs_regional_docn_oisst PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_wrtGauss_netcdf_parallel_debug -Checking test 088 control_wrtGauss_netcdf_parallel_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_datm_cdeps +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/hafs_regional_datm_cdeps +Checking test 141 hafs_regional_datm_cdeps results .... + Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK + Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK + Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 146.861774 - 0: The maximum resident set size (KB) = 789404 + 0: The total amount of wall time = 952.588282 + 0: The maximum resident set size (KB) = 1044020 -Test 088 control_wrtGauss_netcdf_parallel_debug PASS +Test 141 hafs_regional_datm_cdeps PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_stochy_debug -Checking test 089 control_stochy_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/datm_cdeps_control_cfsr +Checking test 142 datm_cdeps_control_cfsr results .... + Comparing RESTART/20111002.000000.MOM.res.nc ............MISSING baseline + Comparing RESTART/iced.2011-10-02-00000.nc ............MISSING baseline + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc ............MISSING baseline - 0: The total amount of wall time = 165.279633 - 0: The maximum resident set size (KB) = 795728 + 0: The total amount of wall time = 153.286874 + 0: The maximum resident set size (KB) = 1062580 -Test 089 control_stochy_debug PASS +Test 142 datm_cdeps_control_cfsr FAIL Tries: 2 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_lndp_debug -Checking test 090 control_lndp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/datm_cdeps_control_gefs +Checking test 144 datm_cdeps_control_gefs results .... + Comparing RESTART/20111002.000000.MOM.res.nc ............MISSING baseline + Comparing RESTART/iced.2011-10-02-00000.nc ............MISSING baseline + Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc ............MISSING baseline - 0: The total amount of wall time = 147.255077 - 0: The maximum resident set size (KB) = 795936 + 0: The total amount of wall time = 147.851364 + 0: The maximum resident set size (KB) = 966652 -Test 090 control_lndp_debug PASS +Test 144 datm_cdeps_control_gefs FAIL Tries: 2 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmg_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_csawmg_debug -Checking test 091 control_csawmg_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_iau_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/datm_cdeps_iau_gefs +Checking test 145 datm_cdeps_iau_gefs results .... + Comparing RESTART/20111002.000000.MOM.res.nc ............MISSING baseline + Comparing RESTART/iced.2011-10-02-00000.nc ............MISSING baseline + Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc ............MISSING baseline - 0: The total amount of wall time = 225.334740 - 0: The maximum resident set size (KB) = 842656 + 0: The total amount of wall time = 153.086504 + 0: The maximum resident set size (KB) = 963168 -Test 091 control_csawmg_debug PASS +Test 145 datm_cdeps_iau_gefs FAIL Tries: 2 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmgt_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_csawmgt_debug -Checking test 092 control_csawmgt_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_stochy_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/datm_cdeps_stochy_gefs +Checking test 146 datm_cdeps_stochy_gefs results .... + Comparing RESTART/20111002.000000.MOM.res.nc ............MISSING baseline + Comparing RESTART/iced.2011-10-02-00000.nc ............MISSING baseline + Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc ............MISSING baseline - 0: The total amount of wall time = 225.065102 - 0: The maximum resident set size (KB) = 836344 + 0: The total amount of wall time = 151.073239 + 0: The maximum resident set size (KB) = 966184 -Test 092 control_csawmgt_debug PASS +Test 146 datm_cdeps_stochy_gefs FAIL Tries: 2 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_ras_debug -Checking test 093 control_ras_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_ciceC_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/datm_cdeps_ciceC_cfsr +Checking test 147 datm_cdeps_ciceC_cfsr results .... + Comparing RESTART/20111002.000000.MOM.res.nc ............MISSING baseline + Comparing RESTART/iced.2011-10-02-00000.nc ............MISSING baseline + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc ............MISSING baseline - 0: The total amount of wall time = 149.592536 - 0: The maximum resident set size (KB) = 801956 + 0: The total amount of wall time = 154.478362 + 0: The maximum resident set size (KB) = 1062744 -Test 093 control_ras_debug PASS +Test 147 datm_cdeps_ciceC_cfsr FAIL Tries: 2 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_diag_debug -Checking test 094 control_diag_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/datm_cdeps_bulk_cfsr +Checking test 148 datm_cdeps_bulk_cfsr results .... + Comparing RESTART/20111002.000000.MOM.res.nc ............MISSING baseline + Comparing RESTART/iced.2011-10-02-00000.nc ............MISSING baseline + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc ............MISSING baseline - 0: The total amount of wall time = 153.143316 - 0: The maximum resident set size (KB) = 847492 + 0: The total amount of wall time = 153.678352 + 0: The maximum resident set size (KB) = 1065804 -Test 094 control_diag_debug PASS +Test 148 datm_cdeps_bulk_cfsr FAIL Tries: 2 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_debug_p8 -Checking test 095 control_debug_p8 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/datm_cdeps_bulk_gefs +Checking test 149 datm_cdeps_bulk_gefs results .... + Comparing RESTART/20111002.000000.MOM.res.nc ............MISSING baseline + Comparing RESTART/iced.2011-10-02-00000.nc ............MISSING baseline + Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc ............MISSING baseline - 0: The total amount of wall time = 164.215539 - 0: The maximum resident set size (KB) = 1616336 + 0: The total amount of wall time = 152.308809 + 0: The maximum resident set size (KB) = 961960 -Test 095 control_debug_p8 PASS +Test 149 datm_cdeps_bulk_gefs FAIL Tries: 2 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/regional_debug -Checking test 096 regional_debug results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/datm_cdeps_mx025_cfsr +Checking test 150 datm_cdeps_mx025_cfsr results .... + Comparing RESTART/20111001.120000.MOM.res.nc ............MISSING baseline + Comparing RESTART/20111001.120000.MOM.res_1.nc ............MISSING baseline + Comparing RESTART/20111001.120000.MOM.res_2.nc ............MISSING baseline + Comparing RESTART/20111001.120000.MOM.res_3.nc ............MISSING baseline + Comparing RESTART/iced.2011-10-01-43200.nc ............MISSING baseline + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc ............MISSING baseline - 0: The total amount of wall time = 971.646024 - 0: The maximum resident set size (KB) = 882352 + 0: The total amount of wall time = 416.023679 + 0: The maximum resident set size (KB) = 884160 -Test 096 regional_debug PASS +Test 150 datm_cdeps_mx025_cfsr FAIL Tries: 2 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rap_control_debug -Checking test 097 rap_control_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/datm_cdeps_mx025_gefs +Checking test 151 datm_cdeps_mx025_gefs results .... + Comparing RESTART/20111001.120000.MOM.res.nc ............MISSING baseline + Comparing RESTART/20111001.120000.MOM.res_1.nc ............MISSING baseline + Comparing RESTART/20111001.120000.MOM.res_2.nc ............MISSING baseline + Comparing RESTART/20111001.120000.MOM.res_3.nc ............MISSING baseline + Comparing RESTART/iced.2011-10-01-43200.nc ............MISSING baseline + Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc ............MISSING baseline - 0: The total amount of wall time = 269.233461 - 0: The maximum resident set size (KB) = 1161664 + 0: The total amount of wall time = 435.041871 + 0: The maximum resident set size (KB) = 936316 -Test 097 rap_control_debug PASS +Test 151 datm_cdeps_mx025_gefs FAIL Tries: 2 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hrrr_control_debug -Checking test 098 hrrr_control_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/datm_cdeps_multiple_files_cfsr +Checking test 152 datm_cdeps_multiple_files_cfsr results .... + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc ............MISSING baseline - 0: The total amount of wall time = 258.735726 - 0: The maximum resident set size (KB) = 1169020 + 0: The total amount of wall time = 153.930114 + 0: The maximum resident set size (KB) = 1058160 -Test 098 hrrr_control_debug PASS +Test 152 datm_cdeps_multiple_files_cfsr FAIL Tries: 2 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rap_unified_drag_suite_debug -Checking test 099 rap_unified_drag_suite_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/datm_cdeps_3072x1536_cfsr +Checking test 153 datm_cdeps_3072x1536_cfsr results .... + Comparing RESTART/20111002.000000.MOM.res.nc ............MISSING baseline + Comparing RESTART/iced.2011-10-02-00000.nc ............MISSING baseline + Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc ............MISSING baseline - 0: The total amount of wall time = 276.190457 - 0: The maximum resident set size (KB) = 1166172 + 0: The total amount of wall time = 217.342050 + 0: The maximum resident set size (KB) = 2360808 -Test 099 rap_unified_drag_suite_debug PASS +Test 153 datm_cdeps_3072x1536_cfsr FAIL Tries: 2 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rap_diag_debug -Checking test 100 rap_diag_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_gfs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/datm_cdeps_gfs +Checking test 154 datm_cdeps_gfs results .... + Comparing RESTART/20210323.060000.MOM.res.nc ............MISSING baseline + Comparing RESTART/iced.2021-03-23-21600.nc ............MISSING baseline + Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc ............MISSING baseline - 0: The total amount of wall time = 284.684578 - 0: The maximum resident set size (KB) = 1254856 + 0: The total amount of wall time = 222.523263 + 0: The maximum resident set size (KB) = 2366340 -Test 100 rap_diag_debug PASS +Test 154 datm_cdeps_gfs FAIL Tries: 2 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rap_cires_ugwp_debug -Checking test 101 rap_cires_ugwp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/datm_cdeps_debug_cfsr +Checking test 155 datm_cdeps_debug_cfsr results .... + Comparing RESTART/20111001.060000.MOM.res.nc ............MISSING baseline + Comparing RESTART/iced.2011-10-01-21600.nc ............MISSING baseline + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc ............MISSING baseline - 0: The total amount of wall time = 275.340341 - 0: The maximum resident set size (KB) = 1170132 + 0: The total amount of wall time = 357.615414 + 0: The maximum resident set size (KB) = 978028 -Test 101 rap_cires_ugwp_debug PASS +Test 155 datm_cdeps_debug_cfsr FAIL Tries: 2 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rap_unified_ugwp_debug -Checking test 102 rap_unified_ugwp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_control_cfsr_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/datm_cdeps_control_cfsr_faster +Checking test 156 datm_cdeps_control_cfsr_faster results .... + Comparing RESTART/20111002.000000.MOM.res.nc ............MISSING baseline + Comparing RESTART/iced.2011-10-02-00000.nc ............MISSING baseline + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc ............MISSING baseline - 0: The total amount of wall time = 276.609439 - 0: The maximum resident set size (KB) = 1166984 + 0: The total amount of wall time = 156.381175 + 0: The maximum resident set size (KB) = 1047256 -Test 102 rap_unified_ugwp_debug PASS +Test 156 datm_cdeps_control_cfsr_faster FAIL Tries: 2 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rap_lndp_debug -Checking test 103 rap_lndp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_lnd_gswp3 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/datm_cdeps_lnd_gswp3 +Checking test 157 datm_cdeps_lnd_gswp3 results .... + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc ............MISSING baseline + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc ............MISSING baseline + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc ............MISSING baseline + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc ............MISSING baseline + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc ............MISSING baseline + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc ............MISSING baseline - 0: The total amount of wall time = 271.418390 - 0: The maximum resident set size (KB) = 1171932 + 0: The total amount of wall time = 6.984228 + 0: The maximum resident set size (KB) = 258752 -Test 103 rap_lndp_debug PASS +Test 157 datm_cdeps_lnd_gswp3 FAIL Tries: 2 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rap_progcld_thompson_debug -Checking test 104 rap_progcld_thompson_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8_atmlnd_sbs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_p8_atmlnd_sbs +Checking test 159 control_p8_atmlnd_sbs results .... + Comparing sfcf000.tile1.nc .........OK + Comparing sfcf000.tile2.nc .........OK + Comparing sfcf000.tile3.nc .........OK + Comparing sfcf000.tile4.nc .........OK + Comparing sfcf000.tile5.nc .........OK + Comparing sfcf000.tile6.nc .........OK + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf000.tile1.nc .........OK + Comparing atmf000.tile2.nc .........OK + Comparing atmf000.tile3.nc .........OK + Comparing atmf000.tile4.nc .........OK + Comparing atmf000.tile5.nc .........OK + Comparing atmf000.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing ufs.cpld.cpl.hi.lnd.2021-03-22-43200.nc .........OK + Comparing ufs.cpld.cpl.hi.lnd.2021-03-23-21600.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile6.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 266.486419 - 0: The maximum resident set size (KB) = 1170236 + 0: The total amount of wall time = 202.621440 + 0: The maximum resident set size (KB) = 1598040 -Test 104 rap_progcld_thompson_debug PASS +Test 159 control_p8_atmlnd_sbs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_noah_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rap_noah_debug -Checking test 105 rap_noah_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/atmwav_control_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/atmwav_control_noaero_p8 +Checking test 160 atmwav_control_noaero_p8 results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK + Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing atmf012.nc .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + Comparing RESTART/ufs.atmw.cpl.r.2021-03-22-64800.nc .........OK + Comparing 20210322.180000.out_pnt.ww3 .........OK + Comparing 20210322.180000.out_grd.ww3 .........OK + Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 266.806004 - 0: The maximum resident set size (KB) = 1163896 + 0: The total amount of wall time = 93.820722 + 0: The maximum resident set size (KB) = 1631716 -Test 105 rap_noah_debug PASS +Test 160 atmwav_control_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rap_sfcdiff_debug -Checking test 106 rap_sfcdiff_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_atmwav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_atmwav +Checking test 161 control_atmwav results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK + Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 275.152949 - 0: The maximum resident set size (KB) = 1167752 + 0: The total amount of wall time = 87.521036 + 0: The maximum resident set size (KB) = 643564 -Test 106 rap_sfcdiff_debug PASS +Test 161 control_atmwav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 107 rap_noah_sfcdiff_cires_ugwp_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/atmaero_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/atmaero_control_p8 +Checking test 162 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK + Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.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 = 446.801909 - 0: The maximum resident set size (KB) = 1164384 + 0: The total amount of wall time = 231.325398 + 0: The maximum resident set size (KB) = 2969680 -Test 107 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 162 atmaero_control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rrfs_v1beta_debug -Checking test 108 rrfs_v1beta_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/atmaero_control_p8_rad +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/atmaero_control_p8_rad +Checking test 163 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK + Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.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 = 271.700757 - 0: The maximum resident set size (KB) = 1157240 + 0: The total amount of wall time = 281.006745 + 0: The maximum resident set size (KB) = 3023840 -Test 108 rrfs_v1beta_debug PASS +Test 163 atmaero_control_p8_rad PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_clm_lake_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rap_clm_lake_debug -Checking test 109 rap_clm_lake_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/atmaero_control_p8_rad_micro +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/atmaero_control_p8_rad_micro +Checking test 164 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK + Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.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 = 329.099858 - 0: The maximum resident set size (KB) = 1168656 + 0: The total amount of wall time = 283.338181 + 0: The maximum resident set size (KB) = 3057180 -Test 109 rap_clm_lake_debug PASS +Test 164 atmaero_control_p8_rad_micro PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_flake_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rap_flake_debug -Checking test 110 rap_flake_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_atmaq +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/regional_atmaq +Checking test 165 regional_atmaq results .... + Comparing sfcf000.nc ............MISSING baseline + Comparing sfcf003.nc ............MISSING baseline + Comparing sfcf006.nc ............MISSING baseline + Comparing atmf000.nc ............MISSING baseline + Comparing atmf003.nc ............MISSING baseline + Comparing atmf006.nc ............MISSING baseline + Comparing RESTART/20190801.180000.coupler.res ............MISSING baseline + Comparing RESTART/20190801.180000.fv_core.res.nc ............MISSING baseline + Comparing RESTART/20190801.180000.fv_core.res.tile1.nc ............MISSING baseline + Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc ............MISSING baseline + Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc ............MISSING baseline + Comparing RESTART/20190801.180000.phy_data.nc ............MISSING baseline + Comparing RESTART/20190801.180000.sfc_data.nc ............MISSING baseline + + 0: The total amount of wall time = 645.553947 + 0: The maximum resident set size (KB) = 1449952 + +Test 165 regional_atmaq FAIL Tries: 2 + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_atmaq_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/regional_atmaq_debug +Checking test 166 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK + Comparing RESTART/20190801.130000.coupler.res .........OK + Comparing RESTART/20190801.130000.fv_core.res.nc .........OK + Comparing RESTART/20190801.130000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20190801.130000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20190801.130000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20190801.130000.phy_data.nc .........OK + Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 273.349411 - 0: The maximum resident set size (KB) = 1165956 - -Test 110 rap_flake_debug PASS + 0: The total amount of wall time = 1198.667434 + 0: The maximum resident set size (KB) = 1386704 +Test 166 regional_atmaq_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_wam_debug -Checking test 111 control_wam_debug results .... - Comparing sfcf019.nc .........OK - Comparing atmf019.nc .........OK - 0: The total amount of wall time = 274.652738 - 0: The maximum resident set size (KB) = 517376 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_atmaq_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/regional_atmaq_faster +Checking test 167 regional_atmaq_faster results .... + Comparing sfcf000.nc ............MISSING baseline + Comparing sfcf003.nc ............MISSING baseline + Comparing sfcf006.nc ............MISSING baseline + Comparing atmf000.nc ............MISSING baseline + Comparing atmf003.nc ............MISSING baseline + Comparing atmf006.nc ............MISSING baseline + Comparing RESTART/20190801.180000.coupler.res ............MISSING baseline + Comparing RESTART/20190801.180000.fv_core.res.nc ............MISSING baseline + Comparing RESTART/20190801.180000.fv_core.res.tile1.nc ............MISSING baseline + Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc ............MISSING baseline + Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc ............MISSING baseline + Comparing RESTART/20190801.180000.phy_data.nc ............MISSING baseline + Comparing RESTART/20190801.180000.sfc_data.nc ............MISSING baseline + + 0: The total amount of wall time = 560.534367 + 0: The maximum resident set size (KB) = 1455460 + +Test 167 regional_atmaq_faster FAIL Tries: 2 + +FAILED TESTS: +Test rap_control 058 failed in check_result failed +Test rap_control 058 failed in run_test failed +Test regional_spp_sppt_shum_skeb 059 failed in check_result failed +Test regional_spp_sppt_shum_skeb 059 failed in run_test failed +Test rap_decomp 060 failed in check_result failed +Test rap_decomp 060 failed in run_test failed +Test rap_2threads 061 failed in check_result failed +Test rap_2threads 061 failed in run_test failed +Test rap_sfcdiff 063 failed in check_result failed +Test rap_sfcdiff 063 failed in run_test failed +Test rap_sfcdiff_decomp 064 failed in check_result failed +Test rap_sfcdiff_decomp 064 failed in run_test failed +Test hrrr_control 066 failed in check_result failed +Test hrrr_control 066 failed in run_test failed +Test hrrr_control_decomp 067 failed in check_result failed +Test hrrr_control_decomp 067 failed in run_test failed +Test hrrr_control_2threads 068 failed in check_result failed +Test hrrr_control_2threads 068 failed in run_test failed +Test rrfs_v1beta 070 failed in check_result failed +Test rrfs_v1beta 070 failed in run_test failed +Test rrfs_v1nssl 071 failed in check_result failed +Test rrfs_v1nssl 071 failed in run_test failed +Test rrfs_v1nssl_nohailnoccn 072 failed in check_result failed +Test rrfs_v1nssl_nohailnoccn 072 failed in run_test failed +Test rrfs_smoke_conus13km_hrrr_warm 073 failed in check_result failed +Test rrfs_smoke_conus13km_hrrr_warm 073 failed in run_test failed +Test rrfs_smoke_conus13km_hrrr_warm_2threads 074 failed in check_result failed +Test rrfs_smoke_conus13km_hrrr_warm_2threads 074 failed in run_test failed +Test rrfs_conus13km_hrrr_warm 075 failed in check_result failed +Test rrfs_conus13km_hrrr_warm 075 failed in run_test failed +Test rrfs_smoke_conus13km_radar_tten_warm 076 failed in check_result failed +Test rrfs_smoke_conus13km_radar_tten_warm 076 failed in run_test failed +Test rrfs_smoke_conus13km_hrrr_warm_debug 084 failed in check_result failed +Test rrfs_smoke_conus13km_hrrr_warm_debug 084 failed in run_test failed +Test rrfs_smoke_conus13km_hrrr_warm_debug_2threads 085 failed in check_result failed +Test rrfs_smoke_conus13km_hrrr_warm_debug_2threads 085 failed in run_test failed +Test rrfs_conus13km_hrrr_warm_debug 086 failed in check_result failed +Test rrfs_conus13km_hrrr_warm_debug 086 failed in run_test failed +Test control_CubedSphereGrid_debug 087 failed in check_result failed +Test control_CubedSphereGrid_debug 087 failed in run_test failed +Test control_wrtGauss_netcdf_parallel_debug 088 failed in check_result failed +Test control_wrtGauss_netcdf_parallel_debug 088 failed in run_test failed +Test control_stochy_debug 089 failed in check_result failed +Test control_stochy_debug 089 failed in run_test failed +Test control_lndp_debug 090 failed in check_result failed +Test control_lndp_debug 090 failed in run_test failed +Test control_csawmg_debug 091 failed in check_result failed +Test control_csawmg_debug 091 failed in run_test failed +Test control_csawmgt_debug 092 failed in check_result failed +Test control_csawmgt_debug 092 failed in run_test failed +Test control_ras_debug 093 failed in check_result failed +Test control_ras_debug 093 failed in run_test failed +Test control_diag_debug 094 failed in check_result failed +Test control_diag_debug 094 failed in run_test failed +Test control_debug_p8 095 failed in check_result failed +Test control_debug_p8 095 failed in run_test failed +Test regional_debug 096 failed in check_result failed +Test regional_debug 096 failed in run_test failed +Test rap_control_debug 097 failed in check_result failed +Test rap_control_debug 097 failed in run_test failed +Test hrrr_control_debug 098 failed in check_result failed +Test hrrr_control_debug 098 failed in run_test failed +Test rap_unified_drag_suite_debug 099 failed in check_result failed +Test rap_unified_drag_suite_debug 099 failed in run_test failed +Test rap_diag_debug 100 failed in check_result failed +Test rap_diag_debug 100 failed in run_test failed +Test rap_cires_ugwp_debug 101 failed in check_result failed +Test rap_cires_ugwp_debug 101 failed in run_test failed +Test rap_unified_ugwp_debug 102 failed in check_result failed +Test rap_unified_ugwp_debug 102 failed in run_test failed +Test rap_lndp_debug 103 failed in check_result failed +Test rap_lndp_debug 103 failed in run_test failed +Test rap_progcld_thompson_debug 104 failed in check_result failed +Test rap_progcld_thompson_debug 104 failed in run_test failed +Test rap_noah_debug 105 failed in check_result failed +Test rap_noah_debug 105 failed in run_test failed +Test rap_sfcdiff_debug 106 failed in check_result failed +Test rap_sfcdiff_debug 106 failed in run_test failed +Test rap_noah_sfcdiff_cires_ugwp_debug 107 failed in check_result failed +Test rap_noah_sfcdiff_cires_ugwp_debug 107 failed in run_test failed +Test rrfs_v1beta_debug 108 failed in check_result failed +Test rrfs_v1beta_debug 108 failed in run_test failed +Test rap_clm_lake_debug 109 failed in check_result failed +Test rap_clm_lake_debug 109 failed in run_test failed +Test rap_flake_debug 110 failed in check_result failed +Test rap_flake_debug 110 failed in run_test failed +Test control_wam_debug 111 failed in check_result failed +Test control_wam_debug 111 failed in run_test failed +Test regional_spp_sppt_shum_skeb_dyn32_phy32 112 failed in check_result failed +Test regional_spp_sppt_shum_skeb_dyn32_phy32 112 failed in run_test failed +Test rap_control_dyn32_phy32 113 failed in check_result failed +Test rap_control_dyn32_phy32 113 failed in run_test failed +Test hrrr_control_dyn32_phy32 114 failed in check_result failed +Test hrrr_control_dyn32_phy32 114 failed in run_test failed +Test rap_2threads_dyn32_phy32 115 failed in check_result failed +Test rap_2threads_dyn32_phy32 115 failed in run_test failed +Test hrrr_control_2threads_dyn32_phy32 116 failed in check_result failed +Test hrrr_control_2threads_dyn32_phy32 116 failed in run_test failed +Test hrrr_control_decomp_dyn32_phy32 117 failed in check_result failed +Test hrrr_control_decomp_dyn32_phy32 117 failed in run_test failed +Test rap_control_dyn64_phy32 120 failed in check_result failed +Test rap_control_dyn64_phy32 120 failed in run_test failed +Test rap_control_debug_dyn32_phy32 121 failed in check_result failed +Test rap_control_debug_dyn32_phy32 121 failed in run_test failed +Test hrrr_control_debug_dyn32_phy32 122 failed in check_result failed +Test hrrr_control_debug_dyn32_phy32 122 failed in run_test failed +Test rap_control_dyn64_phy32_debug 123 failed in check_result failed +Test rap_control_dyn64_phy32_debug 123 failed in run_test failed +Test datm_cdeps_control_cfsr 142 failed in check_result failed +Test datm_cdeps_control_cfsr 142 failed in run_test failed +Test datm_cdeps_control_gefs 144 failed in check_result failed +Test datm_cdeps_control_gefs 144 failed in run_test failed +Test datm_cdeps_iau_gefs 145 failed in check_result failed +Test datm_cdeps_iau_gefs 145 failed in run_test failed +Test datm_cdeps_stochy_gefs 146 failed in check_result failed +Test datm_cdeps_stochy_gefs 146 failed in run_test failed +Test datm_cdeps_ciceC_cfsr 147 failed in check_result failed +Test datm_cdeps_ciceC_cfsr 147 failed in run_test failed +Test datm_cdeps_bulk_cfsr 148 failed in check_result failed +Test datm_cdeps_bulk_cfsr 148 failed in run_test failed +Test datm_cdeps_bulk_gefs 149 failed in check_result failed +Test datm_cdeps_bulk_gefs 149 failed in run_test failed +Test datm_cdeps_mx025_cfsr 150 failed in check_result failed +Test datm_cdeps_mx025_cfsr 150 failed in run_test failed +Test datm_cdeps_mx025_gefs 151 failed in check_result failed +Test datm_cdeps_mx025_gefs 151 failed in run_test failed +Test datm_cdeps_multiple_files_cfsr 152 failed in check_result failed +Test datm_cdeps_multiple_files_cfsr 152 failed in run_test failed +Test datm_cdeps_3072x1536_cfsr 153 failed in check_result failed +Test datm_cdeps_3072x1536_cfsr 153 failed in run_test failed +Test datm_cdeps_gfs 154 failed in check_result failed +Test datm_cdeps_gfs 154 failed in run_test failed +Test datm_cdeps_debug_cfsr 155 failed in check_result failed +Test datm_cdeps_debug_cfsr 155 failed in run_test failed +Test datm_cdeps_control_cfsr_faster 156 failed in check_result failed +Test datm_cdeps_control_cfsr_faster 156 failed in run_test failed +Test datm_cdeps_lnd_gswp3 157 failed in check_result failed +Test datm_cdeps_lnd_gswp3 157 failed in run_test failed +Test regional_atmaq 165 failed in check_result failed +Test regional_atmaq 165 failed in run_test failed +Test regional_atmaq_faster 167 failed in check_result failed +Test regional_atmaq_faster 167 failed in run_test failed + +REGRESSION TEST FAILED +Fri May 12 07:23:50 UTC 2023 +Elapsed time: 18h:35m:35s. Have a nice day! + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_control +Checking test 01 rap_control results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -Test 111 control_wam_debug PASS + 0: The total amount of wall time = 460.870467 + 0: The maximum resident set size (KB) = 1048092 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/regional_spp_sppt_shum_skeb_dyn32_phy32 -Checking test 112 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_spp_sppt_shum_skeb +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/regional_spp_sppt_shum_skeb +Checking test 2 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -3767,27 +5126,25 @@ Checking test 112 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 218.819864 - 0: The maximum resident set size (KB) = 1067320 + 0: The total amount of wall time = 231.765169 + 0: The maximum resident set size (KB) = 1181664 -Test 112 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rap_control_dyn32_phy32 -Checking test 113 rap_control_dyn32_phy32 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_decomp +Checking test 3 rap_decomp results .... Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -3821,15 +5178,65 @@ Checking test 113 rap_control_dyn32_phy32 results .... Comparing 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.398944 - 0: The maximum resident set size (KB) = 1000548 + 0: The total amount of wall time = 481.737377 + 0: The maximum resident set size (KB) = 992032 + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_2threads +Checking test 4 rap_2threads results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -Test 113 rap_control_dyn32_phy32 PASS + 0: The total amount of wall time = 437.879086 + 0: The maximum resident set size (KB) = 1101756 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hrrr_control_dyn32_phy32 -Checking test 114 hrrr_control_dyn32_phy32 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_sfcdiff +Checking test 5 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3842,48 +5249,46 @@ Checking test 114 hrrr_control_dyn32_phy32 results .... 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 = 190.729947 - 0: The maximum resident set size (KB) = 954360 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -Test 114 hrrr_control_dyn32_phy32 PASS + 0: The total amount of wall time = 460.389691 + 0: The maximum resident set size (KB) = 1045744 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rap_2threads_dyn32_phy32 -Checking test 115 rap_2threads_dyn32_phy32 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_sfcdiff_decomp +Checking test 6 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3929,15 +5334,65 @@ Checking test 115 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 364.805529 - 0: The maximum resident set size (KB) = 1017212 + 0: The total amount of wall time = 485.026699 + 0: The maximum resident set size (KB) = 997320 + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/hrrr_control +Checking test 7 hrrr_control 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 -Test 115 rap_2threads_dyn32_phy32 PASS + 0: The total amount of wall time = 428.426870 + 0: The maximum resident set size (KB) = 1045188 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hrrr_control_2threads_dyn32_phy32 -Checking test 116 hrrr_control_2threads_dyn32_phy32 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/hrrr_control_decomp +Checking test 8 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3983,15 +5438,13 @@ Checking test 116 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 178.711789 - 0: The maximum resident set size (KB) = 924708 + 0: The total amount of wall time = 448.792812 + 0: The maximum resident set size (KB) = 998780 -Test 116 hrrr_control_2threads_dyn32_phy32 PASS - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hrrr_control_decomp_dyn32_phy32 -Checking test 117 hrrr_control_decomp_dyn32_phy32 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/hrrr_control_2threads +Checking test 9 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4037,18 +5490,24 @@ Checking test 117 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 202.546427 - 0: The maximum resident set size (KB) = 890920 + 0: The total amount of wall time = 395.896439 + 0: The maximum resident set size (KB) = 1076848 -Test 117 hrrr_control_decomp_dyn32_phy32 PASS - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rap_restart_dyn32_phy32 -Checking test 118 rap_restart_dyn32_phy32 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rrfs_v1beta +Checking test 10 rrfs_v1beta results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK @@ -4083,29 +5542,33 @@ Checking test 118 rap_restart_dyn32_phy32 results .... Comparing 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.105642 - 0: The maximum resident set size (KB) = 945252 - -Test 118 rap_restart_dyn32_phy32 PASS + 0: The total amount of wall time = 457.112711 + 0: The maximum resident set size (KB) = 1049104 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hrrr_control_restart_dyn32_phy32 -Checking test 119 hrrr_control_restart_dyn32_phy32 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_v1nssl +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rrfs_v1nssl +Checking test 11 rrfs_v1nssl results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 99.984244 - 0: The maximum resident set size (KB) = 859356 + 0: The total amount of wall time = 536.557757 + 0: The maximum resident set size (KB) = 665360 -Test 119 hrrr_control_restart_dyn32_phy32 PASS - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rap_control_dyn64_phy32 -Checking test 120 rap_control_dyn64_phy32 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rrfs_v1nssl_nohailnoccn +Checking test 12 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4118,636 +5581,556 @@ Checking test 120 rap_control_dyn64_phy32 results .... 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 = 247.280544 - 0: The maximum resident set size (KB) = 956992 + 0: The total amount of wall time = 522.726999 + 0: The maximum resident set size (KB) = 752812 -Test 120 rap_control_dyn64_phy32 PASS - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rap_control_debug_dyn32_phy32 -Checking test 121 rap_control_debug_dyn32_phy32 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rrfs_smoke_conus13km_hrrr_warm +Checking test 13 rrfs_smoke_conus13km_hrrr_warm 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 - 0: The total amount of wall time = 268.225733 - 0: The maximum resident set size (KB) = 1057100 - -Test 121 rap_control_debug_dyn32_phy32 PASS + 0: The total amount of wall time = 152.138144 + 0: The maximum resident set size (KB) = 1031220 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hrrr_control_debug_dyn32_phy32 -Checking test 122 hrrr_control_debug_dyn32_phy32 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rrfs_smoke_conus13km_hrrr_warm_2threads +Checking test 14 rrfs_smoke_conus13km_hrrr_warm_2threads 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 - 0: The total amount of wall time = 257.838533 - 0: The maximum resident set size (KB) = 1051200 - -Test 122 hrrr_control_debug_dyn32_phy32 PASS + 0: The total amount of wall time = 92.747663 + 0: The maximum resident set size (KB) = 942036 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rap_control_dyn64_phy32_debug -Checking test 123 rap_control_dyn64_phy32_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rrfs_conus13km_hrrr_warm +Checking test 15 rrfs_conus13km_hrrr_warm 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 - 0: The total amount of wall time = 273.172790 - 0: The maximum resident set size (KB) = 1062104 - -Test 123 rap_control_dyn64_phy32_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hafs_regional_atm -Checking test 124 hafs_regional_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing HURPRS.GrbF06 .........OK - - 0: The total amount of wall time = 234.895265 - 0: The maximum resident set size (KB) = 1051256 - -Test 124 hafs_regional_atm PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hafs_regional_atm_thompson_gfdlsf -Checking test 125 hafs_regional_atm_thompson_gfdlsf results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - - 0: The total amount of wall time = 320.191891 - 0: The maximum resident set size (KB) = 1415096 - -Test 125 hafs_regional_atm_thompson_gfdlsf PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hafs_regional_atm_ocn -Checking test 126 hafs_regional_atm_ocn results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing archv.2019_241_06.a .........OK - Comparing archs.2019_241_06.a .........OK - Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - - 0: The total amount of wall time = 377.785986 - 0: The maximum resident set size (KB) = 1227920 - -Test 126 hafs_regional_atm_ocn PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_wav -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hafs_regional_atm_wav -Checking test 127 hafs_regional_atm_wav results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing 20190829.060000.out_grd.ww3 .........OK - Comparing 20190829.060000.out_pnt.ww3 .........OK - Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - - 0: The total amount of wall time = 746.663158 - 0: The maximum resident set size (KB) = 1221788 - -Test 127 hafs_regional_atm_wav PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hafs_regional_atm_ocn_wav -Checking test 128 hafs_regional_atm_ocn_wav results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing archv.2019_241_06.a .........OK - Comparing archs.2019_241_06.a .........OK - Comparing 20190829.060000.out_grd.ww3 .........OK - Comparing 20190829.060000.out_pnt.ww3 .........OK - Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - - 0: The total amount of wall time = 845.179442 - 0: The maximum resident set size (KB) = 1273348 - -Test 128 hafs_regional_atm_ocn_wav PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hafs_regional_1nest_atm -Checking test 129 hafs_regional_1nest_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - - 0: The total amount of wall time = 318.391777 - 0: The maximum resident set size (KB) = 502604 - -Test 129 hafs_regional_1nest_atm PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hafs_regional_telescopic_2nests_atm -Checking test 130 hafs_regional_telescopic_2nests_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest03.f006.nc .........OK - - 0: The total amount of wall time = 365.642637 - 0: The maximum resident set size (KB) = 509916 - -Test 130 hafs_regional_telescopic_2nests_atm PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_global_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hafs_global_1nest_atm -Checking test 131 hafs_global_1nest_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - - 0: The total amount of wall time = 145.568114 - 0: The maximum resident set size (KB) = 348880 - -Test 131 hafs_global_1nest_atm PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_global_multiple_4nests_atm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hafs_global_multiple_4nests_atm -Checking test 132 hafs_global_multiple_4nests_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest03.f006.nc .........OK - Comparing atm.nest04.f006.nc .........OK - Comparing sfc.nest04.f006.nc .........OK - Comparing atm.nest05.f006.nc .........OK - Comparing sfc.nest05.f006.nc .........OK - Comparing HURPRS.GrbF06 .........OK - Comparing HURPRS.GrbF06.nest02 .........OK - Comparing HURPRS.GrbF06.nest03 .........OK - Comparing HURPRS.GrbF06.nest04 .........OK - Comparing HURPRS.GrbF06.nest05 .........OK - - 0: The total amount of wall time = 415.228383 - 0: The maximum resident set size (KB) = 450384 - -Test 132 hafs_global_multiple_4nests_atm PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hafs_regional_specified_moving_1nest_atm -Checking test 133 hafs_regional_specified_moving_1nest_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing HURPRS.GrbF06 .........OK - Comparing HURPRS.GrbF06.nest02 .........OK - - 0: The total amount of wall time = 202.100103 - 0: The maximum resident set size (KB) = 520872 - -Test 133 hafs_regional_specified_moving_1nest_atm PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hafs_regional_storm_following_1nest_atm -Checking test 134 hafs_regional_storm_following_1nest_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - - 0: The total amount of wall time = 192.933637 - 0: The maximum resident set size (KB) = 518288 + 0: The total amount of wall time = 133.503022 + 0: The maximum resident set size (KB) = 979936 -Test 134 hafs_regional_storm_following_1nest_atm PASS +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rrfs_smoke_conus13km_radar_tten_warm +Checking test 16 rrfs_smoke_conus13km_radar_tten_warm 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 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hafs_regional_storm_following_1nest_atm_ocn -Checking test 135 hafs_regional_storm_following_1nest_atm_ocn results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing archv.2020_238_18.a .........OK - Comparing archs.2020_238_18.a .........OK + 0: The total amount of wall time = 152.491705 + 0: The maximum resident set size (KB) = 1030160 - 0: The total amount of wall time = 224.171361 - 0: The maximum resident set size (KB) = 561276 -Test 135 hafs_regional_storm_following_1nest_atm_ocn PASS +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rrfs_smoke_conus13km_hrrr_warm_debug +Checking test 17 rrfs_smoke_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + 0: The total amount of wall time = 832.711387 + 0: The maximum resident set size (KB) = 1056876 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_global_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hafs_global_storm_following_1nest_atm -Checking test 136 hafs_global_storm_following_1nest_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 58.088904 - 0: The maximum resident set size (KB) = 370812 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +Checking test 18 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -Test 136 hafs_global_storm_following_1nest_atm PASS + 0: The total amount of wall time = 465.208216 + 0: The maximum resident set size (KB) = 967464 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hafs_regional_storm_following_1nest_atm_ocn_debug -Checking test 137 hafs_regional_storm_following_1nest_atm_ocn_debug results .... - Comparing atmf001.nc .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rrfs_conus13km_hrrr_warm_debug +Checking test 19 rrfs_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.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 = 710.846789 - 0: The maximum resident set size (KB) = 581456 + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -Test 137 hafs_regional_storm_following_1nest_atm_ocn_debug PASS + 0: The total amount of wall time = 745.046241 + 0: The maximum resident set size (KB) = 1013404 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hafs_regional_storm_following_1nest_atm_ocn_wav -Checking test 138 hafs_regional_storm_following_1nest_atm_ocn_wav results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing archv.2020_238_18.a .........OK - Comparing archs.2020_238_18.a .........OK - Comparing 20200825.180000.out_grd.ww3 .........OK - Comparing 20200825.180000.out_pnt.ww3 .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_CubedSphereGrid_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_CubedSphereGrid_debug +Checking test 20 control_CubedSphereGrid_debug results .... + Comparing sfcf000.tile1.nc .........OK + Comparing sfcf000.tile2.nc .........OK + Comparing sfcf000.tile3.nc .........OK + Comparing sfcf000.tile4.nc .........OK + Comparing sfcf000.tile5.nc .........OK + Comparing sfcf000.tile6.nc .........OK + Comparing sfcf001.tile1.nc .........OK + Comparing sfcf001.tile2.nc .........OK + Comparing sfcf001.tile3.nc .........OK + Comparing sfcf001.tile4.nc .........OK + Comparing sfcf001.tile5.nc .........OK + Comparing sfcf001.tile6.nc .........OK + Comparing atmf000.tile1.nc .........OK + Comparing atmf000.tile2.nc .........OK + Comparing atmf000.tile3.nc .........OK + Comparing atmf000.tile4.nc .........OK + Comparing atmf000.tile5.nc .........OK + Comparing atmf000.tile6.nc .........OK + Comparing atmf001.tile1.nc .........OK + Comparing atmf001.tile2.nc .........OK + Comparing atmf001.tile3.nc .........OK + Comparing atmf001.tile4.nc .........OK + Comparing atmf001.tile5.nc .........OK + Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 480.993614 - 0: The maximum resident set size (KB) = 617900 + 0: The total amount of wall time = 150.078971 + 0: The maximum resident set size (KB) = 763448 -Test 138 hafs_regional_storm_following_1nest_atm_ocn_wav PASS +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_wrtGauss_netcdf_parallel_debug +Checking test 21 control_wrtGauss_netcdf_parallel_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_docn -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hafs_regional_docn -Checking test 139 hafs_regional_docn results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK + 0: The total amount of wall time = 145.638031 + 0: The maximum resident set size (KB) = 786808 - 0: The total amount of wall time = 357.807955 - 0: The maximum resident set size (KB) = 1235016 -Test 139 hafs_regional_docn PASS +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_stochy_debug +Checking test 22 control_stochy_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + 0: The total amount of wall time = 165.102886 + 0: The maximum resident set size (KB) = 794524 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_docn_oisst -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hafs_regional_docn_oisst -Checking test 140 hafs_regional_docn_oisst results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 358.568212 - 0: The maximum resident set size (KB) = 1217064 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_lndp_debug +Checking test 23 control_lndp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -Test 140 hafs_regional_docn_oisst PASS + 0: The total amount of wall time = 146.621086 + 0: The maximum resident set size (KB) = 790080 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_datm_cdeps -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hafs_regional_datm_cdeps -Checking test 141 hafs_regional_datm_cdeps results .... - Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK - Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK - Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_csawmg_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_csawmg_debug +Checking test 24 control_csawmg_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 951.852748 - 0: The maximum resident set size (KB) = 1036716 + 0: The total amount of wall time = 223.535451 + 0: The maximum resident set size (KB) = 838036 -Test 141 hafs_regional_datm_cdeps PASS +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_csawmgt_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_csawmgt_debug +Checking test 25 control_csawmgt_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/datm_cdeps_control_cfsr -Checking test 142 datm_cdeps_control_cfsr results .... - Comparing RESTART/20111002.000000.MOM.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 = 224.238890 + 0: The maximum resident set size (KB) = 839484 - 0: The total amount of wall time = 157.197818 - 0: The maximum resident set size (KB) = 1059736 -Test 142 datm_cdeps_control_cfsr PASS +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_ras_debug +Checking test 26 control_ras_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + 0: The total amount of wall time = 148.821949 + 0: The maximum resident set size (KB) = 797996 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/datm_cdeps_restart_cfsr -Checking test 143 datm_cdeps_restart_cfsr results .... - Comparing RESTART/20111002.000000.MOM.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 = 95.211874 - 0: The maximum resident set size (KB) = 1007512 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_diag_debug +Checking test 27 control_diag_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -Test 143 datm_cdeps_restart_cfsr PASS + 0: The total amount of wall time = 154.304266 + 0: The maximum resident set size (KB) = 846092 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/datm_cdeps_control_gefs -Checking test 144 datm_cdeps_control_gefs 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 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_debug_p8 +Checking test 28 control_debug_p8 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 153.008663 - 0: The maximum resident set size (KB) = 964348 + 0: The total amount of wall time = 161.708863 + 0: The maximum resident set size (KB) = 1610228 -Test 144 datm_cdeps_control_gefs PASS +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/regional_debug +Checking test 29 regional_debug results .... + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_iau_gefs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/datm_cdeps_iau_gefs -Checking test 145 datm_cdeps_iau_gefs 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 = 980.782012 + 0: The maximum resident set size (KB) = 876904 - 0: The total amount of wall time = 153.685467 - 0: The maximum resident set size (KB) = 961332 -Test 145 datm_cdeps_iau_gefs PASS +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_control_debug +Checking test 30 rap_control_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + 0: The total amount of wall time = 273.890726 + 0: The maximum resident set size (KB) = 1163616 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_stochy_gefs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/datm_cdeps_stochy_gefs -Checking test 146 datm_cdeps_stochy_gefs 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 = 152.669300 - 0: The maximum resident set size (KB) = 964044 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/hrrr_control_debug +Checking test 31 hrrr_control_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -Test 146 datm_cdeps_stochy_gefs PASS + 0: The total amount of wall time = 264.999828 + 0: The maximum resident set size (KB) = 1163356 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_ciceC_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/datm_cdeps_ciceC_cfsr -Checking test 147 datm_cdeps_ciceC_cfsr results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_unified_drag_suite_debug +Checking test 32 rap_unified_drag_suite_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 158.258610 - 0: The maximum resident set size (KB) = 1055764 + 0: The total amount of wall time = 271.532738 + 0: The maximum resident set size (KB) = 1168140 -Test 147 datm_cdeps_ciceC_cfsr PASS +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_diag_debug +Checking test 33 rap_diag_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/datm_cdeps_bulk_cfsr -Checking test 148 datm_cdeps_bulk_cfsr results .... - Comparing RESTART/20111002.000000.MOM.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 = 287.003819 + 0: The maximum resident set size (KB) = 1254120 - 0: The total amount of wall time = 157.883028 - 0: The maximum resident set size (KB) = 1056736 -Test 148 datm_cdeps_bulk_cfsr PASS +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_cires_ugwp_debug +Checking test 34 rap_cires_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + 0: The total amount of wall time = 276.081259 + 0: The maximum resident set size (KB) = 1157092 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/datm_cdeps_bulk_gefs -Checking test 149 datm_cdeps_bulk_gefs results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 151.564626 - 0: The maximum resident set size (KB) = 965012 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_unified_ugwp_debug +Checking test 35 rap_unified_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -Test 149 datm_cdeps_bulk_gefs PASS + 0: The total amount of wall time = 277.518716 + 0: The maximum resident set size (KB) = 1174452 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/datm_cdeps_mx025_cfsr -Checking test 150 datm_cdeps_mx025_cfsr results .... - Comparing RESTART/20111001.120000.MOM.res.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK - Comparing RESTART/iced.2011-10-01-43200.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_lndp_debug +Checking test 36 rap_lndp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 416.095646 - 0: The maximum resident set size (KB) = 871376 + 0: The total amount of wall time = 275.802324 + 0: The maximum resident set size (KB) = 1166704 -Test 150 datm_cdeps_mx025_cfsr PASS +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_progcld_thompson_debug +Checking test 37 rap_progcld_thompson_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/datm_cdeps_mx025_gefs -Checking test 151 datm_cdeps_mx025_gefs results .... - Comparing RESTART/20111001.120000.MOM.res.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK - Comparing RESTART/iced.2011-10-01-43200.nc .........OK - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK + 0: The total amount of wall time = 269.962379 + 0: The maximum resident set size (KB) = 1136576 - 0: The total amount of wall time = 411.162821 - 0: The maximum resident set size (KB) = 933668 -Test 151 datm_cdeps_mx025_gefs PASS +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_noah_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_noah_debug +Checking test 38 rap_noah_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + 0: The total amount of wall time = 265.084765 + 0: The maximum resident set size (KB) = 1164764 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/datm_cdeps_multiple_files_cfsr -Checking test 152 datm_cdeps_multiple_files_cfsr results .... - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 157.334330 - 0: The maximum resident set size (KB) = 1059956 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_sfcdiff_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_sfcdiff_debug +Checking test 39 rap_sfcdiff_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -Test 152 datm_cdeps_multiple_files_cfsr PASS + 0: The total amount of wall time = 271.177082 + 0: The maximum resident set size (KB) = 1157700 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/datm_cdeps_3072x1536_cfsr -Checking test 153 datm_cdeps_3072x1536_cfsr 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 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 40 rap_noah_sfcdiff_cires_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 217.989566 - 0: The maximum resident set size (KB) = 2370168 + 0: The total amount of wall time = 456.268386 + 0: The maximum resident set size (KB) = 1168632 -Test 153 datm_cdeps_3072x1536_cfsr PASS +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rrfs_v1beta_debug +Checking test 41 rrfs_v1beta_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_gfs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/datm_cdeps_gfs -Checking test 154 datm_cdeps_gfs 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 = 265.976428 + 0: The maximum resident set size (KB) = 1162316 - 0: The total amount of wall time = 229.116823 - 0: The maximum resident set size (KB) = 2355920 -Test 154 datm_cdeps_gfs PASS +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_clm_lake_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_clm_lake_debug +Checking test 42 rap_clm_lake_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + 0: The total amount of wall time = 326.041910 + 0: The maximum resident set size (KB) = 1171816 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/datm_cdeps_debug_cfsr -Checking test 155 datm_cdeps_debug_cfsr results .... - Comparing RESTART/20111001.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-01-21600.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 357.368363 - 0: The maximum resident set size (KB) = 977352 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_flake_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_flake_debug +Checking test 43 rap_flake_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -Test 155 datm_cdeps_debug_cfsr PASS + 0: The total amount of wall time = 271.298331 + 0: The maximum resident set size (KB) = 1167068 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_cfsr_faster -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/datm_cdeps_control_cfsr_faster -Checking test 156 datm_cdeps_control_cfsr_faster results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_wam_debug +Checking test 44 control_wam_debug results .... + Comparing sfcf019.nc .........OK + Comparing atmf019.nc .........OK - 0: The total amount of wall time = 157.696734 - 0: The maximum resident set size (KB) = 1057400 + 0: The total amount of wall time = 268.602090 + 0: The maximum resident set size (KB) = 519324 -Test 156 datm_cdeps_control_cfsr_faster PASS +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 45 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF01 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF01 .........OK -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/datm_cdeps_lnd_gswp3 -Checking test 157 datm_cdeps_lnd_gswp3 results .... - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK + 0: The total amount of wall time = 220.599977 + 0: The maximum resident set size (KB) = 1079000 - 0: The total amount of wall time = 7.660018 - 0: The maximum resident set size (KB) = 260412 -Test 157 datm_cdeps_lnd_gswp3 PASS +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_control_dyn32_phy32 +Checking test 46 rap_control_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + 0: The total amount of wall time = 382.479354 + 0: The maximum resident set size (KB) = 994612 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/datm_cdeps_lnd_gswp3_rst -Checking test 158 datm_cdeps_lnd_gswp3_rst results .... - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 13.128830 - 0: The maximum resident set size (KB) = 258232 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/hrrr_control_dyn32_phy32 +Checking test 47 hrrr_control_dyn32_phy32 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 -Test 158 datm_cdeps_lnd_gswp3_rst PASS + 0: The total amount of wall time = 191.526185 + 0: The maximum resident set size (KB) = 950824 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_atmlnd_sbs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_p8_atmlnd_sbs -Checking test 159 control_p8_atmlnd_sbs results .... - Comparing sfcf000.tile1.nc .........OK - Comparing sfcf000.tile2.nc .........OK - Comparing sfcf000.tile3.nc .........OK - Comparing sfcf000.tile4.nc .........OK - Comparing sfcf000.tile5.nc .........OK - Comparing sfcf000.tile6.nc .........OK - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf000.tile1.nc .........OK - Comparing atmf000.tile2.nc .........OK - Comparing atmf000.tile3.nc .........OK - Comparing atmf000.tile4.nc .........OK - Comparing atmf000.tile5.nc .........OK - Comparing atmf000.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_2threads_dyn32_phy32 +Checking test 48 rap_2threads_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -4780,87 +6163,129 @@ Checking test 159 control_p8_atmlnd_sbs results .... Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing ufs.cpld.cpl.hi.lnd.2021-03-22-43200.nc .........OK - Comparing ufs.cpld.cpl.hi.lnd.2021-03-23-21600.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile6.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - - 0: The total amount of wall time = 203.707979 - 0: The maximum resident set size (KB) = 1595292 -Test 159 control_p8_atmlnd_sbs PASS + 0: The total amount of wall time = 372.641579 + 0: The maximum resident set size (KB) = 981160 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/atmwav_control_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/atmwav_control_noaero_p8 -Checking test 160 atmwav_control_noaero_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/hrrr_control_2threads_dyn32_phy32 +Checking test 49 hrrr_control_2threads_dyn32_phy32 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 RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - Comparing RESTART/ufs.atmw.cpl.r.2021-03-22-64800.nc .........OK - Comparing 20210322.180000.out_pnt.ww3 .........OK - Comparing 20210322.180000.out_grd.ww3 .........OK - Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK + 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 = 94.450471 - 0: The maximum resident set size (KB) = 1628312 + 0: The total amount of wall time = 175.595181 + 0: The maximum resident set size (KB) = 914264 -Test 160 atmwav_control_noaero_p8 PASS +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/hrrr_control_decomp_dyn32_phy32 +Checking test 50 hrrr_control_decomp_dyn32_phy32 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 = 200.452825 + 0: The maximum resident set size (KB) = 888824 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_atmwav -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_atmwav -Checking test 161 control_atmwav results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_control_dyn64_phy32 +Checking test 51 rap_control_dyn64_phy32 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 @@ -4894,170 +6319,222 @@ Checking test 161 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - Comparing 20210322.180000.restart.glo_1deg .........OK - - 0: The total amount of wall time = 89.053826 - 0: The maximum resident set size (KB) = 658392 -Test 161 control_atmwav PASS + 0: The total amount of wall time = 248.091960 + 0: The maximum resident set size (KB) = 966532 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/atmaero_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/atmaero_control_p8 -Checking test 162 atmaero_control_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_control_debug_dyn32_phy32 +Checking test 52 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf001.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 = 229.922653 - 0: The maximum resident set size (KB) = 2977600 + Comparing atmf001.nc .........OK -Test 162 atmaero_control_p8 PASS + 0: The total amount of wall time = 261.310953 + 0: The maximum resident set size (KB) = 1058124 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/atmaero_control_p8_rad -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/atmaero_control_p8_rad -Checking test 163 atmaero_control_p8_rad results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/hrrr_control_debug_dyn32_phy32 +Checking test 53 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf001.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 = 293.423564 - 0: The maximum resident set size (KB) = 3035352 + Comparing atmf001.nc .........OK -Test 163 atmaero_control_p8_rad PASS + 0: The total amount of wall time = 260.285779 + 0: The maximum resident set size (KB) = 1050008 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/atmaero_control_p8_rad_micro -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/atmaero_control_p8_rad_micro -Checking test 164 atmaero_control_p8_rad_micro results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_debug_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_control_dyn64_phy32_debug +Checking test 54 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf001.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 + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 291.242830 - 0: The maximum resident set size (KB) = 3046684 + 0: The total amount of wall time = 274.942910 + 0: The maximum resident set size (KB) = 1102260 -Test 164 atmaero_control_p8_rad_micro PASS +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/datm_cdeps_control_cfsr +Checking test 55 datm_cdeps_control_cfsr results .... + Comparing RESTART/20111002.000000.MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK + + 0: The total amount of wall time = 153.286874 + 0: The maximum resident set size (KB) = 1062580 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_atmaq -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/regional_atmaq -Checking test 165 regional_atmaq results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/datm_cdeps_control_gefs +Checking test 56 datm_cdeps_control_gefs 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.851364 + 0: The maximum resident set size (KB) = 966652 + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_iau_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/datm_cdeps_iau_gefs +Checking test 57 datm_cdeps_iau_gefs 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.086504 + 0: The maximum resident set size (KB) = 963168 + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_stochy_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/datm_cdeps_stochy_gefs +Checking test 58 datm_cdeps_stochy_gefs results .... + Comparing RESTART/20111002.000000.MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK + + 0: The total amount of wall time = 151.073239 + 0: The maximum resident set size (KB) = 966184 + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_ciceC_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/datm_cdeps_ciceC_cfsr +Checking test 59 datm_cdeps_ciceC_cfsr results .... + Comparing RESTART/20111002.000000.MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK + + 0: The total amount of wall time = 154.478362 + 0: The maximum resident set size (KB) = 1062744 + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/datm_cdeps_bulk_cfsr +Checking test 60 datm_cdeps_bulk_cfsr results .... + Comparing RESTART/20111002.000000.MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK + + 0: The total amount of wall time = 153.678352 + 0: The maximum resident set size (KB) = 1065804 + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/datm_cdeps_bulk_gefs +Checking test 61 datm_cdeps_bulk_gefs 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 = 152.308809 + 0: The maximum resident set size (KB) = 961960 + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/datm_cdeps_mx025_cfsr +Checking test 62 datm_cdeps_mx025_cfsr results .... + Comparing RESTART/20111001.120000.MOM.res.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK + Comparing RESTART/iced.2011-10-01-43200.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK + + 0: The total amount of wall time = 416.023679 + 0: The maximum resident set size (KB) = 884160 + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/datm_cdeps_mx025_gefs +Checking test 63 datm_cdeps_mx025_gefs results .... + Comparing RESTART/20111001.120000.MOM.res.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK + Comparing RESTART/iced.2011-10-01-43200.nc .........OK + Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK + + 0: The total amount of wall time = 435.041871 + 0: The maximum resident set size (KB) = 936316 + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/datm_cdeps_multiple_files_cfsr +Checking test 64 datm_cdeps_multiple_files_cfsr results .... + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK + + 0: The total amount of wall time = 153.930114 + 0: The maximum resident set size (KB) = 1058160 + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/datm_cdeps_3072x1536_cfsr +Checking test 65 datm_cdeps_3072x1536_cfsr results .... + Comparing RESTART/20111002.000000.MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK + + 0: The total amount of wall time = 217.342050 + 0: The maximum resident set size (KB) = 2360808 + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_gfs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/datm_cdeps_gfs +Checking test 66 datm_cdeps_gfs 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 = 222.523263 + 0: The maximum resident set size (KB) = 2366340 + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/datm_cdeps_debug_cfsr +Checking test 67 datm_cdeps_debug_cfsr results .... + Comparing RESTART/20111001.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-01-21600.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK + + 0: The total amount of wall time = 357.615414 + 0: The maximum resident set size (KB) = 978028 + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_control_cfsr_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/datm_cdeps_control_cfsr_faster +Checking test 68 datm_cdeps_control_cfsr_faster results .... + Comparing RESTART/20111002.000000.MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK + + 0: The total amount of wall time = 156.381175 + 0: The maximum resident set size (KB) = 1047256 + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_lnd_gswp3 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/datm_cdeps_lnd_gswp3 +Checking test 69 datm_cdeps_lnd_gswp3 results .... + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK + + 0: The total amount of wall time = 6.984228 + 0: The maximum resident set size (KB) = 258752 + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_atmaq +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/regional_atmaq +Checking test 70 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -5072,36 +6549,13 @@ Checking test 165 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 649.171066 - 0: The maximum resident set size (KB) = 1451496 - -Test 165 regional_atmaq PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_atmaq_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/regional_atmaq_debug -Checking test 166 regional_atmaq_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing RESTART/20190801.130000.coupler.res .........OK - Comparing RESTART/20190801.130000.fv_core.res.nc .........OK - Comparing RESTART/20190801.130000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20190801.130000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20190801.130000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20190801.130000.phy_data.nc .........OK - Comparing RESTART/20190801.130000.sfc_data.nc .........OK - - 0: The total amount of wall time = 1201.947439 - 0: The maximum resident set size (KB) = 1374860 - -Test 166 regional_atmaq_debug PASS + 0: The total amount of wall time = 645.553947 + 0: The maximum resident set size (KB) = 1449952 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_atmaq_faster -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/regional_atmaq_faster -Checking test 167 regional_atmaq_faster results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_atmaq_faster +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/regional_atmaq_faster +Checking test 71 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -5116,12 +6570,6 @@ Checking test 167 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 567.633953 - 0: The maximum resident set size (KB) = 1456756 - -Test 167 regional_atmaq_faster PASS - + 0: The total amount of wall time = 560.534367 + 0: The maximum resident set size (KB) = 1455460 -REGRESSION TEST WAS SUCCESSFUL -Sun May 7 07:18:09 UTC 2023 -Elapsed time: 08h:50m:51s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index 867e84b6061..29fff4e8201 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,43 +1,43 @@ -Fri May 5 19:03:44 UTC 2023 +Wed May 10 22:26:52 UTC 2023 Start Regression test -Compile 001 elapsed time 1942 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 002 elapsed time 2049 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 003 elapsed time 1877 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 004 elapsed time 313 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 288 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 1707 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 007 elapsed time 1758 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 008 elapsed time 3352 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 009 elapsed time 1840 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 010 elapsed time 1751 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 011 elapsed time 1701 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 012 elapsed time 1542 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 013 elapsed time 2150 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 014 elapsed time 306 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 015 elapsed time 203 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 1582 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 017 elapsed time 1615 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 018 elapsed time 251 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 281 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 1713 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 021 elapsed time 248 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 2238 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 023 elapsed time 1702 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 024 elapsed time 286 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 025 elapsed time 149 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 267 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 027 elapsed time 81 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 028 elapsed time 1681 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 029 elapsed time 1673 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 030 elapsed time 1644 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 031 elapsed time 1593 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 032 elapsed time 1553 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 033 elapsed time 217 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 034 elapsed time 2034 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8_mixedmode -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/cpld_control_p8_mixedmode +Compile 001 elapsed time 2006 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 002 elapsed time 2003 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 003 elapsed time 1850 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 004 elapsed time 350 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 309 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 1691 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 007 elapsed time 1737 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 008 elapsed time 3388 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 009 elapsed time 1796 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 010 elapsed time 1724 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 011 elapsed time 1728 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 012 elapsed time 1608 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 013 elapsed time 2148 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 014 elapsed time 344 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 015 elapsed time 277 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 1629 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 017 elapsed time 1681 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 018 elapsed time 217 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 294 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 1761 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 021 elapsed time 341 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 2290 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 023 elapsed time 1735 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 024 elapsed time 304 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 025 elapsed time 173 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 331 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 027 elapsed time 133 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 028 elapsed time 1725 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 029 elapsed time 1711 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 030 elapsed time 1713 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 031 elapsed time 1647 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 032 elapsed time 1600 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 033 elapsed time 297 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 034 elapsed time 1989 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8_mixedmode +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -102,14 +102,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 456.506094 - 0: The maximum resident set size (KB) = 1741260 + 0: The total amount of wall time = 475.932787 + 0: The maximum resident set size (KB) = 1742280 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_gfsv17 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/cpld_control_gfsv17 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_gfsv17 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -173,14 +173,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 313.957534 - 0: The maximum resident set size (KB) = 1641600 + 0: The total amount of wall time = 346.988488 + 0: The maximum resident set size (KB) = 1642620 Test 002 cpld_control_gfsv17 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/cpld_control_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -245,14 +245,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 460.913635 - 0: The maximum resident set size (KB) = 1802564 + 0: The total amount of wall time = 517.405113 + 0: The maximum resident set size (KB) = 1794868 Test 003 cpld_control_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/cpld_restart_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -305,14 +305,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 274.416982 - 0: The maximum resident set size (KB) = 1482348 + 0: The total amount of wall time = 294.934858 + 0: The maximum resident set size (KB) = 1502548 Test 004 cpld_restart_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/cpld_control_qr_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -377,14 +377,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 472.350530 - 0: The maximum resident set size (KB) = 1788456 + 0: The total amount of wall time = 525.354246 + 0: The maximum resident set size (KB) = 1789712 Test 005 cpld_control_qr_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/cpld_restart_qr_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -437,14 +437,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 283.341672 - 0: The maximum resident set size (KB) = 1505968 + 0: The total amount of wall time = 320.467184 + 0: The maximum resident set size (KB) = 1521720 Test 006 cpld_restart_qr_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/cpld_2threads_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -497,14 +497,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 482.317559 - 0: The maximum resident set size (KB) = 1991852 + 0: The total amount of wall time = 557.627319 + 0: The maximum resident set size (KB) = 1999088 Test 007 cpld_2threads_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/cpld_decomp_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -557,14 +557,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 463.551854 - 0: The maximum resident set size (KB) = 1759360 + 0: The total amount of wall time = 521.532980 + 0: The maximum resident set size (KB) = 1792032 Test 008 cpld_decomp_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/cpld_mpi_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -617,14 +617,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 393.221188 - 0: The maximum resident set size (KB) = 1721512 + 0: The total amount of wall time = 433.921670 + 0: The maximum resident set size (KB) = 1750316 Test 009 cpld_mpi_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_ciceC_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/cpld_control_ciceC_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_ciceC_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -689,14 +689,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 462.649180 - 0: The maximum resident set size (KB) = 1766824 + 0: The total amount of wall time = 522.104153 + 0: The maximum resident set size (KB) = 1795828 Test 010 cpld_control_ciceC_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_noaero_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/cpld_control_noaero_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_noaero_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/cpld_control_noaero_p8 Checking test 011 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -760,14 +760,14 @@ Checking test 011 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 382.759394 - 0: The maximum resident set size (KB) = 1618992 + 0: The total amount of wall time = 378.359819 + 0: The maximum resident set size (KB) = 1633980 Test 011 cpld_control_noaero_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/cpld_control_nowave_noaero_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_c96_noaero_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/cpld_control_nowave_noaero_p8 Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -829,14 +829,14 @@ Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 393.506939 - 0: The maximum resident set size (KB) = 1672668 + 0: The total amount of wall time = 376.083820 + 0: The maximum resident set size (KB) = 1692480 Test 012 cpld_control_nowave_noaero_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_debug_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/cpld_debug_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_debug_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/cpld_debug_p8 Checking test 013 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -889,14 +889,14 @@ Checking test 013 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 678.276501 - 0: The maximum resident set size (KB) = 1834784 + 0: The total amount of wall time = 709.956525 + 0: The maximum resident set size (KB) = 1828024 Test 013 cpld_debug_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_debug_noaero_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/cpld_debug_noaero_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_debug_noaero_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/cpld_debug_noaero_p8 Checking test 014 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -948,14 +948,14 @@ Checking test 014 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 471.936474 - 0: The maximum resident set size (KB) = 1651300 + 0: The total amount of wall time = 501.742266 + 0: The maximum resident set size (KB) = 1642868 Test 014 cpld_debug_noaero_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/cpld_control_noaero_p8_agrid +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_noaero_p8_agrid +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/cpld_control_noaero_p8_agrid Checking test 015 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1017,14 +1017,14 @@ Checking test 015 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 372.090163 - 0: The maximum resident set size (KB) = 1676432 + 0: The total amount of wall time = 435.565688 + 0: The maximum resident set size (KB) = 1686672 Test 015 cpld_control_noaero_p8_agrid PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_c48 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/cpld_control_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_c48 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/cpld_control_c48 Checking test 016 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1074,14 +1074,14 @@ Checking test 016 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 809.775799 - 0: The maximum resident set size (KB) = 2768872 + 0: The total amount of wall time = 817.942954 + 0: The maximum resident set size (KB) = 2779684 Test 016 cpld_control_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_warmstart_c48 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/cpld_warmstart_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_warmstart_c48 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/cpld_warmstart_c48 Checking test 017 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1131,14 +1131,14 @@ Checking test 017 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 214.065719 - 0: The maximum resident set size (KB) = 2772904 + 0: The total amount of wall time = 228.254645 + 0: The maximum resident set size (KB) = 2775904 Test 017 cpld_warmstart_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_warmstart_c48 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/cpld_restart_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_warmstart_c48 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/cpld_restart_c48 Checking test 018 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1188,14 +1188,14 @@ Checking test 018 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 111.850337 - 0: The maximum resident set size (KB) = 2212920 + 0: The total amount of wall time = 141.593667 + 0: The maximum resident set size (KB) = 2207092 Test 018 cpld_restart_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8_faster -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/cpld_control_p8_faster +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8_faster +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/cpld_control_p8_faster Checking test 019 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1260,14 +1260,14 @@ Checking test 019 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 435.936189 - 0: The maximum resident set size (KB) = 1771464 + 0: The total amount of wall time = 497.858858 + 0: The maximum resident set size (KB) = 1802124 Test 019 cpld_control_p8_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_flake -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_flake +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_flake +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_flake Checking test 020 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1278,14 +1278,14 @@ Checking test 020 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 262.794645 - 0: The maximum resident set size (KB) = 621368 + 0: The total amount of wall time = 283.287610 + 0: The maximum resident set size (KB) = 619928 Test 020 control_flake PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_CubedSphereGrid -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_CubedSphereGrid +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_CubedSphereGrid +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_CubedSphereGrid Checking test 021 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1312,28 +1312,28 @@ Checking test 021 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 183.325936 - 0: The maximum resident set size (KB) = 572088 + 0: The total amount of wall time = 193.275261 + 0: The maximum resident set size (KB) = 572096 Test 021 control_CubedSphereGrid PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_CubedSphereGrid_parallel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_CubedSphereGrid_parallel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_CubedSphereGrid_parallel +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_CubedSphereGrid_parallel Checking test 022 control_CubedSphereGrid_parallel 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 = 181.001583 - 0: The maximum resident set size (KB) = 569440 + 0: The total amount of wall time = 204.634061 + 0: The maximum resident set size (KB) = 568640 Test 022 control_CubedSphereGrid_parallel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_latlon -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_latlon +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_latlon +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_latlon Checking test 023 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1344,14 +1344,14 @@ Checking test 023 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 185.445730 - 0: The maximum resident set size (KB) = 569700 + 0: The total amount of wall time = 210.966707 + 0: The maximum resident set size (KB) = 569512 Test 023 control_latlon PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_wrtGauss_netcdf_parallel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_wrtGauss_netcdf_parallel Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1362,14 +1362,14 @@ Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 192.067737 - 0: The maximum resident set size (KB) = 574104 + 0: The total amount of wall time = 213.313669 + 0: The maximum resident set size (KB) = 571360 Test 024 control_wrtGauss_netcdf_parallel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c48 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_c48 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_c48 Checking test 025 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1408,14 +1408,14 @@ Checking test 025 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 600.300134 -0: The maximum resident set size (KB) = 797164 +0: The total amount of wall time = 597.657548 +0: The maximum resident set size (KB) = 789424 Test 025 control_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c192 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_c192 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_c192 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_c192 Checking test 026 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1426,14 +1426,14 @@ Checking test 026 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 729.495494 - 0: The maximum resident set size (KB) = 689280 + 0: The total amount of wall time = 766.330778 + 0: The maximum resident set size (KB) = 696540 Test 026 control_c192 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c384 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_c384 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_c384 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_c384 Checking test 027 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1444,14 +1444,14 @@ Checking test 027 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 953.364552 - 0: The maximum resident set size (KB) = 1056632 + 0: The total amount of wall time = 961.664217 + 0: The maximum resident set size (KB) = 1052652 Test 027 control_c384 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c384gdas -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_c384gdas +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_c384gdas +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_c384gdas Checking test 028 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1494,14 +1494,14 @@ Checking test 028 control_c384gdas 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 = 806.882990 - 0: The maximum resident set size (KB) = 1195812 + 0: The total amount of wall time = 917.914747 + 0: The maximum resident set size (KB) = 1195872 Test 028 control_c384gdas PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_stochy -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_stochy +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_stochy +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_stochy Checking test 029 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1512,28 +1512,28 @@ Checking test 029 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 124.996708 - 0: The maximum resident set size (KB) = 577528 + 0: The total amount of wall time = 132.079132 + 0: The maximum resident set size (KB) = 577368 Test 029 control_stochy PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_stochy -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_stochy_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_stochy +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_stochy_restart Checking test 030 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 67.167234 - 0: The maximum resident set size (KB) = 395624 + 0: The total amount of wall time = 70.778949 + 0: The maximum resident set size (KB) = 388592 Test 030 control_stochy_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_lndp -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_lndp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_lndp +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_lndp Checking test 031 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1544,14 +1544,14 @@ Checking test 031 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 116.783949 - 0: The maximum resident set size (KB) = 576644 + 0: The total amount of wall time = 131.193705 + 0: The maximum resident set size (KB) = 580092 Test 031 control_lndp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_iovr4 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_iovr4 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_iovr4 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_iovr4 Checking test 032 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1566,14 +1566,14 @@ Checking test 032 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 191.858341 - 0: The maximum resident set size (KB) = 574056 + 0: The total amount of wall time = 218.555812 + 0: The maximum resident set size (KB) = 570856 Test 032 control_iovr4 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_iovr5 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_iovr5 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_iovr5 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_iovr5 Checking test 033 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1588,14 +1588,14 @@ Checking test 033 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 193.486048 - 0: The maximum resident set size (KB) = 568776 + 0: The total amount of wall time = 207.223942 + 0: The maximum resident set size (KB) = 575760 Test 033 control_iovr5 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_p8 Checking test 034 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1642,14 +1642,14 @@ Checking test 034 control_p8 results .... Comparing 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.333284 - 0: The maximum resident set size (KB) = 1535172 + 0: The total amount of wall time = 245.600969 + 0: The maximum resident set size (KB) = 1549288 Test 034 control_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_restart_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_restart_p8 Checking test 035 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1688,14 +1688,14 @@ Checking test 035 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 125.936812 - 0: The maximum resident set size (KB) = 775480 + 0: The total amount of wall time = 125.606028 + 0: The maximum resident set size (KB) = 774268 Test 035 control_restart_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_qr_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_qr_p8 Checking test 036 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1742,14 +1742,14 @@ Checking test 036 control_qr_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 227.698323 - 0: The maximum resident set size (KB) = 1553428 + 0: The total amount of wall time = 249.968478 + 0: The maximum resident set size (KB) = 1549856 Test 036 control_qr_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_restart_qr_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_restart_qr_p8 Checking test 037 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1788,14 +1788,14 @@ Checking test 037 control_restart_qr_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 128.248671 - 0: The maximum resident set size (KB) = 786000 + 0: The total amount of wall time = 137.024450 + 0: The maximum resident set size (KB) = 786128 Test 037 control_restart_qr_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_decomp_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_decomp_p8 Checking test 038 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1838,14 +1838,14 @@ Checking test 038 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 242.843766 - 0: The maximum resident set size (KB) = 1520276 + 0: The total amount of wall time = 247.713086 + 0: The maximum resident set size (KB) = 1535616 Test 038 control_decomp_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_2threads_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_2threads_p8 Checking test 039 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1888,14 +1888,14 @@ Checking test 039 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 220.709903 - 0: The maximum resident set size (KB) = 1618580 + 0: The total amount of wall time = 233.184918 + 0: The maximum resident set size (KB) = 1637468 Test 039 control_2threads_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_lndp -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_p8_lndp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8_lndp +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_p8_lndp Checking test 040 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1914,14 +1914,14 @@ Checking test 040 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 433.201606 - 0: The maximum resident set size (KB) = 1538092 + 0: The total amount of wall time = 467.679592 + 0: The maximum resident set size (KB) = 1535716 Test 040 control_p8_lndp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_rrtmgp -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_p8_rrtmgp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8_rrtmgp +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_p8_rrtmgp Checking test 041 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1968,14 +1968,14 @@ Checking test 041 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 312.953683 - 0: The maximum resident set size (KB) = 1603052 + 0: The total amount of wall time = 326.877007 + 0: The maximum resident set size (KB) = 1603700 Test 041 control_p8_rrtmgp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_mynn -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_p8_mynn +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8_mynn +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_p8_mynn Checking test 042 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2022,14 +2022,14 @@ Checking test 042 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 239.441628 - 0: The maximum resident set size (KB) = 1547556 + 0: The total amount of wall time = 257.830354 + 0: The maximum resident set size (KB) = 1551728 Test 042 control_p8_mynn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/merra2_thompson -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/merra2_thompson +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/merra2_thompson +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/merra2_thompson Checking test 043 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2076,14 +2076,14 @@ Checking test 043 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 263.249363 - 0: The maximum resident set size (KB) = 1553672 + 0: The total amount of wall time = 282.638634 + 0: The maximum resident set size (KB) = 1557664 Test 043 merra2_thompson PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/regional_control +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/regional_control Checking test 044 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2094,28 +2094,28 @@ Checking test 044 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 413.360810 - 0: The maximum resident set size (KB) = 788412 + 0: The total amount of wall time = 452.638046 + 0: The maximum resident set size (KB) = 789792 Test 044 regional_control PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/regional_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/regional_restart Checking test 045 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 209.555979 - 0: The maximum resident set size (KB) = 779272 + 0: The total amount of wall time = 218.834215 + 0: The maximum resident set size (KB) = 776552 Test 045 regional_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/regional_control_qr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/regional_control_qr Checking test 046 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2126,28 +2126,28 @@ Checking test 046 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 416.605911 - 0: The maximum resident set size (KB) = 785212 + 0: The total amount of wall time = 433.579958 + 0: The maximum resident set size (KB) = 787060 Test 046 regional_control_qr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/regional_restart_qr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/regional_restart_qr Checking test 047 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 208.411704 - 0: The maximum resident set size (KB) = 777100 + 0: The total amount of wall time = 219.895042 + 0: The maximum resident set size (KB) = 780284 Test 047 regional_restart_qr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/regional_decomp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/regional_decomp Checking test 048 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2158,14 +2158,14 @@ Checking test 048 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 427.909093 - 0: The maximum resident set size (KB) = 785824 + 0: The total amount of wall time = 477.833754 + 0: The maximum resident set size (KB) = 781792 Test 048 regional_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/regional_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/regional_2threads Checking test 049 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2176,28 +2176,28 @@ Checking test 049 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 249.469019 - 0: The maximum resident set size (KB) = 772600 + 0: The total amount of wall time = 283.848116 + 0: The maximum resident set size (KB) = 770964 Test 049 regional_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/regional_netcdf_parallel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_netcdf_parallel +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/regional_netcdf_parallel Checking test 050 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 404.865096 - 0: The maximum resident set size (KB) = 782088 + 0: The total amount of wall time = 439.942055 + 0: The maximum resident set size (KB) = 786240 Test 050 regional_netcdf_parallel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/regional_2dwrtdecomp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/regional_2dwrtdecomp Checking test 051 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2208,14 +2208,14 @@ Checking test 051 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 414.605749 - 0: The maximum resident set size (KB) = 787940 + 0: The total amount of wall time = 456.301976 + 0: The maximum resident set size (KB) = 790376 Test 051 regional_2dwrtdecomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rap_control +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/rap_control Checking test 052 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2262,14 +2262,14 @@ Checking test 052 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 610.288167 - 0: The maximum resident set size (KB) = 942148 + 0: The total amount of wall time = 633.041396 + 0: The maximum resident set size (KB) = 950208 Test 052 rap_control PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/regional_spp_sppt_shum_skeb +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_spp_sppt_shum_skeb +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/regional_spp_sppt_shum_skeb Checking test 053 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2280,14 +2280,14 @@ Checking test 053 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 324.336886 - 0: The maximum resident set size (KB) = 1091312 + 0: The total amount of wall time = 355.096451 + 0: The maximum resident set size (KB) = 1095472 Test 053 regional_spp_sppt_shum_skeb PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rap_decomp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/rap_decomp Checking test 054 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2334,14 +2334,14 @@ Checking test 054 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 644.454018 - 0: The maximum resident set size (KB) = 951332 + 0: The total amount of wall time = 687.563899 + 0: The maximum resident set size (KB) = 935764 Test 054 rap_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rap_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/rap_2threads Checking test 055 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2388,14 +2388,14 @@ Checking test 055 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 586.540054 - 0: The maximum resident set size (KB) = 1019756 + 0: The total amount of wall time = 633.261298 + 0: The maximum resident set size (KB) = 1025840 Test 055 rap_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rap_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/rap_restart Checking test 056 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2434,14 +2434,14 @@ Checking test 056 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 306.966396 - 0: The maximum resident set size (KB) = 837916 + 0: The total amount of wall time = 331.002332 + 0: The maximum resident set size (KB) = 838564 Test 056 rap_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rap_sfcdiff +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/rap_sfcdiff Checking test 057 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2488,14 +2488,14 @@ Checking test 057 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 629.828883 - 0: The maximum resident set size (KB) = 952908 + 0: The total amount of wall time = 662.833009 + 0: The maximum resident set size (KB) = 952248 Test 057 rap_sfcdiff PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rap_sfcdiff_decomp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/rap_sfcdiff_decomp Checking test 058 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2542,14 +2542,14 @@ Checking test 058 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 663.902491 - 0: The maximum resident set size (KB) = 935340 + 0: The total amount of wall time = 707.154680 + 0: The maximum resident set size (KB) = 935908 Test 058 rap_sfcdiff_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rap_sfcdiff_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/rap_sfcdiff_restart Checking test 059 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2588,14 +2588,14 @@ Checking test 059 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 450.380583 - 0: The maximum resident set size (KB) = 840504 + 0: The total amount of wall time = 477.232329 + 0: The maximum resident set size (KB) = 844148 Test 059 rap_sfcdiff_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/hrrr_control +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/hrrr_control Checking test 060 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2642,14 +2642,14 @@ Checking test 060 hrrr_control results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 575.856688 - 0: The maximum resident set size (KB) = 948880 + 0: The total amount of wall time = 612.289474 + 0: The maximum resident set size (KB) = 951708 Test 060 hrrr_control PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/hrrr_control_decomp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/hrrr_control_decomp Checking test 061 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2696,14 +2696,14 @@ Checking test 061 hrrr_control_decomp results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 597.698194 - 0: The maximum resident set size (KB) = 947104 + 0: The total amount of wall time = 655.192143 + 0: The maximum resident set size (KB) = 938196 Test 061 hrrr_control_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/hrrr_control_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/hrrr_control_2threads Checking test 062 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2750,28 +2750,28 @@ Checking test 062 hrrr_control_2threads results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 529.676992 - 0: The maximum resident set size (KB) = 1014204 + 0: The total amount of wall time = 607.939414 + 0: The maximum resident set size (KB) = 1016512 Test 062 hrrr_control_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/hrrr_control_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/hrrr_control_restart Checking test 063 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 419.873279 - 0: The maximum resident set size (KB) = 835348 + 0: The total amount of wall time = 454.015040 + 0: The maximum resident set size (KB) = 844476 Test 063 hrrr_control_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1beta -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rrfs_v1beta +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_v1beta +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/rrfs_v1beta Checking test 064 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2818,14 +2818,14 @@ Checking test 064 rrfs_v1beta results .... Comparing 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.627808 - 0: The maximum resident set size (KB) = 941236 + 0: The total amount of wall time = 670.108467 + 0: The maximum resident set size (KB) = 946864 Test 064 rrfs_v1beta PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1nssl -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rrfs_v1nssl +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_v1nssl +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/rrfs_v1nssl Checking test 065 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2840,14 +2840,14 @@ Checking test 065 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 731.701665 - 0: The maximum resident set size (KB) = 640248 + 0: The total amount of wall time = 783.915014 + 0: The maximum resident set size (KB) = 638752 Test 065 rrfs_v1nssl PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rrfs_v1nssl_nohailnoccn +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/rrfs_v1nssl_nohailnoccn Checking test 066 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2862,14 +2862,14 @@ Checking test 066 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 724.724002 - 0: The maximum resident set size (KB) = 625836 + 0: The total amount of wall time = 748.073273 + 0: The maximum resident set size (KB) = 634500 Test 066 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/rrfs_smoke_conus13km_hrrr_warm Checking test 067 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2878,14 +2878,14 @@ Checking test 067 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 213.398197 - 0: The maximum resident set size (KB) = 899744 + 0: The total amount of wall time = 212.098558 + 0: The maximum resident set size (KB) = 902596 Test 067 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 068 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2894,14 +2894,14 @@ Checking test 068 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 138.430038 - 0: The maximum resident set size (KB) = 855772 + 0: The total amount of wall time = 152.440972 + 0: The maximum resident set size (KB) = 863364 Test 068 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rrfs_conus13km_hrrr_warm +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/rrfs_conus13km_hrrr_warm Checking test 069 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2910,14 +2910,14 @@ Checking test 069 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 181.042822 - 0: The maximum resident set size (KB) = 870856 + 0: The total amount of wall time = 192.524864 + 0: The maximum resident set size (KB) = 880424 Test 069 rrfs_conus13km_hrrr_warm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/rrfs_smoke_conus13km_radar_tten_warm Checking test 070 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2926,26 +2926,26 @@ Checking test 070 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 215.534797 - 0: The maximum resident set size (KB) = 908076 + 0: The total amount of wall time = 208.642215 + 0: The maximum resident set size (KB) = 903612 Test 070 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 071 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 104.518373 - 0: The maximum resident set size (KB) = 858292 + 0: The total amount of wall time = 100.670222 + 0: The maximum resident set size (KB) = 850668 Test 071 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmg -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_csawmg +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_csawmg +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_csawmg Checking test 072 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2956,14 +2956,14 @@ Checking test 072 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 467.070903 - 0: The maximum resident set size (KB) = 668676 + 0: The total amount of wall time = 497.830202 + 0: The maximum resident set size (KB) = 670060 Test 072 control_csawmg PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmgt -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_csawmgt +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_csawmgt +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_csawmgt Checking test 073 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2974,14 +2974,14 @@ Checking test 073 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 460.767667 - 0: The maximum resident set size (KB) = 662396 + 0: The total amount of wall time = 497.064119 + 0: The maximum resident set size (KB) = 661804 Test 073 control_csawmgt PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_ras -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_ras +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_ras +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_ras Checking test 074 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2992,26 +2992,26 @@ Checking test 074 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 253.575558 - 0: The maximum resident set size (KB) = 636076 + 0: The total amount of wall time = 264.960320 + 0: The maximum resident set size (KB) = 633856 Test 074 control_ras PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wam -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_wam +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_wam +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_wam Checking test 075 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 151.348297 - 0: The maximum resident set size (KB) = 485644 + 0: The total amount of wall time = 172.367358 + 0: The maximum resident set size (KB) = 484880 Test 075 control_wam PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_faster -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_p8_faster +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8_faster +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_p8_faster Checking test 076 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3058,14 +3058,14 @@ Checking test 076 control_p8_faster results .... Comparing 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.848508 - 0: The maximum resident set size (KB) = 1533292 + 0: The total amount of wall time = 233.954892 + 0: The maximum resident set size (KB) = 1547484 Test 076 control_p8_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control_faster -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/regional_control_faster +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control_faster +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/regional_control_faster Checking test 077 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3076,56 +3076,56 @@ Checking test 077 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 376.500598 - 0: The maximum resident set size (KB) = 782416 + 0: The total amount of wall time = 419.520822 + 0: The maximum resident set size (KB) = 786100 Test 077 regional_control_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 078 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 1094.435311 - 0: The maximum resident set size (KB) = 926044 + 0: The total amount of wall time = 1090.825240 + 0: The maximum resident set size (KB) = 933652 Test 078 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 079 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 646.322837 - 0: The maximum resident set size (KB) = 901468 + 0: The total amount of wall time = 642.720381 + 0: The maximum resident set size (KB) = 891784 Test 079 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rrfs_conus13km_hrrr_warm_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/rrfs_conus13km_hrrr_warm_debug Checking test 080 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 970.520617 - 0: The maximum resident set size (KB) = 911488 + 0: The total amount of wall time = 978.823953 + 0: The maximum resident set size (KB) = 913008 Test 080 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_CubedSphereGrid_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_CubedSphereGrid_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_CubedSphereGrid_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_CubedSphereGrid_debug Checking test 081 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3152,348 +3152,348 @@ Checking test 081 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 188.845445 - 0: The maximum resident set size (KB) = 740128 + 0: The total amount of wall time = 199.137380 + 0: The maximum resident set size (KB) = 732456 Test 081 control_CubedSphereGrid_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_wrtGauss_netcdf_parallel_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_wrtGauss_netcdf_parallel_debug Checking test 082 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc ............ALT CHECK......OK + Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 190.609655 - 0: The maximum resident set size (KB) = 734212 + 0: The total amount of wall time = 195.187046 + 0: The maximum resident set size (KB) = 730108 Test 082 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_stochy_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_stochy_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_stochy_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_stochy_debug Checking test 083 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 220.909971 - 0: The maximum resident set size (KB) = 737848 + 0: The total amount of wall time = 214.332489 + 0: The maximum resident set size (KB) = 738380 Test 083 control_stochy_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_lndp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_lndp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_lndp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_lndp_debug Checking test 084 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 194.280409 - 0: The maximum resident set size (KB) = 738424 + 0: The total amount of wall time = 195.234133 + 0: The maximum resident set size (KB) = 737364 Test 084 control_lndp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmg_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_csawmg_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_csawmg_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_csawmg_debug Checking test 085 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 298.656157 - 0: The maximum resident set size (KB) = 784196 + 0: The total amount of wall time = 302.728825 + 0: The maximum resident set size (KB) = 788156 Test 085 control_csawmg_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmgt_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_csawmgt_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_csawmgt_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_csawmgt_debug Checking test 086 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 293.448162 - 0: The maximum resident set size (KB) = 784136 + 0: The total amount of wall time = 302.261076 + 0: The maximum resident set size (KB) = 779096 Test 086 control_csawmgt_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_ras_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_ras_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_ras_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_ras_debug Checking test 087 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 194.307540 - 0: The maximum resident set size (KB) = 747840 + 0: The total amount of wall time = 194.456006 + 0: The maximum resident set size (KB) = 746788 Test 087 control_ras_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_diag_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_diag_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_diag_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_diag_debug Checking test 088 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 198.662418 - 0: The maximum resident set size (KB) = 796572 + 0: The total amount of wall time = 204.262274 + 0: The maximum resident set size (KB) = 794556 Test 088 control_diag_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_debug_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_debug_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_debug_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_debug_p8 Checking test 089 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 216.242562 - 0: The maximum resident set size (KB) = 1563108 + 0: The total amount of wall time = 217.779676 + 0: The maximum resident set size (KB) = 1569732 Test 089 control_debug_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/regional_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/regional_debug Checking test 090 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1283.124413 - 0: The maximum resident set size (KB) = 803428 + 0: The total amount of wall time = 1283.390631 + 0: The maximum resident set size (KB) = 805176 Test 090 regional_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rap_control_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/rap_control_debug Checking test 091 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 351.688578 - 0: The maximum resident set size (KB) = 1107312 + 0: The total amount of wall time = 349.944240 + 0: The maximum resident set size (KB) = 1112380 Test 091 rap_control_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/hrrr_control_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/hrrr_control_debug Checking test 092 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 337.048780 - 0: The maximum resident set size (KB) = 1115648 + 0: The total amount of wall time = 345.863243 + 0: The maximum resident set size (KB) = 1111204 Test 092 hrrr_control_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rap_unified_drag_suite_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/rap_unified_drag_suite_debug Checking test 093 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 348.034688 - 0: The maximum resident set size (KB) = 1118700 + 0: The total amount of wall time = 349.429692 + 0: The maximum resident set size (KB) = 1115456 Test 093 rap_unified_drag_suite_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_diag_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rap_diag_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_diag_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/rap_diag_debug Checking test 094 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 367.564277 - 0: The maximum resident set size (KB) = 1188504 + 0: The total amount of wall time = 382.698280 + 0: The maximum resident set size (KB) = 1188020 Test 094 rap_diag_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rap_cires_ugwp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/rap_cires_ugwp_debug Checking test 095 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 358.310261 - 0: The maximum resident set size (KB) = 1108016 + 0: The total amount of wall time = 371.445420 + 0: The maximum resident set size (KB) = 1105492 Test 095 rap_cires_ugwp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rap_unified_ugwp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/rap_unified_ugwp_debug Checking test 096 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 355.508233 - 0: The maximum resident set size (KB) = 1118208 + 0: The total amount of wall time = 357.830961 + 0: The maximum resident set size (KB) = 1116236 Test 096 rap_unified_ugwp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_lndp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rap_lndp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_lndp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/rap_lndp_debug Checking test 097 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 353.643465 - 0: The maximum resident set size (KB) = 1118112 + 0: The total amount of wall time = 352.095331 + 0: The maximum resident set size (KB) = 1115556 Test 097 rap_lndp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_progcld_thompson_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rap_progcld_thompson_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_progcld_thompson_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/rap_progcld_thompson_debug Checking test 098 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 353.535793 - 0: The maximum resident set size (KB) = 1112304 + 0: The total amount of wall time = 353.818127 + 0: The maximum resident set size (KB) = 1118488 Test 098 rap_progcld_thompson_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_noah_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rap_noah_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_noah_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/rap_noah_debug Checking test 099 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 346.075932 - 0: The maximum resident set size (KB) = 1107892 + 0: The total amount of wall time = 341.267022 + 0: The maximum resident set size (KB) = 1115288 Test 099 rap_noah_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rap_sfcdiff_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_sfcdiff_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/rap_sfcdiff_debug Checking test 100 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 349.787850 - 0: The maximum resident set size (KB) = 1112908 + 0: The total amount of wall time = 357.920119 + 0: The maximum resident set size (KB) = 1109100 Test 100 rap_sfcdiff_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/rap_noah_sfcdiff_cires_ugwp_debug Checking test 101 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 574.978417 - 0: The maximum resident set size (KB) = 1110800 + 0: The total amount of wall time = 591.054065 + 0: The maximum resident set size (KB) = 1115656 Test 101 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1beta_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rrfs_v1beta_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_v1beta_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/rrfs_v1beta_debug Checking test 102 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 345.180218 - 0: The maximum resident set size (KB) = 1112588 + 0: The total amount of wall time = 349.498801 + 0: The maximum resident set size (KB) = 1105944 Test 102 rrfs_v1beta_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_clm_lake_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rap_clm_lake_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_clm_lake_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/rap_clm_lake_debug Checking test 103 rap_clm_lake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 430.576959 - 0: The maximum resident set size (KB) = 1108728 + 0: The total amount of wall time = 426.212923 + 0: The maximum resident set size (KB) = 1117824 Test 103 rap_clm_lake_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_flake_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rap_flake_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_flake_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/rap_flake_debug Checking test 104 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 349.949057 - 0: The maximum resident set size (KB) = 1114896 + 0: The total amount of wall time = 361.638407 + 0: The maximum resident set size (KB) = 1104652 Test 104 rap_flake_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wam_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_wam_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_wam_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_wam_debug Checking test 105 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 357.278859 - 0: The maximum resident set size (KB) = 431760 + 0: The total amount of wall time = 362.444727 + 0: The maximum resident set size (KB) = 438436 Test 105 control_wam_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3504,14 +3504,14 @@ Checking test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 303.593187 - 0: The maximum resident set size (KB) = 982856 + 0: The total amount of wall time = 313.087911 + 0: The maximum resident set size (KB) = 989660 Test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rap_control_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/rap_control_dyn32_phy32 Checking test 107 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3558,14 +3558,14 @@ Checking test 107 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 521.934805 - 0: The maximum resident set size (KB) = 842400 + 0: The total amount of wall time = 558.361398 + 0: The maximum resident set size (KB) = 851680 Test 107 rap_control_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/hrrr_control_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/hrrr_control_dyn32_phy32 Checking test 108 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3612,14 +3612,14 @@ Checking test 108 hrrr_control_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 253.376551 - 0: The maximum resident set size (KB) = 837404 + 0: The total amount of wall time = 271.495415 + 0: The maximum resident set size (KB) = 826040 Test 108 hrrr_control_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rap_2threads_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/rap_2threads_dyn32_phy32 Checking test 109 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3666,14 +3666,14 @@ Checking test 109 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 507.916355 - 0: The maximum resident set size (KB) = 887188 + 0: The total amount of wall time = 534.849164 + 0: The maximum resident set size (KB) = 888856 Test 109 rap_2threads_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/hrrr_control_2threads_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/hrrr_control_2threads_dyn32_phy32 Checking test 110 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3720,14 +3720,14 @@ Checking test 110 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 235.524657 - 0: The maximum resident set size (KB) = 875692 + 0: The total amount of wall time = 276.089020 + 0: The maximum resident set size (KB) = 872812 Test 110 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/hrrr_control_decomp_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/hrrr_control_decomp_dyn32_phy32 Checking test 111 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3774,14 +3774,14 @@ Checking test 111 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 266.245197 - 0: The maximum resident set size (KB) = 830620 + 0: The total amount of wall time = 301.610242 + 0: The maximum resident set size (KB) = 830692 Test 111 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rap_restart_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/rap_restart_dyn32_phy32 Checking test 112 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3820,28 +3820,28 @@ Checking test 112 rap_restart_dyn32_phy32 results .... Comparing 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.406964 - 0: The maximum resident set size (KB) = 802484 + 0: The total amount of wall time = 412.353729 + 0: The maximum resident set size (KB) = 816296 Test 112 rap_restart_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/hrrr_control_restart_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/hrrr_control_restart_dyn32_phy32 Checking test 113 hrrr_control_restart_dyn32_phy32 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.231682 - 0: The maximum resident set size (KB) = 765968 + 0: The total amount of wall time = 141.235264 + 0: The maximum resident set size (KB) = 769964 Test 113 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn64_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rap_control_dyn64_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_dyn64_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/rap_control_dyn64_phy32 Checking test 114 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3888,81 +3888,81 @@ Checking test 114 rap_control_dyn64_phy32 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 = 326.945626 - 0: The maximum resident set size (KB) = 860840 + 0: The total amount of wall time = 361.444578 + 0: The maximum resident set size (KB) = 870852 Test 114 rap_control_dyn64_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rap_control_debug_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/rap_control_debug_dyn32_phy32 Checking test 115 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 343.497872 - 0: The maximum resident set size (KB) = 1002776 + 0: The total amount of wall time = 346.452959 + 0: The maximum resident set size (KB) = 1004128 Test 115 rap_control_debug_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/hrrr_control_debug_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/hrrr_control_debug_dyn32_phy32 Checking test 116 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 336.339484 - 0: The maximum resident set size (KB) = 996172 + 0: The total amount of wall time = 342.990211 + 0: The maximum resident set size (KB) = 995632 Test 116 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rap_control_dyn64_phy32_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/rap_control_dyn64_phy32_debug Checking test 117 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 349.995564 - 0: The maximum resident set size (KB) = 1033404 + 0: The total amount of wall time = 357.541362 + 0: The maximum resident set size (KB) = 1030012 Test 117 rap_control_dyn64_phy32_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/hafs_regional_atm +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_atm +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/hafs_regional_atm Checking test 118 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 347.296756 - 0: The maximum resident set size (KB) = 1215948 + 0: The total amount of wall time = 379.711247 + 0: The maximum resident set size (KB) = 1210420 Test 118 hafs_regional_atm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/hafs_regional_atm_thompson_gfdlsf +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/hafs_regional_atm_thompson_gfdlsf Checking test 119 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 421.390908 - 0: The maximum resident set size (KB) = 1501860 + 0: The total amount of wall time = 624.106546 + 0: The maximum resident set size (KB) = 1582660 Test 119 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_ocn -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/hafs_regional_atm_ocn +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_atm_ocn +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/hafs_regional_atm_ocn Checking test 120 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3971,14 +3971,14 @@ Checking test 120 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 520.581187 - 0: The maximum resident set size (KB) = 1295728 + 0: The total amount of wall time = 574.704082 + 0: The maximum resident set size (KB) = 1293420 Test 120 hafs_regional_atm_ocn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_wav -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/hafs_regional_atm_wav +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_atm_wav +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/hafs_regional_atm_wav Checking test 121 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3987,14 +3987,14 @@ Checking test 121 hafs_regional_atm_wav 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 = 938.823522 - 0: The maximum resident set size (KB) = 1329032 + 0: The total amount of wall time = 1009.359355 + 0: The maximum resident set size (KB) = 1324368 Test 121 hafs_regional_atm_wav PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/hafs_regional_atm_ocn_wav +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_atm_ocn_wav +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/hafs_regional_atm_ocn_wav Checking test 122 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4005,14 +4005,14 @@ Checking test 122 hafs_regional_atm_ocn_wav 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 = 1051.824401 - 0: The maximum resident set size (KB) = 1344376 + 0: The total amount of wall time = 1119.573803 + 0: The maximum resident set size (KB) = 1367592 Test 122 hafs_regional_atm_ocn_wav PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_docn -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/hafs_regional_docn +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_docn +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/hafs_regional_docn Checking test 123 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4020,14 +4020,14 @@ Checking test 123 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 495.646533 - 0: The maximum resident set size (KB) = 1304332 + 0: The total amount of wall time = 564.743252 + 0: The maximum resident set size (KB) = 1312780 Test 123 hafs_regional_docn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_docn_oisst -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/hafs_regional_docn_oisst +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_docn_oisst +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/hafs_regional_docn_oisst Checking test 124 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4035,118 +4035,118 @@ Checking test 124 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 498.988962 - 0: The maximum resident set size (KB) = 1294684 + 0: The total amount of wall time = 591.793717 + 0: The maximum resident set size (KB) = 1254356 Test 124 hafs_regional_docn_oisst PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/datm_cdeps_control_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/datm_cdeps_control_cfsr Checking test 125 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 212.663901 - 0: The maximum resident set size (KB) = 958292 + 0: The total amount of wall time = 231.812946 + 0: The maximum resident set size (KB) = 957852 Test 125 datm_cdeps_control_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/datm_cdeps_restart_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/datm_cdeps_restart_cfsr Checking test 126 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 127.258548 - 0: The maximum resident set size (KB) = 934296 + 0: The total amount of wall time = 136.750067 + 0: The maximum resident set size (KB) = 931568 Test 126 datm_cdeps_restart_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/datm_cdeps_control_gefs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_control_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/datm_cdeps_control_gefs Checking test 127 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 206.392628 - 0: The maximum resident set size (KB) = 858296 + 0: The total amount of wall time = 228.749126 + 0: The maximum resident set size (KB) = 870160 Test 127 datm_cdeps_control_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_iau_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/datm_cdeps_iau_gefs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_iau_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/datm_cdeps_iau_gefs Checking test 128 datm_cdeps_iau_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 208.407964 - 0: The maximum resident set size (KB) = 858852 + 0: The total amount of wall time = 232.512475 + 0: The maximum resident set size (KB) = 864664 Test 128 datm_cdeps_iau_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_stochy_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/datm_cdeps_stochy_gefs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_stochy_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/datm_cdeps_stochy_gefs Checking test 129 datm_cdeps_stochy_gefs 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 = 209.977541 - 0: The maximum resident set size (KB) = 857884 + 0: The total amount of wall time = 226.582106 + 0: The maximum resident set size (KB) = 863728 Test 129 datm_cdeps_stochy_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/datm_cdeps_ciceC_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_ciceC_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/datm_cdeps_ciceC_cfsr Checking test 130 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 212.994436 - 0: The maximum resident set size (KB) = 966324 + 0: The total amount of wall time = 220.983498 + 0: The maximum resident set size (KB) = 962308 Test 130 datm_cdeps_ciceC_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/datm_cdeps_bulk_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_bulk_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/datm_cdeps_bulk_cfsr Checking test 131 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 212.812762 - 0: The maximum resident set size (KB) = 972908 + 0: The total amount of wall time = 235.659184 + 0: The maximum resident set size (KB) = 963828 Test 131 datm_cdeps_bulk_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/datm_cdeps_bulk_gefs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_bulk_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/datm_cdeps_bulk_gefs Checking test 132 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 206.959867 - 0: The maximum resident set size (KB) = 863416 + 0: The total amount of wall time = 221.018029 + 0: The maximum resident set size (KB) = 861728 Test 132 datm_cdeps_bulk_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/datm_cdeps_mx025_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_mx025_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/datm_cdeps_mx025_cfsr Checking test 133 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4155,14 +4155,14 @@ Checking test 133 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 565.061457 - 0: The maximum resident set size (KB) = 759928 + 0: The total amount of wall time = 593.589931 + 0: The maximum resident set size (KB) = 764252 Test 133 datm_cdeps_mx025_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/datm_cdeps_mx025_gefs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_mx025_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/datm_cdeps_mx025_gefs Checking test 134 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4171,77 +4171,77 @@ Checking test 134 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 560.479713 - 0: The maximum resident set size (KB) = 733920 + 0: The total amount of wall time = 578.709366 + 0: The maximum resident set size (KB) = 734056 Test 134 datm_cdeps_mx025_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/datm_cdeps_multiple_files_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/datm_cdeps_multiple_files_cfsr Checking test 135 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 210.775143 - 0: The maximum resident set size (KB) = 975596 + 0: The total amount of wall time = 244.504062 + 0: The maximum resident set size (KB) = 964732 Test 135 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/datm_cdeps_3072x1536_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/datm_cdeps_3072x1536_cfsr Checking test 136 datm_cdeps_3072x1536_cfsr 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 = 285.275057 - 0: The maximum resident set size (KB) = 2257540 + 0: The total amount of wall time = 368.595582 + 0: The maximum resident set size (KB) = 2197032 Test 136 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_gfs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/datm_cdeps_gfs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_gfs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/datm_cdeps_gfs Checking test 137 datm_cdeps_gfs 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 = 286.896573 - 0: The maximum resident set size (KB) = 2251288 + 0: The total amount of wall time = 350.333371 + 0: The maximum resident set size (KB) = 2247944 Test 137 datm_cdeps_gfs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_debug_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/datm_cdeps_debug_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_debug_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/datm_cdeps_debug_cfsr Checking test 138 datm_cdeps_debug_cfsr 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 = 465.978073 - 0: The maximum resident set size (KB) = 910692 + 0: The total amount of wall time = 465.212073 + 0: The maximum resident set size (KB) = 921776 Test 138 datm_cdeps_debug_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_cfsr_faster -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/datm_cdeps_control_cfsr_faster +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_control_cfsr_faster +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/datm_cdeps_control_cfsr_faster Checking test 139 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.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 = 215.326588 - 0: The maximum resident set size (KB) = 964060 + 0: The total amount of wall time = 243.328336 + 0: The maximum resident set size (KB) = 970052 Test 139 datm_cdeps_control_cfsr_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/datm_cdeps_lnd_gswp3 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/datm_cdeps_lnd_gswp3 Checking test 140 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4250,14 +4250,14 @@ Checking test 140 datm_cdeps_lnd_gswp3 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.941528 - 0: The maximum resident set size (KB) = 246064 + 0: The total amount of wall time = 24.762284 + 0: The maximum resident set size (KB) = 247500 Test 140 datm_cdeps_lnd_gswp3 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/datm_cdeps_lnd_gswp3_rst +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/datm_cdeps_lnd_gswp3_rst Checking test 141 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4266,14 +4266,14 @@ Checking test 141 datm_cdeps_lnd_gswp3_rst 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 = 19.761578 - 0: The maximum resident set size (KB) = 243624 + 0: The total amount of wall time = 32.783523 + 0: The maximum resident set size (KB) = 250072 Test 141 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_atmlnd_sbs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_p8_atmlnd_sbs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8_atmlnd_sbs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_p8_atmlnd_sbs Checking test 142 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4358,14 +4358,14 @@ Checking test 142 control_p8_atmlnd_sbs 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 = 290.219215 - 0: The maximum resident set size (KB) = 1584776 + 0: The total amount of wall time = 338.483756 + 0: The maximum resident set size (KB) = 1592584 Test 142 control_p8_atmlnd_sbs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/atmwav_control_noaero_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/atmwav_control_noaero_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/atmwav_control_noaero_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/atmwav_control_noaero_p8 Checking test 143 atmwav_control_noaero_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4408,14 +4408,14 @@ Checking test 143 atmwav_control_noaero_p8 results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 130.869141 - 0: The maximum resident set size (KB) = 1556860 + 0: The total amount of wall time = 133.450504 + 0: The maximum resident set size (KB) = 1565248 Test 143 atmwav_control_noaero_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_atmwav -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_atmwav +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_atmwav +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_atmwav Checking test 144 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4459,14 +4459,14 @@ Checking test 144 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 120.965962 - 0: The maximum resident set size (KB) = 598244 + 0: The total amount of wall time = 124.797638 + 0: The maximum resident set size (KB) = 596796 Test 144 control_atmwav PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/atmaero_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/atmaero_control_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/atmaero_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/atmaero_control_p8 Checking test 145 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4510,14 +4510,14 @@ Checking test 145 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 310.451822 - 0: The maximum resident set size (KB) = 1636900 + 0: The total amount of wall time = 387.358303 + 0: The maximum resident set size (KB) = 1654788 Test 145 atmaero_control_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/atmaero_control_p8_rad -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/atmaero_control_p8_rad +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/atmaero_control_p8_rad +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/atmaero_control_p8_rad Checking test 146 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4561,14 +4561,14 @@ Checking test 146 atmaero_control_p8_rad results .... Comparing 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.059363 - 0: The maximum resident set size (KB) = 1682180 + 0: The total amount of wall time = 447.647854 + 0: The maximum resident set size (KB) = 1661176 Test 146 atmaero_control_p8_rad PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/atmaero_control_p8_rad_micro +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/atmaero_control_p8_rad_micro +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/atmaero_control_p8_rad_micro Checking test 147 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4612,12 +4612,12 @@ Checking test 147 atmaero_control_p8_rad_micro results .... Comparing 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.022397 - 0: The maximum resident set size (KB) = 1684424 + 0: The total amount of wall time = 447.623830 + 0: The maximum resident set size (KB) = 1687464 Test 147 atmaero_control_p8_rad_micro PASS REGRESSION TEST WAS SUCCESSFUL -Fri May 5 22:02:09 UTC 2023 -Elapsed time: 02h:58m:26s. Have a nice day! +Thu May 11 01:34:59 UTC 2023 +Elapsed time: 03h:08m:09s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index eb808b39172..eb4d57ee0d9 100755 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,43 +1,43 @@ -Fri May 5 07:52:08 CDT 2023 +Wed May 10 18:27:30 CDT 2023 Start Regression test -Compile 001 elapsed time 727 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 784 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 737 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 252 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 231 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 672 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 678 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 848 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 697 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 010 elapsed time 659 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 591 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 579 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 789 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 806 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 739 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 298 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 259 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 632 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 715 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 889 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 693 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 010 elapsed time 665 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 610 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 609 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile 013 elapsed time 744 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 234 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 015 elapsed time 222 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 610 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 240 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 015 elapsed time 217 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 579 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile 017 elapsed time 576 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 228 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 230 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 655 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 021 elapsed time 213 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 768 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 642 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 024 elapsed time 202 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 124 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 207 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 52 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 615 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 644 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 620 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 552 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 582 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 033 elapsed time 224 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 034 elapsed time 673 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8_mixedmode -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/cpld_control_p8_mixedmode +Compile 018 elapsed time 211 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 212 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 582 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 260 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 742 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 651 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 024 elapsed time 232 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 131 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 190 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 55 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 620 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 628 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 621 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 596 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 592 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 033 elapsed time 172 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 034 elapsed time 624 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8_mixedmode +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -102,14 +102,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 307.548649 - 0: The maximum resident set size (KB) = 3139896 + 0: The total amount of wall time = 304.783444 + 0: The maximum resident set size (KB) = 3138032 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_gfsv17 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/cpld_control_gfsv17 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_gfsv17 +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -173,14 +173,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 232.241227 - 0: The maximum resident set size (KB) = 1720856 + 0: The total amount of wall time = 226.117366 + 0: The maximum resident set size (KB) = 1729428 Test 002 cpld_control_gfsv17 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/cpld_control_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -245,14 +245,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 357.914099 - 0: The maximum resident set size (KB) = 3177288 + 0: The total amount of wall time = 342.728577 + 0: The maximum resident set size (KB) = 3178920 Test 003 cpld_control_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/cpld_restart_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -305,14 +305,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 202.296976 - 0: The maximum resident set size (KB) = 3047632 + 0: The total amount of wall time = 201.357250 + 0: The maximum resident set size (KB) = 3043440 Test 004 cpld_restart_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/cpld_control_qr_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -377,14 +377,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 360.179599 - 0: The maximum resident set size (KB) = 3188064 + 0: The total amount of wall time = 347.144214 + 0: The maximum resident set size (KB) = 3192532 Test 005 cpld_control_qr_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/cpld_restart_qr_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -437,14 +437,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 208.385827 - 0: The maximum resident set size (KB) = 3058176 + 0: The total amount of wall time = 209.595476 + 0: The maximum resident set size (KB) = 3060468 Test 006 cpld_restart_qr_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/cpld_2threads_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -497,14 +497,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 409.268482 - 0: The maximum resident set size (KB) = 3520716 + 0: The total amount of wall time = 399.097572 + 0: The maximum resident set size (KB) = 3508500 Test 007 cpld_2threads_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/cpld_decomp_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -557,14 +557,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 355.210028 - 0: The maximum resident set size (KB) = 3173276 + 0: The total amount of wall time = 344.196890 + 0: The maximum resident set size (KB) = 3167584 Test 008 cpld_decomp_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/cpld_mpi_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -617,14 +617,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 300.078595 - 0: The maximum resident set size (KB) = 3014876 + 0: The total amount of wall time = 286.305768 + 0: The maximum resident set size (KB) = 3027836 Test 009 cpld_mpi_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_ciceC_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/cpld_control_ciceC_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_ciceC_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -689,14 +689,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 356.780353 - 0: The maximum resident set size (KB) = 3188632 + 0: The total amount of wall time = 341.148062 + 0: The maximum resident set size (KB) = 3175780 Test 010 cpld_control_ciceC_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/cpld_control_c192_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_c192_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/cpld_control_c192_p8 Checking test 011 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -749,14 +749,14 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 647.009273 - 0: The maximum resident set size (KB) = 3263292 + 0: The total amount of wall time = 633.885372 + 0: The maximum resident set size (KB) = 3260216 Test 011 cpld_control_c192_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/cpld_restart_c192_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_c192_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/cpld_restart_c192_p8 Checking test 012 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -809,14 +809,14 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 468.804715 - 0: The maximum resident set size (KB) = 3158964 + 0: The total amount of wall time = 439.684514 + 0: The maximum resident set size (KB) = 3165200 Test 012 cpld_restart_c192_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_bmark_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/cpld_bmark_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_bmark_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/cpld_bmark_p8 Checking test 013 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -864,14 +864,14 @@ Checking test 013 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 873.910371 - 0: The maximum resident set size (KB) = 4028124 + 0: The total amount of wall time = 869.455527 + 0: The maximum resident set size (KB) = 4040208 Test 013 cpld_bmark_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_bmark_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/cpld_restart_bmark_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_bmark_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/cpld_restart_bmark_p8 Checking test 014 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -919,14 +919,14 @@ Checking test 014 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 558.280717 - 0: The maximum resident set size (KB) = 3977876 + 0: The total amount of wall time = 554.528805 + 0: The maximum resident set size (KB) = 3974708 Test 014 cpld_restart_bmark_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_noaero_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/cpld_control_noaero_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_noaero_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/cpld_control_noaero_p8 Checking test 015 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -990,14 +990,14 @@ Checking test 015 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 257.305183 - 0: The maximum resident set size (KB) = 1720788 + 0: The total amount of wall time = 257.114752 + 0: The maximum resident set size (KB) = 1729680 Test 015 cpld_control_noaero_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_c96_noaero_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/cpld_control_nowave_noaero_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_c96_noaero_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/cpld_control_nowave_noaero_p8 Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1059,14 +1059,14 @@ Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 260.432685 - 0: The maximum resident set size (KB) = 1760224 + 0: The total amount of wall time = 258.990910 + 0: The maximum resident set size (KB) = 1772120 Test 016 cpld_control_nowave_noaero_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_debug_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/cpld_debug_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_debug_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/cpld_debug_p8 Checking test 017 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1119,14 +1119,14 @@ Checking test 017 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 555.601098 - 0: The maximum resident set size (KB) = 3240692 + 0: The total amount of wall time = 556.966036 + 0: The maximum resident set size (KB) = 3242056 Test 017 cpld_debug_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_debug_noaero_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/cpld_debug_noaero_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_debug_noaero_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/cpld_debug_noaero_p8 Checking test 018 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1178,14 +1178,14 @@ Checking test 018 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 377.061931 - 0: The maximum resident set size (KB) = 1744384 + 0: The total amount of wall time = 380.998458 + 0: The maximum resident set size (KB) = 1741760 Test 018 cpld_debug_noaero_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_noaero_p8_agrid -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/cpld_control_noaero_p8_agrid +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_noaero_p8_agrid +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/cpld_control_noaero_p8_agrid Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1247,14 +1247,14 @@ Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 270.702443 - 0: The maximum resident set size (KB) = 1759696 + 0: The total amount of wall time = 268.288870 + 0: The maximum resident set size (KB) = 1766896 Test 019 cpld_control_noaero_p8_agrid PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_c48 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/cpld_control_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/cpld_control_c48 Checking test 020 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1304,14 +1304,14 @@ Checking test 020 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 506.490802 - 0: The maximum resident set size (KB) = 2812488 + 0: The total amount of wall time = 507.619710 + 0: The maximum resident set size (KB) = 2750000 Test 020 cpld_control_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_warmstart_c48 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/cpld_warmstart_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_warmstart_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/cpld_warmstart_c48 Checking test 021 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1361,14 +1361,14 @@ Checking test 021 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 139.360241 - 0: The maximum resident set size (KB) = 2809168 + 0: The total amount of wall time = 140.884138 + 0: The maximum resident set size (KB) = 2800672 Test 021 cpld_warmstart_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_warmstart_c48 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/cpld_restart_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_warmstart_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/cpld_restart_c48 Checking test 022 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1418,14 +1418,14 @@ Checking test 022 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 76.010560 - 0: The maximum resident set size (KB) = 2250096 + 0: The total amount of wall time = 78.571464 + 0: The maximum resident set size (KB) = 2186136 Test 022 cpld_restart_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/cpld_control_p8_faster +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/cpld_control_p8_faster Checking test 023 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1490,14 +1490,14 @@ Checking test 023 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 327.169150 - 0: The maximum resident set size (KB) = 3184968 + 0: The total amount of wall time = 324.852593 + 0: The maximum resident set size (KB) = 3190676 Test 023 cpld_control_p8_faster PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_flake -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_flake +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_flake +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_flake Checking test 024 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1508,14 +1508,14 @@ Checking test 024 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 197.381963 - 0: The maximum resident set size (KB) = 682792 + 0: The total amount of wall time = 193.680674 + 0: The maximum resident set size (KB) = 680176 Test 024 control_flake PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_CubedSphereGrid -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_CubedSphereGrid +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_CubedSphereGrid +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_CubedSphereGrid Checking test 025 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1542,28 +1542,28 @@ Checking test 025 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 132.555403 - 0: The maximum resident set size (KB) = 638180 + 0: The total amount of wall time = 131.602900 + 0: The maximum resident set size (KB) = 634836 Test 025 control_CubedSphereGrid PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_CubedSphereGrid_parallel -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_CubedSphereGrid_parallel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_CubedSphereGrid_parallel +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_CubedSphereGrid_parallel Checking test 026 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK + Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 129.343668 - 0: The maximum resident set size (KB) = 628436 + 0: The total amount of wall time = 128.035564 + 0: The maximum resident set size (KB) = 632468 Test 026 control_CubedSphereGrid_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_latlon -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_latlon +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_latlon +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_latlon Checking test 027 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1574,14 +1574,14 @@ Checking test 027 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.839770 - 0: The maximum resident set size (KB) = 632208 + 0: The total amount of wall time = 135.521712 + 0: The maximum resident set size (KB) = 631084 Test 027 control_latlon PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wrtGauss_netcdf_parallel -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_wrtGauss_netcdf_parallel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_wrtGauss_netcdf_parallel +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_wrtGauss_netcdf_parallel Checking test 028 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1592,14 +1592,14 @@ Checking test 028 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 137.458043 - 0: The maximum resident set size (KB) = 628664 + 0: The total amount of wall time = 137.496390 + 0: The maximum resident set size (KB) = 634172 Test 028 control_wrtGauss_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c48 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_c48 Checking test 029 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1638,14 +1638,14 @@ Checking test 029 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 344.387035 -0: The maximum resident set size (KB) = 826364 +0: The total amount of wall time = 347.311052 +0: The maximum resident set size (KB) = 819488 Test 029 control_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c192 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_c192 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_c192 +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_c192 Checking test 030 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1656,14 +1656,14 @@ Checking test 030 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 527.800311 - 0: The maximum resident set size (KB) = 765032 + 0: The total amount of wall time = 524.307000 + 0: The maximum resident set size (KB) = 762468 Test 030 control_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c384 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_c384 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_c384 +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_c384 Checking test 031 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1674,14 +1674,14 @@ Checking test 031 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 631.923186 - 0: The maximum resident set size (KB) = 1235784 + 0: The total amount of wall time = 576.098833 + 0: The maximum resident set size (KB) = 1236168 Test 031 control_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c384gdas -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_c384gdas +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_c384gdas +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_c384gdas Checking test 032 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1724,14 +1724,14 @@ Checking test 032 control_c384gdas 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 = 563.613496 - 0: The maximum resident set size (KB) = 1344236 + 0: The total amount of wall time = 508.039881 + 0: The maximum resident set size (KB) = 1338172 Test 032 control_c384gdas PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_stochy -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_stochy +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_stochy +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_stochy Checking test 033 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1742,28 +1742,28 @@ Checking test 033 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 89.376188 - 0: The maximum resident set size (KB) = 633812 + 0: The total amount of wall time = 88.560396 + 0: The maximum resident set size (KB) = 636520 Test 033 control_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_stochy -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_stochy_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_stochy +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_stochy_restart Checking test 034 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 48.065242 - 0: The maximum resident set size (KB) = 481184 + 0: The total amount of wall time = 47.662982 + 0: The maximum resident set size (KB) = 487224 Test 034 control_stochy_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_lndp -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_lndp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_lndp +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_lndp Checking test 035 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1774,14 +1774,14 @@ Checking test 035 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 81.396312 - 0: The maximum resident set size (KB) = 633560 + 0: The total amount of wall time = 82.219534 + 0: The maximum resident set size (KB) = 634300 Test 035 control_lndp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_iovr4 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_iovr4 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_iovr4 +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_iovr4 Checking test 036 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1796,14 +1796,14 @@ Checking test 036 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.397578 - 0: The maximum resident set size (KB) = 631192 + 0: The total amount of wall time = 136.043330 + 0: The maximum resident set size (KB) = 633416 Test 036 control_iovr4 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_iovr5 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_iovr5 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_iovr5 +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_iovr5 Checking test 037 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1818,14 +1818,14 @@ Checking test 037 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.675043 - 0: The maximum resident set size (KB) = 634052 + 0: The total amount of wall time = 136.516053 + 0: The maximum resident set size (KB) = 633660 Test 037 control_iovr5 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_p8 Checking test 038 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1872,14 +1872,14 @@ Checking test 038 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 173.210018 - 0: The maximum resident set size (KB) = 1599508 + 0: The total amount of wall time = 168.584653 + 0: The maximum resident set size (KB) = 1603736 Test 038 control_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_restart_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_restart_p8 Checking test 039 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1918,14 +1918,14 @@ Checking test 039 control_restart_p8 results .... Comparing 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.870671 - 0: The maximum resident set size (KB) = 882340 + 0: The total amount of wall time = 89.698370 + 0: The maximum resident set size (KB) = 875464 Test 039 control_restart_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_qr_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_qr_p8 Checking test 040 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1972,14 +1972,14 @@ Checking test 040 control_qr_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 173.289049 - 0: The maximum resident set size (KB) = 1608020 + 0: The total amount of wall time = 168.289973 + 0: The maximum resident set size (KB) = 1613960 Test 040 control_qr_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_restart_qr_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_restart_qr_p8 Checking test 041 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2018,14 +2018,14 @@ Checking test 041 control_restart_qr_p8 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.708427 - 0: The maximum resident set size (KB) = 874988 + 0: The total amount of wall time = 91.122871 + 0: The maximum resident set size (KB) = 866400 Test 041 control_restart_qr_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_decomp_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_decomp_p8 Checking test 042 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2068,14 +2068,14 @@ Checking test 042 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 178.654045 - 0: The maximum resident set size (KB) = 1597396 + 0: The total amount of wall time = 175.274627 + 0: The maximum resident set size (KB) = 1589308 Test 042 control_decomp_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_2threads_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_2threads_p8 Checking test 043 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2118,14 +2118,14 @@ Checking test 043 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 180.308877 - 0: The maximum resident set size (KB) = 1701376 + 0: The total amount of wall time = 176.512441 + 0: The maximum resident set size (KB) = 1697292 Test 043 control_2threads_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_lndp -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_p8_lndp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8_lndp +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_p8_lndp Checking test 044 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2144,14 +2144,14 @@ Checking test 044 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 311.614121 - 0: The maximum resident set size (KB) = 1613840 + 0: The total amount of wall time = 313.563192 + 0: The maximum resident set size (KB) = 1596964 Test 044 control_p8_lndp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_rrtmgp -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_p8_rrtmgp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8_rrtmgp +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_p8_rrtmgp Checking test 045 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2198,14 +2198,14 @@ Checking test 045 control_p8_rrtmgp results .... Comparing 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.532895 - 0: The maximum resident set size (KB) = 1679000 + 0: The total amount of wall time = 228.091853 + 0: The maximum resident set size (KB) = 1671420 Test 045 control_p8_rrtmgp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_mynn -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_p8_mynn +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8_mynn +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_p8_mynn Checking test 046 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2252,14 +2252,14 @@ Checking test 046 control_p8_mynn results .... Comparing 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.067298 - 0: The maximum resident set size (KB) = 1608360 + 0: The total amount of wall time = 170.963104 + 0: The maximum resident set size (KB) = 1609112 Test 046 control_p8_mynn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/merra2_thompson -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/merra2_thompson +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/merra2_thompson +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/merra2_thompson Checking test 047 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2306,14 +2306,14 @@ Checking test 047 merra2_thompson results .... Comparing 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.554459 - 0: The maximum resident set size (KB) = 1615092 + 0: The total amount of wall time = 190.082642 + 0: The maximum resident set size (KB) = 1617172 Test 047 merra2_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/regional_control +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/regional_control Checking test 048 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2324,28 +2324,28 @@ Checking test 048 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 298.280553 - 0: The maximum resident set size (KB) = 872800 + 0: The total amount of wall time = 296.189199 + 0: The maximum resident set size (KB) = 870364 Test 048 regional_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/regional_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/regional_restart Checking test 049 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 152.991268 - 0: The maximum resident set size (KB) = 864688 + 0: The total amount of wall time = 152.240385 + 0: The maximum resident set size (KB) = 866668 Test 049 regional_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/regional_control_qr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/regional_control_qr Checking test 050 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2356,28 +2356,28 @@ Checking test 050 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 299.385670 - 0: The maximum resident set size (KB) = 871728 + 0: The total amount of wall time = 297.388733 + 0: The maximum resident set size (KB) = 870316 Test 050 regional_control_qr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/regional_restart_qr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/regional_restart_qr Checking test 051 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 152.305174 - 0: The maximum resident set size (KB) = 863752 + 0: The total amount of wall time = 151.383685 + 0: The maximum resident set size (KB) = 865768 Test 051 regional_restart_qr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/regional_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/regional_decomp Checking test 052 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2388,14 +2388,14 @@ Checking test 052 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 315.880143 - 0: The maximum resident set size (KB) = 864372 + 0: The total amount of wall time = 313.666154 + 0: The maximum resident set size (KB) = 866664 Test 052 regional_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/regional_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/regional_2threads Checking test 053 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2406,14 +2406,14 @@ Checking test 053 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 207.590165 - 0: The maximum resident set size (KB) = 851968 + 0: The total amount of wall time = 206.972686 + 0: The maximum resident set size (KB) = 850944 Test 053 regional_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_noquilt -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/regional_noquilt +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_noquilt +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/regional_noquilt Checking test 054 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2421,28 +2421,28 @@ Checking test 054 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 317.554266 - 0: The maximum resident set size (KB) = 861256 + 0: The total amount of wall time = 315.453502 + 0: The maximum resident set size (KB) = 857224 Test 054 regional_noquilt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_netcdf_parallel -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/regional_netcdf_parallel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_netcdf_parallel +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/regional_netcdf_parallel Checking test 055 regional_netcdf_parallel 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 = 295.690273 - 0: The maximum resident set size (KB) = 864824 + 0: The total amount of wall time = 291.076687 + 0: The maximum resident set size (KB) = 865256 Test 055 regional_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/regional_2dwrtdecomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/regional_2dwrtdecomp Checking test 056 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2453,14 +2453,14 @@ Checking test 056 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 295.887629 - 0: The maximum resident set size (KB) = 871872 + 0: The total amount of wall time = 295.177026 + 0: The maximum resident set size (KB) = 871084 Test 056 regional_2dwrtdecomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/fv3_regional_wofs -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/regional_wofs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/fv3_regional_wofs +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/regional_wofs Checking test 057 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2471,14 +2471,14 @@ Checking test 057 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 374.714638 - 0: The maximum resident set size (KB) = 630480 + 0: The total amount of wall time = 373.537564 + 0: The maximum resident set size (KB) = 630584 Test 057 regional_wofs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rap_control +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/rap_control Checking test 058 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2525,14 +2525,14 @@ Checking test 058 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 459.895601 - 0: The maximum resident set size (KB) = 1061504 + 0: The total amount of wall time = 461.660675 + 0: The maximum resident set size (KB) = 1016048 Test 058 rap_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_spp_sppt_shum_skeb -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/regional_spp_sppt_shum_skeb +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_spp_sppt_shum_skeb +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/regional_spp_sppt_shum_skeb Checking test 059 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2543,14 +2543,14 @@ Checking test 059 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 269.806506 - 0: The maximum resident set size (KB) = 1195036 + 0: The total amount of wall time = 269.022009 + 0: The maximum resident set size (KB) = 1180944 Test 059 regional_spp_sppt_shum_skeb PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rap_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/rap_decomp Checking test 060 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2597,14 +2597,14 @@ Checking test 060 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 486.889317 - 0: The maximum resident set size (KB) = 1001408 + 0: The total amount of wall time = 478.279357 + 0: The maximum resident set size (KB) = 1000272 Test 060 rap_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rap_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/rap_2threads Checking test 061 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2651,14 +2651,14 @@ Checking test 061 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 470.925786 - 0: The maximum resident set size (KB) = 1140860 + 0: The total amount of wall time = 471.316427 + 0: The maximum resident set size (KB) = 1145936 Test 061 rap_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rap_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/rap_restart Checking test 062 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2697,14 +2697,14 @@ Checking test 062 rap_restart results .... Comparing 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.984834 - 0: The maximum resident set size (KB) = 964600 + 0: The total amount of wall time = 232.309970 + 0: The maximum resident set size (KB) = 967232 Test 062 rap_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rap_sfcdiff +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_sfcdiff +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/rap_sfcdiff Checking test 063 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2751,14 +2751,14 @@ Checking test 063 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 459.907947 - 0: The maximum resident set size (KB) = 1056936 + 0: The total amount of wall time = 459.624943 + 0: The maximum resident set size (KB) = 1058996 Test 063 rap_sfcdiff PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rap_sfcdiff_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_sfcdiff +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/rap_sfcdiff_decomp Checking test 064 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2805,14 +2805,14 @@ Checking test 064 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 484.870987 - 0: The maximum resident set size (KB) = 1001776 + 0: The total amount of wall time = 484.349158 + 0: The maximum resident set size (KB) = 1001944 Test 064 rap_sfcdiff_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rap_sfcdiff_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_sfcdiff +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/rap_sfcdiff_restart Checking test 065 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2851,14 +2851,14 @@ Checking test 065 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 341.602714 - 0: The maximum resident set size (KB) = 985628 + 0: The total amount of wall time = 340.413741 + 0: The maximum resident set size (KB) = 986568 Test 065 rap_sfcdiff_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hrrr_control +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/hrrr_control Checking test 066 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2905,14 +2905,14 @@ Checking test 066 hrrr_control results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 427.895376 - 0: The maximum resident set size (KB) = 1061528 + 0: The total amount of wall time = 428.778457 + 0: The maximum resident set size (KB) = 1057804 Test 066 hrrr_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hrrr_control_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/hrrr_control_decomp Checking test 067 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2959,14 +2959,14 @@ Checking test 067 hrrr_control_decomp results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 451.023666 - 0: The maximum resident set size (KB) = 1000320 + 0: The total amount of wall time = 449.446011 + 0: The maximum resident set size (KB) = 1002220 Test 067 hrrr_control_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hrrr_control_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/hrrr_control_2threads Checking test 068 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3013,28 +3013,28 @@ Checking test 068 hrrr_control_2threads results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 363.360954 - 0: The maximum resident set size (KB) = 1081184 + 0: The total amount of wall time = 362.025996 + 0: The maximum resident set size (KB) = 1080208 Test 068 hrrr_control_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hrrr_control_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/hrrr_control_restart Checking test 069 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 317.470174 - 0: The maximum resident set size (KB) = 986840 + 0: The total amount of wall time = 318.459651 + 0: The maximum resident set size (KB) = 993084 Test 069 hrrr_control_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1beta -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rrfs_v1beta +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_v1beta +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/rrfs_v1beta Checking test 070 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3081,14 +3081,14 @@ Checking test 070 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 459.890847 - 0: The maximum resident set size (KB) = 1052904 + 0: The total amount of wall time = 453.819290 + 0: The maximum resident set size (KB) = 1058680 Test 070 rrfs_v1beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1nssl -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rrfs_v1nssl +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_v1nssl +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/rrfs_v1nssl Checking test 071 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3103,14 +3103,14 @@ Checking test 071 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 539.516662 - 0: The maximum resident set size (KB) = 692356 + 0: The total amount of wall time = 536.274042 + 0: The maximum resident set size (KB) = 695472 Test 071 rrfs_v1nssl PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rrfs_v1nssl_nohailnoccn +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/rrfs_v1nssl_nohailnoccn Checking test 072 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3125,14 +3125,14 @@ Checking test 072 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 524.216888 - 0: The maximum resident set size (KB) = 756668 + 0: The total amount of wall time = 524.350976 + 0: The maximum resident set size (KB) = 757424 Test 072 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/rrfs_smoke_conus13km_hrrr_warm Checking test 073 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3141,14 +3141,14 @@ Checking test 073 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 153.538731 - 0: The maximum resident set size (KB) = 1038772 + 0: The total amount of wall time = 151.948227 + 0: The maximum resident set size (KB) = 1027112 Test 073 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 074 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3157,14 +3157,14 @@ Checking test 074 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 100.793474 - 0: The maximum resident set size (KB) = 942900 + 0: The total amount of wall time = 98.056488 + 0: The maximum resident set size (KB) = 944072 Test 074 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_conus13km_hrrr_warm -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rrfs_conus13km_hrrr_warm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_conus13km_hrrr_warm +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/rrfs_conus13km_hrrr_warm Checking test 075 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3173,14 +3173,14 @@ Checking test 075 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 134.821108 - 0: The maximum resident set size (KB) = 990864 + 0: The total amount of wall time = 131.756414 + 0: The maximum resident set size (KB) = 991664 Test 075 rrfs_conus13km_hrrr_warm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/rrfs_smoke_conus13km_radar_tten_warm Checking test 076 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3189,26 +3189,26 @@ Checking test 076 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 153.938614 - 0: The maximum resident set size (KB) = 1035368 + 0: The total amount of wall time = 149.315254 + 0: The maximum resident set size (KB) = 1037500 Test 076 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 077 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 70.428764 - 0: The maximum resident set size (KB) = 976392 + 0: The total amount of wall time = 70.372633 + 0: The maximum resident set size (KB) = 981920 Test 077 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmg -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_csawmg +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_csawmg +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_csawmg Checking test 078 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3219,14 +3219,14 @@ Checking test 078 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 340.238892 - 0: The maximum resident set size (KB) = 725100 + 0: The total amount of wall time = 340.276044 + 0: The maximum resident set size (KB) = 727356 Test 078 control_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmgt -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_csawmgt +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_csawmgt +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_csawmgt Checking test 079 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3237,14 +3237,14 @@ Checking test 079 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 336.681337 - 0: The maximum resident set size (KB) = 728808 + 0: The total amount of wall time = 336.104645 + 0: The maximum resident set size (KB) = 729180 Test 079 control_csawmgt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_ras -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_ras +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_ras +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_ras Checking test 080 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3255,26 +3255,26 @@ Checking test 080 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 180.969201 - 0: The maximum resident set size (KB) = 723840 + 0: The total amount of wall time = 181.822423 + 0: The maximum resident set size (KB) = 722972 Test 080 control_ras PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wam -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_wam +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_wam +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_wam Checking test 081 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 112.684297 - 0: The maximum resident set size (KB) = 648476 + 0: The total amount of wall time = 111.402664 + 0: The maximum resident set size (KB) = 642956 Test 081 control_wam PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_p8_faster +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_p8_faster Checking test 082 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3321,14 +3321,14 @@ Checking test 082 control_p8_faster results .... Comparing 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.228930 - 0: The maximum resident set size (KB) = 1606244 + 0: The total amount of wall time = 153.663414 + 0: The maximum resident set size (KB) = 1605324 Test 082 control_p8_faster PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/regional_control_faster +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/regional_control_faster Checking test 083 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3339,56 +3339,56 @@ Checking test 083 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 269.397706 - 0: The maximum resident set size (KB) = 875092 + 0: The total amount of wall time = 269.708525 + 0: The maximum resident set size (KB) = 873092 Test 083 regional_control_faster PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 084 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 861.862194 - 0: The maximum resident set size (KB) = 1060576 + 0: The total amount of wall time = 842.240252 + 0: The maximum resident set size (KB) = 1058068 Test 084 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 085 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 482.121075 - 0: The maximum resident set size (KB) = 973464 + 0: The total amount of wall time = 481.154905 + 0: The maximum resident set size (KB) = 980192 Test 085 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rrfs_conus13km_hrrr_warm_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/rrfs_conus13km_hrrr_warm_debug Checking test 086 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 755.813607 - 0: The maximum resident set size (KB) = 1021672 + 0: The total amount of wall time = 762.267815 + 0: The maximum resident set size (KB) = 1014328 Test 086 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_CubedSphereGrid_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_CubedSphereGrid_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_CubedSphereGrid_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_CubedSphereGrid_debug Checking test 087 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3415,348 +3415,348 @@ Checking test 087 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 151.546177 - 0: The maximum resident set size (KB) = 788608 + 0: The total amount of wall time = 147.981857 + 0: The maximum resident set size (KB) = 796336 Test 087 control_CubedSphereGrid_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_wrtGauss_netcdf_parallel_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_wrtGauss_netcdf_parallel_debug Checking test 088 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc ............ALT CHECK......OK + Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 150.571962 - 0: The maximum resident set size (KB) = 789040 + 0: The total amount of wall time = 151.160277 + 0: The maximum resident set size (KB) = 794992 Test 088 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_stochy_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_stochy_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_stochy_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_stochy_debug Checking test 089 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 169.984955 - 0: The maximum resident set size (KB) = 802700 + 0: The total amount of wall time = 176.432635 + 0: The maximum resident set size (KB) = 766396 Test 089 control_stochy_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_lndp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_lndp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_lndp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_lndp_debug Checking test 090 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 149.047219 - 0: The maximum resident set size (KB) = 797284 + 0: The total amount of wall time = 151.870081 + 0: The maximum resident set size (KB) = 797916 Test 090 control_lndp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmg_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_csawmg_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_csawmg_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_csawmg_debug Checking test 091 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 232.427728 - 0: The maximum resident set size (KB) = 841196 + 0: The total amount of wall time = 230.710758 + 0: The maximum resident set size (KB) = 839100 Test 091 control_csawmg_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmgt_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_csawmgt_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_csawmgt_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_csawmgt_debug Checking test 092 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 228.848874 - 0: The maximum resident set size (KB) = 841652 + 0: The total amount of wall time = 232.745460 + 0: The maximum resident set size (KB) = 845884 Test 092 control_csawmgt_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_ras_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_ras_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_ras_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_ras_debug Checking test 093 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 154.826275 - 0: The maximum resident set size (KB) = 801220 + 0: The total amount of wall time = 153.646515 + 0: The maximum resident set size (KB) = 806488 Test 093 control_ras_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_diag_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_diag_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_diag_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_diag_debug Checking test 094 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 156.382737 - 0: The maximum resident set size (KB) = 852888 + 0: The total amount of wall time = 158.302553 + 0: The maximum resident set size (KB) = 854548 Test 094 control_diag_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_debug_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_debug_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_debug_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_debug_p8 Checking test 095 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 169.103079 - 0: The maximum resident set size (KB) = 1622220 + 0: The total amount of wall time = 169.925049 + 0: The maximum resident set size (KB) = 1618872 Test 095 control_debug_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/regional_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/regional_debug Checking test 096 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 990.838393 - 0: The maximum resident set size (KB) = 881360 + 0: The total amount of wall time = 1000.480690 + 0: The maximum resident set size (KB) = 877500 Test 096 regional_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rap_control_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/rap_control_debug Checking test 097 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.305433 - 0: The maximum resident set size (KB) = 1178580 + 0: The total amount of wall time = 280.340279 + 0: The maximum resident set size (KB) = 1174328 Test 097 rap_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hrrr_control_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/hrrr_control_debug Checking test 098 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 272.143827 - 0: The maximum resident set size (KB) = 1167300 + 0: The total amount of wall time = 270.221344 + 0: The maximum resident set size (KB) = 1170976 Test 098 hrrr_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rap_unified_drag_suite_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/rap_unified_drag_suite_debug Checking test 099 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 296.229206 - 0: The maximum resident set size (KB) = 1173984 + 0: The total amount of wall time = 283.883072 + 0: The maximum resident set size (KB) = 1169168 Test 099 rap_unified_drag_suite_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_diag_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rap_diag_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_diag_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/rap_diag_debug Checking test 100 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 296.974158 - 0: The maximum resident set size (KB) = 1258732 + 0: The total amount of wall time = 289.246877 + 0: The maximum resident set size (KB) = 1252252 Test 100 rap_diag_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rap_cires_ugwp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_cires_ugwp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/rap_cires_ugwp_debug Checking test 101 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 285.329736 - 0: The maximum resident set size (KB) = 1170752 + 0: The total amount of wall time = 275.106297 + 0: The maximum resident set size (KB) = 1168500 Test 101 rap_cires_ugwp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rap_unified_ugwp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_cires_ugwp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/rap_unified_ugwp_debug Checking test 102 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 284.056311 - 0: The maximum resident set size (KB) = 1172572 + 0: The total amount of wall time = 290.052547 + 0: The maximum resident set size (KB) = 1167980 Test 102 rap_unified_ugwp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_lndp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rap_lndp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_lndp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/rap_lndp_debug Checking test 103 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.325403 - 0: The maximum resident set size (KB) = 1171596 + 0: The total amount of wall time = 290.914734 + 0: The maximum resident set size (KB) = 1131588 Test 103 rap_lndp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_progcld_thompson_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rap_progcld_thompson_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_progcld_thompson_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/rap_progcld_thompson_debug Checking test 104 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.948007 - 0: The maximum resident set size (KB) = 1173772 + 0: The total amount of wall time = 284.239099 + 0: The maximum resident set size (KB) = 1171016 Test 104 rap_progcld_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_noah_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rap_noah_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_noah_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/rap_noah_debug Checking test 105 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.197805 - 0: The maximum resident set size (KB) = 1167008 + 0: The total amount of wall time = 272.099758 + 0: The maximum resident set size (KB) = 1171724 Test 105 rap_noah_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rap_sfcdiff_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_sfcdiff_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/rap_sfcdiff_debug Checking test 106 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 282.406909 - 0: The maximum resident set size (KB) = 1171700 + 0: The total amount of wall time = 285.812125 + 0: The maximum resident set size (KB) = 1174276 Test 106 rap_sfcdiff_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/rap_noah_sfcdiff_cires_ugwp_debug Checking test 107 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 470.800425 - 0: The maximum resident set size (KB) = 1167152 + 0: The total amount of wall time = 463.602744 + 0: The maximum resident set size (KB) = 1172284 Test 107 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1beta_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rrfs_v1beta_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_v1beta_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/rrfs_v1beta_debug Checking test 108 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.637038 - 0: The maximum resident set size (KB) = 1169412 + 0: The total amount of wall time = 275.273713 + 0: The maximum resident set size (KB) = 1168396 Test 108 rrfs_v1beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_clm_lake_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rap_clm_lake_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_clm_lake_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/rap_clm_lake_debug Checking test 109 rap_clm_lake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 351.315082 - 0: The maximum resident set size (KB) = 1170124 + 0: The total amount of wall time = 346.736994 + 0: The maximum resident set size (KB) = 1177116 Test 109 rap_clm_lake_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_flake_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rap_flake_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_flake_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/rap_flake_debug Checking test 110 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.378905 - 0: The maximum resident set size (KB) = 1171508 + 0: The total amount of wall time = 278.037885 + 0: The maximum resident set size (KB) = 1167432 Test 110 rap_flake_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wam_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_wam_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_wam_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_wam_debug Checking test 111 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 282.596882 - 0: The maximum resident set size (KB) = 533312 + 0: The total amount of wall time = 291.412202 + 0: The maximum resident set size (KB) = 522304 Test 111 control_wam_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 112 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3767,14 +3767,14 @@ Checking test 112 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 274.528373 - 0: The maximum resident set size (KB) = 1081404 + 0: The total amount of wall time = 253.782045 + 0: The maximum resident set size (KB) = 1070816 Test 112 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rap_control_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/rap_control_dyn32_phy32 Checking test 113 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3821,14 +3821,14 @@ Checking test 113 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 388.347261 - 0: The maximum resident set size (KB) = 998352 + 0: The total amount of wall time = 383.693297 + 0: The maximum resident set size (KB) = 1006656 Test 113 rap_control_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hrrr_control_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/hrrr_control_dyn32_phy32 Checking test 114 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3875,14 +3875,14 @@ Checking test 114 hrrr_control_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 205.713580 - 0: The maximum resident set size (KB) = 961340 + 0: The total amount of wall time = 189.323552 + 0: The maximum resident set size (KB) = 953728 Test 114 hrrr_control_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rap_2threads_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/rap_2threads_dyn32_phy32 Checking test 115 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3929,14 +3929,14 @@ Checking test 115 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 402.556923 - 0: The maximum resident set size (KB) = 1020248 + 0: The total amount of wall time = 396.535002 + 0: The maximum resident set size (KB) = 1017732 Test 115 rap_2threads_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hrrr_control_2threads_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/hrrr_control_2threads_dyn32_phy32 Checking test 116 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3983,14 +3983,14 @@ Checking test 116 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 180.204011 - 0: The maximum resident set size (KB) = 933068 + 0: The total amount of wall time = 162.733031 + 0: The maximum resident set size (KB) = 932904 Test 116 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hrrr_control_decomp_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/hrrr_control_decomp_dyn32_phy32 Checking test 117 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4037,14 +4037,14 @@ Checking test 117 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 220.935373 - 0: The maximum resident set size (KB) = 910912 + 0: The total amount of wall time = 199.464128 + 0: The maximum resident set size (KB) = 903816 Test 117 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rap_restart_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/rap_restart_dyn32_phy32 Checking test 118 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4083,28 +4083,28 @@ Checking test 118 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 282.232777 - 0: The maximum resident set size (KB) = 944588 + 0: The total amount of wall time = 285.220827 + 0: The maximum resident set size (KB) = 951888 Test 118 rap_restart_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hrrr_control_restart_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/hrrr_control_restart_dyn32_phy32 Checking test 119 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 99.475187 - 0: The maximum resident set size (KB) = 867708 + 0: The total amount of wall time = 99.787600 + 0: The maximum resident set size (KB) = 872504 Test 119 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn64_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rap_control_dyn64_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_dyn64_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/rap_control_dyn64_phy32 Checking test 120 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4151,81 +4151,81 @@ Checking test 120 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 252.735257 - 0: The maximum resident set size (KB) = 967712 + 0: The total amount of wall time = 245.107224 + 0: The maximum resident set size (KB) = 976300 Test 120 rap_control_dyn64_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rap_control_debug_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_debug_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/rap_control_debug_dyn32_phy32 Checking test 121 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.909213 - 0: The maximum resident set size (KB) = 1058588 + 0: The total amount of wall time = 276.688227 + 0: The maximum resident set size (KB) = 1062464 Test 121 rap_control_debug_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hrrr_control_debug_dyn32_phy32 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/hrrr_control_debug_dyn32_phy32 Checking test 122 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.710847 - 0: The maximum resident set size (KB) = 1052336 + 0: The total amount of wall time = 277.016229 + 0: The maximum resident set size (KB) = 1018332 Test 122 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug_dyn64_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rap_control_dyn64_phy32_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_debug_dyn64_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/rap_control_dyn64_phy32_debug Checking test 123 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.836778 - 0: The maximum resident set size (KB) = 1102768 + 0: The total amount of wall time = 284.564661 + 0: The maximum resident set size (KB) = 1100416 Test 123 rap_control_dyn64_phy32_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hafs_regional_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/hafs_regional_atm Checking test 124 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 266.202547 - 0: The maximum resident set size (KB) = 1055256 + 0: The total amount of wall time = 267.300961 + 0: The maximum resident set size (KB) = 1055936 Test 124 hafs_regional_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hafs_regional_atm_thompson_gfdlsf +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/hafs_regional_atm_thompson_gfdlsf Checking test 125 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 408.334220 - 0: The maximum resident set size (KB) = 1425220 + 0: The total amount of wall time = 397.539753 + 0: The maximum resident set size (KB) = 1417812 Test 125 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_ocn -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hafs_regional_atm_ocn +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_atm_ocn +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/hafs_regional_atm_ocn Checking test 126 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4234,14 +4234,14 @@ Checking test 126 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 386.297913 - 0: The maximum resident set size (KB) = 1230368 + 0: The total amount of wall time = 379.551953 + 0: The maximum resident set size (KB) = 1227196 Test 126 hafs_regional_atm_ocn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_wav -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hafs_regional_atm_wav +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_atm_wav +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/hafs_regional_atm_wav Checking test 127 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4250,14 +4250,14 @@ Checking test 127 hafs_regional_atm_wav 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 = 744.574718 - 0: The maximum resident set size (KB) = 1258544 + 0: The total amount of wall time = 737.412930 + 0: The maximum resident set size (KB) = 1255004 Test 127 hafs_regional_atm_wav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_ocn_wav -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hafs_regional_atm_ocn_wav +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_atm_ocn_wav +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/hafs_regional_atm_ocn_wav Checking test 128 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4268,28 +4268,28 @@ Checking test 128 hafs_regional_atm_ocn_wav 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 = 861.853464 - 0: The maximum resident set size (KB) = 1275480 + 0: The total amount of wall time = 832.896397 + 0: The maximum resident set size (KB) = 1280360 Test 128 hafs_regional_atm_ocn_wav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hafs_regional_1nest_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/hafs_regional_1nest_atm Checking test 129 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 361.681654 - 0: The maximum resident set size (KB) = 469024 + 0: The total amount of wall time = 365.710577 + 0: The maximum resident set size (KB) = 506340 Test 129 hafs_regional_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hafs_regional_telescopic_2nests_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/hafs_regional_telescopic_2nests_atm Checking test 130 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4298,28 +4298,28 @@ Checking test 130 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 411.880648 - 0: The maximum resident set size (KB) = 515116 + 0: The total amount of wall time = 414.680934 + 0: The maximum resident set size (KB) = 518796 Test 130 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_global_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hafs_global_1nest_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_global_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/hafs_global_1nest_atm Checking test 131 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 174.005311 - 0: The maximum resident set size (KB) = 355988 + 0: The total amount of wall time = 172.890927 + 0: The maximum resident set size (KB) = 358560 Test 131 hafs_global_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_global_multiple_4nests_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hafs_global_multiple_4nests_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_global_multiple_4nests_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/hafs_global_multiple_4nests_atm Checking test 132 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4337,14 +4337,14 @@ Checking test 132 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 463.524626 - 0: The maximum resident set size (KB) = 426944 + 0: The total amount of wall time = 462.789962 + 0: The maximum resident set size (KB) = 426804 Test 132 hafs_global_multiple_4nests_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hafs_regional_specified_moving_1nest_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/hafs_regional_specified_moving_1nest_atm Checking test 133 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4353,28 +4353,28 @@ Checking test 133 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 230.952308 - 0: The maximum resident set size (KB) = 524468 + 0: The total amount of wall time = 227.661081 + 0: The maximum resident set size (KB) = 519100 Test 133 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hafs_regional_storm_following_1nest_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/hafs_regional_storm_following_1nest_atm Checking test 134 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 217.489868 - 0: The maximum resident set size (KB) = 521412 + 0: The total amount of wall time = 216.531660 + 0: The maximum resident set size (KB) = 518116 Test 134 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/hafs_regional_storm_following_1nest_atm_ocn Checking test 135 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4383,42 +4383,42 @@ Checking test 135 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 287.473977 - 0: The maximum resident set size (KB) = 573524 + 0: The total amount of wall time = 292.161615 + 0: The maximum resident set size (KB) = 567684 Test 135 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_global_storm_following_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hafs_global_storm_following_1nest_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_global_storm_following_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/hafs_global_storm_following_1nest_atm Checking test 136 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 67.959181 - 0: The maximum resident set size (KB) = 375876 + 0: The total amount of wall time = 69.084094 + 0: The maximum resident set size (KB) = 376040 Test 136 hafs_global_storm_following_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 137 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 767.583989 - 0: The maximum resident set size (KB) = 591864 + 0: The total amount of wall time = 752.147650 + 0: The maximum resident set size (KB) = 590652 Test 137 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 138 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4429,14 +4429,14 @@ Checking test 138 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 563.877845 - 0: The maximum resident set size (KB) = 626444 + 0: The total amount of wall time = 535.261890 + 0: The maximum resident set size (KB) = 624460 Test 138 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_docn -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hafs_regional_docn +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_docn +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/hafs_regional_docn Checking test 139 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4444,14 +4444,14 @@ Checking test 139 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 356.934013 - 0: The maximum resident set size (KB) = 1235900 + 0: The total amount of wall time = 363.517440 + 0: The maximum resident set size (KB) = 1236368 Test 139 hafs_regional_docn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_docn_oisst -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hafs_regional_docn_oisst +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_docn_oisst +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/hafs_regional_docn_oisst Checking test 140 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4459,131 +4459,131 @@ Checking test 140 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 363.225906 - 0: The maximum resident set size (KB) = 1225252 + 0: The total amount of wall time = 359.685450 + 0: The maximum resident set size (KB) = 1221832 Test 140 hafs_regional_docn_oisst PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_datm_cdeps -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hafs_regional_datm_cdeps +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_datm_cdeps +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/hafs_regional_datm_cdeps Checking test 141 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 951.555736 - 0: The maximum resident set size (KB) = 1040996 + 0: The total amount of wall time = 929.652799 + 0: The maximum resident set size (KB) = 1044524 Test 141 hafs_regional_datm_cdeps PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/datm_cdeps_control_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/datm_cdeps_control_cfsr Checking test 142 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.955534 - 0: The maximum resident set size (KB) = 1065512 + 0: The total amount of wall time = 147.698649 + 0: The maximum resident set size (KB) = 1036616 Test 142 datm_cdeps_control_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/datm_cdeps_restart_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/datm_cdeps_restart_cfsr Checking test 143 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.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.270381 - 0: The maximum resident set size (KB) = 1016460 + 0: The total amount of wall time = 92.264789 + 0: The maximum resident set size (KB) = 978700 Test 143 datm_cdeps_restart_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/datm_cdeps_control_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_control_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/datm_cdeps_control_gefs Checking test 144 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 141.664027 - 0: The maximum resident set size (KB) = 976100 + 0: The total amount of wall time = 143.718759 + 0: The maximum resident set size (KB) = 919324 Test 144 datm_cdeps_control_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_iau_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/datm_cdeps_iau_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_iau_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/datm_cdeps_iau_gefs Checking test 145 datm_cdeps_iau_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 142.715440 - 0: The maximum resident set size (KB) = 964232 + 0: The total amount of wall time = 146.154230 + 0: The maximum resident set size (KB) = 932516 Test 145 datm_cdeps_iau_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_stochy_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/datm_cdeps_stochy_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_stochy_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/datm_cdeps_stochy_gefs Checking test 146 datm_cdeps_stochy_gefs 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.150206 - 0: The maximum resident set size (KB) = 929328 + 0: The total amount of wall time = 146.863912 + 0: The maximum resident set size (KB) = 928316 Test 146 datm_cdeps_stochy_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_ciceC_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/datm_cdeps_ciceC_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_ciceC_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/datm_cdeps_ciceC_cfsr Checking test 147 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.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.396475 - 0: The maximum resident set size (KB) = 1070740 + 0: The total amount of wall time = 149.666778 + 0: The maximum resident set size (KB) = 1032228 Test 147 datm_cdeps_ciceC_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_bulk_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/datm_cdeps_bulk_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_bulk_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/datm_cdeps_bulk_cfsr Checking test 148 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.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.802324 - 0: The maximum resident set size (KB) = 1054756 + 0: The total amount of wall time = 150.309627 + 0: The maximum resident set size (KB) = 1047520 Test 148 datm_cdeps_bulk_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_bulk_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/datm_cdeps_bulk_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_bulk_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/datm_cdeps_bulk_gefs Checking test 149 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 144.692049 - 0: The maximum resident set size (KB) = 976860 + 0: The total amount of wall time = 142.731611 + 0: The maximum resident set size (KB) = 963320 Test 149 datm_cdeps_bulk_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_mx025_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/datm_cdeps_mx025_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_mx025_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/datm_cdeps_mx025_cfsr Checking test 150 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4592,14 +4592,14 @@ Checking test 150 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 444.133428 - 0: The maximum resident set size (KB) = 870464 + 0: The total amount of wall time = 438.827774 + 0: The maximum resident set size (KB) = 876336 Test 150 datm_cdeps_mx025_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_mx025_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/datm_cdeps_mx025_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_mx025_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/datm_cdeps_mx025_gefs Checking test 151 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4608,77 +4608,77 @@ Checking test 151 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 454.602074 - 0: The maximum resident set size (KB) = 931384 + 0: The total amount of wall time = 442.381244 + 0: The maximum resident set size (KB) = 929388 Test 151 datm_cdeps_mx025_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/datm_cdeps_multiple_files_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/datm_cdeps_multiple_files_cfsr Checking test 152 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 147.105293 - 0: The maximum resident set size (KB) = 1058260 + 0: The total amount of wall time = 144.731025 + 0: The maximum resident set size (KB) = 1062020 Test 152 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/datm_cdeps_3072x1536_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/datm_cdeps_3072x1536_cfsr Checking test 153 datm_cdeps_3072x1536_cfsr 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 = 195.791488 - 0: The maximum resident set size (KB) = 2366548 + 0: The total amount of wall time = 198.718340 + 0: The maximum resident set size (KB) = 2355400 Test 153 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_gfs -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/datm_cdeps_gfs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_gfs +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/datm_cdeps_gfs Checking test 154 datm_cdeps_gfs 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 = 199.955753 - 0: The maximum resident set size (KB) = 2297492 + 0: The total amount of wall time = 195.904698 + 0: The maximum resident set size (KB) = 2299984 Test 154 datm_cdeps_gfs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_debug_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/datm_cdeps_debug_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_debug_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/datm_cdeps_debug_cfsr Checking test 155 datm_cdeps_debug_cfsr 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 = 360.055743 - 0: The maximum resident set size (KB) = 995636 + 0: The total amount of wall time = 361.350480 + 0: The maximum resident set size (KB) = 964560 Test 155 datm_cdeps_debug_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_cfsr_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/datm_cdeps_control_cfsr_faster +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_control_cfsr_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/datm_cdeps_control_cfsr_faster Checking test 156 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.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.630534 - 0: The maximum resident set size (KB) = 1063276 + 0: The total amount of wall time = 146.158010 + 0: The maximum resident set size (KB) = 1043056 Test 156 datm_cdeps_control_cfsr_faster PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_lnd_gswp3 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/datm_cdeps_lnd_gswp3 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_lnd_gswp3 +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/datm_cdeps_lnd_gswp3 Checking test 157 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4687,14 +4687,14 @@ Checking test 157 datm_cdeps_lnd_gswp3 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 = 8.049735 - 0: The maximum resident set size (KB) = 268000 + 0: The total amount of wall time = 7.571587 + 0: The maximum resident set size (KB) = 263084 Test 157 datm_cdeps_lnd_gswp3 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_lnd_gswp3 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/datm_cdeps_lnd_gswp3_rst +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_lnd_gswp3 +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/datm_cdeps_lnd_gswp3_rst Checking test 158 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4703,14 +4703,14 @@ Checking test 158 datm_cdeps_lnd_gswp3_rst 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.436463 - 0: The maximum resident set size (KB) = 248580 + 0: The total amount of wall time = 13.069816 + 0: The maximum resident set size (KB) = 260276 Test 158 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_atmlnd_sbs -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_p8_atmlnd_sbs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8_atmlnd_sbs +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_p8_atmlnd_sbs Checking test 159 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4795,14 +4795,14 @@ Checking test 159 control_p8_atmlnd_sbs 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.902223 - 0: The maximum resident set size (KB) = 1603756 + 0: The total amount of wall time = 204.005200 + 0: The maximum resident set size (KB) = 1612356 Test 159 control_p8_atmlnd_sbs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/atmwav_control_noaero_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/atmwav_control_noaero_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/atmwav_control_noaero_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/atmwav_control_noaero_p8 Checking test 160 atmwav_control_noaero_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4845,14 +4845,14 @@ Checking test 160 atmwav_control_noaero_p8 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 = 114.910781 - 0: The maximum resident set size (KB) = 1647360 + 0: The total amount of wall time = 95.325391 + 0: The maximum resident set size (KB) = 1641220 Test 160 atmwav_control_noaero_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_atmwav -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_atmwav +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_atmwav +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_atmwav Checking test 161 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4896,14 +4896,14 @@ Checking test 161 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 103.135697 - 0: The maximum resident set size (KB) = 663632 + 0: The total amount of wall time = 86.904689 + 0: The maximum resident set size (KB) = 661332 Test 161 control_atmwav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/atmaero_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/atmaero_control_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/atmaero_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/atmaero_control_p8 Checking test 162 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4947,14 +4947,14 @@ Checking test 162 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 259.757023 - 0: The maximum resident set size (KB) = 2976196 + 0: The total amount of wall time = 227.912970 + 0: The maximum resident set size (KB) = 2983364 Test 162 atmaero_control_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/atmaero_control_p8_rad -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/atmaero_control_p8_rad +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/atmaero_control_p8_rad +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/atmaero_control_p8_rad Checking test 163 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4998,14 +4998,14 @@ Checking test 163 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 302.212441 - 0: The maximum resident set size (KB) = 3059968 + 0: The total amount of wall time = 283.962729 + 0: The maximum resident set size (KB) = 3055620 Test 163 atmaero_control_p8_rad PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/atmaero_control_p8_rad_micro -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/atmaero_control_p8_rad_micro +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/atmaero_control_p8_rad_micro +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/atmaero_control_p8_rad_micro Checking test 164 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5049,14 +5049,14 @@ Checking test 164 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 310.272817 - 0: The maximum resident set size (KB) = 3059764 + 0: The total amount of wall time = 286.233167 + 0: The maximum resident set size (KB) = 2992332 Test 164 atmaero_control_p8_rad_micro PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_atmaq -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/regional_atmaq +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_atmaq +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/regional_atmaq Checking test 165 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5072,14 +5072,14 @@ Checking test 165 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 653.681345 - 0: The maximum resident set size (KB) = 1482260 + 0: The total amount of wall time = 617.933122 + 0: The maximum resident set size (KB) = 1473440 Test 165 regional_atmaq PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_atmaq_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/regional_atmaq_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_atmaq_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/regional_atmaq_debug Checking test 166 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5093,14 +5093,14 @@ Checking test 166 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1255.495440 - 0: The maximum resident set size (KB) = 1405172 + 0: The total amount of wall time = 1245.343907 + 0: The maximum resident set size (KB) = 1406208 Test 166 regional_atmaq_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_atmaq_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/regional_atmaq_faster +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_atmaq_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/regional_atmaq_faster Checking test 167 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5116,12 +5116,12 @@ Checking test 167 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 601.114723 - 0: The maximum resident set size (KB) = 1477764 + 0: The total amount of wall time = 540.027228 + 0: The maximum resident set size (KB) = 1473000 Test 167 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Fri May 5 09:06:51 CDT 2023 -Elapsed time: 01h:14m:44s. Have a nice day! +Wed May 10 19:40:57 CDT 2023 +Elapsed time: 01h:13m:28s. Have a nice day! diff --git a/tests/RegressionTests_wcoss2.intel.log b/tests/RegressionTests_wcoss2.intel.log index b9f55a3bc53..ce23871d3fa 100644 --- a/tests/RegressionTests_wcoss2.intel.log +++ b/tests/RegressionTests_wcoss2.intel.log @@ -1,34 +1,34 @@ -Mon May 8 23:19:08 UTC 2023 +Thu May 11 11:06:28 UTC 2023 Start Regression test -Compile 001 elapsed time 623 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 1134 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 1674 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 537 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 005 elapsed time 536 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 765 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 1261 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 008 elapsed time 1062 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 1035 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 1052 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 951 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 1069 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 013 elapsed time 453 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 1196 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 015 elapsed time 496 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 493 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 017 elapsed time 790 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 709 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 019 elapsed time 710 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 649 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 779 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 022 elapsed time 559 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 924 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 024 elapsed time 445 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 025 elapsed time 750 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8_mixedmode -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/cpld_control_p8_mixedmode +Compile 001 elapsed time 1342 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1139 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 1086 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 548 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 005 elapsed time 1015 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 742 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 602 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 008 elapsed time 2006 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 977 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 490 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 983 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 833 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 013 elapsed time 731 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 014 elapsed time 899 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 999 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 272 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 017 elapsed time 851 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 821 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 019 elapsed time 1061 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 687 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 1118 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 022 elapsed time 1051 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 986 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 024 elapsed time 466 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 025 elapsed time 797 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8_mixedmode +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -93,14 +93,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 343.864803 -The maximum resident set size (KB) = 2953872 +The total amount of wall time = 347.732480 +The maximum resident set size (KB) = 2955540 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/cpld_control_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/cpld_control_p8 Checking test 002 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -165,14 +165,14 @@ Checking test 002 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 390.146929 -The maximum resident set size (KB) = 2986756 +The total amount of wall time = 396.669799 +The maximum resident set size (KB) = 2985180 Test 002 cpld_control_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/cpld_restart_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/cpld_restart_p8 Checking test 003 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -225,14 +225,14 @@ Checking test 003 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 238.615239 -The maximum resident set size (KB) = 2872064 +The total amount of wall time = 268.659978 +The maximum resident set size (KB) = 2872708 Test 003 cpld_restart_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/cpld_control_qr_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/cpld_control_qr_p8 Checking test 004 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -297,14 +297,14 @@ Checking test 004 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 397.760025 -The maximum resident set size (KB) = 2995624 +The total amount of wall time = 397.555918 +The maximum resident set size (KB) = 2995856 Test 004 cpld_control_qr_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/cpld_restart_qr_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/cpld_restart_qr_p8 Checking test 005 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -357,14 +357,14 @@ Checking test 005 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 239.848171 -The maximum resident set size (KB) = 2884552 +The total amount of wall time = 257.270568 +The maximum resident set size (KB) = 2883184 Test 005 cpld_restart_qr_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/cpld_2threads_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/cpld_2threads_p8 Checking test 006 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -417,14 +417,14 @@ Checking test 006 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 372.763329 -The maximum resident set size (KB) = 3287172 +The total amount of wall time = 375.782851 +The maximum resident set size (KB) = 3290904 Test 006 cpld_2threads_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/cpld_decomp_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/cpld_decomp_p8 Checking test 007 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -477,14 +477,14 @@ Checking test 007 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 386.482338 -The maximum resident set size (KB) = 2981820 +The total amount of wall time = 388.141965 +The maximum resident set size (KB) = 2983764 Test 007 cpld_decomp_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/cpld_mpi_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/cpld_mpi_p8 Checking test 008 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -537,14 +537,14 @@ Checking test 008 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 321.498746 -The maximum resident set size (KB) = 2910552 +The total amount of wall time = 324.703980 +The maximum resident set size (KB) = 2912112 Test 008 cpld_mpi_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_ciceC_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/cpld_control_ciceC_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_ciceC_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/cpld_control_ciceC_p8 Checking test 009 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -609,14 +609,14 @@ Checking test 009 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 392.591687 -The maximum resident set size (KB) = 2986704 +The total amount of wall time = 396.110755 +The maximum resident set size (KB) = 2986844 Test 009 cpld_control_ciceC_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_bmark_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/cpld_bmark_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_bmark_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/cpld_bmark_p8 Checking test 010 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -664,14 +664,14 @@ Checking test 010 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 967.594271 -The maximum resident set size (KB) = 3925048 +The total amount of wall time = 988.600548 +The maximum resident set size (KB) = 3931080 Test 010 cpld_bmark_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_bmark_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/cpld_restart_bmark_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_bmark_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/cpld_restart_bmark_p8 Checking test 011 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -719,14 +719,14 @@ Checking test 011 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 661.248536 -The maximum resident set size (KB) = 3896804 +The total amount of wall time = 671.299865 +The maximum resident set size (KB) = 3888792 Test 011 cpld_restart_bmark_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/cpld_control_noaero_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/cpld_control_noaero_p8 Checking test 012 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -790,14 +790,14 @@ Checking test 012 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 291.020896 -The maximum resident set size (KB) = 1568036 +The total amount of wall time = 290.876103 +The maximum resident set size (KB) = 1576268 Test 012 cpld_control_noaero_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/cpld_control_nowave_noaero_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_c96_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/cpld_control_nowave_noaero_p8 Checking test 013 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -859,14 +859,14 @@ Checking test 013 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 303.620718 -The maximum resident set size (KB) = 1623544 +The total amount of wall time = 305.970135 +The maximum resident set size (KB) = 1633844 Test 013 cpld_control_nowave_noaero_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/cpld_control_noaero_p8_agrid +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_noaero_p8_agrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/cpld_control_noaero_p8_agrid Checking test 014 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -928,14 +928,14 @@ Checking test 014 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 317.154399 -The maximum resident set size (KB) = 1629136 +The total amount of wall time = 314.411805 +The maximum resident set size (KB) = 1629736 Test 014 cpld_control_noaero_p8_agrid PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/cpld_control_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/cpld_control_c48 Checking test 015 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -985,14 +985,14 @@ Checking test 015 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 445.954087 -The maximum resident set size (KB) = 2644544 +The total amount of wall time = 443.455864 +The maximum resident set size (KB) = 2641388 Test 015 cpld_control_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/cpld_warmstart_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/cpld_warmstart_c48 Checking test 016 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1042,14 +1042,14 @@ Checking test 016 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 130.772757 -The maximum resident set size (KB) = 2655572 +The total amount of wall time = 130.141238 +The maximum resident set size (KB) = 2658848 Test 016 cpld_warmstart_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/cpld_restart_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/cpld_restart_c48 Checking test 017 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1099,14 +1099,14 @@ Checking test 017 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 73.123090 -The maximum resident set size (KB) = 2075904 +The total amount of wall time = 75.101264 +The maximum resident set size (KB) = 2076552 Test 017 cpld_restart_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/cpld_control_p8_faster +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/cpld_control_p8_faster Checking test 018 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1171,14 +1171,14 @@ Checking test 018 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 383.251467 -The maximum resident set size (KB) = 2984280 +The total amount of wall time = 384.908853 +The maximum resident set size (KB) = 2980152 Test 018 cpld_control_p8_faster PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_flake -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_flake +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_flake +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_flake Checking test 019 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1189,14 +1189,14 @@ Checking test 019 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 218.126691 -The maximum resident set size (KB) = 569676 +The total amount of wall time = 215.606182 +The maximum resident set size (KB) = 570736 Test 019 control_flake PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_CubedSphereGrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_CubedSphereGrid +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_CubedSphereGrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_CubedSphereGrid Checking test 020 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1223,14 +1223,14 @@ Checking test 020 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 132.231996 -The maximum resident set size (KB) = 519576 +The total amount of wall time = 129.967822 +The maximum resident set size (KB) = 521684 Test 020 control_CubedSphereGrid PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_latlon -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_latlon +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_latlon +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_latlon Checking test 021 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1241,14 +1241,14 @@ Checking test 021 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 136.106371 -The maximum resident set size (KB) = 519736 +The total amount of wall time = 132.949985 +The maximum resident set size (KB) = 519824 Test 021 control_latlon PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_wrtGauss_netcdf_parallel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_wrtGauss_netcdf_parallel Checking test 022 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1259,14 +1259,14 @@ Checking test 022 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 136.722213 -The maximum resident set size (KB) = 521348 +The total amount of wall time = 135.460168 +The maximum resident set size (KB) = 520360 Test 022 control_wrtGauss_netcdf_parallel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_c48 Checking test 023 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1305,14 +1305,14 @@ Checking test 023 control_c48 results .... 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.140923 -The maximum resident set size (KB) = 682428 +The total amount of wall time = 327.623715 +The maximum resident set size (KB) = 679392 Test 023 control_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c192 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_c192 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_c192 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_c192 Checking test 024 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1323,14 +1323,14 @@ Checking test 024 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 530.849784 -The maximum resident set size (KB) = 621068 +The total amount of wall time = 529.705093 +The maximum resident set size (KB) = 621472 Test 024 control_c192 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c384 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_c384 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_c384 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_c384 Checking test 025 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1341,14 +1341,14 @@ Checking test 025 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 569.984168 -The maximum resident set size (KB) = 931620 +The total amount of wall time = 569.633566 +The maximum resident set size (KB) = 928588 Test 025 control_c384 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c384gdas -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_c384gdas +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_c384gdas +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_c384gdas Checking test 026 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1391,14 +1391,14 @@ Checking test 026 control_c384gdas 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 = 502.516761 -The maximum resident set size (KB) = 1063596 +The total amount of wall time = 502.720485 +The maximum resident set size (KB) = 1067152 Test 026 control_c384gdas PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_stochy +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_stochy Checking test 027 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1409,28 +1409,28 @@ Checking test 027 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 91.462604 -The maximum resident set size (KB) = 526084 +The total amount of wall time = 91.140117 +The maximum resident set size (KB) = 523568 Test 027 control_stochy PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_stochy_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_stochy_restart Checking test 028 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 57.280421 -The maximum resident set size (KB) = 294440 +The total amount of wall time = 49.708003 +The maximum resident set size (KB) = 295356 Test 028 control_stochy_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_lndp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_lndp Checking test 029 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1441,14 +1441,14 @@ Checking test 029 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 85.208701 -The maximum resident set size (KB) = 524608 +The total amount of wall time = 84.375033 +The maximum resident set size (KB) = 526048 Test 029 control_lndp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_iovr4 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_iovr4 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_iovr4 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_iovr4 Checking test 030 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1463,14 +1463,14 @@ Checking test 030 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 138.760184 -The maximum resident set size (KB) = 521348 +The total amount of wall time = 135.639326 +The maximum resident set size (KB) = 521992 Test 030 control_iovr4 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_iovr5 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_iovr5 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_iovr5 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_iovr5 Checking test 031 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1485,14 +1485,14 @@ Checking test 031 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 137.679707 -The maximum resident set size (KB) = 519936 +The total amount of wall time = 136.429241 +The maximum resident set size (KB) = 518440 Test 031 control_iovr5 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_p8 Checking test 032 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1539,14 +1539,14 @@ Checking test 032 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 186.523552 -The maximum resident set size (KB) = 1487616 +The total amount of wall time = 182.837300 +The maximum resident set size (KB) = 1486432 Test 032 control_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_restart_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_restart_p8 Checking test 033 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1585,14 +1585,14 @@ Checking test 033 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 103.986888 -The maximum resident set size (KB) = 661276 +The total amount of wall time = 105.660917 +The maximum resident set size (KB) = 659896 Test 033 control_restart_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_qr_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_qr_p8 Checking test 034 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1639,14 +1639,14 @@ Checking test 034 control_qr_p8 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 = 188.057445 -The maximum resident set size (KB) = 1500460 +The total amount of wall time = 181.543679 +The maximum resident set size (KB) = 1501052 Test 034 control_qr_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_restart_qr_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_restart_qr_p8 Checking test 035 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1685,14 +1685,14 @@ Checking test 035 control_restart_qr_p8 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 = 105.539492 -The maximum resident set size (KB) = 672584 +The total amount of wall time = 106.455916 +The maximum resident set size (KB) = 668932 Test 035 control_restart_qr_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_decomp_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_decomp_p8 Checking test 036 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1735,14 +1735,14 @@ Checking test 036 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 189.929111 -The maximum resident set size (KB) = 1483672 +The total amount of wall time = 185.031872 +The maximum resident set size (KB) = 1480892 Test 036 control_decomp_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_2threads_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_2threads_p8 Checking test 037 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1785,14 +1785,14 @@ Checking test 037 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 163.472832 -The maximum resident set size (KB) = 1576496 +The total amount of wall time = 161.028810 +The maximum resident set size (KB) = 1580128 Test 037 control_2threads_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_p8_lndp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_p8_lndp Checking test 038 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1811,14 +1811,14 @@ Checking test 038 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 325.541017 -The maximum resident set size (KB) = 1484864 +The total amount of wall time = 326.122373 +The maximum resident set size (KB) = 1488496 Test 038 control_p8_lndp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_rrtmgp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_p8_rrtmgp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8_rrtmgp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_p8_rrtmgp Checking test 039 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1865,14 +1865,14 @@ Checking test 039 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 238.872188 -The maximum resident set size (KB) = 1553944 +The total amount of wall time = 237.143516 +The maximum resident set size (KB) = 1552912 Test 039 control_p8_rrtmgp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_mynn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_p8_mynn +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8_mynn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_p8_mynn Checking test 040 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1919,14 +1919,14 @@ Checking test 040 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 184.321927 -The maximum resident set size (KB) = 1487100 +The total amount of wall time = 185.817188 +The maximum resident set size (KB) = 1498356 Test 040 control_p8_mynn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/merra2_thompson -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/merra2_thompson +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/merra2_thompson +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/merra2_thompson Checking test 041 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1973,14 +1973,14 @@ Checking test 041 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 207.764186 -The maximum resident set size (KB) = 1494004 +The total amount of wall time = 207.517773 +The maximum resident set size (KB) = 1497712 Test 041 merra2_thompson PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/regional_control +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/regional_control Checking test 042 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1991,28 +1991,28 @@ Checking test 042 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 301.770632 -The maximum resident set size (KB) = 655356 +The total amount of wall time = 295.553442 +The maximum resident set size (KB) = 654984 Test 042 regional_control PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/regional_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/regional_restart Checking test 043 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 160.398966 -The maximum resident set size (KB) = 654072 +The total amount of wall time = 165.770434 +The maximum resident set size (KB) = 654668 Test 043 regional_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/regional_control_qr +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/regional_control_qr Checking test 044 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2023,28 +2023,28 @@ Checking test 044 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 298.933992 -The maximum resident set size (KB) = 658440 +The total amount of wall time = 297.004404 +The maximum resident set size (KB) = 658960 Test 044 regional_control_qr PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/regional_restart_qr +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/regional_restart_qr Checking test 045 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 162.110107 -The maximum resident set size (KB) = 655136 +The total amount of wall time = 162.120116 +The maximum resident set size (KB) = 656648 Test 045 regional_restart_qr PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/regional_decomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/regional_decomp Checking test 046 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2055,14 +2055,14 @@ Checking test 046 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 312.052297 -The maximum resident set size (KB) = 657244 +The total amount of wall time = 309.831781 +The maximum resident set size (KB) = 657888 Test 046 regional_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/regional_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/regional_2threads Checking test 047 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2073,14 +2073,14 @@ Checking test 047 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 192.504411 -The maximum resident set size (KB) = 703984 +The total amount of wall time = 181.769729 +The maximum resident set size (KB) = 699376 Test 047 regional_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_noquilt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/regional_noquilt +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_noquilt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/regional_noquilt Checking test 048 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2088,28 +2088,28 @@ Checking test 048 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 321.027519 -The maximum resident set size (KB) = 648476 +The total amount of wall time = 320.261202 +The maximum resident set size (KB) = 651836 Test 048 regional_noquilt PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/regional_netcdf_parallel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/regional_netcdf_parallel Checking test 049 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK -The total amount of wall time = 296.101275 -The maximum resident set size (KB) = 656716 +The total amount of wall time = 291.600475 +The maximum resident set size (KB) = 652788 Test 049 regional_netcdf_parallel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/regional_2dwrtdecomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/regional_2dwrtdecomp Checking test 050 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2120,14 +2120,14 @@ Checking test 050 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 295.058797 -The maximum resident set size (KB) = 660424 +The total amount of wall time = 294.322291 +The maximum resident set size (KB) = 660604 Test 050 regional_2dwrtdecomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/fv3_regional_wofs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/regional_wofs +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/fv3_regional_wofs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/regional_wofs Checking test 051 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2138,14 +2138,14 @@ Checking test 051 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 376.263792 -The maximum resident set size (KB) = 344112 +The total amount of wall time = 366.997199 +The maximum resident set size (KB) = 346556 Test 051 regional_wofs PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rap_control +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/rap_control Checking test 052 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2192,14 +2192,14 @@ Checking test 052 rap_control results .... 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.778369 -The maximum resident set size (KB) = 895888 +The total amount of wall time = 428.165826 +The maximum resident set size (KB) = 897940 Test 052 rap_control PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/regional_spp_sppt_shum_skeb +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_spp_sppt_shum_skeb +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/regional_spp_sppt_shum_skeb Checking test 053 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2210,14 +2210,14 @@ Checking test 053 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 246.648289 -The maximum resident set size (KB) = 991328 +The total amount of wall time = 271.996801 +The maximum resident set size (KB) = 993068 Test 053 regional_spp_sppt_shum_skeb PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rap_decomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/rap_decomp Checking test 054 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2264,14 +2264,14 @@ Checking test 054 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 434.934476 -The maximum resident set size (KB) = 898276 +The total amount of wall time = 453.028244 +The maximum resident set size (KB) = 899620 Test 054 rap_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rap_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/rap_2threads Checking test 055 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2318,14 +2318,14 @@ Checking test 055 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 389.411756 -The maximum resident set size (KB) = 976620 +The total amount of wall time = 400.256927 +The maximum resident set size (KB) = 970144 Test 055 rap_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rap_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/rap_restart Checking test 056 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2364,14 +2364,14 @@ Checking test 056 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 216.646515 -The maximum resident set size (KB) = 650656 +The total amount of wall time = 223.253069 +The maximum resident set size (KB) = 649936 Test 056 rap_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rap_sfcdiff +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/rap_sfcdiff Checking test 057 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2418,14 +2418,14 @@ Checking test 057 rap_sfcdiff results .... 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.608915 -The maximum resident set size (KB) = 893632 +The total amount of wall time = 436.798465 +The maximum resident set size (KB) = 895868 Test 057 rap_sfcdiff PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rap_sfcdiff_decomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/rap_sfcdiff_decomp Checking test 058 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2472,14 +2472,14 @@ Checking test 058 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 442.934827 -The maximum resident set size (KB) = 899888 +The total amount of wall time = 455.891893 +The maximum resident set size (KB) = 896528 Test 058 rap_sfcdiff_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rap_sfcdiff_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/rap_sfcdiff_restart Checking test 059 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2518,14 +2518,14 @@ Checking test 059 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 322.942428 -The maximum resident set size (KB) = 643672 +The total amount of wall time = 317.735779 +The maximum resident set size (KB) = 644152 Test 059 rap_sfcdiff_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/hrrr_control +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/hrrr_control Checking test 060 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2572,14 +2572,14 @@ Checking test 060 hrrr_control 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 = 392.620269 -The maximum resident set size (KB) = 892840 +The total amount of wall time = 406.265512 +The maximum resident set size (KB) = 892724 Test 060 hrrr_control PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/hrrr_control_decomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/hrrr_control_decomp Checking test 061 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2626,14 +2626,14 @@ Checking test 061 hrrr_control_decomp 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 = 406.906598 -The maximum resident set size (KB) = 893416 +The total amount of wall time = 424.636451 +The maximum resident set size (KB) = 894008 Test 061 hrrr_control_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/hrrr_control_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/hrrr_control_2threads Checking test 062 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2680,28 +2680,28 @@ Checking test 062 hrrr_control_2threads 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 = 352.392920 -The maximum resident set size (KB) = 961220 +The total amount of wall time = 374.324920 +The maximum resident set size (KB) = 960024 Test 062 hrrr_control_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/hrrr_control_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/hrrr_control_restart Checking test 063 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 289.593144 -The maximum resident set size (KB) = 645352 +The total amount of wall time = 296.216911 +The maximum resident set size (KB) = 643532 Test 063 hrrr_control_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1beta -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rrfs_v1beta +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_v1beta +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/rrfs_v1beta Checking test 064 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2748,14 +2748,14 @@ Checking test 064 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 420.017947 -The maximum resident set size (KB) = 896528 +The total amount of wall time = 445.267129 +The maximum resident set size (KB) = 894968 Test 064 rrfs_v1beta PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1nssl -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rrfs_v1nssl +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_v1nssl +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/rrfs_v1nssl Checking test 065 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2770,14 +2770,14 @@ Checking test 065 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 483.439529 -The maximum resident set size (KB) = 584008 +The total amount of wall time = 500.278632 +The maximum resident set size (KB) = 587144 Test 065 rrfs_v1nssl PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rrfs_v1nssl_nohailnoccn +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/rrfs_v1nssl_nohailnoccn Checking test 066 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2792,14 +2792,14 @@ Checking test 066 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 471.147966 -The maximum resident set size (KB) = 572940 +The total amount of wall time = 484.930903 +The maximum resident set size (KB) = 572608 Test 066 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/rrfs_smoke_conus13km_hrrr_warm Checking test 067 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2808,14 +2808,14 @@ Checking test 067 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 154.344815 -The maximum resident set size (KB) = 807072 +The total amount of wall time = 161.934291 +The maximum resident set size (KB) = 800284 Test 067 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 068 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2824,14 +2824,14 @@ Checking test 068 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 113.362983 -The maximum resident set size (KB) = 804568 +The total amount of wall time = 111.249905 +The maximum resident set size (KB) = 802348 Test 068 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rrfs_conus13km_hrrr_warm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/rrfs_conus13km_hrrr_warm Checking test 069 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2840,14 +2840,14 @@ Checking test 069 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 142.390336 -The maximum resident set size (KB) = 799436 +The total amount of wall time = 143.554730 +The maximum resident set size (KB) = 796728 Test 069 rrfs_conus13km_hrrr_warm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/rrfs_smoke_conus13km_radar_tten_warm Checking test 070 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2856,26 +2856,26 @@ Checking test 070 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 157.346356 -The maximum resident set size (KB) = 804076 +The total amount of wall time = 158.467419 +The maximum resident set size (KB) = 803516 Test 070 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 071 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 73.132399 -The maximum resident set size (KB) = 773692 +The total amount of wall time = 76.642200 +The maximum resident set size (KB) = 770284 Test 071 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmg -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_csawmg +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_csawmg +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_csawmg Checking test 072 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2886,14 +2886,14 @@ Checking test 072 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 352.846855 -The maximum resident set size (KB) = 589792 +The total amount of wall time = 354.233216 +The maximum resident set size (KB) = 587268 Test 072 control_csawmg PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmgt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_csawmgt +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_csawmgt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_csawmgt Checking test 073 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2904,14 +2904,14 @@ Checking test 073 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 348.207494 -The maximum resident set size (KB) = 586104 +The total amount of wall time = 351.122749 +The maximum resident set size (KB) = 588408 Test 073 control_csawmgt PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_ras -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_ras +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_ras +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_ras Checking test 074 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2922,26 +2922,26 @@ Checking test 074 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 184.105062 -The maximum resident set size (KB) = 551996 +The total amount of wall time = 183.408696 +The maximum resident set size (KB) = 552292 Test 074 control_ras PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wam -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_wam +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_wam +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_wam Checking test 075 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 118.869201 -The maximum resident set size (KB) = 353176 +The total amount of wall time = 118.477384 +The maximum resident set size (KB) = 275704 Test 075 control_wam PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_p8_faster +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_p8_faster Checking test 076 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2988,14 +2988,14 @@ Checking test 076 control_p8_faster results .... 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.191349 -The maximum resident set size (KB) = 1485980 +The total amount of wall time = 183.343949 +The maximum resident set size (KB) = 1492928 Test 076 control_p8_faster PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/regional_control_faster +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/regional_control_faster Checking test 077 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3006,56 +3006,56 @@ Checking test 077 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 286.967719 -The maximum resident set size (KB) = 657024 +The total amount of wall time = 286.112647 +The maximum resident set size (KB) = 656628 Test 077 regional_control_faster PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 078 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 915.039664 -The maximum resident set size (KB) = 833360 +The total amount of wall time = 919.367188 +The maximum resident set size (KB) = 836804 Test 078 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 079 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 531.469910 -The maximum resident set size (KB) = 830712 +The total amount of wall time = 535.793600 +The maximum resident set size (KB) = 831072 Test 079 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rrfs_conus13km_hrrr_warm_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/rrfs_conus13km_hrrr_warm_debug Checking test 080 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 822.453615 -The maximum resident set size (KB) = 820684 +The total amount of wall time = 831.433366 +The maximum resident set size (KB) = 821944 Test 080 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_CubedSphereGrid_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_CubedSphereGrid_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_CubedSphereGrid_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_CubedSphereGrid_debug Checking test 081 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3082,348 +3082,348 @@ Checking test 081 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 161.740805 -The maximum resident set size (KB) = 679896 +The total amount of wall time = 164.276115 +The maximum resident set size (KB) = 679376 Test 081 control_CubedSphereGrid_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_wrtGauss_netcdf_parallel_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_wrtGauss_netcdf_parallel_debug Checking test 082 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 161.119718 -The maximum resident set size (KB) = 682036 +The total amount of wall time = 167.158077 +The maximum resident set size (KB) = 679024 Test 082 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_stochy_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_stochy_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_stochy_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_stochy_debug Checking test 083 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 180.069919 -The maximum resident set size (KB) = 684156 +The total amount of wall time = 187.154591 +The maximum resident set size (KB) = 681480 Test 083 control_stochy_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_lndp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_lndp_debug Checking test 084 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 166.723667 -The maximum resident set size (KB) = 684112 +The total amount of wall time = 168.242890 +The maximum resident set size (KB) = 686312 Test 084 control_lndp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmg_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_csawmg_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_csawmg_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_csawmg_debug Checking test 085 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 259.655226 -The maximum resident set size (KB) = 723636 +The total amount of wall time = 266.238582 +The maximum resident set size (KB) = 721776 Test 085 control_csawmg_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmgt_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_csawmgt_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_csawmgt_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_csawmgt_debug Checking test 086 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 255.550516 -The maximum resident set size (KB) = 723576 +The total amount of wall time = 264.164676 +The maximum resident set size (KB) = 723484 Test 086 control_csawmgt_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_ras_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_ras_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_ras_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_ras_debug Checking test 087 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 163.489807 -The maximum resident set size (KB) = 695028 +The total amount of wall time = 167.516480 +The maximum resident set size (KB) = 694196 Test 087 control_ras_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_diag_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_diag_debug Checking test 088 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 165.936110 -The maximum resident set size (KB) = 738644 +The total amount of wall time = 170.633367 +The maximum resident set size (KB) = 740524 Test 088 control_diag_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_debug_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_debug_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_debug_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_debug_p8 Checking test 089 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 188.113277 -The maximum resident set size (KB) = 1508260 +The total amount of wall time = 196.678161 +The maximum resident set size (KB) = 1502648 Test 089 control_debug_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/regional_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/regional_debug Checking test 090 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1051.672229 -The maximum resident set size (KB) = 677576 +The total amount of wall time = 1058.940359 +The maximum resident set size (KB) = 677488 Test 090 regional_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rap_control_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/rap_control_debug Checking test 091 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.277453 -The maximum resident set size (KB) = 1056952 +The total amount of wall time = 303.870034 +The maximum resident set size (KB) = 1058076 Test 091 rap_control_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/hrrr_control_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/hrrr_control_debug Checking test 092 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 291.661237 -The maximum resident set size (KB) = 1049740 +The total amount of wall time = 297.183289 +The maximum resident set size (KB) = 1051652 Test 092 hrrr_control_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rap_unified_drag_suite_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/rap_unified_drag_suite_debug Checking test 093 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 301.250413 -The maximum resident set size (KB) = 1051760 +The total amount of wall time = 306.328783 +The maximum resident set size (KB) = 1056364 Test 093 rap_unified_drag_suite_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rap_diag_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/rap_diag_debug Checking test 094 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 312.331009 -The maximum resident set size (KB) = 1142656 +The total amount of wall time = 311.933041 +The maximum resident set size (KB) = 1142264 Test 094 rap_diag_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rap_cires_ugwp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/rap_cires_ugwp_debug Checking test 095 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 306.911304 -The maximum resident set size (KB) = 1057860 +The total amount of wall time = 307.950442 +The maximum resident set size (KB) = 1057972 Test 095 rap_cires_ugwp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rap_unified_ugwp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/rap_unified_ugwp_debug Checking test 096 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 307.361875 -The maximum resident set size (KB) = 1057708 +The total amount of wall time = 312.102196 +The maximum resident set size (KB) = 1051436 Test 096 rap_unified_ugwp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rap_lndp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/rap_lndp_debug Checking test 097 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 306.479569 -The maximum resident set size (KB) = 1054732 +The total amount of wall time = 303.329101 +The maximum resident set size (KB) = 1056564 Test 097 rap_lndp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_progcld_thompson_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rap_progcld_thompson_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_progcld_thompson_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/rap_progcld_thompson_debug Checking test 098 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.086381 -The maximum resident set size (KB) = 1055364 +The total amount of wall time = 300.786262 +The maximum resident set size (KB) = 1051244 Test 098 rap_progcld_thompson_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_noah_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rap_noah_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_noah_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/rap_noah_debug Checking test 099 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 295.438678 -The maximum resident set size (KB) = 1053344 +The total amount of wall time = 295.879195 +The maximum resident set size (KB) = 1055432 Test 099 rap_noah_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rap_sfcdiff_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_sfcdiff_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/rap_sfcdiff_debug Checking test 100 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 301.430663 -The maximum resident set size (KB) = 1055640 +The total amount of wall time = 302.033735 +The maximum resident set size (KB) = 1055112 Test 100 rap_sfcdiff_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/rap_noah_sfcdiff_cires_ugwp_debug Checking test 101 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 492.027880 -The maximum resident set size (KB) = 1054144 +The total amount of wall time = 494.643655 +The maximum resident set size (KB) = 1057524 Test 101 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1beta_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rrfs_v1beta_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_v1beta_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/rrfs_v1beta_debug Checking test 102 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 296.800427 -The maximum resident set size (KB) = 1054064 +The total amount of wall time = 296.726192 +The maximum resident set size (KB) = 1053636 Test 102 rrfs_v1beta_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_clm_lake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rap_clm_lake_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_clm_lake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/rap_clm_lake_debug Checking test 103 rap_clm_lake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 358.171747 -The maximum resident set size (KB) = 1058236 +The total amount of wall time = 360.711035 +The maximum resident set size (KB) = 1060176 Test 103 rap_clm_lake_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_flake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rap_flake_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_flake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/rap_flake_debug Checking test 104 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 301.870088 -The maximum resident set size (KB) = 1055500 +The total amount of wall time = 305.842882 +The maximum resident set size (KB) = 1059488 Test 104 rap_flake_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wam_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_wam_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_wam_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_wam_debug Checking test 105 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 298.135807 -The maximum resident set size (KB) = 303504 +The total amount of wall time = 296.505707 +The maximum resident set size (KB) = 304656 Test 105 control_wam_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3434,14 +3434,14 @@ Checking test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 241.012645 -The maximum resident set size (KB) = 893684 +The total amount of wall time = 279.322845 +The maximum resident set size (KB) = 900176 Test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rap_control_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/rap_control_dyn32_phy32 Checking test 107 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3488,14 +3488,14 @@ Checking test 107 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 354.841327 -The maximum resident set size (KB) = 777600 +The total amount of wall time = 383.837354 +The maximum resident set size (KB) = 780800 Test 107 rap_control_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/hrrr_control_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/hrrr_control_dyn32_phy32 Checking test 108 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3542,14 +3542,14 @@ Checking test 108 hrrr_control_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 181.699875 -The maximum resident set size (KB) = 778440 +The total amount of wall time = 196.177197 +The maximum resident set size (KB) = 779640 Test 108 hrrr_control_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rap_2threads_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/rap_2threads_dyn32_phy32 Checking test 109 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3596,14 +3596,14 @@ Checking test 109 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 333.095353 -The maximum resident set size (KB) = 832272 +The total amount of wall time = 349.419498 +The maximum resident set size (KB) = 832468 Test 109 rap_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/hrrr_control_2threads_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/hrrr_control_2threads_dyn32_phy32 Checking test 110 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3650,14 +3650,14 @@ Checking test 110 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 163.362284 -The maximum resident set size (KB) = 827460 +The total amount of wall time = 176.828342 +The maximum resident set size (KB) = 824064 Test 110 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/hrrr_control_decomp_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/hrrr_control_decomp_dyn32_phy32 Checking test 111 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3704,14 +3704,14 @@ Checking test 111 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 187.941536 -The maximum resident set size (KB) = 775980 +The total amount of wall time = 219.928292 +The maximum resident set size (KB) = 776520 Test 111 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rap_restart_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/rap_restart_dyn32_phy32 Checking test 112 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3750,28 +3750,28 @@ Checking test 112 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 260.894289 -The maximum resident set size (KB) = 614088 +The total amount of wall time = 260.540394 +The maximum resident set size (KB) = 612696 Test 112 rap_restart_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/hrrr_control_restart_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/hrrr_control_restart_dyn32_phy32 Checking test 113 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 93.596011 -The maximum resident set size (KB) = 609908 +The total amount of wall time = 104.798999 +The maximum resident set size (KB) = 610456 Test 113 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rap_control_dyn64_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/rap_control_dyn64_phy32 Checking test 114 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3818,81 +3818,81 @@ Checking test 114 rap_control_dyn64_phy32 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 = 237.587747 -The maximum resident set size (KB) = 797556 +The total amount of wall time = 244.505632 +The maximum resident set size (KB) = 796064 Test 114 rap_control_dyn64_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rap_control_debug_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/rap_control_debug_dyn32_phy32 Checking test 115 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.982600 -The maximum resident set size (KB) = 936712 +The total amount of wall time = 295.660525 +The maximum resident set size (KB) = 939332 Test 115 rap_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/hrrr_control_debug_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/hrrr_control_debug_dyn32_phy32 Checking test 116 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 290.924716 -The maximum resident set size (KB) = 937424 +The total amount of wall time = 288.374951 +The maximum resident set size (KB) = 938176 Test 116 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rap_control_dyn64_phy32_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/rap_control_dyn64_phy32_debug Checking test 117 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.366841 -The maximum resident set size (KB) = 960740 +The total amount of wall time = 307.520716 +The maximum resident set size (KB) = 956344 Test 117 rap_control_dyn64_phy32_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/hafs_regional_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/hafs_regional_atm Checking test 118 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 275.277628 -The maximum resident set size (KB) = 826348 +The total amount of wall time = 299.774348 +The maximum resident set size (KB) = 824396 Test 118 hafs_regional_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/hafs_regional_atm_thompson_gfdlsf +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/hafs_regional_atm_thompson_gfdlsf Checking test 119 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 327.528635 -The maximum resident set size (KB) = 1179940 +The total amount of wall time = 383.000767 +The maximum resident set size (KB) = 1182532 Test 119 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/hafs_regional_atm_ocn +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/hafs_regional_atm_ocn Checking test 120 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3901,14 +3901,14 @@ Checking test 120 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 393.985610 -The maximum resident set size (KB) = 861380 +The total amount of wall time = 429.418335 +The maximum resident set size (KB) = 861136 Test 120 hafs_regional_atm_ocn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/hafs_regional_atm_wav +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_atm_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/hafs_regional_atm_wav Checking test 121 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3917,14 +3917,14 @@ Checking test 121 hafs_regional_atm_wav results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 713.903441 -The maximum resident set size (KB) = 891964 +The total amount of wall time = 733.268326 +The maximum resident set size (KB) = 891468 Test 121 hafs_regional_atm_wav PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/hafs_regional_atm_ocn_wav +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/hafs_regional_atm_ocn_wav Checking test 122 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3935,28 +3935,28 @@ Checking test 122 hafs_regional_atm_ocn_wav 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 = 906.217369 -The maximum resident set size (KB) = 915476 +The total amount of wall time = 934.879564 +The maximum resident set size (KB) = 919296 Test 122 hafs_regional_atm_ocn_wav PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/hafs_regional_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/hafs_regional_1nest_atm Checking test 123 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 332.782126 -The maximum resident set size (KB) = 396208 +The total amount of wall time = 337.504476 +The maximum resident set size (KB) = 395704 Test 123 hafs_regional_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/hafs_regional_telescopic_2nests_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/hafs_regional_telescopic_2nests_atm Checking test 124 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3965,28 +3965,28 @@ Checking test 124 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 406.973801 -The maximum resident set size (KB) = 403488 +The total amount of wall time = 416.203348 +The maximum resident set size (KB) = 424700 Test 124 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_global_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/hafs_global_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_global_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/hafs_global_1nest_atm Checking test 125 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 174.362822 -The maximum resident set size (KB) = 293824 +The total amount of wall time = 177.893053 +The maximum resident set size (KB) = 264168 Test 125 hafs_global_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_global_multiple_4nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/hafs_global_multiple_4nests_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_global_multiple_4nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/hafs_global_multiple_4nests_atm Checking test 126 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4004,14 +4004,14 @@ Checking test 126 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -The total amount of wall time = 491.949312 -The maximum resident set size (KB) = 353176 +The total amount of wall time = 496.223714 +The maximum resident set size (KB) = 348760 Test 126 hafs_global_multiple_4nests_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/hafs_regional_specified_moving_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/hafs_regional_specified_moving_1nest_atm Checking test 127 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4020,28 +4020,28 @@ Checking test 127 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 221.325827 -The maximum resident set size (KB) = 415760 +The total amount of wall time = 226.658168 +The maximum resident set size (KB) = 411604 Test 127 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/hafs_regional_storm_following_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/hafs_regional_storm_following_1nest_atm Checking test 128 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 209.639637 -The maximum resident set size (KB) = 411744 +The total amount of wall time = 212.513848 +The maximum resident set size (KB) = 406672 Test 128 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/hafs_regional_storm_following_1nest_atm_ocn Checking test 129 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4050,42 +4050,42 @@ Checking test 129 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 255.367371 -The maximum resident set size (KB) = 477464 +The total amount of wall time = 271.700744 +The maximum resident set size (KB) = 472612 Test 129 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/hafs_global_storm_following_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_global_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/hafs_global_storm_following_1nest_atm Checking test 130 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 87.116885 -The maximum resident set size (KB) = 294048 +The total amount of wall time = 87.900047 +The maximum resident set size (KB) = 283108 Test 130 hafs_global_storm_following_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 131 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 800.566765 -The maximum resident set size (KB) = 495540 +The total amount of wall time = 805.302226 +The maximum resident set size (KB) = 492996 Test 131 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 132 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4096,14 +4096,14 @@ Checking test 132 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 506.485461 -The maximum resident set size (KB) = 529592 +The total amount of wall time = 508.311707 +The maximum resident set size (KB) = 528328 Test 132 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_atmlnd_sbs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_p8_atmlnd_sbs +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8_atmlnd_sbs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_p8_atmlnd_sbs Checking test 133 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4188,14 +4188,14 @@ Checking test 133 control_p8_atmlnd_sbs 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 = 243.594305 -The maximum resident set size (KB) = 1550220 +The total amount of wall time = 242.986567 +The maximum resident set size (KB) = 1540284 Test 133 control_p8_atmlnd_sbs PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/atmaero_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/atmaero_control_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/atmaero_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/atmaero_control_p8 Checking test 134 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4239,14 +4239,14 @@ Checking test 134 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 250.219427 -The maximum resident set size (KB) = 2815536 +The total amount of wall time = 252.394425 +The maximum resident set size (KB) = 2814224 Test 134 atmaero_control_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/atmaero_control_p8_rad -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/atmaero_control_p8_rad +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/atmaero_control_p8_rad +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/atmaero_control_p8_rad Checking test 135 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4290,14 +4290,14 @@ Checking test 135 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 295.530872 -The maximum resident set size (KB) = 2877260 +The total amount of wall time = 286.015177 +The maximum resident set size (KB) = 2878236 Test 135 atmaero_control_p8_rad PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/atmaero_control_p8_rad_micro +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/atmaero_control_p8_rad_micro +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/atmaero_control_p8_rad_micro Checking test 136 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4341,14 +4341,14 @@ Checking test 136 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 302.120297 -The maximum resident set size (KB) = 2886428 +The total amount of wall time = 296.506912 +The maximum resident set size (KB) = 2886276 Test 136 atmaero_control_p8_rad_micro PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_atmaq -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/regional_atmaq +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_atmaq +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/regional_atmaq Checking test 137 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4364,14 +4364,14 @@ Checking test 137 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 712.159180 -The maximum resident set size (KB) = 1260008 +The total amount of wall time = 700.298163 +The maximum resident set size (KB) = 1269112 Test 137 regional_atmaq PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_atmaq_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/regional_atmaq_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_atmaq_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/regional_atmaq_debug Checking test 138 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4385,12 +4385,12 @@ Checking test 138 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1304.633230 -The maximum resident set size (KB) = 1295680 +The total amount of wall time = 1316.722101 +The maximum resident set size (KB) = 1291936 Test 138 regional_atmaq_debug PASS REGRESSION TEST WAS SUCCESSFUL -Tue May 9 00:30:00 UTC 2023 -Elapsed time: 01h:10m:53s. Have a nice day! +Thu May 11 12:18:09 UTC 2023 +Elapsed time: 01h:12m:14s. Have a nice day! diff --git a/tests/detect_machine.sh b/tests/detect_machine.sh index 5d22dd339be..c36237c0d5d 100755 --- a/tests/detect_machine.sh +++ b/tests/detect_machine.sh @@ -27,7 +27,6 @@ case $(hostname -f) in alogin01.acorn.wcoss2.ncep.noaa.gov) MACHINE_ID=acorn ;; ### acorn alogin02.acorn.wcoss2.ncep.noaa.gov) MACHINE_ID=acorn ;; ### acorn - gaea9) MACHINE_ID=gaea ;; ### gaea9 gaea10) MACHINE_ID=gaea ;; ### gaea10 gaea11) MACHINE_ID=gaea ;; ### gaea11 gaea12) MACHINE_ID=gaea ;; ### gaea12 @@ -35,7 +34,6 @@ case $(hostname -f) in gaea14) MACHINE_ID=gaea ;; ### gaea14 gaea15) MACHINE_ID=gaea ;; ### gaea15 gaea16) MACHINE_ID=gaea ;; ### gaea16 - gaea9.ncrc.gov) MACHINE_ID=gaea ;; ### gaea9 gaea10.ncrc.gov) MACHINE_ID=gaea ;; ### gaea10 gaea11.ncrc.gov) MACHINE_ID=gaea ;; ### gaea11 gaea12.ncrc.gov) MACHINE_ID=gaea ;; ### gaea12 diff --git a/tests/fv3_conf/compile_slurm.IN_gaea b/tests/fv3_conf/compile_slurm.IN_gaea index 195bb19d196..50865941eee 100644 --- a/tests/fv3_conf/compile_slurm.IN_gaea +++ b/tests/fv3_conf/compile_slurm.IN_gaea @@ -5,6 +5,7 @@ ##SBATCH --qos=@[QUEUE] #SBATCH --clusters=es #SBATCH --partition=eslogin +#SBATCH --exclude=gaea9 #SBATCH --nodes=1 #SBATCH --ntasks-per-node=8 #SBATCH --time=180 diff --git a/tests/rt.sh b/tests/rt.sh index 9a4007bac19..39b222067bb 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -468,7 +468,7 @@ if [[ $TESTS_FILE =~ '35d' ]] || [[ $TESTS_FILE =~ 'weekly' ]]; then fi -BL_DATE=20230504 +BL_DATE=20230510 RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-${BL_DATE}/${RT_COMPILER^^}} From e403bb43ce5f1e0b5a10a37d136cc84a205da7ce Mon Sep 17 00:00:00 2001 From: Denise Worthen Date: Mon, 15 May 2023 13:20:33 -0400 Subject: [PATCH 30/30] Add Unstructured WW3 mesh capability to UFS (#1727) * cpld pdlib, cpld control pass against created baselines * remove "wise" from wave domain name * update WW3, modify rtwaves for testing * set dnats to 0 in pdlib tests * remove scotch from ufs_common and add scotch module only for hera,cheyenne and orion --- CMakeLists.txt | 7 +- WW3 | 2 +- modulefiles/ufs_cheyenne.gnu.lua | 3 + modulefiles/ufs_cheyenne.intel.lua | 3 + modulefiles/ufs_hera.gnu.lua | 3 + modulefiles/ufs_hera.intel.lua | 3 + modulefiles/ufs_orion.intel.lua | 3 + tests/RegressionTests_acorn.intel.log | 1352 ++-- tests/RegressionTests_cheyenne.gnu.log | 728 +- tests/RegressionTests_cheyenne.intel.log | 1372 ++-- tests/RegressionTests_gaea.intel.log | 1366 ++-- tests/RegressionTests_hera.gnu.log | 659 +- tests/RegressionTests_hera.intel.log | 6114 +++++++---------- tests/RegressionTests_jet.intel.log | 1250 ++-- tests/RegressionTests_orion.intel.log | 2256 +++--- tests/RegressionTests_wcoss2.intel.log | 1158 ++-- tests/default_vars.sh | 12 + tests/parm/nems.configure.cpld_esmfthreads.IN | 149 - tests/rt.conf | 9 + tests/rt.sh | 12 +- tests/rt_gnu.conf | 19 +- tests/tests/cpld_bmark_p8 | 2 +- tests/tests/cpld_control_pdlib_p8 | 107 + tests/tests/cpld_debug_pdlib_p8 | 99 + tests/tests/cpld_mpi_pdlib_p8 | 110 + tests/tests/cpld_restart_bmark_p8 | 2 +- tests/tests/cpld_restart_pdlib_p8 | 113 + 27 files changed, 8384 insertions(+), 8529 deletions(-) delete mode 100644 tests/parm/nems.configure.cpld_esmfthreads.IN create mode 100644 tests/tests/cpld_control_pdlib_p8 create mode 100644 tests/tests/cpld_debug_pdlib_p8 create mode 100644 tests/tests/cpld_mpi_pdlib_p8 create mode 100644 tests/tests/cpld_restart_pdlib_p8 diff --git a/CMakeLists.txt b/CMakeLists.txt index eac52d64240..8e9944edc80 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -70,6 +70,7 @@ set(OPENMP ON CACHE BOOL "Enable OpenMP threading") set(PARALLEL_NETCDF OFF CACHE BOOL "Enable parallel NetCDF") set(JEDI_DRIVER OFF CACHE BOOL "Enable JEDI as top level driver") set(CMEPS_AOFLUX OFF CACHE BOOL "Enable atmosphere-ocean flux calculation in mediator") +set(PDLIB OFF CACHE BOOL "Enable Domain Decomposition in WW3 via PDLIB") set(CMAKE_Platform $ENV{CMAKE_Platform}) if(CMAKE_Platform) @@ -206,7 +207,11 @@ if(WW3) set(UFS_CAP "MULTI_ESMF" CACHE STRING "Build with MULTI_ESMF cap") list(APPEND _ufs_defs_private FRONT_WW3=WMESMFMD) else() - set(SWITCH "meshcap" CACHE STRING "NUOPC mesh cap") + if(PDLIB) + set(SWITCH "meshcap_pdlib" CACHE STRING "NUOPC mesh cap") + else() + set(SWITCH "meshcap" CACHE STRING "NUOPC mesh cap") + endif() set(UFS_CAP "NUOPC_MESH" CACHE STRING "Build with NUOPC_MESH cap") list(APPEND _ufs_defs_private FRONT_WW3=wav_comp_nuopc) endif() diff --git a/WW3 b/WW3 index 7c932242fd1..c4b116886b5 160000 --- a/WW3 +++ b/WW3 @@ -1 +1 @@ -Subproject commit 7c932242fd120b189cb17f48799e3cd00260621c +Subproject commit c4b116886b5ef9af5fb4942d7161074df3402732 diff --git a/modulefiles/ufs_cheyenne.gnu.lua b/modulefiles/ufs_cheyenne.gnu.lua index 8c7aa71d60d..6d96ab95d31 100644 --- a/modulefiles/ufs_cheyenne.gnu.lua +++ b/modulefiles/ufs_cheyenne.gnu.lua @@ -33,6 +33,9 @@ load(pathJoin("hpc-gnu", hpc_gnu_ver)) hpc_mpt_ver=os.getenv("hpc_mpt_ver") or "2.25" load(pathJoin("hpc-mpt", hpc_mpt_ver)) +scotch_ver=os.getenv("scotch_ver") or "7.0.3" +load(pathJoin("scotch", scotch_ver)) + load("ufs_common") setenv("CC", "mpicc") diff --git a/modulefiles/ufs_cheyenne.intel.lua b/modulefiles/ufs_cheyenne.intel.lua index 7f9dc697f9e..66e7c8e8f4c 100644 --- a/modulefiles/ufs_cheyenne.intel.lua +++ b/modulefiles/ufs_cheyenne.intel.lua @@ -34,6 +34,9 @@ load(pathJoin("hpc-intel", hpc_intel_ver)) hpc_mpt_ver=os.getenv("hpc_mpt_ver") or "2.25" load(pathJoin("hpc-mpt", hpc_mpt_ver)) +scotch_ver=os.getenv("scotch_ver") or "7.0.3" +load(pathJoin("scotch", scotch_ver)) + load("ufs_common") setenv("CC", "mpicc") diff --git a/modulefiles/ufs_hera.gnu.lua b/modulefiles/ufs_hera.gnu.lua index 1687aa8f42f..f2f4f716650 100644 --- a/modulefiles/ufs_hera.gnu.lua +++ b/modulefiles/ufs_hera.gnu.lua @@ -22,6 +22,9 @@ load(pathJoin("hpc-gnu", hpc_gnu_ver)) hpc_mpich_ver=os.getenv("hpc_mpich_ver") or "3.3.2" load(pathJoin("hpc-mpich", hpc_mpich_ver)) +scotch_ver=os.getenv("scotch_ver") or "7.0.3" +load(pathJoin("scotch", scotch_ver)) + load("ufs_common") setenv("CC", "mpicc") diff --git a/modulefiles/ufs_hera.intel.lua b/modulefiles/ufs_hera.intel.lua index 2a3b27d736a..c56a806bc57 100644 --- a/modulefiles/ufs_hera.intel.lua +++ b/modulefiles/ufs_hera.intel.lua @@ -25,6 +25,9 @@ load(pathJoin("hpc-intel", hpc_intel_ver)) hpc_impi_ver=os.getenv("hpc_impi_ver") or "2022.1.2" load(pathJoin("hpc-impi", hpc_impi_ver)) +scotch_ver=os.getenv("scotch_ver") or "7.0.3" +load(pathJoin("scotch", scotch_ver)) + load("ufs_common") setenv("CC", "mpiicc") diff --git a/modulefiles/ufs_orion.intel.lua b/modulefiles/ufs_orion.intel.lua index 0e942d9e142..6c3c01b0f95 100644 --- a/modulefiles/ufs_orion.intel.lua +++ b/modulefiles/ufs_orion.intel.lua @@ -19,6 +19,9 @@ load(pathJoin("hpc-intel", hpc_intel_ver)) hpc_impi_ver=os.getenv("hpc_impi_ver") or "2022.1.2" load(pathJoin("hpc-impi", hpc_impi_ver)) +scotch_ver=os.getenv("scotch_ver") or "7.0.3" +load(pathJoin("scotch", scotch_ver)) + load("ufs_common") setenv("CC", "mpiicc") diff --git a/tests/RegressionTests_acorn.intel.log b/tests/RegressionTests_acorn.intel.log index da2ff48c819..791153ed2ed 100644 --- a/tests/RegressionTests_acorn.intel.log +++ b/tests/RegressionTests_acorn.intel.log @@ -1,41 +1,41 @@ -Wed May 10 21:30:37 UTC 2023 +Mon May 15 13:46:11 UTC 2023 Start Regression test -Compile 001 elapsed time 582 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 1129 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 556 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 542 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 005 elapsed time 518 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 670 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 1698 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 008 elapsed time 1048 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 1097 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 1178 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 1275 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 621 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 830 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 014 elapsed time 609 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 1148 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 501 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 657 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 398 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 530 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 020 elapsed time 478 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 021 elapsed time 982 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 022 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 023 elapsed time 495 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 024 elapsed time 286 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 142 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 026 elapsed time 546 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 027 elapsed time 562 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 739 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 912 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 654 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 243 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 032 elapsed time 668 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8_mixedmode -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/cpld_control_p8_mixedmode +Compile 001 elapsed time 791 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 572 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 1032 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 518 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 005 elapsed time 1086 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 665 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 1355 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 008 elapsed time 1446 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 1009 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 484 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 624 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 1174 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 952 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 014 elapsed time 215 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 710 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 740 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 198 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 343 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 954 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 020 elapsed time 1100 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 021 elapsed time 709 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 022 elapsed time 745 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 023 elapsed time 254 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 024 elapsed time 256 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 387 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 026 elapsed time 764 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 027 elapsed time 634 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 794 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 740 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 483 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 466 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 032 elapsed time 774 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_p8_mixedmode +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -100,14 +100,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 334.103195 -The maximum resident set size (KB) = 2945008 +The total amount of wall time = 335.649143 +The maximum resident set size (KB) = 2950272 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_gfsv17 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/cpld_control_gfsv17 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_gfsv17 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -171,14 +171,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 257.756531 -The maximum resident set size (KB) = 1581932 +The total amount of wall time = 263.373386 +The maximum resident set size (KB) = 1579344 Test 002 cpld_control_gfsv17 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/cpld_control_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -243,14 +243,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 386.272129 -The maximum resident set size (KB) = 2978096 +The total amount of wall time = 395.183913 +The maximum resident set size (KB) = 2976900 Test 003 cpld_control_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/cpld_restart_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -303,14 +303,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 230.236237 -The maximum resident set size (KB) = 2864688 +The total amount of wall time = 231.123999 +The maximum resident set size (KB) = 2868064 Test 004 cpld_restart_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/cpld_control_qr_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -375,14 +375,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 386.219452 -The maximum resident set size (KB) = 2990352 +The total amount of wall time = 400.145400 +The maximum resident set size (KB) = 2991668 Test 005 cpld_control_qr_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/cpld_restart_qr_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -435,14 +435,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 231.360922 -The maximum resident set size (KB) = 2877612 +The total amount of wall time = 231.870526 +The maximum resident set size (KB) = 2885160 Test 006 cpld_restart_qr_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/cpld_2threads_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -495,14 +495,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 368.900907 -The maximum resident set size (KB) = 3282964 +The total amount of wall time = 374.509692 +The maximum resident set size (KB) = 3278620 Test 007 cpld_2threads_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/cpld_decomp_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -555,14 +555,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 383.467588 -The maximum resident set size (KB) = 2980416 +The total amount of wall time = 384.816886 +The maximum resident set size (KB) = 2977592 Test 008 cpld_decomp_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/cpld_mpi_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -615,14 +615,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 319.358363 -The maximum resident set size (KB) = 2909052 +The total amount of wall time = 324.472115 +The maximum resident set size (KB) = 2909676 Test 009 cpld_mpi_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_ciceC_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/cpld_control_ciceC_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_ciceC_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -687,14 +687,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 386.794090 -The maximum resident set size (KB) = 2981120 +The total amount of wall time = 393.008467 +The maximum resident set size (KB) = 2978180 Test 010 cpld_control_ciceC_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/cpld_control_noaero_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/cpld_control_noaero_p8 Checking test 011 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -758,14 +758,14 @@ Checking test 011 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 286.471011 -The maximum resident set size (KB) = 1574268 +The total amount of wall time = 281.302029 +The maximum resident set size (KB) = 1564424 Test 011 cpld_control_noaero_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/cpld_control_nowave_noaero_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_c96_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/cpld_control_nowave_noaero_p8 Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -827,14 +827,14 @@ Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 303.769702 -The maximum resident set size (KB) = 1620092 +The total amount of wall time = 297.583092 +The maximum resident set size (KB) = 1619608 Test 012 cpld_control_nowave_noaero_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/cpld_control_noaero_p8_agrid +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_noaero_p8_agrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/cpld_control_noaero_p8_agrid Checking test 013 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -896,14 +896,14 @@ Checking test 013 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 310.657986 -The maximum resident set size (KB) = 1629460 +The total amount of wall time = 312.027128 +The maximum resident set size (KB) = 1622396 Test 013 cpld_control_noaero_p8_agrid PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/cpld_control_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/cpld_control_c48 Checking test 014 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -953,14 +953,14 @@ Checking test 014 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 440.933249 -The maximum resident set size (KB) = 2637520 +The total amount of wall time = 435.245943 +The maximum resident set size (KB) = 2638460 Test 014 cpld_control_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/cpld_warmstart_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/cpld_warmstart_c48 Checking test 015 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1010,14 +1010,14 @@ Checking test 015 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 122.418026 -The maximum resident set size (KB) = 2647960 +The total amount of wall time = 121.119072 +The maximum resident set size (KB) = 2653292 Test 015 cpld_warmstart_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/cpld_restart_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/cpld_restart_c48 Checking test 016 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1067,14 +1067,14 @@ Checking test 016 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 68.766799 -The maximum resident set size (KB) = 2061308 +The total amount of wall time = 69.328539 +The maximum resident set size (KB) = 2065796 Test 016 cpld_restart_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/cpld_control_p8_faster +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/cpld_control_p8_faster Checking test 017 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1139,14 +1139,14 @@ Checking test 017 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 377.393357 -The maximum resident set size (KB) = 2977812 +The total amount of wall time = 380.433102 +The maximum resident set size (KB) = 2978196 Test 017 cpld_control_p8_faster PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_flake -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_flake +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_flake +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/control_flake Checking test 018 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1157,14 +1157,14 @@ Checking test 018 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 213.716313 -The maximum resident set size (KB) = 560864 +The total amount of wall time = 214.204089 +The maximum resident set size (KB) = 559404 Test 018 control_flake PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_CubedSphereGrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_CubedSphereGrid +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_CubedSphereGrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/control_CubedSphereGrid Checking test 019 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1191,14 +1191,14 @@ Checking test 019 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 128.910857 -The maximum resident set size (KB) = 512412 +The total amount of wall time = 129.127441 +The maximum resident set size (KB) = 511872 Test 019 control_CubedSphereGrid PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_latlon -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_latlon +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_latlon +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/control_latlon Checking test 020 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1209,14 +1209,14 @@ Checking test 020 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 131.760413 -The maximum resident set size (KB) = 512168 +The total amount of wall time = 133.382609 +The maximum resident set size (KB) = 516360 Test 020 control_latlon PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_wrtGauss_netcdf_parallel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/control_wrtGauss_netcdf_parallel Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1227,14 +1227,14 @@ Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 134.660908 -The maximum resident set size (KB) = 515264 +The total amount of wall time = 135.328468 +The maximum resident set size (KB) = 512128 Test 021 control_wrtGauss_netcdf_parallel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/control_c48 Checking test 022 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1273,14 +1273,14 @@ Checking test 022 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 331.628426 -The maximum resident set size (KB) = 671592 +The total amount of wall time = 325.662952 +The maximum resident set size (KB) = 675792 Test 022 control_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_c192 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_c192 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_c192 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/control_c192 Checking test 023 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1291,14 +1291,14 @@ Checking test 023 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 528.431107 -The maximum resident set size (KB) = 614692 +The total amount of wall time = 528.061087 +The maximum resident set size (KB) = 614824 Test 023 control_c192 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_c384 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_c384 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_c384 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/control_c384 Checking test 024 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1309,14 +1309,14 @@ Checking test 024 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 566.071849 -The maximum resident set size (KB) = 922524 +The total amount of wall time = 565.532418 +The maximum resident set size (KB) = 920692 Test 024 control_c384 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_c384gdas -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_c384gdas +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_c384gdas +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/control_c384gdas Checking test 025 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1359,14 +1359,14 @@ Checking test 025 control_c384gdas 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 = 497.576766 -The maximum resident set size (KB) = 1054948 +The total amount of wall time = 495.703706 +The maximum resident set size (KB) = 1059680 Test 025 control_c384gdas PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_stochy +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/control_stochy Checking test 026 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1377,28 +1377,28 @@ Checking test 026 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 89.459411 -The maximum resident set size (KB) = 516152 +The total amount of wall time = 88.967785 +The maximum resident set size (KB) = 519004 Test 026 control_stochy PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_stochy_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/control_stochy_restart Checking test 027 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 49.246527 -The maximum resident set size (KB) = 287220 +The total amount of wall time = 49.324118 +The maximum resident set size (KB) = 287152 Test 027 control_stochy_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_lndp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/control_lndp Checking test 028 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1409,14 +1409,14 @@ Checking test 028 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 82.821673 -The maximum resident set size (KB) = 516600 +The total amount of wall time = 83.371332 +The maximum resident set size (KB) = 516004 Test 028 control_lndp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_iovr4 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_iovr4 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_iovr4 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/control_iovr4 Checking test 029 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1431,14 +1431,14 @@ Checking test 029 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 136.338454 -The maximum resident set size (KB) = 514432 +The total amount of wall time = 135.359431 +The maximum resident set size (KB) = 510204 Test 029 control_iovr4 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_iovr5 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_iovr5 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_iovr5 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/control_iovr5 Checking test 030 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1453,14 +1453,14 @@ Checking test 030 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.096758 -The maximum resident set size (KB) = 514692 +The total amount of wall time = 134.551737 +The maximum resident set size (KB) = 512928 Test 030 control_iovr5 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/control_p8 Checking test 031 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1507,14 +1507,14 @@ Checking test 031 control_p8 results .... 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.724838 -The maximum resident set size (KB) = 1481608 +The total amount of wall time = 178.320150 +The maximum resident set size (KB) = 1481356 Test 031 control_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_restart_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/control_restart_p8 Checking test 032 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1553,14 +1553,14 @@ Checking test 032 control_restart_p8 results .... 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.999382 -The maximum resident set size (KB) = 650984 +The total amount of wall time = 98.343421 +The maximum resident set size (KB) = 652212 Test 032 control_restart_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_qr_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/control_qr_p8 Checking test 033 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1607,14 +1607,14 @@ Checking test 033 control_qr_p8 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 = 178.318774 -The maximum resident set size (KB) = 1494052 +The total amount of wall time = 175.567444 +The maximum resident set size (KB) = 1492596 Test 033 control_qr_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_restart_qr_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/control_restart_qr_p8 Checking test 034 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1653,14 +1653,14 @@ Checking test 034 control_restart_qr_p8 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 = 101.156076 -The maximum resident set size (KB) = 660412 +The total amount of wall time = 98.221571 +The maximum resident set size (KB) = 660788 Test 034 control_restart_qr_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_decomp_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/control_decomp_p8 Checking test 035 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1703,14 +1703,14 @@ Checking test 035 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 181.362821 -The maximum resident set size (KB) = 1480112 +The total amount of wall time = 179.986480 +The maximum resident set size (KB) = 1471348 Test 035 control_decomp_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_2threads_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/control_2threads_p8 Checking test 036 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1753,14 +1753,14 @@ Checking test 036 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 156.589945 -The maximum resident set size (KB) = 1563816 +The total amount of wall time = 154.644675 +The maximum resident set size (KB) = 1569320 Test 036 control_2threads_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_p8_lndp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_p8_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/control_p8_lndp Checking test 037 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1779,14 +1779,14 @@ Checking test 037 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 322.290349 -The maximum resident set size (KB) = 1481700 +The total amount of wall time = 319.153998 +The maximum resident set size (KB) = 1479960 Test 037 control_p8_lndp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8_rrtmgp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_p8_rrtmgp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_p8_rrtmgp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/control_p8_rrtmgp Checking test 038 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1833,14 +1833,14 @@ Checking test 038 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 234.621895 -The maximum resident set size (KB) = 1540284 +The total amount of wall time = 233.626054 +The maximum resident set size (KB) = 1542188 Test 038 control_p8_rrtmgp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8_mynn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_p8_mynn +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_p8_mynn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/control_p8_mynn Checking test 039 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1887,14 +1887,14 @@ Checking test 039 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 178.783996 -The maximum resident set size (KB) = 1488052 +The total amount of wall time = 179.431372 +The maximum resident set size (KB) = 1490320 Test 039 control_p8_mynn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/merra2_thompson -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/merra2_thompson +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/merra2_thompson +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/merra2_thompson Checking test 040 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1941,14 +1941,14 @@ Checking test 040 merra2_thompson results .... 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.382881 -The maximum resident set size (KB) = 1486428 +The total amount of wall time = 201.911733 +The maximum resident set size (KB) = 1487188 Test 040 merra2_thompson PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/regional_control +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/regional_control Checking test 041 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1959,28 +1959,28 @@ Checking test 041 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 288.645241 -The maximum resident set size (KB) = 653152 +The total amount of wall time = 288.115805 +The maximum resident set size (KB) = 652228 Test 041 regional_control PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/regional_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/regional_restart Checking test 042 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 156.136315 -The maximum resident set size (KB) = 649116 +The total amount of wall time = 153.936763 +The maximum resident set size (KB) = 647972 Test 042 regional_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/regional_control_qr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/regional_control_qr Checking test 043 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1991,28 +1991,28 @@ Checking test 043 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 291.194065 -The maximum resident set size (KB) = 652800 +The total amount of wall time = 288.663932 +The maximum resident set size (KB) = 653376 Test 043 regional_control_qr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/regional_restart_qr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/regional_restart_qr Checking test 044 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 156.171478 -The maximum resident set size (KB) = 648748 +The total amount of wall time = 156.017043 +The maximum resident set size (KB) = 648008 Test 044 regional_restart_qr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/regional_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/regional_decomp Checking test 045 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2023,14 +2023,14 @@ Checking test 045 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 301.920895 -The maximum resident set size (KB) = 653664 +The total amount of wall time = 302.662752 +The maximum resident set size (KB) = 653624 Test 045 regional_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/regional_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/regional_2threads Checking test 046 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2041,14 +2041,14 @@ Checking test 046 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 176.051319 -The maximum resident set size (KB) = 696748 +The total amount of wall time = 174.853141 +The maximum resident set size (KB) = 692280 Test 046 regional_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_noquilt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/regional_noquilt +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_noquilt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/regional_noquilt Checking test 047 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2056,14 +2056,14 @@ Checking test 047 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 311.703664 -The maximum resident set size (KB) = 641896 +The total amount of wall time = 308.315405 +The maximum resident set size (KB) = 641684 Test 047 regional_noquilt PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/regional_2dwrtdecomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/regional_2dwrtdecomp Checking test 048 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2074,14 +2074,14 @@ Checking test 048 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 288.306608 -The maximum resident set size (KB) = 648464 +The total amount of wall time = 288.479079 +The maximum resident set size (KB) = 648696 Test 048 regional_2dwrtdecomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/fv3_regional_wofs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/regional_wofs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/fv3_regional_wofs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/regional_wofs Checking test 049 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2092,14 +2092,14 @@ Checking test 049 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 363.155741 -The maximum resident set size (KB) = 340464 +The total amount of wall time = 362.884732 +The maximum resident set size (KB) = 339232 Test 049 regional_wofs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_ifi_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/regional_ifi_control +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_ifi_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/regional_ifi_control Checking test 050 regional_ifi_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2110,14 +2110,14 @@ Checking test 050 regional_ifi_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 323.158240 -The maximum resident set size (KB) = 654820 +The total amount of wall time = 320.256444 +The maximum resident set size (KB) = 654632 Test 050 regional_ifi_control PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_ifi_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/regional_ifi_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_ifi_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/regional_ifi_decomp Checking test 051 regional_ifi_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2128,14 +2128,14 @@ Checking test 051 regional_ifi_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 339.183003 -The maximum resident set size (KB) = 652476 +The total amount of wall time = 334.032694 +The maximum resident set size (KB) = 651412 Test 051 regional_ifi_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_ifi_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/regional_ifi_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_ifi_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/regional_ifi_2threads Checking test 052 regional_ifi_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2146,14 +2146,14 @@ Checking test 052 regional_ifi_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 200.744122 -The maximum resident set size (KB) = 691308 +The total amount of wall time = 195.742685 +The maximum resident set size (KB) = 695372 Test 052 regional_ifi_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/rap_control +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/rap_control Checking test 053 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2200,14 +2200,14 @@ Checking test 053 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 418.802981 -The maximum resident set size (KB) = 890888 +The total amount of wall time = 419.979374 +The maximum resident set size (KB) = 892224 Test 053 rap_control PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/regional_spp_sppt_shum_skeb +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_spp_sppt_shum_skeb +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/regional_spp_sppt_shum_skeb Checking test 054 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2218,14 +2218,14 @@ Checking test 054 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 244.403167 -The maximum resident set size (KB) = 982392 +The total amount of wall time = 242.771190 +The maximum resident set size (KB) = 986672 Test 054 regional_spp_sppt_shum_skeb PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/rap_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/rap_decomp Checking test 055 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2272,14 +2272,14 @@ Checking test 055 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 433.835082 -The maximum resident set size (KB) = 890164 +The total amount of wall time = 432.783890 +The maximum resident set size (KB) = 885260 Test 055 rap_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/rap_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/rap_2threads Checking test 056 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2326,14 +2326,14 @@ Checking test 056 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 388.062843 -The maximum resident set size (KB) = 969856 +The total amount of wall time = 389.169804 +The maximum resident set size (KB) = 963672 Test 056 rap_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/rap_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/rap_restart Checking test 057 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2372,14 +2372,14 @@ Checking test 057 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 212.418995 -The maximum resident set size (KB) = 642708 +The total amount of wall time = 212.612126 +The maximum resident set size (KB) = 638516 Test 057 rap_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/rap_sfcdiff +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/rap_sfcdiff Checking test 058 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2426,14 +2426,14 @@ Checking test 058 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 420.762832 -The maximum resident set size (KB) = 891764 +The total amount of wall time = 422.460303 +The maximum resident set size (KB) = 890468 Test 058 rap_sfcdiff PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/rap_sfcdiff_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/rap_sfcdiff_decomp Checking test 059 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2480,14 +2480,14 @@ Checking test 059 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 439.201691 -The maximum resident set size (KB) = 892268 +The total amount of wall time = 438.814747 +The maximum resident set size (KB) = 892852 Test 059 rap_sfcdiff_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/rap_sfcdiff_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/rap_sfcdiff_restart Checking test 060 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2526,14 +2526,14 @@ Checking test 060 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 309.615882 -The maximum resident set size (KB) = 640328 +The total amount of wall time = 309.164363 +The maximum resident set size (KB) = 641212 Test 060 rap_sfcdiff_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/hrrr_control +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/hrrr_control Checking test 061 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2580,14 +2580,14 @@ Checking test 061 hrrr_control 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 = 390.747112 -The maximum resident set size (KB) = 885060 +The total amount of wall time = 389.896435 +The maximum resident set size (KB) = 887044 Test 061 hrrr_control PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/hrrr_control_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/hrrr_control_decomp Checking test 062 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2634,14 +2634,14 @@ Checking test 062 hrrr_control_decomp 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 = 404.189715 -The maximum resident set size (KB) = 885600 +The total amount of wall time = 403.897735 +The maximum resident set size (KB) = 886112 Test 062 hrrr_control_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/hrrr_control_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/hrrr_control_2threads Checking test 063 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2688,28 +2688,28 @@ Checking test 063 hrrr_control_2threads 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 = 350.060031 -The maximum resident set size (KB) = 964560 +The total amount of wall time = 349.080934 +The maximum resident set size (KB) = 955180 Test 063 hrrr_control_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/hrrr_control_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/hrrr_control_restart Checking test 064 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 287.215639 -The maximum resident set size (KB) = 637440 +The total amount of wall time = 286.641068 +The maximum resident set size (KB) = 637872 Test 064 hrrr_control_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_v1beta -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/rrfs_v1beta +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/rrfs_v1beta +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/rrfs_v1beta Checking test 065 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2756,14 +2756,14 @@ Checking test 065 rrfs_v1beta results .... 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.765798 -The maximum resident set size (KB) = 887300 +The total amount of wall time = 417.969468 +The maximum resident set size (KB) = 888988 Test 065 rrfs_v1beta PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_v1nssl -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/rrfs_v1nssl +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/rrfs_v1nssl +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/rrfs_v1nssl Checking test 066 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2778,14 +2778,14 @@ Checking test 066 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 482.823085 -The maximum resident set size (KB) = 579420 +The total amount of wall time = 482.652310 +The maximum resident set size (KB) = 573284 Test 066 rrfs_v1nssl PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/rrfs_v1nssl_nohailnoccn +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/rrfs_v1nssl_nohailnoccn Checking test 067 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2800,14 +2800,14 @@ Checking test 067 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 470.769631 -The maximum resident set size (KB) = 567144 +The total amount of wall time = 470.526480 +The maximum resident set size (KB) = 566008 Test 067 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/rrfs_smoke_conus13km_hrrr_warm Checking test 068 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2816,14 +2816,14 @@ Checking test 068 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 150.158252 -The maximum resident set size (KB) = 799248 +The total amount of wall time = 149.902867 +The maximum resident set size (KB) = 798984 Test 068 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 069 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2832,14 +2832,14 @@ Checking test 069 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 111.630569 -The maximum resident set size (KB) = 798928 +The total amount of wall time = 103.889686 +The maximum resident set size (KB) = 798604 Test 069 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/rrfs_conus13km_hrrr_warm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/rrfs_conus13km_hrrr_warm Checking test 070 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2848,14 +2848,14 @@ Checking test 070 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 136.818241 -The maximum resident set size (KB) = 792260 +The total amount of wall time = 135.615797 +The maximum resident set size (KB) = 789732 Test 070 rrfs_conus13km_hrrr_warm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/rrfs_smoke_conus13km_radar_tten_warm Checking test 071 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2864,26 +2864,26 @@ Checking test 071 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 150.866709 -The maximum resident set size (KB) = 798704 +The total amount of wall time = 149.876868 +The maximum resident set size (KB) = 799184 Test 071 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 072 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 70.014616 -The maximum resident set size (KB) = 764104 +The total amount of wall time = 69.217040 +The maximum resident set size (KB) = 766872 Test 072 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_csawmg -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_csawmg +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_csawmg +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/control_csawmg Checking test 073 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2894,14 +2894,14 @@ Checking test 073 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 349.784949 -The maximum resident set size (KB) = 583712 +The total amount of wall time = 353.023531 +The maximum resident set size (KB) = 582556 Test 073 control_csawmg PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_csawmgt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_csawmgt +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_csawmgt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/control_csawmgt Checking test 074 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2912,14 +2912,14 @@ Checking test 074 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 343.617802 -The maximum resident set size (KB) = 582340 +The total amount of wall time = 348.481681 +The maximum resident set size (KB) = 582952 Test 074 control_csawmgt PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_ras -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_ras +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_ras +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/control_ras Checking test 075 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2930,26 +2930,26 @@ Checking test 075 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 181.909824 -The maximum resident set size (KB) = 550016 +The total amount of wall time = 181.725178 +The maximum resident set size (KB) = 548780 Test 075 control_ras PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_wam -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_wam +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_wam +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/control_wam Checking test 076 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 116.944974 -The maximum resident set size (KB) = 269824 +The total amount of wall time = 117.361961 +The maximum resident set size (KB) = 272340 Test 076 control_wam PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_p8_faster +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/control_p8_faster Checking test 077 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2996,14 +2996,14 @@ Checking test 077 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 176.540812 -The maximum resident set size (KB) = 1486044 +The total amount of wall time = 174.434654 +The maximum resident set size (KB) = 1481984 Test 077 control_p8_faster PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/regional_control_faster +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_control_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/regional_control_faster Checking test 078 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3014,56 +3014,56 @@ Checking test 078 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 283.275868 -The maximum resident set size (KB) = 648672 +The total amount of wall time = 283.859798 +The maximum resident set size (KB) = 651852 Test 078 regional_control_faster PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 079 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 919.372519 -The maximum resident set size (KB) = 827296 +The total amount of wall time = 908.913507 +The maximum resident set size (KB) = 824120 Test 079 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 080 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 528.235701 -The maximum resident set size (KB) = 826128 +The total amount of wall time = 526.304860 +The maximum resident set size (KB) = 829436 Test 080 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/rrfs_conus13km_hrrr_warm_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/rrfs_conus13km_hrrr_warm_debug Checking test 081 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 810.398353 -The maximum resident set size (KB) = 821160 +The total amount of wall time = 807.352453 +The maximum resident set size (KB) = 821732 Test 081 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_CubedSphereGrid_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_CubedSphereGrid_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_CubedSphereGrid_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/control_CubedSphereGrid_debug Checking test 082 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3090,348 +3090,348 @@ Checking test 082 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 156.733417 -The maximum resident set size (KB) = 676152 +The total amount of wall time = 156.471561 +The maximum resident set size (KB) = 676124 Test 082 control_CubedSphereGrid_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_wrtGauss_netcdf_parallel_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/control_wrtGauss_netcdf_parallel_debug Checking test 083 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 157.278332 -The maximum resident set size (KB) = 677428 +The total amount of wall time = 156.962258 +The maximum resident set size (KB) = 679388 Test 083 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_stochy_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_stochy_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_stochy_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/control_stochy_debug Checking test 084 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 179.348107 -The maximum resident set size (KB) = 679884 +The total amount of wall time = 176.838892 +The maximum resident set size (KB) = 684572 Test 084 control_stochy_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_lndp_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/control_lndp_debug Checking test 085 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 160.557271 -The maximum resident set size (KB) = 684004 +The total amount of wall time = 160.095048 +The maximum resident set size (KB) = 684368 Test 085 control_lndp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_csawmg_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_csawmg_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_csawmg_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/control_csawmg_debug Checking test 086 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 254.627169 -The maximum resident set size (KB) = 717872 +The total amount of wall time = 254.108448 +The maximum resident set size (KB) = 715572 Test 086 control_csawmg_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_csawmgt_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_csawmgt_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_csawmgt_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/control_csawmgt_debug Checking test 087 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 248.848628 -The maximum resident set size (KB) = 717220 +The total amount of wall time = 250.612071 +The maximum resident set size (KB) = 720904 Test 087 control_csawmgt_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_ras_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_ras_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_ras_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/control_ras_debug Checking test 088 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 161.076658 -The maximum resident set size (KB) = 692720 +The total amount of wall time = 161.724902 +The maximum resident set size (KB) = 690004 Test 088 control_ras_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_diag_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/control_diag_debug Checking test 089 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 161.223959 -The maximum resident set size (KB) = 736824 +The total amount of wall time = 161.632543 +The maximum resident set size (KB) = 735120 Test 089 control_diag_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_debug_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_debug_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_debug_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/control_debug_p8 Checking test 090 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 183.137826 -The maximum resident set size (KB) = 1498168 +The total amount of wall time = 185.391253 +The maximum resident set size (KB) = 1505272 Test 090 control_debug_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/regional_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/regional_debug Checking test 091 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1040.599186 -The maximum resident set size (KB) = 675040 +The total amount of wall time = 1048.353028 +The maximum resident set size (KB) = 677252 Test 091 regional_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/rap_control_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/rap_control_debug Checking test 092 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 296.455272 -The maximum resident set size (KB) = 1051912 +The total amount of wall time = 296.376756 +The maximum resident set size (KB) = 1053624 Test 092 rap_control_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/hrrr_control_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/hrrr_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/hrrr_control_debug Checking test 093 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 289.392892 -The maximum resident set size (KB) = 1046356 +The total amount of wall time = 288.402472 +The maximum resident set size (KB) = 1049348 Test 093 hrrr_control_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/rap_unified_drag_suite_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/rap_unified_drag_suite_debug Checking test 094 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 295.439046 -The maximum resident set size (KB) = 1048172 +The total amount of wall time = 295.911995 +The maximum resident set size (KB) = 1051332 Test 094 rap_unified_drag_suite_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/rap_diag_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/rap_diag_debug Checking test 095 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 306.872848 -The maximum resident set size (KB) = 1136068 +The total amount of wall time = 306.649361 +The maximum resident set size (KB) = 1136968 Test 095 rap_diag_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/rap_cires_ugwp_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/rap_cires_ugwp_debug Checking test 096 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 302.943933 -The maximum resident set size (KB) = 1049760 +The total amount of wall time = 302.862454 +The maximum resident set size (KB) = 1052484 Test 096 rap_cires_ugwp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/rap_unified_ugwp_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/rap_unified_ugwp_debug Checking test 097 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 301.908208 -The maximum resident set size (KB) = 1052332 +The total amount of wall time = 302.782283 +The maximum resident set size (KB) = 1050020 Test 097 rap_unified_ugwp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/rap_lndp_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/rap_lndp_debug Checking test 098 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.094157 -The maximum resident set size (KB) = 1051064 +The total amount of wall time = 299.355454 +The maximum resident set size (KB) = 1052368 Test 098 rap_lndp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_progcld_thompson_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/rap_progcld_thompson_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_progcld_thompson_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/rap_progcld_thompson_debug Checking test 099 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 296.952730 -The maximum resident set size (KB) = 1050240 +The total amount of wall time = 296.119765 +The maximum resident set size (KB) = 1048112 Test 099 rap_progcld_thompson_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_noah_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/rap_noah_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_noah_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/rap_noah_debug Checking test 100 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 289.748558 -The maximum resident set size (KB) = 1046316 +The total amount of wall time = 290.868158 +The maximum resident set size (KB) = 1054260 Test 100 rap_noah_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_sfcdiff_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/rap_sfcdiff_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_sfcdiff_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/rap_sfcdiff_debug Checking test 101 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 296.799457 -The maximum resident set size (KB) = 1054772 +The total amount of wall time = 297.412605 +The maximum resident set size (KB) = 1055328 Test 101 rap_sfcdiff_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/rap_noah_sfcdiff_cires_ugwp_debug Checking test 102 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 486.985720 -The maximum resident set size (KB) = 1048760 +The total amount of wall time = 485.711958 +The maximum resident set size (KB) = 1052572 Test 102 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_v1beta_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/rrfs_v1beta_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/rrfs_v1beta_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/rrfs_v1beta_debug Checking test 103 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 291.698503 -The maximum resident set size (KB) = 1048004 +The total amount of wall time = 290.033908 +The maximum resident set size (KB) = 1048536 Test 103 rrfs_v1beta_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_clm_lake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/rap_clm_lake_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_clm_lake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/rap_clm_lake_debug Checking test 104 rap_clm_lake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 375.148482 -The maximum resident set size (KB) = 1049728 +The total amount of wall time = 373.964560 +The maximum resident set size (KB) = 1053992 Test 104 rap_clm_lake_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_flake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/rap_flake_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_flake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/rap_flake_debug Checking test 105 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.686556 -The maximum resident set size (KB) = 1054336 +The total amount of wall time = 294.872504 +The maximum resident set size (KB) = 1054092 Test 105 rap_flake_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_wam_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_wam_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_wam_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/control_wam_debug Checking test 106 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 298.972023 -The maximum resident set size (KB) = 301548 +The total amount of wall time = 298.410412 +The maximum resident set size (KB) = 302004 Test 106 control_wam_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3442,14 +3442,14 @@ Checking test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 231.819373 -The maximum resident set size (KB) = 903208 +The total amount of wall time = 230.812916 +The maximum resident set size (KB) = 899048 Test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/rap_control_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/rap_control_dyn32_phy32 Checking test 108 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3496,14 +3496,14 @@ Checking test 108 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 354.372295 -The maximum resident set size (KB) = 774244 +The total amount of wall time = 353.056142 +The maximum resident set size (KB) = 774352 Test 108 rap_control_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/hrrr_control_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/hrrr_control_dyn32_phy32 Checking test 109 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3550,14 +3550,14 @@ Checking test 109 hrrr_control_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 178.973356 -The maximum resident set size (KB) = 773244 +The total amount of wall time = 178.760466 +The maximum resident set size (KB) = 777520 Test 109 hrrr_control_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/rap_2threads_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/rap_2threads_dyn32_phy32 Checking test 110 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3604,14 +3604,14 @@ Checking test 110 rap_2threads_dyn32_phy32 results .... 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.581852 -The maximum resident set size (KB) = 830616 +The total amount of wall time = 328.845153 +The maximum resident set size (KB) = 828408 Test 110 rap_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/hrrr_control_2threads_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/hrrr_control_2threads_dyn32_phy32 Checking test 111 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3658,14 +3658,14 @@ Checking test 111 hrrr_control_2threads_dyn32_phy32 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.807328 -The maximum resident set size (KB) = 823392 +The total amount of wall time = 160.572732 +The maximum resident set size (KB) = 825480 Test 111 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/hrrr_control_decomp_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/hrrr_control_decomp_dyn32_phy32 Checking test 112 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3712,14 +3712,14 @@ Checking test 112 hrrr_control_decomp_dyn32_phy32 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.721171 -The maximum resident set size (KB) = 772328 +The total amount of wall time = 187.243663 +The maximum resident set size (KB) = 774632 Test 112 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/rap_restart_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/rap_restart_dyn32_phy32 Checking test 113 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3758,28 +3758,28 @@ Checking test 113 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 258.898169 -The maximum resident set size (KB) = 613516 +The total amount of wall time = 258.365833 +The maximum resident set size (KB) = 616372 Test 113 rap_restart_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/hrrr_control_restart_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/hrrr_control_restart_dyn32_phy32 Checking test 114 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 92.389860 -The maximum resident set size (KB) = 601424 +The total amount of wall time = 92.838866 +The maximum resident set size (KB) = 609052 Test 114 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/rap_control_dyn64_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_control_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/rap_control_dyn64_phy32 Checking test 115 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3826,81 +3826,81 @@ Checking test 115 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -The total amount of wall time = 236.282431 -The maximum resident set size (KB) = 790828 +The total amount of wall time = 234.780477 +The maximum resident set size (KB) = 793344 Test 115 rap_control_dyn64_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/rap_control_debug_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/rap_control_debug_dyn32_phy32 Checking test 116 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 291.048090 -The maximum resident set size (KB) = 939068 +The total amount of wall time = 289.196676 +The maximum resident set size (KB) = 937904 Test 116 rap_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/hrrr_control_debug_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/hrrr_control_debug_dyn32_phy32 Checking test 117 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 285.725869 -The maximum resident set size (KB) = 937768 +The total amount of wall time = 283.063668 +The maximum resident set size (KB) = 931176 Test 117 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/rap_control_dyn64_phy32_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/rap_control_dyn64_phy32_debug Checking test 118 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 294.750727 -The maximum resident set size (KB) = 952868 +The total amount of wall time = 292.890426 +The maximum resident set size (KB) = 952240 Test 118 rap_control_dyn64_phy32_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/hafs_regional_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/hafs_regional_atm Checking test 119 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 269.297629 -The maximum resident set size (KB) = 817644 +The total amount of wall time = 270.155553 +The maximum resident set size (KB) = 817264 Test 119 hafs_regional_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/hafs_regional_atm_thompson_gfdlsf +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/hafs_regional_atm_thompson_gfdlsf Checking test 120 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 311.684660 -The maximum resident set size (KB) = 1181360 +The total amount of wall time = 311.855935 +The maximum resident set size (KB) = 1175176 Test 120 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/hafs_regional_atm_ocn +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/hafs_regional_atm_ocn Checking test 121 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3909,14 +3909,14 @@ Checking test 121 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 387.905846 -The maximum resident set size (KB) = 855928 +The total amount of wall time = 389.349604 +The maximum resident set size (KB) = 855036 Test 121 hafs_regional_atm_ocn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_atm_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/hafs_regional_atm_wav +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_atm_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/hafs_regional_atm_wav Checking test 122 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3925,14 +3925,14 @@ Checking test 122 hafs_regional_atm_wav 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 = 705.434466 -The maximum resident set size (KB) = 888796 +The total amount of wall time = 706.244780 +The maximum resident set size (KB) = 884556 Test 122 hafs_regional_atm_wav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/hafs_regional_atm_ocn_wav +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/hafs_regional_atm_ocn_wav Checking test 123 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3943,28 +3943,28 @@ Checking test 123 hafs_regional_atm_ocn_wav 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.843739 -The maximum resident set size (KB) = 910560 +The total amount of wall time = 902.615438 +The maximum resident set size (KB) = 910416 Test 123 hafs_regional_atm_ocn_wav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/hafs_regional_1nest_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/hafs_regional_1nest_atm Checking test 124 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 333.063207 -The maximum resident set size (KB) = 392660 +The total amount of wall time = 331.131033 +The maximum resident set size (KB) = 390084 Test 124 hafs_regional_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/hafs_regional_telescopic_2nests_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/hafs_regional_telescopic_2nests_atm Checking test 125 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3973,28 +3973,28 @@ Checking test 125 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 404.021457 -The maximum resident set size (KB) = 397960 +The total amount of wall time = 403.544246 +The maximum resident set size (KB) = 398624 Test 125 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_global_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/hafs_global_1nest_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_global_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/hafs_global_1nest_atm Checking test 126 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 172.637498 -The maximum resident set size (KB) = 259752 +The total amount of wall time = 171.964195 +The maximum resident set size (KB) = 261556 Test 126 hafs_global_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_global_multiple_4nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/hafs_global_multiple_4nests_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_global_multiple_4nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/hafs_global_multiple_4nests_atm Checking test 127 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4012,14 +4012,14 @@ Checking test 127 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -The total amount of wall time = 492.771009 -The maximum resident set size (KB) = 346508 +The total amount of wall time = 491.138617 +The maximum resident set size (KB) = 343176 Test 127 hafs_global_multiple_4nests_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/hafs_regional_specified_moving_1nest_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/hafs_regional_specified_moving_1nest_atm Checking test 128 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4028,28 +4028,28 @@ Checking test 128 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 219.095648 -The maximum resident set size (KB) = 408008 +The total amount of wall time = 218.260707 +The maximum resident set size (KB) = 403256 Test 128 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/hafs_regional_storm_following_1nest_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/hafs_regional_storm_following_1nest_atm Checking test 129 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 206.473090 -The maximum resident set size (KB) = 399324 +The total amount of wall time = 207.279630 +The maximum resident set size (KB) = 403344 Test 129 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/hafs_regional_storm_following_1nest_atm_ocn Checking test 130 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4058,42 +4058,42 @@ Checking test 130 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 253.046747 -The maximum resident set size (KB) = 466096 +The total amount of wall time = 251.450163 +The maximum resident set size (KB) = 468036 Test 130 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/hafs_global_storm_following_1nest_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_global_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/hafs_global_storm_following_1nest_atm Checking test 131 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 84.491427 -The maximum resident set size (KB) = 278032 +The total amount of wall time = 84.772075 +The maximum resident set size (KB) = 277700 Test 131 hafs_global_storm_following_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 132 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 802.971645 -The maximum resident set size (KB) = 487340 +The total amount of wall time = 802.273067 +The maximum resident set size (KB) = 487592 Test 132 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 133 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4104,14 +4104,14 @@ Checking test 133 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 499.512830 -The maximum resident set size (KB) = 520680 +The total amount of wall time = 503.833103 +The maximum resident set size (KB) = 518480 Test 133 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_docn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/hafs_regional_docn +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_docn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/hafs_regional_docn Checking test 134 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4119,14 +4119,14 @@ Checking test 134 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 370.558038 -The maximum resident set size (KB) = 862732 +The total amount of wall time = 369.957980 +The maximum resident set size (KB) = 863368 Test 134 hafs_regional_docn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_docn_oisst -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/hafs_regional_docn_oisst +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_docn_oisst +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/hafs_regional_docn_oisst Checking test 135 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4134,131 +4134,131 @@ Checking test 135 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 369.413073 -The maximum resident set size (KB) = 852296 +The total amount of wall time = 371.486202 +The maximum resident set size (KB) = 848876 Test 135 hafs_regional_docn_oisst PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_datm_cdeps -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/hafs_regional_datm_cdeps +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_datm_cdeps +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/hafs_regional_datm_cdeps Checking test 136 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -The total amount of wall time = 945.067224 -The maximum resident set size (KB) = 835404 +The total amount of wall time = 946.185088 +The maximum resident set size (KB) = 840316 Test 136 hafs_regional_datm_cdeps PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/datm_cdeps_control_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_control_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/datm_cdeps_control_cfsr Checking test 137 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 140.960984 -The maximum resident set size (KB) = 733480 +The total amount of wall time = 140.932297 +The maximum resident set size (KB) = 733532 Test 137 datm_cdeps_control_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/datm_cdeps_restart_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_control_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/datm_cdeps_restart_cfsr Checking test 138 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 85.955236 -The maximum resident set size (KB) = 728356 +The total amount of wall time = 85.245240 +The maximum resident set size (KB) = 728176 Test 138 datm_cdeps_restart_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_control_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/datm_cdeps_control_gefs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_control_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/datm_cdeps_control_gefs Checking test 139 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 134.082328 -The maximum resident set size (KB) = 615008 +The total amount of wall time = 134.271574 +The maximum resident set size (KB) = 612052 Test 139 datm_cdeps_control_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_iau_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/datm_cdeps_iau_gefs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_iau_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/datm_cdeps_iau_gefs Checking test 140 datm_cdeps_iau_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 136.475450 -The maximum resident set size (KB) = 613368 +The total amount of wall time = 136.532963 +The maximum resident set size (KB) = 612352 Test 140 datm_cdeps_iau_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_stochy_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/datm_cdeps_stochy_gefs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_stochy_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/datm_cdeps_stochy_gefs Checking test 141 datm_cdeps_stochy_gefs 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.578475 -The maximum resident set size (KB) = 613696 +The total amount of wall time = 138.215905 +The maximum resident set size (KB) = 612964 Test 141 datm_cdeps_stochy_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/datm_cdeps_ciceC_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_ciceC_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/datm_cdeps_ciceC_cfsr Checking test 142 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.751450 -The maximum resident set size (KB) = 736460 +The total amount of wall time = 140.609584 +The maximum resident set size (KB) = 731868 Test 142 datm_cdeps_ciceC_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/datm_cdeps_bulk_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_bulk_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/datm_cdeps_bulk_cfsr Checking test 143 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.830580 -The maximum resident set size (KB) = 731944 +The total amount of wall time = 141.906519 +The maximum resident set size (KB) = 732748 Test 143 datm_cdeps_bulk_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/datm_cdeps_bulk_gefs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_bulk_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/datm_cdeps_bulk_gefs Checking test 144 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 134.267436 -The maximum resident set size (KB) = 613848 +The total amount of wall time = 134.256687 +The maximum resident set size (KB) = 619424 Test 144 datm_cdeps_bulk_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/datm_cdeps_mx025_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_mx025_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/datm_cdeps_mx025_cfsr Checking test 145 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4267,14 +4267,14 @@ Checking test 145 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 429.142775 -The maximum resident set size (KB) = 571704 +The total amount of wall time = 430.354920 +The maximum resident set size (KB) = 571276 Test 145 datm_cdeps_mx025_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/datm_cdeps_mx025_gefs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_mx025_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/datm_cdeps_mx025_gefs Checking test 146 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4283,64 +4283,64 @@ Checking test 146 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 428.688371 -The maximum resident set size (KB) = 549968 +The total amount of wall time = 428.851202 +The maximum resident set size (KB) = 549548 Test 146 datm_cdeps_mx025_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/datm_cdeps_multiple_files_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_control_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/datm_cdeps_multiple_files_cfsr Checking test 147 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.587128 -The maximum resident set size (KB) = 731796 +The total amount of wall time = 140.842739 +The maximum resident set size (KB) = 732832 Test 147 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/datm_cdeps_3072x1536_cfsr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/datm_cdeps_3072x1536_cfsr Checking test 148 datm_cdeps_3072x1536_cfsr 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 = 256.776589 -The maximum resident set size (KB) = 1981328 +The total amount of wall time = 256.519022 +The maximum resident set size (KB) = 1978760 Test 148 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_gfs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/datm_cdeps_gfs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_gfs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/datm_cdeps_gfs Checking test 149 datm_cdeps_gfs 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 = 256.964727 -The maximum resident set size (KB) = 1978544 +The total amount of wall time = 256.309342 +The maximum resident set size (KB) = 1981404 Test 149 datm_cdeps_gfs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_control_cfsr_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/datm_cdeps_control_cfsr_faster +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_control_cfsr_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/datm_cdeps_control_cfsr_faster Checking test 150 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.508246 -The maximum resident set size (KB) = 733600 +The total amount of wall time = 141.281273 +The maximum resident set size (KB) = 733456 Test 150 datm_cdeps_control_cfsr_faster PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/datm_cdeps_lnd_gswp3 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/datm_cdeps_lnd_gswp3 Checking test 151 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4349,14 +4349,14 @@ Checking test 151 datm_cdeps_lnd_gswp3 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 = 21.840443 -The maximum resident set size (KB) = 227780 +The total amount of wall time = 21.822061 +The maximum resident set size (KB) = 229152 Test 151 datm_cdeps_lnd_gswp3 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/datm_cdeps_lnd_gswp3_rst +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/datm_cdeps_lnd_gswp3_rst Checking test 152 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4365,14 +4365,14 @@ Checking test 152 datm_cdeps_lnd_gswp3_rst 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.316911 -The maximum resident set size (KB) = 228088 +The total amount of wall time = 27.409972 +The maximum resident set size (KB) = 230080 Test 152 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8_atmlnd_sbs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_p8_atmlnd_sbs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_p8_atmlnd_sbs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/control_p8_atmlnd_sbs Checking test 153 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4457,14 +4457,14 @@ Checking test 153 control_p8_atmlnd_sbs 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 = 234.753492 -The maximum resident set size (KB) = 1542656 +The total amount of wall time = 236.212880 +The maximum resident set size (KB) = 1539132 Test 153 control_p8_atmlnd_sbs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/atmwav_control_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/atmwav_control_noaero_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/atmwav_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/atmwav_control_noaero_p8 Checking test 154 atmwav_control_noaero_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4507,14 +4507,14 @@ Checking test 154 atmwav_control_noaero_p8 results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK -The total amount of wall time = 107.709651 -The maximum resident set size (KB) = 1525940 +The total amount of wall time = 107.054922 +The maximum resident set size (KB) = 1526700 Test 154 atmwav_control_noaero_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_atmwav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/control_atmwav +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_atmwav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/control_atmwav Checking test 155 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4558,14 +4558,14 @@ Checking test 155 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -The total amount of wall time = 90.288014 -The maximum resident set size (KB) = 544216 +The total amount of wall time = 91.404568 +The maximum resident set size (KB) = 544012 Test 155 control_atmwav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/atmaero_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/atmaero_control_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/atmaero_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/atmaero_control_p8 Checking test 156 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4609,14 +4609,14 @@ Checking test 156 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 244.896297 -The maximum resident set size (KB) = 2811928 +The total amount of wall time = 244.219747 +The maximum resident set size (KB) = 2811736 Test 156 atmaero_control_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/atmaero_control_p8_rad -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/atmaero_control_p8_rad +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/atmaero_control_p8_rad +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/atmaero_control_p8_rad Checking test 157 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4660,14 +4660,14 @@ Checking test 157 atmaero_control_p8_rad results .... 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.933698 -The maximum resident set size (KB) = 2874540 +The total amount of wall time = 282.298400 +The maximum resident set size (KB) = 2879664 Test 157 atmaero_control_p8_rad PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/atmaero_control_p8_rad_micro +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/atmaero_control_p8_rad_micro +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/atmaero_control_p8_rad_micro Checking test 158 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4711,14 +4711,14 @@ Checking test 158 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 287.940817 -The maximum resident set size (KB) = 2883628 +The total amount of wall time = 288.120759 +The maximum resident set size (KB) = 2884728 Test 158 atmaero_control_p8_rad_micro PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_atmaq -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/regional_atmaq +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_atmaq +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/regional_atmaq Checking test 159 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4734,14 +4734,14 @@ Checking test 159 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 675.610090 -The maximum resident set size (KB) = 1253632 +The total amount of wall time = 677.542559 +The maximum resident set size (KB) = 1252292 Test 159 regional_atmaq PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_atmaq_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47764/regional_atmaq_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_atmaq_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_154123/regional_atmaq_debug Checking test 160 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4755,12 +4755,12 @@ Checking test 160 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1297.982680 -The maximum resident set size (KB) = 1290764 +The total amount of wall time = 1319.641850 +The maximum resident set size (KB) = 1286336 Test 160 regional_atmaq_debug PASS REGRESSION TEST WAS SUCCESSFUL -Wed May 10 23:14:47 UTC 2023 -Elapsed time: 01h:44m:10s. Have a nice day! +Mon May 15 15:23:34 UTC 2023 +Elapsed time: 01h:37m:23s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index 83d51bfa163..c6591b99336 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,21 +1,23 @@ -Wed May 10 14:38:31 MDT 2023 +Sun May 14 07:37:11 MDT 2023 Start Regression test -Compile 001 elapsed time 393 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 002 elapsed time 403 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 910 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 194 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 389 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 1141 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 897 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 898 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 646 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 573 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 361 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 012 elapsed time 298 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/control_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/control_c48 +Compile 001 elapsed time 401 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 002 elapsed time 410 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 913 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 196 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 391 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 1144 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 907 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 917 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 628 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 576 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 358 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 012 elapsed time 560 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 013 elapsed time 299 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 014 elapsed time 298 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230512/GNU/control_c48 +working dir = /glade/scratch/jongkim/rt-1727-gnu/jongkim/FV3_RT/rt_8206/control_c48 Checking test 001 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -54,14 +56,14 @@ Checking test 001 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 816.173357 -0:The maximum resident set size (KB) = 680392 +0:The total amount of wall time = 820.726123 +0:The maximum resident set size (KB) = 680396 Test 001 control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/control_stochy +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230512/GNU/control_stochy +working dir = /glade/scratch/jongkim/rt-1727-gnu/jongkim/FV3_RT/rt_8206/control_stochy Checking test 002 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -72,14 +74,14 @@ Checking test 002 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 174.545949 -0:The maximum resident set size (KB) = 443752 +0:The total amount of wall time = 178.044038 +0:The maximum resident set size (KB) = 443828 Test 002 control_stochy PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/control_ras -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/control_ras +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230512/GNU/control_ras +working dir = /glade/scratch/jongkim/rt-1727-gnu/jongkim/FV3_RT/rt_8206/control_ras Checking test 003 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -90,14 +92,14 @@ Checking test 003 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 290.248431 -0:The maximum resident set size (KB) = 452336 +0:The total amount of wall time = 296.484557 +0:The maximum resident set size (KB) = 452292 Test 003 control_ras PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230512/GNU/control_p8 +working dir = /glade/scratch/jongkim/rt-1727-gnu/jongkim/FV3_RT/rt_8206/control_p8 Checking test 004 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -144,14 +146,14 @@ Checking test 004 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 313.236163 -0:The maximum resident set size (KB) = 1225396 +0:The total amount of wall time = 311.053071 +0:The maximum resident set size (KB) = 1225288 Test 004 control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/control_flake -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/control_flake +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230512/GNU/control_flake +working dir = /glade/scratch/jongkim/rt-1727-gnu/jongkim/FV3_RT/rt_8206/control_flake Checking test 005 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -162,14 +164,14 @@ Checking test 005 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 353.333449 -0:The maximum resident set size (KB) = 490584 +0:The total amount of wall time = 353.993667 +0:The maximum resident set size (KB) = 490656 Test 005 control_flake PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/rap_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230512/GNU/rap_control +working dir = /glade/scratch/jongkim/rt-1727-gnu/jongkim/FV3_RT/rt_8206/rap_control Checking test 006 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -216,14 +218,14 @@ Checking test 006 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 716.938014 -0:The maximum resident set size (KB) = 792444 +0:The total amount of wall time = 714.569372 +0:The maximum resident set size (KB) = 792476 Test 006 rap_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/rap_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230512/GNU/rap_control +working dir = /glade/scratch/jongkim/rt-1727-gnu/jongkim/FV3_RT/rt_8206/rap_decomp Checking test 007 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -270,14 +272,14 @@ Checking test 007 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 720.163774 -0:The maximum resident set size (KB) = 791752 +0:The total amount of wall time = 719.381955 +0:The maximum resident set size (KB) = 791808 Test 007 rap_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/rap_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230512/GNU/rap_control +working dir = /glade/scratch/jongkim/rt-1727-gnu/jongkim/FV3_RT/rt_8206/rap_2threads Checking test 008 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -324,14 +326,14 @@ Checking test 008 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 655.437733 -0:The maximum resident set size (KB) = 866016 +0:The total amount of wall time = 656.074373 +0:The maximum resident set size (KB) = 866508 Test 008 rap_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/rap_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230512/GNU/rap_control +working dir = /glade/scratch/jongkim/rt-1727-gnu/jongkim/FV3_RT/rt_8206/rap_restart Checking test 009 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -370,14 +372,14 @@ Checking test 009 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 362.621200 -0:The maximum resident set size (KB) = 539284 +0:The total amount of wall time = 355.396139 +0:The maximum resident set size (KB) = 539412 Test 009 rap_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/rap_sfcdiff +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230512/GNU/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1727-gnu/jongkim/FV3_RT/rt_8206/rap_sfcdiff Checking test 010 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -424,14 +426,14 @@ Checking test 010 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 716.579434 -0:The maximum resident set size (KB) = 791856 +0:The total amount of wall time = 715.717597 +0:The maximum resident set size (KB) = 792192 Test 010 rap_sfcdiff PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/rap_sfcdiff_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230512/GNU/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1727-gnu/jongkim/FV3_RT/rt_8206/rap_sfcdiff_decomp Checking test 011 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -478,14 +480,14 @@ Checking test 011 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 722.285387 +0:The total amount of wall time = 726.715712 0:The maximum resident set size (KB) = 791636 Test 011 rap_sfcdiff_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/rap_sfcdiff_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230512/GNU/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1727-gnu/jongkim/FV3_RT/rt_8206/rap_sfcdiff_restart Checking test 012 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -524,14 +526,14 @@ Checking test 012 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 529.759059 -0:The maximum resident set size (KB) = 544560 +0:The total amount of wall time = 528.001494 +0:The maximum resident set size (KB) = 544492 Test 012 rap_sfcdiff_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/hrrr_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230512/GNU/hrrr_control +working dir = /glade/scratch/jongkim/rt-1727-gnu/jongkim/FV3_RT/rt_8206/hrrr_control Checking test 013 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -578,14 +580,14 @@ Checking test 013 hrrr_control results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 690.622767 -0:The maximum resident set size (KB) = 789016 +0:The total amount of wall time = 686.894607 +0:The maximum resident set size (KB) = 789052 Test 013 hrrr_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/hrrr_control_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230512/GNU/hrrr_control +working dir = /glade/scratch/jongkim/rt-1727-gnu/jongkim/FV3_RT/rt_8206/hrrr_control_2threads Checking test 014 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -632,14 +634,14 @@ Checking test 014 hrrr_control_2threads results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 707.380172 -0:The maximum resident set size (KB) = 855756 +0:The total amount of wall time = 707.729636 +0:The maximum resident set size (KB) = 855928 Test 014 hrrr_control_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/hrrr_control_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230512/GNU/hrrr_control +working dir = /glade/scratch/jongkim/rt-1727-gnu/jongkim/FV3_RT/rt_8206/hrrr_control_decomp Checking test 015 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -686,28 +688,28 @@ Checking test 015 hrrr_control_decomp results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 686.679265 -0:The maximum resident set size (KB) = 788412 +0:The total amount of wall time = 684.575539 +0:The maximum resident set size (KB) = 788444 Test 015 hrrr_control_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/hrrr_control_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230512/GNU/hrrr_control +working dir = /glade/scratch/jongkim/rt-1727-gnu/jongkim/FV3_RT/rt_8206/hrrr_control_restart Checking test 016 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 505.563021 -0:The maximum resident set size (KB) = 539736 +0:The total amount of wall time = 507.536598 +0:The maximum resident set size (KB) = 539724 Test 016 hrrr_control_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/rrfs_v1beta -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/rrfs_v1beta +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230512/GNU/rrfs_v1beta +working dir = /glade/scratch/jongkim/rt-1727-gnu/jongkim/FV3_RT/rt_8206/rrfs_v1beta Checking test 017 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -754,14 +756,14 @@ Checking test 017 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 706.598325 -0:The maximum resident set size (KB) = 789016 +0:The total amount of wall time = 709.156757 +0:The maximum resident set size (KB) = 789484 Test 017 rrfs_v1beta PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230512/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1727-gnu/jongkim/FV3_RT/rt_8206/rrfs_smoke_conus13km_hrrr_warm Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -770,14 +772,14 @@ Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 240.187378 -0:The maximum resident set size (KB) = 639704 +0:The total amount of wall time = 240.045282 +0:The maximum resident set size (KB) = 639632 Test 018 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230512/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1727-gnu/jongkim/FV3_RT/rt_8206/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 019 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -786,14 +788,14 @@ Checking test 019 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 152.278970 -0:The maximum resident set size (KB) = 658536 +0:The total amount of wall time = 149.158499 +0:The maximum resident set size (KB) = 664176 Test 019 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/rrfs_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230512/GNU/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1727-gnu/jongkim/FV3_RT/rt_8206/rrfs_conus13km_hrrr_warm Checking test 020 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -802,14 +804,14 @@ Checking test 020 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 220.469538 -0:The maximum resident set size (KB) = 618500 +0:The total amount of wall time = 218.856059 +0:The maximum resident set size (KB) = 618460 Test 020 rrfs_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230512/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /glade/scratch/jongkim/rt-1727-gnu/jongkim/FV3_RT/rt_8206/rrfs_smoke_conus13km_radar_tten_warm Checking test 021 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -818,262 +820,262 @@ Checking test 021 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 240.458301 -0:The maximum resident set size (KB) = 642292 +0:The total amount of wall time = 241.285024 +0:The maximum resident set size (KB) = 642384 Test 021 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230512/GNU/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /glade/scratch/jongkim/rt-1727-gnu/jongkim/FV3_RT/rt_8206/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 022 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 116.141404 -0:The maximum resident set size (KB) = 599608 +0:The total amount of wall time = 114.923265 +0:The maximum resident set size (KB) = 599520 Test 022 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/control_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/control_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230512/GNU/control_diag_debug +working dir = /glade/scratch/jongkim/rt-1727-gnu/jongkim/FV3_RT/rt_8206/control_diag_debug Checking test 023 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 83.093628 -0:The maximum resident set size (KB) = 492240 +0:The total amount of wall time = 81.945109 +0:The maximum resident set size (KB) = 491856 Test 023 control_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/regional_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/regional_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230512/GNU/regional_debug +working dir = /glade/scratch/jongkim/rt-1727-gnu/jongkim/FV3_RT/rt_8206/regional_debug Checking test 024 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 482.933546 -0:The maximum resident set size (KB) = 567328 +0:The total amount of wall time = 476.204160 +0:The maximum resident set size (KB) = 567772 Test 024 regional_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/rap_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230512/GNU/rap_control_debug +working dir = /glade/scratch/jongkim/rt-1727-gnu/jongkim/FV3_RT/rt_8206/rap_control_debug Checking test 025 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 146.460152 -0:The maximum resident set size (KB) = 806468 +0:The total amount of wall time = 144.206270 +0:The maximum resident set size (KB) = 806260 Test 025 rap_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/hrrr_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/hrrr_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230512/GNU/hrrr_control_debug +working dir = /glade/scratch/jongkim/rt-1727-gnu/jongkim/FV3_RT/rt_8206/hrrr_control_debug Checking test 026 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 144.653325 -0:The maximum resident set size (KB) = 801696 +0:The total amount of wall time = 140.830752 +0:The maximum resident set size (KB) = 801576 Test 026 hrrr_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/rap_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/rap_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230512/GNU/rap_diag_debug +working dir = /glade/scratch/jongkim/rt-1727-gnu/jongkim/FV3_RT/rt_8206/rap_diag_debug Checking test 027 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 152.812909 -0:The maximum resident set size (KB) = 888544 +0:The total amount of wall time = 151.288045 +0:The maximum resident set size (KB) = 888208 Test 027 rap_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230512/GNU/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/jongkim/rt-1727-gnu/jongkim/FV3_RT/rt_8206/rap_noah_sfcdiff_cires_ugwp_debug Checking test 028 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 236.904023 -0:The maximum resident set size (KB) = 804688 +0:The total amount of wall time = 233.680152 +0:The maximum resident set size (KB) = 804412 Test 028 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/rap_progcld_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/rap_progcld_thompson_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230512/GNU/rap_progcld_thompson_debug +working dir = /glade/scratch/jongkim/rt-1727-gnu/jongkim/FV3_RT/rt_8206/rap_progcld_thompson_debug Checking test 029 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 146.826545 -0:The maximum resident set size (KB) = 806432 +0:The total amount of wall time = 144.687191 +0:The maximum resident set size (KB) = 806304 Test 029 rap_progcld_thompson_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/rrfs_v1beta_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/rrfs_v1beta_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230512/GNU/rrfs_v1beta_debug +working dir = /glade/scratch/jongkim/rt-1727-gnu/jongkim/FV3_RT/rt_8206/rrfs_v1beta_debug Checking test 030 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 146.737528 -0:The maximum resident set size (KB) = 801456 +0:The total amount of wall time = 143.416701 +0:The maximum resident set size (KB) = 801284 Test 030 rrfs_v1beta_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/control_ras_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/control_ras_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230512/GNU/control_ras_debug +working dir = /glade/scratch/jongkim/rt-1727-gnu/jongkim/FV3_RT/rt_8206/control_ras_debug Checking test 031 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 81.915803 -0:The maximum resident set size (KB) = 446416 +0:The total amount of wall time = 80.362828 +0:The maximum resident set size (KB) = 446332 Test 031 control_ras_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/control_stochy_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/control_stochy_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230512/GNU/control_stochy_debug +working dir = /glade/scratch/jongkim/rt-1727-gnu/jongkim/FV3_RT/rt_8206/control_stochy_debug Checking test 032 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 90.791783 -0:The maximum resident set size (KB) = 438816 +0:The total amount of wall time = 88.304472 +0:The maximum resident set size (KB) = 438760 Test 032 control_stochy_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/control_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/control_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230512/GNU/control_debug_p8 +working dir = /glade/scratch/jongkim/rt-1727-gnu/jongkim/FV3_RT/rt_8206/control_debug_p8 Checking test 033 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 91.521170 -0:The maximum resident set size (KB) = 1221952 +0:The total amount of wall time = 90.602309 +0:The maximum resident set size (KB) = 1223252 Test 033 control_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230512/GNU/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/jongkim/rt-1727-gnu/jongkim/FV3_RT/rt_8206/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 034 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 446.935953 -0:The maximum resident set size (KB) = 645052 +0:The total amount of wall time = 442.259569 +0:The maximum resident set size (KB) = 644968 Test 034 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230512/GNU/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/jongkim/rt-1727-gnu/jongkim/FV3_RT/rt_8206/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 035 rrfs_smoke_conus13km_hrrr_warm_debug_2threads 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.876823 -0:The maximum resident set size (KB) = 664828 +0:The total amount of wall time = 258.613308 +0:The maximum resident set size (KB) = 663948 Test 035 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/rrfs_conus13km_hrrr_warm_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230512/GNU/rrfs_conus13km_hrrr_warm_debugs +working dir = /glade/scratch/jongkim/rt-1727-gnu/jongkim/FV3_RT/rt_8206/rrfs_conus13km_hrrr_warm_debug Checking test 036 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 404.708376 -0:The maximum resident set size (KB) = 623484 +0:The total amount of wall time = 400.706203 +0:The maximum resident set size (KB) = 623292 Test 036 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/rap_flake_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/rap_flake_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230512/GNU/rap_flake_debug +working dir = /glade/scratch/jongkim/rt-1727-gnu/jongkim/FV3_RT/rt_8206/rap_flake_debug Checking test 037 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 145.715124 -0:The maximum resident set size (KB) = 806340 +0:The total amount of wall time = 144.614392 +0:The maximum resident set size (KB) = 806100 Test 037 rap_flake_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/rap_clm_lake_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/rap_clm_lake_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230512/GNU/rap_clm_lake_debug +working dir = /glade/scratch/jongkim/rt-1727-gnu/jongkim/FV3_RT/rt_8206/rap_clm_lake_debug Checking test 038 rap_clm_lake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 165.881073 -0:The maximum resident set size (KB) = 807876 +0:The total amount of wall time = 164.087688 +0:The maximum resident set size (KB) = 807800 Test 038 rap_clm_lake_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/control_wam_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/control_wam_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230512/GNU/control_wam_debug +working dir = /glade/scratch/jongkim/rt-1727-gnu/jongkim/FV3_RT/rt_8206/control_wam_debug Checking test 039 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 140.633006 -0:The maximum resident set size (KB) = 182924 +0:The total amount of wall time = 141.192862 +0:The maximum resident set size (KB) = 182352 Test 039 control_wam_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/rap_control_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230512/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1727-gnu/jongkim/FV3_RT/rt_8206/rap_control_dyn32_phy32 Checking test 040 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1120,14 +1122,14 @@ Checking test 040 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 704.792937 -0:The maximum resident set size (KB) = 672712 +0:The total amount of wall time = 704.200455 +0:The maximum resident set size (KB) = 672424 Test 040 rap_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/hrrr_control_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230512/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1727-gnu/jongkim/FV3_RT/rt_8206/hrrr_control_dyn32_phy32 Checking test 041 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1174,14 +1176,14 @@ Checking test 041 hrrr_control_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 353.181108 -0:The maximum resident set size (KB) = 671224 +0:The total amount of wall time = 353.678757 +0:The maximum resident set size (KB) = 671044 Test 041 hrrr_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/rap_2threads_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230512/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1727-gnu/jongkim/FV3_RT/rt_8206/rap_2threads_dyn32_phy32 Checking test 042 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1228,14 +1230,14 @@ Checking test 042 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 645.448112 -0:The maximum resident set size (KB) = 720196 +0:The total amount of wall time = 643.955422 +0:The maximum resident set size (KB) = 720420 Test 042 rap_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/hrrr_control_2threads_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230512/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1727-gnu/jongkim/FV3_RT/rt_8206/hrrr_control_2threads_dyn32_phy32 Checking test 043 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1282,14 +1284,14 @@ Checking test 043 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 405.203647 -0:The maximum resident set size (KB) = 711824 +0:The total amount of wall time = 407.144732 +0:The maximum resident set size (KB) = 711732 Test 043 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/hrrr_control_decomp_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230512/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1727-gnu/jongkim/FV3_RT/rt_8206/hrrr_control_decomp_dyn32_phy32 Checking test 044 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1336,14 +1338,14 @@ Checking test 044 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 351.742758 -0:The maximum resident set size (KB) = 670060 +0:The total amount of wall time = 352.325463 +0:The maximum resident set size (KB) = 669988 Test 044 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/rap_restart_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230512/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1727-gnu/jongkim/FV3_RT/rt_8206/rap_restart_dyn32_phy32 Checking test 045 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1382,28 +1384,28 @@ Checking test 045 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 522.125874 -0:The maximum resident set size (KB) = 511664 +0:The total amount of wall time = 523.369371 +0:The maximum resident set size (KB) = 511928 Test 045 rap_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/hrrr_control_restart_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230512/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1727-gnu/jongkim/FV3_RT/rt_8206/hrrr_control_restart_dyn32_phy32 Checking test 046 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 179.262433 -0:The maximum resident set size (KB) = 506124 +0:The total amount of wall time = 178.627389 +0:The maximum resident set size (KB) = 506096 Test 046 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/rap_control_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/rap_control_dyn64_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230512/GNU/rap_control_dyn64_phy32 +working dir = /glade/scratch/jongkim/rt-1727-gnu/jongkim/FV3_RT/rt_8206/rap_control_dyn64_phy32 Checking test 047 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1450,56 +1452,56 @@ Checking test 047 rap_control_dyn64_phy32 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 = 418.249077 -0:The maximum resident set size (KB) = 694464 +0:The total amount of wall time = 414.018608 +0:The maximum resident set size (KB) = 693276 Test 047 rap_control_dyn64_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/rap_control_debug_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230512/GNU/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1727-gnu/jongkim/FV3_RT/rt_8206/rap_control_debug_dyn32_phy32 Checking test 048 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 144.154337 -0:The maximum resident set size (KB) = 686988 +0:The total amount of wall time = 143.313781 +0:The maximum resident set size (KB) = 687056 Test 048 rap_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/hrrr_control_debug_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230512/GNU/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1727-gnu/jongkim/FV3_RT/rt_8206/hrrr_control_debug_dyn32_phy32 Checking test 049 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 142.008243 -0:The maximum resident set size (KB) = 684308 +0:The total amount of wall time = 140.459571 +0:The maximum resident set size (KB) = 684256 Test 049 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/rap_control_dyn64_phy32_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230512/GNU/rap_control_debug_dyn64_phy32 +working dir = /glade/scratch/jongkim/rt-1727-gnu/jongkim/FV3_RT/rt_8206/rap_control_dyn64_phy32_debug Checking test 050 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 148.571448 -0:The maximum resident set size (KB) = 708020 +0:The total amount of wall time = 149.059053 +0:The maximum resident set size (KB) = 707888 Test 050 rap_control_dyn64_phy32_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/cpld_control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230512/GNU/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1727-gnu/jongkim/FV3_RT/rt_8206/cpld_control_p8 Checking test 051 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1564,14 +1566,14 @@ Checking test 051 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 502.732791 -0:The maximum resident set size (KB) = 3159536 +0:The total amount of wall time = 488.088785 +0:The maximum resident set size (KB) = 3164796 Test 051 cpld_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/cpld_control_nowave_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230512/GNU/cpld_control_c96_noaero_p8 +working dir = /glade/scratch/jongkim/rt-1727-gnu/jongkim/FV3_RT/rt_8206/cpld_control_nowave_noaero_p8 Checking test 052 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1633,14 +1635,14 @@ Checking test 052 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 254.546678 -0:The maximum resident set size (KB) = 1240984 +0:The total amount of wall time = 247.528345 +0:The maximum resident set size (KB) = 1242608 Test 052 cpld_control_nowave_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/cpld_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/cpld_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230512/GNU/cpld_debug_p8 +working dir = /glade/scratch/jongkim/rt-1727-gnu/jongkim/FV3_RT/rt_8206/cpld_debug_p8 Checking test 053 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1693,25 +1695,285 @@ Checking test 053 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 207.817904 -0:The maximum resident set size (KB) = 3174588 +0:The total amount of wall time = 197.432371 +0:The maximum resident set size (KB) = 3172640 Test 053 cpld_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/GNU/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_69700/datm_cdeps_control_cfsr -Checking test 054 datm_cdeps_control_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230512/GNU/cpld_control_pdlib_p8 +working dir = /glade/scratch/jongkim/rt-1727-gnu/jongkim/FV3_RT/rt_8206/cpld_control_pdlib_p8 +Checking test 054 cpld_control_pdlib_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + +0:The total amount of wall time = 1394.105798 +0:The maximum resident set size (KB) = 1287040 + +Test 054 cpld_control_pdlib_p8 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230512/GNU/cpld_control_pdlib_p8 +working dir = /glade/scratch/jongkim/rt-1727-gnu/jongkim/FV3_RT/rt_8206/cpld_restart_pdlib_p8 +Checking test 055 cpld_restart_pdlib_p8 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + +0:The total amount of wall time = 534.399688 +0:The maximum resident set size (KB) = 627936 + +Test 055 cpld_restart_pdlib_p8 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230512/GNU/cpld_control_pdlib_p8 +working dir = /glade/scratch/jongkim/rt-1727-gnu/jongkim/FV3_RT/rt_8206/cpld_mpi_pdlib_p8 +Checking test 056 cpld_mpi_pdlib_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + +0:The total amount of wall time = 1437.295673 +0:The maximum resident set size (KB) = 1269096 + +Test 056 cpld_mpi_pdlib_p8 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230512/GNU/cpld_debug_pdlib_p8 +working dir = /glade/scratch/jongkim/rt-1727-gnu/jongkim/FV3_RT/rt_8206/cpld_debug_pdlib_p8 +Checking test 057 cpld_debug_pdlib_p8 results .... + Comparing sfcf003.tile1.nc .........OK + Comparing sfcf003.tile2.nc .........OK + Comparing sfcf003.tile3.nc .........OK + Comparing sfcf003.tile4.nc .........OK + Comparing sfcf003.tile5.nc .........OK + Comparing sfcf003.tile6.nc .........OK + Comparing atmf003.tile1.nc .........OK + Comparing atmf003.tile2.nc .........OK + Comparing atmf003.tile3.nc .........OK + Comparing atmf003.tile4.nc .........OK + Comparing atmf003.tile5.nc .........OK + Comparing atmf003.tile6.nc .........OK + Comparing RESTART/20210322.090000.coupler.res .........OK + Comparing RESTART/20210322.090000.fv_core.res.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-22-32400.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK + Comparing 20210322.090000.out_pnt.ww3 .........OK + Comparing 20210322.090000.out_grd.ww3 .........OK + +0:The total amount of wall time = 693.000940 +0:The maximum resident set size (KB) = 1298588 + +Test 057 cpld_debug_pdlib_p8 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230512/GNU/datm_cdeps_control_cfsr +working dir = /glade/scratch/jongkim/rt-1727-gnu/jongkim/FV3_RT/rt_8206/datm_cdeps_control_cfsr +Checking test 058 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 179.118060 -0:The maximum resident set size (KB) = 672492 +0:The total amount of wall time = 180.158301 +0:The maximum resident set size (KB) = 669484 -Test 054 datm_cdeps_control_cfsr PASS +Test 058 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Wed May 10 15:14:49 MDT 2023 -Elapsed time: 00h:36m:18s. Have a nice day! +Sun May 14 08:47:12 MDT 2023 +Elapsed time: 01h:10m:01s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index d9341b99edc..24f21fc368e 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,42 +1,42 @@ -Wed May 10 14:23:36 MDT 2023 +Sat May 6 07:46:17 MDT 2023 Start Regression test -Compile 001 elapsed time 1480 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 1617 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 1435 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 463 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 393 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 1167 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 1135 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 1159 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 009 elapsed time 1065 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 1009 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 876 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 1351 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 433 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 014 elapsed time 285 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 914 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 925 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 297 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 294 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 1207 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 020 elapsed time 351 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 021 elapsed time 1651 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 022 elapsed time 1186 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 023 elapsed time 429 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 024 elapsed time 200 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 025 elapsed time 425 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 026 elapsed time 109 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 027 elapsed time 1027 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 1082 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 1121 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 951 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 931 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 312 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 1107 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8_mixedmode -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/cpld_control_p8_mixedmode +Compile 001 elapsed time 1587 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1518 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 1428 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 457 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 405 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 1140 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 1143 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 1167 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 009 elapsed time 1074 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 1016 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 863 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 1352 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 443 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 014 elapsed time 265 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 920 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 915 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 294 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 297 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 1228 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 020 elapsed time 356 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 021 elapsed time 1650 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 022 elapsed time 1204 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 023 elapsed time 427 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 024 elapsed time 197 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 025 elapsed time 428 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 026 elapsed time 104 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 027 elapsed time 1003 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 1071 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 1059 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 976 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 948 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 310 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 1102 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8_mixedmode +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -101,14 +101,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 312.944047 -0:The maximum resident set size (KB) = 2699052 +0:The total amount of wall time = 319.544609 +0:The maximum resident set size (KB) = 2698760 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_gfsv17 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/cpld_control_gfsv17 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_gfsv17 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -172,14 +172,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 285.959509 -0:The maximum resident set size (KB) = 1437648 +0:The total amount of wall time = 282.033907 +0:The maximum resident set size (KB) = 1437756 Test 002 cpld_control_gfsv17 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/cpld_control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -244,14 +244,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 328.564420 -0:The maximum resident set size (KB) = 2715440 +0:The total amount of wall time = 323.529452 +0:The maximum resident set size (KB) = 2715428 Test 003 cpld_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/cpld_restart_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -304,14 +304,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 188.725796 -0:The maximum resident set size (KB) = 2576532 +0:The total amount of wall time = 186.860231 +0:The maximum resident set size (KB) = 2576764 Test 004 cpld_restart_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/cpld_control_qr_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -376,14 +376,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 329.349318 -0:The maximum resident set size (KB) = 2720096 +0:The total amount of wall time = 329.694969 +0:The maximum resident set size (KB) = 2719992 Test 005 cpld_control_qr_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/cpld_restart_qr_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -436,14 +436,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 202.174297 -0:The maximum resident set size (KB) = 2593208 +0:The total amount of wall time = 200.761474 +0:The maximum resident set size (KB) = 2593872 Test 006 cpld_restart_qr_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/cpld_2threads_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -496,14 +496,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 255.472628 -0:The maximum resident set size (KB) = 3177788 +0:The total amount of wall time = 249.551018 +0:The maximum resident set size (KB) = 3178456 Test 007 cpld_2threads_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/cpld_decomp_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -556,14 +556,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 326.269425 -0:The maximum resident set size (KB) = 2720200 +0:The total amount of wall time = 322.275955 +0:The maximum resident set size (KB) = 2720620 Test 008 cpld_decomp_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/cpld_mpi_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -616,14 +616,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 281.327107 -0:The maximum resident set size (KB) = 2681744 +0:The total amount of wall time = 280.595475 +0:The maximum resident set size (KB) = 2681440 Test 009 cpld_mpi_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_ciceC_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/cpld_control_ciceC_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_ciceC_p8 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -688,14 +688,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 327.508008 +0:The total amount of wall time = 325.778808 0:The maximum resident set size (KB) = 2715260 Test 010 cpld_control_ciceC_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/cpld_control_c192_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_c192_p8 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_control_c192_p8 Checking test 011 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -748,14 +748,14 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -0:The total amount of wall time = 627.326236 -0:The maximum resident set size (KB) = 3351492 +0:The total amount of wall time = 627.058141 +0:The maximum resident set size (KB) = 3351720 Test 011 cpld_control_c192_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/cpld_restart_c192_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_c192_p8 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_restart_c192_p8 Checking test 012 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -808,14 +808,14 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -0:The total amount of wall time = 459.679187 -0:The maximum resident set size (KB) = 3276068 +0:The total amount of wall time = 381.779742 +0:The maximum resident set size (KB) = 3276152 Test 012 cpld_restart_c192_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/cpld_control_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_noaero_p8 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_control_noaero_p8 Checking test 013 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -879,14 +879,14 @@ Checking test 013 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 296.542979 -0:The maximum resident set size (KB) = 1435860 +0:The total amount of wall time = 295.577147 +0:The maximum resident set size (KB) = 1435776 Test 013 cpld_control_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/cpld_control_nowave_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_c96_noaero_p8 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_control_nowave_noaero_p8 Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -948,14 +948,14 @@ Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 199.884537 -0:The maximum resident set size (KB) = 1453312 +0:The total amount of wall time = 198.337851 +0:The maximum resident set size (KB) = 1453396 Test 014 cpld_control_nowave_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/cpld_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_debug_p8 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_debug_p8 Checking test 015 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1008,14 +1008,14 @@ Checking test 015 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 350.618824 -0:The maximum resident set size (KB) = 2779940 +0:The total amount of wall time = 349.597925 +0:The maximum resident set size (KB) = 2780652 Test 015 cpld_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_debug_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/cpld_debug_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_debug_noaero_p8 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_debug_noaero_p8 Checking test 016 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1067,14 +1067,14 @@ Checking test 016 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 303.878872 -0:The maximum resident set size (KB) = 1454392 +0:The total amount of wall time = 302.597149 +0:The maximum resident set size (KB) = 1454940 Test 016 cpld_debug_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_noaero_p8_agrid -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/cpld_control_noaero_p8_agrid +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_noaero_p8_agrid +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_control_noaero_p8_agrid Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1136,14 +1136,14 @@ Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 251.210292 -0:The maximum resident set size (KB) = 1457088 +0:The total amount of wall time = 251.790780 +0:The maximum resident set size (KB) = 1457044 Test 017 cpld_control_noaero_p8_agrid PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/cpld_control_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_c48 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_control_c48 Checking test 018 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1193,14 +1193,14 @@ Checking test 018 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 613.003892 -0:The maximum resident set size (KB) = 2586684 +0:The total amount of wall time = 609.571758 +0:The maximum resident set size (KB) = 2586800 Test 018 cpld_control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/cpld_warmstart_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_warmstart_c48 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_warmstart_c48 Checking test 019 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1250,14 +1250,14 @@ Checking test 019 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -0:The total amount of wall time = 164.462458 -0:The maximum resident set size (KB) = 2602584 +0:The total amount of wall time = 162.965347 +0:The maximum resident set size (KB) = 2602612 Test 019 cpld_warmstart_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/cpld_restart_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_warmstart_c48 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_restart_c48 Checking test 020 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1307,14 +1307,14 @@ Checking test 020 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -0:The total amount of wall time = 87.208269 -0:The maximum resident set size (KB) = 2020300 +0:The total amount of wall time = 85.380411 +0:The maximum resident set size (KB) = 2019952 Test 020 cpld_restart_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_flake -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_flake +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_flake +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_flake Checking test 021 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1325,14 +1325,14 @@ Checking test 021 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 220.963387 -0:The maximum resident set size (KB) = 501436 +0:The total amount of wall time = 217.647145 +0:The maximum resident set size (KB) = 501448 Test 021 control_flake PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_CubedSphereGrid -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_CubedSphereGrid +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_CubedSphereGrid +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_CubedSphereGrid Checking test 022 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1359,28 +1359,28 @@ Checking test 022 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -0:The total amount of wall time = 142.901734 -0:The maximum resident set size (KB) = 454580 +0:The total amount of wall time = 142.366063 +0:The maximum resident set size (KB) = 454624 Test 022 control_CubedSphereGrid PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_CubedSphereGrid_parallel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_CubedSphereGrid_parallel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_CubedSphereGrid_parallel +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_CubedSphereGrid_parallel Checking test 023 control_CubedSphereGrid_parallel results .... - Comparing sfcf000.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK -0:The total amount of wall time = 140.116532 -0:The maximum resident set size (KB) = 454456 +0:The total amount of wall time = 139.906136 +0:The maximum resident set size (KB) = 454520 Test 023 control_CubedSphereGrid_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_latlon -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_latlon +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_latlon +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_latlon Checking test 024 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1391,17 +1391,17 @@ Checking test 024 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 143.240487 -0:The maximum resident set size (KB) = 454564 +0:The total amount of wall time = 146.709422 +0:The maximum resident set size (KB) = 454584 Test 024 control_latlon PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_wrtGauss_netcdf_parallel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_wrtGauss_netcdf_parallel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wrtGauss_netcdf_parallel +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_wrtGauss_netcdf_parallel Checking test 025 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc .........OK + Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK @@ -1409,14 +1409,14 @@ Checking test 025 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 149.619799 -0:The maximum resident set size (KB) = 454616 +0:The total amount of wall time = 149.238871 +0:The maximum resident set size (KB) = 454604 Test 025 control_wrtGauss_netcdf_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c48 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_c48 Checking test 026 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1455,14 +1455,14 @@ Checking test 026 control_c48 results .... Comparing 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.403883 -0:The maximum resident set size (KB) = 634928 +0:The total amount of wall time = 441.114330 +0:The maximum resident set size (KB) = 634276 Test 026 control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_c192 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_c192 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c192 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_c192 Checking test 027 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1473,14 +1473,14 @@ Checking test 027 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 599.955582 -0:The maximum resident set size (KB) = 560244 +0:The total amount of wall time = 592.672442 +0:The maximum resident set size (KB) = 560248 Test 027 control_c192 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_c384 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_c384 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c384 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_c384 Checking test 028 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1491,14 +1491,14 @@ Checking test 028 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 589.234666 -0:The maximum resident set size (KB) = 901284 +0:The total amount of wall time = 592.928324 +0:The maximum resident set size (KB) = 900432 Test 028 control_c384 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_c384gdas -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_c384gdas +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c384gdas +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_c384gdas Checking test 029 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1541,14 +1541,14 @@ Checking test 029 control_c384gdas results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 520.113317 -0:The maximum resident set size (KB) = 1028556 +0:The total amount of wall time = 516.649977 +0:The maximum resident set size (KB) = 1028888 Test 029 control_c384gdas PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_stochy +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_stochy +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_stochy Checking test 030 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1559,28 +1559,28 @@ Checking test 030 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 98.375990 -0:The maximum resident set size (KB) = 459424 +0:The total amount of wall time = 98.282045 +0:The maximum resident set size (KB) = 459416 Test 030 control_stochy PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_stochy_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_stochy +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_stochy_restart Checking test 031 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 53.657533 -0:The maximum resident set size (KB) = 227648 +0:The total amount of wall time = 53.448086 +0:The maximum resident set size (KB) = 227948 Test 031 control_stochy_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_lndp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_lndp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_lndp +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_lndp Checking test 032 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1591,14 +1591,14 @@ Checking test 032 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 90.905115 -0:The maximum resident set size (KB) = 459000 +0:The total amount of wall time = 90.827000 +0:The maximum resident set size (KB) = 459200 Test 032 control_lndp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_iovr4 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_iovr4 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_iovr4 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_iovr4 Checking test 033 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1613,14 +1613,14 @@ Checking test 033 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 148.862223 -0:The maximum resident set size (KB) = 454572 +0:The total amount of wall time = 144.991596 +0:The maximum resident set size (KB) = 454532 Test 033 control_iovr4 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_iovr5 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_iovr5 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_iovr5 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_iovr5 Checking test 034 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1635,14 +1635,14 @@ Checking test 034 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 145.466642 +0:The total amount of wall time = 150.452526 0:The maximum resident set size (KB) = 454496 Test 034 control_iovr5 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_p8 Checking test 035 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1689,14 +1689,14 @@ Checking test 035 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 183.020402 -0:The maximum resident set size (KB) = 1423996 +0:The total amount of wall time = 182.205472 +0:The maximum resident set size (KB) = 1423928 Test 035 control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_restart_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_restart_p8 Checking test 036 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1735,14 +1735,14 @@ Checking test 036 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 96.562414 -0:The maximum resident set size (KB) = 582152 +0:The total amount of wall time = 96.626032 +0:The maximum resident set size (KB) = 582132 Test 036 control_restart_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_qr_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_qr_p8 Checking test 037 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1789,14 +1789,14 @@ Checking test 037 control_qr_p8 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 = 183.439181 -0:The maximum resident set size (KB) = 1427676 +0:The total amount of wall time = 184.088698 +0:The maximum resident set size (KB) = 1427616 Test 037 control_qr_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_restart_qr_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_restart_qr_p8 Checking test 038 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1835,14 +1835,14 @@ Checking test 038 control_restart_qr_p8 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 = 100.323847 -0:The maximum resident set size (KB) = 597212 +0:The total amount of wall time = 99.706604 +0:The maximum resident set size (KB) = 597216 Test 038 control_restart_qr_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_decomp_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_decomp_p8 Checking test 039 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1885,14 +1885,14 @@ Checking test 039 control_decomp_p8 results .... Comparing 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.361713 -0:The maximum resident set size (KB) = 1417740 +0:The total amount of wall time = 190.475383 +0:The maximum resident set size (KB) = 1417728 Test 039 control_decomp_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_2threads_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_2threads_p8 Checking test 040 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1935,14 +1935,14 @@ Checking test 040 control_2threads_p8 results .... Comparing 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.832857 -0:The maximum resident set size (KB) = 1508424 +0:The total amount of wall time = 170.161166 +0:The maximum resident set size (KB) = 1509260 Test 040 control_2threads_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8_lndp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_p8_lndp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_lndp +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_p8_lndp Checking test 041 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1961,14 +1961,14 @@ Checking test 041 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -0:The total amount of wall time = 336.705747 -0:The maximum resident set size (KB) = 1424304 +0:The total amount of wall time = 335.855857 +0:The maximum resident set size (KB) = 1424216 Test 041 control_p8_lndp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8_rrtmgp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_p8_rrtmgp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_rrtmgp +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_p8_rrtmgp Checking test 042 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2015,14 +2015,14 @@ Checking test 042 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 255.252670 +0:The total amount of wall time = 254.926464 0:The maximum resident set size (KB) = 1480576 Test 042 control_p8_rrtmgp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8_mynn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_p8_mynn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_mynn +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_p8_mynn Checking test 043 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2069,14 +2069,14 @@ Checking test 043 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 186.349154 -0:The maximum resident set size (KB) = 1428464 +0:The total amount of wall time = 185.673954 +0:The maximum resident set size (KB) = 1428428 Test 043 control_p8_mynn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/merra2_thompson -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/merra2_thompson +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/merra2_thompson +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/merra2_thompson Checking test 044 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2123,14 +2123,14 @@ Checking test 044 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 207.234497 -0:The maximum resident set size (KB) = 1430016 +0:The total amount of wall time = 207.735299 +0:The maximum resident set size (KB) = 1429944 Test 044 merra2_thompson PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/regional_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/regional_control Checking test 045 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2141,28 +2141,28 @@ Checking test 045 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 345.045920 -0:The maximum resident set size (KB) = 605080 +0:The total amount of wall time = 342.263461 +0:The maximum resident set size (KB) = 605068 Test 045 regional_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/regional_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/regional_restart Checking test 046 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 178.797731 +0:The total amount of wall time = 176.774690 0:The maximum resident set size (KB) = 594372 Test 046 regional_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/regional_control_qr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/regional_control_qr Checking test 047 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2173,28 +2173,28 @@ Checking test 047 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 351.962331 -0:The maximum resident set size (KB) = 605076 +0:The total amount of wall time = 343.043390 +0:The maximum resident set size (KB) = 605020 Test 047 regional_control_qr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/regional_restart_qr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/regional_restart_qr Checking test 048 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 177.420938 -0:The maximum resident set size (KB) = 594424 +0:The total amount of wall time = 175.499656 +0:The maximum resident set size (KB) = 594360 Test 048 regional_restart_qr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/regional_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/regional_decomp Checking test 049 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2205,14 +2205,14 @@ Checking test 049 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 358.023198 -0:The maximum resident set size (KB) = 598960 +0:The total amount of wall time = 363.507975 +0:The maximum resident set size (KB) = 598972 Test 049 regional_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/regional_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/regional_2threads Checking test 050 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2223,14 +2223,14 @@ Checking test 050 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 213.544113 -0:The maximum resident set size (KB) = 611972 +0:The total amount of wall time = 202.640040 +0:The maximum resident set size (KB) = 611844 Test 050 regional_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_noquilt -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/regional_noquilt +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_noquilt +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/regional_noquilt Checking test 051 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2238,28 +2238,28 @@ Checking test 051 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -0:The total amount of wall time = 364.814236 -0:The maximum resident set size (KB) = 599468 +0:The total amount of wall time = 364.602808 +0:The maximum resident set size (KB) = 599564 Test 051 regional_noquilt PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_netcdf_parallel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/regional_netcdf_parallel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_netcdf_parallel +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/regional_netcdf_parallel Checking test 052 regional_netcdf_parallel results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf000.nc .........OK Comparing phyf006.nc ............ALT CHECK......OK -0:The total amount of wall time = 342.786007 -0:The maximum resident set size (KB) = 597000 +0:The total amount of wall time = 341.209017 +0:The maximum resident set size (KB) = 597016 Test 052 regional_netcdf_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/regional_2dwrtdecomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/regional_2dwrtdecomp Checking test 053 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2270,14 +2270,14 @@ Checking test 053 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 342.370220 +0:The total amount of wall time = 341.811660 0:The maximum resident set size (KB) = 605080 Test 053 regional_2dwrtdecomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/fv3_regional_wofs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/regional_wofs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/fv3_regional_wofs +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/regional_wofs Checking test 054 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2288,14 +2288,14 @@ Checking test 054 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 429.482795 -0:The maximum resident set size (KB) = 276260 +0:The total amount of wall time = 428.573325 +0:The maximum resident set size (KB) = 276128 Test 054 regional_wofs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/rap_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_control Checking test 055 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2342,14 +2342,14 @@ Checking test 055 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 481.894784 +0:The total amount of wall time = 475.908364 0:The maximum resident set size (KB) = 823820 Test 055 rap_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_spp_sppt_shum_skeb -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/regional_spp_sppt_shum_skeb +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_spp_sppt_shum_skeb +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/regional_spp_sppt_shum_skeb Checking test 056 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2360,14 +2360,14 @@ Checking test 056 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 263.947093 -0:The maximum resident set size (KB) = 953684 +0:The total amount of wall time = 261.915424 +0:The maximum resident set size (KB) = 953640 Test 056 regional_spp_sppt_shum_skeb PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/rap_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_decomp Checking test 057 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2414,14 +2414,14 @@ Checking test 057 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 503.655938 -0:The maximum resident set size (KB) = 822600 +0:The total amount of wall time = 505.879688 +0:The maximum resident set size (KB) = 822812 Test 057 rap_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/rap_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_2threads Checking test 058 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2468,14 +2468,14 @@ Checking test 058 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 462.567059 -0:The maximum resident set size (KB) = 893884 +0:The total amount of wall time = 461.028591 +0:The maximum resident set size (KB) = 894188 Test 058 rap_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/rap_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_restart Checking test 059 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2514,14 +2514,14 @@ Checking test 059 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 244.671107 -0:The maximum resident set size (KB) = 571800 +0:The total amount of wall time = 243.402879 +0:The maximum resident set size (KB) = 571812 Test 059 rap_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/rap_sfcdiff +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_sfcdiff Checking test 060 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2568,14 +2568,14 @@ Checking test 060 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 480.724470 -0:The maximum resident set size (KB) = 823852 +0:The total amount of wall time = 483.628090 +0:The maximum resident set size (KB) = 823752 Test 060 rap_sfcdiff PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/rap_sfcdiff_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_sfcdiff_decomp Checking test 061 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2622,14 +2622,14 @@ Checking test 061 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 506.599205 -0:The maximum resident set size (KB) = 822444 +0:The total amount of wall time = 504.956544 +0:The maximum resident set size (KB) = 822720 Test 061 rap_sfcdiff_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/rap_sfcdiff_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_sfcdiff_restart Checking test 062 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2668,14 +2668,14 @@ Checking test 062 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 357.874009 -0:The maximum resident set size (KB) = 571460 +0:The total amount of wall time = 355.157372 +0:The maximum resident set size (KB) = 571384 Test 062 rap_sfcdiff_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/hrrr_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hrrr_control Checking test 063 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2722,14 +2722,14 @@ Checking test 063 hrrr_control results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 447.761033 -0:The maximum resident set size (KB) = 820948 +0:The total amount of wall time = 445.184360 +0:The maximum resident set size (KB) = 820916 Test 063 hrrr_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/hrrr_control_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hrrr_control_decomp Checking test 064 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2776,14 +2776,14 @@ Checking test 064 hrrr_control_decomp results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 467.656428 -0:The maximum resident set size (KB) = 820616 +0:The total amount of wall time = 469.636942 +0:The maximum resident set size (KB) = 820688 Test 064 hrrr_control_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/hrrr_control_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hrrr_control_2threads Checking test 065 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2830,28 +2830,28 @@ Checking test 065 hrrr_control_2threads results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 508.492551 -0:The maximum resident set size (KB) = 890820 +0:The total amount of wall time = 505.516341 +0:The maximum resident set size (KB) = 890720 Test 065 hrrr_control_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/hrrr_control_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hrrr_control_restart Checking test 066 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 330.445149 -0:The maximum resident set size (KB) = 567692 +0:The total amount of wall time = 329.995620 +0:The maximum resident set size (KB) = 567936 Test 066 hrrr_control_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_v1beta -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/rrfs_v1beta +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1beta +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rrfs_v1beta Checking test 067 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2898,14 +2898,14 @@ Checking test 067 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 476.350122 -0:The maximum resident set size (KB) = 819908 +0:The total amount of wall time = 468.357238 +0:The maximum resident set size (KB) = 819760 Test 067 rrfs_v1beta PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_v1nssl -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/rrfs_v1nssl +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1nssl +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rrfs_v1nssl Checking test 068 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2920,14 +2920,14 @@ Checking test 068 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 585.146894 -0:The maximum resident set size (KB) = 508732 +0:The total amount of wall time = 585.515821 +0:The maximum resident set size (KB) = 508904 Test 068 rrfs_v1nssl PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/rrfs_v1nssl_nohailnoccn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rrfs_v1nssl_nohailnoccn Checking test 069 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2942,14 +2942,14 @@ Checking test 069 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 566.125986 -0:The maximum resident set size (KB) = 503032 +0:The total amount of wall time = 564.249771 +0:The maximum resident set size (KB) = 503104 Test 069 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rrfs_smoke_conus13km_hrrr_warm Checking test 070 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2958,14 +2958,14 @@ Checking test 070 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 158.604640 -0:The maximum resident set size (KB) = 671096 +0:The total amount of wall time = 155.984607 +0:The maximum resident set size (KB) = 671108 Test 070 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 071 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2974,14 +2974,14 @@ Checking test 071 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 95.848192 -0:The maximum resident set size (KB) = 692984 +0:The total amount of wall time = 96.973312 +0:The maximum resident set size (KB) = 693016 Test 071 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/rrfs_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rrfs_conus13km_hrrr_warm Checking test 072 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2990,14 +2990,14 @@ Checking test 072 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 142.273808 -0:The maximum resident set size (KB) = 667448 +0:The total amount of wall time = 139.530450 +0:The maximum resident set size (KB) = 667476 Test 072 rrfs_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rrfs_smoke_conus13km_radar_tten_warm Checking test 073 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3006,26 +3006,26 @@ Checking test 073 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 159.665462 -0:The maximum resident set size (KB) = 677556 +0:The total amount of wall time = 158.134007 +0:The maximum resident set size (KB) = 677612 Test 073 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 074 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 73.185399 -0:The maximum resident set size (KB) = 640440 +0:The total amount of wall time = 72.897798 +0:The maximum resident set size (KB) = 640308 Test 074 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_csawmg -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_csawmg +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmg +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_csawmg Checking test 075 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3036,14 +3036,14 @@ Checking test 075 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 402.075695 -0:The maximum resident set size (KB) = 528048 +0:The total amount of wall time = 398.731365 +0:The maximum resident set size (KB) = 528140 Test 075 control_csawmg PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_csawmgt -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_csawmgt +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmgt +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_csawmgt Checking test 076 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3054,14 +3054,14 @@ Checking test 076 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 395.774870 -0:The maximum resident set size (KB) = 529264 +0:The total amount of wall time = 395.482771 +0:The maximum resident set size (KB) = 528656 Test 076 control_csawmgt PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_ras -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_ras +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_ras +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_ras Checking test 077 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3072,26 +3072,26 @@ Checking test 077 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 208.259279 -0:The maximum resident set size (KB) = 491308 +0:The total amount of wall time = 209.833440 +0:The maximum resident set size (KB) = 491380 Test 077 control_ras PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_wam -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_wam +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wam +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_wam Checking test 078 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -0:The total amount of wall time = 130.294769 -0:The maximum resident set size (KB) = 206764 +0:The total amount of wall time = 129.995007 +0:The maximum resident set size (KB) = 207020 Test 078 control_wam PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8_faster -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_p8_faster +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_faster +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_p8_faster Checking test 079 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3138,14 +3138,14 @@ Checking test 079 control_p8_faster results .... Comparing 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.189868 -0:The maximum resident set size (KB) = 1423800 +0:The total amount of wall time = 174.071888 +0:The maximum resident set size (KB) = 1423728 Test 079 control_p8_faster PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control_faster -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/regional_control_faster +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control_faster +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/regional_control_faster Checking test 080 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3156,56 +3156,56 @@ Checking test 080 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 324.435607 -0:The maximum resident set size (KB) = 604848 +0:The total amount of wall time = 320.383787 +0:The maximum resident set size (KB) = 604840 Test 080 regional_control_faster PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 081 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 885.324588 -0:The maximum resident set size (KB) = 704260 +0:The total amount of wall time = 875.773072 +0:The maximum resident set size (KB) = 704324 Test 081 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 082 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 504.778243 -0:The maximum resident set size (KB) = 723260 +0:The total amount of wall time = 500.158979 +0:The maximum resident set size (KB) = 723212 Test 082 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/rrfs_conus13km_hrrr_warm_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rrfs_conus13km_hrrr_warm_debug Checking test 083 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 793.412373 -0:The maximum resident set size (KB) = 697516 +0:The total amount of wall time = 786.866811 +0:The maximum resident set size (KB) = 697580 Test 083 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_CubedSphereGrid_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_CubedSphereGrid_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_CubedSphereGrid_debug +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_CubedSphereGrid_debug Checking test 084 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3232,348 +3232,348 @@ Checking test 084 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -0:The total amount of wall time = 157.167537 -0:The maximum resident set size (KB) = 617904 +0:The total amount of wall time = 155.809745 +0:The maximum resident set size (KB) = 617944 Test 084 control_CubedSphereGrid_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_wrtGauss_netcdf_parallel_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_wrtGauss_netcdf_parallel_debug Checking test 085 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 157.696233 -0:The maximum resident set size (KB) = 615524 +0:The total amount of wall time = 156.046099 +0:The maximum resident set size (KB) = 615432 Test 085 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_stochy_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_stochy_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_stochy_debug +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_stochy_debug Checking test 086 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 177.553434 -0:The maximum resident set size (KB) = 621048 +0:The total amount of wall time = 174.717880 +0:The maximum resident set size (KB) = 620872 Test 086 control_stochy_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_lndp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_lndp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_lndp_debug +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_lndp_debug Checking test 087 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 158.858357 -0:The maximum resident set size (KB) = 620516 +0:The total amount of wall time = 158.344963 +0:The maximum resident set size (KB) = 620424 Test 087 control_lndp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_csawmg_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_csawmg_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmg_debug +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_csawmg_debug Checking test 088 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 247.078005 -0:The maximum resident set size (KB) = 666824 +0:The total amount of wall time = 248.577603 +0:The maximum resident set size (KB) = 666760 Test 088 control_csawmg_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_csawmgt_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_csawmgt_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmgt_debug +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_csawmgt_debug Checking test 089 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 245.893893 -0:The maximum resident set size (KB) = 667724 +0:The total amount of wall time = 245.727035 +0:The maximum resident set size (KB) = 667684 Test 089 control_csawmgt_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_ras_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_ras_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_ras_debug +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_ras_debug Checking test 090 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 160.475604 -0:The maximum resident set size (KB) = 629932 +0:The total amount of wall time = 159.757762 +0:The maximum resident set size (KB) = 630012 Test 090 control_ras_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_diag_debug +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_diag_debug Checking test 091 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 165.090754 -0:The maximum resident set size (KB) = 675252 +0:The total amount of wall time = 158.915743 +0:The maximum resident set size (KB) = 675352 Test 091 control_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_debug_p8 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_debug_p8 Checking test 092 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 179.576106 -0:The maximum resident set size (KB) = 1443360 +0:The total amount of wall time = 174.495032 +0:The maximum resident set size (KB) = 1443264 Test 092 control_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/regional_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_debug +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/regional_debug Checking test 093 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 1041.208612 -0:The maximum resident set size (KB) = 626416 +0:The total amount of wall time = 1037.010690 +0:The maximum resident set size (KB) = 626404 Test 093 regional_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/rap_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_control_debug Checking test 094 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 289.092677 -0:The maximum resident set size (KB) = 986908 +0:The total amount of wall time = 286.272780 +0:The maximum resident set size (KB) = 987188 Test 094 rap_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/hrrr_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_debug +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hrrr_control_debug Checking test 095 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 284.719646 -0:The maximum resident set size (KB) = 983100 +0:The total amount of wall time = 280.144032 +0:The maximum resident set size (KB) = 983132 Test 095 hrrr_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/rap_unified_drag_suite_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_unified_drag_suite_debug Checking test 096 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 288.096246 -0:The maximum resident set size (KB) = 987240 +0:The total amount of wall time = 285.819120 +0:The maximum resident set size (KB) = 987260 Test 096 rap_unified_drag_suite_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/rap_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_diag_debug +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_diag_debug Checking test 097 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 299.656447 -0:The maximum resident set size (KB) = 1070392 +0:The total amount of wall time = 297.122933 +0:The maximum resident set size (KB) = 1070236 Test 097 rap_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/rap_cires_ugwp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_cires_ugwp_debug +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_cires_ugwp_debug Checking test 098 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 293.433110 -0:The maximum resident set size (KB) = 986220 +0:The total amount of wall time = 293.036173 +0:The maximum resident set size (KB) = 986272 Test 098 rap_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/rap_unified_ugwp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_cires_ugwp_debug +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_unified_ugwp_debug Checking test 099 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 295.907395 -0:The maximum resident set size (KB) = 987308 +0:The total amount of wall time = 293.586870 +0:The maximum resident set size (KB) = 987096 Test 099 rap_unified_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_lndp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/rap_lndp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_lndp_debug +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_lndp_debug Checking test 100 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 293.063190 -0:The maximum resident set size (KB) = 987832 +0:The total amount of wall time = 289.113313 +0:The maximum resident set size (KB) = 987892 Test 100 rap_lndp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_progcld_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/rap_progcld_thompson_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_progcld_thompson_debug +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_progcld_thompson_debug Checking test 101 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 287.069375 -0:The maximum resident set size (KB) = 986816 +0:The total amount of wall time = 287.257467 +0:The maximum resident set size (KB) = 986992 Test 101 rap_progcld_thompson_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_noah_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/rap_noah_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_noah_debug +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_noah_debug Checking test 102 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 281.505648 -0:The maximum resident set size (KB) = 984924 +0:The total amount of wall time = 279.856384 +0:The maximum resident set size (KB) = 984956 Test 102 rap_noah_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_sfcdiff_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/rap_sfcdiff_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff_debug +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_sfcdiff_debug Checking test 103 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 289.899488 -0:The maximum resident set size (KB) = 986848 +0:The total amount of wall time = 286.541229 +0:The maximum resident set size (KB) = 986996 Test 103 rap_sfcdiff_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_noah_sfcdiff_cires_ugwp_debug Checking test 104 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 472.585785 -0:The maximum resident set size (KB) = 985840 +0:The total amount of wall time = 472.497753 +0:The maximum resident set size (KB) = 985732 Test 104 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_v1beta_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/rrfs_v1beta_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1beta_debug +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rrfs_v1beta_debug Checking test 105 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 284.951884 -0:The maximum resident set size (KB) = 982952 +0:The total amount of wall time = 281.870448 +0:The maximum resident set size (KB) = 982844 Test 105 rrfs_v1beta_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_clm_lake_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/rap_clm_lake_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_clm_lake_debug +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_clm_lake_debug Checking test 106 rap_clm_lake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 356.095482 -0:The maximum resident set size (KB) = 989988 +0:The total amount of wall time = 350.769501 +0:The maximum resident set size (KB) = 989964 Test 106 rap_clm_lake_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_flake_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/rap_flake_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_flake_debug +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_flake_debug Checking test 107 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 286.983649 -0:The maximum resident set size (KB) = 987260 +0:The total amount of wall time = 286.142000 +0:The maximum resident set size (KB) = 987216 Test 107 rap_flake_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_wam_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_wam_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wam_debug +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_wam_debug Checking test 108 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 291.699489 -0:The maximum resident set size (KB) = 235680 +0:The total amount of wall time = 289.164381 +0:The maximum resident set size (KB) = 235724 Test 108 control_wam_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 109 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3584,14 +3584,14 @@ Checking test 109 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 247.764089 -0:The maximum resident set size (KB) = 855272 +0:The total amount of wall time = 248.765865 +0:The maximum resident set size (KB) = 855404 Test 109 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/rap_control_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_control_dyn32_phy32 Checking test 110 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3638,14 +3638,14 @@ Checking test 110 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 392.706276 -0:The maximum resident set size (KB) = 708104 +0:The total amount of wall time = 400.789003 +0:The maximum resident set size (KB) = 708264 Test 110 rap_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/hrrr_control_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hrrr_control_dyn32_phy32 Checking test 111 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3692,14 +3692,14 @@ Checking test 111 hrrr_control_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 202.198152 -0:The maximum resident set size (KB) = 707912 +0:The total amount of wall time = 202.224699 +0:The maximum resident set size (KB) = 707924 Test 111 hrrr_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/rap_2threads_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_2threads_dyn32_phy32 Checking test 112 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3746,14 +3746,14 @@ Checking test 112 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 390.245208 -0:The maximum resident set size (KB) = 756576 +0:The total amount of wall time = 381.970502 +0:The maximum resident set size (KB) = 756588 Test 112 rap_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/hrrr_control_2threads_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hrrr_control_2threads_dyn32_phy32 Checking test 113 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3800,14 +3800,14 @@ Checking test 113 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 277.151381 -0:The maximum resident set size (KB) = 753048 +0:The total amount of wall time = 277.308917 +0:The maximum resident set size (KB) = 752108 Test 113 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/hrrr_control_decomp_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hrrr_control_decomp_dyn32_phy32 Checking test 114 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3854,14 +3854,14 @@ Checking test 114 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 210.647510 -0:The maximum resident set size (KB) = 705932 +0:The total amount of wall time = 215.848961 +0:The maximum resident set size (KB) = 705964 Test 114 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/rap_restart_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_restart_dyn32_phy32 Checking test 115 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3900,28 +3900,28 @@ Checking test 115 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 298.206645 -0:The maximum resident set size (KB) = 545192 +0:The total amount of wall time = 291.572354 +0:The maximum resident set size (KB) = 545144 Test 115 rap_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/hrrr_control_restart_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hrrr_control_restart_dyn32_phy32 Checking test 116 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 103.479212 -0:The maximum resident set size (KB) = 536516 +0:The total amount of wall time = 105.757994 +0:The maximum resident set size (KB) = 536696 Test 116 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/rap_control_dyn64_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn64_phy32 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_control_dyn64_phy32 Checking test 117 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3968,81 +3968,81 @@ Checking test 117 rap_control_dyn64_phy32 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 = 264.235524 -0:The maximum resident set size (KB) = 730588 +0:The total amount of wall time = 273.595358 +0:The maximum resident set size (KB) = 730656 Test 117 rap_control_dyn64_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/rap_control_debug_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_control_debug_dyn32_phy32 Checking test 118 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 283.070670 -0:The maximum resident set size (KB) = 872280 +0:The total amount of wall time = 280.434840 +0:The maximum resident set size (KB) = 872352 Test 118 rap_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/hrrr_control_debug_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hrrr_control_debug_dyn32_phy32 Checking test 119 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 276.097307 -0:The maximum resident set size (KB) = 871068 +0:The total amount of wall time = 275.619384 +0:The maximum resident set size (KB) = 871072 Test 119 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/rap_control_dyn64_phy32_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug_dyn64_phy32 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_control_dyn64_phy32_debug Checking test 120 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 288.501406 -0:The maximum resident set size (KB) = 893008 +0:The total amount of wall time = 287.399337 +0:The maximum resident set size (KB) = 893004 Test 120 rap_control_dyn64_phy32_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/hafs_regional_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hafs_regional_atm Checking test 121 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -0:The total amount of wall time = 263.121936 -0:The maximum resident set size (KB) = 743428 +0:The total amount of wall time = 259.521982 +0:The maximum resident set size (KB) = 743088 Test 121 hafs_regional_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/hafs_regional_atm_thompson_gfdlsf +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hafs_regional_atm_thompson_gfdlsf Checking test 122 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -0:The total amount of wall time = 293.465137 -0:The maximum resident set size (KB) = 1098976 +0:The total amount of wall time = 343.523925 +0:The maximum resident set size (KB) = 1101216 Test 122 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_atm_ocn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/hafs_regional_atm_ocn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_ocn +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hafs_regional_atm_ocn Checking test 123 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4051,14 +4051,14 @@ Checking test 123 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 456.712835 -0:The maximum resident set size (KB) = 743260 +0:The total amount of wall time = 455.199375 +0:The maximum resident set size (KB) = 743224 Test 123 hafs_regional_atm_ocn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_atm_wav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/hafs_regional_atm_wav +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_wav +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hafs_regional_atm_wav Checking test 124 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4067,14 +4067,14 @@ Checking test 124 hafs_regional_atm_wav 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 = 1024.582698 -0:The maximum resident set size (KB) = 772592 +0:The total amount of wall time = 1074.359986 +0:The maximum resident set size (KB) = 772520 Test 124 hafs_regional_atm_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_atm_ocn_wav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/hafs_regional_atm_ocn_wav +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_ocn_wav +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hafs_regional_atm_ocn_wav Checking test 125 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4085,28 +4085,28 @@ Checking test 125 hafs_regional_atm_ocn_wav 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 = 1171.347442 -0:The maximum resident set size (KB) = 793004 +0:The total amount of wall time = 1093.796132 +0:The maximum resident set size (KB) = 793076 Test 125 hafs_regional_atm_ocn_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/hafs_regional_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_1nest_atm +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hafs_regional_1nest_atm Checking test 126 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 375.800269 -0:The maximum resident set size (KB) = 300712 +0:The total amount of wall time = 376.707190 +0:The maximum resident set size (KB) = 301340 Test 126 hafs_regional_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/hafs_regional_telescopic_2nests_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hafs_regional_telescopic_2nests_atm Checking test 127 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4115,28 +4115,28 @@ Checking test 127 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -0:The total amount of wall time = 427.572876 -0:The maximum resident set size (KB) = 320964 +0:The total amount of wall time = 426.005482 +0:The maximum resident set size (KB) = 320976 Test 127 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_global_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/hafs_global_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_global_1nest_atm +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hafs_global_1nest_atm Checking test 128 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 169.354412 -0:The maximum resident set size (KB) = 214508 +0:The total amount of wall time = 173.446271 +0:The maximum resident set size (KB) = 214684 Test 128 hafs_global_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_global_multiple_4nests_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/hafs_global_multiple_4nests_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_global_multiple_4nests_atm +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hafs_global_multiple_4nests_atm Checking test 129 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4154,14 +4154,14 @@ Checking test 129 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -0:The total amount of wall time = 483.138515 -0:The maximum resident set size (KB) = 302980 +0:The total amount of wall time = 484.860707 +0:The maximum resident set size (KB) = 303488 Test 129 hafs_global_multiple_4nests_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/hafs_regional_specified_moving_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hafs_regional_specified_moving_1nest_atm Checking test 130 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4170,28 +4170,28 @@ Checking test 130 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -0:The total amount of wall time = 241.711130 -0:The maximum resident set size (KB) = 319004 +0:The total amount of wall time = 241.934138 +0:The maximum resident set size (KB) = 318996 Test 130 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/hafs_regional_storm_following_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hafs_regional_storm_following_1nest_atm Checking test 131 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 230.803977 -0:The maximum resident set size (KB) = 318956 +0:The total amount of wall time = 230.972152 +0:The maximum resident set size (KB) = 319144 Test 131 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hafs_regional_storm_following_1nest_atm_ocn Checking test 132 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4200,42 +4200,42 @@ Checking test 132 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -0:The total amount of wall time = 283.469921 -0:The maximum resident set size (KB) = 375780 +0:The total amount of wall time = 277.549806 +0:The maximum resident set size (KB) = 375332 Test 132 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_global_storm_following_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/hafs_global_storm_following_1nest_atm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_global_storm_following_1nest_atm +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hafs_global_storm_following_1nest_atm Checking test 133 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 68.277604 -0:The maximum resident set size (KB) = 233944 +0:The total amount of wall time = 70.505526 +0:The maximum resident set size (KB) = 233916 Test 133 hafs_global_storm_following_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 134 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 774.632734 -0:The maximum resident set size (KB) = 401900 +0:The total amount of wall time = 767.145788 +0:The maximum resident set size (KB) = 402076 Test 134 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4246,14 +4246,14 @@ Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -0:The total amount of wall time = 795.546650 -0:The maximum resident set size (KB) = 428280 +0:The total amount of wall time = 786.860062 +0:The maximum resident set size (KB) = 427636 Test 135 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_docn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/hafs_regional_docn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_docn +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hafs_regional_docn Checking test 136 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4261,14 +4261,14 @@ Checking test 136 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 391.939834 -0:The maximum resident set size (KB) = 756592 +0:The total amount of wall time = 390.635766 +0:The maximum resident set size (KB) = 756580 Test 136 hafs_regional_docn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_docn_oisst -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/hafs_regional_docn_oisst +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_docn_oisst +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hafs_regional_docn_oisst Checking test 137 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4276,131 +4276,131 @@ Checking test 137 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 462.149700 -0:The maximum resident set size (KB) = 736044 +0:The total amount of wall time = 481.252227 +0:The maximum resident set size (KB) = 736616 Test 137 hafs_regional_docn_oisst PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_datm_cdeps -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/hafs_regional_datm_cdeps +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_datm_cdeps +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hafs_regional_datm_cdeps Checking test 138 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -0:The total amount of wall time = 1292.942104 -0:The maximum resident set size (KB) = 887908 +0:The total amount of wall time = 1285.869506 +0:The maximum resident set size (KB) = 887928 Test 138 hafs_regional_datm_cdeps PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/datm_cdeps_control_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/datm_cdeps_control_cfsr Checking test 139 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 168.306054 -0:The maximum resident set size (KB) = 716712 +0:The total amount of wall time = 167.762009 +0:The maximum resident set size (KB) = 716676 Test 139 datm_cdeps_control_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/datm_cdeps_restart_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/datm_cdeps_restart_cfsr Checking test 140 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 97.326517 -0:The maximum resident set size (KB) = 704864 +0:The total amount of wall time = 100.779304 +0:The maximum resident set size (KB) = 704832 Test 140 datm_cdeps_restart_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_control_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/datm_cdeps_control_gefs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_gefs +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/datm_cdeps_control_gefs Checking test 141 datm_cdeps_control_gefs 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 = 160.931873 -0:The maximum resident set size (KB) = 607476 +0:The total amount of wall time = 161.001626 +0:The maximum resident set size (KB) = 607504 Test 141 datm_cdeps_control_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_iau_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/datm_cdeps_iau_gefs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_iau_gefs +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/datm_cdeps_iau_gefs Checking test 142 datm_cdeps_iau_gefs 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 = 160.129447 -0:The maximum resident set size (KB) = 607464 +0:The total amount of wall time = 160.841932 +0:The maximum resident set size (KB) = 607508 Test 142 datm_cdeps_iau_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_stochy_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/datm_cdeps_stochy_gefs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_stochy_gefs +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/datm_cdeps_stochy_gefs Checking test 143 datm_cdeps_stochy_gefs 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 = 165.648601 -0:The maximum resident set size (KB) = 607440 +0:The total amount of wall time = 160.108923 +0:The maximum resident set size (KB) = 607504 Test 143 datm_cdeps_stochy_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_ciceC_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/datm_cdeps_ciceC_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_ciceC_cfsr +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/datm_cdeps_ciceC_cfsr Checking test 144 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 169.085110 -0:The maximum resident set size (KB) = 716696 +0:The total amount of wall time = 169.530537 +0:The maximum resident set size (KB) = 716676 Test 144 datm_cdeps_ciceC_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_bulk_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/datm_cdeps_bulk_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_bulk_cfsr +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/datm_cdeps_bulk_cfsr Checking test 145 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 169.314225 -0:The maximum resident set size (KB) = 716696 +0:The total amount of wall time = 167.823598 +0:The maximum resident set size (KB) = 716676 Test 145 datm_cdeps_bulk_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_bulk_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/datm_cdeps_bulk_gefs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_bulk_gefs +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/datm_cdeps_bulk_gefs Checking test 146 datm_cdeps_bulk_gefs 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 = 161.169207 -0:The maximum resident set size (KB) = 607436 +0:The total amount of wall time = 159.889454 +0:The maximum resident set size (KB) = 607512 Test 146 datm_cdeps_bulk_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_mx025_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/datm_cdeps_mx025_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_mx025_cfsr +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/datm_cdeps_mx025_cfsr Checking test 147 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4409,14 +4409,14 @@ Checking test 147 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 821.293210 -0:The maximum resident set size (KB) = 514364 +0:The total amount of wall time = 429.997398 +0:The maximum resident set size (KB) = 514704 Test 147 datm_cdeps_mx025_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_mx025_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/datm_cdeps_mx025_gefs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_mx025_gefs +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/datm_cdeps_mx025_gefs Checking test 148 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4425,77 +4425,77 @@ Checking test 148 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 433.441407 -0:The maximum resident set size (KB) = 494764 +0:The total amount of wall time = 421.745325 +0:The maximum resident set size (KB) = 494900 Test 148 datm_cdeps_mx025_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/datm_cdeps_multiple_files_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/datm_cdeps_multiple_files_cfsr Checking test 149 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 166.660255 -0:The maximum resident set size (KB) = 716736 +0:The total amount of wall time = 167.930718 +0:The maximum resident set size (KB) = 716740 Test 149 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/datm_cdeps_3072x1536_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/datm_cdeps_3072x1536_cfsr Checking test 150 datm_cdeps_3072x1536_cfsr 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 = 256.502415 -0:The maximum resident set size (KB) = 1910036 +0:The total amount of wall time = 268.648702 +0:The maximum resident set size (KB) = 1941404 Test 150 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_gfs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/datm_cdeps_gfs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_gfs +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/datm_cdeps_gfs Checking test 151 datm_cdeps_gfs 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 = 269.306711 -0:The maximum resident set size (KB) = 1941084 +0:The total amount of wall time = 269.067076 +0:The maximum resident set size (KB) = 1939416 Test 151 datm_cdeps_gfs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_debug_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/datm_cdeps_debug_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_debug_cfsr +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/datm_cdeps_debug_cfsr Checking test 152 datm_cdeps_debug_cfsr 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 = 369.137286 -0:The maximum resident set size (KB) = 700716 +0:The total amount of wall time = 368.953988 +0:The maximum resident set size (KB) = 700612 Test 152 datm_cdeps_debug_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_control_cfsr_faster -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/datm_cdeps_control_cfsr_faster +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_cfsr_faster +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/datm_cdeps_control_cfsr_faster Checking test 153 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.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.266042 -0:The maximum resident set size (KB) = 716740 +0:The total amount of wall time = 163.543653 +0:The maximum resident set size (KB) = 716736 Test 153 datm_cdeps_control_cfsr_faster PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/datm_cdeps_lnd_gswp3 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_lnd_gswp3 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/datm_cdeps_lnd_gswp3 Checking test 154 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4504,14 +4504,14 @@ Checking test 154 datm_cdeps_lnd_gswp3 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 = 10.086677 -0:The maximum resident set size (KB) = 208292 +0:The total amount of wall time = 10.719925 +0:The maximum resident set size (KB) = 208240 Test 154 datm_cdeps_lnd_gswp3 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/datm_cdeps_lnd_gswp3_rst +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_lnd_gswp3 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/datm_cdeps_lnd_gswp3_rst Checking test 155 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4520,14 +4520,14 @@ Checking test 155 datm_cdeps_lnd_gswp3_rst 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 = 15.871247 -0:The maximum resident set size (KB) = 210140 +0:The total amount of wall time = 16.301166 +0:The maximum resident set size (KB) = 216368 Test 155 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8_atmlnd_sbs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_p8_atmlnd_sbs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_atmlnd_sbs +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_p8_atmlnd_sbs Checking test 156 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4612,14 +4612,14 @@ Checking test 156 control_p8_atmlnd_sbs 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 = 235.555771 -0:The maximum resident set size (KB) = 1463224 +0:The total amount of wall time = 234.579635 +0:The maximum resident set size (KB) = 1463216 Test 156 control_p8_atmlnd_sbs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/atmwav_control_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/atmwav_control_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/atmwav_control_noaero_p8 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/atmwav_control_noaero_p8 Checking test 157 atmwav_control_noaero_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4662,14 +4662,14 @@ Checking test 157 atmwav_control_noaero_p8 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 = 101.536937 -0:The maximum resident set size (KB) = 1434500 +0:The total amount of wall time = 98.686716 +0:The maximum resident set size (KB) = 1434600 Test 157 atmwav_control_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/control_atmwav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/control_atmwav +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_atmwav +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_atmwav Checking test 158 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4713,14 +4713,14 @@ Checking test 158 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -0:The total amount of wall time = 101.877108 -0:The maximum resident set size (KB) = 475292 +0:The total amount of wall time = 101.144680 +0:The maximum resident set size (KB) = 475312 Test 158 control_atmwav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/atmaero_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/atmaero_control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/atmaero_control_p8 +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/atmaero_control_p8 Checking test 159 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4764,14 +4764,14 @@ Checking test 159 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 253.573256 -0:The maximum resident set size (KB) = 2703992 +0:The total amount of wall time = 249.525744 +0:The maximum resident set size (KB) = 2703984 Test 159 atmaero_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/atmaero_control_p8_rad -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/atmaero_control_p8_rad +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/atmaero_control_p8_rad +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/atmaero_control_p8_rad Checking test 160 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4815,14 +4815,14 @@ Checking test 160 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 307.307900 -0:The maximum resident set size (KB) = 2758840 +0:The total amount of wall time = 302.020892 +0:The maximum resident set size (KB) = 2758880 Test 160 atmaero_control_p8_rad PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/atmaero_control_p8_rad_micro -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/atmaero_control_p8_rad_micro +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/atmaero_control_p8_rad_micro +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/atmaero_control_p8_rad_micro Checking test 161 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4866,14 +4866,14 @@ Checking test 161 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 308.775831 -0:The maximum resident set size (KB) = 2765556 +0:The total amount of wall time = 309.003540 +0:The maximum resident set size (KB) = 2765588 Test 161 atmaero_control_p8_rad_micro PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_atmaq -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/regional_atmaq +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_atmaq +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/regional_atmaq Checking test 162 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4889,14 +4889,14 @@ Checking test 162 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -0:The total amount of wall time = 750.670771 -0:The maximum resident set size (KB) = 999724 +0:The total amount of wall time = 760.029388 +0:The maximum resident set size (KB) = 999616 Test 162 regional_atmaq PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_atmaq_faster -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_8251/regional_atmaq_faster +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_atmaq_faster +working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/regional_atmaq_faster Checking test 163 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4912,12 +4912,12 @@ Checking test 163 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -0:The total amount of wall time = 699.838306 -0:The maximum resident set size (KB) = 999488 +0:The total amount of wall time = 706.397204 +0:The maximum resident set size (KB) = 999612 Test 163 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Wed May 10 15:47:12 MDT 2023 -Elapsed time: 01h:23m:37s. Have a nice day! +Sat May 6 10:06:49 MDT 2023 +Elapsed time: 02h:20m:33s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index 18ecb65bd33..b1d3aee67b9 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,43 +1,43 @@ -Thu 11 May 2023 03:27:43 PM EDT +Sun 14 May 2023 09:42:38 PM EDT Start Regression test -Compile 001 elapsed time 953 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 975 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 900 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 349 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 308 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 821 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 808 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 1049 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 842 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 010 elapsed time 768 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 757 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 731 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 927 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 327 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 015 elapsed time 272 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 742 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 810 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 255 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 274 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 812 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 021 elapsed time 295 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 1014 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 915 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 024 elapsed time 342 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 243 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 331 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 188 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 799 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 818 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 837 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 791 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 760 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 033 elapsed time 281 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 034 elapsed time 928 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8_mixedmode -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/cpld_control_p8_mixedmode +Compile 001 elapsed time 906 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 906 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 843 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 331 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 277 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 822 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 783 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 1060 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 825 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 010 elapsed time 789 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 709 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 676 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 909 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 290 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 015 elapsed time 222 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 731 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 755 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 224 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 245 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 746 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 021 elapsed time 239 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 968 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 778 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 024 elapsed time 269 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 147 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 242 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 103 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 696 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 695 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 694 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 785 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 736 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 033 elapsed time 204 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 034 elapsed time 827 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_p8_mixedmode +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -102,14 +102,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 321.154633 - 0: The maximum resident set size (KB) = 1549056 + 0: The total amount of wall time = 320.392769 + 0: The maximum resident set size (KB) = 1548904 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_gfsv17 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/cpld_control_gfsv17 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_gfsv17 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -173,14 +173,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 235.191425 - 0: The maximum resident set size (KB) = 1443400 + 0: The total amount of wall time = 237.600379 + 0: The maximum resident set size (KB) = 1443220 Test 002 cpld_control_gfsv17 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/cpld_control_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -245,14 +245,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 365.122502 - 0: The maximum resident set size (KB) = 1582296 + 0: The total amount of wall time = 366.619390 + 0: The maximum resident set size (KB) = 1582064 Test 003 cpld_control_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/cpld_restart_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -305,14 +305,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 209.942826 - 0: The maximum resident set size (KB) = 1021188 + 0: The total amount of wall time = 208.746548 + 0: The maximum resident set size (KB) = 1020752 Test 004 cpld_restart_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/cpld_control_qr_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -377,14 +377,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 371.549266 - 0: The maximum resident set size (KB) = 1593916 + 0: The total amount of wall time = 367.446324 + 0: The maximum resident set size (KB) = 1594444 Test 005 cpld_control_qr_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/cpld_restart_qr_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -437,14 +437,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 211.711733 - 0: The maximum resident set size (KB) = 1035248 + 0: The total amount of wall time = 209.841419 + 0: The maximum resident set size (KB) = 1034760 Test 006 cpld_restart_qr_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/cpld_2threads_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -497,14 +497,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 380.909110 - 0: The maximum resident set size (KB) = 1774940 + 0: The total amount of wall time = 381.728784 + 0: The maximum resident set size (KB) = 1777044 Test 007 cpld_2threads_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/cpld_decomp_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -557,14 +557,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 367.950629 - 0: The maximum resident set size (KB) = 1573100 + 0: The total amount of wall time = 368.862375 + 0: The maximum resident set size (KB) = 1572816 Test 008 cpld_decomp_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/cpld_mpi_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -617,14 +617,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 306.985943 - 0: The maximum resident set size (KB) = 1541436 + 0: The total amount of wall time = 310.244167 + 0: The maximum resident set size (KB) = 1540444 Test 009 cpld_mpi_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_bmark_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/cpld_bmark_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_bmark_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/cpld_bmark_p8 Checking test 010 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -672,14 +672,14 @@ Checking test 010 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 739.641408 - 0: The maximum resident set size (KB) = 2518216 + 0: The total amount of wall time = 752.703421 + 0: The maximum resident set size (KB) = 2516480 -Test 010 cpld_bmark_p8 PASS Tries: 2 +Test 010 cpld_bmark_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_bmark_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/cpld_restart_bmark_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_bmark_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/cpld_restart_bmark_p8 Checking test 011 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -727,14 +727,14 @@ Checking test 011 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 448.125643 - 0: The maximum resident set size (KB) = 2333952 + 0: The total amount of wall time = 443.765782 + 0: The maximum resident set size (KB) = 2334580 Test 011 cpld_restart_bmark_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_noaero_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/cpld_control_noaero_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_noaero_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/cpld_control_noaero_p8 Checking test 012 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -798,14 +798,14 @@ Checking test 012 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 274.922653 - 0: The maximum resident set size (KB) = 1440468 + 0: The total amount of wall time = 280.991053 + 0: The maximum resident set size (KB) = 1440456 Test 012 cpld_control_noaero_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_c96_noaero_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/cpld_control_nowave_noaero_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_c96_noaero_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/cpld_control_nowave_noaero_p8 Checking test 013 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -867,14 +867,14 @@ Checking test 013 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 283.247583 - 0: The maximum resident set size (KB) = 1474220 + 0: The total amount of wall time = 285.321953 + 0: The maximum resident set size (KB) = 1474324 Test 013 cpld_control_nowave_noaero_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_debug_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/cpld_debug_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_debug_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/cpld_debug_p8 Checking test 014 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -927,14 +927,14 @@ Checking test 014 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 548.490799 - 0: The maximum resident set size (KB) = 1615856 + 0: The total amount of wall time = 549.440098 + 0: The maximum resident set size (KB) = 1616256 Test 014 cpld_debug_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_debug_noaero_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/cpld_debug_noaero_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_debug_noaero_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/cpld_debug_noaero_p8 Checking test 015 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -986,14 +986,14 @@ Checking test 015 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 379.514708 - 0: The maximum resident set size (KB) = 1441508 + 0: The total amount of wall time = 387.300917 + 0: The maximum resident set size (KB) = 1441568 Test 015 cpld_debug_noaero_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_noaero_p8_agrid -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/cpld_control_noaero_p8_agrid +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_noaero_p8_agrid +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/cpld_control_noaero_p8_agrid Checking test 016 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1055,14 +1055,14 @@ Checking test 016 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 292.197721 - 0: The maximum resident set size (KB) = 1476964 + 0: The total amount of wall time = 297.077560 + 0: The maximum resident set size (KB) = 1476832 Test 016 cpld_control_noaero_p8_agrid PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_c48 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/cpld_control_c48 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_c48 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/cpld_control_c48 Checking test 017 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1112,14 +1112,14 @@ Checking test 017 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 604.052583 - 0: The maximum resident set size (KB) = 2563472 + 0: The total amount of wall time = 614.105992 + 0: The maximum resident set size (KB) = 2563304 Test 017 cpld_control_c48 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_warmstart_c48 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/cpld_warmstart_c48 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_warmstart_c48 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/cpld_warmstart_c48 Checking test 018 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1169,14 +1169,14 @@ Checking test 018 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 159.675121 - 0: The maximum resident set size (KB) = 2576564 + 0: The total amount of wall time = 182.920574 + 0: The maximum resident set size (KB) = 2576224 Test 018 cpld_warmstart_c48 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_warmstart_c48 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/cpld_restart_c48 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_warmstart_c48 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/cpld_restart_c48 Checking test 019 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1226,14 +1226,14 @@ Checking test 019 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 83.848113 - 0: The maximum resident set size (KB) = 1990276 + 0: The total amount of wall time = 84.633385 + 0: The maximum resident set size (KB) = 1990344 Test 019 cpld_restart_c48 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8_faster -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/cpld_control_p8_faster +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_p8_faster +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/cpld_control_p8_faster Checking test 020 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1298,14 +1298,14 @@ Checking test 020 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 352.496896 - 0: The maximum resident set size (KB) = 1582004 + 0: The total amount of wall time = 351.535841 + 0: The maximum resident set size (KB) = 1581444 Test 020 cpld_control_p8_faster PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_flake -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_flake +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_flake +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/control_flake Checking test 021 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1316,14 +1316,14 @@ Checking test 021 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 208.862774 - 0: The maximum resident set size (KB) = 485444 + 0: The total amount of wall time = 217.218545 + 0: The maximum resident set size (KB) = 485488 Test 021 control_flake PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_CubedSphereGrid -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_CubedSphereGrid +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_CubedSphereGrid +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/control_CubedSphereGrid Checking test 022 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1350,28 +1350,28 @@ Checking test 022 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 136.484075 - 0: The maximum resident set size (KB) = 438148 + 0: The total amount of wall time = 137.474850 + 0: The maximum resident set size (KB) = 438044 Test 022 control_CubedSphereGrid PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_CubedSphereGrid_parallel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_CubedSphereGrid_parallel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_CubedSphereGrid_parallel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/control_CubedSphereGrid_parallel Checking test 023 control_CubedSphereGrid_parallel 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 = 164.470986 - 0: The maximum resident set size (KB) = 438480 + 0: The total amount of wall time = 138.432275 + 0: The maximum resident set size (KB) = 438216 Test 023 control_CubedSphereGrid_parallel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_latlon -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_latlon +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_latlon +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/control_latlon Checking test 024 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1382,14 +1382,14 @@ Checking test 024 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 139.791346 - 0: The maximum resident set size (KB) = 438208 + 0: The total amount of wall time = 140.915836 + 0: The maximum resident set size (KB) = 438192 Test 024 control_latlon PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_wrtGauss_netcdf_parallel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/control_wrtGauss_netcdf_parallel Checking test 025 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1400,14 +1400,14 @@ Checking test 025 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 176.154512 - 0: The maximum resident set size (KB) = 438220 + 0: The total amount of wall time = 147.024830 + 0: The maximum resident set size (KB) = 438252 Test 025 control_wrtGauss_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_c48 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_c48 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_c48 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/control_c48 Checking test 026 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1446,14 +1446,14 @@ Checking test 026 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 418.421092 -0: The maximum resident set size (KB) = 638124 +0: The total amount of wall time = 418.820366 +0: The maximum resident set size (KB) = 638136 Test 026 control_c48 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_c192 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_c192 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_c192 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/control_c192 Checking test 027 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1464,14 +1464,14 @@ Checking test 027 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 572.237585 - 0: The maximum resident set size (KB) = 545016 + 0: The total amount of wall time = 571.210196 + 0: The maximum resident set size (KB) = 545100 Test 027 control_c192 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_c384 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_c384 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_c384 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/control_c384 Checking test 028 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1482,14 +1482,14 @@ Checking test 028 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1085.277804 - 0: The maximum resident set size (KB) = 824172 + 0: The total amount of wall time = 1084.883285 + 0: The maximum resident set size (KB) = 823832 Test 028 control_c384 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_c384gdas -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_c384gdas +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_c384gdas +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/control_c384gdas Checking test 029 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1532,14 +1532,14 @@ Checking test 029 control_c384gdas 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 = 900.730507 - 0: The maximum resident set size (KB) = 955512 + 0: The total amount of wall time = 914.201067 + 0: The maximum resident set size (KB) = 955700 Test 029 control_c384gdas PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_stochy -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_stochy +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_stochy +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/control_stochy Checking test 030 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1550,28 +1550,28 @@ Checking test 030 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 92.800204 - 0: The maximum resident set size (KB) = 439652 + 0: The total amount of wall time = 93.229262 + 0: The maximum resident set size (KB) = 439580 Test 030 control_stochy PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_stochy -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_stochy_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_stochy +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/control_stochy_restart Checking test 031 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 50.171268 - 0: The maximum resident set size (KB) = 195880 + 0: The total amount of wall time = 49.958884 + 0: The maximum resident set size (KB) = 196056 Test 031 control_stochy_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_lndp -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_lndp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_lndp +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/control_lndp Checking test 032 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1582,14 +1582,14 @@ Checking test 032 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 85.610296 - 0: The maximum resident set size (KB) = 442892 + 0: The total amount of wall time = 93.461832 + 0: The maximum resident set size (KB) = 442828 Test 032 control_lndp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_iovr4 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_iovr4 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_iovr4 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/control_iovr4 Checking test 033 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1604,14 +1604,14 @@ Checking test 033 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 141.919952 - 0: The maximum resident set size (KB) = 437960 + 0: The total amount of wall time = 142.913354 + 0: The maximum resident set size (KB) = 438180 Test 033 control_iovr4 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_iovr5 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_iovr5 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_iovr5 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/control_iovr5 Checking test 034 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1626,14 +1626,14 @@ Checking test 034 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 141.625455 - 0: The maximum resident set size (KB) = 438040 + 0: The total amount of wall time = 142.569092 + 0: The maximum resident set size (KB) = 438100 Test 034 control_iovr5 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/control_p8 Checking test 035 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1680,14 +1680,14 @@ Checking test 035 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 175.805688 + 0: The total amount of wall time = 174.242011 0: The maximum resident set size (KB) = 1380244 Test 035 control_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_restart_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/control_restart_p8 Checking test 036 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1726,14 +1726,14 @@ Checking test 036 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 92.453186 - 0: The maximum resident set size (KB) = 547928 + 0: The total amount of wall time = 91.757243 + 0: The maximum resident set size (KB) = 547908 Test 036 control_restart_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_qr_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/control_qr_p8 Checking test 037 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1780,14 +1780,14 @@ Checking test 037 control_qr_p8 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 = 176.519534 - 0: The maximum resident set size (KB) = 1383380 + 0: The total amount of wall time = 175.006960 + 0: The maximum resident set size (KB) = 1383368 Test 037 control_qr_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_restart_qr_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/control_restart_qr_p8 Checking test 038 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1826,14 +1826,14 @@ Checking test 038 control_restart_qr_p8 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.967197 - 0: The maximum resident set size (KB) = 568992 + 0: The total amount of wall time = 93.164797 + 0: The maximum resident set size (KB) = 569044 Test 038 control_restart_qr_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_decomp_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/control_decomp_p8 Checking test 039 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1876,14 +1876,14 @@ Checking test 039 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 182.909077 - 0: The maximum resident set size (KB) = 1374320 + 0: The total amount of wall time = 183.133870 + 0: The maximum resident set size (KB) = 1374180 Test 039 control_decomp_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_2threads_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/control_2threads_p8 Checking test 040 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1926,14 +1926,14 @@ Checking test 040 control_2threads_p8 results .... Comparing 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.448131 - 0: The maximum resident set size (KB) = 1465452 + 0: The total amount of wall time = 163.578196 + 0: The maximum resident set size (KB) = 1465624 Test 040 control_2threads_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8_lndp -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_p8_lndp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_p8_lndp +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/control_p8_lndp Checking test 041 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1952,14 +1952,14 @@ Checking test 041 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 324.941795 - 0: The maximum resident set size (KB) = 1381348 + 0: The total amount of wall time = 326.493798 + 0: The maximum resident set size (KB) = 1381384 Test 041 control_p8_lndp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8_rrtmgp -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_p8_rrtmgp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_p8_rrtmgp +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/control_p8_rrtmgp Checking test 042 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2006,14 +2006,14 @@ Checking test 042 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 241.825190 - 0: The maximum resident set size (KB) = 1437668 + 0: The total amount of wall time = 241.209694 + 0: The maximum resident set size (KB) = 1437652 Test 042 control_p8_rrtmgp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8_mynn -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_p8_mynn +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_p8_mynn +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/control_p8_mynn Checking test 043 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2060,14 +2060,14 @@ Checking test 043 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 178.597941 - 0: The maximum resident set size (KB) = 1384404 + 0: The total amount of wall time = 178.107542 + 0: The maximum resident set size (KB) = 1384244 Test 043 control_p8_mynn PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/merra2_thompson -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/merra2_thompson +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/merra2_thompson +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/merra2_thompson Checking test 044 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2114,14 +2114,14 @@ Checking test 044 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 199.345641 - 0: The maximum resident set size (KB) = 1385696 + 0: The total amount of wall time = 197.885813 + 0: The maximum resident set size (KB) = 1385812 Test 044 merra2_thompson PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/regional_control +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/regional_control Checking test 045 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2132,28 +2132,28 @@ Checking test 045 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 329.397452 - 0: The maximum resident set size (KB) = 576800 + 0: The total amount of wall time = 329.638976 + 0: The maximum resident set size (KB) = 576952 Test 045 regional_control PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/regional_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/regional_restart Checking test 046 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 174.593698 + 0: The total amount of wall time = 168.032332 0: The maximum resident set size (KB) = 578676 Test 046 regional_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/regional_control_qr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/regional_control_qr Checking test 047 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2164,28 +2164,28 @@ Checking test 047 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 327.327069 - 0: The maximum resident set size (KB) = 576980 + 0: The total amount of wall time = 328.522114 + 0: The maximum resident set size (KB) = 576920 Test 047 regional_control_qr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/regional_restart_qr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/regional_restart_qr Checking test 048 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 174.624520 - 0: The maximum resident set size (KB) = 578620 + 0: The total amount of wall time = 168.796526 + 0: The maximum resident set size (KB) = 578616 Test 048 regional_restart_qr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/regional_decomp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/regional_decomp Checking test 049 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2196,14 +2196,14 @@ Checking test 049 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 349.037832 - 0: The maximum resident set size (KB) = 580888 + 0: The total amount of wall time = 354.403264 + 0: The maximum resident set size (KB) = 580948 Test 049 regional_decomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/regional_2threads +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/regional_2threads Checking test 050 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2214,14 +2214,14 @@ Checking test 050 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 195.950026 - 0: The maximum resident set size (KB) = 586496 + 0: The total amount of wall time = 197.302923 + 0: The maximum resident set size (KB) = 586540 Test 050 regional_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_noquilt -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/regional_noquilt +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_noquilt +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/regional_noquilt Checking test 051 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2229,28 +2229,28 @@ Checking test 051 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 352.370746 - 0: The maximum resident set size (KB) = 572700 + 0: The total amount of wall time = 350.856894 + 0: The maximum resident set size (KB) = 572676 Test 051 regional_noquilt PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_netcdf_parallel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/regional_netcdf_parallel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_netcdf_parallel +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/regional_netcdf_parallel Checking test 052 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 343.867159 - 0: The maximum resident set size (KB) = 578988 + 0: The total amount of wall time = 326.845036 + 0: The maximum resident set size (KB) = 578916 Test 052 regional_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/regional_2dwrtdecomp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/regional_2dwrtdecomp Checking test 053 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2261,14 +2261,14 @@ Checking test 053 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 327.875783 - 0: The maximum resident set size (KB) = 576832 + 0: The total amount of wall time = 327.608736 + 0: The maximum resident set size (KB) = 576884 Test 053 regional_2dwrtdecomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/fv3_regional_wofs -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/regional_wofs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/fv3_regional_wofs +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/regional_wofs Checking test 054 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2279,14 +2279,14 @@ Checking test 054 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 413.475756 - 0: The maximum resident set size (KB) = 264084 + 0: The total amount of wall time = 414.056294 + 0: The maximum resident set size (KB) = 264052 Test 054 regional_wofs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/rap_control +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/rap_control Checking test 055 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2333,14 +2333,14 @@ Checking test 055 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 474.406209 - 0: The maximum resident set size (KB) = 806844 + 0: The total amount of wall time = 468.634217 + 0: The maximum resident set size (KB) = 806616 Test 055 rap_control PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_spp_sppt_shum_skeb -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/regional_spp_sppt_shum_skeb +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_spp_sppt_shum_skeb +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/regional_spp_sppt_shum_skeb Checking test 056 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2351,14 +2351,14 @@ Checking test 056 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 259.738400 - 0: The maximum resident set size (KB) = 903664 + 0: The total amount of wall time = 260.841398 + 0: The maximum resident set size (KB) = 903732 Test 056 regional_spp_sppt_shum_skeb PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/rap_decomp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/rap_decomp Checking test 057 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2405,14 +2405,14 @@ Checking test 057 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 491.209027 - 0: The maximum resident set size (KB) = 806768 + 0: The total amount of wall time = 490.290059 + 0: The maximum resident set size (KB) = 806812 Test 057 rap_decomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/rap_2threads +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/rap_2threads Checking test 058 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2459,14 +2459,14 @@ Checking test 058 rap_2threads results .... Comparing 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.900387 - 0: The maximum resident set size (KB) = 875668 + 0: The total amount of wall time = 453.975402 + 0: The maximum resident set size (KB) = 878388 Test 058 rap_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/rap_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/rap_restart Checking test 059 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2505,14 +2505,14 @@ Checking test 059 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 236.860508 - 0: The maximum resident set size (KB) = 553500 + 0: The total amount of wall time = 237.156250 + 0: The maximum resident set size (KB) = 553328 Test 059 rap_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/rap_sfcdiff +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_sfcdiff +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/rap_sfcdiff Checking test 060 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2559,14 +2559,14 @@ Checking test 060 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 473.380538 - 0: The maximum resident set size (KB) = 806672 + 0: The total amount of wall time = 469.518347 + 0: The maximum resident set size (KB) = 806640 Test 060 rap_sfcdiff PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/rap_sfcdiff_decomp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_sfcdiff +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/rap_sfcdiff_decomp Checking test 061 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2613,14 +2613,14 @@ Checking test 061 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 493.452906 - 0: The maximum resident set size (KB) = 806784 + 0: The total amount of wall time = 496.532595 + 0: The maximum resident set size (KB) = 806720 Test 061 rap_sfcdiff_decomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/rap_sfcdiff_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_sfcdiff +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/rap_sfcdiff_restart Checking test 062 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2659,14 +2659,14 @@ Checking test 062 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 347.769028 - 0: The maximum resident set size (KB) = 552896 + 0: The total amount of wall time = 347.690653 + 0: The maximum resident set size (KB) = 552616 Test 062 rap_sfcdiff_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/hrrr_control +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hrrr_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/hrrr_control Checking test 063 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2713,14 +2713,14 @@ Checking test 063 hrrr_control results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 434.760229 - 0: The maximum resident set size (KB) = 804736 + 0: The total amount of wall time = 434.624424 + 0: The maximum resident set size (KB) = 804760 Test 063 hrrr_control PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/hrrr_control_decomp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hrrr_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/hrrr_control_decomp Checking test 064 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2767,14 +2767,14 @@ Checking test 064 hrrr_control_decomp results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 455.342368 - 0: The maximum resident set size (KB) = 805576 + 0: The total amount of wall time = 456.751788 + 0: The maximum resident set size (KB) = 805640 Test 064 hrrr_control_decomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/hrrr_control_2threads +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hrrr_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/hrrr_control_2threads Checking test 065 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2821,28 +2821,28 @@ Checking test 065 hrrr_control_2threads results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 409.133720 - 0: The maximum resident set size (KB) = 877680 + 0: The total amount of wall time = 410.658536 + 0: The maximum resident set size (KB) = 880700 Test 065 hrrr_control_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/hrrr_control_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hrrr_control +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/hrrr_control_restart Checking test 066 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 322.817269 - 0: The maximum resident set size (KB) = 550660 + 0: The total amount of wall time = 323.059959 + 0: The maximum resident set size (KB) = 550792 Test 066 hrrr_control_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_v1beta -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/rrfs_v1beta +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rrfs_v1beta +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/rrfs_v1beta Checking test 067 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2889,14 +2889,14 @@ Checking test 067 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 463.394181 - 0: The maximum resident set size (KB) = 805284 + 0: The total amount of wall time = 468.206697 + 0: The maximum resident set size (KB) = 805252 Test 067 rrfs_v1beta PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_v1nssl -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/rrfs_v1nssl +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rrfs_v1nssl +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/rrfs_v1nssl Checking test 068 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2911,14 +2911,14 @@ Checking test 068 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 568.085090 - 0: The maximum resident set size (KB) = 493396 + 0: The total amount of wall time = 570.272582 + 0: The maximum resident set size (KB) = 493440 Test 068 rrfs_v1nssl PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/rrfs_v1nssl_nohailnoccn +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/rrfs_v1nssl_nohailnoccn Checking test 069 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2933,14 +2933,14 @@ Checking test 069 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 555.864460 - 0: The maximum resident set size (KB) = 486940 + 0: The total amount of wall time = 557.032635 + 0: The maximum resident set size (KB) = 487112 Test 069 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/rrfs_smoke_conus13km_hrrr_warm Checking test 070 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2949,14 +2949,14 @@ Checking test 070 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 153.549074 - 0: The maximum resident set size (KB) = 632012 + 0: The total amount of wall time = 153.594455 + 0: The maximum resident set size (KB) = 655436 Test 070 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 071 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2965,14 +2965,14 @@ Checking test 071 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 94.719095 - 0: The maximum resident set size (KB) = 645540 + 0: The total amount of wall time = 95.615628 + 0: The maximum resident set size (KB) = 645852 Test 071 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/rrfs_conus13km_hrrr_warm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/rrfs_conus13km_hrrr_warm Checking test 072 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2981,14 +2981,14 @@ Checking test 072 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 138.545136 - 0: The maximum resident set size (KB) = 649972 + 0: The total amount of wall time = 137.824873 + 0: The maximum resident set size (KB) = 649864 Test 072 rrfs_conus13km_hrrr_warm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/rrfs_smoke_conus13km_radar_tten_warm Checking test 073 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2997,26 +2997,26 @@ Checking test 073 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 154.009465 - 0: The maximum resident set size (KB) = 635444 + 0: The total amount of wall time = 154.388905 + 0: The maximum resident set size (KB) = 635856 Test 073 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 074 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 74.414404 - 0: The maximum resident set size (KB) = 621836 + 0: The total amount of wall time = 71.596882 + 0: The maximum resident set size (KB) = 621728 Test 074 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_csawmgt -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_csawmgt +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_csawmgt +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/control_csawmgt Checking test 075 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3027,14 +3027,14 @@ Checking test 075 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 373.900827 - 0: The maximum resident set size (KB) = 503188 + 0: The total amount of wall time = 372.984768 + 0: The maximum resident set size (KB) = 503160 Test 075 control_csawmgt PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_ras -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_ras +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_ras +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/control_ras Checking test 076 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3045,26 +3045,26 @@ Checking test 076 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 198.229352 - 0: The maximum resident set size (KB) = 473472 + 0: The total amount of wall time = 197.349188 + 0: The maximum resident set size (KB) = 473276 Test 076 control_ras PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_wam -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_wam +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_wam +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/control_wam Checking test 077 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 123.202512 + 0: The total amount of wall time = 123.624739 0: The maximum resident set size (KB) = 189564 Test 077 control_wam PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8_faster -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_p8_faster +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_p8_faster +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/control_p8_faster Checking test 078 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3111,14 +3111,14 @@ Checking test 078 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 165.354108 - 0: The maximum resident set size (KB) = 1380260 + 0: The total amount of wall time = 165.355644 + 0: The maximum resident set size (KB) = 1380296 Test 078 control_p8_faster PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control_faster -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/regional_control_faster +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_control_faster +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/regional_control_faster Checking test 079 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3129,56 +3129,56 @@ Checking test 079 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 307.335309 - 0: The maximum resident set size (KB) = 576848 + 0: The total amount of wall time = 309.040402 + 0: The maximum resident set size (KB) = 579232 Test 079 regional_control_faster PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 080 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 881.785552 - 0: The maximum resident set size (KB) = 686620 + 0: The total amount of wall time = 881.851104 + 0: The maximum resident set size (KB) = 664136 Test 080 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 081 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 505.724787 - 0: The maximum resident set size (KB) = 671228 + 0: The total amount of wall time = 502.501272 + 0: The maximum resident set size (KB) = 677544 Test 081 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/rrfs_conus13km_hrrr_warm_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/rrfs_conus13km_hrrr_warm_debug Checking test 082 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 784.896036 - 0: The maximum resident set size (KB) = 680836 + 0: The total amount of wall time = 785.102811 + 0: The maximum resident set size (KB) = 680884 Test 082 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_CubedSphereGrid_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_CubedSphereGrid_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_CubedSphereGrid_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/control_CubedSphereGrid_debug Checking test 083 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3205,348 +3205,348 @@ Checking test 083 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 151.982058 - 0: The maximum resident set size (KB) = 602348 + 0: The total amount of wall time = 152.144537 + 0: The maximum resident set size (KB) = 602604 Test 083 control_CubedSphereGrid_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_wrtGauss_netcdf_parallel_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/control_wrtGauss_netcdf_parallel_debug Checking test 084 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 201.050269 - 0: The maximum resident set size (KB) = 602504 + 0: The total amount of wall time = 156.811108 + 0: The maximum resident set size (KB) = 602488 Test 084 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_stochy_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_stochy_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_stochy_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/control_stochy_debug Checking test 085 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 172.677242 - 0: The maximum resident set size (KB) = 607332 + 0: The total amount of wall time = 173.044471 + 0: The maximum resident set size (KB) = 607580 Test 085 control_stochy_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_lndp_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_lndp_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_lndp_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/control_lndp_debug Checking test 086 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 155.203755 - 0: The maximum resident set size (KB) = 605288 + 0: The total amount of wall time = 154.352960 + 0: The maximum resident set size (KB) = 605304 Test 086 control_lndp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_csawmg_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_csawmg_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_csawmg_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/control_csawmg_debug Checking test 087 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 245.016484 - 0: The maximum resident set size (KB) = 641888 + 0: The total amount of wall time = 244.810177 + 0: The maximum resident set size (KB) = 641920 Test 087 control_csawmg_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_csawmgt_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_csawmgt_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_csawmgt_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/control_csawmgt_debug Checking test 088 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 241.796528 - 0: The maximum resident set size (KB) = 641548 + 0: The total amount of wall time = 240.565557 + 0: The maximum resident set size (KB) = 641528 Test 088 control_csawmgt_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_ras_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_ras_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_ras_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/control_ras_debug Checking test 089 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 156.696209 - 0: The maximum resident set size (KB) = 613784 + 0: The total amount of wall time = 156.096229 + 0: The maximum resident set size (KB) = 613832 Test 089 control_ras_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_diag_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_diag_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_diag_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/control_diag_debug Checking test 090 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 160.512958 - 0: The maximum resident set size (KB) = 658584 + 0: The total amount of wall time = 157.907271 + 0: The maximum resident set size (KB) = 658544 Test 090 control_diag_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_debug_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_debug_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_debug_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/control_debug_p8 Checking test 091 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 173.253402 - 0: The maximum resident set size (KB) = 1383456 + 0: The total amount of wall time = 173.525390 + 0: The maximum resident set size (KB) = 1383412 Test 091 control_debug_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/regional_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/regional_debug Checking test 092 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1034.754983 - 0: The maximum resident set size (KB) = 606248 + 0: The total amount of wall time = 1035.490223 + 0: The maximum resident set size (KB) = 606216 Test 092 regional_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/rap_control_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_control_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/rap_control_debug Checking test 093 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 285.269760 - 0: The maximum resident set size (KB) = 970884 + 0: The total amount of wall time = 283.550720 + 0: The maximum resident set size (KB) = 970868 Test 093 rap_control_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/hrrr_control_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hrrr_control_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/hrrr_control_debug Checking test 094 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.040584 - 0: The maximum resident set size (KB) = 969288 + 0: The total amount of wall time = 276.531227 + 0: The maximum resident set size (KB) = 969264 Test 094 hrrr_control_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/rap_unified_drag_suite_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_control_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/rap_unified_drag_suite_debug Checking test 095 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 283.558740 - 0: The maximum resident set size (KB) = 970936 + 0: The total amount of wall time = 283.648802 + 0: The maximum resident set size (KB) = 971192 Test 095 rap_unified_drag_suite_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_diag_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/rap_diag_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_diag_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/rap_diag_debug Checking test 096 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 297.675051 - 0: The maximum resident set size (KB) = 1054896 + 0: The total amount of wall time = 296.961484 + 0: The maximum resident set size (KB) = 1054692 Test 096 rap_diag_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_cires_ugwp_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/rap_cires_ugwp_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_cires_ugwp_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/rap_cires_ugwp_debug Checking test 097 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 289.405049 - 0: The maximum resident set size (KB) = 970396 + 0: The total amount of wall time = 289.099810 + 0: The maximum resident set size (KB) = 970348 Test 097 rap_cires_ugwp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_cires_ugwp_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/rap_unified_ugwp_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_cires_ugwp_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/rap_unified_ugwp_debug Checking test 098 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 290.178975 - 0: The maximum resident set size (KB) = 972360 + 0: The total amount of wall time = 289.042133 + 0: The maximum resident set size (KB) = 972336 Test 098 rap_unified_ugwp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_lndp_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/rap_lndp_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_lndp_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/rap_lndp_debug Checking test 099 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 285.794262 - 0: The maximum resident set size (KB) = 971688 + 0: The total amount of wall time = 285.695638 + 0: The maximum resident set size (KB) = 971764 Test 099 rap_lndp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_progcld_thompson_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/rap_progcld_thompson_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_progcld_thompson_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/rap_progcld_thompson_debug Checking test 100 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 284.718837 - 0: The maximum resident set size (KB) = 970976 + 0: The total amount of wall time = 283.895479 + 0: The maximum resident set size (KB) = 970936 Test 100 rap_progcld_thompson_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_noah_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/rap_noah_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_noah_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/rap_noah_debug Checking test 101 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.429345 - 0: The maximum resident set size (KB) = 969516 + 0: The total amount of wall time = 277.438864 + 0: The maximum resident set size (KB) = 969604 Test 101 rap_noah_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_sfcdiff_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/rap_sfcdiff_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_sfcdiff_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/rap_sfcdiff_debug Checking test 102 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 284.517674 - 0: The maximum resident set size (KB) = 970792 + 0: The total amount of wall time = 283.854403 + 0: The maximum resident set size (KB) = 970944 Test 102 rap_sfcdiff_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/rap_noah_sfcdiff_cires_ugwp_debug Checking test 103 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 468.919963 - 0: The maximum resident set size (KB) = 969208 + 0: The total amount of wall time = 468.177312 + 0: The maximum resident set size (KB) = 969196 Test 103 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_v1beta_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/rrfs_v1beta_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rrfs_v1beta_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/rrfs_v1beta_debug Checking test 104 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.224406 - 0: The maximum resident set size (KB) = 966872 + 0: The total amount of wall time = 279.849253 + 0: The maximum resident set size (KB) = 966780 Test 104 rrfs_v1beta_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_clm_lake_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/rap_clm_lake_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_clm_lake_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/rap_clm_lake_debug Checking test 105 rap_clm_lake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 356.859313 - 0: The maximum resident set size (KB) = 973844 + 0: The total amount of wall time = 347.702104 + 0: The maximum resident set size (KB) = 973868 Test 105 rap_clm_lake_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_flake_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/rap_flake_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_flake_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/rap_flake_debug Checking test 106 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 282.882222 - 0: The maximum resident set size (KB) = 970964 + 0: The total amount of wall time = 284.178492 + 0: The maximum resident set size (KB) = 970900 Test 106 rap_flake_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_wam_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_wam_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_wam_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/control_wam_debug Checking test 107 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 287.114621 - 0: The maximum resident set size (KB) = 218004 + 0: The total amount of wall time = 287.733870 + 0: The maximum resident set size (KB) = 217948 Test 107 control_wam_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 108 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3557,14 +3557,14 @@ Checking test 108 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 248.518242 - 0: The maximum resident set size (KB) = 808112 + 0: The total amount of wall time = 243.641082 + 0: The maximum resident set size (KB) = 807972 Test 108 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_dyn32_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/rap_control_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_control_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/rap_control_dyn32_phy32 Checking test 109 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3611,14 +3611,14 @@ Checking test 109 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 392.623352 - 0: The maximum resident set size (KB) = 691668 + 0: The total amount of wall time = 389.124323 + 0: The maximum resident set size (KB) = 691832 Test 109 rap_control_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/hrrr_control_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hrrr_control_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/hrrr_control_dyn32_phy32 Checking test 110 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3665,14 +3665,14 @@ Checking test 110 hrrr_control_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 195.936218 - 0: The maximum resident set size (KB) = 690968 + 0: The total amount of wall time = 194.390199 + 0: The maximum resident set size (KB) = 690916 Test 110 hrrr_control_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_dyn32_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/rap_2threads_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_control_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/rap_2threads_dyn32_phy32 Checking test 111 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3719,14 +3719,14 @@ Checking test 111 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 378.093898 - 0: The maximum resident set size (KB) = 744232 + 0: The total amount of wall time = 377.670160 + 0: The maximum resident set size (KB) = 743968 Test 111 rap_2threads_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/hrrr_control_2threads_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hrrr_control_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/hrrr_control_2threads_dyn32_phy32 Checking test 112 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3773,14 +3773,14 @@ Checking test 112 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 180.479848 - 0: The maximum resident set size (KB) = 739032 + 0: The total amount of wall time = 182.864550 + 0: The maximum resident set size (KB) = 739256 Test 112 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/hrrr_control_decomp_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hrrr_control_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/hrrr_control_decomp_dyn32_phy32 Checking test 113 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3827,14 +3827,14 @@ Checking test 113 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 208.501604 - 0: The maximum resident set size (KB) = 691516 + 0: The total amount of wall time = 205.555552 + 0: The maximum resident set size (KB) = 691508 Test 113 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_dyn32_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/rap_restart_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_control_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/rap_restart_dyn32_phy32 Checking test 114 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3873,28 +3873,28 @@ Checking test 114 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 289.502134 - 0: The maximum resident set size (KB) = 526936 + 0: The total amount of wall time = 288.586353 + 0: The maximum resident set size (KB) = 526912 Test 114 rap_restart_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/hrrr_control_restart_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hrrr_control_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/hrrr_control_restart_dyn32_phy32 Checking test 115 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 99.897136 - 0: The maximum resident set size (KB) = 518464 + 0: The total amount of wall time = 99.586992 + 0: The maximum resident set size (KB) = 518472 Test 115 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_dyn64_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/rap_control_dyn64_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_control_dyn64_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/rap_control_dyn64_phy32 Checking test 116 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3941,81 +3941,81 @@ Checking test 116 rap_control_dyn64_phy32 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 = 259.543671 - 0: The maximum resident set size (KB) = 714324 + 0: The total amount of wall time = 264.659427 + 0: The maximum resident set size (KB) = 714376 Test 116 rap_control_dyn64_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/rap_control_debug_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/rap_control_debug_dyn32_phy32 Checking test 117 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.799361 - 0: The maximum resident set size (KB) = 855992 + 0: The total amount of wall time = 280.156161 + 0: The maximum resident set size (KB) = 856176 Test 117 rap_control_debug_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/hrrr_control_debug_dyn32_phy32 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/hrrr_control_debug_dyn32_phy32 Checking test 118 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.633719 - 0: The maximum resident set size (KB) = 854380 + 0: The total amount of wall time = 273.582082 + 0: The maximum resident set size (KB) = 854296 Test 118 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/rap_control_dyn64_phy32_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/rap_control_dyn64_phy32_debug Checking test 119 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 287.412254 - 0: The maximum resident set size (KB) = 876912 + 0: The total amount of wall time = 284.650043 + 0: The maximum resident set size (KB) = 876904 Test 119 rap_control_dyn64_phy32_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_atm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/hafs_regional_atm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_atm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/hafs_regional_atm Checking test 120 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 256.005150 - 0: The maximum resident set size (KB) = 687992 + 0: The total amount of wall time = 257.294471 + 0: The maximum resident set size (KB) = 688828 Test 120 hafs_regional_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/hafs_regional_atm_thompson_gfdlsf +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/hafs_regional_atm_thompson_gfdlsf Checking test 121 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 293.876406 - 0: The maximum resident set size (KB) = 1039560 + 0: The total amount of wall time = 292.451855 + 0: The maximum resident set size (KB) = 1039552 Test 121 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_atm_ocn -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/hafs_regional_atm_ocn +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_atm_ocn +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/hafs_regional_atm_ocn Checking test 122 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4024,14 +4024,14 @@ Checking test 122 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 427.600281 - 0: The maximum resident set size (KB) = 718120 + 0: The total amount of wall time = 431.156683 + 0: The maximum resident set size (KB) = 717512 Test 122 hafs_regional_atm_ocn PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_atm_wav -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/hafs_regional_atm_wav +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_atm_wav +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/hafs_regional_atm_wav Checking test 123 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4040,14 +4040,14 @@ Checking test 123 hafs_regional_atm_wav 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 = 933.765348 - 0: The maximum resident set size (KB) = 752196 + 0: The total amount of wall time = 935.598445 + 0: The maximum resident set size (KB) = 751192 Test 123 hafs_regional_atm_wav PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_atm_ocn_wav -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/hafs_regional_atm_ocn_wav +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_atm_ocn_wav +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/hafs_regional_atm_ocn_wav Checking test 124 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4058,28 +4058,28 @@ Checking test 124 hafs_regional_atm_ocn_wav 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 = 1033.772242 - 0: The maximum resident set size (KB) = 767096 + 0: The total amount of wall time = 1032.252367 + 0: The maximum resident set size (KB) = 766608 Test 124 hafs_regional_atm_ocn_wav PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_1nest_atm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/hafs_regional_1nest_atm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_1nest_atm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/hafs_regional_1nest_atm Checking test 125 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 364.674996 - 0: The maximum resident set size (KB) = 279540 + 0: The total amount of wall time = 364.628267 + 0: The maximum resident set size (KB) = 279272 Test 125 hafs_regional_1nest_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/hafs_regional_telescopic_2nests_atm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/hafs_regional_telescopic_2nests_atm Checking test 126 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4088,28 +4088,28 @@ Checking test 126 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 417.099044 - 0: The maximum resident set size (KB) = 288780 + 0: The total amount of wall time = 414.227978 + 0: The maximum resident set size (KB) = 289548 Test 126 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_global_1nest_atm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/hafs_global_1nest_atm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_global_1nest_atm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/hafs_global_1nest_atm Checking test 127 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 170.310530 - 0: The maximum resident set size (KB) = 184848 + 0: The total amount of wall time = 167.011747 + 0: The maximum resident set size (KB) = 184792 Test 127 hafs_global_1nest_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_global_multiple_4nests_atm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/hafs_global_multiple_4nests_atm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_global_multiple_4nests_atm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/hafs_global_multiple_4nests_atm Checking test 128 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4127,14 +4127,14 @@ Checking test 128 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 470.463080 - 0: The maximum resident set size (KB) = 232908 + 0: The total amount of wall time = 471.227632 + 0: The maximum resident set size (KB) = 232296 Test 128 hafs_global_multiple_4nests_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/hafs_regional_specified_moving_1nest_atm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/hafs_regional_specified_moving_1nest_atm Checking test 129 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4143,28 +4143,28 @@ Checking test 129 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 230.480747 - 0: The maximum resident set size (KB) = 295400 + 0: The total amount of wall time = 229.622382 + 0: The maximum resident set size (KB) = 296372 Test 129 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/hafs_regional_storm_following_1nest_atm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/hafs_regional_storm_following_1nest_atm Checking test 130 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 216.434333 - 0: The maximum resident set size (KB) = 296560 + 0: The total amount of wall time = 217.739061 + 0: The maximum resident set size (KB) = 296448 Test 130 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/hafs_regional_storm_following_1nest_atm_ocn Checking test 131 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4173,42 +4173,42 @@ Checking test 131 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 256.083514 - 0: The maximum resident set size (KB) = 324152 + 0: The total amount of wall time = 256.216668 + 0: The maximum resident set size (KB) = 323412 Test 131 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/hafs_global_storm_following_1nest_atm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_global_storm_following_1nest_atm +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/hafs_global_storm_following_1nest_atm Checking test 132 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 64.861003 - 0: The maximum resident set size (KB) = 203532 + 0: The total amount of wall time = 65.057115 + 0: The maximum resident set size (KB) = 203520 Test 132 hafs_global_storm_following_1nest_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 133 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 758.554070 - 0: The maximum resident set size (KB) = 349648 + 0: The total amount of wall time = 758.187047 + 0: The maximum resident set size (KB) = 349792 Test 133 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 134 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4219,14 +4219,14 @@ Checking test 134 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 695.648339 - 0: The maximum resident set size (KB) = 373900 + 0: The total amount of wall time = 693.921759 + 0: The maximum resident set size (KB) = 374180 Test 134 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_docn -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/hafs_regional_docn +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_docn +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/hafs_regional_docn Checking test 135 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4234,14 +4234,14 @@ Checking test 135 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 381.756807 - 0: The maximum resident set size (KB) = 724668 + 0: The total amount of wall time = 382.098294 + 0: The maximum resident set size (KB) = 724700 Test 135 hafs_regional_docn PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_docn_oisst -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/hafs_regional_docn_oisst +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_docn_oisst +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/hafs_regional_docn_oisst Checking test 136 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4249,131 +4249,131 @@ Checking test 136 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 381.559542 - 0: The maximum resident set size (KB) = 711248 + 0: The total amount of wall time = 383.476456 + 0: The maximum resident set size (KB) = 712104 Test 136 hafs_regional_docn_oisst PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_datm_cdeps -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/hafs_regional_datm_cdeps +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_datm_cdeps +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/hafs_regional_datm_cdeps Checking test 137 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 1164.987658 - 0: The maximum resident set size (KB) = 809132 + 0: The total amount of wall time = 1160.180432 + 0: The maximum resident set size (KB) = 809088 Test 137 hafs_regional_datm_cdeps PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/datm_cdeps_control_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/datm_cdeps_control_cfsr Checking test 138 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 165.201128 - 0: The maximum resident set size (KB) = 707424 + 0: The total amount of wall time = 165.390362 + 0: The maximum resident set size (KB) = 707464 Test 138 datm_cdeps_control_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/datm_cdeps_restart_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/datm_cdeps_restart_cfsr Checking test 139 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 94.508998 - 0: The maximum resident set size (KB) = 694784 + 0: The total amount of wall time = 94.377417 + 0: The maximum resident set size (KB) = 700316 Test 139 datm_cdeps_restart_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_control_gefs -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/datm_cdeps_control_gefs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_control_gefs +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/datm_cdeps_control_gefs Checking test 140 datm_cdeps_control_gefs 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 = 159.348899 - 0: The maximum resident set size (KB) = 591260 + 0: The total amount of wall time = 157.387926 + 0: The maximum resident set size (KB) = 587368 Test 140 datm_cdeps_control_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_iau_gefs -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/datm_cdeps_iau_gefs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_iau_gefs +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/datm_cdeps_iau_gefs Checking test 141 datm_cdeps_iau_gefs 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 = 160.059556 - 0: The maximum resident set size (KB) = 598176 + 0: The total amount of wall time = 158.341598 + 0: The maximum resident set size (KB) = 587428 Test 141 datm_cdeps_iau_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_stochy_gefs -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/datm_cdeps_stochy_gefs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_stochy_gefs +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/datm_cdeps_stochy_gefs Checking test 142 datm_cdeps_stochy_gefs 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 = 159.854692 - 0: The maximum resident set size (KB) = 587492 + 0: The total amount of wall time = 157.823073 + 0: The maximum resident set size (KB) = 587384 Test 142 datm_cdeps_stochy_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/datm_cdeps_ciceC_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_ciceC_cfsr +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/datm_cdeps_ciceC_cfsr Checking test 143 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.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.008463 - 0: The maximum resident set size (KB) = 707532 + 0: The total amount of wall time = 162.601184 + 0: The maximum resident set size (KB) = 707588 Test 143 datm_cdeps_ciceC_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_bulk_cfsr -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/datm_cdeps_bulk_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_bulk_cfsr +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/datm_cdeps_bulk_cfsr Checking test 144 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.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.859855 - 0: The maximum resident set size (KB) = 707576 + 0: The total amount of wall time = 162.220047 + 0: The maximum resident set size (KB) = 707432 Test 144 datm_cdeps_bulk_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_bulk_gefs -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/datm_cdeps_bulk_gefs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_bulk_gefs +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/datm_cdeps_bulk_gefs Checking test 145 datm_cdeps_bulk_gefs 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.171998 - 0: The maximum resident set size (KB) = 587260 + 0: The total amount of wall time = 155.118092 + 0: The maximum resident set size (KB) = 587340 Test 145 datm_cdeps_bulk_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_mx025_cfsr -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/datm_cdeps_mx025_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_mx025_cfsr +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/datm_cdeps_mx025_cfsr Checking test 146 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4382,14 +4382,14 @@ Checking test 146 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 393.048226 - 0: The maximum resident set size (KB) = 496976 + 0: The total amount of wall time = 402.597843 + 0: The maximum resident set size (KB) = 494668 Test 146 datm_cdeps_mx025_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_mx025_gefs -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/datm_cdeps_mx025_gefs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_mx025_gefs +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/datm_cdeps_mx025_gefs Checking test 147 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4398,77 +4398,77 @@ Checking test 147 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 390.561867 - 0: The maximum resident set size (KB) = 476700 + 0: The total amount of wall time = 390.969443 + 0: The maximum resident set size (KB) = 476712 Test 147 datm_cdeps_mx025_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/datm_cdeps_multiple_files_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/datm_cdeps_multiple_files_cfsr Checking test 148 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 163.679194 - 0: The maximum resident set size (KB) = 707628 + 0: The total amount of wall time = 163.250857 + 0: The maximum resident set size (KB) = 707636 Test 148 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/datm_cdeps_3072x1536_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/datm_cdeps_3072x1536_cfsr Checking test 149 datm_cdeps_3072x1536_cfsr 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 = 252.714361 - 0: The maximum resident set size (KB) = 1948532 + 0: The total amount of wall time = 251.117141 + 0: The maximum resident set size (KB) = 1948496 Test 149 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_gfs -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/datm_cdeps_gfs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_gfs +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/datm_cdeps_gfs Checking test 150 datm_cdeps_gfs 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 = 250.703212 - 0: The maximum resident set size (KB) = 1948368 + 0: The total amount of wall time = 251.896954 + 0: The maximum resident set size (KB) = 1948384 Test 150 datm_cdeps_gfs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_debug_cfsr -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/datm_cdeps_debug_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_debug_cfsr +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/datm_cdeps_debug_cfsr Checking test 151 datm_cdeps_debug_cfsr results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 368.547337 - 0: The maximum resident set size (KB) = 693680 + 0: The total amount of wall time = 367.857089 + 0: The maximum resident set size (KB) = 692224 Test 151 datm_cdeps_debug_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_control_cfsr_faster -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/datm_cdeps_control_cfsr_faster +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_control_cfsr_faster +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/datm_cdeps_control_cfsr_faster Checking test 152 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 161.142346 - 0: The maximum resident set size (KB) = 707516 + 0: The total amount of wall time = 161.554775 + 0: The maximum resident set size (KB) = 707604 Test 152 datm_cdeps_control_cfsr_faster PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/datm_cdeps_lnd_gswp3 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/datm_cdeps_lnd_gswp3 Checking test 153 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4477,14 +4477,14 @@ Checking test 153 datm_cdeps_lnd_gswp3 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.120041 - 0: The maximum resident set size (KB) = 154304 + 0: The total amount of wall time = 7.438504 + 0: The maximum resident set size (KB) = 150228 Test 153 datm_cdeps_lnd_gswp3 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/datm_cdeps_lnd_gswp3_rst +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/datm_cdeps_lnd_gswp3_rst Checking test 154 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4493,14 +4493,14 @@ Checking test 154 datm_cdeps_lnd_gswp3_rst 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 = 16.129212 - 0: The maximum resident set size (KB) = 154196 + 0: The total amount of wall time = 14.139099 + 0: The maximum resident set size (KB) = 154212 Test 154 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8_atmlnd_sbs -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_p8_atmlnd_sbs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_p8_atmlnd_sbs +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/control_p8_atmlnd_sbs Checking test 155 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4585,14 +4585,14 @@ Checking test 155 control_p8_atmlnd_sbs 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 = 218.978033 - 0: The maximum resident set size (KB) = 1413856 + 0: The total amount of wall time = 221.393048 + 0: The maximum resident set size (KB) = 1413648 Test 155 control_p8_atmlnd_sbs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/atmwav_control_noaero_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/atmwav_control_noaero_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/atmwav_control_noaero_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/atmwav_control_noaero_p8 Checking test 156 atmwav_control_noaero_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4635,14 +4635,14 @@ Checking test 156 atmwav_control_noaero_p8 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 = 95.712707 - 0: The maximum resident set size (KB) = 1392344 + 0: The total amount of wall time = 95.954823 + 0: The maximum resident set size (KB) = 1392640 Test 156 atmwav_control_noaero_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_atmwav -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/control_atmwav +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_atmwav +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/control_atmwav Checking test 157 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4686,14 +4686,14 @@ Checking test 157 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 91.608572 - 0: The maximum resident set size (KB) = 452344 + 0: The total amount of wall time = 92.734748 + 0: The maximum resident set size (KB) = 452104 Test 157 control_atmwav PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/atmaero_control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/atmaero_control_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/atmaero_control_p8 +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/atmaero_control_p8 Checking test 158 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4737,14 +4737,14 @@ Checking test 158 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 240.444892 - 0: The maximum resident set size (KB) = 1461784 + 0: The total amount of wall time = 257.772191 + 0: The maximum resident set size (KB) = 1461412 Test 158 atmaero_control_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/atmaero_control_p8_rad -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/atmaero_control_p8_rad +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/atmaero_control_p8_rad +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/atmaero_control_p8_rad Checking test 159 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4788,14 +4788,14 @@ Checking test 159 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 293.354011 - 0: The maximum resident set size (KB) = 1468676 + 0: The total amount of wall time = 296.697617 + 0: The maximum resident set size (KB) = 1468524 Test 159 atmaero_control_p8_rad PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/atmaero_control_p8_rad_micro -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/atmaero_control_p8_rad_micro +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/atmaero_control_p8_rad_micro +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/atmaero_control_p8_rad_micro Checking test 160 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4839,14 +4839,14 @@ Checking test 160 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 300.843240 - 0: The maximum resident set size (KB) = 1474320 + 0: The total amount of wall time = 298.938572 + 0: The maximum resident set size (KB) = 1473892 Test 160 atmaero_control_p8_rad_micro PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_atmaq -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/regional_atmaq +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_atmaq +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/regional_atmaq Checking test 161 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4862,14 +4862,14 @@ Checking test 161 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 631.476573 - 0: The maximum resident set size (KB) = 951572 + 0: The total amount of wall time = 637.539016 + 0: The maximum resident set size (KB) = 952024 Test 161 regional_atmaq PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_atmaq_faster -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_45663/regional_atmaq_faster +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_atmaq_faster +working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_1850/regional_atmaq_faster Checking test 162 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4885,10 +4885,12 @@ Checking test 162 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 580.118022 - 0: The maximum resident set size (KB) = 951308 + 0: The total amount of wall time = 580.074439 + 0: The maximum resident set size (KB) = 948972 Test 162 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL +Sun 14 May 2023 10:52:13 PM EDT +Elapsed time: 01h:09m:51s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 11f9a39f4bb..027343b79f4 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,21 +1,23 @@ -Thu May 11 13:02:15 UTC 2023 +Sat May 13 21:04:08 UTC 2023 Start Regression test -Compile 001 elapsed time 196 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 002 elapsed time 192 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 337 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 109 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 194 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 417 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 337 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 340 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 269 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 237 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 146 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 012 elapsed time 111 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/control_c48 +Compile 001 elapsed time 192 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 002 elapsed time 196 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 340 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 103 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 191 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 419 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 341 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 339 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 265 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 230 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 155 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 012 elapsed time 235 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 013 elapsed time 132 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 014 elapsed time 113 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/GNU/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_22513/control_c48 Checking test 001 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -54,14 +56,14 @@ Checking test 001 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 684.870166 -0: The maximum resident set size (KB) = 706504 +0: The total amount of wall time = 686.501033 +0: The maximum resident set size (KB) = 706780 Test 001 control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/control_stochy +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/GNU/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_22513/control_stochy Checking test 002 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -72,14 +74,14 @@ Checking test 002 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 650.501559 - 0: The maximum resident set size (KB) = 482796 + 0: The total amount of wall time = 675.404147 + 0: The maximum resident set size (KB) = 478892 Test 002 control_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/control_ras +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/GNU/control_ras +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_22513/control_ras Checking test 003 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -90,14 +92,14 @@ Checking test 003 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 839.568707 - 0: The maximum resident set size (KB) = 486016 + 0: The total amount of wall time = 840.179535 + 0: The maximum resident set size (KB) = 485376 Test 003 control_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/GNU/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_22513/control_p8 Checking test 004 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -144,14 +146,14 @@ Checking test 004 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 925.254014 - 0: The maximum resident set size (KB) = 1235248 + 0: The total amount of wall time = 912.579694 + 0: The maximum resident set size (KB) = 1233656 Test 004 control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/control_flake -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/control_flake +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/GNU/control_flake +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_22513/control_flake Checking test 005 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -162,14 +164,14 @@ Checking test 005 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 1533.973114 - 0: The maximum resident set size (KB) = 524788 + 0: The total amount of wall time = 1549.631172 + 0: The maximum resident set size (KB) = 529568 Test 005 control_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/rap_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_22513/rap_control Checking test 006 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -216,14 +218,14 @@ Checking test 006 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1443.536348 - 0: The maximum resident set size (KB) = 827660 + 0: The total amount of wall time = 1456.489478 + 0: The maximum resident set size (KB) = 829016 Test 006 rap_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/rap_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_22513/rap_decomp Checking test 007 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -270,14 +272,14 @@ Checking test 007 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1487.477511 - 0: The maximum resident set size (KB) = 824544 + 0: The total amount of wall time = 1453.826269 + 0: The maximum resident set size (KB) = 829172 Test 007 rap_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/rap_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_22513/rap_2threads Checking test 008 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -324,14 +326,14 @@ Checking test 008 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1305.363501 - 0: The maximum resident set size (KB) = 898072 + 0: The total amount of wall time = 1339.156383 + 0: The maximum resident set size (KB) = 899516 Test 008 rap_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/rap_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_22513/rap_restart Checking test 009 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -370,14 +372,14 @@ Checking test 009 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 742.246777 - 0: The maximum resident set size (KB) = 548940 + 0: The total amount of wall time = 728.118134 + 0: The maximum resident set size (KB) = 547524 Test 009 rap_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/rap_sfcdiff +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_22513/rap_sfcdiff Checking test 010 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -424,14 +426,14 @@ Checking test 010 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1468.805795 - 0: The maximum resident set size (KB) = 829028 + 0: The total amount of wall time = 1490.799290 + 0: The maximum resident set size (KB) = 824572 Test 010 rap_sfcdiff PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/rap_sfcdiff_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_22513/rap_sfcdiff_decomp Checking test 011 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -478,14 +480,14 @@ Checking test 011 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1421.344790 - 0: The maximum resident set size (KB) = 825144 + 0: The total amount of wall time = 1465.996258 + 0: The maximum resident set size (KB) = 826748 Test 011 rap_sfcdiff_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/rap_sfcdiff_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_22513/rap_sfcdiff_restart Checking test 012 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -524,14 +526,14 @@ Checking test 012 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1100.664144 - 0: The maximum resident set size (KB) = 551716 + 0: The total amount of wall time = 1092.577965 + 0: The maximum resident set size (KB) = 554116 Test 012 rap_sfcdiff_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/hrrr_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_22513/hrrr_control Checking test 013 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -578,14 +580,14 @@ Checking test 013 hrrr_control results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1427.420443 - 0: The maximum resident set size (KB) = 832692 + 0: The total amount of wall time = 1454.677042 + 0: The maximum resident set size (KB) = 827152 Test 013 hrrr_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/hrrr_control_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_22513/hrrr_control_2threads Checking test 014 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -632,14 +634,14 @@ Checking test 014 hrrr_control_2threads results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1508.262290 - 0: The maximum resident set size (KB) = 889100 + 0: The total amount of wall time = 1520.213630 + 0: The maximum resident set size (KB) = 891824 Test 014 hrrr_control_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/hrrr_control_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_22513/hrrr_control_decomp Checking test 015 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -686,28 +688,28 @@ Checking test 015 hrrr_control_decomp results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1430.097926 - 0: The maximum resident set size (KB) = 824088 + 0: The total amount of wall time = 1445.173403 + 0: The maximum resident set size (KB) = 826640 Test 015 hrrr_control_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/hrrr_control_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_22513/hrrr_control_restart Checking test 016 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1053.354498 - 0: The maximum resident set size (KB) = 537268 + 0: The total amount of wall time = 1041.577782 + 0: The maximum resident set size (KB) = 538028 Test 016 hrrr_control_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/rrfs_v1beta +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/GNU/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_22513/rrfs_v1beta Checking test 017 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -754,14 +756,14 @@ Checking test 017 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1441.785918 - 0: The maximum resident set size (KB) = 826556 + 0: The total amount of wall time = 1464.543014 + 0: The maximum resident set size (KB) = 822016 Test 017 rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_22513/rrfs_smoke_conus13km_hrrr_warm Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -770,14 +772,14 @@ Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 804.261854 - 0: The maximum resident set size (KB) = 672556 + 0: The total amount of wall time = 813.334863 + 0: The maximum resident set size (KB) = 672396 Test 018 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_22513/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 019 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -786,14 +788,14 @@ Checking test 019 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 1079.738511 - 0: The maximum resident set size (KB) = 675480 + 0: The total amount of wall time = 1081.501150 + 0: The maximum resident set size (KB) = 670324 Test 019 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/rrfs_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/GNU/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_22513/rrfs_conus13km_hrrr_warm Checking test 020 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -802,14 +804,14 @@ Checking test 020 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 750.803918 - 0: The maximum resident set size (KB) = 647780 + 0: The total amount of wall time = 767.573930 + 0: The maximum resident set size (KB) = 649608 Test 020 rrfs_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_22513/rrfs_smoke_conus13km_radar_tten_warm Checking test 021 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -818,262 +820,262 @@ Checking test 021 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 786.125627 - 0: The maximum resident set size (KB) = 673916 + 0: The total amount of wall time = 807.031953 + 0: The maximum resident set size (KB) = 674556 Test 021 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/GNU/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_22513/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 022 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 400.955493 - 0: The maximum resident set size (KB) = 636532 + 0: The total amount of wall time = 410.710240 + 0: The maximum resident set size (KB) = 636168 Test 022 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/control_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/GNU/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_22513/control_diag_debug Checking test 023 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 122.252638 - 0: The maximum resident set size (KB) = 525584 + 0: The total amount of wall time = 123.439279 + 0: The maximum resident set size (KB) = 523004 Test 023 control_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/regional_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/GNU/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_22513/regional_debug Checking test 024 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 689.147647 - 0: The maximum resident set size (KB) = 593104 + 0: The total amount of wall time = 705.167466 + 0: The maximum resident set size (KB) = 589380 Test 024 regional_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/rap_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/GNU/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_22513/rap_control_debug Checking test 025 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 176.714325 - 0: The maximum resident set size (KB) = 837712 + 0: The total amount of wall time = 175.228621 + 0: The maximum resident set size (KB) = 838744 Test 025 rap_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/hrrr_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/GNU/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_22513/hrrr_control_debug Checking test 026 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 168.041220 - 0: The maximum resident set size (KB) = 834380 + 0: The total amount of wall time = 166.457550 + 0: The maximum resident set size (KB) = 833792 Test 026 hrrr_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/rap_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/GNU/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_22513/rap_diag_debug Checking test 027 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 209.630572 - 0: The maximum resident set size (KB) = 920052 + 0: The total amount of wall time = 208.286519 + 0: The maximum resident set size (KB) = 916960 Test 027 rap_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/GNU/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_22513/rap_noah_sfcdiff_cires_ugwp_debug Checking test 028 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.276247 - 0: The maximum resident set size (KB) = 837960 + 0: The total amount of wall time = 276.635888 + 0: The maximum resident set size (KB) = 841280 Test 028 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/rap_progcld_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/GNU/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_22513/rap_progcld_thompson_debug Checking test 029 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 176.468047 - 0: The maximum resident set size (KB) = 841860 + 0: The total amount of wall time = 175.528967 + 0: The maximum resident set size (KB) = 835656 Test 029 rap_progcld_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/rrfs_v1beta_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/GNU/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_22513/rrfs_v1beta_debug Checking test 030 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 177.687052 - 0: The maximum resident set size (KB) = 836316 + 0: The total amount of wall time = 175.119566 + 0: The maximum resident set size (KB) = 835084 Test 030 rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/control_ras_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/GNU/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_22513/control_ras_debug Checking test 031 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 102.568733 - 0: The maximum resident set size (KB) = 478668 + 0: The total amount of wall time = 101.233808 + 0: The maximum resident set size (KB) = 480556 Test 031 control_ras_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/control_stochy_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/GNU/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_22513/control_stochy_debug Checking test 032 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 121.270170 - 0: The maximum resident set size (KB) = 475136 + 0: The total amount of wall time = 118.139673 + 0: The maximum resident set size (KB) = 474152 Test 032 control_stochy_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/control_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/GNU/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_22513/control_debug_p8 Checking test 033 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 121.461728 - 0: The maximum resident set size (KB) = 1230264 + 0: The total amount of wall time = 119.462847 + 0: The maximum resident set size (KB) = 1225776 Test 033 control_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/GNU/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_22513/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 034 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 621.299332 - 0: The maximum resident set size (KB) = 686060 + 0: The total amount of wall time = 638.828984 + 0: The maximum resident set size (KB) = 668224 Test 034 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/GNU/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_22513/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 035 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 766.733199 - 0: The maximum resident set size (KB) = 686156 + 0: The total amount of wall time = 749.932493 + 0: The maximum resident set size (KB) = 682540 Test 035 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/rrfs_conus13km_hrrr_warm_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/GNU/rrfs_conus13km_hrrr_warm_debugs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_22513/rrfs_conus13km_hrrr_warm_debug Checking test 036 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 560.532712 - 0: The maximum resident set size (KB) = 665912 + 0: The total amount of wall time = 553.595046 + 0: The maximum resident set size (KB) = 657944 Test 036 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/rap_flake_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/rap_flake_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/GNU/rap_flake_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_22513/rap_flake_debug Checking test 037 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 176.328228 - 0: The maximum resident set size (KB) = 844284 + 0: The total amount of wall time = 172.675495 + 0: The maximum resident set size (KB) = 836096 Test 037 rap_flake_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/rap_clm_lake_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/rap_clm_lake_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/GNU/rap_clm_lake_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_22513/rap_clm_lake_debug Checking test 038 rap_clm_lake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 193.325971 - 0: The maximum resident set size (KB) = 839220 + 0: The total amount of wall time = 196.461545 + 0: The maximum resident set size (KB) = 840924 Test 038 rap_clm_lake_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/control_wam_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/GNU/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_22513/control_wam_debug Checking test 039 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 185.348364 - 0: The maximum resident set size (KB) = 190996 + 0: The total amount of wall time = 182.764890 + 0: The maximum resident set size (KB) = 195916 Test 039 control_wam_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/rap_control_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_22513/rap_control_dyn32_phy32 Checking test 040 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1120,14 +1122,14 @@ Checking test 040 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1454.327586 - 0: The maximum resident set size (KB) = 686252 + 0: The total amount of wall time = 1471.886377 + 0: The maximum resident set size (KB) = 684044 Test 040 rap_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/hrrr_control_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_22513/hrrr_control_dyn32_phy32 Checking test 041 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1174,14 +1176,14 @@ Checking test 041 hrrr_control_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 735.886324 - 0: The maximum resident set size (KB) = 681072 + 0: The total amount of wall time = 745.762007 + 0: The maximum resident set size (KB) = 680524 Test 041 hrrr_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/rap_2threads_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_22513/rap_2threads_dyn32_phy32 Checking test 042 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1228,14 +1230,14 @@ Checking test 042 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1360.033599 - 0: The maximum resident set size (KB) = 735580 + 0: The total amount of wall time = 1349.382415 + 0: The maximum resident set size (KB) = 729576 Test 042 rap_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/hrrr_control_2threads_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_22513/hrrr_control_2threads_dyn32_phy32 Checking test 043 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1282,14 +1284,14 @@ Checking test 043 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 749.923967 - 0: The maximum resident set size (KB) = 730624 + 0: The total amount of wall time = 778.494966 + 0: The maximum resident set size (KB) = 723776 Test 043 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/hrrr_control_decomp_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_22513/hrrr_control_decomp_dyn32_phy32 Checking test 044 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1336,14 +1338,14 @@ Checking test 044 hrrr_control_decomp_dyn32_phy32 results .... Comparing 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.501683 - 0: The maximum resident set size (KB) = 682316 + 0: The total amount of wall time = 721.187639 + 0: The maximum resident set size (KB) = 683388 Test 044 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/rap_restart_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_22513/rap_restart_dyn32_phy32 Checking test 045 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1382,28 +1384,28 @@ Checking test 045 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1091.321115 - 0: The maximum resident set size (KB) = 518208 + 0: The total amount of wall time = 1080.886325 + 0: The maximum resident set size (KB) = 510728 Test 045 rap_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/hrrr_control_restart_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_22513/hrrr_control_restart_dyn32_phy32 Checking test 046 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 371.692801 - 0: The maximum resident set size (KB) = 509824 + 0: The total amount of wall time = 368.443508 + 0: The maximum resident set size (KB) = 507552 Test 046 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/rap_control_dyn64_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/GNU/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_22513/rap_control_dyn64_phy32 Checking test 047 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1450,56 +1452,56 @@ Checking test 047 rap_control_dyn64_phy32 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 = 1090.851499 - 0: The maximum resident set size (KB) = 706864 + 0: The total amount of wall time = 1059.133293 + 0: The maximum resident set size (KB) = 704516 Test 047 rap_control_dyn64_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/rap_control_debug_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/GNU/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_22513/rap_control_debug_dyn32_phy32 Checking test 048 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 173.474190 - 0: The maximum resident set size (KB) = 694936 + 0: The total amount of wall time = 171.423692 + 0: The maximum resident set size (KB) = 692432 Test 048 rap_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/hrrr_control_debug_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/GNU/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_22513/hrrr_control_debug_dyn32_phy32 Checking test 049 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 170.211248 - 0: The maximum resident set size (KB) = 697548 + 0: The total amount of wall time = 168.045142 + 0: The maximum resident set size (KB) = 697044 Test 049 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/rap_control_dyn64_phy32_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/GNU/rap_control_debug_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_22513/rap_control_dyn64_phy32_debug Checking test 050 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 205.597260 - 0: The maximum resident set size (KB) = 723004 + 0: The total amount of wall time = 209.076549 + 0: The maximum resident set size (KB) = 712736 Test 050 rap_control_dyn64_phy32_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/cpld_control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/GNU/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_22513/cpld_control_p8 Checking test 051 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1564,14 +1566,14 @@ Checking test 051 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1738.111621 - 0: The maximum resident set size (KB) = 1428136 + 0: The total amount of wall time = 1712.959819 + 0: The maximum resident set size (KB) = 1426976 Test 051 cpld_control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/cpld_control_nowave_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/GNU/cpld_control_c96_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_22513/cpld_control_nowave_noaero_p8 Checking test 052 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1633,14 +1635,14 @@ Checking test 052 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 1225.473787 - 0: The maximum resident set size (KB) = 1330720 + 0: The total amount of wall time = 1241.112659 + 0: The maximum resident set size (KB) = 1330924 Test 052 cpld_control_nowave_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/cpld_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/GNU/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_22513/cpld_debug_p8 Checking test 053 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1693,25 +1695,210 @@ Checking test 053 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 814.932589 - 0: The maximum resident set size (KB) = 1441252 + 0: The total amount of wall time = 833.258406 + 0: The maximum resident set size (KB) = 1435992 Test 053 cpld_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/GNU/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25162/datm_cdeps_control_cfsr -Checking test 054 datm_cdeps_control_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/GNU/cpld_control_pdlib_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_22513/cpld_control_pdlib_p8 +Checking test 054 cpld_control_pdlib_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 1710.696228 + 0: The maximum resident set size (KB) = 1294560 + +Test 054 cpld_control_pdlib_p8 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/GNU/cpld_control_pdlib_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_22513/cpld_restart_pdlib_p8 +Checking test 055 cpld_restart_pdlib_p8 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 794.357456 + 0: The maximum resident set size (KB) = 626632 + +Test 055 cpld_restart_pdlib_p8 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/GNU/cpld_debug_pdlib_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_22513/cpld_debug_pdlib_p8 +Checking test 057 cpld_debug_pdlib_p8 results .... + Comparing sfcf003.tile1.nc .........OK + Comparing sfcf003.tile2.nc .........OK + Comparing sfcf003.tile3.nc .........OK + Comparing sfcf003.tile4.nc .........OK + Comparing sfcf003.tile5.nc .........OK + Comparing sfcf003.tile6.nc .........OK + Comparing atmf003.tile1.nc .........OK + Comparing atmf003.tile2.nc .........OK + Comparing atmf003.tile3.nc .........OK + Comparing atmf003.tile4.nc .........OK + Comparing atmf003.tile5.nc .........OK + Comparing atmf003.tile6.nc .........OK + Comparing RESTART/20210322.090000.coupler.res .........OK + Comparing RESTART/20210322.090000.fv_core.res.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-22-32400.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK + Comparing 20210322.090000.out_pnt.ww3 .........OK + Comparing 20210322.090000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 908.491673 + 0: The maximum resident set size (KB) = 1296196 + +Test 057 cpld_debug_pdlib_p8 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/GNU/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_22513/datm_cdeps_control_cfsr +Checking test 058 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 179.836645 - 0: The maximum resident set size (KB) = 659900 - -Test 054 datm_cdeps_control_cfsr PASS + 0: The total amount of wall time = 169.721392 + 0: The maximum resident set size (KB) = 665604 +Test 058 datm_cdeps_control_cfsr PASS -REGRESSION TEST WAS SUCCESSFUL -Thu May 11 19:21:37 UTC 2023 -Elapsed time: 06h:19m:23s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index c973acda0e4..44d73311b50 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,43 +1,45 @@ -Thu May 11 12:48:16 UTC 2023 +Sat May 13 19:41:29 UTC 2023 Start Regression test -Compile 001 elapsed time 634 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 646 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 603 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 238 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 211 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 559 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 560 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 736 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 575 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 010 elapsed time 534 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 503 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 481 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 617 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 225 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 015 elapsed time 161 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 491 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 500 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 164 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 167 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 570 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 021 elapsed time 196 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 669 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 590 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 024 elapsed time 187 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 107 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 176 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 50 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 528 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 552 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 551 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 525 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 498 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 033 elapsed time 171 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 034 elapsed time 573 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8_mixedmode -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/cpld_control_p8_mixedmode +Compile 001 elapsed time 640 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 645 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 587 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 224 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 204 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 553 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 551 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 733 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 867 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 204 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 011 elapsed time 578 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 012 elapsed time 530 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 521 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 475 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 632 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 221 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 017 elapsed time 152 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 490 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 019 elapsed time 501 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 020 elapsed time 167 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 021 elapsed time 169 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 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 023 elapsed time 190 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 024 elapsed time 675 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 025 elapsed time 567 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 026 elapsed time 173 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 105 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 028 elapsed time 180 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 029 elapsed time 50 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 515 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 562 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 539 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 033 elapsed time 521 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 034 elapsed time 500 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 035 elapsed time 171 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 036 elapsed time 582 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_p8_mixedmode +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -102,14 +104,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 309.521039 - 0: The maximum resident set size (KB) = 3138912 + 0: The total amount of wall time = 308.607353 + 0: The maximum resident set size (KB) = 3131488 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_gfsv17 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/cpld_control_gfsv17 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_gfsv17 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -173,14 +175,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 225.750576 - 0: The maximum resident set size (KB) = 1723136 + 0: The total amount of wall time = 227.052885 + 0: The maximum resident set size (KB) = 1710348 Test 002 cpld_control_gfsv17 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/cpld_control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -245,14 +247,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 341.419667 - 0: The maximum resident set size (KB) = 3164920 + 0: The total amount of wall time = 342.047268 + 0: The maximum resident set size (KB) = 3160100 Test 003 cpld_control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/cpld_restart_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -305,14 +307,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 199.715554 - 0: The maximum resident set size (KB) = 3044588 + 0: The total amount of wall time = 193.608413 + 0: The maximum resident set size (KB) = 3044000 Test 004 cpld_restart_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/cpld_control_qr_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -377,14 +379,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 346.336978 - 0: The maximum resident set size (KB) = 3122744 + 0: The total amount of wall time = 345.842509 + 0: The maximum resident set size (KB) = 3176580 Test 005 cpld_control_qr_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/cpld_restart_qr_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -437,14 +439,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 202.152301 - 0: The maximum resident set size (KB) = 3054444 + 0: The total amount of wall time = 199.633552 + 0: The maximum resident set size (KB) = 3053988 Test 006 cpld_restart_qr_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/cpld_2threads_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -497,14 +499,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 349.219387 - 0: The maximum resident set size (KB) = 3497980 + 0: The total amount of wall time = 349.889797 + 0: The maximum resident set size (KB) = 3486672 Test 007 cpld_2threads_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/cpld_decomp_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -557,14 +559,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 341.434881 - 0: The maximum resident set size (KB) = 3144492 + 0: The total amount of wall time = 345.469808 + 0: The maximum resident set size (KB) = 3121004 Test 008 cpld_decomp_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/cpld_mpi_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -617,14 +619,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 282.215373 - 0: The maximum resident set size (KB) = 3002292 + 0: The total amount of wall time = 281.915900 + 0: The maximum resident set size (KB) = 3021524 Test 009 cpld_mpi_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_ciceC_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/cpld_control_ciceC_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_ciceC_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -689,14 +691,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 340.429672 - 0: The maximum resident set size (KB) = 3148216 + 0: The total amount of wall time = 348.043257 + 0: The maximum resident set size (KB) = 3179672 Test 010 cpld_control_ciceC_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/cpld_control_c192_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/cpld_control_c192_p8 Checking test 011 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -749,14 +751,14 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 598.468737 - 0: The maximum resident set size (KB) = 3240772 + 0: The total amount of wall time = 591.849674 + 0: The maximum resident set size (KB) = 3239980 Test 011 cpld_control_c192_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/cpld_restart_c192_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/cpld_restart_c192_p8 Checking test 012 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -809,14 +811,14 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 382.099377 - 0: The maximum resident set size (KB) = 3137560 + 0: The total amount of wall time = 382.400610 + 0: The maximum resident set size (KB) = 3136020 Test 012 cpld_restart_c192_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/cpld_bmark_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/cpld_bmark_p8 Checking test 013 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -864,14 +866,14 @@ Checking test 013 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 804.295467 - 0: The maximum resident set size (KB) = 4020352 + 0: The total amount of wall time = 757.657171 + 0: The maximum resident set size (KB) = 4022520 Test 013 cpld_bmark_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/cpld_restart_bmark_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/cpld_restart_bmark_p8 Checking test 014 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -919,14 +921,14 @@ Checking test 014 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 452.264457 - 0: The maximum resident set size (KB) = 3962820 + 0: The total amount of wall time = 454.734148 + 0: The maximum resident set size (KB) = 3953992 Test 014 cpld_restart_bmark_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/cpld_control_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/cpld_control_noaero_p8 Checking test 015 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -990,14 +992,14 @@ Checking test 015 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 265.538979 - 0: The maximum resident set size (KB) = 1712996 + 0: The total amount of wall time = 265.011886 + 0: The maximum resident set size (KB) = 1689420 Test 015 cpld_control_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/cpld_control_nowave_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_c96_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/cpld_control_nowave_noaero_p8 Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1059,14 +1061,14 @@ Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 261.304673 - 0: The maximum resident set size (KB) = 1757796 + 0: The total amount of wall time = 263.589694 + 0: The maximum resident set size (KB) = 1714164 Test 016 cpld_control_nowave_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/cpld_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/cpld_debug_p8 Checking test 017 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1119,14 +1121,14 @@ Checking test 017 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 518.307589 - 0: The maximum resident set size (KB) = 3226744 + 0: The total amount of wall time = 519.145800 + 0: The maximum resident set size (KB) = 3209304 Test 017 cpld_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_debug_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/cpld_debug_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_debug_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/cpld_debug_noaero_p8 Checking test 018 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1178,14 +1180,14 @@ Checking test 018 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 358.692848 - 0: The maximum resident set size (KB) = 1741628 + 0: The total amount of wall time = 361.590689 + 0: The maximum resident set size (KB) = 1700972 Test 018 cpld_debug_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_noaero_p8_agrid -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/cpld_control_noaero_p8_agrid +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_noaero_p8_agrid +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/cpld_control_noaero_p8_agrid Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1247,14 +1249,14 @@ Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 267.547426 - 0: The maximum resident set size (KB) = 1753120 + 0: The total amount of wall time = 280.168575 + 0: The maximum resident set size (KB) = 1750900 Test 019 cpld_control_noaero_p8_agrid PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/cpld_control_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_c48 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/cpld_control_c48 Checking test 020 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1304,14 +1306,14 @@ Checking test 020 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 584.102031 - 0: The maximum resident set size (KB) = 2803868 + 0: The total amount of wall time = 584.388790 + 0: The maximum resident set size (KB) = 2801428 Test 020 cpld_control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/cpld_warmstart_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_warmstart_c48 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/cpld_warmstart_c48 Checking test 021 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1361,14 +1363,14 @@ Checking test 021 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 155.598223 - 0: The maximum resident set size (KB) = 2807936 + 0: The total amount of wall time = 157.970437 + 0: The maximum resident set size (KB) = 2796720 Test 021 cpld_warmstart_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/cpld_restart_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_warmstart_c48 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/cpld_restart_c48 Checking test 022 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1418,14 +1420,14 @@ Checking test 022 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 81.895077 - 0: The maximum resident set size (KB) = 2244552 + 0: The total amount of wall time = 80.743629 + 0: The maximum resident set size (KB) = 2230500 Test 022 cpld_restart_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/cpld_control_p8_faster +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_p8_faster +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/cpld_control_p8_faster Checking test 023 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1490,15 +1492,275 @@ Checking test 023 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 328.632333 - 0: The maximum resident set size (KB) = 3162392 + 0: The total amount of wall time = 318.950148 + 0: The maximum resident set size (KB) = 3172704 Test 023 cpld_control_p8_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_flake -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_flake -Checking test 024 control_flake results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_pdlib_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/cpld_control_pdlib_p8 +Checking test 024 cpld_control_pdlib_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 1188.583606 + 0: The maximum resident set size (KB) = 1748064 + +Test 024 cpld_control_pdlib_p8 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_pdlib_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/cpld_restart_pdlib_p8 +Checking test 025 cpld_restart_pdlib_p8 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 564.200942 + 0: The maximum resident set size (KB) = 1007172 + +Test 025 cpld_restart_pdlib_p8 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_pdlib_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/cpld_mpi_pdlib_p8 +Checking test 026 cpld_mpi_pdlib_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 1081.005017 + 0: The maximum resident set size (KB) = 1647896 + +Test 026 cpld_mpi_pdlib_p8 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_debug_pdlib_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/cpld_debug_pdlib_p8 +Checking test 027 cpld_debug_pdlib_p8 results .... + Comparing sfcf003.tile1.nc .........OK + Comparing sfcf003.tile2.nc .........OK + Comparing sfcf003.tile3.nc .........OK + Comparing sfcf003.tile4.nc .........OK + Comparing sfcf003.tile5.nc .........OK + Comparing sfcf003.tile6.nc .........OK + Comparing atmf003.tile1.nc .........OK + Comparing atmf003.tile2.nc .........OK + Comparing atmf003.tile3.nc .........OK + Comparing atmf003.tile4.nc .........OK + Comparing atmf003.tile5.nc .........OK + Comparing atmf003.tile6.nc .........OK + Comparing RESTART/20210322.090000.coupler.res .........OK + Comparing RESTART/20210322.090000.fv_core.res.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-22-32400.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK + Comparing 20210322.090000.out_pnt.ww3 .........OK + Comparing 20210322.090000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 1363.514135 + 0: The maximum resident set size (KB) = 1664040 + +Test 027 cpld_debug_pdlib_p8 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_flake +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/control_flake +Checking test 028 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1508,15 +1770,15 @@ Checking test 024 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 186.762183 - 0: The maximum resident set size (KB) = 677816 + 0: The total amount of wall time = 187.540746 + 0: The maximum resident set size (KB) = 684368 -Test 024 control_flake PASS +Test 028 control_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_CubedSphereGrid -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_CubedSphereGrid -Checking test 025 control_CubedSphereGrid results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_CubedSphereGrid +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/control_CubedSphereGrid +Checking test 029 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1542,29 +1804,29 @@ Checking test 025 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 130.451946 - 0: The maximum resident set size (KB) = 598768 + 0: The total amount of wall time = 129.232754 + 0: The maximum resident set size (KB) = 627464 -Test 025 control_CubedSphereGrid PASS +Test 029 control_CubedSphereGrid PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_CubedSphereGrid_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_CubedSphereGrid_parallel -Checking test 026 control_CubedSphereGrid_parallel results .... - Comparing sfcf000.nc .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_CubedSphereGrid_parallel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/control_CubedSphereGrid_parallel +Checking test 030 control_CubedSphereGrid_parallel results .... + Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc ............ALT CHECK......OK - 0: The total amount of wall time = 127.426279 - 0: The maximum resident set size (KB) = 624304 + 0: The total amount of wall time = 129.878182 + 0: The maximum resident set size (KB) = 626892 -Test 026 control_CubedSphereGrid_parallel PASS +Test 030 control_CubedSphereGrid_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_latlon -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_latlon -Checking test 027 control_latlon results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_latlon +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/control_latlon +Checking test 031 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1574,15 +1836,15 @@ Checking test 027 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 132.725882 - 0: The maximum resident set size (KB) = 625988 + 0: The total amount of wall time = 135.424961 + 0: The maximum resident set size (KB) = 627404 -Test 027 control_latlon PASS +Test 031 control_latlon PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_wrtGauss_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_wrtGauss_netcdf_parallel -Checking test 028 control_wrtGauss_netcdf_parallel results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_wrtGauss_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/control_wrtGauss_netcdf_parallel +Checking test 032 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1592,15 +1854,15 @@ Checking test 028 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.911104 - 0: The maximum resident set size (KB) = 623144 + 0: The total amount of wall time = 138.113636 + 0: The maximum resident set size (KB) = 610168 -Test 028 control_wrtGauss_netcdf_parallel PASS +Test 032 control_wrtGauss_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_c48 -Checking test 029 control_c48 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/control_c48 +Checking test 033 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1638,15 +1900,15 @@ Checking test 029 control_c48 results .... Comparing 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.811784 -0: The maximum resident set size (KB) = 825016 +0: The total amount of wall time = 369.548576 +0: The maximum resident set size (KB) = 820128 -Test 029 control_c48 PASS +Test 033 control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_c192 -Checking test 030 control_c192 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_c192 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/control_c192 +Checking test 034 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1656,15 +1918,15 @@ Checking test 030 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 528.856857 - 0: The maximum resident set size (KB) = 762508 + 0: The total amount of wall time = 524.668187 + 0: The maximum resident set size (KB) = 765728 -Test 030 control_c192 PASS +Test 034 control_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_c384 -Checking test 031 control_c384 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_c384 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/control_c384 +Checking test 035 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1674,15 +1936,15 @@ Checking test 031 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 523.762877 - 0: The maximum resident set size (KB) = 1270216 + 0: The total amount of wall time = 522.694241 + 0: The maximum resident set size (KB) = 1266228 -Test 031 control_c384 PASS +Test 035 control_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_c384gdas -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_c384gdas -Checking test 032 control_c384gdas results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_c384gdas +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/control_c384gdas +Checking test 036 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -1724,15 +1986,15 @@ Checking test 032 control_c384gdas results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 455.965386 - 0: The maximum resident set size (KB) = 1372656 + 0: The total amount of wall time = 453.839242 + 0: The maximum resident set size (KB) = 1374104 -Test 032 control_c384gdas PASS +Test 036 control_c384gdas PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_stochy -Checking test 033 control_stochy results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/control_stochy +Checking test 037 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1742,29 +2004,29 @@ Checking test 033 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 88.729894 - 0: The maximum resident set size (KB) = 628040 + 0: The total amount of wall time = 88.510149 + 0: The maximum resident set size (KB) = 637080 -Test 033 control_stochy PASS +Test 037 control_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_stochy_restart -Checking test 034 control_stochy_restart results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/control_stochy_restart +Checking test 038 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 48.898794 - 0: The maximum resident set size (KB) = 484508 + 0: The total amount of wall time = 47.711622 + 0: The maximum resident set size (KB) = 484908 -Test 034 control_stochy_restart PASS +Test 038 control_stochy_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_lndp -Checking test 035 control_lndp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_lndp +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/control_lndp +Checking test 039 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1774,15 +2036,15 @@ Checking test 035 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 81.972383 - 0: The maximum resident set size (KB) = 627484 + 0: The total amount of wall time = 82.078559 + 0: The maximum resident set size (KB) = 622908 -Test 035 control_lndp PASS +Test 039 control_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_iovr4 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_iovr4 -Checking test 036 control_iovr4 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_iovr4 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/control_iovr4 +Checking test 040 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1796,15 +2058,15 @@ Checking test 036 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 137.050149 - 0: The maximum resident set size (KB) = 629556 + 0: The total amount of wall time = 136.222039 + 0: The maximum resident set size (KB) = 629696 -Test 036 control_iovr4 PASS +Test 040 control_iovr4 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_iovr5 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_iovr5 -Checking test 037 control_iovr5 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_iovr5 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/control_iovr5 +Checking test 041 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1818,15 +2080,15 @@ Checking test 037 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.558261 - 0: The maximum resident set size (KB) = 627816 + 0: The total amount of wall time = 134.167982 + 0: The maximum resident set size (KB) = 622536 -Test 037 control_iovr5 PASS +Test 041 control_iovr5 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_p8 -Checking test 038 control_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/control_p8 +Checking test 042 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1872,15 +2134,15 @@ Checking test 038 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 173.479439 - 0: The maximum resident set size (KB) = 1594508 + 0: The total amount of wall time = 170.638648 + 0: The maximum resident set size (KB) = 1582196 -Test 038 control_p8 PASS +Test 042 control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_restart_p8 -Checking test 039 control_restart_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/control_restart_p8 +Checking test 043 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1918,15 +2180,15 @@ Checking test 039 control_restart_p8 results .... Comparing 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.137317 - 0: The maximum resident set size (KB) = 875832 + 0: The total amount of wall time = 88.137469 + 0: The maximum resident set size (KB) = 870340 -Test 039 control_restart_p8 PASS +Test 043 control_restart_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_qr_p8 -Checking test 040 control_qr_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/control_qr_p8 +Checking test 044 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1972,15 +2234,15 @@ Checking test 040 control_qr_p8 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.445268 - 0: The maximum resident set size (KB) = 1599012 + 0: The total amount of wall time = 167.796366 + 0: The maximum resident set size (KB) = 1597748 -Test 040 control_qr_p8 PASS +Test 044 control_qr_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_restart_qr_p8 -Checking test 041 control_restart_qr_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/control_restart_qr_p8 +Checking test 045 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2018,15 +2280,15 @@ Checking test 041 control_restart_qr_p8 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.661888 - 0: The maximum resident set size (KB) = 860636 + 0: The total amount of wall time = 89.704956 + 0: The maximum resident set size (KB) = 852808 -Test 041 control_restart_qr_p8 PASS +Test 045 control_restart_qr_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_decomp_p8 -Checking test 042 control_decomp_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/control_decomp_p8 +Checking test 046 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2068,15 +2330,15 @@ Checking test 042 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 179.111692 - 0: The maximum resident set size (KB) = 1560064 + 0: The total amount of wall time = 173.574312 + 0: The maximum resident set size (KB) = 1572248 -Test 042 control_decomp_p8 PASS +Test 046 control_decomp_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_2threads_p8 -Checking test 043 control_2threads_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/control_2threads_p8 +Checking test 047 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2118,15 +2380,15 @@ Checking test 043 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 158.536148 - 0: The maximum resident set size (KB) = 1686604 + 0: The total amount of wall time = 156.923711 + 0: The maximum resident set size (KB) = 1682780 -Test 043 control_2threads_p8 PASS +Test 047 control_2threads_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_p8_lndp -Checking test 044 control_p8_lndp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_p8_lndp +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/control_p8_lndp +Checking test 048 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2144,15 +2406,15 @@ Checking test 044 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 314.932134 - 0: The maximum resident set size (KB) = 1597452 + 0: The total amount of wall time = 314.514700 + 0: The maximum resident set size (KB) = 1597916 -Test 044 control_p8_lndp PASS +Test 048 control_p8_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_p8_rrtmgp -Checking test 045 control_p8_rrtmgp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_p8_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/control_p8_rrtmgp +Checking test 049 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2198,15 +2460,15 @@ Checking test 045 control_p8_rrtmgp results .... Comparing 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.601613 - 0: The maximum resident set size (KB) = 1676452 + 0: The total amount of wall time = 224.864292 + 0: The maximum resident set size (KB) = 1664868 -Test 045 control_p8_rrtmgp PASS +Test 049 control_p8_rrtmgp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8_mynn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_p8_mynn -Checking test 046 control_p8_mynn results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_p8_mynn +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/control_p8_mynn +Checking test 050 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2252,15 +2514,15 @@ Checking test 046 control_p8_mynn results .... Comparing 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.338853 - 0: The maximum resident set size (KB) = 1599952 + 0: The total amount of wall time = 172.674470 + 0: The maximum resident set size (KB) = 1589248 -Test 046 control_p8_mynn PASS +Test 050 control_p8_mynn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/merra2_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/merra2_thompson -Checking test 047 merra2_thompson results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/merra2_thompson +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/merra2_thompson +Checking test 051 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2306,15 +2568,15 @@ Checking test 047 merra2_thompson results .... Comparing 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.365716 - 0: The maximum resident set size (KB) = 1602052 + 0: The total amount of wall time = 193.886603 + 0: The maximum resident set size (KB) = 1605388 -Test 047 merra2_thompson PASS +Test 051 merra2_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/regional_control -Checking test 048 regional_control results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/regional_control +Checking test 052 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2324,29 +2586,29 @@ Checking test 048 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 297.794181 - 0: The maximum resident set size (KB) = 869788 + 0: The total amount of wall time = 300.715354 + 0: The maximum resident set size (KB) = 862600 -Test 048 regional_control PASS +Test 052 regional_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/regional_restart -Checking test 049 regional_restart results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/regional_restart +Checking test 053 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 152.590298 - 0: The maximum resident set size (KB) = 866248 + 0: The total amount of wall time = 150.611735 + 0: The maximum resident set size (KB) = 863012 -Test 049 regional_restart PASS +Test 053 regional_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/regional_control_qr -Checking test 050 regional_control_qr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/regional_control_qr +Checking test 054 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2356,29 +2618,29 @@ Checking test 050 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 298.349111 - 0: The maximum resident set size (KB) = 863208 + 0: The total amount of wall time = 298.834996 + 0: The maximum resident set size (KB) = 864096 -Test 050 regional_control_qr PASS +Test 054 regional_control_qr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/regional_restart_qr -Checking test 051 regional_restart_qr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/regional_restart_qr +Checking test 055 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 152.789557 - 0: The maximum resident set size (KB) = 868904 + 0: The total amount of wall time = 150.682883 + 0: The maximum resident set size (KB) = 859244 -Test 051 regional_restart_qr PASS +Test 055 regional_restart_qr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/regional_decomp -Checking test 052 regional_decomp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/regional_decomp +Checking test 056 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2388,15 +2650,15 @@ Checking test 052 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 316.926464 - 0: The maximum resident set size (KB) = 849908 + 0: The total amount of wall time = 313.279188 + 0: The maximum resident set size (KB) = 857824 -Test 052 regional_decomp PASS +Test 056 regional_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/regional_2threads -Checking test 053 regional_2threads results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/regional_2threads +Checking test 057 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2406,44 +2668,44 @@ Checking test 053 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 181.595347 - 0: The maximum resident set size (KB) = 846304 + 0: The total amount of wall time = 180.350789 + 0: The maximum resident set size (KB) = 845208 -Test 053 regional_2threads PASS +Test 057 regional_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_noquilt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/regional_noquilt -Checking test 054 regional_noquilt results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_noquilt +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/regional_noquilt +Checking test 058 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 321.636831 - 0: The maximum resident set size (KB) = 847176 + 0: The total amount of wall time = 317.500379 + 0: The maximum resident set size (KB) = 853936 -Test 054 regional_noquilt PASS +Test 058 regional_noquilt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/regional_netcdf_parallel -Checking test 055 regional_netcdf_parallel results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/regional_netcdf_parallel +Checking test 059 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 294.302093 - 0: The maximum resident set size (KB) = 860652 + 0: The total amount of wall time = 288.842299 + 0: The maximum resident set size (KB) = 862428 -Test 055 regional_netcdf_parallel PASS +Test 059 regional_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/regional_2dwrtdecomp -Checking test 056 regional_2dwrtdecomp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/regional_2dwrtdecomp +Checking test 060 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2453,15 +2715,15 @@ Checking test 056 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 298.162868 - 0: The maximum resident set size (KB) = 865912 + 0: The total amount of wall time = 298.742965 + 0: The maximum resident set size (KB) = 865520 -Test 056 regional_2dwrtdecomp PASS +Test 060 regional_2dwrtdecomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/fv3_regional_wofs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/regional_wofs -Checking test 057 regional_wofs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/fv3_regional_wofs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/regional_wofs +Checking test 061 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2471,693 +2733,141 @@ Checking test 057 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 374.986784 - 0: The maximum resident set size (KB) = 632272 - -Test 057 regional_wofs PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_control -Checking test 058 rap_control results .... - Comparing sfcf000.nc ............MISSING baseline - Comparing sfcf021.nc ............MISSING baseline - Comparing sfcf024.nc ............MISSING baseline - Comparing atmf000.nc ............MISSING baseline - Comparing atmf021.nc ............MISSING baseline - Comparing atmf024.nc ............MISSING baseline - Comparing GFSFLX.GrbF00 ............MISSING baseline - Comparing GFSFLX.GrbF21 ............MISSING baseline - Comparing GFSFLX.GrbF24 ............MISSING baseline - Comparing GFSPRS.GrbF00 ............MISSING baseline - Comparing GFSPRS.GrbF21 ............MISSING baseline - Comparing GFSPRS.GrbF24 ............MISSING baseline - Comparing RESTART/20210323.060000.coupler.res ............MISSING baseline - Comparing RESTART/20210323.060000.fv_core.res.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............MISSING baseline - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............MISSING baseline - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............MISSING baseline - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............MISSING baseline - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............MISSING baseline - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............MISSING baseline - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............MISSING baseline - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............MISSING baseline - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............MISSING baseline - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............MISSING baseline - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............MISSING baseline - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............MISSING baseline - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............MISSING baseline - - 0: The total amount of wall time = 460.870467 - 0: The maximum resident set size (KB) = 1048092 - -Test 058 rap_control FAIL Tries: 2 - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_spp_sppt_shum_skeb -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/regional_spp_sppt_shum_skeb -Checking test 059 regional_spp_sppt_shum_skeb results .... - Comparing dynf000.nc ............MISSING baseline - Comparing dynf001.nc ............MISSING baseline - Comparing phyf000.nc ............MISSING baseline - Comparing phyf001.nc ............MISSING baseline - Comparing PRSLEV.GrbF00 ............MISSING baseline - Comparing PRSLEV.GrbF01 ............MISSING baseline - Comparing NATLEV.GrbF00 ............MISSING baseline - Comparing NATLEV.GrbF01 ............MISSING baseline - - 0: The total amount of wall time = 231.765169 - 0: The maximum resident set size (KB) = 1181664 - -Test 059 regional_spp_sppt_shum_skeb FAIL Tries: 2 - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_decomp -Checking test 060 rap_decomp results .... - Comparing sfcf000.nc ............MISSING baseline - Comparing sfcf021.nc ............MISSING baseline - Comparing sfcf024.nc ............MISSING baseline - Comparing atmf000.nc ............MISSING baseline - Comparing atmf021.nc ............MISSING baseline - Comparing atmf024.nc ............MISSING baseline - Comparing GFSFLX.GrbF00 ............MISSING baseline - Comparing GFSFLX.GrbF21 ............MISSING baseline - Comparing GFSFLX.GrbF24 ............MISSING baseline - Comparing GFSPRS.GrbF00 ............MISSING baseline - Comparing GFSPRS.GrbF21 ............MISSING baseline - Comparing GFSPRS.GrbF24 ............MISSING baseline - Comparing RESTART/20210323.060000.coupler.res ............MISSING baseline - Comparing RESTART/20210323.060000.fv_core.res.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............MISSING baseline - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............MISSING baseline - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............MISSING baseline - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............MISSING baseline - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............MISSING baseline - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............MISSING baseline - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............MISSING baseline - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............MISSING baseline - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............MISSING baseline - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............MISSING baseline - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............MISSING baseline - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............MISSING baseline - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............MISSING baseline - - 0: The total amount of wall time = 481.737377 - 0: The maximum resident set size (KB) = 992032 - -Test 060 rap_decomp FAIL Tries: 2 - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_2threads -Checking test 061 rap_2threads results .... - Comparing sfcf000.nc ............MISSING baseline - Comparing sfcf021.nc ............MISSING baseline - Comparing sfcf024.nc ............MISSING baseline - Comparing atmf000.nc ............MISSING baseline - Comparing atmf021.nc ............MISSING baseline - Comparing atmf024.nc ............MISSING baseline - Comparing GFSFLX.GrbF00 ............MISSING baseline - Comparing GFSFLX.GrbF21 ............MISSING baseline - Comparing GFSFLX.GrbF24 ............MISSING baseline - Comparing GFSPRS.GrbF00 ............MISSING baseline - Comparing GFSPRS.GrbF21 ............MISSING baseline - Comparing GFSPRS.GrbF24 ............MISSING baseline - Comparing RESTART/20210323.060000.coupler.res ............MISSING baseline - Comparing RESTART/20210323.060000.fv_core.res.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............MISSING baseline - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............MISSING baseline - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............MISSING baseline - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............MISSING baseline - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............MISSING baseline - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............MISSING baseline - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............MISSING baseline - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............MISSING baseline - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............MISSING baseline - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............MISSING baseline - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............MISSING baseline - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............MISSING baseline - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............MISSING baseline - - 0: The total amount of wall time = 437.879086 - 0: The maximum resident set size (KB) = 1101756 - -Test 061 rap_2threads FAIL Tries: 2 - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_sfcdiff -Checking test 063 rap_sfcdiff results .... - Comparing sfcf000.nc ............MISSING baseline - Comparing sfcf009.nc ............MISSING baseline - Comparing sfcf012.nc ............MISSING baseline - Comparing atmf000.nc ............MISSING baseline - Comparing atmf009.nc ............MISSING baseline - Comparing atmf012.nc ............MISSING baseline - Comparing GFSFLX.GrbF00 ............MISSING baseline - Comparing GFSFLX.GrbF09 ............MISSING baseline - Comparing GFSFLX.GrbF12 ............MISSING baseline - Comparing GFSPRS.GrbF00 ............MISSING baseline - Comparing GFSPRS.GrbF09 ............MISSING baseline - Comparing GFSPRS.GrbF12 ............MISSING baseline - Comparing RESTART/20210323.060000.coupler.res ............MISSING baseline - Comparing RESTART/20210323.060000.fv_core.res.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............MISSING baseline - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............MISSING baseline - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............MISSING baseline - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............MISSING baseline - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............MISSING baseline - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............MISSING baseline - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............MISSING baseline - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............MISSING baseline - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............MISSING baseline - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............MISSING baseline - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............MISSING baseline - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............MISSING baseline - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............MISSING baseline - - 0: The total amount of wall time = 460.389691 - 0: The maximum resident set size (KB) = 1045744 - -Test 063 rap_sfcdiff FAIL Tries: 2 - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_sfcdiff_decomp -Checking test 064 rap_sfcdiff_decomp results .... - Comparing sfcf000.nc ............MISSING baseline - Comparing sfcf009.nc ............MISSING baseline - Comparing sfcf012.nc ............MISSING baseline - Comparing atmf000.nc ............MISSING baseline - Comparing atmf009.nc ............MISSING baseline - Comparing atmf012.nc ............MISSING baseline - Comparing GFSFLX.GrbF00 ............MISSING baseline - Comparing GFSFLX.GrbF09 ............MISSING baseline - Comparing GFSFLX.GrbF12 ............MISSING baseline - Comparing GFSPRS.GrbF00 ............MISSING baseline - Comparing GFSPRS.GrbF09 ............MISSING baseline - Comparing GFSPRS.GrbF12 ............MISSING baseline - Comparing RESTART/20210323.060000.coupler.res ............MISSING baseline - Comparing RESTART/20210323.060000.fv_core.res.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............MISSING baseline - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............MISSING baseline - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............MISSING baseline - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............MISSING baseline - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............MISSING baseline - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............MISSING baseline - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............MISSING baseline - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............MISSING baseline - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............MISSING baseline - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............MISSING baseline - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............MISSING baseline - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............MISSING baseline - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............MISSING baseline - - 0: The total amount of wall time = 485.026699 - 0: The maximum resident set size (KB) = 997320 - -Test 064 rap_sfcdiff_decomp FAIL Tries: 2 - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/hrrr_control -Checking test 066 hrrr_control results .... - Comparing sfcf000.nc ............MISSING baseline - Comparing sfcf009.nc ............MISSING baseline - Comparing sfcf012.nc ............MISSING baseline - Comparing atmf000.nc ............MISSING baseline - Comparing atmf009.nc ............MISSING baseline - Comparing atmf012.nc ............MISSING baseline - Comparing GFSFLX.GrbF00 ............MISSING baseline - Comparing GFSFLX.GrbF09 ............MISSING baseline - Comparing GFSFLX.GrbF12 ............MISSING baseline - Comparing GFSPRS.GrbF00 ............MISSING baseline - Comparing GFSPRS.GrbF09 ............MISSING baseline - Comparing GFSPRS.GrbF12 ............MISSING baseline - Comparing RESTART/20210322.120000.coupler.res ............MISSING baseline - Comparing RESTART/20210322.120000.fv_core.res.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............MISSING baseline - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............MISSING baseline - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............MISSING baseline - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............MISSING baseline - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............MISSING baseline - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............MISSING baseline - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............MISSING baseline - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............MISSING baseline - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............MISSING baseline - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............MISSING baseline - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............MISSING baseline - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............MISSING baseline - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............MISSING baseline - - 0: The total amount of wall time = 428.426870 - 0: The maximum resident set size (KB) = 1045188 - -Test 066 hrrr_control FAIL Tries: 2 - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/hrrr_control_decomp -Checking test 067 hrrr_control_decomp results .... - Comparing sfcf000.nc ............MISSING baseline - Comparing sfcf009.nc ............MISSING baseline - Comparing sfcf012.nc ............MISSING baseline - Comparing atmf000.nc ............MISSING baseline - Comparing atmf009.nc ............MISSING baseline - Comparing atmf012.nc ............MISSING baseline - Comparing GFSFLX.GrbF00 ............MISSING baseline - Comparing GFSFLX.GrbF09 ............MISSING baseline - Comparing GFSFLX.GrbF12 ............MISSING baseline - Comparing GFSPRS.GrbF00 ............MISSING baseline - Comparing GFSPRS.GrbF09 ............MISSING baseline - Comparing GFSPRS.GrbF12 ............MISSING baseline - Comparing RESTART/20210322.120000.coupler.res ............MISSING baseline - Comparing RESTART/20210322.120000.fv_core.res.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............MISSING baseline - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............MISSING baseline - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............MISSING baseline - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............MISSING baseline - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............MISSING baseline - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............MISSING baseline - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............MISSING baseline - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............MISSING baseline - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............MISSING baseline - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............MISSING baseline - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............MISSING baseline - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............MISSING baseline - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............MISSING baseline - - 0: The total amount of wall time = 448.792812 - 0: The maximum resident set size (KB) = 998780 - -Test 067 hrrr_control_decomp FAIL Tries: 2 - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/hrrr_control_2threads -Checking test 068 hrrr_control_2threads results .... - Comparing sfcf000.nc ............MISSING baseline - Comparing sfcf009.nc ............MISSING baseline - Comparing sfcf012.nc ............MISSING baseline - Comparing atmf000.nc ............MISSING baseline - Comparing atmf009.nc ............MISSING baseline - Comparing atmf012.nc ............MISSING baseline - Comparing GFSFLX.GrbF00 ............MISSING baseline - Comparing GFSFLX.GrbF09 ............MISSING baseline - Comparing GFSFLX.GrbF12 ............MISSING baseline - Comparing GFSPRS.GrbF00 ............MISSING baseline - Comparing GFSPRS.GrbF09 ............MISSING baseline - Comparing GFSPRS.GrbF12 ............MISSING baseline - Comparing RESTART/20210322.120000.coupler.res ............MISSING baseline - Comparing RESTART/20210322.120000.fv_core.res.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............MISSING baseline - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............MISSING baseline - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............MISSING baseline - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............MISSING baseline - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............MISSING baseline - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............MISSING baseline - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............MISSING baseline - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............MISSING baseline - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............MISSING baseline - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............MISSING baseline - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............MISSING baseline - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............MISSING baseline - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............MISSING baseline - - 0: The total amount of wall time = 395.896439 - 0: The maximum resident set size (KB) = 1076848 - -Test 068 hrrr_control_2threads FAIL Tries: 2 - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rrfs_v1beta -Checking test 070 rrfs_v1beta results .... - Comparing sfcf000.nc ............MISSING baseline - Comparing sfcf009.nc ............MISSING baseline - Comparing sfcf012.nc ............MISSING baseline - Comparing atmf000.nc ............MISSING baseline - Comparing atmf009.nc ............MISSING baseline - Comparing atmf012.nc ............MISSING baseline - Comparing GFSFLX.GrbF00 ............MISSING baseline - Comparing GFSFLX.GrbF09 ............MISSING baseline - Comparing GFSFLX.GrbF12 ............MISSING baseline - Comparing GFSPRS.GrbF00 ............MISSING baseline - Comparing GFSPRS.GrbF09 ............MISSING baseline - Comparing GFSPRS.GrbF12 ............MISSING baseline - Comparing RESTART/20210323.060000.coupler.res ............MISSING baseline - Comparing RESTART/20210323.060000.fv_core.res.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............MISSING baseline - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............MISSING baseline - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............MISSING baseline - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............MISSING baseline - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............MISSING baseline - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............MISSING baseline - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............MISSING baseline - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............MISSING baseline - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............MISSING baseline - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............MISSING baseline - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............MISSING baseline - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............MISSING baseline - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............MISSING baseline - - 0: The total amount of wall time = 457.112711 - 0: The maximum resident set size (KB) = 1049104 - -Test 070 rrfs_v1beta FAIL Tries: 2 - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_v1nssl -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rrfs_v1nssl -Checking test 071 rrfs_v1nssl results .... - Comparing sfcf000.nc ............MISSING baseline - Comparing sfcf009.nc ............MISSING baseline - Comparing sfcf012.nc ............MISSING baseline - Comparing atmf000.nc ............MISSING baseline - Comparing atmf009.nc ............MISSING baseline - Comparing atmf012.nc ............MISSING baseline - Comparing GFSFLX.GrbF00 ............MISSING baseline - Comparing GFSFLX.GrbF09 ............MISSING baseline - Comparing GFSFLX.GrbF12 ............MISSING baseline - Comparing GFSPRS.GrbF00 ............MISSING baseline - Comparing GFSPRS.GrbF09 ............MISSING baseline - Comparing GFSPRS.GrbF12 ............MISSING baseline - - 0: The total amount of wall time = 536.557757 - 0: The maximum resident set size (KB) = 665360 - -Test 071 rrfs_v1nssl FAIL Tries: 2 - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rrfs_v1nssl_nohailnoccn -Checking test 072 rrfs_v1nssl_nohailnoccn results .... - Comparing sfcf000.nc ............MISSING baseline - Comparing sfcf009.nc ............MISSING baseline - Comparing sfcf012.nc ............MISSING baseline - Comparing atmf000.nc ............MISSING baseline - Comparing atmf009.nc ............MISSING baseline - Comparing atmf012.nc ............MISSING baseline - Comparing GFSFLX.GrbF00 ............MISSING baseline - Comparing GFSFLX.GrbF09 ............MISSING baseline - Comparing GFSFLX.GrbF12 ............MISSING baseline - Comparing GFSPRS.GrbF00 ............MISSING baseline - Comparing GFSPRS.GrbF09 ............MISSING baseline - Comparing GFSPRS.GrbF12 ............MISSING baseline - - 0: The total amount of wall time = 522.726999 - 0: The maximum resident set size (KB) = 752812 - -Test 072 rrfs_v1nssl_nohailnoccn FAIL Tries: 2 - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rrfs_smoke_conus13km_hrrr_warm -Checking test 073 rrfs_smoke_conus13km_hrrr_warm results .... - Comparing sfcf000.nc ............MISSING baseline - Comparing sfcf001.nc ............MISSING baseline - Comparing sfcf002.nc ............MISSING baseline - Comparing atmf000.nc ............MISSING baseline - Comparing atmf001.nc ............MISSING baseline - Comparing atmf002.nc ............MISSING baseline - - 0: The total amount of wall time = 152.138144 - 0: The maximum resident set size (KB) = 1031220 - -Test 073 rrfs_smoke_conus13km_hrrr_warm FAIL Tries: 2 - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rrfs_smoke_conus13km_hrrr_warm_2threads -Checking test 074 rrfs_smoke_conus13km_hrrr_warm_2threads results .... - Comparing sfcf000.nc ............MISSING baseline - Comparing sfcf001.nc ............MISSING baseline - Comparing sfcf002.nc ............MISSING baseline - Comparing atmf000.nc ............MISSING baseline - Comparing atmf001.nc ............MISSING baseline - Comparing atmf002.nc ............MISSING baseline - - 0: The total amount of wall time = 92.747663 - 0: The maximum resident set size (KB) = 942036 - -Test 074 rrfs_smoke_conus13km_hrrr_warm_2threads FAIL Tries: 2 - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rrfs_conus13km_hrrr_warm -Checking test 075 rrfs_conus13km_hrrr_warm results .... - Comparing sfcf000.nc ............MISSING baseline - Comparing sfcf001.nc ............MISSING baseline - Comparing sfcf002.nc ............MISSING baseline - Comparing atmf000.nc ............MISSING baseline - Comparing atmf001.nc ............MISSING baseline - Comparing atmf002.nc ............MISSING baseline - - 0: The total amount of wall time = 133.503022 - 0: The maximum resident set size (KB) = 979936 - -Test 075 rrfs_conus13km_hrrr_warm FAIL Tries: 2 - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rrfs_smoke_conus13km_radar_tten_warm -Checking test 076 rrfs_smoke_conus13km_radar_tten_warm results .... - Comparing sfcf000.nc ............MISSING baseline - Comparing sfcf001.nc ............MISSING baseline - Comparing sfcf002.nc ............MISSING baseline - Comparing atmf000.nc ............MISSING baseline - Comparing atmf001.nc ............MISSING baseline - Comparing atmf002.nc ............MISSING baseline - - 0: The total amount of wall time = 152.491705 - 0: The maximum resident set size (KB) = 1030160 - -Test 076 rrfs_smoke_conus13km_radar_tten_warm FAIL Tries: 2 - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_csawmg -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_csawmg -Checking test 078 control_csawmg results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK + 0: The total amount of wall time = 375.887739 + 0: The maximum resident set size (KB) = 628588 - 0: The total amount of wall time = 345.949024 - 0: The maximum resident set size (KB) = 725720 +Test 061 regional_wofs PASS -Test 078 control_csawmg PASS - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_csawmgt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_csawmgt -Checking test 079 control_csawmgt results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/rap_control +Checking test 062 rap_control results .... Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 342.203356 - 0: The maximum resident set size (KB) = 708328 - -Test 079 control_csawmgt PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_ras -Checking test 080 control_ras results .... + 0: The total amount of wall time = 459.661943 + 0: The maximum resident set size (KB) = 1055044 + +Test 062 rap_control PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_spp_sppt_shum_skeb +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/regional_spp_sppt_shum_skeb +Checking test 063 regional_spp_sppt_shum_skeb results .... + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF01 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF01 .........OK + + 0: The total amount of wall time = 233.603502 + 0: The maximum resident set size (KB) = 1188004 + +Test 063 regional_spp_sppt_shum_skeb PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/rap_decomp +Checking test 064 rap_decomp results .... Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 181.424626 - 0: The maximum resident set size (KB) = 714792 - -Test 080 control_ras PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_wam -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_wam -Checking test 081 control_wam results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - - 0: The total amount of wall time = 111.942145 - 0: The maximum resident set size (KB) = 641360 + 0: The total amount of wall time = 479.855790 + 0: The maximum resident set size (KB) = 994176 -Test 081 control_wam PASS +Test 064 rap_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_p8_faster -Checking test 082 control_p8_faster results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/rap_2threads +Checking test 065 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -3203,2092 +2913,1131 @@ Checking test 082 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 156.092600 - 0: The maximum resident set size (KB) = 1590712 - -Test 082 control_p8_faster PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/regional_control_faster -Checking test 083 regional_control_faster results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 272.551503 - 0: The maximum resident set size (KB) = 866296 - -Test 083 regional_control_faster PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rrfs_smoke_conus13km_hrrr_warm_debug -Checking test 084 rrfs_smoke_conus13km_hrrr_warm_debug results .... - Comparing sfcf000.nc ............MISSING baseline - Comparing sfcf001.nc ............MISSING baseline - Comparing atmf000.nc ............MISSING baseline - Comparing atmf001.nc ............MISSING baseline - - 0: The total amount of wall time = 832.711387 - 0: The maximum resident set size (KB) = 1056876 - -Test 084 rrfs_smoke_conus13km_hrrr_warm_debug FAIL Tries: 2 - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rrfs_smoke_conus13km_hrrr_warm_debug_2threads -Checking test 085 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... - Comparing sfcf000.nc ............MISSING baseline - Comparing sfcf001.nc ............MISSING baseline - Comparing atmf000.nc ............MISSING baseline - Comparing atmf001.nc ............MISSING baseline - - 0: The total amount of wall time = 465.208216 - 0: The maximum resident set size (KB) = 967464 - -Test 085 rrfs_smoke_conus13km_hrrr_warm_debug_2threads FAIL Tries: 2 - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rrfs_conus13km_hrrr_warm_debug -Checking test 086 rrfs_conus13km_hrrr_warm_debug results .... - Comparing sfcf000.nc ............MISSING baseline - Comparing sfcf001.nc ............MISSING baseline - Comparing atmf000.nc ............MISSING baseline - Comparing atmf001.nc ............MISSING baseline - - 0: The total amount of wall time = 745.046241 - 0: The maximum resident set size (KB) = 1013404 - -Test 086 rrfs_conus13km_hrrr_warm_debug FAIL Tries: 2 - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_CubedSphereGrid_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_CubedSphereGrid_debug -Checking test 087 control_CubedSphereGrid_debug results .... - Comparing sfcf000.tile1.nc ............MISSING baseline - Comparing sfcf000.tile2.nc ............MISSING baseline - Comparing sfcf000.tile3.nc ............MISSING baseline - Comparing sfcf000.tile4.nc ............MISSING baseline - Comparing sfcf000.tile5.nc ............MISSING baseline - Comparing sfcf000.tile6.nc ............MISSING baseline - Comparing sfcf001.tile1.nc ............MISSING baseline - Comparing sfcf001.tile2.nc ............MISSING baseline - Comparing sfcf001.tile3.nc ............MISSING baseline - Comparing sfcf001.tile4.nc ............MISSING baseline - Comparing sfcf001.tile5.nc ............MISSING baseline - Comparing sfcf001.tile6.nc ............MISSING baseline - Comparing atmf000.tile1.nc ............MISSING baseline - Comparing atmf000.tile2.nc ............MISSING baseline - Comparing atmf000.tile3.nc ............MISSING baseline - Comparing atmf000.tile4.nc ............MISSING baseline - Comparing atmf000.tile5.nc ............MISSING baseline - Comparing atmf000.tile6.nc ............MISSING baseline - Comparing atmf001.tile1.nc ............MISSING baseline - Comparing atmf001.tile2.nc ............MISSING baseline - Comparing atmf001.tile3.nc ............MISSING baseline - Comparing atmf001.tile4.nc ............MISSING baseline - Comparing atmf001.tile5.nc ............MISSING baseline - Comparing atmf001.tile6.nc ............MISSING baseline - - 0: The total amount of wall time = 150.078971 - 0: The maximum resident set size (KB) = 763448 - -Test 087 control_CubedSphereGrid_debug FAIL Tries: 2 - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_wrtGauss_netcdf_parallel_debug -Checking test 088 control_wrtGauss_netcdf_parallel_debug results .... - Comparing sfcf000.nc ............MISSING baseline - Comparing sfcf001.nc ............MISSING baseline - Comparing atmf000.nc ............MISSING baseline - Comparing atmf001.nc ............MISSING baseline - - 0: The total amount of wall time = 145.638031 - 0: The maximum resident set size (KB) = 786808 - -Test 088 control_wrtGauss_netcdf_parallel_debug FAIL Tries: 2 - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_stochy_debug -Checking test 089 control_stochy_debug results .... - Comparing sfcf000.nc ............MISSING baseline - Comparing sfcf001.nc ............MISSING baseline - Comparing atmf000.nc ............MISSING baseline - Comparing atmf001.nc ............MISSING baseline - - 0: The total amount of wall time = 165.102886 - 0: The maximum resident set size (KB) = 794524 - -Test 089 control_stochy_debug FAIL Tries: 2 - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_lndp_debug -Checking test 090 control_lndp_debug results .... - Comparing sfcf000.nc ............MISSING baseline - Comparing sfcf001.nc ............MISSING baseline - Comparing atmf000.nc ............MISSING baseline - Comparing atmf001.nc ............MISSING baseline - - 0: The total amount of wall time = 146.621086 - 0: The maximum resident set size (KB) = 790080 - -Test 090 control_lndp_debug FAIL Tries: 2 - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_csawmg_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_csawmg_debug -Checking test 091 control_csawmg_debug results .... - Comparing sfcf000.nc ............MISSING baseline - Comparing sfcf001.nc ............MISSING baseline - Comparing atmf000.nc ............MISSING baseline - Comparing atmf001.nc ............MISSING baseline - - 0: The total amount of wall time = 223.535451 - 0: The maximum resident set size (KB) = 838036 - -Test 091 control_csawmg_debug FAIL Tries: 2 - + 0: The total amount of wall time = 433.369358 + 0: The maximum resident set size (KB) = 1126244 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_csawmgt_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_csawmgt_debug -Checking test 092 control_csawmgt_debug results .... - Comparing sfcf000.nc ............MISSING baseline - Comparing sfcf001.nc ............MISSING baseline - Comparing atmf000.nc ............MISSING baseline - Comparing atmf001.nc ............MISSING baseline +Test 065 rap_2threads PASS - 0: The total amount of wall time = 224.238890 - 0: The maximum resident set size (KB) = 839484 -Test 092 control_csawmgt_debug FAIL Tries: 2 - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_ras_debug -Checking test 093 control_ras_debug results .... - Comparing sfcf000.nc ............MISSING baseline - Comparing sfcf001.nc ............MISSING baseline - Comparing atmf000.nc ............MISSING baseline - Comparing atmf001.nc ............MISSING baseline - - 0: The total amount of wall time = 148.821949 - 0: The maximum resident set size (KB) = 797996 - -Test 093 control_ras_debug FAIL Tries: 2 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/rap_restart +Checking test 066 rap_restart results .... + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + 0: The total amount of wall time = 232.915334 + 0: The maximum resident set size (KB) = 967240 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_diag_debug -Checking test 094 control_diag_debug results .... - Comparing sfcf000.nc ............MISSING baseline - Comparing sfcf001.nc ............MISSING baseline - Comparing atmf000.nc ............MISSING baseline - Comparing atmf001.nc ............MISSING baseline +Test 066 rap_restart PASS - 0: The total amount of wall time = 154.304266 - 0: The maximum resident set size (KB) = 846092 -Test 094 control_diag_debug FAIL Tries: 2 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/rap_sfcdiff +Checking test 067 rap_sfcdiff results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + 0: The total amount of wall time = 459.373157 + 0: The maximum resident set size (KB) = 1052280 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_debug_p8 -Checking test 095 control_debug_p8 results .... - Comparing sfcf000.nc ............MISSING baseline - Comparing sfcf001.nc ............MISSING baseline - Comparing atmf000.nc ............MISSING baseline - Comparing atmf001.nc ............MISSING baseline +Test 067 rap_sfcdiff PASS - 0: The total amount of wall time = 161.708863 - 0: The maximum resident set size (KB) = 1610228 -Test 095 control_debug_p8 FAIL Tries: 2 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/rap_sfcdiff_decomp +Checking test 068 rap_sfcdiff_decomp results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + 0: The total amount of wall time = 485.101614 + 0: The maximum resident set size (KB) = 998004 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/regional_debug -Checking test 096 regional_debug results .... - Comparing dynf000.nc ............MISSING baseline - Comparing dynf001.nc ............MISSING baseline - Comparing phyf000.nc ............MISSING baseline - Comparing phyf001.nc ............MISSING baseline +Test 068 rap_sfcdiff_decomp PASS - 0: The total amount of wall time = 980.782012 - 0: The maximum resident set size (KB) = 876904 -Test 096 regional_debug FAIL Tries: 2 - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_control_debug -Checking test 097 rap_control_debug results .... - Comparing sfcf000.nc ............MISSING baseline - Comparing sfcf001.nc ............MISSING baseline - Comparing atmf000.nc ............MISSING baseline - Comparing atmf001.nc ............MISSING baseline - - 0: The total amount of wall time = 273.890726 - 0: The maximum resident set size (KB) = 1163616 - -Test 097 rap_control_debug FAIL Tries: 2 - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/hrrr_control_debug -Checking test 098 hrrr_control_debug results .... - Comparing sfcf000.nc ............MISSING baseline - Comparing sfcf001.nc ............MISSING baseline - Comparing atmf000.nc ............MISSING baseline - Comparing atmf001.nc ............MISSING baseline - - 0: The total amount of wall time = 264.999828 - 0: The maximum resident set size (KB) = 1163356 - -Test 098 hrrr_control_debug FAIL Tries: 2 - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_unified_drag_suite_debug -Checking test 099 rap_unified_drag_suite_debug results .... - Comparing sfcf000.nc ............MISSING baseline - Comparing sfcf001.nc ............MISSING baseline - Comparing atmf000.nc ............MISSING baseline - Comparing atmf001.nc ............MISSING baseline - - 0: The total amount of wall time = 271.532738 - 0: The maximum resident set size (KB) = 1168140 - -Test 099 rap_unified_drag_suite_debug FAIL Tries: 2 - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_diag_debug -Checking test 100 rap_diag_debug results .... - Comparing sfcf000.nc ............MISSING baseline - Comparing sfcf001.nc ............MISSING baseline - Comparing atmf000.nc ............MISSING baseline - Comparing atmf001.nc ............MISSING baseline - - 0: The total amount of wall time = 287.003819 - 0: The maximum resident set size (KB) = 1254120 - -Test 100 rap_diag_debug FAIL Tries: 2 - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_cires_ugwp_debug -Checking test 101 rap_cires_ugwp_debug results .... - Comparing sfcf000.nc ............MISSING baseline - Comparing sfcf001.nc ............MISSING baseline - Comparing atmf000.nc ............MISSING baseline - Comparing atmf001.nc ............MISSING baseline - - 0: The total amount of wall time = 276.081259 - 0: The maximum resident set size (KB) = 1157092 - -Test 101 rap_cires_ugwp_debug FAIL Tries: 2 - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_unified_ugwp_debug -Checking test 102 rap_unified_ugwp_debug results .... - Comparing sfcf000.nc ............MISSING baseline - Comparing sfcf001.nc ............MISSING baseline - Comparing atmf000.nc ............MISSING baseline - Comparing atmf001.nc ............MISSING baseline - - 0: The total amount of wall time = 277.518716 - 0: The maximum resident set size (KB) = 1174452 - -Test 102 rap_unified_ugwp_debug FAIL Tries: 2 - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_lndp_debug -Checking test 103 rap_lndp_debug results .... - Comparing sfcf000.nc ............MISSING baseline - Comparing sfcf001.nc ............MISSING baseline - Comparing atmf000.nc ............MISSING baseline - Comparing atmf001.nc ............MISSING baseline - - 0: The total amount of wall time = 275.802324 - 0: The maximum resident set size (KB) = 1166704 - -Test 103 rap_lndp_debug FAIL Tries: 2 - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_progcld_thompson_debug -Checking test 104 rap_progcld_thompson_debug results .... - Comparing sfcf000.nc ............MISSING baseline - Comparing sfcf001.nc ............MISSING baseline - Comparing atmf000.nc ............MISSING baseline - Comparing atmf001.nc ............MISSING baseline - - 0: The total amount of wall time = 269.962379 - 0: The maximum resident set size (KB) = 1136576 - -Test 104 rap_progcld_thompson_debug FAIL Tries: 2 - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_noah_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_noah_debug -Checking test 105 rap_noah_debug results .... - Comparing sfcf000.nc ............MISSING baseline - Comparing sfcf001.nc ............MISSING baseline - Comparing atmf000.nc ............MISSING baseline - Comparing atmf001.nc ............MISSING baseline - - 0: The total amount of wall time = 265.084765 - 0: The maximum resident set size (KB) = 1164764 - -Test 105 rap_noah_debug FAIL Tries: 2 - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_sfcdiff_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_sfcdiff_debug -Checking test 106 rap_sfcdiff_debug results .... - Comparing sfcf000.nc ............MISSING baseline - Comparing sfcf001.nc ............MISSING baseline - Comparing atmf000.nc ............MISSING baseline - Comparing atmf001.nc ............MISSING baseline - - 0: The total amount of wall time = 271.177082 - 0: The maximum resident set size (KB) = 1157700 - -Test 106 rap_sfcdiff_debug FAIL Tries: 2 - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 107 rap_noah_sfcdiff_cires_ugwp_debug results .... - Comparing sfcf000.nc ............MISSING baseline - Comparing sfcf001.nc ............MISSING baseline - Comparing atmf000.nc ............MISSING baseline - Comparing atmf001.nc ............MISSING baseline +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/rap_sfcdiff_restart +Checking test 069 rap_sfcdiff_restart results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 456.268386 - 0: The maximum resident set size (KB) = 1168632 + 0: The total amount of wall time = 339.151091 + 0: The maximum resident set size (KB) = 980376 -Test 107 rap_noah_sfcdiff_cires_ugwp_debug FAIL Tries: 2 +Test 069 rap_sfcdiff_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rrfs_v1beta_debug -Checking test 108 rrfs_v1beta_debug results .... - Comparing sfcf000.nc ............MISSING baseline - Comparing sfcf001.nc ............MISSING baseline - Comparing atmf000.nc ............MISSING baseline - Comparing atmf001.nc ............MISSING baseline - - 0: The total amount of wall time = 265.976428 - 0: The maximum resident set size (KB) = 1162316 - -Test 108 rrfs_v1beta_debug FAIL Tries: 2 - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_clm_lake_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_clm_lake_debug -Checking test 109 rap_clm_lake_debug results .... - Comparing sfcf000.nc ............MISSING baseline - Comparing sfcf001.nc ............MISSING baseline - Comparing atmf000.nc ............MISSING baseline - Comparing atmf001.nc ............MISSING baseline - - 0: The total amount of wall time = 326.041910 - 0: The maximum resident set size (KB) = 1171816 - -Test 109 rap_clm_lake_debug FAIL Tries: 2 - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_flake_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_flake_debug -Checking test 110 rap_flake_debug results .... - Comparing sfcf000.nc ............MISSING baseline - Comparing sfcf001.nc ............MISSING baseline - Comparing atmf000.nc ............MISSING baseline - Comparing atmf001.nc ............MISSING baseline - - 0: The total amount of wall time = 271.298331 - 0: The maximum resident set size (KB) = 1167068 - -Test 110 rap_flake_debug FAIL Tries: 2 - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_wam_debug -Checking test 111 control_wam_debug results .... - Comparing sfcf019.nc ............MISSING baseline - Comparing atmf019.nc ............MISSING baseline - - 0: The total amount of wall time = 268.602090 - 0: The maximum resident set size (KB) = 519324 - -Test 111 control_wam_debug FAIL Tries: 2 - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/regional_spp_sppt_shum_skeb_dyn32_phy32 -Checking test 112 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... - Comparing dynf000.nc ............MISSING baseline - Comparing dynf001.nc ............MISSING baseline - Comparing phyf000.nc ............MISSING baseline - Comparing phyf001.nc ............MISSING baseline - Comparing PRSLEV.GrbF00 ............MISSING baseline - Comparing PRSLEV.GrbF01 ............MISSING baseline - Comparing NATLEV.GrbF00 ............MISSING baseline - Comparing NATLEV.GrbF01 ............MISSING baseline - - 0: The total amount of wall time = 220.599977 - 0: The maximum resident set size (KB) = 1079000 - -Test 112 regional_spp_sppt_shum_skeb_dyn32_phy32 FAIL Tries: 2 - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_control_dyn32_phy32 -Checking test 113 rap_control_dyn32_phy32 results .... - Comparing sfcf000.nc ............MISSING baseline - Comparing sfcf009.nc ............MISSING baseline - Comparing sfcf012.nc ............MISSING baseline - Comparing atmf000.nc ............MISSING baseline - Comparing atmf009.nc ............MISSING baseline - Comparing atmf012.nc ............MISSING baseline - Comparing GFSFLX.GrbF00 ............MISSING baseline - Comparing GFSFLX.GrbF09 ............MISSING baseline - Comparing GFSFLX.GrbF12 ............MISSING baseline - Comparing GFSPRS.GrbF00 ............MISSING baseline - Comparing GFSPRS.GrbF09 ............MISSING baseline - Comparing GFSPRS.GrbF12 ............MISSING baseline - Comparing RESTART/20210323.060000.coupler.res ............MISSING baseline - Comparing RESTART/20210323.060000.fv_core.res.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............MISSING baseline - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............MISSING baseline - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............MISSING baseline - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............MISSING baseline - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............MISSING baseline - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............MISSING baseline - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............MISSING baseline - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............MISSING baseline - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............MISSING baseline - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............MISSING baseline - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............MISSING baseline - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............MISSING baseline - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............MISSING baseline - - 0: The total amount of wall time = 382.479354 - 0: The maximum resident set size (KB) = 994612 - -Test 113 rap_control_dyn32_phy32 FAIL Tries: 2 - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/hrrr_control_dyn32_phy32 -Checking test 114 hrrr_control_dyn32_phy32 results .... - Comparing sfcf000.nc ............MISSING baseline - Comparing sfcf009.nc ............MISSING baseline - Comparing sfcf012.nc ............MISSING baseline - Comparing atmf000.nc ............MISSING baseline - Comparing atmf009.nc ............MISSING baseline - Comparing atmf012.nc ............MISSING baseline - Comparing GFSFLX.GrbF00 ............MISSING baseline - Comparing GFSFLX.GrbF09 ............MISSING baseline - Comparing GFSFLX.GrbF12 ............MISSING baseline - Comparing GFSPRS.GrbF00 ............MISSING baseline - Comparing GFSPRS.GrbF09 ............MISSING baseline - Comparing GFSPRS.GrbF12 ............MISSING baseline - Comparing RESTART/20210322.120000.coupler.res ............MISSING baseline - Comparing RESTART/20210322.120000.fv_core.res.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............MISSING baseline - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............MISSING baseline - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............MISSING baseline - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............MISSING baseline - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............MISSING baseline - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............MISSING baseline - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............MISSING baseline - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............MISSING baseline - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............MISSING baseline - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............MISSING baseline - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............MISSING baseline - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............MISSING baseline - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............MISSING baseline - - 0: The total amount of wall time = 191.526185 - 0: The maximum resident set size (KB) = 950824 - -Test 114 hrrr_control_dyn32_phy32 FAIL Tries: 2 - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_2threads_dyn32_phy32 -Checking test 115 rap_2threads_dyn32_phy32 results .... - Comparing sfcf000.nc ............MISSING baseline - Comparing sfcf009.nc ............MISSING baseline - Comparing sfcf012.nc ............MISSING baseline - Comparing atmf000.nc ............MISSING baseline - Comparing atmf009.nc ............MISSING baseline - Comparing atmf012.nc ............MISSING baseline - Comparing GFSFLX.GrbF00 ............MISSING baseline - Comparing GFSFLX.GrbF09 ............MISSING baseline - Comparing GFSFLX.GrbF12 ............MISSING baseline - Comparing GFSPRS.GrbF00 ............MISSING baseline - Comparing GFSPRS.GrbF09 ............MISSING baseline - Comparing GFSPRS.GrbF12 ............MISSING baseline - Comparing RESTART/20210323.060000.coupler.res ............MISSING baseline - Comparing RESTART/20210323.060000.fv_core.res.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............MISSING baseline - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............MISSING baseline - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............MISSING baseline - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............MISSING baseline - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............MISSING baseline - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............MISSING baseline - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............MISSING baseline - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............MISSING baseline - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............MISSING baseline - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............MISSING baseline - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............MISSING baseline - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............MISSING baseline - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............MISSING baseline - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............MISSING baseline - - 0: The total amount of wall time = 372.641579 - 0: The maximum resident set size (KB) = 981160 - -Test 115 rap_2threads_dyn32_phy32 FAIL Tries: 2 - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/hrrr_control_2threads_dyn32_phy32 -Checking test 116 hrrr_control_2threads_dyn32_phy32 results .... - Comparing sfcf000.nc ............MISSING baseline - Comparing sfcf009.nc ............MISSING baseline - Comparing sfcf012.nc ............MISSING baseline - Comparing atmf000.nc ............MISSING baseline - Comparing atmf009.nc ............MISSING baseline - Comparing atmf012.nc ............MISSING baseline - Comparing GFSFLX.GrbF00 ............MISSING baseline - Comparing GFSFLX.GrbF09 ............MISSING baseline - Comparing GFSFLX.GrbF12 ............MISSING baseline - Comparing GFSPRS.GrbF00 ............MISSING baseline - Comparing GFSPRS.GrbF09 ............MISSING baseline - Comparing GFSPRS.GrbF12 ............MISSING baseline - Comparing RESTART/20210322.120000.coupler.res ............MISSING baseline - Comparing RESTART/20210322.120000.fv_core.res.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............MISSING baseline - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............MISSING baseline - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............MISSING baseline - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............MISSING baseline - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............MISSING baseline - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............MISSING baseline - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............MISSING baseline - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............MISSING baseline - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............MISSING baseline - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............MISSING baseline - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............MISSING baseline - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............MISSING baseline - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............MISSING baseline - - 0: The total amount of wall time = 175.595181 - 0: The maximum resident set size (KB) = 914264 - -Test 116 hrrr_control_2threads_dyn32_phy32 FAIL Tries: 2 - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/hrrr_control_decomp_dyn32_phy32 -Checking test 117 hrrr_control_decomp_dyn32_phy32 results .... - Comparing sfcf000.nc ............MISSING baseline - Comparing sfcf009.nc ............MISSING baseline - Comparing sfcf012.nc ............MISSING baseline - Comparing atmf000.nc ............MISSING baseline - Comparing atmf009.nc ............MISSING baseline - Comparing atmf012.nc ............MISSING baseline - Comparing GFSFLX.GrbF00 ............MISSING baseline - Comparing GFSFLX.GrbF09 ............MISSING baseline - Comparing GFSFLX.GrbF12 ............MISSING baseline - Comparing GFSPRS.GrbF00 ............MISSING baseline - Comparing GFSPRS.GrbF09 ............MISSING baseline - Comparing GFSPRS.GrbF12 ............MISSING baseline - Comparing RESTART/20210322.120000.coupler.res ............MISSING baseline - Comparing RESTART/20210322.120000.fv_core.res.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............MISSING baseline - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............MISSING baseline - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............MISSING baseline - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............MISSING baseline - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............MISSING baseline - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............MISSING baseline - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............MISSING baseline - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............MISSING baseline - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............MISSING baseline - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............MISSING baseline - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............MISSING baseline - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............MISSING baseline - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............MISSING baseline - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............MISSING baseline - - 0: The total amount of wall time = 200.452825 - 0: The maximum resident set size (KB) = 888824 - -Test 117 hrrr_control_decomp_dyn32_phy32 FAIL Tries: 2 - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_control_dyn64_phy32 -Checking test 120 rap_control_dyn64_phy32 results .... - Comparing sfcf000.nc ............MISSING baseline - Comparing sfcf009.nc ............MISSING baseline - Comparing sfcf012.nc ............MISSING baseline - Comparing atmf000.nc ............MISSING baseline - Comparing atmf009.nc ............MISSING baseline - Comparing atmf012.nc ............MISSING baseline - Comparing GFSFLX.GrbF00 ............MISSING baseline - Comparing GFSFLX.GrbF09 ............MISSING baseline - Comparing GFSFLX.GrbF12 ............MISSING baseline - Comparing GFSPRS.GrbF00 ............MISSING baseline - Comparing GFSPRS.GrbF09 ............MISSING baseline - Comparing GFSPRS.GrbF12 ............MISSING baseline - Comparing RESTART/20210322.180000.coupler.res ............MISSING baseline - Comparing RESTART/20210322.180000.fv_core.res.nc ............MISSING baseline - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc ............MISSING baseline - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc ............MISSING baseline - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc ............MISSING baseline - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc ............MISSING baseline - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc ............MISSING baseline - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc ............MISSING baseline - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc ............MISSING baseline - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc ............MISSING baseline - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc ............MISSING baseline - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc ............MISSING baseline - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc ............MISSING baseline - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc ............MISSING baseline - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc ............MISSING baseline - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc ............MISSING baseline - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc ............MISSING baseline - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc ............MISSING baseline - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc ............MISSING baseline - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc ............MISSING baseline - Comparing RESTART/20210322.180000.phy_data.tile1.nc ............MISSING baseline - Comparing RESTART/20210322.180000.phy_data.tile2.nc ............MISSING baseline - Comparing RESTART/20210322.180000.phy_data.tile3.nc ............MISSING baseline - Comparing RESTART/20210322.180000.phy_data.tile4.nc ............MISSING baseline - Comparing RESTART/20210322.180000.phy_data.tile5.nc ............MISSING baseline - Comparing RESTART/20210322.180000.phy_data.tile6.nc ............MISSING baseline - Comparing RESTART/20210322.180000.sfc_data.tile1.nc ............MISSING baseline - Comparing RESTART/20210322.180000.sfc_data.tile2.nc ............MISSING baseline - Comparing RESTART/20210322.180000.sfc_data.tile3.nc ............MISSING baseline - Comparing RESTART/20210322.180000.sfc_data.tile4.nc ............MISSING baseline - Comparing RESTART/20210322.180000.sfc_data.tile5.nc ............MISSING baseline - Comparing RESTART/20210322.180000.sfc_data.tile6.nc ............MISSING baseline - - 0: The total amount of wall time = 248.091960 - 0: The maximum resident set size (KB) = 966532 - -Test 120 rap_control_dyn64_phy32 FAIL Tries: 2 - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_control_debug_dyn32_phy32 -Checking test 121 rap_control_debug_dyn32_phy32 results .... - Comparing sfcf000.nc ............MISSING baseline - Comparing sfcf001.nc ............MISSING baseline - Comparing atmf000.nc ............MISSING baseline - Comparing atmf001.nc ............MISSING baseline - - 0: The total amount of wall time = 261.310953 - 0: The maximum resident set size (KB) = 1058124 - -Test 121 rap_control_debug_dyn32_phy32 FAIL Tries: 2 - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/hrrr_control_debug_dyn32_phy32 -Checking test 122 hrrr_control_debug_dyn32_phy32 results .... - Comparing sfcf000.nc ............MISSING baseline - Comparing sfcf001.nc ............MISSING baseline - Comparing atmf000.nc ............MISSING baseline - Comparing atmf001.nc ............MISSING baseline - - 0: The total amount of wall time = 260.285779 - 0: The maximum resident set size (KB) = 1050008 - -Test 122 hrrr_control_debug_dyn32_phy32 FAIL Tries: 2 - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_control_dyn64_phy32_debug -Checking test 123 rap_control_dyn64_phy32_debug results .... - Comparing sfcf000.nc ............MISSING baseline - Comparing sfcf001.nc ............MISSING baseline - Comparing atmf000.nc ............MISSING baseline - Comparing atmf001.nc ............MISSING baseline - - 0: The total amount of wall time = 274.942910 - 0: The maximum resident set size (KB) = 1102260 - -Test 123 rap_control_dyn64_phy32_debug FAIL Tries: 2 - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/hafs_regional_atm -Checking test 124 hafs_regional_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing HURPRS.GrbF06 .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/hrrr_control +Checking test 070 hrrr_control 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 = 238.539041 - 0: The maximum resident set size (KB) = 1039188 + 0: The total amount of wall time = 426.965394 + 0: The maximum resident set size (KB) = 1052184 -Test 124 hafs_regional_atm PASS +Test 070 hrrr_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/hafs_regional_atm_thompson_gfdlsf -Checking test 125 hafs_regional_atm_thompson_gfdlsf results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/hrrr_control_decomp +Checking test 071 hrrr_control_decomp 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 = 316.269277 - 0: The maximum resident set size (KB) = 1407328 + 0: The total amount of wall time = 447.262437 + 0: The maximum resident set size (KB) = 990752 -Test 125 hafs_regional_atm_thompson_gfdlsf PASS +Test 071 hrrr_control_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/hafs_regional_atm_ocn -Checking test 126 hafs_regional_atm_ocn results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing archv.2019_241_06.a .........OK - Comparing archs.2019_241_06.a .........OK - Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/hrrr_control_2threads +Checking test 072 hrrr_control_2threads 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 = 379.932095 - 0: The maximum resident set size (KB) = 1217656 + 0: The total amount of wall time = 395.926948 + 0: The maximum resident set size (KB) = 1067412 -Test 126 hafs_regional_atm_ocn PASS +Test 072 hrrr_control_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_atm_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/hafs_regional_atm_wav -Checking test 127 hafs_regional_atm_wav results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing 20190829.060000.out_grd.ww3 .........OK - Comparing 20190829.060000.out_pnt.ww3 .........OK - Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/hrrr_control_restart +Checking test 073 hrrr_control_restart results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 739.194924 - 0: The maximum resident set size (KB) = 1260544 + 0: The total amount of wall time = 319.541045 + 0: The maximum resident set size (KB) = 948180 -Test 127 hafs_regional_atm_wav PASS +Test 073 hrrr_control_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/hafs_regional_atm_ocn_wav -Checking test 128 hafs_regional_atm_ocn_wav results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing archv.2019_241_06.a .........OK - Comparing archs.2019_241_06.a .........OK - Comparing 20190829.060000.out_grd.ww3 .........OK - Comparing 20190829.060000.out_pnt.ww3 .........OK - Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/rrfs_v1beta +Checking test 074 rrfs_v1beta results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 848.076246 - 0: The maximum resident set size (KB) = 1269716 + 0: The total amount of wall time = 458.093403 + 0: The maximum resident set size (KB) = 1038924 -Test 128 hafs_regional_atm_ocn_wav PASS +Test 074 rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/hafs_regional_1nest_atm -Checking test 129 hafs_regional_1nest_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rrfs_v1nssl +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/rrfs_v1nssl +Checking test 075 rrfs_v1nssl results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 317.024085 - 0: The maximum resident set size (KB) = 500264 + 0: The total amount of wall time = 536.038465 + 0: The maximum resident set size (KB) = 694060 -Test 129 hafs_regional_1nest_atm PASS +Test 075 rrfs_v1nssl PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/hafs_regional_telescopic_2nests_atm -Checking test 130 hafs_regional_telescopic_2nests_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest03.f006.nc .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/rrfs_v1nssl_nohailnoccn +Checking test 076 rrfs_v1nssl_nohailnoccn results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 361.377934 - 0: The maximum resident set size (KB) = 508168 + 0: The total amount of wall time = 524.839173 + 0: The maximum resident set size (KB) = 750008 -Test 130 hafs_regional_telescopic_2nests_atm PASS +Test 076 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_global_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/hafs_global_1nest_atm -Checking test 131 hafs_global_1nest_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/rrfs_smoke_conus13km_hrrr_warm +Checking test 077 rrfs_smoke_conus13km_hrrr_warm 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 - 0: The total amount of wall time = 146.263141 - 0: The maximum resident set size (KB) = 350424 + 0: The total amount of wall time = 151.147124 + 0: The maximum resident set size (KB) = 1028620 -Test 131 hafs_global_1nest_atm PASS +Test 077 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_global_multiple_4nests_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/hafs_global_multiple_4nests_atm -Checking test 132 hafs_global_multiple_4nests_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest03.f006.nc .........OK - Comparing atm.nest04.f006.nc .........OK - Comparing sfc.nest04.f006.nc .........OK - Comparing atm.nest05.f006.nc .........OK - Comparing sfc.nest05.f006.nc .........OK - Comparing HURPRS.GrbF06 .........OK - Comparing HURPRS.GrbF06.nest02 .........OK - Comparing HURPRS.GrbF06.nest03 .........OK - Comparing HURPRS.GrbF06.nest04 .........OK - Comparing HURPRS.GrbF06.nest05 .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/rrfs_smoke_conus13km_hrrr_warm_2threads +Checking test 078 rrfs_smoke_conus13km_hrrr_warm_2threads 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 - 0: The total amount of wall time = 409.451892 - 0: The maximum resident set size (KB) = 448784 + 0: The total amount of wall time = 90.942736 + 0: The maximum resident set size (KB) = 939068 -Test 132 hafs_global_multiple_4nests_atm PASS +Test 078 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/hafs_regional_specified_moving_1nest_atm -Checking test 133 hafs_regional_specified_moving_1nest_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing HURPRS.GrbF06 .........OK - Comparing HURPRS.GrbF06.nest02 .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/rrfs_conus13km_hrrr_warm +Checking test 079 rrfs_conus13km_hrrr_warm 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 - 0: The total amount of wall time = 201.797469 - 0: The maximum resident set size (KB) = 520556 + 0: The total amount of wall time = 133.261378 + 0: The maximum resident set size (KB) = 991888 -Test 133 hafs_regional_specified_moving_1nest_atm PASS +Test 079 rrfs_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/hafs_regional_storm_following_1nest_atm -Checking test 134 hafs_regional_storm_following_1nest_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/rrfs_smoke_conus13km_radar_tten_warm +Checking test 080 rrfs_smoke_conus13km_radar_tten_warm 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 - 0: The total amount of wall time = 190.219556 - 0: The maximum resident set size (KB) = 523236 + 0: The total amount of wall time = 152.650070 + 0: The maximum resident set size (KB) = 1040152 -Test 134 hafs_regional_storm_following_1nest_atm PASS +Test 080 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/hafs_regional_storm_following_1nest_atm_ocn -Checking test 135 hafs_regional_storm_following_1nest_atm_ocn results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing archv.2020_238_18.a .........OK - Comparing archs.2020_238_18.a .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/rrfs_conus13km_hrrr_warm_restart_mismatch +Checking test 081 rrfs_conus13km_hrrr_warm_restart_mismatch results .... + Comparing sfcf002.nc .........OK + Comparing atmf002.nc .........OK - 0: The total amount of wall time = 222.138055 - 0: The maximum resident set size (KB) = 562608 + 0: The total amount of wall time = 70.378301 + 0: The maximum resident set size (KB) = 973624 -Test 135 hafs_regional_storm_following_1nest_atm_ocn PASS +Test 081 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_global_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/hafs_global_storm_following_1nest_atm -Checking test 136 hafs_global_storm_following_1nest_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_csawmg +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/control_csawmg +Checking test 082 control_csawmg results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 60.109236 - 0: The maximum resident set size (KB) = 371304 + 0: The total amount of wall time = 343.660783 + 0: The maximum resident set size (KB) = 703760 -Test 136 hafs_global_storm_following_1nest_atm PASS +Test 082 control_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/hafs_regional_storm_following_1nest_atm_ocn_debug -Checking test 137 hafs_regional_storm_following_1nest_atm_ocn_debug results .... - Comparing atmf001.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atm.nest02.f001.nc .........OK - Comparing sfc.nest02.f001.nc .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_csawmgt +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/control_csawmgt +Checking test 083 control_csawmgt results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 708.230226 - 0: The maximum resident set size (KB) = 583732 + 0: The total amount of wall time = 337.151812 + 0: The maximum resident set size (KB) = 724064 -Test 137 hafs_regional_storm_following_1nest_atm_ocn_debug PASS +Test 083 control_csawmgt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/hafs_regional_storm_following_1nest_atm_ocn_wav -Checking test 138 hafs_regional_storm_following_1nest_atm_ocn_wav results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing archv.2020_238_18.a .........OK - Comparing archs.2020_238_18.a .........OK - Comparing 20200825.180000.out_grd.ww3 .........OK - Comparing 20200825.180000.out_pnt.ww3 .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_ras +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/control_ras +Checking test 084 control_ras results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 482.259172 - 0: The maximum resident set size (KB) = 620732 + 0: The total amount of wall time = 181.910965 + 0: The maximum resident set size (KB) = 719512 -Test 138 hafs_regional_storm_following_1nest_atm_ocn_wav PASS +Test 084 control_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_docn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/hafs_regional_docn -Checking test 139 hafs_regional_docn results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_wam +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/control_wam +Checking test 085 control_wam results .... + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK - 0: The total amount of wall time = 352.412101 - 0: The maximum resident set size (KB) = 1232524 + 0: The total amount of wall time = 111.220683 + 0: The maximum resident set size (KB) = 638496 -Test 139 hafs_regional_docn PASS +Test 085 control_wam PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_docn_oisst -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/hafs_regional_docn_oisst -Checking test 140 hafs_regional_docn_oisst results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_p8_faster +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/control_p8_faster +Checking test 086 control_p8_faster results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 357.689560 - 0: The maximum resident set size (KB) = 1215716 + 0: The total amount of wall time = 154.835031 + 0: The maximum resident set size (KB) = 1592952 -Test 140 hafs_regional_docn_oisst PASS +Test 086 control_p8_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_datm_cdeps -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/hafs_regional_datm_cdeps -Checking test 141 hafs_regional_datm_cdeps results .... - Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK - Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK - Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_control_faster +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/regional_control_faster +Checking test 087 regional_control_faster results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 952.588282 - 0: The maximum resident set size (KB) = 1044020 + 0: The total amount of wall time = 271.601881 + 0: The maximum resident set size (KB) = 867200 -Test 141 hafs_regional_datm_cdeps PASS +Test 087 regional_control_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/datm_cdeps_control_cfsr -Checking test 142 datm_cdeps_control_cfsr results .... - Comparing RESTART/20111002.000000.MOM.res.nc ............MISSING baseline - Comparing RESTART/iced.2011-10-02-00000.nc ............MISSING baseline - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc ............MISSING baseline +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/rrfs_smoke_conus13km_hrrr_warm_debug +Checking test 088 rrfs_smoke_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 153.286874 - 0: The maximum resident set size (KB) = 1062580 + 0: The total amount of wall time = 835.902871 + 0: The maximum resident set size (KB) = 1056388 -Test 142 datm_cdeps_control_cfsr FAIL Tries: 2 +Test 088 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/datm_cdeps_control_gefs -Checking test 144 datm_cdeps_control_gefs results .... - Comparing RESTART/20111002.000000.MOM.res.nc ............MISSING baseline - Comparing RESTART/iced.2011-10-02-00000.nc ............MISSING baseline - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc ............MISSING baseline +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +Checking test 089 rrfs_smoke_conus13km_hrrr_warm_debug_2threads 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.851364 - 0: The maximum resident set size (KB) = 966652 + 0: The total amount of wall time = 465.339323 + 0: The maximum resident set size (KB) = 968776 -Test 144 datm_cdeps_control_gefs FAIL Tries: 2 +Test 089 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_iau_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/datm_cdeps_iau_gefs -Checking test 145 datm_cdeps_iau_gefs results .... - Comparing RESTART/20111002.000000.MOM.res.nc ............MISSING baseline - Comparing RESTART/iced.2011-10-02-00000.nc ............MISSING baseline - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc ............MISSING baseline +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/rrfs_conus13km_hrrr_warm_debug +Checking test 090 rrfs_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 153.086504 - 0: The maximum resident set size (KB) = 963168 + 0: The total amount of wall time = 723.341931 + 0: The maximum resident set size (KB) = 995036 -Test 145 datm_cdeps_iau_gefs FAIL Tries: 2 +Test 090 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_stochy_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/datm_cdeps_stochy_gefs -Checking test 146 datm_cdeps_stochy_gefs results .... - Comparing RESTART/20111002.000000.MOM.res.nc ............MISSING baseline - Comparing RESTART/iced.2011-10-02-00000.nc ............MISSING baseline - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc ............MISSING baseline +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_CubedSphereGrid_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/control_CubedSphereGrid_debug +Checking test 091 control_CubedSphereGrid_debug results .... + Comparing sfcf000.tile1.nc .........OK + Comparing sfcf000.tile2.nc .........OK + Comparing sfcf000.tile3.nc .........OK + Comparing sfcf000.tile4.nc .........OK + Comparing sfcf000.tile5.nc .........OK + Comparing sfcf000.tile6.nc .........OK + Comparing sfcf001.tile1.nc .........OK + Comparing sfcf001.tile2.nc .........OK + Comparing sfcf001.tile3.nc .........OK + Comparing sfcf001.tile4.nc .........OK + Comparing sfcf001.tile5.nc .........OK + Comparing sfcf001.tile6.nc .........OK + Comparing atmf000.tile1.nc .........OK + Comparing atmf000.tile2.nc .........OK + Comparing atmf000.tile3.nc .........OK + Comparing atmf000.tile4.nc .........OK + Comparing atmf000.tile5.nc .........OK + Comparing atmf000.tile6.nc .........OK + Comparing atmf001.tile1.nc .........OK + Comparing atmf001.tile2.nc .........OK + Comparing atmf001.tile3.nc .........OK + Comparing atmf001.tile4.nc .........OK + Comparing atmf001.tile5.nc .........OK + Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 151.073239 - 0: The maximum resident set size (KB) = 966184 + 0: The total amount of wall time = 145.016978 + 0: The maximum resident set size (KB) = 795512 -Test 146 datm_cdeps_stochy_gefs FAIL Tries: 2 +Test 091 control_CubedSphereGrid_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_ciceC_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/datm_cdeps_ciceC_cfsr -Checking test 147 datm_cdeps_ciceC_cfsr results .... - Comparing RESTART/20111002.000000.MOM.res.nc ............MISSING baseline - Comparing RESTART/iced.2011-10-02-00000.nc ............MISSING baseline - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc ............MISSING baseline +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/control_wrtGauss_netcdf_parallel_debug +Checking test 092 control_wrtGauss_netcdf_parallel_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 154.478362 - 0: The maximum resident set size (KB) = 1062744 + 0: The total amount of wall time = 144.807119 + 0: The maximum resident set size (KB) = 787100 -Test 147 datm_cdeps_ciceC_cfsr FAIL Tries: 2 +Test 092 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/datm_cdeps_bulk_cfsr -Checking test 148 datm_cdeps_bulk_cfsr results .... - Comparing RESTART/20111002.000000.MOM.res.nc ............MISSING baseline - Comparing RESTART/iced.2011-10-02-00000.nc ............MISSING baseline - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc ............MISSING baseline +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/control_stochy_debug +Checking test 093 control_stochy_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 153.678352 - 0: The maximum resident set size (KB) = 1065804 + 0: The total amount of wall time = 162.861675 + 0: The maximum resident set size (KB) = 797592 -Test 148 datm_cdeps_bulk_cfsr FAIL Tries: 2 +Test 093 control_stochy_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/datm_cdeps_bulk_gefs -Checking test 149 datm_cdeps_bulk_gefs results .... - Comparing RESTART/20111002.000000.MOM.res.nc ............MISSING baseline - Comparing RESTART/iced.2011-10-02-00000.nc ............MISSING baseline - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc ............MISSING baseline +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/control_lndp_debug +Checking test 094 control_lndp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 152.308809 - 0: The maximum resident set size (KB) = 961960 + 0: The total amount of wall time = 148.627087 + 0: The maximum resident set size (KB) = 790352 -Test 149 datm_cdeps_bulk_gefs FAIL Tries: 2 +Test 094 control_lndp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/datm_cdeps_mx025_cfsr -Checking test 150 datm_cdeps_mx025_cfsr results .... - Comparing RESTART/20111001.120000.MOM.res.nc ............MISSING baseline - Comparing RESTART/20111001.120000.MOM.res_1.nc ............MISSING baseline - Comparing RESTART/20111001.120000.MOM.res_2.nc ............MISSING baseline - Comparing RESTART/20111001.120000.MOM.res_3.nc ............MISSING baseline - Comparing RESTART/iced.2011-10-01-43200.nc ............MISSING baseline - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc ............MISSING baseline +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_csawmg_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/control_csawmg_debug +Checking test 095 control_csawmg_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 416.023679 - 0: The maximum resident set size (KB) = 884160 + 0: The total amount of wall time = 227.152526 + 0: The maximum resident set size (KB) = 838636 -Test 150 datm_cdeps_mx025_cfsr FAIL Tries: 2 +Test 095 control_csawmg_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/datm_cdeps_mx025_gefs -Checking test 151 datm_cdeps_mx025_gefs results .... - Comparing RESTART/20111001.120000.MOM.res.nc ............MISSING baseline - Comparing RESTART/20111001.120000.MOM.res_1.nc ............MISSING baseline - Comparing RESTART/20111001.120000.MOM.res_2.nc ............MISSING baseline - Comparing RESTART/20111001.120000.MOM.res_3.nc ............MISSING baseline - Comparing RESTART/iced.2011-10-01-43200.nc ............MISSING baseline - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc ............MISSING baseline +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_csawmgt_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/control_csawmgt_debug +Checking test 096 control_csawmgt_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 435.041871 - 0: The maximum resident set size (KB) = 936316 + 0: The total amount of wall time = 220.607958 + 0: The maximum resident set size (KB) = 839664 -Test 151 datm_cdeps_mx025_gefs FAIL Tries: 2 +Test 096 control_csawmgt_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/datm_cdeps_multiple_files_cfsr -Checking test 152 datm_cdeps_multiple_files_cfsr results .... - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc ............MISSING baseline +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/control_ras_debug +Checking test 097 control_ras_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 153.930114 - 0: The maximum resident set size (KB) = 1058160 + 0: The total amount of wall time = 149.915107 + 0: The maximum resident set size (KB) = 803472 -Test 152 datm_cdeps_multiple_files_cfsr FAIL Tries: 2 +Test 097 control_ras_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/datm_cdeps_3072x1536_cfsr -Checking test 153 datm_cdeps_3072x1536_cfsr results .... - Comparing RESTART/20111002.000000.MOM.res.nc ............MISSING baseline - Comparing RESTART/iced.2011-10-02-00000.nc ............MISSING baseline - Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc ............MISSING baseline +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/control_diag_debug +Checking test 098 control_diag_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 217.342050 - 0: The maximum resident set size (KB) = 2360808 + 0: The total amount of wall time = 150.622869 + 0: The maximum resident set size (KB) = 850996 -Test 153 datm_cdeps_3072x1536_cfsr FAIL Tries: 2 +Test 098 control_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_gfs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/datm_cdeps_gfs -Checking test 154 datm_cdeps_gfs results .... - Comparing RESTART/20210323.060000.MOM.res.nc ............MISSING baseline - Comparing RESTART/iced.2021-03-23-21600.nc ............MISSING baseline - Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc ............MISSING baseline +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/control_debug_p8 +Checking test 099 control_debug_p8 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 222.523263 - 0: The maximum resident set size (KB) = 2366340 + 0: The total amount of wall time = 168.888960 + 0: The maximum resident set size (KB) = 1581668 -Test 154 datm_cdeps_gfs FAIL Tries: 2 +Test 099 control_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/datm_cdeps_debug_cfsr -Checking test 155 datm_cdeps_debug_cfsr results .... - Comparing RESTART/20111001.060000.MOM.res.nc ............MISSING baseline - Comparing RESTART/iced.2011-10-01-21600.nc ............MISSING baseline - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc ............MISSING baseline +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/regional_debug +Checking test 100 regional_debug results .... + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK - 0: The total amount of wall time = 357.615414 - 0: The maximum resident set size (KB) = 978028 + 0: The total amount of wall time = 989.776887 + 0: The maximum resident set size (KB) = 879740 -Test 155 datm_cdeps_debug_cfsr FAIL Tries: 2 +Test 100 regional_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_control_cfsr_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/datm_cdeps_control_cfsr_faster -Checking test 156 datm_cdeps_control_cfsr_faster results .... - Comparing RESTART/20111002.000000.MOM.res.nc ............MISSING baseline - Comparing RESTART/iced.2011-10-02-00000.nc ............MISSING baseline - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc ............MISSING baseline +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/rap_control_debug +Checking test 101 rap_control_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 156.381175 - 0: The maximum resident set size (KB) = 1047256 + 0: The total amount of wall time = 271.299637 + 0: The maximum resident set size (KB) = 1143228 -Test 156 datm_cdeps_control_cfsr_faster FAIL Tries: 2 +Test 101 rap_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/datm_cdeps_lnd_gswp3 -Checking test 157 datm_cdeps_lnd_gswp3 results .... - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc ............MISSING baseline - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc ............MISSING baseline - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc ............MISSING baseline - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc ............MISSING baseline - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc ............MISSING baseline - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc ............MISSING baseline +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/hrrr_control_debug +Checking test 102 hrrr_control_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 6.984228 - 0: The maximum resident set size (KB) = 258752 + 0: The total amount of wall time = 262.797250 + 0: The maximum resident set size (KB) = 1162248 -Test 157 datm_cdeps_lnd_gswp3 FAIL Tries: 2 +Test 102 hrrr_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8_atmlnd_sbs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_p8_atmlnd_sbs -Checking test 159 control_p8_atmlnd_sbs results .... - Comparing sfcf000.tile1.nc .........OK - Comparing sfcf000.tile2.nc .........OK - Comparing sfcf000.tile3.nc .........OK - Comparing sfcf000.tile4.nc .........OK - Comparing sfcf000.tile5.nc .........OK - Comparing sfcf000.tile6.nc .........OK - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf000.tile1.nc .........OK - Comparing atmf000.tile2.nc .........OK - Comparing atmf000.tile3.nc .........OK - Comparing atmf000.tile4.nc .........OK - Comparing atmf000.tile5.nc .........OK - Comparing atmf000.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing ufs.cpld.cpl.hi.lnd.2021-03-22-43200.nc .........OK - Comparing ufs.cpld.cpl.hi.lnd.2021-03-23-21600.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile6.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/rap_unified_drag_suite_debug +Checking test 103 rap_unified_drag_suite_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 202.621440 - 0: The maximum resident set size (KB) = 1598040 + 0: The total amount of wall time = 277.404884 + 0: The maximum resident set size (KB) = 1156788 -Test 159 control_p8_atmlnd_sbs PASS +Test 103 rap_unified_drag_suite_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/atmwav_control_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/atmwav_control_noaero_p8 -Checking test 160 atmwav_control_noaero_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/rap_diag_debug +Checking test 104 rap_diag_debug results .... Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK + Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - Comparing RESTART/ufs.atmw.cpl.r.2021-03-22-64800.nc .........OK - Comparing 20210322.180000.out_pnt.ww3 .........OK - Comparing 20210322.180000.out_grd.ww3 .........OK - Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 93.820722 - 0: The maximum resident set size (KB) = 1631716 + 0: The total amount of wall time = 285.405705 + 0: The maximum resident set size (KB) = 1249420 -Test 160 atmwav_control_noaero_p8 PASS +Test 104 rap_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_atmwav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_atmwav -Checking test 161 control_atmwav results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/rap_cires_ugwp_debug +Checking test 105 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK + Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - Comparing 20210322.180000.restart.glo_1deg .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 87.521036 - 0: The maximum resident set size (KB) = 643564 + 0: The total amount of wall time = 277.792940 + 0: The maximum resident set size (KB) = 1133120 -Test 161 control_atmwav PASS +Test 105 rap_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/atmaero_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/atmaero_control_p8 -Checking test 162 atmaero_control_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/rap_unified_ugwp_debug +Checking test 106 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf001.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 + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 231.325398 - 0: The maximum resident set size (KB) = 2969680 + 0: The total amount of wall time = 275.880333 + 0: The maximum resident set size (KB) = 1137700 -Test 162 atmaero_control_p8 PASS +Test 106 rap_unified_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/atmaero_control_p8_rad -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/atmaero_control_p8_rad -Checking test 163 atmaero_control_p8_rad results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/rap_lndp_debug +Checking test 107 rap_lndp_debug results .... Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf001.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 + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.006745 - 0: The maximum resident set size (KB) = 3023840 + 0: The total amount of wall time = 272.448470 + 0: The maximum resident set size (KB) = 1167644 -Test 163 atmaero_control_p8_rad PASS +Test 107 rap_lndp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/atmaero_control_p8_rad_micro -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/atmaero_control_p8_rad_micro -Checking test 164 atmaero_control_p8_rad_micro results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/rap_progcld_thompson_debug +Checking test 108 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf001.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 + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 283.338181 - 0: The maximum resident set size (KB) = 3057180 + 0: The total amount of wall time = 268.788476 + 0: The maximum resident set size (KB) = 1166240 -Test 164 atmaero_control_p8_rad_micro PASS +Test 108 rap_progcld_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_atmaq -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/regional_atmaq -Checking test 165 regional_atmaq results .... - Comparing sfcf000.nc ............MISSING baseline - Comparing sfcf003.nc ............MISSING baseline - Comparing sfcf006.nc ............MISSING baseline - Comparing atmf000.nc ............MISSING baseline - Comparing atmf003.nc ............MISSING baseline - Comparing atmf006.nc ............MISSING baseline - Comparing RESTART/20190801.180000.coupler.res ............MISSING baseline - Comparing RESTART/20190801.180000.fv_core.res.nc ............MISSING baseline - Comparing RESTART/20190801.180000.fv_core.res.tile1.nc ............MISSING baseline - Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc ............MISSING baseline - Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc ............MISSING baseline - Comparing RESTART/20190801.180000.phy_data.nc ............MISSING baseline - Comparing RESTART/20190801.180000.sfc_data.nc ............MISSING baseline +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_noah_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/rap_noah_debug +Checking test 109 rap_noah_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 645.553947 - 0: The maximum resident set size (KB) = 1449952 + 0: The total amount of wall time = 267.232911 + 0: The maximum resident set size (KB) = 1160252 -Test 165 regional_atmaq FAIL Tries: 2 +Test 109 rap_noah_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_atmaq_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/regional_atmaq_debug -Checking test 166 regional_atmaq_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_sfcdiff_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/rap_sfcdiff_debug +Checking test 110 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - Comparing RESTART/20190801.130000.coupler.res .........OK - Comparing RESTART/20190801.130000.fv_core.res.nc .........OK - Comparing RESTART/20190801.130000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20190801.130000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20190801.130000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20190801.130000.phy_data.nc .........OK - Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1198.667434 - 0: The maximum resident set size (KB) = 1386704 - -Test 166 regional_atmaq_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_atmaq_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/regional_atmaq_faster -Checking test 167 regional_atmaq_faster results .... - Comparing sfcf000.nc ............MISSING baseline - Comparing sfcf003.nc ............MISSING baseline - Comparing sfcf006.nc ............MISSING baseline - Comparing atmf000.nc ............MISSING baseline - Comparing atmf003.nc ............MISSING baseline - Comparing atmf006.nc ............MISSING baseline - Comparing RESTART/20190801.180000.coupler.res ............MISSING baseline - Comparing RESTART/20190801.180000.fv_core.res.nc ............MISSING baseline - Comparing RESTART/20190801.180000.fv_core.res.tile1.nc ............MISSING baseline - Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc ............MISSING baseline - Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc ............MISSING baseline - Comparing RESTART/20190801.180000.phy_data.nc ............MISSING baseline - Comparing RESTART/20190801.180000.sfc_data.nc ............MISSING baseline - - 0: The total amount of wall time = 560.534367 - 0: The maximum resident set size (KB) = 1455460 - -Test 167 regional_atmaq_faster FAIL Tries: 2 - -FAILED TESTS: -Test rap_control 058 failed in check_result failed -Test rap_control 058 failed in run_test failed -Test regional_spp_sppt_shum_skeb 059 failed in check_result failed -Test regional_spp_sppt_shum_skeb 059 failed in run_test failed -Test rap_decomp 060 failed in check_result failed -Test rap_decomp 060 failed in run_test failed -Test rap_2threads 061 failed in check_result failed -Test rap_2threads 061 failed in run_test failed -Test rap_sfcdiff 063 failed in check_result failed -Test rap_sfcdiff 063 failed in run_test failed -Test rap_sfcdiff_decomp 064 failed in check_result failed -Test rap_sfcdiff_decomp 064 failed in run_test failed -Test hrrr_control 066 failed in check_result failed -Test hrrr_control 066 failed in run_test failed -Test hrrr_control_decomp 067 failed in check_result failed -Test hrrr_control_decomp 067 failed in run_test failed -Test hrrr_control_2threads 068 failed in check_result failed -Test hrrr_control_2threads 068 failed in run_test failed -Test rrfs_v1beta 070 failed in check_result failed -Test rrfs_v1beta 070 failed in run_test failed -Test rrfs_v1nssl 071 failed in check_result failed -Test rrfs_v1nssl 071 failed in run_test failed -Test rrfs_v1nssl_nohailnoccn 072 failed in check_result failed -Test rrfs_v1nssl_nohailnoccn 072 failed in run_test failed -Test rrfs_smoke_conus13km_hrrr_warm 073 failed in check_result failed -Test rrfs_smoke_conus13km_hrrr_warm 073 failed in run_test failed -Test rrfs_smoke_conus13km_hrrr_warm_2threads 074 failed in check_result failed -Test rrfs_smoke_conus13km_hrrr_warm_2threads 074 failed in run_test failed -Test rrfs_conus13km_hrrr_warm 075 failed in check_result failed -Test rrfs_conus13km_hrrr_warm 075 failed in run_test failed -Test rrfs_smoke_conus13km_radar_tten_warm 076 failed in check_result failed -Test rrfs_smoke_conus13km_radar_tten_warm 076 failed in run_test failed -Test rrfs_smoke_conus13km_hrrr_warm_debug 084 failed in check_result failed -Test rrfs_smoke_conus13km_hrrr_warm_debug 084 failed in run_test failed -Test rrfs_smoke_conus13km_hrrr_warm_debug_2threads 085 failed in check_result failed -Test rrfs_smoke_conus13km_hrrr_warm_debug_2threads 085 failed in run_test failed -Test rrfs_conus13km_hrrr_warm_debug 086 failed in check_result failed -Test rrfs_conus13km_hrrr_warm_debug 086 failed in run_test failed -Test control_CubedSphereGrid_debug 087 failed in check_result failed -Test control_CubedSphereGrid_debug 087 failed in run_test failed -Test control_wrtGauss_netcdf_parallel_debug 088 failed in check_result failed -Test control_wrtGauss_netcdf_parallel_debug 088 failed in run_test failed -Test control_stochy_debug 089 failed in check_result failed -Test control_stochy_debug 089 failed in run_test failed -Test control_lndp_debug 090 failed in check_result failed -Test control_lndp_debug 090 failed in run_test failed -Test control_csawmg_debug 091 failed in check_result failed -Test control_csawmg_debug 091 failed in run_test failed -Test control_csawmgt_debug 092 failed in check_result failed -Test control_csawmgt_debug 092 failed in run_test failed -Test control_ras_debug 093 failed in check_result failed -Test control_ras_debug 093 failed in run_test failed -Test control_diag_debug 094 failed in check_result failed -Test control_diag_debug 094 failed in run_test failed -Test control_debug_p8 095 failed in check_result failed -Test control_debug_p8 095 failed in run_test failed -Test regional_debug 096 failed in check_result failed -Test regional_debug 096 failed in run_test failed -Test rap_control_debug 097 failed in check_result failed -Test rap_control_debug 097 failed in run_test failed -Test hrrr_control_debug 098 failed in check_result failed -Test hrrr_control_debug 098 failed in run_test failed -Test rap_unified_drag_suite_debug 099 failed in check_result failed -Test rap_unified_drag_suite_debug 099 failed in run_test failed -Test rap_diag_debug 100 failed in check_result failed -Test rap_diag_debug 100 failed in run_test failed -Test rap_cires_ugwp_debug 101 failed in check_result failed -Test rap_cires_ugwp_debug 101 failed in run_test failed -Test rap_unified_ugwp_debug 102 failed in check_result failed -Test rap_unified_ugwp_debug 102 failed in run_test failed -Test rap_lndp_debug 103 failed in check_result failed -Test rap_lndp_debug 103 failed in run_test failed -Test rap_progcld_thompson_debug 104 failed in check_result failed -Test rap_progcld_thompson_debug 104 failed in run_test failed -Test rap_noah_debug 105 failed in check_result failed -Test rap_noah_debug 105 failed in run_test failed -Test rap_sfcdiff_debug 106 failed in check_result failed -Test rap_sfcdiff_debug 106 failed in run_test failed -Test rap_noah_sfcdiff_cires_ugwp_debug 107 failed in check_result failed -Test rap_noah_sfcdiff_cires_ugwp_debug 107 failed in run_test failed -Test rrfs_v1beta_debug 108 failed in check_result failed -Test rrfs_v1beta_debug 108 failed in run_test failed -Test rap_clm_lake_debug 109 failed in check_result failed -Test rap_clm_lake_debug 109 failed in run_test failed -Test rap_flake_debug 110 failed in check_result failed -Test rap_flake_debug 110 failed in run_test failed -Test control_wam_debug 111 failed in check_result failed -Test control_wam_debug 111 failed in run_test failed -Test regional_spp_sppt_shum_skeb_dyn32_phy32 112 failed in check_result failed -Test regional_spp_sppt_shum_skeb_dyn32_phy32 112 failed in run_test failed -Test rap_control_dyn32_phy32 113 failed in check_result failed -Test rap_control_dyn32_phy32 113 failed in run_test failed -Test hrrr_control_dyn32_phy32 114 failed in check_result failed -Test hrrr_control_dyn32_phy32 114 failed in run_test failed -Test rap_2threads_dyn32_phy32 115 failed in check_result failed -Test rap_2threads_dyn32_phy32 115 failed in run_test failed -Test hrrr_control_2threads_dyn32_phy32 116 failed in check_result failed -Test hrrr_control_2threads_dyn32_phy32 116 failed in run_test failed -Test hrrr_control_decomp_dyn32_phy32 117 failed in check_result failed -Test hrrr_control_decomp_dyn32_phy32 117 failed in run_test failed -Test rap_control_dyn64_phy32 120 failed in check_result failed -Test rap_control_dyn64_phy32 120 failed in run_test failed -Test rap_control_debug_dyn32_phy32 121 failed in check_result failed -Test rap_control_debug_dyn32_phy32 121 failed in run_test failed -Test hrrr_control_debug_dyn32_phy32 122 failed in check_result failed -Test hrrr_control_debug_dyn32_phy32 122 failed in run_test failed -Test rap_control_dyn64_phy32_debug 123 failed in check_result failed -Test rap_control_dyn64_phy32_debug 123 failed in run_test failed -Test datm_cdeps_control_cfsr 142 failed in check_result failed -Test datm_cdeps_control_cfsr 142 failed in run_test failed -Test datm_cdeps_control_gefs 144 failed in check_result failed -Test datm_cdeps_control_gefs 144 failed in run_test failed -Test datm_cdeps_iau_gefs 145 failed in check_result failed -Test datm_cdeps_iau_gefs 145 failed in run_test failed -Test datm_cdeps_stochy_gefs 146 failed in check_result failed -Test datm_cdeps_stochy_gefs 146 failed in run_test failed -Test datm_cdeps_ciceC_cfsr 147 failed in check_result failed -Test datm_cdeps_ciceC_cfsr 147 failed in run_test failed -Test datm_cdeps_bulk_cfsr 148 failed in check_result failed -Test datm_cdeps_bulk_cfsr 148 failed in run_test failed -Test datm_cdeps_bulk_gefs 149 failed in check_result failed -Test datm_cdeps_bulk_gefs 149 failed in run_test failed -Test datm_cdeps_mx025_cfsr 150 failed in check_result failed -Test datm_cdeps_mx025_cfsr 150 failed in run_test failed -Test datm_cdeps_mx025_gefs 151 failed in check_result failed -Test datm_cdeps_mx025_gefs 151 failed in run_test failed -Test datm_cdeps_multiple_files_cfsr 152 failed in check_result failed -Test datm_cdeps_multiple_files_cfsr 152 failed in run_test failed -Test datm_cdeps_3072x1536_cfsr 153 failed in check_result failed -Test datm_cdeps_3072x1536_cfsr 153 failed in run_test failed -Test datm_cdeps_gfs 154 failed in check_result failed -Test datm_cdeps_gfs 154 failed in run_test failed -Test datm_cdeps_debug_cfsr 155 failed in check_result failed -Test datm_cdeps_debug_cfsr 155 failed in run_test failed -Test datm_cdeps_control_cfsr_faster 156 failed in check_result failed -Test datm_cdeps_control_cfsr_faster 156 failed in run_test failed -Test datm_cdeps_lnd_gswp3 157 failed in check_result failed -Test datm_cdeps_lnd_gswp3 157 failed in run_test failed -Test regional_atmaq 165 failed in check_result failed -Test regional_atmaq 165 failed in run_test failed -Test regional_atmaq_faster 167 failed in check_result failed -Test regional_atmaq_faster 167 failed in run_test failed - -REGRESSION TEST FAILED -Fri May 12 07:23:50 UTC 2023 -Elapsed time: 18h:35m:35s. Have a nice day! - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_control -Checking test 01 rap_control results .... + 0: The total amount of wall time = 271.298424 + 0: The maximum resident set size (KB) = 1169708 + +Test 110 rap_sfcdiff_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 111 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 460.870467 - 0: The maximum resident set size (KB) = 1048092 + 0: The total amount of wall time = 441.480768 + 0: The maximum resident set size (KB) = 1163336 +Test 111 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_spp_sppt_shum_skeb -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/regional_spp_sppt_shum_skeb -Checking test 2 regional_spp_sppt_shum_skeb results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF01 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 231.765169 - 0: The maximum resident set size (KB) = 1181664 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/rrfs_v1beta_debug +Checking test 112 rrfs_v1beta_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 268.822563 + 0: The maximum resident set size (KB) = 1161800 +Test 112 rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_decomp -Checking test 3 rap_decomp results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_clm_lake_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/rap_clm_lake_debug +Checking test 113 rap_clm_lake_debug results .... Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 330.038512 + 0: The maximum resident set size (KB) = 1170644 - 0: The total amount of wall time = 481.737377 - 0: The maximum resident set size (KB) = 992032 +Test 113 rap_clm_lake_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_2threads -Checking test 4 rap_2threads results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_flake_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/rap_flake_debug +Checking test 114 rap_flake_debug results .... Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 267.540275 + 0: The maximum resident set size (KB) = 1169676 + +Test 114 rap_flake_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/control_wam_debug +Checking test 115 control_wam_debug results .... + Comparing sfcf019.nc .........OK + Comparing atmf019.nc .........OK + + 0: The total amount of wall time = 269.095020 + 0: The maximum resident set size (KB) = 519320 + +Test 115 control_wam_debug PASS - 0: The total amount of wall time = 437.879086 - 0: The maximum resident set size (KB) = 1101756 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 116 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF01 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF01 .........OK -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_sfcdiff -Checking test 5 rap_sfcdiff results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + 0: The total amount of wall time = 218.052233 + 0: The maximum resident set size (KB) = 1047940 - 0: The total amount of wall time = 460.389691 - 0: The maximum resident set size (KB) = 1045744 +Test 116 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_sfcdiff_decomp -Checking test 6 rap_sfcdiff_decomp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/rap_control_dyn32_phy32 +Checking test 117 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -5334,13 +4083,15 @@ Checking test 6 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 485.026699 - 0: The maximum resident set size (KB) = 997320 + 0: The total amount of wall time = 382.933596 + 0: The maximum resident set size (KB) = 994092 +Test 117 rap_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/hrrr_control -Checking test 7 hrrr_control results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/hrrr_control_dyn32_phy32 +Checking test 118 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -5386,13 +4137,69 @@ Checking test 7 hrrr_control results .... Comparing 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.426870 - 0: The maximum resident set size (KB) = 1045188 + 0: The total amount of wall time = 190.111731 + 0: The maximum resident set size (KB) = 943664 + +Test 118 hrrr_control_dyn32_phy32 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/rap_2threads_dyn32_phy32 +Checking test 119 rap_2threads_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 365.607569 + 0: The maximum resident set size (KB) = 1021492 + +Test 119 rap_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/hrrr_control_decomp -Checking test 8 hrrr_control_decomp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/hrrr_control_2threads_dyn32_phy32 +Checking test 120 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -5438,13 +4245,15 @@ Checking test 8 hrrr_control_decomp results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 448.792812 - 0: The maximum resident set size (KB) = 998780 + 0: The total amount of wall time = 174.873566 + 0: The maximum resident set size (KB) = 930428 +Test 120 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/hrrr_control_2threads -Checking test 9 hrrr_control_2threads results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/hrrr_control_decomp_dyn32_phy32 +Checking test 121 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -5490,24 +4299,18 @@ Checking test 9 hrrr_control_2threads results .... Comparing 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.896439 - 0: The maximum resident set size (KB) = 1076848 + 0: The total amount of wall time = 200.567371 + 0: The maximum resident set size (KB) = 873060 +Test 121 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rrfs_v1beta -Checking test 10 rrfs_v1beta results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/rap_restart_dyn32_phy32 +Checking test 122 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK @@ -5542,33 +4345,29 @@ Checking test 10 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 457.112711 - 0: The maximum resident set size (KB) = 1049104 + 0: The total amount of wall time = 282.428536 + 0: The maximum resident set size (KB) = 951608 +Test 122 rap_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_v1nssl -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rrfs_v1nssl -Checking test 11 rrfs_v1nssl results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/hrrr_control_restart_dyn32_phy32 +Checking test 123 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 536.557757 - 0: The maximum resident set size (KB) = 665360 + 0: The total amount of wall time = 100.200294 + 0: The maximum resident set size (KB) = 860316 + +Test 123 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rrfs_v1nssl_nohailnoccn -Checking test 12 rrfs_v1nssl_nohailnoccn results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/rap_control_dyn64_phy32 +Checking test 124 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -5581,556 +4380,636 @@ Checking test 12 rrfs_v1nssl_nohailnoccn results .... 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 = 522.726999 - 0: The maximum resident set size (KB) = 752812 + 0: The total amount of wall time = 243.555150 + 0: The maximum resident set size (KB) = 956476 +Test 124 rap_control_dyn64_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rrfs_smoke_conus13km_hrrr_warm -Checking test 13 rrfs_smoke_conus13km_hrrr_warm results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/rap_control_debug_dyn32_phy32 +Checking test 125 rap_control_debug_dyn32_phy32 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 - 0: The total amount of wall time = 152.138144 - 0: The maximum resident set size (KB) = 1031220 + 0: The total amount of wall time = 267.550309 + 0: The maximum resident set size (KB) = 1056656 + +Test 125 rap_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rrfs_smoke_conus13km_hrrr_warm_2threads -Checking test 14 rrfs_smoke_conus13km_hrrr_warm_2threads results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/hrrr_control_debug_dyn32_phy32 +Checking test 126 hrrr_control_debug_dyn32_phy32 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 - 0: The total amount of wall time = 92.747663 - 0: The maximum resident set size (KB) = 942036 + 0: The total amount of wall time = 261.578261 + 0: The maximum resident set size (KB) = 1050744 +Test 126 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rrfs_conus13km_hrrr_warm -Checking test 15 rrfs_conus13km_hrrr_warm results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_control_debug_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/rap_control_dyn64_phy32_debug +Checking test 127 rap_control_dyn64_phy32_debug 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 - 0: The total amount of wall time = 133.503022 - 0: The maximum resident set size (KB) = 979936 + 0: The total amount of wall time = 278.413366 + 0: The maximum resident set size (KB) = 1096964 +Test 127 rap_control_dyn64_phy32_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rrfs_smoke_conus13km_radar_tten_warm -Checking test 16 rrfs_smoke_conus13km_radar_tten_warm 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 - 0: The total amount of wall time = 152.491705 - 0: The maximum resident set size (KB) = 1030160 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_atm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/hafs_regional_atm +Checking test 128 hafs_regional_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing HURPRS.GrbF06 .........OK + 0: The total amount of wall time = 234.280833 + 0: The maximum resident set size (KB) = 1053056 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rrfs_smoke_conus13km_hrrr_warm_debug -Checking test 17 rrfs_smoke_conus13km_hrrr_warm_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +Test 128 hafs_regional_atm PASS - 0: The total amount of wall time = 832.711387 - 0: The maximum resident set size (KB) = 1056876 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/hafs_regional_atm_thompson_gfdlsf +Checking test 129 hafs_regional_atm_thompson_gfdlsf results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rrfs_smoke_conus13km_hrrr_warm_debug_2threads -Checking test 18 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + 0: The total amount of wall time = 331.325458 + 0: The maximum resident set size (KB) = 1415724 - 0: The total amount of wall time = 465.208216 - 0: The maximum resident set size (KB) = 967464 +Test 129 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rrfs_conus13km_hrrr_warm_debug -Checking test 19 rrfs_conus13km_hrrr_warm_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/hafs_regional_atm_ocn +Checking test 130 hafs_regional_atm_ocn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing archv.2019_241_06.a .........OK + Comparing archs.2019_241_06.a .........OK + Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + + 0: The total amount of wall time = 386.761705 + 0: The maximum resident set size (KB) = 1226688 + +Test 130 hafs_regional_atm_ocn PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_atm_wav +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/hafs_regional_atm_wav +Checking test 131 hafs_regional_atm_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing 20190829.060000.out_grd.ww3 .........OK + Comparing 20190829.060000.out_pnt.ww3 .........OK + Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + + 0: The total amount of wall time = 738.870182 + 0: The maximum resident set size (KB) = 1255188 + +Test 131 hafs_regional_atm_wav PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/hafs_regional_atm_ocn_wav +Checking test 132 hafs_regional_atm_ocn_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing archv.2019_241_06.a .........OK + Comparing archs.2019_241_06.a .........OK + Comparing 20190829.060000.out_grd.ww3 .........OK + Comparing 20190829.060000.out_pnt.ww3 .........OK + Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + + 0: The total amount of wall time = 838.487784 + 0: The maximum resident set size (KB) = 1268860 + +Test 132 hafs_regional_atm_ocn_wav PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/hafs_regional_1nest_atm +Checking test 133 hafs_regional_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + + 0: The total amount of wall time = 318.524955 + 0: The maximum resident set size (KB) = 500900 + +Test 133 hafs_regional_1nest_atm PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/hafs_regional_telescopic_2nests_atm +Checking test 134 hafs_regional_telescopic_2nests_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing atm.nest03.f006.nc .........OK + Comparing sfc.nest03.f006.nc .........OK + + 0: The total amount of wall time = 363.169857 + 0: The maximum resident set size (KB) = 508840 + +Test 134 hafs_regional_telescopic_2nests_atm PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_global_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/hafs_global_1nest_atm +Checking test 135 hafs_global_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + + 0: The total amount of wall time = 147.142585 + 0: The maximum resident set size (KB) = 351200 + +Test 135 hafs_global_1nest_atm PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_global_multiple_4nests_atm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/hafs_global_multiple_4nests_atm +Checking test 136 hafs_global_multiple_4nests_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing atm.nest03.f006.nc .........OK + Comparing sfc.nest03.f006.nc .........OK + Comparing atm.nest04.f006.nc .........OK + Comparing sfc.nest04.f006.nc .........OK + Comparing atm.nest05.f006.nc .........OK + Comparing sfc.nest05.f006.nc .........OK + Comparing HURPRS.GrbF06 .........OK + Comparing HURPRS.GrbF06.nest02 .........OK + Comparing HURPRS.GrbF06.nest03 .........OK + Comparing HURPRS.GrbF06.nest04 .........OK + Comparing HURPRS.GrbF06.nest05 .........OK + + 0: The total amount of wall time = 413.038886 + 0: The maximum resident set size (KB) = 450184 - 0: The total amount of wall time = 745.046241 - 0: The maximum resident set size (KB) = 1013404 +Test 136 hafs_global_multiple_4nests_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_CubedSphereGrid_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_CubedSphereGrid_debug -Checking test 20 control_CubedSphereGrid_debug results .... - Comparing sfcf000.tile1.nc .........OK - Comparing sfcf000.tile2.nc .........OK - Comparing sfcf000.tile3.nc .........OK - Comparing sfcf000.tile4.nc .........OK - Comparing sfcf000.tile5.nc .........OK - Comparing sfcf000.tile6.nc .........OK - Comparing sfcf001.tile1.nc .........OK - Comparing sfcf001.tile2.nc .........OK - Comparing sfcf001.tile3.nc .........OK - Comparing sfcf001.tile4.nc .........OK - Comparing sfcf001.tile5.nc .........OK - Comparing sfcf001.tile6.nc .........OK - Comparing atmf000.tile1.nc .........OK - Comparing atmf000.tile2.nc .........OK - Comparing atmf000.tile3.nc .........OK - Comparing atmf000.tile4.nc .........OK - Comparing atmf000.tile5.nc .........OK - Comparing atmf000.tile6.nc .........OK - Comparing atmf001.tile1.nc .........OK - Comparing atmf001.tile2.nc .........OK - Comparing atmf001.tile3.nc .........OK - Comparing atmf001.tile4.nc .........OK - Comparing atmf001.tile5.nc .........OK - Comparing atmf001.tile6.nc .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/hafs_regional_specified_moving_1nest_atm +Checking test 137 hafs_regional_specified_moving_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing HURPRS.GrbF06 .........OK + Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 150.078971 - 0: The maximum resident set size (KB) = 763448 + 0: The total amount of wall time = 204.000989 + 0: The maximum resident set size (KB) = 520196 +Test 137 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_wrtGauss_netcdf_parallel_debug -Checking test 21 control_wrtGauss_netcdf_parallel_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - 0: The total amount of wall time = 145.638031 - 0: The maximum resident set size (KB) = 786808 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/hafs_regional_storm_following_1nest_atm +Checking test 138 hafs_regional_storm_following_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + 0: The total amount of wall time = 193.998472 + 0: The maximum resident set size (KB) = 521764 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_stochy_debug -Checking test 22 control_stochy_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +Test 138 hafs_regional_storm_following_1nest_atm PASS - 0: The total amount of wall time = 165.102886 - 0: The maximum resident set size (KB) = 794524 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/hafs_regional_storm_following_1nest_atm_ocn +Checking test 139 hafs_regional_storm_following_1nest_atm_ocn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing archv.2020_238_18.a .........OK + Comparing archs.2020_238_18.a .........OK + + 0: The total amount of wall time = 224.027715 + 0: The maximum resident set size (KB) = 564040 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_lndp_debug -Checking test 23 control_lndp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +Test 139 hafs_regional_storm_following_1nest_atm_ocn PASS - 0: The total amount of wall time = 146.621086 - 0: The maximum resident set size (KB) = 790080 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_global_storm_following_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/hafs_global_storm_following_1nest_atm +Checking test 140 hafs_global_storm_following_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_csawmg_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_csawmg_debug -Checking test 24 control_csawmg_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + 0: The total amount of wall time = 61.105981 + 0: The maximum resident set size (KB) = 369592 - 0: The total amount of wall time = 223.535451 - 0: The maximum resident set size (KB) = 838036 +Test 140 hafs_global_storm_following_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_csawmgt_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_csawmgt_debug -Checking test 25 control_csawmgt_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/hafs_regional_storm_following_1nest_atm_ocn_debug +Checking test 141 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 224.238890 - 0: The maximum resident set size (KB) = 839484 + 0: The total amount of wall time = 709.674405 + 0: The maximum resident set size (KB) = 585480 +Test 141 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_ras_debug -Checking test 26 control_ras_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - 0: The total amount of wall time = 148.821949 - 0: The maximum resident set size (KB) = 797996 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 142 hafs_regional_storm_following_1nest_atm_ocn_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing archv.2020_238_18.a .........OK + Comparing archs.2020_238_18.a .........OK + Comparing 20200825.180000.out_grd.ww3 .........OK + Comparing 20200825.180000.out_pnt.ww3 .........OK + 0: The total amount of wall time = 480.548578 + 0: The maximum resident set size (KB) = 621444 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_diag_debug -Checking test 27 control_diag_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +Test 142 hafs_regional_storm_following_1nest_atm_ocn_wav PASS - 0: The total amount of wall time = 154.304266 - 0: The maximum resident set size (KB) = 846092 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_docn +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/hafs_regional_docn +Checking test 143 hafs_regional_docn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_debug_p8 -Checking test 28 control_debug_p8 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + 0: The total amount of wall time = 360.563321 + 0: The maximum resident set size (KB) = 1229472 - 0: The total amount of wall time = 161.708863 - 0: The maximum resident set size (KB) = 1610228 +Test 143 hafs_regional_docn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/regional_debug -Checking test 29 regional_debug results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_docn_oisst +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/hafs_regional_docn_oisst +Checking test 144 hafs_regional_docn_oisst results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 980.782012 - 0: The maximum resident set size (KB) = 876904 + 0: The total amount of wall time = 360.153738 + 0: The maximum resident set size (KB) = 1218088 +Test 144 hafs_regional_docn_oisst PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_control_debug -Checking test 30 rap_control_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.890726 - 0: The maximum resident set size (KB) = 1163616 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_datm_cdeps +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/hafs_regional_datm_cdeps +Checking test 145 hafs_regional_datm_cdeps results .... + Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK + Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK + Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK + 0: The total amount of wall time = 966.772260 + 0: The maximum resident set size (KB) = 1040724 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/hrrr_control_debug -Checking test 31 hrrr_control_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +Test 145 hafs_regional_datm_cdeps PASS - 0: The total amount of wall time = 264.999828 - 0: The maximum resident set size (KB) = 1163356 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/datm_cdeps_control_cfsr +Checking test 146 datm_cdeps_control_cfsr results .... + Comparing RESTART/20111002.000000.MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_unified_drag_suite_debug -Checking test 32 rap_unified_drag_suite_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + 0: The total amount of wall time = 162.528399 + 0: The maximum resident set size (KB) = 1062616 - 0: The total amount of wall time = 271.532738 - 0: The maximum resident set size (KB) = 1168140 +Test 146 datm_cdeps_control_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_diag_debug -Checking test 33 rap_diag_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/datm_cdeps_restart_cfsr +Checking test 147 datm_cdeps_restart_cfsr results .... + Comparing RESTART/20111002.000000.MOM.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 = 287.003819 - 0: The maximum resident set size (KB) = 1254120 + 0: The total amount of wall time = 93.166276 + 0: The maximum resident set size (KB) = 1012404 +Test 147 datm_cdeps_restart_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_cires_ugwp_debug -Checking test 34 rap_cires_ugwp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.081259 - 0: The maximum resident set size (KB) = 1157092 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/datm_cdeps_control_gefs +Checking test 148 datm_cdeps_control_gefs results .... + Comparing RESTART/20111002.000000.MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK + 0: The total amount of wall time = 150.859081 + 0: The maximum resident set size (KB) = 972996 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_unified_ugwp_debug -Checking test 35 rap_unified_ugwp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +Test 148 datm_cdeps_control_gefs PASS - 0: The total amount of wall time = 277.518716 - 0: The maximum resident set size (KB) = 1174452 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_iau_gefs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/datm_cdeps_iau_gefs +Checking test 149 datm_cdeps_iau_gefs 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 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_lndp_debug -Checking test 36 rap_lndp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + 0: The total amount of wall time = 156.564451 + 0: The maximum resident set size (KB) = 964232 - 0: The total amount of wall time = 275.802324 - 0: The maximum resident set size (KB) = 1166704 +Test 149 datm_cdeps_iau_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_progcld_thompson_debug -Checking test 37 rap_progcld_thompson_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_stochy_gefs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/datm_cdeps_stochy_gefs +Checking test 150 datm_cdeps_stochy_gefs 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 = 269.962379 - 0: The maximum resident set size (KB) = 1136576 + 0: The total amount of wall time = 151.042061 + 0: The maximum resident set size (KB) = 964156 +Test 150 datm_cdeps_stochy_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_noah_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_noah_debug -Checking test 38 rap_noah_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - 0: The total amount of wall time = 265.084765 - 0: The maximum resident set size (KB) = 1164764 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_ciceC_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/datm_cdeps_ciceC_cfsr +Checking test 151 datm_cdeps_ciceC_cfsr results .... + Comparing RESTART/20111002.000000.MOM.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 = 157.720319 + 0: The maximum resident set size (KB) = 1048588 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_sfcdiff_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_sfcdiff_debug -Checking test 39 rap_sfcdiff_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +Test 151 datm_cdeps_ciceC_cfsr PASS - 0: The total amount of wall time = 271.177082 - 0: The maximum resident set size (KB) = 1157700 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/datm_cdeps_bulk_cfsr +Checking test 152 datm_cdeps_bulk_cfsr results .... + Comparing RESTART/20111002.000000.MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 40 rap_noah_sfcdiff_cires_ugwp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + 0: The total amount of wall time = 156.896291 + 0: The maximum resident set size (KB) = 1052272 - 0: The total amount of wall time = 456.268386 - 0: The maximum resident set size (KB) = 1168632 +Test 152 datm_cdeps_bulk_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rrfs_v1beta_debug -Checking test 41 rrfs_v1beta_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/datm_cdeps_bulk_gefs +Checking test 153 datm_cdeps_bulk_gefs 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 = 265.976428 - 0: The maximum resident set size (KB) = 1162316 + 0: The total amount of wall time = 148.965266 + 0: The maximum resident set size (KB) = 963512 +Test 153 datm_cdeps_bulk_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_clm_lake_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_clm_lake_debug -Checking test 42 rap_clm_lake_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - 0: The total amount of wall time = 326.041910 - 0: The maximum resident set size (KB) = 1171816 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/datm_cdeps_mx025_cfsr +Checking test 154 datm_cdeps_mx025_cfsr results .... + Comparing RESTART/20111001.120000.MOM.res.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK + Comparing RESTART/iced.2011-10-01-43200.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK + + 0: The total amount of wall time = 445.017783 + 0: The maximum resident set size (KB) = 879352 +Test 154 datm_cdeps_mx025_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_flake_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_flake_debug -Checking test 43 rap_flake_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.298331 - 0: The maximum resident set size (KB) = 1167068 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/datm_cdeps_mx025_gefs +Checking test 155 datm_cdeps_mx025_gefs results .... + Comparing RESTART/20111001.120000.MOM.res.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK + Comparing RESTART/iced.2011-10-01-43200.nc .........OK + Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK + + 0: The total amount of wall time = 420.735357 + 0: The maximum resident set size (KB) = 924756 +Test 155 datm_cdeps_mx025_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/control_wam_debug -Checking test 44 control_wam_debug results .... - Comparing sfcf019.nc .........OK - Comparing atmf019.nc .........OK - 0: The total amount of wall time = 268.602090 - 0: The maximum resident set size (KB) = 519324 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/datm_cdeps_multiple_files_cfsr +Checking test 156 datm_cdeps_multiple_files_cfsr results .... + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK + 0: The total amount of wall time = 159.911473 + 0: The maximum resident set size (KB) = 1059956 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/regional_spp_sppt_shum_skeb_dyn32_phy32 -Checking test 45 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF01 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF01 .........OK +Test 156 datm_cdeps_multiple_files_cfsr PASS - 0: The total amount of wall time = 220.599977 - 0: The maximum resident set size (KB) = 1079000 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/datm_cdeps_3072x1536_cfsr +Checking test 157 datm_cdeps_3072x1536_cfsr 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 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_control_dyn32_phy32 -Checking test 46 rap_control_dyn32_phy32 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + 0: The total amount of wall time = 219.741124 + 0: The maximum resident set size (KB) = 2367236 - 0: The total amount of wall time = 382.479354 - 0: The maximum resident set size (KB) = 994612 +Test 157 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/hrrr_control_dyn32_phy32 -Checking test 47 hrrr_control_dyn32_phy32 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 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_gfs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/datm_cdeps_gfs +Checking test 158 datm_cdeps_gfs 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 = 191.526185 - 0: The maximum resident set size (KB) = 950824 + 0: The total amount of wall time = 222.900137 + 0: The maximum resident set size (KB) = 2357520 +Test 158 datm_cdeps_gfs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_2threads_dyn32_phy32 -Checking test 48 rap_2threads_dyn32_phy32 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 + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/datm_cdeps_debug_cfsr +Checking test 159 datm_cdeps_debug_cfsr 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 = 345.175497 + 0: The maximum resident set size (KB) = 982328 + +Test 159 datm_cdeps_debug_cfsr PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_control_cfsr_faster +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/datm_cdeps_control_cfsr_faster +Checking test 160 datm_cdeps_control_cfsr_faster results .... + Comparing RESTART/20111002.000000.MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK + + 0: The total amount of wall time = 156.756678 + 0: The maximum resident set size (KB) = 1059708 + +Test 160 datm_cdeps_control_cfsr_faster PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_lnd_gswp3 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/datm_cdeps_lnd_gswp3 +Checking test 161 datm_cdeps_lnd_gswp3 results .... + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK + + 0: The total amount of wall time = 7.326588 + 0: The maximum resident set size (KB) = 260276 + +Test 161 datm_cdeps_lnd_gswp3 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_lnd_gswp3 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/datm_cdeps_lnd_gswp3_rst +Checking test 162 datm_cdeps_lnd_gswp3_rst results .... + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK + + 0: The total amount of wall time = 12.903952 + 0: The maximum resident set size (KB) = 261492 + +Test 162 datm_cdeps_lnd_gswp3_rst PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_p8_atmlnd_sbs +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/control_p8_atmlnd_sbs +Checking test 163 control_p8_atmlnd_sbs results .... + Comparing sfcf000.tile1.nc .........OK + Comparing sfcf000.tile2.nc .........OK + Comparing sfcf000.tile3.nc .........OK + Comparing sfcf000.tile4.nc .........OK + Comparing sfcf000.tile5.nc .........OK + Comparing sfcf000.tile6.nc .........OK + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf000.tile1.nc .........OK + Comparing atmf000.tile2.nc .........OK + Comparing atmf000.tile3.nc .........OK + Comparing atmf000.tile4.nc .........OK + Comparing atmf000.tile5.nc .........OK + Comparing atmf000.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -6163,129 +5042,87 @@ Checking test 48 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing ufs.cpld.cpl.hi.lnd.2021-03-22-43200.nc .........OK + Comparing ufs.cpld.cpl.hi.lnd.2021-03-23-21600.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile6.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 372.641579 - 0: The maximum resident set size (KB) = 981160 - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/hrrr_control_2threads_dyn32_phy32 -Checking test 49 hrrr_control_2threads_dyn32_phy32 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 = 202.160900 + 0: The maximum resident set size (KB) = 1604688 - 0: The total amount of wall time = 175.595181 - 0: The maximum resident set size (KB) = 914264 +Test 163 control_p8_atmlnd_sbs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/hrrr_control_decomp_dyn32_phy32 -Checking test 50 hrrr_control_decomp_dyn32_phy32 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/atmwav_control_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/atmwav_control_noaero_p8 +Checking test 164 atmwav_control_noaero_p8 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 + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + Comparing RESTART/ufs.atmw.cpl.r.2021-03-22-64800.nc .........OK + Comparing 20210322.180000.out_pnt.ww3 .........OK + Comparing 20210322.180000.out_grd.ww3 .........OK + Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 200.452825 - 0: The maximum resident set size (KB) = 888824 + 0: The total amount of wall time = 92.850866 + 0: The maximum resident set size (KB) = 1632852 +Test 164 atmwav_control_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_control_dyn64_phy32 -Checking test 51 rap_control_dyn64_phy32 results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_atmwav +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/control_atmwav +Checking test 165 control_atmwav 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 @@ -6319,222 +5156,170 @@ Checking test 51 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 248.091960 - 0: The maximum resident set size (KB) = 966532 - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_control_debug_dyn32_phy32 -Checking test 52 rap_control_debug_dyn32_phy32 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + 0: The total amount of wall time = 86.987136 + 0: The maximum resident set size (KB) = 660880 - 0: The total amount of wall time = 261.310953 - 0: The maximum resident set size (KB) = 1058124 +Test 165 control_atmwav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/hrrr_control_debug_dyn32_phy32 -Checking test 53 hrrr_control_debug_dyn32_phy32 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/atmaero_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/atmaero_control_p8 +Checking test 166 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK + Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.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 = 230.392261 + 0: The maximum resident set size (KB) = 2967508 - 0: The total amount of wall time = 260.285779 - 0: The maximum resident set size (KB) = 1050008 +Test 166 atmaero_control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/rap_control_dyn64_phy32_debug -Checking test 54 rap_control_dyn64_phy32_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/atmaero_control_p8_rad +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/atmaero_control_p8_rad +Checking test 167 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK + Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 274.942910 - 0: The maximum resident set size (KB) = 1102260 - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/datm_cdeps_control_cfsr -Checking test 55 datm_cdeps_control_cfsr results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 153.286874 - 0: The maximum resident set size (KB) = 1062580 - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/datm_cdeps_control_gefs -Checking test 56 datm_cdeps_control_gefs 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.851364 - 0: The maximum resident set size (KB) = 966652 - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_iau_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/datm_cdeps_iau_gefs -Checking test 57 datm_cdeps_iau_gefs 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.086504 - 0: The maximum resident set size (KB) = 963168 - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_stochy_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/datm_cdeps_stochy_gefs -Checking test 58 datm_cdeps_stochy_gefs results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 151.073239 - 0: The maximum resident set size (KB) = 966184 - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_ciceC_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/datm_cdeps_ciceC_cfsr -Checking test 59 datm_cdeps_ciceC_cfsr results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 154.478362 - 0: The maximum resident set size (KB) = 1062744 - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/datm_cdeps_bulk_cfsr -Checking test 60 datm_cdeps_bulk_cfsr results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 153.678352 - 0: The maximum resident set size (KB) = 1065804 - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/datm_cdeps_bulk_gefs -Checking test 61 datm_cdeps_bulk_gefs 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 = 152.308809 - 0: The maximum resident set size (KB) = 961960 - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/datm_cdeps_mx025_cfsr -Checking test 62 datm_cdeps_mx025_cfsr results .... - Comparing RESTART/20111001.120000.MOM.res.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK - Comparing RESTART/iced.2011-10-01-43200.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - - 0: The total amount of wall time = 416.023679 - 0: The maximum resident set size (KB) = 884160 - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/datm_cdeps_mx025_gefs -Checking test 63 datm_cdeps_mx025_gefs results .... - Comparing RESTART/20111001.120000.MOM.res.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK - Comparing RESTART/iced.2011-10-01-43200.nc .........OK - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - - 0: The total amount of wall time = 435.041871 - 0: The maximum resident set size (KB) = 936316 - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/datm_cdeps_multiple_files_cfsr -Checking test 64 datm_cdeps_multiple_files_cfsr results .... - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 153.930114 - 0: The maximum resident set size (KB) = 1058160 - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/datm_cdeps_3072x1536_cfsr -Checking test 65 datm_cdeps_3072x1536_cfsr results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 217.342050 - 0: The maximum resident set size (KB) = 2360808 - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_gfs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/datm_cdeps_gfs -Checking test 66 datm_cdeps_gfs 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 = 222.523263 - 0: The maximum resident set size (KB) = 2366340 - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/datm_cdeps_debug_cfsr -Checking test 67 datm_cdeps_debug_cfsr results .... - Comparing RESTART/20111001.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-01-21600.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - - 0: The total amount of wall time = 357.615414 - 0: The maximum resident set size (KB) = 978028 + 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 = 281.758412 + 0: The maximum resident set size (KB) = 3046824 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_control_cfsr_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/datm_cdeps_control_cfsr_faster -Checking test 68 datm_cdeps_control_cfsr_faster results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK +Test 167 atmaero_control_p8_rad PASS - 0: The total amount of wall time = 156.381175 - 0: The maximum resident set size (KB) = 1047256 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/atmaero_control_p8_rad_micro +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/atmaero_control_p8_rad_micro +Checking test 168 atmaero_control_p8_rad_micro 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 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/datm_cdeps_lnd_gswp3 -Checking test 69 datm_cdeps_lnd_gswp3 results .... - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK + 0: The total amount of wall time = 287.362902 + 0: The maximum resident set size (KB) = 3042568 - 0: The total amount of wall time = 6.984228 - 0: The maximum resident set size (KB) = 258752 +Test 168 atmaero_control_p8_rad_micro PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_atmaq -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/regional_atmaq -Checking test 70 regional_atmaq results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_atmaq +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/regional_atmaq +Checking test 169 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -6549,13 +5334,36 @@ Checking test 70 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 645.553947 - 0: The maximum resident set size (KB) = 1449952 + 0: The total amount of wall time = 627.590217 + 0: The maximum resident set size (KB) = 1460696 + +Test 169 regional_atmaq PASS + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_atmaq_debug +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/regional_atmaq_debug +Checking test 170 regional_atmaq_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing RESTART/20190801.130000.coupler.res .........OK + Comparing RESTART/20190801.130000.fv_core.res.nc .........OK + Comparing RESTART/20190801.130000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20190801.130000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20190801.130000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20190801.130000.phy_data.nc .........OK + Comparing RESTART/20190801.130000.sfc_data.nc .........OK + + 0: The total amount of wall time = 1184.535373 + 0: The maximum resident set size (KB) = 1384448 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_atmaq_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10677/regional_atmaq_faster -Checking test 71 regional_atmaq_faster results .... +Test 170 regional_atmaq_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_atmaq_faster +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_29700/regional_atmaq_faster +Checking test 171 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -6570,6 +5378,12 @@ Checking test 71 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 560.534367 - 0: The maximum resident set size (KB) = 1455460 + 0: The total amount of wall time = 561.441606 + 0: The maximum resident set size (KB) = 1444424 + +Test 171 regional_atmaq_faster PASS + +REGRESSION TEST WAS SUCCESSFUL +Sat May 13 21:00:11 UTC 2023 +Elapsed time: 01h:18m:42s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index 29fff4e8201..647a85e4542 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,43 +1,43 @@ -Wed May 10 22:26:52 UTC 2023 +Mon May 15 01:15:38 UTC 2023 Start Regression test -Compile 001 elapsed time 2006 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 002 elapsed time 2003 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 001 elapsed time 1926 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 002 elapsed time 1967 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON Compile 003 elapsed time 1850 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 004 elapsed time 350 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 309 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 1691 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 007 elapsed time 1737 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 008 elapsed time 3388 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 009 elapsed time 1796 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 010 elapsed time 1724 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 011 elapsed time 1728 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 012 elapsed time 1608 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 013 elapsed time 2148 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 014 elapsed time 344 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 015 elapsed time 277 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 1629 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 017 elapsed time 1681 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 018 elapsed time 217 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 294 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 1761 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 021 elapsed time 341 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 2290 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 023 elapsed time 1735 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 024 elapsed time 304 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 025 elapsed time 173 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 331 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 027 elapsed time 133 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 028 elapsed time 1725 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 029 elapsed time 1711 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 030 elapsed time 1713 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 031 elapsed time 1647 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 032 elapsed time 1600 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 033 elapsed time 297 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 034 elapsed time 1989 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8_mixedmode -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/cpld_control_p8_mixedmode +Compile 004 elapsed time 313 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 285 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 1652 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 007 elapsed time 1709 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 008 elapsed time 3361 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 009 elapsed time 1823 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 010 elapsed time 1744 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 011 elapsed time 1684 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 012 elapsed time 1522 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 013 elapsed time 2129 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 014 elapsed time 303 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 015 elapsed time 246 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 1622 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 017 elapsed time 1640 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 018 elapsed time 265 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 264 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 1710 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 021 elapsed time 286 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 2255 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 023 elapsed time 1661 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 024 elapsed time 292 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 025 elapsed time 148 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 289 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 027 elapsed time 108 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 028 elapsed time 1700 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 029 elapsed time 1649 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 030 elapsed time 1666 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 031 elapsed time 1581 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 032 elapsed time 1567 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 033 elapsed time 216 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 034 elapsed time 1616 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_p8_mixedmode +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -102,14 +102,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 475.932787 - 0: The maximum resident set size (KB) = 1742280 + 0: The total amount of wall time = 441.484035 + 0: The maximum resident set size (KB) = 1746440 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_gfsv17 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/cpld_control_gfsv17 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_gfsv17 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -173,14 +173,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 346.988488 - 0: The maximum resident set size (KB) = 1642620 + 0: The total amount of wall time = 329.997985 + 0: The maximum resident set size (KB) = 1643216 Test 002 cpld_control_gfsv17 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/cpld_control_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -245,14 +245,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 517.405113 - 0: The maximum resident set size (KB) = 1794868 + 0: The total amount of wall time = 488.391544 + 0: The maximum resident set size (KB) = 1794164 Test 003 cpld_control_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/cpld_restart_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -305,14 +305,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 294.934858 - 0: The maximum resident set size (KB) = 1502548 + 0: The total amount of wall time = 278.082437 + 0: The maximum resident set size (KB) = 1505304 Test 004 cpld_restart_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/cpld_control_qr_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -377,14 +377,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 525.354246 - 0: The maximum resident set size (KB) = 1789712 + 0: The total amount of wall time = 498.817297 + 0: The maximum resident set size (KB) = 1798540 Test 005 cpld_control_qr_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/cpld_restart_qr_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -437,14 +437,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 320.467184 - 0: The maximum resident set size (KB) = 1521720 + 0: The total amount of wall time = 285.592860 + 0: The maximum resident set size (KB) = 1523888 Test 006 cpld_restart_qr_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/cpld_2threads_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -497,14 +497,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 557.627319 - 0: The maximum resident set size (KB) = 1999088 + 0: The total amount of wall time = 501.459275 + 0: The maximum resident set size (KB) = 1986956 Test 007 cpld_2threads_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/cpld_decomp_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -557,14 +557,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 521.532980 - 0: The maximum resident set size (KB) = 1792032 + 0: The total amount of wall time = 485.097980 + 0: The maximum resident set size (KB) = 1794956 Test 008 cpld_decomp_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/cpld_mpi_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -617,14 +617,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 433.921670 - 0: The maximum resident set size (KB) = 1750316 + 0: The total amount of wall time = 413.162342 + 0: The maximum resident set size (KB) = 1744304 Test 009 cpld_mpi_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_ciceC_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/cpld_control_ciceC_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_ciceC_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -689,14 +689,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 522.104153 - 0: The maximum resident set size (KB) = 1795828 + 0: The total amount of wall time = 485.122172 + 0: The maximum resident set size (KB) = 1797208 Test 010 cpld_control_ciceC_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_noaero_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/cpld_control_noaero_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_noaero_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/cpld_control_noaero_p8 Checking test 011 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -760,14 +760,14 @@ Checking test 011 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 378.359819 - 0: The maximum resident set size (KB) = 1633980 + 0: The total amount of wall time = 362.309777 + 0: The maximum resident set size (KB) = 1636624 Test 011 cpld_control_noaero_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/cpld_control_nowave_noaero_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_c96_noaero_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/cpld_control_nowave_noaero_p8 Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -829,14 +829,14 @@ Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 376.083820 - 0: The maximum resident set size (KB) = 1692480 + 0: The total amount of wall time = 360.068061 + 0: The maximum resident set size (KB) = 1694328 Test 012 cpld_control_nowave_noaero_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_debug_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/cpld_debug_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_debug_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/cpld_debug_p8 Checking test 013 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -889,14 +889,14 @@ Checking test 013 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 709.956525 - 0: The maximum resident set size (KB) = 1828024 + 0: The total amount of wall time = 695.924822 + 0: The maximum resident set size (KB) = 1828160 Test 013 cpld_debug_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_debug_noaero_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/cpld_debug_noaero_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_debug_noaero_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/cpld_debug_noaero_p8 Checking test 014 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -948,14 +948,14 @@ Checking test 014 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 501.742266 - 0: The maximum resident set size (KB) = 1642868 + 0: The total amount of wall time = 486.820130 + 0: The maximum resident set size (KB) = 1649556 Test 014 cpld_debug_noaero_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/cpld_control_noaero_p8_agrid +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_noaero_p8_agrid +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/cpld_control_noaero_p8_agrid Checking test 015 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1017,14 +1017,14 @@ Checking test 015 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 435.565688 - 0: The maximum resident set size (KB) = 1686672 + 0: The total amount of wall time = 401.162682 + 0: The maximum resident set size (KB) = 1690040 Test 015 cpld_control_noaero_p8_agrid PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_c48 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/cpld_control_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_c48 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/cpld_control_c48 Checking test 016 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1074,14 +1074,14 @@ Checking test 016 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 817.942954 - 0: The maximum resident set size (KB) = 2779684 + 0: The total amount of wall time = 807.816840 + 0: The maximum resident set size (KB) = 2778084 Test 016 cpld_control_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_warmstart_c48 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/cpld_warmstart_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_warmstart_c48 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/cpld_warmstart_c48 Checking test 017 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1131,14 +1131,14 @@ Checking test 017 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 228.254645 - 0: The maximum resident set size (KB) = 2775904 + 0: The total amount of wall time = 231.834366 + 0: The maximum resident set size (KB) = 2766440 Test 017 cpld_warmstart_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_warmstart_c48 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/cpld_restart_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_warmstart_c48 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/cpld_restart_c48 Checking test 018 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1188,14 +1188,14 @@ Checking test 018 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 141.593667 - 0: The maximum resident set size (KB) = 2207092 + 0: The total amount of wall time = 117.502876 + 0: The maximum resident set size (KB) = 2199252 Test 018 cpld_restart_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8_faster -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/cpld_control_p8_faster +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_p8_faster +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/cpld_control_p8_faster Checking test 019 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1260,14 +1260,14 @@ Checking test 019 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 497.858858 - 0: The maximum resident set size (KB) = 1802124 + 0: The total amount of wall time = 456.885970 + 0: The maximum resident set size (KB) = 1792740 Test 019 cpld_control_p8_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_flake -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_flake +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/control_flake +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/control_flake Checking test 020 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1278,14 +1278,14 @@ Checking test 020 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 283.287610 - 0: The maximum resident set size (KB) = 619928 + 0: The total amount of wall time = 276.914123 + 0: The maximum resident set size (KB) = 622732 Test 020 control_flake PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_CubedSphereGrid -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_CubedSphereGrid +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/control_CubedSphereGrid +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/control_CubedSphereGrid Checking test 021 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1312,28 +1312,28 @@ Checking test 021 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 193.275261 - 0: The maximum resident set size (KB) = 572096 + 0: The total amount of wall time = 184.476855 + 0: The maximum resident set size (KB) = 572948 Test 021 control_CubedSphereGrid PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_CubedSphereGrid_parallel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_CubedSphereGrid_parallel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/control_CubedSphereGrid_parallel +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/control_CubedSphereGrid_parallel Checking test 022 control_CubedSphereGrid_parallel 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 = 204.634061 - 0: The maximum resident set size (KB) = 568640 + 0: The total amount of wall time = 193.422689 + 0: The maximum resident set size (KB) = 570648 Test 022 control_CubedSphereGrid_parallel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_latlon -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_latlon +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/control_latlon +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/control_latlon Checking test 023 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1344,14 +1344,14 @@ Checking test 023 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 210.966707 - 0: The maximum resident set size (KB) = 569512 + 0: The total amount of wall time = 192.309765 + 0: The maximum resident set size (KB) = 572704 Test 023 control_latlon PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_wrtGauss_netcdf_parallel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/control_wrtGauss_netcdf_parallel Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1362,14 +1362,14 @@ Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 213.313669 - 0: The maximum resident set size (KB) = 571360 + 0: The total amount of wall time = 195.113135 + 0: The maximum resident set size (KB) = 578016 Test 024 control_wrtGauss_netcdf_parallel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_c48 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/control_c48 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/control_c48 Checking test 025 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1408,14 +1408,14 @@ Checking test 025 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 597.657548 -0: The maximum resident set size (KB) = 789424 +0: The total amount of wall time = 597.368492 +0: The maximum resident set size (KB) = 794100 Test 025 control_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_c192 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_c192 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/control_c192 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/control_c192 Checking test 026 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1426,14 +1426,14 @@ Checking test 026 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 766.330778 - 0: The maximum resident set size (KB) = 696540 + 0: The total amount of wall time = 752.219407 + 0: The maximum resident set size (KB) = 694848 Test 026 control_c192 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_c384 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_c384 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/control_c384 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/control_c384 Checking test 027 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1444,14 +1444,14 @@ Checking test 027 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 961.664217 - 0: The maximum resident set size (KB) = 1052652 + 0: The total amount of wall time = 964.172497 + 0: The maximum resident set size (KB) = 1061212 Test 027 control_c384 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_c384gdas -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_c384gdas +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/control_c384gdas +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/control_c384gdas Checking test 028 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1494,14 +1494,14 @@ Checking test 028 control_c384gdas 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 = 917.914747 - 0: The maximum resident set size (KB) = 1195872 + 0: The total amount of wall time = 821.087202 + 0: The maximum resident set size (KB) = 1192824 Test 028 control_c384gdas PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_stochy -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_stochy +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/control_stochy +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/control_stochy Checking test 029 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1512,28 +1512,28 @@ Checking test 029 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 132.079132 - 0: The maximum resident set size (KB) = 577368 + 0: The total amount of wall time = 141.186777 + 0: The maximum resident set size (KB) = 575260 Test 029 control_stochy PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_stochy -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_stochy_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/control_stochy +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/control_stochy_restart Checking test 030 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 70.778949 - 0: The maximum resident set size (KB) = 388592 + 0: The total amount of wall time = 71.920919 + 0: The maximum resident set size (KB) = 396548 Test 030 control_stochy_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_lndp -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_lndp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/control_lndp +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/control_lndp Checking test 031 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1544,14 +1544,14 @@ Checking test 031 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 131.193705 - 0: The maximum resident set size (KB) = 580092 + 0: The total amount of wall time = 111.195025 + 0: The maximum resident set size (KB) = 576984 Test 031 control_lndp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_iovr4 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_iovr4 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/control_iovr4 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/control_iovr4 Checking test 032 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1566,14 +1566,14 @@ Checking test 032 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 218.555812 - 0: The maximum resident set size (KB) = 570856 + 0: The total amount of wall time = 197.594275 + 0: The maximum resident set size (KB) = 571896 Test 032 control_iovr4 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_iovr5 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_iovr5 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/control_iovr5 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/control_iovr5 Checking test 033 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1588,14 +1588,14 @@ Checking test 033 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 207.223942 - 0: The maximum resident set size (KB) = 575760 + 0: The total amount of wall time = 198.592082 + 0: The maximum resident set size (KB) = 569088 Test 033 control_iovr5 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/control_p8 Checking test 034 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1642,14 +1642,14 @@ Checking test 034 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 245.600969 - 0: The maximum resident set size (KB) = 1549288 + 0: The total amount of wall time = 241.295031 + 0: The maximum resident set size (KB) = 1552100 Test 034 control_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_restart_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/control_restart_p8 Checking test 035 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1688,14 +1688,14 @@ Checking test 035 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 125.606028 - 0: The maximum resident set size (KB) = 774268 + 0: The total amount of wall time = 122.072102 + 0: The maximum resident set size (KB) = 773940 Test 035 control_restart_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_qr_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/control_qr_p8 Checking test 036 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1742,14 +1742,14 @@ Checking test 036 control_qr_p8 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 = 249.968478 - 0: The maximum resident set size (KB) = 1549856 + 0: The total amount of wall time = 238.786616 + 0: The maximum resident set size (KB) = 1549056 Test 036 control_qr_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_restart_qr_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/control_restart_qr_p8 Checking test 037 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1788,14 +1788,14 @@ Checking test 037 control_restart_qr_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 137.024450 - 0: The maximum resident set size (KB) = 786128 + 0: The total amount of wall time = 130.312490 + 0: The maximum resident set size (KB) = 789464 Test 037 control_restart_qr_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_decomp_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/control_decomp_p8 Checking test 038 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1838,14 +1838,14 @@ Checking test 038 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 247.713086 - 0: The maximum resident set size (KB) = 1535616 + 0: The total amount of wall time = 241.408802 + 0: The maximum resident set size (KB) = 1540932 Test 038 control_decomp_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_2threads_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/control_2threads_p8 Checking test 039 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1888,14 +1888,14 @@ Checking test 039 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 233.184918 - 0: The maximum resident set size (KB) = 1637468 + 0: The total amount of wall time = 224.063609 + 0: The maximum resident set size (KB) = 1630120 Test 039 control_2threads_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8_lndp -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_p8_lndp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/control_p8_lndp +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/control_p8_lndp Checking test 040 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1914,14 +1914,14 @@ Checking test 040 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 467.679592 - 0: The maximum resident set size (KB) = 1535716 + 0: The total amount of wall time = 437.233791 + 0: The maximum resident set size (KB) = 1546372 Test 040 control_p8_lndp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8_rrtmgp -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_p8_rrtmgp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/control_p8_rrtmgp +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/control_p8_rrtmgp Checking test 041 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1968,14 +1968,14 @@ Checking test 041 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 326.877007 - 0: The maximum resident set size (KB) = 1603700 + 0: The total amount of wall time = 317.812186 + 0: The maximum resident set size (KB) = 1618840 Test 041 control_p8_rrtmgp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8_mynn -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_p8_mynn +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/control_p8_mynn +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/control_p8_mynn Checking test 042 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2022,14 +2022,14 @@ Checking test 042 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 257.830354 - 0: The maximum resident set size (KB) = 1551728 + 0: The total amount of wall time = 245.092088 + 0: The maximum resident set size (KB) = 1560172 Test 042 control_p8_mynn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/merra2_thompson -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/merra2_thompson +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/merra2_thompson +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/merra2_thompson Checking test 043 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2076,14 +2076,14 @@ Checking test 043 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 282.638634 - 0: The maximum resident set size (KB) = 1557664 + 0: The total amount of wall time = 271.218180 + 0: The maximum resident set size (KB) = 1561792 Test 043 merra2_thompson PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/regional_control +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/regional_control Checking test 044 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2094,28 +2094,28 @@ Checking test 044 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 452.638046 - 0: The maximum resident set size (KB) = 789792 + 0: The total amount of wall time = 432.153223 + 0: The maximum resident set size (KB) = 784956 Test 044 regional_control PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/regional_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/regional_restart Checking test 045 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 218.834215 - 0: The maximum resident set size (KB) = 776552 + 0: The total amount of wall time = 220.208263 + 0: The maximum resident set size (KB) = 779956 Test 045 regional_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/regional_control_qr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/regional_control_qr Checking test 046 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2126,28 +2126,28 @@ Checking test 046 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 433.579958 - 0: The maximum resident set size (KB) = 787060 + 0: The total amount of wall time = 425.828861 + 0: The maximum resident set size (KB) = 789660 Test 046 regional_control_qr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/regional_restart_qr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/regional_restart_qr Checking test 047 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 219.895042 - 0: The maximum resident set size (KB) = 780284 + 0: The total amount of wall time = 217.376260 + 0: The maximum resident set size (KB) = 782596 Test 047 regional_restart_qr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/regional_decomp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/regional_decomp Checking test 048 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2158,14 +2158,14 @@ Checking test 048 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 477.833754 - 0: The maximum resident set size (KB) = 781792 + 0: The total amount of wall time = 442.376749 + 0: The maximum resident set size (KB) = 786376 Test 048 regional_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/regional_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/regional_2threads Checking test 049 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2176,28 +2176,28 @@ Checking test 049 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 283.848116 - 0: The maximum resident set size (KB) = 770964 + 0: The total amount of wall time = 270.110379 + 0: The maximum resident set size (KB) = 770108 Test 049 regional_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/regional_netcdf_parallel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_netcdf_parallel +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/regional_netcdf_parallel Checking test 050 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 439.942055 - 0: The maximum resident set size (KB) = 786240 + 0: The total amount of wall time = 415.416594 + 0: The maximum resident set size (KB) = 784216 Test 050 regional_netcdf_parallel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/regional_2dwrtdecomp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/regional_2dwrtdecomp Checking test 051 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2208,14 +2208,14 @@ Checking test 051 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 456.301976 - 0: The maximum resident set size (KB) = 790376 + 0: The total amount of wall time = 427.843510 + 0: The maximum resident set size (KB) = 786812 Test 051 regional_2dwrtdecomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/rap_control +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/rap_control Checking test 052 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2262,14 +2262,14 @@ Checking test 052 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 633.041396 - 0: The maximum resident set size (KB) = 950208 + 0: The total amount of wall time = 628.700781 + 0: The maximum resident set size (KB) = 954796 Test 052 rap_control PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/regional_spp_sppt_shum_skeb +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_spp_sppt_shum_skeb +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/regional_spp_sppt_shum_skeb Checking test 053 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2280,14 +2280,14 @@ Checking test 053 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 355.096451 - 0: The maximum resident set size (KB) = 1095472 + 0: The total amount of wall time = 349.924171 + 0: The maximum resident set size (KB) = 1095424 Test 053 regional_spp_sppt_shum_skeb PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/rap_decomp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/rap_decomp Checking test 054 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2334,14 +2334,14 @@ Checking test 054 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 687.563899 - 0: The maximum resident set size (KB) = 935764 + 0: The total amount of wall time = 660.141805 + 0: The maximum resident set size (KB) = 945672 Test 054 rap_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/rap_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/rap_2threads Checking test 055 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2388,14 +2388,14 @@ Checking test 055 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 633.261298 - 0: The maximum resident set size (KB) = 1025840 + 0: The total amount of wall time = 620.295714 + 0: The maximum resident set size (KB) = 1027152 Test 055 rap_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/rap_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/rap_restart Checking test 056 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2434,14 +2434,14 @@ Checking test 056 rap_restart results .... Comparing 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.002332 - 0: The maximum resident set size (KB) = 838564 + 0: The total amount of wall time = 319.086666 + 0: The maximum resident set size (KB) = 833160 Test 056 rap_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/rap_sfcdiff +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/rap_sfcdiff Checking test 057 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2488,14 +2488,14 @@ Checking test 057 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 662.833009 - 0: The maximum resident set size (KB) = 952248 + 0: The total amount of wall time = 633.844865 + 0: The maximum resident set size (KB) = 949572 Test 057 rap_sfcdiff PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/rap_sfcdiff_decomp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/rap_sfcdiff_decomp Checking test 058 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2542,14 +2542,14 @@ Checking test 058 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 707.154680 - 0: The maximum resident set size (KB) = 935908 + 0: The total amount of wall time = 665.184124 + 0: The maximum resident set size (KB) = 947912 Test 058 rap_sfcdiff_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/rap_sfcdiff_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/rap_sfcdiff_restart Checking test 059 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2588,14 +2588,14 @@ Checking test 059 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 477.232329 - 0: The maximum resident set size (KB) = 844148 + 0: The total amount of wall time = 460.747578 + 0: The maximum resident set size (KB) = 840320 Test 059 rap_sfcdiff_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/hrrr_control +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/hrrr_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/hrrr_control Checking test 060 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2642,14 +2642,14 @@ Checking test 060 hrrr_control results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 612.289474 - 0: The maximum resident set size (KB) = 951708 + 0: The total amount of wall time = 591.458745 + 0: The maximum resident set size (KB) = 953108 Test 060 hrrr_control PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/hrrr_control_decomp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/hrrr_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/hrrr_control_decomp Checking test 061 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2696,14 +2696,14 @@ Checking test 061 hrrr_control_decomp results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 655.192143 - 0: The maximum resident set size (KB) = 938196 + 0: The total amount of wall time = 630.322479 + 0: The maximum resident set size (KB) = 942624 Test 061 hrrr_control_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/hrrr_control_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/hrrr_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/hrrr_control_2threads Checking test 062 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2750,28 +2750,28 @@ Checking test 062 hrrr_control_2threads results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 607.939414 - 0: The maximum resident set size (KB) = 1016512 + 0: The total amount of wall time = 566.681227 + 0: The maximum resident set size (KB) = 1012496 Test 062 hrrr_control_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/hrrr_control_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/hrrr_control +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/hrrr_control_restart Checking test 063 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 454.015040 - 0: The maximum resident set size (KB) = 844476 + 0: The total amount of wall time = 420.492257 + 0: The maximum resident set size (KB) = 842876 Test 063 hrrr_control_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_v1beta -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/rrfs_v1beta +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/rrfs_v1beta +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/rrfs_v1beta Checking test 064 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2818,14 +2818,14 @@ Checking test 064 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 670.108467 - 0: The maximum resident set size (KB) = 946864 + 0: The total amount of wall time = 630.758203 + 0: The maximum resident set size (KB) = 949968 Test 064 rrfs_v1beta PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_v1nssl -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/rrfs_v1nssl +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/rrfs_v1nssl +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/rrfs_v1nssl Checking test 065 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2840,14 +2840,14 @@ Checking test 065 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 783.915014 - 0: The maximum resident set size (KB) = 638752 + 0: The total amount of wall time = 739.825306 + 0: The maximum resident set size (KB) = 636468 Test 065 rrfs_v1nssl PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/rrfs_v1nssl_nohailnoccn +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/rrfs_v1nssl_nohailnoccn Checking test 066 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2862,14 +2862,14 @@ Checking test 066 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 748.073273 - 0: The maximum resident set size (KB) = 634500 + 0: The total amount of wall time = 748.893805 + 0: The maximum resident set size (KB) = 633320 Test 066 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/rrfs_smoke_conus13km_hrrr_warm Checking test 067 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2878,14 +2878,14 @@ Checking test 067 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 212.098558 - 0: The maximum resident set size (KB) = 902596 + 0: The total amount of wall time = 210.706777 + 0: The maximum resident set size (KB) = 897288 Test 067 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 068 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2894,14 +2894,14 @@ Checking test 068 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 152.440972 - 0: The maximum resident set size (KB) = 863364 + 0: The total amount of wall time = 139.793350 + 0: The maximum resident set size (KB) = 866096 Test 068 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/rrfs_conus13km_hrrr_warm +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/rrfs_conus13km_hrrr_warm Checking test 069 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2910,14 +2910,14 @@ Checking test 069 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 192.524864 - 0: The maximum resident set size (KB) = 880424 + 0: The total amount of wall time = 189.760822 + 0: The maximum resident set size (KB) = 885460 Test 069 rrfs_conus13km_hrrr_warm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/rrfs_smoke_conus13km_radar_tten_warm Checking test 070 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2926,26 +2926,26 @@ Checking test 070 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 208.642215 - 0: The maximum resident set size (KB) = 903612 + 0: The total amount of wall time = 217.317950 + 0: The maximum resident set size (KB) = 899692 Test 070 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 071 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 100.670222 - 0: The maximum resident set size (KB) = 850668 + 0: The total amount of wall time = 99.680641 + 0: The maximum resident set size (KB) = 853380 Test 071 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_csawmg -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_csawmg +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/control_csawmg +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/control_csawmg Checking test 072 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2956,14 +2956,14 @@ Checking test 072 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 497.830202 - 0: The maximum resident set size (KB) = 670060 + 0: The total amount of wall time = 487.067493 + 0: The maximum resident set size (KB) = 668844 Test 072 control_csawmg PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_csawmgt -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_csawmgt +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/control_csawmgt +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/control_csawmgt Checking test 073 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2974,14 +2974,14 @@ Checking test 073 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 497.064119 - 0: The maximum resident set size (KB) = 661804 + 0: The total amount of wall time = 469.823551 + 0: The maximum resident set size (KB) = 665820 Test 073 control_csawmgt PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_ras -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_ras +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/control_ras +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/control_ras Checking test 074 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2992,26 +2992,26 @@ Checking test 074 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 264.960320 - 0: The maximum resident set size (KB) = 633856 + 0: The total amount of wall time = 261.860451 + 0: The maximum resident set size (KB) = 637984 Test 074 control_ras PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_wam -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_wam +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/control_wam +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/control_wam Checking test 075 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 172.367358 - 0: The maximum resident set size (KB) = 484880 + 0: The total amount of wall time = 154.955142 + 0: The maximum resident set size (KB) = 483992 Test 075 control_wam PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8_faster -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_p8_faster +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/control_p8_faster +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/control_p8_faster Checking test 076 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3058,14 +3058,14 @@ Checking test 076 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 233.954892 - 0: The maximum resident set size (KB) = 1547484 + 0: The total amount of wall time = 217.585306 + 0: The maximum resident set size (KB) = 1538444 Test 076 control_p8_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control_faster -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/regional_control_faster +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_control_faster +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/regional_control_faster Checking test 077 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3076,56 +3076,56 @@ Checking test 077 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 419.520822 - 0: The maximum resident set size (KB) = 786100 + 0: The total amount of wall time = 412.787653 + 0: The maximum resident set size (KB) = 788836 Test 077 regional_control_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 078 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 1090.825240 - 0: The maximum resident set size (KB) = 933652 + 0: The total amount of wall time = 1094.782491 + 0: The maximum resident set size (KB) = 931416 Test 078 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 079 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 642.720381 - 0: The maximum resident set size (KB) = 891784 + 0: The total amount of wall time = 631.975230 + 0: The maximum resident set size (KB) = 897864 Test 079 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/rrfs_conus13km_hrrr_warm_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/rrfs_conus13km_hrrr_warm_debug Checking test 080 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 978.823953 - 0: The maximum resident set size (KB) = 913008 + 0: The total amount of wall time = 977.256517 + 0: The maximum resident set size (KB) = 911148 Test 080 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_CubedSphereGrid_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_CubedSphereGrid_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/control_CubedSphereGrid_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/control_CubedSphereGrid_debug Checking test 081 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3152,348 +3152,348 @@ Checking test 081 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 199.137380 - 0: The maximum resident set size (KB) = 732456 + 0: The total amount of wall time = 193.288788 + 0: The maximum resident set size (KB) = 733856 Test 081 control_CubedSphereGrid_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_wrtGauss_netcdf_parallel_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/control_wrtGauss_netcdf_parallel_debug Checking test 082 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 195.187046 - 0: The maximum resident set size (KB) = 730108 + 0: The total amount of wall time = 195.782504 + 0: The maximum resident set size (KB) = 735560 Test 082 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_stochy_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_stochy_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/control_stochy_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/control_stochy_debug Checking test 083 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 214.332489 - 0: The maximum resident set size (KB) = 738380 + 0: The total amount of wall time = 214.495868 + 0: The maximum resident set size (KB) = 738472 Test 083 control_stochy_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_lndp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_lndp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/control_lndp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/control_lndp_debug Checking test 084 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 195.234133 - 0: The maximum resident set size (KB) = 737364 + 0: The total amount of wall time = 194.738660 + 0: The maximum resident set size (KB) = 738576 Test 084 control_lndp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_csawmg_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_csawmg_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/control_csawmg_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/control_csawmg_debug Checking test 085 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 302.728825 - 0: The maximum resident set size (KB) = 788156 + 0: The total amount of wall time = 304.925159 + 0: The maximum resident set size (KB) = 787116 Test 085 control_csawmg_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_csawmgt_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_csawmgt_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/control_csawmgt_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/control_csawmgt_debug Checking test 086 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 302.261076 - 0: The maximum resident set size (KB) = 779096 + 0: The total amount of wall time = 297.589701 + 0: The maximum resident set size (KB) = 786540 Test 086 control_csawmgt_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_ras_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_ras_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/control_ras_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/control_ras_debug Checking test 087 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 194.456006 - 0: The maximum resident set size (KB) = 746788 + 0: The total amount of wall time = 194.673617 + 0: The maximum resident set size (KB) = 752672 Test 087 control_ras_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_diag_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_diag_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/control_diag_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/control_diag_debug Checking test 088 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 204.262274 - 0: The maximum resident set size (KB) = 794556 + 0: The total amount of wall time = 195.389234 + 0: The maximum resident set size (KB) = 791828 Test 088 control_diag_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_debug_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_debug_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/control_debug_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/control_debug_p8 Checking test 089 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 217.779676 - 0: The maximum resident set size (KB) = 1569732 + 0: The total amount of wall time = 217.420869 + 0: The maximum resident set size (KB) = 1555828 Test 089 control_debug_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/regional_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/regional_debug Checking test 090 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1283.390631 - 0: The maximum resident set size (KB) = 805176 + 0: The total amount of wall time = 1272.114514 + 0: The maximum resident set size (KB) = 803080 Test 090 regional_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/rap_control_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_control_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/rap_control_debug Checking test 091 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 349.944240 - 0: The maximum resident set size (KB) = 1112380 + 0: The total amount of wall time = 345.828811 + 0: The maximum resident set size (KB) = 1119864 Test 091 rap_control_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/hrrr_control_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/hrrr_control_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/hrrr_control_debug Checking test 092 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 345.863243 - 0: The maximum resident set size (KB) = 1111204 + 0: The total amount of wall time = 337.444600 + 0: The maximum resident set size (KB) = 1107708 Test 092 hrrr_control_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/rap_unified_drag_suite_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_control_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/rap_unified_drag_suite_debug Checking test 093 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 349.429692 - 0: The maximum resident set size (KB) = 1115456 + 0: The total amount of wall time = 348.574731 + 0: The maximum resident set size (KB) = 1115308 Test 093 rap_unified_drag_suite_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_diag_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/rap_diag_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_diag_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/rap_diag_debug Checking test 094 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 382.698280 - 0: The maximum resident set size (KB) = 1188020 + 0: The total amount of wall time = 367.489859 + 0: The maximum resident set size (KB) = 1196116 Test 094 rap_diag_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/rap_cires_ugwp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/rap_cires_ugwp_debug Checking test 095 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 371.445420 - 0: The maximum resident set size (KB) = 1105492 + 0: The total amount of wall time = 355.546524 + 0: The maximum resident set size (KB) = 1112172 Test 095 rap_cires_ugwp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/rap_unified_ugwp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/rap_unified_ugwp_debug Checking test 096 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 357.830961 - 0: The maximum resident set size (KB) = 1116236 + 0: The total amount of wall time = 359.469771 + 0: The maximum resident set size (KB) = 1115364 Test 096 rap_unified_ugwp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_lndp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/rap_lndp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_lndp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/rap_lndp_debug Checking test 097 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 352.095331 - 0: The maximum resident set size (KB) = 1115556 + 0: The total amount of wall time = 358.440834 + 0: The maximum resident set size (KB) = 1114052 Test 097 rap_lndp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_progcld_thompson_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/rap_progcld_thompson_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_progcld_thompson_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/rap_progcld_thompson_debug Checking test 098 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 353.818127 - 0: The maximum resident set size (KB) = 1118488 + 0: The total amount of wall time = 356.946267 + 0: The maximum resident set size (KB) = 1112864 Test 098 rap_progcld_thompson_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_noah_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/rap_noah_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_noah_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/rap_noah_debug Checking test 099 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 341.267022 - 0: The maximum resident set size (KB) = 1115288 + 0: The total amount of wall time = 345.456639 + 0: The maximum resident set size (KB) = 1115944 Test 099 rap_noah_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_sfcdiff_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/rap_sfcdiff_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_sfcdiff_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/rap_sfcdiff_debug Checking test 100 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 357.920119 - 0: The maximum resident set size (KB) = 1109100 + 0: The total amount of wall time = 349.454370 + 0: The maximum resident set size (KB) = 1111840 Test 100 rap_sfcdiff_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/rap_noah_sfcdiff_cires_ugwp_debug Checking test 101 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 591.054065 - 0: The maximum resident set size (KB) = 1115656 + 0: The total amount of wall time = 577.383887 + 0: The maximum resident set size (KB) = 1114128 Test 101 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_v1beta_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/rrfs_v1beta_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/rrfs_v1beta_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/rrfs_v1beta_debug Checking test 102 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 349.498801 - 0: The maximum resident set size (KB) = 1105944 + 0: The total amount of wall time = 344.428365 + 0: The maximum resident set size (KB) = 1108924 Test 102 rrfs_v1beta_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_clm_lake_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/rap_clm_lake_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_clm_lake_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/rap_clm_lake_debug Checking test 103 rap_clm_lake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 426.212923 - 0: The maximum resident set size (KB) = 1117824 + 0: The total amount of wall time = 425.747733 + 0: The maximum resident set size (KB) = 1114472 Test 103 rap_clm_lake_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_flake_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/rap_flake_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_flake_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/rap_flake_debug Checking test 104 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 361.638407 - 0: The maximum resident set size (KB) = 1104652 + 0: The total amount of wall time = 350.423881 + 0: The maximum resident set size (KB) = 1112492 Test 104 rap_flake_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_wam_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_wam_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/control_wam_debug +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/control_wam_debug Checking test 105 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 362.444727 - 0: The maximum resident set size (KB) = 438436 + 0: The total amount of wall time = 358.548636 + 0: The maximum resident set size (KB) = 432208 Test 105 control_wam_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3504,14 +3504,14 @@ Checking test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 313.087911 - 0: The maximum resident set size (KB) = 989660 + 0: The total amount of wall time = 319.288128 + 0: The maximum resident set size (KB) = 989812 Test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/rap_control_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/rap_control_dyn32_phy32 Checking test 107 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3558,14 +3558,14 @@ Checking test 107 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 558.361398 - 0: The maximum resident set size (KB) = 851680 + 0: The total amount of wall time = 518.275313 + 0: The maximum resident set size (KB) = 843552 Test 107 rap_control_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/hrrr_control_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/hrrr_control_dyn32_phy32 Checking test 108 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3612,14 +3612,14 @@ Checking test 108 hrrr_control_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 271.495415 - 0: The maximum resident set size (KB) = 826040 + 0: The total amount of wall time = 260.916398 + 0: The maximum resident set size (KB) = 839520 Test 108 hrrr_control_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/rap_2threads_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/rap_2threads_dyn32_phy32 Checking test 109 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3666,14 +3666,14 @@ Checking test 109 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 534.849164 - 0: The maximum resident set size (KB) = 888856 + 0: The total amount of wall time = 517.545813 + 0: The maximum resident set size (KB) = 889052 Test 109 rap_2threads_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/hrrr_control_2threads_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/hrrr_control_2threads_dyn32_phy32 Checking test 110 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3720,14 +3720,14 @@ Checking test 110 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 276.089020 - 0: The maximum resident set size (KB) = 872812 + 0: The total amount of wall time = 248.683058 + 0: The maximum resident set size (KB) = 873948 Test 110 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/hrrr_control_decomp_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/hrrr_control_decomp_dyn32_phy32 Checking test 111 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3774,14 +3774,14 @@ Checking test 111 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 301.610242 - 0: The maximum resident set size (KB) = 830692 + 0: The total amount of wall time = 275.357711 + 0: The maximum resident set size (KB) = 831396 Test 111 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/rap_restart_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/rap_restart_dyn32_phy32 Checking test 112 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3820,28 +3820,28 @@ Checking test 112 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 412.353729 - 0: The maximum resident set size (KB) = 816296 + 0: The total amount of wall time = 386.297728 + 0: The maximum resident set size (KB) = 811756 Test 112 rap_restart_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/hrrr_control_restart_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/hrrr_control_restart_dyn32_phy32 Checking test 113 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 141.235264 - 0: The maximum resident set size (KB) = 769964 + 0: The total amount of wall time = 132.587575 + 0: The maximum resident set size (KB) = 765632 Test 113 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_dyn64_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/rap_control_dyn64_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_control_dyn64_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/rap_control_dyn64_phy32 Checking test 114 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3888,81 +3888,81 @@ Checking test 114 rap_control_dyn64_phy32 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 = 361.444578 - 0: The maximum resident set size (KB) = 870852 + 0: The total amount of wall time = 332.641755 + 0: The maximum resident set size (KB) = 871564 Test 114 rap_control_dyn64_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/rap_control_debug_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/rap_control_debug_dyn32_phy32 Checking test 115 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 346.452959 - 0: The maximum resident set size (KB) = 1004128 + 0: The total amount of wall time = 344.606913 + 0: The maximum resident set size (KB) = 1001388 Test 115 rap_control_debug_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/hrrr_control_debug_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/hrrr_control_debug_dyn32_phy32 Checking test 116 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 342.990211 - 0: The maximum resident set size (KB) = 995632 + 0: The total amount of wall time = 339.840097 + 0: The maximum resident set size (KB) = 997100 Test 116 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/rap_control_dyn64_phy32_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/rap_control_dyn64_phy32_debug Checking test 117 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 357.541362 - 0: The maximum resident set size (KB) = 1030012 + 0: The total amount of wall time = 350.281493 + 0: The maximum resident set size (KB) = 1030480 Test 117 rap_control_dyn64_phy32_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_atm -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/hafs_regional_atm +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_atm +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/hafs_regional_atm Checking test 118 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 379.711247 - 0: The maximum resident set size (KB) = 1210420 + 0: The total amount of wall time = 349.554207 + 0: The maximum resident set size (KB) = 1221740 Test 118 hafs_regional_atm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/hafs_regional_atm_thompson_gfdlsf +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/hafs_regional_atm_thompson_gfdlsf Checking test 119 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 624.106546 - 0: The maximum resident set size (KB) = 1582660 + 0: The total amount of wall time = 474.491762 + 0: The maximum resident set size (KB) = 1586596 Test 119 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_atm_ocn -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/hafs_regional_atm_ocn +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_atm_ocn +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/hafs_regional_atm_ocn Checking test 120 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3971,14 +3971,14 @@ Checking test 120 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 574.704082 - 0: The maximum resident set size (KB) = 1293420 + 0: The total amount of wall time = 528.496190 + 0: The maximum resident set size (KB) = 1296060 Test 120 hafs_regional_atm_ocn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_atm_wav -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/hafs_regional_atm_wav +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_atm_wav +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/hafs_regional_atm_wav Checking test 121 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3987,14 +3987,14 @@ Checking test 121 hafs_regional_atm_wav 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 = 1009.359355 - 0: The maximum resident set size (KB) = 1324368 + 0: The total amount of wall time = 937.735551 + 0: The maximum resident set size (KB) = 1331116 Test 121 hafs_regional_atm_wav PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/hafs_regional_atm_ocn_wav +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_atm_ocn_wav +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/hafs_regional_atm_ocn_wav Checking test 122 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4005,14 +4005,14 @@ Checking test 122 hafs_regional_atm_ocn_wav 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 = 1119.573803 - 0: The maximum resident set size (KB) = 1367592 + 0: The total amount of wall time = 1049.327325 + 0: The maximum resident set size (KB) = 1350780 Test 122 hafs_regional_atm_ocn_wav PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_docn -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/hafs_regional_docn +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_docn +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/hafs_regional_docn Checking test 123 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4020,14 +4020,14 @@ Checking test 123 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 564.743252 - 0: The maximum resident set size (KB) = 1312780 + 0: The total amount of wall time = 520.048214 + 0: The maximum resident set size (KB) = 1313952 Test 123 hafs_regional_docn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_docn_oisst -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/hafs_regional_docn_oisst +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_docn_oisst +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/hafs_regional_docn_oisst Checking test 124 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4035,118 +4035,118 @@ Checking test 124 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 591.793717 - 0: The maximum resident set size (KB) = 1254356 + 0: The total amount of wall time = 511.471289 + 0: The maximum resident set size (KB) = 1296168 Test 124 hafs_regional_docn_oisst PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/datm_cdeps_control_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/datm_cdeps_control_cfsr Checking test 125 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 231.812946 - 0: The maximum resident set size (KB) = 957852 + 0: The total amount of wall time = 226.550000 + 0: The maximum resident set size (KB) = 970672 Test 125 datm_cdeps_control_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/datm_cdeps_restart_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/datm_cdeps_restart_cfsr Checking test 126 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 136.750067 - 0: The maximum resident set size (KB) = 931568 + 0: The total amount of wall time = 126.263925 + 0: The maximum resident set size (KB) = 959628 Test 126 datm_cdeps_restart_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_control_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/datm_cdeps_control_gefs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_control_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/datm_cdeps_control_gefs Checking test 127 datm_cdeps_control_gefs 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 = 228.749126 - 0: The maximum resident set size (KB) = 870160 + 0: The total amount of wall time = 226.378809 + 0: The maximum resident set size (KB) = 866808 Test 127 datm_cdeps_control_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_iau_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/datm_cdeps_iau_gefs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_iau_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/datm_cdeps_iau_gefs Checking test 128 datm_cdeps_iau_gefs 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 = 232.512475 - 0: The maximum resident set size (KB) = 864664 + 0: The total amount of wall time = 226.712195 + 0: The maximum resident set size (KB) = 867080 Test 128 datm_cdeps_iau_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_stochy_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/datm_cdeps_stochy_gefs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_stochy_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/datm_cdeps_stochy_gefs Checking test 129 datm_cdeps_stochy_gefs 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 = 226.582106 - 0: The maximum resident set size (KB) = 863728 + 0: The total amount of wall time = 238.936708 + 0: The maximum resident set size (KB) = 867700 Test 129 datm_cdeps_stochy_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/datm_cdeps_ciceC_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_ciceC_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/datm_cdeps_ciceC_cfsr Checking test 130 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 220.983498 - 0: The maximum resident set size (KB) = 962308 + 0: The total amount of wall time = 226.762037 + 0: The maximum resident set size (KB) = 976464 Test 130 datm_cdeps_ciceC_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/datm_cdeps_bulk_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_bulk_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/datm_cdeps_bulk_cfsr Checking test 131 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.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 = 235.659184 - 0: The maximum resident set size (KB) = 963828 + 0: The total amount of wall time = 225.629756 + 0: The maximum resident set size (KB) = 958880 Test 131 datm_cdeps_bulk_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/datm_cdeps_bulk_gefs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_bulk_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/datm_cdeps_bulk_gefs Checking test 132 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 221.018029 - 0: The maximum resident set size (KB) = 861728 + 0: The total amount of wall time = 222.017562 + 0: The maximum resident set size (KB) = 863828 Test 132 datm_cdeps_bulk_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/datm_cdeps_mx025_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_mx025_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/datm_cdeps_mx025_cfsr Checking test 133 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4155,14 +4155,14 @@ Checking test 133 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 593.589931 - 0: The maximum resident set size (KB) = 764252 + 0: The total amount of wall time = 565.799236 + 0: The maximum resident set size (KB) = 763868 Test 133 datm_cdeps_mx025_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/datm_cdeps_mx025_gefs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_mx025_gefs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/datm_cdeps_mx025_gefs Checking test 134 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4171,77 +4171,77 @@ Checking test 134 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 578.709366 - 0: The maximum resident set size (KB) = 734056 + 0: The total amount of wall time = 563.048015 + 0: The maximum resident set size (KB) = 739268 Test 134 datm_cdeps_mx025_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/datm_cdeps_multiple_files_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/datm_cdeps_multiple_files_cfsr Checking test 135 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 244.504062 - 0: The maximum resident set size (KB) = 964732 + 0: The total amount of wall time = 226.047107 + 0: The maximum resident set size (KB) = 968240 Test 135 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/datm_cdeps_3072x1536_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/datm_cdeps_3072x1536_cfsr Checking test 136 datm_cdeps_3072x1536_cfsr 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 = 368.595582 - 0: The maximum resident set size (KB) = 2197032 + 0: The total amount of wall time = 307.283471 + 0: The maximum resident set size (KB) = 2255196 Test 136 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_gfs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/datm_cdeps_gfs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_gfs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/datm_cdeps_gfs Checking test 137 datm_cdeps_gfs 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 = 350.333371 - 0: The maximum resident set size (KB) = 2247944 + 0: The total amount of wall time = 317.273529 + 0: The maximum resident set size (KB) = 2196320 Test 137 datm_cdeps_gfs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_debug_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/datm_cdeps_debug_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_debug_cfsr +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/datm_cdeps_debug_cfsr Checking test 138 datm_cdeps_debug_cfsr 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 = 465.212073 - 0: The maximum resident set size (KB) = 921776 + 0: The total amount of wall time = 460.472650 + 0: The maximum resident set size (KB) = 933900 Test 138 datm_cdeps_debug_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_control_cfsr_faster -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/datm_cdeps_control_cfsr_faster +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_control_cfsr_faster +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/datm_cdeps_control_cfsr_faster Checking test 139 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.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 = 243.328336 - 0: The maximum resident set size (KB) = 970052 + 0: The total amount of wall time = 212.066861 + 0: The maximum resident set size (KB) = 971808 Test 139 datm_cdeps_control_cfsr_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/datm_cdeps_lnd_gswp3 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/datm_cdeps_lnd_gswp3 Checking test 140 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4250,14 +4250,14 @@ Checking test 140 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 24.762284 - 0: The maximum resident set size (KB) = 247500 + 0: The total amount of wall time = 21.067826 + 0: The maximum resident set size (KB) = 239988 Test 140 datm_cdeps_lnd_gswp3 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/datm_cdeps_lnd_gswp3_rst +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/datm_cdeps_lnd_gswp3_rst Checking test 141 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4266,14 +4266,14 @@ Checking test 141 datm_cdeps_lnd_gswp3_rst 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 = 32.783523 - 0: The maximum resident set size (KB) = 250072 + 0: The total amount of wall time = 22.106352 + 0: The maximum resident set size (KB) = 244652 Test 141 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8_atmlnd_sbs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_p8_atmlnd_sbs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/control_p8_atmlnd_sbs +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/control_p8_atmlnd_sbs Checking test 142 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4358,14 +4358,14 @@ Checking test 142 control_p8_atmlnd_sbs results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 338.483756 - 0: The maximum resident set size (KB) = 1592584 + 0: The total amount of wall time = 301.692236 + 0: The maximum resident set size (KB) = 1591556 Test 142 control_p8_atmlnd_sbs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/atmwav_control_noaero_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/atmwav_control_noaero_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/atmwav_control_noaero_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/atmwav_control_noaero_p8 Checking test 143 atmwav_control_noaero_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4408,14 +4408,14 @@ Checking test 143 atmwav_control_noaero_p8 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 = 133.450504 - 0: The maximum resident set size (KB) = 1565248 + 0: The total amount of wall time = 132.179929 + 0: The maximum resident set size (KB) = 1569836 Test 143 atmwav_control_noaero_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/control_atmwav -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/control_atmwav +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/control_atmwav +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/control_atmwav Checking test 144 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4459,14 +4459,14 @@ Checking test 144 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 124.797638 - 0: The maximum resident set size (KB) = 596796 + 0: The total amount of wall time = 125.597351 + 0: The maximum resident set size (KB) = 598996 Test 144 control_atmwav PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/atmaero_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/atmaero_control_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/atmaero_control_p8 +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/atmaero_control_p8 Checking test 145 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4510,14 +4510,14 @@ Checking test 145 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 387.358303 - 0: The maximum resident set size (KB) = 1654788 + 0: The total amount of wall time = 322.489085 + 0: The maximum resident set size (KB) = 1641560 Test 145 atmaero_control_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/atmaero_control_p8_rad -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/atmaero_control_p8_rad +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/atmaero_control_p8_rad +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/atmaero_control_p8_rad Checking test 146 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4561,14 +4561,14 @@ Checking test 146 atmaero_control_p8_rad results .... Comparing 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.647854 - 0: The maximum resident set size (KB) = 1661176 + 0: The total amount of wall time = 388.219190 + 0: The maximum resident set size (KB) = 1676560 Test 146 atmaero_control_p8_rad PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230510/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_298933/atmaero_control_p8_rad_micro +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230512/INTEL/atmaero_control_p8_rad_micro +working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_309070/atmaero_control_p8_rad_micro Checking test 147 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4612,12 +4612,12 @@ Checking test 147 atmaero_control_p8_rad_micro results .... Comparing 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.623830 - 0: The maximum resident set size (KB) = 1687464 + 0: The total amount of wall time = 403.218179 + 0: The maximum resident set size (KB) = 1685176 Test 147 atmaero_control_p8_rad_micro PASS REGRESSION TEST WAS SUCCESSFUL -Thu May 11 01:34:59 UTC 2023 -Elapsed time: 03h:08m:09s. Have a nice day! +Mon May 15 04:07:04 UTC 2023 +Elapsed time: 02h:51m:27s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index eb4d57ee0d9..08d37337a16 100755 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,43 +1,45 @@ -Wed May 10 18:27:30 CDT 2023 +Sun May 14 21:19:03 CDT 2023 Start Regression test -Compile 001 elapsed time 789 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 806 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 739 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 298 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 259 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 632 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 715 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 889 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 693 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 010 elapsed time 665 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 610 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 609 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 744 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 240 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 015 elapsed time 217 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 579 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 576 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 211 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 212 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 582 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 260 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 742 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 651 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 024 elapsed time 232 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 131 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 190 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 55 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 620 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 628 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 621 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 596 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 592 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 033 elapsed time 172 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 034 elapsed time 624 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8_mixedmode -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/cpld_control_p8_mixedmode +Compile 001 elapsed time 720 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 761 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 774 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 289 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 236 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 719 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 671 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 820 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 987 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 237 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 011 elapsed time 681 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 012 elapsed time 671 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 611 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 554 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 718 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 243 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 017 elapsed time 163 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 633 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 019 elapsed time 607 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 020 elapsed time 173 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 021 elapsed time 182 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 622 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 213 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 024 elapsed time 764 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 025 elapsed time 607 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 026 elapsed time 202 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 121 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 028 elapsed time 193 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 029 elapsed time 53 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 680 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 631 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 660 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 033 elapsed time 607 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 034 elapsed time 574 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 035 elapsed time 223 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 036 elapsed time 617 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_p8_mixedmode +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -102,14 +104,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 304.783444 - 0: The maximum resident set size (KB) = 3138032 + 0: The total amount of wall time = 313.637011 + 0: The maximum resident set size (KB) = 3076636 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_gfsv17 -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/cpld_control_gfsv17 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_gfsv17 +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -173,14 +175,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 226.117366 - 0: The maximum resident set size (KB) = 1729428 + 0: The total amount of wall time = 223.787027 + 0: The maximum resident set size (KB) = 1729208 Test 002 cpld_control_gfsv17 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/cpld_control_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -245,14 +247,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 342.728577 - 0: The maximum resident set size (KB) = 3178920 + 0: The total amount of wall time = 339.333380 + 0: The maximum resident set size (KB) = 3179024 Test 003 cpld_control_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/cpld_restart_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -305,14 +307,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 201.357250 - 0: The maximum resident set size (KB) = 3043440 + 0: The total amount of wall time = 208.886201 + 0: The maximum resident set size (KB) = 3053900 Test 004 cpld_restart_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/cpld_control_qr_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -377,14 +379,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 347.144214 - 0: The maximum resident set size (KB) = 3192532 + 0: The total amount of wall time = 344.198623 + 0: The maximum resident set size (KB) = 3187776 Test 005 cpld_control_qr_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/cpld_restart_qr_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -437,14 +439,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 209.595476 - 0: The maximum resident set size (KB) = 3060468 + 0: The total amount of wall time = 207.398682 + 0: The maximum resident set size (KB) = 3000932 Test 006 cpld_restart_qr_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/cpld_2threads_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -497,14 +499,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 399.097572 - 0: The maximum resident set size (KB) = 3508500 + 0: The total amount of wall time = 408.454100 + 0: The maximum resident set size (KB) = 3507216 Test 007 cpld_2threads_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/cpld_decomp_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -557,14 +559,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 344.196890 - 0: The maximum resident set size (KB) = 3167584 + 0: The total amount of wall time = 341.618109 + 0: The maximum resident set size (KB) = 3171820 Test 008 cpld_decomp_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/cpld_mpi_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -617,14 +619,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 286.305768 - 0: The maximum resident set size (KB) = 3027836 + 0: The total amount of wall time = 281.698090 + 0: The maximum resident set size (KB) = 3029624 Test 009 cpld_mpi_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_ciceC_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/cpld_control_ciceC_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_ciceC_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -689,14 +691,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 341.148062 - 0: The maximum resident set size (KB) = 3175780 + 0: The total amount of wall time = 341.231921 + 0: The maximum resident set size (KB) = 3186304 Test 010 cpld_control_ciceC_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/cpld_control_c192_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_c192_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/cpld_control_c192_p8 Checking test 011 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -749,14 +751,14 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 633.885372 - 0: The maximum resident set size (KB) = 3260216 + 0: The total amount of wall time = 645.571858 + 0: The maximum resident set size (KB) = 3259264 Test 011 cpld_control_c192_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/cpld_restart_c192_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_c192_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/cpld_restart_c192_p8 Checking test 012 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -809,14 +811,14 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 439.684514 - 0: The maximum resident set size (KB) = 3165200 + 0: The total amount of wall time = 440.556763 + 0: The maximum resident set size (KB) = 3152392 Test 012 cpld_restart_c192_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_bmark_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/cpld_bmark_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_bmark_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/cpld_bmark_p8 Checking test 013 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -864,14 +866,14 @@ Checking test 013 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 869.455527 - 0: The maximum resident set size (KB) = 4040208 + 0: The total amount of wall time = 869.062154 + 0: The maximum resident set size (KB) = 4086980 Test 013 cpld_bmark_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_bmark_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/cpld_restart_bmark_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_bmark_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/cpld_restart_bmark_p8 Checking test 014 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -919,14 +921,14 @@ Checking test 014 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 554.528805 - 0: The maximum resident set size (KB) = 3974708 + 0: The total amount of wall time = 539.889841 + 0: The maximum resident set size (KB) = 3980132 Test 014 cpld_restart_bmark_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_noaero_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/cpld_control_noaero_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_noaero_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/cpld_control_noaero_p8 Checking test 015 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -990,14 +992,14 @@ Checking test 015 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 257.114752 - 0: The maximum resident set size (KB) = 1729680 + 0: The total amount of wall time = 254.426126 + 0: The maximum resident set size (KB) = 1715380 Test 015 cpld_control_noaero_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_c96_noaero_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/cpld_control_nowave_noaero_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_c96_noaero_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/cpld_control_nowave_noaero_p8 Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1059,14 +1061,14 @@ Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 258.990910 - 0: The maximum resident set size (KB) = 1772120 + 0: The total amount of wall time = 267.590969 + 0: The maximum resident set size (KB) = 1715556 Test 016 cpld_control_nowave_noaero_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_debug_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/cpld_debug_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_debug_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/cpld_debug_p8 Checking test 017 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1119,14 +1121,14 @@ Checking test 017 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 556.966036 - 0: The maximum resident set size (KB) = 3242056 + 0: The total amount of wall time = 561.024574 + 0: The maximum resident set size (KB) = 3244224 Test 017 cpld_debug_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_debug_noaero_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/cpld_debug_noaero_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_debug_noaero_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/cpld_debug_noaero_p8 Checking test 018 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1178,14 +1180,14 @@ Checking test 018 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 380.998458 - 0: The maximum resident set size (KB) = 1741760 + 0: The total amount of wall time = 384.503546 + 0: The maximum resident set size (KB) = 1695856 Test 018 cpld_debug_noaero_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_noaero_p8_agrid -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/cpld_control_noaero_p8_agrid +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_noaero_p8_agrid +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/cpld_control_noaero_p8_agrid Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1247,14 +1249,14 @@ Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 268.288870 - 0: The maximum resident set size (KB) = 1766896 + 0: The total amount of wall time = 266.013363 + 0: The maximum resident set size (KB) = 1771680 Test 019 cpld_control_noaero_p8_agrid PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_c48 -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/cpld_control_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/cpld_control_c48 Checking test 020 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1304,14 +1306,14 @@ Checking test 020 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 507.619710 - 0: The maximum resident set size (KB) = 2750000 + 0: The total amount of wall time = 499.999200 + 0: The maximum resident set size (KB) = 2808004 Test 020 cpld_control_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_warmstart_c48 -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/cpld_warmstart_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_warmstart_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/cpld_warmstart_c48 Checking test 021 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1361,14 +1363,14 @@ Checking test 021 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 140.884138 - 0: The maximum resident set size (KB) = 2800672 + 0: The total amount of wall time = 138.198636 + 0: The maximum resident set size (KB) = 2812748 Test 021 cpld_warmstart_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_warmstart_c48 -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/cpld_restart_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_warmstart_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/cpld_restart_c48 Checking test 022 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1418,14 +1420,14 @@ Checking test 022 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 78.571464 - 0: The maximum resident set size (KB) = 2186136 + 0: The total amount of wall time = 76.028244 + 0: The maximum resident set size (KB) = 2227052 Test 022 cpld_restart_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/cpld_control_p8_faster +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_p8_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/cpld_control_p8_faster Checking test 023 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1490,15 +1492,275 @@ Checking test 023 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 324.852593 - 0: The maximum resident set size (KB) = 3190676 + 0: The total amount of wall time = 334.527377 + 0: The maximum resident set size (KB) = 3187496 Test 023 cpld_control_p8_faster PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_flake -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_flake -Checking test 024 control_flake results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_pdlib_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/cpld_control_pdlib_p8 +Checking test 024 cpld_control_pdlib_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 1199.375628 + 0: The maximum resident set size (KB) = 1763528 + +Test 024 cpld_control_pdlib_p8 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_pdlib_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/cpld_restart_pdlib_p8 +Checking test 025 cpld_restart_pdlib_p8 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 589.353865 + 0: The maximum resident set size (KB) = 1028712 + +Test 025 cpld_restart_pdlib_p8 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_pdlib_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/cpld_mpi_pdlib_p8 +Checking test 026 cpld_mpi_pdlib_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 1053.573780 + 0: The maximum resident set size (KB) = 1649428 + +Test 026 cpld_mpi_pdlib_p8 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_debug_pdlib_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/cpld_debug_pdlib_p8 +Checking test 027 cpld_debug_pdlib_p8 results .... + Comparing sfcf003.tile1.nc .........OK + Comparing sfcf003.tile2.nc .........OK + Comparing sfcf003.tile3.nc .........OK + Comparing sfcf003.tile4.nc .........OK + Comparing sfcf003.tile5.nc .........OK + Comparing sfcf003.tile6.nc .........OK + Comparing atmf003.tile1.nc .........OK + Comparing atmf003.tile2.nc .........OK + Comparing atmf003.tile3.nc .........OK + Comparing atmf003.tile4.nc .........OK + Comparing atmf003.tile5.nc .........OK + Comparing atmf003.tile6.nc .........OK + Comparing RESTART/20210322.090000.coupler.res .........OK + Comparing RESTART/20210322.090000.fv_core.res.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-22-32400.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK + Comparing 20210322.090000.out_pnt.ww3 .........OK + Comparing 20210322.090000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 1393.556098 + 0: The maximum resident set size (KB) = 1704456 + +Test 027 cpld_debug_pdlib_p8 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_flake +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/control_flake +Checking test 028 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1508,15 +1770,15 @@ Checking test 024 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 193.680674 - 0: The maximum resident set size (KB) = 680176 + 0: The total amount of wall time = 194.059799 + 0: The maximum resident set size (KB) = 677812 -Test 024 control_flake PASS +Test 028 control_flake PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_CubedSphereGrid -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_CubedSphereGrid -Checking test 025 control_CubedSphereGrid results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_CubedSphereGrid +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/control_CubedSphereGrid +Checking test 029 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1542,29 +1804,29 @@ Checking test 025 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 131.602900 - 0: The maximum resident set size (KB) = 634836 + 0: The total amount of wall time = 131.065166 + 0: The maximum resident set size (KB) = 630284 -Test 025 control_CubedSphereGrid PASS +Test 029 control_CubedSphereGrid PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_CubedSphereGrid_parallel -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_CubedSphereGrid_parallel -Checking test 026 control_CubedSphereGrid_parallel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_CubedSphereGrid_parallel +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/control_CubedSphereGrid_parallel +Checking test 030 control_CubedSphereGrid_parallel results .... 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.035564 - 0: The maximum resident set size (KB) = 632468 + 0: The total amount of wall time = 128.306668 + 0: The maximum resident set size (KB) = 628020 -Test 026 control_CubedSphereGrid_parallel PASS +Test 030 control_CubedSphereGrid_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_latlon -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_latlon -Checking test 027 control_latlon results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_latlon +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/control_latlon +Checking test 031 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1574,33 +1836,33 @@ Checking test 027 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.521712 - 0: The maximum resident set size (KB) = 631084 + 0: The total amount of wall time = 133.025192 + 0: The maximum resident set size (KB) = 631056 -Test 027 control_latlon PASS +Test 031 control_latlon PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_wrtGauss_netcdf_parallel -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_wrtGauss_netcdf_parallel -Checking test 028 control_wrtGauss_netcdf_parallel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_wrtGauss_netcdf_parallel +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/control_wrtGauss_netcdf_parallel +Checking test 032 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.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 = 137.496390 - 0: The maximum resident set size (KB) = 634172 + 0: The total amount of wall time = 136.790444 + 0: The maximum resident set size (KB) = 634568 -Test 028 control_wrtGauss_netcdf_parallel PASS +Test 032 control_wrtGauss_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_c48 -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_c48 -Checking test 029 control_c48 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/control_c48 +Checking test 033 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1638,15 +1900,15 @@ Checking test 029 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 347.311052 -0: The maximum resident set size (KB) = 819488 +0: The total amount of wall time = 343.582461 +0: The maximum resident set size (KB) = 809132 -Test 029 control_c48 PASS +Test 033 control_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_c192 -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_c192 -Checking test 030 control_c192 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_c192 +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/control_c192 +Checking test 034 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1656,15 +1918,15 @@ Checking test 030 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 524.307000 - 0: The maximum resident set size (KB) = 762468 + 0: The total amount of wall time = 523.344397 + 0: The maximum resident set size (KB) = 772164 -Test 030 control_c192 PASS +Test 034 control_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_c384 -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_c384 -Checking test 031 control_c384 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_c384 +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/control_c384 +Checking test 035 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1674,15 +1936,15 @@ Checking test 031 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 576.098833 - 0: The maximum resident set size (KB) = 1236168 + 0: The total amount of wall time = 576.670460 + 0: The maximum resident set size (KB) = 1234264 -Test 031 control_c384 PASS +Test 035 control_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_c384gdas -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_c384gdas -Checking test 032 control_c384gdas results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_c384gdas +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/control_c384gdas +Checking test 036 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -1724,15 +1986,15 @@ Checking test 032 control_c384gdas 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 = 508.039881 - 0: The maximum resident set size (KB) = 1338172 + 0: The total amount of wall time = 507.873607 + 0: The maximum resident set size (KB) = 1347016 -Test 032 control_c384gdas PASS +Test 036 control_c384gdas PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_stochy -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_stochy -Checking test 033 control_stochy results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_stochy +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/control_stochy +Checking test 037 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1742,29 +2004,29 @@ Checking test 033 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 88.560396 - 0: The maximum resident set size (KB) = 636520 + 0: The total amount of wall time = 88.985217 + 0: The maximum resident set size (KB) = 630180 -Test 033 control_stochy PASS +Test 037 control_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_stochy -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_stochy_restart -Checking test 034 control_stochy_restart results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_stochy +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/control_stochy_restart +Checking test 038 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 47.662982 - 0: The maximum resident set size (KB) = 487224 + 0: The total amount of wall time = 47.424648 + 0: The maximum resident set size (KB) = 482084 -Test 034 control_stochy_restart PASS +Test 038 control_stochy_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_lndp -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_lndp -Checking test 035 control_lndp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_lndp +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/control_lndp +Checking test 039 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1774,15 +2036,15 @@ Checking test 035 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 82.219534 - 0: The maximum resident set size (KB) = 634300 + 0: The total amount of wall time = 81.376378 + 0: The maximum resident set size (KB) = 636440 -Test 035 control_lndp PASS +Test 039 control_lndp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_iovr4 -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_iovr4 -Checking test 036 control_iovr4 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_iovr4 +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/control_iovr4 +Checking test 040 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1796,15 +2058,15 @@ Checking test 036 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.043330 - 0: The maximum resident set size (KB) = 633416 + 0: The total amount of wall time = 135.783125 + 0: The maximum resident set size (KB) = 630888 -Test 036 control_iovr4 PASS +Test 040 control_iovr4 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_iovr5 -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_iovr5 -Checking test 037 control_iovr5 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_iovr5 +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/control_iovr5 +Checking test 041 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1818,15 +2080,15 @@ Checking test 037 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.516053 - 0: The maximum resident set size (KB) = 633660 + 0: The total amount of wall time = 135.101157 + 0: The maximum resident set size (KB) = 630996 -Test 037 control_iovr5 PASS +Test 041 control_iovr5 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_p8 -Checking test 038 control_p8 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/control_p8 +Checking test 042 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1872,15 +2134,15 @@ Checking test 038 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 168.584653 - 0: The maximum resident set size (KB) = 1603736 + 0: The total amount of wall time = 177.293596 + 0: The maximum resident set size (KB) = 1605152 -Test 038 control_p8 PASS +Test 042 control_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_restart_p8 -Checking test 039 control_restart_p8 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/control_restart_p8 +Checking test 043 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1918,15 +2180,15 @@ Checking test 039 control_restart_p8 results .... Comparing 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.698370 - 0: The maximum resident set size (KB) = 875464 + 0: The total amount of wall time = 90.109579 + 0: The maximum resident set size (KB) = 877208 -Test 039 control_restart_p8 PASS +Test 043 control_restart_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_qr_p8 -Checking test 040 control_qr_p8 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/control_qr_p8 +Checking test 044 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1972,15 +2234,15 @@ Checking test 040 control_qr_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 168.289973 - 0: The maximum resident set size (KB) = 1613960 + 0: The total amount of wall time = 167.307899 + 0: The maximum resident set size (KB) = 1597408 -Test 040 control_qr_p8 PASS +Test 044 control_qr_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_restart_qr_p8 -Checking test 041 control_restart_qr_p8 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/control_restart_qr_p8 +Checking test 045 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2018,15 +2280,15 @@ Checking test 041 control_restart_qr_p8 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.122871 - 0: The maximum resident set size (KB) = 866400 + 0: The total amount of wall time = 92.340658 + 0: The maximum resident set size (KB) = 876484 -Test 041 control_restart_qr_p8 PASS +Test 045 control_restart_qr_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_decomp_p8 -Checking test 042 control_decomp_p8 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/control_decomp_p8 +Checking test 046 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2068,15 +2330,15 @@ Checking test 042 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 175.274627 - 0: The maximum resident set size (KB) = 1589308 + 0: The total amount of wall time = 173.292493 + 0: The maximum resident set size (KB) = 1582836 -Test 042 control_decomp_p8 PASS +Test 046 control_decomp_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_2threads_p8 -Checking test 043 control_2threads_p8 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/control_2threads_p8 +Checking test 047 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2118,15 +2380,15 @@ Checking test 043 control_2threads_p8 results .... Comparing 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.512441 - 0: The maximum resident set size (KB) = 1697292 + 0: The total amount of wall time = 176.709948 + 0: The maximum resident set size (KB) = 1690644 -Test 043 control_2threads_p8 PASS +Test 047 control_2threads_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8_lndp -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_p8_lndp -Checking test 044 control_p8_lndp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_p8_lndp +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/control_p8_lndp +Checking test 048 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2144,15 +2406,15 @@ Checking test 044 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 313.563192 - 0: The maximum resident set size (KB) = 1596964 + 0: The total amount of wall time = 309.638071 + 0: The maximum resident set size (KB) = 1606724 -Test 044 control_p8_lndp PASS +Test 048 control_p8_lndp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8_rrtmgp -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_p8_rrtmgp -Checking test 045 control_p8_rrtmgp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_p8_rrtmgp +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/control_p8_rrtmgp +Checking test 049 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2198,15 +2460,15 @@ Checking test 045 control_p8_rrtmgp results .... Comparing 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.091853 - 0: The maximum resident set size (KB) = 1671420 + 0: The total amount of wall time = 227.777713 + 0: The maximum resident set size (KB) = 1679116 -Test 045 control_p8_rrtmgp PASS +Test 049 control_p8_rrtmgp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8_mynn -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_p8_mynn -Checking test 046 control_p8_mynn results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_p8_mynn +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/control_p8_mynn +Checking test 050 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2252,15 +2514,15 @@ Checking test 046 control_p8_mynn results .... Comparing 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.963104 - 0: The maximum resident set size (KB) = 1609112 + 0: The total amount of wall time = 169.926683 + 0: The maximum resident set size (KB) = 1612804 -Test 046 control_p8_mynn PASS +Test 050 control_p8_mynn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/merra2_thompson -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/merra2_thompson -Checking test 047 merra2_thompson results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/merra2_thompson +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/merra2_thompson +Checking test 051 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2306,15 +2568,15 @@ Checking test 047 merra2_thompson results .... Comparing 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.082642 - 0: The maximum resident set size (KB) = 1617172 + 0: The total amount of wall time = 188.755090 + 0: The maximum resident set size (KB) = 1616364 -Test 047 merra2_thompson PASS +Test 051 merra2_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/regional_control -Checking test 048 regional_control results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/regional_control +Checking test 052 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2324,29 +2586,29 @@ Checking test 048 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 296.189199 - 0: The maximum resident set size (KB) = 870364 + 0: The total amount of wall time = 309.298119 + 0: The maximum resident set size (KB) = 872624 -Test 048 regional_control PASS +Test 052 regional_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/regional_restart -Checking test 049 regional_restart results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/regional_restart +Checking test 053 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 152.240385 - 0: The maximum resident set size (KB) = 866668 + 0: The total amount of wall time = 159.068302 + 0: The maximum resident set size (KB) = 863568 -Test 049 regional_restart PASS +Test 053 regional_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/regional_control_qr -Checking test 050 regional_control_qr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/regional_control_qr +Checking test 054 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2356,29 +2618,29 @@ Checking test 050 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 297.388733 - 0: The maximum resident set size (KB) = 870316 + 0: The total amount of wall time = 295.418673 + 0: The maximum resident set size (KB) = 872868 -Test 050 regional_control_qr PASS +Test 054 regional_control_qr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/regional_restart_qr -Checking test 051 regional_restart_qr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/regional_restart_qr +Checking test 055 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 151.383685 - 0: The maximum resident set size (KB) = 865768 + 0: The total amount of wall time = 151.352056 + 0: The maximum resident set size (KB) = 860572 -Test 051 regional_restart_qr PASS +Test 055 regional_restart_qr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/regional_decomp -Checking test 052 regional_decomp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/regional_decomp +Checking test 056 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2388,15 +2650,15 @@ Checking test 052 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 313.666154 - 0: The maximum resident set size (KB) = 866664 + 0: The total amount of wall time = 313.287259 + 0: The maximum resident set size (KB) = 861620 -Test 052 regional_decomp PASS +Test 056 regional_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/regional_2threads -Checking test 053 regional_2threads results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/regional_2threads +Checking test 057 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2406,44 +2668,44 @@ Checking test 053 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 206.972686 - 0: The maximum resident set size (KB) = 850944 + 0: The total amount of wall time = 206.597021 + 0: The maximum resident set size (KB) = 845448 -Test 053 regional_2threads PASS +Test 057 regional_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_noquilt -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/regional_noquilt -Checking test 054 regional_noquilt results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_noquilt +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/regional_noquilt +Checking test 058 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 315.453502 - 0: The maximum resident set size (KB) = 857224 + 0: The total amount of wall time = 318.823337 + 0: The maximum resident set size (KB) = 856588 -Test 054 regional_noquilt PASS +Test 058 regional_noquilt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_netcdf_parallel -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/regional_netcdf_parallel -Checking test 055 regional_netcdf_parallel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_netcdf_parallel +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/regional_netcdf_parallel +Checking test 059 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 291.076687 - 0: The maximum resident set size (KB) = 865256 + 0: The total amount of wall time = 295.007364 + 0: The maximum resident set size (KB) = 862720 -Test 055 regional_netcdf_parallel PASS +Test 059 regional_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/regional_2dwrtdecomp -Checking test 056 regional_2dwrtdecomp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/regional_2dwrtdecomp +Checking test 060 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2453,15 +2715,15 @@ Checking test 056 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 295.177026 - 0: The maximum resident set size (KB) = 871084 + 0: The total amount of wall time = 295.563019 + 0: The maximum resident set size (KB) = 871004 -Test 056 regional_2dwrtdecomp PASS +Test 060 regional_2dwrtdecomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/fv3_regional_wofs -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/regional_wofs -Checking test 057 regional_wofs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/fv3_regional_wofs +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/regional_wofs +Checking test 061 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2471,15 +2733,15 @@ Checking test 057 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 373.537564 - 0: The maximum resident set size (KB) = 630584 + 0: The total amount of wall time = 375.335776 + 0: The maximum resident set size (KB) = 629428 -Test 057 regional_wofs PASS +Test 061 regional_wofs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/rap_control -Checking test 058 rap_control results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_control +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/rap_control +Checking test 062 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2525,15 +2787,15 @@ Checking test 058 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 461.660675 - 0: The maximum resident set size (KB) = 1016048 + 0: The total amount of wall time = 460.850461 + 0: The maximum resident set size (KB) = 1062444 -Test 058 rap_control PASS +Test 062 rap_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_spp_sppt_shum_skeb -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/regional_spp_sppt_shum_skeb -Checking test 059 regional_spp_sppt_shum_skeb results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_spp_sppt_shum_skeb +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/regional_spp_sppt_shum_skeb +Checking test 063 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -2543,15 +2805,15 @@ Checking test 059 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 269.022009 - 0: The maximum resident set size (KB) = 1180944 + 0: The total amount of wall time = 266.161820 + 0: The maximum resident set size (KB) = 1187552 -Test 059 regional_spp_sppt_shum_skeb PASS +Test 063 regional_spp_sppt_shum_skeb PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/rap_decomp -Checking test 060 rap_decomp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_control +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/rap_decomp +Checking test 064 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2597,15 +2859,15 @@ Checking test 060 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 478.279357 - 0: The maximum resident set size (KB) = 1000272 + 0: The total amount of wall time = 479.596652 + 0: The maximum resident set size (KB) = 1000300 -Test 060 rap_decomp PASS +Test 064 rap_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/rap_2threads -Checking test 061 rap_2threads results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_control +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/rap_2threads +Checking test 065 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2651,15 +2913,15 @@ Checking test 061 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 471.316427 - 0: The maximum resident set size (KB) = 1145936 + 0: The total amount of wall time = 471.174578 + 0: The maximum resident set size (KB) = 1137716 -Test 061 rap_2threads PASS +Test 065 rap_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/rap_restart -Checking test 062 rap_restart results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_control +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/rap_restart +Checking test 066 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2697,15 +2959,15 @@ Checking test 062 rap_restart results .... Comparing 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.309970 - 0: The maximum resident set size (KB) = 967232 + 0: The total amount of wall time = 233.778405 + 0: The maximum resident set size (KB) = 970444 -Test 062 rap_restart PASS +Test 066 rap_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_sfcdiff -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/rap_sfcdiff -Checking test 063 rap_sfcdiff results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_sfcdiff +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/rap_sfcdiff +Checking test 067 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2751,15 +3013,15 @@ Checking test 063 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 459.624943 - 0: The maximum resident set size (KB) = 1058996 + 0: The total amount of wall time = 457.040306 + 0: The maximum resident set size (KB) = 1048800 -Test 063 rap_sfcdiff PASS +Test 067 rap_sfcdiff PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_sfcdiff -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/rap_sfcdiff_decomp -Checking test 064 rap_sfcdiff_decomp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_sfcdiff +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/rap_sfcdiff_decomp +Checking test 068 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2805,15 +3067,15 @@ Checking test 064 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 484.349158 - 0: The maximum resident set size (KB) = 1001944 + 0: The total amount of wall time = 484.213025 + 0: The maximum resident set size (KB) = 1004548 -Test 064 rap_sfcdiff_decomp PASS +Test 068 rap_sfcdiff_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_sfcdiff -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/rap_sfcdiff_restart -Checking test 065 rap_sfcdiff_restart results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_sfcdiff +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/rap_sfcdiff_restart +Checking test 069 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2851,15 +3113,15 @@ Checking test 065 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 340.413741 - 0: The maximum resident set size (KB) = 986568 + 0: The total amount of wall time = 340.934540 + 0: The maximum resident set size (KB) = 991212 -Test 065 rap_sfcdiff_restart PASS +Test 069 rap_sfcdiff_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/hrrr_control -Checking test 066 hrrr_control results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hrrr_control +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/hrrr_control +Checking test 070 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2905,15 +3167,15 @@ Checking test 066 hrrr_control results .... Comparing 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.778457 - 0: The maximum resident set size (KB) = 1057804 + 0: The total amount of wall time = 426.406577 + 0: The maximum resident set size (KB) = 1051552 -Test 066 hrrr_control PASS +Test 070 hrrr_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/hrrr_control_decomp -Checking test 067 hrrr_control_decomp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hrrr_control +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/hrrr_control_decomp +Checking test 071 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2959,15 +3221,15 @@ Checking test 067 hrrr_control_decomp results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 449.446011 - 0: The maximum resident set size (KB) = 1002220 + 0: The total amount of wall time = 449.053600 + 0: The maximum resident set size (KB) = 959484 -Test 067 hrrr_control_decomp PASS +Test 071 hrrr_control_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/hrrr_control_2threads -Checking test 068 hrrr_control_2threads results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hrrr_control +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/hrrr_control_2threads +Checking test 072 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3013,29 +3275,29 @@ Checking test 068 hrrr_control_2threads results .... Comparing 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.025996 - 0: The maximum resident set size (KB) = 1080208 + 0: The total amount of wall time = 361.047260 + 0: The maximum resident set size (KB) = 1084204 -Test 068 hrrr_control_2threads PASS +Test 072 hrrr_control_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/hrrr_control_restart -Checking test 069 hrrr_control_restart results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hrrr_control +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/hrrr_control_restart +Checking test 073 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 318.459651 - 0: The maximum resident set size (KB) = 993084 + 0: The total amount of wall time = 317.304617 + 0: The maximum resident set size (KB) = 974904 -Test 069 hrrr_control_restart PASS +Test 073 hrrr_control_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_v1beta -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/rrfs_v1beta -Checking test 070 rrfs_v1beta results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rrfs_v1beta +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/rrfs_v1beta +Checking test 074 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3081,15 +3343,15 @@ Checking test 070 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 453.819290 - 0: The maximum resident set size (KB) = 1058680 + 0: The total amount of wall time = 451.066387 + 0: The maximum resident set size (KB) = 1058788 -Test 070 rrfs_v1beta PASS +Test 074 rrfs_v1beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_v1nssl -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/rrfs_v1nssl -Checking test 071 rrfs_v1nssl results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rrfs_v1nssl +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/rrfs_v1nssl +Checking test 075 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3103,15 +3365,15 @@ Checking test 071 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 536.274042 - 0: The maximum resident set size (KB) = 695472 + 0: The total amount of wall time = 536.622448 + 0: The maximum resident set size (KB) = 697772 -Test 071 rrfs_v1nssl PASS +Test 075 rrfs_v1nssl PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/rrfs_v1nssl_nohailnoccn -Checking test 072 rrfs_v1nssl_nohailnoccn results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/rrfs_v1nssl_nohailnoccn +Checking test 076 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3125,15 +3387,15 @@ Checking test 072 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 524.350976 - 0: The maximum resident set size (KB) = 757424 + 0: The total amount of wall time = 524.361265 + 0: The maximum resident set size (KB) = 758548 -Test 072 rrfs_v1nssl_nohailnoccn PASS +Test 076 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/rrfs_smoke_conus13km_hrrr_warm -Checking test 073 rrfs_smoke_conus13km_hrrr_warm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/rrfs_smoke_conus13km_hrrr_warm +Checking test 077 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -3141,15 +3403,15 @@ Checking test 073 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 151.948227 - 0: The maximum resident set size (KB) = 1027112 + 0: The total amount of wall time = 150.506880 + 0: The maximum resident set size (KB) = 1034688 -Test 073 rrfs_smoke_conus13km_hrrr_warm PASS +Test 077 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/rrfs_smoke_conus13km_hrrr_warm_2threads -Checking test 074 rrfs_smoke_conus13km_hrrr_warm_2threads results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/rrfs_smoke_conus13km_hrrr_warm_2threads +Checking test 078 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -3157,15 +3419,15 @@ Checking test 074 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 98.056488 - 0: The maximum resident set size (KB) = 944072 + 0: The total amount of wall time = 100.268948 + 0: The maximum resident set size (KB) = 945684 -Test 074 rrfs_smoke_conus13km_hrrr_warm_2threads PASS +Test 078 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_conus13km_hrrr_warm -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/rrfs_conus13km_hrrr_warm -Checking test 075 rrfs_conus13km_hrrr_warm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rrfs_conus13km_hrrr_warm +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/rrfs_conus13km_hrrr_warm +Checking test 079 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -3173,15 +3435,15 @@ Checking test 075 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 131.756414 - 0: The maximum resident set size (KB) = 991664 + 0: The total amount of wall time = 133.967730 + 0: The maximum resident set size (KB) = 993780 -Test 075 rrfs_conus13km_hrrr_warm PASS +Test 079 rrfs_conus13km_hrrr_warm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/rrfs_smoke_conus13km_radar_tten_warm -Checking test 076 rrfs_smoke_conus13km_radar_tten_warm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/rrfs_smoke_conus13km_radar_tten_warm +Checking test 080 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -3189,27 +3451,27 @@ Checking test 076 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 149.315254 - 0: The maximum resident set size (KB) = 1037500 + 0: The total amount of wall time = 152.080286 + 0: The maximum resident set size (KB) = 1035644 -Test 076 rrfs_smoke_conus13km_radar_tten_warm PASS +Test 080 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/rrfs_conus13km_hrrr_warm_restart_mismatch -Checking test 077 rrfs_conus13km_hrrr_warm_restart_mismatch results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/rrfs_conus13km_hrrr_warm_restart_mismatch +Checking test 081 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 70.372633 - 0: The maximum resident set size (KB) = 981920 + 0: The total amount of wall time = 70.589205 + 0: The maximum resident set size (KB) = 937508 -Test 077 rrfs_conus13km_hrrr_warm_restart_mismatch PASS +Test 081 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_csawmg -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_csawmg -Checking test 078 control_csawmg results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_csawmg +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/control_csawmg +Checking test 082 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3219,15 +3481,15 @@ Checking test 078 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 340.276044 - 0: The maximum resident set size (KB) = 727356 + 0: The total amount of wall time = 343.677709 + 0: The maximum resident set size (KB) = 725948 -Test 078 control_csawmg PASS +Test 082 control_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_csawmgt -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_csawmgt -Checking test 079 control_csawmgt results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_csawmgt +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/control_csawmgt +Checking test 083 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3237,15 +3499,15 @@ Checking test 079 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 336.104645 - 0: The maximum resident set size (KB) = 729180 + 0: The total amount of wall time = 337.551375 + 0: The maximum resident set size (KB) = 723936 -Test 079 control_csawmgt PASS +Test 083 control_csawmgt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_ras -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_ras -Checking test 080 control_ras results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_ras +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/control_ras +Checking test 084 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3255,27 +3517,27 @@ Checking test 080 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 181.822423 - 0: The maximum resident set size (KB) = 722972 + 0: The total amount of wall time = 180.462925 + 0: The maximum resident set size (KB) = 726612 -Test 080 control_ras PASS +Test 084 control_ras PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_wam -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_wam -Checking test 081 control_wam results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_wam +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/control_wam +Checking test 085 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 111.402664 - 0: The maximum resident set size (KB) = 642956 + 0: The total amount of wall time = 111.646924 + 0: The maximum resident set size (KB) = 645268 -Test 081 control_wam PASS +Test 085 control_wam PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_p8_faster -Checking test 082 control_p8_faster results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_p8_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/control_p8_faster +Checking test 086 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -3321,15 +3583,15 @@ Checking test 082 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 153.663414 - 0: The maximum resident set size (KB) = 1605324 + 0: The total amount of wall time = 153.817356 + 0: The maximum resident set size (KB) = 1605576 -Test 082 control_p8_faster PASS +Test 086 control_p8_faster PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/regional_control_faster -Checking test 083 regional_control_faster results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_control_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/regional_control_faster +Checking test 087 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -3339,57 +3601,57 @@ Checking test 083 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 269.708525 - 0: The maximum resident set size (KB) = 873092 + 0: The total amount of wall time = 268.746093 + 0: The maximum resident set size (KB) = 869844 -Test 083 regional_control_faster PASS +Test 087 regional_control_faster PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/rrfs_smoke_conus13km_hrrr_warm_debug -Checking test 084 rrfs_smoke_conus13km_hrrr_warm_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/rrfs_smoke_conus13km_hrrr_warm_debug +Checking test 088 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 842.240252 - 0: The maximum resident set size (KB) = 1058068 + 0: The total amount of wall time = 876.782088 + 0: The maximum resident set size (KB) = 1062556 -Test 084 rrfs_smoke_conus13km_hrrr_warm_debug PASS +Test 088 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/rrfs_smoke_conus13km_hrrr_warm_debug_2threads -Checking test 085 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +Checking test 089 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 481.154905 - 0: The maximum resident set size (KB) = 980192 + 0: The total amount of wall time = 486.710748 + 0: The maximum resident set size (KB) = 980488 -Test 085 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS +Test 089 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/rrfs_conus13km_hrrr_warm_debug -Checking test 086 rrfs_conus13km_hrrr_warm_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/rrfs_conus13km_hrrr_warm_debug +Checking test 090 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 762.267815 - 0: The maximum resident set size (KB) = 1014328 + 0: The total amount of wall time = 754.831405 + 0: The maximum resident set size (KB) = 1015140 -Test 086 rrfs_conus13km_hrrr_warm_debug PASS +Test 090 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_CubedSphereGrid_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_CubedSphereGrid_debug -Checking test 087 control_CubedSphereGrid_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_CubedSphereGrid_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/control_CubedSphereGrid_debug +Checking test 091 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3415,349 +3677,349 @@ Checking test 087 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 147.981857 - 0: The maximum resident set size (KB) = 796336 + 0: The total amount of wall time = 147.970994 + 0: The maximum resident set size (KB) = 795828 -Test 087 control_CubedSphereGrid_debug PASS +Test 091 control_CubedSphereGrid_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_wrtGauss_netcdf_parallel_debug -Checking test 088 control_wrtGauss_netcdf_parallel_debug results .... - Comparing sfcf000.nc .........OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/control_wrtGauss_netcdf_parallel_debug +Checking test 092 control_wrtGauss_netcdf_parallel_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 151.160277 - 0: The maximum resident set size (KB) = 794992 + 0: The total amount of wall time = 150.219317 + 0: The maximum resident set size (KB) = 788280 -Test 088 control_wrtGauss_netcdf_parallel_debug PASS +Test 092 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_stochy_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_stochy_debug -Checking test 089 control_stochy_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_stochy_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/control_stochy_debug +Checking test 093 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 176.432635 - 0: The maximum resident set size (KB) = 766396 + 0: The total amount of wall time = 166.905344 + 0: The maximum resident set size (KB) = 796556 -Test 089 control_stochy_debug PASS +Test 093 control_stochy_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_lndp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_lndp_debug -Checking test 090 control_lndp_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_lndp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/control_lndp_debug +Checking test 094 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 151.870081 - 0: The maximum resident set size (KB) = 797916 + 0: The total amount of wall time = 151.449719 + 0: The maximum resident set size (KB) = 800420 -Test 090 control_lndp_debug PASS +Test 094 control_lndp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_csawmg_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_csawmg_debug -Checking test 091 control_csawmg_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_csawmg_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/control_csawmg_debug +Checking test 095 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 230.710758 - 0: The maximum resident set size (KB) = 839100 + 0: The total amount of wall time = 233.658516 + 0: The maximum resident set size (KB) = 849500 -Test 091 control_csawmg_debug PASS +Test 095 control_csawmg_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_csawmgt_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_csawmgt_debug -Checking test 092 control_csawmgt_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_csawmgt_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/control_csawmgt_debug +Checking test 096 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 232.745460 - 0: The maximum resident set size (KB) = 845884 + 0: The total amount of wall time = 223.410175 + 0: The maximum resident set size (KB) = 839916 -Test 092 control_csawmgt_debug PASS +Test 096 control_csawmgt_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_ras_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_ras_debug -Checking test 093 control_ras_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_ras_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/control_ras_debug +Checking test 097 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 153.646515 - 0: The maximum resident set size (KB) = 806488 + 0: The total amount of wall time = 149.854155 + 0: The maximum resident set size (KB) = 804012 -Test 093 control_ras_debug PASS +Test 097 control_ras_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_diag_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_diag_debug -Checking test 094 control_diag_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_diag_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/control_diag_debug +Checking test 098 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 158.302553 - 0: The maximum resident set size (KB) = 854548 + 0: The total amount of wall time = 161.510133 + 0: The maximum resident set size (KB) = 815864 -Test 094 control_diag_debug PASS +Test 098 control_diag_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_debug_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_debug_p8 -Checking test 095 control_debug_p8 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_debug_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/control_debug_p8 +Checking test 099 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 169.925049 - 0: The maximum resident set size (KB) = 1618872 + 0: The total amount of wall time = 172.395211 + 0: The maximum resident set size (KB) = 1613916 -Test 095 control_debug_p8 PASS +Test 099 control_debug_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/regional_debug -Checking test 096 regional_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/regional_debug +Checking test 100 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1000.480690 - 0: The maximum resident set size (KB) = 877500 + 0: The total amount of wall time = 1004.959244 + 0: The maximum resident set size (KB) = 885836 -Test 096 regional_debug PASS +Test 100 regional_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/rap_control_debug -Checking test 097 rap_control_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_control_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/rap_control_debug +Checking test 101 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.340279 - 0: The maximum resident set size (KB) = 1174328 + 0: The total amount of wall time = 267.746885 + 0: The maximum resident set size (KB) = 1173044 -Test 097 rap_control_debug PASS +Test 101 rap_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/hrrr_control_debug -Checking test 098 hrrr_control_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hrrr_control_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/hrrr_control_debug +Checking test 102 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 270.221344 - 0: The maximum resident set size (KB) = 1170976 + 0: The total amount of wall time = 282.543391 + 0: The maximum resident set size (KB) = 1131708 -Test 098 hrrr_control_debug PASS +Test 102 hrrr_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/rap_unified_drag_suite_debug -Checking test 099 rap_unified_drag_suite_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_control_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/rap_unified_drag_suite_debug +Checking test 103 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 283.883072 - 0: The maximum resident set size (KB) = 1169168 + 0: The total amount of wall time = 280.414138 + 0: The maximum resident set size (KB) = 1176132 -Test 099 rap_unified_drag_suite_debug PASS +Test 103 rap_unified_drag_suite_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_diag_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/rap_diag_debug -Checking test 100 rap_diag_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_diag_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/rap_diag_debug +Checking test 104 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 289.246877 - 0: The maximum resident set size (KB) = 1252252 + 0: The total amount of wall time = 292.830794 + 0: The maximum resident set size (KB) = 1255552 -Test 100 rap_diag_debug PASS +Test 104 rap_diag_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/rap_cires_ugwp_debug -Checking test 101 rap_cires_ugwp_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_cires_ugwp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/rap_cires_ugwp_debug +Checking test 105 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.106297 - 0: The maximum resident set size (KB) = 1168500 + 0: The total amount of wall time = 281.005986 + 0: The maximum resident set size (KB) = 1176116 -Test 101 rap_cires_ugwp_debug PASS +Test 105 rap_cires_ugwp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/rap_unified_ugwp_debug -Checking test 102 rap_unified_ugwp_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_cires_ugwp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/rap_unified_ugwp_debug +Checking test 106 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 290.052547 - 0: The maximum resident set size (KB) = 1167980 + 0: The total amount of wall time = 286.483405 + 0: The maximum resident set size (KB) = 1173272 -Test 102 rap_unified_ugwp_debug PASS +Test 106 rap_unified_ugwp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_lndp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/rap_lndp_debug -Checking test 103 rap_lndp_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_lndp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/rap_lndp_debug +Checking test 107 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 290.914734 - 0: The maximum resident set size (KB) = 1131588 + 0: The total amount of wall time = 280.525358 + 0: The maximum resident set size (KB) = 1167396 -Test 103 rap_lndp_debug PASS +Test 107 rap_lndp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_progcld_thompson_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/rap_progcld_thompson_debug -Checking test 104 rap_progcld_thompson_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_progcld_thompson_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/rap_progcld_thompson_debug +Checking test 108 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 284.239099 - 0: The maximum resident set size (KB) = 1171016 + 0: The total amount of wall time = 280.839654 + 0: The maximum resident set size (KB) = 1175296 -Test 104 rap_progcld_thompson_debug PASS +Test 108 rap_progcld_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_noah_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/rap_noah_debug -Checking test 105 rap_noah_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_noah_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/rap_noah_debug +Checking test 109 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 272.099758 - 0: The maximum resident set size (KB) = 1171724 + 0: The total amount of wall time = 269.925908 + 0: The maximum resident set size (KB) = 1166172 -Test 105 rap_noah_debug PASS +Test 109 rap_noah_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_sfcdiff_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/rap_sfcdiff_debug -Checking test 106 rap_sfcdiff_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_sfcdiff_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/rap_sfcdiff_debug +Checking test 110 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 285.812125 - 0: The maximum resident set size (KB) = 1174276 + 0: The total amount of wall time = 269.600751 + 0: The maximum resident set size (KB) = 1171800 -Test 106 rap_sfcdiff_debug PASS +Test 110 rap_sfcdiff_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 107 rap_noah_sfcdiff_cires_ugwp_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 111 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 463.602744 - 0: The maximum resident set size (KB) = 1172284 + 0: The total amount of wall time = 451.952515 + 0: The maximum resident set size (KB) = 1166860 -Test 107 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 111 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_v1beta_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/rrfs_v1beta_debug -Checking test 108 rrfs_v1beta_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rrfs_v1beta_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/rrfs_v1beta_debug +Checking test 112 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.273713 - 0: The maximum resident set size (KB) = 1168396 + 0: The total amount of wall time = 275.769141 + 0: The maximum resident set size (KB) = 1165368 -Test 108 rrfs_v1beta_debug PASS +Test 112 rrfs_v1beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_clm_lake_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/rap_clm_lake_debug -Checking test 109 rap_clm_lake_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_clm_lake_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/rap_clm_lake_debug +Checking test 113 rap_clm_lake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 346.736994 - 0: The maximum resident set size (KB) = 1177116 + 0: The total amount of wall time = 341.960942 + 0: The maximum resident set size (KB) = 1140880 -Test 109 rap_clm_lake_debug PASS +Test 113 rap_clm_lake_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_flake_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/rap_flake_debug -Checking test 110 rap_flake_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_flake_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/rap_flake_debug +Checking test 114 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 278.037885 - 0: The maximum resident set size (KB) = 1167432 + 0: The total amount of wall time = 277.666797 + 0: The maximum resident set size (KB) = 1169232 -Test 110 rap_flake_debug PASS +Test 114 rap_flake_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_wam_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_wam_debug -Checking test 111 control_wam_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_wam_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/control_wam_debug +Checking test 115 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 291.412202 - 0: The maximum resident set size (KB) = 522304 + 0: The total amount of wall time = 287.565093 + 0: The maximum resident set size (KB) = 522816 -Test 111 control_wam_debug PASS +Test 115 control_wam_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/regional_spp_sppt_shum_skeb_dyn32_phy32 -Checking test 112 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 116 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -3767,15 +4029,15 @@ Checking test 112 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 253.782045 - 0: The maximum resident set size (KB) = 1070816 + 0: The total amount of wall time = 248.055376 + 0: The maximum resident set size (KB) = 1081852 -Test 112 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS +Test 116 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/rap_control_dyn32_phy32 -Checking test 113 rap_control_dyn32_phy32 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/rap_control_dyn32_phy32 +Checking test 117 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3821,15 +4083,15 @@ Checking test 113 rap_control_dyn32_phy32 results .... Comparing 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.693297 - 0: The maximum resident set size (KB) = 1006656 + 0: The total amount of wall time = 383.552797 + 0: The maximum resident set size (KB) = 1000540 -Test 113 rap_control_dyn32_phy32 PASS +Test 117 rap_control_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/hrrr_control_dyn32_phy32 -Checking test 114 hrrr_control_dyn32_phy32 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/hrrr_control_dyn32_phy32 +Checking test 118 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3875,15 +4137,15 @@ Checking test 114 hrrr_control_dyn32_phy32 results .... Comparing 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.323552 - 0: The maximum resident set size (KB) = 953728 + 0: The total amount of wall time = 190.627697 + 0: The maximum resident set size (KB) = 955928 -Test 114 hrrr_control_dyn32_phy32 PASS +Test 118 hrrr_control_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/rap_2threads_dyn32_phy32 -Checking test 115 rap_2threads_dyn32_phy32 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/rap_2threads_dyn32_phy32 +Checking test 119 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3929,15 +4191,15 @@ Checking test 115 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 396.535002 - 0: The maximum resident set size (KB) = 1017732 + 0: The total amount of wall time = 396.399422 + 0: The maximum resident set size (KB) = 1025500 -Test 115 rap_2threads_dyn32_phy32 PASS +Test 119 rap_2threads_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/hrrr_control_2threads_dyn32_phy32 -Checking test 116 hrrr_control_2threads_dyn32_phy32 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/hrrr_control_2threads_dyn32_phy32 +Checking test 120 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3983,15 +4245,15 @@ Checking test 116 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 162.733031 - 0: The maximum resident set size (KB) = 932904 + 0: The total amount of wall time = 162.086056 + 0: The maximum resident set size (KB) = 929456 -Test 116 hrrr_control_2threads_dyn32_phy32 PASS +Test 120 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/hrrr_control_decomp_dyn32_phy32 -Checking test 117 hrrr_control_decomp_dyn32_phy32 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/hrrr_control_decomp_dyn32_phy32 +Checking test 121 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4037,15 +4299,15 @@ Checking test 117 hrrr_control_decomp_dyn32_phy32 results .... Comparing 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.464128 - 0: The maximum resident set size (KB) = 903816 + 0: The total amount of wall time = 199.973937 + 0: The maximum resident set size (KB) = 894040 -Test 117 hrrr_control_decomp_dyn32_phy32 PASS +Test 121 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/rap_restart_dyn32_phy32 -Checking test 118 rap_restart_dyn32_phy32 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/rap_restart_dyn32_phy32 +Checking test 122 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -4083,29 +4345,29 @@ Checking test 118 rap_restart_dyn32_phy32 results .... Comparing 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.220827 - 0: The maximum resident set size (KB) = 951888 + 0: The total amount of wall time = 285.766049 + 0: The maximum resident set size (KB) = 917092 -Test 118 rap_restart_dyn32_phy32 PASS +Test 122 rap_restart_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/hrrr_control_restart_dyn32_phy32 -Checking test 119 hrrr_control_restart_dyn32_phy32 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/hrrr_control_restart_dyn32_phy32 +Checking test 123 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 99.787600 - 0: The maximum resident set size (KB) = 872504 + 0: The total amount of wall time = 97.903750 + 0: The maximum resident set size (KB) = 862244 -Test 119 hrrr_control_restart_dyn32_phy32 PASS +Test 123 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_dyn64_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/rap_control_dyn64_phy32 -Checking test 120 rap_control_dyn64_phy32 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_control_dyn64_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/rap_control_dyn64_phy32 +Checking test 124 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4151,82 +4413,82 @@ Checking test 120 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 245.107224 - 0: The maximum resident set size (KB) = 976300 + 0: The total amount of wall time = 242.235173 + 0: The maximum resident set size (KB) = 970924 -Test 120 rap_control_dyn64_phy32 PASS +Test 124 rap_control_dyn64_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_debug_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/rap_control_debug_dyn32_phy32 -Checking test 121 rap_control_debug_dyn32_phy32 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_control_debug_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/rap_control_debug_dyn32_phy32 +Checking test 125 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.688227 - 0: The maximum resident set size (KB) = 1062464 + 0: The total amount of wall time = 273.352214 + 0: The maximum resident set size (KB) = 1063904 -Test 121 rap_control_debug_dyn32_phy32 PASS +Test 125 rap_control_debug_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/hrrr_control_debug_dyn32_phy32 -Checking test 122 hrrr_control_debug_dyn32_phy32 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/hrrr_control_debug_dyn32_phy32 +Checking test 126 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.016229 - 0: The maximum resident set size (KB) = 1018332 + 0: The total amount of wall time = 279.616631 + 0: The maximum resident set size (KB) = 1018556 -Test 122 hrrr_control_debug_dyn32_phy32 PASS +Test 126 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_debug_dyn64_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/rap_control_dyn64_phy32_debug -Checking test 123 rap_control_dyn64_phy32_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_control_debug_dyn64_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/rap_control_dyn64_phy32_debug +Checking test 127 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 284.564661 - 0: The maximum resident set size (KB) = 1100416 + 0: The total amount of wall time = 280.238304 + 0: The maximum resident set size (KB) = 1095492 -Test 123 rap_control_dyn64_phy32_debug PASS +Test 127 rap_control_dyn64_phy32_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/hafs_regional_atm -Checking test 124 hafs_regional_atm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/hafs_regional_atm +Checking test 128 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 267.300961 - 0: The maximum resident set size (KB) = 1055936 + 0: The total amount of wall time = 263.445727 + 0: The maximum resident set size (KB) = 1048304 -Test 124 hafs_regional_atm PASS +Test 128 hafs_regional_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/hafs_regional_atm_thompson_gfdlsf -Checking test 125 hafs_regional_atm_thompson_gfdlsf results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/hafs_regional_atm_thompson_gfdlsf +Checking test 129 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 397.539753 - 0: The maximum resident set size (KB) = 1417812 + 0: The total amount of wall time = 390.773775 + 0: The maximum resident set size (KB) = 1413200 -Test 125 hafs_regional_atm_thompson_gfdlsf PASS +Test 129 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_atm_ocn -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/hafs_regional_atm_ocn -Checking test 126 hafs_regional_atm_ocn results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_atm_ocn +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/hafs_regional_atm_ocn +Checking test 130 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4234,15 +4496,15 @@ Checking test 126 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 379.551953 - 0: The maximum resident set size (KB) = 1227196 + 0: The total amount of wall time = 374.128101 + 0: The maximum resident set size (KB) = 1236252 -Test 126 hafs_regional_atm_ocn PASS +Test 130 hafs_regional_atm_ocn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_atm_wav -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/hafs_regional_atm_wav -Checking test 127 hafs_regional_atm_wav results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_atm_wav +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/hafs_regional_atm_wav +Checking test 131 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing 20190829.060000.out_grd.ww3 .........OK @@ -4250,15 +4512,15 @@ Checking test 127 hafs_regional_atm_wav 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 = 737.412930 - 0: The maximum resident set size (KB) = 1255004 + 0: The total amount of wall time = 732.349884 + 0: The maximum resident set size (KB) = 1262728 -Test 127 hafs_regional_atm_wav PASS +Test 131 hafs_regional_atm_wav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_atm_ocn_wav -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/hafs_regional_atm_ocn_wav -Checking test 128 hafs_regional_atm_ocn_wav results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_atm_ocn_wav +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/hafs_regional_atm_ocn_wav +Checking test 132 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4268,29 +4530,29 @@ Checking test 128 hafs_regional_atm_ocn_wav results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 832.896397 - 0: The maximum resident set size (KB) = 1280360 + 0: The total amount of wall time = 836.298525 + 0: The maximum resident set size (KB) = 1279984 -Test 128 hafs_regional_atm_ocn_wav PASS +Test 132 hafs_regional_atm_ocn_wav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/hafs_regional_1nest_atm -Checking test 129 hafs_regional_1nest_atm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/hafs_regional_1nest_atm +Checking test 133 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 365.710577 - 0: The maximum resident set size (KB) = 506340 + 0: The total amount of wall time = 360.114203 + 0: The maximum resident set size (KB) = 513292 -Test 129 hafs_regional_1nest_atm PASS +Test 133 hafs_regional_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/hafs_regional_telescopic_2nests_atm -Checking test 130 hafs_regional_telescopic_2nests_atm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/hafs_regional_telescopic_2nests_atm +Checking test 134 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4298,29 +4560,29 @@ Checking test 130 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 414.680934 - 0: The maximum resident set size (KB) = 518796 + 0: The total amount of wall time = 411.563634 + 0: The maximum resident set size (KB) = 509608 -Test 130 hafs_regional_telescopic_2nests_atm PASS +Test 134 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_global_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/hafs_global_1nest_atm -Checking test 131 hafs_global_1nest_atm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_global_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/hafs_global_1nest_atm +Checking test 135 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 172.890927 - 0: The maximum resident set size (KB) = 358560 + 0: The total amount of wall time = 171.677156 + 0: The maximum resident set size (KB) = 356220 -Test 131 hafs_global_1nest_atm PASS +Test 135 hafs_global_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_global_multiple_4nests_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/hafs_global_multiple_4nests_atm -Checking test 132 hafs_global_multiple_4nests_atm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_global_multiple_4nests_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/hafs_global_multiple_4nests_atm +Checking test 136 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4337,15 +4599,15 @@ Checking test 132 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 462.789962 - 0: The maximum resident set size (KB) = 426804 + 0: The total amount of wall time = 459.637165 + 0: The maximum resident set size (KB) = 429324 -Test 132 hafs_global_multiple_4nests_atm PASS +Test 136 hafs_global_multiple_4nests_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/hafs_regional_specified_moving_1nest_atm -Checking test 133 hafs_regional_specified_moving_1nest_atm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/hafs_regional_specified_moving_1nest_atm +Checking test 137 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4353,29 +4615,29 @@ Checking test 133 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 227.661081 - 0: The maximum resident set size (KB) = 519100 + 0: The total amount of wall time = 226.790964 + 0: The maximum resident set size (KB) = 521952 -Test 133 hafs_regional_specified_moving_1nest_atm PASS +Test 137 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/hafs_regional_storm_following_1nest_atm -Checking test 134 hafs_regional_storm_following_1nest_atm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/hafs_regional_storm_following_1nest_atm +Checking test 138 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 216.531660 - 0: The maximum resident set size (KB) = 518116 + 0: The total amount of wall time = 215.674409 + 0: The maximum resident set size (KB) = 521284 -Test 134 hafs_regional_storm_following_1nest_atm PASS +Test 138 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/hafs_regional_storm_following_1nest_atm_ocn -Checking test 135 hafs_regional_storm_following_1nest_atm_ocn results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/hafs_regional_storm_following_1nest_atm_ocn +Checking test 139 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4383,43 +4645,43 @@ Checking test 135 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 292.161615 - 0: The maximum resident set size (KB) = 567684 + 0: The total amount of wall time = 287.531807 + 0: The maximum resident set size (KB) = 564396 -Test 135 hafs_regional_storm_following_1nest_atm_ocn PASS +Test 139 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_global_storm_following_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/hafs_global_storm_following_1nest_atm -Checking test 136 hafs_global_storm_following_1nest_atm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_global_storm_following_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/hafs_global_storm_following_1nest_atm +Checking test 140 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 69.084094 - 0: The maximum resident set size (KB) = 376040 + 0: The total amount of wall time = 67.027355 + 0: The maximum resident set size (KB) = 371428 -Test 136 hafs_global_storm_following_1nest_atm PASS +Test 140 hafs_global_storm_following_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/hafs_regional_storm_following_1nest_atm_ocn_debug -Checking test 137 hafs_regional_storm_following_1nest_atm_ocn_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/hafs_regional_storm_following_1nest_atm_ocn_debug +Checking test 141 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 752.147650 - 0: The maximum resident set size (KB) = 590652 + 0: The total amount of wall time = 749.611260 + 0: The maximum resident set size (KB) = 587824 -Test 137 hafs_regional_storm_following_1nest_atm_ocn_debug PASS +Test 141 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/hafs_regional_storm_following_1nest_atm_ocn_wav -Checking test 138 hafs_regional_storm_following_1nest_atm_ocn_wav results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 142 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4429,162 +4691,162 @@ Checking test 138 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 535.261890 - 0: The maximum resident set size (KB) = 624460 + 0: The total amount of wall time = 537.225469 + 0: The maximum resident set size (KB) = 620960 -Test 138 hafs_regional_storm_following_1nest_atm_ocn_wav PASS +Test 142 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_docn -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/hafs_regional_docn -Checking test 139 hafs_regional_docn results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_docn +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/hafs_regional_docn +Checking test 143 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 363.517440 - 0: The maximum resident set size (KB) = 1236368 + 0: The total amount of wall time = 360.842533 + 0: The maximum resident set size (KB) = 1204732 -Test 139 hafs_regional_docn PASS +Test 143 hafs_regional_docn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_docn_oisst -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/hafs_regional_docn_oisst -Checking test 140 hafs_regional_docn_oisst results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_docn_oisst +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/hafs_regional_docn_oisst +Checking test 144 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 359.685450 - 0: The maximum resident set size (KB) = 1221832 + 0: The total amount of wall time = 357.028424 + 0: The maximum resident set size (KB) = 1228096 -Test 140 hafs_regional_docn_oisst PASS +Test 144 hafs_regional_docn_oisst PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_datm_cdeps -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/hafs_regional_datm_cdeps -Checking test 141 hafs_regional_datm_cdeps results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_datm_cdeps +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/hafs_regional_datm_cdeps +Checking test 145 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 929.652799 - 0: The maximum resident set size (KB) = 1044524 + 0: The total amount of wall time = 939.228427 + 0: The maximum resident set size (KB) = 1035112 -Test 141 hafs_regional_datm_cdeps PASS +Test 145 hafs_regional_datm_cdeps PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/datm_cdeps_control_cfsr -Checking test 142 datm_cdeps_control_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/datm_cdeps_control_cfsr +Checking test 146 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.MOM.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.698649 - 0: The maximum resident set size (KB) = 1036616 + 0: The total amount of wall time = 145.102827 + 0: The maximum resident set size (KB) = 1053868 -Test 142 datm_cdeps_control_cfsr PASS +Test 146 datm_cdeps_control_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/datm_cdeps_restart_cfsr -Checking test 143 datm_cdeps_restart_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/datm_cdeps_restart_cfsr +Checking test 147 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 92.264789 - 0: The maximum resident set size (KB) = 978700 + 0: The total amount of wall time = 90.198846 + 0: The maximum resident set size (KB) = 1034432 -Test 143 datm_cdeps_restart_cfsr PASS +Test 147 datm_cdeps_restart_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_control_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/datm_cdeps_control_gefs -Checking test 144 datm_cdeps_control_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_control_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/datm_cdeps_control_gefs +Checking test 148 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 143.718759 - 0: The maximum resident set size (KB) = 919324 + 0: The total amount of wall time = 142.750595 + 0: The maximum resident set size (KB) = 980780 -Test 144 datm_cdeps_control_gefs PASS +Test 148 datm_cdeps_control_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_iau_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/datm_cdeps_iau_gefs -Checking test 145 datm_cdeps_iau_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_iau_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/datm_cdeps_iau_gefs +Checking test 149 datm_cdeps_iau_gefs 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.154230 - 0: The maximum resident set size (KB) = 932516 + 0: The total amount of wall time = 147.280101 + 0: The maximum resident set size (KB) = 964552 -Test 145 datm_cdeps_iau_gefs PASS +Test 149 datm_cdeps_iau_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_stochy_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/datm_cdeps_stochy_gefs -Checking test 146 datm_cdeps_stochy_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_stochy_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/datm_cdeps_stochy_gefs +Checking test 150 datm_cdeps_stochy_gefs 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.863912 - 0: The maximum resident set size (KB) = 928316 + 0: The total amount of wall time = 142.574136 + 0: The maximum resident set size (KB) = 952820 -Test 146 datm_cdeps_stochy_gefs PASS +Test 150 datm_cdeps_stochy_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_ciceC_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/datm_cdeps_ciceC_cfsr -Checking test 147 datm_cdeps_ciceC_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_ciceC_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/datm_cdeps_ciceC_cfsr +Checking test 151 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.MOM.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.666778 - 0: The maximum resident set size (KB) = 1032228 + 0: The total amount of wall time = 144.439851 + 0: The maximum resident set size (KB) = 1083416 -Test 147 datm_cdeps_ciceC_cfsr PASS +Test 151 datm_cdeps_ciceC_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_bulk_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/datm_cdeps_bulk_cfsr -Checking test 148 datm_cdeps_bulk_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_bulk_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/datm_cdeps_bulk_cfsr +Checking test 152 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.309627 - 0: The maximum resident set size (KB) = 1047520 + 0: The total amount of wall time = 145.817393 + 0: The maximum resident set size (KB) = 1053864 -Test 148 datm_cdeps_bulk_cfsr PASS +Test 152 datm_cdeps_bulk_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_bulk_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/datm_cdeps_bulk_gefs -Checking test 149 datm_cdeps_bulk_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_bulk_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/datm_cdeps_bulk_gefs +Checking test 153 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 142.731611 - 0: The maximum resident set size (KB) = 963320 + 0: The total amount of wall time = 142.215840 + 0: The maximum resident set size (KB) = 976540 -Test 149 datm_cdeps_bulk_gefs PASS +Test 153 datm_cdeps_bulk_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_mx025_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/datm_cdeps_mx025_cfsr -Checking test 150 datm_cdeps_mx025_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_mx025_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/datm_cdeps_mx025_cfsr +Checking test 154 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4592,15 +4854,15 @@ Checking test 150 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 438.827774 - 0: The maximum resident set size (KB) = 876336 + 0: The total amount of wall time = 436.789779 + 0: The maximum resident set size (KB) = 877616 -Test 150 datm_cdeps_mx025_cfsr PASS +Test 154 datm_cdeps_mx025_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_mx025_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/datm_cdeps_mx025_gefs -Checking test 151 datm_cdeps_mx025_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_mx025_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/datm_cdeps_mx025_gefs +Checking test 155 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4608,78 +4870,78 @@ Checking test 151 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 442.381244 - 0: The maximum resident set size (KB) = 929388 + 0: The total amount of wall time = 428.469570 + 0: The maximum resident set size (KB) = 924944 -Test 151 datm_cdeps_mx025_gefs PASS +Test 155 datm_cdeps_mx025_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/datm_cdeps_multiple_files_cfsr -Checking test 152 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/datm_cdeps_multiple_files_cfsr +Checking test 156 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 144.731025 - 0: The maximum resident set size (KB) = 1062020 + 0: The total amount of wall time = 144.367369 + 0: The maximum resident set size (KB) = 1073264 -Test 152 datm_cdeps_multiple_files_cfsr PASS +Test 156 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/datm_cdeps_3072x1536_cfsr -Checking test 153 datm_cdeps_3072x1536_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/datm_cdeps_3072x1536_cfsr +Checking test 157 datm_cdeps_3072x1536_cfsr 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 = 198.718340 - 0: The maximum resident set size (KB) = 2355400 + 0: The total amount of wall time = 196.843541 + 0: The maximum resident set size (KB) = 2360868 -Test 153 datm_cdeps_3072x1536_cfsr PASS +Test 157 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_gfs -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/datm_cdeps_gfs -Checking test 154 datm_cdeps_gfs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_gfs +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/datm_cdeps_gfs +Checking test 158 datm_cdeps_gfs 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 = 195.904698 - 0: The maximum resident set size (KB) = 2299984 + 0: The total amount of wall time = 199.386245 + 0: The maximum resident set size (KB) = 2369264 -Test 154 datm_cdeps_gfs PASS +Test 158 datm_cdeps_gfs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_debug_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/datm_cdeps_debug_cfsr -Checking test 155 datm_cdeps_debug_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_debug_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/datm_cdeps_debug_cfsr +Checking test 159 datm_cdeps_debug_cfsr 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 = 361.350480 - 0: The maximum resident set size (KB) = 964560 + 0: The total amount of wall time = 362.527761 + 0: The maximum resident set size (KB) = 986628 -Test 155 datm_cdeps_debug_cfsr PASS +Test 159 datm_cdeps_debug_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_control_cfsr_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/datm_cdeps_control_cfsr_faster -Checking test 156 datm_cdeps_control_cfsr_faster results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_control_cfsr_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/datm_cdeps_control_cfsr_faster +Checking test 160 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.158010 - 0: The maximum resident set size (KB) = 1043056 + 0: The total amount of wall time = 146.462234 + 0: The maximum resident set size (KB) = 1078312 -Test 156 datm_cdeps_control_cfsr_faster PASS +Test 160 datm_cdeps_control_cfsr_faster PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_lnd_gswp3 -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/datm_cdeps_lnd_gswp3 -Checking test 157 datm_cdeps_lnd_gswp3 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_lnd_gswp3 +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/datm_cdeps_lnd_gswp3 +Checking test 161 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4687,15 +4949,15 @@ Checking test 157 datm_cdeps_lnd_gswp3 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.571587 - 0: The maximum resident set size (KB) = 263084 + 0: The total amount of wall time = 7.294556 + 0: The maximum resident set size (KB) = 262572 -Test 157 datm_cdeps_lnd_gswp3 PASS +Test 161 datm_cdeps_lnd_gswp3 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/datm_cdeps_lnd_gswp3 -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/datm_cdeps_lnd_gswp3_rst -Checking test 158 datm_cdeps_lnd_gswp3_rst results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/datm_cdeps_lnd_gswp3 +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/datm_cdeps_lnd_gswp3_rst +Checking test 162 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -4703,15 +4965,15 @@ Checking test 158 datm_cdeps_lnd_gswp3_rst 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.069816 - 0: The maximum resident set size (KB) = 260276 + 0: The total amount of wall time = 12.708948 + 0: The maximum resident set size (KB) = 267088 -Test 158 datm_cdeps_lnd_gswp3_rst PASS +Test 162 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8_atmlnd_sbs -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_p8_atmlnd_sbs -Checking test 159 control_p8_atmlnd_sbs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_p8_atmlnd_sbs +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/control_p8_atmlnd_sbs +Checking test 163 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -4795,15 +5057,15 @@ Checking test 159 control_p8_atmlnd_sbs 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 = 204.005200 - 0: The maximum resident set size (KB) = 1612356 + 0: The total amount of wall time = 202.703158 + 0: The maximum resident set size (KB) = 1604004 -Test 159 control_p8_atmlnd_sbs PASS +Test 163 control_p8_atmlnd_sbs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/atmwav_control_noaero_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/atmwav_control_noaero_p8 -Checking test 160 atmwav_control_noaero_p8 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/atmwav_control_noaero_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/atmwav_control_noaero_p8 +Checking test 164 atmwav_control_noaero_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -4845,15 +5107,15 @@ Checking test 160 atmwav_control_noaero_p8 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 = 95.325391 - 0: The maximum resident set size (KB) = 1641220 + 0: The total amount of wall time = 94.037011 + 0: The maximum resident set size (KB) = 1643900 -Test 160 atmwav_control_noaero_p8 PASS +Test 164 atmwav_control_noaero_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/control_atmwav -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/control_atmwav -Checking test 161 control_atmwav results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/control_atmwav +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/control_atmwav +Checking test 165 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -4896,15 +5158,15 @@ Checking test 161 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 86.904689 - 0: The maximum resident set size (KB) = 661332 + 0: The total amount of wall time = 86.831481 + 0: The maximum resident set size (KB) = 665344 -Test 161 control_atmwav PASS +Test 165 control_atmwav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/atmaero_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/atmaero_control_p8 -Checking test 162 atmaero_control_p8 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/atmaero_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/atmaero_control_p8 +Checking test 166 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4947,15 +5209,15 @@ Checking test 162 atmaero_control_p8 results .... Comparing 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.912970 - 0: The maximum resident set size (KB) = 2983364 + 0: The total amount of wall time = 226.044252 + 0: The maximum resident set size (KB) = 2978468 -Test 162 atmaero_control_p8 PASS +Test 166 atmaero_control_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/atmaero_control_p8_rad -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/atmaero_control_p8_rad -Checking test 163 atmaero_control_p8_rad results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/atmaero_control_p8_rad +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/atmaero_control_p8_rad +Checking test 167 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4998,15 +5260,15 @@ Checking test 163 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 283.962729 - 0: The maximum resident set size (KB) = 3055620 + 0: The total amount of wall time = 279.200482 + 0: The maximum resident set size (KB) = 3046236 -Test 163 atmaero_control_p8_rad PASS +Test 167 atmaero_control_p8_rad PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/atmaero_control_p8_rad_micro -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/atmaero_control_p8_rad_micro -Checking test 164 atmaero_control_p8_rad_micro results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/atmaero_control_p8_rad_micro +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/atmaero_control_p8_rad_micro +Checking test 168 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5049,15 +5311,15 @@ Checking test 164 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 286.233167 - 0: The maximum resident set size (KB) = 2992332 + 0: The total amount of wall time = 283.155197 + 0: The maximum resident set size (KB) = 3062424 -Test 164 atmaero_control_p8_rad_micro PASS +Test 168 atmaero_control_p8_rad_micro PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_atmaq -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/regional_atmaq -Checking test 165 regional_atmaq results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_atmaq +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/regional_atmaq +Checking test 169 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -5072,15 +5334,15 @@ Checking test 165 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 617.933122 - 0: The maximum resident set size (KB) = 1473440 + 0: The total amount of wall time = 620.329751 + 0: The maximum resident set size (KB) = 1427788 -Test 165 regional_atmaq PASS +Test 169 regional_atmaq PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_atmaq_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/regional_atmaq_debug -Checking test 166 regional_atmaq_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_atmaq_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/regional_atmaq_debug +Checking test 170 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -5093,15 +5355,15 @@ Checking test 166 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1245.343907 - 0: The maximum resident set size (KB) = 1406208 + 0: The total amount of wall time = 1217.574940 + 0: The maximum resident set size (KB) = 1394684 -Test 166 regional_atmaq_debug PASS +Test 170 regional_atmaq_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_atmaq_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1749/stmp/jongkim/FV3_RT/rt_170826/regional_atmaq_faster -Checking test 167 regional_atmaq_faster results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_atmaq_faster +working dir = /work/noaa/epic-ps/jongkim/rt-1727/stmp/jongkim/FV3_RT/rt_265973/regional_atmaq_faster +Checking test 171 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -5116,12 +5378,12 @@ Checking test 167 regional_atmaq_faster 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.027228 - 0: The maximum resident set size (KB) = 1473000 + 0: The total amount of wall time = 542.803447 + 0: The maximum resident set size (KB) = 1302392 -Test 167 regional_atmaq_faster PASS +Test 171 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Wed May 10 19:40:57 CDT 2023 -Elapsed time: 01h:13m:28s. Have a nice day! +Sun May 14 22:36:34 CDT 2023 +Elapsed time: 01h:17m:32s. Have a nice day! diff --git a/tests/RegressionTests_wcoss2.intel.log b/tests/RegressionTests_wcoss2.intel.log index ce23871d3fa..c91ec67fa77 100644 --- a/tests/RegressionTests_wcoss2.intel.log +++ b/tests/RegressionTests_wcoss2.intel.log @@ -1,34 +1,34 @@ -Thu May 11 11:06:28 UTC 2023 +Mon May 15 13:46:23 UTC 2023 Start Regression test -Compile 001 elapsed time 1342 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 1139 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 1086 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 548 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 005 elapsed time 1015 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 742 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 602 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 008 elapsed time 2006 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 977 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 490 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 983 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 833 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 013 elapsed time 731 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 899 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 015 elapsed time 999 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 272 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 017 elapsed time 851 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 821 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 019 elapsed time 1061 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 687 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 1118 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 022 elapsed time 1051 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 986 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 024 elapsed time 466 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 001 elapsed time 1257 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 950 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 1540 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 944 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 005 elapsed time 590 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 1353 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 589 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,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 008 elapsed time 1350 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 503 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 464 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 1458 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 420 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 013 elapsed time 707 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 014 elapsed time 997 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 721 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 351 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 017 elapsed time 196 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 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 019 elapsed time 399 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 990 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 1089 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 022 elapsed time 661 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 1094 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 024 elapsed time 314 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug Compile 025 elapsed time 797 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8_mixedmode -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/cpld_control_p8_mixedmode +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_p8_mixedmode +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -93,14 +93,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 347.732480 -The maximum resident set size (KB) = 2955540 +The total amount of wall time = 341.885834 +The maximum resident set size (KB) = 2950496 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/cpld_control_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/cpld_control_p8 Checking test 002 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -165,14 +165,14 @@ Checking test 002 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 396.669799 -The maximum resident set size (KB) = 2985180 +The total amount of wall time = 389.941660 +The maximum resident set size (KB) = 2981244 Test 002 cpld_control_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/cpld_restart_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/cpld_restart_p8 Checking test 003 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -225,14 +225,14 @@ Checking test 003 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 268.659978 -The maximum resident set size (KB) = 2872708 +The total amount of wall time = 234.777979 +The maximum resident set size (KB) = 2871104 Test 003 cpld_restart_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/cpld_control_qr_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/cpld_control_qr_p8 Checking test 004 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -297,14 +297,14 @@ Checking test 004 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 397.555918 -The maximum resident set size (KB) = 2995856 +The total amount of wall time = 390.554639 +The maximum resident set size (KB) = 2993004 Test 004 cpld_control_qr_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/cpld_restart_qr_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/cpld_restart_qr_p8 Checking test 005 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -357,14 +357,14 @@ Checking test 005 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 257.270568 -The maximum resident set size (KB) = 2883184 +The total amount of wall time = 246.779893 +The maximum resident set size (KB) = 2882724 Test 005 cpld_restart_qr_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/cpld_2threads_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/cpld_2threads_p8 Checking test 006 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -417,14 +417,14 @@ Checking test 006 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 375.782851 -The maximum resident set size (KB) = 3290904 +The total amount of wall time = 370.924420 +The maximum resident set size (KB) = 3284712 Test 006 cpld_2threads_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/cpld_decomp_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/cpld_decomp_p8 Checking test 007 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -477,14 +477,14 @@ Checking test 007 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 388.141965 -The maximum resident set size (KB) = 2983764 +The total amount of wall time = 384.299973 +The maximum resident set size (KB) = 2982236 Test 007 cpld_decomp_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/cpld_mpi_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/cpld_mpi_p8 Checking test 008 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -537,14 +537,14 @@ Checking test 008 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 324.703980 -The maximum resident set size (KB) = 2912112 +The total amount of wall time = 321.604001 +The maximum resident set size (KB) = 2910724 Test 008 cpld_mpi_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_ciceC_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/cpld_control_ciceC_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_ciceC_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/cpld_control_ciceC_p8 Checking test 009 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -609,14 +609,14 @@ Checking test 009 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 396.110755 -The maximum resident set size (KB) = 2986844 +The total amount of wall time = 389.864934 +The maximum resident set size (KB) = 2980188 Test 009 cpld_control_ciceC_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_bmark_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/cpld_bmark_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_bmark_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/cpld_bmark_p8 Checking test 010 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -664,14 +664,14 @@ Checking test 010 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 988.600548 -The maximum resident set size (KB) = 3931080 +The total amount of wall time = 948.645289 +The maximum resident set size (KB) = 3922092 Test 010 cpld_bmark_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_bmark_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/cpld_restart_bmark_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_bmark_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/cpld_restart_bmark_p8 Checking test 011 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -719,14 +719,14 @@ Checking test 011 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 671.299865 -The maximum resident set size (KB) = 3888792 +The total amount of wall time = 665.075082 +The maximum resident set size (KB) = 3899352 Test 011 cpld_restart_bmark_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/cpld_control_noaero_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/cpld_control_noaero_p8 Checking test 012 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -790,14 +790,14 @@ Checking test 012 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 290.876103 -The maximum resident set size (KB) = 1576268 +The total amount of wall time = 286.984502 +The maximum resident set size (KB) = 1572000 Test 012 cpld_control_noaero_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/cpld_control_nowave_noaero_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_c96_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/cpld_control_nowave_noaero_p8 Checking test 013 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -859,14 +859,14 @@ Checking test 013 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 305.970135 -The maximum resident set size (KB) = 1633844 +The total amount of wall time = 303.890901 +The maximum resident set size (KB) = 1623956 Test 013 cpld_control_nowave_noaero_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/cpld_control_noaero_p8_agrid +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_noaero_p8_agrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/cpld_control_noaero_p8_agrid Checking test 014 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -928,14 +928,14 @@ Checking test 014 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 314.411805 -The maximum resident set size (KB) = 1629736 +The total amount of wall time = 308.242875 +The maximum resident set size (KB) = 1623572 Test 014 cpld_control_noaero_p8_agrid PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/cpld_control_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/cpld_control_c48 Checking test 015 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -985,14 +985,14 @@ Checking test 015 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 443.455864 -The maximum resident set size (KB) = 2641388 +The total amount of wall time = 440.351112 +The maximum resident set size (KB) = 2638700 Test 015 cpld_control_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/cpld_warmstart_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/cpld_warmstart_c48 Checking test 016 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1042,14 +1042,14 @@ Checking test 016 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 130.141238 -The maximum resident set size (KB) = 2658848 +The total amount of wall time = 127.269835 +The maximum resident set size (KB) = 2657128 Test 016 cpld_warmstart_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/cpld_restart_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/cpld_restart_c48 Checking test 017 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1099,14 +1099,14 @@ Checking test 017 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 75.101264 -The maximum resident set size (KB) = 2076552 +The total amount of wall time = 76.772575 +The maximum resident set size (KB) = 2076248 Test 017 cpld_restart_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/cpld_control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/cpld_control_p8_faster +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/cpld_control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/cpld_control_p8_faster Checking test 018 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1171,14 +1171,14 @@ Checking test 018 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 384.908853 -The maximum resident set size (KB) = 2980152 +The total amount of wall time = 384.240242 +The maximum resident set size (KB) = 2981308 Test 018 cpld_control_p8_faster PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_flake -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_flake +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_flake +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/control_flake Checking test 019 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1189,14 +1189,14 @@ Checking test 019 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 215.606182 -The maximum resident set size (KB) = 570736 +The total amount of wall time = 217.249010 +The maximum resident set size (KB) = 565776 Test 019 control_flake PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_CubedSphereGrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_CubedSphereGrid +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_CubedSphereGrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/control_CubedSphereGrid Checking test 020 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1223,14 +1223,14 @@ Checking test 020 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 129.967822 -The maximum resident set size (KB) = 521684 +The total amount of wall time = 130.229440 +The maximum resident set size (KB) = 519132 Test 020 control_CubedSphereGrid PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_latlon -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_latlon +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_latlon +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/control_latlon Checking test 021 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1241,14 +1241,14 @@ Checking test 021 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 132.949985 -The maximum resident set size (KB) = 519824 +The total amount of wall time = 132.812284 +The maximum resident set size (KB) = 521064 Test 021 control_latlon PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_wrtGauss_netcdf_parallel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/control_wrtGauss_netcdf_parallel Checking test 022 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1259,14 +1259,14 @@ Checking test 022 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.460168 -The maximum resident set size (KB) = 520360 +The total amount of wall time = 136.517663 +The maximum resident set size (KB) = 521160 Test 022 control_wrtGauss_netcdf_parallel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_c48 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/control_c48 Checking test 023 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1305,14 +1305,14 @@ Checking test 023 control_c48 results .... 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.623715 -The maximum resident set size (KB) = 679392 +The total amount of wall time = 327.840084 +The maximum resident set size (KB) = 682032 Test 023 control_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_c192 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_c192 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_c192 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/control_c192 Checking test 024 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1323,14 +1323,14 @@ Checking test 024 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 529.705093 -The maximum resident set size (KB) = 621472 +The total amount of wall time = 527.624793 +The maximum resident set size (KB) = 621088 Test 024 control_c192 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_c384 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_c384 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_c384 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/control_c384 Checking test 025 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1341,14 +1341,14 @@ Checking test 025 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 569.633566 -The maximum resident set size (KB) = 928588 +The total amount of wall time = 568.594167 +The maximum resident set size (KB) = 935100 Test 025 control_c384 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_c384gdas -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_c384gdas +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_c384gdas +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/control_c384gdas Checking test 026 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1391,14 +1391,14 @@ Checking test 026 control_c384gdas 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 = 502.720485 -The maximum resident set size (KB) = 1067152 +The total amount of wall time = 499.590040 +The maximum resident set size (KB) = 1062624 Test 026 control_c384gdas PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_stochy +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/control_stochy Checking test 027 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1409,28 +1409,28 @@ Checking test 027 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 91.140117 -The maximum resident set size (KB) = 523568 +The total amount of wall time = 90.719229 +The maximum resident set size (KB) = 522940 Test 027 control_stochy PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_stochy_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/control_stochy_restart Checking test 028 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 49.708003 -The maximum resident set size (KB) = 295356 +The total amount of wall time = 50.503092 +The maximum resident set size (KB) = 293652 Test 028 control_stochy_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_lndp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/control_lndp Checking test 029 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1441,14 +1441,14 @@ Checking test 029 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 84.375033 -The maximum resident set size (KB) = 526048 +The total amount of wall time = 83.973162 +The maximum resident set size (KB) = 520512 Test 029 control_lndp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_iovr4 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_iovr4 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_iovr4 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/control_iovr4 Checking test 030 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1463,14 +1463,14 @@ Checking test 030 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.639326 -The maximum resident set size (KB) = 521992 +The total amount of wall time = 136.268745 +The maximum resident set size (KB) = 522568 Test 030 control_iovr4 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_iovr5 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_iovr5 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_iovr5 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/control_iovr5 Checking test 031 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1485,14 +1485,14 @@ Checking test 031 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 136.429241 -The maximum resident set size (KB) = 518440 +The total amount of wall time = 135.996596 +The maximum resident set size (KB) = 521664 Test 031 control_iovr5 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/control_p8 Checking test 032 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1539,14 +1539,14 @@ Checking test 032 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 182.837300 -The maximum resident set size (KB) = 1486432 +The total amount of wall time = 186.989482 +The maximum resident set size (KB) = 1485124 Test 032 control_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_restart_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/control_restart_p8 Checking test 033 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1585,14 +1585,14 @@ Checking test 033 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 105.660917 -The maximum resident set size (KB) = 659896 +The total amount of wall time = 103.168277 +The maximum resident set size (KB) = 658304 Test 033 control_restart_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_qr_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/control_qr_p8 Checking test 034 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1639,14 +1639,14 @@ Checking test 034 control_qr_p8 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 = 181.543679 -The maximum resident set size (KB) = 1501052 +The total amount of wall time = 182.381949 +The maximum resident set size (KB) = 1494836 Test 034 control_qr_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_restart_qr_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/control_restart_qr_p8 Checking test 035 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1685,14 +1685,14 @@ Checking test 035 control_restart_qr_p8 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 = 106.455916 -The maximum resident set size (KB) = 668932 +The total amount of wall time = 111.093074 +The maximum resident set size (KB) = 671308 Test 035 control_restart_qr_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_decomp_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/control_decomp_p8 Checking test 036 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1735,14 +1735,14 @@ Checking test 036 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 185.031872 -The maximum resident set size (KB) = 1480892 +The total amount of wall time = 186.824267 +The maximum resident set size (KB) = 1478152 Test 036 control_decomp_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_2threads_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/control_2threads_p8 Checking test 037 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1785,14 +1785,14 @@ Checking test 037 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 161.028810 -The maximum resident set size (KB) = 1580128 +The total amount of wall time = 162.420999 +The maximum resident set size (KB) = 1575468 Test 037 control_2threads_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_p8_lndp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_p8_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/control_p8_lndp Checking test 038 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1811,14 +1811,14 @@ Checking test 038 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 326.122373 -The maximum resident set size (KB) = 1488496 +The total amount of wall time = 327.357481 +The maximum resident set size (KB) = 1493996 Test 038 control_p8_lndp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8_rrtmgp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_p8_rrtmgp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_p8_rrtmgp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/control_p8_rrtmgp Checking test 039 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1865,14 +1865,14 @@ Checking test 039 control_p8_rrtmgp results .... 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.143516 -The maximum resident set size (KB) = 1552912 +The total amount of wall time = 243.282301 +The maximum resident set size (KB) = 1546944 Test 039 control_p8_rrtmgp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8_mynn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_p8_mynn +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_p8_mynn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/control_p8_mynn Checking test 040 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1919,14 +1919,14 @@ Checking test 040 control_p8_mynn results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 185.817188 -The maximum resident set size (KB) = 1498356 +The total amount of wall time = 188.492792 +The maximum resident set size (KB) = 1496316 Test 040 control_p8_mynn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/merra2_thompson -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/merra2_thompson +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/merra2_thompson +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/merra2_thompson Checking test 041 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1973,14 +1973,14 @@ Checking test 041 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 207.517773 -The maximum resident set size (KB) = 1497712 +The total amount of wall time = 211.095736 +The maximum resident set size (KB) = 1497212 Test 041 merra2_thompson PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/regional_control +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/regional_control Checking test 042 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1991,28 +1991,28 @@ Checking test 042 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 295.553442 -The maximum resident set size (KB) = 654984 +The total amount of wall time = 295.350277 +The maximum resident set size (KB) = 655392 Test 042 regional_control PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/regional_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/regional_restart Checking test 043 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 165.770434 -The maximum resident set size (KB) = 654668 +The total amount of wall time = 165.021816 +The maximum resident set size (KB) = 655968 Test 043 regional_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/regional_control_qr +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/regional_control_qr Checking test 044 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2023,28 +2023,28 @@ Checking test 044 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 297.004404 -The maximum resident set size (KB) = 658960 +The total amount of wall time = 293.494582 +The maximum resident set size (KB) = 655340 Test 044 regional_control_qr PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/regional_restart_qr +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/regional_restart_qr Checking test 045 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 162.120116 -The maximum resident set size (KB) = 656648 +The total amount of wall time = 167.826327 +The maximum resident set size (KB) = 656604 Test 045 regional_restart_qr PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/regional_decomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/regional_decomp Checking test 046 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2055,14 +2055,14 @@ Checking test 046 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 309.831781 -The maximum resident set size (KB) = 657888 +The total amount of wall time = 308.223730 +The maximum resident set size (KB) = 658816 Test 046 regional_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/regional_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/regional_2threads Checking test 047 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2073,14 +2073,14 @@ Checking test 047 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 181.769729 -The maximum resident set size (KB) = 699376 +The total amount of wall time = 184.660936 +The maximum resident set size (KB) = 699312 Test 047 regional_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_noquilt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/regional_noquilt +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_noquilt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/regional_noquilt Checking test 048 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2088,28 +2088,28 @@ Checking test 048 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 320.261202 -The maximum resident set size (KB) = 651836 +The total amount of wall time = 313.921080 +The maximum resident set size (KB) = 648424 Test 048 regional_noquilt PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/regional_netcdf_parallel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/regional_netcdf_parallel Checking test 049 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK -The total amount of wall time = 291.600475 -The maximum resident set size (KB) = 652788 +The total amount of wall time = 295.520875 +The maximum resident set size (KB) = 651496 Test 049 regional_netcdf_parallel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/regional_2dwrtdecomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/regional_2dwrtdecomp Checking test 050 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2120,14 +2120,14 @@ Checking test 050 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 294.322291 -The maximum resident set size (KB) = 660604 +The total amount of wall time = 295.808449 +The maximum resident set size (KB) = 659924 Test 050 regional_2dwrtdecomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/fv3_regional_wofs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/regional_wofs +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/fv3_regional_wofs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/regional_wofs Checking test 051 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2138,14 +2138,14 @@ Checking test 051 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 366.997199 -The maximum resident set size (KB) = 346556 +The total amount of wall time = 376.956407 +The maximum resident set size (KB) = 345612 Test 051 regional_wofs PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/rap_control +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/rap_control Checking test 052 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2192,14 +2192,14 @@ Checking test 052 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 428.165826 -The maximum resident set size (KB) = 897940 +The total amount of wall time = 420.174047 +The maximum resident set size (KB) = 896492 Test 052 rap_control PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/regional_spp_sppt_shum_skeb +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_spp_sppt_shum_skeb +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/regional_spp_sppt_shum_skeb Checking test 053 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2210,14 +2210,14 @@ Checking test 053 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 271.996801 -The maximum resident set size (KB) = 993068 +The total amount of wall time = 246.653998 +The maximum resident set size (KB) = 989536 Test 053 regional_spp_sppt_shum_skeb PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/rap_decomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/rap_decomp Checking test 054 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2264,14 +2264,14 @@ Checking test 054 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 453.028244 -The maximum resident set size (KB) = 899620 +The total amount of wall time = 434.335677 +The maximum resident set size (KB) = 891860 Test 054 rap_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/rap_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/rap_2threads Checking test 055 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2318,14 +2318,14 @@ Checking test 055 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 400.256927 -The maximum resident set size (KB) = 970144 +The total amount of wall time = 393.522382 +The maximum resident set size (KB) = 970576 Test 055 rap_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/rap_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/rap_restart Checking test 056 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2364,14 +2364,14 @@ Checking test 056 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 223.253069 -The maximum resident set size (KB) = 649936 +The total amount of wall time = 215.450988 +The maximum resident set size (KB) = 646768 Test 056 rap_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/rap_sfcdiff +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/rap_sfcdiff Checking test 057 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2418,14 +2418,14 @@ Checking test 057 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 436.798465 -The maximum resident set size (KB) = 895868 +The total amount of wall time = 427.535601 +The maximum resident set size (KB) = 896416 Test 057 rap_sfcdiff PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/rap_sfcdiff_decomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/rap_sfcdiff_decomp Checking test 058 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2472,14 +2472,14 @@ Checking test 058 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 455.891893 -The maximum resident set size (KB) = 896528 +The total amount of wall time = 441.689206 +The maximum resident set size (KB) = 896936 Test 058 rap_sfcdiff_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/rap_sfcdiff_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/rap_sfcdiff_restart Checking test 059 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2518,14 +2518,14 @@ Checking test 059 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 317.735779 -The maximum resident set size (KB) = 644152 +The total amount of wall time = 318.409364 +The maximum resident set size (KB) = 643896 Test 059 rap_sfcdiff_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/hrrr_control +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/hrrr_control Checking test 060 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2572,14 +2572,14 @@ Checking test 060 hrrr_control 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 = 406.265512 -The maximum resident set size (KB) = 892724 +The total amount of wall time = 391.369569 +The maximum resident set size (KB) = 892276 Test 060 hrrr_control PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/hrrr_control_decomp +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/hrrr_control_decomp Checking test 061 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2626,14 +2626,14 @@ Checking test 061 hrrr_control_decomp 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 = 424.636451 -The maximum resident set size (KB) = 894008 +The total amount of wall time = 405.862829 +The maximum resident set size (KB) = 891572 Test 061 hrrr_control_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/hrrr_control_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/hrrr_control_2threads Checking test 062 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2680,28 +2680,28 @@ Checking test 062 hrrr_control_2threads 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 = 374.324920 -The maximum resident set size (KB) = 960024 +The total amount of wall time = 352.926210 +The maximum resident set size (KB) = 960456 Test 062 hrrr_control_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/hrrr_control_restart +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/hrrr_control_restart Checking test 063 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 296.216911 -The maximum resident set size (KB) = 643532 +The total amount of wall time = 297.637432 +The maximum resident set size (KB) = 643456 Test 063 hrrr_control_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_v1beta -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/rrfs_v1beta +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/rrfs_v1beta +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/rrfs_v1beta Checking test 064 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2748,14 +2748,14 @@ Checking test 064 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 445.267129 -The maximum resident set size (KB) = 894968 +The total amount of wall time = 424.962229 +The maximum resident set size (KB) = 896180 Test 064 rrfs_v1beta PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_v1nssl -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/rrfs_v1nssl +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/rrfs_v1nssl +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/rrfs_v1nssl Checking test 065 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2770,14 +2770,14 @@ Checking test 065 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 500.278632 -The maximum resident set size (KB) = 587144 +The total amount of wall time = 487.049906 +The maximum resident set size (KB) = 587716 Test 065 rrfs_v1nssl PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/rrfs_v1nssl_nohailnoccn +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/rrfs_v1nssl_nohailnoccn Checking test 066 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2792,14 +2792,14 @@ Checking test 066 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 484.930903 -The maximum resident set size (KB) = 572608 +The total amount of wall time = 473.034071 +The maximum resident set size (KB) = 573904 Test 066 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/rrfs_smoke_conus13km_hrrr_warm Checking test 067 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2808,14 +2808,14 @@ Checking test 067 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 161.934291 -The maximum resident set size (KB) = 800284 +The total amount of wall time = 155.983049 +The maximum resident set size (KB) = 806696 Test 067 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 068 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2824,14 +2824,14 @@ Checking test 068 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 111.249905 -The maximum resident set size (KB) = 802348 +The total amount of wall time = 111.199857 +The maximum resident set size (KB) = 808868 Test 068 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/rrfs_conus13km_hrrr_warm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/rrfs_conus13km_hrrr_warm Checking test 069 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2840,14 +2840,14 @@ Checking test 069 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 143.554730 -The maximum resident set size (KB) = 796728 +The total amount of wall time = 144.359475 +The maximum resident set size (KB) = 804772 Test 069 rrfs_conus13km_hrrr_warm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/rrfs_smoke_conus13km_radar_tten_warm Checking test 070 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2856,26 +2856,26 @@ Checking test 070 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 158.467419 -The maximum resident set size (KB) = 803516 +The total amount of wall time = 157.004164 +The maximum resident set size (KB) = 804220 Test 070 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 071 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 76.642200 -The maximum resident set size (KB) = 770284 +The total amount of wall time = 94.193422 +The maximum resident set size (KB) = 773612 Test 071 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_csawmg -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_csawmg +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_csawmg +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/control_csawmg Checking test 072 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2886,14 +2886,14 @@ Checking test 072 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 354.233216 -The maximum resident set size (KB) = 587268 +The total amount of wall time = 349.507409 +The maximum resident set size (KB) = 585416 Test 072 control_csawmg PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_csawmgt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_csawmgt +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_csawmgt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/control_csawmgt Checking test 073 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2904,14 +2904,14 @@ Checking test 073 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 351.122749 -The maximum resident set size (KB) = 588408 +The total amount of wall time = 343.830370 +The maximum resident set size (KB) = 585932 Test 073 control_csawmgt PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_ras -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_ras +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_ras +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/control_ras Checking test 074 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2922,26 +2922,26 @@ Checking test 074 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 183.408696 -The maximum resident set size (KB) = 552292 +The total amount of wall time = 183.757382 +The maximum resident set size (KB) = 552912 Test 074 control_ras PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_wam -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_wam +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_wam +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/control_wam Checking test 075 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 118.477384 -The maximum resident set size (KB) = 275704 +The total amount of wall time = 120.213676 +The maximum resident set size (KB) = 274900 Test 075 control_wam PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_p8_faster +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/control_p8_faster Checking test 076 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2988,14 +2988,14 @@ Checking test 076 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 183.343949 -The maximum resident set size (KB) = 1492928 +The total amount of wall time = 175.428960 +The maximum resident set size (KB) = 1485924 Test 076 control_p8_faster PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_control_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/regional_control_faster +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_control_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/regional_control_faster Checking test 077 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3006,56 +3006,56 @@ Checking test 077 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 286.112647 -The maximum resident set size (KB) = 656628 +The total amount of wall time = 279.782140 +The maximum resident set size (KB) = 658328 Test 077 regional_control_faster PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 078 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 919.367188 -The maximum resident set size (KB) = 836804 +The total amount of wall time = 915.596782 +The maximum resident set size (KB) = 830896 Test 078 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 079 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 535.793600 -The maximum resident set size (KB) = 831072 +The total amount of wall time = 528.068786 +The maximum resident set size (KB) = 834800 Test 079 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/rrfs_conus13km_hrrr_warm_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/rrfs_conus13km_hrrr_warm_debug Checking test 080 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 831.433366 -The maximum resident set size (KB) = 821944 +The total amount of wall time = 819.059396 +The maximum resident set size (KB) = 828492 Test 080 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_CubedSphereGrid_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_CubedSphereGrid_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_CubedSphereGrid_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/control_CubedSphereGrid_debug Checking test 081 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3082,348 +3082,348 @@ Checking test 081 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 164.276115 -The maximum resident set size (KB) = 679376 +The total amount of wall time = 165.429369 +The maximum resident set size (KB) = 680140 Test 081 control_CubedSphereGrid_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_wrtGauss_netcdf_parallel_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/control_wrtGauss_netcdf_parallel_debug Checking test 082 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 167.158077 -The maximum resident set size (KB) = 679024 +The total amount of wall time = 161.867704 +The maximum resident set size (KB) = 678244 Test 082 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_stochy_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_stochy_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_stochy_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/control_stochy_debug Checking test 083 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 187.154591 -The maximum resident set size (KB) = 681480 +The total amount of wall time = 178.978675 +The maximum resident set size (KB) = 680880 Test 083 control_stochy_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_lndp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/control_lndp_debug Checking test 084 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 168.242890 -The maximum resident set size (KB) = 686312 +The total amount of wall time = 161.299143 +The maximum resident set size (KB) = 684652 Test 084 control_lndp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_csawmg_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_csawmg_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_csawmg_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/control_csawmg_debug Checking test 085 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 266.238582 -The maximum resident set size (KB) = 721776 +The total amount of wall time = 257.962309 +The maximum resident set size (KB) = 725468 Test 085 control_csawmg_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_csawmgt_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_csawmgt_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_csawmgt_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/control_csawmgt_debug Checking test 086 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 264.164676 -The maximum resident set size (KB) = 723484 +The total amount of wall time = 254.409841 +The maximum resident set size (KB) = 725304 Test 086 control_csawmgt_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_ras_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_ras_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_ras_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/control_ras_debug Checking test 087 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 167.516480 -The maximum resident set size (KB) = 694196 +The total amount of wall time = 163.314771 +The maximum resident set size (KB) = 694688 Test 087 control_ras_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_diag_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/control_diag_debug Checking test 088 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 170.633367 -The maximum resident set size (KB) = 740524 +The total amount of wall time = 164.226303 +The maximum resident set size (KB) = 738412 Test 088 control_diag_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_debug_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_debug_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_debug_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/control_debug_p8 Checking test 089 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 196.678161 -The maximum resident set size (KB) = 1502648 +The total amount of wall time = 189.452496 +The maximum resident set size (KB) = 1508056 Test 089 control_debug_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/regional_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/regional_debug Checking test 090 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1058.940359 -The maximum resident set size (KB) = 677488 +The total amount of wall time = 1052.571931 +The maximum resident set size (KB) = 677308 Test 090 regional_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/rap_control_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/rap_control_debug Checking test 091 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 303.870034 -The maximum resident set size (KB) = 1058076 +The total amount of wall time = 299.697578 +The maximum resident set size (KB) = 1051700 Test 091 rap_control_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/hrrr_control_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/hrrr_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/hrrr_control_debug Checking test 092 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.183289 -The maximum resident set size (KB) = 1051652 +The total amount of wall time = 291.586262 +The maximum resident set size (KB) = 1054444 Test 092 hrrr_control_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/rap_unified_drag_suite_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/rap_unified_drag_suite_debug Checking test 093 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 306.328783 -The maximum resident set size (KB) = 1056364 +The total amount of wall time = 299.041819 +The maximum resident set size (KB) = 1055784 Test 093 rap_unified_drag_suite_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/rap_diag_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/rap_diag_debug Checking test 094 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 311.933041 -The maximum resident set size (KB) = 1142264 +The total amount of wall time = 309.617198 +The maximum resident set size (KB) = 1138000 Test 094 rap_diag_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/rap_cires_ugwp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/rap_cires_ugwp_debug Checking test 095 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 307.950442 -The maximum resident set size (KB) = 1057972 +The total amount of wall time = 305.356202 +The maximum resident set size (KB) = 1055780 Test 095 rap_cires_ugwp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/rap_unified_ugwp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/rap_unified_ugwp_debug Checking test 096 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 312.102196 -The maximum resident set size (KB) = 1051436 +The total amount of wall time = 306.027572 +The maximum resident set size (KB) = 1052144 Test 096 rap_unified_ugwp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/rap_lndp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/rap_lndp_debug Checking test 097 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 303.329101 -The maximum resident set size (KB) = 1056564 +The total amount of wall time = 302.128276 +The maximum resident set size (KB) = 1054268 Test 097 rap_lndp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_progcld_thompson_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/rap_progcld_thompson_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_progcld_thompson_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/rap_progcld_thompson_debug Checking test 098 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.786262 -The maximum resident set size (KB) = 1051244 +The total amount of wall time = 301.480106 +The maximum resident set size (KB) = 1054884 Test 098 rap_progcld_thompson_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_noah_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/rap_noah_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_noah_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/rap_noah_debug Checking test 099 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 295.879195 -The maximum resident set size (KB) = 1055432 +The total amount of wall time = 295.610547 +The maximum resident set size (KB) = 1052028 Test 099 rap_noah_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_sfcdiff_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/rap_sfcdiff_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_sfcdiff_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/rap_sfcdiff_debug Checking test 100 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 302.033735 -The maximum resident set size (KB) = 1055112 +The total amount of wall time = 301.176587 +The maximum resident set size (KB) = 1058124 Test 100 rap_sfcdiff_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/rap_noah_sfcdiff_cires_ugwp_debug Checking test 101 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 494.643655 -The maximum resident set size (KB) = 1057524 +The total amount of wall time = 493.066007 +The maximum resident set size (KB) = 1054260 Test 101 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rrfs_v1beta_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/rrfs_v1beta_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/rrfs_v1beta_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/rrfs_v1beta_debug Checking test 102 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 296.726192 -The maximum resident set size (KB) = 1053636 +The total amount of wall time = 295.804635 +The maximum resident set size (KB) = 1055256 Test 102 rrfs_v1beta_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_clm_lake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/rap_clm_lake_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_clm_lake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/rap_clm_lake_debug Checking test 103 rap_clm_lake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 360.711035 -The maximum resident set size (KB) = 1060176 +The total amount of wall time = 356.264544 +The maximum resident set size (KB) = 1057484 Test 103 rap_clm_lake_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_flake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/rap_flake_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_flake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/rap_flake_debug Checking test 104 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 305.842882 -The maximum resident set size (KB) = 1059488 +The total amount of wall time = 298.761762 +The maximum resident set size (KB) = 1058408 Test 104 rap_flake_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_wam_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_wam_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_wam_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/control_wam_debug Checking test 105 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 296.505707 -The maximum resident set size (KB) = 304656 +The total amount of wall time = 298.079154 +The maximum resident set size (KB) = 306792 Test 105 control_wam_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3434,14 +3434,14 @@ Checking test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 279.322845 -The maximum resident set size (KB) = 900176 +The total amount of wall time = 239.862138 +The maximum resident set size (KB) = 899432 Test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/rap_control_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/rap_control_dyn32_phy32 Checking test 107 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3488,14 +3488,14 @@ Checking test 107 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 383.837354 -The maximum resident set size (KB) = 780800 +The total amount of wall time = 355.671057 +The maximum resident set size (KB) = 780452 Test 107 rap_control_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/hrrr_control_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/hrrr_control_dyn32_phy32 Checking test 108 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3542,14 +3542,14 @@ Checking test 108 hrrr_control_dyn32_phy32 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 = 196.177197 -The maximum resident set size (KB) = 779640 +The total amount of wall time = 180.386887 +The maximum resident set size (KB) = 777928 Test 108 hrrr_control_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/rap_2threads_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/rap_2threads_dyn32_phy32 Checking test 109 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3596,14 +3596,14 @@ Checking test 109 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 349.419498 -The maximum resident set size (KB) = 832468 +The total amount of wall time = 333.050886 +The maximum resident set size (KB) = 834244 Test 109 rap_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/hrrr_control_2threads_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/hrrr_control_2threads_dyn32_phy32 Checking test 110 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3650,14 +3650,14 @@ Checking test 110 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 176.828342 -The maximum resident set size (KB) = 824064 +The total amount of wall time = 163.681448 +The maximum resident set size (KB) = 823820 Test 110 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/hrrr_control_decomp_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/hrrr_control_decomp_dyn32_phy32 Checking test 111 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3704,14 +3704,14 @@ Checking test 111 hrrr_control_decomp_dyn32_phy32 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 = 219.928292 -The maximum resident set size (KB) = 776520 +The total amount of wall time = 190.175054 +The maximum resident set size (KB) = 777168 Test 111 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/rap_restart_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/rap_restart_dyn32_phy32 Checking test 112 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3750,28 +3750,28 @@ Checking test 112 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 260.540394 -The maximum resident set size (KB) = 612696 +The total amount of wall time = 260.903143 +The maximum resident set size (KB) = 619764 Test 112 rap_restart_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/hrrr_control_restart_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/hrrr_control_restart_dyn32_phy32 Checking test 113 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 104.798999 -The maximum resident set size (KB) = 610456 +The total amount of wall time = 93.779276 +The maximum resident set size (KB) = 608684 Test 113 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/rap_control_dyn64_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_control_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/rap_control_dyn64_phy32 Checking test 114 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3818,81 +3818,81 @@ Checking test 114 rap_control_dyn64_phy32 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 = 244.505632 -The maximum resident set size (KB) = 796064 +The total amount of wall time = 243.801265 +The maximum resident set size (KB) = 795200 Test 114 rap_control_dyn64_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/rap_control_debug_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/rap_control_debug_dyn32_phy32 Checking test 115 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 295.660525 -The maximum resident set size (KB) = 939332 +The total amount of wall time = 302.459036 +The maximum resident set size (KB) = 940300 Test 115 rap_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/hrrr_control_debug_dyn32_phy32 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/hrrr_control_debug_dyn32_phy32 Checking test 116 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 288.374951 -The maximum resident set size (KB) = 938176 +The total amount of wall time = 285.954905 +The maximum resident set size (KB) = 940888 Test 116 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/rap_control_dyn64_phy32_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/rap_control_dyn64_phy32_debug Checking test 117 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 307.520716 -The maximum resident set size (KB) = 956344 +The total amount of wall time = 296.559152 +The maximum resident set size (KB) = 959632 Test 117 rap_control_dyn64_phy32_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/hafs_regional_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/hafs_regional_atm Checking test 118 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 299.774348 -The maximum resident set size (KB) = 824396 +The total amount of wall time = 278.924126 +The maximum resident set size (KB) = 822160 Test 118 hafs_regional_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/hafs_regional_atm_thompson_gfdlsf +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/hafs_regional_atm_thompson_gfdlsf Checking test 119 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 383.000767 -The maximum resident set size (KB) = 1182532 +The total amount of wall time = 331.738389 +The maximum resident set size (KB) = 1184172 Test 119 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/hafs_regional_atm_ocn +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/hafs_regional_atm_ocn Checking test 120 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3901,14 +3901,14 @@ Checking test 120 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 429.418335 -The maximum resident set size (KB) = 861136 +The total amount of wall time = 393.140067 +The maximum resident set size (KB) = 860944 Test 120 hafs_regional_atm_ocn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_atm_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/hafs_regional_atm_wav +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_atm_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/hafs_regional_atm_wav Checking test 121 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3917,14 +3917,14 @@ Checking test 121 hafs_regional_atm_wav 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 = 733.268326 -The maximum resident set size (KB) = 891468 +The total amount of wall time = 710.948386 +The maximum resident set size (KB) = 894948 Test 121 hafs_regional_atm_wav PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/hafs_regional_atm_ocn_wav +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/hafs_regional_atm_ocn_wav Checking test 122 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3935,28 +3935,28 @@ Checking test 122 hafs_regional_atm_ocn_wav results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 934.879564 -The maximum resident set size (KB) = 919296 +The total amount of wall time = 909.960018 +The maximum resident set size (KB) = 917692 Test 122 hafs_regional_atm_ocn_wav PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/hafs_regional_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/hafs_regional_1nest_atm Checking test 123 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 337.504476 -The maximum resident set size (KB) = 395704 +The total amount of wall time = 335.248929 +The maximum resident set size (KB) = 397220 Test 123 hafs_regional_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/hafs_regional_telescopic_2nests_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/hafs_regional_telescopic_2nests_atm Checking test 124 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3965,28 +3965,28 @@ Checking test 124 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 416.203348 -The maximum resident set size (KB) = 424700 +The total amount of wall time = 403.455777 +The maximum resident set size (KB) = 402376 Test 124 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_global_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/hafs_global_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_global_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/hafs_global_1nest_atm Checking test 125 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 177.893053 -The maximum resident set size (KB) = 264168 +The total amount of wall time = 182.718390 +The maximum resident set size (KB) = 263816 Test 125 hafs_global_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_global_multiple_4nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/hafs_global_multiple_4nests_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_global_multiple_4nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/hafs_global_multiple_4nests_atm Checking test 126 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4004,14 +4004,14 @@ Checking test 126 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK -The total amount of wall time = 496.223714 -The maximum resident set size (KB) = 348760 +The total amount of wall time = 493.306470 +The maximum resident set size (KB) = 350328 Test 126 hafs_global_multiple_4nests_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/hafs_regional_specified_moving_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/hafs_regional_specified_moving_1nest_atm Checking test 127 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4020,28 +4020,28 @@ Checking test 127 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 226.658168 -The maximum resident set size (KB) = 411604 +The total amount of wall time = 222.698875 +The maximum resident set size (KB) = 410880 Test 127 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/hafs_regional_storm_following_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/hafs_regional_storm_following_1nest_atm Checking test 128 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 212.513848 -The maximum resident set size (KB) = 406672 +The total amount of wall time = 210.548527 +The maximum resident set size (KB) = 407708 Test 128 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/hafs_regional_storm_following_1nest_atm_ocn Checking test 129 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4050,42 +4050,42 @@ Checking test 129 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 271.700744 -The maximum resident set size (KB) = 472612 +The total amount of wall time = 254.204870 +The maximum resident set size (KB) = 471300 Test 129 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/hafs_global_storm_following_1nest_atm +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_global_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/hafs_global_storm_following_1nest_atm Checking test 130 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 87.900047 -The maximum resident set size (KB) = 283108 +The total amount of wall time = 86.114297 +The maximum resident set size (KB) = 287952 Test 130 hafs_global_storm_following_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 131 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 805.302226 -The maximum resident set size (KB) = 492996 +The total amount of wall time = 810.301054 +The maximum resident set size (KB) = 493016 Test 131 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 132 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4096,14 +4096,14 @@ Checking test 132 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 508.311707 -The maximum resident set size (KB) = 528328 +The total amount of wall time = 507.357334 +The maximum resident set size (KB) = 529764 Test 132 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/control_p8_atmlnd_sbs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/control_p8_atmlnd_sbs +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/control_p8_atmlnd_sbs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/control_p8_atmlnd_sbs Checking test 133 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4188,14 +4188,14 @@ Checking test 133 control_p8_atmlnd_sbs 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 = 242.986567 -The maximum resident set size (KB) = 1540284 +The total amount of wall time = 240.762649 +The maximum resident set size (KB) = 1540540 Test 133 control_p8_atmlnd_sbs PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/atmaero_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/atmaero_control_p8 +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/atmaero_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/atmaero_control_p8 Checking test 134 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4239,14 +4239,14 @@ Checking test 134 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 252.394425 -The maximum resident set size (KB) = 2814224 +The total amount of wall time = 251.228608 +The maximum resident set size (KB) = 2815472 Test 134 atmaero_control_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/atmaero_control_p8_rad -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/atmaero_control_p8_rad +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/atmaero_control_p8_rad +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/atmaero_control_p8_rad Checking test 135 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4290,14 +4290,14 @@ Checking test 135 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 286.015177 -The maximum resident set size (KB) = 2878236 +The total amount of wall time = 291.103527 +The maximum resident set size (KB) = 2879020 Test 135 atmaero_control_p8_rad PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/atmaero_control_p8_rad_micro +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/atmaero_control_p8_rad_micro +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/atmaero_control_p8_rad_micro Checking test 136 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4341,14 +4341,14 @@ Checking test 136 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 296.506912 -The maximum resident set size (KB) = 2886276 +The total amount of wall time = 298.168902 +The maximum resident set size (KB) = 2886872 Test 136 atmaero_control_p8_rad_micro PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_atmaq -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/regional_atmaq +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_atmaq +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/regional_atmaq Checking test 137 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4364,14 +4364,14 @@ Checking test 137 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 700.298163 -The maximum resident set size (KB) = 1269112 +The total amount of wall time = 688.199822 +The maximum resident set size (KB) = 1257720 Test 137 regional_atmaq PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230510/INTEL/regional_atmaq_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_165694/regional_atmaq_debug +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230512/INTEL/regional_atmaq_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_31371/regional_atmaq_debug Checking test 138 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4385,12 +4385,12 @@ Checking test 138 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1316.722101 -The maximum resident set size (KB) = 1291936 +The total amount of wall time = 1297.369883 +The maximum resident set size (KB) = 1295004 Test 138 regional_atmaq_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu May 11 12:18:09 UTC 2023 -Elapsed time: 01h:12m:14s. Have a nice day! +Mon May 15 14:46:57 UTC 2023 +Elapsed time: 01h:00m:35s. Have a nice day! diff --git a/tests/default_vars.sh b/tests/default_vars.sh index ed7b2b59202..9980a5c8aa2 100755 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -73,6 +73,18 @@ INPES_aqm=33; JNPES_aqm=8 + THRD_cpl_unstr=1 + INPES_cpl_unstr=3; JNPES_cpl_unstr=8; WPG_cpl_unstr=6 + OCN_tasks_cpl_unstr=20 + ICE_tasks_cpl_unstr=10 + WAV_tasks_cpl_unstr=60 + + THRD_cpl_unstr_mpi=1 + INPES_cpl_unstr_mpi=4; JNPES_cpl_unstr_mpi=8; WPG_cpl_unstr_mpi=6 + OCN_tasks_cpl_unstr_mpi=34 + ICE_tasks_cpl_unstr_mpi=20 + WAV_tasks_cpl_unstr_mpi=50 + aqm_omp_num_threads=1 atm_omp_num_threads=1 chm_omp_num_threads=1 diff --git a/tests/parm/nems.configure.cpld_esmfthreads.IN b/tests/parm/nems.configure.cpld_esmfthreads.IN deleted file mode 100644 index 7cce5c1784c..00000000000 --- a/tests/parm/nems.configure.cpld_esmfthreads.IN +++ /dev/null @@ -1,149 +0,0 @@ -############################################# -#### NEMS Run-Time Configuration File ##### -############################################# - -# ESMF # -logKindFlag: ESMF_LOGKIND_MULTI -globalResourceControl: true - -# EARTH # -EARTH_component_list: MED ATM CHM OCN ICE WAV -EARTH_attributes:: - Verbosity = 0 -:: - -# MED # -MED_model: @[med_model] -MED_petlist_bounds: @[med_petlist_bounds] -MED_omp_num_threads: @[med_omp_num_threads] - -# ATM # -ATM_model: @[atm_model] -ATM_petlist_bounds: @[atm_petlist_bounds] -ATM_omp_num_threads: @[atm_omp_num_threads] -ATM_attributes:: - Verbosity = 0 - DumpFields = false - ProfileMemory = false - OverwriteSlice = true -:: - -# CHM # -CHM_model: @[chm_model] -CHM_petlist_bounds: @[chm_petlist_bounds] -CHM_omp_num_threads: @[chm_omp_num_threads] -CHM_attributes:: - Verbosity = 0 -:: - -# OCN # -OCN_model: @[ocn_model] -OCN_petlist_bounds: @[ocn_petlist_bounds] -OCN_omp_num_threads: @[ocn_omp_num_threads] -OCN_attributes:: - Verbosity = 0 - DumpFields = false - ProfileMemory = false - OverwriteSlice = true - mesh_ocn = @[MESHOCN_ICE] -:: - -# ICE # -ICE_model: @[ice_model] -ICE_petlist_bounds: @[ice_petlist_bounds] -ICE_omp_num_threads: @[ice_omp_num_threads] -ICE_attributes:: - Verbosity = 0 - DumpFields = false - ProfileMemory = false - OverwriteSlice = true - mesh_ice = @[MESHOCN_ICE] - stop_n = @[RESTART_N] - stop_option = nhours - stop_ymd = -999 -:: - -# WAV # -WAV_model: @[wav_model] -WAV_petlist_bounds: @[wav_petlist_bounds] -WAV_omp_num_threads: @[wav_omp_num_threads] -WAV_attributes:: - Verbosity = 0 - OverwriteSlice = false - diro = "." - logfile = wav.log - mesh_wav = @[MESH_WAV] - multigrid = @[MULTIGRID] - user_sets_restname = true -:: - -# CMEPS warm run sequence -runSeq:: -@@[coupling_interval_slow_sec] - MED med_phases_prep_ocn_avg - MED -> OCN :remapMethod=redist - OCN - @@[coupling_interval_fast_sec] - MED med_phases_prep_atm - MED med_phases_prep_ice - MED med_phases_prep_wav_accum - MED med_phases_prep_wav_avg - MED -> ATM :remapMethod=redist - MED -> ICE :remapMethod=redist - MED -> WAV :remapMethod=redist - ATM phase1 - ATM -> CHM - CHM - CHM -> ATM - ATM phase2 - ICE - WAV - ATM -> MED :remapMethod=redist - MED med_phases_post_atm - ICE -> MED :remapMethod=redist - MED med_phases_post_ice - WAV -> MED :remapMethod=redist - MED med_phases_post_wav - MED med_phases_prep_ocn_accum - @ - OCN -> MED :remapMethod=redist - MED med_phases_post_ocn - MED med_phases_restart_write -@ -:: - -# CMEPS variables - -DRIVER_attributes:: -:: - -MED_attributes:: - ATM_model = @[atm_model] - ICE_model = @[ice_model] - OCN_model = @[ocn_model] - WAV_model = @[wav_model] - history_n = 1 - history_option = nhours - history_ymd = -999 - coupling_mode = @[CPLMODE] - history_tile_atm = @[ATMTILESIZE] -:: -ALLCOMP_attributes:: - ScalarFieldCount = 2 - ScalarFieldIdxGridNX = 1 - ScalarFieldIdxGridNY = 2 - ScalarFieldName = cpl_scalars - start_type = @[RUNTYPE] - restart_dir = RESTART/ - case_name = ufs.cpld - restart_n = @[RESTART_N] - restart_option = nhours - restart_ymd = -999 - dbug_flag = @[cap_dbug_flag] - use_coldstart = @[use_coldstart] - use_mommesh = @[use_mommesh] - eps_imesh = @[eps_imesh] - stop_n = @[FHMAX] - stop_option = nhours - stop_ymd = -999 -:: diff --git a/tests/rt.conf b/tests/rt.conf index bbe4bda0640..0db8b51ed06 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -44,6 +44,15 @@ RUN | cpld_restart_c48 COMPILE | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON | - cheyenne.intel | fv3 | RUN | cpld_control_p8_faster | - cheyenne.intel | fv3 | +# Unstructured WW3 mesh +COMPILE | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON | +hera.intel orion.intel cheyenne.intel | fv3 | +RUN | cpld_control_pdlib_p8 | +hera.intel orion.intel cheyenne.intel | fv3 | +RUN | cpld_restart_pdlib_p8 | +hera.intel orion.intel cheyenne.intel | | cpld_control_pdlib_p8 +RUN | cpld_mpi_pdlib_p8 | +hera.intel orion.intel cheyenne.intel | | cpld_control_pdlib_p8 + +COMPILE | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON | +hera.intel orion.intel cheyenne.intel | fv3 | +RUN | cpld_debug_pdlib_p8 | +hera.intel orion.intel cheyenne.intel | fv3 | + ################################################################################################################################################################################### # ATM tests # ################################################################################################################################################################################### diff --git a/tests/rt.sh b/tests/rt.sh index 39b222067bb..273c2d5ae49 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -358,12 +358,12 @@ elif [[ $MACHINE_ID = expanse.* ]]; then PTMP=$dprefix SCHEDULER=slurm cp fv3_conf/fv3_slurm.IN_expanse fv3_conf/fv3_slurm.IN - + elif [[ $MACHINE_ID = noaacloud.* ]]; then - + module use /apps/modules/modulefiles module load rocoto/1.3.3 - + ROCOTORUN=$(which rocotorun) ROCOTOSTAT=$(which rocotostat) ROCOTOCOMPLETE=$(which rocotocomplete) @@ -379,8 +379,8 @@ elif [[ $MACHINE_ID = expanse.* ]]; then SCHEDULER=slurm cp fv3_conf/fv3_slurm.IN_noaacloud fv3_conf/fv3_slurm.IN cp fv3_conf/compile_slurm.IN_noaacloud fv3_conf/compile_slurm.IN - - + + else die "Unknown machine ID, please edit detect_machine.sh file" fi @@ -468,7 +468,7 @@ if [[ $TESTS_FILE =~ '35d' ]] || [[ $TESTS_FILE =~ 'weekly' ]]; then fi -BL_DATE=20230510 +BL_DATE=20230512 RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-${BL_DATE}/${RT_COMPILER^^}} diff --git a/tests/rt_gnu.conf b/tests/rt_gnu.conf index c0145a8456e..c33e3805005 100644 --- a/tests/rt_gnu.conf +++ b/tests/rt_gnu.conf @@ -95,14 +95,21 @@ RUN | rap_control_dyn64_phy32_debug # S2S tests # ################################################################################################################################################################## -COMPILE | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp | | fv3 | -RUN | cpld_control_p8 | | fv3 | +COMPILE | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp | | fv3 | +RUN | cpld_control_p8 | | fv3 | -COMPILE | -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp | | fv3 | -RUN | cpld_control_nowave_noaero_p8 | | fv3 | +COMPILE | -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp | | fv3 | +RUN | cpld_control_nowave_noaero_p8 | | fv3 | -COMPILE | -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp | | fv3 | -RUN | cpld_debug_p8 | | fv3 | +COMPILE | -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp | | fv3 | +RUN | cpld_debug_p8 | | fv3 | + +# Unstructured WW3 +COMPILE | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON | | fv3 | +RUN | cpld_control_pdlib_p8 | | fv3 | + +COMPILE | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON | | fv3 | +RUN | cpld_debug_pdlib_p8 | | fv3 | ################################################################################################################################################################## # CDEPS Data Atmosphere test # diff --git a/tests/tests/cpld_bmark_p8 b/tests/tests/cpld_bmark_p8 index 38c84dcea8d..84644560ef1 100644 --- a/tests/tests/cpld_bmark_p8 +++ b/tests/tests/cpld_bmark_p8 @@ -54,7 +54,7 @@ export LIST_FILES="sfcf006.nc \ export_fv3 export_cpl -export NEMS_CONFIGURE=nems.configure.cpld_esmfthreads.IN +export NEMS_CONFIGURE=nems.configure.cpld.IN export SYEAR=2013 export SMONTH=04 diff --git a/tests/tests/cpld_control_pdlib_p8 b/tests/tests/cpld_control_pdlib_p8 new file mode 100644 index 00000000000..7b7c838d10c --- /dev/null +++ b/tests/tests/cpld_control_pdlib_p8 @@ -0,0 +1,107 @@ +# +# cpld_control unstr PDLIB P8 test +# + +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system - C96MX100 unstr WW3 PDLIB" + +export CNTL_DIR="cpld_control_pdlib_p8" + +export LIST_FILES="sfcf021.tile1.nc \ + sfcf021.tile2.nc \ + sfcf021.tile3.nc \ + sfcf021.tile4.nc \ + sfcf021.tile5.nc \ + sfcf021.tile6.nc \ + atmf021.tile1.nc \ + atmf021.tile2.nc \ + atmf021.tile3.nc \ + atmf021.tile4.nc \ + atmf021.tile5.nc \ + atmf021.tile6.nc \ + sfcf024.tile1.nc \ + sfcf024.tile2.nc \ + sfcf024.tile3.nc \ + sfcf024.tile4.nc \ + sfcf024.tile5.nc \ + sfcf024.tile6.nc \ + atmf024.tile1.nc \ + atmf024.tile2.nc \ + atmf024.tile3.nc \ + atmf024.tile4.nc \ + atmf024.tile5.nc \ + atmf024.tile6.nc \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc \ + RESTART/20210323.060000.MOM.res.nc \ + RESTART/iced.2021-03-23-21600.nc \ + RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc \ + 20210323.060000.out_pnt.ww3 \ + 20210323.060000.out_grd.ww3 " + +export_fv3 +export_cpl + +export RESTART_N=12 +export RESTART_INTERVAL="${RESTART_N} -1" +export OUTPUT_FH='0 21 24' + +export INPES=$INPES_cpl_unstr +export JNPES=$JNPES_cpl_unstr +export WRTTASK_PER_GROUP=$(( WPG_cpl_unstr * THRD_cpl_unstr )) + +OCN_tasks=$OCN_tasks_cpl_unstr +ICE_tasks=$ICE_tasks_cpl_unstr +WAV_tasks=$WAV_tasks_cpl_unstr + +export atm_omp_num_threads=$THRD_cpl_unstr +export med_omp_num_threads=$atm_omp_num_threads + +export CPLCHM=.false. +export DNATS=0 +export TOPOEDITS=ufs.topo_edits_011818.nc +export MOM6_ALLOW_LANDMASK_CHANGES=True +export eps_imesh=2.5e-1 + +export WAVDOMAIN=global_270k +export MESH_WAV=mesh.${WAVDOMAIN}.nc +export MODDEF_WAV=mod_def.exp.${WAVDOMAIN} + +export DIAG_TABLE=diag_table_template +export FIELD_TABLE=field_table_thompson_noaero_tke +export NEMS_CONFIGURE=nems.configure.cpld_noaero.IN + +export FV3_RUN=cpld_control_run.IN + +if [[ $MACHINE_ID = cheyenne.* ]]; then + TPN=18 +fi diff --git a/tests/tests/cpld_debug_pdlib_p8 b/tests/tests/cpld_debug_pdlib_p8 new file mode 100644 index 00000000000..181a781f5aa --- /dev/null +++ b/tests/tests/cpld_debug_pdlib_p8 @@ -0,0 +1,99 @@ +# +# cpld_debug unstrWW3 PDLIB P8 test +# + +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system -C96MX100 unstr WW3 PDLIB - P8 debug" + +export CNTL_DIR="cpld_debug_pdlib_p8" + +export LIST_FILES="sfcf003.tile1.nc \ + sfcf003.tile2.nc \ + sfcf003.tile3.nc \ + sfcf003.tile4.nc \ + sfcf003.tile5.nc \ + sfcf003.tile6.nc \ + atmf003.tile1.nc \ + atmf003.tile2.nc \ + atmf003.tile3.nc \ + atmf003.tile4.nc \ + atmf003.tile5.nc \ + atmf003.tile6.nc \ + RESTART/20210322.090000.coupler.res \ + RESTART/20210322.090000.fv_core.res.nc \ + RESTART/20210322.090000.fv_core.res.tile1.nc \ + RESTART/20210322.090000.fv_core.res.tile2.nc \ + RESTART/20210322.090000.fv_core.res.tile3.nc \ + RESTART/20210322.090000.fv_core.res.tile4.nc \ + RESTART/20210322.090000.fv_core.res.tile5.nc \ + RESTART/20210322.090000.fv_core.res.tile6.nc \ + RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210322.090000.fv_tracer.res.tile1.nc \ + RESTART/20210322.090000.fv_tracer.res.tile2.nc \ + RESTART/20210322.090000.fv_tracer.res.tile3.nc \ + RESTART/20210322.090000.fv_tracer.res.tile4.nc \ + RESTART/20210322.090000.fv_tracer.res.tile5.nc \ + RESTART/20210322.090000.fv_tracer.res.tile6.nc \ + RESTART/20210322.090000.phy_data.tile1.nc \ + RESTART/20210322.090000.phy_data.tile2.nc \ + RESTART/20210322.090000.phy_data.tile3.nc \ + RESTART/20210322.090000.phy_data.tile4.nc \ + RESTART/20210322.090000.phy_data.tile5.nc \ + RESTART/20210322.090000.phy_data.tile6.nc \ + RESTART/20210322.090000.sfc_data.tile1.nc \ + RESTART/20210322.090000.sfc_data.tile2.nc \ + RESTART/20210322.090000.sfc_data.tile3.nc \ + RESTART/20210322.090000.sfc_data.tile4.nc \ + RESTART/20210322.090000.sfc_data.tile5.nc \ + RESTART/20210322.090000.sfc_data.tile6.nc \ + RESTART/20210322.090000.MOM.res.nc \ + RESTART/iced.2021-03-22-32400.nc \ + RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc \ + 20210322.090000.out_pnt.ww3 \ + 20210322.090000.out_grd.ww3 " + +export_fv3 +export_cpl + +export FHMAX=3 +export DAYS=0.125 + +export RESTART_N=${FHMAX} +export OUTPUT_FH="3 -1" + +export INPES=$INPES_cpl_unstr +export JNPES=$JNPES_cpl_unstr +export WRTTASK_PER_GROUP=$(( WPG_cpl_unstr * THRD_cpl_unstr )) + +OCN_tasks=$OCN_tasks_cpl_unstr +ICE_tasks=$ICE_tasks_cpl_unstr +WAV_tasks=$WAV_tasks_cpl_unstr +# bump resources for debug test +WAV_tasks="$(($WAV_tasks_cpl_unstr + 18))" + +export atm_omp_num_threads=$THRD_cpl_unstr +export med_omp_num_threads=$atm_omp_num_threads + +export CPLCHM=.false. +export DNATS=0 +export TOPOEDITS=ufs.topo_edits_011818.nc +export MOM6_ALLOW_LANDMASK_CHANGES=True +export eps_imesh=2.5e-1 + +export WAVDOMAIN=global_270k +export MESH_WAV=mesh.${WAVDOMAIN}.nc +export MODDEF_WAV=mod_def.exp.${WAVDOMAIN} + +export DIAG_TABLE=diag_table_template +export FIELD_TABLE=field_table_thompson_noaero_tke +export NEMS_CONFIGURE=nems.configure.cpld_noaero.IN + +export FV3_RUN=cpld_control_run.IN + +if [[ $MACHINE_ID = cheyenne.* ]]; then + TPN=18 +fi diff --git a/tests/tests/cpld_mpi_pdlib_p8 b/tests/tests/cpld_mpi_pdlib_p8 new file mode 100644 index 00000000000..3cd66e59e1d --- /dev/null +++ b/tests/tests/cpld_mpi_pdlib_p8 @@ -0,0 +1,110 @@ +# +# cpld_control unstr PDLIB P8 test +# + +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system - C96MX100 unstr WW3 PDLIB" + +export CNTL_DIR="cpld_control_pdlib_p8" + +export LIST_FILES="sfcf021.tile1.nc \ + sfcf021.tile2.nc \ + sfcf021.tile3.nc \ + sfcf021.tile4.nc \ + sfcf021.tile5.nc \ + sfcf021.tile6.nc \ + atmf021.tile1.nc \ + atmf021.tile2.nc \ + atmf021.tile3.nc \ + atmf021.tile4.nc \ + atmf021.tile5.nc \ + atmf021.tile6.nc \ + sfcf024.tile1.nc \ + sfcf024.tile2.nc \ + sfcf024.tile3.nc \ + sfcf024.tile4.nc \ + sfcf024.tile5.nc \ + sfcf024.tile6.nc \ + atmf024.tile1.nc \ + atmf024.tile2.nc \ + atmf024.tile3.nc \ + atmf024.tile4.nc \ + atmf024.tile5.nc \ + atmf024.tile6.nc \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc \ + RESTART/20210323.060000.MOM.res.nc \ + RESTART/iced.2021-03-23-21600.nc \ + RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc \ + 20210323.060000.out_pnt.ww3 \ + 20210323.060000.out_grd.ww3 " + +export_fv3 +export_cpl + +export RESTART_N=12 +export RESTART_INTERVAL="${RESTART_N} -1" +export OUTPUT_FH='0 21 24' + +export INPES=$INPES_cpl_unstr_mpi +export JNPES=$JNPES_cpl_unstr_mpi +export atm_omp_num_threads=$THRD_cpl_unstr_mpi +export WRTTASK_PER_GROUP=$(( WPG_cpl_unstr_mpi * THRD_cpl_unstr_mpi )) + +OCN_tasks=$OCN_tasks_cpl_unstr_mpi +ICE_tasks=$ICE_tasks_cpl_unstr_mpi +WAV_tasks=$WAV_tasks_cpl_unstr_mpi + +export NPROC_ICE=$ICE_tasks +export np2=`expr $NPROC_ICE / 2` +export BLCKX=`expr $NX_GLB / $np2` +export BLCKY=`expr $NY_GLB / 2` + +export CPLCHM=.false. +export DNATS=0 +export TOPOEDITS=ufs.topo_edits_011818.nc +export MOM6_ALLOW_LANDMASK_CHANGES=True +export eps_imesh=2.5e-1 + +export WAVDOMAIN=global_270k +export MESH_WAV=mesh.${WAVDOMAIN}.nc +export MODDEF_WAV=mod_def.exp.${WAVDOMAIN} + +export DIAG_TABLE=diag_table_template +export FIELD_TABLE=field_table_thompson_noaero_tke +export NEMS_CONFIGURE=nems.configure.cpld_noaero.IN + +export FV3_RUN=cpld_control_run.IN + +if [[ $MACHINE_ID = cheyenne.* ]]; then + TPN=18 +fi diff --git a/tests/tests/cpld_restart_bmark_p8 b/tests/tests/cpld_restart_bmark_p8 index 74db98864ba..c02b4dde566 100644 --- a/tests/tests/cpld_restart_bmark_p8 +++ b/tests/tests/cpld_restart_bmark_p8 @@ -54,7 +54,7 @@ export LIST_FILES="sfcf006.nc \ export_fv3 export_cpl -export NEMS_CONFIGURE=nems.configure.cpld_esmfthreads.IN +export NEMS_CONFIGURE=nems.configure.cpld.IN export SYEAR=2013 export SMONTH=04 diff --git a/tests/tests/cpld_restart_pdlib_p8 b/tests/tests/cpld_restart_pdlib_p8 new file mode 100644 index 00000000000..89ed869c2bc --- /dev/null +++ b/tests/tests/cpld_restart_pdlib_p8 @@ -0,0 +1,113 @@ +# +# cpld_restart unstrWW3 PDLIB P8 test +# + +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system - C96MX100 unstr WW3 PDLIB" + +export CNTL_DIR="cpld_control_pdlib_p8" + +export LIST_FILES="sfcf024.tile1.nc \ + sfcf024.tile2.nc \ + sfcf024.tile3.nc \ + sfcf024.tile4.nc \ + sfcf024.tile5.nc \ + sfcf024.tile6.nc \ + atmf024.tile1.nc \ + atmf024.tile2.nc \ + atmf024.tile3.nc \ + atmf024.tile4.nc \ + atmf024.tile5.nc \ + atmf024.tile6.nc \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc \ + RESTART/20210323.060000.MOM.res.nc \ + RESTART/iced.2021-03-23-21600.nc \ + RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc \ + 20210323.060000.out_pnt.ww3 \ + 20210323.060000.out_grd.ww3 " + +export_fv3 +export_cpl + +export FHROT=12 +export RESTART_N=$((FHMAX-$FHROT)) + +export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${FHROT} + ${SHOUR} )))0000" +export RESTART_FILE_SUFFIX_SECS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%05d" $(( (${FHROT}+ ${SHOUR})*3600 )))" + +# ATM warm start +export WARM_START=.true. +export MAKE_NH=.false. +export NA_INIT=0 +export EXTERNAL_IC=.false. +export NGGPS_IC=.false. +export MOUNTAIN=.true. + +# ICE warm start +export CICERUNTYPE=continue +export RUNTYPE=continue +export USE_RESTART_TIME=.true. + +# MOM6 warm start +export MOM6_RESTART_SETTING=r + +export INPES=$INPES_cpl_unstr +export JNPES=$JNPES_cpl_unstr +export WRTTASK_PER_GROUP=$(( WPG_cpl_unstr * THRD_cpl_unstr )) + +OCN_tasks=$OCN_tasks_cpl_unstr +ICE_tasks=$ICE_tasks_cpl_unstr +WAV_tasks=$WAV_tasks_cpl_unstr + +export atm_omp_num_threads=$THRD_cpl_unstr +export med_omp_num_threads=$atm_omp_num_threads + +export CPLCHM=.false. +export DNATS=0 +export TOPOEDITS=ufs.topo_edits_011818.nc +export MOM6_ALLOW_LANDMASK_CHANGES=True +export eps_imesh=2.5e-1 + +export WAVDOMAIN=global_270k +export MESH_WAV=mesh.${WAVDOMAIN}.nc +export MODDEF_WAV=mod_def.exp.${WAVDOMAIN} + +export DIAG_TABLE=diag_table_template +export FIELD_TABLE=field_table_thompson_noaero_tke +export NEMS_CONFIGURE=nems.configure.cpld_noaero.IN + +export FV3_RUN=cpld_control_run.IN + +if [[ $MACHINE_ID = cheyenne.* ]]; then + TPN=18 +fi